From 72163b3f899566a00d13e441f7ee2ca5fa8bd41f Mon Sep 17 00:00:00 2001 From: tuibuilder_pel7x64builder0 Date: Fri, 24 Apr 2020 11:04:15 +0200 Subject: [PATCH] texlive updates Signed-off-by: tuibuilder_pel7x64builder0 --- SOURCES/generate-fmtutilcnf | 22 + SOURCES/texlive-2017-python3.patch | 284 + SOURCES/texlive-20180414-CVE-2018-17407.patch | 40 + SOURCES/texlive-20180414-annocheck.patch | 11 + SOURCES/texlive-20180414-covscan.patch | 812 + SOURCES/texlive-20180414-new-poppler.patch | 641 + SOURCES/texlive-20180414-poppler-0.63.patch | 225 + .../texlive-20180414-selinux-context.patch | 41 + SOURCES/texlive-20180414-xml.patch | 22 + ...-20190410-disable-more-failing-tests.patch | 118 + ...20190410-dvisvgm-fix-libgs-detection.patch | 25 + SOURCES/texlive-20190410-poppler-0.73.patch | 249 + .../texlive-20190410-selinux-context.patch | 14 + .../texlive-20190410-texinfo-path-fix.patch | 22 + ...exlive-20190410-tlmgr-ignore-warning.patch | 79 + ...180414-disable-omegafonts-check-test.patch | 12 + ...4-synctex-do-not-throw-no-file-error.patch | 11 + SOURCES/texlive-base-pdfbook2-py3.patch | 97 + SOURCES/texlive.tlpdb | 307431 ++++++++++----- SOURCES/tl-format.patch | 161 +- SPECS/texlive-base.spec | 9193 + SPECS/texlive-extension.spec | 412 + 22 files changed, 229189 insertions(+), 90733 deletions(-) create mode 100755 SOURCES/generate-fmtutilcnf create mode 100644 SOURCES/texlive-2017-python3.patch create mode 100644 SOURCES/texlive-20180414-CVE-2018-17407.patch create mode 100644 SOURCES/texlive-20180414-annocheck.patch create mode 100644 SOURCES/texlive-20180414-covscan.patch create mode 100644 SOURCES/texlive-20180414-new-poppler.patch create mode 100644 SOURCES/texlive-20180414-poppler-0.63.patch create mode 100644 SOURCES/texlive-20180414-selinux-context.patch create mode 100644 SOURCES/texlive-20180414-xml.patch create mode 100644 SOURCES/texlive-20190410-disable-more-failing-tests.patch create mode 100644 SOURCES/texlive-20190410-dvisvgm-fix-libgs-detection.patch create mode 100644 SOURCES/texlive-20190410-poppler-0.73.patch create mode 100644 SOURCES/texlive-20190410-selinux-context.patch create mode 100644 SOURCES/texlive-20190410-texinfo-path-fix.patch create mode 100644 SOURCES/texlive-20190410-tlmgr-ignore-warning.patch create mode 100644 SOURCES/texlive-base-20180414-disable-omegafonts-check-test.patch create mode 100644 SOURCES/texlive-base-20180414-synctex-do-not-throw-no-file-error.patch create mode 100644 SOURCES/texlive-base-pdfbook2-py3.patch create mode 100644 SPECS/texlive-base.spec create mode 100644 SPECS/texlive-extension.spec diff --git a/SOURCES/generate-fmtutilcnf b/SOURCES/generate-fmtutilcnf new file mode 100755 index 0000000..88b7d70 --- /dev/null +++ b/SOURCES/generate-fmtutilcnf @@ -0,0 +1,22 @@ +#!/bin/bash + +# Regenerate the fmtutil.cnf file from the pieces which are currently present +# in the fmtutil.cnf.d directory. + +# Abort immediately if any command fails +set -o errexit +shopt -s nullglob + +texdir=$1 +[[ -z $texdir ]] && texdir=/usr/share/texlive +web2cdir=$texdir/texmf-dist/web2c + +rm -f $web2cdir/fmtutil.cnf.rpmtmp + +echo "# Generated by $0 on $(date)" > $web2cdir/fmtutil.cnf.rpmtmp + +cat $web2cdir/fmtutil-hdr.cnf \ + $texdir/fmtutil.cnf.d/* \ + >> $web2cdir/fmtutil.cnf.rpmtmp + +mv $web2cdir/fmtutil.cnf.rpmtmp $web2cdir/fmtutil.cnf diff --git a/SOURCES/texlive-2017-python3.patch b/SOURCES/texlive-2017-python3.patch new file mode 100644 index 0000000..fbb1d61 --- /dev/null +++ b/SOURCES/texlive-2017-python3.patch @@ -0,0 +1,284 @@ +diff -up doc/xelatex/xepersian/dkun-0.3.py.than doc/xelatex/xepersian/dkun-0.3.py +--- doc/xelatex/xepersian/dkun-0.3.py.than 2018-05-07 11:52:01.795308478 +0200 ++++ doc/xelatex/xepersian/dkun-0.3.py 2018-05-07 11:53:32.984620222 +0200 +@@ -1,4 +1,4 @@ +-#! /usr/bin/env python ++#! /usr/bin/python3 + + ######################################### + # General Public License # +@@ -311,7 +311,7 @@ def dk_adjust_shaping(text, i): + try: + u = table_DK_UN[current][0] + except KeyError: +- print 'ERROR: unmapped character' ++ print('ERROR: unmapped character') + return u'' + + #if you don't want shaping remove the following comment +@@ -407,7 +407,7 @@ def needs_english_wrapper(part): + + # Main body of the program + if len(sys.argv) <= 2: +- print 'usage: python dkun in_filename out_filename' ++ print('usage: python dkun in_filename out_filename') + exit(0) + + filename = sys.argv[1] +@@ -416,13 +416,13 @@ outfile = sys.argv[2] + try: + f = open(filename, 'r') + except IOError: +- print "Can not open the input file: " + filename ++ print("Can not open the input file: " + filename) + exit(0) + + try: + of = codecs.open(outfile, encoding='utf-8', mode='w') + except IOError: +- print "Can not open the output file: " + outfile ++ print("Can not open the output file: " + outfile) + exit(0) + + line_number = 0 +diff -up doc/xelatex/xepersian/dkun-0.4.py.than doc/xelatex/xepersian/dkun-0.4.py +--- doc/xelatex/xepersian/dkun-0.4.py.than 2018-05-07 11:53:54.187692708 +0200 ++++ doc/xelatex/xepersian/dkun-0.4.py 2018-05-07 11:54:32.272822907 +0200 +@@ -1,4 +1,4 @@ +-#! /usr/bin/env python ++#! /usr/bin/python3 + + ######################################### + # General Public License # +@@ -311,7 +311,7 @@ def dk_adjust_shaping(text, i): + try: + u = table_DK_UN[current][0] + except KeyError: +- print 'ERROR: unmapped character' ++ print('ERROR: unmapped character') + return u'' + + #if you don't want shaping remove the following comment +@@ -407,7 +407,7 @@ def needs_english_wrapper(part): + + # Main body of the program + if len(sys.argv) <= 2: +- print 'usage: python dkun in_filename out_filename' ++ print('usage: python dkun in_filename out_filename') + exit(0) + + filename = sys.argv[1] +@@ -416,13 +416,13 @@ outfile = sys.argv[2] + try: + f = open(filename, 'r') + except IOError: +- print "Can not open the input file: " + filename ++ print("Can not open the input file: " + filename) + exit(0) + + try: + of = codecs.open(outfile, encoding='utf-8', mode='w') + except IOError: +- print "Can not open the output file: " + outfile ++ print("Can not open the output file: " + outfile) + exit(0) + + line_number = 0 +diff -up doc/xelatex/xepersian/ftxe-0.12.py.than doc/xelatex/xepersian/ftxe-0.12.py +--- doc/xelatex/xepersian/ftxe-0.12.py.than 2018-05-07 11:54:55.163901164 +0200 ++++ doc/xelatex/xepersian/ftxe-0.12.py 2018-05-07 11:57:58.063526433 +0200 +@@ -1,4 +1,6 @@ +-# This program is free software: you can redistribute it and/or modify ++#! /usr/bin/python3 ++ ++# This program is free software: you can redistribute it and/or modify + # it under the terms of the GNU General Public License as published by + # the Free Software Foundation, either version 3 of the License, or + # (at your option) any later version. +@@ -488,7 +490,7 @@ def read_size(input,index,last_index): + dim_index = pt_index + next_cmd = input.find(u'\\', index) + if (next_cmd == -1 and dim_index == -1): +- print "Error in parsing \epsfxsize command at " + str(line_number) + "\n" ++ print("Error in parsing \epsfxsize command at " + str(line_number) + "\n") + return -1 + elif (next_cmd == -1 or (dim_index != -1 and next_cmd > dim_index)): + epsfxsize = input[index:dim_index+2] +@@ -499,7 +501,7 @@ def read_size(input,index,last_index): + end_cmd += 1 + return end_cmd + else: +- print "Error in parsing \epsfxsize command at " + str(line_number) + "\n" ++ print("Error in parsing \epsfxsize command at " + str(line_number) + "\n") + return -1 + + +@@ -567,7 +569,7 @@ def generate_farsitex_cmds_file(helper_f + try: + of = codecs.open(helper_filename, encoding='utf-8', mode='w') + except IOError: +- print "Can not open the output file: " + helper_filename ++ print("Can not open the output file: " + helper_filename) + exit(0) + of.write(preamble) + of.close +@@ -875,7 +877,7 @@ def convert_file(f, of, convert_cmds): + + for line in f: + line_number += 1 +- print line_number, ++ print (line_number) + output_line = u'' + line_len = len(line) + +@@ -888,7 +890,7 @@ def convert_file(f, of, convert_cmds): + # check line-direction character + line_direction_rtl = (line[0] == '<') + if (line[0] != '>') and (line[0] != '<'): +- print "FORMAT ERROR AT LINE: " + str(line_number) ++ print("FORMAT ERROR AT LINE: " + str(line_number)) + exit(0) + + i = 1 +@@ -970,11 +972,11 @@ def convert_file(f, of, convert_cmds): + # end of file processing + + def print_usage(): +- print 'usage: python ftxe-0-11 [-r] [-s] [-x] [-u] in_filename1 in_filename2' +- print '-r: (DEFAULT) recursively consider files included in the given files' +- print '-s: do not recursively consider files' +- print '-x: (DEFAULT) insert xepersian related commands' +- print '-u: only convert to unicode' ++ print('usage: python ftxe-0-11 [-r] [-s] [-x] [-u] in_filename1 in_filename2') ++ print('-r: (DEFAULT) recursively consider files included in the given files') ++ print('-s: do not recursively consider files') ++ print('-x: (DEFAULT) insert xepersian related commands') ++ print('-u: only convert to unicode') + + ################################### + # Begin of main body of the program +@@ -1011,7 +1013,7 @@ while (options_index < len(sys.argv)): + options_index += 1 + + if (len(filenames) == 0): +- print 'error: no input filename is specified!' ++ print('error: no input filename is specified!') + print_usage() + exit(0) + +@@ -1026,17 +1028,17 @@ while (index < len(filenames)): + else: + outfile = filename + '.tex' + +- print '\n\nConverting "' + filename + '" into "' + outfile + '"' ++ print('\n\nConverting "' + filename + '" into "' + outfile + '"') + try: + f = open(filename, 'r') + except IOError: +- print "Can not open the input file: " + filename ++ print("Can not open the input file: " + filename) + exit(0) + + try: + of = codecs.open(outfile, encoding='utf-8', mode='w') + except IOError: +- print "Can not open the output file: " + outfile ++ print("Can not open the output file: " + outfile) + exit(0) + + convert_file(f, of, convert_xepersian) +diff -up doc/xelatex/xepersian/undk-0.6.py.than doc/xelatex/xepersian/undk-0.6.py +--- doc/xelatex/xepersian/undk-0.6.py.than 2018-05-07 11:58:18.706597005 +0200 ++++ doc/xelatex/xepersian/undk-0.6.py 2018-05-07 11:59:18.079799981 +0200 +@@ -1,4 +1,4 @@ +-#! /usr/bin/env python ++#! /usr/bin/python3 + ######################################### + # General Public License # + # Author: Mostafa Vahedi # +@@ -328,7 +328,7 @@ def find_form(line, i): + def map_char_unicode_DK(c, form): + try: + n = table_UN_DK[c][0] +- except KeyError: ++ except KeyError: + return c.encode('latin-1') + if (n == 1): + return table_UN_DK[c][1] +@@ -371,7 +371,7 @@ def is_farsi_numerical(c): + + # Main body of the program + if len(sys.argv) <= 2: +- print 'usage: python undk in_filename out_filename' ++ print('usage: python undk in_filename out_filename') + exit(0) + + filename = sys.argv[1] +@@ -380,13 +380,13 @@ outfile = sys.argv[2] + try: + f = codecs.open(filename, 'r', 'utf-8') + except IOError: +- print "Can not open the input file: " + filename ++ print("Can not open the input file: " + filename) + exit(0) + + try: + of = open(outfile, 'w') + except IOError: +- print "Can not open the output file: " + outfile ++ print("Can not open the output file: " + outfile) + exit(0) + + # this is an option +@@ -425,7 +425,7 @@ for line in f: + this_line += auto_english_part[::-1] + auto_english_part = '' + inAutoEnglish = 0 +- print 'Warning: mixed Auto-English and Forced-English' ++ print('Warning: mixed Auto-English and Forced-English') + if (inFarsiNumber == 1): + this_line += number_part[::-1] + number_part = '' +diff -up doc/xelatex/xepersian/unldk-0.2.py.than doc/xelatex/xepersian/unldk-0.2.py +--- doc/xelatex/xepersian/unldk-0.2.py.than 2018-05-07 11:59:41.522880125 +0200 ++++ doc/xelatex/xepersian/unldk-0.2.py 2018-05-07 12:00:21.999018500 +0200 +@@ -1,4 +1,4 @@ +-#! /usr/bin/env python ++#! /usr/bin/python3 + ######################################### + # General Public License # + # Author: Mostafa Vahedi # +@@ -328,7 +328,7 @@ def find_form(line, i): + def map_char_unicode_DK(c, form): + try: + n = table_UN_DK[c][0] +- except KeyError: ++ except KeyError: + return c.encode('latin-1') + if (n == 1): + return table_UN_DK[c][1] +@@ -364,7 +364,7 @@ def is_farsi_numerical(c): + + # Main body of the program + if len(sys.argv) <= 2: +- print 'usage: python unldk in_filename out_filename' ++ print('usage: python unldk in_filename out_filename') + exit(0) + + filename = sys.argv[1] +@@ -373,13 +373,13 @@ outfile = sys.argv[2] + try: + f = codecs.open(filename, 'r', 'utf-8') + except IOError: +- print "Can not open the input file: " + filename ++ print("Can not open the input file: " + filename) + exit(0) + + try: + of = open(outfile, 'w') + except IOError: +- print "Can not open the output file: " + outfile ++ print("Can not open the output file: " + outfile) + exit(0) + + inFarsi = 0 diff --git a/SOURCES/texlive-20180414-CVE-2018-17407.patch b/SOURCES/texlive-20180414-CVE-2018-17407.patch new file mode 100644 index 0000000..9154d0e --- /dev/null +++ b/SOURCES/texlive-20180414-CVE-2018-17407.patch @@ -0,0 +1,40 @@ +diff -up texlive-20180414/source/texk/dvipsk/writet1.c.CVE-2018-17407 texlive-20180414/source/texk/dvipsk/writet1.c +--- texlive-20180414/source/texk/dvipsk/writet1.c.CVE-2018-17407 2018-09-26 08:37:29.964110003 +0100 ++++ texlive-20180414/source/texk/dvipsk/writet1.c 2018-09-26 08:38:06.454784619 +0100 +@@ -1449,7 +1449,9 @@ static void t1_check_unusual_charstring( + *(strend(t1_buf_array) - 1) = ' '; + + t1_getline(); ++ alloc_array(t1_buf, strlen(t1_line_array) + strlen(t1_buf_array) + 1, T1_BUF_SIZE); + strcat(t1_buf_array, t1_line_array); ++ alloc_array(t1_line, strlen(t1_buf_array) + 1, T1_BUF_SIZE); + strcpy(t1_line_array, t1_buf_array); + t1_line_ptr = eol(t1_line_array); + } +diff -up texlive-20180414/source/texk/web2c/luatexdir/font/writet1.w.CVE-2018-17407 texlive-20180414/source/texk/web2c/luatexdir/font/writet1.w +--- texlive-20180414/source/texk/web2c/luatexdir/font/writet1.w.CVE-2018-17407 2018-09-26 08:34:35.340880599 +0100 ++++ texlive-20180414/source/texk/web2c/luatexdir/font/writet1.w 2018-09-26 08:35:45.992187544 +0100 +@@ -1624,8 +1624,10 @@ static void t1_check_unusual_charstring( + /* if no number follows "/CharStrings", let's read the next line */ + if (sscanf(p, "%i", &i) != 1) { + strcpy(t1_buf_array, t1_line_array); ++ alloc_array(t1_buf, strlen(t1_line_array) + strlen(t1_buf_array) + 1, T1_BUF_SIZE); + t1_getline(); + strcat(t1_buf_array, t1_line_array); ++ alloc_array(t1_line, strlen(t1_buf_array) + 1, T1_BUF_SIZE); + strcpy(t1_line_array, t1_buf_array); + t1_line_ptr = eol(t1_line_array); + } +diff -up texlive-20180414/source/texk/web2c/pdftexdir/writet1.c.CVE-2018-17407 texlive-20180414/source/texk/web2c/pdftexdir/writet1.c +--- texlive-20180414/source/texk/web2c/pdftexdir/writet1.c.CVE-2018-17407 2018-09-26 08:36:06.382564736 +0100 ++++ texlive-20180414/source/texk/web2c/pdftexdir/writet1.c 2018-09-26 08:37:12.213781850 +0100 +@@ -1598,7 +1598,9 @@ static void t1_check_unusual_charstring( + *(strend(t1_buf_array) - 1) = ' '; + + t1_getline(); ++ alloc_array(t1_buf, strlen(t1_line_array) + strlen(t1_buf_array) + 1, T1_BUF_SIZE); + strcat(t1_buf_array, t1_line_array); ++ alloc_array(t1_line, strlen(t1_buf_array) + 1, T1_BUF_SIZE); + strcpy(t1_line_array, t1_buf_array); + t1_line_ptr = eol(t1_line_array); + } diff --git a/SOURCES/texlive-20180414-annocheck.patch b/SOURCES/texlive-20180414-annocheck.patch new file mode 100644 index 0000000..7804a29 --- /dev/null +++ b/SOURCES/texlive-20180414-annocheck.patch @@ -0,0 +1,11 @@ +--- texlive-20180414/source/libs/luajit/Makefile.in.annocheck 2018-01-10 01:37:05.000000000 +0100 ++++ texlive-20180414/source/libs/luajit/Makefile.in 2019-01-11 22:45:34.503080977 +0100 +@@ -680,7 +680,7 @@ + NEVER_NAMES_LT = -o -name .libs -o -name '*.lo' + AM_CPPFLAGS = -I$(srcdir)/$(LUAJIT_TREE)/src $(LUAJIT_DEFINES) -U_FORTIFY_SOURCE + AM_CFLAGS = $(LUAJIT_CFLAGS) $(LUAJIT_HAS_NOT_LOG2) -Wall +-AM_CCASFLAGS = $(LUAJIT_CFLAGS) $(LUAJIT_HAS_NOT_LOG2) ++AM_CCASFLAGS = $(LUAJIT_CFLAGS) $(LUAJIT_HAS_NOT_LOG2) -Wa,--generate-missing-build-notes=yes + SUBDIRS = . native include + lib_LTLIBRARIES = libtexluajit.la + libtexluajit_la_LDFLAGS = -bindir @bindir@ -no-undefined -version-info $(LUAJIT_LT_VERSINFO) $(LIBLUAJIT_LDEXTRA) diff --git a/SOURCES/texlive-20180414-covscan.patch b/SOURCES/texlive-20180414-covscan.patch new file mode 100644 index 0000000..7796c09 --- /dev/null +++ b/SOURCES/texlive-20180414-covscan.patch @@ -0,0 +1,812 @@ +diff -up texlive-20180414/source/libs/luajit/LuaJIT-src/src/host/minilua.c.me texlive-20180414/source/libs/luajit/LuaJIT-src/src/host/minilua.c +--- texlive-20180414/source/libs/luajit/LuaJIT-src/src/host/minilua.c.me 2018-08-14 10:08:29.573912544 +0100 ++++ texlive-20180414/source/libs/luajit/LuaJIT-src/src/host/minilua.c 2018-09-24 09:18:24.640331882 +0100 +@@ -4327,7 +4327,7 @@ if(lh->v.u.s.info==v->u.s.info){ + conflict=1; + lh->v.u.s.info=extra; + } +-if(lh->v.u.s.aux==v->u.s.info){ ++if(lh->v.u.s.aux==v->u.s.aux){ + conflict=1; + lh->v.u.s.aux=extra; + } +diff -up texlive-20180414/source/libs/zziplib/zziplib-src/docs/make-doc.py.me texlive-20180414/source/libs/zziplib/zziplib-src/docs/make-doc.py +--- texlive-20180414/source/libs/zziplib/zziplib-src/docs/make-doc.py.me 2018-08-14 10:34:45.827143276 +0100 ++++ texlive-20180414/source/libs/zziplib/zziplib-src/docs/make-doc.py 2018-08-14 10:35:09.287578374 +0100 +@@ -951,7 +951,7 @@ def docbook_refpages_perheader(page_list + header[file].copyright = page.copyright + if not header[file].authors and page.authors: + header[file].authors = page.authors +- if not header[file].authors and page.authors_list: ++ if not header[file].authors_list and page.authors_list: + header[file].authors_list = page.authors_list + if not header[file].description: + found = m(commands.getoutput("cat "+o.package+".spec"), +diff -up texlive-20180414/source/texk/dvipdfm-x/cid.c.me texlive-20180414/source/texk/dvipdfm-x/cid.c +--- texlive-20180414/source/texk/dvipdfm-x/cid.c.me 2018-08-14 14:23:43.959754741 +0100 ++++ texlive-20180414/source/texk/dvipdfm-x/cid.c 2018-09-24 10:52:23.863792313 +0100 +@@ -636,6 +636,7 @@ CIDFont_cache_find (const char *map_name + CIDFONT_FLAG_TYPE1C) < 0 && + CIDFont_base_open (font, map_name, cmap_csi, opt) < 0) { + CIDFont_release(font); ++ RELEASE(font); + release_opt(opt); + return -1; + } else { +diff -up texlive-20180414/source/texk/dvipdfm-x/dvi.c.me texlive-20180414/source/texk/dvipdfm-x/dvi.c +--- texlive-20180414/source/texk/dvipdfm-x/dvi.c.me 2018-08-14 14:31:53.138750339 +0100 ++++ texlive-20180414/source/texk/dvipdfm-x/dvi.c 2018-08-14 14:41:37.729500250 +0100 +@@ -1001,8 +1001,11 @@ dvi_locate_native_font (const char *file + char *enc_vec[256]; + + fp = DPXFOPEN(filename, DPX_RES_TYPE_T1FONT); +- if (!fp) ++ if (!fp) { ++ if (path) ++ free(path); + return -1; ++ } + + if (!is_pfb(fp)) + ERROR("Failed to read Type 1 font \"%s\".", filename); +diff -up texlive-20180414/source/texk/dvipdfm-x/fontmap.c.me texlive-20180414/source/texk/dvipdfm-x/fontmap.c +--- texlive-20180414/source/texk/dvipdfm-x/fontmap.c.me 2018-09-24 12:45:22.068268381 +0100 ++++ texlive-20180414/source/texk/dvipdfm-x/fontmap.c 2018-09-24 12:45:13.508111517 +0100 +@@ -849,8 +849,8 @@ pdf_insert_fontmap_record (const char *k + subfont_ids = sfd_get_subfont_ids(sfd_name, &n); + if (!subfont_ids) { + RELEASE(fnt_name); +- RELEASE(sfd_name); + WARN("Could not open SFD file: %s", sfd_name); ++ RELEASE(sfd_name); + return NULL; + } + if (verbose > 3) +diff -up texlive-20180414/source/texk/dvipdfm-x/otl_conf.c.me texlive-20180414/source/texk/dvipdfm-x/otl_conf.c +--- texlive-20180414/source/texk/dvipdfm-x/otl_conf.c.me 2018-09-24 12:55:36.589529234 +0100 ++++ texlive-20180414/source/texk/dvipdfm-x/otl_conf.c 2018-09-24 12:55:27.339359728 +0100 +@@ -83,6 +83,7 @@ parse_uc_coverage (pdf_obj *gclass, cons + pdf_add_array(coverage, + pdf_link_obj(pdf_get_array(cvalues, i))); + } ++ RELEASE(glyphclass); + } + break; + default: +diff -up texlive-20180414/source/texk/dvipdfm-x/otl_opt.c.me texlive-20180414/source/texk/dvipdfm-x/otl_opt.c +--- texlive-20180414/source/texk/dvipdfm-x/otl_opt.c.me 2018-09-24 13:00:10.034538046 +0100 ++++ texlive-20180414/source/texk/dvipdfm-x/otl_opt.c 2018-09-24 13:13:31.949224947 +0100 +@@ -134,6 +134,7 @@ parse_expr (const char **pp, const char + expr = parse_expr(pp, endptr); + if (!expr) { + WARN("Syntax error: %s\n", *pp); ++ bt_release_tree(root); + return NULL; + } + if (**pp != ')') { +diff -up texlive-20180414/source/texk/dvipdfm-x/pdfdoc.c.me texlive-20180414/source/texk/dvipdfm-x/pdfdoc.c +--- texlive-20180414/source/texk/dvipdfm-x/pdfdoc.c.me 2018-09-24 13:04:07.928895033 +0100 ++++ texlive-20180414/source/texk/dvipdfm-x/pdfdoc.c 2018-09-24 13:04:39.329470128 +0100 +@@ -825,7 +825,7 @@ pdf_doc_close_page_tree (pdf_doc *p) + pdf_page *page; + + page = doc_get_page_entry(p, page_no); +- if (page->page_obj) { ++ if (page->page_ref) { + WARN("Nonexistent page #%ld refered.", page_no); + pdf_release_obj(page->page_ref); + page->page_ref = NULL; +diff -up texlive-20180414/source/texk/dvipdfm-x/pdfencrypt.c.me texlive-20180414/source/texk/dvipdfm-x/pdfencrypt.c +--- texlive-20180414/source/texk/dvipdfm-x/pdfencrypt.c.me 2018-09-24 13:05:05.679952732 +0100 ++++ texlive-20180414/source/texk/dvipdfm-x/pdfencrypt.c 2018-09-24 13:10:25.655813021 +0100 +@@ -616,7 +616,7 @@ pdf_enc_set_passwd (unsigned int bits, u + } + if (uplain) { + if (preproc_password(uplain, upasswd, p->V) < 0) +- WARN("Invalid UTF-8 string for passowrd."); ++ WARN("Invalid UTF-8 string for password."); + } else { + while (1) { + strncpy(input, getpass("User password: "), MAX_PWD_LEN); +diff -up texlive-20180414/source/texk/dvipdfm-x/pdfobj.c.me texlive-20180414/source/texk/dvipdfm-x/pdfobj.c +--- texlive-20180414/source/texk/dvipdfm-x/pdfobj.c.me 2018-09-24 13:12:23.727975488 +0100 ++++ texlive-20180414/source/texk/dvipdfm-x/pdfobj.c 2018-09-24 13:12:43.988346552 +0100 +@@ -1862,8 +1862,9 @@ apply_filter_TIFF2_1_2_4 (unsigned char + } + } + } +- if (outbits > 0) ++ if (outbits > 0) { + raster[k] = (outbuf << (8 - outbits)); k++; ++ } + } + RELEASE(prev); + } +diff -up texlive-20180414/source/texk/dvipdfm-x/pkfont.c.me texlive-20180414/source/texk/dvipdfm-x/pkfont.c +--- texlive-20180414/source/texk/dvipdfm-x/pkfont.c.me 2018-09-24 13:14:24.490187294 +0100 ++++ texlive-20180414/source/texk/dvipdfm-x/pkfont.c 2018-09-24 13:17:33.873656807 +0100 +@@ -329,6 +329,7 @@ pk_decode_bitmap (pdf_obj *stream, uint3 + } + } + ++ free(rowptr); + return 0; + } + +diff -up texlive-20180414/source/texk/dvipdfm-x/spc_dvips.c.me texlive-20180414/source/texk/dvipdfm-x/spc_dvips.c +--- texlive-20180414/source/texk/dvipdfm-x/spc_dvips.c.me 2018-09-24 13:20:43.777135845 +0100 ++++ texlive-20180414/source/texk/dvipdfm-x/spc_dvips.c 2018-09-24 13:45:28.104313939 +0100 +@@ -402,6 +402,7 @@ spc_handler_ps_tricks_bput (struct spc_e + temporary_defs = dpx_create_temp_file(); + if (!temporary_defs) { + WARN("Failed to create temporary input file for PSTricks image conversion."); ++ free(formula); + return -1; + } + +@@ -455,7 +456,7 @@ spc_handler_ps_tricks_brotate (struct sp + if (calculate_PS(cmd, strlen(cmd), &value, 0, 0, 0, 0, 0) != 0) + return -1; + RAngles[RAngleCount] = value; +- ++ free(cmd); + return spc_handler_xtx_do_transform (spe->x_user, spe->y_user, + cos(value * M_PI / 180), sin(value * M_PI / 180), + -sin(value * M_PI / 180), cos(value * M_PI / 180), +@@ -491,12 +492,17 @@ spc_handler_ps_tricks_transform (struct + concat[strlen(post)] = 0; + concat = strstr(cmd, "{"); + *concat = ' '; +- if (calculate_PS(cmd, strlen(cmd), &d1, &d2, &d3, &d4, &d5, &d6) != 0) ++ if (calculate_PS(cmd, strlen(cmd), &d1, &d2, &d3, &d4, &d5, &d6) != 0) { ++ free(cmd); + return -1; +- if (spc_handler_xtx_gsave (0, 0) != 0) ++ } ++ if (spc_handler_xtx_gsave (0, 0) != 0) { ++ free(cmd); + return -1; ++ } + return spc_handler_xtx_do_transform (spe->x_user, spe->y_user, d1, d2, d3, d4, d5, d6); + } ++ free(cmd); + return spc_handler_xtx_grestore (0, 0); + } + +@@ -570,7 +576,8 @@ spc_handler_ps_tricks_parse_path (struct + fwrite(args->curptr, 1, clip - args->curptr, fp); + fprintf(fp, " stroke "); + skip_white(&clip, args->endptr); +- parse_ident(&clip, args->endptr); ++ char *token = parse_ident(&clip, args->endptr); ++ free(token); + fwrite(clip, 1, args->endptr - clip, fp); + } + #endif +@@ -610,7 +617,9 @@ spc_handler_ps_tricks_parse_path (struct + if (error) { + WARN("Image format conversion for PSTricks failed."); + RELEASE(gs_in); ++ RELEASE(gs_out); + gs_in = 0; ++ gs_out = 0; + return error; + } + +@@ -706,6 +715,7 @@ spc_handler_ps_tricks_render (struct spc + WARN("Image format conversion for PSTricks failed."); + RELEASE(gs_in); + gs_in = 0; ++ RELEASE(gs_out); + return error; + } + +@@ -1074,9 +1084,10 @@ int calculate_PS (char *string, int leng + fscanf(coord, " %lf %lf ", res1, res2); + else + fscanf(coord, " [%lf %lf %lf %lf %lf %lf] ", res1, res2, res3, res4, res5, res6); +- } else ++ } else { ++ RELEASE(cmd); + return -1; +- ++ } + pclose(coord); + RELEASE(cmd); + dpx_delete_temp_file(formula, true); +diff -up texlive-20180414/source/texk/dvipdfm-x/spc_util.c.me texlive-20180414/source/texk/dvipdfm-x/spc_util.c +--- texlive-20180414/source/texk/dvipdfm-x/spc_util.c.me 2018-09-24 13:50:50.730216569 +0100 ++++ texlive-20180414/source/texk/dvipdfm-x/spc_util.c 2018-09-24 13:54:23.844113385 +0100 +@@ -149,6 +149,7 @@ spc_read_color_color (struct spc_env *sp + char *color_name = parse_c_ident(&ap->curptr, ap->endptr); + if (!color_name) { + spc_warn(spe, "No valid spot color name specified?"); ++ RELEASE(q); + return -1; + } + skip_blank(&ap->curptr, ap->endptr); +diff -up texlive-20180414/source/texk/dvipdfm-x/t1_load.c.me texlive-20180414/source/texk/dvipdfm-x/t1_load.c +--- texlive-20180414/source/texk/dvipdfm-x/t1_load.c.me 2018-09-24 13:55:59.085854887 +0100 ++++ texlive-20180414/source/texk/dvipdfm-x/t1_load.c 2018-09-24 13:58:52.979034543 +0100 +@@ -632,6 +632,9 @@ parse_subrs (cff_font *font, + if (!PST_INTEGERTYPE(tok) || pst_getIV(tok) < 0 || + pst_getIV(tok) > CS_STR_LEN_MAX) { + RELEASE_TOK(tok); ++ if (offsets) RELEASE(offsets); ++ if (data) RELEASE(data); ++ if (lengths) RELEASE(lengths); + return -1; + } + len = pst_getIV(tok); +diff -up texlive-20180414/source/texk/dvipdfm-x/tt_cmap.c.me texlive-20180414/source/texk/dvipdfm-x/tt_cmap.c +--- texlive-20180414/source/texk/dvipdfm-x/tt_cmap.c.me 2018-09-24 14:03:33.954172208 +0100 ++++ texlive-20180414/source/texk/dvipdfm-x/tt_cmap.c 2018-09-24 14:07:07.738081269 +0100 +@@ -1237,6 +1237,7 @@ otf_create_ToUnicode_stream (const char + res_id = pdf_findresource("CMap", cmap_name); + if (res_id >= 0) { + RELEASE(cmap_name); ++ RELEASE(normalized_font_name); + cmap_ref = pdf_get_resource_reference(res_id); + return cmap_ref; + } +@@ -1254,6 +1255,7 @@ otf_create_ToUnicode_stream (const char + sfont = dfont_open(fp, ttc_index); + } else { + RELEASE(cmap_name); ++ RELEASE(normalized_font_name); + return NULL; + } + +diff -up texlive-20180414/source/texk/dvipng/dvipng-src/font.c.me texlive-20180414/source/texk/dvipng/dvipng-src/font.c +diff -up texlive-20180414/source/texk/dvipng/dvipng-src/misc.c.me texlive-20180414/source/texk/dvipng/dvipng-src/misc.c +diff -up texlive-20180414/source/texk/dvipng/dvipng-src/sfd.c.me texlive-20180414/source/texk/dvipng/dvipng-src/sfd.c +--- texlive-20180414/source/texk/dvipng/dvipng-src/sfd.c.me 2018-09-24 14:25:21.188076748 +0100 ++++ texlive-20180414/source/texk/dvipng/dvipng-src/sfd.c 2018-09-24 14:28:14.741252282 +0100 +@@ -139,8 +139,10 @@ struct psfontmap* FindSubFont(struct psf + sfdname[postfix-sfdspec]='\0'; + /* Check postfix */ + postfix++; +- if (strcmp(sfdwant+strlen(sfdwant)-strlen(postfix),postfix)!=0) ++ if (strcmp(sfdwant+strlen(sfdwant)-strlen(postfix),postfix)!=0) { ++ free(sfdname); + return(NULL); ++ } + /* Extract infix */ + if ((infix=malloc(strlen(sfdwant)-strlen(postfix)+1))==NULL) + Fatal("cannot allocate memory for subfont infix"); +diff -up texlive-20180414/source/texk/dvipos/dvipos.c.me texlive-20180414/source/texk/dvipos/dvipos.c +--- texlive-20180414/source/texk/dvipos/dvipos.c.me 2018-09-24 14:28:22.821400126 +0100 ++++ texlive-20180414/source/texk/dvipos/dvipos.c 2018-09-24 14:33:37.367155421 +0100 +@@ -246,7 +246,7 @@ int main (int argc, char *argv[]) + + if (infname) free(infname); + if (outfname) free(outfname); +- if (bbxfname) free(frmfname); ++ if (bbxfname) free(bbxfname); + if (frmfname) free(frmfname); + + if (outfp) fclose(outfp); +diff -up texlive-20180414/source/texk/dvipsk/dospecial.c.me texlive-20180414/source/texk/dvipsk/dospecial.c +diff -up texlive-20180414/source/texk/dvipsk/emspecial.c.me texlive-20180414/source/texk/dvipsk/emspecial.c +--- texlive-20180414/source/texk/dvipsk/emspecial.c.me 2018-09-24 15:01:40.267917277 +0100 ++++ texlive-20180414/source/texk/dvipsk/emspecial.c 2018-09-24 15:20:25.108474385 +0100 +@@ -811,8 +813,10 @@ MSP_2_ps(FILE *f, int wide, int high) + linelen = (halfword *) mymalloc((integer)sizeof(halfword) * high); + for (i = 0; i < high; i++) { + linelen[i] = readhalfword(f); +- if (feof(f)) ++ if (feof(f)) { ++ free(linelen); + return; ++ } + } + + line = (char *) mymalloc((integer)tobyte(wide)); +@@ -1308,6 +1312,8 @@ bmpgraph(FILE *f, char *filename, float + default: + sprintf(errbuf,"em:graph: Unknown BMP compression\n"); + specerror(errbuf); ++ if (line) free(line); ++ if (pshexa) free(pshexa); + return; + } + +--- texlive-20180414/source/texk/dvipsk/t1part.c.me 2018-09-24 15:47:04.767750977 +0100 ++++ texlive-20180414/source/texk/dvipsk/t1part.c 2018-09-24 16:02:33.294747092 +0100 +@@ -2458,6 +2458,7 @@ Afm(void) + } + } + } ++ fclose(fafm); + return -2; + } + +@@ -2526,6 +2527,7 @@ FontPart(FILE *fout, unsigned char *font + NameOfProgram(); + (void) fprintf(stderr, + "Error: %s is not a valid PFA file\n", fontfile); ++ fclose(fin); + return -1; + } + +@@ -2543,6 +2545,7 @@ FontPart(FILE *fout, unsigned char *font + NameOfProgram(); + (void) fprintf(stderr, + "Error: %s is not a valid PFB file\n", fontfile); ++ fclose(fin); + return -1; + } + break; +@@ -2677,6 +2680,7 @@ LoadVector(int num, CHAR *TmpChar) + } + else + { ++ fclose(fvect); + fprintf(stderr,"\n Error: ending token 'def' not found in <%s> \n", + psvectfile); + return -2; +diff -up texlive-20180414/source/texk/dvisvgm/dvisvgm-src/libs/ff-woff/fontforge/splineorder2.c.me texlive-20180414/source/texk/dvisvgm/dvisvgm-src/libs/ff-woff/fontforge/splineorder2.c +--- texlive-20180414/source/texk/dvisvgm/dvisvgm-src/libs/ff-woff/fontforge/splineorder2.c.me 2018-09-25 08:19:26.742304540 +0100 ++++ texlive-20180414/source/texk/dvisvgm/dvisvgm-src/libs/ff-woff/fontforge/splineorder2.c 2018-09-25 08:20:04.753003584 +0100 +@@ -1289,9 +1289,9 @@ return; + unit.x = from->nextcp.x-from->me.x; + unit.y = from->nextcp.y-from->me.y; + len = sqrt(unit.x*unit.x + unit.y*unit.y); +- if ( len!=0 ) ++ if ( len!=0 ) { + unit.x /= len; unit.y /= len; +- ++ } + if ( (fpt = from->pointtype)==pt_hvcurve ) fpt = pt_curve; + if ( (tpt = to->pointtype)==pt_hvcurve ) tpt = pt_curve; + if ( from->nextcpdef && to->prevcpdef ) switch ( fpt*3+tpt ) { +diff -up texlive-20180414/source/texk/dvisvgm/dvisvgm-src/libs/ff-woff/fontforge/tottf.c.me texlive-20180414/source/texk/dvisvgm/dvisvgm-src/libs/ff-woff/fontforge/tottf.c +--- texlive-20180414/source/texk/dvisvgm/dvisvgm-src/libs/ff-woff/fontforge/tottf.c.me 2018-09-25 09:12:58.071419844 +0100 ++++ texlive-20180414/source/texk/dvisvgm/dvisvgm-src/libs/ff-woff/fontforge/tottf.c 2018-09-25 09:12:50.021271829 +0100 +@@ -4273,9 +4273,10 @@ return( NULL ); + (subheadcnt-i)*sizeof(struct subhead) + sizeof(uint16); + + sub = tmpfile2(); +- if ( sub==NULL ) +-return( NULL ); +- ++ if ( sub==NULL ) { ++ free(glyphs); ++ return( NULL ); ++ } + putshort(sub,2); /* 8/16 format */ + putshort(sub,0); /* Subtable length, we'll come back and fix this */ + putshort(sub,0); /* version/language, not meaningful in ms systems */ +diff -up texlive-20180414/source/texk/dvisvgm/dvisvgm-src/libs/ff-woff/fontforge/ttfspecial.c.me texlive-20180414/source/texk/dvisvgm/dvisvgm-src/libs/ff-woff/fontforge/ttfspecial.c +--- texlive-20180414/source/texk/dvisvgm/dvisvgm-src/libs/ff-woff/fontforge/ttfspecial.c.me 2018-09-25 09:50:27.032676224 +0100 ++++ texlive-20180414/source/texk/dvisvgm/dvisvgm-src/libs/ff-woff/fontforge/ttfspecial.c 2018-09-25 09:47:22.249288133 +0100 +@@ -1343,6 +1343,8 @@ static void pfed_read_glyph_layer(FILE * + LogError(_("Whoops, Ran out of spiros\n")); + } + } ++ free(cur->layers); ++ free(cur); + free(contours); + } + +diff -up texlive-20180414/source/texk/kpathsea/cnf.c.me texlive-20180414/source/texk/kpathsea/cnf.c +--- texlive-20180414/source/texk/kpathsea/cnf.c.me 2018-09-25 10:02:44.406129099 +0100 ++++ texlive-20180414/source/texk/kpathsea/cnf.c 2018-09-25 10:50:20.648575054 +0100 +@@ -132,6 +132,8 @@ do_line (kpathsea kpse, string line) + while (len > 0 && ISSPACE (start[len - 1])) + len--; + if (len == 0) { ++ if (prog) free (prog); ++ if (var) free (var); + return ("No cnf value"); + } + +@@ -234,7 +236,6 @@ read_all_cnf (kpathsea kpse) + xfclose (cnf_file, *cnf); + free (*cnf); + } +- free (cnf_files); + } else { + string warn = getenv ("KPATHSEA_WARNING"); + if (!(warn && STREQ (warn, "0"))) { +@@ -243,6 +244,7 @@ read_all_cnf (kpathsea kpse) + cnf_path); + } + } ++ free (cnf_files); + } + + /* Read the cnf files on the first call. Return the first value in the +diff -up texlive-20180414/source/texk/kpathsea/fontmap.c.me texlive-20180414/source/texk/kpathsea/fontmap.c +--- texlive-20180414/source/texk/kpathsea/fontmap.c.me 2018-09-25 10:24:28.990061334 +0100 ++++ texlive-20180414/source/texk/kpathsea/fontmap.c 2018-09-25 10:25:08.310783006 +0100 +@@ -162,6 +162,7 @@ read_all_maps (kpathsea kpse) + map_file_parse (kpse, *filenames); + filenames++; + } ++ free(filenames); + } + + /* Look up KEY in texfonts.map's; if it's not found, remove any suffix +diff -up texlive-20180414/source/texk/kpathsea/kpsewhich.c.me texlive-20180414/source/texk/kpathsea/kpsewhich.c +--- texlive-20180414/source/texk/kpathsea/kpsewhich.c.me 2018-09-25 10:29:35.985696560 +0100 ++++ texlive-20180414/source/texk/kpathsea/kpsewhich.c 2018-09-25 10:50:53.349178562 +0100 +@@ -742,7 +742,8 @@ kpathsea_set_program_enabled (kpse, fmt, + DISABLE_MKTEX (kpse_ocp_format); + + /* NULL for no fallback font. */ +- kpathsea_init_prog (kpse, uppercasify (kpse->program_name), dpi, mode, NULL); ++ string PROG = uppercasify (kpse->program_name); ++ kpathsea_init_prog (kpse, PROG, dpi, mode, NULL); + + /* Have to do this after setting the program name. */ + if (user_format_string) { +@@ -752,6 +753,7 @@ kpathsea_set_program_enabled (kpse, fmt, + user_format_string); + } + } ++ free(PROG); + } + + +diff -up texlive-20180414/source/texk/kpathsea/mktexlsr.me texlive-20180414/source/texk/kpathsea/mktexlsr +--- texlive-20180414/source/texk/kpathsea/mktexlsr.me 2018-08-14 09:49:37.815932357 +0100 ++++ texlive-20180414/source/texk/kpathsea/mktexlsr 2018-08-14 09:51:12.685644501 +0100 +@@ -71,18 +71,18 @@ esac + + if tty -s; then verbose=true; else verbose=false; fi + dry_run=false +-trees= ++trees=mktexlsrtrees + + # initialize treefile by either mktemp or some random name + # code taken from pdfjam and adjusted + { + treefile=` +- (umask 077 && mktemp "${TMPDIR-/tmp}/mktexlsrtrees.XXXXXXXXXX") 2>/dev/null ++ (umask 077 && mktemp "${TMPDIR-/tmp}/$trees.XXXXXXXXXX") 2>/dev/null + ` && test -n "$treefile" && test -f "$treefile" + } || { + ## We'll use awk to make random number, for portability + random=`awk 'END { srand(); printf ("%d\n", rand()*1000000); }' /dev/null` +- treefile="${TMPDIR-/tmp}/mktexlsrtrees$$.$random" ++ treefile="${TMPDIR-/tmp}/$trees$$.$random" + } || exit $? + + trap 'cd /; rm -f $treefile; test -z "$db_dir_tmp" || rm -rf "$db_dir_tmp"; +diff -up texlive-20180414/source/texk/kpathsea/tex-file.c.me texlive-20180414/source/texk/kpathsea/tex-file.c +--- texlive-20180414/source/texk/kpathsea/tex-file.c.me 2018-09-25 10:47:56.305911131 +0100 ++++ texlive-20180414/source/texk/kpathsea/tex-file.c 2018-09-25 13:11:34.995055022 +0100 +@@ -434,6 +434,7 @@ init_maketex (kpathsea kpse, kpse_file_f + kpse_src_client_cnf); + } + ++ if (progval) free (progval); + free (PROG); + } + +diff -up texlive-20180414/source/texk/kpathsea/tex-glyph.c.me texlive-20180414/source/texk/kpathsea/tex-glyph.c +--- texlive-20180414/source/texk/kpathsea/tex-glyph.c.me 2018-09-25 14:58:28.564047833 +0100 ++++ texlive-20180414/source/texk/kpathsea/tex-glyph.c 2018-09-25 14:59:16.634928903 +0100 +@@ -177,7 +177,7 @@ try_fontmap (kpathsea kpse, const_string + *fontname_ptr = xstrdup (first_name); + } + } +- ++ free (mapped_names); + return ret; + } + +diff -up texlive-20180414/source/texk/kpathsea/tex-make.c.me texlive-20180414/source/texk/kpathsea/tex-make.c +--- texlive-20180414/source/texk/kpathsea/tex-make.c.me 2018-10-01 12:28:44.510074773 +0100 ++++ texlive-20180414/source/texk/kpathsea/tex-make.c 2018-10-01 13:24:01.201630392 +0100 +@@ -116,8 +116,9 @@ misstex (kpathsea kpse, kpse_file_format + + kpse->missfont + = missfont_name ? fopen (missfont_name, FOPEN_A_MODE) : NULL; +- if (!kpse->missfont && kpathsea_var_value (kpse, "TEXMFOUTPUT")) { +- missfont_name = concat3 (kpathsea_var_value (kpse, "TEXMFOUTPUT"), ++ char *texmfoutput = kpathsea_var_value (kpse, "TEXMFOUTPUT"); ++ if (!kpse->missfont && texmfoutput) { ++ missfont_name = concat3 (texmfoutput, + DIR_SEP_STRING, missfont_name); + kpse->missfont = fopen (missfont_name, FOPEN_A_MODE); + } +@@ -125,6 +126,7 @@ misstex (kpathsea kpse, kpse_file_format + if (kpse->missfont) + fprintf (stderr, "kpathsea: Appending font creation commands to %s.\n", + missfont_name); ++ free (texmfoutput); + } + + /* Write the command if we have a log file. */ +@@ -439,6 +441,7 @@ kpathsea_make_tex (kpathsea kpse, kpse_f + if (base[0] == '-' /* || IS_DIR_SEP(base[0]) */) { + fprintf(stderr, "kpathsea:make_tex: Invalid filename `%s', starts with '%c'\n", + base, base[0]); ++ free (args); + return NULL; + } + for (i = 0; base[i]; i++) { +@@ -451,6 +454,7 @@ kpathsea_make_tex (kpathsea kpse, kpse_f + { + fprintf(stderr, "kpathsea:make_tex: Invalid filename `%s', contains '%c'\n", + base, base[i]); ++ free (args); + return NULL; + } + } +diff -up texlive-20180414/source/texk/makeindexk/mkindex.me texlive-20180414/source/texk/makeindexk/mkindex +--- texlive-20180414/source/texk/makeindexk/mkindex.me 2018-08-14 09:48:13.864392161 +0100 ++++ texlive-20180414/source/texk/makeindexk/mkindex 2018-08-14 09:48:34.564771939 +0100 +@@ -13,7 +13,7 @@ unset RUNNING_BSH + progname=`basename $0` + case $# in + 0) +- echo "usage: `basename $0` file[.idx] ..." 1>&2 ++ echo "usage: $progname file[.idx] ..." 1>&2 + exit 1 + ;; + esac +diff -up texlive-20180414/source/texk/web2c/lib/openclose.c.me texlive-20180414/source/texk/web2c/lib/openclose.c +--- texlive-20180414/source/texk/web2c/lib/openclose.c.me 2018-10-02 15:06:29.670502929 +0100 ++++ texlive-20180414/source/texk/web2c/lib/openclose.c 2018-10-02 15:09:52.234270066 +0100 +@@ -303,6 +303,7 @@ open_output (FILE **f_ptr, const_string + fname = concat3(texmfoutput, DIR_SEP_STRING, nameoffile+1); + *f_ptr = fopen(fname, fopen_mode); + } ++ free (texmfoutput); + } + /* If this succeeded, change nameoffile accordingly. */ + if (*f_ptr) { +diff -up texlive-20180414/source/texk/web2c/lib/texmfmp.c.me texlive-20180414/source/texk/web2c/lib/texmfmp.c +--- texlive-20180414/source/texk/web2c/lib/texmfmp.c.me 2018-10-04 09:45:15.432099911 +0100 ++++ texlive-20180414/source/texk/web2c/lib/texmfmp.c 2018-10-04 10:22:47.004046653 +0100 +@@ -654,7 +654,9 @@ static boolean + texmf_yesno(const_string var) + { + string value = kpse_var_value (var); +- return value && (*value == 't' || *value == 'y' || *value == '1'); ++ boolean temp_value = (value && (*value == 't' || *value == 'y' || *value == '1')); ++ free (value); ++ return temp_value; + } + + #ifdef pdfTeX +@@ -899,6 +901,7 @@ maininit (int ac, string *av) + } + DUMP_VAR = concat (" ", with_ext); /* adjust array for Pascal */ + DUMP_LENGTH_VAR = strlen (DUMP_VAR + 1); ++ free (with_ext); + } else { + /* For dump_name to be NULL is a bug. */ + abort(); +@@ -1379,11 +1382,9 @@ tcx_get_num (int upb, + void + readtcxfile (void) + { +- string orig_filename; + if (!find_suffix (translate_filename)) { + translate_filename = concat (translate_filename, ".tcx"); + } +- orig_filename = translate_filename; + translate_filename + = kpse_find_file (translate_filename, kpse_web2c_format, true); + if (translate_filename) { +@@ -1434,7 +1435,7 @@ readtcxfile (void) + } + xfclose(translate_file, translate_filename); + } else { +- WARNING1 ("Could not open char translation file `%s'", orig_filename); ++ WARNING1 ("Could not open char translation file `%s'", translate_filename); + } + } + #endif /* !Aleph && !XeTeX */ +@@ -2888,7 +2889,9 @@ boolean + isnewsource (strnumber srcfilename, int lineno) + { + char *name = gettexstring(srcfilename); +- return (compare_paths(name, last_source_name) != 0 || lineno != last_lineno); ++ boolean tmp_name = (compare_paths(name, last_source_name) != 0 || lineno != last_lineno); ++ free (name); ++ return tmp_name; + } + + void +@@ -2926,6 +2929,7 @@ makesrcspecial (strnumber srcfilename, i + while (*s) + strpool[poolptr++] = *s++; + ++ free (filename); + return (oldpoolptr); + } + +@@ -3223,6 +3227,7 @@ void getfiledump(integer s, int offset, + recorder_record_input(file_name); + if (fseek(f, offset, SEEK_SET) != 0) { + xfree(file_name); ++ fclose(f); + return; + } + /* there is enough space in the string pool, the read +diff -up texlive-20180414/source/texk/web2c/luatexdir/font/luafont.w.me texlive-20180414/source/texk/web2c/luatexdir/font/luafont.w +--- texlive-20180414/source/texk/web2c/luatexdir/font/luafont.w.me 2018-10-04 10:46:48.310815583 +0100 ++++ texlive-20180414/source/texk/web2c/luatexdir/font/luafont.w 2018-10-04 10:57:37.192864136 +0100 +@@ -1102,8 +1102,8 @@ static void font_char_from_lua(lua_State + { + int k, r, t, lt, u, n; + charinfo *co; +- kerninfo *ckerns; +- liginfo *cligs; ++ kerninfo *ckerns = NULL; ++ liginfo *cligs = NULL; + scaled j; + const char *s; + int nl = 0; /* number of ligature table items */ +@@ -1403,6 +1403,8 @@ static void font_char_from_lua(lua_State + lua_pop(L, 1); /* ligatures table */ + } + } ++ if (ckerns) free (ckerns); ++ if (cligs) free (cligs); + } + + @ The caller has to fix the state of the lua stack when there is an error! +diff -up texlive-20180414/source/texk/web2c/luatexdir/font/tfmofm.w.me texlive-20180414/source/texk/web2c/luatexdir/font/tfmofm.w +--- texlive-20180414/source/texk/web2c/luatexdir/font/tfmofm.w.me 2018-10-04 11:06:22.002603849 +0100 ++++ texlive-20180414/source/texk/web2c/luatexdir/font/tfmofm.w 2018-10-04 11:06:46.713062328 +0100 +@@ -1036,6 +1036,8 @@ int read_tfm_info(internal_font_number f + } + } + ++ free (cligs); ++ free (ckerns); + cligs = NULL; + ckerns = NULL; + +diff -up texlive-20180414/source/texk/web2c/luatexdir/font/vfovf.w.me texlive-20180414/source/texk/web2c/luatexdir/font/vfovf.w +--- texlive-20180414/source/texk/web2c/luatexdir/font/vfovf.w.me 2018-10-04 13:46:33.030731080 +0100 ++++ texlive-20180414/source/texk/web2c/luatexdir/font/vfovf.w 2018-10-04 14:05:38.882001697 +0100 +@@ -760,6 +760,8 @@ void do_vf(internal_font_number f) + vf_read_u(4, utmp); + cc = (int) utmp; + if (!char_exists(f, cc)) { ++ if (vf_local_fnts) free (vf_local_fnts); ++ if (vf_real_fnts) free (vf_real_fnts); + bad_vf("invalid character code"); + } + vf_read(4, k); +@@ -768,6 +770,8 @@ void do_vf(internal_font_number f) + packet_length = cmd; + vf_byte(cc); + if (!char_exists(f, cc)) { ++ if (vf_local_fnts) free (vf_local_fnts); ++ if (vf_real_fnts) free (vf_real_fnts); + bad_vf("invalid character code"); + } + vf_read_u(3, utmp); +@@ -820,9 +824,12 @@ void do_vf(internal_font_number f) + n = 0; + while ((n < vf_nf) && (vf_local_fnts[n] != (unsigned) k)) + n++; +- if (n == vf_nf) ++ if (n == vf_nf) { ++ if (vpackets) free (vpackets); ++ if (vf_local_fnts) free (vf_local_fnts); ++ if (vf_real_fnts) free (vf_real_fnts); + bad_vf("undefined local font"); +- ++ } + k = (int) vf_real_fnts[n]; + append_fnt_set(k); + cmd_length = 0; +@@ -938,8 +945,12 @@ void do_vf(internal_font_number f) + vf_read_u((cmd - xxx1 + 1), utmp); + cmd_length = (int) utmp; + packet_length -= (cmd - xxx1 + 1); +- if (cmd_length <= 0) ++ if (cmd_length <= 0) { ++ if (vpackets) free (vpackets); ++ if (vf_local_fnts) free (vf_local_fnts); ++ if (vf_real_fnts) free (vf_real_fnts); + bad_vf("special of negative length"); ++ } + packet_length -= (unsigned) cmd_length; + + append_packet(packet_special_code); +@@ -982,6 +993,9 @@ void do_vf(internal_font_number f) + break; + case pop: + if (stack_level == 0) { ++ if (vpackets) free (vpackets); ++ if (vf_local_fnts) free (vf_local_fnts); ++ if (vf_real_fnts) free (vf_real_fnts); + bad_vf("more POPs than PUSHs in character"); + } else { + decr(stack_level); +@@ -993,6 +1007,9 @@ void do_vf(internal_font_number f) + } + break; + default: ++ if (vf_local_fnts) free (vf_local_fnts); ++ if (vf_real_fnts) free (vf_real_fnts); ++ if (vpackets) free (vpackets); + bad_vf("improver DVI command"); + } + } +@@ -1000,18 +1017,26 @@ void do_vf(internal_font_number f) + /* signal end of packet */ + append_packet(packet_end_code); + +- if (stack_level != 0) ++ if (stack_level != 0) { ++ if (vf_local_fnts) free (vf_local_fnts); ++ if (vf_real_fnts) free (vf_real_fnts); ++ if (vpackets) free (vpackets); + bad_vf("more PUSHs than POPs in character packet"); ++ } + if (packet_length != 0) + bad_vf("invalid packet length or DVI command in packet"); + /* \.{Store the packet being built} */ + set_charinfo_packets(co, vpackets); + vf_byte(cmd); + } +- if (cmd != post) ++ if (cmd != post) { ++ if (vf_local_fnts) free (vf_local_fnts); ++ if (vf_real_fnts) free (vf_real_fnts); + bad_vf("POST command expected"); +- ++ } + xfree(vf_buffer); ++ if (vf_local_fnts) free (vf_local_fnts); ++ if (vf_real_fnts) free (vf_real_fnts); + } + + @ @c +diff -up texlive-20180414/source/texk/web2c/luatexdir/font/writecff.w.me texlive-20180414/source/texk/web2c/luatexdir/font/writecff.w +--- texlive-20180414/source/texk/web2c/luatexdir/font/writecff.w.me 2018-10-04 14:46:50.747887890 +0100 ++++ texlive-20180414/source/texk/web2c/luatexdir/font/writecff.w 2018-10-04 16:09:12.999654546 +0100 +@@ -1105,6 +1105,7 @@ cff_font *read_cff(unsigned char *buf, l + if (n > idx->count - 1) { + normal_warning("cff","invalid fontset index number"); + cff_close(cff); ++ cff_release_index(idx); + return NULL; + } + cff->name = idx; +@@ -1121,6 +1122,7 @@ cff_font *read_cff(unsigned char *buf, l + + if (n > idx->count - 1) { + normal_warning("cff","top DICT not exist"); ++ cff_release_index(idx); + cff_close(cff); + return NULL; + } +@@ -1128,6 +1130,7 @@ cff_font *read_cff(unsigned char *buf, l + idx->data + idx->offset[n + 1] - 1); + if (!cff->topdict) { + normal_warning("cff","parsing top DICT data failed"); ++ cff_release_index(idx); + cff_close(cff); + return NULL; + } +@@ -3037,6 +3040,7 @@ cffont->_string = NULL; + pdf_out_block(pdf, stream, l); + pdf_end_stream(pdf); + pdf_end_obj(pdf); ++ free(stream); + } + } + /* +diff -up texlive-20180414/source/texk/web2c/luatexdir/font/writetype2.w.me texlive-20180414/source/texk/web2c/luatexdir/font/writetype2.w +--- texlive-20180414/source/texk/web2c/luatexdir/font/writetype2.w.me 2018-10-04 16:13:09.614046152 +0100 ++++ texlive-20180414/source/texk/web2c/luatexdir/font/writetype2.w 2018-10-04 16:13:43.084667255 +0100 +@@ -406,6 +406,7 @@ boolean make_tt_subset(PDF pdf, fd_entry + pdf_out_block(pdf, stream, l); + pdf_end_stream(pdf); + pdf_end_obj(pdf); ++ free(stream); + } + } + } diff --git a/SOURCES/texlive-20180414-new-poppler.patch b/SOURCES/texlive-20180414-new-poppler.patch new file mode 100644 index 0000000..6eb2fb7 --- /dev/null +++ b/SOURCES/texlive-20180414-new-poppler.patch @@ -0,0 +1,641 @@ +diff -up texlive-base-20180414/source/texk/web2c/pdftexdir/pdftoepdf.cc.newpoppler texlive-base-20180414/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20180414/source/texk/web2c/pdftexdir/pdftoepdf.cc.newpoppler 2016-11-25 13:24:37.000000000 -0500 ++++ texlive-base-20180414/source/texk/web2c/pdftexdir/pdftoepdf.cc 2018-04-30 13:26:10.442342831 -0400 +@@ -1,5 +1,5 @@ + /* +-Copyright 1996-2016 Han The Thanh, ++Copyright 1996-2017 Han The Thanh, + + This file is part of pdfTeX. + +@@ -17,6 +17,15 @@ You should have received a copy of the G + with this program. If not, see . + */ + ++/* ++This is based on the patch texlive-poppler-0.59.patch <2017-09-19> at ++https://git.archlinux.org/svntogit/packages.git/plain/texlive-bin/trunk ++by Arch Linux. A little modifications are made to avoid a crash for ++some kind of pdf images, such as figure_missing.pdf in gnuplot. ++The poppler should be 0.59.0 or newer versions. ++POPPLER_VERSION should be defined. ++*/ ++ + /* Do this early in order to avoid a conflict between + MINGW32 defining 'boolean' as 'unsigned char' and + defining Pascal's boolean as 'int'. +@@ -39,10 +48,7 @@ with this program. If not, see + #define GString GooString + #else +-#include +-#include +-#include +-#include ++#error POPPLER_VERSION should be defined. + #endif + #include + +@@ -84,31 +90,6 @@ extern integer zround(double); + #define MASK_SUPPRESS_PTEX_PAGENUMBER 0x04 + #define MASK_SUPPRESS_PTEX_INFODICT 0x08 + +-// PdfObject encapsulates the xpdf Object type, +-// and properly frees its resources on destruction. +-// Use obj-> to access members of the Object, +-// and &obj to get a pointer to the object. +-// It is no longer necessary to call Object::free explicitely. +- +-class PdfObject { +- public: +- PdfObject() { // nothing +- } ~PdfObject() { +- iObject.free(); +- } +- Object *operator->() { +- return &iObject; +- } +- Object *operator&() { +- return &iObject; +- } +- private: // no copying or assigning +- PdfObject(const PdfObject &); +- void operator=(const PdfObject &); +- public: +- Object iObject; +-}; +- + // When copying the Resources of the selected page, all objects are copied + // recusively top-down. Indirect objects however are not fetched during + // copying, but get a new object number from pdfTeX and then will be +@@ -212,18 +193,6 @@ static void delete_document(PdfDocument + delete pdf_doc; + } + +-// Replacement for +-// Object *initDict(Dict *dict1){ initObj(objDict); dict = dict1; return this; } +- +-static void initDictFromDict(PdfObject & obj, Dict * dict) +-{ +- obj->initDict(xref); +- for (int i = 0, l = dict->getLength(); i < l; i++) { +- Object obj1; +- obj->dictAdd(copyString(dict->getKey(i)), dict->getValNF(i, &obj1)); +- } +-} +- + // -------------------------------------------------------------------- + + static int addEncoding(GfxFont * gfont) +@@ -320,10 +289,10 @@ static void copyName(char *s) + + static void copyDictEntry(Object * obj, int i) + { +- PdfObject obj1; ++ Object obj1; + copyName(obj->dictGetKey(i)); + pdf_puts(" "); +- obj->dictGetValNF(i, &obj1); ++ obj1 = obj->dictGetValNF(i); + copyObject(&obj1); + pdf_puts("\n"); + } +@@ -376,17 +345,17 @@ static void copyStream(Stream * str) + static void copyProcSet(Object * obj) + { + int i, l; +- PdfObject procset; ++ Object procset; + if (!obj->isArray()) + pdftex_fail("PDF inclusion: invalid ProcSet array type <%s>", + obj->getTypeName()); + pdf_puts("/ProcSet [ "); + for (i = 0, l = obj->arrayGetLength(); i < l; ++i) { +- obj->arrayGetNF(i, &procset); +- if (!procset->isName()) ++ procset = obj->arrayGetNF(i); ++ if (!procset.isName()) + pdftex_fail("PDF inclusion: invalid ProcSet entry type <%s>", +- procset->getTypeName()); +- copyName(procset->getName()); ++ procset.getTypeName()); ++ copyName(procset.getName()); + pdf_puts(" "); + } + pdf_puts("]\n"); +@@ -394,10 +363,29 @@ static void copyProcSet(Object * obj) + + #define REPLACE_TYPE1C true + ++static bool embeddableFont(Object * fontdesc) ++{ ++ Object fontfile, ffsubtype; ++ ++ if (!fontdesc->isDict()) ++ return false; ++ fontfile = fontdesc->dictLookup("FontFile"); ++ if (fontfile.isStream()) ++ return true; ++ if (REPLACE_TYPE1C) { ++ fontfile = fontdesc->dictLookup("FontFile3"); ++ if (!fontfile.isStream()) ++ return false; ++ ffsubtype = fontfile.streamGetDict()->lookup("Subtype"); ++ return ffsubtype.isName() && !strcmp(ffsubtype.getName(), "Type1C"); ++ } ++ return false; ++} ++ + static void copyFont(char *tag, Object * fontRef) + { +- PdfObject fontdict, subtype, basefont, fontdescRef, fontdesc, charset, +- fontfile, ffsubtype, stemV; ++ Object fontdict, subtype, basefont, fontdescRef, fontdesc, charset, ++ stemV; + GfxFont *gfont; + fd_entry *fd; + fm_entry *fontmap; +@@ -413,33 +401,39 @@ static void copyFont(char *tag, Object * + } + // Only handle included Type1 (and Type1C) fonts; anything else will be copied. + // Type1C fonts are replaced by Type1 fonts, if REPLACE_TYPE1C is true. +- if (!fixedinclusioncopyfont && fontRef->fetch(xref, &fontdict)->isDict() +- && fontdict->dictLookup("Subtype", &subtype)->isName() +- && !strcmp(subtype->getName(), "Type1") +- && fontdict->dictLookup("BaseFont", &basefont)->isName() +- && fontdict->dictLookupNF("FontDescriptor", &fontdescRef)->isRef() +- && fontdescRef->fetch(xref, &fontdesc)->isDict() +- && (fontdesc->dictLookup("FontFile", &fontfile)->isStream() +- || (REPLACE_TYPE1C +- && fontdesc->dictLookup("FontFile3", &fontfile)->isStream() +- && fontfile->streamGetDict()->lookup("Subtype", +- &ffsubtype)->isName() +- && !strcmp(ffsubtype->getName(), "Type1C"))) +- && (fontmap = lookup_fontmap(basefont->getName())) != NULL) { ++ fontdict = fontRef->fetch(xref); ++ fontdesc = Object(objNull); ++ if (fontdict.isDict()) { ++ subtype = fontdict.dictLookup("Subtype"); ++ basefont = fontdict.dictLookup("BaseFont"); ++ fontdescRef = fontdict.dictLookupNF("FontDescriptor"); ++ if (fontdescRef.isRef()) { ++ fontdesc = fontdescRef.fetch(xref); ++ } ++ } ++ if (!fixedinclusioncopyfont && fontdict.isDict() ++ && subtype.isName() ++ && !strcmp(subtype.getName(), "Type1") ++ && basefont.isName() ++ && fontdescRef.isRef() ++ && fontdesc.isDict() ++ && embeddableFont(&fontdesc) ++ && (fontmap = lookup_fontmap(basefont.getName())) != NULL) { + // round /StemV value, since the PDF input is a float + // (see Font Descriptors in PDF reference), but we only store an + // integer, since we don't want to change the struct. +- fontdesc->dictLookup("StemV", &stemV); +- fd = epdf_create_fontdescriptor(fontmap, zround(stemV->getNum())); +- if (fontdesc->dictLookup("CharSet", &charset) && +- charset->isString() && is_subsetable(fontmap)) +- epdf_mark_glyphs(fd, charset->getString()->getCString()); ++ stemV = fontdesc.dictLookup("StemV"); ++ fd = epdf_create_fontdescriptor(fontmap, zround(stemV.getNum())); ++ charset = fontdesc.dictLookup("CharSet"); ++ if (!charset.isNull() && ++ charset.isString() && is_subsetable(fontmap)) ++ epdf_mark_glyphs(fd, charset.getString()->getCString()); + else + embed_whole_font(fd); +- addFontDesc(fontdescRef->getRef(), fd); ++ addFontDesc(fontdescRef.getRef(), fd); + copyName(tag); + gfont = GfxFont::makeFont(xref, tag, fontRef->getRef(), +- fontdict->getDict()); ++ fontdict.getDict()); + pdf_printf(" %d 0 R ", addFont(fontRef->getRef(), fd, + addEncoding(gfont))); + } else { +@@ -451,24 +445,24 @@ static void copyFont(char *tag, Object * + + static void copyFontResources(Object * obj) + { +- PdfObject fontRef; ++ Object fontRef; + int i, l; + if (!obj->isDict()) + pdftex_fail("PDF inclusion: invalid font resources dict type <%s>", + obj->getTypeName()); + pdf_puts("/Font << "); + for (i = 0, l = obj->dictGetLength(); i < l; ++i) { +- obj->dictGetValNF(i, &fontRef); +- if (fontRef->isRef()) ++ fontRef = obj->dictGetValNF(i); ++ if (fontRef.isRef()) + copyFont(obj->dictGetKey(i), &fontRef); +- else if (fontRef->isDict()) { // some programs generate pdf with embedded font object ++ else if (fontRef.isDict()) { // some programs generate pdf with embedded font object + copyName(obj->dictGetKey(i)); + pdf_puts(" "); + copyObject(&fontRef); + } + else + pdftex_fail("PDF inclusion: invalid font in reference type <%s>", +- fontRef->getTypeName()); ++ fontRef.getTypeName()); + } + pdf_puts(">>\n"); + } +@@ -557,7 +551,7 @@ static char *convertNumToPDF(double n) + + static void copyObject(Object * obj) + { +- PdfObject obj1; ++ Object obj1; + int i, l, c; + Ref ref; + char *p; +@@ -601,8 +595,8 @@ static void copyObject(Object * obj) + } else if (obj->isArray()) { + pdf_puts("["); + for (i = 0, l = obj->arrayGetLength(); i < l; ++i) { +- obj->arrayGetNF(i, &obj1); +- if (!obj1->isName()) ++ obj1 = obj->arrayGetNF(i); ++ if (!obj1.isName()) + pdf_puts(" "); + copyObject(&obj1); + } +@@ -612,9 +606,8 @@ static void copyObject(Object * obj) + copyDict(obj); + pdf_puts(">>"); + } else if (obj->isStream()) { +- initDictFromDict(obj1, obj->streamGetDict()); + pdf_puts("<<\n"); +- copyDict(&obj1); ++ copyDict(obj->getStream()->getDictObject()); + pdf_puts(">>\n"); + pdf_puts("stream\n"); + copyStream(obj->getStream()->getUndecodedStream()); +@@ -638,9 +631,8 @@ static void writeRefs() + InObj *r; + for (r = inObjList; r != 0; r = r->next) { + if (!r->written) { +- Object obj1; + r->written = 1; +- xref->fetch(r->ref.num, r->ref.gen, &obj1); ++ Object obj1 = xref->fetch(r->ref.num, r->ref.gen); + if (r->type == objFont) { + assert(!obj1.isStream()); + pdfbeginobj(r->num, 2); // \pdfobjcompresslevel = 2 is for this +@@ -656,7 +648,6 @@ static void writeRefs() + pdf_puts("\n"); + pdfendobj(); + } +- obj1.free(); + } + } + } +@@ -685,7 +676,7 @@ static void writeEncodings() + #ifdef POPPLER_VERSION + r->font->decRefCnt(); + #else +- delete r->font; ++#error POPPLER_VERSION should be defined. + #endif + delete r; + } +@@ -728,7 +719,7 @@ read_pdf_info(char *image_name, char *pa + #ifdef POPPLER_VERSION + int pdf_major_version_found, pdf_minor_version_found; + #else +- float pdf_version_found, pdf_version_wanted; ++#error POPPLER_VERSION should be defined. + #endif + // initialize + if (!isInit) { +@@ -760,19 +751,7 @@ read_pdf_info(char *image_name, char *pa + } + } + #else +- pdf_version_found = pdf_doc->doc->getPDFVersion(); +- pdf_version_wanted = 1 + (minor_pdf_version_wanted * 0.1); +- if (pdf_version_found > pdf_version_wanted + 0.01) { +- char msg[] = +- "PDF inclusion: found PDF version <%.1f>, but at most version <%.1f> allowed"; +- if (pdf_inclusion_errorlevel > 0) { +- pdftex_fail(msg, pdf_version_found, pdf_version_wanted); +- } else if (pdf_inclusion_errorlevel < 0) { +- ; /* do nothing */ +- } else { /* = 0, give warning */ +- pdftex_warn(msg, pdf_version_found, pdf_version_wanted); +- } +- } ++#error POPPLER_VERSION should be defined. + #endif + epdf_num_pages = pdf_doc->doc->getCatalog()->getNumPages(); + if (page_name) { +@@ -839,8 +818,8 @@ void write_epdf(void) + Page *page; + Ref *pageRef; + Dict *pageDict; +- PdfObject contents, obj1, obj2, pageObj, dictObj; +- PdfObject groupDict; ++ Object contents, obj1, obj2, pageObj, dictObj; ++ Object groupDict; + bool writeSepGroup = false; + Object info; + char *key; +@@ -867,8 +846,8 @@ void write_epdf(void) + encodingList = 0; + page = pdf_doc->doc->getCatalog()->getPage(epdf_selected_page); + pageRef = pdf_doc->doc->getCatalog()->getPageRef(epdf_selected_page); +- xref->fetch(pageRef->num, pageRef->gen, &pageObj); +- pageDict = pageObj->getDict(); ++ pageObj = xref->fetch(pageRef->num, pageRef->gen); ++ pageDict = pageObj.getDict(); + rotate = page->getRotate(); + PDFRectangle *pagebox; + // write the Page header +@@ -886,7 +865,7 @@ void write_epdf(void) + pdf_printf("/%s.PageNumber %i\n", pdfkeyprefix, (int) epdf_selected_page); + } + if ((suppress_ptex_info & MASK_SUPPRESS_PTEX_INFODICT) == 0) { +- pdf_doc->doc->getDocInfoNF(&info); ++ info = pdf_doc->doc->getDocInfoNF(); + if (info.isRef()) { + // the info dict must be indirect (PDF Ref p. 61) + pdf_printf("/%s.InfoDict ", pdfkeyprefix); +@@ -942,14 +921,14 @@ void write_epdf(void) + pdf_puts(stripzeros(s)); + + // Metadata validity check (as a stream it must be indirect) +- pageDict->lookupNF("Metadata", &dictObj); +- if (!dictObj->isNull() && !dictObj->isRef()) ++ dictObj = pageDict->lookupNF("Metadata"); ++ if (!dictObj.isNull() && !dictObj.isRef()) + pdftex_warn("PDF inclusion: /Metadata must be indirect object"); + + // copy selected items in Page dictionary except Resources & Group + for (i = 0; pageDictKeys[i] != NULL; i++) { +- pageDict->lookupNF(pageDictKeys[i], &dictObj); +- if (!dictObj->isNull()) { ++ dictObj = pageDict->lookupNF(pageDictKeys[i]); ++ if (!dictObj.isNull()) { + pdf_newline(); + pdf_printf("/%s ", pageDictKeys[i]); + copyObject(&dictObj); // preserves indirection +@@ -957,8 +936,8 @@ void write_epdf(void) + } + + // handle page group +- pageDict->lookupNF("Group", &dictObj); +- if (!dictObj->isNull()) { ++ dictObj = pageDict->lookupNF("Group"); ++ if (!dictObj.isNull()) { + if (pdfpagegroupval == 0) { + // another pdf with page group was included earlier on the + // same page; copy the Group entry as is. See manual for +@@ -972,11 +951,36 @@ void write_epdf(void) + copyObject(&dictObj); + } else { + // write Group dict as a separate object, since the Page dict also refers to it +- pageDict->lookup("Group", &dictObj); +- if (!dictObj->isDict()) ++ dictObj = pageDict->lookup("Group"); ++ if (!dictObj.isDict()) + pdftex_fail("PDF inclusion: /Group dict missing"); + writeSepGroup = true; +- initDictFromDict(groupDict, page->getGroup()); ++/* ++This part is only a single line ++ groupDict = Object(page->getGroup()); ++in the original patch. In this case, however, pdftex crashes at ++"delete pdf_doc->doc" in "delete_document()" for inclusion of some ++kind of pdf images, for example, figure_missing.pdf in gnuplot. ++A change ++ groupDict = Object(page->getGroup()).copy(); ++does not improve the situation. ++The changes below seem to work fine. ++*/ ++// begin modification ++ groupDict = pageDict->lookup("Group"); ++ const Dict& dic1 = page->getGroup(); ++ const Dict& dic2 = groupDict.getDict(); ++ // replace dic2 in groupDict with dic1 ++ l = dic2.getLength(); ++ for (i = 0; i < l; i++) { ++ groupDict.dictRemove(dic2.getKey(i)); ++ } ++ l = dic1.getLength(); ++ for (i = 0; i < l; i++) { ++ groupDict.dictAdd(copyString(dic1.getKey(i)), ++ dic1.getValNF(i)); ++ } ++// end modification + pdf_printf("/Group %ld 0 R\n", (long)pdfpagegroupval); + } + } +@@ -989,14 +993,14 @@ void write_epdf(void) + pdftex_warn + ("PDF inclusion: /Resources missing. 'This practice is not recommended' (PDF Ref)"); + } else { +- initDictFromDict(obj1, page->getResourceDict()); ++ Object *obj1 = page->getResourceDictObject(); + if (!obj1->isDict()) + pdftex_fail("PDF inclusion: invalid resources dict type <%s>", + obj1->getTypeName()); + pdf_newline(); + pdf_puts("/Resources <<\n"); + for (i = 0, l = obj1->dictGetLength(); i < l; ++i) { +- obj1->dictGetVal(i, &obj2); ++ obj2 = obj1->dictGetVal(i); + key = obj1->dictGetKey(i); + if (strcmp("Font", key) == 0) + copyFontResources(&obj2); +@@ -1009,8 +1013,8 @@ void write_epdf(void) + } + + // write the page contents +- page->getContents(&contents); +- if (contents->isStream()) { ++ contents = page->getContents(); ++ if (contents.isStream()) { + + // Variant A: get stream and recompress under control + // of \pdfcompresslevel +@@ -1021,36 +1025,35 @@ void write_epdf(void) + + // Variant B: copy stream without recompressing + // +- contents->streamGetDict()->lookup("F", &obj1); +- if (!obj1->isNull()) { ++ obj1 = contents.streamGetDict()->lookup("F"); ++ if (!obj1.isNull()) { + pdftex_fail("PDF inclusion: Unsupported external stream"); + } +- contents->streamGetDict()->lookup("Length", &obj1); +- assert(!obj1->isNull()); ++ obj1 = contents.streamGetDict()->lookup("Length"); ++ assert(!obj1.isNull()); + pdf_puts("/Length "); + copyObject(&obj1); + pdf_puts("\n"); +- contents->streamGetDict()->lookup("Filter", &obj1); +- if (!obj1->isNull()) { ++ obj1 = contents.streamGetDict()->lookup("Filter"); ++ if (!obj1.isNull()) { + pdf_puts("/Filter "); + copyObject(&obj1); + pdf_puts("\n"); +- contents->streamGetDict()->lookup("DecodeParms", &obj1); +- if (!obj1->isNull()) { ++ obj1 = contents.streamGetDict()->lookup("DecodeParms"); ++ if (!obj1.isNull()) { + pdf_puts("/DecodeParms "); + copyObject(&obj1); + pdf_puts("\n"); + } + } + pdf_puts(">>\nstream\n"); +- copyStream(contents->getStream()->getUndecodedStream()); ++ copyStream(contents.getStream()->getUndecodedStream()); + pdfendstream(); +- } else if (contents->isArray()) { ++ } else if (contents.isArray()) { + pdfbeginstream(); +- for (i = 0, l = contents->arrayGetLength(); i < l; ++i) { +- Object contentsobj; +- copyStream((contents->arrayGet(i, &contentsobj))->getStream()); +- contentsobj.free(); ++ for (i = 0, l = contents.arrayGetLength(); i < l; ++i) { ++ Object contentsobj = contents.arrayGet(i); ++ copyStream(contentsobj.getStream()); + if (i < l - 1) + pdf_newline(); // add a newline after each stream except the last + } +diff -up texlive-base-20180414/source/texk/web2c/pdftexdir/pdftosrc.cc.newpoppler texlive-base-20180414/source/texk/web2c/pdftexdir/pdftosrc.cc +--- texlive-base-20180414/source/texk/web2c/pdftexdir/pdftosrc.cc.newpoppler 2018-04-30 13:32:27.005472583 -0400 ++++ texlive-base-20180414/source/texk/web2c/pdftexdir/pdftosrc.cc 2018-04-30 13:38:12.805326988 -0400 +@@ -16,6 +16,14 @@ GNU General Public License for more deta + You should have received a copy of the GNU General Public License along + with this program. If not, see . + */ ++ ++/* ++This is based on the patch texlive-poppler-0.59.patch <2017-09-19> at ++https://git.archlinux.org/svntogit/packages.git/plain/texlive-bin/trunk ++by Arch Linux. The poppler should be 0.59.0 or newer versions. ++POPPLER_VERSION should be defined. ++*/ ++ + #include + + #include +@@ -32,10 +40,7 @@ with this program. If not, see + #include + #else +-#include +-#include +-#include +-#include ++#error POPPLER_VERSION should be defined. + #endif + #include + +@@ -86,22 +91,20 @@ int main(int argc, char *argv[]) + objgen = atoi(argv[3]); + } + xref = doc->getXRef(); +- catalogDict.initNull(); +- xref->getCatalog(&catalogDict); ++ catalogDict = xref->getCatalog(); + if (!catalogDict.isDict("Catalog")) { + fprintf(stderr, "No Catalog found\n"); + exit(1); + } +- srcStream.initNull(); ++ srcStream = Object(objNull); + if (objnum == 0) { +- catalogDict.dictLookup("SourceObject", &srcStream); ++ srcStream = catalogDict.dictLookup("SourceObject"); + static char const_SourceFile[] = "SourceFile"; + if (!srcStream.isStream(const_SourceFile)) { + fprintf(stderr, "No SourceObject found\n"); + exit(1); + } +- srcName.initNull(); +- srcStream.getStream()->getDict()->lookup("SourceName", &srcName); ++ srcName = srcStream.getStream()->getDict()->lookup("SourceName"); + if (!srcName.isString()) { + fprintf(stderr, "No SourceName found\n"); + exit(1); +@@ -110,7 +113,7 @@ int main(int argc, char *argv[]) + // We cannot free srcName, as objname shares its string. + // srcName.free(); + } else if (objnum > 0) { +- xref->fetch(objnum, objgen, &srcStream); ++ srcStream = xref->fetch(objnum, objgen); + if (!srcStream.isStream()) { + fprintf(stderr, "Not a Stream object\n"); + exit(1); +@@ -160,26 +163,24 @@ int main(int argc, char *argv[]) + int localOffset = 0; + Guint firstOffset; + +- assert(xref->fetch(e->offset, 0, &objStr)->isStream()); +- nObjects = objStr.streamGetDict()->lookup("N", &obj1)->getInt(); +- obj1.free(); +- first = objStr.streamGetDict()->lookup("First", &obj1)->getInt(); +- obj1.free(); ++ objStr = xref->fetch(e->offset, 0); ++ assert(objStr.isStream()); ++ obj1 = objStr.streamGetDict()->lookup("N"); ++ nObjects = obj1.getInt(); ++ obj1 = objStr.streamGetDict()->lookup("First"); ++ first = obj1.getInt(); + firstOffset = objStr.getStream()->getBaseStream()->getStart() + first; + + // parse the header: object numbers and offsets + objStr.streamReset(); +- obj1.initNull(); +- str = new EmbedStream(objStr.getStream(), &obj1, gTrue, first); ++ str = new EmbedStream(objStr.getStream(), Object(objNull), gTrue, first); + lexer = new Lexer(xref, str); + parser = new Parser(xref, lexer, gFalse); + for (n = 0; n < nObjects; ++n) { +- parser->getObj(&obj1); +- parser->getObj(&obj2); ++ obj1 = parser->getObj(); ++ obj2 = parser->getObj(); + if (n == e->gen) + localOffset = obj2.getInt(); +- obj1.free(); +- obj2.free(); + } + #if defined(POPPLER_VERSION) || defined(XPDF304) + while (str->getChar() != EOF) ; +@@ -187,7 +188,6 @@ int main(int argc, char *argv[]) + lexer->skipToEOF(); + #endif + delete parser; +- objStr.free(); + + fprintf(outfile, "%.10lu 00000 n\n", + (long unsigned)(firstOffset + localOffset)); +@@ -198,7 +198,6 @@ int main(int argc, char *argv[]) + s->reset(); + while ((c = s->getChar()) != EOF) + fputc(c, outfile); +- srcStream.free(); + } + if (objnum == 0) + fprintf(stderr, "Source file extracted to %s\n", outname); +@@ -207,7 +206,6 @@ int main(int argc, char *argv[]) + else + fprintf(stderr, "Cross-reference table extracted to %s\n", outname); + fclose(outfile); +- catalogDict.free(); + delete doc; + delete globalParams; + } diff --git a/SOURCES/texlive-20180414-poppler-0.63.patch b/SOURCES/texlive-20180414-poppler-0.63.patch new file mode 100644 index 0000000..04aca34 --- /dev/null +++ b/SOURCES/texlive-20180414-poppler-0.63.patch @@ -0,0 +1,225 @@ +From b14146667f4cd6cbc5d5821c88e47096df3c78b5 Mon Sep 17 00:00:00 2001 +From: Akira Kakuto +Date: Sat, 28 Apr 2018 07:36:22 +0000 +Subject: support poppler-0.64.0 + +git-svn-id: svn://tug.org/texlive/trunk@47470 c570f23f-e606-0410-a88d-b1316a301751 +--- + Build/source/texk/web2c/luatexdir/image/pdftoepdf.w | 4 ++-- + Build/source/texk/web2c/luatexdir/lua/lepdflib.cc | 4 ++-- + Build/source/texk/web2c/pdftexdir/ChangeLog | 5 +++++ + Build/source/texk/web2c/pdftexdir/pdftoepdf-newpoppler.cc | 14 +++++++------- + Build/source/texk/web2c/pdftexdir/pdftosrc-newpoppler.cc | 2 +- + 5 files changed, 17 insertions(+), 12 deletions(-) + +diff --git a/Build/source/texk/web2c/luatexdir/image/pdftoepdf.w b/Build/source/texk/web2c/luatexdir/image/pdftoepdf.w +index 7ba2973..d697959 100644 +--- Build/source/texk/web2c/luatexdir/image/pdftoepdf.w ++++ Build/source/texk/web2c/luatexdir/image/pdftoepdf.w +@@ -472,10 +472,10 @@ static void copyObject(PDF pdf, PdfDocument * pdf_doc, Object * obj) + break; + */ + case objString: +- copyString(pdf, obj->getString()); ++ copyString(pdf, (GooString *)obj->getString()); + break; + case objName: +- copyName(pdf, obj->getName()); ++ copyName(pdf, (char *)obj->getName()); + break; + case objNull: + pdf_add_null(pdf); +diff --git a/Build/source/texk/web2c/luatexdir/lua/lepdflib.cc b/Build/source/texk/web2c/luatexdir/lua/lepdflib.cc +index a16bf3b..32bcdab 100644 +--- Build/source/texk/web2c/luatexdir/lua/lepdflib.cc ++++ Build/source/texk/web2c/luatexdir/lua/lepdflib.cc +@@ -674,7 +674,7 @@ static int m_##in##_##function(lua_State * L) \ + uin = (udstruct *) luaL_checkudata(L, 1, M_##in); \ + if (uin->pd != NULL && uin->pd->pc != uin->pc) \ + pdfdoc_changed_error(L); \ +- gs = ((in *) uin->d)->function(); \ ++ gs = (GooString *)((in *) uin->d)->function(); \ + if (gs != NULL) \ + lua_pushlstring(L, gs->getCString(), gs->getLength()); \ + else \ +@@ -1813,7 +1813,7 @@ static int m_Object_getString(lua_State * L) + if (uin->pd != NULL && uin->pd->pc != uin->pc) + pdfdoc_changed_error(L); + if (((Object *) uin->d)->isString()) { +- gs = ((Object *) uin->d)->getString(); ++ gs = (GooString *)((Object *) uin->d)->getString(); + lua_pushlstring(L, gs->getCString(), gs->getLength()); + } else + lua_pushnil(L); +diff --git a/Build/source/texk/web2c/pdftexdir/ChangeLog b/Build/source/texk/web2c/pdftexdir/ChangeLog +index c022bc2..f4af035 100644 +--- Build/source/texk/web2c/pdftexdir/ChangeLog ++++ Build/source/texk/web2c/pdftexdir/ChangeLog +@@ -1,3 +1,8 @@ ++2018-04-28 Akira Kakuto ++ ++ * pdftoepdf-newpoppler.cc, pdftosrc-newpoppler.cc: ++ Support poppler 0.64.0. ++ + 2018-04-14 Karl Berry + + * TeX Live 2018 release, pdftex 1.40.19. +diff --git a/Build/source/texk/web2c/pdftexdir/pdftoepdf-newpoppler.cc b/Build/source/texk/web2c/pdftexdir/pdftoepdf-newpoppler.cc +index 10fea29..750579d 100644 +--- Build/source/texk/web2c/pdftexdir/pdftoepdf-newpoppler.cc ++++ Build/source/texk/web2c/pdftexdir/pdftoepdf-newpoppler.cc +@@ -290,7 +290,7 @@ static void copyName(char *s) + static void copyDictEntry(Object * obj, int i) + { + Object obj1; +- copyName(obj->dictGetKey(i)); ++ copyName((char *)obj->dictGetKey(i)); + pdf_puts(" "); + obj1 = obj->dictGetValNF(i); + copyObject(&obj1); +@@ -355,7 +355,7 @@ static void copyProcSet(Object * obj) + if (!procset.isName()) + pdftex_fail("PDF inclusion: invalid ProcSet entry type <%s>", + procset.getTypeName()); +- copyName(procset.getName()); ++ copyName((char *)procset.getName()); + pdf_puts(" "); + } + pdf_puts("]\n"); +@@ -418,7 +418,7 @@ static void copyFont(char *tag, Object * fontRef) + && fontdescRef.isRef() + && fontdesc.isDict() + && embeddableFont(&fontdesc) +- && (fontmap = lookup_fontmap(basefont.getName())) != NULL) { ++ && (fontmap = lookup_fontmap((char *)basefont.getName())) != NULL) { + // round /StemV value, since the PDF input is a float + // (see Font Descriptors in PDF reference), but we only store an + // integer, since we don't want to change the struct. +@@ -427,7 +427,7 @@ static void copyFont(char *tag, Object * fontRef) + charset = fontdesc.dictLookup("CharSet"); + if (!charset.isNull() && + charset.isString() && is_subsetable(fontmap)) +- epdf_mark_glyphs(fd, charset.getString()->getCString()); ++ epdf_mark_glyphs(fd, (char *)charset.getString()->getCString()); + else + embed_whole_font(fd); + addFontDesc(fontdescRef.getRef(), fd); +@@ -456,7 +456,7 @@ static void copyFontResources(Object * obj) + if (fontRef.isRef()) + copyFont(obj->dictGetKey(i), &fontRef); + else if (fontRef.isDict()) { // some programs generate pdf with embedded font object +- copyName(obj->dictGetKey(i)); ++ copyName((char *)obj->dictGetKey(i)); + pdf_puts(" "); + copyObject(&fontRef); + } +@@ -565,7 +565,7 @@ static void copyObject(Object * obj) + } else if (obj->isNum()) { + pdf_printf("%s", convertNumToPDF(obj->getNum())); + } else if (obj->isString()) { +- s = obj->getString(); ++ s = (GooString *)obj->getString(); + p = s->getCString(); + l = s->getLength(); + if (strlen(p) == (unsigned int) l) { +@@ -589,7 +589,7 @@ static void copyObject(Object * obj) + pdf_puts(">"); + } + } else if (obj->isName()) { +- copyName(obj->getName()); ++ copyName((char *)obj->getName()); + } else if (obj->isNull()) { + pdf_puts("null"); + } else if (obj->isArray()) { +diff --git a/Build/source/texk/web2c/pdftexdir/pdftosrc-newpoppler.cc b/Build/source/texk/web2c/pdftexdir/pdftosrc-newpoppler.cc +index 4e2bcad..0db154b 100644 +--- Build/source/texk/web2c/pdftexdir/pdftosrc-newpoppler.cc ++++ Build/source/texk/web2c/pdftexdir/pdftosrc-newpoppler.cc +@@ -109,7 +109,7 @@ int main(int argc, char *argv[]) + fprintf(stderr, "No SourceName found\n"); + exit(1); + } +- outname = srcName.getString()->getCString(); ++ outname = (char *)srcName.getString()->getCString(); + // We cannot free srcName, as objname shares its string. + // srcName.free(); + } else if (objnum > 0) { +--- Build/source/texk/web2c/pdftexdir/pdftosrc.cc ++++ Build/source/texk/web2c/pdftexdir/pdftosrc.cc +@@ -109,7 +109,7 @@ int main(int argc, char *argv[]) + fprintf(stderr, "No SourceName found\n"); + exit(1); + } +- outname = srcName.getString()->getCString(); ++ outname = (char *)srcName.getString()->getCString(); + // We cannot free srcName, as objname shares its string. + // srcName.free(); + } else if (objnum > 0) { +--- Build/source/texk/web2c/pdftexdir/pdftoepdf.cc ++++ Build/source/texk/web2c/pdftexdir/pdftoepdf.cc +@@ -290,7 +290,7 @@ static void copyName(char *s) + static void copyDictEntry(Object * obj, int i) + { + Object obj1; +- copyName(obj->dictGetKey(i)); ++ copyName((char *)obj->dictGetKey(i)); + pdf_puts(" "); + obj1 = obj->dictGetValNF(i); + copyObject(&obj1); +@@ -355,7 +355,7 @@ static void copyProcSet(Object * obj) + if (!procset.isName()) + pdftex_fail("PDF inclusion: invalid ProcSet entry type <%s>", + procset.getTypeName()); +- copyName(procset.getName()); ++ copyName((char *)procset.getName()); + pdf_puts(" "); + } + pdf_puts("]\n"); +@@ -418,7 +418,7 @@ static void copyFont(char *tag, Object * fontRef) + && fontdescRef.isRef() + && fontdesc.isDict() + && embeddableFont(&fontdesc) +- && (fontmap = lookup_fontmap(basefont.getName())) != NULL) { ++ && (fontmap = lookup_fontmap((char *)basefont.getName())) != NULL) { + // round /StemV value, since the PDF input is a float + // (see Font Descriptors in PDF reference), but we only store an + // integer, since we don't want to change the struct. +@@ -427,7 +427,7 @@ static void copyFont(char *tag, Object * fontRef) + charset = fontdesc.dictLookup("CharSet"); + if (!charset.isNull() && + charset.isString() && is_subsetable(fontmap)) +- epdf_mark_glyphs(fd, charset.getString()->getCString()); ++ epdf_mark_glyphs(fd, (char *)charset.getString()->getCString()); + else + embed_whole_font(fd); + addFontDesc(fontdescRef.getRef(), fd); +@@ -456,7 +456,7 @@ static void copyFontResources(Object * obj) + if (fontRef.isRef()) + copyFont(obj->dictGetKey(i), &fontRef); + else if (fontRef.isDict()) { // some programs generate pdf with embedded font object +- copyName(obj->dictGetKey(i)); ++ copyName((char *)obj->dictGetKey(i)); + pdf_puts(" "); + copyObject(&fontRef); + } +@@ -565,7 +565,7 @@ static void copyObject(Object * obj) + } else if (obj->isNum()) { + pdf_printf("%s", convertNumToPDF(obj->getNum())); + } else if (obj->isString()) { +- s = obj->getString(); ++ s = (GooString *)obj->getString(); + p = s->getCString(); + l = s->getLength(); + if (strlen(p) == (unsigned int) l) { +@@ -589,7 +589,7 @@ static void copyObject(Object * obj) + pdf_puts(">"); + } + } else if (obj->isName()) { +- copyName(obj->getName()); ++ copyName((char *)obj->getName()); + } else if (obj->isNull()) { + pdf_puts("null"); + } else if (obj->isArray()) { +-- +cgit v1.1 + diff --git a/SOURCES/texlive-20180414-selinux-context.patch b/SOURCES/texlive-20180414-selinux-context.patch new file mode 100644 index 0000000..10968a1 --- /dev/null +++ b/SOURCES/texlive-20180414-selinux-context.patch @@ -0,0 +1,41 @@ +diff -up texlive-base-20180414/source/texk/kpathsea/mktexlsr.selinux texlive-base-20180414/source/texk/kpathsea/mktexlsr +--- texlive-base-20180414/source/texk/kpathsea/mktexlsr.selinux 2018-01-16 19:55:32.000000000 -0500 ++++ texlive-base-20180414/source/texk/kpathsea/mktexlsr 2018-04-30 13:10:12.447909163 -0400 +@@ -228,7 +228,8 @@ for TEXMFLS_R in "$@"; do + until PERMS=`kpsestat = "$db_file"`; do sleep 1; done + chmod $PERMS "$db_file_tmp" + rm -f "$db_file" +- mv "$db_file_tmp" "$db_file" ++ # selinux fix ++ cp "$db_file_tmp" "$db_file" + rm -rf "$db_dir_tmp" + done + +diff -up texlive-base-20180414/source/texk/texlive/linked_scripts/texlive/fmtutil.pl.selinux texlive-base-20180414/source/texk/texlive/linked_scripts/texlive/fmtutil.pl +--- texlive-base-20180414/source/texk/texlive/linked_scripts/texlive/fmtutil.pl.selinux 2018-04-30 13:10:12.447909163 -0400 ++++ texlive-base-20180414/source/texk/texlive/linked_scripts/texlive/fmtutil.pl 2018-04-30 13:12:43.035361954 -0400 +@@ -719,7 +719,7 @@ sub rebuild_one_format { + + TeXLive::TLUtils::mkdirhier($destdir); + +- if (!File::Copy::move( $logfile, "$destdir/$logfile")) { ++ if (!File::Copy::copy( $logfile, "$destdir/$logfile")) { + print_deferred_error("Cannot move $logfile to $destdir.\n"); + } + if ($opts{'recorder'}) { +@@ -727,13 +727,13 @@ sub rebuild_one_format { + # package dependencies for each format. Unfortunately omega-based + # engines gratuitiously changed the extension from .fls to .ofl. + my $recfile = $fmt . ($fmt =~ m/^(aleph|lamed)$/ ? ".ofl" : ".fls"); +- if (!File::Copy::move( $recfile, "$destdir/$recfile")) { ++ if (!File::Copy::copy( $recfile, "$destdir/$recfile")) { + print_deferred_error("Cannot move $recfile to $destdir.\n"); + } + } + + my $destfile = "$destdir/$fmtfile"; +- if (File::Copy::move( $fmtfile, $destfile )) { ++ if (File::Copy::copy( $fmtfile, $destfile )) { + print_info("$destfile installed.\n"); + # + # original fmtutil.sh did some magic trick for mplib-luatex.mem diff --git a/SOURCES/texlive-20180414-xml.patch b/SOURCES/texlive-20180414-xml.patch new file mode 100644 index 0000000..f15276c --- /dev/null +++ b/SOURCES/texlive-20180414-xml.patch @@ -0,0 +1,22 @@ +diff -up doc/otherformats/xmltex/base/langtest.xml.me doc/otherformats/xmltex/base/langtest.xml +--- doc/otherformats/xmltex/base/langtest.xml.me 2018-11-09 19:15:17.265859217 +0100 ++++ doc/otherformats/xmltex/base/langtest.xml 2018-11-09 19:15:37.403926239 +0100 +@@ -3,8 +3,6 @@ + + + +- +- + + + ]> +@@ -12,9 +10,7 @@ + + + &englishutf8; +-&englishutf16; + &portugeselatin1; +-&russiankoi8; + &russianutf8; + + diff --git a/SOURCES/texlive-20190410-disable-more-failing-tests.patch b/SOURCES/texlive-20190410-disable-more-failing-tests.patch new file mode 100644 index 0000000..975741e --- /dev/null +++ b/SOURCES/texlive-20190410-disable-more-failing-tests.patch @@ -0,0 +1,118 @@ +diff -up texlive-base-20190410/source/texk/web2c/am/texmf.am.dt texlive-base-20190410/source/texk/web2c/am/texmf.am +--- texlive-base-20190410/source/texk/web2c/am/texmf.am.dt 2015-07-10 05:42:52.000000000 -0400 ++++ texlive-base-20190410/source/texk/web2c/am/texmf.am 2019-05-23 15:07:41.663729872 -0400 +@@ -73,7 +73,7 @@ DISTCLEANFILES += $(nodist_tex_SOURCES) + + # TeX tests + # +-tex_tests = triptest.test tests/write18-quote-test.pl ++tex_tests = tests/write18-quote-test.pl + triptest.log: tex$(EXEEXT) dvitype$(EXEEXT) pltotf$(EXEEXT) tftopl$(EXEEXT) + tests/write18-quote-test.log: tex$(EXEEXT) + EXTRA_DIST += $(tex_tests) +@@ -201,7 +201,7 @@ DISTCLEANFILES += $(nodist_libmf_a_SOURC + + # Metafont tests + # +-mf_tests = mftraptest.test ++mf_tests = + mftraptest.log: mf$(EXEEXT) gftype$(EXEEXT) tftopl$(EXEEXT) + EXTRA_DIST += $(mf_tests) + if MF +diff -up texlive-base-20190410/source/texk/web2c/eptexdir/am/eptex.am.dt texlive-base-20190410/source/texk/web2c/eptexdir/am/eptex.am +--- texlive-base-20190410/source/texk/web2c/eptexdir/am/eptex.am.dt 2015-08-06 04:49:49.000000000 -0400 ++++ texlive-base-20190410/source/texk/web2c/eptexdir/am/eptex.am 2019-05-23 15:07:41.663729872 -0400 +@@ -81,7 +81,7 @@ EXTRA_DIST += \ + + # e-pTeX Tests + # +-eptex_tests = eptexdir/eptriptest.test eptexdir/pdfprimitive.test ++eptex_tests = + eptexdir/eptriptest.log: eptex$(EXEEXT) dvitype$(EXEEXT) pltotf$(EXEEXT) tftopl$(EXEEXT) + eptexdir/pdfprimitive.log: eptex$(EXEEXT) + +diff -up texlive-base-20190410/source/texk/web2c/euptexdir/am/euptex.am.dt texlive-base-20190410/source/texk/web2c/euptexdir/am/euptex.am +--- texlive-base-20190410/source/texk/web2c/euptexdir/am/euptex.am.dt 2018-01-20 22:48:06.000000000 -0500 ++++ texlive-base-20190410/source/texk/web2c/euptexdir/am/euptex.am 2019-05-23 15:07:41.663729872 -0400 +@@ -82,7 +82,7 @@ EXTRA_DIST += \ + + # e-upTeX Tests + # +-euptex_tests = euptexdir/euptriptest.test euptexdir/pdfprimitive.test ++euptex_tests = + euptexdir/euptriptest.log: euptex$(EXEEXT) dvitype$(EXEEXT) pltotf$(EXEEXT) tftopl$(EXEEXT) + euptexdir/pdfprimitive.log: euptex$(EXEEXT) + +diff -up texlive-base-20190410/source/texk/web2c/mfluadir/am/mflua.am.dt texlive-base-20190410/source/texk/web2c/mfluadir/am/mflua.am +--- texlive-base-20190410/source/texk/web2c/mfluadir/am/mflua.am.dt 2017-04-16 06:11:22.000000000 -0400 ++++ texlive-base-20190410/source/texk/web2c/mfluadir/am/mflua.am 2019-05-23 15:07:41.663729872 -0400 +@@ -110,7 +110,7 @@ EXTRA_DIST += \ + + # MFLua tests + # +-mflua_tests = mfluadir/mfluatraptest.test ++mflua_tests = + mfluadir/mfluatraptest.log: mflua$(EXEEXT) gftype$(EXEEXT) tftopl$(EXEEXT) + EXTRA_DIST += $(mflua_tests) + +diff -up texlive-base-20190410/source/texk/web2c/mfluajitdir/am/mfluajit.am.dt texlive-base-20190410/source/texk/web2c/mfluajitdir/am/mfluajit.am +--- texlive-base-20190410/source/texk/web2c/mfluajitdir/am/mfluajit.am.dt 2017-04-16 06:11:22.000000000 -0400 ++++ texlive-base-20190410/source/texk/web2c/mfluajitdir/am/mfluajit.am 2019-05-23 15:07:41.663729872 -0400 +@@ -106,7 +106,7 @@ EXTRA_DIST += \ + + # MFLuaJIT tests + # +-mfluajit_tests = mfluajitdir/mfluajittraptest.test ++mfluajit_tests = + mfluajitdir/mfluajittraptest.log: mfluajit$(EXEEXT) gftype$(EXEEXT) tftopl$(EXEEXT) + EXTRA_DIST += $(mfluajit_tests) + +diff -up texlive-base-20190410/source/texk/web2c/pdftexdir/am/pdftex.am.dt texlive-base-20190410/source/texk/web2c/pdftexdir/am/pdftex.am +--- texlive-base-20190410/source/texk/web2c/pdftexdir/am/pdftex.am.dt 2019-05-23 15:07:41.663729872 -0400 ++++ texlive-base-20190410/source/texk/web2c/pdftexdir/am/pdftex.am 2019-05-23 15:09:34.941250514 -0400 +@@ -94,8 +94,8 @@ EXTRA_DIST += \ + + # pdfTeX tests + # +-pdftex_tests = pdftexdir/wprob.test pdftexdir/pdftex.test \ +- pdftexdir/pdfimage.test pdftexdir/expanded.test ++pdftex_tests = pdftexdir/pdftex.test \ ++ pdftexdir/expanded.test + + pdftexdir/wprob.log pdftexdir/pdftex.log \ + pdftexdir/pdfimage.log pdftexdir/expanded.log: pdftex$(EXEEXT) +diff -up texlive-base-20190410/source/texk/web2c/ptexdir/am/ptex.am.dt texlive-base-20190410/source/texk/web2c/ptexdir/am/ptex.am +--- texlive-base-20190410/source/texk/web2c/ptexdir/am/ptex.am.dt 2019-02-06 05:58:23.000000000 -0500 ++++ texlive-base-20190410/source/texk/web2c/ptexdir/am/ptex.am 2019-05-23 15:07:41.664729850 -0400 +@@ -167,7 +167,7 @@ EXTRA_DIST += \ + + # pTeX Tests + # +-ptex_tests = ptexdir/ptriptest.test ++ptex_tests = + ptexdir/ptriptest.log: ptex$(EXEEXT) dvitype$(EXEEXT) pltotf$(EXEEXT) tftopl$(EXEEXT) + pweb_tests = \ + ptexdir/pbibtex.test \ +diff -up texlive-base-20190410/source/texk/web2c/uptexdir/am/uptex.am.dt texlive-base-20190410/source/texk/web2c/uptexdir/am/uptex.am +--- texlive-base-20190410/source/texk/web2c/uptexdir/am/uptex.am.dt 2018-08-18 07:45:50.000000000 -0400 ++++ texlive-base-20190410/source/texk/web2c/uptexdir/am/uptex.am 2019-05-23 15:07:41.664729850 -0400 +@@ -157,7 +157,7 @@ EXTRA_DIST += \ + uptexdir/ChangeLog + + # upTeX Tests +-uptex_tests = uptexdir/uptriptest.test ++uptex_tests = + uptexdir/uptriptest.log: uptex$(EXEEXT) dvitype$(EXEEXT) pltotf$(EXEEXT) tftopl$(EXEEXT) + upweb_tests = \ + uptexdir/upbibtex.test \ +diff -up texlive-base-20190410/source/texk/web2c/xetexdir/am/xetex.am.dt texlive-base-20190410/source/texk/web2c/xetexdir/am/xetex.am +--- texlive-base-20190410/source/texk/web2c/xetexdir/am/xetex.am.dt 2018-01-17 17:54:13.000000000 -0500 ++++ texlive-base-20190410/source/texk/web2c/xetexdir/am/xetex.am 2019-05-23 15:07:41.664729850 -0400 +@@ -200,7 +200,6 @@ EXTRA_DIST += \ + # XeTeX Tests + # + xetex_tests = \ +- xetexdir/xetex-bug73.test \ + xetexdir/xetex.test + xetexdir/xetex-bug73.log xetexdir/xetex.log: xetex$(EXEEXT) + diff --git a/SOURCES/texlive-20190410-dvisvgm-fix-libgs-detection.patch b/SOURCES/texlive-20190410-dvisvgm-fix-libgs-detection.patch new file mode 100644 index 0000000..d797831 --- /dev/null +++ b/SOURCES/texlive-20190410-dvisvgm-fix-libgs-detection.patch @@ -0,0 +1,25 @@ +diff -up texlive-base-20190410/source/texk/dvisvgm/configure.ac.fix-libgs-detection texlive-base-20190410/source/texk/dvisvgm/configure.ac +--- texlive-base-20190410/source/texk/dvisvgm/configure.ac.fix-libgs-detection 2019-03-10 14:21:29.000000000 -0400 ++++ texlive-base-20190410/source/texk/dvisvgm/configure.ac 2019-05-23 19:07:30.447057345 -0400 +@@ -66,7 +66,8 @@ AS_IF([test "x$have_libgs" = "xno"], + # Ghostscript not found, check for dlopen + [AC_CHECK_LIB(dl, dlopen,, + [AC_DEFINE(DISABLE_GS, 1, [Set to 1 if PostScript support should be disabled])] +- [AC_MSG_WARN(PostScript support disabled)])]) ++ [AC_MSG_WARN(PostScript support disabled)])], ++ [test "x$have_libgs" = "xyes"], [HAVE_LIBGS=1]) + fi + + if test -z "$HAVE_LIBGS" || test "$HAVE_LIBGS" -eq 0; then +diff -up texlive-base-20190410/source/texk/dvisvgm/configure.fix-libgs-detection texlive-base-20190410/source/texk/dvisvgm/configure +--- texlive-base-20190410/source/texk/dvisvgm/configure.fix-libgs-detection 2019-05-23 19:07:45.568703333 -0400 ++++ texlive-base-20190410/source/texk/dvisvgm/configure 2019-05-23 19:09:31.341219687 -0400 +@@ -22013,6 +22013,8 @@ $as_echo "#define DISABLE_GS 1" >>confde + $as_echo "$as_me: WARNING: PostScript support disabled" >&2;} + fi + ++elif test "x$have_libgs" = "xyes"; then : ++ HAVE_LIBGS=1 + fi + fi + diff --git a/SOURCES/texlive-20190410-poppler-0.73.patch b/SOURCES/texlive-20190410-poppler-0.73.patch new file mode 100644 index 0000000..35e77e0 --- /dev/null +++ b/SOURCES/texlive-20190410-poppler-0.73.patch @@ -0,0 +1,249 @@ +diff -up texlive-base-20190410/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler-0.73 texlive-base-20190410/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20190410/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler-0.73 2019-05-23 15:50:17.849768543 -0400 ++++ texlive-base-20190410/source/texk/web2c/pdftexdir/pdftoepdf.cc 2019-05-23 16:00:41.022262790 -0400 +@@ -120,7 +120,7 @@ struct UsedEncoding { + + static InObj *inObjList; + static UsedEncoding *encodingList; +-static GBool isInit = gFalse; ++static bool isInit = false; + + // -------------------------------------------------------------------- + // Maintain list of open embedded PDF files +@@ -275,7 +275,7 @@ static int getNewObjectNumber(Ref ref) + + static void copyObject(Object *); + +-static void copyName(char *s) ++static void copyName(const char *s) + { + pdf_puts("/"); + for (; *s != 0; s++) { +@@ -310,7 +310,7 @@ static void copyDict(Object * obj) + static void copyFontDict(Object * obj, InObj * r) + { + int i, l; +- char *key; ++ const char *key; + if (!obj->isDict()) + pdftex_fail("PDF inclusion: invalid dict type <%s>", + obj->getTypeName()); +@@ -382,7 +382,7 @@ static bool embeddableFont(Object * font + return false; + } + +-static void copyFont(char *tag, Object * fontRef) ++static void copyFont(const char *tag, Object * fontRef) + { + Object fontdict, subtype, basefont, fontdescRef, fontdesc, charset, + stemV; +@@ -418,7 +418,7 @@ static void copyFont(char *tag, Object * + && fontdescRef.isRef() + && fontdesc.isDict() + && embeddableFont(&fontdesc) +- && (fontmap = lookup_fontmap(basefont.getName())) != NULL) { ++ && (fontmap = lookup_fontmap((char *)basefont.getName())) != NULL) { + // round /StemV value, since the PDF input is a float + // (see Font Descriptors in PDF reference), but we only store an + // integer, since we don't want to change the struct. +@@ -427,7 +427,7 @@ static void copyFont(char *tag, Object * + charset = fontdesc.dictLookup("CharSet"); + if (!charset.isNull() && + charset.isString() && is_subsetable(fontmap)) +- epdf_mark_glyphs(fd, charset.getString()->getCString()); ++ epdf_mark_glyphs(fd, (char *)charset.getString()->c_str()); + else + embed_whole_font(fd); + addFontDesc(fontdescRef.getRef(), fd); +@@ -467,7 +467,7 @@ static void copyFontResources(Object * o + pdf_puts(">>\n"); + } + +-static void copyOtherResources(Object * obj, char *key) ++static void copyOtherResources(Object * obj, const char *key) + { + // copies all other resources (write_epdf handles Fonts and ProcSets), + +@@ -554,8 +554,8 @@ static void copyObject(Object * obj) + Object obj1; + int i, l, c; + Ref ref; +- char *p; +- GString *s; ++ const char *p; ++ const GString *s; + if (obj->isBool()) { + pdf_printf("%s", obj->getBool()? "true" : "false"); + } else if (obj->isInt()) { +@@ -566,7 +566,7 @@ static void copyObject(Object * obj) + pdf_printf("%s", convertNumToPDF(obj->getNum())); + } else if (obj->isString()) { + s = obj->getString(); +- p = s->getCString(); ++ p = s->c_str(); + l = s->getLength(); + if (strlen(p) == (unsigned int) l) { + pdf_puts("("); +@@ -664,7 +664,7 @@ static void writeEncodings() + ("PDF inclusion: CID fonts are not supported" + " (try to disable font replacement to fix this)"); + } +- if ((s = ((Gfx8BitFont *) r->font)->getCharName(i)) != 0) ++ if ((s = (char *) ((Gfx8BitFont *) r->font)->getCharName(i)) != 0) + glyphNames[i] = s; + else + glyphNames[i] = notdef; +@@ -683,7 +683,7 @@ static void writeEncodings() + } + + // get the pagebox according to the pagebox_spec +-static PDFRectangle *get_pagebox(Page * page, int pagebox_spec) ++static const PDFRectangle *get_pagebox(Page * page, int pagebox_spec) + { + if (pagebox_spec == pdfboxspecmedia) + return page->getMediaBox(); +@@ -715,7 +715,7 @@ read_pdf_info(char *image_name, char *pa + { + PdfDocument *pdf_doc; + Page *page; +- PDFRectangle *pagebox; ++ const PDFRectangle *pagebox; + #ifdef POPPLER_VERSION + int pdf_major_version_found, pdf_minor_version_found; + #else +@@ -724,8 +724,8 @@ read_pdf_info(char *image_name, char *pa + // initialize + if (!isInit) { + globalParams = new GlobalParams(); +- globalParams->setErrQuiet(gFalse); +- isInit = gTrue; ++ globalParams->setErrQuiet(false); ++ isInit = true; + } + // open PDF file + pdf_doc = find_add_document(image_name); +@@ -822,7 +822,7 @@ void write_epdf(void) + Object groupDict; + bool writeSepGroup = false; + Object info; +- char *key; ++ const char *key; + char s[256]; + int i, l; + int rotate; +@@ -849,7 +849,7 @@ void write_epdf(void) + pageObj = xref->fetch(pageRef->num, pageRef->gen); + pageDict = pageObj.getDict(); + rotate = page->getRotate(); +- PDFRectangle *pagebox; ++ const PDFRectangle *pagebox; + // write the Page header + pdf_puts("/Type /XObject\n"); + pdf_puts("/Subtype /Form\n"); +@@ -977,7 +977,7 @@ The changes below seem to work fine. + } + l = dic1.getLength(); + for (i = 0; i < l; i++) { +- groupDict.dictAdd(copyString(dic1.getKey(i)), ++ groupDict.dictAdd(dic1.getKey(i), + dic1.getValNF(i)); + } + // end modification +diff -up texlive-base-20190410/source/texk/web2c/pdftexdir/pdftosrc.cc.poppler-0.73 texlive-base-20190410/source/texk/web2c/pdftexdir/pdftosrc.cc +--- texlive-base-20190410/source/texk/web2c/pdftexdir/pdftosrc.cc.poppler-0.73 2019-05-23 15:50:17.850768522 -0400 ++++ texlive-base-20190410/source/texk/web2c/pdftexdir/pdftosrc.cc 2019-05-23 15:50:17.858768349 -0400 +@@ -109,7 +109,7 @@ int main(int argc, char *argv[]) + fprintf(stderr, "No SourceName found\n"); + exit(1); + } +- outname = srcName.getString()->getCString(); ++ outname = (char *)srcName.getString()->c_str(); + // We cannot free srcName, as objname shares its string. + // srcName.free(); + } else if (objnum > 0) { +@@ -118,7 +118,7 @@ int main(int argc, char *argv[]) + fprintf(stderr, "Not a Stream object\n"); + exit(1); + } +- sprintf(buf, "%s", fileName->getCString()); ++ sprintf(buf, "%s", fileName->c_str()); + if ((p = strrchr(buf, '.')) == 0) + p = strchr(buf, 0); + if (objgen == 0) +@@ -128,7 +128,7 @@ int main(int argc, char *argv[]) + outname = buf; + } else { // objnum < 0 means we are extracting the XRef table + extract_xref_table = true; +- sprintf(buf, "%s", fileName->getCString()); ++ sprintf(buf, "%s", fileName->c_str()); + if ((p = strrchr(buf, '.')) == 0) + p = strchr(buf, 0); + sprintf(p, ".xref"); +@@ -161,7 +161,7 @@ int main(int argc, char *argv[]) + Object objStr, obj1, obj2; + int nObjects, first, n; + int localOffset = 0; +- Guint firstOffset; ++ unsigned int firstOffset; + + objStr = xref->fetch(e->offset, 0); + assert(objStr.isStream()); +@@ -173,9 +173,9 @@ int main(int argc, char *argv[]) + + // parse the header: object numbers and offsets + objStr.streamReset(); +- str = new EmbedStream(objStr.getStream(), Object(objNull), gTrue, first); ++ str = new EmbedStream(objStr.getStream(), Object(objNull), true, first); + lexer = new Lexer(xref, str); +- parser = new Parser(xref, lexer, gFalse); ++ parser = new Parser(xref, lexer, false); + for (n = 0; n < nObjects; ++n) { + obj1 = parser->getObj(); + obj2 = parser->getObj(); +diff -up texlive-base-20190410/source/texk/web2c/xetexdir/pdfimage.cpp.poppler-0.73 texlive-base-20190410/source/texk/web2c/xetexdir/pdfimage.cpp +--- texlive-base-20190410/source/texk/web2c/xetexdir/pdfimage.cpp.poppler-0.73 2018-12-25 00:48:22.000000000 -0500 ++++ texlive-base-20190410/source/texk/web2c/xetexdir/pdfimage.cpp 2019-05-23 15:50:17.858768349 -0400 +@@ -78,26 +78,29 @@ pdf_get_rect(char* filename, int page_nu + + Page* page = doc->getCatalog()->getPage(page_num); + +- const PDFRectangle* r; ++ PDFRectangle* r; ++ const PDFRectangle* cr; + switch (pdf_box) { + default: + case pdfbox_crop: +- r = page->getCropBox(); ++ cr = page->getCropBox(); + break; + case pdfbox_media: +- r = page->getMediaBox(); ++ cr = page->getMediaBox(); + break; + case pdfbox_bleed: +- r = page->getBleedBox(); ++ cr = page->getBleedBox(); + break; + case pdfbox_trim: +- r = page->getTrimBox(); ++ cr = page->getTrimBox(); + break; + case pdfbox_art: +- r = page->getArtBox(); ++ cr = page->getArtBox(); + break; + } + ++ r = new PDFRectangle (cr->x1, cr->y1, cr->x2, cr->y2); ++ + int RotAngle = 0; + RotAngle = (int)page->getRotate() % 360; + if (RotAngle < 0) +@@ -112,6 +115,7 @@ pdf_get_rect(char* filename, int page_nu + box->x = 72.27 / 72 * my_fmin(r->x1, r->x2); + box->y = 72.27 / 72 * my_fmin(r->y1, r->y2); + ++ delete r; + delete doc; + + return 0; diff --git a/SOURCES/texlive-20190410-selinux-context.patch b/SOURCES/texlive-20190410-selinux-context.patch new file mode 100644 index 0000000..b167984 --- /dev/null +++ b/SOURCES/texlive-20190410-selinux-context.patch @@ -0,0 +1,14 @@ +diff -up texlive-base-20190410/source/texk/kpathsea/mktexlsr.selinux texlive-base-20190410/source/texk/kpathsea/mktexlsr +--- texlive-base-20190410/source/texk/kpathsea/mktexlsr.selinux 2018-01-16 19:55:32.000000000 -0500 ++++ texlive-base-20190410/source/texk/kpathsea/mktexlsr 2019-05-23 14:58:50.837886937 -0400 +@@ -228,7 +228,8 @@ for TEXMFLS_R in "$@"; do + until PERMS=`kpsestat = "$db_file"`; do sleep 1; done + chmod $PERMS "$db_file_tmp" + rm -f "$db_file" +- mv "$db_file_tmp" "$db_file" ++ # selinux fix ++ cp "$db_file_tmp" "$db_file" + rm -rf "$db_dir_tmp" + done + +diff -up texlive-base-20190410/source/texk/texlive/linked_scripts/texlive/fmtutil.pl.selinux texlive-base-20190410/source/texk/texlive/linked_scripts/texlive/fmtutil.pl diff --git a/SOURCES/texlive-20190410-texinfo-path-fix.patch b/SOURCES/texlive-20190410-texinfo-path-fix.patch new file mode 100644 index 0000000..cf6369b --- /dev/null +++ b/SOURCES/texlive-20190410-texinfo-path-fix.patch @@ -0,0 +1,22 @@ +diff -up texlive-base-20190410/source/texk/kpathsea/texmf.cnf.texinfo-fix texlive-base-20190410/source/texk/kpathsea/texmf.cnf +--- texlive-base-20190410/source/texk/kpathsea/texmf.cnf.texinfo-fix 2019-05-23 15:03:28.928056938 -0400 ++++ texlive-base-20190410/source/texk/kpathsea/texmf.cnf 2019-05-23 15:06:38.997072248 -0400 +@@ -82,6 +82,9 @@ TEXMFSYSCONFIG = $TEXMFROOT/texmf-config + % to %USERPROFILE% on Windows, $HOME otherwise. + TEXMFHOME = ~/texmf + ++% Texinfo on Fedora lives out of $TEXMFROOT ++TEXINFOHOME = $SELFAUTODIR/share/texmf ++ + % TEXMFVAR, where texconfig/updmap/fmtutil store cached runtime data. + TEXMFVAR = ~/.texlive2019/texmf-var + +@@ -107,7 +110,7 @@ TEXMFAUXTREES = {} + % The odd-looking $TEXMFAUXTREES$TEXMF... construct is so that if no auxtree is + % ever defined (the 99% common case), no extra elements will be added to + % the search paths. tlmgr takes care to end any value with a trailing comma. +-TEXMF = {$TEXMFAUXTREES$TEXMFCONFIG,$TEXMFVAR,$TEXMFHOME,!!$TEXMFLOCAL,!!$TEXMFSYSCONFIG,!!$TEXMFSYSVAR,!!$TEXMFDIST} ++TEXMF = {$TEXMFAUXTREES$TEXMFCONFIG,$TEXMFVAR,$TEXMFHOME,$TEXINFOHOME,!!$TEXMFLOCAL,!!$TEXMFSYSCONFIG,!!$TEXMFSYSVAR,!!$TEXMFDIST} + + % Where to look for, and where mktexlsr creates, ls-R files. By default, + % this is all and only the !! elements of TEXMF, so that mktexlsr does not diff --git a/SOURCES/texlive-20190410-tlmgr-ignore-warning.patch b/SOURCES/texlive-20190410-tlmgr-ignore-warning.patch new file mode 100644 index 0000000..34636dd --- /dev/null +++ b/SOURCES/texlive-20190410-tlmgr-ignore-warning.patch @@ -0,0 +1,79 @@ +diff -up ./scripts/texlive/tlmgr.pl.ignore-warning ./scripts/texlive/tlmgr.pl +--- ./scripts/texlive/tlmgr.pl.ignore-warning 2019-05-24 21:35:57.384845754 -0400 ++++ ./scripts/texlive/tlmgr.pl 2019-05-24 21:39:32.703577109 -0400 +@@ -231,6 +231,7 @@ my %action_specification = ( + "dry-run|n" => 1, + "file" => 1, + "force" => 1, ++ "ignore-warning" => 1, + "no-depends" => 1, + "no-depends-at-all" => 1, + "reinstall" => 1, +@@ -331,6 +332,7 @@ my %action_specification = ( + "dry-run|n" => 1, + "exclude" => "=s@", + "force" => 1, ++ "ignore-warning" => 1, + "list" => 1, + "no-auto-install" => 1, + "no-auto-remove" => 1, +@@ -2613,6 +2615,15 @@ sub upd_info { + } + + sub action_update { ++ if (!($opts{"ignore-warning"})) { ++ print("*** WARNING ***: Performing this action will likely destroy the Fedora TeXLive install on your system.\n"); ++ print("*** WARNING ***: This is almost NEVER what you want to do.\n"); ++ print("*** WARNING ***: Try using dnf install/update instead.\n"); ++ print("*** WARNING ***: If performing this action is really what you want to do, pass the \"ignore-warning\" option.\n"); ++ print("*** WARNING ***: But please do not file any bugs with the OS Vendor.\n"); ++ exit; ++ } ++ + init_local_db(1); + $opts{"no-depends"} = 1 if $opts{"no-depends-at-all"}; + +@@ -3618,6 +3629,15 @@ sub check_announce_format_triggers { + # anymore! That has all to be done by the caller. + # + sub action_install { ++ if (!($opts{"ignore-warning"})) { ++ print("*** WARNING ***: Performing this action will likely destroy the Fedora TeXLive install on your system.\n"); ++ print("*** WARNING ***: This is almost NEVER what you want to do.\n"); ++ print("*** WARNING ***: Try using dnf install/update instead.\n"); ++ print("*** WARNING ***: If performing this action is really what you want to do, pass the \"ignore-warning\" option.\n"); ++ print("*** WARNING ***: But please do not file any bugs with the OS Vendor.\n"); ++ exit; ++ } ++ + init_local_db(1); + my $ret = $F_OK; + return ($F_ERROR) if !check_on_writable(); +@@ -8151,6 +8171,13 @@ If updates to C itself (or other + infrastructure) are present, C will bail out and not perform the + installation unless this option is given. Not recommended. + ++=item B<--ignore-warning> ++ ++The tlmgr tool can really ruin a Fedora install of TeXLive. ++We have added a warning check here to try to keep you from ++blindly following a tutorial and doing this. If you still want to ++proceed, just use this option. ++ + =item B<--no-depends> + + Do not install dependencies. (By default, installing a package ensures +@@ -8846,6 +8873,13 @@ In short: + Nothing is actually installed; instead, the actions to be performed are + written to the terminal. This is a more detailed report than C<--list>. + ++=item B<--ignore-warning> ++ ++The tlmgr tool can really ruin a Fedora install of TeXLive. ++We have added a warning check here to try to keep you from ++blindly following a tutorial and doing this. If you still want to ++proceed, just use this option. ++ + =item B<--list> [I] + + Concisely list the packages which would be updated, newly installed, or diff --git a/SOURCES/texlive-base-20180414-disable-omegafonts-check-test.patch b/SOURCES/texlive-base-20180414-disable-omegafonts-check-test.patch new file mode 100644 index 0000000..1879359 --- /dev/null +++ b/SOURCES/texlive-base-20180414-disable-omegafonts-check-test.patch @@ -0,0 +1,12 @@ +diff -up texlive-base-20180414/source/texk/web2c/omegafonts/check.test.disabletest texlive-base-20180414/source/texk/web2c/omegafonts/check.test +--- texlive-base-20180414/source/texk/web2c/omegafonts/check.test.disabletest 2018-10-04 13:24:17.965126655 -0400 ++++ texlive-base-20180414/source/texk/web2c/omegafonts/check.test 2018-10-04 13:24:26.068945230 -0400 +@@ -4,6 +4,8 @@ + # Copyright 2014, 2015 Peter Breitenlohner + # You may freely use, modify and/or distribute this file. + ++exit 0 ++ + test -d tests || mkdir -p tests + + TEXMFCNF=$srcdir/../../kpathsea diff --git a/SOURCES/texlive-base-20180414-synctex-do-not-throw-no-file-error.patch b/SOURCES/texlive-base-20180414-synctex-do-not-throw-no-file-error.patch new file mode 100644 index 0000000..d098854 --- /dev/null +++ b/SOURCES/texlive-base-20180414-synctex-do-not-throw-no-file-error.patch @@ -0,0 +1,11 @@ +diff -up texlive-base-20180414/source/texk/web2c/synctexdir/synctex_parser.c.shh texlive-base-20180414/source/texk/web2c/synctexdir/synctex_parser.c +--- texlive-base-20180414/source/texk/web2c/synctexdir/synctex_parser.c.shh 2019-03-19 11:02:44.303218932 -0400 ++++ texlive-base-20180414/source/texk/web2c/synctexdir/synctex_parser.c 2019-03-19 11:02:59.545857443 -0400 +@@ -6023,7 +6023,6 @@ synctex_scanner_p synctex_scanner_new_wi + if ((scanner->reader = synctex_reader_init_with_output_file(scanner->reader, output, build_directory))) { + return parse? synctex_scanner_parse(scanner):scanner; + } +- _synctex_error("No file?"); + return NULL; + } + diff --git a/SOURCES/texlive-base-pdfbook2-py3.patch b/SOURCES/texlive-base-pdfbook2-py3.patch new file mode 100644 index 0000000..446ab1a --- /dev/null +++ b/SOURCES/texlive-base-pdfbook2-py3.patch @@ -0,0 +1,97 @@ +diff -up ./scripts/pdfbook2/pdfbook2.py3 ./scripts/pdfbook2/pdfbook2 +--- ./scripts/pdfbook2/pdfbook2.py3 2016-11-25 13:32:54.000000000 -0500 ++++ ./scripts/pdfbook2/pdfbook2 2018-12-07 14:52:49.197436113 -0500 +@@ -1,4 +1,4 @@ +-#!/usr/bin/env python ++#!/usr/bin/python3 + """ pdfbook2 - transform pdf files to booklets + + This program is free software: you can redistribute it and/or modify +@@ -29,11 +29,11 @@ import shutil + + def booklify( name, opts ): + #------------------------------------------------------ Check if file exists +- print "\nProcessing", name ++ print("\nProcessing", name) + if not os.path.isfile( name ): +- print "SKIP: file not found." ++ print("SKIP: file not found.") + return +- print "Getting bounds...", ++ print("Getting bounds...", end=' ') + sys.stdout.flush() + + #---------------------------------------------------------- useful constants +@@ -50,8 +50,8 @@ def booklify( name, opts ): + p.wait() + out, err = p.communicate() + if len( err ) != 0: +- print err +- print "\n\nABORT: Problem getting bounds" ++ print(err) ++ print("\n\nABORT: Problem getting bounds") + sys.exit( 1 ) + lines = out.splitlines() + bboxes = [s[len( bboxName ) + 1:] for s in lines if s.startswith( bboxName )] +@@ -69,11 +69,11 @@ def booklify( name, opts ): + minLOdd -= maxWidth - widthOdd + maxREven += maxWidth - widthEven + +- print "done" ++ print("done") + sys.stdout.flush() + + #--------------------------------------------- crop file to area of interest +- print "cropping...", ++ print("cropping...", end=' ') + sys.stdout.flush() + p = subprocess.Popen( ["pdfcrop", + "--bbox-odd", "{L} {T} {R} {B}".format( L = minLOdd - opts.innerMargin / 2, +@@ -92,16 +92,16 @@ def booklify( name, opts ): + p.wait() + out, err = p.communicate() + if len( err ) != 0: +- print err +- print "\n\nABORT: Problem with cropping" ++ print(err) ++ print("\n\nABORT: Problem with cropping") + sys.exit( 1 ) +- print "done" ++ print("done") + sys.stdout.flush() + else: + shutil.copy( name, tmpFile ) + + #-------------------------------------------------------- create the booklet +- print "create booklet...", ++ print("create booklet...", end=' ') + sys.stdout.flush() + pdfJamCallList = [ "pdfjam", + "--booklet", "true", +@@ -124,7 +124,7 @@ def booklify( name, opts ): + p.wait() + out, err = p.communicate() + if len( out ) == 0: +- print "\n\nABORT: The everyshi.sty latex package is needed for short-edge." ++ print("\n\nABORT: The everyshi.sty latex package is needed for short-edge.") + sys.exit( 1 ) + else: + pdfJamCallList.append( "--preamble" ) +@@ -139,7 +139,7 @@ def booklify( name, opts ): + #-------------------------------------------- move file and remove temp file + os.rename( tmpFile[:-4] + "-book.pdf", name[:-4] + "-book.pdf" ) + os.remove( tmpFile ) +- print "done" ++ print("done") + sys.stdout.flush() + + +@@ -228,7 +228,7 @@ if __name__ == "__main__": + if len( args ) == 0: + parser.print_version() + parser.print_help() +- print "" ++ print("") + sys.exit( 2 ) + + #------------------------------------------- run for each provided file name diff --git a/SOURCES/texlive.tlpdb b/SOURCES/texlive.tlpdb index 4e6451a..cea9a68 100644 --- a/SOURCES/texlive.tlpdb +++ b/SOURCES/texlive.tlpdb @@ -1,8 +1,5757 @@ +name 00texlive.config +category TLCore +revision 46777 +shortdesc TeX Live network archive option settings +longdesc This package contains configuration options for the TeX Live +longdesc archive. If container_split_{doc,src}_files/1 are +longdesc dependencies, the {doc,src} files are split into separate +longdesc containers (.tar.xz) during container build time. This has NO +longdesc effect on the appearance within texlive.tlpdb. It is only on +longdesc the container level. The container_format/WHATEVER specifies +longdesc the format, currently "xz" is the only supported value +longdesc (generating .tar.xz files). release/YYYY specifies the release +longdesc number as used in the installer. minrelease/ZZZZ specifies the +longdesc minimum release for which this repository is valid, i.e., a +longdesc release of ZZZZ or later can theoretically be upgraded. Further +longdesc information concerning upgrades can be found at +longdesc http://www.tug.org/texlive/upgrade.html frozen/[01] specifies +longdesc whether the release has been frozen The default values are +longdesc taken from TeXLive::TLConfig::TLPDBConfigs hash values at tlpdb +longdesc creation time but can be overridden here if necessary. For +longdesc information on the 00texlive prefix see +longdesc 00texlive.installation(.tlpsrc) +depend container_format/xz +depend container_split_doc_files/1 +depend container_split_src_files/1 +depend frozen/0 +depend minrelease/2016 +depend release/2019 +depend revision/51195 + +name 00texlive.image +category TLCore +revision 51186 +shortdesc TeX Live files only in the source repository +longdesc The files here are not copied by the installer and containers +longdesc are not built for them; they exist only in the source +longdesc repository, the installer archives, and, for archival purposes, +longdesc distributed as an extra tarball under source/. The +longdesc IgnorePatterns in the check_files routine in tlmgr.pl augment +longdesc this list. Those are not included in the source/ tarball. For +longdesc information on the 00texlive prefix see +longdesc 00texlive.installation(.tlpsrc) +runfiles size=4931 + .mkisofsrc + autorun.inf + texmf-dist/README + texmf-dist/doc/man/Makefile + texmf-dist/doc/man/man1/Makefile + texmf-dist/doc/man/man5/Makefile + texmf-dist/scripts/texlive/Makefile + texmf-dist/scripts/texlive/mktexlsr.bat + tlpkg/bin/check-files-by-format + tlpkg/bin/check-fmttriggers + tlpkg/bin/check-tlnet-consistency + tlpkg/bin/check-wrapper-consistency + tlpkg/bin/cmp-textfiles + tlpkg/bin/ctan2tl + tlpkg/bin/deref-symlinks + tlpkg/bin/htmltext + tlpkg/bin/pdflatex-preserve-pdf + tlpkg/bin/svnchangelog + tlpkg/bin/tl-compare-tlpdbs + tlpkg/bin/tl-dump-for-ctan + tlpkg/bin/tl-dump-texcatalogue + tlpkg/bin/tl-fix-container-infos + tlpkg/bin/tl-forceupdate-tlnet + tlpkg/bin/tl-makeself-from-tlnet + tlpkg/bin/tl-prune-platforms + tlpkg/bin/tl-sign-file + tlpkg/bin/tl-try-install + tlpkg/bin/tl-try-makeself + tlpkg/bin/tl-update-4ht + tlpkg/bin/tl-update-asy + tlpkg/bin/tl-update-auto + tlpkg/bin/tl-update-bindir + tlpkg/bin/tl-update-containers + tlpkg/bin/tl-update-ctan-mirrors + tlpkg/bin/tl-update-docindex + tlpkg/bin/tl-update-images + tlpkg/bin/tl-update-install-pkg + tlpkg/bin/tl-update-keywords + tlpkg/bin/tl-update-linked-scripts + tlpkg/bin/tl-update-man + tlpkg/bin/tl-update-messages + tlpkg/bin/tl-update-nsis + tlpkg/bin/tl-update-tlcritical + tlpkg/bin/tl-update-tlnet + tlpkg/bin/tl-update-tlpdb + tlpkg/bin/tl-update-txi + tlpkg/bin/tlcritical-diff + tlpkg/bin/tlpfiles + tlpkg/bin/tlpkg-by-size + tlpkg/bin/tlpkg-ctan-check + tlpkg/bin/tlpkginfo + tlpkg/bin/tlprm + tlpkg/bin/tlpsizes + tlpkg/dev/README + tlpkg/dev/check-tk-used-font.pl + tlpkg/dev/dev.multi-source-support-v2.patch + tlpkg/dev/dev.mupdmap-integration + tlpkg/dev/dev.sys_redir.README + tlpkg/dev/dev.sys_redir.pl + tlpkg/dev/dev.update-tlpdb-option-on-the-fly.README + tlpkg/dev/dev.update-tlpdb-option-on-the-fly.patch + tlpkg/dev/groff-utf8/devps/AB + tlpkg/dev/groff-utf8/devps/ABI + tlpkg/dev/groff-utf8/devps/AI + tlpkg/dev/groff-utf8/devps/AR + tlpkg/dev/groff-utf8/devps/BMB + tlpkg/dev/groff-utf8/devps/BMBI + tlpkg/dev/groff-utf8/devps/BMI + tlpkg/dev/groff-utf8/devps/BMR + tlpkg/dev/groff-utf8/devps/CB + tlpkg/dev/groff-utf8/devps/CBI + tlpkg/dev/groff-utf8/devps/CI + tlpkg/dev/groff-utf8/devps/CR + tlpkg/dev/groff-utf8/devps/EURO + tlpkg/dev/groff-utf8/devps/HB + tlpkg/dev/groff-utf8/devps/HBI + tlpkg/dev/groff-utf8/devps/HI + tlpkg/dev/groff-utf8/devps/HNB + tlpkg/dev/groff-utf8/devps/HNBI + tlpkg/dev/groff-utf8/devps/HNI + tlpkg/dev/groff-utf8/devps/HNR + tlpkg/dev/groff-utf8/devps/HR + tlpkg/dev/groff-utf8/devps/NB + tlpkg/dev/groff-utf8/devps/NBI + tlpkg/dev/groff-utf8/devps/NI + tlpkg/dev/groff-utf8/devps/NR + tlpkg/dev/groff-utf8/devps/PB + tlpkg/dev/groff-utf8/devps/PBI + tlpkg/dev/groff-utf8/devps/PI + tlpkg/dev/groff-utf8/devps/PR + tlpkg/dev/groff-utf8/devps/S + tlpkg/dev/groff-utf8/devps/SS + tlpkg/dev/groff-utf8/devps/TB + tlpkg/dev/groff-utf8/devps/TBI + tlpkg/dev/groff-utf8/devps/TI + tlpkg/dev/groff-utf8/devps/TR + tlpkg/dev/groff-utf8/devps/ZCMI + tlpkg/dev/groff-utf8/devps/ZD + tlpkg/dev/groff-utf8/devps/ZDR + tlpkg/dev/groff-utf8/devps/a010013l.pfa + tlpkg/dev/groff-utf8/devps/a010015l.pfa + tlpkg/dev/groff-utf8/devps/a010033l.pfa + tlpkg/dev/groff-utf8/devps/a010035l.pfa + tlpkg/dev/groff-utf8/devps/b018012l.pfa + tlpkg/dev/groff-utf8/devps/b018015l.pfa + tlpkg/dev/groff-utf8/devps/b018032l.pfa + tlpkg/dev/groff-utf8/devps/b018035l.pfa + tlpkg/dev/groff-utf8/devps/c059013l.pfa + tlpkg/dev/groff-utf8/devps/c059016l.pfa + tlpkg/dev/groff-utf8/devps/c059033l.pfa + tlpkg/dev/groff-utf8/devps/c059036l.pfa + tlpkg/dev/groff-utf8/devps/d050000l.pfa + tlpkg/dev/groff-utf8/devps/download + tlpkg/dev/groff-utf8/devps/freeeuro.afm + tlpkg/dev/groff-utf8/devps/freeeuro.pfa + tlpkg/dev/groff-utf8/devps/n019003l.pfa + tlpkg/dev/groff-utf8/devps/n019004l.pfa + tlpkg/dev/groff-utf8/devps/n019023l.pfa + tlpkg/dev/groff-utf8/devps/n019024l.pfa + tlpkg/dev/groff-utf8/devps/n019043l.pfa + tlpkg/dev/groff-utf8/devps/n019044l.pfa + tlpkg/dev/groff-utf8/devps/n019063l.pfa + tlpkg/dev/groff-utf8/devps/n019064l.pfa + tlpkg/dev/groff-utf8/devps/n021003l.pfa + tlpkg/dev/groff-utf8/devps/n021004l.pfa + tlpkg/dev/groff-utf8/devps/n021023l.pfa + tlpkg/dev/groff-utf8/devps/n021024l.pfa + tlpkg/dev/groff-utf8/devps/n022003l.pfa + tlpkg/dev/groff-utf8/devps/n022004l.pfa + tlpkg/dev/groff-utf8/devps/n022023l.pfa + tlpkg/dev/groff-utf8/devps/n022024l.pfa + tlpkg/dev/groff-utf8/devps/p052003l.pfa + tlpkg/dev/groff-utf8/devps/p052004l.pfa + tlpkg/dev/groff-utf8/devps/p052023l.pfa + tlpkg/dev/groff-utf8/devps/p052024l.pfa + tlpkg/dev/groff-utf8/devps/s050000l.pfa + tlpkg/dev/groff-utf8/devps/symbol.afm + tlpkg/dev/groff-utf8/devps/symbolmap + tlpkg/dev/groff-utf8/devps/symbolsl.afm + tlpkg/dev/groff-utf8/devps/z003034l.pfa + tlpkg/dev/groff-utf8/devps/zapfdr.afm + tlpkg/dev/makeself-runscript.sh + tlpkg/dev/mktextex.pl + tlpkg/dev/mktexupd.texlua + tlpkg/dev/profiles/README + tlpkg/dev/profiles/TLctx.pro + tlpkg/dev/profiles/TLfmt.pro + tlpkg/dev/profiles/TLfull.pro + tlpkg/dev/profiles/TLinfra+exe.pro + tlpkg/dev/profiles/TLinfra+none.pro + tlpkg/dev/profiles/TLinfra+sys.pro + tlpkg/dev/profiles/TLinfra.pro + tlpkg/dev/profiles/TLlink.pro + tlpkg/dev/profiles/TLmed.pro + tlpkg/dev/profiles/TLmeddoc.pro + tlpkg/dev/profiles/TLmedfmt.pro + tlpkg/dev/profiles/TLmin.pro + tlpkg/dev/profiles/TLmindoc.pro + tlpkg/dev/profiles/TLminfmt.pro + tlpkg/dev/profiles/TLminfmtpaper.pro + tlpkg/dev/profiles/TLroot.pro + tlpkg/dev/profiles/TLsmall.pro + tlpkg/dev/profiles/TLspace.pro + tlpkg/dev/profiles/TLtetex.pro + tlpkg/dev/python/parse_tlpdb.py + tlpkg/dev/srclist.txt + tlpkg/dev/tlnet-disabled-packages.txt + tlpkg/dev/tlpdb-read-test + tlpkg/dev/udfhd.pl + tlpkg/doc/00texlive-packages.txt + tlpkg/doc/articles/bachotex08/install08gui.png + tlpkg/doc/articles/bachotex08/install08text.pdf + tlpkg/doc/articles/bachotex08/install08text.tex + tlpkg/doc/articles/bachotex08/tlinst-BT08-abstract.pdf + tlpkg/doc/articles/bachotex08/tlinst-BT08-abstract.tex + tlpkg/doc/articles/bachotex08/tlinst-BT08.pdf + tlpkg/doc/articles/bachotex08/tlinst-BT08.tex + tlpkg/doc/articles/cstug08/berry.jpg + tlpkg/doc/articles/cstug08/cstug08.pdf + tlpkg/doc/articles/cstug08/cstug08.tex + tlpkg/doc/articles/cstug08/dviout.png + tlpkg/doc/articles/cstug08/gui-collections.png + tlpkg/doc/articles/cstug08/gui-installer.png + tlpkg/doc/articles/cstug08/gui-lang.png + tlpkg/doc/articles/cstug08/gui-scheme.png + tlpkg/doc/articles/cstug08/gui-systems.png + tlpkg/doc/articles/cstug08/install-directory.png + tlpkg/doc/articles/cstug08/install-options.png + tlpkg/doc/articles/cstug08/install08text-crop.pdf + tlpkg/doc/articles/cstug08/psview.png + tlpkg/doc/articles/cstug08/rahtz.png + tlpkg/doc/articles/cstug08/start_impressive.sh + tlpkg/doc/articles/cstug08/talk-bacho08.tex + tlpkg/doc/articles/cstug08/talk-guit2008.tex + tlpkg/doc/articles/cstug08/texcollection2008-large.png + tlpkg/doc/articles/cstug08/texlive2008-logo-2.png + tlpkg/doc/articles/cstug08/tlmgrgui-update.png + tlpkg/doc/articles/cstug08/update-tlmgr-finish.png + tlpkg/doc/articles/cstug08/update-tlmgr-w32.png + tlpkg/doc/articles/guit07/tlinfra-guit07.pdf + tlpkg/doc/articles/guit07/tlinfra-guit07.tex + tlpkg/doc/articles/guit08/Makefile + tlpkg/doc/articles/guit08/dviout.png + tlpkg/doc/articles/guit08/gui-collections.png + tlpkg/doc/articles/guit08/gui-installer-de.png + tlpkg/doc/articles/guit08/gui-installer.png + tlpkg/doc/articles/guit08/gui-lang.png + tlpkg/doc/articles/guit08/gui-progress.png + tlpkg/doc/articles/guit08/gui-scheme.png + tlpkg/doc/articles/guit08/gui-systems.png + tlpkg/doc/articles/guit08/install08text.tex + tlpkg/doc/articles/guit08/psview.png + tlpkg/doc/articles/guit08/tlmgr-article.bib + tlpkg/doc/articles/guit08/tlmgr-article.pdf + tlpkg/doc/articles/guit08/tlmgr-article.tex + tlpkg/doc/articles/guit08/tlmgr-dtk.ltx + tlpkg/doc/articles/guit08/tlmgr-dtk.pdf + tlpkg/doc/articles/guit08/tlmgr-dtk.tex + tlpkg/doc/articles/guit08/tlmgrgui-arch-de.png + tlpkg/doc/articles/guit08/tlmgrgui-arch.png + tlpkg/doc/articles/guit08/tlmgrgui-install-de.png + tlpkg/doc/articles/guit08/tlmgrgui-install.png + tlpkg/doc/articles/guit08/tlmgrgui-log-de.png + tlpkg/doc/articles/guit08/tlmgrgui-options-de.png + tlpkg/doc/articles/guit08/tlmgrgui-options.png + tlpkg/doc/articles/guit08/tlmgrgui-remove-de.png + tlpkg/doc/articles/guit08/tlmgrgui-remove.png + tlpkg/doc/articles/guit08/tlmgrgui-update-de.png + tlpkg/doc/articles/guit08/tlmgrgui-update.png + tlpkg/doc/coding-style.txt + tlpkg/doc/graphics/GNUmakefile + tlpkg/doc/graphics/README + tlpkg/doc/graphics/TeXLive-square.png + tlpkg/doc/graphics/TeXLive-square.xcf + tlpkg/doc/graphics/lion-small.png + tlpkg/doc/graphics/lion.png + tlpkg/doc/graphics/texlive-installer-graphics-horiz.png + tlpkg/doc/graphics/texlive-installer-graphics-vert.png + tlpkg/doc/graphics/texlive-installer-graphics.pdf + tlpkg/doc/graphics/texlive-installer-graphics.tex + tlpkg/doc/graphics/texlive-yearless.pdf + tlpkg/doc/graphics/texlive-yearless.svg + tlpkg/doc/graphics/texlive-yearless.tex + tlpkg/doc/graphics/tl-lion-black.eps + tlpkg/doc/graphics/tl-lion-black.pdf + tlpkg/doc/historic/Perl-API.txt + tlpkg/doc/historic/Shell-API.txt + tlpkg/doc/historic/installer-layout.txt + tlpkg/doc/historic/list-file-format.txt + tlpkg/doc/historic/multi-repository.txt + tlpkg/doc/historic/new-installer-layout.txt + tlpkg/doc/historic/specification.txt + tlpkg/doc/historic/texlive2008-wizard.png + tlpkg/doc/historic/texlive2008.png + tlpkg/doc/historic/texlive2009-wizard.png + tlpkg/doc/historic/texlive2010.png + tlpkg/doc/historic/texlive2011.png + tlpkg/doc/historic/texlive2012.png + tlpkg/doc/historic/texlive2013-horizontal.png + tlpkg/doc/historic/texlive2014-horizontal.png + tlpkg/doc/historic/texlive2014.png + tlpkg/doc/historic/texlive2015-horizontal.png + tlpkg/doc/historic/texlive2015.png + tlpkg/doc/historic/texlive2016-horizontal.png + tlpkg/doc/historic/texlive2016.png + tlpkg/doc/historic/texlive2017-horizontal.png + tlpkg/doc/historic/texlive2017.png + tlpkg/doc/historic/texlive2018-horizontal.png + tlpkg/doc/historic/texlive2018.png + tlpkg/doc/historic/tl-security-proposal.txt + tlpkg/doc/historic/tlmgr-keyword-search-interface.txt + tlpkg/doc/historic/tlmgr-shell.txt + tlpkg/doc/howto-translations.txt + tlpkg/doc/integrated-pool.tex + tlpkg/doc/json-formats.txt + tlpkg/doc/packages.txt + tlpkg/doc/releng.txt + tlpkg/doc/repository-setup.txt + tlpkg/libexec/bin-cjkutils.pl + tlpkg/libexec/c90.pl + tlpkg/libexec/cjk-build.pl + tlpkg/libexec/cjk.pl + tlpkg/libexec/ctan2tds + tlpkg/libexec/dnp.pl + tlpkg/libexec/garuda-c90.pl + tlpkg/libexec/install-tl.nsi + tlpkg/libexec/makeself-header.sh + tlpkg/libexec/mptopdf-extract + tlpkg/libexec/norasi-c90.pl + tlpkg/libexec/place + tlpkg/libexec/svnchangelog.sed + tlpkg/libexec/tl-merge-tlpdb + tlpkg/tlpsrc/00texlive.autopatterns.tlpsrc + tlpkg/tlpsrc/00texlive.config.tlpsrc + tlpkg/tlpsrc/00texlive.image.tlpsrc + tlpkg/tlpsrc/00texlive.installation.tlpsrc + tlpkg/tlpsrc/00texlive.installer.tlpsrc + tlpkg/tlpsrc/12many.tlpsrc + tlpkg/tlpsrc/2up.tlpsrc + tlpkg/tlpsrc/Asana-Math.tlpsrc + tlpkg/tlpsrc/ESIEEcv.tlpsrc + tlpkg/tlpsrc/FAQ-en.tlpsrc + tlpkg/tlpsrc/GS1.tlpsrc + tlpkg/tlpsrc/HA-prosper.tlpsrc + tlpkg/tlpsrc/IEEEconf.tlpsrc + tlpkg/tlpsrc/IEEEtran.tlpsrc + tlpkg/tlpsrc/MemoirChapStyles.tlpsrc + tlpkg/tlpsrc/SIstyle.tlpsrc + tlpkg/tlpsrc/SIunits.tlpsrc + tlpkg/tlpsrc/Tabbing.tlpsrc + tlpkg/tlpsrc/Type1fonts.tlpsrc + tlpkg/tlpsrc/a0poster.tlpsrc + tlpkg/tlpsrc/a2ping.tlpsrc + tlpkg/tlpsrc/a4wide.tlpsrc + tlpkg/tlpsrc/a5comb.tlpsrc + tlpkg/tlpsrc/aastex.tlpsrc + tlpkg/tlpsrc/abbr.tlpsrc + tlpkg/tlpsrc/abc.tlpsrc + tlpkg/tlpsrc/abnt.tlpsrc + tlpkg/tlpsrc/abntex2.tlpsrc + tlpkg/tlpsrc/abraces.tlpsrc + tlpkg/tlpsrc/abstract.tlpsrc + tlpkg/tlpsrc/abstyles.tlpsrc + tlpkg/tlpsrc/academicons.tlpsrc + tlpkg/tlpsrc/accanthis.tlpsrc + tlpkg/tlpsrc/accfonts.tlpsrc + tlpkg/tlpsrc/achemso.tlpsrc + tlpkg/tlpsrc/acmart.tlpsrc + tlpkg/tlpsrc/acmconf.tlpsrc + tlpkg/tlpsrc/acro.tlpsrc + tlpkg/tlpsrc/acronym.tlpsrc + tlpkg/tlpsrc/acroterm.tlpsrc + tlpkg/tlpsrc/active-conf.tlpsrc + tlpkg/tlpsrc/actuarialangle.tlpsrc + tlpkg/tlpsrc/actuarialsymbol.tlpsrc + tlpkg/tlpsrc/addfont.tlpsrc + tlpkg/tlpsrc/addliga.tlpsrc + tlpkg/tlpsrc/addlines.tlpsrc + tlpkg/tlpsrc/adfathesis.tlpsrc + tlpkg/tlpsrc/adforn.tlpsrc + tlpkg/tlpsrc/adfsymbols.tlpsrc + tlpkg/tlpsrc/adhocfilelist.tlpsrc + tlpkg/tlpsrc/adigraph.tlpsrc + tlpkg/tlpsrc/adjmulticol.tlpsrc + tlpkg/tlpsrc/adjustbox.tlpsrc + tlpkg/tlpsrc/adobemapping.tlpsrc + tlpkg/tlpsrc/adrconv.tlpsrc + tlpkg/tlpsrc/adtrees.tlpsrc + tlpkg/tlpsrc/advdate.tlpsrc + tlpkg/tlpsrc/ae.tlpsrc + tlpkg/tlpsrc/aecc.tlpsrc + tlpkg/tlpsrc/aeguill.tlpsrc + tlpkg/tlpsrc/afm2pl.tlpsrc + tlpkg/tlpsrc/afparticle.tlpsrc + tlpkg/tlpsrc/afthesis.tlpsrc + tlpkg/tlpsrc/aguplus.tlpsrc + tlpkg/tlpsrc/aiaa.tlpsrc + tlpkg/tlpsrc/aichej.tlpsrc + tlpkg/tlpsrc/ajl.tlpsrc + tlpkg/tlpsrc/akktex.tlpsrc + tlpkg/tlpsrc/akletter.tlpsrc + tlpkg/tlpsrc/alegreya.tlpsrc + tlpkg/tlpsrc/aleph.tlpsrc + tlpkg/tlpsrc/alertmessage.tlpsrc + tlpkg/tlpsrc/alg.tlpsrc + tlpkg/tlpsrc/algobox.tlpsrc + tlpkg/tlpsrc/algolrevived.tlpsrc + tlpkg/tlpsrc/algorithm2e.tlpsrc + tlpkg/tlpsrc/algorithmicx.tlpsrc + tlpkg/tlpsrc/algorithms.tlpsrc + tlpkg/tlpsrc/aligned-overset.tlpsrc + tlpkg/tlpsrc/alkalami.tlpsrc + tlpkg/tlpsrc/allrunes.tlpsrc + tlpkg/tlpsrc/almendra.tlpsrc + tlpkg/tlpsrc/almfixed.tlpsrc + tlpkg/tlpsrc/alnumsec.tlpsrc + tlpkg/tlpsrc/alpha-persian.tlpsrc + tlpkg/tlpsrc/alterqcm.tlpsrc + tlpkg/tlpsrc/altfont.tlpsrc + tlpkg/tlpsrc/ametsoc.tlpsrc + tlpkg/tlpsrc/amiri.tlpsrc + tlpkg/tlpsrc/amsaddr.tlpsrc + tlpkg/tlpsrc/amscls-doc.tlpsrc + tlpkg/tlpsrc/amscls.tlpsrc + tlpkg/tlpsrc/amsfonts.tlpsrc + tlpkg/tlpsrc/amslatex-primer.tlpsrc + tlpkg/tlpsrc/amsldoc-it.tlpsrc + tlpkg/tlpsrc/amsldoc-vn.tlpsrc + tlpkg/tlpsrc/amsmath-it.tlpsrc + tlpkg/tlpsrc/amsmath.tlpsrc + tlpkg/tlpsrc/amsrefs.tlpsrc + tlpkg/tlpsrc/amstex.tlpsrc + tlpkg/tlpsrc/amsthdoc-it.tlpsrc + tlpkg/tlpsrc/animate.tlpsrc + tlpkg/tlpsrc/anonchap.tlpsrc + tlpkg/tlpsrc/anonymouspro.tlpsrc + tlpkg/tlpsrc/answers.tlpsrc + tlpkg/tlpsrc/antiqua.tlpsrc + tlpkg/tlpsrc/antomega.tlpsrc + tlpkg/tlpsrc/antt.tlpsrc + tlpkg/tlpsrc/anufinalexam.tlpsrc + tlpkg/tlpsrc/anyfontsize.tlpsrc + tlpkg/tlpsrc/anysize.tlpsrc + tlpkg/tlpsrc/aobs-tikz.tlpsrc + tlpkg/tlpsrc/aomart.tlpsrc + tlpkg/tlpsrc/apa.tlpsrc + tlpkg/tlpsrc/apa6.tlpsrc + tlpkg/tlpsrc/apa6e.tlpsrc + tlpkg/tlpsrc/apacite.tlpsrc + tlpkg/tlpsrc/apalike-german.tlpsrc + tlpkg/tlpsrc/apalike2.tlpsrc + tlpkg/tlpsrc/apnum.tlpsrc + tlpkg/tlpsrc/appendix.tlpsrc + tlpkg/tlpsrc/appendixnumberbeamer.tlpsrc + tlpkg/tlpsrc/apprendre-a-programmer-en-tex.tlpsrc + tlpkg/tlpsrc/apprends-latex.tlpsrc + tlpkg/tlpsrc/apptools.tlpsrc + tlpkg/tlpsrc/apxproof.tlpsrc + tlpkg/tlpsrc/arabi-add.tlpsrc + tlpkg/tlpsrc/arabi.tlpsrc + tlpkg/tlpsrc/arabluatex.tlpsrc + tlpkg/tlpsrc/arabtex.tlpsrc + tlpkg/tlpsrc/arabxetex.tlpsrc + tlpkg/tlpsrc/aramaic-serto.tlpsrc + tlpkg/tlpsrc/arara.tlpsrc + tlpkg/tlpsrc/archaeologie.tlpsrc + tlpkg/tlpsrc/archaic.tlpsrc + tlpkg/tlpsrc/arcs.tlpsrc + tlpkg/tlpsrc/arev.tlpsrc + tlpkg/tlpsrc/arimo.tlpsrc + tlpkg/tlpsrc/armtex.tlpsrc + tlpkg/tlpsrc/around-the-bend.tlpsrc + tlpkg/tlpsrc/arphic-ttf.tlpsrc + tlpkg/tlpsrc/arphic.tlpsrc + tlpkg/tlpsrc/arrayjobx.tlpsrc + tlpkg/tlpsrc/arraysort.tlpsrc + tlpkg/tlpsrc/arsclassica.tlpsrc + tlpkg/tlpsrc/articleingud.tlpsrc + tlpkg/tlpsrc/arydshln.tlpsrc + tlpkg/tlpsrc/asaetr.tlpsrc + tlpkg/tlpsrc/asapsym.tlpsrc + tlpkg/tlpsrc/ascelike.tlpsrc + tlpkg/tlpsrc/ascii-chart.tlpsrc + tlpkg/tlpsrc/ascii-font.tlpsrc + tlpkg/tlpsrc/asciilist.tlpsrc + tlpkg/tlpsrc/ascmac.tlpsrc + tlpkg/tlpsrc/askmaps.tlpsrc + tlpkg/tlpsrc/asmeconf.tlpsrc + tlpkg/tlpsrc/asmejour.tlpsrc + tlpkg/tlpsrc/aspectratio.tlpsrc + tlpkg/tlpsrc/assignment.tlpsrc + tlpkg/tlpsrc/assoccnt.tlpsrc + tlpkg/tlpsrc/astro.tlpsrc + tlpkg/tlpsrc/asyfig.tlpsrc + tlpkg/tlpsrc/asymptote-by-example-zh-cn.tlpsrc + tlpkg/tlpsrc/asymptote-faq-zh-cn.tlpsrc + tlpkg/tlpsrc/asymptote-manual-zh-cn.tlpsrc + tlpkg/tlpsrc/asymptote.tlpsrc + tlpkg/tlpsrc/asypictureb.tlpsrc + tlpkg/tlpsrc/attachfile.tlpsrc + tlpkg/tlpsrc/aucklandthesis.tlpsrc + tlpkg/tlpsrc/augie.tlpsrc + tlpkg/tlpsrc/auncial-new.tlpsrc + tlpkg/tlpsrc/aurical.tlpsrc + tlpkg/tlpsrc/aurl.tlpsrc + tlpkg/tlpsrc/authoraftertitle.tlpsrc + tlpkg/tlpsrc/authorarchive.tlpsrc + tlpkg/tlpsrc/authorindex.tlpsrc + tlpkg/tlpsrc/auto-pst-pdf-lua.tlpsrc + tlpkg/tlpsrc/auto-pst-pdf.tlpsrc + tlpkg/tlpsrc/autoaligne.tlpsrc + tlpkg/tlpsrc/autoarea.tlpsrc + tlpkg/tlpsrc/autobreak.tlpsrc + tlpkg/tlpsrc/automata.tlpsrc + tlpkg/tlpsrc/autonum.tlpsrc + tlpkg/tlpsrc/autopdf.tlpsrc + tlpkg/tlpsrc/autosp.tlpsrc + tlpkg/tlpsrc/avantgar.tlpsrc + tlpkg/tlpsrc/avremu.tlpsrc + tlpkg/tlpsrc/awesomebox.tlpsrc + tlpkg/tlpsrc/axessibility.tlpsrc + tlpkg/tlpsrc/axodraw2.tlpsrc + tlpkg/tlpsrc/b1encoding.tlpsrc + tlpkg/tlpsrc/babel-albanian.tlpsrc + tlpkg/tlpsrc/babel-azerbaijani.tlpsrc + tlpkg/tlpsrc/babel-basque.tlpsrc + tlpkg/tlpsrc/babel-belarusian.tlpsrc + tlpkg/tlpsrc/babel-bosnian.tlpsrc + tlpkg/tlpsrc/babel-breton.tlpsrc + tlpkg/tlpsrc/babel-bulgarian.tlpsrc + tlpkg/tlpsrc/babel-catalan.tlpsrc + tlpkg/tlpsrc/babel-croatian.tlpsrc + tlpkg/tlpsrc/babel-czech.tlpsrc + tlpkg/tlpsrc/babel-danish.tlpsrc + tlpkg/tlpsrc/babel-dutch.tlpsrc + tlpkg/tlpsrc/babel-english.tlpsrc + tlpkg/tlpsrc/babel-esperanto.tlpsrc + tlpkg/tlpsrc/babel-estonian.tlpsrc + tlpkg/tlpsrc/babel-finnish.tlpsrc + tlpkg/tlpsrc/babel-french.tlpsrc + tlpkg/tlpsrc/babel-friulan.tlpsrc + tlpkg/tlpsrc/babel-galician.tlpsrc + tlpkg/tlpsrc/babel-georgian.tlpsrc + tlpkg/tlpsrc/babel-german.tlpsrc + tlpkg/tlpsrc/babel-greek.tlpsrc + tlpkg/tlpsrc/babel-hebrew.tlpsrc + tlpkg/tlpsrc/babel-hungarian.tlpsrc + tlpkg/tlpsrc/babel-icelandic.tlpsrc + tlpkg/tlpsrc/babel-indonesian.tlpsrc + tlpkg/tlpsrc/babel-interlingua.tlpsrc + tlpkg/tlpsrc/babel-irish.tlpsrc + tlpkg/tlpsrc/babel-italian.tlpsrc + tlpkg/tlpsrc/babel-japanese.tlpsrc + tlpkg/tlpsrc/babel-kurmanji.tlpsrc + tlpkg/tlpsrc/babel-latin.tlpsrc + tlpkg/tlpsrc/babel-latvian.tlpsrc + tlpkg/tlpsrc/babel-macedonian.tlpsrc + tlpkg/tlpsrc/babel-malay.tlpsrc + tlpkg/tlpsrc/babel-norsk.tlpsrc + tlpkg/tlpsrc/babel-occitan.tlpsrc + tlpkg/tlpsrc/babel-piedmontese.tlpsrc + tlpkg/tlpsrc/babel-polish.tlpsrc + tlpkg/tlpsrc/babel-portuges.tlpsrc + tlpkg/tlpsrc/babel-romanian.tlpsrc + tlpkg/tlpsrc/babel-romansh.tlpsrc + tlpkg/tlpsrc/babel-russian.tlpsrc + tlpkg/tlpsrc/babel-samin.tlpsrc + tlpkg/tlpsrc/babel-scottish.tlpsrc + tlpkg/tlpsrc/babel-serbian.tlpsrc + tlpkg/tlpsrc/babel-serbianc.tlpsrc + tlpkg/tlpsrc/babel-slovak.tlpsrc + tlpkg/tlpsrc/babel-slovenian.tlpsrc + tlpkg/tlpsrc/babel-sorbian.tlpsrc + tlpkg/tlpsrc/babel-spanglish.tlpsrc + tlpkg/tlpsrc/babel-spanish.tlpsrc + tlpkg/tlpsrc/babel-swedish.tlpsrc + tlpkg/tlpsrc/babel-thai.tlpsrc + tlpkg/tlpsrc/babel-turkish.tlpsrc + tlpkg/tlpsrc/babel-ukrainian.tlpsrc + tlpkg/tlpsrc/babel-vietnamese.tlpsrc + tlpkg/tlpsrc/babel-welsh.tlpsrc + tlpkg/tlpsrc/babel.tlpsrc + tlpkg/tlpsrc/babelbib.tlpsrc + tlpkg/tlpsrc/background.tlpsrc + tlpkg/tlpsrc/backnaur.tlpsrc + tlpkg/tlpsrc/baekmuk.tlpsrc + tlpkg/tlpsrc/bagpipe.tlpsrc + tlpkg/tlpsrc/bangorcsthesis.tlpsrc + tlpkg/tlpsrc/bangorexam.tlpsrc + tlpkg/tlpsrc/bangtex.tlpsrc + tlpkg/tlpsrc/bankstatement.tlpsrc + tlpkg/tlpsrc/barcodes.tlpsrc + tlpkg/tlpsrc/bardiag.tlpsrc + tlpkg/tlpsrc/barr.tlpsrc + tlpkg/tlpsrc/bartel-chess-fonts.tlpsrc + tlpkg/tlpsrc/bashful.tlpsrc + tlpkg/tlpsrc/basicarith.tlpsrc + tlpkg/tlpsrc/baskervald.tlpsrc + tlpkg/tlpsrc/baskervaldx.tlpsrc + tlpkg/tlpsrc/baskervillef.tlpsrc + tlpkg/tlpsrc/basque-book.tlpsrc + tlpkg/tlpsrc/basque-date.tlpsrc + tlpkg/tlpsrc/bath-bst.tlpsrc + tlpkg/tlpsrc/bbcard.tlpsrc + tlpkg/tlpsrc/bbding.tlpsrc + tlpkg/tlpsrc/bbm-macros.tlpsrc + tlpkg/tlpsrc/bbm.tlpsrc + tlpkg/tlpsrc/bbold-type1.tlpsrc + tlpkg/tlpsrc/bbold.tlpsrc + tlpkg/tlpsrc/bchart.tlpsrc + tlpkg/tlpsrc/bclogo.tlpsrc + tlpkg/tlpsrc/beamer-FUBerlin.tlpsrc + tlpkg/tlpsrc/beamer-rl.tlpsrc + tlpkg/tlpsrc/beamer-tut-pt.tlpsrc + tlpkg/tlpsrc/beamer-verona.tlpsrc + tlpkg/tlpsrc/beamer.tlpsrc + tlpkg/tlpsrc/beamer2thesis.tlpsrc + tlpkg/tlpsrc/beameraudience.tlpsrc + tlpkg/tlpsrc/beamerauxtheme.tlpsrc + tlpkg/tlpsrc/beamercolorthemeowl.tlpsrc + tlpkg/tlpsrc/beamerdarkthemes.tlpsrc + tlpkg/tlpsrc/beamerposter.tlpsrc + tlpkg/tlpsrc/beamersubframe.tlpsrc + tlpkg/tlpsrc/beamerswitch.tlpsrc + tlpkg/tlpsrc/beamertheme-cuerna.tlpsrc + tlpkg/tlpsrc/beamertheme-detlevcm.tlpsrc + tlpkg/tlpsrc/beamertheme-epyt.tlpsrc + tlpkg/tlpsrc/beamertheme-focus.tlpsrc + tlpkg/tlpsrc/beamertheme-light.tlpsrc + tlpkg/tlpsrc/beamertheme-metropolis.tlpsrc + tlpkg/tlpsrc/beamertheme-npbt.tlpsrc + tlpkg/tlpsrc/beamertheme-phnompenh.tlpsrc + tlpkg/tlpsrc/beamertheme-saintpetersburg.tlpsrc + tlpkg/tlpsrc/beamertheme-upenn-bc.tlpsrc + tlpkg/tlpsrc/beamerthemejltree.tlpsrc + tlpkg/tlpsrc/beamerthemenirma.tlpsrc + tlpkg/tlpsrc/beebe.tlpsrc + tlpkg/tlpsrc/begingreek.tlpsrc + tlpkg/tlpsrc/begriff.tlpsrc + tlpkg/tlpsrc/beilstein.tlpsrc + tlpkg/tlpsrc/belleek.tlpsrc + tlpkg/tlpsrc/bengali.tlpsrc + tlpkg/tlpsrc/bera.tlpsrc + tlpkg/tlpsrc/berenisadf.tlpsrc + tlpkg/tlpsrc/besjournals.tlpsrc + tlpkg/tlpsrc/bestpapers.tlpsrc + tlpkg/tlpsrc/betababel.tlpsrc + tlpkg/tlpsrc/beton.tlpsrc + tlpkg/tlpsrc/beuron.tlpsrc + tlpkg/tlpsrc/bewerbung.tlpsrc + tlpkg/tlpsrc/bez123.tlpsrc + tlpkg/tlpsrc/bezierplot.tlpsrc + tlpkg/tlpsrc/bezos.tlpsrc + tlpkg/tlpsrc/bgreek.tlpsrc + tlpkg/tlpsrc/bgteubner.tlpsrc + tlpkg/tlpsrc/bguq.tlpsrc + tlpkg/tlpsrc/bhcexam.tlpsrc + tlpkg/tlpsrc/bib-fr.tlpsrc + tlpkg/tlpsrc/bib2gls.tlpsrc + tlpkg/tlpsrc/bibarts.tlpsrc + tlpkg/tlpsrc/biber.tlpsrc + tlpkg/tlpsrc/bibexport.tlpsrc + tlpkg/tlpsrc/bibhtml.tlpsrc + tlpkg/tlpsrc/biblatex-abnt.tlpsrc + tlpkg/tlpsrc/biblatex-anonymous.tlpsrc + tlpkg/tlpsrc/biblatex-apa.tlpsrc + tlpkg/tlpsrc/biblatex-archaeology.tlpsrc + tlpkg/tlpsrc/biblatex-arthistory-bonn.tlpsrc + tlpkg/tlpsrc/biblatex-bath.tlpsrc + tlpkg/tlpsrc/biblatex-bookinarticle.tlpsrc + tlpkg/tlpsrc/biblatex-bookinother.tlpsrc + tlpkg/tlpsrc/biblatex-bwl.tlpsrc + tlpkg/tlpsrc/biblatex-caspervector.tlpsrc + tlpkg/tlpsrc/biblatex-cheatsheet.tlpsrc + tlpkg/tlpsrc/biblatex-chem.tlpsrc + tlpkg/tlpsrc/biblatex-chicago.tlpsrc + tlpkg/tlpsrc/biblatex-claves.tlpsrc + tlpkg/tlpsrc/biblatex-dw.tlpsrc + tlpkg/tlpsrc/biblatex-enc.tlpsrc + tlpkg/tlpsrc/biblatex-ext.tlpsrc + tlpkg/tlpsrc/biblatex-fiwi.tlpsrc + tlpkg/tlpsrc/biblatex-gb7714-2015.tlpsrc + tlpkg/tlpsrc/biblatex-gost.tlpsrc + tlpkg/tlpsrc/biblatex-historian.tlpsrc + tlpkg/tlpsrc/biblatex-ieee.tlpsrc + tlpkg/tlpsrc/biblatex-ijsra.tlpsrc + tlpkg/tlpsrc/biblatex-iso690.tlpsrc + tlpkg/tlpsrc/biblatex-juradiss.tlpsrc + tlpkg/tlpsrc/biblatex-lni.tlpsrc + tlpkg/tlpsrc/biblatex-luh-ipw.tlpsrc + tlpkg/tlpsrc/biblatex-manuscripts-philology.tlpsrc + tlpkg/tlpsrc/biblatex-mla.tlpsrc + tlpkg/tlpsrc/biblatex-morenames.tlpsrc + tlpkg/tlpsrc/biblatex-multiple-dm.tlpsrc + tlpkg/tlpsrc/biblatex-musuos.tlpsrc + tlpkg/tlpsrc/biblatex-nature.tlpsrc + tlpkg/tlpsrc/biblatex-nejm.tlpsrc + tlpkg/tlpsrc/biblatex-nottsclassic.tlpsrc + tlpkg/tlpsrc/biblatex-opcit-booktitle.tlpsrc + tlpkg/tlpsrc/biblatex-oxref.tlpsrc + tlpkg/tlpsrc/biblatex-philosophy.tlpsrc + tlpkg/tlpsrc/biblatex-phys.tlpsrc + tlpkg/tlpsrc/biblatex-publist.tlpsrc + tlpkg/tlpsrc/biblatex-realauthor.tlpsrc + tlpkg/tlpsrc/biblatex-sbl.tlpsrc + tlpkg/tlpsrc/biblatex-science.tlpsrc + tlpkg/tlpsrc/biblatex-shortfields.tlpsrc + tlpkg/tlpsrc/biblatex-socialscienceshuberlin.tlpsrc + tlpkg/tlpsrc/biblatex-source-division.tlpsrc + tlpkg/tlpsrc/biblatex-subseries.tlpsrc + tlpkg/tlpsrc/biblatex-swiss-legal.tlpsrc + tlpkg/tlpsrc/biblatex-trad.tlpsrc + tlpkg/tlpsrc/biblatex-true-citepages-omit.tlpsrc + tlpkg/tlpsrc/biblatex.tlpsrc + tlpkg/tlpsrc/bibleref-french.tlpsrc + tlpkg/tlpsrc/bibleref-german.tlpsrc + tlpkg/tlpsrc/bibleref-lds.tlpsrc + tlpkg/tlpsrc/bibleref-mouth.tlpsrc + tlpkg/tlpsrc/bibleref-parse.tlpsrc + tlpkg/tlpsrc/bibleref.tlpsrc + tlpkg/tlpsrc/bibletext.tlpsrc + tlpkg/tlpsrc/biblist.tlpsrc + tlpkg/tlpsrc/bibtex.tlpsrc + tlpkg/tlpsrc/bibtex8.tlpsrc + tlpkg/tlpsrc/bibtexperllibs.tlpsrc + tlpkg/tlpsrc/bibtexu.tlpsrc + tlpkg/tlpsrc/bibtopic.tlpsrc + tlpkg/tlpsrc/bibtopicprefix.tlpsrc + tlpkg/tlpsrc/bibunits.tlpsrc + tlpkg/tlpsrc/bidi-atbegshi.tlpsrc + tlpkg/tlpsrc/bidi.tlpsrc + tlpkg/tlpsrc/bidicontour.tlpsrc + tlpkg/tlpsrc/bidihl.tlpsrc + tlpkg/tlpsrc/bidipagegrid.tlpsrc + tlpkg/tlpsrc/bidipresentation.tlpsrc + tlpkg/tlpsrc/bidishadowtext.tlpsrc + tlpkg/tlpsrc/bigfoot.tlpsrc + tlpkg/tlpsrc/bigints.tlpsrc + tlpkg/tlpsrc/binarytree.tlpsrc + tlpkg/tlpsrc/binomexp.tlpsrc + tlpkg/tlpsrc/biochemistry-colors.tlpsrc + tlpkg/tlpsrc/biocon.tlpsrc + tlpkg/tlpsrc/biolett-bst.tlpsrc + tlpkg/tlpsrc/bitelist.tlpsrc + tlpkg/tlpsrc/bitpattern.tlpsrc + tlpkg/tlpsrc/bitter.tlpsrc + tlpkg/tlpsrc/bizcard.tlpsrc + tlpkg/tlpsrc/blacklettert1.tlpsrc + tlpkg/tlpsrc/blindtext.tlpsrc + tlpkg/tlpsrc/blkarray.tlpsrc + tlpkg/tlpsrc/blochsphere.tlpsrc + tlpkg/tlpsrc/block.tlpsrc + tlpkg/tlpsrc/blockdraw_mp.tlpsrc + tlpkg/tlpsrc/bloques.tlpsrc + tlpkg/tlpsrc/blowup.tlpsrc + tlpkg/tlpsrc/blox.tlpsrc + tlpkg/tlpsrc/bnumexpr.tlpsrc + tlpkg/tlpsrc/bodegraph.tlpsrc + tlpkg/tlpsrc/bohr.tlpsrc + tlpkg/tlpsrc/boisik.tlpsrc + tlpkg/tlpsrc/boites.tlpsrc + tlpkg/tlpsrc/bold-extra.tlpsrc + tlpkg/tlpsrc/boldtensors.tlpsrc + tlpkg/tlpsrc/bondgraph.tlpsrc + tlpkg/tlpsrc/bondgraphs.tlpsrc + tlpkg/tlpsrc/bookcover.tlpsrc + tlpkg/tlpsrc/bookdb.tlpsrc + tlpkg/tlpsrc/bookest.tlpsrc + tlpkg/tlpsrc/bookhands.tlpsrc + tlpkg/tlpsrc/booklet.tlpsrc + tlpkg/tlpsrc/bookman.tlpsrc + tlpkg/tlpsrc/booktabs-de.tlpsrc + tlpkg/tlpsrc/booktabs-fr.tlpsrc + tlpkg/tlpsrc/booktabs.tlpsrc + tlpkg/tlpsrc/boolexpr.tlpsrc + tlpkg/tlpsrc/boondox.tlpsrc + tlpkg/tlpsrc/bophook.tlpsrc + tlpkg/tlpsrc/borceux.tlpsrc + tlpkg/tlpsrc/bosisio.tlpsrc + tlpkg/tlpsrc/boxedminipage.tlpsrc + tlpkg/tlpsrc/boxedminipage2e.tlpsrc + tlpkg/tlpsrc/boxhandler.tlpsrc + tlpkg/tlpsrc/bpchem.tlpsrc + tlpkg/tlpsrc/bpolynomial.tlpsrc + tlpkg/tlpsrc/br-lex.tlpsrc + tlpkg/tlpsrc/bracketkey.tlpsrc + tlpkg/tlpsrc/braids.tlpsrc + tlpkg/tlpsrc/braille.tlpsrc + tlpkg/tlpsrc/braket.tlpsrc + tlpkg/tlpsrc/brandeis-dissertation.tlpsrc + tlpkg/tlpsrc/brandeis-problemset.tlpsrc + tlpkg/tlpsrc/breakcites.tlpsrc + tlpkg/tlpsrc/breakurl.tlpsrc + tlpkg/tlpsrc/bredzenie.tlpsrc + tlpkg/tlpsrc/breqn.tlpsrc + tlpkg/tlpsrc/bropd.tlpsrc + tlpkg/tlpsrc/brushscr.tlpsrc + tlpkg/tlpsrc/bullcntr.tlpsrc + tlpkg/tlpsrc/bundledoc.tlpsrc + tlpkg/tlpsrc/burmese.tlpsrc + tlpkg/tlpsrc/businesscard-qrcode.tlpsrc + tlpkg/tlpsrc/bussproofs-extra.tlpsrc + tlpkg/tlpsrc/bussproofs.tlpsrc + tlpkg/tlpsrc/bxbase.tlpsrc + tlpkg/tlpsrc/bxcalc.tlpsrc + tlpkg/tlpsrc/bxcjkjatype.tlpsrc + tlpkg/tlpsrc/bxdpx-beamer.tlpsrc + tlpkg/tlpsrc/bxdvidriver.tlpsrc + tlpkg/tlpsrc/bxeepic.tlpsrc + tlpkg/tlpsrc/bxenclose.tlpsrc + tlpkg/tlpsrc/bxjaholiday.tlpsrc + tlpkg/tlpsrc/bxjalipsum.tlpsrc + tlpkg/tlpsrc/bxjaprnind.tlpsrc + tlpkg/tlpsrc/bxjscls.tlpsrc + tlpkg/tlpsrc/bxnewfont.tlpsrc + tlpkg/tlpsrc/bxorigcapt.tlpsrc + tlpkg/tlpsrc/bxpapersize.tlpsrc + tlpkg/tlpsrc/bxpdfver.tlpsrc + tlpkg/tlpsrc/bxtexlogo.tlpsrc + tlpkg/tlpsrc/bxwareki.tlpsrc + tlpkg/tlpsrc/bytefield.tlpsrc + tlpkg/tlpsrc/c-pascal.tlpsrc + tlpkg/tlpsrc/c90.tlpsrc + tlpkg/tlpsrc/cabin.tlpsrc + tlpkg/tlpsrc/cachepic.tlpsrc + tlpkg/tlpsrc/caladea.tlpsrc + tlpkg/tlpsrc/calcage.tlpsrc + tlpkg/tlpsrc/calctab.tlpsrc + tlpkg/tlpsrc/calculation.tlpsrc + tlpkg/tlpsrc/calculator.tlpsrc + tlpkg/tlpsrc/calligra-type1.tlpsrc + tlpkg/tlpsrc/calligra.tlpsrc + tlpkg/tlpsrc/callouts.tlpsrc + tlpkg/tlpsrc/calrsfs.tlpsrc + tlpkg/tlpsrc/cals.tlpsrc + tlpkg/tlpsrc/calxxxx-yyyy.tlpsrc + tlpkg/tlpsrc/cancel.tlpsrc + tlpkg/tlpsrc/canoniclayout.tlpsrc + tlpkg/tlpsrc/cantarell.tlpsrc + tlpkg/tlpsrc/capt-of.tlpsrc + tlpkg/tlpsrc/captcont.tlpsrc + tlpkg/tlpsrc/captdef.tlpsrc + tlpkg/tlpsrc/caption.tlpsrc + tlpkg/tlpsrc/carbohydrates.tlpsrc + tlpkg/tlpsrc/carlisle.tlpsrc + tlpkg/tlpsrc/carlito.tlpsrc + tlpkg/tlpsrc/carolmin-ps.tlpsrc + tlpkg/tlpsrc/cascade.tlpsrc + tlpkg/tlpsrc/cascadilla.tlpsrc + tlpkg/tlpsrc/cases.tlpsrc + tlpkg/tlpsrc/casyl.tlpsrc + tlpkg/tlpsrc/catchfilebetweentags.tlpsrc + tlpkg/tlpsrc/catcodes.tlpsrc + tlpkg/tlpsrc/catechis.tlpsrc + tlpkg/tlpsrc/catoptions.tlpsrc + tlpkg/tlpsrc/cbcoptic.tlpsrc + tlpkg/tlpsrc/cbfonts-fd.tlpsrc + tlpkg/tlpsrc/cbfonts.tlpsrc + tlpkg/tlpsrc/cc-pl.tlpsrc + tlpkg/tlpsrc/ccaption.tlpsrc + tlpkg/tlpsrc/ccfonts.tlpsrc + tlpkg/tlpsrc/ccicons.tlpsrc + tlpkg/tlpsrc/cclicenses.tlpsrc + tlpkg/tlpsrc/cd-cover.tlpsrc + tlpkg/tlpsrc/cd.tlpsrc + tlpkg/tlpsrc/cdpbundl.tlpsrc + tlpkg/tlpsrc/cell.tlpsrc + tlpkg/tlpsrc/cellprops.tlpsrc + tlpkg/tlpsrc/cellspace.tlpsrc + tlpkg/tlpsrc/celtic.tlpsrc + tlpkg/tlpsrc/censor.tlpsrc + tlpkg/tlpsrc/centeredline.tlpsrc + tlpkg/tlpsrc/cesenaexam.tlpsrc + tlpkg/tlpsrc/cfr-initials.tlpsrc + tlpkg/tlpsrc/cfr-lm.tlpsrc + tlpkg/tlpsrc/changebar.tlpsrc + tlpkg/tlpsrc/changelayout.tlpsrc + tlpkg/tlpsrc/changelog.tlpsrc + tlpkg/tlpsrc/changepage.tlpsrc + tlpkg/tlpsrc/changes.tlpsrc + tlpkg/tlpsrc/chappg.tlpsrc + tlpkg/tlpsrc/chapterfolder.tlpsrc + tlpkg/tlpsrc/charter.tlpsrc + tlpkg/tlpsrc/chbibref.tlpsrc + tlpkg/tlpsrc/cheatsheet.tlpsrc + tlpkg/tlpsrc/checkcites.tlpsrc + tlpkg/tlpsrc/checklistings.tlpsrc + tlpkg/tlpsrc/chem-journal.tlpsrc + tlpkg/tlpsrc/chemarrow.tlpsrc + tlpkg/tlpsrc/chembst.tlpsrc + tlpkg/tlpsrc/chemcompounds.tlpsrc + tlpkg/tlpsrc/chemcono.tlpsrc + tlpkg/tlpsrc/chemexec.tlpsrc + tlpkg/tlpsrc/chemfig.tlpsrc + tlpkg/tlpsrc/chemformula.tlpsrc + tlpkg/tlpsrc/chemgreek.tlpsrc + tlpkg/tlpsrc/chemmacros.tlpsrc + tlpkg/tlpsrc/chemnum.tlpsrc + tlpkg/tlpsrc/chemschemex.tlpsrc + tlpkg/tlpsrc/chemsec.tlpsrc + tlpkg/tlpsrc/chemstyle.tlpsrc + tlpkg/tlpsrc/cherokee.tlpsrc + tlpkg/tlpsrc/chess-problem-diagrams.tlpsrc + tlpkg/tlpsrc/chess.tlpsrc + tlpkg/tlpsrc/chessboard.tlpsrc + tlpkg/tlpsrc/chessfss.tlpsrc + tlpkg/tlpsrc/chet.tlpsrc + tlpkg/tlpsrc/chextras.tlpsrc + tlpkg/tlpsrc/chicago-annote.tlpsrc + tlpkg/tlpsrc/chicago.tlpsrc + tlpkg/tlpsrc/chickenize.tlpsrc + tlpkg/tlpsrc/childdoc.tlpsrc + tlpkg/tlpsrc/chivo.tlpsrc + tlpkg/tlpsrc/chkfloat.tlpsrc + tlpkg/tlpsrc/chktex.tlpsrc + tlpkg/tlpsrc/chletter.tlpsrc + tlpkg/tlpsrc/chngcntr.tlpsrc + tlpkg/tlpsrc/chordbars.tlpsrc + tlpkg/tlpsrc/chordbox.tlpsrc + tlpkg/tlpsrc/chronology.tlpsrc + tlpkg/tlpsrc/chronosys.tlpsrc + tlpkg/tlpsrc/chs-physics-report.tlpsrc + tlpkg/tlpsrc/chscite.tlpsrc + tlpkg/tlpsrc/churchslavonic.tlpsrc + tlpkg/tlpsrc/cinzel.tlpsrc + tlpkg/tlpsrc/circ.tlpsrc + tlpkg/tlpsrc/circuitikz.tlpsrc + tlpkg/tlpsrc/cite.tlpsrc + tlpkg/tlpsrc/citeall.tlpsrc + tlpkg/tlpsrc/citeref.tlpsrc + tlpkg/tlpsrc/cje.tlpsrc + tlpkg/tlpsrc/cjhebrew.tlpsrc + tlpkg/tlpsrc/cjk-gs-integrate.tlpsrc + tlpkg/tlpsrc/cjk-ko.tlpsrc + tlpkg/tlpsrc/cjk.tlpsrc + tlpkg/tlpsrc/cjkpunct.tlpsrc + tlpkg/tlpsrc/cjkutils.tlpsrc + tlpkg/tlpsrc/classics.tlpsrc + tlpkg/tlpsrc/classicthesis.tlpsrc + tlpkg/tlpsrc/classpack.tlpsrc + tlpkg/tlpsrc/cleanthesis.tlpsrc + tlpkg/tlpsrc/clearsans.tlpsrc + tlpkg/tlpsrc/clefval.tlpsrc + tlpkg/tlpsrc/cleveref.tlpsrc + tlpkg/tlpsrc/clipboard.tlpsrc + tlpkg/tlpsrc/clock.tlpsrc + tlpkg/tlpsrc/cloze.tlpsrc + tlpkg/tlpsrc/clrdblpg.tlpsrc + tlpkg/tlpsrc/clrscode.tlpsrc + tlpkg/tlpsrc/clrscode3e.tlpsrc + tlpkg/tlpsrc/clrstrip.tlpsrc + tlpkg/tlpsrc/cluttex.tlpsrc + tlpkg/tlpsrc/cm-lgc.tlpsrc + tlpkg/tlpsrc/cm-mf-extra-bold.tlpsrc + tlpkg/tlpsrc/cm-super.tlpsrc + tlpkg/tlpsrc/cm-unicode.tlpsrc + tlpkg/tlpsrc/cm.tlpsrc + tlpkg/tlpsrc/cmap.tlpsrc + tlpkg/tlpsrc/cmarrows.tlpsrc + tlpkg/tlpsrc/cmbright.tlpsrc + tlpkg/tlpsrc/cmcyr.tlpsrc + tlpkg/tlpsrc/cmdstring.tlpsrc + tlpkg/tlpsrc/cmdtrack.tlpsrc + tlpkg/tlpsrc/cmexb.tlpsrc + tlpkg/tlpsrc/cmextra.tlpsrc + tlpkg/tlpsrc/cmll.tlpsrc + tlpkg/tlpsrc/cmpica.tlpsrc + tlpkg/tlpsrc/cmpj.tlpsrc + tlpkg/tlpsrc/cmsd.tlpsrc + tlpkg/tlpsrc/cmsrb.tlpsrc + tlpkg/tlpsrc/cmtiup.tlpsrc + tlpkg/tlpsrc/cnbwp.tlpsrc + tlpkg/tlpsrc/cnltx.tlpsrc + tlpkg/tlpsrc/cns.tlpsrc + tlpkg/tlpsrc/cntformats.tlpsrc + tlpkg/tlpsrc/cntperchap.tlpsrc + tlpkg/tlpsrc/cochineal.tlpsrc + tlpkg/tlpsrc/codedoc.tlpsrc + tlpkg/tlpsrc/codepage.tlpsrc + tlpkg/tlpsrc/codesection.tlpsrc + tlpkg/tlpsrc/codicefiscaleitaliano.tlpsrc + tlpkg/tlpsrc/coelacanth.tlpsrc + tlpkg/tlpsrc/collcell.tlpsrc + tlpkg/tlpsrc/collectbox.tlpsrc + tlpkg/tlpsrc/collection-basic.tlpsrc + tlpkg/tlpsrc/collection-bibtexextra.tlpsrc + tlpkg/tlpsrc/collection-binextra.tlpsrc + tlpkg/tlpsrc/collection-context.tlpsrc + tlpkg/tlpsrc/collection-fontsextra.tlpsrc + tlpkg/tlpsrc/collection-fontsrecommended.tlpsrc + tlpkg/tlpsrc/collection-fontutils.tlpsrc + tlpkg/tlpsrc/collection-formatsextra.tlpsrc + tlpkg/tlpsrc/collection-games.tlpsrc + tlpkg/tlpsrc/collection-humanities.tlpsrc + tlpkg/tlpsrc/collection-langarabic.tlpsrc + tlpkg/tlpsrc/collection-langchinese.tlpsrc + tlpkg/tlpsrc/collection-langcjk.tlpsrc + tlpkg/tlpsrc/collection-langcyrillic.tlpsrc + tlpkg/tlpsrc/collection-langczechslovak.tlpsrc + tlpkg/tlpsrc/collection-langenglish.tlpsrc + tlpkg/tlpsrc/collection-langeuropean.tlpsrc + tlpkg/tlpsrc/collection-langfrench.tlpsrc + tlpkg/tlpsrc/collection-langgerman.tlpsrc + tlpkg/tlpsrc/collection-langgreek.tlpsrc + tlpkg/tlpsrc/collection-langitalian.tlpsrc + tlpkg/tlpsrc/collection-langjapanese.tlpsrc + tlpkg/tlpsrc/collection-langkorean.tlpsrc + tlpkg/tlpsrc/collection-langother.tlpsrc + tlpkg/tlpsrc/collection-langpolish.tlpsrc + tlpkg/tlpsrc/collection-langportuguese.tlpsrc + tlpkg/tlpsrc/collection-langspanish.tlpsrc + tlpkg/tlpsrc/collection-latex.tlpsrc + tlpkg/tlpsrc/collection-latexextra.tlpsrc + tlpkg/tlpsrc/collection-latexrecommended.tlpsrc + tlpkg/tlpsrc/collection-luatex.tlpsrc + tlpkg/tlpsrc/collection-mathscience.tlpsrc + tlpkg/tlpsrc/collection-metapost.tlpsrc + tlpkg/tlpsrc/collection-music.tlpsrc + tlpkg/tlpsrc/collection-pictures.tlpsrc + tlpkg/tlpsrc/collection-plaingeneric.tlpsrc + tlpkg/tlpsrc/collection-pstricks.tlpsrc + tlpkg/tlpsrc/collection-publishers.tlpsrc + tlpkg/tlpsrc/collection-texworks.tlpsrc + tlpkg/tlpsrc/collection-wintools.tlpsrc + tlpkg/tlpsrc/collection-xetex.tlpsrc + tlpkg/tlpsrc/collref.tlpsrc + tlpkg/tlpsrc/colophon.tlpsrc + tlpkg/tlpsrc/colordoc.tlpsrc + tlpkg/tlpsrc/colorinfo.tlpsrc + tlpkg/tlpsrc/coloring.tlpsrc + tlpkg/tlpsrc/colorprofiles.tlpsrc + tlpkg/tlpsrc/colorsep.tlpsrc + tlpkg/tlpsrc/colorspace.tlpsrc + tlpkg/tlpsrc/colortab.tlpsrc + tlpkg/tlpsrc/colortbl.tlpsrc + tlpkg/tlpsrc/colorwav.tlpsrc + tlpkg/tlpsrc/colorweb.tlpsrc + tlpkg/tlpsrc/colourchange.tlpsrc + tlpkg/tlpsrc/combelow.tlpsrc + tlpkg/tlpsrc/combine.tlpsrc + tlpkg/tlpsrc/combinedgraphics.tlpsrc + tlpkg/tlpsrc/combofont.tlpsrc + tlpkg/tlpsrc/comfortaa.tlpsrc + tlpkg/tlpsrc/comicneue.tlpsrc + tlpkg/tlpsrc/comma.tlpsrc + tlpkg/tlpsrc/commado.tlpsrc + tlpkg/tlpsrc/commath.tlpsrc + tlpkg/tlpsrc/commedit.tlpsrc + tlpkg/tlpsrc/comment.tlpsrc + tlpkg/tlpsrc/compactbib.tlpsrc + tlpkg/tlpsrc/competences.tlpsrc + tlpkg/tlpsrc/complexity.tlpsrc + tlpkg/tlpsrc/components-of-TeX.tlpsrc + tlpkg/tlpsrc/comprehensive.tlpsrc + tlpkg/tlpsrc/computational-complexity.tlpsrc + tlpkg/tlpsrc/concepts.tlpsrc + tlpkg/tlpsrc/concmath-fonts.tlpsrc + tlpkg/tlpsrc/concmath.tlpsrc + tlpkg/tlpsrc/concprog.tlpsrc + tlpkg/tlpsrc/concrete.tlpsrc + tlpkg/tlpsrc/confproc.tlpsrc + tlpkg/tlpsrc/constants.tlpsrc + tlpkg/tlpsrc/conteq.tlpsrc + tlpkg/tlpsrc/context-account.tlpsrc + tlpkg/tlpsrc/context-algorithmic.tlpsrc + tlpkg/tlpsrc/context-animation.tlpsrc + tlpkg/tlpsrc/context-annotation.tlpsrc + tlpkg/tlpsrc/context-bnf.tlpsrc + tlpkg/tlpsrc/context-chromato.tlpsrc + tlpkg/tlpsrc/context-cmscbf.tlpsrc + tlpkg/tlpsrc/context-cmttbf.tlpsrc + tlpkg/tlpsrc/context-construction-plan.tlpsrc + tlpkg/tlpsrc/context-cyrillicnumbers.tlpsrc + tlpkg/tlpsrc/context-degrade.tlpsrc + tlpkg/tlpsrc/context-fancybreak.tlpsrc + tlpkg/tlpsrc/context-filter.tlpsrc + tlpkg/tlpsrc/context-french.tlpsrc + tlpkg/tlpsrc/context-fullpage.tlpsrc + tlpkg/tlpsrc/context-gantt.tlpsrc + tlpkg/tlpsrc/context-gnuplot.tlpsrc + tlpkg/tlpsrc/context-handlecsv.tlpsrc + tlpkg/tlpsrc/context-inifile.tlpsrc + tlpkg/tlpsrc/context-layout.tlpsrc + tlpkg/tlpsrc/context-letter.tlpsrc + tlpkg/tlpsrc/context-lettrine.tlpsrc + tlpkg/tlpsrc/context-mathsets.tlpsrc + tlpkg/tlpsrc/context-notes-zh-cn.tlpsrc + tlpkg/tlpsrc/context-rst.tlpsrc + tlpkg/tlpsrc/context-ruby.tlpsrc + tlpkg/tlpsrc/context-simplefonts.tlpsrc + tlpkg/tlpsrc/context-simpleslides.tlpsrc + tlpkg/tlpsrc/context-title.tlpsrc + tlpkg/tlpsrc/context-transliterator.tlpsrc + tlpkg/tlpsrc/context-typearea.tlpsrc + tlpkg/tlpsrc/context-typescripts.tlpsrc + tlpkg/tlpsrc/context-vim.tlpsrc + tlpkg/tlpsrc/context-visualcounter.tlpsrc + tlpkg/tlpsrc/context.tlpsrc + tlpkg/tlpsrc/continue.tlpsrc + tlpkg/tlpsrc/contour.tlpsrc + tlpkg/tlpsrc/contracard.tlpsrc + tlpkg/tlpsrc/conv-xkv.tlpsrc + tlpkg/tlpsrc/convbkmk.tlpsrc + tlpkg/tlpsrc/cooking-units.tlpsrc + tlpkg/tlpsrc/cooking.tlpsrc + tlpkg/tlpsrc/cookingsymbols.tlpsrc + tlpkg/tlpsrc/cool.tlpsrc + tlpkg/tlpsrc/coollist.tlpsrc + tlpkg/tlpsrc/coolstr.tlpsrc + tlpkg/tlpsrc/coolthms.tlpsrc + tlpkg/tlpsrc/cooltooltips.tlpsrc + tlpkg/tlpsrc/coordsys.tlpsrc + tlpkg/tlpsrc/copyedit.tlpsrc + tlpkg/tlpsrc/copyrightbox.tlpsrc + tlpkg/tlpsrc/cormorantgaramond.tlpsrc + tlpkg/tlpsrc/correctmathalign.tlpsrc + tlpkg/tlpsrc/coseoul.tlpsrc + tlpkg/tlpsrc/countriesofeurope.tlpsrc + tlpkg/tlpsrc/counttexruns.tlpsrc + tlpkg/tlpsrc/courier-scaled.tlpsrc + tlpkg/tlpsrc/courier.tlpsrc + tlpkg/tlpsrc/courseoutline.tlpsrc + tlpkg/tlpsrc/coursepaper.tlpsrc + tlpkg/tlpsrc/coverpage.tlpsrc + tlpkg/tlpsrc/covington.tlpsrc + tlpkg/tlpsrc/cprotect.tlpsrc + tlpkg/tlpsrc/cqubeamer.tlpsrc + tlpkg/tlpsrc/cquthesis.tlpsrc + tlpkg/tlpsrc/crbox.tlpsrc + tlpkg/tlpsrc/crimson.tlpsrc + tlpkg/tlpsrc/crimsonpro.tlpsrc + tlpkg/tlpsrc/crop.tlpsrc + tlpkg/tlpsrc/crossreference.tlpsrc + tlpkg/tlpsrc/crossreftools.tlpsrc + tlpkg/tlpsrc/crossrefware.tlpsrc + tlpkg/tlpsrc/crossword.tlpsrc + tlpkg/tlpsrc/crosswrd.tlpsrc + tlpkg/tlpsrc/cryptocode.tlpsrc + tlpkg/tlpsrc/cryst.tlpsrc + tlpkg/tlpsrc/cs.tlpsrc + tlpkg/tlpsrc/csbulletin.tlpsrc + tlpkg/tlpsrc/cslatex.tlpsrc + tlpkg/tlpsrc/csplain.tlpsrc + tlpkg/tlpsrc/csquotes-de.tlpsrc + tlpkg/tlpsrc/csquotes.tlpsrc + tlpkg/tlpsrc/css-colors.tlpsrc + tlpkg/tlpsrc/cstex.tlpsrc + tlpkg/tlpsrc/cstypo.tlpsrc + tlpkg/tlpsrc/csvsimple.tlpsrc + tlpkg/tlpsrc/ctable.tlpsrc + tlpkg/tlpsrc/ctablestack.tlpsrc + tlpkg/tlpsrc/ctan-o-mat.tlpsrc + tlpkg/tlpsrc/ctan_chk.tlpsrc + tlpkg/tlpsrc/ctanbib.tlpsrc + tlpkg/tlpsrc/ctanify.tlpsrc + tlpkg/tlpsrc/ctanupload.tlpsrc + tlpkg/tlpsrc/ctex-faq.tlpsrc + tlpkg/tlpsrc/ctex.tlpsrc + tlpkg/tlpsrc/ctib.tlpsrc + tlpkg/tlpsrc/ctie.tlpsrc + tlpkg/tlpsrc/cuisine.tlpsrc + tlpkg/tlpsrc/cuprum.tlpsrc + tlpkg/tlpsrc/currency.tlpsrc + tlpkg/tlpsrc/currfile.tlpsrc + tlpkg/tlpsrc/currvita.tlpsrc + tlpkg/tlpsrc/cursolatex.tlpsrc + tlpkg/tlpsrc/curve.tlpsrc + tlpkg/tlpsrc/curve2e.tlpsrc + tlpkg/tlpsrc/curves.tlpsrc + tlpkg/tlpsrc/custom-bib.tlpsrc + tlpkg/tlpsrc/cutwin.tlpsrc + tlpkg/tlpsrc/cv.tlpsrc + tlpkg/tlpsrc/cv4tw.tlpsrc + tlpkg/tlpsrc/cweb-latex.tlpsrc + tlpkg/tlpsrc/cweb-old.tlpsrc + tlpkg/tlpsrc/cweb.tlpsrc + tlpkg/tlpsrc/cyber.tlpsrc + tlpkg/tlpsrc/cybercic.tlpsrc + tlpkg/tlpsrc/cyklop.tlpsrc + tlpkg/tlpsrc/cyrillic-bin.tlpsrc + tlpkg/tlpsrc/cyrillic.tlpsrc + tlpkg/tlpsrc/cyrplain.tlpsrc + tlpkg/tlpsrc/dad.tlpsrc + tlpkg/tlpsrc/dancers.tlpsrc + tlpkg/tlpsrc/dantelogo.tlpsrc + tlpkg/tlpsrc/dashbox.tlpsrc + tlpkg/tlpsrc/dashrule.tlpsrc + tlpkg/tlpsrc/dashundergaps.tlpsrc + tlpkg/tlpsrc/dataref.tlpsrc + tlpkg/tlpsrc/datatool.tlpsrc + tlpkg/tlpsrc/dateiliste.tlpsrc + tlpkg/tlpsrc/datenumber.tlpsrc + tlpkg/tlpsrc/datetime.tlpsrc + tlpkg/tlpsrc/datetime2-bahasai.tlpsrc + tlpkg/tlpsrc/datetime2-basque.tlpsrc + tlpkg/tlpsrc/datetime2-breton.tlpsrc + tlpkg/tlpsrc/datetime2-bulgarian.tlpsrc + tlpkg/tlpsrc/datetime2-catalan.tlpsrc + tlpkg/tlpsrc/datetime2-croatian.tlpsrc + tlpkg/tlpsrc/datetime2-czech.tlpsrc + tlpkg/tlpsrc/datetime2-danish.tlpsrc + tlpkg/tlpsrc/datetime2-dutch.tlpsrc + tlpkg/tlpsrc/datetime2-en-fulltext.tlpsrc + tlpkg/tlpsrc/datetime2-english.tlpsrc + tlpkg/tlpsrc/datetime2-esperanto.tlpsrc + tlpkg/tlpsrc/datetime2-estonian.tlpsrc + tlpkg/tlpsrc/datetime2-finnish.tlpsrc + tlpkg/tlpsrc/datetime2-french.tlpsrc + tlpkg/tlpsrc/datetime2-galician.tlpsrc + tlpkg/tlpsrc/datetime2-german.tlpsrc + tlpkg/tlpsrc/datetime2-greek.tlpsrc + tlpkg/tlpsrc/datetime2-hebrew.tlpsrc + tlpkg/tlpsrc/datetime2-icelandic.tlpsrc + tlpkg/tlpsrc/datetime2-irish.tlpsrc + tlpkg/tlpsrc/datetime2-it-fulltext.tlpsrc + tlpkg/tlpsrc/datetime2-italian.tlpsrc + tlpkg/tlpsrc/datetime2-latin.tlpsrc + tlpkg/tlpsrc/datetime2-lsorbian.tlpsrc + tlpkg/tlpsrc/datetime2-magyar.tlpsrc + tlpkg/tlpsrc/datetime2-norsk.tlpsrc + tlpkg/tlpsrc/datetime2-polish.tlpsrc + tlpkg/tlpsrc/datetime2-portuges.tlpsrc + tlpkg/tlpsrc/datetime2-romanian.tlpsrc + tlpkg/tlpsrc/datetime2-russian.tlpsrc + tlpkg/tlpsrc/datetime2-samin.tlpsrc + tlpkg/tlpsrc/datetime2-scottish.tlpsrc + tlpkg/tlpsrc/datetime2-serbian.tlpsrc + tlpkg/tlpsrc/datetime2-slovak.tlpsrc + tlpkg/tlpsrc/datetime2-slovene.tlpsrc + tlpkg/tlpsrc/datetime2-spanish.tlpsrc + tlpkg/tlpsrc/datetime2-swedish.tlpsrc + tlpkg/tlpsrc/datetime2-turkish.tlpsrc + tlpkg/tlpsrc/datetime2-ukrainian.tlpsrc + tlpkg/tlpsrc/datetime2-usorbian.tlpsrc + tlpkg/tlpsrc/datetime2-welsh.tlpsrc + tlpkg/tlpsrc/datetime2.tlpsrc + tlpkg/tlpsrc/dblfloatfix.tlpsrc + tlpkg/tlpsrc/dccpaper.tlpsrc + tlpkg/tlpsrc/dcpic.tlpsrc + tlpkg/tlpsrc/de-macro.tlpsrc + tlpkg/tlpsrc/decimal.tlpsrc + tlpkg/tlpsrc/decorule.tlpsrc + tlpkg/tlpsrc/dehyph-exptl.tlpsrc + tlpkg/tlpsrc/dehyph.tlpsrc + tlpkg/tlpsrc/dejavu-otf.tlpsrc + tlpkg/tlpsrc/dejavu.tlpsrc + tlpkg/tlpsrc/delim.tlpsrc + tlpkg/tlpsrc/delimseasy.tlpsrc + tlpkg/tlpsrc/delimset.tlpsrc + tlpkg/tlpsrc/delimtxt.tlpsrc + tlpkg/tlpsrc/denisbdoc.tlpsrc + tlpkg/tlpsrc/detex.tlpsrc + tlpkg/tlpsrc/dhua.tlpsrc + tlpkg/tlpsrc/diadia.tlpsrc + tlpkg/tlpsrc/diagbox.tlpsrc + tlpkg/tlpsrc/diagmac2.tlpsrc + tlpkg/tlpsrc/diagnose.tlpsrc + tlpkg/tlpsrc/dialogl.tlpsrc + tlpkg/tlpsrc/dice.tlpsrc + tlpkg/tlpsrc/dichokey.tlpsrc + tlpkg/tlpsrc/dickimaw.tlpsrc + tlpkg/tlpsrc/dictsym.tlpsrc + tlpkg/tlpsrc/diffcoeff.tlpsrc + tlpkg/tlpsrc/digiconfigs.tlpsrc + tlpkg/tlpsrc/dijkstra.tlpsrc + tlpkg/tlpsrc/din1505.tlpsrc + tlpkg/tlpsrc/dinat.tlpsrc + tlpkg/tlpsrc/dinbrief.tlpsrc + tlpkg/tlpsrc/dingbat.tlpsrc + tlpkg/tlpsrc/directory.tlpsrc + tlpkg/tlpsrc/dirtree.tlpsrc + tlpkg/tlpsrc/dirtytalk.tlpsrc + tlpkg/tlpsrc/disser.tlpsrc + tlpkg/tlpsrc/ditaa.tlpsrc + tlpkg/tlpsrc/dithesis.tlpsrc + tlpkg/tlpsrc/dk-bib.tlpsrc + tlpkg/tlpsrc/dlfltxb.tlpsrc + tlpkg/tlpsrc/dnaseq.tlpsrc + tlpkg/tlpsrc/dnp.tlpsrc + tlpkg/tlpsrc/doc-pictex.tlpsrc + tlpkg/tlpsrc/docbytex.tlpsrc + tlpkg/tlpsrc/doclicense.tlpsrc + tlpkg/tlpsrc/docmfp.tlpsrc + tlpkg/tlpsrc/docmute.tlpsrc + tlpkg/tlpsrc/docsurvey.tlpsrc + tlpkg/tlpsrc/doctools.tlpsrc + tlpkg/tlpsrc/documentation.tlpsrc + tlpkg/tlpsrc/doi.tlpsrc + tlpkg/tlpsrc/doipubmed.tlpsrc + tlpkg/tlpsrc/dosepsbin.tlpsrc + tlpkg/tlpsrc/dot2texi.tlpsrc + tlpkg/tlpsrc/dotarrow.tlpsrc + tlpkg/tlpsrc/dotseqn.tlpsrc + tlpkg/tlpsrc/dottex.tlpsrc + tlpkg/tlpsrc/doublestroke.tlpsrc + tlpkg/tlpsrc/dowith.tlpsrc + tlpkg/tlpsrc/download.tlpsrc + tlpkg/tlpsrc/dox.tlpsrc + tlpkg/tlpsrc/dozenal.tlpsrc + tlpkg/tlpsrc/dpfloat.tlpsrc + tlpkg/tlpsrc/dprogress.tlpsrc + tlpkg/tlpsrc/drac.tlpsrc + tlpkg/tlpsrc/draftcopy.tlpsrc + tlpkg/tlpsrc/draftfigure.tlpsrc + tlpkg/tlpsrc/draftwatermark.tlpsrc + tlpkg/tlpsrc/dramatist.tlpsrc + tlpkg/tlpsrc/dratex.tlpsrc + tlpkg/tlpsrc/drawmatrix.tlpsrc + tlpkg/tlpsrc/drawstack.tlpsrc + tlpkg/tlpsrc/drm.tlpsrc + tlpkg/tlpsrc/droid.tlpsrc + tlpkg/tlpsrc/droit-fr.tlpsrc + tlpkg/tlpsrc/drs.tlpsrc + tlpkg/tlpsrc/drv.tlpsrc + tlpkg/tlpsrc/dsptricks.tlpsrc + tlpkg/tlpsrc/dsserif.tlpsrc + tlpkg/tlpsrc/dtk.tlpsrc + tlpkg/tlpsrc/dtl.tlpsrc + tlpkg/tlpsrc/dtxdescribe.tlpsrc + tlpkg/tlpsrc/dtxgallery.tlpsrc + tlpkg/tlpsrc/dtxgen.tlpsrc + tlpkg/tlpsrc/dtxtut.tlpsrc + tlpkg/tlpsrc/ducksay.tlpsrc + tlpkg/tlpsrc/duckuments.tlpsrc + tlpkg/tlpsrc/duerer-latex.tlpsrc + tlpkg/tlpsrc/duerer.tlpsrc + tlpkg/tlpsrc/duotenzor.tlpsrc + tlpkg/tlpsrc/dutchcal.tlpsrc + tlpkg/tlpsrc/dvdcoll.tlpsrc + tlpkg/tlpsrc/dvgloss.tlpsrc + tlpkg/tlpsrc/dvi2tty.tlpsrc + tlpkg/tlpsrc/dviasm.tlpsrc + tlpkg/tlpsrc/dvicopy.tlpsrc + tlpkg/tlpsrc/dvidvi.tlpsrc + tlpkg/tlpsrc/dviincl.tlpsrc + tlpkg/tlpsrc/dviinfox.tlpsrc + tlpkg/tlpsrc/dviljk.tlpsrc + tlpkg/tlpsrc/dviout-util.tlpsrc + tlpkg/tlpsrc/dviout.win32.tlpsrc + tlpkg/tlpsrc/dvipdfmx.tlpsrc + tlpkg/tlpsrc/dvipng.tlpsrc + tlpkg/tlpsrc/dvipos.tlpsrc + tlpkg/tlpsrc/dvips.tlpsrc + tlpkg/tlpsrc/dvipsconfig.tlpsrc + tlpkg/tlpsrc/dvisvgm.tlpsrc + tlpkg/tlpsrc/dynamicnumber.tlpsrc + tlpkg/tlpsrc/dynblocks.tlpsrc + tlpkg/tlpsrc/dynkin-diagrams.tlpsrc + tlpkg/tlpsrc/dyntree.tlpsrc + tlpkg/tlpsrc/e-french.tlpsrc + tlpkg/tlpsrc/ean.tlpsrc + tlpkg/tlpsrc/ean13isbn.tlpsrc + tlpkg/tlpsrc/easy-todo.tlpsrc + tlpkg/tlpsrc/easy.tlpsrc + tlpkg/tlpsrc/easyfig.tlpsrc + tlpkg/tlpsrc/easyformat.tlpsrc + tlpkg/tlpsrc/easylist.tlpsrc + tlpkg/tlpsrc/easyreview.tlpsrc + tlpkg/tlpsrc/ebezier.tlpsrc + tlpkg/tlpsrc/ebgaramond-maths.tlpsrc + tlpkg/tlpsrc/ebgaramond.tlpsrc + tlpkg/tlpsrc/ebong.tlpsrc + tlpkg/tlpsrc/ebook.tlpsrc + tlpkg/tlpsrc/ebproof.tlpsrc + tlpkg/tlpsrc/ebsthesis.tlpsrc + tlpkg/tlpsrc/ec.tlpsrc + tlpkg/tlpsrc/ecc.tlpsrc + tlpkg/tlpsrc/ecclesiastic.tlpsrc + tlpkg/tlpsrc/ecgdraw.tlpsrc + tlpkg/tlpsrc/ecltree.tlpsrc + tlpkg/tlpsrc/eco.tlpsrc + tlpkg/tlpsrc/ecobiblatex.tlpsrc + tlpkg/tlpsrc/econ-bst.tlpsrc + tlpkg/tlpsrc/econometrics.tlpsrc + tlpkg/tlpsrc/economic.tlpsrc + tlpkg/tlpsrc/ecothesis.tlpsrc + tlpkg/tlpsrc/ecv.tlpsrc + tlpkg/tlpsrc/ed.tlpsrc + tlpkg/tlpsrc/edfnotes.tlpsrc + tlpkg/tlpsrc/edmac.tlpsrc + tlpkg/tlpsrc/edmargin.tlpsrc + tlpkg/tlpsrc/ednotes.tlpsrc + tlpkg/tlpsrc/eemeir.tlpsrc + tlpkg/tlpsrc/eepic.tlpsrc + tlpkg/tlpsrc/efbox.tlpsrc + tlpkg/tlpsrc/egameps.tlpsrc + tlpkg/tlpsrc/egplot.tlpsrc + tlpkg/tlpsrc/ehhline.tlpsrc + tlpkg/tlpsrc/eiad-ltx.tlpsrc + tlpkg/tlpsrc/eiad.tlpsrc + tlpkg/tlpsrc/eijkhout.tlpsrc + tlpkg/tlpsrc/einfuehrung.tlpsrc + tlpkg/tlpsrc/einfuehrung2.tlpsrc + tlpkg/tlpsrc/ejpecp.tlpsrc + tlpkg/tlpsrc/ekaia.tlpsrc + tlpkg/tlpsrc/elbioimp.tlpsrc + tlpkg/tlpsrc/electrum.tlpsrc + tlpkg/tlpsrc/eledform.tlpsrc + tlpkg/tlpsrc/eledmac.tlpsrc + tlpkg/tlpsrc/elegantbook.tlpsrc + tlpkg/tlpsrc/elegantnote.tlpsrc + tlpkg/tlpsrc/elegantpaper.tlpsrc + tlpkg/tlpsrc/elements.tlpsrc + tlpkg/tlpsrc/ellipse.tlpsrc + tlpkg/tlpsrc/ellipsis.tlpsrc + tlpkg/tlpsrc/elmath.tlpsrc + tlpkg/tlpsrc/elocalloc.tlpsrc + tlpkg/tlpsrc/elpres.tlpsrc + tlpkg/tlpsrc/els-cas-templates.tlpsrc + tlpkg/tlpsrc/elsarticle.tlpsrc + tlpkg/tlpsrc/elteikthesis.tlpsrc + tlpkg/tlpsrc/eltex.tlpsrc + tlpkg/tlpsrc/elvish.tlpsrc + tlpkg/tlpsrc/elzcards.tlpsrc + tlpkg/tlpsrc/emarks.tlpsrc + tlpkg/tlpsrc/embedall.tlpsrc + tlpkg/tlpsrc/embrac.tlpsrc + tlpkg/tlpsrc/emf.tlpsrc + tlpkg/tlpsrc/emisa.tlpsrc + tlpkg/tlpsrc/emp.tlpsrc + tlpkg/tlpsrc/emptypage.tlpsrc + tlpkg/tlpsrc/emulateapj.tlpsrc + tlpkg/tlpsrc/enctex.tlpsrc + tlpkg/tlpsrc/encxvlna.tlpsrc + tlpkg/tlpsrc/endfloat.tlpsrc + tlpkg/tlpsrc/endheads.tlpsrc + tlpkg/tlpsrc/endiagram.tlpsrc + tlpkg/tlpsrc/endnotes.tlpsrc + tlpkg/tlpsrc/endnotesj.tlpsrc + tlpkg/tlpsrc/endofproofwd.tlpsrc + tlpkg/tlpsrc/engpron.tlpsrc + tlpkg/tlpsrc/engrec.tlpsrc + tlpkg/tlpsrc/engtlc.tlpsrc + tlpkg/tlpsrc/enigma.tlpsrc + tlpkg/tlpsrc/enotez.tlpsrc + tlpkg/tlpsrc/enumitem-zref.tlpsrc + tlpkg/tlpsrc/enumitem.tlpsrc + tlpkg/tlpsrc/envbig.tlpsrc + tlpkg/tlpsrc/environ.tlpsrc + tlpkg/tlpsrc/envlab.tlpsrc + tlpkg/tlpsrc/epigrafica.tlpsrc + tlpkg/tlpsrc/epigram.tlpsrc + tlpkg/tlpsrc/epigraph.tlpsrc + tlpkg/tlpsrc/epiolmec.tlpsrc + tlpkg/tlpsrc/eplain.tlpsrc + tlpkg/tlpsrc/epsdice.tlpsrc + tlpkg/tlpsrc/epsf-dvipdfmx.tlpsrc + tlpkg/tlpsrc/epsf.tlpsrc + tlpkg/tlpsrc/epsincl.tlpsrc + tlpkg/tlpsrc/epslatex-fr.tlpsrc + tlpkg/tlpsrc/epspdf.tlpsrc + tlpkg/tlpsrc/epspdfconversion.tlpsrc + tlpkg/tlpsrc/epstopdf.tlpsrc + tlpkg/tlpsrc/eqell.tlpsrc + tlpkg/tlpsrc/eqexpl.tlpsrc + tlpkg/tlpsrc/eqlist.tlpsrc + tlpkg/tlpsrc/eqnalign.tlpsrc + tlpkg/tlpsrc/eqname.tlpsrc + tlpkg/tlpsrc/eqnarray.tlpsrc + tlpkg/tlpsrc/eqnnumwarn.tlpsrc + tlpkg/tlpsrc/eqparbox.tlpsrc + tlpkg/tlpsrc/erdc.tlpsrc + tlpkg/tlpsrc/erewhon.tlpsrc + tlpkg/tlpsrc/errata.tlpsrc + tlpkg/tlpsrc/erw-l3.tlpsrc + tlpkg/tlpsrc/es-tex-faq.tlpsrc + tlpkg/tlpsrc/esami.tlpsrc + tlpkg/tlpsrc/esdiff.tlpsrc + tlpkg/tlpsrc/esint-type1.tlpsrc + tlpkg/tlpsrc/esint.tlpsrc + tlpkg/tlpsrc/esk.tlpsrc + tlpkg/tlpsrc/eskd.tlpsrc + tlpkg/tlpsrc/eskdx.tlpsrc + tlpkg/tlpsrc/eso-pic.tlpsrc + tlpkg/tlpsrc/esrelation.tlpsrc + tlpkg/tlpsrc/esstix.tlpsrc + tlpkg/tlpsrc/estcpmm.tlpsrc + tlpkg/tlpsrc/esvect.tlpsrc + tlpkg/tlpsrc/etaremune.tlpsrc + tlpkg/tlpsrc/etdipa.tlpsrc + tlpkg/tlpsrc/etex-pkg.tlpsrc + tlpkg/tlpsrc/etex.tlpsrc + tlpkg/tlpsrc/etextools.tlpsrc + tlpkg/tlpsrc/ethiop-t1.tlpsrc + tlpkg/tlpsrc/ethiop.tlpsrc + tlpkg/tlpsrc/etoc.tlpsrc + tlpkg/tlpsrc/etoolbox-de.tlpsrc + tlpkg/tlpsrc/etoolbox.tlpsrc + tlpkg/tlpsrc/etsvthor.tlpsrc + tlpkg/tlpsrc/euenc.tlpsrc + tlpkg/tlpsrc/euflag.tlpsrc + tlpkg/tlpsrc/eukdate.tlpsrc + tlpkg/tlpsrc/euler.tlpsrc + tlpkg/tlpsrc/eulerpx.tlpsrc + tlpkg/tlpsrc/eulervm.tlpsrc + tlpkg/tlpsrc/euro-ce.tlpsrc + tlpkg/tlpsrc/euro.tlpsrc + tlpkg/tlpsrc/europasscv.tlpsrc + tlpkg/tlpsrc/europecv.tlpsrc + tlpkg/tlpsrc/eurosym.tlpsrc + tlpkg/tlpsrc/euxm.tlpsrc + tlpkg/tlpsrc/everyhook.tlpsrc + tlpkg/tlpsrc/everypage.tlpsrc + tlpkg/tlpsrc/exam-n.tlpsrc + tlpkg/tlpsrc/exam-randomizechoices.tlpsrc + tlpkg/tlpsrc/exam.tlpsrc + tlpkg/tlpsrc/examdesign.tlpsrc + tlpkg/tlpsrc/example.tlpsrc + tlpkg/tlpsrc/examplep.tlpsrc + tlpkg/tlpsrc/exceltex.tlpsrc + tlpkg/tlpsrc/excludeonly.tlpsrc + tlpkg/tlpsrc/exercise.tlpsrc + tlpkg/tlpsrc/exercisebank.tlpsrc + tlpkg/tlpsrc/exercisepoints.tlpsrc + tlpkg/tlpsrc/exercises.tlpsrc + tlpkg/tlpsrc/exframe.tlpsrc + tlpkg/tlpsrc/exp-testopt.tlpsrc + tlpkg/tlpsrc/expdlist.tlpsrc + tlpkg/tlpsrc/expex.tlpsrc + tlpkg/tlpsrc/export.tlpsrc + tlpkg/tlpsrc/expressg.tlpsrc + tlpkg/tlpsrc/exsheets.tlpsrc + tlpkg/tlpsrc/exsol.tlpsrc + tlpkg/tlpsrc/extarrows.tlpsrc + tlpkg/tlpsrc/exteps.tlpsrc + tlpkg/tlpsrc/extpfeil.tlpsrc + tlpkg/tlpsrc/extract.tlpsrc + tlpkg/tlpsrc/extsizes.tlpsrc + tlpkg/tlpsrc/facsimile.tlpsrc + tlpkg/tlpsrc/factura.tlpsrc + tlpkg/tlpsrc/facture-belge-simple-sans-tva.tlpsrc + tlpkg/tlpsrc/facture.tlpsrc + tlpkg/tlpsrc/faktor.tlpsrc + tlpkg/tlpsrc/fancybox.tlpsrc + tlpkg/tlpsrc/fancyhandout.tlpsrc + tlpkg/tlpsrc/fancyhdr-it.tlpsrc + tlpkg/tlpsrc/fancyhdr.tlpsrc + tlpkg/tlpsrc/fancylabel.tlpsrc + tlpkg/tlpsrc/fancynum.tlpsrc + tlpkg/tlpsrc/fancypar.tlpsrc + tlpkg/tlpsrc/fancyref.tlpsrc + tlpkg/tlpsrc/fancyslides.tlpsrc + tlpkg/tlpsrc/fancytabs.tlpsrc + tlpkg/tlpsrc/fancytooltips.tlpsrc + tlpkg/tlpsrc/fancyvrb.tlpsrc + tlpkg/tlpsrc/fandol.tlpsrc + tlpkg/tlpsrc/fascicules.tlpsrc + tlpkg/tlpsrc/fast-diagram.tlpsrc + tlpkg/tlpsrc/fbb.tlpsrc + tlpkg/tlpsrc/fbithesis.tlpsrc + tlpkg/tlpsrc/fbox.tlpsrc + tlpkg/tlpsrc/fbs.tlpsrc + tlpkg/tlpsrc/fc.tlpsrc + tlpkg/tlpsrc/fcavtex.tlpsrc + tlpkg/tlpsrc/fcltxdoc.tlpsrc + tlpkg/tlpsrc/fcolumn.tlpsrc + tlpkg/tlpsrc/fdsymbol.tlpsrc + tlpkg/tlpsrc/fduthesis.tlpsrc + tlpkg/tlpsrc/featpost.tlpsrc + tlpkg/tlpsrc/fei.tlpsrc + tlpkg/tlpsrc/fenixpar.tlpsrc + tlpkg/tlpsrc/fetamont.tlpsrc + tlpkg/tlpsrc/fetchcls.tlpsrc + tlpkg/tlpsrc/feupphdteses.tlpsrc + tlpkg/tlpsrc/feyn.tlpsrc + tlpkg/tlpsrc/feynmf.tlpsrc + tlpkg/tlpsrc/feynmp-auto.tlpsrc + tlpkg/tlpsrc/ffslides.tlpsrc + tlpkg/tlpsrc/fge.tlpsrc + tlpkg/tlpsrc/fgruler.tlpsrc + tlpkg/tlpsrc/fibeamer.tlpsrc + tlpkg/tlpsrc/fifinddo-info.tlpsrc + tlpkg/tlpsrc/fifo-stack.tlpsrc + tlpkg/tlpsrc/fig4latex.tlpsrc + tlpkg/tlpsrc/figbas.tlpsrc + tlpkg/tlpsrc/figbib.tlpsrc + tlpkg/tlpsrc/figflow.tlpsrc + tlpkg/tlpsrc/figsize.tlpsrc + tlpkg/tlpsrc/filecontents.tlpsrc + tlpkg/tlpsrc/filecontentsdef.tlpsrc + tlpkg/tlpsrc/filedate.tlpsrc + tlpkg/tlpsrc/filehook.tlpsrc + tlpkg/tlpsrc/fileinfo.tlpsrc + tlpkg/tlpsrc/filemod.tlpsrc + tlpkg/tlpsrc/finbib.tlpsrc + tlpkg/tlpsrc/findhyph.tlpsrc + tlpkg/tlpsrc/fink.tlpsrc + tlpkg/tlpsrc/finstrut.tlpsrc + tlpkg/tlpsrc/fira.tlpsrc + tlpkg/tlpsrc/firamath-otf.tlpsrc + tlpkg/tlpsrc/firamath.tlpsrc + tlpkg/tlpsrc/first-latex-doc.tlpsrc + tlpkg/tlpsrc/fitbox.tlpsrc + tlpkg/tlpsrc/fithesis.tlpsrc + tlpkg/tlpsrc/fix2col.tlpsrc + tlpkg/tlpsrc/fixcmex.tlpsrc + tlpkg/tlpsrc/fixfoot.tlpsrc + tlpkg/tlpsrc/fixjfm.tlpsrc + tlpkg/tlpsrc/fixlatvian.tlpsrc + tlpkg/tlpsrc/fixltxhyph.tlpsrc + tlpkg/tlpsrc/fixme.tlpsrc + tlpkg/tlpsrc/fixmetodonotes.tlpsrc + tlpkg/tlpsrc/fixpdfmag.tlpsrc + tlpkg/tlpsrc/fiziko.tlpsrc + tlpkg/tlpsrc/fjodor.tlpsrc + tlpkg/tlpsrc/flabels.tlpsrc + tlpkg/tlpsrc/flacards.tlpsrc + tlpkg/tlpsrc/flagderiv.tlpsrc + tlpkg/tlpsrc/flashcards.tlpsrc + tlpkg/tlpsrc/flashmovie.tlpsrc + tlpkg/tlpsrc/flipbook.tlpsrc + tlpkg/tlpsrc/flippdf.tlpsrc + tlpkg/tlpsrc/float.tlpsrc + tlpkg/tlpsrc/floatflt.tlpsrc + tlpkg/tlpsrc/floatrow.tlpsrc + tlpkg/tlpsrc/flowchart.tlpsrc + tlpkg/tlpsrc/flowfram.tlpsrc + tlpkg/tlpsrc/fltpoint.tlpsrc + tlpkg/tlpsrc/fmp.tlpsrc + tlpkg/tlpsrc/fmtcount.tlpsrc + tlpkg/tlpsrc/fn2end.tlpsrc + tlpkg/tlpsrc/fnbreak.tlpsrc + tlpkg/tlpsrc/fncychap.tlpsrc + tlpkg/tlpsrc/fncylab.tlpsrc + tlpkg/tlpsrc/fnpara.tlpsrc + tlpkg/tlpsrc/fnpct.tlpsrc + tlpkg/tlpsrc/fnspe.tlpsrc + tlpkg/tlpsrc/fntproof.tlpsrc + tlpkg/tlpsrc/fnumprint.tlpsrc + tlpkg/tlpsrc/foekfont.tlpsrc + tlpkg/tlpsrc/foilhtml.tlpsrc + tlpkg/tlpsrc/fonetika.tlpsrc + tlpkg/tlpsrc/font-change-xetex.tlpsrc + tlpkg/tlpsrc/font-change.tlpsrc + tlpkg/tlpsrc/fontawesome.tlpsrc + tlpkg/tlpsrc/fontawesome5.tlpsrc + tlpkg/tlpsrc/fontaxes.tlpsrc + tlpkg/tlpsrc/fontbook.tlpsrc + tlpkg/tlpsrc/fontch.tlpsrc + tlpkg/tlpsrc/fontinst.tlpsrc + tlpkg/tlpsrc/fontmfizz.tlpsrc + tlpkg/tlpsrc/fontname.tlpsrc + tlpkg/tlpsrc/fontools.tlpsrc + tlpkg/tlpsrc/fonts-churchslavonic.tlpsrc + tlpkg/tlpsrc/fonts-tlwg.tlpsrc + tlpkg/tlpsrc/fontspec.tlpsrc + tlpkg/tlpsrc/fonttable.tlpsrc + tlpkg/tlpsrc/fontware.tlpsrc + tlpkg/tlpsrc/fontwrap.tlpsrc + tlpkg/tlpsrc/footbib.tlpsrc + tlpkg/tlpsrc/footmisc.tlpsrc + tlpkg/tlpsrc/footmisx.tlpsrc + tlpkg/tlpsrc/footnotebackref.tlpsrc + tlpkg/tlpsrc/footnotehyper.tlpsrc + tlpkg/tlpsrc/footnoterange.tlpsrc + tlpkg/tlpsrc/footnpag.tlpsrc + tlpkg/tlpsrc/forarray.tlpsrc + tlpkg/tlpsrc/foreign.tlpsrc + tlpkg/tlpsrc/forest-quickstart.tlpsrc + tlpkg/tlpsrc/forest.tlpsrc + tlpkg/tlpsrc/forloop.tlpsrc + tlpkg/tlpsrc/formation-latex-ul.tlpsrc + tlpkg/tlpsrc/formlett.tlpsrc + tlpkg/tlpsrc/forms16be.tlpsrc + tlpkg/tlpsrc/formular.tlpsrc + tlpkg/tlpsrc/fouridx.tlpsrc + tlpkg/tlpsrc/fourier.tlpsrc + tlpkg/tlpsrc/fouriernc.tlpsrc + tlpkg/tlpsrc/fp.tlpsrc + tlpkg/tlpsrc/fpl.tlpsrc + tlpkg/tlpsrc/fragmaster.tlpsrc + tlpkg/tlpsrc/fragments.tlpsrc + tlpkg/tlpsrc/frame.tlpsrc + tlpkg/tlpsrc/framed.tlpsrc + tlpkg/tlpsrc/francais-bst.tlpsrc + tlpkg/tlpsrc/frankenstein.tlpsrc + tlpkg/tlpsrc/frcursive.tlpsrc + tlpkg/tlpsrc/frederika2016.tlpsrc + tlpkg/tlpsrc/frege.tlpsrc + tlpkg/tlpsrc/frenchmath.tlpsrc + tlpkg/tlpsrc/frletter.tlpsrc + tlpkg/tlpsrc/frontespizio.tlpsrc + tlpkg/tlpsrc/ftc-notebook.tlpsrc + tlpkg/tlpsrc/ftcap.tlpsrc + tlpkg/tlpsrc/ftnxtra.tlpsrc + tlpkg/tlpsrc/fullblck.tlpsrc + tlpkg/tlpsrc/fullminipage.tlpsrc + tlpkg/tlpsrc/fullwidth.tlpsrc + tlpkg/tlpsrc/functan.tlpsrc + tlpkg/tlpsrc/fundus-calligra.tlpsrc + tlpkg/tlpsrc/fundus-cyr.tlpsrc + tlpkg/tlpsrc/fundus-sueterlin.tlpsrc + tlpkg/tlpsrc/fvextra.tlpsrc + tlpkg/tlpsrc/fwlw.tlpsrc + tlpkg/tlpsrc/g-brief.tlpsrc + tlpkg/tlpsrc/gaceta.tlpsrc + tlpkg/tlpsrc/galois.tlpsrc + tlpkg/tlpsrc/gamebook.tlpsrc + tlpkg/tlpsrc/gammas.tlpsrc + tlpkg/tlpsrc/garamond-math.tlpsrc + tlpkg/tlpsrc/garrigues.tlpsrc + tlpkg/tlpsrc/garuda-c90.tlpsrc + tlpkg/tlpsrc/gastex.tlpsrc + tlpkg/tlpsrc/gatech-thesis.tlpsrc + tlpkg/tlpsrc/gates.tlpsrc + tlpkg/tlpsrc/gatherenum.tlpsrc + tlpkg/tlpsrc/gauss.tlpsrc + tlpkg/tlpsrc/gb4e.tlpsrc + tlpkg/tlpsrc/gbt7714.tlpsrc + tlpkg/tlpsrc/gcard.tlpsrc + tlpkg/tlpsrc/gchords.tlpsrc + tlpkg/tlpsrc/gcite.tlpsrc + tlpkg/tlpsrc/gender.tlpsrc + tlpkg/tlpsrc/gene-logic.tlpsrc + tlpkg/tlpsrc/genealogy.tlpsrc + tlpkg/tlpsrc/genealogytree.tlpsrc + tlpkg/tlpsrc/genmisc.tlpsrc + tlpkg/tlpsrc/genmpage.tlpsrc + tlpkg/tlpsrc/gentium-tug.tlpsrc + tlpkg/tlpsrc/gentle.tlpsrc + tlpkg/tlpsrc/gentombow.tlpsrc + tlpkg/tlpsrc/geometry-de.tlpsrc + tlpkg/tlpsrc/geometry.tlpsrc + tlpkg/tlpsrc/german.tlpsrc + tlpkg/tlpsrc/germbib.tlpsrc + tlpkg/tlpsrc/germkorr.tlpsrc + tlpkg/tlpsrc/geschichtsfrkl.tlpsrc + tlpkg/tlpsrc/getfiledate.tlpsrc + tlpkg/tlpsrc/getitems.tlpsrc + tlpkg/tlpsrc/getmap.tlpsrc + tlpkg/tlpsrc/getoptk.tlpsrc + tlpkg/tlpsrc/gfnotation.tlpsrc + tlpkg/tlpsrc/gfsartemisia.tlpsrc + tlpkg/tlpsrc/gfsbaskerville.tlpsrc + tlpkg/tlpsrc/gfsbodoni.tlpsrc + tlpkg/tlpsrc/gfscomplutum.tlpsrc + tlpkg/tlpsrc/gfsdidot.tlpsrc + tlpkg/tlpsrc/gfsneohellenic.tlpsrc + tlpkg/tlpsrc/gfsneohellenicmath.tlpsrc + tlpkg/tlpsrc/gfsporson.tlpsrc + tlpkg/tlpsrc/gfssolomos.tlpsrc + tlpkg/tlpsrc/ghab.tlpsrc + tlpkg/tlpsrc/ghsystem.tlpsrc + tlpkg/tlpsrc/gillcm.tlpsrc + tlpkg/tlpsrc/gillius.tlpsrc + tlpkg/tlpsrc/gincltex.tlpsrc + tlpkg/tlpsrc/ginpenc.tlpsrc + tlpkg/tlpsrc/gitfile-info.tlpsrc + tlpkg/tlpsrc/gitinfo.tlpsrc + tlpkg/tlpsrc/gitinfo2.tlpsrc + tlpkg/tlpsrc/gitlog.tlpsrc + tlpkg/tlpsrc/gitver.tlpsrc + tlpkg/tlpsrc/globalvals.tlpsrc + tlpkg/tlpsrc/gloss-occitan.tlpsrc + tlpkg/tlpsrc/gloss.tlpsrc + tlpkg/tlpsrc/glossaries-danish.tlpsrc + tlpkg/tlpsrc/glossaries-dutch.tlpsrc + tlpkg/tlpsrc/glossaries-english.tlpsrc + tlpkg/tlpsrc/glossaries-estonian.tlpsrc + tlpkg/tlpsrc/glossaries-extra.tlpsrc + tlpkg/tlpsrc/glossaries-finnish.tlpsrc + tlpkg/tlpsrc/glossaries-french.tlpsrc + tlpkg/tlpsrc/glossaries-german.tlpsrc + tlpkg/tlpsrc/glossaries-irish.tlpsrc + tlpkg/tlpsrc/glossaries-italian.tlpsrc + tlpkg/tlpsrc/glossaries-magyar.tlpsrc + tlpkg/tlpsrc/glossaries-polish.tlpsrc + tlpkg/tlpsrc/glossaries-portuges.tlpsrc + tlpkg/tlpsrc/glossaries-serbian.tlpsrc + tlpkg/tlpsrc/glossaries-spanish.tlpsrc + tlpkg/tlpsrc/glossaries.tlpsrc + tlpkg/tlpsrc/glyphlist.tlpsrc + tlpkg/tlpsrc/gmdoc-enhance.tlpsrc + tlpkg/tlpsrc/gmdoc.tlpsrc + tlpkg/tlpsrc/gmiflink.tlpsrc + tlpkg/tlpsrc/gmp.tlpsrc + tlpkg/tlpsrc/gmutils.tlpsrc + tlpkg/tlpsrc/gmverb.tlpsrc + tlpkg/tlpsrc/gmverse.tlpsrc + tlpkg/tlpsrc/gnu-freefont.tlpsrc + tlpkg/tlpsrc/gnuplottex.tlpsrc + tlpkg/tlpsrc/go.tlpsrc + tlpkg/tlpsrc/gobble.tlpsrc + tlpkg/tlpsrc/gofonts.tlpsrc + tlpkg/tlpsrc/gost.tlpsrc + tlpkg/tlpsrc/gothic.tlpsrc + tlpkg/tlpsrc/gotoh.tlpsrc + tlpkg/tlpsrc/grabbox.tlpsrc + tlpkg/tlpsrc/gradientframe.tlpsrc + tlpkg/tlpsrc/gradstudentresume.tlpsrc + tlpkg/tlpsrc/grafcet.tlpsrc + tlpkg/tlpsrc/grant.tlpsrc + tlpkg/tlpsrc/graph35.tlpsrc + tlpkg/tlpsrc/graphbox.tlpsrc + tlpkg/tlpsrc/graphics-cfg.tlpsrc + tlpkg/tlpsrc/graphics-def.tlpsrc + tlpkg/tlpsrc/graphics-pln.tlpsrc + tlpkg/tlpsrc/graphics.tlpsrc + tlpkg/tlpsrc/graphicx-psmin.tlpsrc + tlpkg/tlpsrc/graphicxbox.tlpsrc + tlpkg/tlpsrc/graphicxpsd.tlpsrc + tlpkg/tlpsrc/graphviz.tlpsrc + tlpkg/tlpsrc/grayhints.tlpsrc + tlpkg/tlpsrc/greek-fontenc.tlpsrc + tlpkg/tlpsrc/greek-inputenc.tlpsrc + tlpkg/tlpsrc/greekdates.tlpsrc + tlpkg/tlpsrc/greektex.tlpsrc + tlpkg/tlpsrc/greektonoi.tlpsrc + tlpkg/tlpsrc/greenpoint.tlpsrc + tlpkg/tlpsrc/gregoriotex.tlpsrc + tlpkg/tlpsrc/grfpaste.tlpsrc + tlpkg/tlpsrc/grid-system.tlpsrc + tlpkg/tlpsrc/grid.tlpsrc + tlpkg/tlpsrc/gridset.tlpsrc + tlpkg/tlpsrc/gridslides.tlpsrc + tlpkg/tlpsrc/grotesq.tlpsrc + tlpkg/tlpsrc/grundgesetze.tlpsrc + tlpkg/tlpsrc/gsemthesis.tlpsrc + tlpkg/tlpsrc/gsftopk.tlpsrc + tlpkg/tlpsrc/gtl.tlpsrc + tlpkg/tlpsrc/gtrcrd.tlpsrc + tlpkg/tlpsrc/gtrlib-largetrees.tlpsrc + tlpkg/tlpsrc/gu.tlpsrc + tlpkg/tlpsrc/guide-latex-fr.tlpsrc + tlpkg/tlpsrc/guide-to-latex.tlpsrc + tlpkg/tlpsrc/guitar.tlpsrc + tlpkg/tlpsrc/guitarchordschemes.tlpsrc + tlpkg/tlpsrc/guitartabs.tlpsrc + tlpkg/tlpsrc/guitlogo.tlpsrc + tlpkg/tlpsrc/gustlib.tlpsrc + tlpkg/tlpsrc/gustprog.tlpsrc + tlpkg/tlpsrc/gzt.tlpsrc + tlpkg/tlpsrc/h2020proposal.tlpsrc + tlpkg/tlpsrc/hackthefootline.tlpsrc + tlpkg/tlpsrc/hacm.tlpsrc + tlpkg/tlpsrc/hagenberg-thesis.tlpsrc + tlpkg/tlpsrc/halloweenmath.tlpsrc + tlpkg/tlpsrc/handin.tlpsrc + tlpkg/tlpsrc/handout.tlpsrc + tlpkg/tlpsrc/hands.tlpsrc + tlpkg/tlpsrc/hang.tlpsrc + tlpkg/tlpsrc/hanging.tlpsrc + tlpkg/tlpsrc/hanoi.tlpsrc + tlpkg/tlpsrc/happy4th.tlpsrc + tlpkg/tlpsrc/har2nat.tlpsrc + tlpkg/tlpsrc/hardwrap.tlpsrc + tlpkg/tlpsrc/harmony.tlpsrc + tlpkg/tlpsrc/harnon-cv.tlpsrc + tlpkg/tlpsrc/harpoon.tlpsrc + tlpkg/tlpsrc/harvard.tlpsrc + tlpkg/tlpsrc/harveyballs.tlpsrc + tlpkg/tlpsrc/harvmac.tlpsrc + tlpkg/tlpsrc/hatching.tlpsrc + tlpkg/tlpsrc/hausarbeit-jura.tlpsrc + tlpkg/tlpsrc/havannah.tlpsrc + tlpkg/tlpsrc/hc.tlpsrc + tlpkg/tlpsrc/he-she.tlpsrc + tlpkg/tlpsrc/hecthese.tlpsrc + tlpkg/tlpsrc/helvetic.tlpsrc + tlpkg/tlpsrc/hep.tlpsrc + tlpkg/tlpsrc/hepnames.tlpsrc + tlpkg/tlpsrc/hepparticles.tlpsrc + tlpkg/tlpsrc/hepthesis.tlpsrc + tlpkg/tlpsrc/hepunits.tlpsrc + tlpkg/tlpsrc/here.tlpsrc + tlpkg/tlpsrc/heuristica.tlpsrc + tlpkg/tlpsrc/hexgame.tlpsrc + tlpkg/tlpsrc/hf-tikz.tlpsrc + tlpkg/tlpsrc/hfbright.tlpsrc + tlpkg/tlpsrc/hfoldsty.tlpsrc + tlpkg/tlpsrc/hhtensor.tlpsrc + tlpkg/tlpsrc/histogr.tlpsrc + tlpkg/tlpsrc/historische-zeitschrift.tlpsrc + tlpkg/tlpsrc/hitec.tlpsrc + tlpkg/tlpsrc/hithesis.tlpsrc + tlpkg/tlpsrc/hletter.tlpsrc + tlpkg/tlpsrc/hlist.tlpsrc + tlpkg/tlpsrc/hmtrump.tlpsrc + tlpkg/tlpsrc/hobby.tlpsrc + tlpkg/tlpsrc/hobete.tlpsrc + tlpkg/tlpsrc/hook-pre-commit-pkg.tlpsrc + tlpkg/tlpsrc/horoscop.tlpsrc + tlpkg/tlpsrc/hpsdiss.tlpsrc + tlpkg/tlpsrc/hrefhide.tlpsrc + tlpkg/tlpsrc/hrlatex.tlpsrc + tlpkg/tlpsrc/hulipsum.tlpsrc + tlpkg/tlpsrc/hustthesis.tlpsrc + tlpkg/tlpsrc/hvfloat.tlpsrc + tlpkg/tlpsrc/hvindex.tlpsrc + tlpkg/tlpsrc/hypdvips.tlpsrc + tlpkg/tlpsrc/hyper.tlpsrc + tlpkg/tlpsrc/hyperbar.tlpsrc + tlpkg/tlpsrc/hypernat.tlpsrc + tlpkg/tlpsrc/hyperref.tlpsrc + tlpkg/tlpsrc/hyperxmp.tlpsrc + tlpkg/tlpsrc/hyph-utf8.tlpsrc + tlpkg/tlpsrc/hyphen-afrikaans.tlpsrc + tlpkg/tlpsrc/hyphen-ancientgreek.tlpsrc + tlpkg/tlpsrc/hyphen-arabic.tlpsrc + tlpkg/tlpsrc/hyphen-armenian.tlpsrc + tlpkg/tlpsrc/hyphen-base.tlpsrc + tlpkg/tlpsrc/hyphen-basque.tlpsrc + tlpkg/tlpsrc/hyphen-belarusian.tlpsrc + tlpkg/tlpsrc/hyphen-bulgarian.tlpsrc + tlpkg/tlpsrc/hyphen-catalan.tlpsrc + tlpkg/tlpsrc/hyphen-chinese.tlpsrc + tlpkg/tlpsrc/hyphen-churchslavonic.tlpsrc + tlpkg/tlpsrc/hyphen-coptic.tlpsrc + tlpkg/tlpsrc/hyphen-croatian.tlpsrc + tlpkg/tlpsrc/hyphen-czech.tlpsrc + tlpkg/tlpsrc/hyphen-danish.tlpsrc + tlpkg/tlpsrc/hyphen-dutch.tlpsrc + tlpkg/tlpsrc/hyphen-english.tlpsrc + tlpkg/tlpsrc/hyphen-esperanto.tlpsrc + tlpkg/tlpsrc/hyphen-estonian.tlpsrc + tlpkg/tlpsrc/hyphen-ethiopic.tlpsrc + tlpkg/tlpsrc/hyphen-farsi.tlpsrc + tlpkg/tlpsrc/hyphen-finnish.tlpsrc + tlpkg/tlpsrc/hyphen-french.tlpsrc + tlpkg/tlpsrc/hyphen-friulan.tlpsrc + tlpkg/tlpsrc/hyphen-galician.tlpsrc + tlpkg/tlpsrc/hyphen-georgian.tlpsrc + tlpkg/tlpsrc/hyphen-german.tlpsrc + tlpkg/tlpsrc/hyphen-greek.tlpsrc + tlpkg/tlpsrc/hyphen-hungarian.tlpsrc + tlpkg/tlpsrc/hyphen-icelandic.tlpsrc + tlpkg/tlpsrc/hyphen-indic.tlpsrc + tlpkg/tlpsrc/hyphen-indonesian.tlpsrc + tlpkg/tlpsrc/hyphen-interlingua.tlpsrc + tlpkg/tlpsrc/hyphen-irish.tlpsrc + tlpkg/tlpsrc/hyphen-italian.tlpsrc + tlpkg/tlpsrc/hyphen-kurmanji.tlpsrc + tlpkg/tlpsrc/hyphen-latin.tlpsrc + tlpkg/tlpsrc/hyphen-latvian.tlpsrc + tlpkg/tlpsrc/hyphen-lithuanian.tlpsrc + tlpkg/tlpsrc/hyphen-mongolian.tlpsrc + tlpkg/tlpsrc/hyphen-norwegian.tlpsrc + tlpkg/tlpsrc/hyphen-occitan.tlpsrc + tlpkg/tlpsrc/hyphen-piedmontese.tlpsrc + tlpkg/tlpsrc/hyphen-polish.tlpsrc + tlpkg/tlpsrc/hyphen-portuguese.tlpsrc + tlpkg/tlpsrc/hyphen-romanian.tlpsrc + tlpkg/tlpsrc/hyphen-romansh.tlpsrc + tlpkg/tlpsrc/hyphen-russian.tlpsrc + tlpkg/tlpsrc/hyphen-sanskrit.tlpsrc + tlpkg/tlpsrc/hyphen-serbian.tlpsrc + tlpkg/tlpsrc/hyphen-slovak.tlpsrc + tlpkg/tlpsrc/hyphen-slovenian.tlpsrc + tlpkg/tlpsrc/hyphen-spanish.tlpsrc + tlpkg/tlpsrc/hyphen-swedish.tlpsrc + tlpkg/tlpsrc/hyphen-thai.tlpsrc + tlpkg/tlpsrc/hyphen-turkish.tlpsrc + tlpkg/tlpsrc/hyphen-turkmen.tlpsrc + tlpkg/tlpsrc/hyphen-ukrainian.tlpsrc + tlpkg/tlpsrc/hyphen-uppersorbian.tlpsrc + tlpkg/tlpsrc/hyphen-welsh.tlpsrc + tlpkg/tlpsrc/hyphenat.tlpsrc + tlpkg/tlpsrc/hyphenex.tlpsrc + tlpkg/tlpsrc/hyplain.tlpsrc + tlpkg/tlpsrc/ibycus-babel.tlpsrc + tlpkg/tlpsrc/ibygrk.tlpsrc + tlpkg/tlpsrc/icite.tlpsrc + tlpkg/tlpsrc/icsv.tlpsrc + tlpkg/tlpsrc/identkey.tlpsrc + tlpkg/tlpsrc/idxcmds.tlpsrc + tlpkg/tlpsrc/idxlayout.tlpsrc + tlpkg/tlpsrc/ieeepes.tlpsrc + tlpkg/tlpsrc/ietfbibs.tlpsrc + tlpkg/tlpsrc/ifetex.tlpsrc + tlpkg/tlpsrc/iffont.tlpsrc + tlpkg/tlpsrc/ifluatex.tlpsrc + tlpkg/tlpsrc/ifmslide.tlpsrc + tlpkg/tlpsrc/ifmtarg.tlpsrc + tlpkg/tlpsrc/ifnextok.tlpsrc + tlpkg/tlpsrc/ifoddpage.tlpsrc + tlpkg/tlpsrc/ifplatform.tlpsrc + tlpkg/tlpsrc/ifptex.tlpsrc + tlpkg/tlpsrc/ifsym.tlpsrc + tlpkg/tlpsrc/iftex.tlpsrc + tlpkg/tlpsrc/ifthenx.tlpsrc + tlpkg/tlpsrc/ifxetex.tlpsrc + tlpkg/tlpsrc/ifxptex.tlpsrc + tlpkg/tlpsrc/iitem.tlpsrc + tlpkg/tlpsrc/ijmart.tlpsrc + tlpkg/tlpsrc/ijqc.tlpsrc + tlpkg/tlpsrc/ijsra.tlpsrc + tlpkg/tlpsrc/imac.tlpsrc + tlpkg/tlpsrc/image-gallery.tlpsrc + tlpkg/tlpsrc/imakeidx.tlpsrc + tlpkg/tlpsrc/imfellenglish.tlpsrc + tlpkg/tlpsrc/impatient-cn.tlpsrc + tlpkg/tlpsrc/impatient-fr.tlpsrc + tlpkg/tlpsrc/impatient.tlpsrc + tlpkg/tlpsrc/impnattypo.tlpsrc + tlpkg/tlpsrc/import.tlpsrc + tlpkg/tlpsrc/imsproc.tlpsrc + tlpkg/tlpsrc/imtekda.tlpsrc + tlpkg/tlpsrc/incgraph.tlpsrc + tlpkg/tlpsrc/includernw.tlpsrc + tlpkg/tlpsrc/inconsolata.tlpsrc + tlpkg/tlpsrc/index.tlpsrc + tlpkg/tlpsrc/indextools.tlpsrc + tlpkg/tlpsrc/initials.tlpsrc + tlpkg/tlpsrc/inline-images.tlpsrc + tlpkg/tlpsrc/inlinebib.tlpsrc + tlpkg/tlpsrc/inlinedef.tlpsrc + tlpkg/tlpsrc/inputtrc.tlpsrc + tlpkg/tlpsrc/inriafonts.tlpsrc + tlpkg/tlpsrc/insbox.tlpsrc + tlpkg/tlpsrc/installfont.tlpsrc + tlpkg/tlpsrc/interactiveworkbook.tlpsrc + tlpkg/tlpsrc/interchar.tlpsrc + tlpkg/tlpsrc/interfaces.tlpsrc + tlpkg/tlpsrc/interpreter.tlpsrc + tlpkg/tlpsrc/interval.tlpsrc + tlpkg/tlpsrc/intopdf.tlpsrc + tlpkg/tlpsrc/intro-scientific.tlpsrc + tlpkg/tlpsrc/inversepath.tlpsrc + tlpkg/tlpsrc/invoice-class.tlpsrc + tlpkg/tlpsrc/invoice.tlpsrc + tlpkg/tlpsrc/invoice2.tlpsrc + tlpkg/tlpsrc/iodhbwm.tlpsrc + tlpkg/tlpsrc/ionumbers.tlpsrc + tlpkg/tlpsrc/iopart-num.tlpsrc + tlpkg/tlpsrc/ipaex-type1.tlpsrc + tlpkg/tlpsrc/ipaex.tlpsrc + tlpkg/tlpsrc/iscram.tlpsrc + tlpkg/tlpsrc/iso.tlpsrc + tlpkg/tlpsrc/iso10303.tlpsrc + tlpkg/tlpsrc/isodate.tlpsrc + tlpkg/tlpsrc/isodoc.tlpsrc + tlpkg/tlpsrc/isomath.tlpsrc + tlpkg/tlpsrc/isonums.tlpsrc + tlpkg/tlpsrc/isopt.tlpsrc + tlpkg/tlpsrc/isorot.tlpsrc + tlpkg/tlpsrc/isotope.tlpsrc + tlpkg/tlpsrc/issuulinks.tlpsrc + tlpkg/tlpsrc/istgame.tlpsrc + tlpkg/tlpsrc/itnumpar.tlpsrc + tlpkg/tlpsrc/iwhdp.tlpsrc + tlpkg/tlpsrc/iwona.tlpsrc + tlpkg/tlpsrc/jablantile.tlpsrc + tlpkg/tlpsrc/jacow.tlpsrc + tlpkg/tlpsrc/jadetex.tlpsrc + tlpkg/tlpsrc/jamtimes.tlpsrc + tlpkg/tlpsrc/japanese-otf-uptex.tlpsrc + tlpkg/tlpsrc/japanese-otf.tlpsrc + tlpkg/tlpsrc/jfmutil.tlpsrc + tlpkg/tlpsrc/jigsaw.tlpsrc + tlpkg/tlpsrc/jkmath.tlpsrc + tlpkg/tlpsrc/jknapltx.tlpsrc + tlpkg/tlpsrc/jlabels.tlpsrc + tlpkg/tlpsrc/jlreq.tlpsrc + tlpkg/tlpsrc/jmlr.tlpsrc + tlpkg/tlpsrc/jmn.tlpsrc + tlpkg/tlpsrc/jneurosci.tlpsrc + tlpkg/tlpsrc/jnuexam.tlpsrc + tlpkg/tlpsrc/jpsj.tlpsrc + tlpkg/tlpsrc/js-misc.tlpsrc + tlpkg/tlpsrc/jsclasses.tlpsrc + tlpkg/tlpsrc/jslectureplanner.tlpsrc + tlpkg/tlpsrc/jumplines.tlpsrc + tlpkg/tlpsrc/junicode.tlpsrc + tlpkg/tlpsrc/jura.tlpsrc + tlpkg/tlpsrc/juraabbrev.tlpsrc + tlpkg/tlpsrc/jurabib.tlpsrc + tlpkg/tlpsrc/juramisc.tlpsrc + tlpkg/tlpsrc/jurarsp.tlpsrc + tlpkg/tlpsrc/jvlisting.tlpsrc + tlpkg/tlpsrc/kalendarium.tlpsrc + tlpkg/tlpsrc/kanaparser.tlpsrc + tlpkg/tlpsrc/kantlipsum.tlpsrc + tlpkg/tlpsrc/karnaugh-map.tlpsrc + tlpkg/tlpsrc/karnaugh.tlpsrc + tlpkg/tlpsrc/karnaughmap.tlpsrc + tlpkg/tlpsrc/kastrup.tlpsrc + tlpkg/tlpsrc/kdgdocs.tlpsrc + tlpkg/tlpsrc/kerkis.tlpsrc + tlpkg/tlpsrc/kerntest.tlpsrc + tlpkg/tlpsrc/ketcindy.tlpsrc + tlpkg/tlpsrc/keycommand.tlpsrc + tlpkg/tlpsrc/keyfloat.tlpsrc + tlpkg/tlpsrc/keyindex.tlpsrc + tlpkg/tlpsrc/keyreader.tlpsrc + tlpkg/tlpsrc/keystroke.tlpsrc + tlpkg/tlpsrc/keyval2e.tlpsrc + tlpkg/tlpsrc/keyvaltable.tlpsrc + tlpkg/tlpsrc/kix.tlpsrc + tlpkg/tlpsrc/kixfont.tlpsrc + tlpkg/tlpsrc/kluwer.tlpsrc + tlpkg/tlpsrc/knitting.tlpsrc + tlpkg/tlpsrc/knittingpattern.tlpsrc + tlpkg/tlpsrc/knowledge.tlpsrc + tlpkg/tlpsrc/knuth-lib.tlpsrc + tlpkg/tlpsrc/knuth-local.tlpsrc + tlpkg/tlpsrc/knuth.tlpsrc + tlpkg/tlpsrc/koma-moderncvclassic.tlpsrc + tlpkg/tlpsrc/koma-script-examples.tlpsrc + tlpkg/tlpsrc/koma-script-sfs.tlpsrc + tlpkg/tlpsrc/koma-script.tlpsrc + tlpkg/tlpsrc/komacv-rg.tlpsrc + tlpkg/tlpsrc/komacv.tlpsrc + tlpkg/tlpsrc/kotex-oblivoir.tlpsrc + tlpkg/tlpsrc/kotex-plain.tlpsrc + tlpkg/tlpsrc/kotex-utf.tlpsrc + tlpkg/tlpsrc/kotex-utils.tlpsrc + tlpkg/tlpsrc/kpathsea.tlpsrc + tlpkg/tlpsrc/kpfonts.tlpsrc + tlpkg/tlpsrc/ksfh_nat.tlpsrc + tlpkg/tlpsrc/ksp-thesis.tlpsrc + tlpkg/tlpsrc/ktv-texdata.tlpsrc + tlpkg/tlpsrc/ku-template.tlpsrc + tlpkg/tlpsrc/kurdishlipsum.tlpsrc + tlpkg/tlpsrc/kurier.tlpsrc + tlpkg/tlpsrc/kvmap.tlpsrc + tlpkg/tlpsrc/l2picfaq.tlpsrc + tlpkg/tlpsrc/l2tabu-english.tlpsrc + tlpkg/tlpsrc/l2tabu-french.tlpsrc + tlpkg/tlpsrc/l2tabu-italian.tlpsrc + tlpkg/tlpsrc/l2tabu-spanish.tlpsrc + tlpkg/tlpsrc/l2tabu.tlpsrc + tlpkg/tlpsrc/l3build.tlpsrc + tlpkg/tlpsrc/l3experimental.tlpsrc + tlpkg/tlpsrc/l3kernel.tlpsrc + tlpkg/tlpsrc/l3packages.tlpsrc + tlpkg/tlpsrc/labbook.tlpsrc + tlpkg/tlpsrc/labels.tlpsrc + tlpkg/tlpsrc/labels4easylist.tlpsrc + tlpkg/tlpsrc/labelschanged.tlpsrc + tlpkg/tlpsrc/labyrinth.tlpsrc + tlpkg/tlpsrc/lacheck.tlpsrc + tlpkg/tlpsrc/ladder.tlpsrc + tlpkg/tlpsrc/lambda-lists.tlpsrc + tlpkg/tlpsrc/lambda.tlpsrc + tlpkg/tlpsrc/langcode.tlpsrc + tlpkg/tlpsrc/langsci.tlpsrc + tlpkg/tlpsrc/lapdf.tlpsrc + tlpkg/tlpsrc/lastpackage.tlpsrc + tlpkg/tlpsrc/lastpage.tlpsrc + tlpkg/tlpsrc/latex-bib-ex.tlpsrc + tlpkg/tlpsrc/latex-bib2-ex.tlpsrc + tlpkg/tlpsrc/latex-bin.tlpsrc + tlpkg/tlpsrc/latex-brochure.tlpsrc + tlpkg/tlpsrc/latex-course.tlpsrc + tlpkg/tlpsrc/latex-doc-ptr.tlpsrc + tlpkg/tlpsrc/latex-fonts.tlpsrc + tlpkg/tlpsrc/latex-git-log.tlpsrc + tlpkg/tlpsrc/latex-graphics-companion.tlpsrc + tlpkg/tlpsrc/latex-make.tlpsrc + tlpkg/tlpsrc/latex-mr.tlpsrc + tlpkg/tlpsrc/latex-notes-zh-cn.tlpsrc + tlpkg/tlpsrc/latex-papersize.tlpsrc + tlpkg/tlpsrc/latex-referenz.tlpsrc + tlpkg/tlpsrc/latex-refsheet.tlpsrc + tlpkg/tlpsrc/latex-tabellen.tlpsrc + tlpkg/tlpsrc/latex-tds.tlpsrc + tlpkg/tlpsrc/latex-uni8.tlpsrc + tlpkg/tlpsrc/latex-veryshortguide.tlpsrc + tlpkg/tlpsrc/latex-via-exemplos.tlpsrc + tlpkg/tlpsrc/latex-web-companion.tlpsrc + tlpkg/tlpsrc/latex.tlpsrc + tlpkg/tlpsrc/latex2e-help-texinfo-fr.tlpsrc + tlpkg/tlpsrc/latex2e-help-texinfo-spanish.tlpsrc + tlpkg/tlpsrc/latex2e-help-texinfo.tlpsrc + tlpkg/tlpsrc/latex2man.tlpsrc + tlpkg/tlpsrc/latex2nemeth.tlpsrc + tlpkg/tlpsrc/latex4musicians.tlpsrc + tlpkg/tlpsrc/latex4wp-it.tlpsrc + tlpkg/tlpsrc/latex4wp.tlpsrc + tlpkg/tlpsrc/latexbangla.tlpsrc + tlpkg/tlpsrc/latexbug.tlpsrc + tlpkg/tlpsrc/latexcheat-de.tlpsrc + tlpkg/tlpsrc/latexcheat-esmx.tlpsrc + tlpkg/tlpsrc/latexcheat-ptbr.tlpsrc + tlpkg/tlpsrc/latexcheat.tlpsrc + tlpkg/tlpsrc/latexcolors.tlpsrc + tlpkg/tlpsrc/latexconfig.tlpsrc + tlpkg/tlpsrc/latexcourse-rug.tlpsrc + tlpkg/tlpsrc/latexdemo.tlpsrc + tlpkg/tlpsrc/latexdiff.tlpsrc + tlpkg/tlpsrc/latexfileinfo-pkgs.tlpsrc + tlpkg/tlpsrc/latexfileversion.tlpsrc + tlpkg/tlpsrc/latexgit.tlpsrc + tlpkg/tlpsrc/latexindent.tlpsrc + tlpkg/tlpsrc/latexmk.tlpsrc + tlpkg/tlpsrc/latexmp.tlpsrc + tlpkg/tlpsrc/latexpand.tlpsrc + tlpkg/tlpsrc/lato.tlpsrc + tlpkg/tlpsrc/layaureo.tlpsrc + tlpkg/tlpsrc/layouts.tlpsrc + tlpkg/tlpsrc/lazylist.tlpsrc + tlpkg/tlpsrc/lccaps.tlpsrc + tlpkg/tlpsrc/lcd.tlpsrc + tlpkg/tlpsrc/lcdftypetools.tlpsrc + tlpkg/tlpsrc/lcg.tlpsrc + tlpkg/tlpsrc/lcyw.tlpsrc + tlpkg/tlpsrc/leading.tlpsrc + tlpkg/tlpsrc/leadsheets.tlpsrc + tlpkg/tlpsrc/leaflet.tlpsrc + tlpkg/tlpsrc/lecturer.tlpsrc + tlpkg/tlpsrc/lectures.tlpsrc + tlpkg/tlpsrc/ledmac.tlpsrc + tlpkg/tlpsrc/leftidx.tlpsrc + tlpkg/tlpsrc/leipzig.tlpsrc + tlpkg/tlpsrc/lengthconvert.tlpsrc + tlpkg/tlpsrc/lettre.tlpsrc + tlpkg/tlpsrc/lettrine.tlpsrc + tlpkg/tlpsrc/levy.tlpsrc + tlpkg/tlpsrc/lewis.tlpsrc + tlpkg/tlpsrc/lexikon.tlpsrc + tlpkg/tlpsrc/lexref.tlpsrc + tlpkg/tlpsrc/lfb.tlpsrc + tlpkg/tlpsrc/lgreek.tlpsrc + tlpkg/tlpsrc/lh.tlpsrc + tlpkg/tlpsrc/lhcyr.tlpsrc + tlpkg/tlpsrc/lhelp.tlpsrc + tlpkg/tlpsrc/libertine.tlpsrc + tlpkg/tlpsrc/libertinegc.tlpsrc + tlpkg/tlpsrc/libertinus-fonts.tlpsrc + tlpkg/tlpsrc/libertinus-otf.tlpsrc + tlpkg/tlpsrc/libertinus-type1.tlpsrc + tlpkg/tlpsrc/libertinus.tlpsrc + tlpkg/tlpsrc/libertinust1math.tlpsrc + tlpkg/tlpsrc/libgreek.tlpsrc + tlpkg/tlpsrc/librarian.tlpsrc + tlpkg/tlpsrc/librebaskerville.tlpsrc + tlpkg/tlpsrc/librebodoni.tlpsrc + tlpkg/tlpsrc/librecaslon.tlpsrc + tlpkg/tlpsrc/librefranklin.tlpsrc + tlpkg/tlpsrc/libris.tlpsrc + tlpkg/tlpsrc/lilyglyphs.tlpsrc + tlpkg/tlpsrc/limap.tlpsrc + tlpkg/tlpsrc/limecv.tlpsrc + tlpkg/tlpsrc/linearA.tlpsrc + tlpkg/tlpsrc/linegoal.tlpsrc + tlpkg/tlpsrc/lineno.tlpsrc + tlpkg/tlpsrc/ling-macros.tlpsrc + tlpkg/tlpsrc/linguex.tlpsrc + tlpkg/tlpsrc/linguisticspro.tlpsrc + tlpkg/tlpsrc/linop.tlpsrc + tlpkg/tlpsrc/lion-msc.tlpsrc + tlpkg/tlpsrc/lipsum.tlpsrc + tlpkg/tlpsrc/lisp-on-tex.tlpsrc + tlpkg/tlpsrc/listbib.tlpsrc + tlpkg/tlpsrc/listing.tlpsrc + tlpkg/tlpsrc/listings-ext.tlpsrc + tlpkg/tlpsrc/listings.tlpsrc + tlpkg/tlpsrc/listlbls.tlpsrc + tlpkg/tlpsrc/listliketab.tlpsrc + tlpkg/tlpsrc/listofitems.tlpsrc + tlpkg/tlpsrc/listofsymbols.tlpsrc + tlpkg/tlpsrc/lithuanian.tlpsrc + tlpkg/tlpsrc/liturg.tlpsrc + tlpkg/tlpsrc/lkproof.tlpsrc + tlpkg/tlpsrc/llncsconf.tlpsrc + tlpkg/tlpsrc/lm-math.tlpsrc + tlpkg/tlpsrc/lm.tlpsrc + tlpkg/tlpsrc/lmake.tlpsrc + tlpkg/tlpsrc/lni.tlpsrc + tlpkg/tlpsrc/lobster2.tlpsrc + tlpkg/tlpsrc/locality.tlpsrc + tlpkg/tlpsrc/localloc.tlpsrc + tlpkg/tlpsrc/logbox.tlpsrc + tlpkg/tlpsrc/logical-markup-utils.tlpsrc + tlpkg/tlpsrc/logicproof.tlpsrc + tlpkg/tlpsrc/logicpuzzle.tlpsrc + tlpkg/tlpsrc/logpap.tlpsrc + tlpkg/tlpsrc/logreq.tlpsrc + tlpkg/tlpsrc/lollipop.tlpsrc + tlpkg/tlpsrc/longdivision.tlpsrc + tlpkg/tlpsrc/longfbox.tlpsrc + tlpkg/tlpsrc/longfigure.tlpsrc + tlpkg/tlpsrc/longnamefilelist.tlpsrc + tlpkg/tlpsrc/loops.tlpsrc + tlpkg/tlpsrc/lpform.tlpsrc + tlpkg/tlpsrc/lpic.tlpsrc + tlpkg/tlpsrc/lplfitch.tlpsrc + tlpkg/tlpsrc/lps.tlpsrc + tlpkg/tlpsrc/lroundrect.tlpsrc + tlpkg/tlpsrc/lsc.tlpsrc + tlpkg/tlpsrc/lshort-bulgarian.tlpsrc + tlpkg/tlpsrc/lshort-chinese.tlpsrc + tlpkg/tlpsrc/lshort-czech.tlpsrc + tlpkg/tlpsrc/lshort-dutch.tlpsrc + tlpkg/tlpsrc/lshort-english.tlpsrc + tlpkg/tlpsrc/lshort-estonian.tlpsrc + tlpkg/tlpsrc/lshort-finnish.tlpsrc + tlpkg/tlpsrc/lshort-french.tlpsrc + tlpkg/tlpsrc/lshort-german.tlpsrc + tlpkg/tlpsrc/lshort-italian.tlpsrc + tlpkg/tlpsrc/lshort-japanese.tlpsrc + tlpkg/tlpsrc/lshort-korean.tlpsrc + tlpkg/tlpsrc/lshort-mongol.tlpsrc + tlpkg/tlpsrc/lshort-persian.tlpsrc + tlpkg/tlpsrc/lshort-polish.tlpsrc + tlpkg/tlpsrc/lshort-portuguese.tlpsrc + tlpkg/tlpsrc/lshort-russian.tlpsrc + tlpkg/tlpsrc/lshort-slovak.tlpsrc + tlpkg/tlpsrc/lshort-slovenian.tlpsrc + tlpkg/tlpsrc/lshort-spanish.tlpsrc + tlpkg/tlpsrc/lshort-thai.tlpsrc + tlpkg/tlpsrc/lshort-turkish.tlpsrc + tlpkg/tlpsrc/lshort-ukr.tlpsrc + tlpkg/tlpsrc/lshort-vietnamese.tlpsrc + tlpkg/tlpsrc/lstaddons.tlpsrc + tlpkg/tlpsrc/lstbayes.tlpsrc + tlpkg/tlpsrc/lstfiracode.tlpsrc + tlpkg/tlpsrc/lt3graph.tlpsrc + tlpkg/tlpsrc/ltablex.tlpsrc + tlpkg/tlpsrc/ltabptch.tlpsrc + tlpkg/tlpsrc/ltb2bib.tlpsrc + tlpkg/tlpsrc/ltxdockit.tlpsrc + tlpkg/tlpsrc/ltxfileinfo.tlpsrc + tlpkg/tlpsrc/ltxguidex.tlpsrc + tlpkg/tlpsrc/ltximg.tlpsrc + tlpkg/tlpsrc/ltxindex.tlpsrc + tlpkg/tlpsrc/ltxkeys.tlpsrc + tlpkg/tlpsrc/ltxmisc.tlpsrc + tlpkg/tlpsrc/ltxnew.tlpsrc + tlpkg/tlpsrc/ltxtools.tlpsrc + tlpkg/tlpsrc/lua-alt-getopt.tlpsrc + tlpkg/tlpsrc/lua-check-hyphen.tlpsrc + tlpkg/tlpsrc/lua-visual-debug.tlpsrc + tlpkg/tlpsrc/lua2dox.tlpsrc + tlpkg/tlpsrc/luabibentry.tlpsrc + tlpkg/tlpsrc/luabidi.tlpsrc + tlpkg/tlpsrc/luacode.tlpsrc + tlpkg/tlpsrc/luahyphenrules.tlpsrc + tlpkg/tlpsrc/luaimageembed.tlpsrc + tlpkg/tlpsrc/luaindex.tlpsrc + tlpkg/tlpsrc/luainputenc.tlpsrc + tlpkg/tlpsrc/luaintro.tlpsrc + tlpkg/tlpsrc/lualatex-doc-de.tlpsrc + tlpkg/tlpsrc/lualatex-doc.tlpsrc + tlpkg/tlpsrc/lualatex-math.tlpsrc + tlpkg/tlpsrc/lualatex-truncate.tlpsrc + tlpkg/tlpsrc/lualibs.tlpsrc + tlpkg/tlpsrc/luamesh.tlpsrc + tlpkg/tlpsrc/luamplib.tlpsrc + tlpkg/tlpsrc/luaotfload.tlpsrc + tlpkg/tlpsrc/luapackageloader.tlpsrc + tlpkg/tlpsrc/luarandom.tlpsrc + tlpkg/tlpsrc/luasseq.tlpsrc + tlpkg/tlpsrc/luatex.tlpsrc + tlpkg/tlpsrc/luatex85.tlpsrc + tlpkg/tlpsrc/luatexbase.tlpsrc + tlpkg/tlpsrc/luatexja.tlpsrc + tlpkg/tlpsrc/luatexko.tlpsrc + tlpkg/tlpsrc/luatextra.tlpsrc + tlpkg/tlpsrc/luatodonotes.tlpsrc + tlpkg/tlpsrc/luavlna.tlpsrc + tlpkg/tlpsrc/luaxml.tlpsrc + tlpkg/tlpsrc/lwarp.tlpsrc + tlpkg/tlpsrc/lxfonts.tlpsrc + tlpkg/tlpsrc/ly1.tlpsrc + tlpkg/tlpsrc/lyluatex.tlpsrc + tlpkg/tlpsrc/m-tx.tlpsrc + tlpkg/tlpsrc/macros2e.tlpsrc + tlpkg/tlpsrc/macroswap.tlpsrc + tlpkg/tlpsrc/mafr.tlpsrc + tlpkg/tlpsrc/magaz.tlpsrc + tlpkg/tlpsrc/mailing.tlpsrc + tlpkg/tlpsrc/mailmerge.tlpsrc + tlpkg/tlpsrc/make4ht.tlpsrc + tlpkg/tlpsrc/makebarcode.tlpsrc + tlpkg/tlpsrc/makebase.tlpsrc + tlpkg/tlpsrc/makebox.tlpsrc + tlpkg/tlpsrc/makecell.tlpsrc + tlpkg/tlpsrc/makecirc.tlpsrc + tlpkg/tlpsrc/makecmds.tlpsrc + tlpkg/tlpsrc/makecookbook.tlpsrc + tlpkg/tlpsrc/makedtx.tlpsrc + tlpkg/tlpsrc/makeglos.tlpsrc + tlpkg/tlpsrc/makeindex.tlpsrc + tlpkg/tlpsrc/makeplot.tlpsrc + tlpkg/tlpsrc/maker.tlpsrc + tlpkg/tlpsrc/makeshape.tlpsrc + tlpkg/tlpsrc/mandi.tlpsrc + tlpkg/tlpsrc/manfnt-font.tlpsrc + tlpkg/tlpsrc/manfnt.tlpsrc + tlpkg/tlpsrc/manuscript.tlpsrc + tlpkg/tlpsrc/manyind.tlpsrc + tlpkg/tlpsrc/marcellus.tlpsrc + tlpkg/tlpsrc/margbib.tlpsrc + tlpkg/tlpsrc/marginfit.tlpsrc + tlpkg/tlpsrc/marginfix.tlpsrc + tlpkg/tlpsrc/marginnote.tlpsrc + tlpkg/tlpsrc/markdown.tlpsrc + tlpkg/tlpsrc/marvosym.tlpsrc + tlpkg/tlpsrc/matc3.tlpsrc + tlpkg/tlpsrc/matc3mem.tlpsrc + tlpkg/tlpsrc/match_parens.tlpsrc + tlpkg/tlpsrc/math-e.tlpsrc + tlpkg/tlpsrc/math-into-latex-4.tlpsrc + tlpkg/tlpsrc/mathabx-type1.tlpsrc + tlpkg/tlpsrc/mathabx.tlpsrc + tlpkg/tlpsrc/mathalpha.tlpsrc + tlpkg/tlpsrc/mathastext.tlpsrc + tlpkg/tlpsrc/mathcommand.tlpsrc + tlpkg/tlpsrc/mathcomp.tlpsrc + tlpkg/tlpsrc/mathdesign.tlpsrc + tlpkg/tlpsrc/mathdots.tlpsrc + tlpkg/tlpsrc/mathexam.tlpsrc + tlpkg/tlpsrc/mathfam256.tlpsrc + tlpkg/tlpsrc/mathfixs.tlpsrc + tlpkg/tlpsrc/mathfont.tlpsrc + tlpkg/tlpsrc/mathpartir.tlpsrc + tlpkg/tlpsrc/mathpazo.tlpsrc + tlpkg/tlpsrc/mathpunctspace.tlpsrc + tlpkg/tlpsrc/maths-symbols.tlpsrc + tlpkg/tlpsrc/mathspec.tlpsrc + tlpkg/tlpsrc/mathspic.tlpsrc + tlpkg/tlpsrc/mathtools.tlpsrc + tlpkg/tlpsrc/matlab-prettifier.tlpsrc + tlpkg/tlpsrc/mattens.tlpsrc + tlpkg/tlpsrc/maybemath.tlpsrc + tlpkg/tlpsrc/mcaption.tlpsrc + tlpkg/tlpsrc/mceinleger.tlpsrc + tlpkg/tlpsrc/mcexam.tlpsrc + tlpkg/tlpsrc/mcf2graph.tlpsrc + tlpkg/tlpsrc/mcite.tlpsrc + tlpkg/tlpsrc/mciteplus.tlpsrc + tlpkg/tlpsrc/mcmthesis.tlpsrc + tlpkg/tlpsrc/mdframed.tlpsrc + tlpkg/tlpsrc/mdputu.tlpsrc + tlpkg/tlpsrc/mdsymbol.tlpsrc + tlpkg/tlpsrc/mdwtools.tlpsrc + tlpkg/tlpsrc/media9.tlpsrc + tlpkg/tlpsrc/medstarbeamer.tlpsrc + tlpkg/tlpsrc/meetingmins.tlpsrc + tlpkg/tlpsrc/memdesign.tlpsrc + tlpkg/tlpsrc/memexsupp.tlpsrc + tlpkg/tlpsrc/memoir.tlpsrc + tlpkg/tlpsrc/memory.tlpsrc + tlpkg/tlpsrc/memorygraphs.tlpsrc + tlpkg/tlpsrc/mendex-doc.tlpsrc + tlpkg/tlpsrc/mensa-tex.tlpsrc + tlpkg/tlpsrc/mentis.tlpsrc + tlpkg/tlpsrc/menu.tlpsrc + tlpkg/tlpsrc/menukeys.tlpsrc + tlpkg/tlpsrc/merriweather.tlpsrc + tlpkg/tlpsrc/metafont-beginners.tlpsrc + tlpkg/tlpsrc/metafont.tlpsrc + tlpkg/tlpsrc/metago.tlpsrc + tlpkg/tlpsrc/metalogo.tlpsrc + tlpkg/tlpsrc/metalogox.tlpsrc + tlpkg/tlpsrc/metaobj.tlpsrc + tlpkg/tlpsrc/metaplot.tlpsrc + tlpkg/tlpsrc/metapost-colorbrewer.tlpsrc + tlpkg/tlpsrc/metapost-examples.tlpsrc + tlpkg/tlpsrc/metapost.tlpsrc + tlpkg/tlpsrc/metatex.tlpsrc + tlpkg/tlpsrc/metatype1.tlpsrc + tlpkg/tlpsrc/metauml.tlpsrc + tlpkg/tlpsrc/method.tlpsrc + tlpkg/tlpsrc/metre.tlpsrc + tlpkg/tlpsrc/metrix.tlpsrc + tlpkg/tlpsrc/mex.tlpsrc + tlpkg/tlpsrc/mf2pt1.tlpsrc + tlpkg/tlpsrc/mfirstuc.tlpsrc + tlpkg/tlpsrc/mflogo-font.tlpsrc + tlpkg/tlpsrc/mflogo.tlpsrc + tlpkg/tlpsrc/mflua.tlpsrc + tlpkg/tlpsrc/mfnfss.tlpsrc + tlpkg/tlpsrc/mfpic.tlpsrc + tlpkg/tlpsrc/mfpic4ode.tlpsrc + tlpkg/tlpsrc/mftinc.tlpsrc + tlpkg/tlpsrc/mfware.tlpsrc + tlpkg/tlpsrc/mgltex.tlpsrc + tlpkg/tlpsrc/mhchem.tlpsrc + tlpkg/tlpsrc/mhequ.tlpsrc + tlpkg/tlpsrc/mi-solns.tlpsrc + tlpkg/tlpsrc/miama.tlpsrc + tlpkg/tlpsrc/microtype-de.tlpsrc + tlpkg/tlpsrc/microtype.tlpsrc + tlpkg/tlpsrc/midnight.tlpsrc + tlpkg/tlpsrc/midpage.tlpsrc + tlpkg/tlpsrc/miller.tlpsrc + tlpkg/tlpsrc/milog.tlpsrc + tlpkg/tlpsrc/milsymb.tlpsrc + tlpkg/tlpsrc/minibox.tlpsrc + tlpkg/tlpsrc/minidocument.tlpsrc + tlpkg/tlpsrc/minifp.tlpsrc + tlpkg/tlpsrc/minipage-marginpar.tlpsrc + tlpkg/tlpsrc/miniplot.tlpsrc + tlpkg/tlpsrc/minitoc.tlpsrc + tlpkg/tlpsrc/minorrevision.tlpsrc + tlpkg/tlpsrc/minted.tlpsrc + tlpkg/tlpsrc/mintspirit.tlpsrc + tlpkg/tlpsrc/minutes.tlpsrc + tlpkg/tlpsrc/mismath.tlpsrc + tlpkg/tlpsrc/missaali.tlpsrc + tlpkg/tlpsrc/mkgrkindex.tlpsrc + tlpkg/tlpsrc/mkjobtexmf.tlpsrc + tlpkg/tlpsrc/mkpattern.tlpsrc + tlpkg/tlpsrc/mkpic.tlpsrc + tlpkg/tlpsrc/mla-paper.tlpsrc + tlpkg/tlpsrc/mlacls.tlpsrc + tlpkg/tlpsrc/mlist.tlpsrc + tlpkg/tlpsrc/mltex.tlpsrc + tlpkg/tlpsrc/mmap.tlpsrc + tlpkg/tlpsrc/mnotes.tlpsrc + tlpkg/tlpsrc/mnras.tlpsrc + tlpkg/tlpsrc/mnsymbol.tlpsrc + tlpkg/tlpsrc/modeles-factures-belges-assocs.tlpsrc + tlpkg/tlpsrc/moderncv.tlpsrc + tlpkg/tlpsrc/modernposter.tlpsrc + tlpkg/tlpsrc/moderntimeline.tlpsrc + tlpkg/tlpsrc/modiagram.tlpsrc + tlpkg/tlpsrc/modref.tlpsrc + tlpkg/tlpsrc/modroman.tlpsrc + tlpkg/tlpsrc/modular.tlpsrc + tlpkg/tlpsrc/modulus.tlpsrc + tlpkg/tlpsrc/mongolian-babel.tlpsrc + tlpkg/tlpsrc/monofill.tlpsrc + tlpkg/tlpsrc/montex.tlpsrc + tlpkg/tlpsrc/montserrat.tlpsrc + tlpkg/tlpsrc/moodle.tlpsrc + tlpkg/tlpsrc/moreenum.tlpsrc + tlpkg/tlpsrc/morefloats.tlpsrc + tlpkg/tlpsrc/morehype.tlpsrc + tlpkg/tlpsrc/moresize.tlpsrc + tlpkg/tlpsrc/moreverb.tlpsrc + tlpkg/tlpsrc/morewrites.tlpsrc + tlpkg/tlpsrc/morisawa.tlpsrc + tlpkg/tlpsrc/movie15.tlpsrc + tlpkg/tlpsrc/mp3d.tlpsrc + tlpkg/tlpsrc/mparhack.tlpsrc + tlpkg/tlpsrc/mparrows.tlpsrc + tlpkg/tlpsrc/mpattern.tlpsrc + tlpkg/tlpsrc/mpcolornames.tlpsrc + tlpkg/tlpsrc/mpgraphics.tlpsrc + tlpkg/tlpsrc/mpman-ru.tlpsrc + tlpkg/tlpsrc/mpostinl.tlpsrc + tlpkg/tlpsrc/mptopdf.tlpsrc + tlpkg/tlpsrc/mptrees.tlpsrc + tlpkg/tlpsrc/ms.tlpsrc + tlpkg/tlpsrc/msc.tlpsrc + tlpkg/tlpsrc/msg.tlpsrc + tlpkg/tlpsrc/mslapa.tlpsrc + tlpkg/tlpsrc/msu-thesis.tlpsrc + tlpkg/tlpsrc/mtgreek.tlpsrc + tlpkg/tlpsrc/mucproc.tlpsrc + tlpkg/tlpsrc/mugsthesis.tlpsrc + tlpkg/tlpsrc/multenum.tlpsrc + tlpkg/tlpsrc/multiaudience.tlpsrc + tlpkg/tlpsrc/multibbl.tlpsrc + tlpkg/tlpsrc/multibib.tlpsrc + tlpkg/tlpsrc/multibibliography.tlpsrc + tlpkg/tlpsrc/multicap.tlpsrc + tlpkg/tlpsrc/multicolrule.tlpsrc + tlpkg/tlpsrc/multidef.tlpsrc + tlpkg/tlpsrc/multido.tlpsrc + tlpkg/tlpsrc/multienv.tlpsrc + tlpkg/tlpsrc/multiexpand.tlpsrc + tlpkg/tlpsrc/multilang.tlpsrc + tlpkg/tlpsrc/multiobjective.tlpsrc + tlpkg/tlpsrc/multirow.tlpsrc + tlpkg/tlpsrc/munich.tlpsrc + tlpkg/tlpsrc/musicography.tlpsrc + tlpkg/tlpsrc/musikui.tlpsrc + tlpkg/tlpsrc/musixguit.tlpsrc + tlpkg/tlpsrc/musixtex-fonts.tlpsrc + tlpkg/tlpsrc/musixtex.tlpsrc + tlpkg/tlpsrc/musixtnt.tlpsrc + tlpkg/tlpsrc/musuos.tlpsrc + tlpkg/tlpsrc/muthesis.tlpsrc + tlpkg/tlpsrc/mversion.tlpsrc + tlpkg/tlpsrc/mwcls.tlpsrc + tlpkg/tlpsrc/mwe.tlpsrc + tlpkg/tlpsrc/mweights.tlpsrc + tlpkg/tlpsrc/mxedruli.tlpsrc + tlpkg/tlpsrc/mychemistry.tlpsrc + tlpkg/tlpsrc/mycv.tlpsrc + tlpkg/tlpsrc/mylatexformat.tlpsrc + tlpkg/tlpsrc/mynsfc.tlpsrc + tlpkg/tlpsrc/na-box.tlpsrc + tlpkg/tlpsrc/na-position.tlpsrc + tlpkg/tlpsrc/nag.tlpsrc + tlpkg/tlpsrc/nameauth.tlpsrc + tlpkg/tlpsrc/namespc.tlpsrc + tlpkg/tlpsrc/nanicolle.tlpsrc + tlpkg/tlpsrc/nanumtype1.tlpsrc + tlpkg/tlpsrc/nar.tlpsrc + tlpkg/tlpsrc/natbib.tlpsrc + tlpkg/tlpsrc/natded.tlpsrc + tlpkg/tlpsrc/nath.tlpsrc + tlpkg/tlpsrc/nature.tlpsrc + tlpkg/tlpsrc/navigator.tlpsrc + tlpkg/tlpsrc/navydocs.tlpsrc + tlpkg/tlpsrc/ncclatex.tlpsrc + tlpkg/tlpsrc/ncctools.tlpsrc + tlpkg/tlpsrc/ncntrsbk.tlpsrc + tlpkg/tlpsrc/nddiss.tlpsrc + tlpkg/tlpsrc/ndsu-thesis.tlpsrc + tlpkg/tlpsrc/needspace.tlpsrc + tlpkg/tlpsrc/nestquot.tlpsrc + tlpkg/tlpsrc/neuralnetwork.tlpsrc + tlpkg/tlpsrc/nevelok.tlpsrc + tlpkg/tlpsrc/newcommand.tlpsrc + tlpkg/tlpsrc/newenviron.tlpsrc + tlpkg/tlpsrc/newfile.tlpsrc + tlpkg/tlpsrc/newlfm.tlpsrc + tlpkg/tlpsrc/newpx.tlpsrc + tlpkg/tlpsrc/newsletr.tlpsrc + tlpkg/tlpsrc/newspaper.tlpsrc + tlpkg/tlpsrc/newtx.tlpsrc + tlpkg/tlpsrc/newtxsf.tlpsrc + tlpkg/tlpsrc/newtxtt.tlpsrc + tlpkg/tlpsrc/newunicodechar.tlpsrc + tlpkg/tlpsrc/newvbtm.tlpsrc + tlpkg/tlpsrc/newverbs.tlpsrc + tlpkg/tlpsrc/nextpage.tlpsrc + tlpkg/tlpsrc/nfssext-cfr.tlpsrc + tlpkg/tlpsrc/nicefilelist.tlpsrc + tlpkg/tlpsrc/niceframe-type1.tlpsrc + tlpkg/tlpsrc/niceframe.tlpsrc + tlpkg/tlpsrc/nicematrix.tlpsrc + tlpkg/tlpsrc/nicetext.tlpsrc + tlpkg/tlpsrc/nidanfloat.tlpsrc + tlpkg/tlpsrc/nih.tlpsrc + tlpkg/tlpsrc/nihbiosketch.tlpsrc + tlpkg/tlpsrc/nimbus15.tlpsrc + tlpkg/tlpsrc/njurepo.tlpsrc + tlpkg/tlpsrc/nkarta.tlpsrc + tlpkg/tlpsrc/nlctdoc.tlpsrc + tlpkg/tlpsrc/nmbib.tlpsrc + tlpkg/tlpsrc/noconflict.tlpsrc + tlpkg/tlpsrc/nodetree.tlpsrc + tlpkg/tlpsrc/noindentafter.tlpsrc + tlpkg/tlpsrc/noitcrul.tlpsrc + tlpkg/tlpsrc/nolbreaks.tlpsrc + tlpkg/tlpsrc/nomencl.tlpsrc + tlpkg/tlpsrc/nomentbl.tlpsrc + tlpkg/tlpsrc/nonfloat.tlpsrc + tlpkg/tlpsrc/nonumonpart.tlpsrc + tlpkg/tlpsrc/nopageno.tlpsrc + tlpkg/tlpsrc/norasi-c90.tlpsrc + tlpkg/tlpsrc/normalcolor.tlpsrc + tlpkg/tlpsrc/nostarch.tlpsrc + tlpkg/tlpsrc/notes.tlpsrc + tlpkg/tlpsrc/notes2bib.tlpsrc + tlpkg/tlpsrc/notespages.tlpsrc + tlpkg/tlpsrc/notestex.tlpsrc + tlpkg/tlpsrc/notex-bst.tlpsrc + tlpkg/tlpsrc/noto.tlpsrc + tlpkg/tlpsrc/notoccite.tlpsrc + tlpkg/tlpsrc/novel.tlpsrc + tlpkg/tlpsrc/nowidow.tlpsrc + tlpkg/tlpsrc/nox.tlpsrc + tlpkg/tlpsrc/npp-for-context.tlpsrc + tlpkg/tlpsrc/nrc.tlpsrc + tlpkg/tlpsrc/ntgclass.tlpsrc + tlpkg/tlpsrc/ntheorem-vn.tlpsrc + tlpkg/tlpsrc/ntheorem.tlpsrc + tlpkg/tlpsrc/nuc.tlpsrc + tlpkg/tlpsrc/nucleardata.tlpsrc + tlpkg/tlpsrc/numberedblock.tlpsrc + tlpkg/tlpsrc/numericplots.tlpsrc + tlpkg/tlpsrc/numname.tlpsrc + tlpkg/tlpsrc/numnameru.tlpsrc + tlpkg/tlpsrc/numprint.tlpsrc + tlpkg/tlpsrc/numspell.tlpsrc + tlpkg/tlpsrc/nwejm.tlpsrc + tlpkg/tlpsrc/oberdiek.tlpsrc + tlpkg/tlpsrc/objectz.tlpsrc + tlpkg/tlpsrc/obnov.tlpsrc + tlpkg/tlpsrc/ocg-p.tlpsrc + tlpkg/tlpsrc/ocgx.tlpsrc + tlpkg/tlpsrc/ocgx2.tlpsrc + tlpkg/tlpsrc/ocherokee.tlpsrc + tlpkg/tlpsrc/ocr-b-outline.tlpsrc + tlpkg/tlpsrc/ocr-b.tlpsrc + tlpkg/tlpsrc/ocr-latex.tlpsrc + tlpkg/tlpsrc/octave.tlpsrc + tlpkg/tlpsrc/octavo.tlpsrc + tlpkg/tlpsrc/odsfile.tlpsrc + tlpkg/tlpsrc/ofs.tlpsrc + tlpkg/tlpsrc/ogham.tlpsrc + tlpkg/tlpsrc/oinuit.tlpsrc + tlpkg/tlpsrc/old-arrows.tlpsrc + tlpkg/tlpsrc/oldlatin.tlpsrc + tlpkg/tlpsrc/oldstandard.tlpsrc + tlpkg/tlpsrc/oldstyle.tlpsrc + tlpkg/tlpsrc/olsak-misc.tlpsrc + tlpkg/tlpsrc/omega.tlpsrc + tlpkg/tlpsrc/omegaware.tlpsrc + tlpkg/tlpsrc/onedown.tlpsrc + tlpkg/tlpsrc/onlyamsmath.tlpsrc + tlpkg/tlpsrc/onrannual.tlpsrc + tlpkg/tlpsrc/opcit.tlpsrc + tlpkg/tlpsrc/opensans.tlpsrc + tlpkg/tlpsrc/oplotsymbl.tlpsrc + tlpkg/tlpsrc/opteng.tlpsrc + tlpkg/tlpsrc/optidef.tlpsrc + tlpkg/tlpsrc/optional.tlpsrc + tlpkg/tlpsrc/options.tlpsrc + tlpkg/tlpsrc/ordinalpt.tlpsrc + tlpkg/tlpsrc/orkhun.tlpsrc + tlpkg/tlpsrc/oscola.tlpsrc + tlpkg/tlpsrc/ot-tableau.tlpsrc + tlpkg/tlpsrc/othello.tlpsrc + tlpkg/tlpsrc/othelloboard.tlpsrc + tlpkg/tlpsrc/otibet.tlpsrc + tlpkg/tlpsrc/oubraces.tlpsrc + tlpkg/tlpsrc/outline.tlpsrc + tlpkg/tlpsrc/outliner.tlpsrc + tlpkg/tlpsrc/outlines.tlpsrc + tlpkg/tlpsrc/outlining.tlpsrc + tlpkg/tlpsrc/overlays.tlpsrc + tlpkg/tlpsrc/overlock.tlpsrc + tlpkg/tlpsrc/overpic.tlpsrc + tlpkg/tlpsrc/pacioli.tlpsrc + tlpkg/tlpsrc/padauk.tlpsrc + tlpkg/tlpsrc/padcount.tlpsrc + tlpkg/tlpsrc/pagecolor.tlpsrc + tlpkg/tlpsrc/pagecont.tlpsrc + tlpkg/tlpsrc/pagenote.tlpsrc + tlpkg/tlpsrc/pagerange.tlpsrc + tlpkg/tlpsrc/pageslts.tlpsrc + tlpkg/tlpsrc/palatino.tlpsrc + tlpkg/tlpsrc/paper.tlpsrc + tlpkg/tlpsrc/papercdcase.tlpsrc + tlpkg/tlpsrc/papermas.tlpsrc + tlpkg/tlpsrc/papertex.tlpsrc + tlpkg/tlpsrc/paracol.tlpsrc + tlpkg/tlpsrc/parades.tlpsrc + tlpkg/tlpsrc/paralist.tlpsrc + tlpkg/tlpsrc/parallel.tlpsrc + tlpkg/tlpsrc/paratype.tlpsrc + tlpkg/tlpsrc/paresse.tlpsrc + tlpkg/tlpsrc/parnotes.tlpsrc + tlpkg/tlpsrc/parrun.tlpsrc + tlpkg/tlpsrc/parselines.tlpsrc + tlpkg/tlpsrc/parskip.tlpsrc + tlpkg/tlpsrc/pas-cours.tlpsrc + tlpkg/tlpsrc/pas-crosswords.tlpsrc + tlpkg/tlpsrc/pas-cv.tlpsrc + tlpkg/tlpsrc/pas-tableur.tlpsrc + tlpkg/tlpsrc/passivetex.tlpsrc + tlpkg/tlpsrc/patch.tlpsrc + tlpkg/tlpsrc/patchcmd.tlpsrc + tlpkg/tlpsrc/patgen.tlpsrc + tlpkg/tlpsrc/patgen2-tutorial.tlpsrc + tlpkg/tlpsrc/path.tlpsrc + tlpkg/tlpsrc/pauldoc.tlpsrc + tlpkg/tlpsrc/pawpict.tlpsrc + tlpkg/tlpsrc/pax.tlpsrc + tlpkg/tlpsrc/pb-diagram.tlpsrc + tlpkg/tlpsrc/pbibtex-base.tlpsrc + tlpkg/tlpsrc/pbox.tlpsrc + tlpkg/tlpsrc/pbsheet.tlpsrc + tlpkg/tlpsrc/pdf-trans.tlpsrc + tlpkg/tlpsrc/pdf14.tlpsrc + tlpkg/tlpsrc/pdfarticle.tlpsrc + tlpkg/tlpsrc/pdfbook2.tlpsrc + tlpkg/tlpsrc/pdfcomment.tlpsrc + tlpkg/tlpsrc/pdfcprot.tlpsrc + tlpkg/tlpsrc/pdfcrop.tlpsrc + tlpkg/tlpsrc/pdfjam.tlpsrc + tlpkg/tlpsrc/pdflatexpicscale.tlpsrc + tlpkg/tlpsrc/pdfmarginpar.tlpsrc + tlpkg/tlpsrc/pdfoverlay.tlpsrc + tlpkg/tlpsrc/pdfpagediff.tlpsrc + tlpkg/tlpsrc/pdfpages.tlpsrc + tlpkg/tlpsrc/pdfpc-movie.tlpsrc + tlpkg/tlpsrc/pdfprivacy.tlpsrc + tlpkg/tlpsrc/pdfreview.tlpsrc + tlpkg/tlpsrc/pdfscreen.tlpsrc + tlpkg/tlpsrc/pdfslide.tlpsrc + tlpkg/tlpsrc/pdfsync.tlpsrc + tlpkg/tlpsrc/pdftex-quiet.tlpsrc + tlpkg/tlpsrc/pdftex.tlpsrc + tlpkg/tlpsrc/pdftools.tlpsrc + tlpkg/tlpsrc/pdftricks.tlpsrc + tlpkg/tlpsrc/pdftricks2.tlpsrc + tlpkg/tlpsrc/pdfwin.tlpsrc + tlpkg/tlpsrc/pdfx.tlpsrc + tlpkg/tlpsrc/pdfxup.tlpsrc + tlpkg/tlpsrc/pecha.tlpsrc + tlpkg/tlpsrc/pedigree-perl.tlpsrc + tlpkg/tlpsrc/penrose.tlpsrc + tlpkg/tlpsrc/perception.tlpsrc + tlpkg/tlpsrc/perfectcut.tlpsrc + tlpkg/tlpsrc/perltex.tlpsrc + tlpkg/tlpsrc/permute.tlpsrc + tlpkg/tlpsrc/persian-bib.tlpsrc + tlpkg/tlpsrc/petiteannonce.tlpsrc + tlpkg/tlpsrc/petri-nets.tlpsrc + tlpkg/tlpsrc/pfarrei.tlpsrc + tlpkg/tlpsrc/pgf-blur.tlpsrc + tlpkg/tlpsrc/pgf-cmykshadings.tlpsrc + tlpkg/tlpsrc/pgf-soroban.tlpsrc + tlpkg/tlpsrc/pgf-spectra.tlpsrc + tlpkg/tlpsrc/pgf-umlcd.tlpsrc + tlpkg/tlpsrc/pgf-umlsd.tlpsrc + tlpkg/tlpsrc/pgf.tlpsrc + tlpkg/tlpsrc/pgfgantt.tlpsrc + tlpkg/tlpsrc/pgfkeyx.tlpsrc + tlpkg/tlpsrc/pgfmolbio.tlpsrc + tlpkg/tlpsrc/pgfmorepages.tlpsrc + tlpkg/tlpsrc/pgfopts.tlpsrc + tlpkg/tlpsrc/pgfornament-han.tlpsrc + tlpkg/tlpsrc/pgfornament.tlpsrc + tlpkg/tlpsrc/pgfplots.tlpsrc + tlpkg/tlpsrc/phaistos.tlpsrc + tlpkg/tlpsrc/phffullpagefigure.tlpsrc + tlpkg/tlpsrc/phfnote.tlpsrc + tlpkg/tlpsrc/phfparen.tlpsrc + tlpkg/tlpsrc/phfqit.tlpsrc + tlpkg/tlpsrc/phfquotetext.tlpsrc + tlpkg/tlpsrc/phfsvnwatermark.tlpsrc + tlpkg/tlpsrc/phfthm.tlpsrc + tlpkg/tlpsrc/philex.tlpsrc + tlpkg/tlpsrc/philokalia.tlpsrc + tlpkg/tlpsrc/philosophersimprint.tlpsrc + tlpkg/tlpsrc/phonenumbers.tlpsrc + tlpkg/tlpsrc/phonetic.tlpsrc + tlpkg/tlpsrc/phonrule.tlpsrc + tlpkg/tlpsrc/photo.tlpsrc + tlpkg/tlpsrc/physics.tlpsrc + tlpkg/tlpsrc/piano.tlpsrc + tlpkg/tlpsrc/picinpar.tlpsrc + tlpkg/tlpsrc/pict2e.tlpsrc + tlpkg/tlpsrc/pictex.tlpsrc + tlpkg/tlpsrc/pictex2.tlpsrc + tlpkg/tlpsrc/pictexsum.tlpsrc + tlpkg/tlpsrc/piechartmp.tlpsrc + tlpkg/tlpsrc/piff.tlpsrc + tlpkg/tlpsrc/pigpen.tlpsrc + tlpkg/tlpsrc/pinlabel.tlpsrc + tlpkg/tlpsrc/pitex.tlpsrc + tlpkg/tlpsrc/pittetd.tlpsrc + tlpkg/tlpsrc/pixelart.tlpsrc + tlpkg/tlpsrc/pkfix-helper.tlpsrc + tlpkg/tlpsrc/pkfix.tlpsrc + tlpkg/tlpsrc/pkgloader.tlpsrc + tlpkg/tlpsrc/pkuthss.tlpsrc + tlpkg/tlpsrc/pl.tlpsrc + tlpkg/tlpsrc/placeat.tlpsrc + tlpkg/tlpsrc/placeins-plain.tlpsrc + tlpkg/tlpsrc/placeins.tlpsrc + tlpkg/tlpsrc/plain-doc.tlpsrc + tlpkg/tlpsrc/plain.tlpsrc + tlpkg/tlpsrc/plainpkg.tlpsrc + tlpkg/tlpsrc/plantslabels.tlpsrc + tlpkg/tlpsrc/plantuml.tlpsrc + tlpkg/tlpsrc/plari.tlpsrc + tlpkg/tlpsrc/plates.tlpsrc + tlpkg/tlpsrc/platex-tools.tlpsrc + tlpkg/tlpsrc/platex.tlpsrc + tlpkg/tlpsrc/platexcheat.tlpsrc + tlpkg/tlpsrc/plautopatch.tlpsrc + tlpkg/tlpsrc/play.tlpsrc + tlpkg/tlpsrc/playfair.tlpsrc + tlpkg/tlpsrc/plex-otf.tlpsrc + tlpkg/tlpsrc/plex.tlpsrc + tlpkg/tlpsrc/plipsum.tlpsrc + tlpkg/tlpsrc/plnfss.tlpsrc + tlpkg/tlpsrc/plstmary.tlpsrc + tlpkg/tlpsrc/plweb.tlpsrc + tlpkg/tlpsrc/pm-isomath.tlpsrc + tlpkg/tlpsrc/pmgraph.tlpsrc + tlpkg/tlpsrc/pmx.tlpsrc + tlpkg/tlpsrc/pmxchords.tlpsrc + tlpkg/tlpsrc/pnas2009.tlpsrc + tlpkg/tlpsrc/poemscol.tlpsrc + tlpkg/tlpsrc/poetry.tlpsrc + tlpkg/tlpsrc/poetrytex.tlpsrc + tlpkg/tlpsrc/polexpr.tlpsrc + tlpkg/tlpsrc/polski.tlpsrc + tlpkg/tlpsrc/poltawski.tlpsrc + tlpkg/tlpsrc/polyglossia.tlpsrc + tlpkg/tlpsrc/polynom.tlpsrc + tlpkg/tlpsrc/polynomial.tlpsrc + tlpkg/tlpsrc/polytable.tlpsrc + tlpkg/tlpsrc/poormanlog.tlpsrc + tlpkg/tlpsrc/postage.tlpsrc + tlpkg/tlpsrc/postcards.tlpsrc + tlpkg/tlpsrc/poster-mac.tlpsrc + tlpkg/tlpsrc/powerdot-FUBerlin.tlpsrc + tlpkg/tlpsrc/powerdot-tuliplab.tlpsrc + tlpkg/tlpsrc/powerdot.tlpsrc + tlpkg/tlpsrc/ppr-prv.tlpsrc + tlpkg/tlpsrc/pracjourn.tlpsrc + tlpkg/tlpsrc/preprint.tlpsrc + tlpkg/tlpsrc/prerex.tlpsrc + tlpkg/tlpsrc/present.tlpsrc + tlpkg/tlpsrc/presentations-en.tlpsrc + tlpkg/tlpsrc/presentations.tlpsrc + tlpkg/tlpsrc/pressrelease.tlpsrc + tlpkg/tlpsrc/prettyref.tlpsrc + tlpkg/tlpsrc/preview.tlpsrc + tlpkg/tlpsrc/prftree.tlpsrc + tlpkg/tlpsrc/printlen.tlpsrc + tlpkg/tlpsrc/proba.tlpsrc + tlpkg/tlpsrc/probsoln.tlpsrc + tlpkg/tlpsrc/procIAGssymp.tlpsrc + tlpkg/tlpsrc/prodint.tlpsrc + tlpkg/tlpsrc/productbox.tlpsrc + tlpkg/tlpsrc/program.tlpsrc + tlpkg/tlpsrc/progress.tlpsrc + tlpkg/tlpsrc/progressbar.tlpsrc + tlpkg/tlpsrc/proof-at-the-end.tlpsrc + tlpkg/tlpsrc/proofread.tlpsrc + tlpkg/tlpsrc/prooftrees.tlpsrc + tlpkg/tlpsrc/properties.tlpsrc + tlpkg/tlpsrc/proposal.tlpsrc + tlpkg/tlpsrc/prosper.tlpsrc + tlpkg/tlpsrc/protex.tlpsrc + tlpkg/tlpsrc/protocol.tlpsrc + tlpkg/tlpsrc/prtec.tlpsrc + tlpkg/tlpsrc/przechlewski-book.tlpsrc + tlpkg/tlpsrc/ps2pk.tlpsrc + tlpkg/tlpsrc/psbao.tlpsrc + tlpkg/tlpsrc/pseudocode.tlpsrc + tlpkg/tlpsrc/psfrag-italian.tlpsrc + tlpkg/tlpsrc/psfrag.tlpsrc + tlpkg/tlpsrc/psfragx.tlpsrc + tlpkg/tlpsrc/psgo.tlpsrc + tlpkg/tlpsrc/psizzl.tlpsrc + tlpkg/tlpsrc/pslatex.tlpsrc + tlpkg/tlpsrc/psnfss.tlpsrc + tlpkg/tlpsrc/pspicture.tlpsrc + tlpkg/tlpsrc/pst-2dplot.tlpsrc + tlpkg/tlpsrc/pst-3d.tlpsrc + tlpkg/tlpsrc/pst-3dplot.tlpsrc + tlpkg/tlpsrc/pst-abspos.tlpsrc + tlpkg/tlpsrc/pst-am.tlpsrc + tlpkg/tlpsrc/pst-antiprism.tlpsrc + tlpkg/tlpsrc/pst-arrow.tlpsrc + tlpkg/tlpsrc/pst-asr.tlpsrc + tlpkg/tlpsrc/pst-bar.tlpsrc + tlpkg/tlpsrc/pst-barcode.tlpsrc + tlpkg/tlpsrc/pst-bezier.tlpsrc + tlpkg/tlpsrc/pst-blur.tlpsrc + tlpkg/tlpsrc/pst-bspline.tlpsrc + tlpkg/tlpsrc/pst-calculate.tlpsrc + tlpkg/tlpsrc/pst-calendar.tlpsrc + tlpkg/tlpsrc/pst-cie.tlpsrc + tlpkg/tlpsrc/pst-circ.tlpsrc + tlpkg/tlpsrc/pst-coil.tlpsrc + tlpkg/tlpsrc/pst-contourplot.tlpsrc + tlpkg/tlpsrc/pst-cox.tlpsrc + tlpkg/tlpsrc/pst-dart.tlpsrc + tlpkg/tlpsrc/pst-dbicons.tlpsrc + tlpkg/tlpsrc/pst-diffraction.tlpsrc + tlpkg/tlpsrc/pst-electricfield.tlpsrc + tlpkg/tlpsrc/pst-eps.tlpsrc + tlpkg/tlpsrc/pst-eucl-translation-bg.tlpsrc + tlpkg/tlpsrc/pst-eucl.tlpsrc + tlpkg/tlpsrc/pst-exa.tlpsrc + tlpkg/tlpsrc/pst-feyn.tlpsrc + tlpkg/tlpsrc/pst-fill.tlpsrc + tlpkg/tlpsrc/pst-fit.tlpsrc + tlpkg/tlpsrc/pst-fr3d.tlpsrc + tlpkg/tlpsrc/pst-fractal.tlpsrc + tlpkg/tlpsrc/pst-fun.tlpsrc + tlpkg/tlpsrc/pst-func.tlpsrc + tlpkg/tlpsrc/pst-gantt.tlpsrc + tlpkg/tlpsrc/pst-geo.tlpsrc + tlpkg/tlpsrc/pst-geometrictools.tlpsrc + tlpkg/tlpsrc/pst-ghsb.tlpsrc + tlpkg/tlpsrc/pst-gr3d.tlpsrc + tlpkg/tlpsrc/pst-grad.tlpsrc + tlpkg/tlpsrc/pst-graphicx.tlpsrc + tlpkg/tlpsrc/pst-infixplot.tlpsrc + tlpkg/tlpsrc/pst-intersect.tlpsrc + tlpkg/tlpsrc/pst-jtree.tlpsrc + tlpkg/tlpsrc/pst-knot.tlpsrc + tlpkg/tlpsrc/pst-labo.tlpsrc + tlpkg/tlpsrc/pst-layout.tlpsrc + tlpkg/tlpsrc/pst-lens.tlpsrc + tlpkg/tlpsrc/pst-light3d.tlpsrc + tlpkg/tlpsrc/pst-lsystem.tlpsrc + tlpkg/tlpsrc/pst-magneticfield.tlpsrc + tlpkg/tlpsrc/pst-marble.tlpsrc + tlpkg/tlpsrc/pst-math.tlpsrc + tlpkg/tlpsrc/pst-mirror.tlpsrc + tlpkg/tlpsrc/pst-moire.tlpsrc + tlpkg/tlpsrc/pst-node.tlpsrc + tlpkg/tlpsrc/pst-ob3d.tlpsrc + tlpkg/tlpsrc/pst-ode.tlpsrc + tlpkg/tlpsrc/pst-optexp.tlpsrc + tlpkg/tlpsrc/pst-optic.tlpsrc + tlpkg/tlpsrc/pst-osci.tlpsrc + tlpkg/tlpsrc/pst-ovl.tlpsrc + tlpkg/tlpsrc/pst-pad.tlpsrc + tlpkg/tlpsrc/pst-pdf.tlpsrc + tlpkg/tlpsrc/pst-pdgr.tlpsrc + tlpkg/tlpsrc/pst-perspective.tlpsrc + tlpkg/tlpsrc/pst-platon.tlpsrc + tlpkg/tlpsrc/pst-plot.tlpsrc + tlpkg/tlpsrc/pst-poker.tlpsrc + tlpkg/tlpsrc/pst-poly.tlpsrc + tlpkg/tlpsrc/pst-pulley.tlpsrc + tlpkg/tlpsrc/pst-qtree.tlpsrc + tlpkg/tlpsrc/pst-rputover.tlpsrc + tlpkg/tlpsrc/pst-rubans.tlpsrc + tlpkg/tlpsrc/pst-shell.tlpsrc + tlpkg/tlpsrc/pst-sigsys.tlpsrc + tlpkg/tlpsrc/pst-slpe.tlpsrc + tlpkg/tlpsrc/pst-solarsystem.tlpsrc + tlpkg/tlpsrc/pst-solides3d.tlpsrc + tlpkg/tlpsrc/pst-soroban.tlpsrc + tlpkg/tlpsrc/pst-spectra.tlpsrc + tlpkg/tlpsrc/pst-spinner.tlpsrc + tlpkg/tlpsrc/pst-spirograph.tlpsrc + tlpkg/tlpsrc/pst-stru.tlpsrc + tlpkg/tlpsrc/pst-support.tlpsrc + tlpkg/tlpsrc/pst-text.tlpsrc + tlpkg/tlpsrc/pst-thick.tlpsrc + tlpkg/tlpsrc/pst-tools.tlpsrc + tlpkg/tlpsrc/pst-tree.tlpsrc + tlpkg/tlpsrc/pst-tvz.tlpsrc + tlpkg/tlpsrc/pst-uml.tlpsrc + tlpkg/tlpsrc/pst-vectorian.tlpsrc + tlpkg/tlpsrc/pst-vehicle.tlpsrc + tlpkg/tlpsrc/pst-venn.tlpsrc + tlpkg/tlpsrc/pst-vowel.tlpsrc + tlpkg/tlpsrc/pst-vue3d.tlpsrc + tlpkg/tlpsrc/pst2pdf.tlpsrc + tlpkg/tlpsrc/pstool.tlpsrc + tlpkg/tlpsrc/pstools.tlpsrc + tlpkg/tlpsrc/pstricks-add.tlpsrc + tlpkg/tlpsrc/pstricks.tlpsrc + tlpkg/tlpsrc/pstricks_calcnotes.tlpsrc + tlpkg/tlpsrc/pstring.tlpsrc + tlpkg/tlpsrc/psutils.tlpsrc + tlpkg/tlpsrc/ptex-base.tlpsrc + tlpkg/tlpsrc/ptex-fontmaps.tlpsrc + tlpkg/tlpsrc/ptex-fonts.tlpsrc + tlpkg/tlpsrc/ptex-manual.tlpsrc + tlpkg/tlpsrc/ptex.tlpsrc + tlpkg/tlpsrc/ptex2pdf.tlpsrc + tlpkg/tlpsrc/ptext.tlpsrc + tlpkg/tlpsrc/ptolemaicastronomy.tlpsrc + tlpkg/tlpsrc/ptptex.tlpsrc + tlpkg/tlpsrc/punk-latex.tlpsrc + tlpkg/tlpsrc/punk.tlpsrc + tlpkg/tlpsrc/punknova.tlpsrc + tlpkg/tlpsrc/purifyeps.tlpsrc + tlpkg/tlpsrc/pxbase.tlpsrc + tlpkg/tlpsrc/pxchfon.tlpsrc + tlpkg/tlpsrc/pxcjkcat.tlpsrc + tlpkg/tlpsrc/pxfonts.tlpsrc + tlpkg/tlpsrc/pxgreeks.tlpsrc + tlpkg/tlpsrc/pxjahyper.tlpsrc + tlpkg/tlpsrc/pxjodel.tlpsrc + tlpkg/tlpsrc/pxpgfmark.tlpsrc + tlpkg/tlpsrc/pxrubrica.tlpsrc + tlpkg/tlpsrc/pxtatescale.tlpsrc + tlpkg/tlpsrc/pxtxalfa.tlpsrc + tlpkg/tlpsrc/pxufont.tlpsrc + tlpkg/tlpsrc/pygmentex.tlpsrc + tlpkg/tlpsrc/python.tlpsrc + tlpkg/tlpsrc/pythonhighlight.tlpsrc + tlpkg/tlpsrc/pythontex.tlpsrc + tlpkg/tlpsrc/qcircuit.tlpsrc + tlpkg/tlpsrc/qcm.tlpsrc + tlpkg/tlpsrc/qobitree.tlpsrc + tlpkg/tlpsrc/qpxqtx.tlpsrc + tlpkg/tlpsrc/qrcode.tlpsrc + tlpkg/tlpsrc/qsharp.tlpsrc + tlpkg/tlpsrc/qstest.tlpsrc + tlpkg/tlpsrc/qsymbols.tlpsrc + tlpkg/tlpsrc/qtree.tlpsrc + tlpkg/tlpsrc/quantikz.tlpsrc + tlpkg/tlpsrc/quattrocento.tlpsrc + tlpkg/tlpsrc/quicktype.tlpsrc + tlpkg/tlpsrc/quotchap.tlpsrc + tlpkg/tlpsrc/quoting.tlpsrc + tlpkg/tlpsrc/quotmark.tlpsrc + tlpkg/tlpsrc/quran-de.tlpsrc + tlpkg/tlpsrc/quran-ur.tlpsrc + tlpkg/tlpsrc/quran.tlpsrc + tlpkg/tlpsrc/r_und_s.tlpsrc + tlpkg/tlpsrc/raleway.tlpsrc + tlpkg/tlpsrc/ran_toks.tlpsrc + tlpkg/tlpsrc/randbild.tlpsrc + tlpkg/tlpsrc/randomlist.tlpsrc + tlpkg/tlpsrc/randomwalk.tlpsrc + tlpkg/tlpsrc/randtext.tlpsrc + tlpkg/tlpsrc/rank-2-roots.tlpsrc + tlpkg/tlpsrc/rccol.tlpsrc + tlpkg/tlpsrc/rcs-multi.tlpsrc + tlpkg/tlpsrc/rcs.tlpsrc + tlpkg/tlpsrc/rcsinfo.tlpsrc + tlpkg/tlpsrc/readarray.tlpsrc + tlpkg/tlpsrc/realboxes.tlpsrc + tlpkg/tlpsrc/realhats.tlpsrc + tlpkg/tlpsrc/realscripts.tlpsrc + tlpkg/tlpsrc/rec-thy.tlpsrc + tlpkg/tlpsrc/recipe.tlpsrc + tlpkg/tlpsrc/recipebook.tlpsrc + tlpkg/tlpsrc/recipecard.tlpsrc + tlpkg/tlpsrc/rectopma.tlpsrc + tlpkg/tlpsrc/recycle.tlpsrc + tlpkg/tlpsrc/refcheck.tlpsrc + tlpkg/tlpsrc/refenums.tlpsrc + tlpkg/tlpsrc/reflectgraphics.tlpsrc + tlpkg/tlpsrc/refman.tlpsrc + tlpkg/tlpsrc/refstyle.tlpsrc + tlpkg/tlpsrc/regcount.tlpsrc + tlpkg/tlpsrc/regexpatch.tlpsrc + tlpkg/tlpsrc/register.tlpsrc + tlpkg/tlpsrc/regstats.tlpsrc + tlpkg/tlpsrc/reledmac.tlpsrc + tlpkg/tlpsrc/relenc.tlpsrc + tlpkg/tlpsrc/relsize.tlpsrc + tlpkg/tlpsrc/reotex.tlpsrc + tlpkg/tlpsrc/repeatindex.tlpsrc + tlpkg/tlpsrc/repere.tlpsrc + tlpkg/tlpsrc/repltext.tlpsrc + tlpkg/tlpsrc/resphilosophica.tlpsrc + tlpkg/tlpsrc/resumecls.tlpsrc + tlpkg/tlpsrc/resumemac.tlpsrc + tlpkg/tlpsrc/returntogrid.tlpsrc + tlpkg/tlpsrc/reverxii.tlpsrc + tlpkg/tlpsrc/revquantum.tlpsrc + tlpkg/tlpsrc/revtex.tlpsrc + tlpkg/tlpsrc/revtex4.tlpsrc + tlpkg/tlpsrc/rgltxdoc.tlpsrc + tlpkg/tlpsrc/ribbonproofs.tlpsrc + tlpkg/tlpsrc/rjlparshap.tlpsrc + tlpkg/tlpsrc/rlepsf.tlpsrc + tlpkg/tlpsrc/rmathbr.tlpsrc + tlpkg/tlpsrc/rmpage.tlpsrc + tlpkg/tlpsrc/roboto.tlpsrc + tlpkg/tlpsrc/robustcommand.tlpsrc + tlpkg/tlpsrc/robustindex.tlpsrc + tlpkg/tlpsrc/roex.tlpsrc + tlpkg/tlpsrc/romanbar.tlpsrc + tlpkg/tlpsrc/romanbarpagenumber.tlpsrc + tlpkg/tlpsrc/romande.tlpsrc + tlpkg/tlpsrc/romanneg.tlpsrc + tlpkg/tlpsrc/romannum.tlpsrc + tlpkg/tlpsrc/rosario.tlpsrc + tlpkg/tlpsrc/rotfloat.tlpsrc + tlpkg/tlpsrc/rotpages.tlpsrc + tlpkg/tlpsrc/roundbox.tlpsrc + tlpkg/tlpsrc/roundrect.tlpsrc + tlpkg/tlpsrc/rrgtrees.tlpsrc + tlpkg/tlpsrc/rsc.tlpsrc + tlpkg/tlpsrc/rsfs.tlpsrc + tlpkg/tlpsrc/rsfso.tlpsrc + tlpkg/tlpsrc/rterface.tlpsrc + tlpkg/tlpsrc/rtkinenc.tlpsrc + tlpkg/tlpsrc/rtklage.tlpsrc + tlpkg/tlpsrc/rubik.tlpsrc + tlpkg/tlpsrc/ruhyphen.tlpsrc + tlpkg/tlpsrc/rulerbox.tlpsrc + tlpkg/tlpsrc/rulercompass.tlpsrc + tlpkg/tlpsrc/russ.tlpsrc + tlpkg/tlpsrc/rutitlepage.tlpsrc + tlpkg/tlpsrc/rviewport.tlpsrc + tlpkg/tlpsrc/rvwrite.tlpsrc + tlpkg/tlpsrc/ryersonsgsthesis.tlpsrc + tlpkg/tlpsrc/ryethesis.tlpsrc + tlpkg/tlpsrc/sa-tikz.tlpsrc + tlpkg/tlpsrc/sageep.tlpsrc + tlpkg/tlpsrc/sanitize-umlaut.tlpsrc + tlpkg/tlpsrc/sanskrit-t1.tlpsrc + tlpkg/tlpsrc/sanskrit.tlpsrc + tlpkg/tlpsrc/sansmath.tlpsrc + tlpkg/tlpsrc/sansmathaccent.tlpsrc + tlpkg/tlpsrc/sansmathfonts.tlpsrc + tlpkg/tlpsrc/sapthesis.tlpsrc + tlpkg/tlpsrc/sasnrdisplay.tlpsrc + tlpkg/tlpsrc/sauerj.tlpsrc + tlpkg/tlpsrc/sauter.tlpsrc + tlpkg/tlpsrc/sauterfonts.tlpsrc + tlpkg/tlpsrc/savefnmark.tlpsrc + tlpkg/tlpsrc/savesym.tlpsrc + tlpkg/tlpsrc/savetrees.tlpsrc + tlpkg/tlpsrc/scale.tlpsrc + tlpkg/tlpsrc/scalebar.tlpsrc + tlpkg/tlpsrc/scalerel.tlpsrc + tlpkg/tlpsrc/scanpages.tlpsrc + tlpkg/tlpsrc/schemabloc.tlpsrc + tlpkg/tlpsrc/schemata.tlpsrc + tlpkg/tlpsrc/scheme-basic.tlpsrc + tlpkg/tlpsrc/scheme-context.tlpsrc + tlpkg/tlpsrc/scheme-full.tlpsrc + tlpkg/tlpsrc/scheme-gust.tlpsrc + tlpkg/tlpsrc/scheme-infraonly.tlpsrc + tlpkg/tlpsrc/scheme-medium.tlpsrc + tlpkg/tlpsrc/scheme-minimal.tlpsrc + tlpkg/tlpsrc/scheme-small.tlpsrc + tlpkg/tlpsrc/scheme-tetex.tlpsrc + tlpkg/tlpsrc/schule.tlpsrc + tlpkg/tlpsrc/schulschriften.tlpsrc + tlpkg/tlpsrc/schwalbe-chess.tlpsrc + tlpkg/tlpsrc/scientific-thesis-cover.tlpsrc + tlpkg/tlpsrc/sciposter.tlpsrc + tlpkg/tlpsrc/sclang-prettifier.tlpsrc + tlpkg/tlpsrc/scratch.tlpsrc + tlpkg/tlpsrc/scratch3.tlpsrc + tlpkg/tlpsrc/scratchx.tlpsrc + tlpkg/tlpsrc/screenplay-pkg.tlpsrc + tlpkg/tlpsrc/screenplay.tlpsrc + tlpkg/tlpsrc/scrjrnl.tlpsrc + tlpkg/tlpsrc/scrlttr2copy.tlpsrc + tlpkg/tlpsrc/scsnowman.tlpsrc + tlpkg/tlpsrc/sdrt.tlpsrc + tlpkg/tlpsrc/sduthesis.tlpsrc + tlpkg/tlpsrc/secdot.tlpsrc + tlpkg/tlpsrc/section.tlpsrc + tlpkg/tlpsrc/sectionbox.tlpsrc + tlpkg/tlpsrc/sectionbreak.tlpsrc + tlpkg/tlpsrc/sectsty.tlpsrc + tlpkg/tlpsrc/seealso.tlpsrc + tlpkg/tlpsrc/seetexk.tlpsrc + tlpkg/tlpsrc/selectp.tlpsrc + tlpkg/tlpsrc/selnolig.tlpsrc + tlpkg/tlpsrc/semantic-markup.tlpsrc + tlpkg/tlpsrc/semantic.tlpsrc + tlpkg/tlpsrc/semaphor.tlpsrc + tlpkg/tlpsrc/seminar.tlpsrc + tlpkg/tlpsrc/semioneside.tlpsrc + tlpkg/tlpsrc/semproc.tlpsrc + tlpkg/tlpsrc/sepfootnotes.tlpsrc + tlpkg/tlpsrc/sepnum.tlpsrc + tlpkg/tlpsrc/seqsplit.tlpsrc + tlpkg/tlpsrc/serbian-apostrophe.tlpsrc + tlpkg/tlpsrc/serbian-date-lat.tlpsrc + tlpkg/tlpsrc/serbian-def-cyr.tlpsrc + tlpkg/tlpsrc/serbian-lig.tlpsrc + tlpkg/tlpsrc/sesamanuel.tlpsrc + tlpkg/tlpsrc/sesstime.tlpsrc + tlpkg/tlpsrc/setdeck.tlpsrc + tlpkg/tlpsrc/setspace.tlpsrc + tlpkg/tlpsrc/seuthesis.tlpsrc + tlpkg/tlpsrc/seuthesix.tlpsrc + tlpkg/tlpsrc/sexam.tlpsrc + tlpkg/tlpsrc/sf298.tlpsrc + tlpkg/tlpsrc/sffms.tlpsrc + tlpkg/tlpsrc/sfg.tlpsrc + tlpkg/tlpsrc/sfmath.tlpsrc + tlpkg/tlpsrc/sgame.tlpsrc + tlpkg/tlpsrc/shade.tlpsrc + tlpkg/tlpsrc/shadethm.tlpsrc + tlpkg/tlpsrc/shadow.tlpsrc + tlpkg/tlpsrc/shadowtext.tlpsrc + tlpkg/tlpsrc/shapepar.tlpsrc + tlpkg/tlpsrc/shapes.tlpsrc + tlpkg/tlpsrc/shdoc.tlpsrc + tlpkg/tlpsrc/shipunov.tlpsrc + tlpkg/tlpsrc/shobhika.tlpsrc + tlpkg/tlpsrc/short-math-guide.tlpsrc + tlpkg/tlpsrc/shorttoc.tlpsrc + tlpkg/tlpsrc/show2e.tlpsrc + tlpkg/tlpsrc/showcharinbox.tlpsrc + tlpkg/tlpsrc/showdim.tlpsrc + tlpkg/tlpsrc/showexpl.tlpsrc + tlpkg/tlpsrc/showhyphens.tlpsrc + tlpkg/tlpsrc/showlabels.tlpsrc + tlpkg/tlpsrc/showtags.tlpsrc + tlpkg/tlpsrc/shuffle.tlpsrc + tlpkg/tlpsrc/sidecap.tlpsrc + tlpkg/tlpsrc/sidenotes.tlpsrc + tlpkg/tlpsrc/sides.tlpsrc + tlpkg/tlpsrc/signchart.tlpsrc + tlpkg/tlpsrc/silence.tlpsrc + tlpkg/tlpsrc/simple-resume-cv.tlpsrc + tlpkg/tlpsrc/simple-thesis-dissertation.tlpsrc + tlpkg/tlpsrc/simplecd.tlpsrc + tlpkg/tlpsrc/simplecv.tlpsrc + tlpkg/tlpsrc/simpleinvoice.tlpsrc + tlpkg/tlpsrc/simplekv.tlpsrc + tlpkg/tlpsrc/simpler-wick.tlpsrc + tlpkg/tlpsrc/simplewick.tlpsrc + tlpkg/tlpsrc/simplified-latex.tlpsrc + tlpkg/tlpsrc/simurgh.tlpsrc + tlpkg/tlpsrc/sitem.tlpsrc + tlpkg/tlpsrc/siunitx.tlpsrc + tlpkg/tlpsrc/skak.tlpsrc + tlpkg/tlpsrc/skaknew.tlpsrc + tlpkg/tlpsrc/skb.tlpsrc + tlpkg/tlpsrc/skdoc.tlpsrc + tlpkg/tlpsrc/skeycommand.tlpsrc + tlpkg/tlpsrc/skeyval.tlpsrc + tlpkg/tlpsrc/skmath.tlpsrc + tlpkg/tlpsrc/skrapport.tlpsrc + tlpkg/tlpsrc/skull.tlpsrc + tlpkg/tlpsrc/slantsc.tlpsrc + tlpkg/tlpsrc/slideshow.tlpsrc + tlpkg/tlpsrc/smalltableof.tlpsrc + tlpkg/tlpsrc/smartdiagram.tlpsrc + tlpkg/tlpsrc/smartref.tlpsrc + tlpkg/tlpsrc/smartunits.tlpsrc + tlpkg/tlpsrc/snapshot.tlpsrc + tlpkg/tlpsrc/snotez.tlpsrc + tlpkg/tlpsrc/songbook.tlpsrc + tlpkg/tlpsrc/songs.tlpsrc + tlpkg/tlpsrc/sort-by-letters.tlpsrc + tlpkg/tlpsrc/soton.tlpsrc + tlpkg/tlpsrc/soul.tlpsrc + tlpkg/tlpsrc/soup.tlpsrc + tlpkg/tlpsrc/sourcecodepro.tlpsrc + tlpkg/tlpsrc/sourcesanspro.tlpsrc + tlpkg/tlpsrc/sourceserifpro.tlpsrc + tlpkg/tlpsrc/spalign.tlpsrc + tlpkg/tlpsrc/spanish-mx.tlpsrc + tlpkg/tlpsrc/spark-otf.tlpsrc + tlpkg/tlpsrc/sparklines.tlpsrc + tlpkg/tlpsrc/spath3.tlpsrc + tlpkg/tlpsrc/spectralsequences.tlpsrc + tlpkg/tlpsrc/spelling.tlpsrc + tlpkg/tlpsrc/sphack.tlpsrc + tlpkg/tlpsrc/sphdthesis.tlpsrc + tlpkg/tlpsrc/spie.tlpsrc + tlpkg/tlpsrc/splines.tlpsrc + tlpkg/tlpsrc/splitbib.tlpsrc + tlpkg/tlpsrc/splitindex.tlpsrc + tlpkg/tlpsrc/spot.tlpsrc + tlpkg/tlpsrc/spotcolor.tlpsrc + tlpkg/tlpsrc/spreadtab.tlpsrc + tlpkg/tlpsrc/spverbatim.tlpsrc + tlpkg/tlpsrc/sr-vorl.tlpsrc + tlpkg/tlpsrc/srbook-mem.tlpsrc + tlpkg/tlpsrc/srcltx.tlpsrc + tlpkg/tlpsrc/srcredact.tlpsrc + tlpkg/tlpsrc/srdp-mathematik.tlpsrc + tlpkg/tlpsrc/sseq.tlpsrc + tlpkg/tlpsrc/sslides.tlpsrc + tlpkg/tlpsrc/stack.tlpsrc + tlpkg/tlpsrc/stackengine.tlpsrc + tlpkg/tlpsrc/stage.tlpsrc + tlpkg/tlpsrc/standalone.tlpsrc + tlpkg/tlpsrc/stanli.tlpsrc + tlpkg/tlpsrc/starfont.tlpsrc + tlpkg/tlpsrc/startex.tlpsrc + tlpkg/tlpsrc/statex.tlpsrc + tlpkg/tlpsrc/statex2.tlpsrc + tlpkg/tlpsrc/statistics.tlpsrc + tlpkg/tlpsrc/statistik.tlpsrc + tlpkg/tlpsrc/statmath.tlpsrc + tlpkg/tlpsrc/staves.tlpsrc + tlpkg/tlpsrc/stdclsdv.tlpsrc + tlpkg/tlpsrc/stdpage.tlpsrc + tlpkg/tlpsrc/stealcaps.tlpsrc + tlpkg/tlpsrc/steinmetz.tlpsrc + tlpkg/tlpsrc/stellenbosch.tlpsrc + tlpkg/tlpsrc/stex.tlpsrc + tlpkg/tlpsrc/stickstoo.tlpsrc + tlpkg/tlpsrc/stix.tlpsrc + tlpkg/tlpsrc/stix2-otf.tlpsrc + tlpkg/tlpsrc/stix2-type1.tlpsrc + tlpkg/tlpsrc/stmaryrd.tlpsrc + tlpkg/tlpsrc/storebox.tlpsrc + tlpkg/tlpsrc/storecmd.tlpsrc + tlpkg/tlpsrc/stringstrings.tlpsrc + tlpkg/tlpsrc/structmech.tlpsrc + tlpkg/tlpsrc/struktex.tlpsrc + tlpkg/tlpsrc/sttools.tlpsrc + tlpkg/tlpsrc/stubs.tlpsrc + tlpkg/tlpsrc/studenthandouts.tlpsrc + tlpkg/tlpsrc/sty2dtx.tlpsrc + tlpkg/tlpsrc/suanpan.tlpsrc + tlpkg/tlpsrc/subdepth.tlpsrc + tlpkg/tlpsrc/subeqn.tlpsrc + tlpkg/tlpsrc/subeqnarray.tlpsrc + tlpkg/tlpsrc/subfig.tlpsrc + tlpkg/tlpsrc/subfigmat.tlpsrc + tlpkg/tlpsrc/subfigure.tlpsrc + tlpkg/tlpsrc/subfiles.tlpsrc + tlpkg/tlpsrc/subfloat.tlpsrc + tlpkg/tlpsrc/substances.tlpsrc + tlpkg/tlpsrc/substitutefont.tlpsrc + tlpkg/tlpsrc/substr.tlpsrc + tlpkg/tlpsrc/subsupscripts.tlpsrc + tlpkg/tlpsrc/sudoku.tlpsrc + tlpkg/tlpsrc/sudokubundle.tlpsrc + tlpkg/tlpsrc/suftesi.tlpsrc + tlpkg/tlpsrc/sugconf.tlpsrc + tlpkg/tlpsrc/superiors.tlpsrc + tlpkg/tlpsrc/supertabular.tlpsrc + tlpkg/tlpsrc/susy.tlpsrc + tlpkg/tlpsrc/svg-inkscape.tlpsrc + tlpkg/tlpsrc/svg.tlpsrc + tlpkg/tlpsrc/svgcolor.tlpsrc + tlpkg/tlpsrc/svn-multi.tlpsrc + tlpkg/tlpsrc/svn-prov.tlpsrc + tlpkg/tlpsrc/svn.tlpsrc + tlpkg/tlpsrc/svninfo.tlpsrc + tlpkg/tlpsrc/svrsymbols.tlpsrc + tlpkg/tlpsrc/swebib.tlpsrc + tlpkg/tlpsrc/swimgraf.tlpsrc + tlpkg/tlpsrc/syllogism.tlpsrc + tlpkg/tlpsrc/symbol.tlpsrc + tlpkg/tlpsrc/sympytexpackage.tlpsrc + tlpkg/tlpsrc/synctex.tlpsrc + tlpkg/tlpsrc/synproof.tlpsrc + tlpkg/tlpsrc/syntax.tlpsrc + tlpkg/tlpsrc/syntrace.tlpsrc + tlpkg/tlpsrc/synttree.tlpsrc + tlpkg/tlpsrc/systeme.tlpsrc + tlpkg/tlpsrc/t-angles.tlpsrc + tlpkg/tlpsrc/t1utils.tlpsrc + tlpkg/tlpsrc/t2.tlpsrc + tlpkg/tlpsrc/tabfigures.tlpsrc + tlpkg/tlpsrc/table-fct.tlpsrc + tlpkg/tlpsrc/tableaux.tlpsrc + tlpkg/tlpsrc/tablefootnote.tlpsrc + tlpkg/tlpsrc/tableof.tlpsrc + tlpkg/tlpsrc/tablestyles.tlpsrc + tlpkg/tlpsrc/tablists.tlpsrc + tlpkg/tlpsrc/tablor.tlpsrc + tlpkg/tlpsrc/tabls.tlpsrc + tlpkg/tlpsrc/tablvar.tlpsrc + tlpkg/tlpsrc/tabriz-thesis.tlpsrc + tlpkg/tlpsrc/tabstackengine.tlpsrc + tlpkg/tlpsrc/tabto-generic.tlpsrc + tlpkg/tlpsrc/tabto-ltx.tlpsrc + tlpkg/tlpsrc/tabu.tlpsrc + tlpkg/tlpsrc/tabularborder.tlpsrc + tlpkg/tlpsrc/tabularcalc.tlpsrc + tlpkg/tlpsrc/tabularew.tlpsrc + tlpkg/tlpsrc/tabulars-e.tlpsrc + tlpkg/tlpsrc/tabulary.tlpsrc + tlpkg/tlpsrc/tabvar.tlpsrc + tlpkg/tlpsrc/tagging.tlpsrc + tlpkg/tlpsrc/tagpair.tlpsrc + tlpkg/tlpsrc/tagpdf.tlpsrc + tlpkg/tlpsrc/talk.tlpsrc + tlpkg/tlpsrc/tamefloats.tlpsrc + tlpkg/tlpsrc/tamethebeast.tlpsrc + tlpkg/tlpsrc/tap.tlpsrc + tlpkg/tlpsrc/tapir.tlpsrc + tlpkg/tlpsrc/tasks.tlpsrc + tlpkg/tlpsrc/tcldoc.tlpsrc + tlpkg/tlpsrc/tcolorbox.tlpsrc + tlpkg/tlpsrc/tdclock.tlpsrc + tlpkg/tlpsrc/tds.tlpsrc + tlpkg/tlpsrc/tdsfrmath.tlpsrc + tlpkg/tlpsrc/technics.tlpsrc + tlpkg/tlpsrc/technion-thesis-template.tlpsrc + tlpkg/tlpsrc/ted.tlpsrc + tlpkg/tlpsrc/templates-fenn.tlpsrc + tlpkg/tlpsrc/templates-sommer.tlpsrc + tlpkg/tlpsrc/templatetools.tlpsrc + tlpkg/tlpsrc/tempora.tlpsrc + tlpkg/tlpsrc/tengwarscript.tlpsrc + tlpkg/tlpsrc/tensor.tlpsrc + tlpkg/tlpsrc/termcal-de.tlpsrc + tlpkg/tlpsrc/termcal.tlpsrc + tlpkg/tlpsrc/termlist.tlpsrc + tlpkg/tlpsrc/termmenu.tlpsrc + tlpkg/tlpsrc/testhyphens.tlpsrc + tlpkg/tlpsrc/testidx.tlpsrc + tlpkg/tlpsrc/tetex.tlpsrc + tlpkg/tlpsrc/tetragonos.tlpsrc + tlpkg/tlpsrc/teubner.tlpsrc + tlpkg/tlpsrc/tex-ewd.tlpsrc + tlpkg/tlpsrc/tex-font-errors-cheatsheet.tlpsrc + tlpkg/tlpsrc/tex-gyre-math.tlpsrc + tlpkg/tlpsrc/tex-gyre.tlpsrc + tlpkg/tlpsrc/tex-ini-files.tlpsrc + tlpkg/tlpsrc/tex-label.tlpsrc + tlpkg/tlpsrc/tex-locale.tlpsrc + tlpkg/tlpsrc/tex-overview.tlpsrc + tlpkg/tlpsrc/tex-ps.tlpsrc + tlpkg/tlpsrc/tex-refs.tlpsrc + tlpkg/tlpsrc/tex-virtual-academy-pl.tlpsrc + tlpkg/tlpsrc/tex.tlpsrc + tlpkg/tlpsrc/tex4ebook.tlpsrc + tlpkg/tlpsrc/tex4ht.tlpsrc + tlpkg/tlpsrc/texapi.tlpsrc + tlpkg/tlpsrc/texbytopic.tlpsrc + tlpkg/tlpsrc/texcount.tlpsrc + tlpkg/tlpsrc/texdate.tlpsrc + tlpkg/tlpsrc/texdef.tlpsrc + tlpkg/tlpsrc/texdiff.tlpsrc + tlpkg/tlpsrc/texdirflatten.tlpsrc + tlpkg/tlpsrc/texdoc.tlpsrc + tlpkg/tlpsrc/texdoctk.tlpsrc + tlpkg/tlpsrc/texdraw.tlpsrc + tlpkg/tlpsrc/texfot.tlpsrc + tlpkg/tlpsrc/texilikechaps.tlpsrc + tlpkg/tlpsrc/texilikecover.tlpsrc + tlpkg/tlpsrc/texinfo.tlpsrc + tlpkg/tlpsrc/texlive-common.tlpsrc + tlpkg/tlpsrc/texlive-cz.tlpsrc + tlpkg/tlpsrc/texlive-de.tlpsrc + tlpkg/tlpsrc/texlive-docindex.tlpsrc + tlpkg/tlpsrc/texlive-en.tlpsrc + tlpkg/tlpsrc/texlive-es.tlpsrc + tlpkg/tlpsrc/texlive-fr.tlpsrc + tlpkg/tlpsrc/texlive-it.tlpsrc + tlpkg/tlpsrc/texlive-msg-translations.tlpsrc + tlpkg/tlpsrc/texlive-pl.tlpsrc + tlpkg/tlpsrc/texlive-ru.tlpsrc + tlpkg/tlpsrc/texlive-scripts.tlpsrc + tlpkg/tlpsrc/texlive-sr.tlpsrc + tlpkg/tlpsrc/texlive-zh-cn.tlpsrc + tlpkg/tlpsrc/texlive.infra.tlpsrc + tlpkg/tlpsrc/texliveonfly.tlpsrc + tlpkg/tlpsrc/texloganalyser.tlpsrc + tlpkg/tlpsrc/texlogos.tlpsrc + tlpkg/tlpsrc/texmate.tlpsrc + tlpkg/tlpsrc/texments.tlpsrc + tlpkg/tlpsrc/texonly.tlpsrc + tlpkg/tlpsrc/texosquery.tlpsrc + tlpkg/tlpsrc/texpower.tlpsrc + tlpkg/tlpsrc/texproposal.tlpsrc + tlpkg/tlpsrc/texshade.tlpsrc + tlpkg/tlpsrc/texsis.tlpsrc + tlpkg/tlpsrc/textcase.tlpsrc + tlpkg/tlpsrc/textfit.tlpsrc + tlpkg/tlpsrc/textglos.tlpsrc + tlpkg/tlpsrc/textgreek.tlpsrc + tlpkg/tlpsrc/textmerg.tlpsrc + tlpkg/tlpsrc/textopo.tlpsrc + tlpkg/tlpsrc/textpath.tlpsrc + tlpkg/tlpsrc/textpos.tlpsrc + tlpkg/tlpsrc/textualicomma.tlpsrc + tlpkg/tlpsrc/texvc.tlpsrc + tlpkg/tlpsrc/texware.tlpsrc + tlpkg/tlpsrc/texworks.tlpsrc + tlpkg/tlpsrc/tfrupee.tlpsrc + tlpkg/tlpsrc/thaienum.tlpsrc + tlpkg/tlpsrc/thaispec.tlpsrc + tlpkg/tlpsrc/thalie.tlpsrc + tlpkg/tlpsrc/theatre.tlpsrc + tlpkg/tlpsrc/theoremref.tlpsrc + tlpkg/tlpsrc/thesis-ekf.tlpsrc + tlpkg/tlpsrc/thesis-gwu.tlpsrc + tlpkg/tlpsrc/thesis-qom.tlpsrc + tlpkg/tlpsrc/thesis-titlepage-fhac.tlpsrc + tlpkg/tlpsrc/thinsp.tlpsrc + tlpkg/tlpsrc/thmbox.tlpsrc + tlpkg/tlpsrc/thmtools.tlpsrc + tlpkg/tlpsrc/threadcol.tlpsrc + tlpkg/tlpsrc/threeddice.tlpsrc + tlpkg/tlpsrc/threeparttable.tlpsrc + tlpkg/tlpsrc/threeparttablex.tlpsrc + tlpkg/tlpsrc/thucoursework.tlpsrc + tlpkg/tlpsrc/thumb.tlpsrc + tlpkg/tlpsrc/thumbpdf.tlpsrc + tlpkg/tlpsrc/thumbs.tlpsrc + tlpkg/tlpsrc/thumby.tlpsrc + tlpkg/tlpsrc/thuthesis.tlpsrc + tlpkg/tlpsrc/ticket.tlpsrc + tlpkg/tlpsrc/ticollege.tlpsrc + tlpkg/tlpsrc/tie.tlpsrc + tlpkg/tlpsrc/tikz-3dplot.tlpsrc + tlpkg/tlpsrc/tikz-bayesnet.tlpsrc + tlpkg/tlpsrc/tikz-cd.tlpsrc + tlpkg/tlpsrc/tikz-dependency.tlpsrc + tlpkg/tlpsrc/tikz-dimline.tlpsrc + tlpkg/tlpsrc/tikz-feynhand.tlpsrc + tlpkg/tlpsrc/tikz-feynman.tlpsrc + tlpkg/tlpsrc/tikz-imagelabels.tlpsrc + tlpkg/tlpsrc/tikz-inet.tlpsrc + tlpkg/tlpsrc/tikz-kalender.tlpsrc + tlpkg/tlpsrc/tikz-karnaugh.tlpsrc + tlpkg/tlpsrc/tikz-ladder.tlpsrc + tlpkg/tlpsrc/tikz-layers.tlpsrc + tlpkg/tlpsrc/tikz-nef.tlpsrc + tlpkg/tlpsrc/tikz-network.tlpsrc + tlpkg/tlpsrc/tikz-opm.tlpsrc + tlpkg/tlpsrc/tikz-optics.tlpsrc + tlpkg/tlpsrc/tikz-page.tlpsrc + tlpkg/tlpsrc/tikz-palattice.tlpsrc + tlpkg/tlpsrc/tikz-qtree.tlpsrc + tlpkg/tlpsrc/tikz-relay.tlpsrc + tlpkg/tlpsrc/tikz-sfc.tlpsrc + tlpkg/tlpsrc/tikz-timing.tlpsrc + tlpkg/tlpsrc/tikz-truchet.tlpsrc + tlpkg/tlpsrc/tikzcodeblocks.tlpsrc + tlpkg/tlpsrc/tikzducks.tlpsrc + tlpkg/tlpsrc/tikzinclude.tlpsrc + tlpkg/tlpsrc/tikzlings.tlpsrc + tlpkg/tlpsrc/tikzmark.tlpsrc + tlpkg/tlpsrc/tikzmarmots.tlpsrc + tlpkg/tlpsrc/tikzorbital.tlpsrc + tlpkg/tlpsrc/tikzpagenodes.tlpsrc + tlpkg/tlpsrc/tikzpeople.tlpsrc + tlpkg/tlpsrc/tikzpfeile.tlpsrc + tlpkg/tlpsrc/tikzposter.tlpsrc + tlpkg/tlpsrc/tikzscale.tlpsrc + tlpkg/tlpsrc/tikzsymbols.tlpsrc + tlpkg/tlpsrc/timbreicmc.tlpsrc + tlpkg/tlpsrc/times.tlpsrc + tlpkg/tlpsrc/timetable.tlpsrc + tlpkg/tlpsrc/timing-diagrams.tlpsrc + tlpkg/tlpsrc/tinos.tlpsrc + tlpkg/tlpsrc/tipa-de.tlpsrc + tlpkg/tlpsrc/tipa.tlpsrc + tlpkg/tlpsrc/tipfr.tlpsrc + tlpkg/tlpsrc/titlecaps.tlpsrc + tlpkg/tlpsrc/titlefoot.tlpsrc + tlpkg/tlpsrc/titlepages.tlpsrc + tlpkg/tlpsrc/titlepic.tlpsrc + tlpkg/tlpsrc/titleref.tlpsrc + tlpkg/tlpsrc/titlesec.tlpsrc + tlpkg/tlpsrc/titling.tlpsrc + tlpkg/tlpsrc/tkz-base.tlpsrc + tlpkg/tlpsrc/tkz-berge.tlpsrc + tlpkg/tlpsrc/tkz-doc.tlpsrc + tlpkg/tlpsrc/tkz-euclide.tlpsrc + tlpkg/tlpsrc/tkz-fct.tlpsrc + tlpkg/tlpsrc/tkz-graph.tlpsrc + tlpkg/tlpsrc/tkz-kiviat.tlpsrc + tlpkg/tlpsrc/tkz-linknodes.tlpsrc + tlpkg/tlpsrc/tkz-orm.tlpsrc + tlpkg/tlpsrc/tkz-tab.tlpsrc + tlpkg/tlpsrc/tlc-article.tlpsrc + tlpkg/tlpsrc/tlc2.tlpsrc + tlpkg/tlpsrc/tlcockpit.tlpsrc + tlpkg/tlpsrc/tlgs.win32.tlpsrc + tlpkg/tlpsrc/tlperl.win32.tlpsrc + tlpkg/tlpsrc/tlpsv.win32.tlpsrc + tlpkg/tlpsrc/tlshell.tlpsrc + tlpkg/tlpsrc/tocbibind.tlpsrc + tlpkg/tlpsrc/tocdata.tlpsrc + tlpkg/tlpsrc/tocloft.tlpsrc + tlpkg/tlpsrc/tocvsec2.tlpsrc + tlpkg/tlpsrc/todo.tlpsrc + tlpkg/tlpsrc/todonotes.tlpsrc + tlpkg/tlpsrc/tokenizer.tlpsrc + tlpkg/tlpsrc/toolbox.tlpsrc + tlpkg/tlpsrc/tools.tlpsrc + tlpkg/tlpsrc/topfloat.tlpsrc + tlpkg/tlpsrc/topiclongtable.tlpsrc + tlpkg/tlpsrc/topletter.tlpsrc + tlpkg/tlpsrc/toptesi.tlpsrc + tlpkg/tlpsrc/totcount.tlpsrc + tlpkg/tlpsrc/totpages.tlpsrc + tlpkg/tlpsrc/tpic2pdftex.tlpsrc + tlpkg/tlpsrc/tpslifonts.tlpsrc + tlpkg/tlpsrc/tqft.tlpsrc + tlpkg/tlpsrc/tracklang.tlpsrc + tlpkg/tlpsrc/trajan.tlpsrc + tlpkg/tlpsrc/tram.tlpsrc + tlpkg/tlpsrc/translation-array-fr.tlpsrc + tlpkg/tlpsrc/translation-arsclassica-de.tlpsrc + tlpkg/tlpsrc/translation-biblatex-de.tlpsrc + tlpkg/tlpsrc/translation-chemsym-de.tlpsrc + tlpkg/tlpsrc/translation-dcolumn-fr.tlpsrc + tlpkg/tlpsrc/translation-ecv-de.tlpsrc + tlpkg/tlpsrc/translation-enumitem-de.tlpsrc + tlpkg/tlpsrc/translation-europecv-de.tlpsrc + tlpkg/tlpsrc/translation-filecontents-de.tlpsrc + tlpkg/tlpsrc/translation-moreverb-de.tlpsrc + tlpkg/tlpsrc/translation-natbib-fr.tlpsrc + tlpkg/tlpsrc/translation-tabbing-fr.tlpsrc + tlpkg/tlpsrc/translations.tlpsrc + tlpkg/tlpsrc/translator.tlpsrc + tlpkg/tlpsrc/tree-dvips.tlpsrc + tlpkg/tlpsrc/treetex.tlpsrc + tlpkg/tlpsrc/trfsigns.tlpsrc + tlpkg/tlpsrc/trigonometry.tlpsrc + tlpkg/tlpsrc/trimspaces.tlpsrc + tlpkg/tlpsrc/trivfloat.tlpsrc + tlpkg/tlpsrc/trsym.tlpsrc + tlpkg/tlpsrc/truncate.tlpsrc + tlpkg/tlpsrc/tsemlines.tlpsrc + tlpkg/tlpsrc/ttfutils.tlpsrc + tlpkg/tlpsrc/tucv.tlpsrc + tlpkg/tlpsrc/tudscr.tlpsrc + tlpkg/tlpsrc/tufte-latex.tlpsrc + tlpkg/tlpsrc/tugboat-plain.tlpsrc + tlpkg/tlpsrc/tugboat.tlpsrc + tlpkg/tlpsrc/tui.tlpsrc + tlpkg/tlpsrc/turabian-formatting.tlpsrc + tlpkg/tlpsrc/turabian.tlpsrc + tlpkg/tlpsrc/turkmen.tlpsrc + tlpkg/tlpsrc/turnstile.tlpsrc + tlpkg/tlpsrc/turnthepage.tlpsrc + tlpkg/tlpsrc/twoinone.tlpsrc + tlpkg/tlpsrc/twoup.tlpsrc + tlpkg/tlpsrc/txfonts.tlpsrc + tlpkg/tlpsrc/txfontsb.tlpsrc + tlpkg/tlpsrc/txgreeks.tlpsrc + tlpkg/tlpsrc/txuprcal.tlpsrc + tlpkg/tlpsrc/type1cm.tlpsrc + tlpkg/tlpsrc/typed-checklist.tlpsrc + tlpkg/tlpsrc/typeface.tlpsrc + tlpkg/tlpsrc/typehtml.tlpsrc + tlpkg/tlpsrc/typeoutfileinfo.tlpsrc + tlpkg/tlpsrc/typewriter.tlpsrc + tlpkg/tlpsrc/typicons.tlpsrc + tlpkg/tlpsrc/typoaid.tlpsrc + tlpkg/tlpsrc/typogrid.tlpsrc + tlpkg/tlpsrc/uaclasses.tlpsrc + tlpkg/tlpsrc/uafthesis.tlpsrc + tlpkg/tlpsrc/uantwerpendocs.tlpsrc + tlpkg/tlpsrc/uassign.tlpsrc + tlpkg/tlpsrc/ucalgmthesis.tlpsrc + tlpkg/tlpsrc/ucbthesis.tlpsrc + tlpkg/tlpsrc/ucdavisthesis.tlpsrc + tlpkg/tlpsrc/ucharcat.tlpsrc + tlpkg/tlpsrc/ucharclasses.tlpsrc + tlpkg/tlpsrc/ucs.tlpsrc + tlpkg/tlpsrc/ucsmonograph.tlpsrc + tlpkg/tlpsrc/ucthesis.tlpsrc + tlpkg/tlpsrc/udesoftec.tlpsrc + tlpkg/tlpsrc/uebungsblatt.tlpsrc + tlpkg/tlpsrc/uestcthesis.tlpsrc + tlpkg/tlpsrc/uhc.tlpsrc + tlpkg/tlpsrc/uhhassignment.tlpsrc + tlpkg/tlpsrc/uhrzeit.tlpsrc + tlpkg/tlpsrc/uiucredborder.tlpsrc + tlpkg/tlpsrc/uiucthesis.tlpsrc + tlpkg/tlpsrc/ukrhyph.tlpsrc + tlpkg/tlpsrc/ulem.tlpsrc + tlpkg/tlpsrc/ulqda.tlpsrc + tlpkg/tlpsrc/ulthese.tlpsrc + tlpkg/tlpsrc/umbclegislation.tlpsrc + tlpkg/tlpsrc/umich-thesis.tlpsrc + tlpkg/tlpsrc/uml.tlpsrc + tlpkg/tlpsrc/umlaute.tlpsrc + tlpkg/tlpsrc/umoline.tlpsrc + tlpkg/tlpsrc/umthesis.tlpsrc + tlpkg/tlpsrc/umtypewriter.tlpsrc + tlpkg/tlpsrc/unamth-template.tlpsrc + tlpkg/tlpsrc/unamthesis.tlpsrc + tlpkg/tlpsrc/undergradmath.tlpsrc + tlpkg/tlpsrc/underlin.tlpsrc + tlpkg/tlpsrc/underoverlap.tlpsrc + tlpkg/tlpsrc/underscore.tlpsrc + tlpkg/tlpsrc/undolabl.tlpsrc + tlpkg/tlpsrc/unfonts-core.tlpsrc + tlpkg/tlpsrc/unfonts-extra.tlpsrc + tlpkg/tlpsrc/uni-wtal-ger.tlpsrc + tlpkg/tlpsrc/uni-wtal-lin.tlpsrc + tlpkg/tlpsrc/unicode-bidi.tlpsrc + tlpkg/tlpsrc/unicode-data.tlpsrc + tlpkg/tlpsrc/unicode-math.tlpsrc + tlpkg/tlpsrc/unisugar.tlpsrc + tlpkg/tlpsrc/unitn-bimrep.tlpsrc + tlpkg/tlpsrc/units.tlpsrc + tlpkg/tlpsrc/unitsdef.tlpsrc + tlpkg/tlpsrc/universa.tlpsrc + tlpkg/tlpsrc/universalis.tlpsrc + tlpkg/tlpsrc/univie-ling.tlpsrc + tlpkg/tlpsrc/unravel.tlpsrc + tlpkg/tlpsrc/unswcover.tlpsrc + tlpkg/tlpsrc/uothesis.tlpsrc + tlpkg/tlpsrc/uowthesis.tlpsrc + tlpkg/tlpsrc/uowthesistitlepage.tlpsrc + tlpkg/tlpsrc/upca.tlpsrc + tlpkg/tlpsrc/updmap-map.tlpsrc + tlpkg/tlpsrc/uplatex.tlpsrc + tlpkg/tlpsrc/upmethodology.tlpsrc + tlpkg/tlpsrc/uppunctlm.tlpsrc + tlpkg/tlpsrc/upquote.tlpsrc + tlpkg/tlpsrc/uptex-base.tlpsrc + tlpkg/tlpsrc/uptex-fonts.tlpsrc + tlpkg/tlpsrc/uptex.tlpsrc + tlpkg/tlpsrc/upzhkinsoku.tlpsrc + tlpkg/tlpsrc/urcls.tlpsrc + tlpkg/tlpsrc/uri.tlpsrc + tlpkg/tlpsrc/url.tlpsrc + tlpkg/tlpsrc/urlbst.tlpsrc + tlpkg/tlpsrc/urwchancal.tlpsrc + tlpkg/tlpsrc/usebib.tlpsrc + tlpkg/tlpsrc/ushort.tlpsrc + tlpkg/tlpsrc/uspace.tlpsrc + tlpkg/tlpsrc/uspatent.tlpsrc + tlpkg/tlpsrc/ut-thesis.tlpsrc + tlpkg/tlpsrc/utexasthesis.tlpsrc + tlpkg/tlpsrc/utf8mex.tlpsrc + tlpkg/tlpsrc/utopia.tlpsrc + tlpkg/tlpsrc/uwmslide.tlpsrc + tlpkg/tlpsrc/uwthesis.tlpsrc + tlpkg/tlpsrc/vak.tlpsrc + tlpkg/tlpsrc/vancouver.tlpsrc + tlpkg/tlpsrc/variablelm.tlpsrc + tlpkg/tlpsrc/variations.tlpsrc + tlpkg/tlpsrc/varindex.tlpsrc + tlpkg/tlpsrc/varisize.tlpsrc + tlpkg/tlpsrc/varsfromjobname.tlpsrc + tlpkg/tlpsrc/varwidth.tlpsrc + tlpkg/tlpsrc/vaucanson-g.tlpsrc + tlpkg/tlpsrc/vdmlisting.tlpsrc + tlpkg/tlpsrc/velthuis.tlpsrc + tlpkg/tlpsrc/venn.tlpsrc + tlpkg/tlpsrc/venndiagram.tlpsrc + tlpkg/tlpsrc/venturisadf.tlpsrc + tlpkg/tlpsrc/verbasef.tlpsrc + tlpkg/tlpsrc/verbatimbox.tlpsrc + tlpkg/tlpsrc/verbatimcopy.tlpsrc + tlpkg/tlpsrc/verbdef.tlpsrc + tlpkg/tlpsrc/verbments.tlpsrc + tlpkg/tlpsrc/verse.tlpsrc + tlpkg/tlpsrc/version.tlpsrc + tlpkg/tlpsrc/versions.tlpsrc + tlpkg/tlpsrc/versonotes.tlpsrc + tlpkg/tlpsrc/vertbars.tlpsrc + tlpkg/tlpsrc/vgrid.tlpsrc + tlpkg/tlpsrc/vhistory.tlpsrc + tlpkg/tlpsrc/visualfaq.tlpsrc + tlpkg/tlpsrc/visualpstricks.tlpsrc + tlpkg/tlpsrc/visualtikz.tlpsrc + tlpkg/tlpsrc/vlna.tlpsrc + tlpkg/tlpsrc/vmargin.tlpsrc + tlpkg/tlpsrc/vntex.tlpsrc + tlpkg/tlpsrc/vocaltract.tlpsrc + tlpkg/tlpsrc/volumes.tlpsrc + tlpkg/tlpsrc/voss-mathcol.tlpsrc + tlpkg/tlpsrc/vpe.tlpsrc + tlpkg/tlpsrc/vruler.tlpsrc + tlpkg/tlpsrc/vtable.tlpsrc + tlpkg/tlpsrc/vwcol.tlpsrc + tlpkg/tlpsrc/wadalab.tlpsrc + tlpkg/tlpsrc/wallcalendar.tlpsrc + tlpkg/tlpsrc/wallpaper.tlpsrc + tlpkg/tlpsrc/warning.tlpsrc + tlpkg/tlpsrc/warpcol.tlpsrc + tlpkg/tlpsrc/was.tlpsrc + tlpkg/tlpsrc/wasy.tlpsrc + tlpkg/tlpsrc/wasy2-ps.tlpsrc + tlpkg/tlpsrc/wasysym.tlpsrc + tlpkg/tlpsrc/web.tlpsrc + tlpkg/tlpsrc/webguide.tlpsrc + tlpkg/tlpsrc/webquiz.tlpsrc + tlpkg/tlpsrc/widetable.tlpsrc + tlpkg/tlpsrc/widows-and-orphans.tlpsrc + tlpkg/tlpsrc/williams.tlpsrc + tlpkg/tlpsrc/windycity.tlpsrc + tlpkg/tlpsrc/wintools.win32.tlpsrc + tlpkg/tlpsrc/withargs.tlpsrc + tlpkg/tlpsrc/witharrows.tlpsrc + tlpkg/tlpsrc/wnri-latex.tlpsrc + tlpkg/tlpsrc/wnri.tlpsrc + tlpkg/tlpsrc/wordcount.tlpsrc + tlpkg/tlpsrc/wordlike.tlpsrc + tlpkg/tlpsrc/worksheet.tlpsrc + tlpkg/tlpsrc/wrapfig.tlpsrc + tlpkg/tlpsrc/wsemclassic.tlpsrc + tlpkg/tlpsrc/wsuipa.tlpsrc + tlpkg/tlpsrc/wtref.tlpsrc + tlpkg/tlpsrc/xargs.tlpsrc + tlpkg/tlpsrc/xassoccnt.tlpsrc + tlpkg/tlpsrc/xbmks.tlpsrc + tlpkg/tlpsrc/xcharter.tlpsrc + tlpkg/tlpsrc/xcite.tlpsrc + tlpkg/tlpsrc/xcjk2uni.tlpsrc + tlpkg/tlpsrc/xcntperchap.tlpsrc + tlpkg/tlpsrc/xcolor-material.tlpsrc + tlpkg/tlpsrc/xcolor-solarized.tlpsrc + tlpkg/tlpsrc/xcolor.tlpsrc + tlpkg/tlpsrc/xcomment.tlpsrc + tlpkg/tlpsrc/xcookybooky.tlpsrc + tlpkg/tlpsrc/xcpdftips.tlpsrc + tlpkg/tlpsrc/xdoc.tlpsrc + tlpkg/tlpsrc/xduthesis.tlpsrc + tlpkg/tlpsrc/xdvi.tlpsrc + tlpkg/tlpsrc/xebaposter.tlpsrc + tlpkg/tlpsrc/xechangebar.tlpsrc + tlpkg/tlpsrc/xecjk.tlpsrc + tlpkg/tlpsrc/xecolor.tlpsrc + tlpkg/tlpsrc/xecyr.tlpsrc + tlpkg/tlpsrc/xeindex.tlpsrc + tlpkg/tlpsrc/xellipsis.tlpsrc + tlpkg/tlpsrc/xepersian.tlpsrc + tlpkg/tlpsrc/xesearch.tlpsrc + tlpkg/tlpsrc/xespotcolor.tlpsrc + tlpkg/tlpsrc/xetex-devanagari.tlpsrc + tlpkg/tlpsrc/xetex-itrans.tlpsrc + tlpkg/tlpsrc/xetex-pstricks.tlpsrc + tlpkg/tlpsrc/xetex-tibetan.tlpsrc + tlpkg/tlpsrc/xetex.tlpsrc + tlpkg/tlpsrc/xetexconfig.tlpsrc + tlpkg/tlpsrc/xetexfontinfo.tlpsrc + tlpkg/tlpsrc/xetexko.tlpsrc + tlpkg/tlpsrc/xetexref.tlpsrc + tlpkg/tlpsrc/xevlna.tlpsrc + tlpkg/tlpsrc/xfakebold.tlpsrc + tlpkg/tlpsrc/xfor.tlpsrc + tlpkg/tlpsrc/xgreek.tlpsrc + tlpkg/tlpsrc/xhfill.tlpsrc + tlpkg/tlpsrc/xifthen.tlpsrc + tlpkg/tlpsrc/xii-lat.tlpsrc + tlpkg/tlpsrc/xii.tlpsrc + tlpkg/tlpsrc/xindex.tlpsrc + tlpkg/tlpsrc/xindy.tlpsrc + tlpkg/tlpsrc/xint.tlpsrc + tlpkg/tlpsrc/xits.tlpsrc + tlpkg/tlpsrc/xkeyval.tlpsrc + tlpkg/tlpsrc/xlop.tlpsrc + tlpkg/tlpsrc/xltabular.tlpsrc + tlpkg/tlpsrc/xltxtra.tlpsrc + tlpkg/tlpsrc/xmltex.tlpsrc + tlpkg/tlpsrc/xmltexconfig.tlpsrc + tlpkg/tlpsrc/xmpincl.tlpsrc + tlpkg/tlpsrc/xnewcommand.tlpsrc + tlpkg/tlpsrc/xoptarg.tlpsrc + tlpkg/tlpsrc/xpatch.tlpsrc + tlpkg/tlpsrc/xpeek.tlpsrc + tlpkg/tlpsrc/xpiano.tlpsrc + tlpkg/tlpsrc/xpicture.tlpsrc + tlpkg/tlpsrc/xpinyin.tlpsrc + tlpkg/tlpsrc/xprintlen.tlpsrc + tlpkg/tlpsrc/xpunctuate.tlpsrc + tlpkg/tlpsrc/xq.tlpsrc + tlpkg/tlpsrc/xsavebox.tlpsrc + tlpkg/tlpsrc/xsim.tlpsrc + tlpkg/tlpsrc/xskak.tlpsrc + tlpkg/tlpsrc/xstring.tlpsrc + tlpkg/tlpsrc/xtab.tlpsrc + tlpkg/tlpsrc/xtuthesis.tlpsrc + tlpkg/tlpsrc/xunicode.tlpsrc + tlpkg/tlpsrc/xurl.tlpsrc + tlpkg/tlpsrc/xwatermark.tlpsrc + tlpkg/tlpsrc/xyling.tlpsrc + tlpkg/tlpsrc/xymtex.tlpsrc + tlpkg/tlpsrc/xypic-tut-pt.tlpsrc + tlpkg/tlpsrc/xypic.tlpsrc + tlpkg/tlpsrc/xytree.tlpsrc + tlpkg/tlpsrc/yafoot.tlpsrc + tlpkg/tlpsrc/yagusylo.tlpsrc + tlpkg/tlpsrc/yaletter.tlpsrc + tlpkg/tlpsrc/yannisgr.tlpsrc + tlpkg/tlpsrc/yathesis.tlpsrc + tlpkg/tlpsrc/yax.tlpsrc + tlpkg/tlpsrc/ycbook.tlpsrc + tlpkg/tlpsrc/ydoc.tlpsrc + tlpkg/tlpsrc/yfonts-t1.tlpsrc + tlpkg/tlpsrc/yfonts.tlpsrc + tlpkg/tlpsrc/yhmath.tlpsrc + tlpkg/tlpsrc/yinit-otf.tlpsrc + tlpkg/tlpsrc/york-thesis.tlpsrc + tlpkg/tlpsrc/youngtab.tlpsrc + tlpkg/tlpsrc/yplan.tlpsrc + tlpkg/tlpsrc/ytableau.tlpsrc + tlpkg/tlpsrc/zapfchan.tlpsrc + tlpkg/tlpsrc/zapfding.tlpsrc + tlpkg/tlpsrc/zebra-goodies.tlpsrc + tlpkg/tlpsrc/zed-csp.tlpsrc + tlpkg/tlpsrc/zhlineskip.tlpsrc + tlpkg/tlpsrc/zhlipsum.tlpsrc + tlpkg/tlpsrc/zhmetrics-uptex.tlpsrc + tlpkg/tlpsrc/zhmetrics.tlpsrc + tlpkg/tlpsrc/zhnumber.tlpsrc + tlpkg/tlpsrc/zhspacing.tlpsrc + tlpkg/tlpsrc/ziffer.tlpsrc + tlpkg/tlpsrc/zlmtt.tlpsrc + tlpkg/tlpsrc/zootaxa-bst.tlpsrc + tlpkg/tlpsrc/zwgetfdate.tlpsrc + tlpkg/tlpsrc/zwpagelayout.tlpsrc + tlpkg/tlpsrc/zxjafbfont.tlpsrc + tlpkg/tlpsrc/zxjafont.tlpsrc + tlpkg/tlpsrc/zxjatype.tlpsrc + +name 00texlive.installation +category TLCore +revision 45627 +shortdesc TeX Live configuration settings +longdesc This package serves on an installed system as configuration +longdesc file. We have to remember these settings for additional package +longdesc installation, removal, etc. There are two types here: 1) If +longdesc the key starts with opt_ this is an option that can be set by +longdesc the user either at installation time or via tlmgr later. 2) If +longdesc the key starts with setting_ this value cannot be changed by +longdesc the user directly with tlmgr, but only by other actions. +longdesc Currently there are only two settings supported, and the second +longdesc is only used in unusual cases: 2a) +longdesc setting_available_architectures lists all available platforms +longdesc and should be always present 2b) setting_platform *overrides* +longdesc the auto-detected platform. This value will only be present +longdesc when you forced a specific architecture with -force-arch to +longdesc install-tl The value of __MASTER__ for the location field +longdesc tells the installer to use the present directory itself. For +longdesc example, the DVD can be mounted anywhere and we want the +longdesc installer to work. Concerning the 00* names: All packages +longdesc starting with 00texlive are ``virtual packages'', in the sense +longdesc that no containers are generated and these packages are never +longdesc split into .src and .doc sub-packages in the tlpdb. +depend setting_available_architectures:aarch64-linux amd64-freebsd amd64-netbsd armhf-linux i386-cygwin i386-freebsd i386-linux i386-netbsd i386-solaris win32 x86_64-cygwin x86_64-darwin x86_64-darwinlegacy x86_64-linux x86_64-linuxmusl x86_64-solaris +depend opt_autobackup:1 +depend opt_backupdir:tlpkg/backups +depend opt_create_formats:1 +depend opt_desktop_integration:1 +depend opt_file_assocs:1 +depend opt_generate_updmap:0 +depend opt_install_docfiles:1 +depend opt_install_srcfiles:1 +depend opt_location:__MASTER__ +depend opt_post_code:1 +depend opt_sys_bin:/usr/local/bin +depend opt_sys_info:/usr/local/share/info +depend opt_sys_man:/usr/local/share/man +depend opt_w32_multi_user:1 + +name 00texlive.installer +category TLCore +revision 51185 +shortdesc TeX Live standalone installer package +longdesc This package defines the files to go into the installer +longdesc archives (install-tl-unx.tar.gz, install-tl.zip) built by the +longdesc tl-make-installer script. Most of what's here is also included +longdesc in the texlive.infra package -- ordinarily, duplicates are not +longdesc allowed, but in this case, 00texlive.installer is never used +longdesc *except* to build the installer archives, so it's ok. For +longdesc information on the 00texlive prefix see +longdesc 00texlive.installation(.tlpsrc) +runfiles size=115 + install-tl + release-texlive.txt + tlpkg/installer/COPYING.MinGW-runtime.txt + tlpkg/installer/DirSelect.pm + tlpkg/installer/config.guess + tlpkg/installer/ctan-mirrors.pl + tlpkg/installer/install-menu-extl.pl + tlpkg/installer/install-menu-perltk.pl + tlpkg/installer/install-menu-text.pl + tlpkg/installer/install-menu-wizard.pl + tlpkg/installer/install-tl-gui.tcl + tlpkg/installer/install-tl.html + tlpkg/installer/installer-options.txt + tlpkg/installer/texdirsel.pl + tlpkg/installer/texlion.gif + tlpkg/installer/texlive.png + tlpkg/installer/tl-cmd.bat + tlpkg/installer/tl-tray-menu.ini + tlpkg/installer/tracked-install.pl + tlpkg/tltcl/gui_err.tcl + tlpkg/tltcl/tlmgr.gif + tlpkg/tltcl/tltcl.tcl +binfiles arch=aarch64-linux size=41 + tlpkg/installer/xz/xz.aarch64-linux +binfiles arch=amd64-freebsd size=202 + tlpkg/installer/wget/wget.amd64-freebsd + tlpkg/installer/xz/xz.amd64-freebsd +binfiles arch=amd64-netbsd size=195 + tlpkg/installer/wget/wget.amd64-netbsd + tlpkg/installer/xz/xz.amd64-netbsd +binfiles arch=armhf-linux size=42 + tlpkg/installer/xz/xz.armhf-linux +binfiles arch=i386-cygwin size=49 + tlpkg/installer/xz/xz.i386-cygwin.exe +binfiles arch=i386-freebsd size=178 + tlpkg/installer/wget/wget.i386-freebsd + tlpkg/installer/xz/xz.i386-freebsd +binfiles arch=i386-linux size=51 + tlpkg/installer/xz/xz.i386-linux +binfiles arch=i386-netbsd size=183 + tlpkg/installer/wget/wget.i386-netbsd + tlpkg/installer/xz/xz.i386-netbsd +binfiles arch=i386-solaris size=42 + tlpkg/installer/xz/xz.i386-solaris +binfiles arch=win32 size=13628 + install-tl-windows.bat + tlpkg/installer/tar.exe + tlpkg/installer/wget/wget.exe + tlpkg/installer/xz/xz.exe + tlpkg/tlperl/README.TEXLIVE + tlpkg/tlperl/bin/libgcc_s_dw2-1.dll + tlpkg/tlperl/bin/libstdc++-6.dll + tlpkg/tlperl/bin/libwinpthread-1.dll + tlpkg/tlperl/bin/perl.exe + tlpkg/tlperl/bin/perl5.28.1.exe + tlpkg/tlperl/bin/perl528.dll + tlpkg/tlperl/bin/perlglob.exe + tlpkg/tlperl/bin/wperl.exe + tlpkg/tlperl/lib/.packlist + tlpkg/tlperl/lib/AnyDBM_File.pm + tlpkg/tlperl/lib/App/Cpan.pm + tlpkg/tlperl/lib/App/Prove.pm + tlpkg/tlperl/lib/App/Prove/State.pm + tlpkg/tlperl/lib/App/Prove/State/Result.pm + tlpkg/tlperl/lib/App/Prove/State/Result/Test.pm + tlpkg/tlperl/lib/Archive/Tar.pm + tlpkg/tlperl/lib/Archive/Tar/Constant.pm + tlpkg/tlperl/lib/Archive/Tar/File.pm + tlpkg/tlperl/lib/Attribute/Handlers.pm + tlpkg/tlperl/lib/AutoLoader.pm + tlpkg/tlperl/lib/AutoSplit.pm + tlpkg/tlperl/lib/B.pm + tlpkg/tlperl/lib/B/Concise.pm + tlpkg/tlperl/lib/B/Debug.pm + tlpkg/tlperl/lib/B/Deparse.pm + tlpkg/tlperl/lib/B/Op_private.pm + tlpkg/tlperl/lib/B/Showlex.pm + tlpkg/tlperl/lib/B/Terse.pm + tlpkg/tlperl/lib/B/Xref.pm + tlpkg/tlperl/lib/Benchmark.pm + tlpkg/tlperl/lib/CORE.pod + tlpkg/tlperl/lib/CORE/EXTERN.h + tlpkg/tlperl/lib/CORE/INTERN.h + tlpkg/tlperl/lib/CORE/XSUB.h + tlpkg/tlperl/lib/CORE/arpa/inet.h + tlpkg/tlperl/lib/CORE/av.h + tlpkg/tlperl/lib/CORE/bitcount.h + tlpkg/tlperl/lib/CORE/charclass_invlists.h + tlpkg/tlperl/lib/CORE/config.h + tlpkg/tlperl/lib/CORE/cop.h + tlpkg/tlperl/lib/CORE/cv.h + tlpkg/tlperl/lib/CORE/dirent.h + tlpkg/tlperl/lib/CORE/dosish.h + tlpkg/tlperl/lib/CORE/dquote_inline.h + tlpkg/tlperl/lib/CORE/ebcdic_tables.h + tlpkg/tlperl/lib/CORE/embed.h + tlpkg/tlperl/lib/CORE/embedvar.h + tlpkg/tlperl/lib/CORE/fakesdio.h + tlpkg/tlperl/lib/CORE/feature.h + tlpkg/tlperl/lib/CORE/form.h + tlpkg/tlperl/lib/CORE/git_version.h + tlpkg/tlperl/lib/CORE/gv.h + tlpkg/tlperl/lib/CORE/handy.h + tlpkg/tlperl/lib/CORE/hv.h + tlpkg/tlperl/lib/CORE/hv_func.h + tlpkg/tlperl/lib/CORE/hv_macro.h + tlpkg/tlperl/lib/CORE/inline.h + tlpkg/tlperl/lib/CORE/intrpvar.h + tlpkg/tlperl/lib/CORE/invlist_inline.h + tlpkg/tlperl/lib/CORE/iperlsys.h + tlpkg/tlperl/lib/CORE/keywords.h + tlpkg/tlperl/lib/CORE/l1_char_class_tab.h + tlpkg/tlperl/lib/CORE/libperl528.a + tlpkg/tlperl/lib/CORE/malloc_ctl.h + tlpkg/tlperl/lib/CORE/metaconfig.h + tlpkg/tlperl/lib/CORE/mg.h + tlpkg/tlperl/lib/CORE/mg_data.h + tlpkg/tlperl/lib/CORE/mg_raw.h + tlpkg/tlperl/lib/CORE/mg_vtable.h + tlpkg/tlperl/lib/CORE/mydtrace.h + tlpkg/tlperl/lib/CORE/netdb.h + tlpkg/tlperl/lib/CORE/nostdio.h + tlpkg/tlperl/lib/CORE/op.h + tlpkg/tlperl/lib/CORE/op_reg_common.h + tlpkg/tlperl/lib/CORE/opcode.h + tlpkg/tlperl/lib/CORE/opnames.h + tlpkg/tlperl/lib/CORE/overload.h + tlpkg/tlperl/lib/CORE/pad.h + tlpkg/tlperl/lib/CORE/parser.h + tlpkg/tlperl/lib/CORE/patchlevel.h + tlpkg/tlperl/lib/CORE/perl.h + tlpkg/tlperl/lib/CORE/perl_inc_macro.h + tlpkg/tlperl/lib/CORE/perl_langinfo.h + tlpkg/tlperl/lib/CORE/perlapi.h + tlpkg/tlperl/lib/CORE/perlhost.h + tlpkg/tlperl/lib/CORE/perlio.h + tlpkg/tlperl/lib/CORE/perliol.h + tlpkg/tlperl/lib/CORE/perlsdio.h + tlpkg/tlperl/lib/CORE/perlvars.h + tlpkg/tlperl/lib/CORE/perly.h + tlpkg/tlperl/lib/CORE/pp.h + tlpkg/tlperl/lib/CORE/pp_proto.h + tlpkg/tlperl/lib/CORE/proto.h + tlpkg/tlperl/lib/CORE/reentr.h + tlpkg/tlperl/lib/CORE/regcharclass.h + tlpkg/tlperl/lib/CORE/regcomp.h + tlpkg/tlperl/lib/CORE/regexp.h + tlpkg/tlperl/lib/CORE/regnodes.h + tlpkg/tlperl/lib/CORE/sbox32_hash.h + tlpkg/tlperl/lib/CORE/scope.h + tlpkg/tlperl/lib/CORE/stadtx_hash.h + tlpkg/tlperl/lib/CORE/sv.h + tlpkg/tlperl/lib/CORE/sys/errno2.h + tlpkg/tlperl/lib/CORE/sys/socket.h + tlpkg/tlperl/lib/CORE/thread.h + tlpkg/tlperl/lib/CORE/time64.h + tlpkg/tlperl/lib/CORE/time64_config.h + tlpkg/tlperl/lib/CORE/uconfig.h + tlpkg/tlperl/lib/CORE/uni_keywords.h + tlpkg/tlperl/lib/CORE/unicode_constants.h + tlpkg/tlperl/lib/CORE/unixish.h + tlpkg/tlperl/lib/CORE/utf8.h + tlpkg/tlperl/lib/CORE/utfebcdic.h + tlpkg/tlperl/lib/CORE/util.h + tlpkg/tlperl/lib/CORE/uudmap.h + tlpkg/tlperl/lib/CORE/vdir.h + tlpkg/tlperl/lib/CORE/vmem.h + tlpkg/tlperl/lib/CORE/vutil.h + tlpkg/tlperl/lib/CORE/warnings.h + tlpkg/tlperl/lib/CORE/win32.h + tlpkg/tlperl/lib/CORE/win32iop-o.h + tlpkg/tlperl/lib/CORE/win32iop.h + tlpkg/tlperl/lib/CORE/win32thread.h + tlpkg/tlperl/lib/CORE/wince.h + tlpkg/tlperl/lib/CORE/zaphod32_hash.h + tlpkg/tlperl/lib/CPAN.pm + tlpkg/tlperl/lib/CPAN/API/HOWTO.pod + tlpkg/tlperl/lib/CPAN/Author.pm + tlpkg/tlperl/lib/CPAN/Bundle.pm + tlpkg/tlperl/lib/CPAN/CacheMgr.pm + tlpkg/tlperl/lib/CPAN/Complete.pm + tlpkg/tlperl/lib/CPAN/Debug.pm + tlpkg/tlperl/lib/CPAN/DeferredCode.pm + tlpkg/tlperl/lib/CPAN/Distribution.pm + tlpkg/tlperl/lib/CPAN/Distroprefs.pm + tlpkg/tlperl/lib/CPAN/Distrostatus.pm + tlpkg/tlperl/lib/CPAN/Exception/RecursiveDependency.pm + tlpkg/tlperl/lib/CPAN/Exception/blocked_urllist.pm + tlpkg/tlperl/lib/CPAN/Exception/yaml_not_installed.pm + tlpkg/tlperl/lib/CPAN/Exception/yaml_process_error.pm + tlpkg/tlperl/lib/CPAN/FTP.pm + tlpkg/tlperl/lib/CPAN/FTP/netrc.pm + tlpkg/tlperl/lib/CPAN/FirstTime.pm + tlpkg/tlperl/lib/CPAN/HTTP/Client.pm + tlpkg/tlperl/lib/CPAN/HTTP/Credentials.pm + tlpkg/tlperl/lib/CPAN/HandleConfig.pm + tlpkg/tlperl/lib/CPAN/Index.pm + tlpkg/tlperl/lib/CPAN/InfoObj.pm + tlpkg/tlperl/lib/CPAN/Kwalify.pm + tlpkg/tlperl/lib/CPAN/Kwalify/distroprefs.dd + tlpkg/tlperl/lib/CPAN/Kwalify/distroprefs.yml + tlpkg/tlperl/lib/CPAN/LWP/UserAgent.pm + tlpkg/tlperl/lib/CPAN/Meta.pm + tlpkg/tlperl/lib/CPAN/Meta/Converter.pm + tlpkg/tlperl/lib/CPAN/Meta/Feature.pm + tlpkg/tlperl/lib/CPAN/Meta/History.pm + tlpkg/tlperl/lib/CPAN/Meta/History/Meta_1_0.pod + tlpkg/tlperl/lib/CPAN/Meta/History/Meta_1_1.pod + tlpkg/tlperl/lib/CPAN/Meta/History/Meta_1_2.pod + tlpkg/tlperl/lib/CPAN/Meta/History/Meta_1_3.pod + tlpkg/tlperl/lib/CPAN/Meta/History/Meta_1_4.pod + tlpkg/tlperl/lib/CPAN/Meta/Merge.pm + tlpkg/tlperl/lib/CPAN/Meta/Prereqs.pm + tlpkg/tlperl/lib/CPAN/Meta/Requirements.pm + tlpkg/tlperl/lib/CPAN/Meta/Spec.pm + tlpkg/tlperl/lib/CPAN/Meta/Validator.pm + tlpkg/tlperl/lib/CPAN/Meta/YAML.pm + tlpkg/tlperl/lib/CPAN/Mirrors.pm + tlpkg/tlperl/lib/CPAN/Module.pm + tlpkg/tlperl/lib/CPAN/Nox.pm + tlpkg/tlperl/lib/CPAN/Plugin.pm + tlpkg/tlperl/lib/CPAN/Plugin/Specfile.pm + tlpkg/tlperl/lib/CPAN/Prompt.pm + tlpkg/tlperl/lib/CPAN/Queue.pm + tlpkg/tlperl/lib/CPAN/Shell.pm + tlpkg/tlperl/lib/CPAN/Tarzip.pm + tlpkg/tlperl/lib/CPAN/URL.pm + tlpkg/tlperl/lib/CPAN/Version.pm + tlpkg/tlperl/lib/Carp.pm + tlpkg/tlperl/lib/Carp/Heavy.pm + tlpkg/tlperl/lib/Class/Struct.pm + tlpkg/tlperl/lib/Compress/Raw/Bzip2.pm + tlpkg/tlperl/lib/Compress/Raw/Zlib.pm + tlpkg/tlperl/lib/Compress/Zlib.pm + tlpkg/tlperl/lib/Config.pm + tlpkg/tlperl/lib/Config.pm.orig + tlpkg/tlperl/lib/Config.pod + tlpkg/tlperl/lib/Config/Extensions.pm + tlpkg/tlperl/lib/Config/Perl/V.pm + tlpkg/tlperl/lib/Config_git.pl + tlpkg/tlperl/lib/Config_heavy.pl + tlpkg/tlperl/lib/Config_heavy.pl.orig + tlpkg/tlperl/lib/Cwd.pm + tlpkg/tlperl/lib/DB.pm + tlpkg/tlperl/lib/DBM_Filter.pm + tlpkg/tlperl/lib/DBM_Filter/compress.pm + tlpkg/tlperl/lib/DBM_Filter/encode.pm + tlpkg/tlperl/lib/DBM_Filter/int32.pm + tlpkg/tlperl/lib/DBM_Filter/null.pm + tlpkg/tlperl/lib/DBM_Filter/utf8.pm + tlpkg/tlperl/lib/Data/Dumper.pm + tlpkg/tlperl/lib/Devel/PPPort.pm + tlpkg/tlperl/lib/Devel/Peek.pm + tlpkg/tlperl/lib/Devel/SelfStubber.pm + tlpkg/tlperl/lib/Digest.pm + tlpkg/tlperl/lib/Digest/MD5.pm + tlpkg/tlperl/lib/Digest/SHA.pm + tlpkg/tlperl/lib/Digest/base.pm + tlpkg/tlperl/lib/Digest/file.pm + tlpkg/tlperl/lib/DirHandle.pm + tlpkg/tlperl/lib/Dumpvalue.pm + tlpkg/tlperl/lib/DynaLoader.pm + tlpkg/tlperl/lib/Encode.pm + tlpkg/tlperl/lib/Encode/Alias.pm + tlpkg/tlperl/lib/Encode/Byte.pm + tlpkg/tlperl/lib/Encode/CJKConstants.pm + tlpkg/tlperl/lib/Encode/CN.pm + tlpkg/tlperl/lib/Encode/CN/HZ.pm + tlpkg/tlperl/lib/Encode/Changes.e2x + tlpkg/tlperl/lib/Encode/Config.pm + tlpkg/tlperl/lib/Encode/ConfigLocal_PM.e2x + tlpkg/tlperl/lib/Encode/EBCDIC.pm + tlpkg/tlperl/lib/Encode/Encoder.pm + tlpkg/tlperl/lib/Encode/Encoding.pm + tlpkg/tlperl/lib/Encode/GSM0338.pm + tlpkg/tlperl/lib/Encode/Guess.pm + tlpkg/tlperl/lib/Encode/JP.pm + tlpkg/tlperl/lib/Encode/JP/H2Z.pm + tlpkg/tlperl/lib/Encode/JP/JIS7.pm + tlpkg/tlperl/lib/Encode/KR.pm + tlpkg/tlperl/lib/Encode/KR/2022_KR.pm + tlpkg/tlperl/lib/Encode/MIME/Header.pm + tlpkg/tlperl/lib/Encode/MIME/Header/ISO_2022_JP.pm + tlpkg/tlperl/lib/Encode/MIME/Name.pm + tlpkg/tlperl/lib/Encode/Makefile_PL.e2x + tlpkg/tlperl/lib/Encode/PerlIO.pod + tlpkg/tlperl/lib/Encode/README.e2x + tlpkg/tlperl/lib/Encode/Supported.pod + tlpkg/tlperl/lib/Encode/Symbol.pm + tlpkg/tlperl/lib/Encode/TW.pm + tlpkg/tlperl/lib/Encode/Unicode.pm + tlpkg/tlperl/lib/Encode/Unicode/UTF7.pm + tlpkg/tlperl/lib/Encode/_PM.e2x + tlpkg/tlperl/lib/Encode/_T.e2x + tlpkg/tlperl/lib/Encode/encode.h + tlpkg/tlperl/lib/English.pm + tlpkg/tlperl/lib/Env.pm + tlpkg/tlperl/lib/Errno.pm + tlpkg/tlperl/lib/Exporter.pm + tlpkg/tlperl/lib/Exporter/Heavy.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Base.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Unix.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/VMS.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/aix.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/android.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/cygwin.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/darwin.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/dec_osf.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/os2.pm + tlpkg/tlperl/lib/ExtUtils/Command.pm + tlpkg/tlperl/lib/ExtUtils/Command/MM.pm + tlpkg/tlperl/lib/ExtUtils/Constant.pm + tlpkg/tlperl/lib/ExtUtils/Constant/Base.pm + tlpkg/tlperl/lib/ExtUtils/Constant/ProxySubs.pm + tlpkg/tlperl/lib/ExtUtils/Constant/Utils.pm + tlpkg/tlperl/lib/ExtUtils/Constant/XS.pm + tlpkg/tlperl/lib/ExtUtils/Embed.pm + tlpkg/tlperl/lib/ExtUtils/Install.pm + tlpkg/tlperl/lib/ExtUtils/Installed.pm + tlpkg/tlperl/lib/ExtUtils/Liblist.pm + tlpkg/tlperl/lib/ExtUtils/Liblist/Kid.pm + tlpkg/tlperl/lib/ExtUtils/MANIFEST.SKIP + tlpkg/tlperl/lib/ExtUtils/MM.pm + tlpkg/tlperl/lib/ExtUtils/MM_AIX.pm + tlpkg/tlperl/lib/ExtUtils/MM_Any.pm + tlpkg/tlperl/lib/ExtUtils/MM_BeOS.pm + tlpkg/tlperl/lib/ExtUtils/MM_Cygwin.pm + tlpkg/tlperl/lib/ExtUtils/MM_DOS.pm + tlpkg/tlperl/lib/ExtUtils/MM_Darwin.pm + tlpkg/tlperl/lib/ExtUtils/MM_MacOS.pm + tlpkg/tlperl/lib/ExtUtils/MM_NW5.pm + tlpkg/tlperl/lib/ExtUtils/MM_OS2.pm + tlpkg/tlperl/lib/ExtUtils/MM_QNX.pm + tlpkg/tlperl/lib/ExtUtils/MM_UWIN.pm + tlpkg/tlperl/lib/ExtUtils/MM_Unix.pm + tlpkg/tlperl/lib/ExtUtils/MM_VMS.pm + tlpkg/tlperl/lib/ExtUtils/MM_VOS.pm + tlpkg/tlperl/lib/ExtUtils/MM_Win32.pm + tlpkg/tlperl/lib/ExtUtils/MM_Win95.pm + tlpkg/tlperl/lib/ExtUtils/MY.pm + tlpkg/tlperl/lib/ExtUtils/MakeMaker.pm + tlpkg/tlperl/lib/ExtUtils/MakeMaker/Config.pm + tlpkg/tlperl/lib/ExtUtils/MakeMaker/FAQ.pod + tlpkg/tlperl/lib/ExtUtils/MakeMaker/Locale.pm + tlpkg/tlperl/lib/ExtUtils/MakeMaker/Tutorial.pod + tlpkg/tlperl/lib/ExtUtils/MakeMaker/version.pm + tlpkg/tlperl/lib/ExtUtils/Manifest.pm + tlpkg/tlperl/lib/ExtUtils/Miniperl.pm + tlpkg/tlperl/lib/ExtUtils/Mkbootstrap.pm + tlpkg/tlperl/lib/ExtUtils/Mksymlists.pm + tlpkg/tlperl/lib/ExtUtils/Packlist.pm + tlpkg/tlperl/lib/ExtUtils/ParseXS.pm + tlpkg/tlperl/lib/ExtUtils/ParseXS.pod + tlpkg/tlperl/lib/ExtUtils/ParseXS/Constants.pm + tlpkg/tlperl/lib/ExtUtils/ParseXS/CountLines.pm + tlpkg/tlperl/lib/ExtUtils/ParseXS/Eval.pm + tlpkg/tlperl/lib/ExtUtils/ParseXS/Utilities.pm + tlpkg/tlperl/lib/ExtUtils/Typemaps.pm + tlpkg/tlperl/lib/ExtUtils/Typemaps/Cmd.pm + tlpkg/tlperl/lib/ExtUtils/Typemaps/InputMap.pm + tlpkg/tlperl/lib/ExtUtils/Typemaps/OutputMap.pm + tlpkg/tlperl/lib/ExtUtils/Typemaps/Type.pm + tlpkg/tlperl/lib/ExtUtils/testlib.pm + tlpkg/tlperl/lib/ExtUtils/typemap + tlpkg/tlperl/lib/ExtUtils/xsubpp + tlpkg/tlperl/lib/Fatal.pm + tlpkg/tlperl/lib/Fcntl.pm + tlpkg/tlperl/lib/File/Basename.pm + tlpkg/tlperl/lib/File/Compare.pm + tlpkg/tlperl/lib/File/Copy.pm + tlpkg/tlperl/lib/File/DosGlob.pm + tlpkg/tlperl/lib/File/Fetch.pm + tlpkg/tlperl/lib/File/Find.pm + tlpkg/tlperl/lib/File/Glob.pm + tlpkg/tlperl/lib/File/GlobMapper.pm + tlpkg/tlperl/lib/File/Path.pm + tlpkg/tlperl/lib/File/Spec.pm + tlpkg/tlperl/lib/File/Spec/AmigaOS.pm + tlpkg/tlperl/lib/File/Spec/Cygwin.pm + tlpkg/tlperl/lib/File/Spec/Epoc.pm + tlpkg/tlperl/lib/File/Spec/Functions.pm + tlpkg/tlperl/lib/File/Spec/Mac.pm + tlpkg/tlperl/lib/File/Spec/OS2.pm + tlpkg/tlperl/lib/File/Spec/Unix.pm + tlpkg/tlperl/lib/File/Spec/VMS.pm + tlpkg/tlperl/lib/File/Spec/Win32.pm + tlpkg/tlperl/lib/File/Temp.pm + tlpkg/tlperl/lib/File/stat.pm + tlpkg/tlperl/lib/FileCache.pm + tlpkg/tlperl/lib/FileHandle.pm + tlpkg/tlperl/lib/Filter/Simple.pm + tlpkg/tlperl/lib/Filter/Util/Call.pm + tlpkg/tlperl/lib/FindBin.pm + tlpkg/tlperl/lib/Getopt/Long.pm + tlpkg/tlperl/lib/Getopt/Std.pm + tlpkg/tlperl/lib/HTTP/Tiny.pm + tlpkg/tlperl/lib/Hash/Util.pm + tlpkg/tlperl/lib/Hash/Util/FieldHash.pm + tlpkg/tlperl/lib/I18N/Collate.pm + tlpkg/tlperl/lib/I18N/LangTags.pm + tlpkg/tlperl/lib/I18N/LangTags/Detect.pm + tlpkg/tlperl/lib/I18N/LangTags/List.pm + tlpkg/tlperl/lib/I18N/Langinfo.pm + tlpkg/tlperl/lib/IO.pm + tlpkg/tlperl/lib/IO/Compress/Adapter/Bzip2.pm + tlpkg/tlperl/lib/IO/Compress/Adapter/Deflate.pm + tlpkg/tlperl/lib/IO/Compress/Adapter/Identity.pm + tlpkg/tlperl/lib/IO/Compress/Base.pm + tlpkg/tlperl/lib/IO/Compress/Base/Common.pm + tlpkg/tlperl/lib/IO/Compress/Bzip2.pm + tlpkg/tlperl/lib/IO/Compress/Deflate.pm + tlpkg/tlperl/lib/IO/Compress/FAQ.pod + tlpkg/tlperl/lib/IO/Compress/Gzip.pm + tlpkg/tlperl/lib/IO/Compress/Gzip/Constants.pm + tlpkg/tlperl/lib/IO/Compress/RawDeflate.pm + tlpkg/tlperl/lib/IO/Compress/Zip.pm + tlpkg/tlperl/lib/IO/Compress/Zip/Constants.pm + tlpkg/tlperl/lib/IO/Compress/Zlib/Constants.pm + tlpkg/tlperl/lib/IO/Compress/Zlib/Extra.pm + tlpkg/tlperl/lib/IO/Dir.pm + tlpkg/tlperl/lib/IO/File.pm + tlpkg/tlperl/lib/IO/Handle.pm + tlpkg/tlperl/lib/IO/Pipe.pm + tlpkg/tlperl/lib/IO/Poll.pm + tlpkg/tlperl/lib/IO/Seekable.pm + tlpkg/tlperl/lib/IO/Select.pm + tlpkg/tlperl/lib/IO/Socket.pm + tlpkg/tlperl/lib/IO/Socket/INET.pm + tlpkg/tlperl/lib/IO/Socket/IP.pm + tlpkg/tlperl/lib/IO/Socket/UNIX.pm + tlpkg/tlperl/lib/IO/Uncompress/Adapter/Bunzip2.pm + tlpkg/tlperl/lib/IO/Uncompress/Adapter/Identity.pm + tlpkg/tlperl/lib/IO/Uncompress/Adapter/Inflate.pm + tlpkg/tlperl/lib/IO/Uncompress/AnyInflate.pm + tlpkg/tlperl/lib/IO/Uncompress/AnyUncompress.pm + tlpkg/tlperl/lib/IO/Uncompress/Base.pm + tlpkg/tlperl/lib/IO/Uncompress/Bunzip2.pm + tlpkg/tlperl/lib/IO/Uncompress/Gunzip.pm + tlpkg/tlperl/lib/IO/Uncompress/Inflate.pm + tlpkg/tlperl/lib/IO/Uncompress/RawInflate.pm + tlpkg/tlperl/lib/IO/Uncompress/Unzip.pm + tlpkg/tlperl/lib/IO/Zlib.pm + tlpkg/tlperl/lib/IPC/Cmd.pm + tlpkg/tlperl/lib/IPC/Open2.pm + tlpkg/tlperl/lib/IPC/Open3.pm + tlpkg/tlperl/lib/Internals.pod + tlpkg/tlperl/lib/JSON/PP.pm + tlpkg/tlperl/lib/JSON/PP/Boolean.pm + tlpkg/tlperl/lib/List/Util.pm + tlpkg/tlperl/lib/List/Util/XS.pm + tlpkg/tlperl/lib/Locale/Codes.pm + tlpkg/tlperl/lib/Locale/Codes.pod + tlpkg/tlperl/lib/Locale/Codes/Changes.pod + tlpkg/tlperl/lib/Locale/Codes/Constants.pm + tlpkg/tlperl/lib/Locale/Codes/Country.pm + tlpkg/tlperl/lib/Locale/Codes/Country.pod + tlpkg/tlperl/lib/Locale/Codes/Country_Codes.pm + tlpkg/tlperl/lib/Locale/Codes/Country_Retired.pm + tlpkg/tlperl/lib/Locale/Codes/Currency.pm + tlpkg/tlperl/lib/Locale/Codes/Currency.pod + tlpkg/tlperl/lib/Locale/Codes/Currency_Codes.pm + tlpkg/tlperl/lib/Locale/Codes/Currency_Retired.pm + tlpkg/tlperl/lib/Locale/Codes/LangExt.pm + tlpkg/tlperl/lib/Locale/Codes/LangExt.pod + tlpkg/tlperl/lib/Locale/Codes/LangExt_Codes.pm + tlpkg/tlperl/lib/Locale/Codes/LangExt_Retired.pm + tlpkg/tlperl/lib/Locale/Codes/LangFam.pm + tlpkg/tlperl/lib/Locale/Codes/LangFam.pod + tlpkg/tlperl/lib/Locale/Codes/LangFam_Codes.pm + tlpkg/tlperl/lib/Locale/Codes/LangFam_Retired.pm + tlpkg/tlperl/lib/Locale/Codes/LangVar.pm + tlpkg/tlperl/lib/Locale/Codes/LangVar.pod + tlpkg/tlperl/lib/Locale/Codes/LangVar_Codes.pm + tlpkg/tlperl/lib/Locale/Codes/LangVar_Retired.pm + tlpkg/tlperl/lib/Locale/Codes/Language.pm + tlpkg/tlperl/lib/Locale/Codes/Language.pod + tlpkg/tlperl/lib/Locale/Codes/Language_Codes.pm + tlpkg/tlperl/lib/Locale/Codes/Language_Retired.pm + tlpkg/tlperl/lib/Locale/Codes/Script.pm + tlpkg/tlperl/lib/Locale/Codes/Script.pod + tlpkg/tlperl/lib/Locale/Codes/Script_Codes.pm + tlpkg/tlperl/lib/Locale/Codes/Script_Retired.pm + tlpkg/tlperl/lib/Locale/Codes/Types.pod + tlpkg/tlperl/lib/Locale/Country.pm + tlpkg/tlperl/lib/Locale/Country.pod + tlpkg/tlperl/lib/Locale/Currency.pm + tlpkg/tlperl/lib/Locale/Currency.pod + tlpkg/tlperl/lib/Locale/Language.pm + tlpkg/tlperl/lib/Locale/Language.pod + tlpkg/tlperl/lib/Locale/Maketext.pm + tlpkg/tlperl/lib/Locale/Maketext.pod + tlpkg/tlperl/lib/Locale/Maketext/Cookbook.pod + tlpkg/tlperl/lib/Locale/Maketext/Guts.pm + tlpkg/tlperl/lib/Locale/Maketext/GutsLoader.pm + tlpkg/tlperl/lib/Locale/Maketext/Simple.pm + tlpkg/tlperl/lib/Locale/Maketext/TPJ13.pod + tlpkg/tlperl/lib/Locale/Script.pm + tlpkg/tlperl/lib/Locale/Script.pod + tlpkg/tlperl/lib/MIME/Base64.pm + tlpkg/tlperl/lib/MIME/QuotedPrint.pm + tlpkg/tlperl/lib/Math/BigFloat.pm + tlpkg/tlperl/lib/Math/BigFloat/Trace.pm + tlpkg/tlperl/lib/Math/BigInt.pm + tlpkg/tlperl/lib/Math/BigInt/Calc.pm + tlpkg/tlperl/lib/Math/BigInt/CalcEmu.pm + tlpkg/tlperl/lib/Math/BigInt/FastCalc.pm + tlpkg/tlperl/lib/Math/BigInt/Lib.pm + tlpkg/tlperl/lib/Math/BigInt/Trace.pm + tlpkg/tlperl/lib/Math/BigRat.pm + tlpkg/tlperl/lib/Math/Complex.pm + tlpkg/tlperl/lib/Math/Trig.pm + tlpkg/tlperl/lib/Memoize.pm + tlpkg/tlperl/lib/Memoize/AnyDBM_File.pm + tlpkg/tlperl/lib/Memoize/Expire.pm + tlpkg/tlperl/lib/Memoize/ExpireFile.pm + tlpkg/tlperl/lib/Memoize/ExpireTest.pm + tlpkg/tlperl/lib/Memoize/NDBM_File.pm + tlpkg/tlperl/lib/Memoize/SDBM_File.pm + tlpkg/tlperl/lib/Memoize/Storable.pm + tlpkg/tlperl/lib/Module/CoreList.pm + tlpkg/tlperl/lib/Module/CoreList.pod + tlpkg/tlperl/lib/Module/CoreList/Utils.pm + tlpkg/tlperl/lib/Module/Load.pm + tlpkg/tlperl/lib/Module/Load/Conditional.pm + tlpkg/tlperl/lib/Module/Loaded.pm + tlpkg/tlperl/lib/Module/Metadata.pm + tlpkg/tlperl/lib/NEXT.pm + tlpkg/tlperl/lib/Net/Cmd.pm + tlpkg/tlperl/lib/Net/Config.pm + tlpkg/tlperl/lib/Net/Domain.pm + tlpkg/tlperl/lib/Net/FTP.pm + tlpkg/tlperl/lib/Net/FTP/A.pm + tlpkg/tlperl/lib/Net/FTP/E.pm + tlpkg/tlperl/lib/Net/FTP/I.pm + tlpkg/tlperl/lib/Net/FTP/L.pm + tlpkg/tlperl/lib/Net/FTP/dataconn.pm + tlpkg/tlperl/lib/Net/NNTP.pm + tlpkg/tlperl/lib/Net/Netrc.pm + tlpkg/tlperl/lib/Net/POP3.pm + tlpkg/tlperl/lib/Net/Ping.pm + tlpkg/tlperl/lib/Net/SMTP.pm + tlpkg/tlperl/lib/Net/Time.pm + tlpkg/tlperl/lib/Net/hostent.pm + tlpkg/tlperl/lib/Net/libnetFAQ.pod + tlpkg/tlperl/lib/Net/netent.pm + tlpkg/tlperl/lib/Net/protoent.pm + tlpkg/tlperl/lib/Net/servent.pm + tlpkg/tlperl/lib/O.pm + tlpkg/tlperl/lib/Opcode.pm + tlpkg/tlperl/lib/POSIX.pm + tlpkg/tlperl/lib/POSIX.pod + tlpkg/tlperl/lib/Params/Check.pm + tlpkg/tlperl/lib/Parse/CPAN/Meta.pm + tlpkg/tlperl/lib/Perl/OSType.pm + tlpkg/tlperl/lib/PerlIO.pm + tlpkg/tlperl/lib/PerlIO/encoding.pm + tlpkg/tlperl/lib/PerlIO/mmap.pm + tlpkg/tlperl/lib/PerlIO/scalar.pm + tlpkg/tlperl/lib/PerlIO/via.pm + tlpkg/tlperl/lib/PerlIO/via/QuotedPrint.pm + tlpkg/tlperl/lib/Pod/Checker.pm + tlpkg/tlperl/lib/Pod/Escapes.pm + tlpkg/tlperl/lib/Pod/Find.pm + tlpkg/tlperl/lib/Pod/Functions.pm + tlpkg/tlperl/lib/Pod/Html.pm + tlpkg/tlperl/lib/Pod/InputObjects.pm + tlpkg/tlperl/lib/Pod/Man.pm + tlpkg/tlperl/lib/Pod/ParseLink.pm + tlpkg/tlperl/lib/Pod/ParseUtils.pm + tlpkg/tlperl/lib/Pod/Parser.pm + tlpkg/tlperl/lib/Pod/Perldoc.pm + tlpkg/tlperl/lib/Pod/Perldoc/BaseTo.pm + tlpkg/tlperl/lib/Pod/Perldoc/GetOptsOO.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToANSI.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToChecker.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToMan.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToNroff.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToPod.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToRtf.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToTerm.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToText.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToTk.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToXml.pm + tlpkg/tlperl/lib/Pod/PlainText.pm + tlpkg/tlperl/lib/Pod/Select.pm + tlpkg/tlperl/lib/Pod/Simple.pm + tlpkg/tlperl/lib/Pod/Simple.pod + tlpkg/tlperl/lib/Pod/Simple/BlackBox.pm + tlpkg/tlperl/lib/Pod/Simple/Checker.pm + tlpkg/tlperl/lib/Pod/Simple/Debug.pm + tlpkg/tlperl/lib/Pod/Simple/DumpAsText.pm + tlpkg/tlperl/lib/Pod/Simple/DumpAsXML.pm + tlpkg/tlperl/lib/Pod/Simple/HTML.pm + tlpkg/tlperl/lib/Pod/Simple/HTMLBatch.pm + tlpkg/tlperl/lib/Pod/Simple/HTMLLegacy.pm + tlpkg/tlperl/lib/Pod/Simple/LinkSection.pm + tlpkg/tlperl/lib/Pod/Simple/Methody.pm + tlpkg/tlperl/lib/Pod/Simple/Progress.pm + tlpkg/tlperl/lib/Pod/Simple/PullParser.pm + tlpkg/tlperl/lib/Pod/Simple/PullParserEndToken.pm + tlpkg/tlperl/lib/Pod/Simple/PullParserStartToken.pm + tlpkg/tlperl/lib/Pod/Simple/PullParserTextToken.pm + tlpkg/tlperl/lib/Pod/Simple/PullParserToken.pm + tlpkg/tlperl/lib/Pod/Simple/RTF.pm + tlpkg/tlperl/lib/Pod/Simple/Search.pm + tlpkg/tlperl/lib/Pod/Simple/SimpleTree.pm + tlpkg/tlperl/lib/Pod/Simple/Subclassing.pod + tlpkg/tlperl/lib/Pod/Simple/Text.pm + tlpkg/tlperl/lib/Pod/Simple/TextContent.pm + tlpkg/tlperl/lib/Pod/Simple/TiedOutFH.pm + tlpkg/tlperl/lib/Pod/Simple/Transcode.pm + tlpkg/tlperl/lib/Pod/Simple/TranscodeDumb.pm + tlpkg/tlperl/lib/Pod/Simple/TranscodeSmart.pm + tlpkg/tlperl/lib/Pod/Simple/XHTML.pm + tlpkg/tlperl/lib/Pod/Simple/XMLOutStream.pm + tlpkg/tlperl/lib/Pod/Text.pm + tlpkg/tlperl/lib/Pod/Text/Color.pm + tlpkg/tlperl/lib/Pod/Text/Overstrike.pm + tlpkg/tlperl/lib/Pod/Text/Termcap.pm + tlpkg/tlperl/lib/Pod/Usage.pm + tlpkg/tlperl/lib/SDBM_File.pm + tlpkg/tlperl/lib/Safe.pm + tlpkg/tlperl/lib/Scalar/Util.pm + tlpkg/tlperl/lib/Search/Dict.pm + tlpkg/tlperl/lib/SelectSaver.pm + tlpkg/tlperl/lib/SelfLoader.pm + tlpkg/tlperl/lib/Socket.pm + tlpkg/tlperl/lib/Storable.pm + tlpkg/tlperl/lib/Storable/Limit.pm + tlpkg/tlperl/lib/Sub/Util.pm + tlpkg/tlperl/lib/Symbol.pm + tlpkg/tlperl/lib/Sys/Hostname.pm + tlpkg/tlperl/lib/TAP/Base.pm + tlpkg/tlperl/lib/TAP/Formatter/Base.pm + tlpkg/tlperl/lib/TAP/Formatter/Color.pm + tlpkg/tlperl/lib/TAP/Formatter/Console.pm + tlpkg/tlperl/lib/TAP/Formatter/Console/ParallelSession.pm + tlpkg/tlperl/lib/TAP/Formatter/Console/Session.pm + tlpkg/tlperl/lib/TAP/Formatter/File.pm + tlpkg/tlperl/lib/TAP/Formatter/File/Session.pm + tlpkg/tlperl/lib/TAP/Formatter/Session.pm + tlpkg/tlperl/lib/TAP/Harness.pm + tlpkg/tlperl/lib/TAP/Harness/Beyond.pod + tlpkg/tlperl/lib/TAP/Harness/Env.pm + tlpkg/tlperl/lib/TAP/Object.pm + tlpkg/tlperl/lib/TAP/Parser.pm + tlpkg/tlperl/lib/TAP/Parser/Aggregator.pm + tlpkg/tlperl/lib/TAP/Parser/Grammar.pm + tlpkg/tlperl/lib/TAP/Parser/Iterator.pm + tlpkg/tlperl/lib/TAP/Parser/Iterator/Array.pm + tlpkg/tlperl/lib/TAP/Parser/Iterator/Process.pm + tlpkg/tlperl/lib/TAP/Parser/Iterator/Stream.pm + tlpkg/tlperl/lib/TAP/Parser/IteratorFactory.pm + tlpkg/tlperl/lib/TAP/Parser/Multiplexer.pm + tlpkg/tlperl/lib/TAP/Parser/Result.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Bailout.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Comment.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Plan.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Pragma.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Test.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Unknown.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Version.pm + tlpkg/tlperl/lib/TAP/Parser/Result/YAML.pm + tlpkg/tlperl/lib/TAP/Parser/ResultFactory.pm + tlpkg/tlperl/lib/TAP/Parser/Scheduler.pm + tlpkg/tlperl/lib/TAP/Parser/Scheduler/Job.pm + tlpkg/tlperl/lib/TAP/Parser/Scheduler/Spinner.pm + tlpkg/tlperl/lib/TAP/Parser/Source.pm + tlpkg/tlperl/lib/TAP/Parser/SourceHandler.pm + tlpkg/tlperl/lib/TAP/Parser/SourceHandler/Executable.pm + tlpkg/tlperl/lib/TAP/Parser/SourceHandler/File.pm + tlpkg/tlperl/lib/TAP/Parser/SourceHandler/Handle.pm + tlpkg/tlperl/lib/TAP/Parser/SourceHandler/Perl.pm + tlpkg/tlperl/lib/TAP/Parser/SourceHandler/RawTAP.pm + tlpkg/tlperl/lib/TAP/Parser/YAMLish/Reader.pm + tlpkg/tlperl/lib/TAP/Parser/YAMLish/Writer.pm + tlpkg/tlperl/lib/Term/ANSIColor.pm + tlpkg/tlperl/lib/Term/Cap.pm + tlpkg/tlperl/lib/Term/Complete.pm + tlpkg/tlperl/lib/Term/ReadLine.pm + tlpkg/tlperl/lib/Test.pm + tlpkg/tlperl/lib/Test/Builder.pm + tlpkg/tlperl/lib/Test/Builder/Formatter.pm + tlpkg/tlperl/lib/Test/Builder/IO/Scalar.pm + tlpkg/tlperl/lib/Test/Builder/Module.pm + tlpkg/tlperl/lib/Test/Builder/Tester.pm + tlpkg/tlperl/lib/Test/Builder/Tester/Color.pm + tlpkg/tlperl/lib/Test/Builder/TodoDiag.pm + tlpkg/tlperl/lib/Test/Harness.pm + tlpkg/tlperl/lib/Test/More.pm + tlpkg/tlperl/lib/Test/Simple.pm + tlpkg/tlperl/lib/Test/Tester.pm + tlpkg/tlperl/lib/Test/Tester/Capture.pm + tlpkg/tlperl/lib/Test/Tester/CaptureRunner.pm + tlpkg/tlperl/lib/Test/Tester/Delegate.pm + tlpkg/tlperl/lib/Test/Tutorial.pod + tlpkg/tlperl/lib/Test/use/ok.pm + tlpkg/tlperl/lib/Test2.pm + tlpkg/tlperl/lib/Test2/API.pm + tlpkg/tlperl/lib/Test2/API/Breakage.pm + tlpkg/tlperl/lib/Test2/API/Context.pm + tlpkg/tlperl/lib/Test2/API/Instance.pm + tlpkg/tlperl/lib/Test2/API/Stack.pm + tlpkg/tlperl/lib/Test2/Event.pm + tlpkg/tlperl/lib/Test2/Event/Bail.pm + tlpkg/tlperl/lib/Test2/Event/Diag.pm + tlpkg/tlperl/lib/Test2/Event/Encoding.pm + tlpkg/tlperl/lib/Test2/Event/Exception.pm + tlpkg/tlperl/lib/Test2/Event/Fail.pm + tlpkg/tlperl/lib/Test2/Event/Generic.pm + tlpkg/tlperl/lib/Test2/Event/Note.pm + tlpkg/tlperl/lib/Test2/Event/Ok.pm + tlpkg/tlperl/lib/Test2/Event/Pass.pm + tlpkg/tlperl/lib/Test2/Event/Plan.pm + tlpkg/tlperl/lib/Test2/Event/Skip.pm + tlpkg/tlperl/lib/Test2/Event/Subtest.pm + tlpkg/tlperl/lib/Test2/Event/TAP/Version.pm + tlpkg/tlperl/lib/Test2/Event/V2.pm + tlpkg/tlperl/lib/Test2/Event/Waiting.pm + tlpkg/tlperl/lib/Test2/EventFacet.pm + tlpkg/tlperl/lib/Test2/EventFacet/About.pm + tlpkg/tlperl/lib/Test2/EventFacet/Amnesty.pm + tlpkg/tlperl/lib/Test2/EventFacet/Assert.pm + tlpkg/tlperl/lib/Test2/EventFacet/Control.pm + tlpkg/tlperl/lib/Test2/EventFacet/Error.pm + tlpkg/tlperl/lib/Test2/EventFacet/Hub.pm + tlpkg/tlperl/lib/Test2/EventFacet/Info.pm + tlpkg/tlperl/lib/Test2/EventFacet/Meta.pm + tlpkg/tlperl/lib/Test2/EventFacet/Parent.pm + tlpkg/tlperl/lib/Test2/EventFacet/Plan.pm + tlpkg/tlperl/lib/Test2/EventFacet/Render.pm + tlpkg/tlperl/lib/Test2/EventFacet/Trace.pm + tlpkg/tlperl/lib/Test2/Formatter.pm + tlpkg/tlperl/lib/Test2/Formatter/TAP.pm + tlpkg/tlperl/lib/Test2/Hub.pm + tlpkg/tlperl/lib/Test2/Hub/Interceptor.pm + tlpkg/tlperl/lib/Test2/Hub/Interceptor/Terminator.pm + tlpkg/tlperl/lib/Test2/Hub/Subtest.pm + tlpkg/tlperl/lib/Test2/IPC.pm + tlpkg/tlperl/lib/Test2/IPC/Driver.pm + tlpkg/tlperl/lib/Test2/IPC/Driver/Files.pm + tlpkg/tlperl/lib/Test2/Tools/Tiny.pm + tlpkg/tlperl/lib/Test2/Transition.pod + tlpkg/tlperl/lib/Test2/Util.pm + tlpkg/tlperl/lib/Test2/Util/ExternalMeta.pm + tlpkg/tlperl/lib/Test2/Util/Facets2Legacy.pm + tlpkg/tlperl/lib/Test2/Util/HashBase.pm + tlpkg/tlperl/lib/Test2/Util/Trace.pm + tlpkg/tlperl/lib/Text/Abbrev.pm + tlpkg/tlperl/lib/Text/Balanced.pm + tlpkg/tlperl/lib/Text/ParseWords.pm + tlpkg/tlperl/lib/Text/Tabs.pm + tlpkg/tlperl/lib/Text/Wrap.pm + tlpkg/tlperl/lib/Thread.pm + tlpkg/tlperl/lib/Thread/Queue.pm + tlpkg/tlperl/lib/Thread/Semaphore.pm + tlpkg/tlperl/lib/Tie/Array.pm + tlpkg/tlperl/lib/Tie/File.pm + tlpkg/tlperl/lib/Tie/Handle.pm + tlpkg/tlperl/lib/Tie/Hash.pm + tlpkg/tlperl/lib/Tie/Hash/NamedCapture.pm + tlpkg/tlperl/lib/Tie/Memoize.pm + tlpkg/tlperl/lib/Tie/RefHash.pm + tlpkg/tlperl/lib/Tie/Scalar.pm + tlpkg/tlperl/lib/Tie/StdHandle.pm + tlpkg/tlperl/lib/Tie/SubstrHash.pm + tlpkg/tlperl/lib/Time/HiRes.pm + tlpkg/tlperl/lib/Time/Local.pm + tlpkg/tlperl/lib/Time/Piece.pm + tlpkg/tlperl/lib/Time/Seconds.pm + tlpkg/tlperl/lib/Time/gmtime.pm + tlpkg/tlperl/lib/Time/localtime.pm + tlpkg/tlperl/lib/Time/tm.pm + tlpkg/tlperl/lib/UNIVERSAL.pm + tlpkg/tlperl/lib/Unicode/Collate.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/Big5.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/GB2312.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/JISX0208.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/Korean.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/Pinyin.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/Stroke.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/Zhuyin.pm + tlpkg/tlperl/lib/Unicode/Collate/Locale.pm + tlpkg/tlperl/lib/Unicode/Collate/Locale/af.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ar.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/as.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/az.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/be.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/bn.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ca.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/cs.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/cy.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/da.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/de_at_ph.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/de_phone.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/dsb.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ee.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/eo.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/es.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/es_trad.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/et.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/fa.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/fi.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/fi_phone.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/fil.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/fo.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/fr_ca.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/gu.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ha.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/haw.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/he.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/hi.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/hr.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/hu.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/hy.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ig.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/is.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ja.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/kk.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/kl.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/kn.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ko.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/kok.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/lkt.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ln.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/lt.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/lv.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/mk.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ml.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/mr.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/mt.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/nb.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/nn.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/nso.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/om.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/or.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/pa.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/pl.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ro.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sa.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/se.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/si.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/si_dict.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sk.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sl.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sq.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sr.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sv.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sv_refo.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ta.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/te.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/th.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/tn.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/to.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/tr.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ug_cyrl.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/uk.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ur.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/vi.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/vo.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/wae.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/wo.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/yo.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/zh.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_big5.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_gb.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_pin.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_strk.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_zhu.pl + tlpkg/tlperl/lib/Unicode/Collate/allkeys.txt + tlpkg/tlperl/lib/Unicode/Collate/keys.txt + tlpkg/tlperl/lib/Unicode/Normalize.pm + tlpkg/tlperl/lib/Unicode/UCD.pm + tlpkg/tlperl/lib/User/grent.pm + tlpkg/tlperl/lib/User/pwent.pm + tlpkg/tlperl/lib/Win32.pm + tlpkg/tlperl/lib/Win32API/File.pm + tlpkg/tlperl/lib/Win32API/File/cFile.pc + tlpkg/tlperl/lib/Win32CORE.pm + tlpkg/tlperl/lib/XSLoader.pm + tlpkg/tlperl/lib/_charnames.pm + tlpkg/tlperl/lib/arybase.pm + tlpkg/tlperl/lib/attributes.pm + tlpkg/tlperl/lib/auto/B/B.dll + tlpkg/tlperl/lib/auto/Compress/Raw/Bzip2/Bzip2.dll + tlpkg/tlperl/lib/auto/Compress/Raw/Zlib/Zlib.dll + tlpkg/tlperl/lib/auto/Cwd/Cwd.dll + tlpkg/tlperl/lib/auto/Data/Dumper/Dumper.dll + tlpkg/tlperl/lib/auto/Devel/Peek/Peek.dll + tlpkg/tlperl/lib/auto/Digest/MD5/MD5.dll + tlpkg/tlperl/lib/auto/Digest/SHA/SHA.dll + tlpkg/tlperl/lib/auto/Encode/Byte/Byte.dll + tlpkg/tlperl/lib/auto/Encode/CN/CN.dll + tlpkg/tlperl/lib/auto/Encode/EBCDIC/EBCDIC.dll + tlpkg/tlperl/lib/auto/Encode/Encode.dll + tlpkg/tlperl/lib/auto/Encode/JP/JP.dll + tlpkg/tlperl/lib/auto/Encode/KR/KR.dll + tlpkg/tlperl/lib/auto/Encode/Symbol/Symbol.dll + tlpkg/tlperl/lib/auto/Encode/TW/TW.dll + tlpkg/tlperl/lib/auto/Encode/Unicode/Unicode.dll + tlpkg/tlperl/lib/auto/Fcntl/Fcntl.dll + tlpkg/tlperl/lib/auto/File/DosGlob/DosGlob.dll + tlpkg/tlperl/lib/auto/File/Glob/Glob.dll + tlpkg/tlperl/lib/auto/Filter/Util/Call/Call.dll + tlpkg/tlperl/lib/auto/Hash/Util/FieldHash/FieldHash.dll + tlpkg/tlperl/lib/auto/Hash/Util/Util.dll + tlpkg/tlperl/lib/auto/I18N/Langinfo/Langinfo.dll + tlpkg/tlperl/lib/auto/IO/IO.dll + tlpkg/tlperl/lib/auto/List/Util/Util.dll + tlpkg/tlperl/lib/auto/MIME/Base64/Base64.dll + tlpkg/tlperl/lib/auto/Math/BigInt/FastCalc/FastCalc.dll + tlpkg/tlperl/lib/auto/Opcode/Opcode.dll + tlpkg/tlperl/lib/auto/POSIX/POSIX.dll + tlpkg/tlperl/lib/auto/PerlIO/encoding/encoding.dll + tlpkg/tlperl/lib/auto/PerlIO/mmap/mmap.dll + tlpkg/tlperl/lib/auto/PerlIO/scalar/scalar.dll + tlpkg/tlperl/lib/auto/PerlIO/via/via.dll + tlpkg/tlperl/lib/auto/SDBM_File/SDBM_File.dll + tlpkg/tlperl/lib/auto/Socket/Socket.dll + tlpkg/tlperl/lib/auto/Storable/Storable.dll + tlpkg/tlperl/lib/auto/Sys/Hostname/Hostname.dll + tlpkg/tlperl/lib/auto/Tie/Hash/NamedCapture/NamedCapture.dll + tlpkg/tlperl/lib/auto/Time/HiRes/HiRes.dll + tlpkg/tlperl/lib/auto/Time/Piece/Piece.dll + tlpkg/tlperl/lib/auto/Unicode/Collate/Collate.dll + tlpkg/tlperl/lib/auto/Unicode/Normalize/Normalize.dll + tlpkg/tlperl/lib/auto/Win32/Win32.dll + tlpkg/tlperl/lib/auto/Win32API/File/File.dll + tlpkg/tlperl/lib/auto/Win32CORE/extralibs.ld + tlpkg/tlperl/lib/auto/arybase/arybase.dll + tlpkg/tlperl/lib/auto/attributes/attributes.dll + tlpkg/tlperl/lib/auto/mro/mro.dll + tlpkg/tlperl/lib/auto/re/re.dll + tlpkg/tlperl/lib/auto/threads/shared/shared.dll + tlpkg/tlperl/lib/auto/threads/threads.dll + tlpkg/tlperl/lib/autodie.pm + tlpkg/tlperl/lib/autodie/Scope/Guard.pm + tlpkg/tlperl/lib/autodie/Scope/GuardStack.pm + tlpkg/tlperl/lib/autodie/Util.pm + tlpkg/tlperl/lib/autodie/exception.pm + tlpkg/tlperl/lib/autodie/exception/system.pm + tlpkg/tlperl/lib/autodie/hints.pm + tlpkg/tlperl/lib/autodie/skip.pm + tlpkg/tlperl/lib/autouse.pm + tlpkg/tlperl/lib/base.pm + tlpkg/tlperl/lib/bigint.pm + tlpkg/tlperl/lib/bignum.pm + tlpkg/tlperl/lib/bigrat.pm + tlpkg/tlperl/lib/blib.pm + tlpkg/tlperl/lib/bytes.pm + tlpkg/tlperl/lib/bytes_heavy.pl + tlpkg/tlperl/lib/charnames.pm + tlpkg/tlperl/lib/constant.pm + tlpkg/tlperl/lib/deprecate.pm + tlpkg/tlperl/lib/diagnostics.pm + tlpkg/tlperl/lib/dumpvar.pl + tlpkg/tlperl/lib/encoding.pm + tlpkg/tlperl/lib/encoding/warnings.pm + tlpkg/tlperl/lib/experimental.pm + tlpkg/tlperl/lib/feature.pm + tlpkg/tlperl/lib/fields.pm + tlpkg/tlperl/lib/filetest.pm + tlpkg/tlperl/lib/if.pm + tlpkg/tlperl/lib/integer.pm + tlpkg/tlperl/lib/less.pm + tlpkg/tlperl/lib/lib.pm + tlpkg/tlperl/lib/locale.pm + tlpkg/tlperl/lib/meta_notation.pm + tlpkg/tlperl/lib/mro.pm + tlpkg/tlperl/lib/ok.pm + tlpkg/tlperl/lib/open.pm + tlpkg/tlperl/lib/ops.pm + tlpkg/tlperl/lib/overload.pm + tlpkg/tlperl/lib/overload/numbers.pm + tlpkg/tlperl/lib/overloading.pm + tlpkg/tlperl/lib/parent.pm + tlpkg/tlperl/lib/perl5db.pl + tlpkg/tlperl/lib/perlfaq.pm + tlpkg/tlperl/lib/perllocal.pod + tlpkg/tlperl/lib/re.pm + tlpkg/tlperl/lib/sigtrap.pm + tlpkg/tlperl/lib/sort.pm + tlpkg/tlperl/lib/strict.pm + tlpkg/tlperl/lib/subs.pm + tlpkg/tlperl/lib/threads.pm + tlpkg/tlperl/lib/threads/shared.pm + tlpkg/tlperl/lib/unicore/Blocks.txt + tlpkg/tlperl/lib/unicore/CombiningClass.pl + tlpkg/tlperl/lib/unicore/Decomposition.pl + tlpkg/tlperl/lib/unicore/Heavy.pl + tlpkg/tlperl/lib/unicore/Name.pl + tlpkg/tlperl/lib/unicore/Name.pm + tlpkg/tlperl/lib/unicore/NamedSequences.txt + tlpkg/tlperl/lib/unicore/SpecialCasing.txt + tlpkg/tlperl/lib/unicore/To/Age.pl + tlpkg/tlperl/lib/unicore/To/Bc.pl + tlpkg/tlperl/lib/unicore/To/Bmg.pl + tlpkg/tlperl/lib/unicore/To/Bpb.pl + tlpkg/tlperl/lib/unicore/To/Bpt.pl + tlpkg/tlperl/lib/unicore/To/Cf.pl + tlpkg/tlperl/lib/unicore/To/Digit.pl + tlpkg/tlperl/lib/unicore/To/Ea.pl + tlpkg/tlperl/lib/unicore/To/Fold.pl + tlpkg/tlperl/lib/unicore/To/GCB.pl + tlpkg/tlperl/lib/unicore/To/Gc.pl + tlpkg/tlperl/lib/unicore/To/Hst.pl + tlpkg/tlperl/lib/unicore/To/InPC.pl + tlpkg/tlperl/lib/unicore/To/InSC.pl + tlpkg/tlperl/lib/unicore/To/Isc.pl + tlpkg/tlperl/lib/unicore/To/Jg.pl + tlpkg/tlperl/lib/unicore/To/Jt.pl + tlpkg/tlperl/lib/unicore/To/Lb.pl + tlpkg/tlperl/lib/unicore/To/Lc.pl + tlpkg/tlperl/lib/unicore/To/Lower.pl + tlpkg/tlperl/lib/unicore/To/NFCQC.pl + tlpkg/tlperl/lib/unicore/To/NFDQC.pl + tlpkg/tlperl/lib/unicore/To/NFKCCF.pl + tlpkg/tlperl/lib/unicore/To/NFKCQC.pl + tlpkg/tlperl/lib/unicore/To/NFKDQC.pl + tlpkg/tlperl/lib/unicore/To/Na1.pl + tlpkg/tlperl/lib/unicore/To/NameAlia.pl + tlpkg/tlperl/lib/unicore/To/Nt.pl + tlpkg/tlperl/lib/unicore/To/Nv.pl + tlpkg/tlperl/lib/unicore/To/PerlDeci.pl + tlpkg/tlperl/lib/unicore/To/SB.pl + tlpkg/tlperl/lib/unicore/To/Sc.pl + tlpkg/tlperl/lib/unicore/To/Scx.pl + tlpkg/tlperl/lib/unicore/To/Tc.pl + tlpkg/tlperl/lib/unicore/To/Title.pl + tlpkg/tlperl/lib/unicore/To/Uc.pl + tlpkg/tlperl/lib/unicore/To/Upper.pl + tlpkg/tlperl/lib/unicore/To/Vo.pl + tlpkg/tlperl/lib/unicore/To/WB.pl + tlpkg/tlperl/lib/unicore/To/_PerlLB.pl + tlpkg/tlperl/lib/unicore/To/_PerlSCX.pl + tlpkg/tlperl/lib/unicore/To/_PerlWB.pl + tlpkg/tlperl/lib/unicore/UCD.pl + tlpkg/tlperl/lib/unicore/lib/Age/NA.pl + tlpkg/tlperl/lib/unicore/lib/Age/V100.pl + tlpkg/tlperl/lib/unicore/lib/Age/V11.pl + tlpkg/tlperl/lib/unicore/lib/Age/V20.pl + tlpkg/tlperl/lib/unicore/lib/Age/V30.pl + tlpkg/tlperl/lib/unicore/lib/Age/V31.pl + tlpkg/tlperl/lib/unicore/lib/Age/V32.pl + tlpkg/tlperl/lib/unicore/lib/Age/V40.pl + tlpkg/tlperl/lib/unicore/lib/Age/V41.pl + tlpkg/tlperl/lib/unicore/lib/Age/V50.pl + tlpkg/tlperl/lib/unicore/lib/Age/V51.pl + tlpkg/tlperl/lib/unicore/lib/Age/V52.pl + tlpkg/tlperl/lib/unicore/lib/Age/V60.pl + tlpkg/tlperl/lib/unicore/lib/Age/V61.pl + tlpkg/tlperl/lib/unicore/lib/Age/V70.pl + tlpkg/tlperl/lib/unicore/lib/Age/V80.pl + tlpkg/tlperl/lib/unicore/lib/Age/V90.pl + tlpkg/tlperl/lib/unicore/lib/Alpha/Y.pl + tlpkg/tlperl/lib/unicore/lib/Bc/AL.pl + tlpkg/tlperl/lib/unicore/lib/Bc/AN.pl + tlpkg/tlperl/lib/unicore/lib/Bc/B.pl + tlpkg/tlperl/lib/unicore/lib/Bc/BN.pl + tlpkg/tlperl/lib/unicore/lib/Bc/CS.pl + tlpkg/tlperl/lib/unicore/lib/Bc/EN.pl + tlpkg/tlperl/lib/unicore/lib/Bc/ES.pl + tlpkg/tlperl/lib/unicore/lib/Bc/ET.pl + tlpkg/tlperl/lib/unicore/lib/Bc/L.pl + tlpkg/tlperl/lib/unicore/lib/Bc/NSM.pl + tlpkg/tlperl/lib/unicore/lib/Bc/ON.pl + tlpkg/tlperl/lib/unicore/lib/Bc/R.pl + tlpkg/tlperl/lib/unicore/lib/Bc/WS.pl + tlpkg/tlperl/lib/unicore/lib/BidiC/Y.pl + tlpkg/tlperl/lib/unicore/lib/BidiM/Y.pl + tlpkg/tlperl/lib/unicore/lib/Blk/NB.pl + tlpkg/tlperl/lib/unicore/lib/Bpt/C.pl + tlpkg/tlperl/lib/unicore/lib/Bpt/N.pl + tlpkg/tlperl/lib/unicore/lib/Bpt/O.pl + tlpkg/tlperl/lib/unicore/lib/CE/Y.pl + tlpkg/tlperl/lib/unicore/lib/CI/Y.pl + tlpkg/tlperl/lib/unicore/lib/CWCF/Y.pl + tlpkg/tlperl/lib/unicore/lib/CWCM/Y.pl + tlpkg/tlperl/lib/unicore/lib/CWKCF/Y.pl + tlpkg/tlperl/lib/unicore/lib/CWL/Y.pl + tlpkg/tlperl/lib/unicore/lib/CWT/Y.pl + tlpkg/tlperl/lib/unicore/lib/CWU/Y.pl + tlpkg/tlperl/lib/unicore/lib/Cased/Y.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/A.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/AL.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/AR.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/ATAR.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/B.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/BR.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/DB.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/NK.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/NR.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/OV.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/VR.pl + tlpkg/tlperl/lib/unicore/lib/CompEx/Y.pl + tlpkg/tlperl/lib/unicore/lib/DI/Y.pl + tlpkg/tlperl/lib/unicore/lib/Dash/Y.pl + tlpkg/tlperl/lib/unicore/lib/Dep/Y.pl + tlpkg/tlperl/lib/unicore/lib/Dia/Y.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Com.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Enc.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Fin.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Font.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Init.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Iso.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Med.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Nar.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Nb.pl + tlpkg/tlperl/lib/unicore/lib/Dt/NonCanon.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Sqr.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Sub.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Sup.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Vert.pl + tlpkg/tlperl/lib/unicore/lib/Ea/A.pl + tlpkg/tlperl/lib/unicore/lib/Ea/H.pl + tlpkg/tlperl/lib/unicore/lib/Ea/N.pl + tlpkg/tlperl/lib/unicore/lib/Ea/Na.pl + tlpkg/tlperl/lib/unicore/lib/Ea/W.pl + tlpkg/tlperl/lib/unicore/lib/Ext/Y.pl + tlpkg/tlperl/lib/unicore/lib/GCB/CN.pl + tlpkg/tlperl/lib/unicore/lib/GCB/EB.pl + tlpkg/tlperl/lib/unicore/lib/GCB/EX.pl + tlpkg/tlperl/lib/unicore/lib/GCB/GAZ.pl + tlpkg/tlperl/lib/unicore/lib/GCB/LV.pl + tlpkg/tlperl/lib/unicore/lib/GCB/LVT.pl + tlpkg/tlperl/lib/unicore/lib/GCB/PP.pl + tlpkg/tlperl/lib/unicore/lib/GCB/SM.pl + tlpkg/tlperl/lib/unicore/lib/GCB/XX.pl + tlpkg/tlperl/lib/unicore/lib/Gc/C.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Cf.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Cn.pl + tlpkg/tlperl/lib/unicore/lib/Gc/L.pl + tlpkg/tlperl/lib/unicore/lib/Gc/LC.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Ll.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Lm.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Lo.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Lu.pl + tlpkg/tlperl/lib/unicore/lib/Gc/M.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Mc.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Me.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Mn.pl + tlpkg/tlperl/lib/unicore/lib/Gc/N.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Nd.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Nl.pl + tlpkg/tlperl/lib/unicore/lib/Gc/No.pl + tlpkg/tlperl/lib/unicore/lib/Gc/P.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Pc.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Pd.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Pe.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Pf.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Pi.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Po.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Ps.pl + tlpkg/tlperl/lib/unicore/lib/Gc/S.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Sc.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Sk.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Sm.pl + tlpkg/tlperl/lib/unicore/lib/Gc/So.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Z.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Zs.pl + tlpkg/tlperl/lib/unicore/lib/GrBase/Y.pl + tlpkg/tlperl/lib/unicore/lib/Hex/Y.pl + tlpkg/tlperl/lib/unicore/lib/Hst/NA.pl + tlpkg/tlperl/lib/unicore/lib/Hyphen/T.pl + tlpkg/tlperl/lib/unicore/lib/IDC/Y.pl + tlpkg/tlperl/lib/unicore/lib/IDS/Y.pl + tlpkg/tlperl/lib/unicore/lib/Ideo/Y.pl + tlpkg/tlperl/lib/unicore/lib/In/10_0.pl + tlpkg/tlperl/lib/unicore/lib/In/2_0.pl + tlpkg/tlperl/lib/unicore/lib/In/2_1.pl + tlpkg/tlperl/lib/unicore/lib/In/3_0.pl + tlpkg/tlperl/lib/unicore/lib/In/3_1.pl + tlpkg/tlperl/lib/unicore/lib/In/3_2.pl + tlpkg/tlperl/lib/unicore/lib/In/4_0.pl + tlpkg/tlperl/lib/unicore/lib/In/4_1.pl + tlpkg/tlperl/lib/unicore/lib/In/5_0.pl + tlpkg/tlperl/lib/unicore/lib/In/5_1.pl + tlpkg/tlperl/lib/unicore/lib/In/5_2.pl + tlpkg/tlperl/lib/unicore/lib/In/6_0.pl + tlpkg/tlperl/lib/unicore/lib/In/6_1.pl + tlpkg/tlperl/lib/unicore/lib/In/6_2.pl + tlpkg/tlperl/lib/unicore/lib/In/6_3.pl + tlpkg/tlperl/lib/unicore/lib/In/7_0.pl + tlpkg/tlperl/lib/unicore/lib/In/8_0.pl + tlpkg/tlperl/lib/unicore/lib/In/9_0.pl + tlpkg/tlperl/lib/unicore/lib/InPC/Bottom.pl + tlpkg/tlperl/lib/unicore/lib/InPC/Left.pl + tlpkg/tlperl/lib/unicore/lib/InPC/LeftAndR.pl + tlpkg/tlperl/lib/unicore/lib/InPC/NA.pl + tlpkg/tlperl/lib/unicore/lib/InPC/Overstru.pl + tlpkg/tlperl/lib/unicore/lib/InPC/Right.pl + tlpkg/tlperl/lib/unicore/lib/InPC/Top.pl + tlpkg/tlperl/lib/unicore/lib/InPC/TopAndBo.pl + tlpkg/tlperl/lib/unicore/lib/InPC/TopAndL2.pl + tlpkg/tlperl/lib/unicore/lib/InPC/TopAndLe.pl + tlpkg/tlperl/lib/unicore/lib/InPC/TopAndRi.pl + tlpkg/tlperl/lib/unicore/lib/InPC/VisualOr.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Avagraha.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Bindu.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Cantilla.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona2.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona3.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona4.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona5.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona6.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consonan.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Invisibl.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Nukta.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Number.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Other.pl + tlpkg/tlperl/lib/unicore/lib/InSC/PureKill.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Syllable.pl + tlpkg/tlperl/lib/unicore/lib/InSC/ToneMark.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Virama.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Visarga.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Vowel.pl + tlpkg/tlperl/lib/unicore/lib/InSC/VowelDep.pl + tlpkg/tlperl/lib/unicore/lib/InSC/VowelInd.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Ain.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Alef.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Beh.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Dal.pl + tlpkg/tlperl/lib/unicore/lib/Jg/FarsiYeh.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Feh.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Gaf.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Hah.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Kaf.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Lam.pl + tlpkg/tlperl/lib/unicore/lib/Jg/NoJoinin.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Qaf.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Reh.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Sad.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Seen.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Waw.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Yeh.pl + tlpkg/tlperl/lib/unicore/lib/Jt/C.pl + tlpkg/tlperl/lib/unicore/lib/Jt/D.pl + tlpkg/tlperl/lib/unicore/lib/Jt/R.pl + tlpkg/tlperl/lib/unicore/lib/Jt/T.pl + tlpkg/tlperl/lib/unicore/lib/Jt/U.pl + tlpkg/tlperl/lib/unicore/lib/Lb/AI.pl + tlpkg/tlperl/lib/unicore/lib/Lb/AL.pl + tlpkg/tlperl/lib/unicore/lib/Lb/BA.pl + tlpkg/tlperl/lib/unicore/lib/Lb/BB.pl + tlpkg/tlperl/lib/unicore/lib/Lb/CJ.pl + tlpkg/tlperl/lib/unicore/lib/Lb/CL.pl + tlpkg/tlperl/lib/unicore/lib/Lb/CM.pl + tlpkg/tlperl/lib/unicore/lib/Lb/EB.pl + tlpkg/tlperl/lib/unicore/lib/Lb/EX.pl + tlpkg/tlperl/lib/unicore/lib/Lb/GL.pl + tlpkg/tlperl/lib/unicore/lib/Lb/ID.pl + tlpkg/tlperl/lib/unicore/lib/Lb/IN.pl + tlpkg/tlperl/lib/unicore/lib/Lb/IS.pl + tlpkg/tlperl/lib/unicore/lib/Lb/NS.pl + tlpkg/tlperl/lib/unicore/lib/Lb/OP.pl + tlpkg/tlperl/lib/unicore/lib/Lb/PO.pl + tlpkg/tlperl/lib/unicore/lib/Lb/PR.pl + tlpkg/tlperl/lib/unicore/lib/Lb/QU.pl + tlpkg/tlperl/lib/unicore/lib/Lb/SA.pl + tlpkg/tlperl/lib/unicore/lib/Lb/XX.pl + tlpkg/tlperl/lib/unicore/lib/Lower/Y.pl + tlpkg/tlperl/lib/unicore/lib/Math/Y.pl + tlpkg/tlperl/lib/unicore/lib/NFCQC/M.pl + tlpkg/tlperl/lib/unicore/lib/NFCQC/Y.pl + tlpkg/tlperl/lib/unicore/lib/NFDQC/N.pl + tlpkg/tlperl/lib/unicore/lib/NFDQC/Y.pl + tlpkg/tlperl/lib/unicore/lib/NFKCQC/N.pl + tlpkg/tlperl/lib/unicore/lib/NFKCQC/Y.pl + tlpkg/tlperl/lib/unicore/lib/NFKDQC/N.pl + tlpkg/tlperl/lib/unicore/lib/NFKDQC/Y.pl + tlpkg/tlperl/lib/unicore/lib/Nt/Di.pl + tlpkg/tlperl/lib/unicore/lib/Nt/None.pl + tlpkg/tlperl/lib/unicore/lib/Nt/Nu.pl + tlpkg/tlperl/lib/unicore/lib/Nv/0.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1.pl + tlpkg/tlperl/lib/unicore/lib/Nv/10.pl + tlpkg/tlperl/lib/unicore/lib/Nv/100.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/10000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/11.pl + tlpkg/tlperl/lib/unicore/lib/Nv/12.pl + tlpkg/tlperl/lib/unicore/lib/Nv/13.pl + tlpkg/tlperl/lib/unicore/lib/Nv/14.pl + tlpkg/tlperl/lib/unicore/lib/Nv/15.pl + tlpkg/tlperl/lib/unicore/lib/Nv/16.pl + tlpkg/tlperl/lib/unicore/lib/Nv/17.pl + tlpkg/tlperl/lib/unicore/lib/Nv/18.pl + tlpkg/tlperl/lib/unicore/lib/Nv/19.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1_16.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1_2.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1_3.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1_4.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1_8.pl + tlpkg/tlperl/lib/unicore/lib/Nv/2.pl + tlpkg/tlperl/lib/unicore/lib/Nv/20.pl + tlpkg/tlperl/lib/unicore/lib/Nv/200.pl + tlpkg/tlperl/lib/unicore/lib/Nv/2_3.pl + tlpkg/tlperl/lib/unicore/lib/Nv/3.pl + tlpkg/tlperl/lib/unicore/lib/Nv/30.pl + tlpkg/tlperl/lib/unicore/lib/Nv/300.pl + tlpkg/tlperl/lib/unicore/lib/Nv/3_16.pl + tlpkg/tlperl/lib/unicore/lib/Nv/3_4.pl + tlpkg/tlperl/lib/unicore/lib/Nv/4.pl + tlpkg/tlperl/lib/unicore/lib/Nv/40.pl + tlpkg/tlperl/lib/unicore/lib/Nv/400.pl + tlpkg/tlperl/lib/unicore/lib/Nv/5.pl + tlpkg/tlperl/lib/unicore/lib/Nv/50.pl + tlpkg/tlperl/lib/unicore/lib/Nv/500.pl + tlpkg/tlperl/lib/unicore/lib/Nv/5000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/50000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/6.pl + tlpkg/tlperl/lib/unicore/lib/Nv/60.pl + tlpkg/tlperl/lib/unicore/lib/Nv/600.pl + tlpkg/tlperl/lib/unicore/lib/Nv/7.pl + tlpkg/tlperl/lib/unicore/lib/Nv/70.pl + tlpkg/tlperl/lib/unicore/lib/Nv/700.pl + tlpkg/tlperl/lib/unicore/lib/Nv/8.pl + tlpkg/tlperl/lib/unicore/lib/Nv/80.pl + tlpkg/tlperl/lib/unicore/lib/Nv/800.pl + tlpkg/tlperl/lib/unicore/lib/Nv/9.pl + tlpkg/tlperl/lib/unicore/lib/Nv/90.pl + tlpkg/tlperl/lib/unicore/lib/Nv/900.pl + tlpkg/tlperl/lib/unicore/lib/PCM/Y.pl + tlpkg/tlperl/lib/unicore/lib/PatSyn/Y.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Alnum.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Assigned.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Blank.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Graph.pl + tlpkg/tlperl/lib/unicore/lib/Perl/PerlWord.pl + tlpkg/tlperl/lib/unicore/lib/Perl/PosixPun.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Print.pl + tlpkg/tlperl/lib/unicore/lib/Perl/SpacePer.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Title.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Word.pl + tlpkg/tlperl/lib/unicore/lib/Perl/XPosixPu.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlAny.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlCh2.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlCha.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlFol.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlIDC.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlIDS.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlNch.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlPat.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlPr2.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlPro.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlQuo.pl + tlpkg/tlperl/lib/unicore/lib/QMark/Y.pl + tlpkg/tlperl/lib/unicore/lib/SB/AT.pl + tlpkg/tlperl/lib/unicore/lib/SB/CL.pl + tlpkg/tlperl/lib/unicore/lib/SB/EX.pl + tlpkg/tlperl/lib/unicore/lib/SB/FO.pl + tlpkg/tlperl/lib/unicore/lib/SB/LE.pl + tlpkg/tlperl/lib/unicore/lib/SB/LO.pl + tlpkg/tlperl/lib/unicore/lib/SB/NU.pl + tlpkg/tlperl/lib/unicore/lib/SB/SC.pl + tlpkg/tlperl/lib/unicore/lib/SB/ST.pl + tlpkg/tlperl/lib/unicore/lib/SB/Sp.pl + tlpkg/tlperl/lib/unicore/lib/SB/UP.pl + tlpkg/tlperl/lib/unicore/lib/SB/XX.pl + tlpkg/tlperl/lib/unicore/lib/SD/Y.pl + tlpkg/tlperl/lib/unicore/lib/STerm/Y.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Arab.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Armn.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Beng.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Cprt.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Cyrl.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Deva.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Dupl.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Geor.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Glag.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Gran.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Grek.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Gujr.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Guru.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Han.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Hang.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Hira.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Kana.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Knda.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Latn.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Limb.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Linb.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Mlym.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Mong.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Mult.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Orya.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Sinh.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Syrc.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Taml.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Telu.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Zinh.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Zyyy.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Adlm.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Arab.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Armn.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Beng.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Bhks.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Bopo.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Cakm.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Cham.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Copt.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Cprt.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Cyrl.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Deva.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Dupl.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Ethi.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Geor.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Glag.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Gonm.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Gran.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Grek.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Gujr.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Guru.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Han.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Hang.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Hebr.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Hira.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Hmng.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Kana.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Khar.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Khmr.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Knda.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Lana.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Lao.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Latn.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Limb.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Lina.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Linb.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Mlym.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Mong.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Mult.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Mymr.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Orya.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Phlp.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Shrd.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Sind.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Sinh.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Syrc.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Tagb.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Takr.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Talu.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Taml.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Telu.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Thaa.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Tibt.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Tirh.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Xsux.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Yi.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Zinh.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Zyyy.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Zzzz.pl + tlpkg/tlperl/lib/unicore/lib/Term/Y.pl + tlpkg/tlperl/lib/unicore/lib/UIdeo/Y.pl + tlpkg/tlperl/lib/unicore/lib/Upper/Y.pl + tlpkg/tlperl/lib/unicore/lib/Vo/R.pl + tlpkg/tlperl/lib/unicore/lib/Vo/Tr.pl + tlpkg/tlperl/lib/unicore/lib/Vo/Tu.pl + tlpkg/tlperl/lib/unicore/lib/Vo/U.pl + tlpkg/tlperl/lib/unicore/lib/WB/EX.pl + tlpkg/tlperl/lib/unicore/lib/WB/Extend.pl + tlpkg/tlperl/lib/unicore/lib/WB/FO.pl + tlpkg/tlperl/lib/unicore/lib/WB/HL.pl + tlpkg/tlperl/lib/unicore/lib/WB/KA.pl + tlpkg/tlperl/lib/unicore/lib/WB/LE.pl + tlpkg/tlperl/lib/unicore/lib/WB/MB.pl + tlpkg/tlperl/lib/unicore/lib/WB/ML.pl + tlpkg/tlperl/lib/unicore/lib/WB/MN.pl + tlpkg/tlperl/lib/unicore/lib/WB/NU.pl + tlpkg/tlperl/lib/unicore/lib/WB/XX.pl + tlpkg/tlperl/lib/unicore/lib/XIDC/Y.pl + tlpkg/tlperl/lib/unicore/lib/XIDS/Y.pl + tlpkg/tlperl/lib/unicore/version + tlpkg/tlperl/lib/utf8.pm + tlpkg/tlperl/lib/utf8_heavy.pl + tlpkg/tlperl/lib/vars.pm + tlpkg/tlperl/lib/version.pm + tlpkg/tlperl/lib/version.pod + tlpkg/tlperl/lib/version/Internals.pod + tlpkg/tlperl/lib/version/regex.pm + tlpkg/tlperl/lib/vmsish.pm + tlpkg/tlperl/lib/warnings.pm + tlpkg/tlperl/lib/warnings/register.pm + tlpkg/tlperl/site/lib/Cpanel/JSON/XS.pm + tlpkg/tlperl/site/lib/Cpanel/JSON/XS/Boolean.pm + tlpkg/tlperl/site/lib/Cpanel/JSON/XS/Type.pm + tlpkg/tlperl/site/lib/Date/Format.pm + tlpkg/tlperl/site/lib/Date/Language.pm + tlpkg/tlperl/site/lib/Date/Language/Afar.pm + tlpkg/tlperl/site/lib/Date/Language/Amharic.pm + tlpkg/tlperl/site/lib/Date/Language/Austrian.pm + tlpkg/tlperl/site/lib/Date/Language/Brazilian.pm + tlpkg/tlperl/site/lib/Date/Language/Bulgarian.pm + tlpkg/tlperl/site/lib/Date/Language/Chinese.pm + tlpkg/tlperl/site/lib/Date/Language/Chinese_GB.pm + tlpkg/tlperl/site/lib/Date/Language/Czech.pm + tlpkg/tlperl/site/lib/Date/Language/Danish.pm + tlpkg/tlperl/site/lib/Date/Language/Dutch.pm + tlpkg/tlperl/site/lib/Date/Language/English.pm + tlpkg/tlperl/site/lib/Date/Language/Finnish.pm + tlpkg/tlperl/site/lib/Date/Language/French.pm + tlpkg/tlperl/site/lib/Date/Language/Gedeo.pm + tlpkg/tlperl/site/lib/Date/Language/German.pm + tlpkg/tlperl/site/lib/Date/Language/Greek.pm + tlpkg/tlperl/site/lib/Date/Language/Hungarian.pm + tlpkg/tlperl/site/lib/Date/Language/Icelandic.pm + tlpkg/tlperl/site/lib/Date/Language/Italian.pm + tlpkg/tlperl/site/lib/Date/Language/Norwegian.pm + tlpkg/tlperl/site/lib/Date/Language/Oromo.pm + tlpkg/tlperl/site/lib/Date/Language/Romanian.pm + tlpkg/tlperl/site/lib/Date/Language/Russian.pm + tlpkg/tlperl/site/lib/Date/Language/Russian_cp1251.pm + tlpkg/tlperl/site/lib/Date/Language/Russian_koi8r.pm + tlpkg/tlperl/site/lib/Date/Language/Sidama.pm + tlpkg/tlperl/site/lib/Date/Language/Somali.pm + tlpkg/tlperl/site/lib/Date/Language/Spanish.pm + tlpkg/tlperl/site/lib/Date/Language/Swedish.pm + tlpkg/tlperl/site/lib/Date/Language/Tigrinya.pm + tlpkg/tlperl/site/lib/Date/Language/TigrinyaEritrean.pm + tlpkg/tlperl/site/lib/Date/Language/TigrinyaEthiopian.pm + tlpkg/tlperl/site/lib/Date/Language/Turkish.pm + tlpkg/tlperl/site/lib/Date/Parse.pm + tlpkg/tlperl/site/lib/Digest/SHA1.pm + tlpkg/tlperl/site/lib/Encode/Locale.pm + tlpkg/tlperl/site/lib/Encode/compat.pm + tlpkg/tlperl/site/lib/Encode/compat/5006001.pm + tlpkg/tlperl/site/lib/Encode/compat/Alias.pm + tlpkg/tlperl/site/lib/Encode/compat/common.pm + tlpkg/tlperl/site/lib/File/Listing.pm + tlpkg/tlperl/site/lib/File/Which.pm + tlpkg/tlperl/site/lib/HTML/Entities.pm + tlpkg/tlperl/site/lib/HTML/Filter.pm + tlpkg/tlperl/site/lib/HTML/HeadParser.pm + tlpkg/tlperl/site/lib/HTML/LinkExtor.pm + tlpkg/tlperl/site/lib/HTML/Parser.pm + tlpkg/tlperl/site/lib/HTML/PullParser.pm + tlpkg/tlperl/site/lib/HTML/Tagset.pm + tlpkg/tlperl/site/lib/HTML/TokeParser.pm + tlpkg/tlperl/site/lib/HTTP/Config.pm + tlpkg/tlperl/site/lib/HTTP/Cookies.pm + tlpkg/tlperl/site/lib/HTTP/Cookies/Microsoft.pm + tlpkg/tlperl/site/lib/HTTP/Cookies/Netscape.pm + tlpkg/tlperl/site/lib/HTTP/Daemon.pm + tlpkg/tlperl/site/lib/HTTP/Date.pm + tlpkg/tlperl/site/lib/HTTP/Headers.pm + tlpkg/tlperl/site/lib/HTTP/Headers/Auth.pm + tlpkg/tlperl/site/lib/HTTP/Headers/ETag.pm + tlpkg/tlperl/site/lib/HTTP/Headers/Util.pm + tlpkg/tlperl/site/lib/HTTP/Message.pm + tlpkg/tlperl/site/lib/HTTP/Negotiate.pm + tlpkg/tlperl/site/lib/HTTP/Request.pm + tlpkg/tlperl/site/lib/HTTP/Request/Common.pm + tlpkg/tlperl/site/lib/HTTP/Response.pm + tlpkg/tlperl/site/lib/HTTP/Status.pm + tlpkg/tlperl/site/lib/IO/HTML.pm + tlpkg/tlperl/site/lib/IO/String.pm + tlpkg/tlperl/site/lib/JSON/MaybeXS.pm + tlpkg/tlperl/site/lib/LWP.pm + tlpkg/tlperl/site/lib/LWP/Authen/Basic.pm + tlpkg/tlperl/site/lib/LWP/Authen/Digest.pm + tlpkg/tlperl/site/lib/LWP/Authen/Ntlm.pm + tlpkg/tlperl/site/lib/LWP/ConnCache.pm + tlpkg/tlperl/site/lib/LWP/Debug.pm + tlpkg/tlperl/site/lib/LWP/Debug/TraceHTTP.pm + tlpkg/tlperl/site/lib/LWP/DebugFile.pm + tlpkg/tlperl/site/lib/LWP/MediaTypes.pm + tlpkg/tlperl/site/lib/LWP/MemberMixin.pm + tlpkg/tlperl/site/lib/LWP/Protocol.pm + tlpkg/tlperl/site/lib/LWP/Protocol/cpan.pm + tlpkg/tlperl/site/lib/LWP/Protocol/data.pm + tlpkg/tlperl/site/lib/LWP/Protocol/file.pm + tlpkg/tlperl/site/lib/LWP/Protocol/ftp.pm + tlpkg/tlperl/site/lib/LWP/Protocol/gopher.pm + tlpkg/tlperl/site/lib/LWP/Protocol/http.pm + tlpkg/tlperl/site/lib/LWP/Protocol/loopback.pm + tlpkg/tlperl/site/lib/LWP/Protocol/mailto.pm + tlpkg/tlperl/site/lib/LWP/Protocol/nntp.pm + tlpkg/tlperl/site/lib/LWP/Protocol/nogo.pm + tlpkg/tlperl/site/lib/LWP/RobotUA.pm + tlpkg/tlperl/site/lib/LWP/Simple.pm + tlpkg/tlperl/site/lib/LWP/UserAgent.pm + tlpkg/tlperl/site/lib/LWP/media.types + tlpkg/tlperl/site/lib/Math/Int64.pm + tlpkg/tlperl/site/lib/Math/Int64/die_on_overflow.pm + tlpkg/tlperl/site/lib/Math/Int64/native_if_available.pm + tlpkg/tlperl/site/lib/Math/UInt64.pm + tlpkg/tlperl/site/lib/Mozilla/CA.pm + tlpkg/tlperl/site/lib/Mozilla/CA/cacert.pem + tlpkg/tlperl/site/lib/Mozilla/mk-ca-bundle.pl + tlpkg/tlperl/site/lib/Net/HTTP.pm + tlpkg/tlperl/site/lib/Net/HTTP/Methods.pm + tlpkg/tlperl/site/lib/Net/HTTP/NB.pm + tlpkg/tlperl/site/lib/Net/HTTPS.pm + tlpkg/tlperl/site/lib/OLE.pm + tlpkg/tlperl/site/lib/Socket.pm + tlpkg/tlperl/site/lib/Test/Fatal.pm + tlpkg/tlperl/site/lib/Test/Needs.pm + tlpkg/tlperl/site/lib/Test/RequiresInternet.pm + tlpkg/tlperl/site/lib/Tie/Registry.pm + tlpkg/tlperl/site/lib/Time/Zone.pm + tlpkg/tlperl/site/lib/Try/Tiny.pm + tlpkg/tlperl/site/lib/URI.pm + tlpkg/tlperl/site/lib/URI/Escape.pm + tlpkg/tlperl/site/lib/URI/Heuristic.pm + tlpkg/tlperl/site/lib/URI/IRI.pm + tlpkg/tlperl/site/lib/URI/QueryParam.pm + tlpkg/tlperl/site/lib/URI/Split.pm + tlpkg/tlperl/site/lib/URI/URL.pm + tlpkg/tlperl/site/lib/URI/WithBase.pm + tlpkg/tlperl/site/lib/URI/_foreign.pm + tlpkg/tlperl/site/lib/URI/_generic.pm + tlpkg/tlperl/site/lib/URI/_idna.pm + tlpkg/tlperl/site/lib/URI/_ldap.pm + tlpkg/tlperl/site/lib/URI/_login.pm + tlpkg/tlperl/site/lib/URI/_punycode.pm + tlpkg/tlperl/site/lib/URI/_query.pm + tlpkg/tlperl/site/lib/URI/_segment.pm + tlpkg/tlperl/site/lib/URI/_server.pm + tlpkg/tlperl/site/lib/URI/_userpass.pm + tlpkg/tlperl/site/lib/URI/data.pm + tlpkg/tlperl/site/lib/URI/file.pm + tlpkg/tlperl/site/lib/URI/file/Base.pm + tlpkg/tlperl/site/lib/URI/file/FAT.pm + tlpkg/tlperl/site/lib/URI/file/Mac.pm + tlpkg/tlperl/site/lib/URI/file/OS2.pm + tlpkg/tlperl/site/lib/URI/file/QNX.pm + tlpkg/tlperl/site/lib/URI/file/Unix.pm + tlpkg/tlperl/site/lib/URI/file/Win32.pm + tlpkg/tlperl/site/lib/URI/ftp.pm + tlpkg/tlperl/site/lib/URI/gopher.pm + tlpkg/tlperl/site/lib/URI/http.pm + tlpkg/tlperl/site/lib/URI/https.pm + tlpkg/tlperl/site/lib/URI/ldap.pm + tlpkg/tlperl/site/lib/URI/ldapi.pm + tlpkg/tlperl/site/lib/URI/ldaps.pm + tlpkg/tlperl/site/lib/URI/mailto.pm + tlpkg/tlperl/site/lib/URI/mms.pm + tlpkg/tlperl/site/lib/URI/news.pm + tlpkg/tlperl/site/lib/URI/nntp.pm + tlpkg/tlperl/site/lib/URI/pop.pm + tlpkg/tlperl/site/lib/URI/rlogin.pm + tlpkg/tlperl/site/lib/URI/rsync.pm + tlpkg/tlperl/site/lib/URI/rtsp.pm + tlpkg/tlperl/site/lib/URI/rtspu.pm + tlpkg/tlperl/site/lib/URI/sftp.pm + tlpkg/tlperl/site/lib/URI/sip.pm + tlpkg/tlperl/site/lib/URI/sips.pm + tlpkg/tlperl/site/lib/URI/snews.pm + tlpkg/tlperl/site/lib/URI/ssh.pm + tlpkg/tlperl/site/lib/URI/telnet.pm + tlpkg/tlperl/site/lib/URI/tn3270.pm + tlpkg/tlperl/site/lib/URI/urn.pm + tlpkg/tlperl/site/lib/URI/urn/isbn.pm + tlpkg/tlperl/site/lib/URI/urn/oid.pm + tlpkg/tlperl/site/lib/WWW/RobotRules.pm + tlpkg/tlperl/site/lib/WWW/RobotRules/AnyDBM_File.pm + tlpkg/tlperl/site/lib/Win32/API.pm + tlpkg/tlperl/site/lib/Win32/API/Callback.pm + tlpkg/tlperl/site/lib/Win32/API/Callback/IATPatch.pod + tlpkg/tlperl/site/lib/Win32/API/Struct.pm + tlpkg/tlperl/site/lib/Win32/API/Type.pm + tlpkg/tlperl/site/lib/Win32/Console.pm + tlpkg/tlperl/site/lib/Win32/OLE.pm + tlpkg/tlperl/site/lib/Win32/OLE/Const.pm + tlpkg/tlperl/site/lib/Win32/OLE/Enum.pm + tlpkg/tlperl/site/lib/Win32/OLE/Lite.pm + tlpkg/tlperl/site/lib/Win32/OLE/NEWS.pod + tlpkg/tlperl/site/lib/Win32/OLE/NLS.pm + tlpkg/tlperl/site/lib/Win32/OLE/TPJ.pod + tlpkg/tlperl/site/lib/Win32/OLE/TypeInfo.pm + tlpkg/tlperl/site/lib/Win32/OLE/Variant.pm + tlpkg/tlperl/site/lib/Win32/Shortcut.pm + tlpkg/tlperl/site/lib/Win32/TieRegistry.pm + tlpkg/tlperl/site/lib/Win32/WinError.pm + tlpkg/tlperl/site/lib/Win32API/Registry.pm + tlpkg/tlperl/site/lib/Win32API/Registry/cRegistry.pc + tlpkg/tlperl/site/lib/auto/Cpanel/JSON/XS/.packlist + tlpkg/tlperl/site/lib/auto/Cpanel/JSON/XS/XS.dll + tlpkg/tlperl/site/lib/auto/Date/Parse/.packlist + tlpkg/tlperl/site/lib/auto/Digest/SHA1/.packlist + tlpkg/tlperl/site/lib/auto/Digest/SHA1/SHA1.dll + tlpkg/tlperl/site/lib/auto/Encode/Locale/.packlist + tlpkg/tlperl/site/lib/auto/Encode/compat/.packlist + tlpkg/tlperl/site/lib/auto/File/Listing/.packlist + tlpkg/tlperl/site/lib/auto/File/Which/.packlist + tlpkg/tlperl/site/lib/auto/HTML/Parser/.packlist + tlpkg/tlperl/site/lib/auto/HTML/Parser/Parser.dll + tlpkg/tlperl/site/lib/auto/HTML/Tagset/.packlist + tlpkg/tlperl/site/lib/auto/HTTP/Cookies/.packlist + tlpkg/tlperl/site/lib/auto/HTTP/Daemon/.packlist + tlpkg/tlperl/site/lib/auto/HTTP/Date/.packlist + tlpkg/tlperl/site/lib/auto/HTTP/Message/.packlist + tlpkg/tlperl/site/lib/auto/HTTP/Negotiate/.packlist + tlpkg/tlperl/site/lib/auto/IO/HTML/.packlist + tlpkg/tlperl/site/lib/auto/IO/String/.packlist + tlpkg/tlperl/site/lib/auto/JSON/MaybeXS/.packlist + tlpkg/tlperl/site/lib/auto/LWP/MediaTypes/.packlist + tlpkg/tlperl/site/lib/auto/Math/Int64/.packlist + tlpkg/tlperl/site/lib/auto/Math/Int64/Int64.dll + tlpkg/tlperl/site/lib/auto/Mozilla/CA/.packlist + tlpkg/tlperl/site/lib/auto/Net/HTTP/.packlist + tlpkg/tlperl/site/lib/auto/Socket/.packlist + tlpkg/tlperl/site/lib/auto/Socket/Socket.dll + tlpkg/tlperl/site/lib/auto/Test/Fatal/.packlist + tlpkg/tlperl/site/lib/auto/Test/Needs/.packlist + tlpkg/tlperl/site/lib/auto/Test/RequiresInternet/.packlist + tlpkg/tlperl/site/lib/auto/Try/Tiny/.packlist + tlpkg/tlperl/site/lib/auto/URI/.packlist + tlpkg/tlperl/site/lib/auto/WWW/RobotRules/.packlist + tlpkg/tlperl/site/lib/auto/Win32/API/.packlist + tlpkg/tlperl/site/lib/auto/Win32/API/API.dll + tlpkg/tlperl/site/lib/auto/Win32/API/Callback/Callback.dll + tlpkg/tlperl/site/lib/auto/Win32/Console/.packlist + tlpkg/tlperl/site/lib/auto/Win32/Console/Console.dll + tlpkg/tlperl/site/lib/auto/Win32/OLE/.packlist + tlpkg/tlperl/site/lib/auto/Win32/OLE/OLE.dll + tlpkg/tlperl/site/lib/auto/Win32/Shortcut/.packlist + tlpkg/tlperl/site/lib/auto/Win32/Shortcut/Shortcut.dll + tlpkg/tlperl/site/lib/auto/Win32/TieRegistry/.packlist + tlpkg/tlperl/site/lib/auto/Win32API/Registry/.packlist + tlpkg/tlperl/site/lib/auto/Win32API/Registry/Registry.dll + tlpkg/tlperl/site/lib/auto/libwww/perl/.packlist + tlpkg/tlperl/site/lib/libwww/lwpcook.pod + tlpkg/tlperl/site/lib/libwww/lwptut.pod + tlpkg/tltcl/tclkit.exe +binfiles arch=x86_64-cygwin size=45 + tlpkg/installer/xz/xz.x86_64-cygwin.exe +binfiles arch=x86_64-darwin size=201 + tlpkg/installer/wget/wget.x86_64-darwin + tlpkg/installer/xz/xz.x86_64-darwin +binfiles arch=x86_64-darwinlegacy size=217 + tlpkg/installer/wget/wget.x86_64-darwinlegacy + tlpkg/installer/xz/xz.x86_64-darwinlegacy +binfiles arch=x86_64-linux size=45 + tlpkg/installer/xz/xz.x86_64-linux +binfiles arch=x86_64-linuxmusl size=431 + tlpkg/installer/wget/wget.x86_64-linuxmusl + tlpkg/installer/xz/xz.x86_64-linuxmusl +binfiles arch=x86_64-solaris size=47 + tlpkg/installer/xz/xz.x86_64-solaris + name 12many category Package revision 15878 catalogue one2many -shortdesc Generalising mathematical index sets. +shortdesc Generalising mathematical index sets relocated 1 longdesc In the discrete branches of mathematics and the computer longdesc sciences, it will only take some seconds before you're faced @@ -11,177 +5760,846 @@ longdesc others $\{j:1\leq j\leq m\}$, and the journal you're submitting longdesc to might want something else entirely. The 12many package longdesc provides an interface that makes changing from one to another a longdesc one-line change. -runfiles size=1 - RELOC/tex/latex/12many/12many.sty +containersize 2104 +containerchecksum 57a177b65450718631f36bfd8db0f2d1bff788f3bf147137b6412714cc945c7e08832f14f9e7e659adf7e072a91f13a2ea27fe3161cd9b60313bc956f1f543c6 +doccontainersize 375412 +doccontainerchecksum 9ce7fdae151a116ef6b22943bcbd1e94b90862baa5d50f54a00105d1f2d623f75a2e1440c3c49c560e2e6c5baddb8a6772753f400165b63a90a84f540e3fa381 docfiles size=98 - RELOC/doc/latex/12many/12many.pdf - RELOC/doc/latex/12many/README + RELOC/doc/latex/12many/12many.pdf details="Package documentation" + RELOC/doc/latex/12many/README details="Readme" +srccontainersize 6592 +srccontainerchecksum f007dcaccb364964a73da6a09db5e6a25ee401d8108b19021b67023af273f486392cef6a0b01e951e9fa885304d0e157b919cbd6abc472a96dfbbb0f432b8530 srcfiles size=6 RELOC/source/latex/12many/12many.dtx RELOC/source/latex/12many/12many.ins +runfiles size=1 + RELOC/tex/latex/12many/12many.sty catalogue-ctan /macros/latex/contrib/12many -catalogue-date 2012-06-16 14:32:26 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics maths catalogue-version 0.3 name 2up category Package -revision 18310 -relocated 1 -runfiles size=4 - RELOC/tex/generic/2up/2up.sty - RELOC/tex/generic/2up/2up.tex +revision 41578 +catalogue twoup-gen +shortdesc Macros to print two-up +relocated 1 +longdesc The 2up package offers considerable flexibility as to paper +longdesc size and layout, and produces a standard dvi file without +longdesc involving additional dvi or PostScript filters. +containersize 4192 +containerchecksum b7844f246ef486d68babff92f2f648ef6b2eab28dbf8d22f649b2c9c26fc857b05f475e766a0c9b4c4cb5be1224afc690c22d19865e9efb9f4e75a8ff6d9dda8 +doccontainersize 62740 +doccontainerchecksum c8569e5cec43525d6814816f7fdaa6bc9ce0ea810fd6be60da992c251fcfaaf4c5229a1956c1fc3e6675ea5dfb4529267acc5f198053a80902b69b25a1464b75 docfiles size=24 - RELOC/doc/generic/2up/2up-doc.pdf + RELOC/doc/generic/2up/2up-doc.pdf details="Package documentation" RELOC/doc/generic/2up/2up-doc.tex RELOC/doc/generic/2up/Changes RELOC/doc/generic/2up/Makefile RELOC/doc/generic/2up/README +runfiles size=4 + RELOC/tex/generic/2up/2up.sty + RELOC/tex/generic/2up/2up.tex +catalogue-also twoupltx +catalogue-ctan /macros/generic/2up +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license other-free +catalogue-topics layout +catalogue-version 1.2 + +name Asana-Math +category Package +revision 50999 +shortdesc A font to typeset maths in Xe(La)TeX and Lua(La)TeX +relocated 1 +longdesc The Asana-Math font is an OpenType font that includes almost +longdesc all mathematical Unicode symbols and it can be used to typeset +longdesc mathematical text with any software that can understand the +longdesc MATH OpenType table (e.g., XeTeX 0.997 and Microsoft Word +longdesc 2007). The font is beta software. Typesetting support for use +longdesc with LaTeX is provided by the fontspec and unicode-math +longdesc packages. +containersize 673828 +containerchecksum e1ee08540790685aab85c8acb407526f5936478c37d86b266728fdf39bb906bc7f6566bf5eae90b631eb59f59d65d414943a6faab922681199af76102078ed4f +doccontainersize 3748 +doccontainerchecksum 69a6615dda5f7e47fdff1b0b1afc4211f749a929b81f19a554246033e6f5f4a482c3c03a6903b64d83c4daeccb70983dacb35467047a467314637e65a19c917c +docfiles size=3 + RELOC/doc/fonts/Asana-Math/FontLog.txt + RELOC/doc/fonts/Asana-Math/README details="Readme" +runfiles size=330 + RELOC/fonts/opentype/public/Asana-Math/Asana-Math.otf + RELOC/fonts/truetype/public/Asana-Math/ASANA.TTC +catalogue-also stix xits +catalogue-ctan /fonts/Asana-Math +catalogue-date 2019-04-15 18:54:40 +0200 +catalogue-license ofl +catalogue-topics font font-maths font-otf font-ttf +catalogue-version 000.958 + +name ESIEEcv +category Package +revision 15878 +shortdesc Curriculum vitae for French use +relocated 1 +longdesc The package allows the user to set up a curriculum vitae as a +longdesc French employer will expect. +containersize 1596 +containerchecksum 79fe8175d0adf25ebf30421eca323f9042bc98792290763b06ba53978bf4962dabab228b9aa6220f859f64356eabd2cc94e71351aac441e64afa3fca8f73f742 +doccontainersize 131168 +doccontainerchecksum 85d731182d5284da69254744a7d9e23326f5344a6585ae95410671cd5721961958480fab4b621d58fe01ff9bf0a602b3f94089dafaf5614fc8d57ad243e9b223 +docfiles size=42 + RELOC/doc/latex/ESIEEcv/ESIEEcv.pdf details="Package documentation" + RELOC/doc/latex/ESIEEcv/cvtest.pdf details="Test/sample document" + RELOC/doc/latex/ESIEEcv/cvtest.tex +srccontainersize 6876 +srccontainerchecksum a63bc1de05f659d72f9fc297436e7aad36db6124f22c2a29c65418a1233c37a0a995bba3267fca6fc83f04efa119315c25937aff733b64b7c78275313209d42c +srcfiles size=6 + RELOC/source/latex/ESIEEcv/ESIEEcv.dtx + RELOC/source/latex/ESIEEcv/ESIEEcv.ins +runfiles size=1 + RELOC/tex/latex/ESIEEcv/ESIEEcv.sty +catalogue-also curve currvita cv europecv vita +catalogue-ctan /macros/latex/contrib/ESIEEcv +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics cv french + +name FAQ-en +category Package +revision 34303 +catalogue uk-tex-faq +shortdesc A compilation of Frequently Asked Questions with answers +relocated 1 +longdesc The FAQ that has in the past been published in the UK TeX Users +longdesc Group journal Baskerville (though updated more frequently on +longdesc CTAN). It is also available (and searchable) via on the web. +containersize 552 +containerchecksum 98b7171cec8c85e6ac544401386ab5f10b314c8b4e31dc579c631454ba8a785e0cca86955cd3770b9859bd36f7058e8175002d9b061e33f39f804d9e1b039073 +doccontainersize 5089052 +doccontainerchecksum 4d9f981728306862b6c26a3e3194ab3f6180bd9d57a7a8d7ec71d5651a2e382af2c1b355f2db0494ee14c136500d65e36f31eae9f0482d507febe87773bb44d6 +docfiles size=2191 + RELOC/doc/generic/FAQ-en/CHANGES-3.16b + RELOC/doc/generic/FAQ-en/CHANGES-3.16c + RELOC/doc/generic/FAQ-en/CHANGES-3.17 + RELOC/doc/generic/FAQ-en/CHANGES-3.18 + RELOC/doc/generic/FAQ-en/CHANGES-3.19 + RELOC/doc/generic/FAQ-en/CHANGES-3.19a + RELOC/doc/generic/FAQ-en/CHANGES-3.19c + RELOC/doc/generic/FAQ-en/CHANGES-3.19d + RELOC/doc/generic/FAQ-en/CHANGES-3.20 + RELOC/doc/generic/FAQ-en/CHANGES-3.21 + RELOC/doc/generic/FAQ-en/CHANGES-3.22 + RELOC/doc/generic/FAQ-en/CHANGES-3.23 + RELOC/doc/generic/FAQ-en/CHANGES-3.24 + RELOC/doc/generic/FAQ-en/CHANGES-3.25 + RELOC/doc/generic/FAQ-en/CHANGES-3.26 + RELOC/doc/generic/FAQ-en/CHANGES-3.27 + RELOC/doc/generic/FAQ-en/CHANGES-3.28 + RELOC/doc/generic/FAQ-en/ChangeLog + RELOC/doc/generic/FAQ-en/FAQ-html.tar.gz + RELOC/doc/generic/FAQ-en/FAQ-html.tar.xz + RELOC/doc/generic/FAQ-en/Makefile + RELOC/doc/generic/FAQ-en/Makefile-CTAN + RELOC/doc/generic/FAQ-en/README details="Package Readme" + RELOC/doc/generic/FAQ-en/archive.cfg + RELOC/doc/generic/FAQ-en/dirctan.tex + RELOC/doc/generic/FAQ-en/faq-adj-types.tex + RELOC/doc/generic/FAQ-en/faq-backgrnd.tex + RELOC/doc/generic/FAQ-en/faq-biblio.tex + RELOC/doc/generic/FAQ-en/faq-bits+pieces.tex + RELOC/doc/generic/FAQ-en/faq-docs.tex + RELOC/doc/generic/FAQ-en/faq-dvi.tex + RELOC/doc/generic/FAQ-en/faq-fmt-conv.tex + RELOC/doc/generic/FAQ-en/faq-fonts.tex + RELOC/doc/generic/FAQ-en/faq-getit.tex + RELOC/doc/generic/FAQ-en/faq-graphics.tex + RELOC/doc/generic/FAQ-en/faq-how-do-i.tex + RELOC/doc/generic/FAQ-en/faq-hyp+pdf.tex + RELOC/doc/generic/FAQ-en/faq-images.tex + RELOC/doc/generic/FAQ-en/faq-install.tex + RELOC/doc/generic/FAQ-en/faq-intro.tex + RELOC/doc/generic/FAQ-en/faq-jot-err.tex + RELOC/doc/generic/FAQ-en/faq-lab-ref.tex + RELOC/doc/generic/FAQ-en/faq-litprog.tex + RELOC/doc/generic/FAQ-en/faq-mac-prog.tex + RELOC/doc/generic/FAQ-en/faq-projects.tex + RELOC/doc/generic/FAQ-en/faq-support.tex + RELOC/doc/generic/FAQ-en/faq-symbols.tex + RELOC/doc/generic/FAQ-en/faq-t-g-wr.tex + RELOC/doc/generic/FAQ-en/faq-texsys.tex + RELOC/doc/generic/FAQ-en/faq-the-end.tex + RELOC/doc/generic/FAQ-en/faq-wdidt.tex + RELOC/doc/generic/FAQ-en/faq.cls + RELOC/doc/generic/FAQ-en/faq.sty + RELOC/doc/generic/FAQ-en/faqfont.cfg + RELOC/doc/generic/FAQ-en/faqfont.cfg.cmfonts + RELOC/doc/generic/FAQ-en/faqfont.cfg.lmfonts + RELOC/doc/generic/FAQ-en/faqfont.cfg.mbvj + RELOC/doc/generic/FAQ-en/faqfont.cfg.ugm + RELOC/doc/generic/FAQ-en/filectan.tex + RELOC/doc/generic/FAQ-en/gather-faqbody.tex + RELOC/doc/generic/FAQ-en/install-CTAN + RELOC/doc/generic/FAQ-en/letterfaq.pdf details="FAQ formatted for letter paper" + RELOC/doc/generic/FAQ-en/letterfaq.tex + RELOC/doc/generic/FAQ-en/locations.mk + RELOC/doc/generic/FAQ-en/markup-syntax + RELOC/doc/generic/FAQ-en/newfaq.pdf details="FAQ formatted for A4 paper" + RELOC/doc/generic/FAQ-en/newfaq.tex +catalogue-contact-home http://www.tex.ac.uk/faq +catalogue-ctan /help/uk-tex-faq +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license pd +catalogue-topics faq documentation +catalogue-version 3.28 + +name GS1 +category Package +revision 44822 +shortdesc Typeset EAN barcodes using TeX rules, only +relocated 1 +longdesc The (LaTeX 3) package typesets EAN-8 and EAN-13 barcodes, using +longdesc the facilities of the rule-D package. +containersize 3452 +containerchecksum c71acefcb0ff1cd97792c27435e7eb4f4e32f072a275e5eb7dd13d7b9928ca00318d0acdf605f35cc4a3d7099247c290155d6963ac1560f4b11f37a123fde0b6 +doccontainersize 1137680 +doccontainerchecksum 6e714b1087d228923f38dc3c8680e57de314eab79ab15f0aa247ad002a3aa6a9dac2a253c5688c904408c8d14dadbe307b3d3446b38db767a650989d5ed9e878 +docfiles size=310 + RELOC/doc/latex/GS1/GS1.pdf details="Package documentation" + RELOC/doc/latex/GS1/README details="Readme" + RELOC/doc/latex/GS1/examples/EANBarcode.pdf + RELOC/doc/latex/GS1/examples/EANBarcode.tex + RELOC/doc/latex/GS1/examples/EANControlDigit.pdf + RELOC/doc/latex/GS1/examples/EANControlDigit.tex + RELOC/doc/latex/GS1/examples/GSSetup.pdf + RELOC/doc/latex/GS1/examples/GSSetup.tex + RELOC/doc/latex/GS1/examples/GS_cut_EAN_control_digit.pdf + RELOC/doc/latex/GS1/examples/GS_cut_EAN_control_digit.tex + RELOC/doc/latex/GS1/examples/GS_set_EAN_control_digit.pdf + RELOC/doc/latex/GS1/examples/GS_set_EAN_control_digit.tex + RELOC/doc/latex/GS1/examples/GS_set_code_digit_seq.pdf + RELOC/doc/latex/GS1/examples/GS_set_code_digit_seq.tex + RELOC/doc/latex/GS1/examples/int_set_to_EAN_control_digit.pdf + RELOC/doc/latex/GS1/examples/int_set_to_EAN_control_digit.tex + RELOC/doc/latex/GS1/rule-D.pdf +srccontainersize 9936 +srccontainerchecksum 3ad67dc4bd1033f828cbc11196a6ce9a25b2abc90348f727423effd6d97acd7fbf617b88740afb9050f481fb403401033c3dc60c3b9ac326467697f9b1d09a49 +srcfiles size=12 + RELOC/source/latex/GS1/GS1.dtx + RELOC/source/latex/GS1/GS1.ins + RELOC/source/latex/GS1/README + RELOC/source/latex/GS1/rule-D.dtx +runfiles size=4 + RELOC/tex/latex/GS1/GS1.sty + RELOC/tex/latex/GS1/rule-D.sty +catalogue-ctan /macros/latex/contrib/gs1 +catalogue-date 2017-07-15 22:08:54 +0200 +catalogue-license lppl1.3c +catalogue-topics barcode +catalogue-version 22 + +name HA-prosper +category Package +revision 15878 +shortdesc Patches and improvements for prosper +relocated 1 +longdesc HA-prosper is a patch for prosper that adds new functionality +longdesc to prosper based presentations. Among the new features you will +longdesc find automatic generation of a table of contents on each slide, +longdesc support for notes and portrait slides. The available styles +longdesc demonstrate how to expand the functionality of prosper even +longdesc further. +containersize 28420 +containerchecksum 330df0a8d9b7b7ed5e4d2b74c626576ca8ac852cc84f9c79296141b14892819869cbd0e7f68050b4f3e5d107c43f9939ec9c9248c19ddd20da8d16ee2c25104e +doccontainersize 205052 +doccontainerchecksum 55822b9703d44481ae62dcb690adaba29cee5432b5b8b9f549884f55e943b1575064419712745166a6c0fd0fdfadac60473c6642816e1efac92c8e27c2cca76c +docfiles size=62 + RELOC/doc/latex/HA-prosper/HA-prosper.pdf details="Package documentation" + RELOC/doc/latex/HA-prosper/HAPBigtest.tex + RELOC/doc/latex/HA-prosper/HAPDualslide.tex + RELOC/doc/latex/HA-prosper/HAPIntroduction.tex + RELOC/doc/latex/HA-prosper/README details="Package README" +srccontainersize 38768 +srccontainerchecksum 646cea88f8d725e30257c15bcd198c0a2c9cd6477b956279a38443d5b22ac4c64e795a2ded53649b3d1504bbc66639946c331ba978e775a5fea33696c9bc6c2d +srcfiles size=41 + RELOC/source/latex/HA-prosper/HA-prosper.def + RELOC/source/latex/HA-prosper/HA-prosper.dtx +runfiles size=57 + RELOC/tex/latex/HA-prosper/HA-prosper.cfg + RELOC/tex/latex/HA-prosper/HA-prosper.sty + RELOC/tex/latex/HA-prosper/Styles/Aggie/AMLogo.eps + RELOC/tex/latex/HA-prosper/Styles/Aggie/HAPAggie.sty + RELOC/tex/latex/HA-prosper/Styles/Aggie/files.txt + RELOC/tex/latex/HA-prosper/Styles/Capsules/HAPcapsules.sty + RELOC/tex/latex/HA-prosper/Styles/Ciment/HAPciment.sty + RELOC/tex/latex/HA-prosper/Styles/Fyma/HAPFyma.sty + RELOC/tex/latex/HA-prosper/Styles/HA/HAPHA.sty + RELOC/tex/latex/HA-prosper/Styles/HA/flower.ps + RELOC/tex/latex/HA-prosper/Styles/Lakar/HAPLakar.sty + RELOC/tex/latex/HA-prosper/Styles/Simple/HAPsimple.sty + RELOC/tex/latex/HA-prosper/Styles/TCS/HAPTCS.sty + RELOC/tex/latex/HA-prosper/Styles/TCS/HAPTCSTealBlue.sty + RELOC/tex/latex/HA-prosper/Styles/TCS/HAPTCSgrad.sty + RELOC/tex/latex/HA-prosper/Styles/TCS/TCSgradlogo.ps + RELOC/tex/latex/HA-prosper/Styles/TCS/TCSlogo.ps + RELOC/tex/latex/HA-prosper/Styles/Tycja/HAPTycja.sty +catalogue-also powerdot +catalogue-ctan /macros/latex/contrib/ha-prosper +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics presentation +catalogue-version 4.21 + +name IEEEconf +category Package +revision 15878 +shortdesc Macros for IEEE conference proceedings +relocated 1 +longdesc The IEEEconf class implements the formatting dictated by the +longdesc IEEE Computer Society Press for conference proceedings. +containersize 2544 +containerchecksum bd35025cabe78886f78333cb4ff186d0363480ea0c1f825456e9b6debc08c0a2dbfc7c703fc9caebaf2a20c47925141cb090d50146f054a76e1aecd861408517 +doccontainersize 177424 +doccontainerchecksum 0316a52d380555afb04358cadd56e6fabe23293bd3b6dd0f0d4e4df9db75e26708dfc7df4c280a8a9759e4c8518050805f197357b2efa43664a984f56dfabb05 +docfiles size=53 + RELOC/doc/latex/IEEEconf/IEEEconf.pdf details="Package documentation" + RELOC/doc/latex/IEEEconf/README details="Readme" +srccontainersize 12540 +srccontainerchecksum 18d0204a051b8c1d0ea034b7c3357228b0dd2f40d44ffc059ee270fc22f284a833eec72527874be0c1414e01ca91f403726c801f75e2f6cd2d0a2b097db5c53a +srcfiles size=11 + RELOC/source/latex/IEEEconf/IEEEconf.dtx + RELOC/source/latex/IEEEconf/IEEEconf.ins +runfiles size=2 + RELOC/tex/latex/IEEEconf/IEEEconf.cls +catalogue-ctan /macros/latex/contrib/IEEEconf +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics confproc class +catalogue-version 1.4 + +name IEEEtran +category Package +revision 51065 +shortdesc Document class for IEEE Transactions journals and conferences +relocated 1 +longdesc The class and its BibTeX style enable authors to produce +longdesc officially-correct output for the Institute of Electrical and +longdesc Electronics Engineers (IEEE) transactions, journals and +longdesc conferences. +containersize 89364 +containerchecksum 7db183824e4a62a9f90046d62d33940573a25d2ebe72de0d57a68340e82e2b4b21fe74e74608cc73fe53b0d889019884aec8e1b11060849a38107280e0fce2f1 +doccontainersize 487244 +doccontainerchecksum 0fab8351fce31d36fc1cee91feea7d09e1acd78d80b0500d8c3fc7f3ce322055b952423e7f39d09f86e99b22aa24405ff5a0f00207f88a3cae8cf39593e9b326 +docfiles size=248 + RELOC/doc/latex/IEEEtran/IEEEtrantools_doc.txt + RELOC/doc/latex/IEEEtran/README details="Readme" + RELOC/doc/latex/IEEEtran/README.TEXLIVE + RELOC/doc/latex/IEEEtran/README.bibtex + RELOC/doc/latex/IEEEtran/README.extras + RELOC/doc/latex/IEEEtran/README.testflow + RELOC/doc/latex/IEEEtran/README.tools + RELOC/doc/latex/IEEEtran/bare_adv.tex + RELOC/doc/latex/IEEEtran/bare_conf.tex + RELOC/doc/latex/IEEEtran/bare_conf_compsoc.tex + RELOC/doc/latex/IEEEtran/bare_jrnl.tex + RELOC/doc/latex/IEEEtran/bare_jrnl_compsoc.tex + RELOC/doc/latex/IEEEtran/bare_jrnl_comsoc.tex + RELOC/doc/latex/IEEEtran/bare_jrnl_transmag.tex + RELOC/doc/latex/IEEEtran/bibtex/changelog.txt + RELOC/doc/latex/IEEEtran/changelog.txt + RELOC/doc/latex/IEEEtran/testflow.tex + RELOC/doc/latex/IEEEtran/testflow_ctl_A4.pdf + RELOC/doc/latex/IEEEtran/testflow_ctl_LTR.pdf + RELOC/doc/latex/IEEEtran/testflow_doc.pdf + RELOC/doc/latex/IEEEtran/tools/changelog.txt + RELOC/doc/latex/IEEEtran/tux.eps + RELOC/doc/latex/IEEEtran/tux.pdf +runfiles size=205 + RELOC/bibtex/bib/IEEEtran/IEEEabrv.bib + RELOC/bibtex/bib/IEEEtran/IEEEexample.bib + RELOC/bibtex/bib/IEEEtran/IEEEfull.bib + RELOC/bibtex/bst/IEEEtran/IEEEtran.bst + RELOC/bibtex/bst/IEEEtran/IEEEtranN.bst + RELOC/bibtex/bst/IEEEtran/IEEEtranS.bst + RELOC/bibtex/bst/IEEEtran/IEEEtranSA.bst + RELOC/bibtex/bst/IEEEtran/IEEEtranSN.bst + RELOC/tex/latex/IEEEtran/IEEEtran.cls + RELOC/tex/latex/IEEEtran/IEEEtrantools.sty +catalogue-contact-home http://www.michaelshell.org/tex/ieeetran/ +catalogue-ctan /macros/latex/contrib/IEEEtran +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics journalpub class +catalogue-version 1.8b + +name MemoirChapStyles +category Package +revision 25918 +catalogue memoirchapterstyles +shortdesc Chapter styles in memoir class +relocated 1 +longdesc A showcase of chapter styles available to users of memoir: the +longdesc six provided in the class itself, plus many from elsewhere (by +longdesc the present author and others). The package's resources apply +longdesc only to memoir, but the package draws from a number of sources +longdesc relating to standard classes, including the fncychap package, +longdesc and Vincent Zoonekynd's tutorial on headings. +containersize 604 +containerchecksum 83455766eb557edebad28b73c5decb0a7a23f097bdfb795cad9cc0847af916ab012fd044a63dc9893932ce0f161e831a2a8e7c0138a2157e0f1f4f2211667c16 +doccontainersize 755400 +doccontainerchecksum 32b171486838a762b2cd49af46d3f2a152e9d592735a15a407784cde02e5be9281798302eb094f0c045f895a8f6e86464e9c214bd06f9061c313807ec36cbb1f +docfiles size=461 + RELOC/doc/latex/MemoirChapStyles/MemoirChapStyles.pdf details="The document itself" + RELOC/doc/latex/MemoirChapStyles/MemoirChapStyles.tex + RELOC/doc/latex/MemoirChapStyles/README details="Readme" +catalogue-ctan /info/latex-samples/MemoirChapStyles +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics use-sample +catalogue-version 1.7e + +name SIstyle +category Package +revision 15878 +shortdesc Package to typeset SI units, numbers and angles +relocated 1 +longdesc This package typesets SI units, numbers and angles according to +longdesc the ISO requirements. Care is taken with font setup and +longdesc requirements, and language customisation is available. Note +longdesc that this package is (in principle) superseded by siunitx; +longdesc sistyle has maintenance-only support, now. +containersize 3568 +containerchecksum 9473f7ef772f10ae4b70ea9d3074cbf7220ab1672076064aae9e54cf72d5007fa7e7f73c66082c53098c772a43d88af3ca1073e875c31c2821e528f8da836fd2 +doccontainersize 323440 +doccontainerchecksum 553357a037de0494641969db5a434a77984224f7fee3f64a2e153304eed6ae38548a1cf0330bb5e6cfc4f4dfdc21ceb8cd2b0659b0e27aa79a7379a82441451f +docfiles size=126 + RELOC/doc/latex/SIstyle/README details="Readme" + RELOC/doc/latex/SIstyle/SIstyle-2.3a.pdf details="Package documentation" + RELOC/doc/latex/SIstyle/fig1.eps + RELOC/doc/latex/SIstyle/fig1.mps + RELOC/doc/latex/SIstyle/fig2.eps + RELOC/doc/latex/SIstyle/fig2.mps + RELOC/doc/latex/SIstyle/graphs_scr.zip +srccontainersize 18204 +srccontainerchecksum 3d2840beed83bb3843b89b08e3a2d111bc346e221335288ae35c19f7b5a843b668a5cd0b9f60a5df270a0c0f8953cb575d27a17f534a7b7808a37ee58aa1007d +srcfiles size=19 + RELOC/source/latex/SIstyle/sistyle.dtx + RELOC/source/latex/SIstyle/sistyle.ins +runfiles size=3 + RELOC/tex/latex/SIstyle/sistyle.sty +catalogue-ctan /macros/latex/contrib/SIstyle +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics typesetting scientific-docs +catalogue-version 2.3a + +name SIunits +category Package +revision 15878 +shortdesc International System of Units +relocated 1 +longdesc Typeset physical units following the rules of the International +longdesc System of Units (SI). The package requires amstext, for proper +longdesc representation of some values. Note that the package is now +longdesc superseded by siunitx; siunits has maintenance-only support, +longdesc now. +containersize 6064 +containerchecksum b804d61bcdcc9d6f4559a05d8bfa7d8f7a3c378a618e5cd068b29e2661968b7564c36ce2e3d97f7fc7af15c11e89ac61e88ff25318d8c08536181d1f546f260d +doccontainersize 250180 +doccontainerchecksum 09c35a6d2e2d90701ac099eaf06116d4bf5b93652c512969dfe2afae74c9c04d70dcda8a5053d707aed0724fba0a8d9c3487a51fc617fd1a757c596a99b974dc +docfiles size=82 + RELOC/doc/latex/SIunits/README details="Readme" + RELOC/doc/latex/SIunits/SIunits.pdf details="Package documentation" +srccontainersize 34544 +srccontainerchecksum 82081b1c503098847bc5f24c2749fb6abd1a739ccd21b01464119b7b6a92bfbb51666d0f5d14aa335e23a03b72b5eae8fefccf9c790819a4f8cf14b37ff297ad +srcfiles size=40 + RELOC/source/latex/SIunits/SIunits.drv + RELOC/source/latex/SIunits/SIunits.dtx + RELOC/source/latex/SIunits/SIunits.ins +runfiles size=8 + RELOC/tex/latex/SIunits/SIunits.cfg + RELOC/tex/latex/SIunits/SIunits.sty + RELOC/tex/latex/SIunits/binary.sty +catalogue-also sistyle +catalogue-ctan /macros/latex/contrib/SIunits +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics typesetting scientific-docs +catalogue-version 1.36 + +name Tabbing +category Package +revision 17022 +shortdesc Tabbing with accented letters +relocated 1 +longdesc By default, some of the tabbing environment's commands clash +longdesc with default accent commands; LaTeX provides the odd commands +longdesc \a', etc., to deal with the clash. The package offers a variant +longdesc of the tabbing environment which does not create this +longdesc difficulty, so that users need not learn two sets of accent +longdesc commands. +containersize 1360 +containerchecksum 10d3c274c5838c48bd47f651bfc57aeded8246787e23091307dcabf2794fc9eec19bc3a3af9ae08b812688ebc4fffd295fb01c7be7d61fcd06ccb46ce4f6b739 +doccontainersize 216508 +doccontainerchecksum 1f4eb22039e3bae3897502fe541e595c802fffa94d2cdefed451cf24883e1f41d29e9ea0065d1d68ddee3e166aaa1ba7896dd84bf612e9c007ecc5c1e2d5f616 +docfiles size=58 + RELOC/doc/latex/Tabbing/00readme + RELOC/doc/latex/Tabbing/Tabbing.pdf details="Package documentation (English)" language="en" +srccontainersize 3728 +srccontainerchecksum a4c7b558e6e5ad9eeb8b4e3d81c20edb09d66cd8aaec2b501224fb7f93a40c3771f8e23d2fbfb910158464f98d8172bc691787ef1c2256066fb85e96068f368a +srcfiles size=3 + RELOC/source/latex/Tabbing/Tabbing.dtx + RELOC/source/latex/Tabbing/Tabbing.ins +runfiles size=1 + RELOC/tex/latex/Tabbing/Tabbing.sty +catalogue-ctan /macros/latex/contrib/Tabbing +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1 +catalogue-topics alignment macro-supp + +name Type1fonts +category Package +revision 19603 +catalogue fontinstallationguide +shortdesc Font installation guide +relocated 1 +longdesc This guide discusses the most common scenarios you are likely +longdesc to encounter when installing Type 1 PostScript fonts. While the +longdesc individual tools employed in the installation process are +longdesc documented well, the actual difficulty most users are facing +longdesc when trying to install new fonts is understanding how to put +longdesc all the pieces together. This is what this guide is about. +containersize 592 +containerchecksum 858836fc8a955b87f823c25b22fbb4b07f119186ab437e0e7ef7d387bb8295b8a65deb237c649d93afe7d72213745d4cfbe48a51372c69c12d088f5403f22dc3 +doccontainersize 527324 +doccontainerchecksum 5448b85539d29ace8365bd0e197693c0c4c53a145d5182c3f125e11cb3ca8194675ca9553ad53bf7e503b1636f17614ea2e338113f61474d9744dfa91800390e +docfiles size=242 + RELOC/doc/fonts/Type1fonts/README details="Readme" + RELOC/doc/fonts/Type1fonts/examples.zip + RELOC/doc/fonts/Type1fonts/fontinstallationguide.pdf details="The document itself" + RELOC/doc/fonts/Type1fonts/fontinstallationguide.tex +catalogue-ctan /info/Type1fonts/fontinstallationguide +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license fdl +catalogue-topics font-doc +catalogue-version 2.14 name a0poster category Package revision 15878 -shortdesc Support for designing posters on large paper. +shortdesc Support for designing posters on large paper relocated 1 longdesc Provides fonts in sizes of 12pt up to 107pt and also makes sure longdesc that in math formulas the symbols appear in the right size. Can longdesc also create a PostScript header file for dvips which ensures longdesc that the poster will be printed in the right size. Supported longdesc sizes are DIN A0, DIN A1, DIN A2 and DIN A3. -runfiles size=4 - RELOC/tex/latex/a0poster/a0poster.cls - RELOC/tex/latex/a0poster/a0size.sty +containersize 3328 +containerchecksum 95c13cc0fc3e4c8b76e02aef0622af10a420b9b536807effad3fa99822ebe1babdc7219536178a349aeb671f3bbdcf9e339ddcfa73c7afc71dafc2b2d7486996 +doccontainersize 118124 +doccontainerchecksum d17f3a87682008d8110bb5562aefee406d84b15e3678e165cc3f50e0280aad0736ff0b9b9847d9dc47cf08d3db9a28be71b76f9a5c61c8f3dad0aac187b23434 docfiles size=47 - RELOC/doc/latex/a0poster/a0.pdf + RELOC/doc/latex/a0poster/a0.pdf details="Package documentation (German)" language="de" RELOC/doc/latex/a0poster/a0.tex - RELOC/doc/latex/a0poster/a0_eng.pdf + RELOC/doc/latex/a0poster/a0_eng.pdf details="Package documentation (English)" language="en" RELOC/doc/latex/a0poster/a0_eng.tex +runfiles size=4 + RELOC/tex/latex/a0poster/a0poster.cls + RELOC/tex/latex/a0poster/a0size.sty +catalogue-also sciposter catalogue-ctan /macros/latex/contrib/a0poster -catalogue-date 2012-03-17 15:49:05 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics poster catalogue-version 1.22b name a2ping category TLCore -revision 29725 -shortdesc Advanced PS, PDF, EPS converter. +revision 49161 +shortdesc Advanced PS, PDF, EPS converter longdesc a2ping is a Perl script command line utility written for Unix longdesc that converts many raster image and vector graphics formats to longdesc EPS or PDF and other page description formats. Accepted input longdesc file formats are: PS (PostScript), EPS, PDF, PNG, JPEG, TIFF, longdesc PNM, BMP, GIF, LBM, XPM, PCX, TGA. Accepted output formats are: longdesc EPS, PCL5, PDF, PDF1, PBM, PGM, PPM, PS, markedEPS, markedPS, -longdesc PNG, XWD, BMP, TIFF, JPEG, GIF, XPM. a2ping delegates the low- -longdesc level work to Ghostscript (GS), pdftops and sam2p. a2ping fixes -longdesc many glitches during the EPS to EPS conversion, so its output -longdesc is often more compatible and better embeddable than its input. +longdesc PNG, XWD, BMP, TIFF, JPEG, GIF, XPM. a2ping delegates the +longdesc low-level work to Ghostscript (GS), pdftops and sam2p. a2ping +longdesc fixes many glitches during the EPS to EPS conversion, so its +longdesc output is often more compatible and better embeddable than its +longdesc input. depend a2ping.ARCH -runfiles size=26 - texmf-dist/scripts/a2ping/a2ping.pl -docfiles size=8 +containersize 30616 +containerchecksum 983084ca3d70eff729d81d5d52a74e1bf1f95e384916bc81d17be81290f70c1da5ac891c1665a2451975f36fd56ea0036e1d0dc46b2e98b61ddc660ac044c23c +doccontainersize 39740 +doccontainerchecksum daeefb01a0197e3b7751614cb84e2926f670d36b7e8a389bfbbe39cbd941c4d10ef5112593bfb88e11fa15f7f7bb07f2538c7d0a68cefe1482bbdaf02d475512 +docfiles size=16 texmf-dist/doc/man/man1/a2ping.1 texmf-dist/doc/man/man1/a2ping.man1.pdf -catalogue-ctan /graphics/a2ping/a2ping.pl -catalogue-date 2012-04-13 20:01:51 +0200 + texmf-dist/doc/support/a2ping/HISTORY.txt +runfiles size=25 + texmf-dist/scripts/a2ping/a2ping.pl +catalogue-contact-repository https://github.com/pts/a2ping +catalogue-ctan /graphics/a2ping +catalogue-date 2018-03-10 05:45:42 +0100 catalogue-license gpl +catalogue-topics graphics-prep +catalogue-version 2.83p + +name a2ping.aarch64-linux +category TLCore +revision 46208 +shortdesc aarch64-linux files of a2ping +containersize 340 +containerchecksum 8d1841aef3e9f94933b745d7109c354edd1c7614bfa67cf1a329de36cfd1c4aaaca0d0587fd79db222ea41118765dc664ed6f972e221ad617d5cf918db292496 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/a2ping + +name a2ping.amd64-freebsd +category TLCore +revision 27321 +shortdesc amd64-freebsd files of a2ping +containersize 344 +containerchecksum 4a57b378a355b36f7fbccc21c7c2302f9151e1f18408572df5240fcb3566daab9a6234cc33762237c22cc8812bc821e7619ec1eced0fc2d4a1c47a5cd05c456f +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/a2ping + +name a2ping.amd64-netbsd +category TLCore +revision 30191 +shortdesc amd64-netbsd files of a2ping +containersize 340 +containerchecksum d22253b1dcf90cde613c727270c1258b0654f798a640d84c301171784d17d8b13e2ae9ec238b24726133a94b4affd835ed54041b278b6159056e06716bb9aa39 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/a2ping + +name a2ping.armhf-linux +category TLCore +revision 30015 +shortdesc armhf-linux files of a2ping +containersize 340 +containerchecksum 499493682164f8a6e913b2fa78f3b4328b47f2391f4f0d97e51d35de2b8763603830f7f7ce3ea99f4cd7516b779dbd074f2c5b596021095dba570b2f365ba0f1 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/a2ping + +name a2ping.i386-cygwin +category TLCore +revision 27321 +shortdesc i386-cygwin files of a2ping +containersize 340 +containerchecksum 839a5581977b46107fb75f28f6553b7ed84fe818034519bb84abf973e31d96d608871deaa4bd80f41407af25872a248fd7b87394754619c0e7f803891fef1b94 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/a2ping + +name a2ping.i386-freebsd +category TLCore +revision 27321 +shortdesc i386-freebsd files of a2ping +containersize 344 +containerchecksum 7bd9b3e56004955590d095496340e46ce0cac8095d130ce60d9cdaccdcbb856d236a2db60505fcb70458bac7e75ba8734660801cc686562483e0a05626a274ca +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/a2ping name a2ping.i386-linux category TLCore revision 27321 shortdesc i386-linux files of a2ping +containersize 340 +containerchecksum e213256307aa05399fb511f1e2b58adf5c8d27470240f1ded4f33f0fb3d5c27b360ba4aeaf98ef3555ec15bcb402d5d11ee2838eca3b1fd52f38758028e05077 binfiles arch=i386-linux size=1 bin/i386-linux/a2ping +name a2ping.i386-netbsd +category TLCore +revision 30191 +shortdesc i386-netbsd files of a2ping +containersize 344 +containerchecksum 65964f62d13a860d1a8b2664f93d78f6148035c827ac470c1bdf822a79247eb4f990c96535979bab9455eeb21734321a1846d64363b889c07c9138b025c90f42 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/a2ping + +name a2ping.i386-solaris +category TLCore +revision 27321 +shortdesc i386-solaris files of a2ping +containersize 340 +containerchecksum 4a1989249b9503521fff5c3dbc66303e35780a2f8a107451da71d8ad41dd3e7256d1e6786d54d29a602f41511cdf2fc08118e1a30584dfc1206bb37da09570c7 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/a2ping + +name a2ping.win32 +category TLCore +revision 15404 +shortdesc win32 files of a2ping +containersize 684 +containerchecksum 46a5f8cd2bb036702c22c0c938bc564d62e1ca08ffe62f5e05e0cc9506a3ada5431f84f7ea238468a33df53bddfc97765533ae5c40a84d8def706231cf3d9010 +binfiles arch=win32 size=1 + bin/win32/a2ping.exe + +name a2ping.x86_64-cygwin +category TLCore +revision 33557 +shortdesc x86_64-cygwin files of a2ping +containersize 344 +containerchecksum a5ddcca8e311a52f84b345bb0da443cd32cc15c6185b0b162b443049223621aed63d3ca13de942a1b5ba2845dc171a9b2d84543f454f336088c1505906afb93d +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/a2ping + +name a2ping.x86_64-darwin +category TLCore +revision 27321 +shortdesc x86_64-darwin files of a2ping +containersize 344 +containerchecksum 45af2c9257c66f01fc826605b768d8663846bb3f3a58a89fa1720fbb6d53295867be91513664d9955fece6e536085fecc38e2d13f72073dc8ea9152541041d3b +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/a2ping + +name a2ping.x86_64-darwinlegacy +category TLCore +revision 43871 +shortdesc x86_64-darwinlegacy files of a2ping +containersize 352 +containerchecksum 16edfe816df989a7171c9d42497581a03786041ea0cb18cfbfe034920e5f93054ac9a2b68c22bb6b4f572407ebf493fd51dab79ce246f075c300e451c923a923 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/a2ping + +name a2ping.x86_64-linux +category TLCore +revision 27321 +shortdesc x86_64-linux files of a2ping +containersize 340 +containerchecksum f4eeb76fbc182a73eccd3086b632005b8bed0615634247f84ddbe3e12b24d7c592bf7a8d158d7ad738ed536c5fa753fda86a670c0e899b48e7d05ac0e1c9c3e6 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/a2ping + +name a2ping.x86_64-linuxmusl +category TLCore +revision 46840 +shortdesc x86_64-linuxmusl files of a2ping +containersize 348 +containerchecksum bdf339424e8fa2103bf3a95f57bdce4e6e7405b2a8e23ee95611267a1d0b6877b3ff178bff4b4698fada85c9d10b9469a7086186d964aff34a5241d370a7a560 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/a2ping + +name a2ping.x86_64-solaris +category TLCore +revision 27321 +shortdesc x86_64-solaris files of a2ping +containersize 344 +containerchecksum 8ca11fafcac7b083833d51e5d40fc58cc9cfbf6ea130b1b1f9bce2351fe0e3def42c477bece6322018a5d16d3143adf99e6ffacf077494ed8c5bac09b884719a +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/a2ping + name a4wide category Package revision 20943 -shortdesc "Wide" a4 layout. +shortdesc "Wide" a4 layout relocated 1 longdesc This package increases the width of the typeset area of an a4 longdesc page. This sort of operation is capable of producing longdesc typographically poor results; the operation itself is better longdesc provided by the geometry package. The package uses the a4 longdesc package. -runfiles size=1 - RELOC/tex/latex/a4wide/a4wide.sty +containersize 1012 +containerchecksum e0f1f95bf660760683d6c5a917d75e537a0347837eb4388eded8194c6ca5371b2ad9be9829fcaaff1e24b7d8baefd287db6add752c19a57a6cf0737017e311e3 +doccontainersize 134740 +doccontainerchecksum bf059462ec7e28ba782d5842d090c93f4e911bdf44eb3d4f184a7324b454105295460a52414ffcb9fc71dceeba902b1d78ba208d0998f71727ad41299eb1138f docfiles size=34 - RELOC/doc/latex/a4wide/a4wide.pdf + RELOC/doc/latex/a4wide/a4wide.pdf details="Package documentation" RELOC/doc/latex/a4wide/a4wide.tex +runfiles size=1 + RELOC/tex/latex/a4wide/a4wide.sty catalogue-ctan /macros/latex/contrib/a4wide -catalogue-date 2012-03-17 15:49:05 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1 +catalogue-topics geometry name a5comb category Package revision 17020 -shortdesc Support for a5 paper sizes. +shortdesc Support for a5 paper sizes relocated 1 longdesc Superceded by geometry. -runfiles size=1 - RELOC/tex/latex/a5comb/a5comb.sty +containersize 968 +containerchecksum 443548964eb48ec458942e97f0d6ceb698050a5d4dc83ad17a71db0f1d5085a2c8e73c3e8d9bdbb7ab7e6328d12e42a6ec05c4c7dd4247717f295fcd5da66423 +doccontainersize 91652 +doccontainerchecksum ee845d8b6a21271d2f0e4e6fd24c79a1235d24ba15cc2d037eb41761b05ad3e69dcb5379c223c07b81c62df5f89190c84ff977390e149566710ce7175e4c2823 docfiles size=25 - RELOC/doc/latex/a5comb/a5comb.pdf + RELOC/doc/latex/a5comb/a5comb.pdf details="Package documentation" RELOC/doc/latex/a5comb/a5comb.tex +runfiles size=1 + RELOC/tex/latex/a5comb/a5comb.sty catalogue-ctan /macros/latex/contrib/a5comb -catalogue-date 2012-03-17 15:49:05 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics geometry catalogue-version 4 name aastex category Package -revision 15878 -shortdesc Macros for Manuscript Preparation for AAS Journals. +revision 47692 +shortdesc Macros for Manuscript Preparation for AAS Journals relocated 1 longdesc The bundle provides a document class for preparing papers for longdesc American Astronomical Society publications. Authors who wish to longdesc submit papers to AAS journals are strongly urged to use this longdesc class in preference to any of the alternatives available. -runfiles size=28 - RELOC/tex/latex/aastex/aastex.cls - RELOC/tex/latex/aastex/aastex.sty -docfiles size=559 - RELOC/doc/latex/aastex/README - RELOC/doc/latex/aastex/aasclass.tex - RELOC/doc/latex/aastex/aasguide.pdf - RELOC/doc/latex/aastex/aasguide.tex - RELOC/doc/latex/aastex/aassymbols.pdf +containersize 44248 +containerchecksum 931403fe630ad671b6ce252ef94e3ad9c7696a61f8da7f2970a8e3123e3d168110bb765b542093087426116f11db68220067a3581458b941a1901791c183d028 +doccontainersize 697036 +doccontainerchecksum a83c10d28be386fdfcd937858ce17cf6577b73a6c0ec9fb435d888a68c4c22d4b752a680e9a8e00e4c06e9efc47af19a002540929265b9f2f1e56262914a1905 +docfiles size=260 + RELOC/doc/latex/aastex/CSS081007-eps-converted-to.pdf + RELOC/doc/latex/aastex/KT_Eri-eps-converted-to.pdf + RELOC/doc/latex/aastex/LMC_2009-eps-converted-to.pdf + RELOC/doc/latex/aastex/README.md details="Readme" + RELOC/doc/latex/aastex/RS_Oph-eps-converted-to.pdf + RELOC/doc/latex/aastex/U_Sco-eps-converted-to.pdf + RELOC/doc/latex/aastex/V2491_Cyg-eps-converted-to.pdf + RELOC/doc/latex/aastex/aassymbols.pdf details="Symbols for use with AASTeX" RELOC/doc/latex/aastex/aassymbols.tex - RELOC/doc/latex/aastex/datafile1.txt - RELOC/doc/latex/aastex/f1.eps - RELOC/doc/latex/aastex/f2.eps - RELOC/doc/latex/aastex/f2_color.eps - RELOC/doc/latex/aastex/f3.eps - RELOC/doc/latex/aastex/sample.tex - RELOC/doc/latex/aastex/table.tex - RELOC/doc/latex/aastex/video3.mpg -srcfiles size=100 - RELOC/source/latex/aastex/aasclass.dtx - RELOC/source/latex/aastex/aasclass.ins + RELOC/doc/latex/aastex/cost-eps-converted-to.pdf + RELOC/doc/latex/aastex/natbib.tex + RELOC/doc/latex/aastex/natnotes.tex + RELOC/doc/latex/aastex/sample62.pdf + RELOC/doc/latex/aastex/sample62.tex + RELOC/doc/latex/aastex/video3-eps-converted-to.pdf + RELOC/doc/latex/aastex/widetab.tex +runfiles size=59 + RELOC/bibtex/bst/aastex/aasjournal.bst + RELOC/tex/latex/aastex/aastex62.cls catalogue-ctan /macros/latex/contrib/aastex -catalogue-date 2014-09-16 18:22:54 +0200 +catalogue-date 2018-05-11 21:32:57 +0200 catalogue-license lppl -catalogue-version 5.2 +catalogue-topics astronomy journalpub class +catalogue-version 6.2 name abbr category Package revision 15878 -shortdesc Simple macros supporting abreviations for Plain and LaTeX. +shortdesc Simple macros supporting abreviations for Plain and LaTeX relocated 1 longdesc The package provides some simple macros to support longdesc abbreviations in Plain TeX or LaTeX. It allows writing (e.g.) longdesc \ instead of \TeX, hence frees users from having to escape longdesc space after parameterless macros. +containersize 2628 +containerchecksum 4b5d504cc9438ceb97a6935e66a6eaeb494eb76eb313bed275b1f1a829690569972feec048132e12b5849f398d0a4b291bc5f9ce8462031846ec46bc88ebab3c +doccontainersize 852 +doccontainerchecksum 7080dea132581fdb0803b4ecfdcf4fd5ed5a689bd7e0c7b7b699ef5b3faeab908042f1704cb553ce38e7f37d9facf7d22a74ac71e2cbd269298f35666367f41a +docfiles size=1 + RELOC/doc/generic/abbr/README details="Readme" runfiles size=2 RELOC/tex/generic/abbr/abbr.tex -docfiles size=1 - RELOC/doc/generic/abbr/README catalogue-ctan /macros/generic/abbr -catalogue-date 2013-09-30 16:02:13 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics abbrev shortcut name abc category Package -revision 38340 +revision 41157 shortdesc Support ABC music notation in LaTeX relocated 1 longdesc The abc package lets you include lines of music written in the @@ -189,131 +6607,196 @@ longdesc ABC Plus language. The package will then employ the \write18 longdesc facility to convert your notation to PostScript (using the longdesc established utility abcm2ps) and hence to the format needed for longdesc inclusion in your document. -runfiles size=3 - RELOC/tex/latex/abc/abc.sty - RELOC/tex/latex/abc/mup.sty -docfiles size=73 - RELOC/doc/latex/abc/README - RELOC/doc/latex/abc/abc.pdf +containersize 2608 +containerchecksum 8b1ccd152ed2ad90810551a36f0fa7f114625784fa967f70b67559f9f1e8eb32d7edd08efc9e55dd92723df4039d1bdcc212200d712e99f27de84a153c2a3777 +doccontainersize 281848 +doccontainerchecksum 5f127f8e1ec104b40ac4d5e9bb22965e9376033892362073cdea9f65f1f10a4152f237b4f27bf52dbbe1389f59d3da673434c39a2b3f43d6f17aa60caabd5584 +docfiles size=75 + RELOC/doc/latex/abc/README details="Readme" + RELOC/doc/latex/abc/abc.pdf details="Package documentation" RELOC/doc/latex/abc/example.tex + RELOC/doc/latex/abc/jacky.abc RELOC/doc/latex/abc/mupexa.tex RELOC/doc/latex/abc/poll.abc RELOC/doc/latex/abc/simple.mup +srccontainersize 9616 +srccontainerchecksum e47ba563a1018edfad97fb0556e4f74c7f3054a56c38304d9a188a92b51554628430332b4e66ebf1d12eb4ec6719cc13d7ea62c23157e70a3c0d40e172b9a04c srcfiles size=8 RELOC/source/latex/abc/abc.dtx RELOC/source/latex/abc/abc.ins +runfiles size=3 + RELOC/tex/latex/abc/abc.sty + RELOC/tex/latex/abc/mup.sty catalogue-also abc2mtex catalogue-ctan /macros/latex/contrib/abc -catalogue-date 2015-09-10 18:28:53 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 catalogue-topics music foreign-import -catalogue-version 2.0a +catalogue-version 2.0b + +name abnt +category Package +revision 49188 +shortdesc Typesetting academic works according to ABNT rules +relocated 1 +longdesc The ABNT package provides a clean and practical implementation +longdesc of the ABNT rules for academic texts. Its purpose is to be as +longdesc simple and user-friendly as possible. +containersize 2368 +containerchecksum e26dff31bb974379dbe8c33ce9a3321870ca0194ad6714e2848c427108626c066dd6c3ae7e0c7ce182f75cf928bb9741c09ccb3fecf3cd20c0f0b7b450219c45 +doccontainersize 97616 +doccontainerchecksum dd331cc5a403bcf10e7c9cbb551cc604e9de8df456a373e2b4cbb7ec397ced5b1bc48d0bad1fb9201b73214ffeb54cf0d7291e66b70af697a5638641a22443ec +docfiles size=27 + RELOC/doc/latex/abnt/README.md details="Readme" + RELOC/doc/latex/abnt/abnt-doc.pdf details="Package documentation" + RELOC/doc/latex/abnt/abnt-doc.tex +runfiles size=2 + RELOC/tex/latex/abnt/abnt.sty +catalogue-also biblatex-abnt abntex2 +catalogue-ctan /macros/latex/contrib/abnt +catalogue-date 2018-11-18 17:03:00 +0100 +catalogue-license lppl1.3c +catalogue-topics portuguese-br name abntex2 category Package -revision 37101 -shortdesc Typeset technical and scientific Brazilian documents based on ABNT rules. +revision 49248 +shortdesc Typeset technical and scientific Brazilian documents based on ABNT rules relocated 1 longdesc The bundle provides support for typesetting technical and longdesc scientific Brazilian documents (like academic thesis, articles, longdesc reports, research project and others) based on the ABNT rules longdesc (Associacao Brasileira de Normas Tecnicas). It replaces the old longdesc abntex. -runfiles size=54 - RELOC/bibtex/bib/abntex2/abntex2-options.bib - RELOC/bibtex/bst/abntex2/abntex2-alf.bst - RELOC/bibtex/bst/abntex2/abntex2-num.bst - RELOC/tex/latex/abntex2/abntex2.cls - RELOC/tex/latex/abntex2/abntex2abrev.sty - RELOC/tex/latex/abntex2/abntex2cite.sty -docfiles size=1806 - RELOC/doc/latex/abntex2/README +containersize 29920 +containerchecksum 951c039cf0c97a6bd3974bd01ed9323876f1ee74b8250037dce3e92e00d598ab1cb2cfd0bbf4ea6d37b5f8c3e1095e531aa245ad1a91ee49262e6f99c5c84e59 +doccontainersize 4585444 +doccontainerchecksum b6a5871cc33d94c1294a62aeb809f9d29ccf021cff510497c02edbaef2f155a55847dc521a0f698367692e556b2c588a95066bd3097482b0477a67d4a78b7489 +docfiles size=1717 + RELOC/doc/latex/abntex2/README details="Readme" RELOC/doc/latex/abntex2/abntex2-doc-abnt-10520.bib RELOC/doc/latex/abntex2/abntex2-doc-abnt-6023.bib RELOC/doc/latex/abntex2/abntex2-doc-options.bib RELOC/doc/latex/abntex2/abntex2-doc-test.bib RELOC/doc/latex/abntex2/abntex2-doc.bib - RELOC/doc/latex/abntex2/abntex2.pdf + RELOC/doc/latex/abntex2/abntex2.pdf details="Package documentation (Brazilian Portuguese)" language="pt-br" RELOC/doc/latex/abntex2/abntex2.tex - RELOC/doc/latex/abntex2/abntex2cite-alf.pdf + RELOC/doc/latex/abntex2/abntex2cite-alf.pdf details="Citation support package documentation (supplementation)" language="pt-br" RELOC/doc/latex/abntex2/abntex2cite-alf.tex - RELOC/doc/latex/abntex2/abntex2cite.pdf + RELOC/doc/latex/abntex2/abntex2cite.pdf details="Citation support package documentation (Brazilian Portuguese)" language="pt-br" RELOC/doc/latex/abntex2/abntex2cite.tex - RELOC/doc/latex/abntex2/examples/abntex2-modelo-artigo.pdf + RELOC/doc/latex/abntex2/examples/abntex2-modelo-artigo.pdf details="Article template" language="pt-br" RELOC/doc/latex/abntex2/examples/abntex2-modelo-artigo.tex - RELOC/doc/latex/abntex2/examples/abntex2-modelo-glossarios.pdf + RELOC/doc/latex/abntex2/examples/abntex2-modelo-glossarios.pdf details="Glossary template" language="pt-br" RELOC/doc/latex/abntex2/examples/abntex2-modelo-glossarios.tex RELOC/doc/latex/abntex2/examples/abntex2-modelo-img-grafico.pdf RELOC/doc/latex/abntex2/examples/abntex2-modelo-img-marca.pdf RELOC/doc/latex/abntex2/examples/abntex2-modelo-include-comandos.tex - RELOC/doc/latex/abntex2/examples/abntex2-modelo-livro-bandeirinha.jpg - RELOC/doc/latex/abntex2/examples/abntex2-modelo-livro-pintassilgo.jpg - RELOC/doc/latex/abntex2/examples/abntex2-modelo-livro-saira-amarela.jpg - RELOC/doc/latex/abntex2/examples/abntex2-modelo-livro.pdf + RELOC/doc/latex/abntex2/examples/abntex2-modelo-livro.pdf details="Book template" language="pt-br" RELOC/doc/latex/abntex2/examples/abntex2-modelo-livro.tex - RELOC/doc/latex/abntex2/examples/abntex2-modelo-projeto-pesquisa.pdf + RELOC/doc/latex/abntex2/examples/abntex2-modelo-projeto-pesquisa.pdf details="Research project template" language="pt-br" RELOC/doc/latex/abntex2/examples/abntex2-modelo-projeto-pesquisa.tex RELOC/doc/latex/abntex2/examples/abntex2-modelo-references.bib - RELOC/doc/latex/abntex2/examples/abntex2-modelo-relatorio-tecnico.pdf + RELOC/doc/latex/abntex2/examples/abntex2-modelo-relatorio-tecnico.pdf details="Technical report template" language="pt-br" RELOC/doc/latex/abntex2/examples/abntex2-modelo-relatorio-tecnico.tex - RELOC/doc/latex/abntex2/examples/abntex2-modelo-slides.pdf + RELOC/doc/latex/abntex2/examples/abntex2-modelo-slides.pdf details="Presentation template" language="pt-br" RELOC/doc/latex/abntex2/examples/abntex2-modelo-slides.tex - RELOC/doc/latex/abntex2/examples/abntex2-modelo-trabalho-academico.pdf + RELOC/doc/latex/abntex2/examples/abntex2-modelo-trabalho-academico.pdf details="Thesis template" language="pt-br" RELOC/doc/latex/abntex2/examples/abntex2-modelo-trabalho-academico.tex +runfiles size=54 + RELOC/bibtex/bib/abntex2/abntex2-options.bib + RELOC/bibtex/bst/abntex2/abntex2-alf.bst + RELOC/bibtex/bst/abntex2/abntex2-num.bst + RELOC/tex/latex/abntex2/abntex2.cls + RELOC/tex/latex/abntex2/abntex2abrev.sty + RELOC/tex/latex/abntex2/abntex2cite.sty +catalogue-contact-announce https://github.com/abntex/abntex2/wiki/ReleaseNotes +catalogue-contact-bugs https://github.com/abntex/abntex2/issues +catalogue-contact-development https://github.com/abntex/abntex2/graphs/contributors +catalogue-contact-home http://www.abntex.net.br +catalogue-contact-repository https://github.com/abntex/abntex2 +catalogue-contact-support https://github.com/abntex/abntex2/wiki catalogue-ctan /macros/latex/contrib/abntex2 -catalogue-date 2015-04-28 16:18:50 +0200 +catalogue-date 2018-11-25 15:16:24 +0100 catalogue-license lppl1.3 -catalogue-version 1.9.5 +catalogue-topics dissertation class portuguese-br +catalogue-version 1.9.7 name abraces category Package revision 27880 -shortdesc Asymmetric over-/underbraces in maths. +shortdesc Asymmetric over-/underbraces in maths relocated 1 longdesc The package provides a character key-driven interface to longdesc supplement new constructions of the traditional \overbrace and longdesc \underbrace pairs in an asymmetric or arbitrary way. -runfiles size=2 - RELOC/tex/latex/abraces/abraces.sty +containersize 1956 +containerchecksum 8d75830f3230b27fdee0b21cadcc9adf604eba3058607675b23231cc43be6a66d090bd64857b3715703d2aed1e8ecfb618373b89cfee743004f1bbff5c7d21b6 +doccontainersize 199148 +doccontainerchecksum e7392bdf5f19e5dd4dafdc1b058cf0d587d9b1d8400ae01bac3a928e3edef962567e24c53b219206a6cb82f24085da43d18525973b7ccadce05efdfe79b5d524 docfiles size=51 - RELOC/doc/latex/abraces/abraces-doc.pdf + RELOC/doc/latex/abraces/abraces-doc.pdf details="Package documentation" RELOC/doc/latex/abraces/abraces-doc.tex +runfiles size=2 + RELOC/tex/latex/abraces/abraces.sty catalogue-ctan /macros/latex/contrib/abraces -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics maths-symbol catalogue-version 1.- name abstract category Package revision 15878 -shortdesc Control the typesetting of the abstract environment. +shortdesc Control the typesetting of the abstract environment relocated 1 longdesc The abstract package gives you control over the typesetting of longdesc the abstract environment, and in particular provides for a one longdesc column abstract in a two column paper. -runfiles size=2 - RELOC/tex/latex/abstract/abstract.sty +containersize 1976 +containerchecksum 2d805c2cc322cd802d612213ce525765d49d06bfb371a4ac5d1434a3c752af0ba0182093b0b6e4ee28a80ab926ad0f3a0403c03f871d3e003f6eb5a60ae39c34 +doccontainersize 146720 +doccontainerchecksum 4feae7e22d9f8c6866a9b873359a3060ff75ebcd833e1ea5f82e833933b5beb36260833675775cdeb83f1cfde4dbae3421434890aa9f0f7539c999acd2e0405b docfiles size=43 - RELOC/doc/latex/abstract/README - RELOC/doc/latex/abstract/abstract.pdf + RELOC/doc/latex/abstract/README details="Readme" + RELOC/doc/latex/abstract/abstract.pdf details="Package documentation" +srccontainersize 8320 +srccontainerchecksum e68a030e56dc15481335dfb1ba566f9b68e92933f27d296d72e20b4d3541790b739b945fc1b39415baadf045164158618da98b63be567c1aa263336579986e8f srcfiles size=8 RELOC/source/latex/abstract/abstract.dtx RELOC/source/latex/abstract/abstract.ins +runfiles size=2 + RELOC/tex/latex/abstract/abstract.sty catalogue-ctan /macros/latex/contrib/abstract -catalogue-date 2012-03-17 16:23:18 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics abstract catalogue-version 1.2a name abstyles category Package revision 15878 catalogue abstyles-orig -shortdesc Adaptable BibTeX styles. +shortdesc Adaptable BibTeX styles relocated 1 longdesc A family of modifications of the standard BibTeX styles whose longdesc behaviour may be changed by changing the user document, without longdesc change to the styles themselves. The package is largely used longdesc nowadays in its adaptation for working with Babel. +containersize 7996 +containerchecksum de7e7a5c7e56ae4fb478c9a072c6b2dc8716ea34ee17be577cf4a485c5506f16cc5b79293cfbc80b245ab350c2e2059dd5fb37a2e28818f492edf7c0416d52e3 +doccontainersize 145936 +doccontainerchecksum d12304eeb2cf797153d7e17beb25c462b3fdf75f5b7b1b24e1ff89d52ce8fe5b2a0fbf88d083ba51301afc45f51871e376253aede36bef21becc1a4350da8259 +docfiles size=74 + RELOC/doc/bibtex/abstyles/README details="Readme" + RELOC/doc/bibtex/abstyles/a4c.sty + RELOC/doc/bibtex/abstyles/a4c.tex + RELOC/doc/bibtex/abstyles/abstdok.pdf details="Outline of the family" language="de" + RELOC/doc/bibtex/abstyles/abstdok.tex + RELOC/doc/bibtex/abstyles/apreambl.doc + RELOC/doc/bibtex/abstyles/btxabst.doc + RELOC/doc/bibtex/abstyles/docmac.doc + RELOC/doc/bibtex/abstyles/docmac.tex runfiles size=33 RELOC/bibtex/bib/abstyles/acompat.bib RELOC/bibtex/bib/abstyles/jourabbr.bib @@ -325,62 +6808,77 @@ runfiles size=33 RELOC/bibtex/bst/abstyles/aunsnot.bst RELOC/bibtex/bst/abstyles/aunsrt.bst RELOC/tex/generic/abstyles/apreambl.tex -docfiles size=74 - RELOC/doc/bibtex/abstyles/README - RELOC/doc/bibtex/abstyles/a4c.sty - RELOC/doc/bibtex/abstyles/a4c.tex - RELOC/doc/bibtex/abstyles/abstdok.pdf - RELOC/doc/bibtex/abstyles/abstdok.tex - RELOC/doc/bibtex/abstyles/apreambl.doc - RELOC/doc/bibtex/abstyles/btxabst.doc - RELOC/doc/bibtex/abstyles/docmac.doc - RELOC/doc/bibtex/abstyles/docmac.tex catalogue-ctan /biblio/bibtex/contrib/abstyles -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license other-free +catalogue-topics bibtex-sty name academicons category Package -revision 37924 -shortdesc Font containing icons of online academic profiles. -relocated 1 -longdesc This package provides access in (La)TeX to 20 high quality -longdesc icons of online academic profiles included in the free -longdesc "Academicons" font. It requires the fontspec package and either -longdesc the Xe(La)TeX or the Lua(La)TeX engine to load the included -longdesc academicons.ttf font. The "Academicons" font was designed by -longdesc James Walsh and released (see -longdesc http://jpswalsh.github.io/academicons/) under the SIL Open Font -longdesc License. This package is inspired by and based on the -longdesc fontawesome package. academicons.sty provides the generic -longdesc \aiicon command to access icons, which takes as a mandatory -longdesc argument the name of the desired icon. It also provides -longdesc individual direct commands for each specific icon. The full -longdesc list of icons and their respective names and direct commands -longdesc can be found in the manual. -runfiles size=7 +revision 48100 +shortdesc Font containing high quality icons of online academic profiles +relocated 1 +longdesc The academicons package provides access in (La)TeX to 76 high +longdesc quality icons of online academic profiles included in the free +longdesc "Academicons" font. This package requires either the Xe(La)TeX +longdesc or Lua(La)TeX engine to load the "Academicons" font from the +longdesc system, which requires installing the bundled academicons.ttf +longdesc font file. As new releases come out, it is recommended to +longdesc install the bundled font version as there may be differences +longdesc between the package and previous font versions or newest font +longdesc versions not yet contemplated in the package. The "Academicons" +longdesc font was designed by James Walsh and released (see +longdesc http://jpswalsh.github.io/academicons/) under the open SIL Open +longdesc Font License. This package is a redistribution of the free +longdesc "Academicons" font with specific bindings for (La)TeX. It is +longdesc inspired and based on the fontawesome" package. The academicons +longdesc package provides the generic \aiicon command to access icons, +longdesc which takes as mandatory argument the name of the desired icon. +longdesc It also provides individual direct commands for each specific +longdesc icon. The full list of icons and their respective names and +longdesc direct commands can be found in the manual. For example, +longdesc \aiicon{googlescholar} yields the same result as +longdesc \aiGoogleScholar. +containersize 29012 +containerchecksum 8c394e4ebccb34cf3b9878a3b3577c8d43369bbef3ebe336336b9ece077e9fcef8ebbdff16f00355b7940bb325fc62ca22b428d2f25559bdee0cfaea73617938 +doccontainersize 99064 +doccontainerchecksum ab38b79d6893ba290c13862e4518c7cf6ee297f4b3a248d051d1c4351cfec05b3f271bdc95c0d345433733b9de14f852de54351698be93eca0c802959133cb03 +docfiles size=28 + RELOC/doc/fonts/academicons/README details="Readme" + RELOC/doc/fonts/academicons/academicons.pdf details="Package documentation" + RELOC/doc/fonts/academicons/academicons.tex +runfiles size=16 RELOC/fonts/truetype/public/academicons/academicons.ttf RELOC/tex/latex/academicons/academicons.sty -docfiles size=21 - RELOC/doc/fonts/academicons/README - RELOC/doc/fonts/academicons/academicons.pdf - RELOC/doc/fonts/academicons/academicons.tex + RELOC/tex/latex/academicons/tuacademicons.fd +catalogue-contact-repository https://github.com/diogo-fernan/academicons catalogue-ctan /fonts/academicons -catalogue-date 2015-07-22 20:43:07 +0200 -catalogue-license lppl1.3 +catalogue-date 2018-06-27 11:07:10 +0200 +catalogue-license lppl1.3cofl catalogue-topics font font-supp-symbol font-symbol font-ttf -catalogue-version 1.5 +catalogue-version 1.8.6-2 name accanthis category Package revision 32089 -shortdesc Accanthis fonts, with LaTeX support. +shortdesc Accanthis fonts, with LaTeX support relocated 1 longdesc Accanthis No. 3 is designed by Hirwin Harendal and is suitable longdesc as an alternative to fonts such as Garamond, Galliard, Horley longdesc old style, Sabon, and Bembo. The support files are suitable for longdesc use with all LaTeX engines. execute addMap accanthis.map +containersize 368064 +containerchecksum 9edbbdd97ea30709f0e0e1959bac7806c188d610e414f037a4115747f57ce7ad68be67b75506f9ce186c951a2c46c3bcd5b0697bb72d81fc48465906cd245be0 +doccontainersize 300384 +doccontainerchecksum efa2cbf4c11b28dc0a907b62d8818489ca48c458419e37571633adb8403f914c01d28431684705363e56cc100adf7cff6539f19fae9e4b23e6cf3dc210109810 +docfiles size=84 + RELOC/doc/fonts/accanthis/Accanthis-Cat.pdf details="Arkandis catalogue page" language="fr" + RELOC/doc/fonts/accanthis/COPYING + RELOC/doc/fonts/accanthis/NOTICE.txt + RELOC/doc/fonts/accanthis/README details="Readme" + RELOC/doc/fonts/accanthis/accanthis-samples.pdf details="Font sample page" + RELOC/doc/fonts/accanthis/accanthis-samples.tex runfiles size=204 RELOC/fonts/enc/dvips/accanthis/acnt_m4gnvn.enc RELOC/fonts/enc/dvips/accanthis/acnt_qu6a6x.enc @@ -464,21 +6962,16 @@ runfiles size=204 RELOC/tex/latex/accanthis/T1AccanthisADFStdNoThree-LF.fd RELOC/tex/latex/accanthis/TS1AccanthisADFStdNoThree-LF.fd RELOC/tex/latex/accanthis/accanthis.sty -docfiles size=84 - RELOC/doc/fonts/accanthis/Accanthis-Cat.pdf - RELOC/doc/fonts/accanthis/COPYING - RELOC/doc/fonts/accanthis/NOTICE.txt - RELOC/doc/fonts/accanthis/README - RELOC/doc/fonts/accanthis/accanthis-samples.pdf - RELOC/doc/fonts/accanthis/accanthis-samples.tex +catalogue-contact-home http://arkandis.tuxfamily.org/adffonts.html catalogue-ctan /fonts/accanthis -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license gpl2 +catalogue-topics font font-serif font-type1 font-otf name accfonts category Package revision 18835 -shortdesc Utilities to derive new fonts from existing ones. +shortdesc Utilities to derive new fonts from existing ones longdesc The accfonts package contains three utilities to permit easy longdesc manipulation of fonts, in particular the creation of unusual longdesc accented characters. Mkt1font works on Adobe Type 1 fonts, @@ -493,6 +6986,14 @@ longdesc of kerning information for new characters; mkt1font also longdesc generates suitable "hints" to enhance quality at small sizes or longdesc poor resolutions. The programs are written in Perl. depend accfonts.ARCH +containersize 22268 +containerchecksum f70105569c5b8ed83c103e423d29367702a5330d57f743a640ef68fc6a290b246e8f514907d63d6c7f203c12ab3eeb0cc64a45fe5c0379f10ccf1c8002007a47 +doccontainersize 15612 +doccontainerchecksum 24b19688008b875890a397e2250277f81be1b77c00f95a9a2d40a257c0dc6f4c8adfc07e594f3873e60e1bfbcfeba786e45e9e63eb632ca92b7c935f74b3049e +docfiles size=15 + texmf-dist/doc/fonts/accfonts/CHANGES + texmf-dist/doc/fonts/accfonts/COPYING + texmf-dist/doc/fonts/accfonts/README details="Package Readme and documentation" runfiles size=37 texmf-dist/scripts/accfonts/mkt1font texmf-dist/scripts/accfonts/vpl2ovp @@ -502,117 +7003,366 @@ runfiles size=37 texmf-dist/tex/latex/accfonts/ISO-Latin2.def texmf-dist/tex/latex/accfonts/IndUni_Omega.def texmf-dist/tex/latex/accfonts/Norman.def -docfiles size=15 - texmf-dist/doc/fonts/accfonts/CHANGES - texmf-dist/doc/fonts/accfonts/COPYING - texmf-dist/doc/fonts/accfonts/README +catalogue-also a2ac catalogue-ctan /fonts/utilities/accfonts -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license gpl +catalogue-topics font-proc omega catalogue-version 0.25 +name accfonts.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of accfonts +containersize 380 +containerchecksum eec8c0bfd2455cd7ff7ce13f3da43540bfc2ffd4840841a58f282f4f24a870b15eb2ce2278008e29754277eb3f250e0513bc2f64ce3272bcf9b6822f9a62ae7d +binfiles arch=aarch64-linux size=3 + bin/aarch64-linux/mkt1font + bin/aarch64-linux/vpl2ovp + bin/aarch64-linux/vpl2vpl + +name accfonts.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of accfonts +containersize 380 +containerchecksum eb3b836882adf662154ca90697b9131daa855a77dbc7dca67697e54ca74a3b627628d2a333abcfde66be2b9b5b41b8ac240b66431ccb851d33f06e397efa9837 +binfiles arch=amd64-freebsd size=3 + bin/amd64-freebsd/mkt1font + bin/amd64-freebsd/vpl2ovp + bin/amd64-freebsd/vpl2vpl + +name accfonts.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of accfonts +containersize 380 +containerchecksum 57cf2e690bc6e2a8119b5ae8904288193c4b903a5d3ecdca8a56f627cff89cf76f7ba43cbbfe6d02b788d674a22243509ff554f61f8fb4970694c4b84be3af73 +binfiles arch=amd64-netbsd size=3 + bin/amd64-netbsd/mkt1font + bin/amd64-netbsd/vpl2ovp + bin/amd64-netbsd/vpl2vpl + +name accfonts.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of accfonts +containersize 384 +containerchecksum e25d0bdc682eff44dcdbe8a34daf4c50eb99752a02a2b8efa25122eceac013b64e8f662f36941f87d8f00db16ca2821feff5d4d338a42672d0f4da596311dd19 +binfiles arch=armhf-linux size=3 + bin/armhf-linux/mkt1font + bin/armhf-linux/vpl2ovp + bin/armhf-linux/vpl2vpl + +name accfonts.i386-cygwin +category Package +revision 13717 +shortdesc i386-cygwin files of accfonts +containersize 376 +containerchecksum e0e805fccb816f1a29ed3907f53b720e4b3cb0f4dd5f60a728d128b13ab9ad3cb79150e283f8822e5d59987253a85a54da32e9e38c342931774ce01a12dc3f78 +binfiles arch=i386-cygwin size=3 + bin/i386-cygwin/mkt1font + bin/i386-cygwin/vpl2ovp + bin/i386-cygwin/vpl2vpl + +name accfonts.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of accfonts +containersize 384 +containerchecksum 7647effa24750ef3130003fc469f0027daaa4fccf008be5f0c92b15d76a30a1e55b585abeae8041e42a5b9a09057c801b81534dbb5fb6ffc9e60afd4a8ccc1e3 +binfiles arch=i386-freebsd size=3 + bin/i386-freebsd/mkt1font + bin/i386-freebsd/vpl2ovp + bin/i386-freebsd/vpl2vpl + name accfonts.i386-linux category Package revision 12688 shortdesc i386-linux files of accfonts +containersize 380 +containerchecksum 37d554bd446cedb91d55f40990cc1904356aa352490124487efdf5185f94599bf109ee953fc2628dcfd2b1d3007b5865666cbe1498a39a40eb4a4894c4647798 binfiles arch=i386-linux size=3 bin/i386-linux/mkt1font bin/i386-linux/vpl2ovp bin/i386-linux/vpl2vpl +name accfonts.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of accfonts +containersize 384 +containerchecksum 43c8184d5ef6f8a9a2c604c52e14e6b2617f9ab197adf8c9635c6b73bfe87ea6fd639316759d61207e6c9876281f171f44e65b77e4fc2052cca17b0fdf935ad4 +binfiles arch=i386-netbsd size=3 + bin/i386-netbsd/mkt1font + bin/i386-netbsd/vpl2ovp + bin/i386-netbsd/vpl2vpl + +name accfonts.i386-solaris +category Package +revision 12688 +shortdesc i386-solaris files of accfonts +containersize 380 +containerchecksum 95ddce63f1a821a47e5abf205280e7a229a3f09dd4875369f355114fe87740e6e49dd1fd25ab68f1c7727fdc3b3030106a8a83fadfb07cbdc0a5a3e82679e09e +binfiles arch=i386-solaris size=3 + bin/i386-solaris/mkt1font + bin/i386-solaris/vpl2ovp + bin/i386-solaris/vpl2vpl + +name accfonts.win32 +category Package +revision 15404 +shortdesc win32 files of accfonts +containersize 716 +containerchecksum 41972a6b0f91c1b836af1eab11fc5df535f9ec1d1de3a1d6c7f0747a33b1cfe72398c2136e3049dc832a1337761c46f0cc5c9cabd0ad14586d289c6ade59b318 +binfiles arch=win32 size=3 + bin/win32/mkt1font.exe + bin/win32/vpl2ovp.exe + bin/win32/vpl2vpl.exe + +name accfonts.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of accfonts +containersize 380 +containerchecksum e3179ae256fb60c33239a09bd292737b09c2c036c0888e5d12f6dd14659f35a3c3edd22c16289f0192ab9c250462445a2e55ad55e6b95c8b3efbf3f86b966004 +binfiles arch=x86_64-cygwin size=3 + bin/x86_64-cygwin/mkt1font + bin/x86_64-cygwin/vpl2ovp + bin/x86_64-cygwin/vpl2vpl + +name accfonts.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of accfonts +containersize 384 +containerchecksum 2e0da58c95239f1aa05e908be8189d07da27779f6aed21778fb9089c8e72848033d1d9ee62fe7e4bdfdfb3d38fd0bfd239ac29d6d0b8b71f7a5f3fbaa8fc7e8d +binfiles arch=x86_64-darwin size=3 + bin/x86_64-darwin/mkt1font + bin/x86_64-darwin/vpl2ovp + bin/x86_64-darwin/vpl2vpl + +name accfonts.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of accfonts +containersize 392 +containerchecksum c3e040cfb597b3bbeb7b4f04a2aa5bc23016f7be859bc1ee04dc0a37ca9b9df63aef550bc625304021b29becac1c939d1d33467d9daddde927293637c30fdda1 +binfiles arch=x86_64-darwinlegacy size=3 + bin/x86_64-darwinlegacy/mkt1font + bin/x86_64-darwinlegacy/vpl2ovp + bin/x86_64-darwinlegacy/vpl2vpl + +name accfonts.x86_64-linux +category Package +revision 12688 +shortdesc x86_64-linux files of accfonts +containersize 380 +containerchecksum 586a36b09c10e89943cbdd535902f629d5937500dc6bf3b9020c5b2cd6463d46a5629cfdfee1a8442ea62eeeffb16d7bbb3d529d9db4e4a798cc78db39020f7a +binfiles arch=x86_64-linux size=3 + bin/x86_64-linux/mkt1font + bin/x86_64-linux/vpl2ovp + bin/x86_64-linux/vpl2vpl + +name accfonts.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of accfonts +containersize 388 +containerchecksum 2e3bbdec4f92c7c616b52b2b91451a1c7234e89616e660a4f3fe114deb6ab12c28c8700bdff30cb1f482fbad30705a892667f34f69b10918b392bb39470f5ca4 +binfiles arch=x86_64-linuxmusl size=3 + bin/x86_64-linuxmusl/mkt1font + bin/x86_64-linuxmusl/vpl2ovp + bin/x86_64-linuxmusl/vpl2vpl + +name accfonts.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of accfonts +containersize 380 +containerchecksum 964a9b1e5f7b7113f24f9dc542e79cadf8e65fbd4782623d48f6b834296b9d1ce8bc7a92e45628742cd5e668bd35c954f1c9d685918cf598c8259d371acebec3 +binfiles arch=x86_64-solaris size=3 + bin/x86_64-solaris/mkt1font + bin/x86_64-solaris/vpl2ovp + bin/x86_64-solaris/vpl2vpl + name achemso category Package -revision 36733 -shortdesc Support for American Chemical Society journal submissions. +revision 50025 +shortdesc Support for American Chemical Society journal submissions relocated 1 longdesc The bundle provides the official macros (achemso.cls) and longdesc BibTeX styles (achemso.bst and biochem.bst) for submission to longdesc the journals of the American Chemical Society. The natmove longdesc package, which moves citations relative to punctuation, is longdesc distributed as part of the bundle. -runfiles size=79 +containersize 18216 +containerchecksum 87882436a324828c3a787aabf5516f773afa35be70c64392117e356af18c37cca77d439f1cb88422cda441950ca40bbf624fc01ce3eb05d6ae22fa817bf8a743 +doccontainersize 851936 +doccontainerchecksum 8576bc5db853243bb4b37f53cade79aa1913e763ef6bd2af3a9f74087e68598d40308bf65772a623e44824ee128c8e93aea250abc3499b219233af5aea558efa +docfiles size=220 + RELOC/doc/latex/achemso/LICENSE.md + RELOC/doc/latex/achemso/README.md details="Readme" + RELOC/doc/latex/achemso/achemso-demo.bib + RELOC/doc/latex/achemso/achemso-demo.pdf details="Example of use" + RELOC/doc/latex/achemso/achemso-demo.tex + RELOC/doc/latex/achemso/achemso.pdf details="Package documentation" +srccontainersize 33072 +srccontainerchecksum 64a121d889d685f2dfb57443e38feb62e4ac1c78b7496d0f708bc3d7379abed7780b48984e5464d04308e61dd3b332908337474383493eddfaf418f63fe15322 +srcfiles size=40 + RELOC/source/latex/achemso/achemso.dtx +runfiles size=90 RELOC/bibtex/bst/achemso/achemso.bst RELOC/bibtex/bst/achemso/biochem.bst + RELOC/tex/latex/achemso/achemso-aaembp.cfg + RELOC/tex/latex/achemso/achemso-aaemcq.cfg + RELOC/tex/latex/achemso/achemso-aamick.cfg + RELOC/tex/latex/achemso/achemso-aanmf6.cfg + RELOC/tex/latex/achemso/achemso-aapmcd.cfg + RELOC/tex/latex/achemso/achemso-abseba.cfg + RELOC/tex/latex/achemso/achemso-acbcct.cfg + RELOC/tex/latex/achemso/achemso-accacs.cfg + RELOC/tex/latex/achemso/achemso-achre4.cfg + RELOC/tex/latex/achemso/achemso-acncdm.cfg + RELOC/tex/latex/achemso/achemso-acsccc.cfg + RELOC/tex/latex/achemso/achemso-acscii.cfg + RELOC/tex/latex/achemso/achemso-acsodf.cfg + RELOC/tex/latex/achemso/achemso-aelccp.cfg + RELOC/tex/latex/achemso/achemso-aesccq.cfg + RELOC/tex/latex/achemso/achemso-aidcbc.cfg + RELOC/tex/latex/achemso/achemso-amclct.cfg + RELOC/tex/latex/achemso/achemso-amlccd.cfg + RELOC/tex/latex/achemso/achemso-amlcef.cfg + RELOC/tex/latex/achemso/achemso-ancac3.cfg + RELOC/tex/latex/achemso/achemso-ancham.cfg + RELOC/tex/latex/achemso/achemso-apchd5.cfg + RELOC/tex/latex/achemso/achemso-asbcd6.cfg + RELOC/tex/latex/achemso/achemso-ascecg.cfg + RELOC/tex/latex/achemso/achemso-ascefj.cfg + RELOC/tex/latex/achemso/achemso-bcches.cfg + RELOC/tex/latex/achemso/achemso-bichaw.cfg + RELOC/tex/latex/achemso/achemso-bomaf6.cfg + RELOC/tex/latex/achemso/achemso-cgdefu.cfg + RELOC/tex/latex/achemso/achemso-chreay.cfg + RELOC/tex/latex/achemso/achemso-cmatex.cfg + RELOC/tex/latex/achemso/achemso-crtoec.cfg + RELOC/tex/latex/achemso/achemso-enfuem.cfg + RELOC/tex/latex/achemso/achemso-esthag.cfg + RELOC/tex/latex/achemso/achemso-estlcu.cfg + RELOC/tex/latex/achemso/achemso-iecred.cfg + RELOC/tex/latex/achemso/achemso-inoraj.cfg + RELOC/tex/latex/achemso/achemso-jacsat.cfg + RELOC/tex/latex/achemso/achemso-jafcau.cfg + RELOC/tex/latex/achemso/achemso-jceaax.cfg + RELOC/tex/latex/achemso/achemso-jceda8.cfg + RELOC/tex/latex/achemso/achemso-jcisd8.cfg + RELOC/tex/latex/achemso/achemso-jctcce.cfg + RELOC/tex/latex/achemso/achemso-jmcmar.cfg + RELOC/tex/latex/achemso/achemso-jnprdf.cfg + RELOC/tex/latex/achemso/achemso-joceah.cfg + RELOC/tex/latex/achemso/achemso-jpcafh.cfg + RELOC/tex/latex/achemso/achemso-jpcbfk.cfg + RELOC/tex/latex/achemso/achemso-jpccck.cfg + RELOC/tex/latex/achemso/achemso-jpclcd.cfg + RELOC/tex/latex/achemso/achemso-jprobs.cfg + RELOC/tex/latex/achemso/achemso-langd5.cfg + RELOC/tex/latex/achemso/achemso-mamobx.cfg + RELOC/tex/latex/achemso/achemso-mpohbp.cfg + RELOC/tex/latex/achemso/achemso-nalefd.cfg + RELOC/tex/latex/achemso/achemso-oprdfk.cfg + RELOC/tex/latex/achemso/achemso-orgnd7.cfg + RELOC/tex/latex/achemso/achemso-orlef7.cfg RELOC/tex/latex/achemso/achemso.cls RELOC/tex/latex/achemso/achemso.sty - RELOC/tex/latex/achemso/config/aamick.cfg - RELOC/tex/latex/achemso/config/acbcct.cfg - RELOC/tex/latex/achemso/config/accacs.cfg - RELOC/tex/latex/achemso/config/achre4.cfg - RELOC/tex/latex/achemso/config/acncdm.cfg - RELOC/tex/latex/achemso/config/acsccc.cfg - RELOC/tex/latex/achemso/config/amclct.cfg - RELOC/tex/latex/achemso/config/amlccd.cfg - RELOC/tex/latex/achemso/config/ancac3.cfg - RELOC/tex/latex/achemso/config/ancham.cfg - RELOC/tex/latex/achemso/config/apchd5.cfg - RELOC/tex/latex/achemso/config/asbcd6.cfg - RELOC/tex/latex/achemso/config/asccii.cfg - RELOC/tex/latex/achemso/config/ascecg.cfg - RELOC/tex/latex/achemso/config/bcches.cfg - RELOC/tex/latex/achemso/config/bichaw.cfg - RELOC/tex/latex/achemso/config/bomaf6.cfg - RELOC/tex/latex/achemso/config/cgdefu.cfg - RELOC/tex/latex/achemso/config/chreay.cfg - RELOC/tex/latex/achemso/config/cmatex.cfg - RELOC/tex/latex/achemso/config/crtoec.cfg - RELOC/tex/latex/achemso/config/enfuem.cfg - RELOC/tex/latex/achemso/config/esthag.cfg - RELOC/tex/latex/achemso/config/estlcu.cfg - RELOC/tex/latex/achemso/config/iecred.cfg - RELOC/tex/latex/achemso/config/inoraj.cfg - RELOC/tex/latex/achemso/config/jacsat.cfg - RELOC/tex/latex/achemso/config/jafcau.cfg - RELOC/tex/latex/achemso/config/jceaax.cfg - RELOC/tex/latex/achemso/config/jceda8.cfg - RELOC/tex/latex/achemso/config/jcisd8.cfg - RELOC/tex/latex/achemso/config/jctcce.cfg - RELOC/tex/latex/achemso/config/jmcmar.cfg - RELOC/tex/latex/achemso/config/jnprdf.cfg - RELOC/tex/latex/achemso/config/joceah.cfg - RELOC/tex/latex/achemso/config/jpcafh.cfg - RELOC/tex/latex/achemso/config/jpcbfk.cfg - RELOC/tex/latex/achemso/config/jpccck.cfg - RELOC/tex/latex/achemso/config/jpclcd.cfg - RELOC/tex/latex/achemso/config/jprobs.cfg - RELOC/tex/latex/achemso/config/langd5.cfg - RELOC/tex/latex/achemso/config/mamobx.cfg - RELOC/tex/latex/achemso/config/mpohbp.cfg - RELOC/tex/latex/achemso/config/nalefd.cfg - RELOC/tex/latex/achemso/config/oprdfk.cfg - RELOC/tex/latex/achemso/config/orgnd7.cfg - RELOC/tex/latex/achemso/config/orlef7.cfg RELOC/tex/latex/achemso/natmove.sty -docfiles size=150 - RELOC/doc/latex/achemso/README - RELOC/doc/latex/achemso/achemso-demo.bib - RELOC/doc/latex/achemso/achemso-demo.pdf - RELOC/doc/latex/achemso/achemso-demo.tex - RELOC/doc/latex/achemso/achemso.pdf -srcfiles size=46 - RELOC/source/latex/achemso/achemso.dtx - RELOC/source/latex/achemso/achemso.ins catalogue-ctan /macros/latex/contrib/achemso -catalogue-date 2015-04-07 19:17:43 +0200 +catalogue-date 2019-02-14 15:10:23 +0100 +catalogue-license lppl1.3c +catalogue-topics chemistry journalpub bibtex-sty class +catalogue-version 3.12a + +name acmart +category Package +revision 51061 +shortdesc Class for typesetting publications of ACM +relocated 1 +longdesc This package provides a class for typesetting publications of +longdesc the Association for Computing Machinery. +containersize 36232 +containerchecksum 302338c39200245c70c6f3f75b3867cdcd10b6bf01f27ae34a8fcfbe58c40f2c9d8dec8a4ef3172ffc6a9ae5f1f79e4fc70e64916ecb1b87ba9982efdea47c48 +doccontainersize 3956416 +doccontainerchecksum ab83de635f6d0341d0b8e8c7f27495b188efe8f0f63420a6cfd2e1c2ed6068254942cf5eee30df29ba22f8b4523c08c7fe444c3c0a9c37b869578309d1f73143 +docfiles size=2703 + RELOC/doc/latex/acmart/README details="Readme" + RELOC/doc/latex/acmart/acmart.bib + RELOC/doc/latex/acmart/acmart.pdf details="Documentation" + RELOC/doc/latex/acmart/acmguide.pdf + RELOC/doc/latex/acmart/samples/sample-acmlarge.pdf + RELOC/doc/latex/acmart/samples/sample-acmlarge.tex + RELOC/doc/latex/acmart/samples/sample-acmsmall-conf.pdf + RELOC/doc/latex/acmart/samples/sample-acmsmall-conf.tex + RELOC/doc/latex/acmart/samples/sample-acmsmall.pdf + RELOC/doc/latex/acmart/samples/sample-acmsmall.tex + RELOC/doc/latex/acmart/samples/sample-acmtog.pdf + RELOC/doc/latex/acmart/samples/sample-acmtog.tex + RELOC/doc/latex/acmart/samples/sample-authordraft.pdf + RELOC/doc/latex/acmart/samples/sample-authordraft.tex + RELOC/doc/latex/acmart/samples/sample-base.bib + RELOC/doc/latex/acmart/samples/sample-franklin.png + RELOC/doc/latex/acmart/samples/sample-manuscript.pdf details="Example of use" + RELOC/doc/latex/acmart/samples/sample-manuscript.tex + RELOC/doc/latex/acmart/samples/sample-sigchi-a.pdf + RELOC/doc/latex/acmart/samples/sample-sigchi-a.tex + RELOC/doc/latex/acmart/samples/sample-sigchi.pdf + RELOC/doc/latex/acmart/samples/sample-sigchi.tex + RELOC/doc/latex/acmart/samples/sample-sigconf.pdf + RELOC/doc/latex/acmart/samples/sample-sigconf.tex + RELOC/doc/latex/acmart/samples/sample-sigplan.pdf + RELOC/doc/latex/acmart/samples/sample-sigplan.tex + RELOC/doc/latex/acmart/samples/sample-xelatex.pdf + RELOC/doc/latex/acmart/samples/sample-xelatex.tex + RELOC/doc/latex/acmart/samples/samples.dtx + RELOC/doc/latex/acmart/samples/samples.ins + RELOC/doc/latex/acmart/samples/sampleteaser.pdf +srccontainersize 50104 +srccontainerchecksum 6d6739e8c0ff30ee3413ec3bd3e9a0a87733c80ad78613fcb01971ea52237f5c09513fec0debb271b27720088bbd6c51ceb9e318d9d4823b2a5ebce56f16e6aa +srcfiles size=58 + RELOC/source/latex/acmart/Makefile + RELOC/source/latex/acmart/acmart.dtx + RELOC/source/latex/acmart/acmart.ins +runfiles size=52 + RELOC/bibtex/bst/acmart/ACM-Reference-Format.bst + RELOC/tex/latex/acmart/ACM-Reference-Format.bbx + RELOC/tex/latex/acmart/ACM-Reference-Format.cbx + RELOC/tex/latex/acmart/ACM-Reference-Format.dbx + RELOC/tex/latex/acmart/acmart.cls +catalogue-contact-bugs https://github.com/borisveytsman/acmart/issues +catalogue-contact-development https://github.com/borisveytsman/acmart/pulls +catalogue-contact-repository https://github.com/borisveytsman/acmart/ +catalogue-ctan /macros/latex/contrib/acmart +catalogue-date 2019-05-08 22:48:30 +0200 catalogue-license lppl1.3 -catalogue-version 3.10 +catalogue-topics class comp-sci comp-theory engineering journalpub +catalogue-version 1.60 name acmconf category Package revision 15878 -shortdesc Class for ACM conference proceedings. +shortdesc Class for ACM conference proceedings relocated 1 longdesc This class may be used to typeset articles to be published in longdesc the proceedings of ACM (Association for Computing Machinery) longdesc conferences and workshops. The layout produced by the acmconf longdesc class is based on the ACM's own specification. -runfiles size=4 - RELOC/tex/latex/acmconf/acmconf.cls +containersize 4192 +containerchecksum 9363127ba5d59bee9d41e800a0e11d12bc4493e5a79a94be8efe23a44278ea097a58fb53cd334fef0f2ab32c9350196c46ee1aec8347a4aa5554b317c15249ba +doccontainersize 89944 +doccontainerchecksum a8a971df6a94a9548b71c1463b9ab143525127774daf5aab227a805c302ee0732d3578c361c5346b123983a32e6d6c8afbd543bca4dc7ac7ad4d5919aba63099 docfiles size=50 - RELOC/doc/latex/acmconf/README + RELOC/doc/latex/acmconf/README details="Readme" RELOC/doc/latex/acmconf/THIS-IS-VERSION-1.3 RELOC/doc/latex/acmconf/accept.tex - RELOC/doc/latex/acmconf/acmconf.pdf + RELOC/doc/latex/acmconf/acmconf.pdf details="Package documentation" RELOC/doc/latex/acmconf/body.eps RELOC/doc/latex/acmconf/error.tex RELOC/doc/latex/acmconf/prepare.tex @@ -621,90 +7371,117 @@ docfiles size=50 RELOC/doc/latex/acmconf/pubform.tex RELOC/doc/latex/acmconf/publish.tex RELOC/doc/latex/acmconf/submit.tex +srccontainersize 18700 +srccontainerchecksum bd9ffcd848571f2a4ffaa7f324835c74abd59ad1d2816b6dbad5fcac7fb06b98c38059dab7261b4bf7d811d56d0ad48d23ac81525cf95a2e6a190a25a6de9d82 srcfiles size=20 RELOC/source/latex/acmconf/Makefile RELOC/source/latex/acmconf/acmconf.dtx RELOC/source/latex/acmconf/acmconf.ins +runfiles size=4 + RELOC/tex/latex/acmconf/acmconf.cls catalogue-ctan /macros/latex/contrib/acmconf -catalogue-date 2014-09-16 18:22:54 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics confproc journalpub class catalogue-version 1.3 +name acro +category Package +revision 50045 +shortdesc Typeset acronyms +relocated 1 +longdesc The package enables the author to create acronyms in a simple +longdesc way, and provides means to add them to different 'classes' of +longdesc acronyms. Lists can be created of separate acronym classes. The +longdesc package option 'single' instructs the package to ignore +longdesc acronyms that are used only once in the whole document. As an +longdesc experimental feature the package also offers the option 'sort' +longdesc which automatically sorts the list created by \printacronyms. +containersize 24456 +containerchecksum 1c17f217af097604aecde0de092b8df4a763cd9937c1d304b7d41129437202bd1eb0b81fc1f811b58e5b269c3edcc3b73e51940ef0f6ad2a3652b5e93a27eb7e +doccontainersize 587304 +doccontainerchecksum c401ebcfb37e36719d32663fd45060f4e7669d71661d1777e225ff0400cbc2d757585fabab126b4c6e30f5f925ffb4d7302197fb31e50caec75f4e88a59e94fd +docfiles size=163 + RELOC/doc/latex/acro/README details="Readme" + RELOC/doc/latex/acro/acro_en.pdf details="Package documentation" + RELOC/doc/latex/acro/acro_en.tex + RELOC/doc/latex/acro/example_one.tex + RELOC/doc/latex/acro/example_two.tex +runfiles size=38 + RELOC/tex/latex/acro/acro.sty +catalogue-contact-bugs https://bitbucket.org/cgnieder/acro/issues +catalogue-contact-repository https://bitbucket.org/cgnieder/acro/ +catalogue-ctan /macros/latex/contrib/acro +catalogue-date 2019-02-17 16:20:35 +0100 +catalogue-license lppl1.3 +catalogue-topics acronym expl3 +catalogue-version 2.9 + name acronym category Package revision 36582 -shortdesc Expand acronyms at least once. +shortdesc Expand acronyms at least once relocated 1 longdesc This package ensures that all acronyms used in the text are longdesc spelled out in full at least once. It also provides an longdesc environment to build a list of acronyms used. The package is longdesc compatible with pdf bookmarks. The package requires the suffix longdesc package, which in turn requires that it runs under e-TeX. -runfiles size=5 - RELOC/tex/latex/acronym/acronym.sty +containersize 4348 +containerchecksum 68468f027077b6ca895dce3127a78891dc41b1eb245c17f02810180bd0a66d4a5543596f7bce2d751600d49664833a93680339e0adf959681937db8861624673 +doccontainersize 268988 +doccontainerchecksum e5ca45891edb4b43f48ad8cef3cb4191e7e8a971a4a6dc86c4b6198aad74599c274fd68c3045b34b539f2bd673619ffe7410058139b39d14830387156cfbcacc docfiles size=68 - RELOC/doc/latex/acronym/README - RELOC/doc/latex/acronym/acronym.pdf + RELOC/doc/latex/acronym/README details="Package Readme" + RELOC/doc/latex/acronym/acronym.pdf details="Package documentation" RELOC/doc/latex/acronym/acrotest.tex +srccontainersize 15372 +srccontainerchecksum 9b33c43c3573efa5435cbfaee439ed08bd9f46666dac143092f28ba0080b291f97b215fe73cda5d358285619396565d4437245031608fd52e50979eac2877967 srcfiles size=16 RELOC/source/latex/acronym/acronym.dtx RELOC/source/latex/acronym/acronym.ins +runfiles size=5 + RELOC/tex/latex/acronym/acronym.sty +catalogue-also glossaries catalogue-ctan /macros/latex/contrib/acronym -catalogue-date 2015-03-21 19:02:46 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics acronym catalogue-version 1.41 name acroterm category Package revision 20498 -shortdesc Manage and index acronyms and terms. +shortdesc Manage and index acronyms and terms relocated 1 longdesc Yet another package for acronyms: the package offers simple longdesc markup of acronyms and technical terms in the text, giving an longdesc index each of terms and acronyms with their expanded form. -runfiles size=1 - RELOC/tex/latex/acroterm/acroterm.sty +containersize 1424 +containerchecksum fbcd24989570b083ec51365b560ad2a082a136fc8b2b57aaca4a03059f66dcbdca1efe39c959c8f1a049fdd978ab58a6920f914589c242264b9d803124d0e0cd +doccontainersize 157936 +doccontainerchecksum 603375e44822841b1dbf52d7aab0c91c0ed36dcdada7e6fab607ba805fa896473674123a2594714fa0f698c559570431f09ec55ca41720586fd522df24453253 docfiles size=44 - RELOC/doc/latex/acroterm/README - RELOC/doc/latex/acroterm/acroterm.pdf + RELOC/doc/latex/acroterm/README details="Readme" + RELOC/doc/latex/acroterm/acroterm.pdf details="Package documentation" +srccontainersize 3832 +srccontainerchecksum e289d4cce2bcbb70b20d1f59055cc019453e526ff2c0bee6e5a2d04573060d1d4490d89ec717fe55e4dd3754170f794e60acd453b21b884f595ea56bb6f95adc srcfiles size=4 RELOC/source/latex/acroterm/acroterm.dtx RELOC/source/latex/acroterm/acroterm.ins +runfiles size=1 + RELOC/tex/latex/acroterm/acroterm.sty +catalogue-contact-repository http://github.com/nichtich/acroterm/ catalogue-ctan /macros/latex/contrib/acroterm -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 +catalogue-topics acronym glossary catalogue-version 0.1 -name acro -category Package -revision 38306 -shortdesc Typeset acronyms -relocated 1 -longdesc The package enables the author to create acronyms in a simple -longdesc way, and provides means to add them to different 'classes' of -longdesc acronyms. Lists can be created of separate acronym classes. The -longdesc package option 'single' instructs the package to ignore -longdesc acronyms that are used only once in the whole document. As an -longdesc experimental feature the package also offers the option 'sort' -longdesc which automatically sorts the list created by \printacronyms. -runfiles size=30 - RELOC/tex/latex/acro/acro.sty -docfiles size=154 - RELOC/doc/latex/acro/README - RELOC/doc/latex/acro/acro_en.pdf - RELOC/doc/latex/acro/acro_en.tex - RELOC/doc/latex/acro/example_one.tex - RELOC/doc/latex/acro/example_two.tex -catalogue-ctan /macros/latex/contrib/acro -catalogue-date 2015-09-05 14:46:46 +0200 -catalogue-license lppl1.3 -catalogue-topics acronym -catalogue-version 2.1 - name active-conf category Package revision 15878 -shortdesc Class for typesetting ACTIVE conference papers. +shortdesc Class for typesetting ACTIVE conference papers relocated 1 longdesc Active-conf is a class for typesetting papers for the Active longdesc conference on noise and vibration control. It is initially @@ -712,83 +7489,208 @@ longdesc intended for the 2006 conference in Adelaide, Australia. The longdesc class is based on article with more flexible front-matter, and longdesc can be customised for conferences in future years with a header longdesc file. -runfiles size=4 - RELOC/tex/latex/active-conf/active-conf.cls +containersize 4548 +containerchecksum afd71b77d016c6f2b36ff045176929409f1fc104d9f3530c1a70fad4fd1c71ac327a3b58dbf4a14b93cc691d88bf6b7d3add07196921876360280ee4e5915134 +doccontainersize 314788 +doccontainerchecksum e1b990ceab6820376c18068bf5ac15e984150fe7ad66929496cb77665f0ae334cb28026e0000e788f0580eab549fe2f70e802ca67d0f968961f4582290646758 docfiles size=93 - RELOC/doc/latex/active-conf/README - RELOC/doc/latex/active-conf/active-conf.pdf + RELOC/doc/latex/active-conf/README details="Readme" + RELOC/doc/latex/active-conf/active-conf.pdf details="Class documentation" RELOC/doc/latex/active-conf/example/active-example.ltx RELOC/doc/latex/active-conf/example/active-header-2006.tex RELOC/doc/latex/active-conf/example/header-logo-2006.eps RELOC/doc/latex/active-conf/example/header-logo-2006.pdf +srccontainersize 14728 +srccontainerchecksum 06d82683cb44e35a07e2907e00f2f80b247a3ca2cc0e9b230e7417aafc21a73c9ef788c4e88cdf7fe7f812c471c3b34273adcb4d5e272888fc481d9d18a88b68 srcfiles size=13 RELOC/source/latex/active-conf/active-conf.dtx RELOC/source/latex/active-conf/active-conf.ins +runfiles size=4 + RELOC/tex/latex/active-conf/active-conf.cls catalogue-ctan /macros/latex/contrib/conferences/active-conf -catalogue-date 2014-09-16 18:22:54 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics confproc class catalogue-version 0.3a name actuarialangle category Package -revision 28004 -shortdesc Symbol for use in "present value" statements of an annuity. -relocated 1 -longdesc The package defines a single command \actuarialangle to typeset -longdesc "angles" in the 'present value of an annuity' symbols common in -longdesc actuarial and financial notation. +revision 43751 +shortdesc Angle symbol denoting a duration in actuarial and financial notation +relocated 1 +longdesc This package provides commands to typeset the "angle" symbol +longdesc denoting a duration in actuarial notation, such as in symbols +longdesc for the present value of certain or life annuities, and an over +longdesc angle square bracket used to emphasize joint status in symbols +longdesc of life contingencies. +containersize 1632 +containerchecksum d775db46dddf93cbd0ba1b5df7c34f96e6224f3e33ed573b43da4123924330706515b17cbd939421d2f981dd17c963c48df4ff78ab9ed27bd4689ff461eb8946 +doccontainersize 105388 +doccontainerchecksum 5109050fdcd5fc8017929882283b7d31d23feb3691a3a851e4b7775093d6e56e19225922e65cfe0419680dbfeb059e84839eea33c7cb715f5584585ff889c76f +docfiles size=27 + RELOC/doc/latex/actuarialangle/README.md details="Readme" + RELOC/doc/latex/actuarialangle/actuarialangle.pdf details="Package documentation" +srccontainersize 5868 +srccontainerchecksum 80dfb5a170479d4da1982ba7a53bb54ddc4c227027932a2fa6144d74c60ed5be489bc4e3b4130ef4e28b0b08d86acd3d35c9f1fe02fd4a7e6e484bb0e418d613 +srcfiles size=5 + RELOC/source/latex/actuarialangle/actuarialangle.dtx runfiles size=1 RELOC/tex/latex/actuarialangle/actuarialangle.sty -docfiles size=1 - RELOC/doc/latex/actuarialangle/README catalogue-ctan /macros/latex/contrib/actuarialangle -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-04-12 09:07:39 +0200 +catalogue-license lppl1.3c +catalogue-topics graphics-symb +catalogue-version 2.0 + +name actuarialsymbol +category Package +revision 44607 +shortdesc Actuarial symbols of life contingencies and financial mathematics +relocated 1 +longdesc This package provides commands to compose actuarial symbols of +longdesc life contingencies and financial mathematics characterized by +longdesc subscripts and superscripts on both sides of a principal +longdesc symbol. The package also features commands to easily and +longdesc consistently position precedence numbers above or below +longdesc statuses in symbols for multiple lives contracts. Since the +longdesc actuarial notation can get quite involved, the package defines +longdesc a number of shortcut macros to ease entry of the most common +longdesc elements. Appendix A of the package documentation lists the +longdesc commands to typeset a large selection of symbols of life +longdesc contingencies. This package requires actuarialangle. +containersize 2756 +containerchecksum 9a13298a81b661de746416d9282904dee69f01b7ffcbba0e4c29d951872308e4f3452c21e0e58e457a8d77091538a6db2924601eac72b37e527db88dcc2f7967 +doccontainersize 280856 +doccontainerchecksum 888e4d03aad110db759d6fdeae162fbfd3f8aeba3672a8bd7ba61096026219f449318e3b2405456458936fd7ed3526e9c3c24686a107277bb236a8e11005a9d1 +docfiles size=88 + RELOC/doc/latex/actuarialsymbol/README.md details="Readme" + RELOC/doc/latex/actuarialsymbol/actuarialsymbol.pdf details="Package documentation" + RELOC/doc/latex/actuarialsymbol/mosaic.jpg +srccontainersize 15772 +srccontainerchecksum 5f3832361c9e9abb9b7ac206977d3dcc9bb56903f5649db92fdcc0a3fdee3a5a7e9208051291d0a1820b3d803b539b3862bbba109751eef7b8fa6f764138171d +srcfiles size=18 + RELOC/source/latex/actuarialsymbol/actuarialsymbol.dtx +runfiles size=2 + RELOC/tex/latex/actuarialsymbol/actuarialsymbol.sty +catalogue-contact-bugs https://github.com/vigou3/actuarialsymbol/issues +catalogue-contact-home https://vigou3.github.io/actuarialsymbol +catalogue-contact-repository https://github.com/vigou3/actuarialsymbol +catalogue-ctan /macros/latex/contrib/actuarialsymbol +catalogue-date 2017-06-14 22:39:00 +0200 +catalogue-license lppl1.3c +catalogue-topics graphics-symb +catalogue-version 1.0a + +name addfont +category Package +revision 41972 +shortdesc Easier use of fonts without LaTeX support +relocated 1 +longdesc This package is intended for use by users who know about fonts. +longdesc It is a quick-fix for fonts which does not have genuine LaTeX +longdesc support. It is not meant as a replacement of the LaTeX font +longdesc definition files. It is meant as something more useable for +longdesc LaTeX users than the \newfont command. With addfont the loaded +longdesc font scales along with the usual LaTeX size selection. Using +longdesc this package still requires some knowledge on how to use fonts +longdesc with LaTeX. +containersize 1488 +containerchecksum fff94f6b6bed71f6ba4662c78cf4ee5c3aabe2f9b232fa9b4c52ad39938e7f56306c905ca0c187b0c618f67fd5d245529fb06ce17124b980c29eb278aed9d857 +doccontainersize 105444 +doccontainerchecksum 10a3d45c3f4a4a1aebdee7f3a6a05866df428cf7bb9a1e3ab13ce6fb6254c679bea293449fb00cf5d1c64c99fe8b615168d011631d264aec2349053643f5bdcb +docfiles size=36 + RELOC/doc/latex/addfont/README details="Readme" + RELOC/doc/latex/addfont/addfont.pdf details="Package documentation" + RELOC/doc/latex/addfont/addfont.tex + RELOC/doc/latex/addfont/license +runfiles size=1 + RELOC/tex/latex/addfont/addfont.sty +catalogue-ctan /macros/latex/contrib/addfont +catalogue-date 2018-01-07 11:56:15 +0100 +catalogue-license gpl3 +catalogue-topics font-use +catalogue-version 1 + +name addliga +category Package +revision 50912 +shortdesc Access basic ligatures in legacy TrueType fonts +relocated 1 +longdesc This small and simple package allows LuaLaTeX users to access +longdesc basic ligatures (ff, fi, ffi, fl, ffl) in legacy TrueType fonts +longdesc (those lacking a liga table) accessed via fontspec. +containersize 792 +containerchecksum b54db5b075c2ba2f632e40a1ae2d840b0a61cc940512027effa2b2b3cadfd6dfa2407e2580a462b98f48cafed94281d39613397ed34ad76f54d6a7e8b614ecb8 +doccontainersize 18528 +doccontainerchecksum 572d9aa1396ac80be2cd9ab0bd317759805a6541b656e19ae36915a6277f9a4ff2987c84dbf903133e0a5027f382b0ed48fc882ce7a79df7a27cfe3082d2a666 +docfiles size=7 + RELOC/doc/lualatex/addliga/README details="Readme" + RELOC/doc/lualatex/addliga/addliga.pdf details="Package documentation" + RELOC/doc/lualatex/addliga/addliga.tex +runfiles size=1 + RELOC/tex/lualatex/addliga/addliga.sty +catalogue-ctan /macros/luatex/latex/addliga +catalogue-date 2019-04-30 18:31:30 +0200 catalogue-license pd +catalogue-topics luatex font-supp font-use +catalogue-version 1.0 name addlines category Package -revision 37805 -shortdesc A user-friendly wrapper around \enlargethispage. +revision 49326 +shortdesc A user-friendly wrapper around \enlargethispage relocated 1 longdesc This small package provides the command \addlines for adding or longdesc removing space in the textblock of the page it's used on. E.g., longdesc adding an extra line of text to the page so that a section fits longdesc better on the next page. It will also add space to the facing longdesc page in a two-sided document. -runfiles size=1 - RELOC/tex/latex/addlines/addlines.sty -docfiles size=36 - RELOC/doc/latex/addlines/README - RELOC/doc/latex/addlines/addlines-example.ltx - RELOC/doc/latex/addlines/addlines.pdf +containersize 1532 +containerchecksum 5d0a438fceef1481633f37824b686422e5000cf232b7dd24bba0f30c8d62b583daf01a67242283f2e4fe971438c061acad2860f50ce1438ca32677d497db8b2a +doccontainersize 135972 +doccontainerchecksum 2993c6caae1d2f230d144c9f93f7694adcb2e17d9bcd60eb3aa3144806a522258fd4c44a314d40cc767b3b069c4c929b8e458e74bebc746771b975b77bba34d2 +docfiles size=35 + RELOC/doc/latex/addlines/README.md details="Readme" + RELOC/doc/latex/addlines/addlines.pdf details="Package documentation" +srccontainersize 4116 +srccontainerchecksum 6de10a1ddcb65be76594e7389d47316e066aec3a747ef7a61e15fa0e670d914dae3d2ef777c9574e8b85c5d9628784df7f4dc61f589917dbae571f31416bad08 srcfiles size=4 RELOC/source/latex/addlines/addlines.dtx RELOC/source/latex/addlines/addlines.ins +runfiles size=1 + RELOC/tex/latex/addlines/addlines.sty catalogue-ctan /macros/latex/contrib/addlines -catalogue-date 2015-07-08 05:25:27 +0200 -catalogue-license lppl +catalogue-date 2018-12-05 19:44:41 +0100 +catalogue-license lppl1.3c catalogue-topics geometry -catalogue-version 0.2a +catalogue-version 0.3 name adfathesis category Package revision 26048 -shortdesc Australian Defence Force Academy thesis format. +shortdesc Australian Defence Force Academy thesis format relocated 1 longdesc The bundle includes a BibTeX style file. -runfiles size=12 - RELOC/bibtex/bst/adfathesis/adfathesis.bst - RELOC/tex/latex/adfathesis/adfathesis.cls +containersize 9772 +containerchecksum 4eb7fda01fa1961d213eadd2f0bc9b1cf102de664dae1f37588e161af22d043319e12ca704c3223e78e963411c3f0533c845b17f7d0744b020ef2dca35b2c7b0 +doccontainersize 134660 +doccontainerchecksum 86d89f4f139c9ddfe6babb84558f7d89f57b75e28d37f659d9893ef703cef7199272e60f1233d51351b5bd8a4565393dd6f09ba69796d2ab555423c2ba23c2b8 docfiles size=49 - RELOC/doc/latex/adfathesis/README - RELOC/doc/latex/adfathesis/adfathesis.pdf + RELOC/doc/latex/adfathesis/README details="Package README" + RELOC/doc/latex/adfathesis/adfathesis.pdf details="Package documentation" RELOC/doc/latex/adfathesis/template.tex +srccontainersize 9964 +srccontainerchecksum 3d9a376183e2cb22dfd210eb6d453324d035289173c6750d67ee90379d794a50393c49f8fc40e5c51484127632f2489468b215dc510b0db0313372816fc77927 srcfiles size=9 RELOC/source/latex/adfathesis/adfathesis.dtx RELOC/source/latex/adfathesis/adfathesis.ins +runfiles size=12 + RELOC/bibtex/bst/adfathesis/adfathesis.bst + RELOC/tex/latex/adfathesis/adfathesis.cls catalogue-ctan /macros/latex/contrib/adfathesis -catalogue-date 2014-09-13 11:37:30 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics dissertation class catalogue-version 2.42 name adforn @@ -802,6 +7704,17 @@ longdesc GPL v2 or later with font exception. (See NOTICE, COPYING, longdesc README.) The TeX/LaTeX support is licensed under LPPL. (See longdesc README, manifest.txt.) execute addMap OrnementsADF.map +containersize 36784 +containerchecksum 2baac5e84209908f7a435e8ac945964d12e08f4d3c8be1880304f5d12dd768fb435734e5f123228497d1e099f39b8644de7f1f0447aef7dfffba4c9c38026695 +doccontainersize 360280 +doccontainerchecksum 805fdcc1fe76cdddaacd5f6530409bf2e9a019b00c61ff4f965ca19e498d88ff1c6dd414d3be208aa3c2e097c4ceaa9ca97ef4f8234bd96b6a99225f4ae89085 +docfiles size=100 + RELOC/doc/fonts/adforn/COPYING + RELOC/doc/fonts/adforn/NOTICE + RELOC/doc/fonts/adforn/README details="Readme" + RELOC/doc/fonts/adforn/adforn.pdf details="Package documentation and font tables" + RELOC/doc/fonts/adforn/adforn.tex + RELOC/doc/fonts/adforn/manifest.txt runfiles size=18 RELOC/fonts/afm/arkandis/adforn/OrnementsADF.afm RELOC/fonts/enc/dvips/adforn/OrnementsADF.enc @@ -811,22 +7724,16 @@ runfiles size=18 RELOC/fonts/type1/arkandis/adforn/OrnementsADF.pfm RELOC/tex/latex/adforn/adforn.sty RELOC/tex/latex/adforn/uornementsadf.fd -docfiles size=100 - RELOC/doc/fonts/adforn/COPYING - RELOC/doc/fonts/adforn/NOTICE - RELOC/doc/fonts/adforn/README - RELOC/doc/fonts/adforn/adforn.pdf - RELOC/doc/fonts/adforn/adforn.tex - RELOC/doc/fonts/adforn/manifest.txt catalogue-ctan /fonts/adforn -catalogue-date 2015-01-19 21:03:48 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-ornmnt font-type1 catalogue-version 1.001-b-2 name adfsymbols category Package revision 19766 -shortdesc SymbolsADF with TeX/LaTeX support. +shortdesc SymbolsADF with TeX/LaTeX support relocated 1 longdesc The package provides Arkandis foundry's ArrowsADF and longdesc BulletsADF fonts in Adobe Type 1 format, together with @@ -836,6 +7743,17 @@ longdesc TeX/LaTeX support is licensed under LPPL. (See README, longdesc manifest.txt.) execute addMap ArrowsADF.map execute addMap BulletsADF.map +containersize 26876 +containerchecksum 4018557c220a59d27f69d307f397770177213d2df82554dd89f4d19e0f910fa1825188cd1e564281ce8cc245f6e72d287e368be06ce1503dd25a93e67c3ae342 +doccontainersize 383652 +doccontainerchecksum b919a3c1e2e22e35501ed88028498c293fb21442f3d2849ecd420623047bf3ab1286bee7200542b4f863814239a9c4e42ef61c3f7ba745694c7b4a8997c3da8c +docfiles size=106 + RELOC/doc/fonts/adfsymbols/COPYING + RELOC/doc/fonts/adfsymbols/NOTICE + RELOC/doc/fonts/adfsymbols/README details="Readme" + RELOC/doc/fonts/adfsymbols/adfsymbols.pdf details="Package documentation" + RELOC/doc/fonts/adfsymbols/adfsymbols.tex + RELOC/doc/fonts/adfsymbols/manifest.txt runfiles size=19 RELOC/fonts/afm/arkandis/adfsymbols/ArrowsADF.afm RELOC/fonts/afm/arkandis/adfsymbols/BulletsADF.afm @@ -850,85 +7768,259 @@ runfiles size=19 RELOC/tex/latex/adfsymbols/adfbullets.sty RELOC/tex/latex/adfsymbols/uarrowsadf.fd RELOC/tex/latex/adfsymbols/ubulletsadf.fd -docfiles size=106 - RELOC/doc/fonts/adfsymbols/COPYING - RELOC/doc/fonts/adfsymbols/NOTICE - RELOC/doc/fonts/adfsymbols/README - RELOC/doc/fonts/adfsymbols/adfsymbols.pdf - RELOC/doc/fonts/adfsymbols/adfsymbols.tex - RELOC/doc/fonts/adfsymbols/manifest.txt catalogue-ctan /fonts/adfsymbols -catalogue-date 2014-04-03 23:09:57 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-symbol font-type1 catalogue-version 1.001 name adhocfilelist category Package revision 29349 -shortdesc '\listfiles' entries from the command line. +shortdesc '\listfiles' entries from the command line longdesc The package provides a Unix shell script to display a list of longdesc LaTeX \Provides...-command contexts on screen. Provision is longdesc made for controlling the searches that the package does. The longdesc package was developed on a Unix-like system, using (among other longdesc things) the gnu variant of the find command. depend adhocfilelist.ARCH -runfiles size=5 - texmf-dist/scripts/adhocfilelist/adhocfilelist.sh - texmf-dist/scripts/adhocfilelist/herelist.sh - texmf-dist/tex/support/adhocfilelist/adhocfilelist.RLS +containersize 3600 +containerchecksum 57436dae1489c0f614c4b002f83d34a711398a762ac532b44b1d91a51d068462aaedb5b034923629f7630f039988452eb833d1e98af389c788091517bbee8954 +doccontainersize 9876 +doccontainerchecksum 14bde143bf3ffa3f2b972f93544089e4c0314c7696e1d711719549b7e831278c66fee0676665fe6eaaac744689d613dce159e4eee2e3f9c24dbbe602794fc62e docfiles size=13 - texmf-dist/doc/support/adhocfilelist/README + texmf-dist/doc/support/adhocfilelist/README details="Readme" texmf-dist/doc/support/adhocfilelist/RELEASEs.txt texmf-dist/doc/support/adhocfilelist/SrcFILEs.txt - texmf-dist/doc/support/adhocfilelist/adhocfilelist.htm + texmf-dist/doc/support/adhocfilelist/adhocfilelist.htm details="Package documentation" texmf-dist/doc/support/adhocfilelist/demo/herelist.txt +srccontainersize 16408 +srccontainerchecksum 15e7f652408c5975ba47131109e0d18bcb1d270e0ea630a9a3ff385e499cf3607a366e708a5ec9559d7ccc2a5e0b2d3d0f5f615142978a918b0bd1bd0218a30d srcfiles size=18 texmf-dist/source/support/adhocfilelist/adhocfilelist.tex texmf-dist/source/support/adhocfilelist/fdatechk.tex texmf-dist/source/support/adhocfilelist/makehtml.tex texmf-dist/source/support/adhocfilelist/srcfiles.tex texmf-dist/source/support/adhocfilelist/texblog.fdf +runfiles size=5 + texmf-dist/scripts/adhocfilelist/adhocfilelist.sh + texmf-dist/scripts/adhocfilelist/herelist.sh + texmf-dist/tex/support/adhocfilelist/adhocfilelist.RLS +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html catalogue-ctan /support/adhocfilelist -catalogue-date 2015-02-23 19:46:41 +0100 +catalogue-date 2017-05-05 20:18:45 +0200 catalogue-license lppl +catalogue-topics doc-debug + +name adhocfilelist.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of adhocfilelist +containersize 348 +containerchecksum d06cb014cccd04a4143a47f8cff48d4071482e1d1a714612bc3e01943532d1879150274dc749bb11855804043d57465b62054b1c51a528cf15dcc07752d343ec +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/adhocfilelist + +name adhocfilelist.amd64-freebsd +category Package +revision 28038 +shortdesc amd64-freebsd files of adhocfilelist +containersize 348 +containerchecksum 88c1c5c6ea6dfec7a4865e5ae5962d74e216f4183d9b411f38e081eb9ffea01b6405668b5e17be7f4fc882a7dd8a12dd2c6c9770aaf451ececb0bf7e397af61f +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/adhocfilelist + +name adhocfilelist.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of adhocfilelist +containersize 344 +containerchecksum 0482cd18a5754599218847de0e6f0e088c3da9151bc597a98b011bb3447c2fdfc8454ae40e800d9caf1ba633d26cf8170fff16cdb5b122abdce2207d53cf7ed4 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/adhocfilelist + +name adhocfilelist.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of adhocfilelist +containersize 344 +containerchecksum dc904c869a6eb42ff9ba92faf1d98ee29e8e6629629a2cc35b8b93d281fff8c2984b403f28d02ae8873b732781b8f328e540690dbb356b896f6e946fc1ebd7eb +binfiles arch=armhf-linux size=1 + bin/armhf-linux/adhocfilelist + +name adhocfilelist.i386-cygwin +category Package +revision 28038 +shortdesc i386-cygwin files of adhocfilelist +containersize 340 +containerchecksum a327fe4a088d8c2edeef9d5aa36dc012f03bbeb6c0ca730de22a37a7cc5eabb952071f769a935fe4612897ac0e6f2d297b3f5a7c0557d5e9cc9c1ab76d272083 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/adhocfilelist + +name adhocfilelist.i386-freebsd +category Package +revision 28038 +shortdesc i386-freebsd files of adhocfilelist +containersize 344 +containerchecksum 6ed53a02fbccd19e1636f6dba32d01aaccbe72125c4c498caf7b0d857bcec1e778344d4641bc03b5fe4c2b6d7ffc6a78aac443d4c3d889983ea404522f78a012 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/adhocfilelist name adhocfilelist.i386-linux category Package revision 28038 shortdesc i386-linux files of adhocfilelist +containersize 344 +containerchecksum 9327b056d58fc8ecbc5abcfa00c95c2d51569469735229ee061e0b2f17fae0c3a8038d50ba55fd2ac5183f88ff0df3a43e187faecac54ba6507047a2595bb138 binfiles arch=i386-linux size=1 bin/i386-linux/adhocfilelist +name adhocfilelist.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of adhocfilelist +containersize 344 +containerchecksum c2fc828f5b982492edf4c272daffbdfc11ec1dc54f5f771373a5d0f5457b08757492e3f266c82a7933a9af21725004d362274fec914b5e96ec060c9c354e2bb8 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/adhocfilelist + +name adhocfilelist.i386-solaris +category Package +revision 28038 +shortdesc i386-solaris files of adhocfilelist +containersize 344 +containerchecksum c1e3de74be30a676f58807890627a1eea755f62264b6395e9d640252404cb51503f88e9413587af169d283c6c95bdda2e8852ca8c4379c754fc7a78a12c266fc +binfiles arch=i386-solaris size=1 + bin/i386-solaris/adhocfilelist + +name adhocfilelist.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of adhocfilelist +containersize 344 +containerchecksum 0c5624e9a806caeae188d91673693941c6f7ad5665576498cb1de82ed0ec7b905aefb1816f74fefff3b402624d3965c310ce168e4384baa74c5b4f8bced66685 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/adhocfilelist + +name adhocfilelist.x86_64-darwin +category Package +revision 28038 +shortdesc x86_64-darwin files of adhocfilelist +containersize 344 +containerchecksum 3d3f16fe71ecc3026fcb7051f488a1750ea78e543a4b6cc40a49f54ea4a6b3cb4193013fc9f66efaabb3b375f4649bd7deb3c83f1dd6027881d93cf42d93a903 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/adhocfilelist + +name adhocfilelist.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of adhocfilelist +containersize 352 +containerchecksum a6ab30dcf1eb816473240d88c7f12df24d719bd63f461a119d9de8f1140413c61064b30f9eb8d8a4e5542273c6011d5e69ad5b6d308f292e3417b9ecf20e67b0 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/adhocfilelist + +name adhocfilelist.x86_64-linux +category Package +revision 28038 +shortdesc x86_64-linux files of adhocfilelist +containersize 344 +containerchecksum fb87c94cd5ecbd61469d7f9948e21f96c84065b37fed326211a056669aef9e7ac2fecbb3ad93bee763491f51479e9cf0c0a172fae88b7d11b3483815595e421c +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/adhocfilelist + +name adhocfilelist.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of adhocfilelist +containersize 348 +containerchecksum 24927ef0253acbd78bf0f254821d543d71fa6814b0b7357c35fc02337dba71e0055e332602364b2c07e2bfd05b6970c8eb8caa4077382992e2591f927ea23e18 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/adhocfilelist + +name adhocfilelist.x86_64-solaris +category Package +revision 28038 +shortdesc x86_64-solaris files of adhocfilelist +containersize 344 +containerchecksum d4f1d8947658e0a10806125b37fc59bb8e673a16eda7b4825a685da85c6e611765f6df230f01e14b39cec5307a3fb3876caf3d6687b234dbc6957ffcd43df091 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/adhocfilelist + +name adigraph +category Package +revision 49862 +shortdesc Augmenting directed graphs +relocated 1 +longdesc This LaTeX package provides the means to easily draw augmenting +longdesc oriented graphs, as well as cuts on them, to demonstrate steps +longdesc of algorithms for solving max-flow min-cut problems. This +longdesc package requires the other LaTeX packages fp, xparse, xstring, +longdesc and TikZ (in particular the TikZ calc library). +containersize 5644 +containerchecksum 6a4684925e542a6ab0e3b97280059dc47fc892efdb99858370dca9dff91074d98030a93f964a5172bfa95a6dbf41f7a639977b0559332178ab8e4ca9dcb20e10 +doccontainersize 482896 +doccontainerchecksum 763f94d22e939c255cb0b920183403d7c753dd4d77483b79f82f4a302375bee4ea42357091866ddc392b554c6dfb707c624fabfc3f92fb6ae07853e3ddbc8594 +docfiles size=156 + RELOC/doc/latex/adigraph/LICENSE + RELOC/doc/latex/adigraph/README.md details="Readme" + RELOC/doc/latex/adigraph/adigraph-large.png + RELOC/doc/latex/adigraph/adigraph_documentation.pdf details="Documentation" + RELOC/doc/latex/adigraph/adigraph_documentation.tex + RELOC/doc/latex/adigraph/adigraph_working_test.pdf + RELOC/doc/latex/adigraph/adigraph_working_test.tex + RELOC/doc/latex/adigraph/img_examples/example_0.jpg + RELOC/doc/latex/adigraph/img_examples/example_1.jpg + RELOC/doc/latex/adigraph/img_examples/example_2.jpg + RELOC/doc/latex/adigraph/img_examples/example_3.jpg + RELOC/doc/latex/adigraph/img_examples/pyadigraph.png +runfiles size=6 + RELOC/tex/latex/adigraph/adigraph.sty +catalogue-contact-bugs https://github.com/LucaCappelletti94/adigraph/issues +catalogue-contact-repository https://github.com/LucaCappelletti94/adigraph +catalogue-ctan /graphics/pgf/contrib/adigraph +catalogue-date 2019-01-29 19:31:25 +0100 +catalogue-license mit +catalogue-topics pgf-tikz diagram +catalogue-version 1.7.1 + name adjmulticol category Package revision 28936 -shortdesc Adjusting margins for multicolumn and single column output. +shortdesc Adjusting margins for multicolumn and single column output relocated 1 longdesc The package adds, to the multicol package, the option to change longdesc the margins for multicolumn and unicolumn layout. The package longdesc understands the difference between the even and odd margins for longdesc two side printing. -runfiles size=2 - RELOC/tex/latex/adjmulticol/adjmulticol.sty +containersize 2964 +containerchecksum 1134de8dc37c135e944c223946ca249106d12a6af8c653ef39c0418893ba5d52f6ac4a3df6fd521638f606106830e0ce31aa2ce284617ac11226950fefbd94af +doccontainersize 304744 +doccontainerchecksum 299f6cfadae2e1c51021d849c9d2c10132007f4e4d0b2d0550c60a58f12781ca90ebed6052e9f84cc22bbdcd7b955018769264fe016800706ee7548c4f8a1e61 docfiles size=79 RELOC/doc/latex/adjmulticol/Makefile - RELOC/doc/latex/adjmulticol/README + RELOC/doc/latex/adjmulticol/README details="Readme" RELOC/doc/latex/adjmulticol/adjmulticol.bib - RELOC/doc/latex/adjmulticol/adjmulticol.pdf + RELOC/doc/latex/adjmulticol/adjmulticol.pdf details="Package documentation" RELOC/doc/latex/adjmulticol/sample.pdf RELOC/doc/latex/adjmulticol/sample.tex +srccontainersize 6768 +srccontainerchecksum 0b766677e3a95d7878f990c152952a3ad0c1aead2d4248a75070e93e93ec4e81524e565425404ac0579fd7451a562cea5867ef7d7acf58a36046212f7d900556 srcfiles size=6 RELOC/source/latex/adjmulticol/adjmulticol.dtx RELOC/source/latex/adjmulticol/adjmulticol.ins +runfiles size=2 + RELOC/tex/latex/adjmulticol/adjmulticol.sty catalogue-ctan /macros/latex/contrib/adjmulticol -catalogue-date 2014-04-20 00:59:58 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics multicol layout catalogue-version 1.1 name adjustbox category Package -revision 26555 -shortdesc Graphics package-alike macros for "general" boxes. +revision 49596 +shortdesc Graphics package-alike macros for "general" boxes relocated 1 longdesc The package provides several macros to adjust boxed content. longdesc One purpose is to supplement the standard graphics package, @@ -943,7 +8035,23 @@ longdesc content as a box and not as a macro argument. This allows for longdesc all forms of content including special material like verbatim longdesc content. A special feature of collectbox is used to provide longdesc matching environments with the identical names as the macros. -runfiles size=17 +containersize 13480 +containerchecksum 19ee76701aa1c060d5163a06263cb5b6b58d74d4bba1b7e77813c5a3b683eef35249b6569fadd1c52c0cf82465c4e2acab7091dc1b396c1e938ddd6b0a1d3bb3 +doccontainersize 725652 +doccontainerchecksum 33febe9f49a7c78950258d1955b4518a4ff15b96f6a866cc8f59ba83bf66a8d560a4d00430da494013aa37a72494280b4d165d2104d81bcfda237350855e1f59 +docfiles size=185 + RELOC/doc/latex/adjustbox/README details="Readme" + RELOC/doc/latex/adjustbox/adjcalc.pdf + RELOC/doc/latex/adjustbox/adjustbox.pdf details="Package documentation" + RELOC/doc/latex/adjustbox/trimclip.pdf +srccontainersize 48972 +srccontainerchecksum f473a082b7bd5104a6a11454ffaefadc4df5d245d9395cb51d6922884c653ea73c065677712ba61a6baaef776783627a6bfe15cbdfa44b4ccaa7f3294d444f80 +srcfiles size=78 + RELOC/source/latex/adjustbox/adjcalc.dtx + RELOC/source/latex/adjustbox/adjustbox.dtx + RELOC/source/latex/adjustbox/adjustbox.ins + RELOC/source/latex/adjustbox/trimclip.dtx +runfiles size=24 RELOC/tex/latex/adjustbox/adjcalc.sty RELOC/tex/latex/adjustbox/adjustbox.sty RELOC/tex/latex/adjustbox/tc-dvips.def @@ -951,259 +8059,284 @@ runfiles size=17 RELOC/tex/latex/adjustbox/tc-pgf.def RELOC/tex/latex/adjustbox/tc-xetex.def RELOC/tex/latex/adjustbox/trimclip.sty -docfiles size=189 - RELOC/doc/latex/adjustbox/README - RELOC/doc/latex/adjustbox/adjcalc.pdf - RELOC/doc/latex/adjustbox/adjustbox.pdf - RELOC/doc/latex/adjustbox/trimclip.pdf -srcfiles size=59 - RELOC/source/latex/adjustbox/adjcalc.dtx - RELOC/source/latex/adjustbox/adjustbox.dtx - RELOC/source/latex/adjustbox/adjustbox.ins - RELOC/source/latex/adjustbox/trimclip.dtx +catalogue-also gincltex collectbox realboxes +catalogue-contact-bugs https://bitbucket.org/martin_scharrer/adjustbox/issues +catalogue-contact-home https://bitbucket.org/martin_scharrer/adjustbox +catalogue-contact-repository https://bitbucket.org/martin_scharrer/adjustbox/src catalogue-ctan /macros/latex/contrib/adjustbox -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2019-01-04 14:16:03 +0100 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics typesetting box-manip +catalogue-version 1.2 name adobemapping category Package -revision 28079 +revision 50714 shortdesc Adobe cmap and pdfmapping files relocated 1 longdesc The package comprises the collection of CMap and PDF mapping -longdesc files now made available for distribution by Adobe systems -longdesc incorporated. -runfiles size=4520 - RELOC/fonts/cmap/adobemapping/LICENSE - RELOC/fonts/cmap/adobemapping/MappingOther/90ms-RKSJ-UCS2 - RELOC/fonts/cmap/adobemapping/MappingOther/90pv-RKSJ-UCS2 - RELOC/fonts/cmap/adobemapping/MappingOther/90pv-RKSJ-UCS2C - RELOC/fonts/cmap/adobemapping/MappingOther/Adobe-CNS1-B5pc - RELOC/fonts/cmap/adobemapping/MappingOther/Adobe-CNS1-ETen-B5 - RELOC/fonts/cmap/adobemapping/MappingOther/Adobe-CNS1-H-CID - RELOC/fonts/cmap/adobemapping/MappingOther/Adobe-CNS1-H-Host - RELOC/fonts/cmap/adobemapping/MappingOther/Adobe-CNS1-H-Mac - RELOC/fonts/cmap/adobemapping/MappingOther/Adobe-GB1-GBK-EUC - RELOC/fonts/cmap/adobemapping/MappingOther/Adobe-GB1-GBpc-EUC - RELOC/fonts/cmap/adobemapping/MappingOther/Adobe-GB1-H-CID - RELOC/fonts/cmap/adobemapping/MappingOther/Adobe-GB1-H-Host - RELOC/fonts/cmap/adobemapping/MappingOther/Adobe-GB1-H-Mac - RELOC/fonts/cmap/adobemapping/MappingOther/Adobe-Japan1-90ms-RKSJ - RELOC/fonts/cmap/adobemapping/MappingOther/Adobe-Japan1-90pv-RKSJ - RELOC/fonts/cmap/adobemapping/MappingOther/Adobe-Japan1-H-CID - RELOC/fonts/cmap/adobemapping/MappingOther/Adobe-Japan1-H-Host - RELOC/fonts/cmap/adobemapping/MappingOther/Adobe-Japan1-H-Mac - RELOC/fonts/cmap/adobemapping/MappingOther/Adobe-Japan1-PS-H - RELOC/fonts/cmap/adobemapping/MappingOther/Adobe-Japan1-PS-V - RELOC/fonts/cmap/adobemapping/MappingOther/Adobe-Korea1-H-CID - RELOC/fonts/cmap/adobemapping/MappingOther/Adobe-Korea1-H-Host - RELOC/fonts/cmap/adobemapping/MappingOther/Adobe-Korea1-H-Mac - RELOC/fonts/cmap/adobemapping/MappingOther/Adobe-Korea1-KSCms-UHC - RELOC/fonts/cmap/adobemapping/MappingOther/Adobe-Korea1-KSCpc-EUC - RELOC/fonts/cmap/adobemapping/MappingOther/B5pc-UCS2 - RELOC/fonts/cmap/adobemapping/MappingOther/B5pc-UCS2C - RELOC/fonts/cmap/adobemapping/MappingOther/ETen-B5-UCS2 - RELOC/fonts/cmap/adobemapping/MappingOther/GBK-EUC-UCS2 - RELOC/fonts/cmap/adobemapping/MappingOther/GBpc-EUC-UCS2 - RELOC/fonts/cmap/adobemapping/MappingOther/GBpc-EUC-UCS2C - RELOC/fonts/cmap/adobemapping/MappingOther/KSCms-UHC-UCS2 - RELOC/fonts/cmap/adobemapping/MappingOther/KSCpc-EUC-UCS2 - RELOC/fonts/cmap/adobemapping/MappingOther/KSCpc-EUC-UCS2C - RELOC/fonts/cmap/adobemapping/MappingOther/UCS2-90ms-RKSJ - RELOC/fonts/cmap/adobemapping/MappingOther/UCS2-90pv-RKSJ - RELOC/fonts/cmap/adobemapping/MappingOther/UCS2-B5pc - RELOC/fonts/cmap/adobemapping/MappingOther/UCS2-ETen-B5 - RELOC/fonts/cmap/adobemapping/MappingOther/UCS2-GBK-EUC - RELOC/fonts/cmap/adobemapping/MappingOther/UCS2-GBpc-EUC - RELOC/fonts/cmap/adobemapping/MappingOther/UCS2-KSCms-UHC - RELOC/fonts/cmap/adobemapping/MappingOther/UCS2-KSCpc-EUC +longdesc files made available for distribution by Adobe. +containersize 2180244 +containerchecksum 0406c86546b3b7698b6129792610808de1e4125b1d1ede359978e0239781382de39505041c563aee90de6440eee81b19084dd1ca8fc156064edf1405fbddb809 +runfiles size=5245 RELOC/fonts/cmap/adobemapping/README - RELOC/fonts/cmap/adobemapping/ToUnicode/Adobe-CNS1-UCS2 - RELOC/fonts/cmap/adobemapping/ToUnicode/Adobe-GB1-UCS2 - RELOC/fonts/cmap/adobemapping/ToUnicode/Adobe-Japan1-UCS2 - RELOC/fonts/cmap/adobemapping/ToUnicode/Adobe-Korea1-UCS2 - RELOC/fonts/cmap/adobemapping/ac16/CMap/Adobe-CNS1-0 - RELOC/fonts/cmap/adobemapping/ac16/CMap/Adobe-CNS1-1 - RELOC/fonts/cmap/adobemapping/ac16/CMap/Adobe-CNS1-2 - RELOC/fonts/cmap/adobemapping/ac16/CMap/Adobe-CNS1-3 - RELOC/fonts/cmap/adobemapping/ac16/CMap/Adobe-CNS1-4 - RELOC/fonts/cmap/adobemapping/ac16/CMap/Adobe-CNS1-5 - RELOC/fonts/cmap/adobemapping/ac16/CMap/Adobe-CNS1-6 - RELOC/fonts/cmap/adobemapping/ac16/CMap/B5-H - RELOC/fonts/cmap/adobemapping/ac16/CMap/B5-V - RELOC/fonts/cmap/adobemapping/ac16/CMap/B5pc-H - RELOC/fonts/cmap/adobemapping/ac16/CMap/B5pc-V - RELOC/fonts/cmap/adobemapping/ac16/CMap/CNS-EUC-H - RELOC/fonts/cmap/adobemapping/ac16/CMap/CNS-EUC-V - RELOC/fonts/cmap/adobemapping/ac16/CMap/CNS1-H - RELOC/fonts/cmap/adobemapping/ac16/CMap/CNS1-V - RELOC/fonts/cmap/adobemapping/ac16/CMap/CNS2-H - RELOC/fonts/cmap/adobemapping/ac16/CMap/CNS2-V - RELOC/fonts/cmap/adobemapping/ac16/CMap/ETHK-B5-H - RELOC/fonts/cmap/adobemapping/ac16/CMap/ETHK-B5-V - RELOC/fonts/cmap/adobemapping/ac16/CMap/ETen-B5-H - RELOC/fonts/cmap/adobemapping/ac16/CMap/ETen-B5-V - RELOC/fonts/cmap/adobemapping/ac16/CMap/ETenms-B5-H - RELOC/fonts/cmap/adobemapping/ac16/CMap/ETenms-B5-V - RELOC/fonts/cmap/adobemapping/ac16/CMap/HKdla-B5-H - RELOC/fonts/cmap/adobemapping/ac16/CMap/HKdla-B5-V - RELOC/fonts/cmap/adobemapping/ac16/CMap/HKdlb-B5-H - RELOC/fonts/cmap/adobemapping/ac16/CMap/HKdlb-B5-V - RELOC/fonts/cmap/adobemapping/ac16/CMap/HKgccs-B5-H - RELOC/fonts/cmap/adobemapping/ac16/CMap/HKgccs-B5-V - RELOC/fonts/cmap/adobemapping/ac16/CMap/HKm314-B5-H - RELOC/fonts/cmap/adobemapping/ac16/CMap/HKm314-B5-V - RELOC/fonts/cmap/adobemapping/ac16/CMap/HKm471-B5-H - RELOC/fonts/cmap/adobemapping/ac16/CMap/HKm471-B5-V - RELOC/fonts/cmap/adobemapping/ac16/CMap/HKscs-B5-H - RELOC/fonts/cmap/adobemapping/ac16/CMap/HKscs-B5-V - RELOC/fonts/cmap/adobemapping/ac16/CMap/UniCNS-UCS2-H - RELOC/fonts/cmap/adobemapping/ac16/CMap/UniCNS-UCS2-V - RELOC/fonts/cmap/adobemapping/ac16/CMap/UniCNS-UTF16-H - RELOC/fonts/cmap/adobemapping/ac16/CMap/UniCNS-UTF16-V - RELOC/fonts/cmap/adobemapping/ac16/CMap/UniCNS-UTF32-H - RELOC/fonts/cmap/adobemapping/ac16/CMap/UniCNS-UTF32-V - RELOC/fonts/cmap/adobemapping/ac16/CMap/UniCNS-UTF8-H - RELOC/fonts/cmap/adobemapping/ac16/CMap/UniCNS-UTF8-V - RELOC/fonts/cmap/adobemapping/ac16/cid2code.txt - RELOC/fonts/cmap/adobemapping/ag15/CMap/Adobe-GB1-0 - RELOC/fonts/cmap/adobemapping/ag15/CMap/Adobe-GB1-1 - RELOC/fonts/cmap/adobemapping/ag15/CMap/Adobe-GB1-2 - RELOC/fonts/cmap/adobemapping/ag15/CMap/Adobe-GB1-3 - RELOC/fonts/cmap/adobemapping/ag15/CMap/Adobe-GB1-4 - RELOC/fonts/cmap/adobemapping/ag15/CMap/Adobe-GB1-5 - RELOC/fonts/cmap/adobemapping/ag15/CMap/GB-EUC-H - RELOC/fonts/cmap/adobemapping/ag15/CMap/GB-EUC-V - RELOC/fonts/cmap/adobemapping/ag15/CMap/GB-H - RELOC/fonts/cmap/adobemapping/ag15/CMap/GB-V - RELOC/fonts/cmap/adobemapping/ag15/CMap/GBK-EUC-H - RELOC/fonts/cmap/adobemapping/ag15/CMap/GBK-EUC-V - RELOC/fonts/cmap/adobemapping/ag15/CMap/GBK2K-H - RELOC/fonts/cmap/adobemapping/ag15/CMap/GBK2K-V - RELOC/fonts/cmap/adobemapping/ag15/CMap/GBKp-EUC-H - RELOC/fonts/cmap/adobemapping/ag15/CMap/GBKp-EUC-V - RELOC/fonts/cmap/adobemapping/ag15/CMap/GBT-EUC-H - RELOC/fonts/cmap/adobemapping/ag15/CMap/GBT-EUC-V - RELOC/fonts/cmap/adobemapping/ag15/CMap/GBT-H - RELOC/fonts/cmap/adobemapping/ag15/CMap/GBT-V - RELOC/fonts/cmap/adobemapping/ag15/CMap/GBTpc-EUC-H - RELOC/fonts/cmap/adobemapping/ag15/CMap/GBTpc-EUC-V - RELOC/fonts/cmap/adobemapping/ag15/CMap/GBpc-EUC-H - RELOC/fonts/cmap/adobemapping/ag15/CMap/GBpc-EUC-V - RELOC/fonts/cmap/adobemapping/ag15/CMap/UniGB-UCS2-H - RELOC/fonts/cmap/adobemapping/ag15/CMap/UniGB-UCS2-V - RELOC/fonts/cmap/adobemapping/ag15/CMap/UniGB-UTF16-H - RELOC/fonts/cmap/adobemapping/ag15/CMap/UniGB-UTF16-V - RELOC/fonts/cmap/adobemapping/ag15/CMap/UniGB-UTF32-H - RELOC/fonts/cmap/adobemapping/ag15/CMap/UniGB-UTF32-V - RELOC/fonts/cmap/adobemapping/ag15/CMap/UniGB-UTF8-H - RELOC/fonts/cmap/adobemapping/ag15/CMap/UniGB-UTF8-V - RELOC/fonts/cmap/adobemapping/ag15/cid2code.txt - RELOC/fonts/cmap/adobemapping/ai0/CMap/Identity-H - RELOC/fonts/cmap/adobemapping/ai0/CMap/Identity-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/78-EUC-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/78-EUC-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/78-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/78-RKSJ-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/78-RKSJ-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/78-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/78ms-RKSJ-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/78ms-RKSJ-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/83pv-RKSJ-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/90ms-RKSJ-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/90ms-RKSJ-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/90msp-RKSJ-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/90msp-RKSJ-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/90pv-RKSJ-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/90pv-RKSJ-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/Add-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/Add-RKSJ-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/Add-RKSJ-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/Add-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/Adobe-Japan1-0 - RELOC/fonts/cmap/adobemapping/aj16/CMap/Adobe-Japan1-1 - RELOC/fonts/cmap/adobemapping/aj16/CMap/Adobe-Japan1-2 - RELOC/fonts/cmap/adobemapping/aj16/CMap/Adobe-Japan1-3 - RELOC/fonts/cmap/adobemapping/aj16/CMap/Adobe-Japan1-4 - RELOC/fonts/cmap/adobemapping/aj16/CMap/Adobe-Japan1-5 - RELOC/fonts/cmap/adobemapping/aj16/CMap/Adobe-Japan1-6 - RELOC/fonts/cmap/adobemapping/aj16/CMap/EUC-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/EUC-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/Ext-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/Ext-RKSJ-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/Ext-RKSJ-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/Ext-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/H - RELOC/fonts/cmap/adobemapping/aj16/CMap/Hankaku - RELOC/fonts/cmap/adobemapping/aj16/CMap/Hiragana - RELOC/fonts/cmap/adobemapping/aj16/CMap/Katakana - RELOC/fonts/cmap/adobemapping/aj16/CMap/NWP-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/NWP-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/RKSJ-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/RKSJ-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/Roman - RELOC/fonts/cmap/adobemapping/aj16/CMap/UniJIS-UCS2-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/UniJIS-UCS2-HW-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/UniJIS-UCS2-HW-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/UniJIS-UCS2-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/UniJIS-UTF16-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/UniJIS-UTF16-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/UniJIS-UTF32-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/UniJIS-UTF32-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/UniJIS-UTF8-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/UniJIS-UTF8-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/UniJIS2004-UTF16-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/UniJIS2004-UTF16-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/UniJIS2004-UTF32-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/UniJIS2004-UTF32-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/UniJIS2004-UTF8-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/UniJIS2004-UTF8-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/UniJISPro-UCS2-HW-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/UniJISPro-UCS2-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/UniJISPro-UTF8-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/UniJISX0213-UTF32-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/UniJISX0213-UTF32-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/UniJISX02132004-UTF32-H - RELOC/fonts/cmap/adobemapping/aj16/CMap/UniJISX02132004-UTF32-V - RELOC/fonts/cmap/adobemapping/aj16/CMap/V - RELOC/fonts/cmap/adobemapping/aj16/CMap/WP-Symbol - RELOC/fonts/cmap/adobemapping/aj16/cid2code.txt - RELOC/fonts/cmap/adobemapping/ak12/CMap/Adobe-Korea1-0 - RELOC/fonts/cmap/adobemapping/ak12/CMap/Adobe-Korea1-1 - RELOC/fonts/cmap/adobemapping/ak12/CMap/Adobe-Korea1-2 - RELOC/fonts/cmap/adobemapping/ak12/CMap/KSC-EUC-H - RELOC/fonts/cmap/adobemapping/ak12/CMap/KSC-EUC-V - RELOC/fonts/cmap/adobemapping/ak12/CMap/KSC-H - RELOC/fonts/cmap/adobemapping/ak12/CMap/KSC-Johab-H - RELOC/fonts/cmap/adobemapping/ak12/CMap/KSC-Johab-V - RELOC/fonts/cmap/adobemapping/ak12/CMap/KSC-V - RELOC/fonts/cmap/adobemapping/ak12/CMap/KSCms-UHC-H - RELOC/fonts/cmap/adobemapping/ak12/CMap/KSCms-UHC-HW-H - RELOC/fonts/cmap/adobemapping/ak12/CMap/KSCms-UHC-HW-V - RELOC/fonts/cmap/adobemapping/ak12/CMap/KSCms-UHC-V - RELOC/fonts/cmap/adobemapping/ak12/CMap/KSCpc-EUC-H - RELOC/fonts/cmap/adobemapping/ak12/CMap/KSCpc-EUC-V - RELOC/fonts/cmap/adobemapping/ak12/CMap/UniKS-UCS2-H - RELOC/fonts/cmap/adobemapping/ak12/CMap/UniKS-UCS2-V - RELOC/fonts/cmap/adobemapping/ak12/CMap/UniKS-UTF16-H - RELOC/fonts/cmap/adobemapping/ak12/CMap/UniKS-UTF16-V - RELOC/fonts/cmap/adobemapping/ak12/CMap/UniKS-UTF32-H - RELOC/fonts/cmap/adobemapping/ak12/CMap/UniKS-UTF32-V - RELOC/fonts/cmap/adobemapping/ak12/CMap/UniKS-UTF8-H - RELOC/fonts/cmap/adobemapping/ak12/CMap/UniKS-UTF8-V - RELOC/fonts/cmap/adobemapping/ak12/cid2code.txt - RELOC/fonts/cmap/adobemapping/cmap-current-versions.txt - RELOC/fonts/cmap/adobemapping/cmap-readme.txt - RELOC/fonts/cmap/adobemapping/mapping-readme.txt + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/Adobe-CNS1-0 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/Adobe-CNS1-1 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/Adobe-CNS1-2 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/Adobe-CNS1-3 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/Adobe-CNS1-4 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/Adobe-CNS1-5 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/Adobe-CNS1-6 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/Adobe-CNS1-7 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/B5-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/B5-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/B5pc-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/B5pc-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/CNS-EUC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/CNS-EUC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/CNS1-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/CNS1-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/CNS2-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/CNS2-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/ETHK-B5-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/ETHK-B5-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/ETen-B5-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/ETen-B5-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/ETenms-B5-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/ETenms-B5-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/HKdla-B5-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/HKdla-B5-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/HKdlb-B5-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/HKdlb-B5-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/HKgccs-B5-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/HKgccs-B5-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/HKm314-B5-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/HKm314-B5-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/HKm471-B5-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/HKm471-B5-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/HKscs-B5-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/HKscs-B5-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/UniCNS-UCS2-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/UniCNS-UCS2-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/UniCNS-UTF16-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/UniCNS-UTF16-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/UniCNS-UTF32-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/UniCNS-UTF32-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/UniCNS-UTF8-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/UniCNS-UTF8-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/cid2code.txt + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/Adobe-GB1-0 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/Adobe-GB1-1 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/Adobe-GB1-2 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/Adobe-GB1-3 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/Adobe-GB1-4 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/Adobe-GB1-5 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GB-EUC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GB-EUC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GB-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GB-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBK-EUC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBK-EUC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBK2K-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBK2K-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBKp-EUC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBKp-EUC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBT-EUC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBT-EUC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBT-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBT-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBTpc-EUC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBTpc-EUC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBpc-EUC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/GBpc-EUC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/UniGB-UCS2-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/UniGB-UCS2-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/UniGB-UTF16-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/UniGB-UTF16-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/UniGB-UTF32-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/UniGB-UTF32-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/UniGB-UTF8-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/CMap/UniGB-UTF8-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-GB1-5/cid2code.txt + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Identity-0/CMap/Identity-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Identity-0/CMap/Identity-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/78-EUC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/78-EUC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/78-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/78-RKSJ-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/78-RKSJ-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/78-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/78ms-RKSJ-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/78ms-RKSJ-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/83pv-RKSJ-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/90ms-RKSJ-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/90ms-RKSJ-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/90msp-RKSJ-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/90msp-RKSJ-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/90pv-RKSJ-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/90pv-RKSJ-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Add-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Add-RKSJ-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Add-RKSJ-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Add-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Adobe-Japan1-0 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Adobe-Japan1-1 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Adobe-Japan1-2 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Adobe-Japan1-3 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Adobe-Japan1-4 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Adobe-Japan1-5 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Adobe-Japan1-6 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Adobe-Japan1-7 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/EUC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/EUC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Ext-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Ext-RKSJ-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Ext-RKSJ-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Ext-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Hankaku + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Hiragana + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Katakana + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/NWP-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/NWP-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/RKSJ-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/RKSJ-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/Roman + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS-UCS2-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS-UCS2-HW-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS-UCS2-HW-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS-UCS2-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS-UTF16-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS-UTF16-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS-UTF32-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS-UTF32-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS-UTF8-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS-UTF8-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS2004-UTF16-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS2004-UTF16-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS2004-UTF32-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS2004-UTF32-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS2004-UTF8-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJIS2004-UTF8-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJISPro-UCS2-HW-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJISPro-UCS2-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJISPro-UTF8-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJISX0213-UTF32-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJISX0213-UTF32-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJISX02132004-UTF32-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/UniJISX02132004-UTF32-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/CMap/WP-Symbol + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/cid2code.txt + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/jisx0208-jp04.txt + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/jisx0208-jp90.txt + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/jisx0212-jp04.txt + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/jisx0212-jp90.txt + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/jisx0213-jp04.txt + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Japan1-7/jisx0213-jp90.txt + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/Adobe-KR-0 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/Adobe-KR-1 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/Adobe-KR-2 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/Adobe-KR-3 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/Adobe-KR-4 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/Adobe-KR-5 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/Adobe-KR-6 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/Adobe-KR-7 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/Adobe-KR-8 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/Adobe-KR-9 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/UniAKR-UTF16-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/UniAKR-UTF32-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/CMap/UniAKR-UTF8-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-KR-9/cid2code.txt + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/Adobe-Korea1-0 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/Adobe-Korea1-1 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/Adobe-Korea1-2 + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/KSC-EUC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/KSC-EUC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/KSC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/KSC-Johab-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/KSC-Johab-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/KSC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/KSCms-UHC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/KSCms-UHC-HW-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/KSCms-UHC-HW-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/KSCms-UHC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/KSCpc-EUC-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/KSCpc-EUC-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/UniKS-UCS2-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/UniKS-UCS2-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/UniKS-UTF16-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/UniKS-UTF16-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/UniKS-UTF32-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/UniKS-UTF32-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/UniKS-UTF8-H + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/CMap/UniKS-UTF8-V + RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-Korea1-2/cid2code.txt + RELOC/fonts/cmap/adobemapping/cmap-resources/LICENSE.txt + RELOC/fonts/cmap/adobemapping/cmap-resources/Makefile + RELOC/fonts/cmap/adobemapping/cmap-resources/README.md + RELOC/fonts/cmap/adobemapping/cmap-resources/VERSIONS.txt + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/LICENSE.txt + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/Makefile + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/README.md + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/90ms-RKSJ-UCS2 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/90pv-RKSJ-UCS2 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/90pv-RKSJ-UCS2C + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-CNS1-B5pc + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-CNS1-ETen-B5 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-CNS1-H-CID + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-CNS1-H-Host + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-CNS1-H-Mac + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-GB1-GBK-EUC + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-GB1-GBpc-EUC + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-GB1-H-CID + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-GB1-H-Host + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-GB1-H-Mac + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-Japan1-90ms-RKSJ + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-Japan1-90pv-RKSJ + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-Japan1-H-CID + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-Japan1-H-Host + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-Japan1-H-Mac + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-Japan1-PS-H + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-Japan1-PS-V + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-Korea1-H-CID + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-Korea1-H-Host + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-Korea1-H-Mac + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-Korea1-KSCms-UHC + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/Adobe-Korea1-KSCpc-EUC + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/B5pc-UCS2 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/B5pc-UCS2C + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/ETen-B5-UCS2 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/GBK-EUC-UCS2 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/GBpc-EUC-UCS2 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/GBpc-EUC-UCS2C + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/KSCms-UHC-UCS2 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/KSCpc-EUC-UCS2 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/KSCpc-EUC-UCS2C + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/UCS2-90ms-RKSJ + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/UCS2-90pv-RKSJ + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/UCS2-B5pc + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/UCS2-ETen-B5 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/UCS2-GBK-EUC + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/UCS2-GBpc-EUC + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/UCS2-KSCms-UHC + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2other/UCS2-KSCpc-EUC + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2unicode/Adobe-CNS1-UCS2 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2unicode/Adobe-GB1-UCS2 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2unicode/Adobe-Japan1-UCS2 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2unicode/Adobe-KR-UCS2 + RELOC/fonts/cmap/adobemapping/mapping-resources-pdf/pdf2unicode/Adobe-Korea1-UCS2 +catalogue-also cmap mmap +catalogue-contact-repository https://github.com/adobe-type-tools/ catalogue-ctan /support/adobemapping -catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-date 2019-04-02 18:01:44 +0200 catalogue-license bsd +catalogue-topics font-supp name adrconv category Package -revision 17683 -shortdesc BibTeX styles to implement an address database. +revision 46817 +shortdesc BibTeX styles to implement an address database relocated 1 longdesc The bundle provides a collection of BibTeX style files to turn longdesc an address database stored in the .bib format into files @@ -1211,145 +8344,100 @@ longdesc suitable for printing as address books or included into letter longdesc classes like akletter or scrletter2. The data may be sorted longdesc either by name or birthday and output provides files in various longdesc formats for address books or time planners. -runfiles size=6 - RELOC/bibtex/bst/adrconv/adrbirthday.bst - RELOC/bibtex/bst/adrconv/adrconv.bst - RELOC/bibtex/bst/adrconv/adrfax.bst - RELOC/tex/latex/adrconv/adrdir.cfg - RELOC/tex/latex/adrconv/adrplaner.cfg - RELOC/tex/latex/adrconv/adrsmall.cfg -docfiles size=123 +containersize 2812 +containerchecksum ec4300075ae2fbb0b29fa8126263d8852a405a84df8cdb6f484c989ebe948257ba3d1f3ddf9204ea7d6d50129c294a0130afabb053bc63022928ca748bb4ce14 +doccontainersize 690600 +doccontainerchecksum 93ec47833fee152b098477f838858a259f5842264d3a7e9a959d60fd35f46d680eba61c9f4b5efa08ab2878da4aec78d19cf83880e33aeabde9854aa88491c78 +docfiles size=185 RELOC/doc/latex/adrconv/2latex.vim + RELOC/doc/latex/adrconv/README details="Readme" + RELOC/doc/latex/adrconv/adrconv.pdf details="Implementation details" RELOC/doc/latex/adrconv/adrconv.tex RELOC/doc/latex/adrconv/adrconv_pages08.pages/Contents/PkgInfo RELOC/doc/latex/adrconv/adrconv_pages08.pages/QuickLook/Thumbnail.jpg RELOC/doc/latex/adrconv/adrconv_pages08.pages/index.xml.gz RELOC/doc/latex/adrconv/adrdir.tex RELOC/doc/latex/adrconv/adrfax.tex - RELOC/doc/latex/adrconv/adrguide.pdf + RELOC/doc/latex/adrconv/adrguide.pdf details="User guide" language="de" RELOC/doc/latex/adrconv/adrguide.tex RELOC/doc/latex/adrconv/adrmontage1.tex RELOC/doc/latex/adrconv/adrmontage2.tex RELOC/doc/latex/adrconv/birthday.tex RELOC/doc/latex/adrconv/example.bib +srccontainersize 8868 +srccontainerchecksum 25233e23bd1c6aec13609b5d17587747a5840e21637e3d11a478941f98f5f74a77eed31f806b51d07b79f8cc4ebb8c6b8fa419f72927045e3695ca4ada8af388 srcfiles size=8 RELOC/source/latex/adrconv/adrconv.dtx RELOC/source/latex/adrconv/adrconv.ins +runfiles size=6 + RELOC/bibtex/bst/adrconv/adrbirthday.bst + RELOC/bibtex/bst/adrconv/adrconv.bst + RELOC/bibtex/bst/adrconv/adrfax.bst + RELOC/tex/latex/adrconv/adrdir.cfg + RELOC/tex/latex/adrconv/adrplaner.cfg + RELOC/tex/latex/adrconv/adrsmall.cfg catalogue-ctan /macros/latex/contrib/adrconv -catalogue-date 2012-03-27 22:39:55 +0200 -catalogue-license lppl -catalogue-version 1.3 +catalogue-date 2018-03-04 13:14:32 +0100 +catalogue-license lppl1.3 +catalogue-topics bibtex-sty biblio +catalogue-version 1.4 + +name adtrees +category Package +revision 39438 +shortdesc Macros for drawing adpositional trees +relocated 1 +longdesc The adtrees package provides a package to write adpositional +longdesc trees, a formalism devoted to represent natural language +longdesc expressions. The package is composed by the files adtree.sty: +longdesc containing the LaTeX engine to adpositional trees +longdesc adtreedoc.pdf: the human readable documentation for the package +longdesc adtreedoc.tex: the source code for the documentation. +containersize 5696 +containerchecksum 4916236eb85cda36b9e073bd507973aadc8cb63b567f1434d9739c05ecd4e07e563bd18763f6f9a84e900966e2794b186bd7815e7dc2e88729d5f7f82a1d2632 +doccontainersize 316268 +doccontainerchecksum 72b7205e7c0cfd9bd4468b94b0d65a4aeab9d3fd696ee496877676ebb666d90b61f77700a75d91a453193bea602d196d54b8992f2ceb739290d4af8b82d88230 +docfiles size=87 + RELOC/doc/latex/adtrees/README details="Readme" + RELOC/doc/latex/adtrees/adtreesdoc.pdf details="Package documentation" + RELOC/doc/latex/adtrees/adtreesdoc.tex +runfiles size=7 + RELOC/tex/latex/adtrees/adtrees.sty +catalogue-ctan /macros/latex/contrib/adtrees +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics tree linguistic +catalogue-version 1.0 name advdate category Package revision 20538 -shortdesc Print a date relative to "today". +shortdesc Print a date relative to "today" relocated 1 longdesc Provides macros which can add a specified number of days to the longdesc current date (as specified in \today), to save, set and restore longdesc the 'current date' and to print it. Intended use is, for longdesc example, in invoices "payable within 14 days from today", etc. longdesc The package has only been tested with Czech dates. -runfiles size=2 - RELOC/tex/latex/advdate/advdate.sty +containersize 2228 +containerchecksum 80075aa6efb4125bdce79e9b2ec6951caf1a753c8915201767de230acdd1adc2eef31400574effadf6287be159236422840751bf5ea24cd3cab8a01e82a0185c +doccontainersize 146672 +doccontainerchecksum acfcbd6a40630da2cf9024cbf3ed378c1f7f8a16c8f8395b69c12f9693e903ba54b9b051c364c5cb4de957876bbd41f0b480c4f4b320e22f2c6df7b08502873a docfiles size=39 - RELOC/doc/latex/advdate/advdate.pdf + RELOC/doc/latex/advdate/advdate.pdf details="Package documentation" RELOC/doc/latex/advdate/advdate.tex RELOC/doc/latex/advdate/manifest.txt +runfiles size=2 + RELOC/tex/latex/advdate/advdate.sty catalogue-ctan /macros/latex/contrib/advdate -catalogue-date 2012-03-27 22:39:55 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 - -name aecc -category Package -revision 28574 -shortdesc Almost European Concrete Roman virtual fonts. -relocated 1 -longdesc The package provides a set of virtual fonts (built from the -longdesc standard Concrete fonts) providing a set of fonts that almost -longdesc cover the T1 encoding. The main characters missing, of those -longdesc specified in the T1 specification are eth, thorn, and the Sami -longdesc letter eng. Sometimes the PS (pound sterling) character is also -longdesc missing. For the typewriter fonts, the situation is worse. -runfiles size=32 - RELOC/fonts/tfm/public/aecc/aeccr10.tfm - RELOC/fonts/tfm/public/aecc/aeccr5.tfm - RELOC/fonts/tfm/public/aecc/aeccr6.tfm - RELOC/fonts/tfm/public/aecc/aeccr7.tfm - RELOC/fonts/tfm/public/aecc/aeccr8.tfm - RELOC/fonts/tfm/public/aecc/aeccr9.tfm - RELOC/fonts/tfm/public/aecc/aeccsc10.tfm - RELOC/fonts/tfm/public/aecc/aeccsl10.tfm - RELOC/fonts/tfm/public/aecc/aeccsl9.tfm - RELOC/fonts/tfm/public/aecc/aeccti10.tfm - RELOC/fonts/vf/public/aecc/aeccr10.vf - RELOC/fonts/vf/public/aecc/aeccr5.vf - RELOC/fonts/vf/public/aecc/aeccr6.vf - RELOC/fonts/vf/public/aecc/aeccr7.vf - RELOC/fonts/vf/public/aecc/aeccr8.vf - RELOC/fonts/vf/public/aecc/aeccr9.vf - RELOC/fonts/vf/public/aecc/aeccsc10.vf - RELOC/fonts/vf/public/aecc/aeccsl10.vf - RELOC/fonts/vf/public/aecc/aeccsl9.vf - RELOC/fonts/vf/public/aecc/aeccti10.vf - RELOC/tex/latex/aecc/aecc.sty - RELOC/tex/latex/aecc/t1aeccr.fd -docfiles size=56 - RELOC/doc/fonts/aecc/COPYING - RELOC/doc/fonts/aecc/MANIFEST - RELOC/doc/fonts/aecc/README - RELOC/doc/fonts/aecc/aeccfonts.tex - RELOC/doc/fonts/aecc/aefonts.mtx - RELOC/doc/fonts/aecc/aehax5.mtx - RELOC/doc/fonts/aecc/aehaxit.mtx - RELOC/doc/fonts/aecc/aehaxrm.mtx - RELOC/doc/fonts/aecc/aehaxsc.mtx - RELOC/doc/fonts/aecc/aehaxsl.mtx - RELOC/doc/fonts/aecc/aehaxss.mtx - RELOC/doc/fonts/aecc/aelatin.mtx - RELOC/doc/fonts/aecc/aelatint.mtx - RELOC/doc/fonts/aecc/aesample.tex - RELOC/doc/fonts/aecc/aet1.etx - RELOC/doc/fonts/aecc/bxittest.tex - RELOC/doc/fonts/aecc/clean - RELOC/doc/fonts/aecc/germtest.tex - RELOC/doc/fonts/aecc/go - RELOC/doc/fonts/aecc/install - RELOC/doc/fonts/aecc/makepl - RELOC/doc/fonts/aecc/ot1tt.etx - RELOC/doc/fonts/aecc/slitest.tex -catalogue-ctan /fonts/aecc -catalogue-date 2012-12-24 16:43:45 +0100 -catalogue-license lppl -catalogue-version 1.0 - -name aeguill -category Package -revision 15878 -shortdesc Add several kinds of guillemets to the ae fonts. -relocated 1 -longdesc The package enables the user to add guillemets from several -longdesc source (Polish cmr, Cyrillic cmr, lasy and ec) to the ae fonts. -longdesc This was useful when the ae fonts were used to produce PDF -longdesc files, since the additional guillemets exist in fonts available -longdesc in Adobe Type 1 format. -runfiles size=2 - RELOC/tex/latex/aeguill/aeguill.sty -docfiles size=15 - RELOC/doc/latex/aeguill/README - RELOC/doc/latex/aeguill/guil-test1.pdf - RELOC/doc/latex/aeguill/guil-test1.tex - RELOC/doc/latex/aeguill/guil-test2.pdf - RELOC/doc/latex/aeguill/guil-test2.tex - RELOC/doc/latex/aeguill/license.txt -catalogue-ctan /macros/latex/contrib/aeguill -catalogue-date 2014-04-03 23:09:57 +0200 -catalogue-license lppl +catalogue-topics date-time name ae category Package revision 15878 -shortdesc Virtual fonts for T1 encoded CMR-fonts. +shortdesc Virtual fonts for T1 encoded CMR-fonts relocated 1 longdesc A set of virtual fonts which emulates T1 coded fonts using the longdesc standard CM fonts. The package name, AE fonts, supposedly @@ -1359,6 +8447,37 @@ longdesc fonts instead of bitmapped EC fonts. Note that direct longdesc substitutes for the bitmapped EC fonts are now available, via longdesc the CM-super, Latin Modern and (in a restricted way) CM-LGC longdesc font sets. +containersize 57348 +containerchecksum 6b1c57d5bd3f0959e611659f979ed42b81e397a182d09b3482e98865196077334a9796777aa112ff367b97c232859d4f9637730dcd2654e6232c577d2f59c39a +doccontainersize 7732 +doccontainerchecksum 927521fb6b6a5787d0e94ad724cf19825b2cf2ce23333e60e13625a36390eaa4cbaa1bbe50dbc718efae97036d5d815860919f536601bb97224b489d20082953 +docfiles size=7 + RELOC/doc/fonts/ae/COPYING + RELOC/doc/fonts/ae/MANIFEST + RELOC/doc/fonts/ae/README details="Readme" +srccontainersize 19988 +srccontainerchecksum d82fc85014bb32147c9562482ac1d0ab1d1fbff8140441dafff032e24c3ee9e406c9872a93a66ef96a2f67a75f47c01e53565372a14d1bdece588f312c8f00fe +srcfiles size=50 + RELOC/source/fonts/ae/aefonts.mtx + RELOC/source/fonts/ae/aefonts.tex + RELOC/source/fonts/ae/aehax5.mtx + RELOC/source/fonts/ae/aehaxit.mtx + RELOC/source/fonts/ae/aehaxrm.mtx + RELOC/source/fonts/ae/aehaxsc.mtx + RELOC/source/fonts/ae/aehaxsl.mtx + RELOC/source/fonts/ae/aehaxss.mtx + RELOC/source/fonts/ae/aelatin.mtx + RELOC/source/fonts/ae/aelatint.mtx + RELOC/source/fonts/ae/aesample.tex + RELOC/source/fonts/ae/aet1.etx + RELOC/source/fonts/ae/bxittest.tex + RELOC/source/fonts/ae/clean + RELOC/source/fonts/ae/germtest.tex + RELOC/source/fonts/ae/go + RELOC/source/fonts/ae/install + RELOC/source/fonts/ae/makepl + RELOC/source/fonts/ae/ot1tt.etx + RELOC/source/fonts/ae/slitest.tex runfiles size=157 RELOC/fonts/tfm/public/ae/aeb10.tfm RELOC/fonts/tfm/public/ae/aebx10.tfm @@ -1474,40 +8593,122 @@ runfiles size=157 RELOC/tex/latex/ae/t1aett.fd RELOC/tex/latex/ae/t1laess.fd RELOC/tex/latex/ae/t1laett.fd -docfiles size=7 - RELOC/doc/fonts/ae/COPYING - RELOC/doc/fonts/ae/MANIFEST - RELOC/doc/fonts/ae/README -srcfiles size=50 - RELOC/source/fonts/ae/aefonts.mtx - RELOC/source/fonts/ae/aefonts.tex - RELOC/source/fonts/ae/aehax5.mtx - RELOC/source/fonts/ae/aehaxit.mtx - RELOC/source/fonts/ae/aehaxrm.mtx - RELOC/source/fonts/ae/aehaxsc.mtx - RELOC/source/fonts/ae/aehaxsl.mtx - RELOC/source/fonts/ae/aehaxss.mtx - RELOC/source/fonts/ae/aelatin.mtx - RELOC/source/fonts/ae/aelatint.mtx - RELOC/source/fonts/ae/aesample.tex - RELOC/source/fonts/ae/aet1.etx - RELOC/source/fonts/ae/bxittest.tex - RELOC/source/fonts/ae/clean - RELOC/source/fonts/ae/germtest.tex - RELOC/source/fonts/ae/go - RELOC/source/fonts/ae/install - RELOC/source/fonts/ae/makepl - RELOC/source/fonts/ae/ot1tt.etx - RELOC/source/fonts/ae/slitest.tex +catalogue-also zefonts aeguill catalogue-ctan /fonts/ae -catalogue-date 2014-04-03 23:09:57 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-virtual font-t1enc catalogue-version 1.4 +name aecc +category Package +revision 28574 +shortdesc Almost European Concrete Roman virtual fonts +relocated 1 +longdesc The package provides a set of virtual fonts (built from the +longdesc standard Concrete fonts) providing a set of fonts that almost +longdesc cover the T1 encoding. The main characters missing, of those +longdesc specified in the T1 specification are eth, thorn, and the Sami +longdesc letter eng. Sometimes the PS (pound sterling) character is also +longdesc missing. For the typewriter fonts, the situation is worse. +containersize 15936 +containerchecksum d36fd36a4d92a5031b36437ff8c75e3fbe2e3124982f496d6633476dc876a300d3b0ca18874d6d6256a096d01bde96854c30f76a777ad5ebf9755b035b41e7a9 +doccontainersize 26576 +doccontainerchecksum 58bcfd0db5d39265765a32c9996807dce4e1ef22c47a3b6f4307c59eae01e1f8eab2e8d2252f83ac42a41aeda1542087f21a52ca523a9364f1ecc6b635251df3 +docfiles size=56 + RELOC/doc/fonts/aecc/COPYING + RELOC/doc/fonts/aecc/MANIFEST + RELOC/doc/fonts/aecc/README details="Readme" + RELOC/doc/fonts/aecc/aeccfonts.tex + RELOC/doc/fonts/aecc/aefonts.mtx + RELOC/doc/fonts/aecc/aehax5.mtx + RELOC/doc/fonts/aecc/aehaxit.mtx + RELOC/doc/fonts/aecc/aehaxrm.mtx + RELOC/doc/fonts/aecc/aehaxsc.mtx + RELOC/doc/fonts/aecc/aehaxsl.mtx + RELOC/doc/fonts/aecc/aehaxss.mtx + RELOC/doc/fonts/aecc/aelatin.mtx + RELOC/doc/fonts/aecc/aelatint.mtx + RELOC/doc/fonts/aecc/aesample.tex + RELOC/doc/fonts/aecc/aet1.etx + RELOC/doc/fonts/aecc/bxittest.tex + RELOC/doc/fonts/aecc/clean + RELOC/doc/fonts/aecc/germtest.tex + RELOC/doc/fonts/aecc/go + RELOC/doc/fonts/aecc/install + RELOC/doc/fonts/aecc/makepl + RELOC/doc/fonts/aecc/ot1tt.etx + RELOC/doc/fonts/aecc/slitest.tex +runfiles size=32 + RELOC/fonts/tfm/public/aecc/aeccr10.tfm + RELOC/fonts/tfm/public/aecc/aeccr5.tfm + RELOC/fonts/tfm/public/aecc/aeccr6.tfm + RELOC/fonts/tfm/public/aecc/aeccr7.tfm + RELOC/fonts/tfm/public/aecc/aeccr8.tfm + RELOC/fonts/tfm/public/aecc/aeccr9.tfm + RELOC/fonts/tfm/public/aecc/aeccsc10.tfm + RELOC/fonts/tfm/public/aecc/aeccsl10.tfm + RELOC/fonts/tfm/public/aecc/aeccsl9.tfm + RELOC/fonts/tfm/public/aecc/aeccti10.tfm + RELOC/fonts/vf/public/aecc/aeccr10.vf + RELOC/fonts/vf/public/aecc/aeccr5.vf + RELOC/fonts/vf/public/aecc/aeccr6.vf + RELOC/fonts/vf/public/aecc/aeccr7.vf + RELOC/fonts/vf/public/aecc/aeccr8.vf + RELOC/fonts/vf/public/aecc/aeccr9.vf + RELOC/fonts/vf/public/aecc/aeccsc10.vf + RELOC/fonts/vf/public/aecc/aeccsl10.vf + RELOC/fonts/vf/public/aecc/aeccsl9.vf + RELOC/fonts/vf/public/aecc/aeccti10.vf + RELOC/tex/latex/aecc/aecc.sty + RELOC/tex/latex/aecc/t1aeccr.fd +catalogue-ctan /fonts/aecc +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font font-virtual font-t1enc +catalogue-version 1.0 + +name aeguill +category Package +revision 15878 +shortdesc Add several kinds of guillemets to the ae fonts +relocated 1 +longdesc The package enables the user to add guillemets from several +longdesc source (Polish cmr, Cyrillic cmr, lasy and ec) to the ae fonts. +longdesc This was useful when the ae fonts were used to produce PDF +longdesc files, since the additional guillemets exist in fonts available +longdesc in Adobe Type 1 format. +containersize 2388 +containerchecksum b75f41c1d179b63d1807ebfa81e9e656bb43433a3291b9e29d5f0f76667868d26840dc6ce7f61f0f959cef724f0b5738b96af2a371f949daefc4179de1f861e8 +doccontainersize 26984 +doccontainerchecksum 8361fc02999b080f19beb793fb0d1d802203114c1e1581c312a21e3a682191470b93e373fc269f8aea0e2643a69c8caf80855597ff6a71aadb6bfc869f4370da +docfiles size=15 + RELOC/doc/latex/aeguill/README details="Readme" + RELOC/doc/latex/aeguill/guil-test1.pdf details="Discussion of package" + RELOC/doc/latex/aeguill/guil-test1.tex + RELOC/doc/latex/aeguill/guil-test2.pdf details="Available guillemet glyphs" + RELOC/doc/latex/aeguill/guil-test2.tex + RELOC/doc/latex/aeguill/license.txt +runfiles size=2 + RELOC/tex/latex/aeguill/aeguill.sty +catalogue-ctan /macros/latex/contrib/aeguill +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font font-virtual font-t1enc + name afm2pl category TLCore -revision 37078 +revision 50602 +shortdesc convert AFM to TeX property list (.pl) metrics +longdesc Program home page: http://tex.aanhet.net/afm2pl/ depend afm2pl.ARCH +containersize 9616 +containerchecksum daff35d38fc35b83fc270c3d304e2383ce43b277e3e70645f957157d6e57cfaf4ce6a9191504404a9a0a681ff2167f361612cedf920f79e243c8afb9a9f3ecb7 +doccontainersize 41364 +doccontainerchecksum 667d5a03190ebb1fefa164f854afebb0f703c671a2339dfb0558a547cb53072c6a5d8118c781884c559b8136b3427d08286f74abe31b0ebb021288474f0397c8 +docfiles size=15 + texmf-dist/doc/man/man1/afm2pl.1 + texmf-dist/doc/man/man1/afm2pl.man1.pdf runfiles size=24 texmf-dist/fonts/enc/dvips/afm2pl/afm2pl-ot1.enc texmf-dist/fonts/enc/dvips/afm2pl/afm2pl-ot1ital.enc @@ -1525,17 +8726,151 @@ runfiles size=24 texmf-dist/tex/fontinst/afm2pl/ly1.etx texmf-dist/tex/fontinst/afm2pl/ly1c.etx texmf-dist/tex/fontinst/afm2pl/makesc8y.tex -docfiles size=9 - texmf-dist/doc/man/man1/afm2pl.1 - texmf-dist/doc/man/man1/afm2pl.man1.pdf + +name afm2pl.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of afm2pl +containersize 36608 +containerchecksum 4e0c72208437520776d5e52842d274b8ba34df3938df2d2f13eb157d789b74135084e305d13cb30a9b41b2465f64a91b0d1e77f26d8e931dca5f6773d08c6387 +binfiles arch=aarch64-linux size=23 + bin/aarch64-linux/afm2pl + +name afm2pl.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of afm2pl +containersize 43620 +containerchecksum 40b6c2e05c0df8b83bcb23302c3f7de18bbed6726b87897b58f932d0ba153d6312afae358b1f68f427a36383d77f9ad906eec84c6f9023a52f0245d116c9af8e +binfiles arch=amd64-freebsd size=27 + bin/amd64-freebsd/afm2pl + +name afm2pl.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of afm2pl +containersize 37740 +containerchecksum 7af5441700d7d41813cce333bfd83664d178a4d7c2a094acd9270fc9e4bfd67ec17b62c0b0271ae58c8b379c2a8c120173138874b677b2671189ebce19e84910 +binfiles arch=amd64-netbsd size=30 + bin/amd64-netbsd/afm2pl + +name afm2pl.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of afm2pl +containersize 34848 +containerchecksum 565900291df881337ad9642e6c02f08c9f349e7a82c5368ee9b31fbc58cd3f361b162ee9b96e8563b3140659abbaad5198ce39cf9c73c22990b93cbe8b19b6f9 +binfiles arch=armhf-linux size=21 + bin/armhf-linux/afm2pl + +name afm2pl.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of afm2pl +containersize 12424 +containerchecksum bb4f8cb5e15e3ade9288a0c2e19b47e9745ba48699494d78ef114f6d81b69fedb2d36bac61b48793aba6a324cb84fb1833dbb6059ca42cf9ec03ab0009cdda02 +binfiles arch=i386-cygwin size=8 + bin/i386-cygwin/afm2pl.exe + +name afm2pl.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of afm2pl +containersize 37204 +containerchecksum 64359e766c7c3b6e2374cc0ed52dbb051afb444a5dd1fb6fa9f2a6991bb6ffae5d05e114ee222e129d902e83904cded90cec625cf7a2ca56736c3a4b7065b80c +binfiles arch=i386-freebsd size=22 + bin/i386-freebsd/afm2pl name afm2pl.i386-linux category TLCore -revision 36790 +revision 50281 shortdesc i386-linux files of afm2pl -binfiles arch=i386-linux size=31 +containersize 43824 +containerchecksum b4aaa2383eb7cf418b2ffd21567382d494c16d251e43c72d3b205697cdc347a5459f5acd748b7bc33a7dc64c17040584b1d5c2681c46dbf34342ba146cabecfd +binfiles arch=i386-linux size=26 bin/i386-linux/afm2pl +name afm2pl.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of afm2pl +containersize 34460 +containerchecksum 5ea5889bc981dcc8dea4a629909c62e613dbb163e5f1c496a842ef98c08d50642d2c87eead7d06f58de10e0d74a1772aa8cd30c2d8b78153e7bdf6dd163431cc +binfiles arch=i386-netbsd size=27 + bin/i386-netbsd/afm2pl + +name afm2pl.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of afm2pl +containersize 40084 +containerchecksum 47a2583c6b16cdab90e64366b25ba66062125874f8c1d64fe66dfc4925421e0c67c76335602686000faaa5c98c2952184c4f32f114e4965ae673686fdafcfe6d +binfiles arch=i386-solaris size=22 + bin/i386-solaris/afm2pl + +name afm2pl.win32 +category TLCore +revision 50155 +shortdesc win32 files of afm2pl +containersize 14724 +containerchecksum 92bd9267e49e13641ca3f53ade5b765027b5646e690cea93314908289a8da6ea6205805ed96fc1b804fe68a23d0255593220419bfe41ff289831de46b56de1b7 +binfiles arch=win32 size=9 + bin/win32/afm2pl.exe + +name afm2pl.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of afm2pl +containersize 13440 +containerchecksum 18a6dc5e39221be8269e0c9f36aad86628ea789cbc41951de47242bbf6e529a5781cf97a4d678cbd6f47dd6d88aa4e289d8488b26ffdf6fe27ef1da2b48d2ed3 +binfiles arch=x86_64-cygwin size=8 + bin/x86_64-cygwin/afm2pl.exe + +name afm2pl.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of afm2pl +containersize 44260 +containerchecksum 8be61db8f59495a4d4744e234bb91684bdb5837ff22de1861d852a41c9acbcf401de5aaddbe216a3711a1e706e70788c12f950a92f8b19d701dbfd34b81d1179 +binfiles arch=x86_64-darwin size=26 + bin/x86_64-darwin/afm2pl + +name afm2pl.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of afm2pl +containersize 40960 +containerchecksum 8b5815d3bac3f38f1444bad18f60d507aa5aab639921b1c699126f5c6fd31f46bae11f928ca4773f6a5d96b1d1ab4781fe36969c5c906502bebbee856a91bb4b +binfiles arch=x86_64-darwinlegacy size=24 + bin/x86_64-darwinlegacy/afm2pl + +name afm2pl.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of afm2pl +containersize 42196 +containerchecksum 064be2db71b0167c1126f82876d8880d5b556376a0d8b2815f5976d344b855723e725eb12df228d8a03486f36bb19c2dfe425cf3a50ec768f6e7046d2f88f21f +binfiles arch=x86_64-linux size=24 + bin/x86_64-linux/afm2pl + +name afm2pl.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of afm2pl +containersize 44400 +containerchecksum 34d5d392fba6bc103deff9bf3e39154e26c73967b06f9d4bfe4dc97a93c0ab437c82c62bfc6affd05ce946ce9c795c9b6b1d56e168aca12e4413771b2109e0cc +binfiles arch=x86_64-linuxmusl size=27 + bin/x86_64-linuxmusl/afm2pl + +name afm2pl.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of afm2pl +containersize 44176 +containerchecksum 8c972f136bef7b02650dd7371fb5d1e79147fe3c245209a718e986e4f9d39474b64352b7965419aecf18bc14825e9f2a9bd76681d4f209abfba5c13d4cd400a2 +binfiles arch=x86_64-solaris size=26 + bin/x86_64-solaris/afm2pl + name afparticle category Package revision 35900 @@ -1543,31 +8878,47 @@ shortdesc Typesetting articles for Archives of Forensic Psychology relocated 1 longdesc This package provides a class for typesetting articles for the longdesc open access journal Archives of Forensic Psychology. -runfiles size=3 - RELOC/tex/latex/afparticle/afparticle.cls +containersize 3760 +containerchecksum 958ed5cbce1dc7bfb5d01befe74de6236a09b3ae5246aa3f2e80225bc353abf21b622f4128641c54a27197560557738d4c224e160c0be87010517c3a30a729ae +doccontainersize 550024 +doccontainerchecksum d8185772e114a891ff5ce0f2a2e12b827420f8c486813d87bbb6fafc662ca1db710178e8cfa260d7d650c3432909b9f7a8521648f6aebd5f90daf1aec4e28d7d docfiles size=165 RELOC/doc/latex/afparticle/Makefile - RELOC/doc/latex/afparticle/README - RELOC/doc/latex/afparticle/afparticle.pdf + RELOC/doc/latex/afparticle/README details="Readme" + RELOC/doc/latex/afparticle/afparticle.pdf details="Package documentation" RELOC/doc/latex/afparticle/afpsample.bib - RELOC/doc/latex/afparticle/afpsample.pdf + RELOC/doc/latex/afparticle/afpsample.pdf details="Example of usage" RELOC/doc/latex/afparticle/afpsample.tex RELOC/doc/latex/afparticle/vitruvian.jpg +srccontainersize 9516 +srccontainerchecksum f12b5a10b929d78c728331704ee83e726bc28562b8179adc2d9e7324b6b742100319078f5ebe8371a34927ae1fecac4779b9442076a95cae1d66e015f235d440 srcfiles size=9 RELOC/source/latex/afparticle/afparticle.dtx RELOC/source/latex/afparticle/afparticle.ins +runfiles size=3 + RELOC/tex/latex/afparticle/afparticle.cls catalogue-ctan /macros/latex/contrib/afparticle -catalogue-date 2014-12-23 21:17:05 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics journalpub class article-like catalogue-version 1.3 name afthesis category Package revision 15878 -shortdesc Air Force Institute of Technology thesis class. +shortdesc Air Force Institute of Technology thesis class relocated 1 longdesc LaTeX thesis/dissertation class for US Air Force Institute Of longdesc Technology. +containersize 12892 +containerchecksum 0ed83c0a98bdade60c49b3408053e020c6deba1b96d74b47aa2404c778a96ce2898af1d76892704524c0c069128e59c0bee5af73de6ff9237624600b991ed6b5 +doccontainersize 33016 +doccontainerchecksum c221f77700f974f0cedeb4f8ecca5280c04203e9cd89042d414eb54037db71cceed450477fe9498a15d9f09b8a0cffa177cc897958594fa7e3952adbd85225a8 +docfiles size=17 + RELOC/doc/latex/afthesis/README details="Readme" + RELOC/doc/latex/afthesis/thesnumb.doc + RELOC/doc/latex/afthesis/usethesis.pdf details="Package documentation" + RELOC/doc/latex/afthesis/usethesis.tex runfiles size=19 RELOC/bibtex/bst/afthesis/thesnumb.bst RELOC/tex/latex/afthesis/afthes10.sty @@ -1575,26 +8926,35 @@ runfiles size=19 RELOC/tex/latex/afthesis/afthes12.sty RELOC/tex/latex/afthesis/afthesis.cls RELOC/tex/latex/afthesis/afthesis.sty -docfiles size=17 - RELOC/doc/latex/afthesis/README - RELOC/doc/latex/afthesis/thesnumb.doc - RELOC/doc/latex/afthesis/usethesis.pdf - RELOC/doc/latex/afthesis/usethesis.tex catalogue-ctan /macros/latex/contrib/afthesis -catalogue-date 2014-09-13 11:37:30 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics dissertation class catalogue-version 2.7 name aguplus category Package revision 17156 -shortdesc Styles for American Geophysical Union. +shortdesc Styles for American Geophysical Union relocated 1 longdesc This bundle started as an extension to the AGU's own published longdesc styles, providing extra facilities and improved usability. The longdesc AGU now publishes satisfactory LaTeX materials of its own; the longdesc author of aguplus recommends that users switch to using the longdesc official distribution. +containersize 28708 +containerchecksum 73bd9b7f01a4911fb25aa7d388c5827c62a01a786ece4317f5b702de4c281bd05f82568780f4396bf289fcbb348abd2a3eca6620fd8e3f801d23aff7a05e104e +doccontainersize 330372 +doccontainerchecksum 48b9c010f746b8a85bbf1093b3dd39c2a853d74b20feb71bfebf2ded8d6f4c44538e6e20b24c65849e8adea9d34ff15498e847b1521bfca11d18fc23d18e10f2 +docfiles size=103 + RELOC/doc/latex/aguplus/README details="Readme" + RELOC/doc/latex/aguplus/README.aguplus + RELOC/doc/latex/aguplus/aguplus.pdf details="Package documentation" + RELOC/doc/latex/aguplus/aguplus.tex + RELOC/doc/latex/aguplus/changes.v16b + RELOC/doc/latex/aguplus/geophys.tex + RELOC/doc/latex/aguplus/sample.bib + RELOC/doc/latex/aguplus/samplus.tex runfiles size=74 RELOC/bibtex/bst/aguplus/agu.bst RELOC/bibtex/bst/aguplus/agu04.bst @@ -1603,46 +8963,39 @@ runfiles size=74 RELOC/tex/latex/aguplus/aguplus.cls RELOC/tex/latex/aguplus/aguplus.sty RELOC/tex/latex/aguplus/agupp.sty -docfiles size=103 - RELOC/doc/latex/aguplus/README - RELOC/doc/latex/aguplus/README.aguplus - RELOC/doc/latex/aguplus/aguplus.pdf - RELOC/doc/latex/aguplus/aguplus.tex - RELOC/doc/latex/aguplus/changes.v16b - RELOC/doc/latex/aguplus/geophys.tex - RELOC/doc/latex/aguplus/sample.bib - RELOC/doc/latex/aguplus/samplus.tex catalogue-ctan /macros/latex/contrib/aguplus -catalogue-date 2012-04-20 12:07:37 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics journalpub catalogue-version 1.6b name aiaa category Package revision 15878 -shortdesc Typeset AIAA conference papers. +shortdesc Typeset AIAA conference papers relocated 1 longdesc A bundle of LaTeX/BibTeX files and sample documents to aid longdesc those producing papers and journal articles according to the longdesc guidelines of the American Institute of Aeronautics and longdesc Astronautics (AIAA). -runfiles size=10 - RELOC/bibtex/bst/aiaa/aiaa.bst - RELOC/tex/latex/aiaa/aiaa-tc.cls +containersize 8780 +containerchecksum 9a5c04cc0b24e2b11e4b6953ceed9e506ad9f44922b3407c3aed1f5fd1fda1e86b1a5d6613a059065c1026f69830a8f5af0ed21ad8e1856ab44d22985768f24a +doccontainersize 928712 +doccontainerchecksum cd69337eb21eaeff910696f153bc97fca94afa0b147e3360477f72c5d90afa5d54d375b5eb7801df1b988c8f11d8fd23848a07f013a4e06c28a013248e00599b docfiles size=453 - RELOC/doc/latex/aiaa/README - RELOC/doc/latex/aiaa/aiaa.pdf - RELOC/doc/latex/aiaa/author_guide.pdf + RELOC/doc/latex/aiaa/README details="Package README" + RELOC/doc/latex/aiaa/aiaa.pdf details="Package documentation" + RELOC/doc/latex/aiaa/author_guide.pdf details="Author guide" RELOC/doc/latex/aiaa/author_guide.tex RELOC/doc/latex/aiaa/bibtex_database.bib RELOC/doc/latex/aiaa/figure_magnet.eps RELOC/doc/latex/aiaa/figure_magnet.pdf RELOC/doc/latex/aiaa/pre2004/CHANGES RELOC/doc/latex/aiaa/pre2004/MANIFEST - RELOC/doc/latex/aiaa/pre2004/README + RELOC/doc/latex/aiaa/pre2004/README details="Package README" RELOC/doc/latex/aiaa/pre2004/aiaa.dtx RELOC/doc/latex/aiaa/pre2004/aiaa.ins - RELOC/doc/latex/aiaa/pre2004/aiaa.pdf + RELOC/doc/latex/aiaa/pre2004/aiaa.pdf details="Package documentation" RELOC/doc/latex/aiaa/pre2004/aiaalgo.eps RELOC/doc/latex/aiaa/pre2004/demos/paper/smpaiaa.ps RELOC/doc/latex/aiaa/pre2004/demos/paper/smpaiaa.tex @@ -1660,45 +9013,57 @@ docfiles size=453 RELOC/doc/latex/aiaa/template_advanced.tex RELOC/doc/latex/aiaa/template_basic.pdf RELOC/doc/latex/aiaa/template_basic.tex +srccontainersize 16568 +srccontainerchecksum e9542fb3cb5a16a565bb5c349f15b453ccb4c81570425a5825f0f952816ec27edad65ee670bed9069dd0c1c8762b5becf6300ad551b15bc5adff960f73354588 srcfiles size=16 RELOC/source/latex/aiaa/aiaa.dtx RELOC/source/latex/aiaa/aiaa.ins +runfiles size=10 + RELOC/bibtex/bst/aiaa/aiaa.bst + RELOC/tex/latex/aiaa/aiaa-tc.cls catalogue-ctan /macros/latex/contrib/aiaa -catalogue-date 2012-04-20 12:07:37 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics journalpub catalogue-version 3.6 name aichej category Package revision 15878 -shortdesc Bibliography style file for the AIChE Journal. +shortdesc Bibliography style file for the AIChE Journal relocated 1 longdesc The style was generated using custom-bib, and implements the longdesc style of the American Institute of Chemical Engineers Journal longdesc (or AIChE Journal or AIChE J or AIChEJ). +containersize 6172 +containerchecksum 7edc0ca36209f18dcca0b794c7ee712f0eba82e3e69b09fd46fdc7ede6bd33e93d4936d7bfcff88fe4f699acd04493053a7c76cabb87670215efaae12aaabc83 runfiles size=7 RELOC/bibtex/bst/aichej/aichej.bst catalogue-ctan /biblio/bibtex/contrib/misc/aichej.bst -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics bibtex-sty journalpub name ajl category Package revision 34016 -shortdesc BibTeX style for AJL. +shortdesc BibTeX style for AJL relocated 1 longdesc Bibliographic style references in style of Australian Journal longdesc of Linguistics. +containersize 6252 +containerchecksum 083a549d425336eceee0ab8e85ef592aa15983e9a4dcf2264d835b5242933fed8719b81b427fcf7784b38b8e0b3dac2e2a7f8b9ffd10cf2690b96bf8b586ff3d runfiles size=8 RELOC/bibtex/bst/ajl/ajl.bst catalogue-ctan /biblio/bibtex/contrib/misc/ajl.bst -catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics bibtex-sty name akktex category Package revision 26055 -shortdesc A collection of packages and classes. +shortdesc A collection of packages and classes relocated 1 longdesc The bundle provides: new document classes for technical longdesc documents, thesis works, manuscripts and lecture notes; many @@ -1707,6 +9072,13 @@ longdesc mathematical texts; layout providing a non-empty parskip with longdesc extended length corrections and new section definition longdesc commands; easy label creation for counters; and german language longdesc tools and predefined abbreviations. +containersize 14272 +containerchecksum 481502410094aedb36f00dc93ff3cad9479e756b00c60abdd7da98713f273cf45a314ccb55ef2436dc54cf7e8f84e2bf9fc5f00974c9978aebacee177380c9a5 +doccontainersize 1600 +doccontainerchecksum 4378f1e2c96bab5f5926b22863580dc2ae555400d770f5875eff09b8f915da4c83e99679fa7487f788970d17537123d854400e31bfca868d693b3d950c33051b +docfiles size=2 + RELOC/doc/latex/akktex/README details="Bundle README" + RELOC/doc/latex/akktex/README.TEXLIVE runfiles size=37 RELOC/tex/latex/akktex/akkconditional.sty RELOC/tex/latex/akktex/akkcounterlabelpattern.sty @@ -1734,18 +9106,16 @@ runfiles size=37 RELOC/tex/latex/akktex/akktecdoc.cls RELOC/tex/latex/akktex/akktex.sty RELOC/tex/latex/akktex/akkwidepage.sty -docfiles size=2 - RELOC/doc/latex/akktex/README - RELOC/doc/latex/akktex/README.TEXLIVE catalogue-ctan /macros/latex/contrib/akktex -catalogue-date 2014-09-16 21:11:35 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics class maths catalogue-version 0.3.2 name akletter category Package revision 15878 -shortdesc Comprehensive letter support. +shortdesc Comprehensive letter support relocated 1 longdesc An advanced letter document class which extends LaTeX's usual longdesc letter class, providing support for building your own @@ -1753,29 +9123,35 @@ longdesc letterhead and marking fold points for window envelopes. longdesc Options supported by the package include: letterpaper for US longdesc letter; a4offset for a modified A4 layout suitable for platic longdesc binders that cover a part of the left margin. The class's -longdesc handling of dates has inspired an extended version of date- -longdesc handling in the isodate package. The class supersedes an +longdesc handling of dates has inspired an extended version of +longdesc date-handling in the isodate package. The class supersedes an longdesc earlier class called myletter. -runfiles size=11 - RELOC/tex/latex/akletter/akfax.cfg - RELOC/tex/latex/akletter/akletter.cfg - RELOC/tex/latex/akletter/akletter.cls - RELOC/tex/latex/akletter/myletter.cls +containersize 9720 +containerchecksum fc0702fce74b32b04ce2b1e03960a7617c84a89d4581f16bbbe1b16fc01d45300c0a46682460d78cc572b6e20cc42ec7701c5067adf5e4960ed1bdfd5a69e910 +doccontainersize 202824 +doccontainerchecksum 6a951bf2ad4a7af4a6c87b24e8f4c3b4ff520430024a6abe6b54cf56269a903d78e591def71ce7cac832a4d3f822e8baa14f8decc960b455688801f406d01e74 docfiles size=69 RELOC/doc/latex/akletter/akletter.tex RELOC/doc/latex/akletter/akletter.upl - RELOC/doc/latex/akletter/letterdoc.pdf + RELOC/doc/latex/akletter/letterdoc.pdf details="Package documentation (German)" language="de" RELOC/doc/latex/akletter/letterdoc.tex - RELOC/doc/latex/akletter/lettereng.pdf + RELOC/doc/latex/akletter/lettereng.pdf details="Package documentation (English)" language="en" RELOC/doc/latex/akletter/lettereng.tex -catalogue-ctan /macros/latex/contrib/akletter -catalogue-date 2014-09-16 18:22:54 +0200 -catalogue-license lppl +runfiles size=11 + RELOC/tex/latex/akletter/akfax.cfg + RELOC/tex/latex/akletter/akletter.cfg + RELOC/tex/latex/akletter/akletter.cls + RELOC/tex/latex/akletter/myletter.cls +catalogue-also dinbrief envlab formlett +catalogue-ctan /macros/latex/contrib/akletter +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics letter class catalogue-version 1.5i name alegreya category Package -revision 38278 +revision 50277 shortdesc Alegreya fonts with LaTeX support relocated 1 longdesc The Alegreya fonts are designed by Juan Pablo del Peral for @@ -1785,1639 +9161,1848 @@ longdesc facilitates the reading of long texts. The italic has just as longdesc much care and attention to detail in the design as the roman. longdesc Bold, black, small caps and five number styles are available. execute addMap Alegreya.map -runfiles size=15241 - RELOC/fonts/afm/huerta/alegreya/Alegreya-Black.afm - RELOC/fonts/afm/huerta/alegreya/Alegreya-BlackItalic.afm - RELOC/fonts/afm/huerta/alegreya/Alegreya-Bold.afm - RELOC/fonts/afm/huerta/alegreya/Alegreya-BoldItalic.afm - RELOC/fonts/afm/huerta/alegreya/Alegreya-Italic.afm - RELOC/fonts/afm/huerta/alegreya/Alegreya-Regular.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSC-Black.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSC-BlackItalic.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSC-Bold.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSC-BoldItalic.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSC-Italic.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSC-Regular.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSans-Black.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSans-BlackItalic.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSans-Bold.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSans-BoldItalic.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSans-ExtraBold.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSans-Light.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSans-LightItalic.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSans-Medium.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSans-MediumItalic.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSans-Regular.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSans-RegularItalic.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSans-Thin.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSans-ThinItalic.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSansSC-Black.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSansSC-BlackItalic.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSansSC-Bold.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSansSC-BoldItalic.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSansSC-ExtraBold.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSansSC-Light.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSansSC-LightItalic.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSansSC-Medium.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSansSC-MediumItalic.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSansSC-Regular.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSansSC-RegularItalic.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSansSC-Thin.afm - RELOC/fonts/afm/huerta/alegreya/AlegreyaSansSC-ThinItalic.afm - RELOC/fonts/enc/dvips/alegreya/algr_2thg7t.enc - RELOC/fonts/enc/dvips/alegreya/algr_6gze5d.enc - RELOC/fonts/enc/dvips/alegreya/algr_72lo2s.enc - RELOC/fonts/enc/dvips/alegreya/algr_74q4jo.enc - RELOC/fonts/enc/dvips/alegreya/algr_7levdp.enc - RELOC/fonts/enc/dvips/alegreya/algr_7nunim.enc - RELOC/fonts/enc/dvips/alegreya/algr_7p2ivs.enc - RELOC/fonts/enc/dvips/alegreya/algr_atppps.enc - RELOC/fonts/enc/dvips/alegreya/algr_b55zld.enc - RELOC/fonts/enc/dvips/alegreya/algr_bft2rj.enc - RELOC/fonts/enc/dvips/alegreya/algr_hghq3b.enc - RELOC/fonts/enc/dvips/alegreya/algr_k3afeh.enc - RELOC/fonts/enc/dvips/alegreya/algr_kf7dx2.enc - RELOC/fonts/enc/dvips/alegreya/algr_lm7t5h.enc - RELOC/fonts/enc/dvips/alegreya/algr_mcmfge.enc - RELOC/fonts/enc/dvips/alegreya/algr_n534zq.enc - RELOC/fonts/enc/dvips/alegreya/algr_nlrspr.enc - RELOC/fonts/enc/dvips/alegreya/algr_prieif.enc - RELOC/fonts/enc/dvips/alegreya/algr_qj6qbd.enc - RELOC/fonts/enc/dvips/alegreya/algr_ry4sz3.enc - RELOC/fonts/enc/dvips/alegreya/algr_sd6sdy.enc - RELOC/fonts/enc/dvips/alegreya/algr_sutw7e.enc - RELOC/fonts/enc/dvips/alegreya/algr_tlfd2e.enc - RELOC/fonts/enc/dvips/alegreya/algr_u55vgl.enc - RELOC/fonts/enc/dvips/alegreya/algr_w6adhq.enc - RELOC/fonts/enc/dvips/alegreya/algr_w7rh4a.enc - RELOC/fonts/enc/dvips/alegreya/algr_wtbjoa.enc - RELOC/fonts/enc/dvips/alegreya/algr_x6hfhz.enc - RELOC/fonts/enc/dvips/alegreya/algr_y5vbsk.enc - RELOC/fonts/enc/dvips/alegreya/algrs_23dk3b.enc - RELOC/fonts/enc/dvips/alegreya/algrs_2f3oru.enc - RELOC/fonts/enc/dvips/alegreya/algrs_4zyalv.enc - RELOC/fonts/enc/dvips/alegreya/algrs_6tng7i.enc - RELOC/fonts/enc/dvips/alegreya/algrs_777naj.enc - RELOC/fonts/enc/dvips/alegreya/algrs_df6qxs.enc - RELOC/fonts/enc/dvips/alegreya/algrs_eeys5m.enc - RELOC/fonts/enc/dvips/alegreya/algrs_eoa4mh.enc - RELOC/fonts/enc/dvips/alegreya/algrs_fakese.enc - RELOC/fonts/enc/dvips/alegreya/algrs_ffgp2h.enc - RELOC/fonts/enc/dvips/alegreya/algrs_g333yf.enc - RELOC/fonts/enc/dvips/alegreya/algrs_i3slmw.enc - RELOC/fonts/enc/dvips/alegreya/algrs_jcxsi2.enc - RELOC/fonts/enc/dvips/alegreya/algrs_lfuhub.enc - RELOC/fonts/enc/dvips/alegreya/algrs_lwpqvr.enc - RELOC/fonts/enc/dvips/alegreya/algrs_mcmfge.enc - RELOC/fonts/enc/dvips/alegreya/algrs_n6pera.enc - RELOC/fonts/enc/dvips/alegreya/algrs_rus6f4.enc - RELOC/fonts/enc/dvips/alegreya/algrs_tcirz5.enc - RELOC/fonts/enc/dvips/alegreya/algrs_tlfd2e.enc - RELOC/fonts/enc/dvips/alegreya/algrs_ucdyzh.enc - RELOC/fonts/enc/dvips/alegreya/algrs_upluqc.enc - RELOC/fonts/enc/dvips/alegreya/algrs_xdzbhe.enc - RELOC/fonts/enc/dvips/alegreya/algrs_xiqcjc.enc +containersize 14352704 +containerchecksum b6bc439ce8b6e5a2015c61ba3dc32daad7900fb5d53013e99f12dff28e2ab97170d7b07bc39bbb7878e4ebed805216701846c3446d06ab0d255d230686282fa2 +doccontainersize 120112 +doccontainerchecksum 12815a71fd1aa20e41fd163793424f84ef2cf24585fb89c3852d8475a8e4f5df52b4f8d9c0dd6c2d45cf7c5a2995d9c9f4a773bbbc383c78fcb90c586a519deb +docfiles size=33 + RELOC/doc/fonts/alegreya/OFL.txt + RELOC/doc/fonts/alegreya/README details="Readme" + RELOC/doc/fonts/alegreya/alegreya-samples.pdf details="Font samples" + RELOC/doc/fonts/alegreya/alegreya-samples.tex +runfiles size=12802 + RELOC/fonts/enc/dvips/alegreya/algr_226fyf.enc + RELOC/fonts/enc/dvips/alegreya/algr_25hpeh.enc + RELOC/fonts/enc/dvips/alegreya/algr_2irvk3.enc + RELOC/fonts/enc/dvips/alegreya/algr_2vgxay.enc + RELOC/fonts/enc/dvips/alegreya/algr_2zbc2r.enc + RELOC/fonts/enc/dvips/alegreya/algr_3j6zf7.enc + RELOC/fonts/enc/dvips/alegreya/algr_3nh4kw.enc + RELOC/fonts/enc/dvips/alegreya/algr_4ns4wz.enc + RELOC/fonts/enc/dvips/alegreya/algr_4v37z4.enc + RELOC/fonts/enc/dvips/alegreya/algr_5gibri.enc + RELOC/fonts/enc/dvips/alegreya/algr_5io2mf.enc + RELOC/fonts/enc/dvips/alegreya/algr_5rsmqe.enc + RELOC/fonts/enc/dvips/alegreya/algr_66zd6s.enc + RELOC/fonts/enc/dvips/alegreya/algr_6mopzx.enc + RELOC/fonts/enc/dvips/alegreya/algr_6wvqta.enc + RELOC/fonts/enc/dvips/alegreya/algr_7gwnxy.enc + RELOC/fonts/enc/dvips/alegreya/algr_7jzpyg.enc + RELOC/fonts/enc/dvips/alegreya/algr_b3sjml.enc + RELOC/fonts/enc/dvips/alegreya/algr_b5w62b.enc + RELOC/fonts/enc/dvips/alegreya/algr_bwwxle.enc + RELOC/fonts/enc/dvips/alegreya/algr_chmses.enc + RELOC/fonts/enc/dvips/alegreya/algr_ck23qu.enc + RELOC/fonts/enc/dvips/alegreya/algr_dfcgiv.enc + RELOC/fonts/enc/dvips/alegreya/algr_dfxw3v.enc + RELOC/fonts/enc/dvips/alegreya/algr_dokm3m.enc + RELOC/fonts/enc/dvips/alegreya/algr_dte76s.enc + RELOC/fonts/enc/dvips/alegreya/algr_evb22y.enc + RELOC/fonts/enc/dvips/alegreya/algr_f7lt35.enc + RELOC/fonts/enc/dvips/alegreya/algr_fbntfe.enc + RELOC/fonts/enc/dvips/alegreya/algr_fi2sgn.enc + RELOC/fonts/enc/dvips/alegreya/algr_g3cfdt.enc + RELOC/fonts/enc/dvips/alegreya/algr_gw2gjr.enc + RELOC/fonts/enc/dvips/alegreya/algr_gygyyb.enc + RELOC/fonts/enc/dvips/alegreya/algr_gyvvmk.enc + RELOC/fonts/enc/dvips/alegreya/algr_h4wxrq.enc + RELOC/fonts/enc/dvips/alegreya/algr_hgnp5w.enc + RELOC/fonts/enc/dvips/alegreya/algr_hsymcs.enc + RELOC/fonts/enc/dvips/alegreya/algr_hxyeky.enc + RELOC/fonts/enc/dvips/alegreya/algr_isiobp.enc + RELOC/fonts/enc/dvips/alegreya/algr_iszm25.enc + RELOC/fonts/enc/dvips/alegreya/algr_jfvu45.enc + RELOC/fonts/enc/dvips/alegreya/algr_jmly6e.enc + RELOC/fonts/enc/dvips/alegreya/algr_kvnvnq.enc + RELOC/fonts/enc/dvips/alegreya/algr_l3q2fl.enc + RELOC/fonts/enc/dvips/alegreya/algr_lijdnj.enc + RELOC/fonts/enc/dvips/alegreya/algr_n26fs4.enc + RELOC/fonts/enc/dvips/alegreya/algr_nrbejs.enc + RELOC/fonts/enc/dvips/alegreya/algr_o47ngb.enc + RELOC/fonts/enc/dvips/alegreya/algr_objcko.enc + RELOC/fonts/enc/dvips/alegreya/algr_oq6qvg.enc + RELOC/fonts/enc/dvips/alegreya/algr_orkgok.enc + RELOC/fonts/enc/dvips/alegreya/algr_p7kywn.enc + RELOC/fonts/enc/dvips/alegreya/algr_phmojf.enc + RELOC/fonts/enc/dvips/alegreya/algr_qizth5.enc + RELOC/fonts/enc/dvips/alegreya/algr_r57u46.enc + RELOC/fonts/enc/dvips/alegreya/algr_rpkba2.enc + RELOC/fonts/enc/dvips/alegreya/algr_su2s7h.enc + RELOC/fonts/enc/dvips/alegreya/algr_te6qwy.enc + RELOC/fonts/enc/dvips/alegreya/algr_tf5zvx.enc + RELOC/fonts/enc/dvips/alegreya/algr_u7nq5p.enc + RELOC/fonts/enc/dvips/alegreya/algr_v3wuop.enc + RELOC/fonts/enc/dvips/alegreya/algr_v7zz7p.enc + RELOC/fonts/enc/dvips/alegreya/algr_w4wd2e.enc + RELOC/fonts/enc/dvips/alegreya/algr_y2uq4q.enc + RELOC/fonts/enc/dvips/alegreya/algr_ydutag.enc + RELOC/fonts/enc/dvips/alegreya/algr_yncitp.enc + RELOC/fonts/enc/dvips/alegreya/algr_ywnyo5.enc + RELOC/fonts/enc/dvips/alegreya/algr_zbisw7.enc + RELOC/fonts/enc/dvips/alegreya/algr_zsorhr.enc RELOC/fonts/map/dvips/alegreya/Alegreya.map - RELOC/fonts/pfm/huerta/alegreya/Alegreya-Black.pfm - RELOC/fonts/pfm/huerta/alegreya/Alegreya-BlackItalic.pfm - RELOC/fonts/pfm/huerta/alegreya/Alegreya-Bold.pfm - RELOC/fonts/pfm/huerta/alegreya/Alegreya-BoldItalic.pfm - RELOC/fonts/pfm/huerta/alegreya/Alegreya-Italic.pfm - RELOC/fonts/pfm/huerta/alegreya/Alegreya-Regular.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSC-Black.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSC-BlackItalic.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSC-Bold.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSC-BoldItalic.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSC-Italic.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSC-Regular.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSans-Black.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSans-BlackItalic.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSans-Bold.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSans-BoldItalic.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSans-ExtraBold.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSans-Light.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSans-LightItalic.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSans-Medium.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSans-MediumItalic.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSans-Regular.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSans-RegularItalic.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSans-Thin.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSans-ThinItalic.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSansSC-Black.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSansSC-BlackItalic.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSansSC-Bold.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSansSC-BoldItalic.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSansSC-ExtraBold.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSansSC-Light.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSansSC-LightItalic.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSansSC-Medium.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSansSC-MediumItalic.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSansSC-Regular.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSansSC-RegularItalic.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSansSC-Thin.pfm - RELOC/fonts/pfm/huerta/alegreya/AlegreyaSansSC-ThinItalic.pfm + RELOC/fonts/opentype/huerta/alegreya/Alegreya-Black.otf + RELOC/fonts/opentype/huerta/alegreya/Alegreya-BlackItalic.otf + RELOC/fonts/opentype/huerta/alegreya/Alegreya-Bold.otf + RELOC/fonts/opentype/huerta/alegreya/Alegreya-BoldItalic.otf + RELOC/fonts/opentype/huerta/alegreya/Alegreya-ExtraBold.otf + RELOC/fonts/opentype/huerta/alegreya/Alegreya-ExtraBoldItalic.otf + RELOC/fonts/opentype/huerta/alegreya/Alegreya-Italic.otf + RELOC/fonts/opentype/huerta/alegreya/Alegreya-Medium.otf + RELOC/fonts/opentype/huerta/alegreya/Alegreya-MediumItalic.otf + RELOC/fonts/opentype/huerta/alegreya/Alegreya-Regular.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-Black.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-BlackItalic.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-Bold.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-BoldItalic.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-ExtraBold.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-ExtraBoldItalic.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-Italic.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-Light.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-LightItalic.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-Medium.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-MediumItalic.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-Regular.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-Thin.otf + RELOC/fonts/opentype/huerta/alegreya/AlegreyaSans-ThinItalic.otf + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-inf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-inf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-inf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-inf-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-inf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-sup-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-sup-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-sup-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-sup-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-sup-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-inf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-inf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-inf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-inf-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-inf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-sup-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-sup-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-sup-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-sup-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-sup-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-inf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-inf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-inf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-inf-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-inf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-sup-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-sup-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-sup-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-sup-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-sup-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-inf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-inf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-inf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-inf-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-inf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-sup-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-sup-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-sup-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-sup-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-sup-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-inf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-inf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-inf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-inf-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-inf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-sup-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-sup-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-sup-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-sup-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-sup-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-inf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-inf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-inf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-inf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-inf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-inf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-inf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-inf-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-inf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-sup-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-sup-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-sup-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-sup-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-sup-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tlf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tlf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tlf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tlf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tlf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tlf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tlf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tlf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tlf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tlf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tlf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tlf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tlf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tlf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tlf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tlf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tlf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tlf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tlf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tlf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tlf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tlf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tlf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-inf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-inf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-inf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-inf-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-inf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-sup-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-sup-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-sup-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-sup-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-sup-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-inf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-inf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-inf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-inf-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-inf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-sup-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-sup-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-sup-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-sup-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-sup-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-inf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-inf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-inf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-inf-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-inf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-sup-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-sup-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-sup-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-sup-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-sup-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-inf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-inf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-inf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-inf-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-inf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-sup-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-sup-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-sup-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-sup-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-sup-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-inf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-inf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-inf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-inf-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-inf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-sup-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-sup-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-sup-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-sup-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-sup-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-inf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-inf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-inf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-inf-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-inf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-sup-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-sup-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-sup-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-sup-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-sup-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-inf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-inf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-inf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-inf-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-inf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-sup-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-sup-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-sup-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-sup-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-sup-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-inf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-inf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-inf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-inf-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-inf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-sup-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-sup-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-sup-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-sup-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-sup-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-inf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-inf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-inf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-inf-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-inf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-sup-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-sup-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-sup-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-sup-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-sup-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-inf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-inf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-inf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-inf-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-inf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-sup-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-sup-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-sup-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-sup-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-sup-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-inf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-inf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-inf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-inf-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-inf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-sup-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-sup-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-sup-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-sup-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-sup-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-inf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-inf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-inf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-inf-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-inf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-sup-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-sup-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-sup-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-sup-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-sup-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-inf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-inf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-inf-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-inf-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-inf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-inf-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-sup-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-sup-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-sup-ly1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-sup-ot1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-sup-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-lgr.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ly1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ot1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-sc-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-t1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-t1.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ts1--base.tfm RELOC/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-inf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-inf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-inf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-inf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-inf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-lf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-lf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-lf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-lf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-lf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-lf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-lf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-osf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-osf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-osf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-osf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-osf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-osf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-osf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-sup-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-sup-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-sup-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-sup-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-sup-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tlf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tlf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tlf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tlf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tlf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tlf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tlf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tosf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tosf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tosf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tosf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tosf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tosf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tosf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-inf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-inf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-inf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-inf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-inf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-sup-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-sup-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-sup-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-sup-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-sup-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-inf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-inf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-inf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-inf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-inf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-lf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-lf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-lf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-lf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-lf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-lf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-lf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-osf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-osf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-osf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-osf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-osf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-osf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-osf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-sup-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-sup-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-sup-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-sup-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-sup-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tlf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tlf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tlf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tlf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tlf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tlf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tlf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tosf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tosf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tosf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tosf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tosf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tosf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tosf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-inf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-inf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-inf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-inf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-inf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-sup-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-sup-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-sup-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-sup-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-sup-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-inf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-inf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-inf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-inf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-inf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-sup-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-sup-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-sup-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-sup-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-sup-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-inf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-inf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-inf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-inf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-inf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-sup-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-sup-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-sup-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-sup-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-sup-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-inf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-inf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-inf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-inf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-inf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-lf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-lf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-lf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-lf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-lf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-lf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-lf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-osf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-osf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-osf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-osf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-osf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-osf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-osf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-sup-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-sup-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-sup-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-sup-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-sup-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tlf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tlf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tlf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tlf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tlf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tlf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tlf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tosf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tosf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tosf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tosf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tosf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tosf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tosf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-inf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-inf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-inf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-inf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-inf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-lf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-lf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-lf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-lf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-lf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-lf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-lf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-osf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-osf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-osf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-osf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-osf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-osf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-osf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-sup-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-sup-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-sup-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-sup-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-sup-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tlf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tlf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tlf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tlf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tlf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tlf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tlf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tosf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tosf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tosf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tosf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tosf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tosf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tosf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-inf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-inf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-inf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-inf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-inf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-sup-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-sup-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-sup-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-sup-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-sup-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-inf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-inf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-inf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-inf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-inf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-lf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-lf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-lf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-lf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-lf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-lf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-lf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-osf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-osf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-osf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-osf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-osf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-osf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-osf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-sup-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-sup-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-sup-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-sup-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-sup-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tlf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tlf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tlf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tlf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tlf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tlf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tlf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tosf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tosf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tosf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tosf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tosf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tosf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tosf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-inf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-inf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-inf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-inf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-inf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-sup-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-sup-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-sup-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-sup-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-sup-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-inf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-inf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-inf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-inf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-inf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-lf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-lf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-lf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-lf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-lf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-lf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-lf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-osf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-osf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-osf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-osf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-osf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-osf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-osf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-sup-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-sup-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-sup-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-sup-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-sup-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tlf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tlf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tlf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tlf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tlf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tlf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tlf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tosf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tosf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tosf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tosf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tosf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tosf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tosf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-inf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-inf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-inf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-inf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-inf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-lf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-lf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-lf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-lf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-lf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-lf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-lf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-osf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-osf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-osf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-osf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-osf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-osf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-osf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-sup-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-sup-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-sup-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-sup-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-sup-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tlf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tlf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tlf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tlf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tlf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tlf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tlf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tosf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tosf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tosf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tosf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tosf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tosf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tosf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-inf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-inf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-inf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-inf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-inf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-sup-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-sup-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-sup-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-sup-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-sup-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-ts1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-ly1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-ly1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-ot1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-ot1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-t1.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-ts1.tfm - RELOC/fonts/truetype/huerta/alegreya/Alegreya-Black.ttf - RELOC/fonts/truetype/huerta/alegreya/Alegreya-BlackItalic.ttf - RELOC/fonts/truetype/huerta/alegreya/Alegreya-Bold.ttf - RELOC/fonts/truetype/huerta/alegreya/Alegreya-BoldItalic.ttf - RELOC/fonts/truetype/huerta/alegreya/Alegreya-Italic.ttf - RELOC/fonts/truetype/huerta/alegreya/Alegreya-Regular.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSC-Black.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSC-BlackItalic.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSC-Bold.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSC-BoldItalic.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSC-Italic.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSC-Regular.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSans-Black.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSans-BlackItalic.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSans-Bold.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSans-BoldItalic.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSans-ExtraBold.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSans-ExtraBoldItalic.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSans-Light.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSans-LightItalic.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSans-Medium.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSans-MediumItalic.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSans-Regular.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSans-RegularItalic.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSans-Thin.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSans-ThinItalic.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSansSC-Black.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSansSC-BlackItalic.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSansSC-Bold.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSansSC-BoldItalic.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSansSC-ExtraBold.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSansSC-Light.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSansSC-LightItalic.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSansSC-Medium.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSansSC-MediumItalic.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSansSC-Regular.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSansSC-RegularItalic.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSansSC-Thin.ttf - RELOC/fonts/truetype/huerta/alegreya/AlegreyaSansSC-ThinItalic.ttf RELOC/fonts/type1/huerta/alegreya/Alegreya-Black.pfb RELOC/fonts/type1/huerta/alegreya/Alegreya-BlackItalic.pfb RELOC/fonts/type1/huerta/alegreya/Alegreya-Bold.pfb RELOC/fonts/type1/huerta/alegreya/Alegreya-BoldItalic.pfb + RELOC/fonts/type1/huerta/alegreya/Alegreya-ExtraBold.pfb + RELOC/fonts/type1/huerta/alegreya/Alegreya-ExtraBoldItalic.pfb RELOC/fonts/type1/huerta/alegreya/Alegreya-Italic.pfb + RELOC/fonts/type1/huerta/alegreya/Alegreya-Medium.pfb + RELOC/fonts/type1/huerta/alegreya/Alegreya-MediumItalic.pfb RELOC/fonts/type1/huerta/alegreya/Alegreya-Regular.pfb - RELOC/fonts/type1/huerta/alegreya/AlegreyaSC-Black.pfb - RELOC/fonts/type1/huerta/alegreya/AlegreyaSC-BlackItalic.pfb - RELOC/fonts/type1/huerta/alegreya/AlegreyaSC-Bold.pfb - RELOC/fonts/type1/huerta/alegreya/AlegreyaSC-BoldItalic.pfb - RELOC/fonts/type1/huerta/alegreya/AlegreyaSC-Italic.pfb - RELOC/fonts/type1/huerta/alegreya/AlegreyaSC-Regular.pfb RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-Black.pfb RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-BlackItalic.pfb RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-Bold.pfb @@ -3432,807 +11017,939 @@ runfiles size=15241 RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-Regular.pfb RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-Thin.pfb RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-ThinItalic.pfb - RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-Black.pfb - RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-BlackItalic.pfb - RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-Bold.pfb - RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-BoldItalic.pfb - RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-ExtraBold.pfb - RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic.pfb - RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-Italic.pfb - RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-Light.pfb - RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-LightItalic.pfb - RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-Medium.pfb - RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-MediumItalic.pfb - RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-Regular.pfb - RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-Thin.pfb - RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-ThinItalic.pfb RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-inf-ly1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-inf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-lf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-lf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-lf-ts1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-osf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-osf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-osf-ts1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-sup-ly1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-sup-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tlf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tlf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tlf-ts1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tosf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tosf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-tosf-ts1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-inf-ly1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-inf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-lf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-lf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-lf-ts1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-osf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-osf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-osf-ts1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-sup-ly1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-sup-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tlf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tlf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tlf-ts1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tosf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tosf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tosf-ts1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-inf-ly1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-inf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-lf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-lf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-lf-ts1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-osf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-osf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-osf-ts1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-sup-ly1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-sup-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tlf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tlf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tlf-ts1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tosf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tosf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Bold-tosf-ts1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-inf-ly1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-inf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-lf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-lf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-lf-ts1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-osf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-osf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-osf-ts1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-sup-ly1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-sup-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tlf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tlf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tlf-ts1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tosf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tosf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-ExtraBoldItalic-tosf-ts1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-inf-ly1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-inf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-lf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-lf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-lf-ts1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-osf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-osf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-osf-ts1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-sup-ly1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-sup-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tlf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tlf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tlf-ts1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tosf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tosf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Medium-tosf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-inf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-inf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-lf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-osf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-sup-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-MediumItalic-tosf-ts1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-inf-ly1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-inf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-lf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-lf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-lf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-lf-ts1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-osf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-osf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-osf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-osf-ts1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-sup-ly1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-sup-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tlf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tlf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tlf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tlf-ts1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tosf-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tosf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tosf-t1.vf RELOC/fonts/vf/huerta/alegreya/Alegreya-Regular-tosf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Black-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Black-tlf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Black-tlf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Bold-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Bold-tlf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Bold-tlf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Italic-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Italic-tlf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Italic-tlf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Regular-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Regular-tlf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSC-Regular-tlf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-inf-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-inf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-lf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-lf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-lf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-lf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-osf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-osf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-osf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-osf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-sup-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-sup-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tlf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tlf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tlf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tlf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tosf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tosf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tosf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tosf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-inf-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-inf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-lf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-lf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-osf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-osf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-sup-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-sup-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-inf-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-inf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-lf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-lf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-lf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-lf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-osf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-osf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-osf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-osf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-sup-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-sup-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tlf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tlf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tlf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tlf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tosf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tosf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tosf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tosf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-inf-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-inf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-lf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-lf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-osf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-osf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-sup-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-sup-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-inf-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-inf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-lf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-lf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-osf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-osf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-sup-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-sup-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-inf-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-inf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-lf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-lf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-lf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-lf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-osf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-osf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-osf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-osf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-sup-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-sup-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tlf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tlf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tlf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tlf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tosf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tosf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tosf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tosf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-inf-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-inf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-lf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-lf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-lf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-lf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-osf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-osf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-osf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-osf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-sup-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-sup-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tlf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tlf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tlf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tlf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tosf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tosf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tosf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tosf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-inf-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-inf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-lf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-lf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-lf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-lf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-osf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-osf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-osf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-osf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-sup-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-sup-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tlf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tlf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tosf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tosf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-inf-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-inf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-lf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-lf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-lf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-lf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-osf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-osf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-osf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-osf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-sup-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-sup-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tlf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tlf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tlf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tlf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tosf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tosf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tosf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tosf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-inf-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-inf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-lf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-lf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-osf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-osf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-sup-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-sup-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-inf-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-inf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-lf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-lf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-lf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-lf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-osf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-osf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-osf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-osf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-sup-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-sup-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tlf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tlf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tlf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tlf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tosf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tosf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tosf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tosf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-inf-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-inf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-lf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-lf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-lf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-lf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-osf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-osf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-osf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-osf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-sup-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-sup-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tlf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tlf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tlf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tlf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tosf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tosf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tosf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tosf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-inf-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-inf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-lf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-lf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-lf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-lf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-osf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-osf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-osf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-osf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-sup-ly1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-sup-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ts1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-sc-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-t1.vf RELOC/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-inf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-inf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-lf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-lf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-lf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-osf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-osf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-osf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-sup-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-sup-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-tlf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-tlf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-tlf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-tosf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-tosf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-tosf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-inf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-inf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-sup-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-sup-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-inf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-inf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-lf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-lf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-lf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-osf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-osf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-osf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-sup-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-sup-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-tlf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-tlf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-tlf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-tosf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-tosf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-tosf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-inf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-inf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-sup-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-sup-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-inf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-inf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-sup-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-sup-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-inf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-inf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-sup-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-sup-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-inf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-inf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-lf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-lf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-lf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-osf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-osf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-osf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-sup-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-sup-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-tlf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-tlf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-tlf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-tosf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-tosf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-tosf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-inf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-inf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-lf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-lf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-lf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-osf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-osf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-osf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-sup-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-sup-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-tlf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-tlf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-tlf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-tosf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-tosf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-tosf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-inf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-inf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-sup-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-sup-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-inf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-inf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-lf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-lf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-lf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-osf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-osf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-osf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-sup-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-sup-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-tlf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-tlf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-tlf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-tosf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-tosf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-tosf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-inf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-inf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-sup-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-sup-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-inf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-inf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-lf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-lf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-lf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-osf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-osf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-osf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-sup-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-sup-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-tlf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-tlf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-tlf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-tosf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-tosf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-tosf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-inf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-inf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-lf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-lf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-lf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-osf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-osf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-osf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-sup-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-sup-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-tlf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-tlf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-tlf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-tosf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-tosf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-tosf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-inf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-inf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-sup-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-sup-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-ts1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-ly1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-ot1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-t1.vf - RELOC/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-ts1.vf RELOC/tex/latex/alegreya/Alegreya.sty RELOC/tex/latex/alegreya/AlegreyaSans.sty + RELOC/tex/latex/alegreya/LGRAlegreya-Inf.fd + RELOC/tex/latex/alegreya/LGRAlegreya-LF.fd + RELOC/tex/latex/alegreya/LGRAlegreya-OsF.fd + RELOC/tex/latex/alegreya/LGRAlegreya-Sup.fd + RELOC/tex/latex/alegreya/LGRAlegreya-TLF.fd + RELOC/tex/latex/alegreya/LGRAlegreya-TOsF.fd + RELOC/tex/latex/alegreya/LGRAlegreyaSans-Inf.fd + RELOC/tex/latex/alegreya/LGRAlegreyaSans-LF.fd + RELOC/tex/latex/alegreya/LGRAlegreyaSans-OsF.fd + RELOC/tex/latex/alegreya/LGRAlegreyaSans-Sup.fd + RELOC/tex/latex/alegreya/LGRAlegreyaSans-TLF.fd + RELOC/tex/latex/alegreya/LGRAlegreyaSans-TOsF.fd RELOC/tex/latex/alegreya/LY1Alegreya-Inf.fd RELOC/tex/latex/alegreya/LY1Alegreya-LF.fd RELOC/tex/latex/alegreya/LY1Alegreya-OsF.fd RELOC/tex/latex/alegreya/LY1Alegreya-Sup.fd RELOC/tex/latex/alegreya/LY1Alegreya-TLF.fd RELOC/tex/latex/alegreya/LY1Alegreya-TOsF.fd - RELOC/tex/latex/alegreya/LY1AlegreyaSC-TLF.fd RELOC/tex/latex/alegreya/LY1AlegreyaSans-Inf.fd RELOC/tex/latex/alegreya/LY1AlegreyaSans-LF.fd RELOC/tex/latex/alegreya/LY1AlegreyaSans-OsF.fd RELOC/tex/latex/alegreya/LY1AlegreyaSans-Sup.fd RELOC/tex/latex/alegreya/LY1AlegreyaSans-TLF.fd RELOC/tex/latex/alegreya/LY1AlegreyaSans-TOsF.fd - RELOC/tex/latex/alegreya/LY1AlegreyaSansSC-Inf.fd - RELOC/tex/latex/alegreya/LY1AlegreyaSansSC-LF.fd - RELOC/tex/latex/alegreya/LY1AlegreyaSansSC-OsF.fd - RELOC/tex/latex/alegreya/LY1AlegreyaSansSC-Sup.fd - RELOC/tex/latex/alegreya/LY1AlegreyaSansSC-TLF.fd - RELOC/tex/latex/alegreya/LY1AlegreyaSansSC-TOsF.fd RELOC/tex/latex/alegreya/OT1Alegreya-Inf.fd RELOC/tex/latex/alegreya/OT1Alegreya-LF.fd RELOC/tex/latex/alegreya/OT1Alegreya-OsF.fd RELOC/tex/latex/alegreya/OT1Alegreya-Sup.fd RELOC/tex/latex/alegreya/OT1Alegreya-TLF.fd RELOC/tex/latex/alegreya/OT1Alegreya-TOsF.fd - RELOC/tex/latex/alegreya/OT1AlegreyaSC-TLF.fd RELOC/tex/latex/alegreya/OT1AlegreyaSans-Inf.fd RELOC/tex/latex/alegreya/OT1AlegreyaSans-LF.fd RELOC/tex/latex/alegreya/OT1AlegreyaSans-OsF.fd RELOC/tex/latex/alegreya/OT1AlegreyaSans-Sup.fd RELOC/tex/latex/alegreya/OT1AlegreyaSans-TLF.fd RELOC/tex/latex/alegreya/OT1AlegreyaSans-TOsF.fd - RELOC/tex/latex/alegreya/OT1AlegreyaSansSC-Inf.fd - RELOC/tex/latex/alegreya/OT1AlegreyaSansSC-LF.fd - RELOC/tex/latex/alegreya/OT1AlegreyaSansSC-OsF.fd - RELOC/tex/latex/alegreya/OT1AlegreyaSansSC-Sup.fd - RELOC/tex/latex/alegreya/OT1AlegreyaSansSC-TLF.fd - RELOC/tex/latex/alegreya/OT1AlegreyaSansSC-TOsF.fd RELOC/tex/latex/alegreya/T1Alegreya-Inf.fd RELOC/tex/latex/alegreya/T1Alegreya-LF.fd RELOC/tex/latex/alegreya/T1Alegreya-OsF.fd RELOC/tex/latex/alegreya/T1Alegreya-Sup.fd RELOC/tex/latex/alegreya/T1Alegreya-TLF.fd RELOC/tex/latex/alegreya/T1Alegreya-TOsF.fd - RELOC/tex/latex/alegreya/T1AlegreyaSC-TLF.fd RELOC/tex/latex/alegreya/T1AlegreyaSans-Inf.fd RELOC/tex/latex/alegreya/T1AlegreyaSans-LF.fd RELOC/tex/latex/alegreya/T1AlegreyaSans-OsF.fd RELOC/tex/latex/alegreya/T1AlegreyaSans-Sup.fd RELOC/tex/latex/alegreya/T1AlegreyaSans-TLF.fd RELOC/tex/latex/alegreya/T1AlegreyaSans-TOsF.fd - RELOC/tex/latex/alegreya/T1AlegreyaSansSC-Inf.fd - RELOC/tex/latex/alegreya/T1AlegreyaSansSC-LF.fd - RELOC/tex/latex/alegreya/T1AlegreyaSansSC-OsF.fd - RELOC/tex/latex/alegreya/T1AlegreyaSansSC-Sup.fd - RELOC/tex/latex/alegreya/T1AlegreyaSansSC-TLF.fd - RELOC/tex/latex/alegreya/T1AlegreyaSansSC-TOsF.fd RELOC/tex/latex/alegreya/TS1Alegreya-LF.fd RELOC/tex/latex/alegreya/TS1Alegreya-OsF.fd RELOC/tex/latex/alegreya/TS1Alegreya-TLF.fd RELOC/tex/latex/alegreya/TS1Alegreya-TOsF.fd - RELOC/tex/latex/alegreya/TS1AlegreyaSC-TLF.fd RELOC/tex/latex/alegreya/TS1AlegreyaSans-LF.fd RELOC/tex/latex/alegreya/TS1AlegreyaSans-OsF.fd RELOC/tex/latex/alegreya/TS1AlegreyaSans-TLF.fd RELOC/tex/latex/alegreya/TS1AlegreyaSans-TOsF.fd - RELOC/tex/latex/alegreya/TS1AlegreyaSansSC-LF.fd - RELOC/tex/latex/alegreya/TS1AlegreyaSansSC-OsF.fd - RELOC/tex/latex/alegreya/TS1AlegreyaSansSC-TLF.fd - RELOC/tex/latex/alegreya/TS1AlegreyaSansSC-TOsF.fd -docfiles size=37 - RELOC/doc/fonts/alegreya/OFL.txt - RELOC/doc/fonts/alegreya/README - RELOC/doc/fonts/alegreya/alegreya-samples.pdf - RELOC/doc/fonts/alegreya/alegreya-samples.tex +catalogue-contact-home http://www.google.com/fonts catalogue-ctan /fonts/alegreya -catalogue-date 2015-09-02 13:51:30 +0200 -catalogue-license ofl -catalogue-topics font font-serif font-sans font-type1 font-ttf +catalogue-date 2019-03-07 19:00:42 +0100 +catalogue-license ofllppl +catalogue-topics font font-body font-serif font-sans font-proportional font-t1enc font-type1 font-otf name aleph category Package -revision 37078 -shortdesc Extended TeX. +revision 50602 +shortdesc Extended TeX longdesc An development of omega, using most of the extensions of TeX longdesc itself developed for e-TeX. depend latex depend plain depend lambda +depend cm +depend hyphen-base +depend knuth-lib +depend antomega +depend latex-fonts +depend omega depend aleph.ARCH -execute AddFormat name=aleph engine=aleph options=*aleph.ini -execute AddFormat name=lamed engine=aleph patterns=language.dat options=*lambda.ini -docfiles size=11 +execute AddFormat name=aleph engine=aleph options=*aleph.ini fmttriggers=cm,hyphen-base,knuth-lib,plain +execute AddFormat name=lamed engine=aleph patterns=language.dat options=*lambda.ini fmttriggers=cm,hyphen-base,antomega,lambda,latex,latex-fonts,omega +containersize 628 +containerchecksum 844257e47e80ae4cbd243dc2363ebd6524b97ebc87e02a3a14b8a650d28ba268acef6ea3ccb6eeaa22c12169981410970cd72aa57fd80f00881cc98fdd9004c7 +doccontainersize 30496 +doccontainerchecksum 8fa6b630a6567afd7f0789182dc382df21cd1557d556f0b9854e2628ca369c578aced877af0b6ef55fef3f12d0b46a30f3b3c92e8e53cee3d02554f35ed4891d +docfiles size=21 texmf-dist/doc/aleph/base/News texmf-dist/doc/aleph/base/readme.txt texmf-dist/doc/man/man1/aleph.1 texmf-dist/doc/man/man1/aleph.man1.pdf texmf-dist/doc/man/man1/lamed.1 texmf-dist/doc/man/man1/lamed.man1.pdf -catalogue-ctan /obsolete/systems/aleph -catalogue-date 2015-03-29 23:09:44 +0200 +catalogue-contact-bugs http://lists.tug.org/tex-k +catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/alephdir +catalogue-contact-support http://lists.tug.org/tex-k +catalogue-date 2019-01-02 05:38:30 +0100 catalogue-license gpl +catalogue-topics engine omega + +name aleph.aarch64-linux +category Package +revision 50700 +shortdesc aarch64-linux files of aleph +containersize 230320 +containerchecksum 4329aa67525b0200dcb83119646c23687497a9cb3ff4b61f24f580d899795f85e8eb835b25bd4a7f3e0faaa098758c6590b80d315ecf9a947a05229f2ea110fa +binfiles arch=aarch64-linux size=158 + bin/aarch64-linux/aleph + bin/aarch64-linux/lamed + +name aleph.amd64-freebsd +category Package +revision 50700 +shortdesc amd64-freebsd files of aleph +containersize 293608 +containerchecksum 2267cad0cbe2bac977d784b0cc7a195f69eef6f0b6c854847bebbb2b3a484b7335e0a88dd1b7f0aa002c3cadda0e0e2f8d3a45cac507201fd43d54e0119f27b6 +binfiles arch=amd64-freebsd size=192 + bin/amd64-freebsd/aleph + bin/amd64-freebsd/lamed + +name aleph.amd64-netbsd +category Package +revision 50693 +shortdesc amd64-netbsd files of aleph +containersize 218524 +containerchecksum 19015d24a641cfdc4c381f679528209a1ac768ea90db32adeec2fd4483895d359330aa2377b8a2563b489565d3ce020e9e665b4862f04f29cbb8d402f585f15d +binfiles arch=amd64-netbsd size=193 + bin/amd64-netbsd/aleph + bin/amd64-netbsd/lamed + +name aleph.armhf-linux +category Package +revision 50790 +shortdesc armhf-linux files of aleph +containersize 206096 +containerchecksum f8ca21c03a45ec98a85e232f7703ccb0bbcaacfbba2dfb1914f5fa1761c0b767e06fab55c373498fb7c25d8dbb4ec63926dfa0c32d73134c5f1ea6aa0deb7fe9 +binfiles arch=armhf-linux size=125 + bin/armhf-linux/aleph + bin/armhf-linux/lamed + +name aleph.i386-cygwin +category Package +revision 50855 +shortdesc i386-cygwin files of aleph +containersize 182060 +containerchecksum 7799a828d8586a00e85f60ea6a796814621f9302c3792406a3ab8b42cd3d4b1c9a214cc1c0921de8a710a07f615418c0a4008ae5eae322f029e6b141842b1441 +binfiles arch=i386-cygwin size=116 + bin/i386-cygwin/aleph.exe + bin/i386-cygwin/lamed + +name aleph.i386-freebsd +category Package +revision 50700 +shortdesc i386-freebsd files of aleph +containersize 211156 +containerchecksum 4b0c5bd49eb9be5dbb362952d94cc435bb5e346d08700108f713ed40efe8975e363afe1c577d89f7129d20e8dbdcc28ea3ad222a4d5746a3958451eafeecfec2 +binfiles arch=i386-freebsd size=164 + bin/i386-freebsd/aleph + bin/i386-freebsd/lamed name aleph.i386-linux category Package -revision 36790 +revision 50700 shortdesc i386-linux files of aleph -binfiles arch=i386-linux size=171 +containersize 228700 +containerchecksum d58f52725312930c0e7f3666b4d53f470bba64024c7a657f0368e4f8d35d9e5a2b4db3c08812fce8f53c61498674638895fa87442638621054bbb226df213679 +binfiles arch=i386-linux size=147 bin/i386-linux/aleph bin/i386-linux/lamed +name aleph.i386-netbsd +category Package +revision 50693 +shortdesc i386-netbsd files of aleph +containersize 163188 +containerchecksum 6a7f9b149a88d5a62336fe1dc71b5567d59bc5e289c449c50c4fad8e25943a597ce8ea9721aaa3fd6edcf5dff7f1e6190582857a4d3948609b3ebfd679be3ff7 +binfiles arch=i386-netbsd size=168 + bin/i386-netbsd/aleph + bin/i386-netbsd/lamed + +name aleph.i386-solaris +category Package +revision 50700 +shortdesc i386-solaris files of aleph +containersize 220808 +containerchecksum a6327f97dbb6e7ed65408d91ffb097b635161691d408505a3e99a6c3ca6a243ffb0e1388961f7fcef8349dcc091aff92f9d7d4c048e768f2fd74aeea84e3930b +binfiles arch=i386-solaris size=136 + bin/i386-solaris/aleph + bin/i386-solaris/lamed + +name aleph.win32 +category Package +revision 50540 +shortdesc win32 files of aleph +containersize 180648 +containerchecksum 3712c332e216f97762fc375da8570c1cb38c718d3a344afb9b43d7f95785c2bd9212f4399c30de7841f93f98f1db6da3a9ed7a05f1d8055c17f17bfb22523a59 +binfiles arch=win32 size=113 + bin/win32/aleph.dll + bin/win32/aleph.exe + bin/win32/lamed.exe + +name aleph.x86_64-cygwin +category Package +revision 50889 +shortdesc x86_64-cygwin files of aleph +containersize 209868 +containerchecksum 3d29c9000d41e076882dd5954365729b4065f1f1ada2993382bd7e67565dbcff8cf19aca501912d731de1a4a4fbe67c2b2e876e7f9e91dd4d66ec9373fccb517 +binfiles arch=x86_64-cygwin size=119 + bin/x86_64-cygwin/aleph.exe + bin/x86_64-cygwin/lamed + +name aleph.x86_64-darwin +category Package +revision 50700 +shortdesc x86_64-darwin files of aleph +containersize 297216 +containerchecksum 6e60118ae77394b2bca66b08235f08303e804059465cfdeebc64c302b11a670f17cb68fc3796557ae58627033c22d295afc5281424b53db414b89f720015530a +binfiles arch=x86_64-darwin size=189 + bin/x86_64-darwin/aleph + bin/x86_64-darwin/lamed + +name aleph.x86_64-darwinlegacy +category Package +revision 50700 +shortdesc x86_64-darwinlegacy files of aleph +containersize 232288 +containerchecksum a392278f13e2941847b5e1a469127972e7f543e236d5414f5848ea35a55c817e4d16bdd2fed6cc58f6758634b85847f60066bfd9d8665d40956c48c3cfc4b7a0 +binfiles arch=x86_64-darwinlegacy size=134 + bin/x86_64-darwinlegacy/aleph + bin/x86_64-darwinlegacy/lamed + +name aleph.x86_64-linux +category Package +revision 50700 +shortdesc x86_64-linux files of aleph +containersize 246524 +containerchecksum 7b394763989d45308daccef61c4a08e2856c158b2dae66f573a6d9c7f782e059fbcb69299a7053f00f14860accb2034044295c2ff1b8e2bfb57faae648da6557 +binfiles arch=x86_64-linux size=138 + bin/x86_64-linux/aleph + bin/x86_64-linux/lamed + +name aleph.x86_64-linuxmusl +category Package +revision 50700 +shortdesc x86_64-linuxmusl files of aleph +containersize 259652 +containerchecksum c5f9deeba94fa345551e2a2b1ac91cc1ae26e6236834a22a5df3b85e1643d8954e065a4d9a85df86a212818151f3133023bbf6d02fa0e347408b09929ce2cdb1 +binfiles arch=x86_64-linuxmusl size=160 + bin/x86_64-linuxmusl/aleph + bin/x86_64-linuxmusl/lamed + +name aleph.x86_64-solaris +category Package +revision 50700 +shortdesc x86_64-solaris files of aleph +containersize 262436 +containerchecksum af3ce44180919159858fc4bf6653c6c09a5ecee332e9d60e2764c455f10a340c690100df6d19e7d95623f49cae554356cbce187f1033483c24d9d4123b947f09 +binfiles arch=x86_64-solaris size=151 + bin/x86_64-solaris/aleph + bin/x86_64-solaris/lamed + name alertmessage category Package revision 38055 @@ -4240,28 +11957,247 @@ shortdesc Alert messages for LaTeX relocated 1 longdesc Some macros to display alert messages (informations, errors, longdesc warnings and success messages). +containersize 6872 +containerchecksum df06377244dbd962326646fcd0aad535733d275ff6a86bed3739e8b77c6d1231290c4628a98be50d92e9006f25be68c20d5fc5e92c82a6cf841c0af5670f7ca9 +doccontainersize 106744 +doccontainerchecksum 412cecb146790ed0b7fae601d9ef0eb14381cf75ed20ff1bab3190c249750fb693708c2dce26e76da370a265f99dd312dc6747b6c9e7de62ef51a709accf7e60 +docfiles size=28 + RELOC/doc/latex/alertmessage/README.md details="Readme" + RELOC/doc/latex/alertmessage/alertmessage.pdf details="Package documentation" +srccontainersize 2460 +srccontainerchecksum c670adb01cc2e1dfa0997f6faef9a0d0b31ad2c6329174597b781580f02ba5dfffa7afb4538e0e740271d7f9f70b48a1caab91cadf8282d89a3f9a35c8ae8897 +srcfiles size=3 + RELOC/source/latex/alertmessage/alertmessage.dtx + RELOC/source/latex/alertmessage/alertmessage.ins runfiles size=5 RELOC/tex/latex/alertmessage/alertmessage.sty RELOC/tex/latex/alertmessage/img/alertmessage-error.png RELOC/tex/latex/alertmessage/img/alertmessage-info.png RELOC/tex/latex/alertmessage/img/alertmessage-success.png RELOC/tex/latex/alertmessage/img/alertmessage-warning.png -docfiles size=28 - RELOC/doc/latex/alertmessage/README.md - RELOC/doc/latex/alertmessage/alertmessage.pdf -srcfiles size=3 - RELOC/source/latex/alertmessage/alertmessage.dtx - RELOC/source/latex/alertmessage/alertmessage.ins +catalogue-contact-repository https://github.com/pidupuis/latex-alert-message catalogue-ctan /macros/latex/contrib/alertmessage -catalogue-date 2015-08-05 05:51:16 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 catalogue-topics boxing catalogue-version 1.1 +name alg +category Package +revision 15878 +shortdesc LaTeX environments for typesetting algorithms +relocated 1 +longdesc Defines two environments for typesetting algorithms in LaTeX2e. +longdesc The algtab environment is used to typeset an algorithm with +longdesc automatically numbered lines. The algorithm environment can be +longdesc used to encapsulate the algtab environment algorithm in a +longdesc floating body together with a header, a caption, etc. +longdesc \listofalgorithms is defined. +containersize 2568 +containerchecksum 923f36ab03aa10cf3da008f4b3d7ba5919f3e4a512c82fd1c42386df22019ca70c4c1700b7596750a00ea7c50586bdb803db3fee22edfbc402ebb9e249668e99 +doccontainersize 1116 +doccontainerchecksum d94795e7513612f3eb102b85b9fdcc792b175411fd67edd6779037b1e0dc101378159f58c6c6feb82ca6b73ea2a6fd415a36e4a4ea67913a0d1110582a41e38d +docfiles size=1 + RELOC/doc/latex/alg/readme.txt +srccontainersize 5768 +srccontainerchecksum a8231edf9c10855b312bb00f2bf37b68ada65b876ab621f459b3ee12da5bc5b90080ab6eff5c3a48c0821753a02576aac0100b3a577cfb7c5dc2cd4b47c8a026 +srcfiles size=6 + RELOC/source/latex/alg/alg.dtx + RELOC/source/latex/alg/alg.ins +runfiles size=2 + RELOC/tex/latex/alg/alg.sty +catalogue-also algorithms +catalogue-ctan /macros/latex/contrib/alg +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics pseudocode + +name algobox +category Package +revision 45223 +shortdesc Typeset Algobox programs +relocated 1 +longdesc This LaTeX package can typeset Algobox programs almost exactly +longdesc as displayed when editing with Algobox itself, using an input +longdesc syntax very similar to the actual Algobox program text. It +longdesc gives better results than Algobox's own LaTeX export which does +longdesc not look like the editor rendition, produces standalone +longdesc documents cumbersome to customize, and has arbitrary and +longdesc inconsistent differences between the input syntax and the +longdesc program text. This package depends upon the following other +longdesc LaTeX packages: expl3, TikZ, environ, xparse, and xcolor. +containersize 3632 +containerchecksum e139637e873a42abea92aeadd1a8c92ac29dfd30f6373e5b97b21422887d564ab1e6a8f8770d2e0847aed6e1cc9f16602367c1699e7217d0076bf9f23080a888 +doccontainersize 140576 +doccontainerchecksum 9c6e1118868d718184081a2372f4ed60cef1eed421a25a00689180ed4e510e1a86590f78a5de106089d8eb329d8f2e9903f37e9c176bb00faa3ea72ab7cd034f +docfiles size=43 + RELOC/doc/latex/algobox/LICENSE + RELOC/doc/latex/algobox/README.md details="Readme" + RELOC/doc/latex/algobox/algobox.pdf details="Package documentation" +srccontainersize 5512 +srccontainerchecksum e887fe85c9d48bfcad8611f96b055552dd88a0ceb92726ff7e4b149aa5c058f48cd5fbd613fee0fdc8cc80ea2f76178132a54ddb617bd6ca30ffe29c7497092c +srcfiles size=6 + RELOC/source/latex/algobox/algobox.dtx + RELOC/source/latex/algobox/algobox.ins +runfiles size=4 + RELOC/tex/latex/algobox/algobox.sty +catalogue-contact-bugs https://gitlab.com/frnchfrgg-latex/algobox/issues +catalogue-contact-home https://gitlab.com/frnchfrgg-latex/algobox/wikis/home +catalogue-contact-repository https://gitlab.com/frnchfrgg-latex/algobox +catalogue-ctan /macros/latex/contrib/algobox +catalogue-date 2017-09-07 05:54:52 +0200 +catalogue-license gpl3+ +catalogue-topics listing program-doc +catalogue-version 1.2a + +name algolrevived +category Package +revision 51120 +shortdesc A revival of Frutiger's Algol alphabet +relocated 1 +longdesc The package revives Frutinger's Algol alphabet, designed in +longdesc 1963 for the code segments in an ALGOL manual. OpenType and +longdesc type1, regular and medium weights, upright and slanted. Not +longdesc monospaced, but good for listings if you don't need code to be +longdesc aligned with specific columns. It also makes a passable but +longdesc limited text font. +execute addMap AlgolRevived.map +containersize 745776 +containerchecksum aaf1e125a541e43ff8aa1a0c2a8cc356c339a0e7fdd89d1717252194878ee281d4253e9e67c15d80da3edc6109063be07ea55c5aa83f9d5cfab75001c4e07fe2 +doccontainersize 137248 +doccontainerchecksum 780826665e0670840e66e01f616cc21de709af23f0a6da3c9dbdf7fe24ed368d1e717c45d22981c22a516f8be8eae114f9a8af9fe32e90de42a655487edff22f +docfiles size=49 + RELOC/doc/fonts/algolrevived/OFL-FAQ.txt + RELOC/doc/fonts/algolrevived/OFL.txt + RELOC/doc/fonts/algolrevived/README details="Readme" + RELOC/doc/fonts/algolrevived/algolrevived-doc.pdf details="Package documentation" + RELOC/doc/fonts/algolrevived/algolrevived-doc.tex +runfiles size=399 + RELOC/fonts/enc/dvips/algolrevived/zal_2jqefy.enc + RELOC/fonts/enc/dvips/algolrevived/zal_2mszih.enc + RELOC/fonts/enc/dvips/algolrevived/zal_57w4vb.enc + RELOC/fonts/enc/dvips/algolrevived/zal_72x6h3.enc + RELOC/fonts/enc/dvips/algolrevived/zal_7ov2yu.enc + RELOC/fonts/enc/dvips/algolrevived/zal_bfgpej.enc + RELOC/fonts/enc/dvips/algolrevived/zal_d42lnn.enc + RELOC/fonts/enc/dvips/algolrevived/zal_ekxevm.enc + RELOC/fonts/enc/dvips/algolrevived/zal_guukkf.enc + RELOC/fonts/enc/dvips/algolrevived/zal_hqfuhr.enc + RELOC/fonts/enc/dvips/algolrevived/zal_inb5zw.enc + RELOC/fonts/enc/dvips/algolrevived/zal_jmq5jf.enc + RELOC/fonts/enc/dvips/algolrevived/zal_lxmhqh.enc + RELOC/fonts/enc/dvips/algolrevived/zal_mcsceh.enc + RELOC/fonts/enc/dvips/algolrevived/zal_mdij5b.enc + RELOC/fonts/enc/dvips/algolrevived/zal_pm6juk.enc + RELOC/fonts/enc/dvips/algolrevived/zal_pnud6o.enc + RELOC/fonts/enc/dvips/algolrevived/zal_qtlmay.enc + RELOC/fonts/enc/dvips/algolrevived/zal_r4wefe.enc + RELOC/fonts/enc/dvips/algolrevived/zal_u3v7sl.enc + RELOC/fonts/enc/dvips/algolrevived/zal_vawbng.enc + RELOC/fonts/enc/dvips/algolrevived/zal_yz65wh.enc + RELOC/fonts/enc/dvips/algolrevived/zal_ziib6p.enc + RELOC/fonts/enc/dvips/algolrevived/zal_zqbwat.enc + RELOC/fonts/map/dvips/algolrevived/AlgolRevived.map + RELOC/fonts/opentype/public/algolrevived/AlgolRevived-Medium.otf + RELOC/fonts/opentype/public/algolrevived/AlgolRevived-MediumSlanted.otf + RELOC/fonts/opentype/public/algolrevived/AlgolRevived-Slanted.otf + RELOC/fonts/opentype/public/algolrevived/AlgolRevived.otf + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-inf-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-inf-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-inf-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-inf-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-sup-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-sup-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-sup-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-tlf-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-inf-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-inf-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-inf-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-inf-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-sup-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-sup-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-sup-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-sup-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-tlf-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-tlf-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-tlf-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-tlf-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-MediumSlanted-tlf-ts1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-inf-ly1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-inf-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-inf-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-inf-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-inf-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-sup-ly1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-sup-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-sup-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-sup-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-sup-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-tlf-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-tlf-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-tlf-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-tlf-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-Slanted-tlf-ts1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-inf-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-inf-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-inf-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-inf-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-sup-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-sup-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-sup-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-sup-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-tlf-ly1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-tlf-ot1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-tlf-t1--base.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-tlf-t1.tfm + RELOC/fonts/tfm/public/algolrevived/AlgolRevived-tlf-ts1.tfm + RELOC/fonts/type1/public/algolrevived/AlgolRevived-Medium.pfb + RELOC/fonts/type1/public/algolrevived/AlgolRevived-MediumSlanted.pfb + RELOC/fonts/type1/public/algolrevived/AlgolRevived-Slanted.pfb + RELOC/fonts/type1/public/algolrevived/AlgolRevived.pfb + RELOC/fonts/vf/public/algolrevived/AlgolRevived-Medium-inf-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-Medium-sup-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-Medium-tlf-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-MediumSlanted-inf-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-MediumSlanted-sup-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-MediumSlanted-tlf-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-Slanted-inf-ly1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-Slanted-inf-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-Slanted-sup-ly1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-Slanted-sup-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-Slanted-tlf-ly1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-Slanted-tlf-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-inf-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-sup-t1.vf + RELOC/fonts/vf/public/algolrevived/AlgolRevived-tlf-t1.vf + RELOC/tex/latex/algolrevived/LY1AlgolRevived-Inf.fd + RELOC/tex/latex/algolrevived/LY1AlgolRevived-Sup.fd + RELOC/tex/latex/algolrevived/LY1AlgolRevived-TLF.fd + RELOC/tex/latex/algolrevived/OT1AlgolRevived-Inf.fd + RELOC/tex/latex/algolrevived/OT1AlgolRevived-Sup.fd + RELOC/tex/latex/algolrevived/OT1AlgolRevived-TLF.fd + RELOC/tex/latex/algolrevived/T1AlgolRevived-Inf.fd + RELOC/tex/latex/algolrevived/T1AlgolRevived-Sup.fd + RELOC/tex/latex/algolrevived/T1AlgolRevived-TLF.fd + RELOC/tex/latex/algolrevived/TS1AlgolRevived-TLF.fd + RELOC/tex/latex/algolrevived/algolrevived.fontspec + RELOC/tex/latex/algolrevived/algolrevived.sty +catalogue-ctan /fonts/algolrevived +catalogue-date 2019-05-13 19:23:30 +0200 +catalogue-license ofllppl1.3c +catalogue-topics font font-ttf font-t1enc +catalogue-version 1.02 + name algorithm2e category Package -revision 28749 -shortdesc Floating algorithm environment with algorithmic keywords. +revision 44846 +shortdesc Floating algorithm environment with algorithmic keywords relocated 1 longdesc Algorithm2e is an environment for writing algorithms. An longdesc algorithm becomes a floating object (like figure, table, etc.). @@ -4272,11 +12208,13 @@ longdesc vertical lines delimiting a block of instructions in an longdesc algorithm, and defines different sorts of algorithms such as longdesc Procedure or Function; the name of these functions may be longdesc reused in the text or in other algorithms. -runfiles size=34 - RELOC/tex/latex/algorithm2e/algorithm2e.sty -docfiles size=165 - RELOC/doc/latex/algorithm2e/README - RELOC/doc/latex/algorithm2e/algorithm2e.pdf +containersize 32880 +containerchecksum 0203f337518811a04f255a1ea65045f487dbb4813fb848e0ba1b52d3e5fba96b784852d7e900a82f4c047c2943098e3b37cbca27322d115c341fef6d262c60cf +doccontainersize 559228 +doccontainerchecksum ae737056adb53f943ae8c92d8e7bfffe52a107cca4a7a3151932a581744f1396f43e134a55e9894de0ae1fb5418983ba4643e1e07487b690478a6979555d8768 +docfiles size=183 + RELOC/doc/latex/algorithm2e/README details="Package Readme" + RELOC/doc/latex/algorithm2e/algorithm2e.pdf details="Package documentation" RELOC/doc/latex/algorithm2e/algorithm2e.tex RELOC/doc/latex/algorithm2e/algorithm2e_ex01.tex RELOC/doc/latex/algorithm2e/algorithm2e_ex02.tex @@ -4290,17 +12228,22 @@ docfiles size=165 RELOC/doc/latex/algorithm2e/algorithm2e_exProg.tex RELOC/doc/latex/algorithm2e/algorithm2e_exfor.tex RELOC/doc/latex/algorithm2e/algorithm2e_exgeneric.tex + RELOC/doc/latex/algorithm2e/algorithm2e_exgeneric2.tex + RELOC/doc/latex/algorithm2e/algorithm2e_exnlsty.tex RELOC/doc/latex/algorithm2e/algorithm2e_exrepeat.tex RELOC/doc/latex/algorithm2e/algorithm2e_exswitch.tex +runfiles size=41 + RELOC/tex/latex/algorithm2e/algorithm2e.sty catalogue-ctan /macros/latex/contrib/algorithm2e -catalogue-date 2013-01-06 21:16:44 +0100 +catalogue-date 2017-07-19 09:57:55 +0200 catalogue-license lppl -catalogue-version 5.0 +catalogue-topics pseudocode +catalogue-version 5.2 name algorithmicx category Package revision 15878 -shortdesc The algorithmic style you always wanted. +shortdesc The algorithmic style you always wanted relocated 1 longdesc Algorithmicx provides a flexible, yet easy to use, way for longdesc inserting good looking pseudocode or source code in your @@ -4308,6 +12251,14 @@ longdesc papers. It has built in support for Pseudocode, Pascal and C, longdesc and offers powerful means to create definitions for any longdesc programming language. The user can adapt a Pseudocode style to longdesc his native language. +containersize 7716 +containerchecksum b6cccb7bc391ad11a8996d3e6a3a48f79e50e3e685a4b7670a3399d5d400435616794100b38e73d32633fc16cdd1795c2dcd57bc79279266dc6509bb14d08804 +doccontainersize 170008 +doccontainerchecksum cda9c4082faeaaf504194d75c014fda9cda20fe85ab9dd8c4f5a3c9e39fc2c8c8428ef20b921790f36c8abae2ecd8ea089353db540477909039575bc65ed5228 +docfiles size=61 + RELOC/doc/latex/algorithmicx/README details="Package README" + RELOC/doc/latex/algorithmicx/algorithmicx.pdf details="Package documentation" + RELOC/doc/latex/algorithmicx/algorithmicx.tex runfiles size=12 RELOC/tex/latex/algorithmicx/algc.sty RELOC/tex/latex/algorithmicx/algcompatible.sty @@ -4315,17 +12266,14 @@ runfiles size=12 RELOC/tex/latex/algorithmicx/algorithmicx.sty RELOC/tex/latex/algorithmicx/algpascal.sty RELOC/tex/latex/algorithmicx/algpseudocode.sty -docfiles size=61 - RELOC/doc/latex/algorithmicx/README - RELOC/doc/latex/algorithmicx/algorithmicx.pdf - RELOC/doc/latex/algorithmicx/algorithmicx.tex catalogue-ctan /macros/latex/contrib/algorithmicx -catalogue-date 2011-10-12 10:38:00 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics pseudocode listing name algorithms category Package -revision 38085 +revision 42428 shortdesc A suite of tools for typesetting algorithms in pseudo-code relocated 1 longdesc Consists of two environments: algorithm and algorithmic. The @@ -4333,56 +12281,106 @@ longdesc algorithm package defines a floating algorithm environment longdesc designed to work with the algorithmic style. Within an longdesc algorithmic environment a number of commands for typesetting longdesc popular algorithmic constructs are available. -runfiles size=4 - RELOC/tex/latex/algorithms/algorithm.sty - RELOC/tex/latex/algorithms/algorithmic.sty +containersize 3472 +containerchecksum ba02581f18b74ef97f37b7c1052bb7577b256ef94232b045a43c841fc4705f8d7ebcb2b286d95dd70943d309080b05d36dbf847ecd6e661038d6e375d514a787 +doccontainersize 293444 +doccontainerchecksum 3658a5a31162acf5ea1dc318503a2f9e74944cb998494083de76e2e31119bbc22094bfd41e048f5628730df359d2359943cec3cebd07b364a81703b92520dd01 docfiles size=91 RELOC/doc/latex/algorithms/COPYING - RELOC/doc/latex/algorithms/README + RELOC/doc/latex/algorithms/README details="Readme" RELOC/doc/latex/algorithms/THANKS - RELOC/doc/latex/algorithms/algorithms.pdf + RELOC/doc/latex/algorithms/algorithms.pdf details="Package documentation" language="en" +srccontainersize 11940 +srccontainerchecksum d83acd2275e83d37b5bb9a24d9cb0efbf711a2fb76a9a5a18d7299c95d6e1e0ac8fb41990b795a21b23b5e4fd8de5ef08fa480c6b2eaa7d1f7644e0d44c2f1fa srcfiles size=13 RELOC/source/latex/algorithms/algorithms.dtx RELOC/source/latex/algorithms/algorithms.ins +runfiles size=4 + RELOC/tex/latex/algorithms/algorithm.sty + RELOC/tex/latex/algorithms/algorithmic.sty catalogue-also alg catalogue-ctan /macros/latex/contrib/algorithms -catalogue-date 2015-08-03 05:43:12 +0200 -catalogue-license lgpl +catalogue-date 2018-10-09 05:55:09 +0200 +catalogue-license lgpl2.1 catalogue-topics pseudocode catalogue-version 0.1 -name alg +name aligned-overset category Package -revision 15878 -shortdesc LaTeX environments for typesetting algorithms. +revision 47290 +shortdesc Fix alignment at \overset or \underset relocated 1 -longdesc Defines two environments for typesetting algorithms in LaTeX2e. -longdesc The algtab environment is used to typeset an algorithm with -longdesc automatically numbered lines. The algorithm environment can be -longdesc used to encapsulate the algtab environment algorithm in a -longdesc floating body together with a header, a caption, etc. -longdesc \listofalgorithms is defined. -runfiles size=2 - RELOC/tex/latex/alg/alg.sty -docfiles size=1 - RELOC/doc/latex/alg/readme.txt -srcfiles size=6 - RELOC/source/latex/alg/alg.dtx - RELOC/source/latex/alg/alg.ins -catalogue-ctan /macros/latex/contrib/alg -catalogue-date 2015-02-23 19:43:15 +0100 -catalogue-license lppl +longdesc This package allows the base character of \underset or \overset +longdesc to be used as the alignment position for the amsmath aligned +longdesc math environments. +containersize 1256 +containerchecksum 3998cd5515ad43e559da91bd1f25b835743299ec13fcf22ee9cb3aadc44c285f428ee701f5b27141c4d03c97b31a31e8620a2911854a1781ee5543a99073fed4 +doccontainersize 378812 +doccontainerchecksum d44ff38fe36352e1498e12eb56652e935cfeeb9ce6af5711bebe7844b1b7ba16864c8dac3c3b5f2e2bd6fee86de38c7555d5796940b834ce1ad396f5d2cb536e +docfiles size=94 + RELOC/doc/latex/aligned-overset/README.md details="Readme" + RELOC/doc/latex/aligned-overset/aligned-overset.pdf details="Package documentation" +srccontainersize 1900 +srccontainerchecksum 56584744fe5700505608c6ced57fed83fa189c9e755b63521f466f40e1080a35032b007831316e4b080cf93ef36958873924246a4cdfe2b0f129effda75380b6 +srcfiles size=2 + RELOC/source/latex/aligned-overset/aligned-overset.dtx +runfiles size=1 + RELOC/tex/latex/aligned-overset/aligned-overset.sty +catalogue-ctan /macros/latex/contrib/aligned-overset +catalogue-date 2018-04-04 16:01:59 +0200 +catalogue-license lppl1.3c +catalogue-topics maths +catalogue-version 0.1.0 + +name alkalami +category Package +revision 44497 +shortdesc A font for Arabic-based writing systems in Nigeria and Niger +relocated 1 +longdesc This font is designed for Arabic-based writing systems in the +longdesc Kano region of Nigeria and Niger. +containersize 98212 +containerchecksum 57d8a09d5643536cb2341cfd7bd84f24f101ebd73ef1456a39fa8557fc81bb6bddfb58990c38d4da229da5c6ccba0b4d956d82f7d07d65c57a87c749ba3ef841 +doccontainersize 29400 +doccontainerchecksum c9ebe4fc7bbcb254e0fa0f027e93680be2d1690cded2d9b18f3da091544b05f5dcf38b87400f8c5b8d4dd9ec320379c752615fea99d010a118bf35f4693c704a +docfiles size=12 + RELOC/doc/fonts/alkalami/AlkalamiSample.pdf details="Font sample" + RELOC/doc/fonts/alkalami/AlkalamiSample.tex + RELOC/doc/fonts/alkalami/OFL.txt + RELOC/doc/fonts/alkalami/README.TEXLIVE + RELOC/doc/fonts/alkalami/README.txt details="Readme" +runfiles size=74 + RELOC/fonts/truetype/public/alkalami/Alkalami-Light.ttf + RELOC/fonts/truetype/public/alkalami/Alkalami-Regular.ttf +catalogue-contact-home http://software.sil.org/alkalami/ +catalogue-ctan /fonts/alkalami +catalogue-date 2017-06-07 05:22:03 +0200 +catalogue-license ofl +catalogue-topics font-arabic font-ttf +catalogue-version 1.000 name allrunes category Package -revision 21886 -shortdesc Fonts and LaTeX package for almost all runes. +revision 42221 +shortdesc Fonts and LaTeX package for almost all runes relocated 1 longdesc This large collection of fonts (in Adobe Type 1 format), with longdesc the LaTeX package gives access to almost all runes ever used in longdesc Europe. The bundle covers not only the main forms but also a longdesc lot of varieties. execute addMixedMap allrunes.map +containersize 8035784 +containerchecksum d05513d484f11a9fcb5d202d02e7ea586cc82c44abe0488294e58c6f31185b083026bad3f17186ff03456481200e05e2ec4a7a7348f6b8fa4e952702b15274eb +doccontainersize 193488 +doccontainerchecksum 569f61370178f2517ea4d4625209a1359cd56913073344816f4fa8aa19edc8bc63c073de4373adb0a0a8c8d45fe392da9869bd16bd7477da65d5b0decfe6de61 +docfiles size=68 + RELOC/doc/fonts/allrunes/README.txt details="Package Readme" + RELOC/doc/fonts/allrunes/allrunes.pdf details="Package documentation" +srccontainersize 42048 +srccontainerchecksum 9765fe328824806dd96ca1a0e9678ba385eb61acf95d8447213492843f908de65209022d76303be816ee1c500e95aeb35280f3377369315a87752a0c4478feb5 +srcfiles size=96 + RELOC/source/fonts/allrunes/allrunes.dtx + RELOC/source/fonts/allrunes/allrunes.ins runfiles size=2728 RELOC/fonts/map/dvips/allrunes/allrunes.map RELOC/fonts/source/public/allrunes/frua.mf @@ -4832,16 +12830,131 @@ runfiles size=2728 RELOC/tex/latex/allrunes/arm.fd RELOC/tex/latex/allrunes/arn.fd RELOC/tex/latex/allrunes/art.fd -docfiles size=159 - RELOC/doc/fonts/allrunes/README - RELOC/doc/fonts/allrunes/allrunes.pdf -srcfiles size=96 - RELOC/source/fonts/allrunes/allrunes.dtx - RELOC/source/fonts/allrunes/allrunes.ins +catalogue-also runic futhark +catalogue-contact-home http://www.maths.lth.se/~carl/allrunes/ catalogue-ctan /fonts/allrunes -catalogue-date 2014-04-03 23:09:57 +0200 +catalogue-date 2017-10-29 14:09:26 +0100 catalogue-license lppl -catalogue-version 2.1 +catalogue-topics font font-rune font-mf font-type1 +catalogue-version 2.1.1 + +name almendra +category Package +revision 51085 +shortdesc Almendra fonts with LaTeX support +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Almendra family of fonts, designed by Ana +longdesc Sanfelippo. Almendra is a typeface design based on calligraphy. +longdesc Its style is related to the chancery and gothic hands. There +longdesc are regular and bold weights with matching italics. There is +longdesc also a regular-weight small-caps. +execute addMap almendra.map +containersize 357428 +containerchecksum 751aa6e8a5b25951386d9fb709470e25bd727eed3e1b724dcdf59d802af707bbfd8da77a38a0976a9aa087b95d37b89dc48a67e4b7e0e13ca38927b304ec7867 +doccontainersize 26120 +doccontainerchecksum 0161002a9439624e52edefbb6f15c87ec1fb5d73c056f17e9810a7a1636b041a57868c1d9f56e37b035daec8c0bdbda012eb2f620f9e01c3fba4d5230c99ad2e +docfiles size=10 + RELOC/doc/fonts/almendra/OFL.txt + RELOC/doc/fonts/almendra/README details="Readme" + RELOC/doc/fonts/almendra/almendra-samples.pdf details="Package documentation" + RELOC/doc/fonts/almendra/almendra-samples.tex +runfiles size=203 + RELOC/fonts/enc/dvips/almendra/almnd_3ehf7b.enc + RELOC/fonts/enc/dvips/almendra/almnd_3qmmf2.enc + RELOC/fonts/enc/dvips/almendra/almnd_3smkg7.enc + RELOC/fonts/enc/dvips/almendra/almnd_4ostoe.enc + RELOC/fonts/enc/dvips/almendra/almnd_aisq53.enc + RELOC/fonts/enc/dvips/almendra/almnd_aphd5h.enc + RELOC/fonts/enc/dvips/almendra/almnd_cksmvz.enc + RELOC/fonts/enc/dvips/almendra/almnd_ktaaad.enc + RELOC/fonts/enc/dvips/almendra/almnd_ncjtqa.enc + RELOC/fonts/enc/dvips/almendra/almnd_qv6mtu.enc + RELOC/fonts/enc/dvips/almendra/almnd_w4vl5k.enc + RELOC/fonts/enc/dvips/almendra/almnd_yh7c3k.enc + RELOC/fonts/enc/dvips/almendra/almnd_yuo247.enc + RELOC/fonts/map/dvips/almendra/almendra.map + RELOC/fonts/tfm/public/almendra/Almendra-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/almendra/Almendra-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/almendra/Almendra-Bold-osf-ot1--base.tfm + RELOC/fonts/tfm/public/almendra/Almendra-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/almendra/Almendra-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/almendra/Almendra-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/almendra/Almendra-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/almendra/Almendra-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/almendra/Almendra-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/almendra/Almendra-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/almendra/Almendra-BoldItalic-osf-ot1--base.tfm + RELOC/fonts/tfm/public/almendra/Almendra-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/almendra/Almendra-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/almendra/Almendra-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/almendra/Almendra-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/almendra/Almendra-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/almendra/Almendra-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/almendra/Almendra-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/almendra/Almendra-Italic-osf-ot1--base.tfm + RELOC/fonts/tfm/public/almendra/Almendra-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/almendra/Almendra-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/almendra/Almendra-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/almendra/Almendra-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/almendra/Almendra-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/almendra/Almendra-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/almendra/Almendra-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/almendra/Almendra-Regular-osf-ot1--base.tfm + RELOC/fonts/tfm/public/almendra/Almendra-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/almendra/Almendra-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/almendra/Almendra-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/almendra/Almendra-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/almendra/Almendra-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/almendra/AlmendraSmallCaps-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/almendra/AlmendraSmallCaps-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/almendra/AlmendraSmallCaps-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/almendra/AlmendraSmallCaps-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/almendra/AlmendraSmallCaps-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/almendra/AlmendraSmallCaps-osf-sc-t1.tfm + RELOC/fonts/tfm/public/almendra/AlmendraSmallCaps-osf-sc-ts1--base.tfm + RELOC/fonts/tfm/public/almendra/AlmendraSmallCaps-osf-sc-ts1.tfm + RELOC/fonts/truetype/public/almendra/Almendra-Bold.ttf + RELOC/fonts/truetype/public/almendra/Almendra-BoldItalic.ttf + RELOC/fonts/truetype/public/almendra/Almendra-Italic.ttf + RELOC/fonts/truetype/public/almendra/Almendra-Regular.ttf + RELOC/fonts/truetype/public/almendra/AlmendraSmallCaps.ttf + RELOC/fonts/type1/public/almendra/Almendra-Bold.pfb + RELOC/fonts/type1/public/almendra/Almendra-BoldItalic.pfb + RELOC/fonts/type1/public/almendra/Almendra-Italic.pfb + RELOC/fonts/type1/public/almendra/Almendra-Regular.pfb + RELOC/fonts/type1/public/almendra/AlmendraDisplay-Regular.pfb + RELOC/fonts/type1/public/almendra/AlmendraSmallCaps.pfb + RELOC/fonts/vf/public/almendra/Almendra-Bold-osf-ly1.vf + RELOC/fonts/vf/public/almendra/Almendra-Bold-osf-ot1.vf + RELOC/fonts/vf/public/almendra/Almendra-Bold-osf-t1.vf + RELOC/fonts/vf/public/almendra/Almendra-Bold-osf-ts1.vf + RELOC/fonts/vf/public/almendra/Almendra-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/almendra/Almendra-BoldItalic-osf-ot1.vf + RELOC/fonts/vf/public/almendra/Almendra-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/almendra/Almendra-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/almendra/Almendra-Italic-osf-ly1.vf + RELOC/fonts/vf/public/almendra/Almendra-Italic-osf-ot1.vf + RELOC/fonts/vf/public/almendra/Almendra-Italic-osf-t1.vf + RELOC/fonts/vf/public/almendra/Almendra-Italic-osf-ts1.vf + RELOC/fonts/vf/public/almendra/Almendra-Regular-osf-ly1.vf + RELOC/fonts/vf/public/almendra/Almendra-Regular-osf-ot1.vf + RELOC/fonts/vf/public/almendra/Almendra-Regular-osf-t1.vf + RELOC/fonts/vf/public/almendra/Almendra-Regular-osf-ts1.vf + RELOC/fonts/vf/public/almendra/AlmendraSmallCaps-osf-sc-ly1.vf + RELOC/fonts/vf/public/almendra/AlmendraSmallCaps-osf-sc-ot1.vf + RELOC/fonts/vf/public/almendra/AlmendraSmallCaps-osf-sc-t1.vf + RELOC/fonts/vf/public/almendra/AlmendraSmallCaps-osf-sc-ts1.vf + RELOC/tex/latex/almendra/LY1Almendra-OsF.fd + RELOC/tex/latex/almendra/OT1Almendra-OsF.fd + RELOC/tex/latex/almendra/T1Almendra-OsF.fd + RELOC/tex/latex/almendra/TS1Almendra-OsF.fd + RELOC/tex/latex/almendra/almendra.sty +catalogue-contact-home https://fonts.google.com/specimen/Almendra +catalogue-ctan /fonts/almendra +catalogue-date 2019-05-11 19:47:17 +0200 +catalogue-license lpplofl +catalogue-topics font font-serif font-proportional font-body font-ttf font-type1 font-t1enc name almfixed category Package @@ -4849,16 +12962,16 @@ revision 35065 shortdesc Arabic-Latin Modern Fixed extends TeX-Gyre Latin Modern Mono 10 Regular to full Arabic Unicode support relocated 1 longdesc Arabic-Latin Modern Fixed is an extension of TeX-Gyre Latin -longdesc Modern Mono 10 Regular. Every glyph and opentype feature of the +longdesc Modern Mono 10 Regular. Every glyph and OpenType feature of the longdesc Latin Modern Mono has been retained, with minor improvements. longdesc On the other hand, we have changed the vertical metrics of the -longdesc font. Although the Arabic script is designed to use the same x- -longdesc size as Latin Modern Mono, the former script needs greater +longdesc font. Although the Arabic script is designed to use the same +longdesc x-size as Latin Modern Mono, the former script needs greater longdesc ascender and descender space. Every Arabic glyph in each longdesc Unicode-code block is supported (up to Unicode 7.0): Arabic, longdesc Arabic Supplement, Arabic Extended, Arabic Presentation-Forms longdesc A, and Arabic Presentation-Forms B. There are two versions of -longdesc the font: otf and ttf. The opentype version is for print +longdesc the font: otf and ttf. The ?penType version is for print longdesc applications (and usually the default for TeX). The TrueType longdesc version is for on-screen applications such as text editors. longdesc Hinting in the ttf version is much better for on-screen, at @@ -4866,14 +12979,15 @@ longdesc least on Microsoft Windows. The unique feature of Arabic-Latin longdesc Modern is its treatment of vowels and diacritics. Each vowel longdesc and diacritic (ALM Fixed contains a total of 68 such glyphs) longdesc may now be edited horizontally within any text editor or -longdesc processor. The author believes this is the very first opentype +longdesc processor. The author believes this is the very first OpenType longdesc Arabic font ever to have this capability. Editing complex longdesc Arabic texts will now be much easier to input and to proofread. -runfiles size=222 - RELOC/fonts/opentype/public/almfixed/almfixed.otf - RELOC/fonts/truetype/public/almfixed/almfixed.ttf +containersize 246256 +containerchecksum 1a5e41cac48a33c4336fe03576c49165b47a0bec606b0a15a3563922b964a9a3c2de735cd88cf10423b054b5131193441fbcd64fb2edc47d4944ff33cf6367ef +doccontainersize 565628 +doccontainerchecksum f51af6e63070fbf94a3f8ed756d544dc7d9460f37b016fcded0d2c56a6cf672d2e60c7b2cb8be9f9942f43e46b5ff2bfb59c6ae301a5d88a8858d6e60a3fbaa9 docfiles size=488 - RELOC/doc/fonts/almfixed/README + RELOC/doc/fonts/almfixed/README details="Readme" RELOC/doc/fonts/almfixed/Unibook_0600.pdf RELOC/doc/fonts/almfixed/Unibook_0750.pdf RELOC/doc/fonts/almfixed/Unibook_08A0.pdf @@ -4881,7 +12995,7 @@ docfiles size=488 RELOC/doc/fonts/almfixed/Unibook_FB50-2.pdf RELOC/doc/fonts/almfixed/Unibook_FB50-3.pdf RELOC/doc/fonts/almfixed/Unibook_FE70.pdf - RELOC/doc/fonts/almfixed/almfixed-dtk.pdf + RELOC/doc/fonts/almfixed/almfixed-dtk.pdf details="Package documentation" RELOC/doc/fonts/almfixed/almfixed-dtk.tex RELOC/doc/fonts/almfixed/almmono10-sample-crop.pdf RELOC/doc/fonts/almfixed/aristoteles.pdf @@ -4889,15 +13003,19 @@ docfiles size=488 RELOC/doc/fonts/almfixed/ilahiyyat-1.pdf RELOC/doc/fonts/almfixed/sc-unipad.pdf RELOC/doc/fonts/almfixed/wa.pdf +runfiles size=222 + RELOC/fonts/opentype/public/almfixed/almfixed.otf + RELOC/fonts/truetype/public/almfixed/almfixed.ttf catalogue-ctan /fonts/almfixed -catalogue-date 2014-09-09 12:05:44 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gfl +catalogue-topics font font-otf font-ttf catalogue-version 0.92 name alnumsec category Package revision 15878 -shortdesc Alphanumeric section numbering. +shortdesc Alphanumeric section numbering relocated 1 longdesc This package allows you to use alphanumeric section numbering, longdesc for instance "A. Introduction ... III. International Law". Its @@ -4905,32 +13023,101 @@ longdesc output is similar to alphanum, but you can use the standard longdesc LaTeX sectioning commands, so that it is possible to switch longdesc numbering schemes easily. Greek letters, double letters (bb) longdesc and different delimiters around them are supported. -runfiles size=3 - RELOC/tex/latex/alnumsec/alnumsec.sty +containersize 2636 +containerchecksum d61adf9c03ef9f0b5d68325b435d5145297d85fa04a5bf106de50f58c04c9507eb63fb17070e955e7f476158419a802f0f18d2cd97ca93baa7997c2d57def479 +doccontainersize 121668 +doccontainerchecksum ab07f751332fa0ad974e6ea84b10a0249e5bbb69e591d1319a8c5d743f88d63ad9a7c72fc08fbac95e3cf950d090313dd758ed8f604e209206f873c5f0f70880 docfiles size=37 - RELOC/doc/latex/alnumsec/README + RELOC/doc/latex/alnumsec/README details="Readme" RELOC/doc/latex/alnumsec/alnumsec.pdf +srccontainersize 7532 +srccontainerchecksum 2c978d1dc9dc7f6a0f91d90102a37a2c8bdb78a19d7211d179b04ea448bb56baa451e09f945daaf3f219187d39f5938a7c003988fbc905b692931c9cffe465ee srcfiles size=7 RELOC/source/latex/alnumsec/alnumsec.dtx RELOC/source/latex/alnumsec/alnumsec.ins +runfiles size=3 + RELOC/tex/latex/alnumsec/alnumsec.sty catalogue-ctan /macros/latex/contrib/alnumsec -catalogue-date 2013-11-21 20:02:41 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl -catalogue-version v0.03 +catalogue-topics headings +catalogue-version 0.03 + +name alpha-persian +category Package +revision 50316 +shortdesc Persian version of alpha.bst +relocated 1 +longdesc The package provides a Persian version of the alpha BibTeX +longdesc style and offers several enhancements. It is compatible with +longdesc the hyperref, url, natbib, and cite packages. +containersize 7452 +containerchecksum 9907067b5353b62bb2d25833231c3152974f7f0826237e6b18007043a420018c7901505fcbec45414ba67ca8f90f0213c512b16cbd342413ec000144b5fcb1f2 +doccontainersize 4484924 +doccontainerchecksum aaae11a4d64fcd05b9a98d324356c9b206bf22d5a744f6d9bd124e1c53f2df3ffd7f2901dd63a8dc2addd9783212792e2e3bbc789b1376e8f5f1d5fd28ea3ed3 +docfiles size=2423 + RELOC/doc/bibtex/alpha-persian/README.txt details="Readme" + RELOC/doc/bibtex/alpha-persian/alpha-persian-l.userguide.pdf details="Package documentation (English)" + RELOC/doc/bibtex/alpha-persian/alpha-persian-l.userguide.tex + RELOC/doc/bibtex/alpha-persian/alpha-persian-p.userguide.pdf details="Package documentation (Persian)" language="fa" + RELOC/doc/bibtex/alpha-persian/alpha-persian-p.userguide.tex + RELOC/doc/bibtex/alpha-persian/image/21.jpg + RELOC/doc/bibtex/alpha-persian/image/sh11.jpg + RELOC/doc/bibtex/alpha-persian/image/sh12.jpg + RELOC/doc/bibtex/alpha-persian/image/sh13.jpg + RELOC/doc/bibtex/alpha-persian/image/sh14.PNG + RELOC/doc/bibtex/alpha-persian/image/sh15.PNG + RELOC/doc/bibtex/alpha-persian/image/sh16.PNG + RELOC/doc/bibtex/alpha-persian/image/sh17.PNG + RELOC/doc/bibtex/alpha-persian/image/sh18.jpg + RELOC/doc/bibtex/alpha-persian/image/sh2.jpg + RELOC/doc/bibtex/alpha-persian/image/sh20.jpg + RELOC/doc/bibtex/alpha-persian/image/sh3.jpg + RELOC/doc/bibtex/alpha-persian/image/sh4.jpg + RELOC/doc/bibtex/alpha-persian/image/sh5.jpg + RELOC/doc/bibtex/alpha-persian/image/sh6.jpg + RELOC/doc/bibtex/alpha-persian/image/sh7.jpg + RELOC/doc/bibtex/alpha-persian/image/sh8.jpg + RELOC/doc/bibtex/alpha-persian/image/sh9.jpg + RELOC/doc/bibtex/alpha-persian/image/sht.jpg + RELOC/doc/bibtex/alpha-persian/pdflatexsample.tex + RELOC/doc/bibtex/alpha-persian/sample1.bib + RELOC/doc/bibtex/alpha-persian/sample10.bib + RELOC/doc/bibtex/alpha-persian/sample2.bib + RELOC/doc/bibtex/alpha-persian/sample3.bib + RELOC/doc/bibtex/alpha-persian/sample4.bib + RELOC/doc/bibtex/alpha-persian/sample5.bib + RELOC/doc/bibtex/alpha-persian/sample6.bib + RELOC/doc/bibtex/alpha-persian/sample7.bib + RELOC/doc/bibtex/alpha-persian/sample8.bib + RELOC/doc/bibtex/alpha-persian/sample9.bib + RELOC/doc/bibtex/alpha-persian/xelatexsample.tex +runfiles size=10 + RELOC/bibtex/bst/alpha-persian/alpha-persian.bst +catalogue-contact-home http://uselatex.com/blog/ +catalogue-contact-repository http://qa.parsilatex.com/questions +catalogue-contact-support http://qa.parsilatex.com/questions +catalogue-ctan /biblio/bibtex/contrib/alpha-persian +catalogue-date 2019-03-10 18:21:44 +0100 +catalogue-license lppl1.3c +catalogue-topics bibtex-sty persian +catalogue-version 1.3 name alterqcm category Package revision 23385 -shortdesc Multiple choice questionnaires in two column tables. +shortdesc Multiple choice questionnaires in two column tables relocated 1 longdesc Macros to support the creation of multiple-choice longdesc questionnaires in two-column tables. -runfiles size=6 - RELOC/tex/latex/alterqcm/alterqcm.sty +containersize 5056 +containerchecksum 7865af4a25c6c93fc1613456a8db298cb7d0117cac15fc3d9e3e748eb33a720e9c45c0b2a1773413f6a7b30f190a91ff92f02cad4119ca5521615db1676ea055 +doccontainersize 956440 +doccontainerchecksum b36cb86557bf1b7e4db356b2f04d650ad7ffd43a3b2e18e336bffe46d8727d58b72148718179dd60c10356730609d68a9b7c1714353df392ed5c9293829a461b docfiles size=399 - RELOC/doc/latex/alterqcm/README + RELOC/doc/latex/alterqcm/README details="Readme" language="en" RELOC/doc/latex/alterqcm/README.doc - RELOC/doc/latex/alterqcm/doc_aq-screen.pdf + RELOC/doc/latex/alterqcm/doc_aq-screen.pdf details="Package documentation (French)" language="fr" RELOC/doc/latex/alterqcm/examples/latex/AntillesESjuin2006.tex RELOC/doc/latex/alterqcm/examples/latex/alea.tex RELOC/doc/latex/alterqcm/examples/latex/annexe.tex @@ -4969,43 +13156,53 @@ docfiles size=399 RELOC/doc/latex/alterqcm/latex/doc-aq-points.tex RELOC/doc/latex/alterqcm/latex/doc-aq-problem.tex RELOC/doc/latex/alterqcm/latex/doc_aq-main.tex +runfiles size=6 + RELOC/tex/latex/alterqcm/alterqcm.sty catalogue-ctan /macros/latex/contrib/alterqcm -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics exam catalogue-version 3.7c name altfont category Package revision 15878 -shortdesc Alternative font handling in LaTeX. +shortdesc Alternative font handling in LaTeX relocated 1 longdesc The package provides a replacement for that part of psnfss and longdesc mfnfss that changes the default font. The package is longdesc distributed together with the psfont package, by the same longdesc author. -runfiles size=6 - RELOC/tex/latex/altfont/altfont.cfg - RELOC/tex/latex/altfont/altfont.sty - RELOC/tex/latex/altfont/psfont.cfg - RELOC/tex/latex/altfont/psfont.sty +containersize 3528 +containerchecksum 18212e7107ed2bb6718a7c763d881dff7859e55e5bb33c42e1acfb5ea21228d1ebbdc6e13cb95f041bac99f871306bd3227326953229e69ac6b8ea774434cbd6 +doccontainersize 160688 +doccontainerchecksum 4d181a21f732b0265d4251d3775fdd8a4305c99c0dc1610adc9af583f73e376cce249b2ef237d8027aa32a269512db71260aebe78e5e1619f506f23d1105dc65 docfiles size=59 - RELOC/doc/latex/altfont/README - RELOC/doc/latex/altfont/altfont.pdf + RELOC/doc/latex/altfont/README details="Readme" + RELOC/doc/latex/altfont/altfont.pdf details="Package documentation" RELOC/doc/latex/altfont/psfont.pdf +srccontainersize 9172 +srccontainerchecksum f6982a69cb4264c633f8174fd8d487896db88e7d849c074c90645a84e7bc4abb1c1e6adf28500d300a74cdd26dc20b62efc013ff9e080df2bbe9a823ad0112f1 srcfiles size=12 RELOC/source/latex/altfont/altfont.dtx RELOC/source/latex/altfont/altfont.ins RELOC/source/latex/altfont/psfont.dtx RELOC/source/latex/altfont/psfont.ins +runfiles size=6 + RELOC/tex/latex/altfont/altfont.cfg + RELOC/tex/latex/altfont/altfont.sty + RELOC/tex/latex/altfont/psfont.cfg + RELOC/tex/latex/altfont/psfont.sty catalogue-ctan /macros/latex/contrib/altfont -catalogue-date 2012-06-07 20:36:04 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics font-supp catalogue-version 1.1 name ametsoc category Package revision 36030 -shortdesc Official American Meteorological Society LaTeX Template. +shortdesc Official American Meteorological Society LaTeX Template relocated 1 longdesc This bundle contains all the files necessary to write an longdesc article using LaTeX for the American Meteorological Society @@ -5014,152 +13211,130 @@ longdesc (with documentation) and a blank template for authors to use longdesc when writing their article. Also available is a separate style longdesc package used to format a two-column, journal page layout draft longdesc for the author's personal use. -runfiles size=18 - RELOC/bibtex/bst/ametsoc/ametsoc2014.bst - RELOC/tex/latex/ametsoc/ametsoc.cls +containersize 16160 +containerchecksum 34d99bedd34ea4195d4b0f60560c80c7d3624c2dcb3137a559eaa1b5a16bf465c39a0c54b6a5e64d2488dd7d4c1c82636d7c3adcee3e2e687a66b51b96fe6c48 +doccontainersize 5648 +doccontainerchecksum 80b64ca57599aab07dbd0d000e67fd002a19a8d8227bf9d635bbbefe84417d1f99cd75d81ff67e0d7a7e28231ab5438b4e51e90bbb5405f566877a4ec87b8d48 docfiles size=6 - RELOC/doc/latex/ametsoc/README + RELOC/doc/latex/ametsoc/README details="Readme" RELOC/doc/latex/ametsoc/README.TEXLIVE RELOC/doc/latex/ametsoc/references.bib RELOC/doc/latex/ametsoc/template.tex +runfiles size=18 + RELOC/bibtex/bst/ametsoc/ametsoc2014.bst + RELOC/tex/latex/ametsoc/ametsoc.cls catalogue-ctan /macros/latex/contrib/ametsoc -catalogue-date 2015-01-19 21:06:40 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics journalpub catalogue-version 4.3.2 name amiri category Package -revision 32506 -shortdesc A classical Arabic typeface, Naskh style. -relocated 1 -longdesc This is a beta-release of the font, though it is believed to be -longdesc largely usable. (The author retains the right to make -longdesc incompatible changes in the future.) The font covers the Arabic -longdesc and Arabic Supplement blocks of Unicode 6.0, which means it -longdesc essentially covers any language written in Arabic script and -longdesc supported by Unicode. -runfiles size=566 +revision 46104 +shortdesc A classical Arabic typeface, Naskh style +relocated 1 +longdesc Amiri is a classical Arabic typeface in Naskh style for +longdesc typesetting books and other running text. It is a revival of +longdesc the beautiful typeface pioneered in the early 20th century by +longdesc Bulaq Press in Cairo, also known as Amiria Press, after which +longdesc the font is named. The project aims at the revival of the +longdesc aesthetics and traditions of Arabic typesetting, and adapting +longdesc it to the era of digital typesetting, in a publicly available +longdesc form. +containersize 543960 +containerchecksum c64b9b61c808b100092eea9f6d3442d218c5a65b071041dbea6701a8a8e8d1a507561d5fef7ba756d896954703e5852572af72bc89aaadf07dc5a9930d44e5e2 +doccontainersize 249604 +doccontainerchecksum dea04783cf136ef5ef52a40d47f10322316cb0574dbf666a570554374a5f17acfcdc3ade7d529ff9c488cd3dbe3d139f36ba9c94565dc19117eed8e16f78290a +docfiles size=81 + RELOC/doc/fonts/amiri/NEWS + RELOC/doc/fonts/amiri/NEWS-Arabic + RELOC/doc/fonts/amiri/OFL.txt + RELOC/doc/fonts/amiri/README details="Readme" + RELOC/doc/fonts/amiri/README-Arabic details="Readme (Arabic)" language="ar" + RELOC/doc/fonts/amiri/amiri-table.pdf details="Font table" + RELOC/doc/fonts/amiri/documentation-arabic.pdf details="Package documentation (Arabic)" language="ar" +runfiles size=716 RELOC/fonts/truetype/public/amiri/amiri-bold.ttf RELOC/fonts/truetype/public/amiri/amiri-boldslanted.ttf + RELOC/fonts/truetype/public/amiri/amiri-quran-colored.ttf RELOC/fonts/truetype/public/amiri/amiri-quran.ttf RELOC/fonts/truetype/public/amiri/amiri-regular.ttf RELOC/fonts/truetype/public/amiri/amiri-slanted.ttf -docfiles size=2096 - RELOC/doc/fonts/amiri/Makefile - RELOC/doc/fonts/amiri/OFL-FAQ.txt - RELOC/doc/fonts/amiri/OFL.txt - RELOC/doc/fonts/amiri/README - RELOC/doc/fonts/amiri/documentation/NEWS-Arabic.txt - RELOC/doc/fonts/amiri/documentation/NEWS.txt - RELOC/doc/fonts/amiri/documentation/README-Arabic.txt - RELOC/doc/fonts/amiri/documentation/README.txt - RELOC/doc/fonts/amiri/documentation/amiri-table.pdf - RELOC/doc/fonts/amiri/documentation/documentation-arabic.pdf - RELOC/doc/fonts/amiri/documentation/documentation-sources/documentation-arabic.tex - RELOC/doc/fonts/amiri/sources/amiri-bold.sfd - RELOC/doc/fonts/amiri/sources/amiri-regular.sfd - RELOC/doc/fonts/amiri/sources/amiri.fea - RELOC/doc/fonts/amiri/sources/basic.fea - RELOC/doc/fonts/amiri/sources/classes.fea - RELOC/doc/fonts/amiri/sources/composition.fea - RELOC/doc/fonts/amiri/sources/contextuals.fea - RELOC/doc/fonts/amiri/sources/crimson/Crimson-Bold.sfd - RELOC/doc/fonts/amiri/sources/crimson/Crimson-BoldItalic.sfd - RELOC/doc/fonts/amiri/sources/crimson/Crimson-Italic.sfd - RELOC/doc/fonts/amiri/sources/crimson/Crimson-Roman.sfd - RELOC/doc/fonts/amiri/sources/crimson/README - RELOC/doc/fonts/amiri/sources/enclosing.fea - RELOC/doc/fonts/amiri/sources/italic.fea - RELOC/doc/fonts/amiri/sources/italic_kerning.fea - RELOC/doc/fonts/amiri/sources/kashida.fea - RELOC/doc/fonts/amiri/sources/kerning.fea - RELOC/doc/fonts/amiri/sources/latin.fea - RELOC/doc/fonts/amiri/sources/lellah.fea - RELOC/doc/fonts/amiri/sources/local.fea - RELOC/doc/fonts/amiri/sources/post_mark.fea - RELOC/doc/fonts/amiri/sources/proportional.fea - RELOC/doc/fonts/amiri/sources/quran.fea - RELOC/doc/fonts/amiri/sources/rtlm.fea - RELOC/doc/fonts/amiri/sources/stylisticsets.fea - RELOC/doc/fonts/amiri/test-suite/bariyaa.ptest - RELOC/doc/fonts/amiri/test-suite/basic.test - RELOC/doc/fonts/amiri/test-suite/contextuals.test - RELOC/doc/fonts/amiri/test-suite/enclosing.ptest - RELOC/doc/fonts/amiri/test-suite/extendedmeem.test - RELOC/doc/fonts/amiri/test-suite/high_baa.test - RELOC/doc/fonts/amiri/test-suite/lamlam.test - RELOC/doc/fonts/amiri/test-suite/lellah.test - RELOC/doc/fonts/amiri/test-suite/local.test - RELOC/doc/fonts/amiri/test-suite/small_alef.ptest - RELOC/doc/fonts/amiri/tools/build.py - RELOC/doc/fonts/amiri/tools/runtest.py +catalogue-contact-bugs https://github.com/alif-type/amiri/issues +catalogue-contact-home http://amirifont.org +catalogue-contact-repository https://github.com/alif-type/amiri +catalogue-contact-support https://github.com/alif-type/amiri/issues catalogue-ctan /fonts/amiri -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-12-20 14:05:09 +0100 catalogue-license ofl -catalogue-version 0.107 +catalogue-topics font font-ttf arabic +catalogue-version 0.110 name amsaddr category Package revision 29630 -shortdesc Alter the position of affiliations in amsart. +shortdesc Alter the position of affiliations in amsart relocated 1 longdesc The package is to be used with the amsart documentclass. It longdesc lets you move the authors' affiliations either just below the longdesc authors' names on the front page or as footnotes on the first longdesc page. The email addresses are always listed as a footnote on longdesc the front page. -runfiles size=1 - RELOC/tex/latex/amsaddr/amsaddr.sty +containersize 1912 +containerchecksum 98aecccedd2cbfe9e348a9ca6c66d82da07eac20bbc53dfc5ea79435a20e88bbdc4e17c85723824b216a212c509fcfe96b2b708353cbf7f93773514e5433d8f5 +doccontainersize 194712 +doccontainerchecksum dea731e32c5e02252db95deff66e4160ff3ac9c2b488b218098d9d82754a84d2d5821877c887f51086625c18d1bfb9c544dbb8d2fff4c5aa220463aa8c6d3fbe docfiles size=49 - RELOC/doc/latex/amsaddr/README - RELOC/doc/latex/amsaddr/amsaddr.pdf + RELOC/doc/latex/amsaddr/README details="Readme" + RELOC/doc/latex/amsaddr/amsaddr.pdf details="Package documentation" +srccontainersize 4044 +srccontainerchecksum 007c3c63868f4f4c0fd324d93506ec1c511e7c278bfb81e5f51026248f033586ae8a60ff3b6cc0f94080bcfc7eda895eda21dd01f312ee63d5411eacd775104f srcfiles size=4 RELOC/source/latex/amsaddr/amsaddr.dtx RELOC/source/latex/amsaddr/amsaddr.ins +runfiles size=1 + RELOC/tex/latex/amsaddr/amsaddr.sty catalogue-ctan /macros/latex/contrib/amsaddr -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics article-like catalogue-version 1.1 name amscls category Package -revision 36804 -shortdesc AMS document classes for LaTeX. +revision 46099 +shortdesc AMS document classes for LaTeX relocated 1 longdesc This bundle contains three AMS classes, amsart (for writing longdesc articles for the AMS), amsbook (for books) and amsproc (for -longdesc proceedings), together with some supporting material. The -longdesc material is made available as part of the AMS-LaTeX -longdesc distribution. -runfiles size=76 - RELOC/bibtex/bst/amscls/amsalpha.bst - RELOC/bibtex/bst/amscls/amsplain.bst - RELOC/tex/latex/amscls/amsart.cls - RELOC/tex/latex/amscls/amsbook.cls - RELOC/tex/latex/amscls/amsbooka.sty - RELOC/tex/latex/amscls/amsdtx.cls - RELOC/tex/latex/amscls/amsldoc.cls - RELOC/tex/latex/amscls/amsmidx.sty - RELOC/tex/latex/amscls/amsproc.cls - RELOC/tex/latex/amscls/amsthm.sty - RELOC/tex/latex/amscls/upref.sty -docfiles size=333 +longdesc proceedings), together with some supporting material. This +longdesc material forms one branch of what was originally the AMS-LaTeX +longdesc distribution. The other branch, amsmath, is now maintained and +longdesc distributed separately. The user documentation can be found in +longdesc the package amscls-doc. +containersize 32232 +containerchecksum 0b69a69452e148113c208d52b8221056378e6f869fa2efb0c52d49980ab574ac21a04d9957a2450a6881514645cd156580ad2a0ff2879e240e217642061afac2 +doccontainersize 1152212 +doccontainerchecksum 8c98528cd59e8da8c017fb49bc9a7cb617261f899770be56d92b1d52be274993b1777923189957f2ff70ef339223be569db586b80db7285cc824f321f258591a +docfiles size=306 RELOC/doc/latex/amscls/00LICENSE.txt - RELOC/doc/latex/amscls/README + RELOC/doc/latex/amscls/README details="Readme" RELOC/doc/latex/amscls/amsart-template.tex RELOC/doc/latex/amscls/amsbook-template.tex RELOC/doc/latex/amscls/amsbooka.pdf - RELOC/doc/latex/amscls/amsclass.pdf + RELOC/doc/latex/amscls/amsclass.pdf details="Code with documentation" RELOC/doc/latex/amscls/amsdtx.pdf RELOC/doc/latex/amscls/amsmidx.pdf RELOC/doc/latex/amscls/amsproc-template.tex RELOC/doc/latex/amscls/amsthdoc.pdf RELOC/doc/latex/amscls/diffs-c.txt - RELOC/doc/latex/amscls/instr-l.pdf RELOC/doc/latex/amscls/manifest.txt RELOC/doc/latex/amscls/thmtest.pdf RELOC/doc/latex/amscls/upref.pdf -srcfiles size=96 +srccontainersize 76360 +srccontainerchecksum a6eb2d6fd0a9640ec2ba625e91703403b80564d069bf8b873b40cb38810c30f1d0f7d372b81a194e4022a33393ebc612288d4d833a38db756ef9c344b4cd1726 +srcfiles size=83 RELOC/source/latex/amscls/amsbooka.dtx RELOC/source/latex/amscls/amsbooka.ins RELOC/source/latex/amscls/amsclass.dtx @@ -5170,18 +13345,100 @@ srcfiles size=96 RELOC/source/latex/amscls/amsmidx.ins RELOC/source/latex/amscls/amsthdoc.tex RELOC/source/latex/amscls/install.txt - RELOC/source/latex/amscls/instr-l.tex RELOC/source/latex/amscls/thmtest.tex RELOC/source/latex/amscls/upref.dtx RELOC/source/latex/amscls/upref.ins -catalogue-ctan /macros/latex/required/amslatex/amscls -catalogue-date 2015-04-11 13:32:03 +0200 -catalogue-license lppl1.3 +runfiles size=79 + RELOC/bibtex/bst/amscls/amsalpha.bst + RELOC/bibtex/bst/amscls/amsplain.bst + RELOC/tex/latex/amscls/amsart.cls + RELOC/tex/latex/amscls/amsbook.cls + RELOC/tex/latex/amscls/amsbooka.sty + RELOC/tex/latex/amscls/amsdtx.cls + RELOC/tex/latex/amscls/amsldoc.cls + RELOC/tex/latex/amscls/amsmidx.sty + RELOC/tex/latex/amscls/amsproc.cls + RELOC/tex/latex/amscls/amsthm.sty + RELOC/tex/latex/amscls/upref.sty +catalogue-also amslatex amscls-doc +catalogue-contact-home http://www.ams.org/tex/amslatex.html +catalogue-ctan /macros/latex/required/amscls +catalogue-date 2017-12-19 13:29:33 +0100 +catalogue-license lppl1.3c +catalogue-topics class maths +catalogue-version 2.20.4 + +name amscls-doc +category Package +revision 46110 +shortdesc User documentation for AMS document classes +relocated 1 +longdesc This collection comprises a set of four manuals, or Author +longdesc Handbooks, each documenting the use of a class of publications +longdesc based on one of the AMS document classes amsart, amsbook, +longdesc amsproc and one "hybrid", as well as a guide to the generation +longdesc of the four manuals from a coordinated set of LaTeX source +longdesc files. The Handbooks comprise the user documentation for the +longdesc pertinent document classes. As the source for the Handbooks +longdesc consists of a large number of files, and the intended output is +longdesc multiple different documents, the principles underlying this +longdesc collection can be used as a model for similar projects. The +longdesc manual "Compiling the AMS Author Handbooks" provides +longdesc information about the structure of and interaction between the +longdesc various components. +containersize 796 +containerchecksum 132432f34812f009233392ea29d6c4145717a80ea305632687da30de6969dcef8af9c2aa88cbf1809dd34b0c3dfca0f40a52b6216a7370f2a225b2602d0bbaf3 +doccontainersize 1743776 +doccontainerchecksum 8c08813abf65f00b68441d1e5cad3eb4a16fc1a77b30e10d96e22f34d6af547804af4d47b62ef0dfc895e2bc7cc5ecf7bc08d912448fefefbf716430c4502a64 +docfiles size=993 + RELOC/doc/latex/amscls-doc/AH_Bibliography.tex + RELOC/doc/latex/amscls-doc/Author_Handbook_Body.tex + RELOC/doc/latex/amscls-doc/Author_Handbook_Journals.pdf details="AMS Author Handbook for Journal Classes" + RELOC/doc/latex/amscls-doc/Author_Handbook_Journals.tex + RELOC/doc/latex/amscls-doc/Author_Handbook_Memo.pdf details="AMS Author Handbook for the Memoirs Class" + RELOC/doc/latex/amscls-doc/Author_Handbook_Memo.tex + RELOC/doc/latex/amscls-doc/Author_Handbook_Mono.pdf details="AMS Author Handbook for Monograph Classes" + RELOC/doc/latex/amscls-doc/Author_Handbook_Mono.tex + RELOC/doc/latex/amscls-doc/Author_Handbook_ProcColl.pdf details="AMS Author Handbook for Proceedings and Collections Classes" + RELOC/doc/latex/amscls-doc/Author_Handbook_ProcColl.tex + RELOC/doc/latex/amscls-doc/Color2Gray.eps + RELOC/doc/latex/amscls-doc/Color2Gray.pdf + RELOC/doc/latex/amscls-doc/Graphics_Guidelines.tex + RELOC/doc/latex/amscls-doc/J-Checklist.tex + RELOC/doc/latex/amscls-doc/J-Series.tex + RELOC/doc/latex/amscls-doc/M-Checklist.tex + RELOC/doc/latex/amscls-doc/M-Series.tex + RELOC/doc/latex/amscls-doc/Mem-Checklist.tex + RELOC/doc/latex/amscls-doc/PC-Checklist.tex + RELOC/doc/latex/amscls-doc/PC-Series.tex + RELOC/doc/latex/amscls-doc/README-AH.txt + RELOC/doc/latex/amscls-doc/ResourcesHelp.tex + RELOC/doc/latex/amscls-doc/Submitting2AMS.tex + RELOC/doc/latex/amscls-doc/TopMatterTags_J.tex + RELOC/doc/latex/amscls-doc/TopMatterTags_M.tex + RELOC/doc/latex/amscls-doc/TopMatterTags_Mem.tex + RELOC/doc/latex/amscls-doc/TopMatterTags_PC.tex + RELOC/doc/latex/amscls-doc/ahandinstr-r.sty + RELOC/doc/latex/amscls-doc/ams-author-handbook-doc.pdf details="Compiling the AMS Author Handbooks" + RELOC/doc/latex/amscls-doc/ams-author-handbook-doc.tex + RELOC/doc/latex/amscls-doc/gamuts.eps + RELOC/doc/latex/amscls-doc/gamuts.pdf + RELOC/doc/latex/amscls-doc/manifest.txt + RELOC/doc/latex/amscls-doc/rgb-cmyk.eps + RELOC/doc/latex/amscls-doc/rgb-cmyk.pdf + RELOC/doc/latex/amscls-doc/spectrum.eps + RELOC/doc/latex/amscls-doc/spectrum.pdf +catalogue-also amscls +catalogue-contact-support mailto:tech-support@ams.org +catalogue-ctan /info/amscls-doc +catalogue-date 2019-01-24 19:11:47 +0100 +catalogue-license lppl1.3c +catalogue-topics docu-pkg maths-doc scientific-docs name amsfonts category Package revision 29208 -shortdesc TeX fonts from the American Mathematical Society. +shortdesc TeX fonts from the American Mathematical Society relocated 1 longdesc An extended set of fonts for use in mathematics, including: longdesc extra mathematical symbols; blackboard bold letters (uppercase @@ -5192,14 +13449,48 @@ 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. +longdesc versions of the Computer Modern family of fonts. Basic LaTeX +longdesc support for the symbol fonts is provided by amsfonts.sty, with +longdesc names of individual symbols defined in amssymb.sty. The Euler +longdesc fonts are supported by separate packages; details can be found +longdesc in the documentation. execute addMixedMap cm.map execute addMixedMap cmextra.map execute addMixedMap cyrillic.map execute addMap euler.map execute addMixedMap latxfont.map execute addMixedMap symbols.map +containersize 3626276 +containerchecksum ff1256ae20f435327c12424613a15aa8f207e9133325e3a823ca7ef9951b8d52acb56cc69cbf9f3c0860ac43c9a74ae54154d1cd956d7e25612307dcc6e74585 +doccontainersize 1162540 +doccontainerchecksum fe0df1a9efc821e21adc0e21bcfaf2defb1749e3206d7dac8cd9b667747c37303cb2c69283a89aa8740fc3e08e8803408903a2a95eb0b91e910931a8333c2fca +docfiles size=321 + RELOC/doc/fonts/amsfonts/OFL-FAQ.txt + RELOC/doc/fonts/amsfonts/OFL.txt + RELOC/doc/fonts/amsfonts/README details="Package readme" + RELOC/doc/fonts/amsfonts/amsfndoc.pdf details="Users' guide to the fonts (for version 2.2d)" + RELOC/doc/fonts/amsfonts/amsfonts.pdf details="General package documentation" + RELOC/doc/fonts/amsfonts/amssymb.pdf details="Details of the fonts msam and msbm" + RELOC/doc/fonts/amsfonts/cmmib57.pdf + RELOC/doc/fonts/amsfonts/eufrak.pdf details="Eufrak package documentation" + RELOC/doc/fonts/amsfonts/euscript.pdf details="Eucal and euscript package documentation" +srccontainersize 49152 +srccontainerchecksum 49a99f519fbba1ae7ba91ffe392b4c1bf7b9246ab573a4f2c8b41fa252f080efe66c5df2acc36a5ea9570e51d55890bd89565ec2174ca7aa98980b49aa060a98 +srcfiles size=55 + RELOC/source/latex/amsfonts/amsfndoc.cyr + RELOC/source/latex/amsfonts/amsfndoc.def + RELOC/source/latex/amsfonts/amsfndoc.fnt + RELOC/source/latex/amsfonts/amsfndoc.ins + RELOC/source/latex/amsfonts/amsfndoc.tex + RELOC/source/latex/amsfonts/amsfonts.bug + RELOC/source/latex/amsfonts/amsfonts.dtx + RELOC/source/latex/amsfonts/amsfonts.faq + RELOC/source/latex/amsfonts/amsfonts.ins + RELOC/source/latex/amsfonts/amssymb.dtx + RELOC/source/latex/amsfonts/cmmib57.dtx + RELOC/source/latex/amsfonts/eufrak.dtx + RELOC/source/latex/amsfonts/euscript.dtx + RELOC/source/latex/amsfonts/manifest.txt runfiles size=1879 RELOC/fonts/afm/public/amsfonts/cm/cmb10.afm RELOC/fonts/afm/public/amsfonts/cm/cmbsy10.afm @@ -5809,40 +14100,17 @@ runfiles size=1879 RELOC/tex/plain/amsfonts/amssym.def RELOC/tex/plain/amsfonts/amssym.tex RELOC/tex/plain/amsfonts/cyracc.def -docfiles size=321 - RELOC/doc/fonts/amsfonts/OFL-FAQ.txt - RELOC/doc/fonts/amsfonts/OFL.txt - RELOC/doc/fonts/amsfonts/README - RELOC/doc/fonts/amsfonts/amsfndoc.pdf - RELOC/doc/fonts/amsfonts/amsfonts.pdf - RELOC/doc/fonts/amsfonts/amssymb.pdf - RELOC/doc/fonts/amsfonts/cmmib57.pdf - RELOC/doc/fonts/amsfonts/eufrak.pdf - RELOC/doc/fonts/amsfonts/euscript.pdf -srcfiles size=55 - RELOC/source/latex/amsfonts/amsfndoc.cyr - RELOC/source/latex/amsfonts/amsfndoc.def - RELOC/source/latex/amsfonts/amsfndoc.fnt - RELOC/source/latex/amsfonts/amsfndoc.ins - RELOC/source/latex/amsfonts/amsfndoc.tex - RELOC/source/latex/amsfonts/amsfonts.bug - RELOC/source/latex/amsfonts/amsfonts.dtx - RELOC/source/latex/amsfonts/amsfonts.faq - RELOC/source/latex/amsfonts/amsfonts.ins - RELOC/source/latex/amsfonts/amssymb.dtx - RELOC/source/latex/amsfonts/cmmib57.dtx - RELOC/source/latex/amsfonts/eufrak.dtx - RELOC/source/latex/amsfonts/euscript.dtx - RELOC/source/latex/amsfonts/manifest.txt +catalogue-contact-home http://www.ams.org/tex/amsfonts.html catalogue-ctan /fonts/amsfonts -catalogue-date 2014-04-26 12:45:28 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license ofl +catalogue-topics font font-maths font-symbol-maths font-bbd font-type1 font-mf catalogue-version 3.04 name amslatex-primer category Package revision 28980 -shortdesc Getting up and running with AMS-LaTeX. +shortdesc Getting up and running with AMS-LaTeX relocated 1 longdesc The document aims to get you up and running with AMS-LaTeX as longdesc quickly as possible. These instructions (along with a template @@ -5853,21 +14121,31 @@ longdesc occasionally. In addition to 'AMS-LaTeX out of the box', the longdesc document contains: a section describing how to draw commutative longdesc diagrams using Xy-pic; and a section describing how to use longdesc amsrefs to create a bibliography. +containersize 664 +containerchecksum 05c7c19430a85986db770d1ff8686993edcde35171e3653ddfb7db4a09422c80e53632f583371079fe14d3c6fd9ff4eb3f0c37cbecea7ca2d9a5aefb04cabdb0 +doccontainersize 566748 +doccontainerchecksum 85faf2a9c03f7d7d1e23d72b7041c9b322d5f8bd8cb309a60f7256416249ceb7582c112d25f8953ee67dd2b79a3697e29cf6250d7b199a9eb73a9682f123354f docfiles size=177 - RELOC/doc/latex/amslatex-primer/README + RELOC/doc/latex/amslatex-primer/README details="Readme" RELOC/doc/latex/amslatex-primer/amshelp.md5 - RELOC/doc/latex/amslatex-primer/amshelp.pdf + RELOC/doc/latex/amslatex-primer/amshelp.pdf details="The document itself" RELOC/doc/latex/amslatex-primer/amshelp.tex RELOC/doc/latex/amslatex-primer/template.tex catalogue-ctan /info/amslatex/primer -catalogue-date 2014-10-16 09:25:15 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics maths-doc catalogue-version 2.3 name amsldoc-it category Package -revision 15878 +revision 45662 +shortdesc Italian translation of amsldoc relocated 1 +containersize 272 +containerchecksum 9178b17bedc53957118083a78ead56f9fdaf9fd6a60ea0ebdbeee6c87254e7567b47b61bad1f9bda2554f471f79c28f3df7c3d2b9858faad65c3d110664ec4c8 +doccontainersize 320476 +doccontainerchecksum eb23cb624c4cf6283b8f777911d102953d31dc8da04392d7023694fed02ee1b8a8a49365fe0f1cba9682e911405f04afc982b6cc9cf9699a4d76ec8dca6a471c docfiles size=105 RELOC/doc/latex/amsldoc-it/itamsldoc.pdf RELOC/doc/latex/amsldoc-it/itamsldoc.tex @@ -5876,85 +14154,81 @@ name amsldoc-vn category Package revision 21855 catalogue amslatexdoc-vietnamese -shortdesc Vietnamese translation of AMSLaTeX documentation. +shortdesc Vietnamese translation of AMSLaTeX documentation relocated 1 longdesc This is a Vietnamese translation of amsldoc, the users' guide longdesc to amsmath. +containersize 428 +containerchecksum 5b0c2cc1afcc4060249be20271af92c71c866db47d2551a176b5685c58182a6ca17da9540dd9a7c7abd33de75b0335a625aa921fdbd77329bc91d16718fb346a +doccontainersize 1169692 +doccontainerchecksum 827c294eb1cedd51a3924796b461ec3d6c858e7875254e0fdb6cb496fecbb6d2ec541e930327c54cc446b15dd69ed795470ae6cbf1cf1e51c0f3ae90f3f6c12f docfiles size=370 RELOC/doc/latex/amsldoc-vn/Makefile - RELOC/doc/latex/amsldoc-vn/README + RELOC/doc/latex/amsldoc-vn/README details="Readme" RELOC/doc/latex/amsldoc-vn/TODO - RELOC/doc/latex/amsldoc-vn/amsldoc-print-vi.pdf + RELOC/doc/latex/amsldoc-vn/amsldoc-print-vi.pdf details="For printing" language="vi" RELOC/doc/latex/amsldoc-vn/amsldoc-print-vi.tex - RELOC/doc/latex/amsldoc-vn/amsldoc-vi.pdf + RELOC/doc/latex/amsldoc-vn/amsldoc-vi.pdf details="For on-screen viewing" language="vi" RELOC/doc/latex/amsldoc-vn/amsldoc-vi.tex catalogue-ctan /info/amslatex/vietnamese -catalogue-date 2012-06-26 21:09:43 +0200 -catalogue-license lgpl +catalogue-date 2018-10-09 05:54:10 +0200 +catalogue-license lppl1.3 +catalogue-topics vietnamese-doc maths-doc translation catalogue-version 2.0 -name amsmath-it -category Package -revision 22930 -shortdesc Italian translations of some old AMSmath documents. -relocated 1 -longdesc The documents are: diffs-m.txt of December 1999, and -longdesc amsmath.faq of March 2000. -docfiles size=12 - RELOC/doc/latex/amsmath-it/README - RELOC/doc/latex/amsmath-it/amsmath.faq - RELOC/doc/latex/amsmath-it/diffs-m_it.txt -catalogue-ctan /info/translations/amsmath/it -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl - name amsmath category Package -revision 30645 -shortdesc AMS mathematical facilities for LaTeX. +revision 49390 +catalogue latex-amsmath +shortdesc AMS mathematical facilities for LaTeX relocated 1 longdesc The package provides the principal packages in the AMS-LaTeX longdesc distribution. It adapts for use in LaTeX most of the longdesc mathematical features found in AMS-TeX; it is highly -longdesc recommendsd as an adjunct to serious mathematical typesetting +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 embdedded in mathematics) are also loaded. Amsmath is +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. -runfiles size=46 - RELOC/tex/latex/amsmath/amsbsy.sty - RELOC/tex/latex/amsmath/amscd.sty - RELOC/tex/latex/amsmath/amsgen.sty - RELOC/tex/latex/amsmath/amsmath.sty - RELOC/tex/latex/amsmath/amsopn.sty - RELOC/tex/latex/amsmath/amstex.sty - RELOC/tex/latex/amsmath/amstext.sty - RELOC/tex/latex/amsmath/amsxtra.sty -docfiles size=568 +containersize 30004 +containerchecksum e39c997a6ed3162d1a4e1223096b8dde3ab87a18ea54296843ee858086dcd94e922a9ba969c3ee61ff6ff3989e1a968bd2163cddd9e266066f57e57a69b47518 +doccontainersize 2478972 +doccontainerchecksum 0789e2049bb711d3aae2759be4216f7189ec4751deb0e1ffc9ce1e14bed52e5b11f9d332bf3a56a9bc6637ff948554b9a1d0400c1487b1ecfd207b0f11b2bdf8 +docfiles size=776 + RELOC/doc/latex/amsmath/README.md details="General README" language="en" RELOC/doc/latex/amsmath/amsbsy.pdf RELOC/doc/latex/amsmath/amscd.pdf RELOC/doc/latex/amsmath/amsgen.pdf - RELOC/doc/latex/amsmath/amsldoc.pdf + RELOC/doc/latex/amsmath/amsldoc-1.pdf + RELOC/doc/latex/amsmath/amsldoc-bb.pdf + RELOC/doc/latex/amsmath/amsldoc.pdf details="User guide (English)" language="en" + RELOC/doc/latex/amsmath/amsldoc.tex RELOC/doc/latex/amsmath/amsmath.pdf RELOC/doc/latex/amsmath/amsopn.pdf RELOC/doc/latex/amsmath/amstext.pdf RELOC/doc/latex/amsmath/amsxtra.pdf - RELOC/doc/latex/amsmath/subeqn.pdf - RELOC/doc/latex/amsmath/technote.pdf - RELOC/doc/latex/amsmath/testmath.pdf -srcfiles size=135 - RELOC/source/latex/amsmath/README + RELOC/doc/latex/amsmath/changes.txt + RELOC/doc/latex/amsmath/diffs-m.txt details="Differences from previous versions" language="en" + RELOC/doc/latex/amsmath/manifest.txt + RELOC/doc/latex/amsmath/subeqn.pdf details="Sub-equation usage" language="en" + RELOC/doc/latex/amsmath/subeqn.tex + RELOC/doc/latex/amsmath/technote.pdf details="Technical details" language="en" + RELOC/doc/latex/amsmath/technote.tex + RELOC/doc/latex/amsmath/testmath.pdf details="Examples paper" language="en" + RELOC/doc/latex/amsmath/testmath.tex +srccontainersize 63740 +srccontainerchecksum 31b05fde489c1e95bfbc15e6b437dbc4d686aec75d007ee76cb303be2e9b374d32fc92d7c5409980111dcad26c597e3891772deb763276d8aa597f8c5360df79 +srcfiles size=79 RELOC/source/latex/amsmath/amsbsy.dtx RELOC/source/latex/amsmath/amsbsy.ins RELOC/source/latex/amsmath/amscd.dtx RELOC/source/latex/amsmath/amscd.ins RELOC/source/latex/amsmath/amsgen.dtx RELOC/source/latex/amsmath/amsgen.ins - RELOC/source/latex/amsmath/amsldoc.tex RELOC/source/latex/amsmath/amsmath.dtx RELOC/source/latex/amsmath/amsmath.ins RELOC/source/latex/amsmath/amsopn.dtx @@ -5963,45 +14237,60 @@ srcfiles size=135 RELOC/source/latex/amsmath/amstext.ins RELOC/source/latex/amsmath/amsxtra.dtx RELOC/source/latex/amsmath/amsxtra.ins - RELOC/source/latex/amsmath/diffs-m.txt - RELOC/source/latex/amsmath/install.txt - RELOC/source/latex/amsmath/manifest.txt - RELOC/source/latex/amsmath/subeqn.tex - RELOC/source/latex/amsmath/technote.tex - RELOC/source/latex/amsmath/testmath.tex -catalogue-ctan /macros/latex/required/amslatex/math -catalogue-date 2013-03-09 20:29:31 +0100 +runfiles size=48 + RELOC/tex/latex/amsmath/amsbsy.sty + RELOC/tex/latex/amsmath/amscd.sty + RELOC/tex/latex/amsmath/amsgen.sty + RELOC/tex/latex/amsmath/amsmath.sty + RELOC/tex/latex/amsmath/amsopn.sty + RELOC/tex/latex/amsmath/amstex.sty + RELOC/tex/latex/amsmath/amstext.sty + RELOC/tex/latex/amsmath/amsxtra.sty +catalogue-also nath mathtools +catalogue-contact-home http://www.ams.org/tex/amslatex.html +catalogue-ctan /macros/latex/required/amsmath +catalogue-date 2018-12-11 00:02:02 +0100 +catalogue-license lppl1.3c +catalogue-topics maths + +name amsmath-it +category Package +revision 22930 +shortdesc Italian translations of some old amsmath documents +relocated 1 +longdesc The documents are: diffs-m.txt of December 1999, and +longdesc amsmath.faq of March 2000. +containersize 428 +containerchecksum 6bc869e3cf11a9521ff883e9b8cd227a267d28291124c0f268556ea576bc0af8ea4eaa145e45d1de84709df08182fc83946d80fd0f116a8656a35d75ca83eef5 +doccontainersize 13716 +doccontainerchecksum 814539a2a82601c930097113a9baca5166fcf68d1b0c4dcf25d8afa8991e667619517879bc415ff114b9e86664b9ff5e25a7bcf1bb04160b9297cbfabb4a639d +docfiles size=12 + RELOC/doc/latex/amsmath-it/README + RELOC/doc/latex/amsmath-it/amsmath.faq + RELOC/doc/latex/amsmath-it/diffs-m_it.txt +catalogue-ctan /info/translations/amsmath/it +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl -catalogue-version 2.14 +catalogue-topics docu-pkg italian-doc translation name amsrefs category Package revision 30646 -shortdesc A LaTeX-based replacement for BibTeX. +shortdesc A LaTeX-based replacement for BibTeX relocated 1 longdesc Amsrefs is a LaTeX package for bibliographies that provides an longdesc archival data format similar to the format of BibTeX database longdesc files, but adapted to make direct processing by LaTeX easier. longdesc The package can be used either in conjunction with BibTeX or as longdesc a replacement for BibTeX. -runfiles size=59 - RELOC/bibtex/bib/amsrefs/amsj.bib - RELOC/bibtex/bst/amsrefs/amsra.bst - RELOC/bibtex/bst/amsrefs/amsrn.bst - RELOC/bibtex/bst/amsrefs/amsrs.bst - RELOC/bibtex/bst/amsrefs/amsru.bst - RELOC/bibtex/bst/amsrefs/amsry.bst - RELOC/tex/latex/amsrefs/amsbst.sty - RELOC/tex/latex/amsrefs/amsrefs.sty - RELOC/tex/latex/amsrefs/ifoption.sty - RELOC/tex/latex/amsrefs/mathscinet.sty - RELOC/tex/latex/amsrefs/pcatcode.sty - RELOC/tex/latex/amsrefs/rkeyval.sty - RELOC/tex/latex/amsrefs/textcmds.sty +containersize 27428 +containerchecksum a0993aa374bf845952c934a421d2b344564726207245102dec82915a3cddf33ad8cb1f2d4d48d71ba0263fae0c24c78f0cc21e0b923a875af02d12c602a375d6 +doccontainersize 1938800 +doccontainerchecksum 2c472849194fb72453a541ba443b2232fbf876cd2d4071dd6e6eb65603845ac9715629bbc7b1f44dc0268a809a1a5d74a08f0dc27a81e9b30787a44d133bdd57 docfiles size=522 - RELOC/doc/latex/amsrefs/amsrdoc.pdf + RELOC/doc/latex/amsrefs/amsrdoc.pdf details="Package documentation" RELOC/doc/latex/amsrefs/amsrefs.faq - RELOC/doc/latex/amsrefs/amsrefs.pdf + RELOC/doc/latex/amsrefs/amsrefs.pdf details="Documented source" RELOC/doc/latex/amsrefs/amsxport.pdf RELOC/doc/latex/amsrefs/changes.pdf RELOC/doc/latex/amsrefs/cite-xa.tex @@ -6015,6 +14304,8 @@ docfiles size=522 RELOC/doc/latex/amsrefs/pcatcode.pdf RELOC/doc/latex/amsrefs/rkeyval.pdf RELOC/doc/latex/amsrefs/textcmds.pdf +srccontainersize 102004 +srccontainerchecksum 9cdfcb0e841f6dcfb23c5fac930d12cc610ae8002aed13a4867bf384fa0f177f834cb58482647c2daf7c52c0267f85e8dc4f93575b14fe58e2a634307b7bab49 srcfiles size=129 RELOC/source/latex/amsrefs/README RELOC/source/latex/amsrefs/amsrdoc.tex @@ -6035,60 +14326,242 @@ srcfiles size=129 RELOC/source/latex/amsrefs/rkeyval.ins RELOC/source/latex/amsrefs/textcmds.dtx RELOC/source/latex/amsrefs/textcmds.ins +runfiles size=59 + RELOC/bibtex/bib/amsrefs/amsj.bib + RELOC/bibtex/bst/amsrefs/amsra.bst + RELOC/bibtex/bst/amsrefs/amsrn.bst + RELOC/bibtex/bst/amsrefs/amsrs.bst + RELOC/bibtex/bst/amsrefs/amsru.bst + RELOC/bibtex/bst/amsrefs/amsry.bst + RELOC/tex/latex/amsrefs/amsbst.sty + RELOC/tex/latex/amsrefs/amsrefs.sty + RELOC/tex/latex/amsrefs/ifoption.sty + RELOC/tex/latex/amsrefs/mathscinet.sty + RELOC/tex/latex/amsrefs/pcatcode.sty + RELOC/tex/latex/amsrefs/rkeyval.sty + RELOC/tex/latex/amsrefs/textcmds.sty +catalogue-also biblatex +catalogue-contact-home http://www.ams.org/tex/amsrefs.html catalogue-ctan /macros/latex/contrib/amsrefs -catalogue-date 2013-03-09 15:08:10 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl1.3 +catalogue-topics biblio catalogue-version 2.14 name amstex category Package -revision 37078 -shortdesc American Mathematical Society plain TeX macros. -longdesc AMSTeX is a TeX macro package, originally written by Michael -longdesc Spivak for the American Mathematical Society (AMS) during 1983- -longdesc 1985 and is described in the book 'The Joy of TeX'. It is based -longdesc on Plain TeX, and provides many features for producing more -longdesc professional-looking maths formulas with less burden on -longdesc authors. More recently, the focus of attention has switched to -longdesc amslatex, but AMSTeX remains as a working system. +revision 50602 +shortdesc American Mathematical Society plain TeX macros +longdesc AMS-TeX is a TeX macro package, originally written by Michael +longdesc Spivak for the American Mathematical Society (AMS) during +longdesc 1983-1985 and is described in the book 'The Joy of TeX'. It is +longdesc based on Plain TeX, and provides many features for producing +longdesc more professional-looking maths formulas with less burden on +longdesc authors. This is the final archival distribution of AMS-TeX. +longdesc AMS-TeX is no longer supported by the AMS, nor is it used by +longdesc the AMS publishing program. The AMS does not recommend creating +longdesc any new documents using AMS-TeX; this distribution will be left +longdesc on CTAN to facilitate processing of legacy documents and as a +longdesc historical record of a pioneering TeX macro collection that +longdesc played a key role in popularizing TeX and revolutionizing +longdesc mathematics publishing. In addition to the "User's Guide to +longdesc AMS-TeX", the AMS has also made the full text of the most +longdesc recent reprint of the second edition of "The Joy of TeX" by +longdesc Michael Spivak available as a pdf file. AMS-TeX is the +longdesc historical basis of amslatex, which should now be used to +longdesc prepare submissions for the AMS. depend tex +depend amsfonts +depend cm +depend hyphen-base +depend knuth-lib +depend plain depend amstex.ARCH -execute AddFormat name=amstex engine=pdftex options="-translate-file=cp227.tcx *amstex.ini" -runfiles size=44 - texmf-dist/tex/amstex/base/amsppt.sti - texmf-dist/tex/amstex/base/amsppt.sty - texmf-dist/tex/amstex/base/amsppt1.tex - texmf-dist/tex/amstex/base/amstex.bug - texmf-dist/tex/amstex/base/amstex.tex - texmf-dist/tex/amstex/config/amstex.ini -docfiles size=188 - texmf-dist/doc/amstex/base/README - texmf-dist/doc/amstex/base/amsguide.pdf +execute AddFormat name=amstex engine=pdftex options="-translate-file=cp227.tcx *amstex.ini" fmttriggers=amsfonts,cm,hyphen-base,knuth-lib,plain +containersize 38380 +containerchecksum 0be8ae28c39851cb48882041016146d88507109945b6e474fc7758254b7c3a5c1861093861e69f82c4646f7bef369c2b4d212e3bea9e3175cc687032d1476782 +doccontainersize 410596 +doccontainerchecksum 59a785a7e23e5530b40f45676dc5a0d75fde350d31bb5e6398015e7c9db2a672576d3a91dcb1c928103ce85dd6538f81ce86d8d78dfb2be196f044397a892296 +docfiles size=203 + texmf-dist/doc/amstex/base/README details="Readme" + texmf-dist/doc/amstex/base/amsguide.pdf details="User's guide and installation details" texmf-dist/doc/amstex/base/amsguide.tex texmf-dist/doc/amstex/base/amsppt.doc texmf-dist/doc/amstex/base/amsppt.faq - texmf-dist/doc/amstex/base/amstinst.ps.gz + texmf-dist/doc/amstex/base/amsppt.txt + texmf-dist/doc/amstex/base/amstex.txt + texmf-dist/doc/amstex/base/amstinst.pdf texmf-dist/doc/amstex/base/amstinst.tex - texmf-dist/doc/amstex/base/joyerr.tex texmf-dist/doc/amstex/base/joyerr2.tex texmf-dist/doc/man/man1/amstex.1 texmf-dist/doc/man/man1/amstex.man1.pdf +runfiles size=44 + texmf-dist/tex/amstex/base/amsppt.sti + texmf-dist/tex/amstex/base/amsppt.sty + texmf-dist/tex/amstex/base/amsppt1.tex + texmf-dist/tex/amstex/base/amstex.bug + texmf-dist/tex/amstex/base/amstex.tex + texmf-dist/tex/amstex/config/amstex.ini +catalogue-also joy-of-tex +catalogue-contact-home http://www.ams.org/tex/amstex.html catalogue-ctan /macros/amstex -catalogue-date 2015-03-31 14:13:38 +0200 +catalogue-date 2019-01-29 20:02:48 +0100 catalogue-license lppl -catalogue-version 2.2 +catalogue-topics maths + +name amstex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of amstex +containersize 320 +containerchecksum 1a3e4d09ef7873ba53409c4b2b7ec62210aa325570ccd752257b4fe372dcbec69688cbfe11e7b961943675c06a486ea794a227e3e68d64de0ccd964517ddbf9e +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/amstex + +name amstex.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of amstex +containersize 320 +containerchecksum e974a2af83a4b7ea1966ef86a1be412369f9fb16957e019d5cfda9809a8a3344f256c67e417b58a77fc5f977f44e9848453b6540416eb18637cef29cc0d096df +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/amstex + +name amstex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of amstex +containersize 320 +containerchecksum 959571512851091ed8d58cd27d7101d1f6cfc98ea04974002a8cec0cb24272753e0386f3b2d8f8d581e07e14cc76f132d71ca0ac978eb0d779ccd25c33c8c2ef +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/amstex + +name amstex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of amstex +containersize 320 +containerchecksum 8c9db41ae350c152082ff850c686d6f59cf8def6dfcb1ff7fbfe904842c5f5243b259f5cf804d5f27dc411debd6d270ab417e093198e8a9c87ffe33e6b43f45e +binfiles arch=armhf-linux size=1 + bin/armhf-linux/amstex + +name amstex.i386-cygwin +category Package +revision 13930 +shortdesc i386-cygwin files of amstex +containersize 324 +containerchecksum fc6dd4b4f0197e5d755c247859654f8273d3d9f360829d2ad19ecc885dfad8f49e9d0acc26ae7aa3032e749fb5eadf11b82bf13b8fbc26377296805e37a94d88 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/amstex + +name amstex.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of amstex +containersize 324 +containerchecksum 5f5798b8d87c33664bc80d1a898904608ead6802d9302c70dd2c2175e4ddbf07fb7b927be2ce67f6f620ba92c7b44174407468080e0f00cdd99a98276b139df2 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/amstex name amstex.i386-linux category Package revision 3006 shortdesc i386-linux files of amstex +containersize 320 +containerchecksum 23d9419fa79a06bac963424ef48823eafc2cc8e34736bc736bc6678bd9e973707a39df4e4ecbd1d77660c031ab52906162a12c27f67ae616ddc06d57a07e1fdf binfiles arch=i386-linux size=1 bin/i386-linux/amstex +name amstex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of amstex +containersize 320 +containerchecksum db7e9782323e7e2192e157823f655fd591164d3319d558f74190d153c0fc352ad8830ac04157366c6a39302e61610d1e055fd4c4f2cd92010f59d26afbf37f98 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/amstex + +name amstex.i386-solaris +category Package +revision 8102 +shortdesc i386-solaris files of amstex +containersize 320 +containerchecksum 2395852c4d04d4d35fa71f001b01496dc46fd663758625558b3830a23d86798de01553e128e895e6c0261620b40f6637025d0fa55209981cd52cc69a897308e3 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/amstex + +name amstex.win32 +category Package +revision 36810 +shortdesc win32 files of amstex +containersize 872 +containerchecksum e28f2e25ad449f99ce0b26baef354ca3bf55cbbd9f51129446ca9089be30f263130c48f77d79019d0290de65949053e0b2996e8cf948a1864c30f97252eb29dc +binfiles arch=win32 size=1 + bin/win32/amstex.exe + +name amstex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of amstex +containersize 328 +containerchecksum 9e91c1951e48679f24a58fe48e3dbbe5bb2c376ded01277446ebf1bc6d38f1b6f89d07b9041dd01f8ca49b702f03f57ed2408112e6c5a21033f184db45c2b6b0 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/amstex + +name amstex.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of amstex +containersize 324 +containerchecksum 87741b7eab1e5387acb3acc610f0931dc3eb7f397d15e0a8a08f0fb208f9948679d27fbbf5dba7e09c7e6ab2bee4d9194a21d564df22daab1e8bcb1892aeac5f +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/amstex + +name amstex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of amstex +containersize 328 +containerchecksum 5e38403a65d219ed632bee41bba50a16c7d4d224f1e7f8e7b40fc2f03d0d24ca4a508cb4ba0a88a78515dffc735e68499387fda33b7bad20a0403e1d986fa246 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/amstex + +name amstex.x86_64-linux +category Package +revision 3185 +shortdesc x86_64-linux files of amstex +containersize 320 +containerchecksum b6f03c380ed1190684e18640876beb70484c91396432046d17ac3194fd5991df96aa521c3daf7a4c34f9cdcfccae07ae7c772ee6573431eed0a5deba17a95098 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/amstex + +name amstex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of amstex +containersize 324 +containerchecksum 5e4d53db8baf4682e7b8fc86c4fda12d2f26b353045c5c99667413735b571f5c7df847ffa53179df0ca234391e4c9356550640c2b49b924702dae7afff1c1599 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/amstex + +name amstex.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of amstex +containersize 324 +containerchecksum 2b58da1b25ad7c374a31df67d139f91ef42fae415eef7c1569b5d10764034e5d3d4f680089338f824185318ab4f16fbfc48e7778da42898d9bc4f3157977e33f +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/amstex + name amsthdoc-it category Package -revision 15878 +revision 45662 +shortdesc Italian translation of amsthdoc: Using the amsthm package relocated 1 +containersize 288 +containerchecksum 17631e2d6306887236f11eed586454a784f256c36c14955be1eb30377f1f73b189686b37ba6c95188fda2e0b0aac9a1f40469a32bc7787b5d4c244de9a01ccdf +doccontainersize 100012 +doccontainerchecksum 2d35f87da43f957d7ec3d1e61d052d14b4dc207207fc2e6dc4de08b699e5211db17a84f0305888294ae163691e4dee2d067fb1c3a29fadcc34214033fe8e22eb docfiles size=32 RELOC/doc/latex/amsthdoc-it/README RELOC/doc/latex/amsthdoc-it/amsthdoc_it.pdf @@ -6096,22 +14569,25 @@ docfiles size=32 name animate category Package -revision 38230 -shortdesc Create PDF animations from graphics files and inline graphics +revision 51009 +shortdesc Create PDF and SVG animations from graphics files and inline graphics relocated 1 longdesc The package provides an interface to create portable, -longdesc JavaScript driven PDF animations from sets of graphics files or -longdesc from inline graphics, such as LaTeX picture environment, -longdesc PSTricks or pgf/TikZ generated pictures, or just from typeset -longdesc text. -runfiles size=33 - RELOC/tex/latex/animate/animate.sty - RELOC/tex/latex/animate/animfp.sty -docfiles size=917 +longdesc JavaScript driven PDF and SVG animations from sets of graphics +longdesc files or from inline graphics, such as LaTeX picture +longdesc environment, PSTricks or pgf/TikZ generated pictures, or just +longdesc from typeset text. +containersize 24244 +containerchecksum 97e74ddf4df18eed4b36057821214d181fc1f6c31ffdc5a840148dabdd86e06ed6e9be3d36ab55c7b3ccb129043adcf415fe4edf8361d135b8f7bd7af0335ebf +doccontainersize 3144660 +doccontainerchecksum 871679e499889a7162d5f05faeaabe33d36eecd6e2ab5e280dd20d1ccc1114039db94f35760558cbfa703ba519e88f96649997939a55384f743cc9c71310f61d +docfiles size=962 RELOC/doc/latex/animate/ChangeLog - RELOC/doc/latex/animate/README - RELOC/doc/latex/animate/animate.pdf -srcfiles size=43 + RELOC/doc/latex/animate/README.txt + RELOC/doc/latex/animate/animate.pdf details="Package documentation" +srccontainersize 29756 +srccontainerchecksum 4e59d4767943115cac1d7d3a788a33c308aba18f27f0a66372a41ddc3abc2279974353e4a074530ecfc617105e7f06411d539f42efd4b2abd99e9a4bb5f19249 +srcfiles size=36 RELOC/source/latex/animate/animate.tex RELOC/source/latex/animate/files/bye_0.eps RELOC/source/latex/animate/files/bye_1.eps @@ -6119,43 +14595,72 @@ srcfiles size=43 RELOC/source/latex/animate/files/bye_3.eps RELOC/source/latex/animate/files/click.mp3 RELOC/source/latex/animate/files/exp.mp - RELOC/source/latex/animate/files/mailto.eps - RELOC/source/latex/animate/files/pstmetronome.tex RELOC/source/latex/animate/files/scarab.mp +runfiles size=34 + RELOC/tex/latex/animate/animate.sty +catalogue-contact-repository https://gitlab.com/agrahn/animate catalogue-ctan /macros/latex/contrib/animate -catalogue-date 2015-08-28 18:23:54 +0200 +catalogue-date 2019-04-09 18:30:16 +0200 catalogue-license lppl catalogue-topics graphics-motion name anonchap category Package revision 17049 -shortdesc Make chapters be typeset like sections. +shortdesc Make chapters be typeset like sections relocated 1 longdesc The command \simplechapter sets up the \chapter command not to longdesc number chapters, though they may possibly have a prefix, and a longdesc suffix (the \simplechapterdelim command, which the user may longdesc alter). The \restorechapter command restores the status quo longdesc ante. -runfiles size=1 - RELOC/tex/latex/anonchap/anonchap.sty +containersize 1464 +containerchecksum 4b84d5260c0986191fb4f2b560c386a806c8f93c76360a8d93aa7f9b55dcf089d7d03ca946143b52923130ee751fd47f1ff59908314297fd752ff5fbb17ec0cf +doccontainersize 187292 +doccontainerchecksum 087db509e1d9649176614296f84fefe9b726dceb3ac8cb6eeecdd8a6fdb03dc97433c31478638eeb6f5f7cde85b8a8a693fce55ed0b3f5aae35a075a43e5652c docfiles size=48 - RELOC/doc/latex/anonchap/anonchap.pdf + RELOC/doc/latex/anonchap/anonchap.pdf details="Package documentation" RELOC/doc/latex/anonchap/anonchap.tex +runfiles size=1 + RELOC/tex/latex/anonchap/anonchap.sty catalogue-ctan /macros/latex/contrib/anonchap -catalogue-date 2012-05-24 15:26:23 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics headings catalogue-version 1.1a name anonymouspro category Package revision 33441 -shortdesc Use AnonymousPro fonts with LaTeX. +shortdesc Use AnonymousPro fonts with LaTeX relocated 1 longdesc The fonts are a monowidth set, designed for use by coders. They longdesc appear as a set of four TrueType, or Adobe Type 1 font files, longdesc and LaTeX support is also provided. execute addMap AnonymousPro.map +containersize 415840 +containerchecksum 7196c8b1a48febce3d21dcf1cd25f613d408d8e4c800a8c851816b21e5640216bc554566ddaa6bd6a54a4cf8de6d3fbd79b334707c82d5d50e1e07bc441e7562 +doccontainersize 370484 +doccontainerchecksum 0ef947f0843c56e9e8166da1ee244d96fcde7f6ac6bdfebadbb7575eeee0b784c90229c4a45a20ceae2640d3d75d20d076d85ff2544fd28cbc55513bbd0a1cfb +docfiles size=111 + RELOC/doc/fonts/anonymouspro/AnonymousPro-01.etx + RELOC/doc/fonts/anonymouspro/AnonymousPro-02.etx + RELOC/doc/fonts/anonymouspro/AnonymousPro-03.etx + RELOC/doc/fonts/anonymouspro/AnonymousPro-drv.tex + RELOC/doc/fonts/anonymouspro/AnonymousPro-map.tex + RELOC/doc/fonts/anonymouspro/AnonymousPro-symbols.etx + RELOC/doc/fonts/anonymouspro/AnonymousPro.pdf details="Package documentation" + RELOC/doc/fonts/anonymouspro/FONTLOG.txt + RELOC/doc/fonts/anonymouspro/OFL.txt + RELOC/doc/fonts/anonymouspro/README details="Readme" + RELOC/doc/fonts/anonymouspro/README_Mark-Simonson.txt + RELOC/doc/fonts/anonymouspro/anonymouspro-fixlatin.mtx + RELOC/doc/fonts/anonymouspro/anonymouspro-fixtextcomp.mtx +srccontainersize 12100 +srccontainerchecksum 236012af67575c642bd949953402235ca74884dc8555a81057a3bd4306e02d5d58aac24a2c8d86bca2c8c754a0ffb5fadd8bbceabfe939d891d0ff6d8f777484 +srcfiles size=17 + RELOC/source/fonts/anonymouspro/AnonymousPro.dtx + RELOC/source/fonts/anonymouspro/AnonymousPro.ins runfiles size=312 RELOC/fonts/afm/public/anonymouspro/AnonymousPro-Bold.afm RELOC/fonts/afm/public/anonymouspro/AnonymousPro-BoldItalic.afm @@ -6230,57 +14735,57 @@ runfiles size=312 RELOC/tex/latex/anonymouspro/t1anonymouspro.fd RELOC/tex/latex/anonymouspro/ts1anonymouspro.fd RELOC/tex/latex/anonymouspro/uanonymouspro.fd -docfiles size=111 - RELOC/doc/fonts/anonymouspro/AnonymousPro-01.etx - RELOC/doc/fonts/anonymouspro/AnonymousPro-02.etx - RELOC/doc/fonts/anonymouspro/AnonymousPro-03.etx - RELOC/doc/fonts/anonymouspro/AnonymousPro-drv.tex - RELOC/doc/fonts/anonymouspro/AnonymousPro-map.tex - RELOC/doc/fonts/anonymouspro/AnonymousPro-symbols.etx - RELOC/doc/fonts/anonymouspro/AnonymousPro.pdf - RELOC/doc/fonts/anonymouspro/FONTLOG.txt - RELOC/doc/fonts/anonymouspro/OFL.txt - RELOC/doc/fonts/anonymouspro/README - RELOC/doc/fonts/anonymouspro/README_Mark-Simonson.txt - RELOC/doc/fonts/anonymouspro/anonymouspro-fixlatin.mtx - RELOC/doc/fonts/anonymouspro/anonymouspro-fixtextcomp.mtx -srcfiles size=17 - RELOC/source/fonts/anonymouspro/AnonymousPro.dtx - RELOC/source/fonts/anonymouspro/AnonymousPro.ins +catalogue-contact-home http://www.marksimonson.com/fonts/view/anonymous-pro catalogue-ctan /fonts/anonymouspro -catalogue-date 2014-04-13 18:34:56 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 +catalogue-topics font font-mono font-ttf font-type1 catalogue-version 2.1 name answers category Package revision 35032 -shortdesc Setting questions (or exercises) and answers. +shortdesc Setting questions (or exercises) and answers relocated 1 longdesc The package allows a lot of flexibility in constructing longdesc question and answer sheets. -runfiles size=2 - RELOC/tex/latex/answers/answers.sty +containersize 2164 +containerchecksum 89f7fa19dad8e94b57a66b53b72578c277037c0c3a9fe008d0802dcdedaea03f01c6554f4c6b80fd038ebc4f18e21bad3fc176f4c4acedae07d9acad2a90700e +doccontainersize 211316 +doccontainerchecksum 616569a8d972150c0a1da86625b580baaca642bfad773e9e2240f74d33ddfea203b4c7349660b996adbf8208a92b11861d3f1a42ff88c68f39efba0af97ffa19 docfiles size=52 - RELOC/doc/latex/answers/answers.pdf + RELOC/doc/latex/answers/answers.pdf details="Package documentation" +srccontainersize 7844 +srccontainerchecksum ab865ba5abd9be86d4056cc33ec9436c14cbc0c308cc68d9a6768c094b84dc1bf785bc78c84e1f286e9371c2118ae3c21b8f57d0b4406ba6c2130f633ee6ef09 srcfiles size=7 RELOC/source/latex/answers/answers.dtx RELOC/source/latex/answers/answers.ins +runfiles size=2 + RELOC/tex/latex/answers/answers.sty +catalogue-also exams catalogue-ctan /macros/latex/contrib/answers -catalogue-date 2014-08-24 12:32:27 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics exercise catalogue-version 2.16 name antiqua category Package revision 24266 catalogue urw-antiqua -shortdesc URW Antiqua condensed font, for use with TeX. +shortdesc URW Antiqua condensed font, for use with TeX relocated 1 longdesc The package contains a copy of the Type 1 font "URW Antiqua longdesc 2051 Regular Condensed" released under the GPL by URW, with longdesc supporting files for use with (La)TeX. execute addMap uaq.map +containersize 62624 +containerchecksum 0318b6f81d365cbb4b320642ddb6d8f909b5b136daf952da01c22508c392c58c9f8a25b33e4dd0e5afe777bb0b366633afd6567c3992df2a2e286cc9f41e6211 +doccontainersize 5356 +doccontainerchecksum 4158160d42fc776891f974cf8de13631aed17578ad2e5a67225442b7e783a36e2a0d3be640d92dce0fa66097dc617ad54b2779a3a3ef9878b46d900c5dc2ed7d +docfiles size=6 + RELOC/doc/fonts/antiqua/antiqua.txt details="Package documentation" + RELOC/doc/fonts/antiqua/uaqr8ac.afm.org runfiles size=53 RELOC/fonts/afm/urw/antiqua/uaqr8ac.afm RELOC/fonts/map/dvips/antiqua/uaq.map @@ -6309,24 +14814,36 @@ runfiles size=53 RELOC/tex/latex/antiqua/ot1uaq.fd RELOC/tex/latex/antiqua/t1uaq.fd RELOC/tex/latex/antiqua/ts1uaq.fd -docfiles size=6 - RELOC/doc/fonts/antiqua/antiqua.txt - RELOC/doc/fonts/antiqua/uaqr8ac.afm.org catalogue-ctan /fonts/urw/antiqua -catalogue-date 2014-06-07 20:47:53 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics font font-serif font-type1 catalogue-version 001.003 name antomega category Package revision 21933 -shortdesc Alternative language support for Omega/Lambda. +shortdesc Alternative language support for Omega/Lambda relocated 1 longdesc A language support package for Omega/Lambda. This replaces the longdesc original omega package for use with Lambda, and provides extra longdesc facilities (including Babel-like language switching, which longdesc eases porting of LaTeX documents to Lambda). depend omega +containersize 65576 +containerchecksum af2cbe945ac3495e94fbf69797c05d9a7cd8c3874148c54c602a4a152c669638cf7a861949a3cc2d08aa21f378b57beffddf2d13e3afc1157c74472c348f5405 +doccontainersize 166780 +doccontainerchecksum 298b2e796736f7598a83a2d4fee53f48e78d0c8b255cc09c686371a3a05a4d36736cef96d812281cfd3fe1024af433f32e117c1c60d7559809220ed8dd5e56a9 +docfiles size=51 + RELOC/doc/omega/antomega/README details="Readme" + RELOC/doc/omega/antomega/antomega.pdf details="Package documentation" +srccontainersize 24500 +srccontainerchecksum 7ee92461e60834af1f736f387823788a44d680171d9a7acbfd71c858885e190f724b5db11074efb74faf63b471af5c34688af1be5b765de67b170dbcf123fe2f +srcfiles size=28 + RELOC/source/lambda/antomega/antenc.dtx + RELOC/source/lambda/antomega/antenc.ins + RELOC/source/lambda/antomega/antomega.dtx + RELOC/source/lambda/antomega/antomega.ins runfiles size=206 RELOC/omega/ocp/antomega/babel2de.ocp RELOC/omega/ocp/antomega/babel2es.ocp @@ -6428,28 +14945,40 @@ runfiles size=206 RELOC/tex/lambda/antomega/uni0400.def RELOC/tex/lambda/antomega/uni1f00.def RELOC/tex/lambda/antomega/ut1enc-antomega.def -docfiles size=51 - RELOC/doc/omega/antomega/README - RELOC/doc/omega/antomega/antomega.pdf -srcfiles size=28 - RELOC/source/lambda/antomega/antenc.dtx - RELOC/source/lambda/antomega/antenc.ins - RELOC/source/lambda/antomega/antomega.dtx - RELOC/source/lambda/antomega/antomega.ins -catalogue-ctan /systems/omega/contrib/antomega -catalogue-date 2012-12-31 10:35:50 +0100 +catalogue-ctan /obsolete/systems/omega/contrib/antomega +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics multilingual omega catalogue-version 0.8 name antt category Package revision 18651 -shortdesc Antykwa Torunska: a Type 1 family of a Polish traditional type. +shortdesc Antykwa Torunska: a Type 1 family of a Polish traditional type relocated 1 longdesc Antykwa Torunska is a serif font designed by the late Polish longdesc typographer Zygfryd Gardzielewski, reconstructed and digitized longdesc as Type 1. execute addMap antt.map +containersize 4706312 +containerchecksum c31e92701d14e0559ca1807389d3f1d95a166e9dee918fc7218ee671227381e3c37a991756e9c19c7e7d3681597c3c012037a74249c7c8eaaefc7c8a3bc2fc36 +doccontainersize 2473796 +doccontainerchecksum 00533390612e68b48dbbe9c1ba11e46a0e48f8b87cea8f6623267d53795ee9170daa1f34adc8cde12356ef779990fcd7fe7a10b601bfc11c9a0f590b5a25f3b2 +docfiles size=762 + RELOC/doc/fonts/antt/AntykwaTorunska-doc-en-2_03.pdf details="Documentation in English" language="en" + RELOC/doc/fonts/antt/AntykwaTorunska-doc-pl-2_03.pdf details="Documentation in Polish" language="pl" + RELOC/doc/fonts/antt/AntykwaTorunska-doc-src-2_03.zip + RELOC/doc/fonts/antt/GUST-FONT-NOSOURCE-LICENSE.txt + RELOC/doc/fonts/antt/MANIFEST.txt + RELOC/doc/fonts/antt/README details="Readme" + RELOC/doc/fonts/antt/antt-latex-cyr.tex + RELOC/doc/fonts/antt/antt-latex-math.tex + RELOC/doc/fonts/antt/antt-latex-pl.tex + RELOC/doc/fonts/antt/antt-latex-t2a.tex + RELOC/doc/fonts/antt/antt-latex-t5.tex + RELOC/doc/fonts/antt/antt-mathtest.tex + RELOC/doc/fonts/antt/antt-table.tex + RELOC/doc/latex/antt/README details="Readme" runfiles size=5261 RELOC/fonts/afm/public/antt/anttb.afm RELOC/fonts/afm/public/antt/anttbi.afm @@ -6934,24 +15463,11 @@ runfiles size=5261 RELOC/tex/latex/antt/ts1anttl.fd RELOC/tex/latex/antt/ts1anttlc.fd RELOC/tex/plain/antt/antt-math.tex -docfiles size=762 - RELOC/doc/fonts/antt/AntykwaTorunska-doc-en-2_03.pdf - RELOC/doc/fonts/antt/AntykwaTorunska-doc-pl-2_03.pdf - RELOC/doc/fonts/antt/AntykwaTorunska-doc-src-2_03.zip - RELOC/doc/fonts/antt/GUST-FONT-NOSOURCE-LICENSE.txt - RELOC/doc/fonts/antt/MANIFEST.txt - RELOC/doc/fonts/antt/README - RELOC/doc/fonts/antt/antt-latex-cyr.tex - RELOC/doc/fonts/antt/antt-latex-math.tex - RELOC/doc/fonts/antt/antt-latex-pl.tex - RELOC/doc/fonts/antt/antt-latex-t2a.tex - RELOC/doc/fonts/antt/antt-latex-t5.tex - RELOC/doc/fonts/antt/antt-mathtest.tex - RELOC/doc/fonts/antt/antt-table.tex - RELOC/doc/latex/antt/README +catalogue-also anttvf catalogue-ctan /fonts/antt -catalogue-date 2012-11-30 12:31:01 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gfsl +catalogue-topics font font-type1 font-otf polish catalogue-version 2.08 name anufinalexam @@ -6962,17 +15478,22 @@ relocated 1 longdesc This LaTeX document shell is created for the standard longdesc formatting of final exams in The Australian National longdesc University. +containersize 432 +containerchecksum 0f7deb262a96bf55eba167475ca7c55887c1cdfbe60f9a32debb6926d855764eb595acb693ce9ab74a2af89efd98114f6694255580b5d594915cb2470d84b485 +doccontainersize 1968 +doccontainerchecksum 0821831108f81bc8d23dfb7d26f2201057a897a2dc783959b9e298b8e59b79a12453db072b824397a9625b8a63e7fb19ad8ba6d4500436bb0f7b9a23f96d1c3d docfiles size=3 RELOC/doc/latex/anufinalexam/ANUfinalexam.tex - RELOC/doc/latex/anufinalexam/README -catalogue-ctan /macros/latex/contrib/anufinalexam/ANUfinalexam.tex -catalogue-date 2012-04-20 11:49:46 +0200 + RELOC/doc/latex/anufinalexam/README details="Readme" +catalogue-ctan /macros/latex/contrib/anufinalexam +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license gpl +catalogue-topics exam name anyfontsize category Package revision 17050 -shortdesc Select any font size in LaTeX. +shortdesc Select any font size in LaTeX relocated 1 longdesc The package allows the to user select any font size (via e.g. longdesc \fontsize{...}{...}\selectfont), even those sizes that are not @@ -6982,126 +15503,188 @@ longdesc then scale the font to the size actually requested. Similar longdesc functionality is available for the CM family, for the EC longdesc family, or for either computer modern encoding; the present longdesc package generalises the facility. -runfiles size=1 - RELOC/tex/latex/anyfontsize/anyfontsize.sty +containersize 2112 +containerchecksum 31d1c235d011998043663bc1f5729bd40c5b90996627038be612115daef2b3526c9e616b16c251d6b653d5bad82beee62a7dcfc3b8c10feec0850729afb294ea +doccontainersize 183472 +doccontainerchecksum 9003fdbf712448de70c858eba74f7de79e0cb83e8f9fe72d9c1b71869161d5a63099473c4f9ec670b28b356ceccd9b56110a1724dcde3062ae209a678f5b0e16 docfiles size=48 - RELOC/doc/latex/anyfontsize/README - RELOC/doc/latex/anyfontsize/anyfontsize.pdf + RELOC/doc/latex/anyfontsize/README details="Readme" + RELOC/doc/latex/anyfontsize/anyfontsize.pdf details="Package documentation" RELOC/doc/latex/anyfontsize/anyfontsize.tex +runfiles size=1 + RELOC/tex/latex/anyfontsize/anyfontsize.sty catalogue-ctan /macros/latex/contrib/anyfontsize -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font-use name anysize category Package revision 15878 -shortdesc A simple package to set up document margins. +shortdesc A simple package to set up document margins relocated 1 longdesc This package is considered obsolete; alternatives are the longdesc typearea package from the koma-script bundle, or the geometry longdesc package. -runfiles size=1 - RELOC/tex/latex/anysize/anysize.sty +containersize 1384 +containerchecksum 4439be91f8dd82cdc051c519b5bc36fdfb632cf09941f4e6ec92fa77c2b5f4d767c162018fc9451d48ece17e9cbd5d7d4c574eacea78b8f92b6e07d40d7b590b +doccontainersize 34460 +doccontainerchecksum 96591bba808fc91a876dd49a6e1ede3b679c18952244f14b07e992b40d20f6c4a0f4b4dad00a409c766c5f2e883fc4923c501e65b06ad93193719001c2629f08 docfiles size=13 - RELOC/doc/latex/anysize/README - RELOC/doc/latex/anysize/anysize.pdf + RELOC/doc/latex/anysize/README details="Package Readme" + RELOC/doc/latex/anysize/anysize.pdf details="Package documentation" RELOC/doc/latex/anysize/anysize.tex +runfiles size=1 + RELOC/tex/latex/anysize/anysize.sty catalogue-ctan /macros/latex/contrib/anysize -catalogue-date 2012-04-17 00:02:56 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics geometry name aobs-tikz category Package revision 32662 -shortdesc TikZ styles for creating overlaid pictures in beamer. +shortdesc TikZ styles for creating overlaid pictures in beamer relocated 1 longdesc The package defines auxiliary TikZ styles useful for overlaying longdesc pictures' elements in Beamer. The TikZ styles are grouped in a longdesc library, overlay-beamer-styles which is automatically called by longdesc the package itself. Users may either load just aobs-tikz or the longdesc library; the latter method necessitates TikZ manual load. -runfiles size=1 - RELOC/tex/latex/aobs-tikz/tikzlibraryoverlay-beamer-styles.code.tex +containersize 1680 +containerchecksum 76e3f9748c704efafda74e6184aa3c0199f8dae3a9f433615fb87ac5fd7c81d5dd604e91ed7648b68f05919425f82fd19ca0b66f4f590f55e55634a5cc4b7f9a +doccontainersize 88032 +doccontainerchecksum 3732ca200dcb7d3d4b99cbb0edbe13ef7c9293e8424457c2493c330b4ea810bca21851161b83740bf3b7b53899941e906b0b2e4b46ba715e7b5bbe19844d2070 docfiles size=25 - RELOC/doc/latex/aobs-tikz/README - RELOC/doc/latex/aobs-tikz/aobs-tikz.pdf + RELOC/doc/latex/aobs-tikz/README details="Readme" + RELOC/doc/latex/aobs-tikz/aobs-tikz.pdf details="Package documentation" RELOC/doc/latex/aobs-tikz/example.tex +srccontainersize 5852 +srccontainerchecksum 2cc8953d5e03bb1e6fc35d323a35d434aef291b165f1ac4fa0b005689af3d7988770d0a86fb4b4c3dd3ef6ea876f962dac5653e695533e089a7a50653358f40a srcfiles size=6 RELOC/source/latex/aobs-tikz/aobs-tikz.dtx RELOC/source/latex/aobs-tikz/aobs-tikz.ins +runfiles size=1 + RELOC/tex/latex/aobs-tikz/tikzlibraryoverlay-beamer-styles.code.tex catalogue-ctan /graphics/pgf/contrib/aobs-tikz -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics pgf-tikz presentation catalogue-version 1.0 name aomart category Package -revision 36324 -shortdesc Typeset articles for the Annals of Mathematics. +revision 46091 +shortdesc Typeset articles for the Annals of Mathematics relocated 1 longdesc The package provides a class for typesetting articles for The longdesc Annals of Mathematics. -runfiles size=20 - RELOC/bibtex/bst/aomart/aomalpha.bst - RELOC/bibtex/bst/aomart/aomplain.bst - RELOC/tex/latex/aomart/aomart.cls -docfiles size=370 +containersize 13276 +containerchecksum 699f0d1fc5e8fa4bccd31609044e2330dd33083acb56832a64ede0d23d4f21e7a8d37ad5734e282d11238c334399f5b5b6449671ab82b737f9c51612b49f727f +doccontainersize 1150464 +doccontainerchecksum ca87c32d703e136735fb6e121c4bcf9fcad367121b071bbb792d96da1669001e4221116275aa6b37df1af7788df4ddaa6948aca3405facc0f05af7ae6924215e +docfiles size=424 RELOC/doc/latex/aomart/Makefile - RELOC/doc/latex/aomart/README + RELOC/doc/latex/aomart/README details="Readme" RELOC/doc/latex/aomart/aomart.bib - RELOC/doc/latex/aomart/aomart.pdf + RELOC/doc/latex/aomart/aomart.pdf details="Package documentation" + RELOC/doc/latex/aomart/aomfrench.pdf + RELOC/doc/latex/aomart/aomfrench.tex RELOC/doc/latex/aomart/aomsample.bib - RELOC/doc/latex/aomart/aomsample.pdf + RELOC/doc/latex/aomart/aomsample.pdf details="Sample article" RELOC/doc/latex/aomart/aomsample.tex RELOC/doc/latex/aomart/aomsample1.pdf RELOC/doc/latex/aomart/aomsample1.tex RELOC/doc/latex/aomart/fullref.pl -srcfiles size=18 +srccontainersize 20092 +srccontainerchecksum ba9496f1adee23fff0bf5b3d1d5d54f05c6808ce2b40e7fad8450f01d4c02a2e5e6104304131eb52c91df47a1091f46623d4d4e1849d015f1e6b37d86f210c05 +srcfiles size=20 RELOC/source/latex/aomart/aomart.dtx RELOC/source/latex/aomart/aomart.ins +runfiles size=21 + RELOC/bibtex/bst/aomart/aomalpha.bst + RELOC/bibtex/bst/aomart/aomplain.bst + RELOC/tex/latex/aomart/aomart.cls catalogue-ctan /macros/latex/contrib/aomart -catalogue-date 2015-02-18 22:22:55 +0100 +catalogue-date 2017-12-16 21:58:17 +0100 catalogue-license lppl1.3 -catalogue-version 1.14a +catalogue-topics journalpub +catalogue-version 1.21 -name apa6e +name apa category Package -revision 23350 -shortdesc Format manuscripts to APA 6th edition guidelines. +revision 42428 +shortdesc American Psychological Association format relocated 1 -longdesc This is a minimalist class file for formatting manuscripts in -longdesc the style described in the American Psychological Association -longdesc (APA) 6th edition guidelines. The apa6 class provides better -longdesc coverage of the requirements. -runfiles size=2 - RELOC/tex/latex/apa6e/apa6e.cls -docfiles size=65 - RELOC/doc/latex/apa6e/README - RELOC/doc/latex/apa6e/apa6e.pdf -srcfiles size=7 - RELOC/source/latex/apa6e/apa6e.dtx - RELOC/source/latex/apa6e/apa6e.ins -catalogue-ctan /macros/latex/contrib/apa6e -catalogue-date 2014-09-16 18:22:54 +0200 -catalogue-license bsd -catalogue-version 0.3 +longdesc A LaTeX class to format text according to the American +longdesc Psychological Association Publication Manual (5th ed.) +longdesc specifications for manuscripts or to the APA journal look found +longdesc in journals like the Journal of Experimental Psychology etc. In +longdesc addition, it provides regular LaTeX-like output with a few +longdesc enhancements and APA-motivated changes. Note that the apa6 +longdesc (covering the 6th edition of the manual) is now commonly in +longdesc use. Apacite, which used to work with this class, has now been +longdesc updated for use with apa6. +containersize 12892 +containerchecksum 53d30a8458538f1852113370a63d49e8c0926437752c9d03299374fcf8adcd79c1c353bf420ac33a364e6ca296079ff385609bf2afbcb95dcf54465715790703 +doccontainersize 26964 +doccontainerchecksum df97c4fd9187772847f29950e899fae480cf5fd82d7f6bc3fcd1de93a1535fac7481436c789ae2c04e998f521f23e5b5219b38904afe1394cebb6c68e55d780e +docfiles size=29 + RELOC/doc/latex/apa/APAendfloat.cfg + RELOC/doc/latex/apa/CHANGELOG.txt + RELOC/doc/latex/apa/LICENCE + RELOC/doc/latex/apa/README details="Readme" + RELOC/doc/latex/apa/apacls.html details="Class documentation" + RELOC/doc/latex/apa/apacls.txt details="Outline of the class" + RELOC/doc/latex/apa/apaenum.txt details="Outline of list facilities" + RELOC/doc/latex/apa/apaexample.tex + RELOC/doc/latex/apa/examplebib.bib + RELOC/doc/latex/apa/examples.txt +runfiles size=18 + RELOC/tex/latex/apa/apa.cls + RELOC/tex/latex/apa/dutch.apa + RELOC/tex/latex/apa/english.apa + RELOC/tex/latex/apa/greek.apa +catalogue-also mslapa +catalogue-contact-home http://users.uoa.gr/~aprotopapas/CV/apacls.html +catalogue-ctan /macros/latex/contrib/apa +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl +catalogue-topics psychology journalpub +catalogue-version 1.3.4 name apa6 category Package -revision 35631 -shortdesc Format documents in APA style (6th edition). +revision 48546 +shortdesc Format documents in APA style (6th edition) relocated 1 longdesc The class formats documents in APA style (6th Edition). It longdesc provides a full set of facilities in three different output -longdesc modes (journal-like appearance, double-spaced manuscript, LaTeX- -longdesc like document), in contrast to the earlier apa6e, which only -longdesc formats double-spaced manuscripts in APA style. The class can -longdesc mask author identity for copies for use in masked peer review. -longdesc Citations are provided using the apacite bundle; the class -longdesc requires that package if citations are to be typeset. The class -longdesc is a development of the apa class (which is no longer -longdesc maintained). -runfiles size=26 +longdesc modes (journal-like appearance, double-spaced manuscript, +longdesc LaTeX-like document), in contrast to the earlier apa6e, which +longdesc only formats double-spaced manuscripts in APA style. The class +longdesc can mask author identity for copies for use in masked peer +longdesc review. The class is a development of the apa class (which is +longdesc no longer maintained). +containersize 13780 +containerchecksum 338e7bc7d97fc2b9c322d00fdc084d76e025584fc4584bc253f44ecedd6774cce38913e8ad0c08bb6bc64b63b83702d0a13e896f2e87b0760129e1b734b15fd1 +doccontainersize 565384 +doccontainerchecksum 2e34f5094708aad343a716d96be89aaca2c86dc08da5280ad2146013e3df635ab9e49b814efb1166a9e43a3b98245f92f2e5144637bd96c13ee4e1a59b2ad04d +docfiles size=163 + RELOC/doc/latex/apa6/README details="Readme" + RELOC/doc/latex/apa6/apa6.pdf details="Package documentation" + RELOC/doc/latex/apa6/pseudoTeX/TeX2WordForapa6.bas + RELOC/doc/latex/apa6/pseudoTeX/apa6.ptex + RELOC/doc/latex/apa6/samples/Figure1.pdf + RELOC/doc/latex/apa6/samples/bibliography.bib + RELOC/doc/latex/apa6/samples/longsample.tex + RELOC/doc/latex/apa6/samples/shortsample.tex +srccontainersize 37104 +srccontainerchecksum f73170f6eeadfe27dcaf0ffa7b66232eb7da5246b1630ce5794aebd6a6faec0233a3f148225a2df4e7c95af38d5005fe84e1e3cac1011bc7b0398113fd49d9d2 +srcfiles size=44 + RELOC/source/latex/apa6/apa6.dtx + RELOC/source/latex/apa6/apa6.ins +runfiles size=27 RELOC/tex/latex/apa6/apa6.cls RELOC/tex/latex/apa6/config/APAamerican.txt RELOC/tex/latex/apa6/config/APAbritish.txt @@ -7112,27 +15695,46 @@ runfiles size=26 RELOC/tex/latex/apa6/config/APAgerman.txt RELOC/tex/latex/apa6/config/APAgreek.txt RELOC/tex/latex/apa6/config/APAngerman.txt -docfiles size=162 - RELOC/doc/latex/apa6/README - RELOC/doc/latex/apa6/apa6.pdf - RELOC/doc/latex/apa6/pseudoTeX/TeX2WordForapa6.bas - RELOC/doc/latex/apa6/pseudoTeX/apa6.ptex - RELOC/doc/latex/apa6/samples/Figure1.pdf - RELOC/doc/latex/apa6/samples/bibliography.bib - RELOC/doc/latex/apa6/samples/longsample.tex - RELOC/doc/latex/apa6/samples/shortsample.tex -srcfiles size=44 - RELOC/source/latex/apa6/apa6.dtx - RELOC/source/latex/apa6/apa6.ins + RELOC/tex/latex/apa6/config/APAturkish.txt catalogue-ctan /macros/latex/contrib/apa6 -catalogue-date 2014-11-20 15:51:47 +0100 -catalogue-license lppl1.3 -catalogue-version 2.14 +catalogue-date 2018-09-02 09:12:12 +0200 +catalogue-license lppl1.3c +catalogue-topics class apa psychology journalpub +catalogue-version 2.33 + +name apa6e +category Package +revision 23350 +shortdesc Format manuscripts to APA 6th edition guidelines +relocated 1 +longdesc This is a minimalist class file for formatting manuscripts in +longdesc the style described in the American Psychological Association +longdesc (APA) 6th edition guidelines. The apa6 class provides better +longdesc coverage of the requirements. +containersize 2896 +containerchecksum 155bd30654ec3a2bf3930bdad98235baa6bf7aa8109ad449aa1a7b6f2dbda37851f43978266e1c273cbd2155ed274003dcd91f9f452f2dffe268750fd0d9293b +doccontainersize 245600 +doccontainerchecksum d78ed178d1fbd07668bdeef74cf6f9f3674837a4f83eb5dce590762f7c02fae1017ee2eed6625a85a7b3e251ebff103e37da84af589125bdb60b73c9459cb748 +docfiles size=65 + RELOC/doc/latex/apa6e/README details="Readme" + RELOC/doc/latex/apa6e/apa6e.pdf details="Package documentation" +srccontainersize 8492 +srccontainerchecksum 6a6502eb1a60d2b67d373fd1cb4aea0737d0eba9ed2846c07ff5849c4bfddb9ab3b6369ec0958536e831c79e63beece92393c874d9463bc7e3cc1a56f4c4ecb4 +srcfiles size=7 + RELOC/source/latex/apa6e/apa6e.dtx + RELOC/source/latex/apa6e/apa6e.ins +runfiles size=2 + RELOC/tex/latex/apa6e/apa6e.cls +catalogue-ctan /macros/latex/contrib/apa6e +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license bsd +catalogue-topics apa psychology class journalpub +catalogue-version 0.3 name apacite category Package revision 31264 -shortdesc Citation style following the rules of the APA. +shortdesc Citation style following the rules of the APA relocated 1 longdesc Apacite provides a BibTeX style and a LaTeX package which are longdesc designed to match the requirements of the American @@ -7143,6 +15745,21 @@ longdesc package is compatible with chapterbib and (to some extent) with longdesc hyperref (for limits of compatibility, see the documentation). longdesc The package also includes a means of generating an author index longdesc for a document. +containersize 42756 +containerchecksum 02b89374a1a61c7f972aa759b11420cbc7a895972a9b36dd09e48f0aba2ab8d83632949d6f8fbdd781170403639b765ee68a22e1962d13751af7fbd121a875df +doccontainersize 641172 +doccontainerchecksum f9840a9ef1cd33ed01b8338956b3da3676167d8ac99cd1ce32dc0383992fc9b141edb20df2fdb6b0d5df5762ff8d434cd84881f8ab1cb4035fcfb2bd9f3ed14a +docfiles size=177 + RELOC/doc/bibtex/apacite/README details="Package Readme" + RELOC/doc/bibtex/apacite/apa5ex.bib + RELOC/doc/bibtex/apacite/apacite.pdf details="Package documentation" + RELOC/doc/bibtex/apacite/apacxmpl.tex +srccontainersize 162688 +srccontainerchecksum 4fc1c927dd602684043a803d8e15b7bf548301bf2562a5fcc111a52676f96740db138da3b58993ccffb78bcaf6dace321f196c5a77022955955c87f729bea506 +srcfiles size=212 + RELOC/source/bibtex/apacite/apacite.drv + RELOC/source/bibtex/apacite/apacite.dtx + RELOC/source/bibtex/apacite/apacite.ins runfiles size=189 RELOC/bibtex/bst/apacite/apacann.bst RELOC/bibtex/bst/apacite/apacannx.bst @@ -7160,112 +15777,87 @@ runfiles size=189 RELOC/tex/latex/apacite/norsk.apc RELOC/tex/latex/apacite/spanish.apc RELOC/tex/latex/apacite/swedish.apc -docfiles size=177 - RELOC/doc/bibtex/apacite/README - RELOC/doc/bibtex/apacite/apa5ex.bib - RELOC/doc/bibtex/apacite/apacite.pdf - RELOC/doc/bibtex/apacite/apacxmpl.tex -srcfiles size=212 - RELOC/source/bibtex/apacite/apacite.drv - RELOC/source/bibtex/apacite/apacite.dtx - RELOC/source/bibtex/apacite/apacite.ins catalogue-ctan /biblio/bibtex/contrib/apacite -catalogue-date 2013-07-22 09:44:36 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics psychology journalpub bibtex-sty bibtex-supp catalogue-version 6.03 +name apalike-german +category Package +revision 47002 +shortdesc A copy of apalike.bst with German localization +relocated 1 +longdesc A copy of apalike.bst (which is part of the base BibTeX +longdesc distribution) with German localization. +containersize 5860 +containerchecksum 37dec37d8e08a2f124c3874eeb9934e7da3cc9cc8fb1ce82705a461e060e4a59dbd82c779ce89c4d53f1ea909b4b9abfd57e1f9362ed432693dbee7b1ce615b9 +doccontainersize 13300 +doccontainerchecksum 91899056f7c71a20e08e4f5e1a2cab83282f9436409cf28b120b92a3633ec5287ae2b6d7fec2c20ee28299589150408ef2e9760028231523e4c378351a88432f +docfiles size=20 + RELOC/doc/bibtex/apalike-german/README.html details="Readme (HTML)" + RELOC/doc/bibtex/apalike-german/README.md details="Readme" +runfiles size=7 + RELOC/bibtex/bst/apalike-german/apalike-german.bst +catalogue-contact-home https://ingram-braun.net/public/programming/tex/apalike-german-bst-bibtex-bibliography-author-date-style/ +catalogue-contact-repository https://github.com/CarlOrff/apalike-german +catalogue-ctan /biblio/bibtex/contrib/apalike-german +catalogue-date 2018-03-17 14:53:38 +0100 +catalogue-license lppl1.3c +catalogue-topics bibtex-sty german + name apalike2 category Package revision 15878 -shortdesc Bibliography style that approaches APA requirements. +shortdesc Bibliography style that approaches APA requirements relocated 1 longdesc Described as a "local adaptation" of apalike (which is part of -longdesc the base bibtex distribution). +longdesc the base BibTeX distribution). +containersize 6328 +containerchecksum ff569f69538cf82afd19d9dd8f798ac36994791d4c5cdaf8998267883432ee0230485de6b0aa9e9babcb285f1121936e911fe69700762010bcfbdfac6cdf5be6 runfiles size=7 RELOC/bibtex/bst/apalike2/apalike2.bst -catalogue-ctan /biblio/bibtex/contrib/apalike2/apalike2.bst -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-ctan /biblio/bibtex/contrib/apalike2 +catalogue-date 2016-11-03 05:37:55 +0100 catalogue-license knuth - -name apa -category Package -revision 15878 -shortdesc American Psychological Association format. -relocated 1 -longdesc A LaTeX class to format text according to the American -longdesc Psychological Association Publication Manual (5th ed.) -longdesc specifications for manuscripts or to the APA journal look found -longdesc in journals like the Journal of Experimental Psychology etc. In -longdesc addition, it provides regular LaTeX-like output with a few -longdesc enhancements and APA-motivated changes. Note that the apa6 -longdesc (covering the 6th edition of the manual) is now commonly in -longdesc use. Apacite, which used to work with this class, has now been -longdesc updated for use with apa6. -runfiles size=18 - RELOC/tex/latex/apa/apa.cls - RELOC/tex/latex/apa/dutch.apa - RELOC/tex/latex/apa/english.apa - RELOC/tex/latex/apa/greek.apa -docfiles size=29 - RELOC/doc/latex/apa/APAendfloat.cfg - RELOC/doc/latex/apa/CHANGELOG.txt - RELOC/doc/latex/apa/LICENCE - RELOC/doc/latex/apa/README - RELOC/doc/latex/apa/apacls.html - RELOC/doc/latex/apa/apacls.txt - RELOC/doc/latex/apa/apaenum.txt - RELOC/doc/latex/apa/apaexample.tex - RELOC/doc/latex/apa/examplebib.bib - RELOC/doc/latex/apa/examples.txt -catalogue-ctan /macros/latex/contrib/apa -catalogue-date 2012-02-26 12:07:30 +0100 -catalogue-license lppl -catalogue-version 1.3.4 +catalogue-topics psychology journalpub bibtex-sty name apnum category Package -revision 37357 -shortdesc Arbitrary precision numbers implemented by TeX macros. +revision 47510 +shortdesc Arbitrary precision numbers implemented by TeX macros relocated 1 longdesc The basic operations (addition, subtraction, multiplication, longdesc division, power to an integer) are implemented by TeX macros in longdesc this package. Operands may be numbers with arbitrary numbers of longdesc digits; scientific notation is allowed. The expression scanner -longdesc is also provided. Exhaustive documentation (including detailed +longdesc is also provided. As of version 1.4 (December 2015) the +longdesc calculation of common functions (sqrt, exp, ln, sin, cos, tan, +longdesc asin, acos, atan, pi) with arbitrary precision in the result +longdesc has been added. Exhaustive documentation (including detailed longdesc TeXnical documentation) is included. The macro includes many longdesc optimizations and uses only TeX primitives (from classic TeX) longdesc and \newcount macro. -runfiles size=7 - RELOC/tex/generic/apnum/apnum.tex -docfiles size=144 - RELOC/doc/generic/apnum/README +containersize 13364 +containerchecksum 2e155193dfdd3c88cf336cece23bc6b393a81529c31ac2535840a7c4f4a97530d35d0f4ae964e8f92856eea0d54c356e8bc15427918ba0891730827a3ba561c6 +doccontainersize 739572 +doccontainerchecksum 4e1a6ff31d9836dbb04fbd90911083a9ff70c7526ef099d437e21c11766314cc29e8071dbc21976af7a23fe99b673bbee82dfd265041b9ecd015070c58b4ce14 +docfiles size=210 + RELOC/doc/generic/apnum/README details="Readme" RELOC/doc/generic/apnum/apnum.d - RELOC/doc/generic/apnum/apnum.pdf + RELOC/doc/generic/apnum/apnum.pdf details="Package documentation" +runfiles size=13 + RELOC/tex/generic/apnum/apnum.tex catalogue-ctan /macros/generic/apnum -catalogue-date 2015-05-12 19:56:31 +0200 +catalogue-date 2018-04-22 09:36:46 +0200 catalogue-license pd -catalogue-version 1.2 - -name appendixnumberbeamer -category Package -revision 25809 -shortdesc Manage frame numbering in appendixes in beamer. -relocated 1 -longdesc The package arranges that an appendix in a beamer presentation -longdesc is not counted in the frame count of the presentation; -longdesc appendixes are numbered starting from one. -runfiles size=1 - RELOC/tex/latex/appendixnumberbeamer/appendixnumberbeamer.sty -docfiles size=1 - RELOC/doc/latex/appendixnumberbeamer/README -catalogue-ctan /macros/latex/contrib/beamer-contrib/appendixnumberbeamer -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license gpl3 +catalogue-topics calculation +catalogue-version 1.7 name appendix category Package -revision 15878 -shortdesc Extra control of appendices. +revision 42428 +shortdesc Extra control of appendices relocated 1 longdesc The appendix package provides various ways of formatting the longdesc titles of appendices. Also (sub)appendices environments are @@ -7277,19 +15869,95 @@ longdesc before the appendices are listed. The word 'Appendices' or longdesc similar can be typeset as a \part-like heading (page) in the longdesc body. An appendices environment is provided which can be used longdesc instead of the \appendix command. -runfiles size=3 - RELOC/tex/latex/appendix/appendix.sty +containersize 2760 +containerchecksum ed3858af33069bf1cf5303f4fdd5ed17b1353be7202544e4e387ac9f428896bb24b9ad98ecfabda8a6fa9852c3ffe5179f1ed06a7377b4cda91e9b480d6a38be +doccontainersize 159060 +doccontainerchecksum 88298d222e63e3e122a60d63e1f8a8eeeaeadf0d7287ffb4a2db5dd5d6ee944b64d74d181ce5f5e2605577827cc9a64054312448b6457c26c08e67284c00447b docfiles size=46 - RELOC/doc/latex/appendix/README - RELOC/doc/latex/appendix/appendix.pdf + RELOC/doc/latex/appendix/README details="Package Readme" + RELOC/doc/latex/appendix/appendix.pdf details="Package documentation" +srccontainersize 10512 +srccontainerchecksum 4778f0e2586b746957ae480e90f68a951c274be59588e7d22e2ebdf13514ff08e058c0793ca5c83433897c720d5371f0f6e847433405f0d880462933ad0707f7 srcfiles size=11 RELOC/source/latex/appendix/appendix.dtx RELOC/source/latex/appendix/appendix.ins +runfiles size=3 + RELOC/tex/latex/appendix/appendix.sty catalogue-ctan /macros/latex/contrib/appendix -catalogue-date 2012-05-01 12:33:44 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics appendix headings catalogue-version 1.2b +name appendixnumberbeamer +category Package +revision 46317 +shortdesc Manage frame numbering in appendixes in beamer +relocated 1 +longdesc This package fixes the frame numbering in beamer when using an +longdesc appendix such that the slides from the appendix are not counted +longdesc in the total frame number of the main part of the document. The +longdesc total frame number counter is reset to 0 when entering the +longdesc appendix. The standard usage is to include +longdesc \usepackage{appendixnumberbeamer} in the preamble and then +longdesc declare the beginning of the appendix as usual using the +longdesc \appendix command. +containersize 1596 +containerchecksum d5f4573a0f6c31be7e910512d86ee0443e713abea11e71694b58f1d1d65f4249f967aa5b873941e1d8b7686d408f411aad1a76009a3bbcb528693ae14dc60e63 +doccontainersize 676 +doccontainerchecksum 58b32eacfbcd8e024a4cf3dcea0c1d057010dd454c1e54b6752b970a3fa1a9e10eb15d8cee9dbb9ae032aaa8b6c070079b112f5a91b1c9617df40877a4a3454b +docfiles size=2 + RELOC/doc/latex/appendixnumberbeamer/README.md details="Readme" + RELOC/doc/latex/appendixnumberbeamer/VERSION +runfiles size=1 + RELOC/tex/latex/appendixnumberbeamer/appendixnumberbeamer.sty +catalogue-contact-bugs https://github.com/jlelong/appendixnumberbeamer/issues +catalogue-contact-home https://github.com/jlelong/appendixnumberbeamer +catalogue-ctan /macros/latex/contrib/beamer-contrib/appendixnumberbeamer +catalogue-date 2018-01-15 14:36:54 +0100 +catalogue-license gpl3 +catalogue-topics presentation +catalogue-version 1.2 + +name apprendre-a-programmer-en-tex +category Package +revision 50933 +shortdesc The book "Apprendre a programmer en TeX" +relocated 1 +longdesc This book explains the basic concepts required for programming +longdesc in TeX and explains the programming methods, providing many +longdesc examples. The package makes the compileable source code as well +longdesc as the compiled pdf file accessible to everyone. Ce livre +longdesc expose les concepts de base requis pour programmer en TeX et +longdesc decrit les methodes de programmation en s'appuyant sur de +longdesc nombreux exemples. Ce package met a disposition de tous le code +longdesc source compilable ainsi que le fichier pdf du livre. +containersize 704 +containerchecksum deaf9ad3580a803fd5fa7cbf8f8a11df4d350b7b90ed880317d1e67290ce8b48bf783bfdf470076b672cc5e257bd10d69d6361c7959d81f9fb759752adbf2a6e +doccontainersize 31885208 +doccontainerchecksum 820f1ba9f635e05a25167203a1f27d13c380281640784828c27ae7366816f309c6d3a630abf3ed49ed996357064878c735c9d7c17bd6dc262a21a420fe40f77f +docfiles size=9693 + RELOC/doc/plain/apprendre-a-programmer-en-tex/README details="Readme" + RELOC/doc/plain/apprendre-a-programmer-en-tex/cover/couverture.pdf + RELOC/doc/plain/apprendre-a-programmer-en-tex/fonts/libertine-legacy.zip + RELOC/doc/plain/apprendre-a-programmer-en-tex/fonts/linlibmonoc.zip + RELOC/doc/plain/apprendre-a-programmer-en-tex/output/apprendre-a-programmer-en-tex.pdf details="The document itself" language="fr" + RELOC/doc/plain/apprendre-a-programmer-en-tex/output/progtexcode.txt + RELOC/doc/plain/apprendre-a-programmer-en-tex/source/apprendre-a-programmer-en-tex.tex + RELOC/doc/plain/apprendre-a-programmer-en-tex/source/mandelbrot.pdf + RELOC/doc/plain/apprendre-a-programmer-en-tex/source/mandelbrot.tex + RELOC/doc/plain/apprendre-a-programmer-en-tex/source/pg0001.pdf + RELOC/doc/plain/apprendre-a-programmer-en-tex/source/pg0002.pdf + RELOC/doc/plain/apprendre-a-programmer-en-tex/source/pg0003.pdf + RELOC/doc/plain/apprendre-a-programmer-en-tex/source/progtexmacro.tex + RELOC/doc/plain/apprendre-a-programmer-en-tex/source/vignette.png +catalogue-contact-bugs https://framagit.org/unbonpetit/apprendre-a-programmer-en-tex/issues +catalogue-contact-repository https://framagit.org/unbonpetit/apprendre-a-programmer-en-tex +catalogue-ctan /info/apprendre-a-programmer-en-tex +catalogue-date 2019-04-27 11:27:16 +0200 +catalogue-license lppl1.2 +catalogue-topics book-src tut-plaintex french-doc documentation + name apprends-latex category Package revision 19306 @@ -7297,10 +15965,14 @@ shortdesc Apprends LaTeX! relocated 1 longdesc Apprends LaTeX! ("Learn LaTeX", in English) is French longdesc documentation for LaTeX beginners. +containersize 444 +containerchecksum fe9c7ee4cc8cac1ed932388ff75066e4166e582f92bc23da4a4f6049f3cfd8c100d6ab6c0b3c661dd76038a9683eb3207f94f54ea338dd172027815d6945ad94 +doccontainersize 2489056 +doccontainerchecksum d65d5f56e055ac4628e8198b718689631edca80abb3593480948ee8ba3336d7baccc091cac9f95b4dff745d84d409488d3a2032a1587f1f1a5db186af4da1413 docfiles size=713 - RELOC/doc/latex/apprends-latex/Apprends_LaTeX.pdf + RELOC/doc/latex/apprends-latex/Apprends_LaTeX.pdf details="The document itself" language="fr" RELOC/doc/latex/apprends-latex/Apprends_LaTeX.tex - RELOC/doc/latex/apprends-latex/README + RELOC/doc/latex/apprends-latex/README details="Readme" RELOC/doc/latex/apprends-latex/avance.bib RELOC/doc/latex/apprends-latex/bibliographie-index.bib RELOC/doc/latex/apprends-latex/divers.bib @@ -7327,60 +15999,89 @@ docfiles size=713 RELOC/doc/latex/apprends-latex/latex.bib RELOC/doc/latex/apprends-latex/latexmkrc RELOC/doc/latex/apprends-latex/typographie.bib +catalogue-contact-home http://www.babafou.eu.org/Apprends_LaTeX/ catalogue-ctan /info/apprends-latex -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl +catalogue-topics french-doc catalogue-version 4.02 name apptools category Package revision 28400 -shortdesc Tools for customising appendices. +shortdesc Tools for customising appendices relocated 1 longdesc The package provides an \AtAppendix command to add code to a longdesc hook that is executed when \appendix is called by the user. longdesc Additionally, a TeX conditional \ifappendix and a LaTeX-style longdesc conditional \IfAppendix are provided to check if \appendix has longdesc already been called. -runfiles size=1 - RELOC/tex/latex/apptools/apptools.sty +containersize 1208 +containerchecksum 05d243100c9fc575b7828e0084822fdb2c655f5d2d7c51b42aa3c5ee4d127f62f714affd1fa8e94b7c0c322b57a9fe1728d1829ed7f18d75b5287a673d580cc4 +doccontainersize 82148 +doccontainerchecksum 74ce416ef14978e0418754e3d2e2874ed07a8fbc6be90a1bf7dc492f191546407d7a967efb1306481d1b88ad296faa1194dc4da8975f7ac0c4e4053ccaa1444a docfiles size=22 RELOC/doc/latex/apptools/apptools-test.tex - RELOC/doc/latex/apptools/apptools.pdf + RELOC/doc/latex/apptools/apptools.pdf details="Package documentation" +srccontainersize 5300 +srccontainerchecksum ffbce0419baaf512bbf8aafae3a8bdae5456f9ea1699cb48b6ce215fd8c4d84dbee84399e8799fa5ca161a1e98375acd16d196c9ca6c505c7923aa7fab49e0e0 srcfiles size=6 RELOC/source/latex/apptools/apptools.drv RELOC/source/latex/apptools/apptools.dtx RELOC/source/latex/apptools/apptools.ins +runfiles size=1 + RELOC/tex/latex/apptools/apptools.sty catalogue-ctan /macros/latex/contrib/apptools -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics appendix catalogue-version 1.0 -name arabi-add -category Package -revision 37709 -shortdesc Using hyperref and bookmark packages with arabic and farsi languages. -relocated 1 -longdesc This package takes advantage of some of the possibilities that -longdesc hyperref and bookmark packages offer when you create a table of -longdesc contents for Arabic texts created by the arabi package. -runfiles size=5 - RELOC/tex/latex/arabi-add/arabi-add.sty -docfiles size=46 - RELOC/doc/latex/arabi-add/README - RELOC/doc/latex/arabi-add/arabi-add-doc.pdf - RELOC/doc/latex/arabi-add/arabi-add-example.pdf -catalogue-also arabi -catalogue-ctan /language/arabic/arabi-add -catalogue-date 2015-06-29 20:17:12 +0200 -catalogue-license unknown -catalogue-topics arabic -catalogue-version 1.0 +name apxproof +category Package +revision 49865 +shortdesc Proofs in appendix +relocated 1 +longdesc The package makes it easier to write articles where proofs and +longdesc other material are deferred to the appendix. The appendix +longdesc material is written in the LaTeX code along with the main text +longdesc which it naturally complements, and it is automatically +longdesc deferred. The package can automatically send proofs to the +longdesc appendix, can repeat in the appendix the theorem environments +longdesc stated in the main text, can section the appendix automatically +longdesc based on the sectioning of the main text, and supports a +longdesc separate bibliography for the appendix material. It depends on +longdesc the following other packages: amsthm, bibunits, environ, +longdesc etoolbox, fancyvrb, ifthen, and kvoptions. +containersize 4112 +containerchecksum 9f21fd239558950e0c94109b04f512ea73dae5976dffae93babadbd998cb38e39d922d78216afe3d420417c1073a0895e8fbc23e5403025420bd93ac3d254a50 +doccontainersize 563460 +doccontainerchecksum c5df83ea6d467819c02bdf40fcc7f9a35ab181bd4aef23216759b116db90df8da549093c0c9f80896cdc59fca8e4eb709d2b7ec9ba35117e97aef6d1260d1fdd +docfiles size=144 + RELOC/doc/latex/apxproof/LICENSE + RELOC/doc/latex/apxproof/README.md details="Readme" + RELOC/doc/latex/apxproof/apxproof.bib + RELOC/doc/latex/apxproof/apxproof.pdf details="Package documentation" +srccontainersize 15052 +srccontainerchecksum 458fb563d7bbd04ddf345e5eafce2c81783f22759dbeb7d082f49f40f69d760ac234ebcad042d46a0e4796dd56ae2947f49c5c0ae4a7188781030b20e8a2f657 +srcfiles size=16 + RELOC/source/latex/apxproof/Makefile + RELOC/source/latex/apxproof/apxproof.dtx + RELOC/source/latex/apxproof/apxproof.ins +runfiles size=4 + RELOC/tex/latex/apxproof/apxproof.sty +catalogue-contact-bugs https://github.com/PierreSenellart/apxproof/issues +catalogue-contact-repository https://github.com/PierreSenellart/apxproof +catalogue-ctan /macros/latex/contrib/apxproof +catalogue-date 2019-01-28 22:56:21 +0100 +catalogue-license lppl1.3 +catalogue-topics proof appendix +catalogue-version 1.1.1 name arabi category Package -revision 25095 -shortdesc (La)TeX support for Arabic and Farsi, compliant with Babel. +revision 44662 +shortdesc (La)TeX support for Arabic and Farsi, compliant with Babel relocated 1 longdesc The package provides an Arabic and Farsi script support for TeX longdesc without the need of any external pre-processor, and in a way @@ -7393,6 +16094,27 @@ longdesc of a wide variety of Arabic and Farsi fonts, and provides one longdesc of its own. PDF files generated using Arabi may be searched, longdesc and text may be copied from them and pasted elsewhere. execute addMap arabi.map +containersize 1934444 +containerchecksum 6f59ea8c986078f388f4c8f067b12863422728cb1a56464ece4d793189bf0e6dcded476a3b86317c2bd5f9b4b3cbc475fd748c2ab9bbf60b3d8c8cd4c162ea62 +doccontainersize 1967352 +doccontainerchecksum c851b0cca46b11d7297a03488cc72adafb6409e0406de809a1a18d4993068702f03e17cbeda1399914005c9885108d747c844719764145c746b2a0ae45d9121f +docfiles size=755 + RELOC/doc/latex/arabi/README details="Readme" + RELOC/doc/latex/arabi/bblopts.cfg + RELOC/doc/latex/arabi/big2.pdf + RELOC/doc/latex/arabi/big2.tex + RELOC/doc/latex/arabi/fontchart_arabic.pdf + RELOC/doc/latex/arabi/fontchart_farsi.pdf + RELOC/doc/latex/arabi/lion.pdf + RELOC/doc/latex/arabi/lppl.tex + RELOC/doc/latex/arabi/samplebook.css + RELOC/doc/latex/arabi/samplebook.html + RELOC/doc/latex/arabi/samplebook.pdf + RELOC/doc/latex/arabi/samplebook.tex + RELOC/doc/latex/arabi/test_beamer.pdf + RELOC/doc/latex/arabi/testplaintex.pdf + RELOC/doc/latex/arabi/testplaintex.tex + RELOC/doc/latex/arabi/user_guide.pdf details="Package documentation" runfiles size=1025 RELOC/fonts/afm/arabi/arabeyes/ae_almohanad_boldItalitalic.afm RELOC/fonts/afm/arabi/arabeyes/ae_almohanad_thin.afm @@ -7498,6 +16220,7 @@ runfiles size=1025 RELOC/tex/latex/arabi/arabicfnt.sty RELOC/tex/latex/arabi/arabicore.sty RELOC/tex/latex/arabi/arabiftoday.sty + RELOC/tex/latex/arabi/arabipoetry.sty RELOC/tex/latex/arabi/arabnovowel.sty RELOC/tex/latex/arabi/arfonts.sty RELOC/tex/latex/arabi/calendrierfpar.sty @@ -7580,36 +16303,99 @@ runfiles size=1025 RELOC/tex/latex/arabi/lfetitr.fd RELOC/tex/latex/arabi/lfetitrout.fd RELOC/tex/latex/arabi/mosq.def - RELOC/tex/latex/arabi/poetry.sty RELOC/tex/latex/arabi/puenc-ar.def RELOC/tex/latex/arabi/transcmr.fd RELOC/tex/latex/arabi/translit.sty -docfiles size=755 - RELOC/doc/latex/arabi/README - RELOC/doc/latex/arabi/bblopts.cfg - RELOC/doc/latex/arabi/big2.pdf - RELOC/doc/latex/arabi/big2.tex - RELOC/doc/latex/arabi/fontchart_arabic.pdf - RELOC/doc/latex/arabi/fontchart_farsi.pdf - RELOC/doc/latex/arabi/lion.pdf - RELOC/doc/latex/arabi/lppl.tex - RELOC/doc/latex/arabi/samplebook.css - RELOC/doc/latex/arabi/samplebook.html - RELOC/doc/latex/arabi/samplebook.pdf - RELOC/doc/latex/arabi/samplebook.tex - RELOC/doc/latex/arabi/test_beamer.pdf - RELOC/doc/latex/arabi/testplaintex.pdf - RELOC/doc/latex/arabi/testplaintex.tex - RELOC/doc/latex/arabi/user_guide.pdf +catalogue-also arabtex catalogue-ctan /language/arabic/arabi -catalogue-date 2014-04-05 19:55:22 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics arabic multilingual-addon font font-type1 catalogue-version 1.1 +name arabi-add +category Package +revision 37709 +shortdesc Using hyperref and bookmark packages with arabic and farsi languages +relocated 1 +longdesc This package takes advantage of some of the possibilities that +longdesc hyperref and bookmark packages offer when you create a table of +longdesc contents for Arabic texts created by the arabi package. +containersize 2600 +containerchecksum 5db89004e82030185f34c0a38e4ba55fe38fb9fa087c7a25ee7f7df9180734ffde0957eec52f0110655ea273202b6cdf63114e3520cb23db80c48c6c74acb0a0 +doccontainersize 168780 +doccontainerchecksum 4c44de9d3b46c605a463fd1704e56c5c61806f6e0dcc130251c81d0c555534e167034b6ba2deec1370e502fd006192540ef415aa42987f69025f18642451396e +docfiles size=46 + RELOC/doc/latex/arabi-add/README details="Readme" + RELOC/doc/latex/arabi-add/arabi-add-doc.pdf details="Package documentation" + RELOC/doc/latex/arabi-add/arabi-add-example.pdf +runfiles size=5 + RELOC/tex/latex/arabi-add/arabi-add.sty +catalogue-also arabi +catalogue-ctan /language/arabic/arabi-add +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license unknown +catalogue-topics arabic +catalogue-version 1.0 + +name arabluatex +category Package +revision 50571 +shortdesc ArabTeX for LuaLaTeX +relocated 1 +longdesc This package provides for LuaLaTeX an ArabTeX-like interface to +longdesc generate Arabic writing from an ascii transliteration. It is +longdesc particularly well-suited for complex documents such as +longdesc technical documents or critical editions where a lot of +longdesc left-to-right commands intertwine with Arabic writing. +longdesc arabluatex is able to process any ArabTeX input notation. Its +longdesc output can be set in the same modes of vocalization as ArabTeX, +longdesc or in different roman transliterations. It further allows many +longdesc typographical refinements. It will eventually interact with +longdesc some other packages yet to come to produce from .tex source +longdesc files, in addition to printed books, TEI xml compliant critical +longdesc editions and/or lexicons that can be searched, analyzed and +longdesc correlated in various ways. +containersize 19196 +containerchecksum 53a6524c6d10975d9146acd93aec62f57175c8403dd23c4844a0ba987ddcdef7dd122132c8540733ce5c8f4f8f2f589d4ecd0c10b0ad8f2164b0886a5b8ae6b5 +doccontainersize 773200 +doccontainerchecksum fe2a14e2e02c125c9042715766abfbc7a634103843475b15ffa7166b18e33e5e9c8d39481722a19963b79affdc88c3283ada72abb60f05b09a17fba999d06442 +docfiles size=233 + RELOC/doc/lualatex/arabluatex/arabluatex.el + RELOC/doc/lualatex/arabluatex/arabluatex.pdf details="Package documentation" + RELOC/doc/lualatex/arabluatex/samples/al-Jahiz.pdf details="Example of use" + RELOC/doc/lualatex/arabluatex/samples/al-Jahiz.tex + RELOC/doc/lualatex/arabluatex/samples/exporting.pdf + RELOC/doc/lualatex/arabluatex/samples/exporting.tex + RELOC/doc/lualatex/arabluatex/samples/template-01.pdf + RELOC/doc/lualatex/arabluatex/samples/template-01.tex +srccontainersize 52832 +srccontainerchecksum 8fbbcd24cd141d0e79232ba5e7d26cf95a554e903a1dd73e78d53c2e7d79f961a6b86bea0e880ae2ac919a5fcfaa44c72ee000d86b0a268cdeb16ffc98455c75 +srcfiles size=56 + RELOC/source/lualatex/arabluatex/README.tex + RELOC/source/lualatex/arabluatex/arabluatex.dtx + RELOC/source/lualatex/arabluatex/arabluatex.ins +runfiles size=44 + RELOC/tex/lualatex/arabluatex/arabluatex-patch.sty + RELOC/tex/lualatex/arabluatex/arabluatex.lua + RELOC/tex/lualatex/arabluatex/arabluatex.sty + RELOC/tex/lualatex/arabluatex/arabluatex_fullvoc.lua + RELOC/tex/lualatex/arabluatex/arabluatex_novoc.lua + RELOC/tex/lualatex/arabluatex/arabluatex_trans.lua + RELOC/tex/lualatex/arabluatex/arabluatex_voc.lua +catalogue-contact-bugs https://gitlab.com/ralessi/arabluatex/issues +catalogue-contact-home http://www.robertalessi.net/arabluatex +catalogue-contact-repository http://git.robertalessi.net/arabluatex +catalogue-ctan /macros/luatex/latex/arabluatex +catalogue-date 2019-03-24 19:58:51 +0100 +catalogue-license gpl3+cc-by-sa-4 +catalogue-topics multilingual arabic luatex +catalogue-version 1.17 + name arabtex category Package revision 25711 -shortdesc Macros and fonts for typesetting Arabic. +shortdesc Macros and fonts for typesetting Arabic relocated 1 longdesc ArabTeX is a package extending the capabilities of TeX/LaTeX to longdesc generate Arabic and Hebrew text. Input may be in ASCII @@ -7621,6 +16407,44 @@ longdesc Adobe Type 1). The Arabic font is presently only available in longdesc the Naskhi style. ArabTeX will run with Plain TeX and also with longdesc LaTeX. execute addMixedMap arabtex.map +containersize 235892 +containerchecksum 2dedbd482c223f65e13aae104e2014d2d28bf9f4ae6b90f1a4cf0718eb245d8a94899982f15de326f2eb19e2696045ba8ca9a19a6d903ef7c3e9b575a01d6bbc +doccontainersize 375472 +doccontainerchecksum f20af64239df9bdb82b7fdac6c5f6a222f1277eb877fa1907cbadd4ec6e426745b40733fd2ae726d3050e6f992b14cc91d6386ee02e2bf841d1f249d09df0c71 +docfiles size=198 + RELOC/doc/latex/arabtex/announce.txt + RELOC/doc/latex/arabtex/arabtex-doc.pdf + RELOC/doc/latex/arabtex/arabtex.doc + RELOC/doc/latex/arabtex/arabtex.faq + RELOC/doc/latex/arabtex/arabtex.gif + RELOC/doc/latex/arabtex/arabtex.htm details="Outline of the project" + RELOC/doc/latex/arabtex/arabtex1.htm + RELOC/doc/latex/arabtex/arabtex2.htm + RELOC/doc/latex/arabtex/changes.htm + RELOC/doc/latex/arabtex/changes.txt + RELOC/doc/latex/arabtex/changes2.txt + RELOC/doc/latex/arabtex/chg311.htm + RELOC/doc/latex/arabtex/chg311a.htm + RELOC/doc/latex/arabtex/chg311b.htm + RELOC/doc/latex/arabtex/chg311c.htm + RELOC/doc/latex/arabtex/chg311d.htm + RELOC/doc/latex/arabtex/guha.ps + RELOC/doc/latex/arabtex/hebrew.305 + RELOC/doc/latex/arabtex/install.txt + RELOC/doc/latex/arabtex/lppl.txt + RELOC/doc/latex/arabtex/malay.ps + RELOC/doc/latex/arabtex/manifest.txt + RELOC/doc/latex/arabtex/miktex.htm + RELOC/doc/latex/arabtex/miktex.mai + RELOC/doc/latex/arabtex/new1.gif + RELOC/doc/latex/arabtex/new2.gif + RELOC/doc/latex/arabtex/readme.305 + RELOC/doc/latex/arabtex/readme.txt details="Readme" + RELOC/doc/latex/arabtex/refer.htm + RELOC/doc/latex/arabtex/sindhi.ps + RELOC/doc/latex/arabtex/tetex.txt + RELOC/doc/latex/arabtex/uighur.ps + RELOC/doc/latex/arabtex/xarbsymb.dat runfiles size=306 RELOC/fonts/map/dvips/arabtex/arabtex.map RELOC/fonts/source/public/arabtex/arabsymb.mf @@ -7749,43 +16573,11 @@ runfiles size=306 RELOC/tex/latex/arabtex/xarbskel.sty RELOC/tex/latex/arabtex/xarbsymb.sty RELOC/tex/latex/arabtex/yiddish.sty -docfiles size=198 - RELOC/doc/latex/arabtex/announce.txt - RELOC/doc/latex/arabtex/arabtex-doc.pdf - RELOC/doc/latex/arabtex/arabtex.doc - RELOC/doc/latex/arabtex/arabtex.faq - RELOC/doc/latex/arabtex/arabtex.gif - RELOC/doc/latex/arabtex/arabtex.htm - RELOC/doc/latex/arabtex/arabtex1.htm - RELOC/doc/latex/arabtex/arabtex2.htm - RELOC/doc/latex/arabtex/changes.htm - RELOC/doc/latex/arabtex/changes.txt - RELOC/doc/latex/arabtex/changes2.txt - RELOC/doc/latex/arabtex/chg311.htm - RELOC/doc/latex/arabtex/chg311a.htm - RELOC/doc/latex/arabtex/chg311b.htm - RELOC/doc/latex/arabtex/chg311c.htm - RELOC/doc/latex/arabtex/chg311d.htm - RELOC/doc/latex/arabtex/guha.ps - RELOC/doc/latex/arabtex/hebrew.305 - RELOC/doc/latex/arabtex/install.txt - RELOC/doc/latex/arabtex/lppl.txt - RELOC/doc/latex/arabtex/malay.ps - RELOC/doc/latex/arabtex/manifest.txt - RELOC/doc/latex/arabtex/miktex.htm - RELOC/doc/latex/arabtex/miktex.mai - RELOC/doc/latex/arabtex/new1.gif - RELOC/doc/latex/arabtex/new2.gif - RELOC/doc/latex/arabtex/readme.305 - RELOC/doc/latex/arabtex/readme.txt - RELOC/doc/latex/arabtex/refer.htm - RELOC/doc/latex/arabtex/sindhi.ps - RELOC/doc/latex/arabtex/tetex.txt - RELOC/doc/latex/arabtex/uighur.ps - RELOC/doc/latex/arabtex/xarbsymb.dat +catalogue-contact-home http://baobab.informatik.uni-stuttgart.de/ifi/bs/research/arab_e.html catalogue-ctan /language/arabic/arabtex -catalogue-date 2014-04-05 19:55:22 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics font arabic font-arabic hebrew font-hebrew font-mf catalogue-version 3.17 name arabxetex @@ -7805,6 +16597,28 @@ longdesc Kashmiri, Ottoman Turkish, Kurdish, Jawi (Malay) and Uighur. longdesc The documentation covers topics such as typesetting the Holy longdesc Quran and typesetting bidirectional critical editions with the longdesc package ednotes. +containersize 147680 +containerchecksum 7c58bd94b780abc5bc17b4218229d289797a155a8e98cae8e22825dc7d9b12c5514de01b12bf2f645047dafb13b4d519d463f4ced60f7ac53a65c6aa38cbec86 +doccontainersize 345168 +doccontainerchecksum 0dff3162a710b458b367bb4ca587d525b68ac79d2d3182e8b9d2ca90ff72f89bf69153960400c344511449c52346c329b8a34eb788e11ed9a5319bb6bca89418 +docfiles size=89 + RELOC/doc/xelatex/arabxetex/README.md details="Readme" + RELOC/doc/xelatex/arabxetex/arabxetex.pdf details="Package documentation" + RELOC/doc/xelatex/arabxetex/examples/ednotes_example.pdf details="Ednotes example" + RELOC/doc/xelatex/arabxetex/examples/ednotes_example.tex + RELOC/doc/xelatex/arabxetex/examples/minimal.tex +srccontainersize 29584 +srccontainerchecksum fb29b38d69d39f4c7ed04a3ebb114e49512abbf444f36fcd02dcccfdda22aa3800521c9819696c2828c46983f8266fc00aa59cafb35e26574a3403319d364d64 +srcfiles size=43 + RELOC/source/xelatex/arabxetex/arabtex-farsi-trans-loc.map + RELOC/source/xelatex/arabxetex/arabtex-pashto-trans-loc.map + RELOC/source/xelatex/arabxetex/arabtex-sindhi-trans-loc.map + RELOC/source/xelatex/arabxetex/arabtex-trans-dmg.map + RELOC/source/xelatex/arabxetex/arabtex-trans-loc.map + RELOC/source/xelatex/arabxetex/arabtex-urdu-trans-loc.map + RELOC/source/xelatex/arabxetex/arabtex.maps + RELOC/source/xelatex/arabxetex/arabxetex.dtx + RELOC/source/xelatex/arabxetex/makemaps.pl runfiles size=197 RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabicdigits.map RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabicdigits.tec @@ -7885,32 +16699,18 @@ runfiles size=197 RELOC/fonts/misc/xetex/fontmapping/arabxetex/mirrorpunct.map RELOC/fonts/misc/xetex/fontmapping/arabxetex/mirrorpunct.tec RELOC/tex/xelatex/arabxetex/arabxetex.sty -docfiles size=89 - RELOC/doc/xelatex/arabxetex/README.md - RELOC/doc/xelatex/arabxetex/arabxetex.pdf - RELOC/doc/xelatex/arabxetex/examples/ednotes_example.pdf - RELOC/doc/xelatex/arabxetex/examples/ednotes_example.tex - RELOC/doc/xelatex/arabxetex/examples/minimal.tex -srcfiles size=43 - RELOC/source/xelatex/arabxetex/arabtex-farsi-trans-loc.map - RELOC/source/xelatex/arabxetex/arabtex-pashto-trans-loc.map - RELOC/source/xelatex/arabxetex/arabtex-sindhi-trans-loc.map - RELOC/source/xelatex/arabxetex/arabtex-trans-dmg.map - RELOC/source/xelatex/arabxetex/arabtex-trans-loc.map - RELOC/source/xelatex/arabxetex/arabtex-urdu-trans-loc.map - RELOC/source/xelatex/arabxetex/arabtex.maps - RELOC/source/xelatex/arabxetex/arabxetex.dtx - RELOC/source/xelatex/arabxetex/makemaps.pl +catalogue-contact-bugs https://github.com/fc7/arabxetex/issues +catalogue-contact-repository https://github.com/fc7/arabxetex/issues catalogue-ctan /macros/xetex/latex/arabxetex -catalogue-date 2015-09-04 12:07:48 +0200 +catalogue-date 2018-12-15 06:34:40 +0100 catalogue-license lppl -catalogue-topics multilingual xetex +catalogue-topics multilingual arabic kurdish persian xetex catalogue-version 1.2.1 name aramaic-serto category Package revision 30042 -shortdesc Fonts and LaTeX for Syriac written in Serto. +shortdesc Fonts and LaTeX for Syriac written in Serto relocated 1 longdesc This package enables (La)TeX users to typeset words or phrases longdesc (e-TeX extensions are needed) in Syriac (Aramaic) using the @@ -7921,6 +16721,18 @@ longdesc choose the correct letter depending on word context longdesc (initial/medial/final form). Detailed documentation and longdesc examples are included. execute addMap syriac.map +containersize 97924 +containerchecksum 6731d62d8a24c9f0d26061b8b2574a880df30df333fbe16408d0830657ea36f04f50c56b574de5eb081f490a4c5782595fe17bdb9208b6602c1a0ac81a1f10f5 +doccontainersize 220652 +doccontainerchecksum 433018891123aebb201d6c4f2b00dd15a558344b758899f85b9bdc21556ad4fc4845ce72084863b243e42beba643c5ae4dd210b74e2588af4825e3c83d6d7997 +docfiles size=75 + RELOC/doc/latex/aramaic-serto/README + RELOC/doc/latex/aramaic-serto/assyr.font + RELOC/doc/latex/aramaic-serto/example.ptex + RELOC/doc/latex/aramaic-serto/serto.font + RELOC/doc/latex/aramaic-serto/serto.py + RELOC/doc/latex/aramaic-serto/sertodoc.pdf details="Font documentation" + RELOC/doc/latex/aramaic-serto/sertodoc.ptex runfiles size=78 RELOC/fonts/afm/public/aramaic-serto/assy.afm RELOC/fonts/afm/public/aramaic-serto/assyrb10.afm @@ -7951,135 +16763,368 @@ runfiles size=78 RELOC/tex/latex/aramaic-serto/syriac.sty RELOC/tex/latex/aramaic-serto/uassyr.fd RELOC/tex/latex/aramaic-serto/userto.fd -docfiles size=75 - RELOC/doc/latex/aramaic-serto/README - RELOC/doc/latex/aramaic-serto/assyr.font - RELOC/doc/latex/aramaic-serto/example.ptex - RELOC/doc/latex/aramaic-serto/serto.font - RELOC/doc/latex/aramaic-serto/serto.py - RELOC/doc/latex/aramaic-serto/sertodoc.pdf - RELOC/doc/latex/aramaic-serto/sertodoc.ptex +catalogue-also syriac aramaic +catalogue-contact-home http://heinecke.pagesperso-orange.fr/serto/ catalogue-ctan /language/aramaic/serto -catalogue-date 2014-04-05 19:55:22 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 +catalogue-topics font font-archaic font-mf font-type1 catalogue-version 1.0 name arara category Package -revision 29762 -shortdesc Automation of LaTeX compilation. +revision 48979 +shortdesc Automation of LaTeX compilation longdesc Arara is comparable with other well-known compilation tools -longdesc like latexmk and rubber. The key difference is that that arara +longdesc like latexmk and rubber. The key difference is that arara longdesc determines its actions from metadata in the source code, rather longdesc than relying on indirect resources, such as log file analysis. +longdesc Arara requires a Java virtual machine. depend arara.ARCH -runfiles size=663 +containersize 4536520 +containerchecksum 9a999610563bbafd4dcf95591d90aac65a0ba2b0e4da7d5f58c694896dd01b1be5c06d2693d9fd69576e3b32e4becaf9bc046ecbd045394a5dc7e2db5c86a02e +doccontainersize 1677204 +doccontainerchecksum b4654d62b725c493e175d9d70c459b05be8a365fb389d5f20c2bd920671f03130586305d225676a3524a5835b87066223deed62db6dbe0ff8fea76f2caac5ce3 +docfiles size=712 + texmf-dist/doc/support/arara/README.md details="Readme" + texmf-dist/doc/support/arara/arara-manual.pdf details="Package documentation" + texmf-dist/doc/support/arara/arara-manual.tex + texmf-dist/doc/support/arara/arara.sty + texmf-dist/doc/support/arara/arararc.yaml + texmf-dist/doc/support/arara/chapters/building.tex + texmf-dist/doc/support/arara/chapters/cli.tex + texmf-dist/doc/support/arara/chapters/concepts.tex + texmf-dist/doc/support/arara/chapters/configuration.tex + texmf-dist/doc/support/arara/chapters/deploying.tex + texmf-dist/doc/support/arara/chapters/foreword.tex + texmf-dist/doc/support/arara/chapters/introduction.tex + texmf-dist/doc/support/arara/chapters/license.tex + texmf-dist/doc/support/arara/chapters/logging.tex + texmf-dist/doc/support/arara/chapters/methods.tex + texmf-dist/doc/support/arara/chapters/mvel.tex + texmf-dist/doc/support/arara/chapters/prologue.tex + texmf-dist/doc/support/arara/chapters/rules.tex + texmf-dist/doc/support/arara/chapters/yaml.tex + texmf-dist/doc/support/arara/figures/arara.png + texmf-dist/doc/support/arara/figures/dropdown1.pdf + texmf-dist/doc/support/arara/figures/dropdown2.pdf + texmf-dist/doc/support/arara/figures/inputbox1.pdf + texmf-dist/doc/support/arara/figures/inputbox2.pdf + texmf-dist/doc/support/arara/figures/messagebox1.pdf + texmf-dist/doc/support/arara/figures/messagebox2.pdf + texmf-dist/doc/support/arara/figures/optionbox1.pdf + texmf-dist/doc/support/arara/figures/optionbox2.pdf + texmf-dist/doc/support/arara/logos/bird.pdf + texmf-dist/doc/support/arara/logos/logo1.pdf + texmf-dist/doc/support/arara/logos/logo2.pdf + texmf-dist/doc/support/arara/rules/manual.yaml +srccontainersize 63544 +srccontainerchecksum 3ec571f4e1d8f13811aa17a4d95cb5e364e63fce1f5b320414b08abdd8907df28a18af42deac3bdce9964d7af8ddb7825702f88e4b58007d9a005369be8d4e53 +srcfiles size=159 + texmf-dist/source/support/arara/pom.java5.xml + texmf-dist/source/support/arara/pom.xml + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/Arara.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/controller/ConfigurationController.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/controller/LanguageController.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/controller/LoggingController.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/controller/SessionController.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/controller/SystemCallController.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/model/AraraException.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/model/Argument.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/model/Command.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/model/Conditional.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/model/Configuration.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/model/Database.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/model/Directive.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/model/Evaluator.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/model/Extractor.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/model/FileType.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/model/FileTypeResource.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/model/Interpreter.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/model/Language.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/model/Messages.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/model/Pair.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/model/Parser.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/model/Resource.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/model/Rule.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/model/RuleCommand.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/model/Session.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/model/StopWatch.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/model/Trigger.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/utils/ClassLoadingUtils.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/utils/CommonUtils.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/utils/ConfigurationUtils.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/utils/DatabaseUtils.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/utils/DirectiveAssembler.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/utils/DirectiveResolver.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/utils/DirectiveUtils.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/utils/DisplayUtils.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/utils/FileHandlingUtils.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/utils/FileSearchingUtils.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/utils/InterpreterUtils.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/utils/MessageUtils.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/utils/Methods.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/utils/RuleUtils.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/utils/TeeOutputStream.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/utils/UnsafeUtils.java + texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/utils/VelocityUtils.java + texmf-dist/source/support/arara/src/main/resources/com/github/cereda/arara/configuration/logback.xml + texmf-dist/source/support/arara/src/main/resources/com/github/cereda/arara/localization/messages.properties + texmf-dist/source/support/arara/src/main/resources/com/github/cereda/arara/localization/messages_de.properties + texmf-dist/source/support/arara/src/main/resources/com/github/cereda/arara/localization/messages_en.properties + texmf-dist/source/support/arara/src/main/resources/com/github/cereda/arara/localization/messages_en_QN.properties + texmf-dist/source/support/arara/src/main/resources/com/github/cereda/arara/localization/messages_it.properties + texmf-dist/source/support/arara/src/main/resources/com/github/cereda/arara/localization/messages_nl.properties + texmf-dist/source/support/arara/src/main/resources/com/github/cereda/arara/localization/messages_pt_BR.properties + texmf-dist/source/support/arara/src/test/java/com/github/cereda/arara/tests/LocalizationTest.java +runfiles size=1294 texmf-dist/scripts/arara/arara.jar texmf-dist/scripts/arara/arara.sh + texmf-dist/scripts/arara/rules/animate.yaml + texmf-dist/scripts/arara/rules/bib2gls.yaml texmf-dist/scripts/arara/rules/biber.yaml texmf-dist/scripts/arara/rules/bibtex.yaml + texmf-dist/scripts/arara/rules/bibtex8.yaml + texmf-dist/scripts/arara/rules/bibtexu.yaml texmf-dist/scripts/arara/rules/clean.yaml + texmf-dist/scripts/arara/rules/csplain.yaml + texmf-dist/scripts/arara/rules/datatooltk.yaml + texmf-dist/scripts/arara/rules/dvipdfm.yaml + texmf-dist/scripts/arara/rules/dvipdfmx.yaml texmf-dist/scripts/arara/rules/dvips.yaml + texmf-dist/scripts/arara/rules/dvipspdf.yaml + texmf-dist/scripts/arara/rules/etex.yaml texmf-dist/scripts/arara/rules/frontespizio.yaml + texmf-dist/scripts/arara/rules/halt.yaml + texmf-dist/scripts/arara/rules/indent.yaml texmf-dist/scripts/arara/rules/latex.yaml - texmf-dist/scripts/arara/rules/lmkclean.yaml + texmf-dist/scripts/arara/rules/latexmk.yaml texmf-dist/scripts/arara/rules/lualatex.yaml - texmf-dist/scripts/arara/rules/lualatexmk.yaml texmf-dist/scripts/arara/rules/luatex.yaml texmf-dist/scripts/arara/rules/make.yaml texmf-dist/scripts/arara/rules/makeglossaries.yaml + texmf-dist/scripts/arara/rules/makeglossarieslite.yaml texmf-dist/scripts/arara/rules/makeindex.yaml texmf-dist/scripts/arara/rules/nomencl.yaml + texmf-dist/scripts/arara/rules/pdfcsplain.yaml texmf-dist/scripts/arara/rules/pdflatex.yaml - texmf-dist/scripts/arara/rules/pdflatexmk.yaml texmf-dist/scripts/arara/rules/pdftex.yaml + texmf-dist/scripts/arara/rules/pdftk.yaml texmf-dist/scripts/arara/rules/ps2pdf.yaml texmf-dist/scripts/arara/rules/sketch.yaml texmf-dist/scripts/arara/rules/songidx.yaml texmf-dist/scripts/arara/rules/tex.yaml + texmf-dist/scripts/arara/rules/texindy.yaml + texmf-dist/scripts/arara/rules/tikzmake.yaml + texmf-dist/scripts/arara/rules/velocity.yaml + texmf-dist/scripts/arara/rules/xdvipdfmx.yaml texmf-dist/scripts/arara/rules/xelatex.yaml - texmf-dist/scripts/arara/rules/xelatexmk.yaml texmf-dist/scripts/arara/rules/xetex.yaml -docfiles size=766 - texmf-dist/doc/support/arara/README - texmf-dist/doc/support/arara/arara-usermanual.pdf - texmf-dist/doc/support/arara/arara-usermanual.tex - texmf-dist/doc/support/arara/arara.sty - texmf-dist/doc/support/arara/figures/arara.png - texmf-dist/doc/support/arara/figures/inlage/inlage-addcommand.png - texmf-dist/doc/support/arara/figures/inlage/inlage-addcompiler.png - texmf-dist/doc/support/arara/figures/inlage/inlage-araramenu.png - texmf-dist/doc/support/arara/figures/inlage/inlage-editcommands.png - texmf-dist/doc/support/arara/figures/inlage/inlage-listarara.png - texmf-dist/doc/support/arara/figures/inlage/inlage-newprofile.png - texmf-dist/doc/support/arara/figures/inlage/inlage-settings.png - texmf-dist/doc/support/arara/figures/installer/install-finish.png - texmf-dist/doc/support/arara/figures/installer/install-langsel.png - texmf-dist/doc/support/arara/figures/installer/install-license.png - texmf-dist/doc/support/arara/figures/installer/install-packs.png - texmf-dist/doc/support/arara/figures/installer/install-path.png - texmf-dist/doc/support/arara/figures/installer/install-pathwarning.png - texmf-dist/doc/support/arara/figures/installer/install-progress.png - texmf-dist/doc/support/arara/figures/installer/install-welcome.png - texmf-dist/doc/support/arara/figures/installer/uninstall-finish.png - texmf-dist/doc/support/arara/figures/installer/uninstall-welcome.png - texmf-dist/doc/support/arara/figures/texniccenter/texniccenter-config.png - texmf-dist/doc/support/arara/figures/texniccenter/texniccenter-newprofile.png - texmf-dist/doc/support/arara/figures/texniccenter/texniccenter-profiles.png - texmf-dist/doc/support/arara/figures/texshop/texshop-arara.png - texmf-dist/doc/support/arara/figures/texworks/texworks-add.png - texmf-dist/doc/support/arara/figures/texworks/texworks-arara.png - texmf-dist/doc/support/arara/figures/texworks/texworks-prefs.png - texmf-dist/doc/support/arara/figures/texworks/texworks-profile.png - texmf-dist/doc/support/arara/figures/winedt/winedt-ararabutton.png - texmf-dist/doc/support/arara/figures/winedt/winedt-menu.png - texmf-dist/doc/support/arara/figures/winedt/winedt-optionsinterface.png - texmf-dist/doc/support/arara/references.bib -srcfiles size=55 - texmf-dist/source/support/arara/pom.xml - texmf-dist/source/support/arara/src/main/java/com/github/arara/Arara.java - texmf-dist/source/support/arara/src/main/java/com/github/arara/exception/AraraException.java - texmf-dist/source/support/arara/src/main/java/com/github/arara/model/AraraCommand.java - texmf-dist/source/support/arara/src/main/java/com/github/arara/model/AraraConfiguration.java - texmf-dist/source/support/arara/src/main/java/com/github/arara/model/AraraDirective.java - texmf-dist/source/support/arara/src/main/java/com/github/arara/model/AraraFilePattern.java - texmf-dist/source/support/arara/src/main/java/com/github/arara/model/AraraLanguage.java - texmf-dist/source/support/arara/src/main/java/com/github/arara/model/AraraRuleArgument.java - texmf-dist/source/support/arara/src/main/java/com/github/arara/model/AraraRuleConfig.java - texmf-dist/source/support/arara/src/main/java/com/github/arara/model/AraraTask.java - texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/AraraConstants.java - texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/AraraLocalization.java - texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/AraraLogging.java - texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/AraraMethods.java - texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/AraraResolver.java - texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/AraraUtils.java - texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/CommandLineAnalyzer.java - texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/CommandTrigger.java - texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/ConfigurationLoader.java - texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/DirectiveExtractor.java - texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/DirectiveParser.java - texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/LanguageController.java - texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/TaskDeployer.java - texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/TeeOutputStream.java - texmf-dist/source/support/arara/src/main/resources/com/github/arara/conf/logback.xml - texmf-dist/source/support/arara/src/main/resources/com/github/arara/localization/dummy - texmf-dist/source/support/arara/src/test/java/com/github/arara/AraraTest.java + texmf-dist/scripts/arara/rules/xindy.yaml +catalogue-contact-bugs https://github.com/cereda/arara/issues +catalogue-contact-repository https://github.com/cereda/arara +catalogue-contact-support https://gitter.im/cereda/arara catalogue-ctan /support/arara -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-10-23 15:15:51 +0200 catalogue-license bsd -catalogue-version 3.0 +catalogue-topics compilation +catalogue-version 4.0.5 + +name arara.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of arara +containersize 340 +containerchecksum 8c4dca0eae0341eae0e5777313405227925778feb14fa724d3a490d2eb024d185dda4da26430fce5f743ecbb2f9d93a308536918c0692aa30862d206ac7e9217 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/arara + +name arara.amd64-freebsd +category Package +revision 29036 +shortdesc amd64-freebsd files of arara +containersize 340 +containerchecksum f9e8b7bb3060e96f7337812bd2f562363fe8c8672d0dca73c65956bf62c60e3d69f970fbe5770a5142ce675d44ab7795eace811e9fabc3929aa790f08881519b +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/arara + +name arara.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of arara +containersize 340 +containerchecksum a5fb4be295460913a630b1c2ce4c670a443f7f6212cbb424a89d559011a3e79100359b457ad6821d2f6274c2421f77bb8c9e8baaaecdc3679542deaee5a90bbb +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/arara + +name arara.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of arara +containersize 336 +containerchecksum 240460bae4f6ca4d2bb5db14cc8a552c1efec57285724924a9c3fa24d2b7432d5140fc7cb132df765d4562d58362d071851d25c5507827dbb7d25cc079265042 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/arara + +name arara.i386-cygwin +category Package +revision 29036 +shortdesc i386-cygwin files of arara +containersize 336 +containerchecksum 960b5c1238d0c992bc07018d993a7e572d6f2cded1e1c80de24f1fc4ebc49a05739f2d0f47dd5c3aa25a8ebe4e7516e56073a6022af825199381135d1eddca47 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/arara + +name arara.i386-freebsd +category Package +revision 29036 +shortdesc i386-freebsd files of arara +containersize 340 +containerchecksum 79c70db9185a75f20480d9003562942b17ade3cea2a3b599d3883f22ed7aab5f982de583a4cd5cde361fa7b3ac27c2d1e691854d5a2e2e89ab6c4f6544fb9d8e +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/arara name arara.i386-linux category Package revision 29036 shortdesc i386-linux files of arara +containersize 340 +containerchecksum d36d3edfeeee794f9cdde36a2323e4c0d40deeaa35877cb5a4b3efed6fb36675515f4c834b5473ae1be89f17082e40c621369fccb1cb72ef7792658105133f10 binfiles arch=i386-linux size=1 bin/i386-linux/arara +name arara.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of arara +containersize 340 +containerchecksum f70a2e36d8c6ab99d9e807b80130bb01908b76e26653857793b2fc8d196fe3a1d856b8741275981091b75411196bff9153622703ce11a079bbb77589b8abca94 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/arara + +name arara.i386-solaris +category Package +revision 29036 +shortdesc i386-solaris files of arara +containersize 336 +containerchecksum fcc1c96a41d85336395852b49c6743866be99fd06100573d09ac0b64cb94391f7953f5128337039b01d0b966e6344f70bbc363eaef35e960de8783df2c2dbf87 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/arara + +name arara.win32 +category Package +revision 29181 +shortdesc win32 files of arara +containersize 680 +containerchecksum 335530dbad34d5c0623945aed99c466e9de500d9214b8f2d6e0824fa12b0c95d05a256a2f97b18a95836f2badce05e93ab57d713dcea501077eb84187b38e9cd +binfiles arch=win32 size=1 + bin/win32/arara.exe + +name arara.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of arara +containersize 340 +containerchecksum 79112ac0696a200717b829a04833df74cd854c9d685a0798202e3193eacb7116a69b02d2fc5977849142531f3d9ff3e9be65d4ad885173a18333ee096d797155 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/arara + +name arara.x86_64-darwin +category Package +revision 29036 +shortdesc x86_64-darwin files of arara +containersize 340 +containerchecksum 9042912279504c2bcc0ac93a0e20e9a966c8711833bbca79b7b75d4d9013e2faab6931b750c93bb2346c481fd6e77758c5dec7c830dc31292c9ea4d9bc7a1139 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/arara + +name arara.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of arara +containersize 348 +containerchecksum 94e493d9f49513942dad045871da00235ebefc8064b4ad8d79aefe59b237401c9dcea2db7a189eaef0d007b0b872f65ffc031809ee48fd177f6ece7237536ce0 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/arara + +name arara.x86_64-linux +category Package +revision 29036 +shortdesc x86_64-linux files of arara +containersize 336 +containerchecksum ecdedb6fa0cbb2737f1c1bdb1833998f5d991b5b71d22bf41581d4365b7e89fff23e9a1d3eb7e32446ffe8462e332feea9c086a71096ea8cb1166379705a2db0 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/arara + +name arara.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of arara +containersize 344 +containerchecksum 74c3a1abacadf1ca23ed19238d1b4e8e910ad03b5a80ce7485adb7a2fc29b85c64688347c8c81ff88e31f8b10a4fea7321e978e343b9291bf86470e53a29777c +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/arara + +name arara.x86_64-solaris +category Package +revision 29036 +shortdesc x86_64-solaris files of arara +containersize 340 +containerchecksum 1f6608563afdb1558d59094fa234a8cbca704eed2b8f69387ede4cc922ed132bf6acf39b775eee91acb5d398da204deb6f956ec6654049f5216d7aec7882dd16 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/arara + +name archaeologie +category Package +revision 50908 +shortdesc A citation-style which covers rules of the German Archaeological Institute +relocated 1 +longdesc This citation-style covers the citation and bibliography rules +longdesc of the German Archaeological Institute (DAI). Various options +longdesc are available to change and adjust the outcome according to +longdesc one's own preferences. +containersize 72716 +containerchecksum 4998ea296e2a3e6c94ffb23b8ef981ff88f49f886063fb6f7ad6a549dff1624bd23f0615ad7ce44358de7f79b87b02b5d90800c48b8de607399403c045750d82 +doccontainersize 950288 +doccontainerchecksum 4d8e3d71d6516654dc96602dd1bcf7eeb0bcbb26fb87efc4cc8c78655140ba28d1d68b1fa42bf6a653e6058e7c648a190e18abb7a9ec1b467acf885d71db38d2 +docfiles size=262 + RELOC/doc/latex/archaeologie/README.md details="Readme" + RELOC/doc/latex/archaeologie/archaeologie.pdf details="Package documentation" +srccontainersize 134136 +srccontainerchecksum 55e8e5bfb8f0845750a3b13545c979367f34a6de44e8714089c95c3df34b4b07bbcc058a30ef941d9e835b8a3e2070b92822a575f472410f388fe19780e08618 +srcfiles size=188 + RELOC/source/latex/archaeologie/Makefile + RELOC/source/latex/archaeologie/archaeologie.dtx + RELOC/source/latex/archaeologie/archaeologie.ins +runfiles size=105 + RELOC/bibtex/bib/archaeologie/archaeologie-bibancient.bib + RELOC/bibtex/bib/archaeologie/archaeologie-bibcorpora.bib + RELOC/bibtex/bib/archaeologie/archaeologie-examples.bib + RELOC/bibtex/bib/archaeologie/archaeologie-lstabbrv.bib + RELOC/bibtex/bib/archaeologie/archaeologie-lstlocations.bib + RELOC/bibtex/bib/archaeologie/archaeologie-lstpublishers.bib + RELOC/tex/latex/archaeologie/archaeologie.bbx + RELOC/tex/latex/archaeologie/archaeologie.cbx + RELOC/tex/latex/archaeologie/archaeologie.dbx + RELOC/tex/latex/archaeologie/english-archaeologie.lbx + RELOC/tex/latex/archaeologie/french-archaeologie.lbx + RELOC/tex/latex/archaeologie/german-archaeologie.lbx + RELOC/tex/latex/archaeologie/italian-archaeologie.lbx + RELOC/tex/latex/archaeologie/spanish-archaeologie.lbx +catalogue-also biblatex-archaeology +catalogue-contact-bugs https://github.com/LukasCBossert/biblatex-archaeologie/issues +catalogue-contact-home http://biblatex-archaeologie.de +catalogue-contact-repository https://github.com/LukasCBossert/biblatex-archaeologie +catalogue-ctan /macros/latex/contrib/biblatex-contrib/archaeologie +catalogue-date 2019-04-30 12:17:51 +0200 +catalogue-license lppl1.3 +catalogue-topics humanities biblatex +catalogue-version 2.4.2 + name archaic category Package revision 38005 -shortdesc A collection of archaic fonts. +shortdesc A collection of archaic fonts relocated 1 longdesc The collection contains fonts to represent Aramaic, Cypriot, longdesc Etruscan, Greek of the 6th and 4th centuries BCE, Egyptian @@ -8090,6 +17135,111 @@ longdesc font for use in phonetic transcription of the archaic writings. longdesc The bundle's own directory includes a font installation map longdesc file for the whole collection. execute addMap archaicprw.map +containersize 372708 +containerchecksum 5e841f4a8e5df375fd660c998d3d54221e6c8e383fe4a69fb082c98d62b44a1fab2e9ec88db37964e015abbc20cd0f2af5aa26cffd4fd92fece5e24661c0efa5 +doccontainersize 2944788 +doccontainerchecksum 457eedb06a3a09a73a2ce0b20c18b643530aa2659d7b1b98be14238b9d40e8a6bdc39085654e8589fb134921f40d211d93f553cab25d7901e40286b3075f268a +docfiles size=964 + RELOC/doc/fonts/archaic/README.PRW details="A description of Peter Wilson's contribution" + RELOC/doc/fonts/archaic/aramaic-README + RELOC/doc/fonts/archaic/aramaic.pdf + RELOC/doc/fonts/archaic/asamples.pdf details="Collection of font samples" + RELOC/doc/fonts/archaic/asamples.tex + RELOC/doc/fonts/archaic/cypriot-README + RELOC/doc/fonts/archaic/cypriot.pdf + RELOC/doc/fonts/archaic/etruscan-README + RELOC/doc/fonts/archaic/etruscan.pdf + RELOC/doc/fonts/archaic/greek4cbc-README + RELOC/doc/fonts/archaic/greek4cbc-trygivbc.pdf + RELOC/doc/fonts/archaic/greek4cbc-trygivbc.tex + RELOC/doc/fonts/archaic/greek4cbc.pdf + RELOC/doc/fonts/archaic/greek6cbc-README + RELOC/doc/fonts/archaic/greek6cbc-trygvibc.pdf + RELOC/doc/fonts/archaic/greek6cbc-trygvibc.tex + RELOC/doc/fonts/archaic/greek6cbc.pdf + RELOC/doc/fonts/archaic/hieroglf-README + RELOC/doc/fonts/archaic/hieroglf-trypmhg.pdf + RELOC/doc/fonts/archaic/hieroglf-trypmhg.tex + RELOC/doc/fonts/archaic/hieroglf.pdf + RELOC/doc/fonts/archaic/linearb-README + RELOC/doc/fonts/archaic/linearb.pdf + RELOC/doc/fonts/archaic/nabatean-README + RELOC/doc/fonts/archaic/nabatean.pdf + RELOC/doc/fonts/archaic/oands-README + RELOC/doc/fonts/archaic/oands.pdf + RELOC/doc/fonts/archaic/oldprsn-README + RELOC/doc/fonts/archaic/oldprsn.pdf + RELOC/doc/fonts/archaic/phoenician-README + RELOC/doc/fonts/archaic/phoenician-tryphnc.pdf + RELOC/doc/fonts/archaic/phoenician-tryphnc.tex + RELOC/doc/fonts/archaic/phoenician.pdf + RELOC/doc/fonts/archaic/protosem-README + RELOC/doc/fonts/archaic/protosem.pdf + RELOC/doc/fonts/archaic/runic-README + RELOC/doc/fonts/archaic/runic.pdf + RELOC/doc/fonts/archaic/sarabian-README + RELOC/doc/fonts/archaic/sarabian.pdf + RELOC/doc/fonts/archaic/tryaramaic.pdf + RELOC/doc/fonts/archaic/tryaramaic.tex + RELOC/doc/fonts/archaic/trycypriot.pdf + RELOC/doc/fonts/archaic/trycypriot.tex + RELOC/doc/fonts/archaic/tryetruscan.pdf + RELOC/doc/fonts/archaic/tryetruscan.tex + RELOC/doc/fonts/archaic/trylinearb.pdf + RELOC/doc/fonts/archaic/trylinearb.tex + RELOC/doc/fonts/archaic/trynabatean.pdf + RELOC/doc/fonts/archaic/trynabatean.tex + RELOC/doc/fonts/archaic/tryoands.pdf + RELOC/doc/fonts/archaic/tryoands.tex + RELOC/doc/fonts/archaic/tryoldprsn.pdf + RELOC/doc/fonts/archaic/tryoldprsn.tex + RELOC/doc/fonts/archaic/tryprotosem.pdf + RELOC/doc/fonts/archaic/tryprotosem.tex + RELOC/doc/fonts/archaic/tryrunic.pdf + RELOC/doc/fonts/archaic/tryrunic.tex + RELOC/doc/fonts/archaic/trysarabian.pdf + RELOC/doc/fonts/archaic/trysarabian.tex + RELOC/doc/fonts/archaic/tryugarite.pdf + RELOC/doc/fonts/archaic/tryugarite.tex + RELOC/doc/fonts/archaic/ugarite-README + RELOC/doc/fonts/archaic/ugarite.pdf + RELOC/doc/fonts/archaic/viking-README + RELOC/doc/fonts/archaic/viking-try_vik.tex +srccontainersize 134456 +srccontainerchecksum 5a39568546651ef10937849550c3305bde9379737b21e24b2adbec532dee8192ddbdaaa77f2e6bc135d518f354c1b20d7c43bc03f65ccf47d423f4af1e75d620 +srcfiles size=261 + RELOC/source/fonts/archaic/aramaic.dtx + RELOC/source/fonts/archaic/aramaic.ins + RELOC/source/fonts/archaic/cypriot.dtx + RELOC/source/fonts/archaic/cypriot.ins + RELOC/source/fonts/archaic/etruscan.dtx + RELOC/source/fonts/archaic/etruscan.ins + RELOC/source/fonts/archaic/greek4cbc.dtx + RELOC/source/fonts/archaic/greek4cbc.ins + RELOC/source/fonts/archaic/greek6cbc.dtx + RELOC/source/fonts/archaic/greek6cbc.ins + RELOC/source/fonts/archaic/hieroglf.dtx + RELOC/source/fonts/archaic/hieroglf.ins + RELOC/source/fonts/archaic/linearb.dtx + RELOC/source/fonts/archaic/linearb.ins + RELOC/source/fonts/archaic/nabatean.dtx + RELOC/source/fonts/archaic/nabatean.ins + RELOC/source/fonts/archaic/oands.dtx + RELOC/source/fonts/archaic/oands.ins + RELOC/source/fonts/archaic/oldprsn.dtx + RELOC/source/fonts/archaic/oldprsn.ins + RELOC/source/fonts/archaic/phoenician.dtx + RELOC/source/fonts/archaic/phoenician.ins + RELOC/source/fonts/archaic/protosem.dtx + RELOC/source/fonts/archaic/protosem.ins + RELOC/source/fonts/archaic/runic.dtx + RELOC/source/fonts/archaic/runic.ins + RELOC/source/fonts/archaic/sarabian.dtx + RELOC/source/fonts/archaic/sarabian.ins + RELOC/source/fonts/archaic/ugarite.dtx + RELOC/source/fonts/archaic/ugarite.ins + RELOC/source/fonts/archaic/viking.dtx + RELOC/source/fonts/archaic/viking.ins runfiles size=271 RELOC/fonts/afm/public/archaic/aram10.afm RELOC/fonts/afm/public/archaic/copsn10.afm @@ -8210,109 +17360,10 @@ runfiles size=271 RELOC/tex/latex/archaic/t1vik.fd RELOC/tex/latex/archaic/ugarite.sty RELOC/tex/latex/archaic/viking.sty -docfiles size=964 - RELOC/doc/fonts/archaic/README.PRW - RELOC/doc/fonts/archaic/aramaic-README - RELOC/doc/fonts/archaic/aramaic.pdf - RELOC/doc/fonts/archaic/asamples.pdf - RELOC/doc/fonts/archaic/asamples.tex - RELOC/doc/fonts/archaic/cypriot-README - RELOC/doc/fonts/archaic/cypriot.pdf - RELOC/doc/fonts/archaic/etruscan-README - RELOC/doc/fonts/archaic/etruscan.pdf - RELOC/doc/fonts/archaic/greek4cbc-README - RELOC/doc/fonts/archaic/greek4cbc-trygivbc.pdf - RELOC/doc/fonts/archaic/greek4cbc-trygivbc.tex - RELOC/doc/fonts/archaic/greek4cbc.pdf - RELOC/doc/fonts/archaic/greek6cbc-README - RELOC/doc/fonts/archaic/greek6cbc-trygvibc.pdf - RELOC/doc/fonts/archaic/greek6cbc-trygvibc.tex - RELOC/doc/fonts/archaic/greek6cbc.pdf - RELOC/doc/fonts/archaic/hieroglf-README - RELOC/doc/fonts/archaic/hieroglf-trypmhg.pdf - RELOC/doc/fonts/archaic/hieroglf-trypmhg.tex - RELOC/doc/fonts/archaic/hieroglf.pdf - RELOC/doc/fonts/archaic/linearb-README - RELOC/doc/fonts/archaic/linearb.pdf - RELOC/doc/fonts/archaic/nabatean-README - RELOC/doc/fonts/archaic/nabatean.pdf - RELOC/doc/fonts/archaic/oands-README - RELOC/doc/fonts/archaic/oands.pdf - RELOC/doc/fonts/archaic/oldprsn-README - RELOC/doc/fonts/archaic/oldprsn.pdf - RELOC/doc/fonts/archaic/phoenician-README - RELOC/doc/fonts/archaic/phoenician-tryphnc.pdf - RELOC/doc/fonts/archaic/phoenician-tryphnc.tex - RELOC/doc/fonts/archaic/phoenician.pdf - RELOC/doc/fonts/archaic/protosem-README - RELOC/doc/fonts/archaic/protosem.pdf - RELOC/doc/fonts/archaic/runic-README - RELOC/doc/fonts/archaic/runic.pdf - RELOC/doc/fonts/archaic/sarabian-README - RELOC/doc/fonts/archaic/sarabian.pdf - RELOC/doc/fonts/archaic/tryaramaic.pdf - RELOC/doc/fonts/archaic/tryaramaic.tex - RELOC/doc/fonts/archaic/trycypriot.pdf - RELOC/doc/fonts/archaic/trycypriot.tex - RELOC/doc/fonts/archaic/tryetruscan.pdf - RELOC/doc/fonts/archaic/tryetruscan.tex - RELOC/doc/fonts/archaic/trylinearb.pdf - RELOC/doc/fonts/archaic/trylinearb.tex - RELOC/doc/fonts/archaic/trynabatean.pdf - RELOC/doc/fonts/archaic/trynabatean.tex - RELOC/doc/fonts/archaic/tryoands.pdf - RELOC/doc/fonts/archaic/tryoands.tex - RELOC/doc/fonts/archaic/tryoldprsn.pdf - RELOC/doc/fonts/archaic/tryoldprsn.tex - RELOC/doc/fonts/archaic/tryprotosem.pdf - RELOC/doc/fonts/archaic/tryprotosem.tex - RELOC/doc/fonts/archaic/tryrunic.pdf - RELOC/doc/fonts/archaic/tryrunic.tex - RELOC/doc/fonts/archaic/trysarabian.pdf - RELOC/doc/fonts/archaic/trysarabian.tex - RELOC/doc/fonts/archaic/tryugarite.pdf - RELOC/doc/fonts/archaic/tryugarite.tex - RELOC/doc/fonts/archaic/ugarite-README - RELOC/doc/fonts/archaic/ugarite.pdf - RELOC/doc/fonts/archaic/viking-README - RELOC/doc/fonts/archaic/viking-try_vik.tex -srcfiles size=261 - RELOC/source/fonts/archaic/aramaic.dtx - RELOC/source/fonts/archaic/aramaic.ins - RELOC/source/fonts/archaic/cypriot.dtx - RELOC/source/fonts/archaic/cypriot.ins - RELOC/source/fonts/archaic/etruscan.dtx - RELOC/source/fonts/archaic/etruscan.ins - RELOC/source/fonts/archaic/greek4cbc.dtx - RELOC/source/fonts/archaic/greek4cbc.ins - RELOC/source/fonts/archaic/greek6cbc.dtx - RELOC/source/fonts/archaic/greek6cbc.ins - RELOC/source/fonts/archaic/hieroglf.dtx - RELOC/source/fonts/archaic/hieroglf.ins - RELOC/source/fonts/archaic/linearb.dtx - RELOC/source/fonts/archaic/linearb.ins - RELOC/source/fonts/archaic/nabatean.dtx - RELOC/source/fonts/archaic/nabatean.ins - RELOC/source/fonts/archaic/oands.dtx - RELOC/source/fonts/archaic/oands.ins - RELOC/source/fonts/archaic/oldprsn.dtx - RELOC/source/fonts/archaic/oldprsn.ins - RELOC/source/fonts/archaic/phoenician.dtx - RELOC/source/fonts/archaic/phoenician.ins - RELOC/source/fonts/archaic/protosem.dtx - RELOC/source/fonts/archaic/protosem.ins - RELOC/source/fonts/archaic/runic.dtx - RELOC/source/fonts/archaic/runic.ins - RELOC/source/fonts/archaic/sarabian.dtx - RELOC/source/fonts/archaic/sarabian.ins - RELOC/source/fonts/archaic/ugarite.dtx - RELOC/source/fonts/archaic/ugarite.ins - RELOC/source/fonts/archaic/viking.dtx - RELOC/source/fonts/archaic/viking.ins catalogue-ctan /fonts/archaic -catalogue-date 2012-05-01 17:17:50 +0200 +catalogue-date 2017-10-29 14:14:03 +0100 catalogue-license lppl -catalogue-topics font-archaic +catalogue-topics font-archaic font-mf name arcs category Package @@ -8323,24 +17374,31 @@ longdesc The package provides two commands for placing an arc over longdesc (\overarc) or under (\underarc) a piece of text. (The text may longdesc be up to three letters long.) The commands generate an \hbox, longdesc and may be used both in text and in maths formulae. -runfiles size=1 - RELOC/tex/latex/arcs/arcs.sty +containersize 1516 +containerchecksum 65737905ba0a6ede74d8cb211b46a2e62b640d1b655f895095ad4bdecefde496368707142143e2f2e48849faa89d86a9e90a0bde64fe84b3c828e14462f30406 +doccontainersize 52132 +doccontainerchecksum 2cf72d4ec304cfa08c1b3cc8df3bd9a6cb92a633a2ab783ac4efbb5edd6290ba256c86bc4a3bbc09d923a58a10e5f21f5d8e3e2b41b0ddce14406d29405523e0 docfiles size=22 - RELOC/doc/latex/arcs/README - RELOC/doc/latex/arcs/arcs.pdf + RELOC/doc/latex/arcs/README details="Package README" + RELOC/doc/latex/arcs/arcs.pdf details="Package documentation" RELOC/doc/latex/arcs/arcstest.tex +srccontainersize 2476 +srccontainerchecksum ce6599f074d59530d85960b2a313421400f1cbc26b488e900a5b49d75f6b715a859b36de2d2e25c880407950f1170512cc3573b0256d69ceafab40e29566de78 srcfiles size=3 RELOC/source/latex/arcs/arcs.dtx RELOC/source/latex/arcs/arcs.ins +runfiles size=1 + RELOC/tex/latex/arcs/arcs.sty catalogue-ctan /macros/latex/contrib/arcs -catalogue-date 2012-02-10 18:22:03 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics linguistic catalogue-version 1 name arev category Package revision 15878 -shortdesc Fonts and LaTeX support files for Arev Sans. +shortdesc Fonts and LaTeX support files for Arev Sans relocated 1 longdesc The package arev provides type 1 and virtual fonts, together longdesc with LaTeX packages for using Arev Sans in both text and @@ -8352,10 +17410,60 @@ longdesc Sans in LaTeX is presentations, particularly when using a longdesc computer projector. In such a context, Arev Sans is quite longdesc readable, with large x-height, "open letters", wide spacing, longdesc and thick stems. The style is very similar to the SliTeX font -longdesc lcmss, but heavier. Arev is one of a very small number of sans- -longdesc font mathematics support packages. Others are cmbright, hvmath -longdesc and kerkis. +longdesc lcmss, but heavier. Arev is one of a very small number of +longdesc sans-font mathematics support packages. Others are cmbright, +longdesc hvmath and kerkis. execute addMap arev.map +containersize 964648 +containerchecksum 8b6e88a41052740831fdfa03299f665fad9eaa0e45d1d235392aa0b849bd6ca03f1e18892c879d3a5289430a5d236b9544d617ea2c3af62a59b38b4d7ff8ce90 +doccontainersize 524172 +doccontainerchecksum a8dcb8bf0fff3be9c99550623f12651df09b151d6e28bee03d7aa80c7b0eb8c86603b4d8037232e4998bc5603ab3dd368ff7a262b7c7f62f2903338774a9b8aa +docfiles size=232 + RELOC/doc/fonts/arev/ArevSansLicense.txt + RELOC/doc/fonts/arev/BitstreamVeraLicense.txt + RELOC/doc/fonts/arev/ChangeLog + RELOC/doc/fonts/arev/GPLv2.txt + RELOC/doc/fonts/arev/LPPLv1-3a.txt + RELOC/doc/fonts/arev/Makefile + RELOC/doc/fonts/arev/README details="Readme" + RELOC/doc/fonts/arev/arevdoc.lyx + RELOC/doc/fonts/arev/arevdoc.pdf details="Package documentation" + RELOC/doc/fonts/arev/arevdoc.tex + RELOC/doc/fonts/arev/fontsample.tex + RELOC/doc/fonts/arev/mathtesty.pdf + RELOC/doc/fonts/arev/mathtesty.tex + RELOC/doc/fonts/arev/prosper-arev.tex + RELOC/doc/fonts/arev/prosper-cmbright.tex + RELOC/doc/fonts/arev/prosper-cmss.tex + RELOC/doc/fonts/arev/prosper-header.tex + RELOC/doc/fonts/arev/prosper-helvetica.tex + RELOC/doc/fonts/arev/prosper-kerkis.tex + RELOC/doc/fonts/arev/prosper-lcmss.tex + RELOC/doc/fonts/arev/prosper-text.tex +srccontainersize 10100 +srccontainerchecksum 6c92c2f3ef59dcb93207ea90643d11aa8cf81850e2696414f489c40cef97737d00ee4444893669f12d4592c6573a71cb229c232b62f10db38195aabbe83fe523 +srcfiles size=25 + RELOC/source/fonts/arev/TODO.txt + RELOC/source/fonts/arev/afmtoglyphlist + RELOC/source/fonts/arev/arevfontinst.tex + RELOC/source/fonts/arev/arevoml.etx + RELOC/source/fonts/arev/arevoms.etx + RELOC/source/fonts/arev/arevot1.etx + RELOC/source/fonts/arev/convert-ff + RELOC/source/fonts/arev/createkerndata + RELOC/source/fonts/arev/enctofontpos + RELOC/source/fonts/arev/fixkernaccents.tex + RELOC/source/fonts/arev/fixweierstrass.mtx + RELOC/source/fonts/arev/fonttokernsfd.ff + RELOC/source/fonts/arev/fonttopfb.ff + RELOC/source/fonts/arev/glyphlistoml.tex + RELOC/source/fonts/arev/glyphlistoms.tex + RELOC/source/fonts/arev/glyphlistot1.tex + RELOC/source/fonts/arev/makefontfiles + RELOC/source/fonts/arev/resetdotlessi.mtx + RELOC/source/fonts/arev/sfdtokernaccent + RELOC/source/fonts/arev/unsetomssymbols.mtx + RELOC/source/fonts/arev/unsetot1symbols.mtx runfiles size=392 RELOC/fonts/afm/public/arev/ArevSans-Bold.afm RELOC/fonts/afm/public/arev/ArevSans-BoldOblique.afm @@ -8410,58 +17518,89 @@ runfiles size=392 RELOC/tex/latex/arev/ot1zavm.fd RELOC/tex/latex/arev/t1fav.fd RELOC/tex/latex/arev/uzavm.fd -docfiles size=232 - RELOC/doc/fonts/arev/ArevSansLicense.txt - RELOC/doc/fonts/arev/BitstreamVeraLicense.txt - RELOC/doc/fonts/arev/ChangeLog - RELOC/doc/fonts/arev/GPLv2.txt - RELOC/doc/fonts/arev/LPPLv1-3a.txt - RELOC/doc/fonts/arev/Makefile - RELOC/doc/fonts/arev/README - RELOC/doc/fonts/arev/arevdoc.lyx - RELOC/doc/fonts/arev/arevdoc.pdf - RELOC/doc/fonts/arev/arevdoc.tex - RELOC/doc/fonts/arev/fontsample.tex - RELOC/doc/fonts/arev/mathtesty.pdf - RELOC/doc/fonts/arev/mathtesty.tex - RELOC/doc/fonts/arev/prosper-arev.tex - RELOC/doc/fonts/arev/prosper-cmbright.tex - RELOC/doc/fonts/arev/prosper-cmss.tex - RELOC/doc/fonts/arev/prosper-header.tex - RELOC/doc/fonts/arev/prosper-helvetica.tex - RELOC/doc/fonts/arev/prosper-kerkis.tex - RELOC/doc/fonts/arev/prosper-lcmss.tex - RELOC/doc/fonts/arev/prosper-text.tex -srcfiles size=25 - RELOC/source/fonts/arev/TODO.txt - RELOC/source/fonts/arev/afmtoglyphlist - RELOC/source/fonts/arev/arevfontinst.tex - RELOC/source/fonts/arev/arevoml.etx - RELOC/source/fonts/arev/arevoms.etx - RELOC/source/fonts/arev/arevot1.etx - RELOC/source/fonts/arev/convert-ff - RELOC/source/fonts/arev/createkerndata - RELOC/source/fonts/arev/enctofontpos - RELOC/source/fonts/arev/fixkernaccents.tex - RELOC/source/fonts/arev/fixweierstrass.mtx - RELOC/source/fonts/arev/fonttokernsfd.ff - RELOC/source/fonts/arev/fonttopfb.ff - RELOC/source/fonts/arev/glyphlistoml.tex - RELOC/source/fonts/arev/glyphlistoms.tex - RELOC/source/fonts/arev/glyphlistot1.tex - RELOC/source/fonts/arev/makefontfiles - RELOC/source/fonts/arev/resetdotlessi.mtx - RELOC/source/fonts/arev/sfdtokernaccent - RELOC/source/fonts/arev/unsetomssymbols.mtx - RELOC/source/fonts/arev/unsetot1symbols.mtx catalogue-ctan /fonts/arev -catalogue-date 2014-04-05 20:24:32 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-sans font-maths + +name arimo +category Package +revision 42880 +shortdesc Arimo sans serif fonts with LaTeX support +relocated 1 +longdesc The Arimo family, designed by Steve Matteson, is an innovative, +longdesc refreshing sans serif design which is metrically compatible +longdesc with Arial. +execute addMap arimo.map +containersize 2905304 +containerchecksum 9dfd102a7a58778bdbea8fc9aa8688dce24bc0a8106121da5f5d57246bc72b4c6c5ac11089a496399dab273680da2b4d2735d40bcd2277b555eca67ff936d991 +doccontainersize 29500 +doccontainerchecksum 481649673936e5a05195b2fbaa7c7a3a702e23ac6998537a7c2b3c53b3a87ef1e1b0234c4254f737ee10bf8809ec03b524ae8e06d3e1ca3bca641d58746afcad +docfiles size=12 + RELOC/doc/fonts/arimo/LICENSE.txt + RELOC/doc/fonts/arimo/README details="Readme" + RELOC/doc/fonts/arimo/arimo-samples.pdf details="Package documentation" + RELOC/doc/fonts/arimo/arimo-samples.tex +runfiles size=1027 + RELOC/fonts/enc/dvips/arimo/arm_7miqnq.enc + RELOC/fonts/enc/dvips/arimo/arm_c3z4r2.enc + RELOC/fonts/enc/dvips/arimo/arm_f4duzd.enc + RELOC/fonts/enc/dvips/arimo/arm_l3opzb.enc + RELOC/fonts/map/dvips/arimo/arimo.map + RELOC/fonts/tfm/google/arimo/Arimo-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/arimo/Arimo-Bold-tlf-t1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/arimo/Arimo-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/arimo/Arimo-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/arimo/Arimo-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/arimo/Arimo-Italic-tlf-t1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/arimo/Arimo-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-tlf-ly1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-tlf-ot1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-tlf-t1--base.tfm + RELOC/fonts/tfm/google/arimo/Arimo-tlf-t1.tfm + RELOC/fonts/tfm/google/arimo/Arimo-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/arimo/Arimo-tlf-ts1.tfm + RELOC/fonts/truetype/google/arimo/Arimo-Bold.ttf + RELOC/fonts/truetype/google/arimo/Arimo-BoldItalic.ttf + RELOC/fonts/truetype/google/arimo/Arimo-Italic.ttf + RELOC/fonts/truetype/google/arimo/Arimo-Regular.ttf + RELOC/fonts/type1/google/arimo/Arimo-Bold.pfb + RELOC/fonts/type1/google/arimo/Arimo-BoldItalic.pfb + RELOC/fonts/type1/google/arimo/Arimo-Italic.pfb + RELOC/fonts/type1/google/arimo/Arimo.pfb + RELOC/fonts/vf/google/arimo/Arimo-Bold-tlf-t1.vf + RELOC/fonts/vf/google/arimo/Arimo-Bold-tlf-ts1.vf + RELOC/fonts/vf/google/arimo/Arimo-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/arimo/Arimo-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/arimo/Arimo-Italic-tlf-t1.vf + RELOC/fonts/vf/google/arimo/Arimo-Italic-tlf-ts1.vf + RELOC/fonts/vf/google/arimo/Arimo-tlf-t1.vf + RELOC/fonts/vf/google/arimo/Arimo-tlf-ts1.vf + RELOC/tex/latex/arimo/LY1Arimo-TLF.fd + RELOC/tex/latex/arimo/OT1Arimo-TLF.fd + RELOC/tex/latex/arimo/T1Arimo-TLF.fd + RELOC/tex/latex/arimo/TS1Arimo-TLF.fd + RELOC/tex/latex/arimo/arimo.sty +catalogue-ctan /fonts/arimo +catalogue-date 2017-01-10 05:17:21 +0100 +catalogue-license apache2 +catalogue-topics font font-type1 font-virtual font-ttf name armtex category Package revision 33894 -shortdesc A sytem for writing Armenian with TeX and LaTeX. +shortdesc A system for writing Armenian with TeX and LaTeX relocated 1 longdesc ArmTeX is a system for typesetting Armenian text with Plain TeX longdesc or LaTeX(2e). It may be used with input: from a standard Latin @@ -8474,6 +17613,25 @@ longdesc mostly describe the previous (version 2.0) of the package. longdesc Updating work is still under way. execute addMixedMap arss.map execute addMixedMap artm.map +containersize 527176 +containerchecksum 9e76f19f3b1bdcc771039d0be62c5745e5605b1838c4d7b2df67b14b1babcecf49fa5abb667b0d106a432919dd08e23e82201a62bb4adfde3c2016aeace79bb1 +doccontainersize 429996 +doccontainerchecksum 8df4b5c1aa4b653869383336594ea3bb960ed8bdc2c413464df1aba607c9c310bcb5e8e63a911fc28113a8770573e510d81c6fcdf84242dcf08dd2da33f7dbf9 +docfiles size=175 + RELOC/doc/generic/armenian/examples/latex/alphabet.tex + RELOC/doc/generic/armenian/examples/latex/manual-e.tex + RELOC/doc/generic/armenian/examples/latex/manual.tex + RELOC/doc/generic/armenian/examples/latex/raffi-a8.tex + RELOC/doc/generic/armenian/examples/latex/raffi-u8.tex + RELOC/doc/generic/armenian/examples/latex/raffi.tex + RELOC/doc/generic/armenian/examples/plain/first.tex + RELOC/doc/generic/armenian/examples/plain/plraf-a8.tex + RELOC/doc/generic/armenian/examples/plain/plraf-u8.tex + RELOC/doc/generic/armenian/examples/plain/plraf.tex + RELOC/doc/generic/armenian/examples/plain/table.tex + RELOC/doc/generic/armenian/manual-e.pdf details="Package manual (English)" language="en" + RELOC/doc/generic/armenian/manual.pdf details="Package manual (Armenian)" language="hy" + RELOC/doc/generic/armenian/readme.txt runfiles size=525 RELOC/fonts/afm/public/armenian/arssb10.afm RELOC/fonts/afm/public/armenian/arssbs10.afm @@ -8537,55 +17695,58 @@ runfiles size=525 RELOC/tex/plain/armenian/arm.tex RELOC/tex/plain/armenian/armkb-a8.tex RELOC/tex/plain/armenian/armkb-u8.tex -docfiles size=175 - RELOC/doc/generic/armenian/examples/latex/alphabet.tex - RELOC/doc/generic/armenian/examples/latex/manual-e.tex - RELOC/doc/generic/armenian/examples/latex/manual.tex - RELOC/doc/generic/armenian/examples/latex/raffi-a8.tex - RELOC/doc/generic/armenian/examples/latex/raffi-u8.tex - RELOC/doc/generic/armenian/examples/latex/raffi.tex - RELOC/doc/generic/armenian/examples/plain/first.tex - RELOC/doc/generic/armenian/examples/plain/plraf-a8.tex - RELOC/doc/generic/armenian/examples/plain/plraf-u8.tex - RELOC/doc/generic/armenian/examples/plain/plraf.tex - RELOC/doc/generic/armenian/examples/plain/table.tex - RELOC/doc/generic/armenian/manual-e.pdf - RELOC/doc/generic/armenian/manual.pdf - RELOC/doc/generic/armenian/readme.txt catalogue-ctan /language/armenian/armtex -catalogue-date 2014-06-16 13:14:48 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics armenian format font font-mf font-type1 catalogue-version 3.0-beta3 name around-the-bend category Package revision 15878 -shortdesc Typeset exercises in TeX, with answers. +shortdesc Typeset exercises in TeX, with answers relocated 1 longdesc This is a typeset version of the files of the aro-bend, plus longdesc three extra questions (with their answers) that Michael Downes longdesc didn't manage to get onto CTAN. +containersize 472 +containerchecksum 8fdfb83017cafe87778ea8a9e7147d6b73ead7019dfc9dc8b620858a67a2a02991e291d622aefc77723f6faa8a66b132313a100d298a2f6327473df4e0fb17f1 +doccontainersize 450496 +doccontainerchecksum acec7325203a96ab3937cb687e3265b5cdf6d77af5740e1e187f993fcdcbb9db743835e9ab579b6c8b0534311ba94f3d1591330bedf1c2f9eb9e6955ad070f9c docfiles size=210 - RELOC/doc/generic/around-the-bend/AroundTheBend.pdf + RELOC/doc/generic/around-the-bend/AroundTheBend.pdf details="The document itself" RELOC/doc/generic/around-the-bend/AroundTheBend.tex - RELOC/doc/generic/around-the-bend/README + RELOC/doc/generic/around-the-bend/README details="Readme" catalogue-ctan /info/challenges/AroBend -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics exercise name arphic category Package revision 15878 -shortdesc Arphic (Chinese) font packages. +shortdesc Arphic (Chinese) font packages relocated 1 longdesc These are font bundles for the Chinese Arphic fonts which work -longdesc with the CJK package. Arphic is actually the name of the -longdesc company that which created the fonts (and put them under a GPL- -longdesc like licence). +longdesc with the CJK package. TrueType versions of these fonts for use +longdesc with XeLaTeX and LuaLaTeX are provided by the arphic-ttf +longdesc package. Arphic is actually the name of the company which +longdesc created these fonts (and put them under a GPL-like licence). execute addMap bkaiu.map execute addMap bsmiu.map execute addMap gbsnu.map execute addMap gkaiu.map +containersize 27383316 +containerchecksum 2d4c0f91dd483df95bf91056e4d7cbc28b681fc9f42704cdbff297ceb4f8110affbed879cc8b15061c309764e1fdcce01fd47c2d742df441ed191f83a065538b +doccontainersize 170068 +doccontainerchecksum 327dbc2cc7b4bad5e410dbb07dd2a2d5052dcb54c98310ffc3596c1e5b4121c1a12e3067b7074f209a3972cb51280f057cfe718eb963869bf05a76e17c528dee +docfiles size=70 + RELOC/doc/fonts/arphic/arphic-sampler.pdf details="Font sampler" + RELOC/doc/fonts/arphic/arphic-sampler.tex + RELOC/doc/fonts/arphic/bkaiu/README + RELOC/doc/fonts/arphic/bsmiu/README + RELOC/doc/fonts/arphic/gbsnu/README + RELOC/doc/fonts/arphic/gkaiu/README runfiles size=8706 RELOC/dvips/arphic/config.bkaiu RELOC/dvips/arphic/config.bsmiu @@ -10147,21 +19308,54 @@ runfiles size=8706 RELOC/fonts/vf/arphic/gkaimp/gkaimp30.vf RELOC/fonts/vf/arphic/gkaimp/gkaimp31.vf RELOC/fonts/vf/arphic/gkaimp/gkaimp32.vf -docfiles size=70 - RELOC/doc/fonts/arphic/arphic-sampler.pdf - RELOC/doc/fonts/arphic/arphic-sampler.tex - RELOC/doc/fonts/arphic/bkaiu/README - RELOC/doc/fonts/arphic/bsmiu/README - RELOC/doc/fonts/arphic/gbsnu/README - RELOC/doc/fonts/arphic/gkaiu/README +catalogue-also cjk-fonts arphic-ttf catalogue-ctan /fonts/arphic -catalogue-date 2014-04-05 20:24:32 +0200 +catalogue-date 2016-12-11 21:40:56 +0100 +catalogue-license other-free +catalogue-topics font font-cjk font-type1 + +name arphic-ttf +category Package +revision 42675 +shortdesc TrueType version of Chinese Arphic fonts +relocated 1 +longdesc This package provides TrueType versions of the Chinese Arphic +longdesc fonts for use with XeLaTeX and LuaLaTeX. Type1 versions of +longdesc these fonts, for use with pdfLaTeX and the cjk package, are +longdesc provided by the arphic package. Arphic is actually the name of +longdesc the company which created these fonts. +containersize 12663696 +containerchecksum f0559968e2659a4e899bb0ee1e6236f4bf7f4133c96c146a189b42fe0ce7f375ffc5c62efd8acffa68b36c92159c28eb54167a7625b606cf7644c0a072d7f8e9 +doccontainersize 13072 +doccontainerchecksum 000030c21bf1ccd74ebc1c6bf8e46dc5d9f884480b2c31407353a3ff45a4d1072f759e9e31abbe5c9de7dfc68820fa359d42c5e980bfb7e9d408f015f8944aab +docfiles size=20 + RELOC/doc/fonts/arphic-ttf/ANNOUNCE.Big5 + RELOC/doc/fonts/arphic-ttf/ANNOUNCE.GB + RELOC/doc/fonts/arphic-ttf/ARPHICPL.big5 + RELOC/doc/fonts/arphic-ttf/ARPHICPL.gb + RELOC/doc/fonts/arphic-ttf/ARPHICPL.txt + RELOC/doc/fonts/arphic-ttf/README.md details="Readme" + RELOC/doc/fonts/arphic-ttf/changelog.Debian.bkai00mp + RELOC/doc/fonts/arphic-ttf/changelog.Debian.bsmi00lp + RELOC/doc/fonts/arphic-ttf/changelog.Debian.gbsn00lp + RELOC/doc/fonts/arphic-ttf/changelog.Debian.gkai00mp + RELOC/doc/fonts/arphic-ttf/copyright.Debian + RELOC/doc/fonts/arphic-ttf/release.txt +runfiles size=8110 + RELOC/fonts/truetype/public/arphic-ttf/bkai00mp.ttf + RELOC/fonts/truetype/public/arphic-ttf/bsmi00lp.ttf + RELOC/fonts/truetype/public/arphic-ttf/gbsn00lp.ttf + RELOC/fonts/truetype/public/arphic-ttf/gkai00mp.ttf +catalogue-also arphic +catalogue-ctan /fonts/arphic-ttf +catalogue-date 2016-12-17 05:41:03 +0100 catalogue-license other-free +catalogue-topics font font-cjk font-ttf name arrayjobx category Package revision 18125 -shortdesc Array data structures for (La)TeX. +shortdesc Array data structures for (La)TeX relocated 1 longdesc This package provides array data structures in (La)TeX, in the longdesc meaning of the classical procedural programming languages like @@ -10170,182 +19364,226 @@ longdesc mono or bi-dimensional. This is useful for applications which longdesc require high level programming techniques, like algorithmic longdesc graphics programmed in the TeX language. The package supersedes longdesc the arrayjob package. -runfiles size=4 - RELOC/tex/generic/arrayjobx/arrayjob.sty - RELOC/tex/generic/arrayjobx/arrayjobx.sty +containersize 2976 +containerchecksum 5cf6573de2bf55c1b75c2a0f38515ecde848dafcc0e5f0e77185ac039d0bcc4049bf6fdef62134ea5e4839570fc20cc6928bc9357bee0c4396f08d714eca8d13 +doccontainersize 436304 +doccontainerchecksum 495f7f8f3265e349e16ad170eeda10296926864084ace743df54f5a4b304da6bc344bce901edc0fca8d835bd0f90943b192b0e16e3a8f5bc81e0f269f2b480a7 docfiles size=265 - RELOC/doc/generic/arrayjobx/README - RELOC/doc/generic/arrayjobx/arrayjob.pdf + RELOC/doc/generic/arrayjobx/README details="Package Readme" + RELOC/doc/generic/arrayjobx/arrayjob.pdf details="Package documentation" RELOC/doc/generic/arrayjobx/arrayjob.tex RELOC/doc/generic/arrayjobx/arrayjobx.pdf RELOC/doc/generic/arrayjobx/arrayjobx.tex +runfiles size=4 + RELOC/tex/generic/arrayjobx/arrayjob.sty + RELOC/tex/generic/arrayjobx/arrayjobx.sty catalogue-ctan /macros/generic/arrayjobx -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics macro-supp catalogue-version 1.04 name arraysort category Package revision 31576 -shortdesc Sort arrays (or portions of them). +shortdesc Sort arrays (or portions of them) relocated 1 longdesc The package provides a mechanism for sorting arrays (or longdesc portions of them); the arrays should have been created using longdesc the arrayjobx package. -runfiles size=2 - RELOC/tex/latex/arraysort/arraysort.sty +containersize 2056 +containerchecksum 6dd3c6a79c7b7e1f9a0fa29f2d7f4fda8c3aceb0b900c4e42773c81f8a49e84dd62ae24027065cf19cdff93d4addff11d0b25cde62f2d4854b84fec26eb98c61 +doccontainersize 302944 +doccontainerchecksum 1070b880c7bfb6101fa9294ee8d1ab4c61b21af41316ab711c3226173b73249944533cf0594571f90215a46322b1ef07322daf7230d95e7c23bf21650e1d6047 docfiles size=76 RELOC/doc/latex/arraysort/Makefile - RELOC/doc/latex/arraysort/README - RELOC/doc/latex/arraysort/arraysort.pdf + RELOC/doc/latex/arraysort/README details="Readme" + RELOC/doc/latex/arraysort/arraysort.pdf details="Package documentation" +srccontainersize 10728 +srccontainerchecksum a8a5d1506a5cc9a33f5393ad6dcfa7ee84af9de69d0760d90fc633391cd21f6d274995e372d91f47929b098d64ab5464d7d7cc2454266bc52972b8708e3bec98 srcfiles size=10 RELOC/source/latex/arraysort/arraysort.dtx RELOC/source/latex/arraysort/arraysort.ins +runfiles size=2 + RELOC/tex/latex/arraysort/arraysort.sty catalogue-ctan /macros/latex/contrib/arraysort -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics macro-supp catalogue-version 1.0 name arsclassica category Package -revision 25466 -shortdesc A different view of the ClassicThesis package. +revision 45656 +shortdesc A different view of the ClassicThesis package relocated 1 longdesc The package changes some typographical points of the longdesc ClassicThesis style, by Andre Miede. It enables the user to longdesc reproduce the look of the guide The art of writing with LaTeX longdesc (the web page is in Italian). -runfiles size=4 - RELOC/makeindex/arsclassica/classic.ist - RELOC/tex/latex/arsclassica/arsclassica.sty +containersize 2240 +containerchecksum 9c6b32e43ff86bd6f28d23b9aab5dd90a423610b2f3c842462e88985c2ee88eec2e78e05cf3e0b91397009bdd370880df6db642816d7de3bb10a96faf4fa34b2 +doccontainersize 330092 +doccontainerchecksum 84cd0583c074af45837f38c21815019613753890e056109abab3c79c774a7ebe966c35875264998398b18d7a7fc92ac6762dd72726e708193f699e321f296535 docfiles size=125 - RELOC/doc/latex/arsclassica/ArsClassica.pdf + RELOC/doc/latex/arsclassica/ArsClassica.pdf details="Package documentation (English)" language="en" RELOC/doc/latex/arsclassica/ArsClassica.tex RELOC/doc/latex/arsclassica/Bibliography.bib - RELOC/doc/latex/arsclassica/CHANGES + RELOC/doc/latex/arsclassica/Changes RELOC/doc/latex/arsclassica/Chapters/Code.tex RELOC/doc/latex/arsclassica/Chapters/Fundamentals.tex - RELOC/doc/latex/arsclassica/FrontBackMatter/Abstract+Sommario.tex RELOC/doc/latex/arsclassica/FrontBackMatter/Acknowledgements.tex RELOC/doc/latex/arsclassica/FrontBackMatter/Bibliography.tex RELOC/doc/latex/arsclassica/FrontBackMatter/Contents.tex - RELOC/doc/latex/arsclassica/FrontBackMatter/Index.tex RELOC/doc/latex/arsclassica/FrontBackMatter/Titleback.tex RELOC/doc/latex/arsclassica/FrontBackMatter/Titlepage.tex - RELOC/doc/latex/arsclassica/Graphics/Birds.jpg - RELOC/doc/latex/arsclassica/Graphics/Example_1.jpg - RELOC/doc/latex/arsclassica/Graphics/Example_2.jpg - RELOC/doc/latex/arsclassica/Graphics/Example_3.jpg - RELOC/doc/latex/arsclassica/Graphics/Example_4.jpg - RELOC/doc/latex/arsclassica/README + RELOC/doc/latex/arsclassica/Graphics/Dolor.jpg + RELOC/doc/latex/arsclassica/Graphics/Ipsum.jpg + RELOC/doc/latex/arsclassica/Graphics/Lorem.jpg + RELOC/doc/latex/arsclassica/Graphics/Sit.jpg + RELOC/doc/latex/arsclassica/Graphics/TFZSuperEllisse.pdf + RELOC/doc/latex/arsclassica/README details="Readme" RELOC/doc/latex/arsclassica/arsclassica-settings.tex +runfiles size=2 + RELOC/tex/latex/arsclassica/arsclassica.sty +catalogue-contact-home http://www.lorenzopantieri.net/LaTeX.html catalogue-ctan /macros/latex/contrib/arsclassica -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-10-31 18:40:47 +0100 catalogue-license lppl -catalogue-version 4.0.3 +catalogue-topics dissertation name articleingud category Package -revision 29803 -shortdesc LaTeX class for articles published in INGENIERIA review. +revision 38741 +shortdesc LaTeX class for articles published in INGENIERIA review relocated 1 longdesc The class is for articles published in INGENIERIA review. It is longdesc derived from the standard LaTeX class article. -runfiles size=5 - RELOC/tex/latex/articleingud/articleingud.cls -docfiles size=121 - RELOC/doc/latex/articleingud/README - RELOC/doc/latex/articleingud/articleingud.pdf +containersize 4568 +containerchecksum 30a34052cd9586d4b49d687035ae8bed040cc5bc2d9ebc0d96a035c4c7cc06625877a501e02eda9be5eb79643f009ffa9e8d2bf9d7affecca016ef3c6310a6de +doccontainersize 401792 +doccontainerchecksum a7961a7ce16613d26d714d39bc441400cb37d7013d03684146ee9113d05dd821a23a1eda9f7e89601680959f3b473e31155f24003b5deaf60e069385c0681646 +docfiles size=124 + RELOC/doc/latex/articleingud/README details="Readme" + RELOC/doc/latex/articleingud/articleingud.pdf details="Package documentation (Spanish)" language="es" RELOC/doc/latex/articleingud/plantilla.tex RELOC/doc/latex/articleingud/template.tex -srcfiles size=30 +srccontainersize 26596 +srccontainerchecksum 1217fbf4951d4e6a11378154cc030b4fa18e7ca6384bd1593e9a8adfb4a4d2a3161bace28c22bd4aa4ba81ff56d1e2d1252d9678ded0c53f8dee6294e8dc1032 +srcfiles size=34 RELOC/source/latex/articleingud/articleingud.dtx RELOC/source/latex/articleingud/articleingud.ins +runfiles size=5 + RELOC/tex/latex/articleingud/articleingud.cls catalogue-ctan /macros/latex/contrib/articleingud -catalogue-date 2014-09-16 18:22:54 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 -catalogue-version 0.2 +catalogue-topics spanish journalpub class +catalogue-version 0.3 name arydshln category Package -revision 15878 -shortdesc Horizontal and vertical dashed lines in arrays and tabulars. -relocated 1 -longdesc Definitions of horizontal and vertical dashed lines for the -longdesc array and tabular environment. Horizontal lines are drawn by -longdesc \hdashline and \cdashline while vertical ones can be specified -longdesc as a part of preamble using ':'. The shape of dashed lines may -longdesc be controlled through style parameters or optional arguments. -longdesc The package is compatible with array and colortab. -runfiles size=12 - RELOC/tex/latex/arydshln/arydshln.sty -docfiles size=158 - RELOC/doc/latex/arydshln/README - RELOC/doc/latex/arydshln/arydshln-man.pdf +revision 50084 +shortdesc Draw dash-lines in array/tabular +relocated 1 +longdesc The package is to draw dash-lines in array/tabular +longdesc environments. Horizontal lines are drawn by \hdashline and +longdesc \cdashline while vertical ones can be specified as a part of +longdesc the preamble using ':'. The shape of dash-lines may be +longdesc controlled through style parameters or optional arguments. The +longdesc package is compatible with array, colortab, longtable, and +longdesc colortbl. +containersize 9340 +containerchecksum fd676917ccedc39b90b48b531ea4ec5098b70ca854583a3266d4080dc78f59e37a743e63b738be370cb0ca650594d0878ab1f807eb6f55daec17ecead73aa4dd +doccontainersize 834260 +doccontainerchecksum a809e2abfd26b11edaf8a5b23ddf01901f84bbd63b8fed7b6050a4947654ffada95bb697e13250038c6fb93db80dee4faad6d4493f05bb7f4ebb86dc7e9b9698 +docfiles size=223 + RELOC/doc/latex/arydshln/README details="Readme" + RELOC/doc/latex/arydshln/arydshln-man.pdf details="User manual" RELOC/doc/latex/arydshln/arydshln-man.tex - RELOC/doc/latex/arydshln/arydshln.pdf -srcfiles size=59 + RELOC/doc/latex/arydshln/arydshln.pdf details="Manual, including code listing" +srccontainersize 53928 +srccontainerchecksum 0be560bb0dac65951b177a34ba45c8199cbe75b64958b71649f09e5e7be73fe091bef6097a9502be80e26bd415f193e00579925b0be0d12bf43adfc0e3963578 +srcfiles size=63 RELOC/source/latex/arydshln/arydshln.dtx RELOC/source/latex/arydshln/arydshln.ins +runfiles size=12 + RELOC/tex/latex/arydshln/arydshln.sty catalogue-ctan /macros/latex/contrib/arydshln -catalogue-date 2012-04-13 13:58:18 +0200 -catalogue-license lppl -catalogue-version 1.71 +catalogue-date 2019-02-22 08:07:20 +0100 +catalogue-license lppl1 +catalogue-topics alignment-supp +catalogue-version 1.76 name asaetr category Package revision 15878 -shortdesc Transactions of the ASAE. +shortdesc Transactions of the ASAE relocated 1 longdesc A class and BibTeX style for submissions to the Transactions of longdesc the American Society of Agricultural Engineers. Also included longdesc is the Metafont source of a slanted Computer Modern Caps and longdesc Small Caps font. -runfiles size=14 - RELOC/bibtex/bst/asaetr/asaetr.bst - RELOC/tex/latex/asaetr/asaesub.sty - RELOC/tex/latex/asaetr/asaetr.cls - RELOC/tex/latex/asaetr/asaetr.sty +containersize 13132 +containerchecksum b44fbf1bb916eb9fb01c70a7302ef4028d04c84dc6a89a51c0feaca762da9cc95cc03cce6497e96dd64ad73e812fe59a12adb515ff4f561401131476e7df6214 +doccontainersize 70016 +doccontainerchecksum be0cd70f1b3035477a9b455328a8e167a5042e07634913c0d9efb995286165a1f41c1b86a505b3f23d19ec2f43712328f70085747d692bb97ea968c40ed109b6 docfiles size=27 RELOC/doc/latex/asaetr/MANIFEST RELOC/doc/latex/asaetr/asaetr.bib - RELOC/doc/latex/asaetr/asaetr.pdf + RELOC/doc/latex/asaetr/asaetr.pdf details="Package documentation" RELOC/doc/latex/asaetr/asaetr.tex RELOC/doc/latex/asaetr/cmcscsl10.mf +runfiles size=14 + RELOC/bibtex/bst/asaetr/asaetr.bst + RELOC/tex/latex/asaetr/asaesub.sty + RELOC/tex/latex/asaetr/asaetr.cls + RELOC/tex/latex/asaetr/asaetr.sty catalogue-ctan /macros/latex/contrib/asaetr -catalogue-date 2014-09-16 18:22:54 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics journalpub class catalogue-version 1.0a -name asana-math -category Package -revision 37556 -shortdesc A font to typeset maths in Xe(La)TeX and Lua(La)TeX. -relocated 1 -longdesc The Asana-Math font is an OpenType font that includes almost -longdesc all mathematical Unicode symbols and it can be used to typeset -longdesc mathematical text with any software that can understand the -longdesc MATH OpenType table (e.g., XeTeX 0.997 and Microsoft Word -longdesc 2007). The font is beta software. Typesetting support for use -longdesc with LaTeX is provided by the fontspec and unicode-math -longdesc packages. -runfiles size=294 - RELOC/fonts/opentype/public/Asana-Math/Asana-Math.otf - RELOC/fonts/truetype/public/Asana-Math/ASANA.TTC -docfiles size=2 - RELOC/doc/fonts/Asana-Math/FontLog.txt - RELOC/doc/fonts/Asana-Math/README -catalogue-also stix xits -catalogue-ctan /fonts/Asana-Math -catalogue-date 2015-06-02 20:04:19 +0200 -catalogue-license ofl -catalogue-topics font font-maths font-otf font-ttf -catalogue-version 000.955 +name asapsym +category Package +revision 40201 +shortdesc Using the free ASAP Symbol font with LaTeX and Plain TeX +relocated 1 +longdesc The package provides macros (usable with LaTeX or Plain TeX) +longdesc for using the freely available ASAP Symbol font, which is also +longdesc included. The font is distributed in OpenType format, and makes +longdesc extensive use of OpenType features. Therefore, at this time, +longdesc only XeTeX and LuaTeX are supported. An error message is issued +longdesc if an OTF-capable engine is not detected. +containersize 47244 +containerchecksum 9a683044f23fdec0547199afbc0f0c6c9de8faf01f09df38de324f53e91f446de867e951e187ec77bd63cc65bb92ba2fd7bc290d54650ce24e02b682cd10a941 +doccontainersize 120516 +doccontainerchecksum 4462b37c6575ba0f3e95c29e1d84eafaadc562da19ec58a604bb6ef677fb9b9d35fa68a6f2c81d8dafc35dec9f904cee9d3fdfe0c2031de928862324e83d8663 +docfiles size=31 + RELOC/doc/fonts/asapsym/README.md details="Readme" + RELOC/doc/fonts/asapsym/asapsym.pdf details="Package documentation" +srccontainersize 5968 +srccontainerchecksum 54325810653a14ba0ebe67b92341fa151e5bade3ba23e97c67c2bada6bf43ab16d5e0d11eb4c59075c48bddd9eebe44ddbca5accc331e6b26081abbdb95e3e86 +srcfiles size=6 + RELOC/source/fonts/asapsym/asapsym.dtx + RELOC/source/fonts/asapsym/asapsym.ins +runfiles size=20 + RELOC/fonts/opentype/omnibus-type/asapsym/Asap-Symbol.otf + RELOC/tex/generic/asapsym/asapsym-generic.tex + RELOC/tex/latex/asapsym/asapsym.sty + RELOC/tex/plain/asapsym/asapsym.code.tex +catalogue-contact-repository https://github.com/pdgessler/asapsym +catalogue-ctan /fonts/asapsym +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics font-symbol font-otf +catalogue-version 1.0 name ascelike category Package revision 29129 -shortdesc Bibliography style for the ASCE. +shortdesc Bibliography style for the ASCE relocated 1 longdesc A document class and bibliographic style that prepares longdesc documents in the style required by the American Society of @@ -10353,37 +19591,47 @@ longdesc Civil Engineers (ASCE). These are unofficial files, not longdesc sanctioned by that organization, and the files specifically longdesc give this caveat. Also included is a short longdesc documentation/example of how to use the class. -runfiles size=16 - RELOC/bibtex/bst/ascelike/ascelike.bst - RELOC/tex/latex/ascelike/ascelike.cls +containersize 13296 +containerchecksum d8c9d69ac49e632b7b303c0fcff53762f6d40a490aa1655f58525e192481b65b50912867b1cb16c9aba1d93483a6a2bd31e586683819a7f2b3db7439d46deadc +doccontainersize 111104 +doccontainerchecksum 0283fa497b53dc3a0d60960bd45945dd9b363c53a563139e911b8bb017a6f0ea7f46a95811812a679fe1ac5327c52e73f4aba35d26160041c61a1cb5597c880d docfiles size=40 - RELOC/doc/latex/ascelike/README + RELOC/doc/latex/ascelike/README details="Readme" RELOC/doc/latex/ascelike/ascexmpl.bib - RELOC/doc/latex/ascelike/ascexmpl.pdf + RELOC/doc/latex/ascelike/ascexmpl.pdf details="Example output" RELOC/doc/latex/ascelike/ascexmpl.tex +runfiles size=16 + RELOC/bibtex/bst/ascelike/ascelike.bst + RELOC/tex/latex/ascelike/ascelike.cls catalogue-ctan /macros/latex/contrib/ascelike -catalogue-date 2014-09-21 12:30:29 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics confproc journalpub class catalogue-version 2.3 name ascii-chart category Package revision 20536 -shortdesc An ASCII wall chart. +shortdesc An ASCII wall chart relocated 1 longdesc The document may be converted between Plain TeX and LaTeX longdesc (2.09) by a simple editing action. +containersize 412 +containerchecksum ffc1634e3e5313eb0cf04caaa227d6477cf81ba9b6eb887b2897b6740999f1f338b2dc53e6da735876f9c3b130394be59b0a285309d61909a73fdb0d6f28a8cc +doccontainersize 26064 +doccontainerchecksum 51b11a22dd963336fd93a87e2948d05f291b4191253a474b9d6f70ec31a2645801fb5f6fb6238f6a9b2979dbaba4a6ec8ac15a41c4e8867645dfa54408f18373 docfiles size=10 - RELOC/doc/support/ascii-chart/ascii.pdf + RELOC/doc/support/ascii-chart/ascii.pdf details="The chart itself" RELOC/doc/support/ascii-chart/ascii.tex catalogue-ctan /info/ascii-chart -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics documentation name ascii-font category Package revision 29989 -shortdesc Use the ASCII "font" in LaTeX. +shortdesc Use the ASCII "font" in LaTeX relocated 1 longdesc The package provides glyph and font access commands so that longdesc LaTeX users can use the ASCII glyphs in their documents. The @@ -10391,52 +19639,215 @@ longdesc ASCII font is encoded according to the IBM PC Code Page 437 C0 longdesc Graphics. This package replaces any early LaTeX 2.09 package longdesc and "font" by R. Ramasubramanian and R.W.D. Nickalls. execute addMap ascii.map -runfiles size=17 - RELOC/fonts/map/dvips/ascii-font/ascii.map - RELOC/fonts/tfm/public/ascii-font/ASCII.tfm - RELOC/fonts/type1/public/ascii-font/ASCII.pfb - RELOC/tex/latex/ascii-font/ascii.sty +containersize 49000 +containerchecksum e92e312e38432a7294c71a76604e5a3c2aa6b65937d39933fcbc9fc9b61e00a1e2f35ba739f64c29a3ebf6d2e388cd29da384a2a6456f71576101a1f12e36f0d +doccontainersize 556 +doccontainerchecksum 2d681a41d213fe260e3491a3b410239fa2e025ba19894d133a27e47b417ccf27648aa13ae431b4c42549c1692cbe517f2595c2de675b14d9ea0460d469e4f036 docfiles size=1 RELOC/doc/fonts/ascii-font/README.TEXLIVE +srccontainersize 4448 +srccontainerchecksum 1bbadf44599ad29f843ef17d1b437f951f5b167e9bf84a73600a0a9dc5633d94d76c91ec23493250ac894d9114c1b2d1d1f182690aef5dea92c9ec51c96e69a9 srcfiles size=5 RELOC/source/fonts/ascii-font/ascii.dtx RELOC/source/fonts/ascii-font/ascii.ins +runfiles size=17 + RELOC/fonts/map/dvips/ascii-font/ascii.map + RELOC/fonts/tfm/public/ascii-font/ASCII.tfm + RELOC/fonts/type1/public/ascii-font/ASCII.pfb + RELOC/tex/latex/ascii-font/ascii.sty catalogue-ctan /fonts/ascii -catalogue-date 2014-04-05 20:24:32 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-symbol font-type1 catalogue-version 2.0 +name asciilist +category Package +revision 49060 +shortdesc Environments AsciiList and AsciiDocList for prototyping nested lists in LaTeX +relocated 1 +longdesc The asciilist provides the environments AsciiList and +longdesc AsciiDocList, which enable quickly typesetting nested lists in +longdesc LaTeX without having to type individual item macros or +longdesc opening/closing list environments. The package provides +longdesc auxiliary functionality for loading such lists from files and +longdesc provides macros for configuring the use of the list +longdesc environments and the appearance of the typeset results. +containersize 3104 +containerchecksum 5c2e7938a9d2df31477cc976cfb549103c8f378a8d38a3624d3449229861fd834d462163df6e2e1f1fec686f513c6a194ccae9fcd0991820b357e12a1c32af28 +doccontainersize 383824 +doccontainerchecksum 8602a9f8e5dc04a6d4a914f603e04ced8f5cef55c5a335087b8f0953d19d4641d43ef732ce299ea18590de89e2360a8dddb44f8ae76be6498ccfd29e4a680746 +docfiles size=98 + RELOC/doc/latex/asciilist/AsciiDocList.example + RELOC/doc/latex/asciilist/AsciiList.example + RELOC/doc/latex/asciilist/README.md details="Readme" + RELOC/doc/latex/asciilist/asciilist.pdf details="Package documentation" +srccontainersize 14092 +srccontainerchecksum 562efdf7665916bc124f8d2ada2d7087ffebb23885df6c3baa652ef24b8fb7ba7e2f4a5880922066b9f5c44bdb9c70ea67537c79676c9fb7004d2ce1f6c0d6b9 +srcfiles size=16 + RELOC/source/latex/asciilist/asciilist.dtx + RELOC/source/latex/asciilist/asciilist.ins +runfiles size=3 + RELOC/tex/latex/asciilist/asciilist.sty +catalogue-ctan /macros/latex/contrib/asciilist +catalogue-date 2018-11-03 14:15:54 +0100 +catalogue-license lppl1.2 +catalogue-topics list list-bull list-descr list-enum list-supp +catalogue-version 2.2b + +name ascmac +category Package +revision 46904 +shortdesc Boxes and picture macros with Japanese vertical writing support +relocated 1 +longdesc The bundle provides boxes and picture macros with Japanese +longdesc vertical writing support. It uses only native picture macros +longdesc and fonts for drawing boxes and is thus driver-independent. +longdesc Formerly part of the Japanese pLaTeX bundle, it now supports +longdesc all LaTeX engines. +containersize 16664 +containerchecksum e2ce69f4352eb45549488c4fdd26f9acb1b0dea0db86864de95fd72fc0f7f7b5105748bd54449578e6d13a33fc28503e3bba73a4bdd88466b7de3925c4e47a45 +doccontainersize 153588 +doccontainerchecksum 64597bc037ac6760a14164ea55a32513f0e3b3026bf2e371247e528bc6acf071e81fe8b5dc724ed17ebe75cbacc3ff005c19539804a8f1984bdd825a1ad39513 +docfiles size=40 + RELOC/doc/latex/ascmac/LICENSE + RELOC/doc/latex/ascmac/README.md details="Readme" + RELOC/doc/latex/ascmac/ascmac.pdf details="Package documentation (Japanese)" language="ja" +srccontainersize 8596 +srccontainerchecksum 026990d150f593a23381862b25adc6b93784edf02951089f3417492250fa9bf4873162b7869ad9f182b4ff62504dd4a24dc8a259f83e07e43499e01e40068108 +srcfiles size=9 + RELOC/source/latex/ascmac/Makefile + RELOC/source/latex/ascmac/ascmac.dtx + RELOC/source/latex/ascmac/ascmac.ins +runfiles size=18 + RELOC/fonts/source/public/ascmac/ascgrp.mf + RELOC/fonts/source/public/ascmac/ascii.mf + RELOC/fonts/source/public/ascmac/ascii10.mf + RELOC/fonts/source/public/ascmac/ascii36.mf + RELOC/fonts/tfm/public/ascmac/ascgrp.tfm + RELOC/fonts/tfm/public/ascmac/ascii10.tfm + RELOC/fonts/tfm/public/ascmac/ascii36.tfm + RELOC/fonts/type1/public/ascmac/ascgrp.pfb + RELOC/fonts/type1/public/ascmac/ascii10.pfb + RELOC/fonts/type1/public/ascmac/ascii36.pfb + RELOC/tex/latex/ascmac/ascmac.sty + RELOC/tex/latex/ascmac/tascmac.sty +catalogue-contact-repository https://github.com/texjporg/ascmac +catalogue-ctan /macros/latex/contrib/ascmac +catalogue-date 2018-04-29 07:15:59 +0200 +catalogue-license bsd3 +catalogue-topics boxing japanese +catalogue-version 2.0h + name askmaps category Package revision 32320 -shortdesc Typeset American style Karnaugh maps. +shortdesc Typeset American style Karnaugh maps relocated 1 longdesc The package provides 2, 3, 4 and 5 variable Karnaugh maps, in longdesc the style used in numerous textbooks on digital design. The longdesc package draws K-maps where the most significant input variables longdesc are placed on top of the columns and the least significant longdesc variables are placed left of the rows. -runfiles size=4 - RELOC/tex/latex/askmaps/askmaps.sty +containersize 2436 +containerchecksum d07dc2e9b3cd0dc7d46576fcf9f08c5a628bcc701a95d8d934e322666c93f649054b9dbfe38f7d9577ce3d27344e9e5a99ec8b1e710c45f4a609a5a2dfadd126 +doccontainersize 313504 +doccontainerchecksum a170144d18c4a90b166c8a315e9d1f0d86cc5f2a53ef69381652c3f8307b85d8b70dc610bcb98be6eee1bdbedc02b7cbf097a13133da78d492c71db33d94b04d docfiles size=82 - RELOC/doc/latex/askmaps/README - RELOC/doc/latex/askmaps/askmaps.pdf + RELOC/doc/latex/askmaps/README details="Readme" + RELOC/doc/latex/askmaps/askmaps.pdf details="Package documentation" RELOC/doc/latex/askmaps/askmaps.tex +runfiles size=4 + RELOC/tex/latex/askmaps/askmaps.sty +catalogue-also karnaugh catalogue-ctan /macros/latex/contrib/askmaps -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics engineering maths catalogue-version 0.1 +name asmeconf +category Package +revision 50967 +shortdesc A template for ASME conference papers +relocated 1 +longdesc This package provides a LaTeX class, a BibTeX style, and a +longdesc LaTeX template to format conference papers for the American +longdesc Society of Mechanical Engineers (ASME) according to the +longdesc requirements on ASME's conference web pages (as posted in March +longdesc 2019). The .tex and .cls files are commented and should be +longdesc self-explanatory. The package depends on newtx. This work is +longdesc not a publication of ASME itself. +containersize 13676 +containerchecksum 6ce0e08791d73734123ee466097848f029c8432f5707ba42656ab8553b7fc346bccd8efd18133e78fbaf5c5605f9e8f7eba446459e66abbeeb8acd8bd8c3802e +doccontainersize 309196 +doccontainerchecksum 1126b93cf825d35b21aa0bb3cfa1eceeaece2c272ec647722a6a917c895e7e646c6e8f8a1fa91de788e879ef00559c856bfb8eaf52369b2d4defc81c0c3899c3 +docfiles size=98 + RELOC/doc/latex/asmeconf/README.md details="Readme" + RELOC/doc/latex/asmeconf/asmeconf-sample.bib + RELOC/doc/latex/asmeconf/asmeconf-template.pdf details="Example of use" + RELOC/doc/latex/asmeconf/asmeconf-template.tex + RELOC/doc/latex/asmeconf/sample-figure-1.pdf + RELOC/doc/latex/asmeconf/sample-figure-2a.pdf + RELOC/doc/latex/asmeconf/sample-figure-2b.pdf +runfiles size=14 + RELOC/bibtex/bst/asmeconf/asmeconf.bst + RELOC/tex/latex/asmeconf/asmeconf.cls +catalogue-ctan /macros/latex/contrib/asmeconf +catalogue-date 2019-05-01 10:22:38 +0200 +catalogue-license mit +catalogue-topics class confproc engineering scientific-docs +catalogue-version 1.07 + +name asmejour +category Package +revision 50927 +shortdesc A template for ASME journal papers +relocated 1 +longdesc This package provides a LaTeX class, a BibTeX style, and a +longdesc LaTeX template to format journal papers for submission to the +longdesc American Society of Mechanical Engineers (ASME). The .tex and +longdesc .cls files are commented and should be self-explanatory. The +longdesc package depends on newtx. This work is not a publication of +longdesc ASME itself. +containersize 13760 +containerchecksum 5bc4432669fc78a17204ff869a7fa4f0b631c0b288c6774710d008881400dcd5014baba0d935aa13e0f98fbebe086f3778c6a1ac4c1e342e52dc9412223a79cd +doccontainersize 373548 +doccontainerchecksum b2bd6472726173a6b3c639bc1f74d9baeeb40797c70e1508cbc01f85c9333185da269a0492bcaa22048585daf70685688b7535751dd70783d18f12a39706c5b7 +docfiles size=116 + RELOC/doc/latex/asmejour/README.md details="Readme" + RELOC/doc/latex/asmejour/asmejour-sample.bib + RELOC/doc/latex/asmejour/asmejour-template.pdf details="Example of use" + RELOC/doc/latex/asmejour/asmejour-template.tex + RELOC/doc/latex/asmejour/sample-figure-1.pdf + RELOC/doc/latex/asmejour/sample-figure-2a.pdf + RELOC/doc/latex/asmejour/sample-figure-2b.pdf +runfiles size=14 + RELOC/bibtex/bst/asmejour/asmejour.bst + RELOC/tex/latex/asmejour/asmejour.cls +catalogue-ctan /macros/latex/contrib/asmejour +catalogue-date 2019-04-30 05:22:05 +0200 +catalogue-license mit +catalogue-topics class journalpub scientific-docs bibtex-sty engineering +catalogue-version 1.01 + name aspectratio category Package revision 25243 -shortdesc Capital A and capital R ligature for Aspect Ratio. +shortdesc Capital A and capital R ligature for Aspect Ratio relocated 1 longdesc The package provides fonts (both as Adobe Type 1 format, and as longdesc Metafont source) for the 'AR' symbol (for Aspect Ratio) used by longdesc aeronautical scientists and engineers. Note that the package longdesc supersedes the package ar execute addMap aspectratio.map +containersize 65600 +containerchecksum 1447c3037f5477aeadfe3e5fe18a004ffa1b8c5c18b7c68295b8065e32c5a3e6a044e7f9868bafe3d8b81e391b2c614e2153302ef34e1e4aabe84c92ada2f129 +doccontainersize 337268 +doccontainerchecksum 5ee4918a3d90e9e4b51a2985352133331b77a8a87bdd8d41fab9348e5c548670ab56b5f0afc63756b65fdb6e45aa7594335995ac0d146d542b571eefbaa84d78 +docfiles size=86 + RELOC/doc/latex/aspectratio/ar.pdf details="Package documentation" + RELOC/doc/latex/aspectratio/ar.tex runfiles size=82 RELOC/fonts/map/dvips/aspectratio/aspectratio.map RELOC/fonts/source/public/aspectratio/ar10.mf @@ -10496,12 +19907,10 @@ runfiles size=82 RELOC/fonts/type1/public/aspectratio/arssi10.pfb RELOC/fonts/type1/public/aspectratio/artti10.pfb RELOC/tex/latex/aspectratio/ar.sty -docfiles size=86 - RELOC/doc/latex/aspectratio/ar.pdf - RELOC/doc/latex/aspectratio/ar.tex catalogue-ctan /macros/latex/contrib/aspectratio -catalogue-date 2014-04-05 20:24:32 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-specialist font-type1 font-mf catalogue-version 2.0 name assignment @@ -10510,47 +19919,65 @@ revision 20431 shortdesc A class file for typesetting homework and lab assignments relocated 1 longdesc A class file for typesetting homework and lab assignments. -runfiles size=2 - RELOC/tex/latex/assignment/assignment.cls +containersize 1924 +containerchecksum 5b8ceaa313eccffff8930b4e1896c7aa069664244623baae2aa1eb3555786dfeb8af8245e56ca149754093f6d74d6b86c891cb9e52e67c7b76e2501ac206658e +doccontainersize 81860 +doccontainerchecksum 49198297494adbb538385029d41681e55bf64c89fc9cee7d923b7ba9849c039a7e5aa2c1fbfc15f06c1a93a3b694899ffd8988d1833fd88c6f5dd51379289a14 docfiles size=30 RELOC/doc/latex/assignment/Changelog RELOC/doc/latex/assignment/LICENSE - RELOC/doc/latex/assignment/README - RELOC/doc/latex/assignment/assignment.pdf + RELOC/doc/latex/assignment/README details="Package README" + RELOC/doc/latex/assignment/assignment.pdf details="Package documentation, as an assignment" RELOC/doc/latex/assignment/assignment.tex +runfiles size=2 + RELOC/tex/latex/assignment/assignment.cls catalogue-ctan /macros/latex/contrib/assignment -catalogue-date 2014-09-21 12:32:17 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics essay class name assoccnt category Package -revision 35231 -shortdesc Associate counters, making them step when a master steps. +revision 38497 +shortdesc Associate counters, making them step when a master steps relocated 1 longdesc The package provides the means of declaring a set of counters longdesc to be stepped, each time some 'master' counter is stepped. -runfiles size=4 - RELOC/tex/latex/assoccnt/assoccnt.sty -docfiles size=96 - RELOC/doc/latex/assoccnt/README - RELOC/doc/latex/assoccnt/assoccnt_example.pdf +containersize 4036 +containerchecksum 24dd03f444ff4dd627a97840837cb14288e9021117f93fbbdc4f79cbac9cab46d43fb93769d2f05970eeef3fafd39692eefe5d1b7bec8ae04f6078d7a4b48824 +doccontainersize 353364 +doccontainerchecksum 195f1f017fe187a224bde969f45b6494007e4d05ab2e8618b62e8d40055b4ef401f5ef069c3bd1af25f8a9f5e1ad1cba22923e4d615d4f075e13a78a06752e9c +docfiles size=100 + RELOC/doc/latex/assoccnt/README details="Readme" + RELOC/doc/latex/assoccnt/assoccnt_doc.pdf details="Package documentation" + RELOC/doc/latex/assoccnt/assoccnt_doc.tex + RELOC/doc/latex/assoccnt/assoccnt_example.pdf details="Example of use" RELOC/doc/latex/assoccnt/assoccnt_example.tex - RELOC/doc/latex/assoccnt/assoccntdoc.pdf - RELOC/doc/latex/assoccnt/assoccntdoc.tex +runfiles size=5 + RELOC/tex/latex/assoccnt/assoccnt.sty +catalogue-also xassoccnt catalogue-ctan /macros/latex/contrib/assoccnt -catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 -catalogue-version 0.5a +catalogue-topics counter-mgmt macro-supp +catalogue-version 0.8 name astro category Package revision 15878 -shortdesc Astronomical (planetary) symbols. +shortdesc Astronomical (planetary) symbols relocated 1 longdesc Astrosym is a font containing astronomical symbols, including longdesc those used for the planets, four planetoids, the phases of the longdesc moon, the signs of the zodiac, and some additional symbols. The longdesc font is distributed as Metafont source. +containersize 12824 +containerchecksum 8cf59f7de3ea5add30166fcd4284279582cbe6199bcb1ebd540688d03c03ccf03aa740602cfad11af9380d970ed7009e6bfb4e96c56d26036f872e82c02739b6 +doccontainersize 4220 +doccontainerchecksum df4a06e10e9a438393c7e22f746618c5d760a6095e285acd0b2918f58e234a1eeca9b49597d381a113cdcbff0f13e4c7108b9b400afc81e81757f4400ea484f9 +docfiles size=3 + RELOC/doc/fonts/astro/astrosym.tex + RELOC/doc/fonts/astro/astrosym.txt details="Detailed description" runfiles size=21 RELOC/fonts/source/public/astro/astrosym.cal RELOC/fonts/source/public/astro/astrosym.cmn @@ -10559,18 +19986,16 @@ runfiles size=21 RELOC/fonts/source/public/astro/astrosym.uni RELOC/fonts/source/public/astro/astrosym.xtr RELOC/fonts/tfm/public/astro/astrosym.tfm -docfiles size=3 - RELOC/doc/fonts/astro/astrosym.tex - RELOC/doc/fonts/astro/astrosym.txt catalogue-ctan /fonts/astro -catalogue-date 2012-01-14 00:09:44 +0100 +catalogue-date 2017-10-29 14:17:15 +0100 catalogue-license lppl +catalogue-topics astronomy font font-mf catalogue-version 2.20 name asyfig category Package revision 17512 -shortdesc Commands for using Asymptote figures. +shortdesc Commands for using Asymptote figures relocated 1 longdesc The package provides a means of reading Asymptote figures from longdesc separate files, rather than within the document, as is standard @@ -10579,23 +20004,875 @@ longdesc Asymptote bundle. The asymptote way can prove cumbersome in a longdesc large document; the present package allows the user to process longdesc one picture at a time, in simple test documents, and then to longdesc migrate (with no fuss) to their use in the target document. -runfiles size=3 - RELOC/tex/latex/asyfig/asyalign.sty - RELOC/tex/latex/asyfig/asyfig.sty - RELOC/tex/latex/asyfig/asyprocess.sty +containersize 3228 +containerchecksum f067e6aa1f3cb481e07f59781fb7d4c671a0b21a392ca7830d7fa19ed7a198fefd5ad5104ed3644eed484100871f9a8d36d1ae6e31d55487e4ff2846df618e9b +doccontainersize 214116 +doccontainerchecksum d798066b8c545ef385a75c81d431c169668bd10ad072bc3e0ef1db7c0df903d51e9dd9ac2d482d109b421a868e9cbff577c18f52a7b4520b32985fafcddb66ec docfiles size=76 - RELOC/doc/latex/asyfig/README - RELOC/doc/latex/asyfig/asyfig.pdf + RELOC/doc/latex/asyfig/README details="Readme" + RELOC/doc/latex/asyfig/asyfig.pdf details="Package documentation" RELOC/doc/latex/asyfig/example/frf.asy RELOC/doc/latex/asyfig/example/test-asyfig.tex +srccontainersize 6596 +srccontainerchecksum 0a62a885334ec00b04e47ce4df391d170f286cd90e7d68d940d0f3ec09018ef87f49ca793508592cc92268c1346ae48a54be65ee601f2dad7dca82778c9f7e39 srcfiles size=6 RELOC/source/latex/asyfig/asyfig.ins RELOC/source/latex/asyfig/asyfig.tex +runfiles size=3 + RELOC/tex/latex/asyfig/asyalign.sty + RELOC/tex/latex/asyfig/asyfig.sty + RELOC/tex/latex/asyfig/asyprocess.sty catalogue-ctan /macros/latex/contrib/asyfig -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics graphics-use catalogue-version 0.1c +name asymptote +category TLCore +revision 50885 +shortdesc 2D and 3D TeX-Aware Vector Graphics Language +longdesc Asymptote is a powerful descriptive vector graphics language +longdesc for technical drawing, inspired by MetaPost but with an +longdesc improved C++-like syntax. Asymptote provides for figures the +longdesc same high-quality level of typesetting that LaTeX does for +longdesc scientific text. +depend asymptote.ARCH +containersize 312964 +containerchecksum e314e473c14c2fd8980d3d0256c6cf6fc7c757a5b4b4dcf90c93cbd15fa70a5e7a0ce453c8382df3f9cfa4aba9c9047b3ee44084e398d9c767bb88ccf3bb47ad +doccontainersize 1810712 +doccontainerchecksum 7969d7001bf3662ed28f92b07defe67a9262aaf62d8dd2f137a4f36d90fb4ffac034052a6c037882c3bcfbc0fd2b9836fc8815c90c741a26dbc68b59a8879782 +docfiles size=925 + texmf-dist/doc/asymptote/CAD.pdf details="Using Asymptote for 2D CAD" + texmf-dist/doc/asymptote/TeXShopAndAsymptote.pdf + texmf-dist/doc/asymptote/asy-latex.pdf + texmf-dist/doc/asymptote/asyRefCard.pdf details="Package 'reference card'" + texmf-dist/doc/asymptote/asymptote.pdf details="Package documentation" + texmf-dist/doc/asymptote/examples/100d.views + texmf-dist/doc/asymptote/examples/1overx.asy + texmf-dist/doc/asymptote/examples/BezierPatch.asy + texmf-dist/doc/asymptote/examples/BezierSaddle.asy + texmf-dist/doc/asymptote/examples/BezierSurface.asy + texmf-dist/doc/asymptote/examples/BezierTriangle.asy + texmf-dist/doc/asymptote/examples/Bode.asy + texmf-dist/doc/asymptote/examples/CAD1.asy + texmf-dist/doc/asymptote/examples/CDlabel.asy + texmf-dist/doc/asymptote/examples/Coons.asy + texmf-dist/doc/asymptote/examples/GaussianSurface.asy + texmf-dist/doc/asymptote/examples/Gouraud.asy + texmf-dist/doc/asymptote/examples/Gouraudcontour.asy + texmf-dist/doc/asymptote/examples/HermiteSpline.asy + texmf-dist/doc/asymptote/examples/Hobbycontrol.asy + texmf-dist/doc/asymptote/examples/Hobbydir.asy + texmf-dist/doc/asymptote/examples/Klein.asy + texmf-dist/doc/asymptote/examples/NURBScurve.asy + texmf-dist/doc/asymptote/examples/NURBSsphere.asy + texmf-dist/doc/asymptote/examples/NURBSsurface.asy + texmf-dist/doc/asymptote/examples/Pythagoras.asy + texmf-dist/doc/asymptote/examples/PythagoreanTree.asy + texmf-dist/doc/asymptote/examples/RiemannSphere.asy + texmf-dist/doc/asymptote/examples/RiemannSurface.asy + texmf-dist/doc/asymptote/examples/RiemannSurfaceRoot.asy + texmf-dist/doc/asymptote/examples/Sierpinski.asy + texmf-dist/doc/asymptote/examples/SierpinskiGasket.asy + texmf-dist/doc/asymptote/examples/SierpinskiSponge.asy + texmf-dist/doc/asymptote/examples/advection.asy + texmf-dist/doc/asymptote/examples/alignbox.asy + texmf-dist/doc/asymptote/examples/alignedaxis.asy + texmf-dist/doc/asymptote/examples/animations/cube.asy + texmf-dist/doc/asymptote/examples/animations/earthmoon.asy + texmf-dist/doc/asymptote/examples/animations/embeddedmovie.asy + texmf-dist/doc/asymptote/examples/animations/embeddedu3d.asy + texmf-dist/doc/asymptote/examples/animations/externalmovie.asy + texmf-dist/doc/asymptote/examples/animations/glmovie.asy + texmf-dist/doc/asymptote/examples/animations/heatequation.asy + texmf-dist/doc/asymptote/examples/animations/inlinemovie.tex + texmf-dist/doc/asymptote/examples/animations/inlinemovie3.tex + texmf-dist/doc/asymptote/examples/animations/pdfmovie.asy + texmf-dist/doc/asymptote/examples/animations/slidemovies.asy + texmf-dist/doc/asymptote/examples/animations/sphere.asy + texmf-dist/doc/asymptote/examples/animations/torusanimation.asy + texmf-dist/doc/asymptote/examples/animations/wavepacket.asy + texmf-dist/doc/asymptote/examples/animations/wheel.asy + texmf-dist/doc/asymptote/examples/annotation.asy + texmf-dist/doc/asymptote/examples/arrows3.asy + texmf-dist/doc/asymptote/examples/axis3.asy + texmf-dist/doc/asymptote/examples/bars3.asy + texmf-dist/doc/asymptote/examples/basealign.asy + texmf-dist/doc/asymptote/examples/bezier.asy + texmf-dist/doc/asymptote/examples/bezier2.asy + texmf-dist/doc/asymptote/examples/beziercurve.asy + texmf-dist/doc/asymptote/examples/bigdiagonal.asy + texmf-dist/doc/asymptote/examples/billboard.asy + texmf-dist/doc/asymptote/examples/binarytreetest.asy + texmf-dist/doc/asymptote/examples/brokenaxis.asy + texmf-dist/doc/asymptote/examples/buildcycle.asy + texmf-dist/doc/asymptote/examples/cardioid.asy + texmf-dist/doc/asymptote/examples/cards.asy + texmf-dist/doc/asymptote/examples/centroidfg.asy + texmf-dist/doc/asymptote/examples/cheese.asy + texmf-dist/doc/asymptote/examples/circles.asy + texmf-dist/doc/asymptote/examples/circumcircle.asy + texmf-dist/doc/asymptote/examples/clockarray.asy + texmf-dist/doc/asymptote/examples/coag.asy + texmf-dist/doc/asymptote/examples/colons.asy + texmf-dist/doc/asymptote/examples/colorpatch.asy + texmf-dist/doc/asymptote/examples/colorplanes.asy + texmf-dist/doc/asymptote/examples/colors.asy + texmf-dist/doc/asymptote/examples/condor.asy + texmf-dist/doc/asymptote/examples/cones.asy + texmf-dist/doc/asymptote/examples/conicurv.asy + texmf-dist/doc/asymptote/examples/contextfonts.asy + texmf-dist/doc/asymptote/examples/controlsystem.asy + texmf-dist/doc/asymptote/examples/cos2theta.asy + texmf-dist/doc/asymptote/examples/cos3.asy + texmf-dist/doc/asymptote/examples/cosaddition.asy + texmf-dist/doc/asymptote/examples/cpkcolors.asy + texmf-dist/doc/asymptote/examples/cube.asy + texmf-dist/doc/asymptote/examples/curvedlabel.asy + texmf-dist/doc/asymptote/examples/curvedlabel3.asy + texmf-dist/doc/asymptote/examples/cyclohexane.asy + texmf-dist/doc/asymptote/examples/cylinder.asy + texmf-dist/doc/asymptote/examples/cylinderskeleton.asy + texmf-dist/doc/asymptote/examples/datagraph.asy + texmf-dist/doc/asymptote/examples/delu.asy + texmf-dist/doc/asymptote/examples/diagonal.asy + texmf-dist/doc/asymptote/examples/diatom.asy + texmf-dist/doc/asymptote/examples/diatom.csv + texmf-dist/doc/asymptote/examples/dimension.asy + texmf-dist/doc/asymptote/examples/dots.asy + texmf-dist/doc/asymptote/examples/dragon.asy + texmf-dist/doc/asymptote/examples/eetomumu.asy + texmf-dist/doc/asymptote/examples/electromagnetic.asy + texmf-dist/doc/asymptote/examples/elevation.asy + texmf-dist/doc/asymptote/examples/elliptic.asy + texmf-dist/doc/asymptote/examples/epix.asy + texmf-dist/doc/asymptote/examples/equilateral.asy + texmf-dist/doc/asymptote/examples/equilchord.asy + texmf-dist/doc/asymptote/examples/errorbars.asy + texmf-dist/doc/asymptote/examples/exp.asy + texmf-dist/doc/asymptote/examples/exp3.asy + texmf-dist/doc/asymptote/examples/externalprc.tex + texmf-dist/doc/asymptote/examples/extrudedcontour.asy + texmf-dist/doc/asymptote/examples/fano.asy + texmf-dist/doc/asymptote/examples/fequlogo.asy + texmf-dist/doc/asymptote/examples/fermi.asy + texmf-dist/doc/asymptote/examples/filegraph.asy + texmf-dist/doc/asymptote/examples/filegraph.dat + texmf-dist/doc/asymptote/examples/filesurface.asy + texmf-dist/doc/asymptote/examples/filesurface.dat + texmf-dist/doc/asymptote/examples/fillcontour.asy + texmf-dist/doc/asymptote/examples/fin.asy + texmf-dist/doc/asymptote/examples/fjortoft.asy + texmf-dist/doc/asymptote/examples/floatingdisk.asy + texmf-dist/doc/asymptote/examples/floor.asy + texmf-dist/doc/asymptote/examples/flow.asy + texmf-dist/doc/asymptote/examples/flowchartdemo.asy + texmf-dist/doc/asymptote/examples/fractaltree.asy + texmf-dist/doc/asymptote/examples/functionshading.asy + texmf-dist/doc/asymptote/examples/galleon.asy + texmf-dist/doc/asymptote/examples/gamma.asy + texmf-dist/doc/asymptote/examples/gamma3.asy + texmf-dist/doc/asymptote/examples/generalaxis.asy + texmf-dist/doc/asymptote/examples/generalaxis3.asy + texmf-dist/doc/asymptote/examples/genusthree.asy + texmf-dist/doc/asymptote/examples/genustwo.asy + texmf-dist/doc/asymptote/examples/graphmarkers.asy + texmf-dist/doc/asymptote/examples/grid.asy + texmf-dist/doc/asymptote/examples/grid3xyz.asy + texmf-dist/doc/asymptote/examples/hatch.asy + texmf-dist/doc/asymptote/examples/helix.asy + texmf-dist/doc/asymptote/examples/hierarchy.asy + texmf-dist/doc/asymptote/examples/histogram.asy + texmf-dist/doc/asymptote/examples/hyperboloid.asy + texmf-dist/doc/asymptote/examples/hyperboloidsilhouette.asy + texmf-dist/doc/asymptote/examples/icon.asy + texmf-dist/doc/asymptote/examples/image.asy + texmf-dist/doc/asymptote/examples/imagecontour.asy + texmf-dist/doc/asymptote/examples/imagehistogram.asy + texmf-dist/doc/asymptote/examples/impact.asy + texmf-dist/doc/asymptote/examples/integraltest.asy + texmf-dist/doc/asymptote/examples/interpolate1.asy + texmf-dist/doc/asymptote/examples/intro.asy + texmf-dist/doc/asymptote/examples/irregularcontour.asy + texmf-dist/doc/asymptote/examples/join.asy + texmf-dist/doc/asymptote/examples/join3.asy + texmf-dist/doc/asymptote/examples/jump.asy + texmf-dist/doc/asymptote/examples/knots.asy + texmf-dist/doc/asymptote/examples/label3.asy + texmf-dist/doc/asymptote/examples/label3ribbon.asy + texmf-dist/doc/asymptote/examples/label3solid.asy + texmf-dist/doc/asymptote/examples/label3zoom.asy + texmf-dist/doc/asymptote/examples/labelbox.asy + texmf-dist/doc/asymptote/examples/labelsquare.asy + texmf-dist/doc/asymptote/examples/laserlattice.asy + texmf-dist/doc/asymptote/examples/latexusage.tex + texmf-dist/doc/asymptote/examples/latticeshading.asy + texmf-dist/doc/asymptote/examples/layers.asy + texmf-dist/doc/asymptote/examples/leastsquares.asy + texmf-dist/doc/asymptote/examples/leastsquares.dat + texmf-dist/doc/asymptote/examples/legend.asy + texmf-dist/doc/asymptote/examples/lever.asy + texmf-dist/doc/asymptote/examples/limit.asy + texmf-dist/doc/asymptote/examples/lineargraph.asy + texmf-dist/doc/asymptote/examples/lineargraph0.asy + texmf-dist/doc/asymptote/examples/linearregression.asy + texmf-dist/doc/asymptote/examples/lines.asy + texmf-dist/doc/asymptote/examples/linetype.asy + texmf-dist/doc/asymptote/examples/lmfit1.asy + texmf-dist/doc/asymptote/examples/log.asy + texmf-dist/doc/asymptote/examples/log2graph.asy + texmf-dist/doc/asymptote/examples/logdown.asy + texmf-dist/doc/asymptote/examples/loggraph.asy + texmf-dist/doc/asymptote/examples/loggrid.asy + texmf-dist/doc/asymptote/examples/logimage.asy + texmf-dist/doc/asymptote/examples/logo.asy + texmf-dist/doc/asymptote/examples/logo3.asy + texmf-dist/doc/asymptote/examples/logticks.asy + texmf-dist/doc/asymptote/examples/lowint.asy + texmf-dist/doc/asymptote/examples/lowupint.asy + texmf-dist/doc/asymptote/examples/magnetic.asy + texmf-dist/doc/asymptote/examples/makepen.asy + texmf-dist/doc/asymptote/examples/markers1.asy + texmf-dist/doc/asymptote/examples/markers2.asy + texmf-dist/doc/asymptote/examples/markregular.asy + texmf-dist/doc/asymptote/examples/mergeExample.asy + texmf-dist/doc/asymptote/examples/mexicanhat.asy + texmf-dist/doc/asymptote/examples/monthaxis.asy + texmf-dist/doc/asymptote/examples/mosaic.asy + texmf-dist/doc/asymptote/examples/mosquito.asy + texmf-dist/doc/asymptote/examples/multicontour.asy + texmf-dist/doc/asymptote/examples/near_earth.asy + texmf-dist/doc/asymptote/examples/odetest.asy + texmf-dist/doc/asymptote/examples/onecontour.asy + texmf-dist/doc/asymptote/examples/oneoverx.asy + texmf-dist/doc/asymptote/examples/orthocenter.asy + texmf-dist/doc/asymptote/examples/p-orbital.asy + texmf-dist/doc/asymptote/examples/parametricelevation.asy + texmf-dist/doc/asymptote/examples/parametricgraph.asy + texmf-dist/doc/asymptote/examples/parametricsurface.asy + texmf-dist/doc/asymptote/examples/partialsurface.asy + texmf-dist/doc/asymptote/examples/partitionExample.asy + texmf-dist/doc/asymptote/examples/pathintersectsurface.asy + texmf-dist/doc/asymptote/examples/pdb.asy + texmf-dist/doc/asymptote/examples/penfunctionimage.asy + texmf-dist/doc/asymptote/examples/penimage.asy + texmf-dist/doc/asymptote/examples/phase.asy + texmf-dist/doc/asymptote/examples/piicon.eps + texmf-dist/doc/asymptote/examples/pipeintersection.asy + texmf-dist/doc/asymptote/examples/pipes.asy + texmf-dist/doc/asymptote/examples/pixel.pdf + texmf-dist/doc/asymptote/examples/planeproject.asy + texmf-dist/doc/asymptote/examples/planes.asy + texmf-dist/doc/asymptote/examples/polararea.asy + texmf-dist/doc/asymptote/examples/polarcircle.asy + texmf-dist/doc/asymptote/examples/polardatagraph.asy + texmf-dist/doc/asymptote/examples/poster.asy + texmf-dist/doc/asymptote/examples/progrid.asy + texmf-dist/doc/asymptote/examples/projectelevation.asy + texmf-dist/doc/asymptote/examples/projectrevolution.asy + texmf-dist/doc/asymptote/examples/pseudosphere.asy + texmf-dist/doc/asymptote/examples/quartercircle.asy + texmf-dist/doc/asymptote/examples/quilt.asy + texmf-dist/doc/asymptote/examples/rainbow.asy + texmf-dist/doc/asymptote/examples/randompath3.asy + texmf-dist/doc/asymptote/examples/refs.bib + texmf-dist/doc/asymptote/examples/ring.asy + texmf-dist/doc/asymptote/examples/roll.asy + texmf-dist/doc/asymptote/examples/roundpath.asy + texmf-dist/doc/asymptote/examples/sacone.asy + texmf-dist/doc/asymptote/examples/sacone3D.asy + texmf-dist/doc/asymptote/examples/sacylinder.asy + texmf-dist/doc/asymptote/examples/sacylinder3D.asy + texmf-dist/doc/asymptote/examples/saddle.asy + texmf-dist/doc/asymptote/examples/scaledgraph.asy + texmf-dist/doc/asymptote/examples/secondaryaxis.asy + texmf-dist/doc/asymptote/examples/secondaryaxis.csv + texmf-dist/doc/asymptote/examples/shade.asy + texmf-dist/doc/asymptote/examples/shadedtiling.asy + texmf-dist/doc/asymptote/examples/shadestroke.asy + texmf-dist/doc/asymptote/examples/shellmethod.asy + texmf-dist/doc/asymptote/examples/shellsqrtx01.asy + texmf-dist/doc/asymptote/examples/sin1x.asy + texmf-dist/doc/asymptote/examples/sin3.asy + texmf-dist/doc/asymptote/examples/sinc.asy + texmf-dist/doc/asymptote/examples/sinxlex.asy + texmf-dist/doc/asymptote/examples/slidedemo.asy + texmf-dist/doc/asymptote/examples/slope.asy + texmf-dist/doc/asymptote/examples/slopefield1.asy + texmf-dist/doc/asymptote/examples/smoothelevation.asy + texmf-dist/doc/asymptote/examples/soccerball.asy + texmf-dist/doc/asymptote/examples/spectrum.asy + texmf-dist/doc/asymptote/examples/sphere.asy + texmf-dist/doc/asymptote/examples/spheresilhouette.asy + texmf-dist/doc/asymptote/examples/sphereskeleton.asy + texmf-dist/doc/asymptote/examples/sphericalharmonic.asy + texmf-dist/doc/asymptote/examples/spiral.asy + texmf-dist/doc/asymptote/examples/spiral3.asy + texmf-dist/doc/asymptote/examples/spline.asy + texmf-dist/doc/asymptote/examples/splitpatch.asy + texmf-dist/doc/asymptote/examples/spring.asy + texmf-dist/doc/asymptote/examples/spring0.asy + texmf-dist/doc/asymptote/examples/spring2.asy + texmf-dist/doc/asymptote/examples/sqrtx01.asy + texmf-dist/doc/asymptote/examples/sqrtx01y1.asy + texmf-dist/doc/asymptote/examples/square.asy + texmf-dist/doc/asymptote/examples/star.asy + texmf-dist/doc/asymptote/examples/stereoscopic.asy + texmf-dist/doc/asymptote/examples/stroke3.asy + texmf-dist/doc/asymptote/examples/strokepath.asy + texmf-dist/doc/asymptote/examples/strokeshade.asy + texmf-dist/doc/asymptote/examples/subpictures.asy + texmf-dist/doc/asymptote/examples/superpath.asy + texmf-dist/doc/asymptote/examples/tanh.asy + texmf-dist/doc/asymptote/examples/teapot.asy + texmf-dist/doc/asymptote/examples/tensor.asy + texmf-dist/doc/asymptote/examples/tetra.asy + texmf-dist/doc/asymptote/examples/textpath.asy + texmf-dist/doc/asymptote/examples/thermodynamics.asy + texmf-dist/doc/asymptote/examples/threeviews.asy + texmf-dist/doc/asymptote/examples/tile.asy + texmf-dist/doc/asymptote/examples/torus.asy + texmf-dist/doc/asymptote/examples/transparency.asy + texmf-dist/doc/asymptote/examples/treetest.asy + texmf-dist/doc/asymptote/examples/trefoilknot.asy + texmf-dist/doc/asymptote/examples/triads.asy + texmf-dist/doc/asymptote/examples/triangle.asy + texmf-dist/doc/asymptote/examples/triangles.asy + texmf-dist/doc/asymptote/examples/triangulate.asy + texmf-dist/doc/asymptote/examples/triceratops.asy + texmf-dist/doc/asymptote/examples/trumpet.asy + texmf-dist/doc/asymptote/examples/truncatedIcosahedron.asy + texmf-dist/doc/asymptote/examples/tvgen.asy + texmf-dist/doc/asymptote/examples/twistedtubes.asy + texmf-dist/doc/asymptote/examples/unitcircle.asy + texmf-dist/doc/asymptote/examples/unitcircle3.asy + texmf-dist/doc/asymptote/examples/unitoctant.asy + texmf-dist/doc/asymptote/examples/upint.asy + texmf-dist/doc/asymptote/examples/vectorfield.asy + texmf-dist/doc/asymptote/examples/vectorfield3.asy + texmf-dist/doc/asymptote/examples/vectorfieldsphere.asy + texmf-dist/doc/asymptote/examples/venn.asy + texmf-dist/doc/asymptote/examples/venn3.asy + texmf-dist/doc/asymptote/examples/vertexshading.asy + texmf-dist/doc/asymptote/examples/washer.asy + texmf-dist/doc/asymptote/examples/washermethod.asy + texmf-dist/doc/asymptote/examples/wedge.asy + texmf-dist/doc/asymptote/examples/westnile.asy + texmf-dist/doc/asymptote/examples/westnile.csv + texmf-dist/doc/asymptote/examples/workcone.asy + texmf-dist/doc/asymptote/examples/worksheet.asy + texmf-dist/doc/asymptote/examples/worldmap.asy + texmf-dist/doc/asymptote/examples/xsin1x.asy + texmf-dist/doc/asymptote/examples/xstitch.asy + texmf-dist/doc/asymptote/examples/xxsq01.asy + texmf-dist/doc/asymptote/examples/xxsq01x-1.asy + texmf-dist/doc/asymptote/examples/xxsq01y.asy + texmf-dist/doc/asymptote/examples/yingyang.asy + texmf-dist/doc/info/asy-faq.info + texmf-dist/doc/info/asymptote.info + texmf-dist/doc/man/man1/asy.1 + texmf-dist/doc/man/man1/asy.man1.pdf + texmf-dist/doc/man/man1/xasy.1 + texmf-dist/doc/man/man1/xasy.man1.pdf +runfiles size=557 + texmf-dist/asymptote/CAD.asy + texmf-dist/asymptote/GUI/CustMatTransform.py + texmf-dist/asymptote/GUI/DebugFlags.py + texmf-dist/asymptote/GUI/GuidesManager.py + texmf-dist/asymptote/GUI/InplaceAddObj.py + texmf-dist/asymptote/GUI/PrimitiveShape.py + texmf-dist/asymptote/GUI/SetCustomAnchor.py + texmf-dist/asymptote/GUI/UndoRedoStack.py + texmf-dist/asymptote/GUI/Widg_addLabel.py + texmf-dist/asymptote/GUI/Widg_addPolyOpt.py + texmf-dist/asymptote/GUI/Widg_editBezier.py + texmf-dist/asymptote/GUI/Window1.py + texmf-dist/asymptote/GUI/__init__.py + texmf-dist/asymptote/GUI/configs/xasyconfig.cson + texmf-dist/asymptote/GUI/configs/xasykeymap.cson + texmf-dist/asymptote/GUI/icons_rc.py + texmf-dist/asymptote/GUI/labelEditor.py + texmf-dist/asymptote/GUI/pyUIClass/custMatTransform.py + texmf-dist/asymptote/GUI/pyUIClass/labelTextEditor.py + texmf-dist/asymptote/GUI/pyUIClass/setCustomAnchor.py + texmf-dist/asymptote/GUI/pyUIClass/widg_addLabel.py + texmf-dist/asymptote/GUI/pyUIClass/widg_addPolyOpt.py + texmf-dist/asymptote/GUI/pyUIClass/widg_editBezier.py + texmf-dist/asymptote/GUI/pyUIClass/widgetPointEditor.py + texmf-dist/asymptote/GUI/pyUIClass/window1.py + texmf-dist/asymptote/GUI/res/icons.qrc + texmf-dist/asymptote/GUI/res/icons/anchor.svg + texmf-dist/asymptote/GUI/res/icons/android-arrow-back.svg + texmf-dist/asymptote/GUI/res/icons/android-arrow-forward.svg + texmf-dist/asymptote/GUI/res/icons/android-camera.svg + texmf-dist/asymptote/GUI/res/icons/android-close.svg + texmf-dist/asymptote/GUI/res/icons/android-color-palette.svg + texmf-dist/asymptote/GUI/res/icons/android-delete.svg + texmf-dist/asymptote/GUI/res/icons/android-done.svg + texmf-dist/asymptote/GUI/res/icons/android-expand.svg + texmf-dist/asymptote/GUI/res/icons/android-folder-open.svg + texmf-dist/asymptote/GUI/res/icons/android-hand.svg + texmf-dist/asymptote/GUI/res/icons/android-locate.svg + texmf-dist/asymptote/GUI/res/icons/android-radio-button-off.svg + texmf-dist/asymptote/GUI/res/icons/android-radio-button-on.svg + texmf-dist/asymptote/GUI/res/icons/android-refresh.svg + texmf-dist/asymptote/GUI/res/icons/arrow-move.svg + texmf-dist/asymptote/GUI/res/icons/arrow-resize.svg + texmf-dist/asymptote/GUI/res/icons/bucket.svg + texmf-dist/asymptote/GUI/res/icons/center.svg + texmf-dist/asymptote/GUI/res/icons/centerorigin.svg + texmf-dist/asymptote/GUI/res/icons/check.svg + texmf-dist/asymptote/GUI/res/icons/chevron-with-circle-left.svg + texmf-dist/asymptote/GUI/res/icons/chevron-with-circle-right.svg + texmf-dist/asymptote/GUI/res/icons/circle.svg + texmf-dist/asymptote/GUI/res/icons/close-round.svg + texmf-dist/asymptote/GUI/res/icons/closedcurve.svg + texmf-dist/asymptote/GUI/res/icons/closedpolygon.svg + texmf-dist/asymptote/GUI/res/icons/code.svg + texmf-dist/asymptote/GUI/res/icons/edit.svg + texmf-dist/asymptote/GUI/res/icons/eye.svg + texmf-dist/asymptote/GUI/res/icons/filledbucket.svg + texmf-dist/asymptote/GUI/res/icons/grid.svg + texmf-dist/asymptote/GUI/res/icons/magnifying-glass.svg + texmf-dist/asymptote/GUI/res/icons/opencurve.svg + texmf-dist/asymptote/GUI/res/icons/openpolygon.svg + texmf-dist/asymptote/GUI/res/icons/plus-round.svg + texmf-dist/asymptote/GUI/res/icons/save.svg + texmf-dist/asymptote/GUI/res/icons/social-python.svg + texmf-dist/asymptote/GUI/res/icons/subdirectory-left.svg + texmf-dist/asymptote/GUI/res/icons/text.svg + texmf-dist/asymptote/GUI/res/icons/triangle-stroked-15.svg + texmf-dist/asymptote/GUI/setup.py + texmf-dist/asymptote/GUI/xasy.py + texmf-dist/asymptote/GUI/xasy2asy.py + texmf-dist/asymptote/GUI/xasyArgs.py + texmf-dist/asymptote/GUI/xasyBezierInterface.py + texmf-dist/asymptote/GUI/xasyFile.py + texmf-dist/asymptote/GUI/xasyOptions.py + texmf-dist/asymptote/GUI/xasyStrings.py + texmf-dist/asymptote/GUI/xasySvg.py + texmf-dist/asymptote/GUI/xasyTransform.py + texmf-dist/asymptote/GUI/xasyUtils.py + texmf-dist/asymptote/GUI/xasyValidator.py + texmf-dist/asymptote/GUI/xasyVersion.py + texmf-dist/asymptote/animate.asy + texmf-dist/asymptote/animation.asy + texmf-dist/asymptote/annotate.asy + texmf-dist/asymptote/asy-init.el + texmf-dist/asymptote/asy-kate.sh + texmf-dist/asymptote/asy-keywords.el + texmf-dist/asymptote/asy-mode.el + texmf-dist/asymptote/asy.vim + texmf-dist/asymptote/asy_filetype.vim + texmf-dist/asymptote/asymptote.py + texmf-dist/asymptote/babel.asy + texmf-dist/asymptote/bezulate.asy + texmf-dist/asymptote/binarytree.asy + texmf-dist/asymptote/bsp.asy + texmf-dist/asymptote/contour.asy + texmf-dist/asymptote/contour3.asy + texmf-dist/asymptote/drawtree.asy + texmf-dist/asymptote/embed.asy + texmf-dist/asymptote/external.asy + texmf-dist/asymptote/feynman.asy + texmf-dist/asymptote/flowchart.asy + texmf-dist/asymptote/fontsize.asy + texmf-dist/asymptote/geometry.asy + texmf-dist/asymptote/graph.asy + texmf-dist/asymptote/graph3.asy + texmf-dist/asymptote/graph_settings.asy + texmf-dist/asymptote/graph_splinetype.asy + texmf-dist/asymptote/grid3.asy + texmf-dist/asymptote/interpolate.asy + texmf-dist/asymptote/labelpath.asy + texmf-dist/asymptote/labelpath3.asy + texmf-dist/asymptote/latin1.asy + texmf-dist/asymptote/lmfit.asy + texmf-dist/asymptote/markers.asy + texmf-dist/asymptote/math.asy + texmf-dist/asymptote/metapost.asy + texmf-dist/asymptote/nopapersize.ps + texmf-dist/asymptote/obj.asy + texmf-dist/asymptote/ode.asy + texmf-dist/asymptote/palette.asy + texmf-dist/asymptote/patterns.asy + texmf-dist/asymptote/plain.asy + texmf-dist/asymptote/plain_Label.asy + texmf-dist/asymptote/plain_arcs.asy + texmf-dist/asymptote/plain_arrows.asy + texmf-dist/asymptote/plain_bounds.asy + texmf-dist/asymptote/plain_boxes.asy + texmf-dist/asymptote/plain_constants.asy + texmf-dist/asymptote/plain_debugger.asy + texmf-dist/asymptote/plain_filldraw.asy + texmf-dist/asymptote/plain_margins.asy + texmf-dist/asymptote/plain_markers.asy + texmf-dist/asymptote/plain_paths.asy + texmf-dist/asymptote/plain_pens.asy + texmf-dist/asymptote/plain_picture.asy + texmf-dist/asymptote/plain_prethree.asy + texmf-dist/asymptote/plain_scaling.asy + texmf-dist/asymptote/plain_shipout.asy + texmf-dist/asymptote/plain_strings.asy + texmf-dist/asymptote/pstoedit.asy + texmf-dist/asymptote/rational.asy + texmf-dist/asymptote/rationalSimplex.asy + texmf-dist/asymptote/reload.js + texmf-dist/asymptote/roundedpath.asy + texmf-dist/asymptote/shaders/fragment.glsl + texmf-dist/asymptote/shaders/vertex.glsl + texmf-dist/asymptote/simplex.asy + texmf-dist/asymptote/size10.asy + texmf-dist/asymptote/size11.asy + texmf-dist/asymptote/slide.asy + texmf-dist/asymptote/slopefield.asy + texmf-dist/asymptote/smoothcontour3.asy + texmf-dist/asymptote/solids.asy + texmf-dist/asymptote/stats.asy + texmf-dist/asymptote/syzygy.asy + texmf-dist/asymptote/texcolors.asy + texmf-dist/asymptote/three.asy + texmf-dist/asymptote/three_arrows.asy + texmf-dist/asymptote/three_light.asy + texmf-dist/asymptote/three_margins.asy + texmf-dist/asymptote/three_surface.asy + texmf-dist/asymptote/three_tube.asy + texmf-dist/asymptote/tree.asy + texmf-dist/asymptote/trembling.asy + texmf-dist/asymptote/tube.asy + texmf-dist/asymptote/unicode.asy + texmf-dist/asymptote/version.asy + texmf-dist/asymptote/x11colors.asy + texmf-dist/tex/context/third/asymptote/colo-asy.tex + texmf-dist/tex/latex/asymptote/asycolors.sty + texmf-dist/tex/latex/asymptote/asymptote.sty + texmf-dist/tex/latex/asymptote/latexmkrc + texmf-dist/tex/latex/asymptote/ocg.sty +catalogue-contact-bugs https://github.com/vectorgraphics/asymptote/issues +catalogue-contact-home http://asymptote.sourceforge.net/ +catalogue-contact-repository https://github.com/vectorgraphics/asymptote +catalogue-ctan /graphics/asymptote +catalogue-date 2019-04-03 07:10:07 +0200 +catalogue-license lgpl3 +catalogue-topics graphics graphics-engn +catalogue-version 2.49 + +name asymptote-by-example-zh-cn +category Package +revision 15878 +shortdesc Asymptote by example +relocated 1 +longdesc This is a tutorial written in Simplified Chinese. +containersize 388 +containerchecksum 34608d6412d7936a15bf649555683ff03c5021e1688c99285a6b7ecdfc3a43eac4ed32108626243d6e9b07c23c557f07762897a96501a27412c7c5d039747553 +doccontainersize 526632 +doccontainerchecksum a0087e5be69962c671e1972d9e7be12f76be64582182afe042693cbad92cf3fd027422c605dcf7860cd2e61f0b925860a50e94523b9ae2d1af7a8aa6d356c3a7 +docfiles size=239 + RELOC/doc/support/asymptote-by-example-zh-cn/README details="Readme" + RELOC/doc/support/asymptote-by-example-zh-cn/asymptote-by-example-zh-cn.pdf details="The document itself" language="zh" + RELOC/doc/support/asymptote-by-example-zh-cn/src/CLEAN.bat + RELOC/doc/support/asymptote-by-example-zh-cn/src/MAKEPDF.bat + RELOC/doc/support/asymptote-by-example-zh-cn/src/asy.bib + RELOC/doc/support/asymptote-by-example-zh-cn/src/asymptote.sty + RELOC/doc/support/asymptote-by-example-zh-cn/src/asysyntex.sty + RELOC/doc/support/asymptote-by-example-zh-cn/src/cleantmp + RELOC/doc/support/asymptote-by-example-zh-cn/src/figure-src/CJKmove.sty + RELOC/doc/support/asymptote-by-example-zh-cn/src/figure-src/area.asy + RELOC/doc/support/asymptote-by-example-zh-cn/src/figure-src/hanoi.asy + RELOC/doc/support/asymptote-by-example-zh-cn/src/figure-src/hyper.asy + RELOC/doc/support/asymptote-by-example-zh-cn/src/figure-src/movie15.sty + RELOC/doc/support/asymptote-by-example-zh-cn/src/figure-src/recplot.asy + RELOC/doc/support/asymptote-by-example-zh-cn/src/figure-src/stars.asy + RELOC/doc/support/asymptote-by-example-zh-cn/src/figure-src/tiling.asy + RELOC/doc/support/asymptote-by-example-zh-cn/src/figure-src/xiantu.asy + RELOC/doc/support/asymptote-by-example-zh-cn/src/gpl-3.0.tex + RELOC/doc/support/asymptote-by-example-zh-cn/src/main.tex + RELOC/doc/support/asymptote-by-example-zh-cn/src/makepdf + RELOC/doc/support/asymptote-by-example-zh-cn/src/myfonts.sty + RELOC/doc/support/asymptote-by-example-zh-cn/src/tiling.pdf + RELOC/doc/support/asymptote-by-example-zh-cn/src/tiling.tex + RELOC/doc/support/asymptote-by-example-zh-cn/src/xiantu-ancient.pdf + RELOC/doc/support/asymptote-by-example-zh-cn/src/xiantu.pdf + RELOC/doc/support/asymptote-by-example-zh-cn/src/xiantu.tex +catalogue-ctan /info/asymptote-by-example-zh-cn +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics chinese-doc + +name asymptote-faq-zh-cn +category Package +revision 15878 +shortdesc Asymptote FAQ (Chinese translation) +relocated 1 +longdesc This is a Chinese translation of the Asymptote FAQ +containersize 380 +containerchecksum 1efc7098392ac5cad5eeaa0dcf527bd158e3f7497ff1992603b833ff63d5cfa61fe5e7bc33c5cc0c441c13fc03dfe1e18a334411be6ad2f5acc94c902e9ccf2c +doccontainersize 373604 +doccontainerchecksum b7dbcf256cffae9cc8f5027934946929b4be7a8794fb8364892802eeff4e7cf970ca8549ef442a35f173ada61533b51c2da301bf2ce931107a7ce0c564ce0c60 +docfiles size=237 + RELOC/doc/support/asymptote-faq-zh-cn/README details="Readme" + RELOC/doc/support/asymptote-faq-zh-cn/asymptote-faq-zh-cn.pdf details="The document itself" language="zh" + RELOC/doc/support/asymptote-faq-zh-cn/src/asy-faq.tex + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/4-1.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/4-1.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/4-2.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/4-2.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/4-7.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/4-7.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/4-8.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/4-8.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/4-9.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/4-9.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/5-1a.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/5-1a.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/5-2.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/5-2.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/5-4.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/5-4.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-1.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-1.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-11a.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-11a.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-11b.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-11b.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-12.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-12.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-14.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-14.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-15.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-15.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-19.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-19.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-2.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-2.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-3.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-3.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-4.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-4.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-5.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-5.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-6.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-6.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-7b.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-7b.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-7c.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-7c.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-8b.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-8b.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-8c.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-8c.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-9.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/6-9.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-4.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-4.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-8a.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-8a.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-8b.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-8b.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-8c.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-8c.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-8d.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-8d.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-9a.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-9a.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-9b.asy + RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-9b.pdf + RELOC/doc/support/asymptote-faq-zh-cn/src/preamble_newnew.tex +catalogue-ctan /info/asymptote-faq-zh-cn +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics chinese-doc + +name asymptote-manual-zh-cn +category Package +revision 15878 +shortdesc A Chinese translation of the asymptote manual +relocated 1 +longdesc This is an (incomplete, simplified) Chinese translation of the +longdesc Asymptote manual. +containersize 400 +containerchecksum c04fc953a0a9035c238b9f80873d9fc605b23b322e898ae55b8eda7537f0172076e512022b163e3cd397ce2e4e721afa2e981454db53511c1a7347a017185df5 +doccontainersize 898452 +doccontainerchecksum 0f82e25773a14b0f81b34354f16931834d0496b2c6636c498c6af686f46e7ff93a274739a1a4c189433c9df1ae91ca010f0887081c81f2ac9006a105c7fd4ac9 +docfiles size=413 + RELOC/doc/support/asymptote-manual-zh-cn/README details="Readme" + RELOC/doc/support/asymptote-manual-zh-cn/asymptote-manual-zh-cn.pdf details="The document itself" language="zh" + RELOC/doc/support/asymptote-manual-zh-cn/src/CDlabel.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/CLEAN.bat + RELOC/doc/support/asymptote-manual-zh-cn/src/Coons.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/Gouraud.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/MAKEPDF.bat + RELOC/doc/support/asymptote-manual-zh-cn/src/Pythagoras.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/adobefonts.tex + RELOC/doc/support/asymptote-manual-zh-cn/src/asycolors.sty + RELOC/doc/support/asymptote-manual-zh-cn/src/asysyntex.tex + RELOC/doc/support/asymptote-manual-zh-cn/src/axialshade.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/bezier2.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/beziercurve.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/bigsquare.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/cleantmp + RELOC/doc/support/asymptote-manual-zh-cn/src/clippath.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/colons.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/colors.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/cube.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/diagonal.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/dots.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/fzfonts.tex + RELOC/doc/support/asymptote-manual-zh-cn/src/hatch.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/join.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/labelalign.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/labelsquare.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/latticeshading.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/linecap.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/linejoin.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/linetype.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/logo.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/main.tex + RELOC/doc/support/asymptote-manual-zh-cn/src/makepdf + RELOC/doc/support/asymptote-manual-zh-cn/src/makepen.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/mexicanhat.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/quartercircle.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/shadedtiling.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/shadestroke.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/square.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/subpictures.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/superpath.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/tile.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/transparency.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/windingnumber.asy + RELOC/doc/support/asymptote-manual-zh-cn/src/winfonts.tex +catalogue-ctan /info/asymptote-manual-zh-cn +catalogue-date 2018-10-09 06:05:44 +0200 +catalogue-license lgpl +catalogue-topics chinese-doc + +name asymptote.aarch64-linux +category TLCore +revision 50790 +shortdesc aarch64-linux files of asymptote +containersize 891872 +containerchecksum 8ed05c7a6481acaa34241b74a1b07f87f523306971f42f5215641b6750b7de8027ab204ed2511ff7b9b316afd7c9feeee8996c6f11f7a9ad455b7b40f6bd3a1f +binfiles arch=aarch64-linux size=769 + bin/aarch64-linux/asy + +name asymptote.amd64-freebsd +category TLCore +revision 50887 +shortdesc amd64-freebsd files of asymptote +containersize 1033668 +containerchecksum f958027d17c5b17d8bcc463b1d33049ab984765ed387356421905d530d9f7602160af290d625d24bb286bbca0a78cc4dafdf624a512c843e1c70de1d8b947199 +binfiles arch=amd64-freebsd size=844 + bin/amd64-freebsd/asy + bin/amd64-freebsd/xasy + +name asymptote.armhf-linux +category TLCore +revision 50918 +shortdesc armhf-linux files of asymptote +containersize 7922548 +containerchecksum 5d034d403a48a41517753efc85beedcdb6c90ca56eb9ad2af0e61de8d5d4c8a460bf1c26c429fcd1de83ad933be5d70ea3b85042d803340c90cad0e84d6edd2d +binfiles arch=armhf-linux size=8009 + bin/armhf-linux/asy + bin/armhf-linux/xasy + +name asymptote.i386-cygwin +category TLCore +revision 50748 +shortdesc i386-cygwin files of asymptote +containersize 1020944 +containerchecksum cd56289ce816d37b6a0d0f40042a2eebf339216a698112a2d936bd3fb1d701105f637e83dbd7b7efa73d948cefabc56bbea2a517177124044aa0fc327daca156 +binfiles arch=i386-cygwin size=928 + bin/i386-cygwin/asy.exe + bin/i386-cygwin/xasy + +name asymptote.i386-linux +category TLCore +revision 50721 +shortdesc i386-linux files of asymptote +containersize 1281044 +containerchecksum c25a694ca5ed6c6ff53b5109905ed965852e96b4bd44fca6ec3ea4ff01445b9c4274f5a1f1ecf5648616e71e64bf96b79145fdbc60105a5d63f164e18989edb5 +binfiles arch=i386-linux size=1131 + bin/i386-linux/asy + bin/i386-linux/xasy + +name asymptote.i386-solaris +category TLCore +revision 50730 +shortdesc i386-solaris files of asymptote +containersize 1377016 +containerchecksum 321ca2e1bc0121c8fe7c9ee9b88821e052f30b2ac3fa705be1a4564550550ed9bbdb00b7002bdb24669da9870cbb30a75e705828f94c716b9f83e1b7a577646f +binfiles arch=i386-solaris size=1325 + bin/i386-solaris/asy + bin/i386-solaris/xasy + +name asymptote.win32 +category TLCore +revision 50744 +shortdesc win32 files of asymptote +containersize 6563688 +containerchecksum b635e964b30c18c57e092ef51dd5d7864d404beab63c120c87b39b6984fce74fe90e8ff24d53447dea40f83a4d22624b67d8210d4751379eaa31659f7d40e222 +binfiles arch=win32 size=5876 + bin/win32/asy.exe + tlpkg/asymptote/asy.exe + tlpkg/asymptote/cygwin1.dll + tlpkg/asymptote/freeglut.dll + tlpkg/asymptote/glu32.dll + tlpkg/asymptote/opengl32.dll + tlpkg/asymptote64/asy.exe + tlpkg/asymptote64/cygwin1.dll + tlpkg/asymptote64/freeglut.dll + +name asymptote.x86_64-cygwin +category TLCore +revision 50748 +shortdesc x86_64-cygwin files of asymptote +containersize 1116532 +containerchecksum c9d282cf920b61b9d8d62b98a788af2fe5bd1df8f22dd20ead1c805ba431711a3a7951d218c8f7cb6b7bd21d61a50bd5bdf52b90c1c0a9da7d880d92da07572d +binfiles arch=x86_64-cygwin size=926 + bin/x86_64-cygwin/asy.exe + bin/x86_64-cygwin/xasy + +name asymptote.x86_64-darwin +category TLCore +revision 50743 +shortdesc x86_64-darwin files of asymptote +containersize 1633728 +containerchecksum 6f4447c9b5137edc1aca8cb685478fa4def7240478bb3f477258e19f302e25464e5d8da00d03ca085811513b40fda9bb5fc044a6ccf360ce65f36e5b49d8deb6 +binfiles arch=x86_64-darwin size=1542 + bin/x86_64-darwin/asy + bin/x86_64-darwin/xasy + +name asymptote.x86_64-darwinlegacy +category TLCore +revision 50859 +shortdesc x86_64-darwinlegacy files of asymptote +containersize 1902488 +containerchecksum ff30c6e2c03af97c2648537b05405dce7a391836100a8fffc81ff0244996af5a7eb31f2617622c78cb4ad820fb3a6189d5e403099e3978de683523db5e081b3d +binfiles arch=x86_64-darwinlegacy size=1816 + bin/x86_64-darwinlegacy/asy + bin/x86_64-darwinlegacy/xasy + +name asymptote.x86_64-linux +category TLCore +revision 50721 +shortdesc x86_64-linux files of asymptote +containersize 1250080 +containerchecksum 077b9e91240e7fcb29a966b82ca4447b951a2a52a8c88b27bcb0284b786076a2c3699049a64e5ca7daeae198f62b987f20839a64712357a6257ddc80ece75b85 +binfiles arch=x86_64-linux size=1047 + bin/x86_64-linux/asy + bin/x86_64-linux/xasy + +name asymptote.x86_64-solaris +category TLCore +revision 50730 +shortdesc x86_64-solaris files of asymptote +containersize 1457504 +containerchecksum c0bde2892e461a48148f67f4a54d08b980e40f5ccfdf3a109889df47941477645190b0690d60cdebce5baaf8a0fb3f6dc72d518bd134f77552e93057ab68bba3 +binfiles arch=x86_64-solaris size=1364 + bin/x86_64-solaris/asy + bin/x86_64-solaris/xasy + name asypictureb category Package revision 33490 @@ -10609,22 +20886,29 @@ longdesc package is more user-friendly in several ways. Most notably, longdesc Asymptote errors are repackaged as LaTeX errors, making longdesc debugging less of a pain. It also has a more robust mechanism longdesc for identifying unchanged pictures that need not be recompiled. -runfiles size=3 - RELOC/tex/latex/asypictureb/asypictureB.sty +containersize 3608 +containerchecksum a1ab37814223b13bf49d23c527543cb537e2224335e727e07e1f645a7f76a2f3ba1a275073c775463880b0e258e716b6b00d0df29ca944f1f22b3ac70aef4378 +doccontainersize 626452 +doccontainerchecksum 68b060950fdad080061b8d2c1a91726d0eabee9aaebe322e983e0dab81df30c65d9d7d0cf32fb2847f504ede155f2c43f3ba8c00073fa425bddcfe7d47a6f000 docfiles size=157 - RELOC/doc/latex/asypictureb/README - RELOC/doc/latex/asypictureb/asypictureB.pdf + RELOC/doc/latex/asypictureb/README details="Readme" + RELOC/doc/latex/asypictureb/asypictureB.pdf details="Package documentation" +srccontainersize 15528 +srccontainerchecksum 883968dc538186507f4e81a466dd980b8a8a3ec088e25e7973c62e949871c79baeb909ef64815720004d503cad33d7f9de6c7ca0950cc0618ad2111e92870b73 srcfiles size=15 RELOC/source/latex/asypictureb/asypictureB.dtx RELOC/source/latex/asypictureb/asypictureB.ins +runfiles size=3 + RELOC/tex/latex/asypictureb/asypictureB.sty catalogue-ctan /graphics/asypictureb -catalogue-date 2014-04-25 11:20:11 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics graphics-incl catalogue-version 0.3 name attachfile category Package -revision 36721 +revision 42099 shortdesc Attach arbitrary files to a PDF document relocated 1 longdesc Starting with PDF 1.3 (Adobe Acrobat 4.0), PDF files can @@ -10634,32 +20918,75 @@ longdesc attachfile package brings this functionality to pdfLaTeX and longdesc provides some additional features not available in Acrobat, longdesc such as the ability to use arbitrary LaTeX code for the file longdesc icon -- including things like \includegraphics, tabular, and -longdesc mathematics. Settings can be made either globally or on a per- -longdesc attachment basis. Attachfile makes it easy to attach files and -longdesc customize their appearance in the enclosing document. The +longdesc mathematics. Settings can be made either globally or on a +longdesc per-attachment basis. Attachfile makes it easy to attach files +longdesc and customize their appearance in the enclosing document. The longdesc package supports the Created, Modified, and Size keys in the longdesc EmbeddedFile's Params dictionary. -runfiles size=3 - RELOC/tex/latex/attachfile/attachfile.sty -docfiles size=87 - RELOC/doc/latex/attachfile/README - RELOC/doc/latex/attachfile/attachfile.pdf +containersize 4744 +containerchecksum 526a279f3fcb309cb117327f4206e7dce8c49d39b85a846799bdfea5bf453d2f00e14e854a74d544e49fa92ce056cd8ccc7e03f56856a8e8562b7105d5fd19fa +doccontainersize 346824 +doccontainerchecksum 9f9e6572e70d348e1db71254a0c6a80cfe76b767801a3c18ad4517577b793b5388367b24f311f491f0dde8df38684b3de4a2ec7e6db67f1fc1ca7b4a9ce5ce78 +docfiles size=90 + RELOC/doc/latex/attachfile/README details="Readme" + RELOC/doc/latex/attachfile/attachfile.pdf details="Package documentation" +srccontainersize 19996 +srccontainerchecksum a4bf69ed370f495f190abaaed8616b4a3ca14184987c6c4882451ec4dd6961b827d3c38d8c049ebe73954f5fe205f727124e447d2e3cf17abe1d95336371b9a1 srcfiles size=19 RELOC/source/latex/attachfile/attachfile.dtx RELOC/source/latex/attachfile/attachfile.ins +runfiles size=5 + RELOC/bibtex/bib/attachfile/attachfile.bib + RELOC/tex/latex/attachfile/attachfile.sty +catalogue-also attachfile2 catalogue-ctan /macros/latex/contrib/attachfile -catalogue-date 2015-04-05 08:11:10 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl1.3 -catalogue-version 1.6 +catalogue-topics pdf-feat +catalogue-version 1.9 + +name aucklandthesis +category Package +revision 41506 +shortdesc Memoir-based class for formatting University of Auckland masters' and doctors' theses +relocated 1 +longdesc A memoir-based class for formatting University of Auckland +longdesc masters' and doctors' thesis dissertations in any discipline. +longdesc The title page does not handle short dissertations for +longdesc diplomas. +containersize 3176 +containerchecksum 8cff7972427d5c4ade22e35135fa6c76ad7c5a05152bcf8ca8604339f806ca20326bd4e8e9de899332c6a8ff2fdf9e6f496f7a4624ee212df64817031f4a4f55 +doccontainersize 711924 +doccontainerchecksum 64e240488edb57aaa24455ba9dea9ba06c87c59fc5503d175540702fa2f49a4d38b35fa6cf590cada8cba788280e49b5f786e015effe3abf1741766908daad99 +docfiles size=177 + RELOC/doc/latex/aucklandthesis/README.txt details="Readme" + RELOC/doc/latex/aucklandthesis/aucklandthesis_userguide.pdf details="Package documentation" + RELOC/doc/latex/aucklandthesis/template.tex +runfiles size=3 + RELOC/tex/latex/aucklandthesis/aucklandthesis.cls +catalogue-ctan /macros/latex/contrib/aucklandthesis +catalogue-date 2018-01-07 14:49:11 +0100 +catalogue-license lppl1.3 +catalogue-topics dissertation class name augie category Package revision 18948 -shortdesc Calligraphic font for typesetting handwriting. +shortdesc Calligraphic font for typesetting handwriting relocated 1 longdesc A calligraphic font for simulating American-style informal longdesc handwriting. The font is distributed in Adobe Type 1 format. execute addMap augie.map +containersize 62096 +containerchecksum e8e40eb1e59b7bbd3e6b042e8c8ed40f604066fff6bffa3b46e0e7b7e5984fb25e880422d392209f6dcae6771339bb49a27bfcc7e9e33bd0b638b0794a5e5098 +doccontainersize 3324 +doccontainerchecksum 40db247d40e98bba2c79e5adbd564b77e09b52c34e75a41bb1447e586f605478e4e7399a8d294b078fbbe508eafe5d0c6a68b7e3b7c875af85016f72c74376f0 +docfiles size=6 + RELOC/doc/latex/augie/README.augie details="Readme" + RELOC/doc/latex/augie/augie.txt + RELOC/doc/latex/augie/other/Augie___.pfm + RELOC/doc/latex/augie/other/augie___.inf + RELOC/doc/latex/augie/vtex/augie.ali runfiles size=30 RELOC/fonts/afm/public/augie/augie___.afm RELOC/fonts/map/dvips/augie/augie.map @@ -10675,20 +21002,16 @@ runfiles size=30 RELOC/tex/latex/augie/ot1augie.fd RELOC/tex/latex/augie/t1augie.fd RELOC/tex/latex/augie/ts1augie.fd -docfiles size=6 - RELOC/doc/latex/augie/README.augie - RELOC/doc/latex/augie/augie.txt - RELOC/doc/latex/augie/other/Augie___.pfm - RELOC/doc/latex/augie/other/augie___.inf - RELOC/doc/latex/augie/vtex/augie.ali +catalogue-also twcal catalogue-ctan /fonts/augie -catalogue-date 2014-04-05 20:24:32 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-calligraphic font-type1 name auncial-new category Package revision 15878 -shortdesc Artificial Uncial font and LaTeX support macros. +shortdesc Artificial Uncial font and LaTeX support macros relocated 1 longdesc The auncial-new bundle provides packages and fonts for a script longdesc based on the Artificial Uncial manuscript book-hand used @@ -10701,6 +21024,23 @@ longdesc bookhand fonts. The font follows the B1 encoding developed for longdesc bookhands. Access to the encoding is essential. The encoding longdesc mainly follows the standard T1 encoding. execute addMap auncial.map +containersize 201360 +containerchecksum e6132432d4398f3a9b8b04f331bf0852b662da84a96882758a8ce07e7f50a0ad5317b0d6a51cfa389f55fcb3b105e5aa748d249dc3e6c8b2d52647f6c900bb24 +doccontainersize 318120 +doccontainerchecksum 2ab25dee888444432a2bd1eedeccbbcbeb5fa8008b15b0072e1537116d5c1f5f082818eddf31dc604f73ca1d4fb3bc6d3eb76c1ac712666ef1f86dd06bd19516 +docfiles size=90 + RELOC/doc/fonts/auncial-new/README details="Readme" + RELOC/doc/fonts/auncial-new/auncial.pdf details="Package documentation" + RELOC/doc/fonts/auncial-new/tryauncial.pdf details="Font sample, etc." + RELOC/doc/fonts/auncial-new/tryauncial.tex +srccontainersize 33688 +srccontainerchecksum c5fc0ed2cbf1f4813925dcd2206d479ba4a0699d33872fa36e63b21616c595dbe289a005e1de8db2a7cad30d760161932b4fd0b75c477fc915fc1572f86b7b6f +srcfiles size=64 + RELOC/source/fonts/auncial-new/auncial.dtx + RELOC/source/fonts/auncial-new/auncial.ins + RELOC/source/fonts/auncial-new/aunclmfb.dtx + RELOC/source/fonts/auncial-new/aunclmfc.dtx + RELOC/source/fonts/auncial-new/aunclmft.dtx runfiles size=65 RELOC/fonts/afm/public/auncial-new/auncl10.afm RELOC/fonts/afm/public/auncial-new/aunclb10.afm @@ -10712,26 +21052,16 @@ runfiles size=65 RELOC/tex/latex/auncial-new/allauncl.sty RELOC/tex/latex/auncial-new/auncial.sty RELOC/tex/latex/auncial-new/b1auncl.fd -docfiles size=90 - RELOC/doc/fonts/auncial-new/README - RELOC/doc/fonts/auncial-new/auncial.pdf - RELOC/doc/fonts/auncial-new/tryauncial.pdf - RELOC/doc/fonts/auncial-new/tryauncial.tex -srcfiles size=64 - RELOC/source/fonts/auncial-new/auncial.dtx - RELOC/source/fonts/auncial-new/auncial.ins - RELOC/source/fonts/auncial-new/aunclmfb.dtx - RELOC/source/fonts/auncial-new/aunclmfc.dtx - RELOC/source/fonts/auncial-new/aunclmft.dtx catalogue-ctan /fonts/auncial-new -catalogue-date 2014-04-06 12:09:20 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-bookhand font-type1 catalogue-version 2.0 name aurical category Package revision 15878 -shortdesc Calligraphic fonts for use with LaTeX in T1 encoding. +shortdesc Calligraphic fonts for use with LaTeX in T1 encoding relocated 1 longdesc The package that implements a set (AuriocusKalligraphicus) of longdesc three calligraphic fonts derived from the author's handwriting @@ -10741,6 +21071,13 @@ longdesc font features oldstyle digits and (machine-generated) boldface longdesc and slanted versions. A variant of Lukas Svatba offers a 'long longdesc s'. execute addMap aurical.map +containersize 2446888 +containerchecksum 1c48c36d6121005c123018cfe1266783288572c0ce8a9ea4b9b47ac28f46206de61b7a73804121f9a57c056c871c547c97ff10a529fedaca57bcb3ab78f3bea0 +doccontainersize 69056 +doccontainerchecksum 89de4991373a50d673f569e72f4727bd66a2b40b385006c3c7e4605812e7f8d3d346e3b08be55241f9926a58b40126d123d6ecea912d09db3973985d0cf9e90c +docfiles size=26 + RELOC/doc/latex/aurical/aurical.pdf details="Package introduction and samples" + RELOC/doc/latex/aurical/aurical.tex runfiles size=779 RELOC/fonts/afm/public/aurical/AmiciLogo.afm RELOC/fonts/afm/public/aurical/AmiciLogoBold.afm @@ -10821,36 +21158,101 @@ runfiles size=779 RELOC/tex/latex/aurical/T1JanaSkrivana.fd RELOC/tex/latex/aurical/T1LukasSvatba.fd RELOC/tex/latex/aurical/aurical.sty -docfiles size=26 - RELOC/doc/latex/aurical/aurical.pdf - RELOC/doc/latex/aurical/aurical.tex catalogue-ctan /fonts/aurical -catalogue-date 2014-04-06 12:09:20 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-calligraphic font-type1 catalogue-version 1.5 +name aurl +category Package +revision 41853 +shortdesc Extends the hyperref package with a mechanism for hyperlinked URLs abbreviated with prefixes +relocated 1 +longdesc Semantic Web resource URLs are often abbreviated with prefixes, +longdesc like "owl:Class" or "rdf:type". The abbreviated URL (aurl) +longdesc package provides the correct hyperlinks for those URLs. The +longdesc 1000 most common prefixes are predefined and more can be added. +containersize 13764 +containerchecksum 4688987b83ae65e15a74cb7960dc990710930186ec94e376cc3a74dfec9f6d75a51babd99438ff87a5f6f8e05cee483b569fabe627ef00fb892126f74749649d +doccontainersize 1052 +doccontainerchecksum a58f7cbbae262c7650bc5147b400f25f0c666effdcf37e565f665092d1cff820d2d98652947d36f6940b8d16027336b970ff88ecd9f3500d9a39a45eb4a19acf +docfiles size=2 + RELOC/doc/latex/aurl/README.md details="Readme" + RELOC/doc/latex/aurl/aurltest.tex +runfiles size=14 + RELOC/tex/latex/aurl/aurl.sty +catalogue-ctan /macros/latex/contrib/aurl +catalogue-date 2016-08-16 04:47:15 +0200 +catalogue-license pd +catalogue-topics hyper + name authoraftertitle category Package revision 24863 -shortdesc Make author, etc., available after \maketitle. +shortdesc Make author, etc., available after \maketitle relocated 1 longdesc This jiffy package makes the author, title and date of the longdesc package available to the user (as \MyAuthor, etc) after the longdesc \maketitle command has been executed. -runfiles size=1 - RELOC/tex/latex/authoraftertitle/authoraftertitle.sty +containersize 780 +containerchecksum ad07262ef312a8807e4419101fd7cd10663926000f7f3c63d9d2a306c02f718982a8c525ffc2c34f04bdc12c5501976236079d2840e16acb9e8b1bcf9598a489 +doccontainersize 115360 +doccontainerchecksum 54e7c6b96ecc37948e32ab1d057c6b3b242b68889fa07a049448d790b8310026014917977dfee6365bf6196dc661ca79bf963ae9891edd22c22c9f89a7d8d756 docfiles size=31 - RELOC/doc/latex/authoraftertitle/authoraftertitle.pdf + RELOC/doc/latex/authoraftertitle/authoraftertitle.pdf details="Package documentation" RELOC/doc/latex/authoraftertitle/authoraftertitle.tex +runfiles size=1 + RELOC/tex/latex/authoraftertitle/authoraftertitle.sty +catalogue-also titling catalogue-ctan /macros/latex/contrib/authoraftertitle -catalogue-date 2012-05-01 17:17:50 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics macro-supp catalogue-version 0.9 +name authorarchive +category Package +revision 46704 +shortdesc Adds self-archiving information to scientific papers +relocated 1 +longdesc This is a LaTeX style for producing author self-archiving +longdesc copies of (academic) papers. The following layout-styles are +longdesc pre-defined: ACMfor the two-column layout used by many ACM +longdesc conferences IEEE for the two-column layout used by many IEEE +longdesc conferences LNCS for the LNCS layout (as used by Springer) LNI +longdesc for the Lecture Notes in Informatics, published by the GI ENTCS +longdesc for the Elsevier ENTCS layout +containersize 3088 +containerchecksum 85fe84ee49e29b25a75628f66a53d8b257955be6b894f6a549e7779382ab0418b05d9016527621982aacb26f9211c1abd35d88990803812942f3a4c08d67c412 +doccontainersize 209240 +doccontainerchecksum 5383bf23214fd45e7c76613afd5067871c9f885e5f896cbb41dcc53e855279f68d42ca5b2ff5565c32193d055d1ebe1bb982b762e0de1ec6cadd4385cd896d2a +docfiles size=61 + RELOC/doc/latex/authorarchive/CHANGELOG.md + RELOC/doc/latex/authorarchive/LICENSE + RELOC/doc/latex/authorarchive/README.md details="Readme" + RELOC/doc/latex/authorarchive/authorarchive.config + RELOC/doc/latex/authorarchive/brucker-authorarchive-2016.bib + RELOC/doc/latex/authorarchive/brucker-authorarchive-2016.enw + RELOC/doc/latex/authorarchive/brucker-authorarchive-2016.pdf details="Example" + RELOC/doc/latex/authorarchive/brucker-authorarchive-2016.ris + RELOC/doc/latex/authorarchive/brucker-authorarchive-2016.tex + RELOC/doc/latex/authorarchive/brucker-authorarchive-2016.word.xml +runfiles size=3 + RELOC/tex/latex/authorarchive/authorarchive.sty +catalogue-also coverpage +catalogue-contact-bugs https://github.com/adbrucker/authorarchive/issues +catalogue-contact-repository https://github.com/adbrucker/authorarchive +catalogue-ctan /macros/latex/contrib/authorarchive +catalogue-date 2018-02-26 08:27:22 +0100 +catalogue-license lppl1 +catalogue-topics archival journalpub +catalogue-version 1.0.0 + name authorindex category Package revision 26313 -shortdesc Index citations by author names. +shortdesc Index citations by author names longdesc This package allows the user to create an index of all authors longdesc cited in a LaTeX document. Each author entry in the index longdesc contains the pages where these citations occur. Alternatively, @@ -10859,39 +21261,273 @@ longdesc the references rather than the text pages. The package relies longdesc on BibTeX being used to handle citations. Additionally, it longdesc requires Perl (version 5 or higher). depend authorindex.ARCH -runfiles size=7 - texmf-dist/scripts/authorindex/authorindex - texmf-dist/tex/latex/authorindex/authorindex.sty +containersize 9060 +containerchecksum f8083a9d2b23ac0c232a1ecaa862d1cc06a341ac3835b5242f6374122c41c36ad446cdd0e2d1290edc9c13b05f81c51b68f085de18cde03a832277ebf2db28c5 +doccontainersize 116120 +doccontainerchecksum 486b02109152e02ac0e288424c8aaeabaf735105bf83177f7ab9117d2043d723234f4e4b414c63518ceeb6ae3003bc894c9e461f79e25f44727d43a212442686 docfiles size=43 texmf-dist/doc/latex/authorindex/COPYING texmf-dist/doc/latex/authorindex/NEWS texmf-dist/doc/latex/authorindex/README - texmf-dist/doc/latex/authorindex/authorindex.pdf + texmf-dist/doc/latex/authorindex/authorindex.pdf details="Package documentation" texmf-dist/doc/latex/authorindex/authorindex.tex +runfiles size=7 + texmf-dist/scripts/authorindex/authorindex + texmf-dist/tex/latex/authorindex/authorindex.sty catalogue-ctan /indexing/authorindex -catalogue-date 2012-05-24 17:00:23 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics index cite-supp + +name authorindex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of authorindex +containersize 344 +containerchecksum b00424de8ec91e59c742839dc3de39b8aacfc2d33f4158d9b6e86f2c964f4a132a9bd84c8de4d2f91a2f9e000d0ef14732b3b0ae8f0152f99b077498011fccdb +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/authorindex + +name authorindex.amd64-freebsd +category Package +revision 18790 +shortdesc amd64-freebsd files of authorindex +containersize 344 +containerchecksum d4848c4e317be4264f3f3b6dfa9f901deae826b97c521aad4c619ad017c8da5427cb044f706bce870950962da0ed4815f86935e2cf7c89cec7744c20f61628fa +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/authorindex + +name authorindex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of authorindex +containersize 344 +containerchecksum addee932aefd9891bb9e61bfbb81c90aaf5172cf03930a682c893fbc8c6cfd6b963aebc8b0eab9bd867e33be3f952498ef59afcf8115cc8061a47d7e56f505da +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/authorindex + +name authorindex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of authorindex +containersize 340 +containerchecksum 85a2ce30d16623e932ecd95c17ab64fc001e4177bc159d54cd5952b4fe852dcd053350773743801cbd074d7a7e66eaf844cfe41475ce634029833e65465f61e7 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/authorindex + +name authorindex.i386-cygwin +category Package +revision 18790 +shortdesc i386-cygwin files of authorindex +containersize 340 +containerchecksum af734de9f73ea2e9124c461e4fa20cd38a1ee9711d7337e27d6a072327f8c57a4b806f5408a8df32b3e743c7e23446fdef13f7ec92813345b7ea2ffa7386809d +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/authorindex + +name authorindex.i386-freebsd +category Package +revision 18790 +shortdesc i386-freebsd files of authorindex +containersize 344 +containerchecksum c859e048f293843dd5f0e640bf0ac28afd5ec089df1e2449e7c5e06bd9b2bc604758aff6e7773030c4242dc1d05e53210e2b62021f1f34c4bfa7fc067d165d34 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/authorindex name authorindex.i386-linux category Package revision 18790 shortdesc i386-linux files of authorindex +containersize 340 +containerchecksum 7390fcfd45558fc36000296e43d3bbc3c548c65b9cdbf172e4b02791d2c0aef3a73e007788a1cad8215523cca612f2b4681aa10be670ee02d15b0181c37ab4fe binfiles arch=i386-linux size=1 bin/i386-linux/authorindex +name authorindex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of authorindex +containersize 340 +containerchecksum c772a5aba66b6c08bce0a0e858266306812a3af18c2617e174ef39f34dc29344e0d9bcb5d2c476a329814b7987518bbb67ffb4312da536ca12f9ba80f4071413 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/authorindex + +name authorindex.i386-solaris +category Package +revision 18790 +shortdesc i386-solaris files of authorindex +containersize 340 +containerchecksum 184ae8df3bd513e08b97707069c8f91b10c1892912169b3b31121c60f2827da8136cf1797766f716f3237a515248c089cc494afd6c9d7c2b63218947aae00a0a +binfiles arch=i386-solaris size=1 + bin/i386-solaris/authorindex + +name authorindex.win32 +category Package +revision 44131 +shortdesc win32 files of authorindex +containersize 684 +containerchecksum 17bba018eb5068336f2de0f84e368040e690a90cf926fbae36b2533b69659182ce1c9a56ad8fa3176a8571f5f8c43dd96cf5052d52a34427f7cbf3a7fb12fb57 +binfiles arch=win32 size=1 + bin/win32/authorindex.exe + +name authorindex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of authorindex +containersize 344 +containerchecksum f4a7cfc2334a36e276a7ea92c15c8972553b27968b23dae6fd1d4457dcf46c60cf363f0ae99e9f8eab9f257cdf6249aa4f02b21948d56cf58bf003d3ebd50fd4 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/authorindex + +name authorindex.x86_64-darwin +category Package +revision 18790 +shortdesc x86_64-darwin files of authorindex +containersize 344 +containerchecksum da38c3becba6366c33e683ef4e3636e5fddf23f9fe8b321e09a009caa41046de04b3a7957d01c475a176df2c01483149d23a21b071e21bc4573c5166e8a09e6f +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/authorindex + +name authorindex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of authorindex +containersize 352 +containerchecksum 2edb2f492bccc0353b6f08394363842ac65ff8daa6cb77fd1332d1fc1483ad3b1b12e41361b1c4e63ac830db764883f1e831385d20ea1d414192202e37c948f5 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/authorindex + +name authorindex.x86_64-linux +category Package +revision 18790 +shortdesc x86_64-linux files of authorindex +containersize 340 +containerchecksum 7db0764fbf96a599468e36f854705980b55c9d60955fee73ecd62c848795e765723fe9579b5bc9905549ebdd89cc3e71964ad2b9630abd57603c88879488f2cf +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/authorindex + +name authorindex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of authorindex +containersize 344 +containerchecksum 626da353fe70d3faab3ac65e4f2951da095bff98fe86db1afe7f1574b313dac33909b9a41b94866471965254338f69ced721c9c2ec4ec588de7b15c4ebf565d7 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/authorindex + +name authorindex.x86_64-solaris +category Package +revision 18790 +shortdesc x86_64-solaris files of authorindex +containersize 344 +containerchecksum 6b2b12fab3904d760daa4e87305c39e95425a98ce0d375fbd3befcc06424bf29d82e7fce610f79cd66af6c518ee1aa199abf81df6ef0975544d7925d3acd3cf4 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/authorindex + +name auto-pst-pdf +category Package +revision 23723 +shortdesc Wrapper for pst-pdf (with some psfrag features) +relocated 1 +longdesc The package uses --shell-escape to execute pst-pdf when +longdesc necessary. This makes it especially easy to integrate into the +longdesc workflow of an editor with just "LaTeX" and "pdfLaTeX" buttons. +longdesc Wrappers are provided for various psfrag-related features so +longdesc that Matlab figures via laprint, Mathematica figures via +longdesc MathPSfrag, and regular psfrag figures can all be input +longdesc consistently and easily. +containersize 2596 +containerchecksum 383de50023906861e45b9d6330962e89513aac0448a06af36057d4266ac1657fc49f650dfc9d3709f5f50879e6912ea93246225651412e8c919fe3ce0eb77f58 +doccontainersize 318756 +doccontainerchecksum bb0682378d96bef60480b8155d1725b21c89c5be04ad1a6dc108da871d8e25001be0d696cbe806cd7e4d69a9005a54f71d601fd67e322f22dcb17d0dc6addfea +docfiles size=102 + RELOC/doc/latex/auto-pst-pdf/README details="Package Readme" + RELOC/doc/latex/auto-pst-pdf/auto-pst-pdf-DE.pdf details="Package documentation" language="de" + RELOC/doc/latex/auto-pst-pdf/auto-pst-pdf-DE.tex + RELOC/doc/latex/auto-pst-pdf/auto-pst-pdf.pdf details="Package documentation" language="en" + RELOC/doc/latex/auto-pst-pdf/example-psfrag.tex + RELOC/doc/latex/auto-pst-pdf/example.eps + RELOC/doc/latex/auto-pst-pdf/example.tex +srccontainersize 7656 +srccontainerchecksum fa24b5a7daf996b05384537fe90a17204b299d5fd837cdafef3bb338e9a9c06b3eae369271ffe3d090cadfcbf4d4b3979ad17aef908aab374b5d1c0465952c1e +srcfiles size=7 + RELOC/source/latex/auto-pst-pdf/auto-pst-pdf.dtx + RELOC/source/latex/auto-pst-pdf/auto-pst-pdf.ins +runfiles size=2 + RELOC/tex/latex/auto-pst-pdf/auto-pst-pdf.sty +catalogue-ctan /macros/latex/contrib/auto-pst-pdf +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-epspdf +catalogue-version 0.6 + +name auto-pst-pdf-lua +category Package +revision 49364 +shortdesc Using LuaLaTeX together with PostScript code +relocated 1 +longdesc This package is a slightly modified version of auto-pst-pdf by +longdesc Will Robertson, which itself is a wrapper for pst-pdf by Rolf +longdesc Niepraschk. The package allows the use of LuaLaTeX together +longdesc with PostScript related code, eg. PSTricks. It depends on +longdesc ifpdf, ifluatex, ifplatform, and xkeyval. +containersize 2512 +containerchecksum db12bf66e8c4c16de2ecf3caff64deb38eb1c163baac66d0dded1f540d817da4bbb9309620b4ad60000f48319c2b8236ae8ac7a0774bf297d731a0258d4be3d3 +doccontainersize 69040 +doccontainerchecksum b21755948a9a272611d91622fe8e641f485e1ff4ebab4053331431e229b04796895ca9329e2b69921a9fe1f8624f7a635bbed7ab4699fc6aff819d351bce95b9 +docfiles size=20 + RELOC/doc/latex/auto-pst-pdf-lua/Changes + RELOC/doc/latex/auto-pst-pdf-lua/README details="Readme" + RELOC/doc/latex/auto-pst-pdf-lua/auto-pst-pdf-lua-doc.pdf details="Package documentation" + RELOC/doc/latex/auto-pst-pdf-lua/auto-pst-pdf-lua-doc.tex +runfiles size=2 + RELOC/tex/latex/auto-pst-pdf-lua/auto-pst-pdf-lua.sty +catalogue-ctan /macros/latex/contrib/auto-pst-pdf-lua +catalogue-date 2018-12-09 17:51:00 +0100 +catalogue-license lppl1.3c +catalogue-topics graphics-epspdf +catalogue-version 0.03 + +name autoaligne +category Package +revision 49092 +shortdesc Align terms and members in math expressions +relocated 1 +longdesc This package allows to align terms and members between lines +longdesc containing math expressions. +containersize 9288 +containerchecksum 10c1b6b8973bc451d38f1051715d7f6efe8acc7420b954aae657bae10254d6919fc7e3d605ebc90e525a7cfa56f082a966bad600c54e50070f1c3fae2bec38fd +doccontainersize 355792 +doccontainerchecksum c0a1f2514d80e153b74efa94918c70cc16638d68c6b6e1ae4df8f765e13bc55218a1b7eed289f6dafba440ab7c5ef6cf1b6a728f8df161b21c9951894e83b949 +docfiles size=88 + RELOC/doc/generic/autoaligne/README details="Readme" + RELOC/doc/generic/autoaligne/autoaligne-fr.pdf details="Package documentation (French)" language="fr" +runfiles size=9 + RELOC/tex/generic/autoaligne/autoaligne-fr.tex + RELOC/tex/generic/autoaligne/autoaligne.sty + RELOC/tex/generic/autoaligne/autoaligne.tex +catalogue-contact-bugs https://framagit.org/unbonpetit/autoaligne/issues +catalogue-contact-repository https://framagit.org/unbonpetit/autoaligne/tree/master +catalogue-ctan /macros/generic/autoaligne +catalogue-date 2018-11-05 22:05:58 +0100 +catalogue-license lppl1.3c +catalogue-topics maths alignment alignment-supp +catalogue-version 1.4 + name autoarea category Package revision 15878 catalogue pictex-autoarea -shortdesc Automatic computation of bounding boxes with PiCTeX. +shortdesc Automatic computation of bounding boxes with PiCTeX relocated 1 longdesc This package makes PiCTeX recognize lines and arcs in longdesc determining the "bounding box" of a picture. (PiCTeX so far longdesc accounted for put commands only). The "bounding box" is longdesc essential for proper placement of a picture between running longdesc text and margins and for keeping the running text away. -runfiles size=3 - RELOC/tex/latex/autoarea/autoarea.sty +containersize 4168 +containerchecksum 81a6e2d2c241056cdb5ca7e54b33b523aa3bebe08d83e3418080659d316720a6bdcbb63d82c337175e6f0591a81ea322289333c5b8f125360c5ed4ae99843c4d +doccontainersize 36544 +doccontainerchecksum 8b3cb3def1945ae63b7d29614b868d07c64fba6ef50e266f92e3f1de1aa536084f5af5ff095bd467ef83d33701f780dcaed8a7d1c60dc68dcb5323444158b3b3 docfiles size=22 RELOC/doc/latex/autoarea/ANNOUNCE.txt RELOC/doc/latex/autoarea/README.aa @@ -10903,15 +21539,51 @@ docfiles size=22 RELOC/doc/latex/autoarea/autodemo/autodemo-.pdf RELOC/doc/latex/autoarea/autodemo/autodemo-.tex RELOC/doc/latex/autoarea/autodemo/autodemo.tex +runfiles size=3 + RELOC/tex/latex/autoarea/autoarea.sty +catalogue-also pictex +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html catalogue-ctan /graphics/pictex/addon/autoarea -catalogue-date 2012-07-19 14:34:01 +0200 +catalogue-date 2017-05-06 09:18:45 +0200 catalogue-license lppl +catalogue-topics graphics-in-tex catalogue-version 0.3a +name autobreak +category Package +revision 43337 +shortdesc Simple line breaking of long formulae +relocated 1 +longdesc This package implements a simple mechanism of line/page +longdesc breaking within the align environment of the amsmath package; +longdesc new line characters are considered as possible candidates for +longdesc the breaks and the package tries to put breaks at adequate +longdesc places. It is suitable for computer-generated long formulae +longdesc with many terms. +containersize 2624 +containerchecksum 91cc17692654270bba9536ea9186ffea2e7e9a6e9dbf0ffcd9821c8b3ec470ea3222af2a1df05d85e47d65fc1737cf2dbeba150641355bf826e5ad2da90db059 +doccontainersize 545668 +doccontainerchecksum 0d06f75e6f4fb254463ee2a075d106c14a06c5f7fc25b5047fbeec0e48ca9faf6e136f098312811329db1da5f9fffb6dfd45abe6eea9ecf682f4fe99f0384178 +docfiles size=135 + RELOC/doc/latex/autobreak/README.md details="README" language="en" + RELOC/doc/latex/autobreak/autobreak.pdf details="Package documentation" +srccontainersize 9432 +srccontainerchecksum 7120382c7974acccf1a49548ad8e654b945ae2ecfb858b37ca871fb7b5b054d8554c971a86c511d03e2ffa91e5cbc6d61cc743da51b0a9de705f74c0b9c2c7c1 +srcfiles size=10 + RELOC/source/latex/autobreak/autobreak.dtx + RELOC/source/latex/autobreak/autobreak.ins +runfiles size=3 + RELOC/tex/latex/autobreak/autobreak.sty +catalogue-ctan /macros/latex/contrib/autobreak +catalogue-date 2017-02-25 06:12:27 +0100 +catalogue-license lppl1.3 +catalogue-topics maths maths-theorem +catalogue-version 0.3 + name automata category Package revision 19717 -shortdesc Finite state machines, graphs and trees in MetaPost. +shortdesc Finite state machines, graphs and trees in MetaPost relocated 1 longdesc The package offers a collection of macros for MetaPost to make longdesc easier to draw finite-state machines, automata, labelled @@ -10919,98 +21591,290 @@ longdesc graphs, etc. The user defines nodes, which may be isolated or longdesc arranged into matrices or trees; edges connect pairs of nodes longdesc through arbitrary paths. Parameters, that specify the shapes of longdesc nodes and the styles of edges, may be adjusted. -runfiles size=7 - RELOC/metapost/automata/automata.mp +containersize 5320 +containerchecksum 09026f967084d5f1804a32166e854ac410a768f6b4654d9ea9bb69dd29acb8a3199919daa1fd6dd48963ea5d6454b9b9d8263939e5af81a8f07f66f08b5f4835 +doccontainersize 88216 +doccontainerchecksum 49c6515e979a87ce270d32b367c5800acffa4b638a8bed3e20f3e74387c2e7ee4ae0c2ea8b232e2ae57d0d0a730424d18911835581c0c274732f3d36f650693b docfiles size=26 - RELOC/doc/metapost/automata/README + RELOC/doc/metapost/automata/README details="Readme" RELOC/doc/metapost/automata/example.mp - RELOC/doc/metapost/automata/example.pdf + RELOC/doc/metapost/automata/example.pdf details="Example of use" RELOC/doc/metapost/automata/example.tex +runfiles size=7 + RELOC/metapost/automata/automata.mp catalogue-ctan /graphics/metapost/contrib/macros/automata -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics automata catalogue-version 0.3 name autonum category Package revision 36084 -shortdesc Automatic equation references. +shortdesc Automatic equation references relocated 1 longdesc The package arranges that equation numbers are applied only to longdesc those equations that are referenced. This operation is similar longdesc to the showonlyrefs option of the package mathtools. -runfiles size=3 - RELOC/tex/latex/autonum/autonum.sty +containersize 3460 +containerchecksum 3a663a53b4b4b53515978460dae1ac275cc4e3e6981b008c78b875e3e47af8abd950cb35f6e416ab02507e498bd75d6f4a775e2b429d668d02ebaa4bfdd03f25 +doccontainersize 400788 +doccontainerchecksum 2d0c515fac8afb219aaa1ee270b30bac09bcc310afcad71ff6ad2a3448187733718c03c304c09a0d631595d36043dc3eb0b6849fce0e4c3bf7f5d249b15c99c2 docfiles size=104 - RELOC/doc/latex/autonum/README - RELOC/doc/latex/autonum/autonum.pdf + RELOC/doc/latex/autonum/README details="Readme" + RELOC/doc/latex/autonum/autonum.pdf details="Package documentation" RELOC/doc/latex/autonum/test-autonum.pdf RELOC/doc/latex/autonum/test-autonum.tex RELOC/doc/latex/autonum/test-freeze.tex +srccontainersize 17168 +srccontainerchecksum 5c20017e3008ea726979ca70272923d9c62a5c36367fdcdf9d62e141f4822201e2cd36a9b4c58a6591568669daca65d17cbb78e5382c01ad4d624da7074f4010 srcfiles size=18 RELOC/source/latex/autonum/autonum.dtx RELOC/source/latex/autonum/autonum.ins +runfiles size=3 + RELOC/tex/latex/autonum/autonum.sty catalogue-ctan /macros/latex/contrib/autonum -catalogue-date 2015-01-18 10:26:22 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics maths label-ref catalogue-version 0.3.11 name autopdf category Package revision 32377 -shortdesc Conversion of graphics to pdfLaTeX-compatible formats. +shortdesc Conversion of graphics to pdfLaTeX-compatible formats relocated 1 longdesc The package facilitates the on-the-fly conversion of various longdesc graphics formats to formats supported by pdfLaTeX (e.g. PDF). longdesc It uses a range of external programs, and therefore requires longdesc that the LaTeX run starts with write18 enabled. -runfiles size=5 - RELOC/tex/latex/autopdf/autopdf.sty +containersize 4936 +containerchecksum f855fbe477986356d34360876a4a6613638255e234ad0210cb035a1f3a9b9b827ea140654e2001aa29ac09d7b8addf8f872d34bdb4d1700ead2f6e6f083cb2a6 +doccontainersize 229084 +doccontainerchecksum d2c2ecf193f03f4f568d2304128e50f5cb5964a6c0a2ca8b739c59b9d3e80637134b5ca91e1b5c1971db11eb54a086b3eb888b6984050dbffa22a166c6757e39 docfiles size=57 RELOC/doc/latex/autopdf/README.txt - RELOC/doc/latex/autopdf/autopdf.pdf + RELOC/doc/latex/autopdf/autopdf.pdf details="Package documentation" +srccontainersize 8256 +srccontainerchecksum fdec2bf2079746f67f3ffb790eb2e10a7dc884fbf68b2c1a6ec9c67ad0ed411d9ff87baa89fc11dfbf9172bfcd81b411d8aa223c209def4fda6c91a4a9d32ed6 srcfiles size=8 RELOC/source/latex/autopdf/autopdf.dtx +runfiles size=5 + RELOC/tex/latex/autopdf/autopdf.sty +catalogue-also epstopdf auto-pst-pdf catalogue-ctan /macros/latex/contrib/autopdf -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl1.2 +catalogue-topics graphics-epspdf callback catalogue-version 1.1 -name auto-pst-pdf -category Package -revision 23723 -shortdesc Wrapper for pst-pdf (with some psfrag features). -relocated 1 -longdesc The package uses --shell-escape to execute pst-pdf when -longdesc necessary. This makes it especially easy to integrate into the -longdesc workflow of an editor with just "LaTeX" and "pdfLaTeX" buttons. -longdesc Wrappers are provided for various psfrag-related features so -longdesc that Matlab figures via laprint, Mathematica figures via -longdesc MathPSfrag, and regular psfrag figures can all be input -longdesc consistently and easily. -runfiles size=2 - RELOC/tex/latex/auto-pst-pdf/auto-pst-pdf.sty -docfiles size=102 - RELOC/doc/latex/auto-pst-pdf/README - RELOC/doc/latex/auto-pst-pdf/auto-pst-pdf-DE.pdf - RELOC/doc/latex/auto-pst-pdf/auto-pst-pdf-DE.tex - RELOC/doc/latex/auto-pst-pdf/auto-pst-pdf.pdf - RELOC/doc/latex/auto-pst-pdf/example-psfrag.tex - RELOC/doc/latex/auto-pst-pdf/example.eps - RELOC/doc/latex/auto-pst-pdf/example.tex -srcfiles size=7 - RELOC/source/latex/auto-pst-pdf/auto-pst-pdf.dtx - RELOC/source/latex/auto-pst-pdf/auto-pst-pdf.ins -catalogue-ctan /macros/latex/contrib/auto-pst-pdf -catalogue-date 2013-11-21 20:02:41 +0100 -catalogue-license lppl -catalogue-version 0.6 +name autosp +category Package +revision 50602 +shortdesc A Preprocessor that generates note-spacing commands for MusiXTeX scores +longdesc This program simplifies the creation of MusiXTeX scores by +longdesc converting (non-standard) commands of the form \anotes ... \en +longdesc into one or more conventional note-spacing commands, as +longdesc determined by the note values themselves, with \sk spacing +longdesc commands inserted as necessary. The coding for an entire +longdesc measure can be entered one part at a time, without concern for +longdesc note-spacing changes within the part or spacing requirements of +longdesc other parts. For example, \anotes\qa J\qa K&\ca l\qa m\ca n\en +longdesc generates \Notes\qa J\sk\qa K\sk&\ca l\qa m\sk\ca n\en . +depend autosp.ARCH +containersize 720 +containerchecksum 935177a530bdeb0b5aad6c3b8a20b48d4ed99e5202a33d7625ff3a3816c85123bdba71e74ed240b3baff5e7f3130e0c74aeea9f8813b4ce0ea2e575d9c056660 +doccontainersize 276284 +doccontainerchecksum 4294deb8baced1bfda951bd924aff17afd59eec309889ff87a1d4504b97f5d4f25dc704471600d0636d2846a4334506831e4638e753bb85922d4cc9108e14f94 +docfiles size=106 + texmf-dist/doc/generic/autosp/README details="Readme" + texmf-dist/doc/generic/autosp/barsant2.aspc + texmf-dist/doc/generic/autosp/barsant2.pdf + texmf-dist/doc/generic/autosp/geminiani.aspc + texmf-dist/doc/generic/autosp/geminiani.pdf + texmf-dist/doc/generic/autosp/kinder2.aspc + texmf-dist/doc/generic/autosp/kinder2.pdf + texmf-dist/doc/generic/autosp/quod2.aspc + texmf-dist/doc/generic/autosp/quod2.pdf + texmf-dist/doc/generic/autosp/quod2A.aspc + texmf-dist/doc/generic/autosp/quod2A.pdf + texmf-dist/doc/generic/autosp/rebar.1 + texmf-dist/doc/generic/autosp/rebar.pdf + texmf-dist/doc/man/man1/autosp.1 + texmf-dist/doc/man/man1/autosp.man1.pdf + texmf-dist/doc/man/man1/tex2aspc.1 + texmf-dist/doc/man/man1/tex2aspc.man1.pdf +catalogue-contact-support https://tug.org/mailman/listinfo/tex-music +catalogue-ctan /support/autosp +catalogue-date 2019-01-08 23:18:53 +0100 +catalogue-license gpl2+ +catalogue-topics music + +name autosp.aarch64-linux +category Package +revision 50150 +shortdesc aarch64-linux files of autosp +containersize 19624 +containerchecksum c711a312d161de11540814843efd149b45d1155722d0cada4dbe0b7674f11e330666a248ee1e47f696d099c7c01f29111a164e7c431bb30bcafc085248920f14 +binfiles arch=aarch64-linux size=16 + bin/aarch64-linux/autosp + bin/aarch64-linux/tex2aspc + +name autosp.amd64-freebsd +category Package +revision 50445 +shortdesc amd64-freebsd files of autosp +containersize 19960 +containerchecksum 44f2ca47905c9e84c7a8a3dab6d0b4d9fe3f49030243ae2516834c7b91aab24c2564dbbc0ebab9210dc10c1c5b7ea1ebd8c73bacfcbc2af4d8004df415cdfb28 +binfiles arch=amd64-freebsd size=15 + bin/amd64-freebsd/autosp + bin/amd64-freebsd/tex2aspc + +name autosp.amd64-netbsd +category Package +revision 50171 +shortdesc amd64-netbsd files of autosp +containersize 17388 +containerchecksum 740d8a8fa86f4deca7e6f2d957ec33ed6cdde47974e5587ac5c22c8e24864749014f2703168ca82296f6728c81f71c47f130d5a554674767532fe6064ae1ba36 +binfiles arch=amd64-netbsd size=16 + bin/amd64-netbsd/autosp + bin/amd64-netbsd/tex2aspc + +name autosp.armhf-linux +category Package +revision 50150 +shortdesc armhf-linux files of autosp +containersize 17576 +containerchecksum aa95740e056cdd7d1e0cdebfa17673d02488d5367615f1fe55bbed085a16a00b8ecdf195e708eaaba86ed895276e75b3068eeaf293a7700e8c9aa96dd7398ef1 +binfiles arch=armhf-linux size=13 + bin/armhf-linux/autosp + bin/armhf-linux/tex2aspc + +name autosp.i386-cygwin +category Package +revision 50455 +shortdesc i386-cygwin files of autosp +containersize 17664 +containerchecksum a0f1c62c935c48d2deab3d2d15753b45c8bf6b2828f78f6ba036633ba86cc0ef085c9a4ec75c7ad176334c9332e7cedf861325b2aec625e061797962638e292e +binfiles arch=i386-cygwin size=15 + bin/i386-cygwin/autosp.exe + bin/i386-cygwin/tex2aspc.exe + +name autosp.i386-freebsd +category Package +revision 50473 +shortdesc i386-freebsd files of autosp +containersize 17232 +containerchecksum d07814a659e7e6c6b4af7313107fefca811e4607c1fc6d1e96be54985607e8b538ddea79ea61cba5b054001d9ff0e77381c6e405f4fca3babd20bce7391adb45 +binfiles arch=i386-freebsd size=13 + bin/i386-freebsd/autosp + bin/i386-freebsd/tex2aspc + +name autosp.i386-linux +category Package +revision 50281 +shortdesc i386-linux files of autosp +containersize 19428 +containerchecksum 01be22dbf0c6dead926e8fc3260c4f3f0eb6e163e21e4de80fea0010669926a28d6617421fd8ee51dda2f2b25f304692fdf1bd374acf6d5900b33531e60c0430 +binfiles arch=i386-linux size=15 + bin/i386-linux/autosp + bin/i386-linux/tex2aspc + +name autosp.i386-netbsd +category Package +revision 50171 +shortdesc i386-netbsd files of autosp +containersize 15812 +containerchecksum 0cfe912bcd030e71c2db6fb49ee85f4e1bb5fddef314db56eecf04acb2c7ec8ec4bbd749ad64db50a4384a68fa397a78b9bff3471ab009e84301f324fc2349be +binfiles arch=i386-netbsd size=15 + bin/i386-netbsd/autosp + bin/i386-netbsd/tex2aspc + +name autosp.i386-solaris +category Package +revision 50150 +shortdesc i386-solaris files of autosp +containersize 19616 +containerchecksum cd4964d53937f63bebf72b556963e99628fc84ad84c328a2f3e5e4fc14da47ae5bd8ac442ae954b382c1736205703da5a8b34432a0b5dc3f7c9f7d0c6383c8c7 +binfiles arch=i386-solaris size=13 + bin/i386-solaris/autosp + bin/i386-solaris/tex2aspc + +name autosp.win32 +category Package +revision 50155 +shortdesc win32 files of autosp +containersize 19584 +containerchecksum 25a55f89cf1655440e06f87465ae36d7d72077ef04ed85b86315de8bdb51b280e0bd4c3c542dc644feed9c10bd333e91c239fd2d28cf23314e76ab1af86ed241 +binfiles arch=win32 size=13 + bin/win32/autosp.exe + bin/win32/tex2aspc.exe + +name autosp.x86_64-cygwin +category Package +revision 50889 +shortdesc x86_64-cygwin files of autosp +containersize 20052 +containerchecksum a689264a357c9b0fb73e7a194389c5992b5fb44170d2a6d744145e8be358ac2e36e8142149b79bdbe3914178aaac8607d616bf86d0166ce2780d2643e9900061 +binfiles arch=x86_64-cygwin size=15 + bin/x86_64-cygwin/autosp.exe + bin/x86_64-cygwin/tex2aspc.exe + +name autosp.x86_64-darwin +category Package +revision 50150 +shortdesc x86_64-darwin files of autosp +containersize 20044 +containerchecksum 626c8d998fb687065e614ffcdb0c463607201c1f2876b3e1c620207980c48aa5606214a1ef7eda1f2797c2f085f2905380841cfd478aa7ba09f4dc62d35055f7 +binfiles arch=x86_64-darwin size=15 + bin/x86_64-darwin/autosp + bin/x86_64-darwin/tex2aspc + +name autosp.x86_64-darwinlegacy +category Package +revision 50282 +shortdesc x86_64-darwinlegacy files of autosp +containersize 19116 +containerchecksum 2ece0f34ff20b2fa51745bb8e27e22211fd19a0f2f3526ad9660f40e9e336b0f5be4c10b72a77939f9629a5d4303051599800a89054ebd3687c415328c1817bd +binfiles arch=x86_64-darwinlegacy size=15 + bin/x86_64-darwinlegacy/autosp + bin/x86_64-darwinlegacy/tex2aspc + +name autosp.x86_64-linux +category Package +revision 50281 +shortdesc x86_64-linux files of autosp +containersize 19312 +containerchecksum a4cdc96d4d6dce7e129e387fe65121671408da9f455bc121af5254dbb869b9f37f6e77a95d66a4b16bd937407f4f4687c37fbacb4b9e19883bd8a0a24f1bac10 +binfiles arch=x86_64-linux size=13 + bin/x86_64-linux/autosp + bin/x86_64-linux/tex2aspc + +name autosp.x86_64-linuxmusl +category Package +revision 50176 +shortdesc x86_64-linuxmusl files of autosp +containersize 20632 +containerchecksum 3f26887a5bd92681e0c2e7ab2d5c96dadc27b6a1f0f3f9d5c82f6cac443ac8a8c10f8dec3c84d7ecf3ff7a083d030030345477467e1de58ce99a7e115e0a76af +binfiles arch=x86_64-linuxmusl size=15 + bin/x86_64-linuxmusl/autosp + bin/x86_64-linuxmusl/tex2aspc + +name autosp.x86_64-solaris +category Package +revision 50150 +shortdesc x86_64-solaris files of autosp +containersize 20944 +containerchecksum fd05666a0e81ad511f301dfe20d2994fde6c4a9ee8649d47d43369288cc92f181cc098f6f4ac2b3fc1e004f27fd826af2a2175b7f294e5d97daa746f24fca044 +binfiles arch=x86_64-solaris size=15 + bin/x86_64-solaris/autosp + bin/x86_64-solaris/tex2aspc name avantgar category Package revision 31835 catalogue urw-base35 -shortdesc URW "Base 35" font pack for LaTeX. +shortdesc URW "Base 35" font pack for LaTeX relocated 1 longdesc A set of fonts for use as "drop-in" replacements for Adobe's longdesc basic set, comprising: Century Schoolbook (substituting for @@ -11023,6 +21887,8 @@ longdesc Chancery L Medium Italic (substituting for Adobe's Zapf longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). execute addMap uag.map +containersize 241424 +containerchecksum cf5f4701305bcfe2dcb2c92d43fbf2d0ab3b027b2c9b772926216094532e935cec234866f43135e7e050068679d0b1de5a11833696fd103ddae949458cd03044 runfiles size=392 RELOC/dvips/avantgar/config.uag RELOC/fonts/afm/adobe/avantgar/pagd8a.afm @@ -11186,31 +22052,29 @@ runfiles size=392 RELOC/tex/latex/avantgar/ot1uag.fd RELOC/tex/latex/avantgar/t1uag.fd RELOC/tex/latex/avantgar/ts1uag.fd +catalogue-also tex-gyre catalogue-ctan /fonts/urw/base35 -catalogue-date 2014-06-07 20:47:53 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics font font-type1 font-collection name avremu category Package revision 35373 -shortdesc An 8-Bit Microcontroller Simulator written in LaTeX. +shortdesc An 8-Bit Microcontroller Simulator written in LaTeX relocated 1 longdesc A fully working package to simulate a Microprocessor in pure longdesc LaTeX. The simulator is able to calculate complex pictures, longdesc like Mandelbrot sets. -runfiles size=27 - RELOC/tex/latex/avremu/avr.binary.tex - RELOC/tex/latex/avremu/avr.bitops.tex - RELOC/tex/latex/avremu/avr.draw.tex - RELOC/tex/latex/avremu/avr.instr.tex - RELOC/tex/latex/avremu/avr.io.tex - RELOC/tex/latex/avremu/avr.memory.tex - RELOC/tex/latex/avremu/avr.numbers.tex - RELOC/tex/latex/avremu/avr.testsuite.tex - RELOC/tex/latex/avremu/avremu.sty +containersize 12992 +containerchecksum 2541e80c0dd798675164cace381730c75268d5385883163b67230d49022f16c9ec72a77d602e8b5094db31b1d3aef2f0f71da91ed2f7eb7fe1039117f7488cf3 +doccontainersize 147960 +doccontainerchecksum 12c97e23dc853a971b27258a7666753d019620e832a06b10a49a26f0f30d7c6fde83c0e328e1579b62376f2e9cd10b0b3950fd6c4ca89041a988fedd4c604acb docfiles size=37 - RELOC/doc/latex/avremu/README - RELOC/doc/latex/avremu/avremu.pdf + RELOC/doc/latex/avremu/README details="Readme" + RELOC/doc/latex/avremu/avremu.pdf details="Package documentation" +srccontainersize 22324 +srccontainerchecksum 1d6a7f16cacd937490ae5e7416f43f4f9eafbf053f6e35d498a26b8d4092ffe79740a12d96503ee5636c4d1d8b3bd02653b4839b957cb91cca672914bbe98899 srcfiles size=25 RELOC/source/latex/avremu/avremu.tex RELOC/source/latex/avremu/imgs/mandelbrot-128x128.png @@ -11231,34 +22095,996 @@ srcfiles size=25 RELOC/source/latex/avremu/test-suite/string.c RELOC/source/latex/avremu/test-suite/sum-rec.c RELOC/source/latex/avremu/test-suite/test-suite +runfiles size=27 + RELOC/tex/latex/avremu/avr.binary.tex + RELOC/tex/latex/avremu/avr.bitops.tex + RELOC/tex/latex/avremu/avr.draw.tex + RELOC/tex/latex/avremu/avr.instr.tex + RELOC/tex/latex/avremu/avr.io.tex + RELOC/tex/latex/avremu/avr.memory.tex + RELOC/tex/latex/avremu/avr.numbers.tex + RELOC/tex/latex/avremu/avr.testsuite.tex + RELOC/tex/latex/avremu/avremu.sty +catalogue-contact-repository https://gitlab.brokenpipe.de/stettberger/avremu catalogue-ctan /macros/latex/contrib/avremu -catalogue-date 2014-10-26 09:12:08 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 +catalogue-topics emulation catalogue-version 0.1 +name awesomebox +category Package +revision 50757 +shortdesc Draw admonition blocks in your documents, illustrated with FontAwesome icons +relocated 1 +longdesc Awesome Boxes is all about drawing admonition blocks around +longdesc text to inform or alert readers about something particular. The +longdesc specific aim of this package is to use FontAwesome icons to +longdesc ease the illustration of these blocks. The package depends on +longdesc fontawesome5, xcolor, array and xparse. +containersize 1900 +containerchecksum abbee43bbb822a7636a6c57734b1db0535572e17e77802bdca467dbd0a165316d815b1db89e7f4c52faba068bdd5903d8e2626abbdd652546d539cbdb8811cce +doccontainersize 53872 +doccontainerchecksum 120864d8643afff21650b06bf503385aca0d48e783fe7f8b8629834f195859d3c00c58cdbfd26db54cf972c3a7acf271d9f6208a48821f402568266c8adc9b63 +docfiles size=19 + RELOC/doc/latex/awesomebox/LICENSE + RELOC/doc/latex/awesomebox/README.md details="Readme" + RELOC/doc/latex/awesomebox/awesomebox.pdf details="Package documentation" + RELOC/doc/latex/awesomebox/awesomebox.tex +runfiles size=2 + RELOC/tex/latex/awesomebox/awesomebox.sty +catalogue-contact-home https://git.deparis.io/latex-awesomebox/about/ +catalogue-contact-repository https://git.deparis.io/latex-awesomebox/ +catalogue-ctan /graphics/awesomebox +catalogue-date 2019-04-04 10:52:14 +0200 +catalogue-license other-free +catalogue-topics boxing +catalogue-version 0.5 + +name axessibility +category Package +revision 49642 +shortdesc Access to formulas in PDF files by assistive technologies +relocated 1 +longdesc PDF documents containing formulas generated by LaTeX are +longdesc usually not accessible by assistive technologies for visually +longdesc impaired people (i.e., by screen readers and braille displays). +longdesc The axessibility package manages this issue, allowing to create +longdesc a PDF document where the formulas are read by these assistive +longdesc technologies, since it automatically generates hidden comments +longdesc in the PDF document (by means of the /ActualText attribute) in +longdesc correspondence to each formula. +containersize 2000 +containerchecksum c9292be5e6c1d580a738131fcf9a2094085380692c0ae22f0600722a3278f2ab05b386bb18ed997caaff2f56d273a3d986d4a0421939de78d0df355040769149 +doccontainersize 180824 +doccontainerchecksum 4cd3864b110679228fdd9ad31a51b7ef3d7bf6a2e4ebdce6b0a179b01fbe1fc43fc582ae14ad0911a0125b8d430dd15c1374dd1c6535fd8869cdc6de6e8007af +docfiles size=74 + RELOC/doc/latex/axessibility/README details="Readme" + RELOC/doc/latex/axessibility/axessibility.pdf details="Package documentation" + RELOC/doc/latex/axessibility/axessibilityExampleGoldenMean.tex +srccontainersize 5756 +srccontainerchecksum 71164bed4e7273920a3e4a067ad38ae9d8a9d65f889076d34b0cd099451e83d730cf2c2d78e5eed3e6cea889635c8efc8a5b74312ffd0b7d1a430eb2a1e5627c +srcfiles size=6 + RELOC/source/latex/axessibility/axessibility.dtx + RELOC/source/latex/axessibility/axessibility.ins +runfiles size=2 + RELOC/tex/latex/axessibility/axessibility.sty +catalogue-also accsupp +catalogue-ctan /macros/latex/contrib/axessibility +catalogue-date 2019-01-08 08:51:56 +0100 +catalogue-license cc-by-nc-4 +catalogue-topics accessible +catalogue-version 2.0 + +name axodraw2 +category Package +revision 50602 +shortdesc Feynman diagrams in a LaTeX document +longdesc This package defines macros for drawing Feynman graphs in LaTeX +longdesc documents. It is an important update of the axodraw package, +longdesc but since it is not completely backwards compatible, we have +longdesc given the style file a changed name. Many new features have +longdesc been added, with new types of line, and much more flexibility +longdesc in their properties. In addition, it is now possible to use +longdesc axodraw2 with pdfLaTeX, as well as with the LaTeX-dvips method. +longdesc However with pdfLaTeX (and also LuaLaTeX and XeLaTeX), an +longdesc external program, axohelp, is used to perform the geometrical +longdesc calculations needed for the pdf code inserted in the output +longdesc file. The processing involves a run of pdfLaTeX, a run of +longdesc axohelp, and then another run of pdfLaTeX. +depend axodraw2.ARCH +containersize 25588 +containerchecksum fbedd0c3df9707de542812844e958066be9ba6bd22de58105f9249780d4083d00438c97d92a9de4e79fa1ba1dc290870aa7c159c9d7750db68e34b0463a125c7 +doccontainersize 481188 +doccontainerchecksum 1a3aaf2768d6f7a0eaf6d76b77e6980b4ced669b32800860855166fa790d16ce11a1a9d7c29d8bfdf0d7202f11683ecd964be9f2f6e4eb8a9f3319c1a955158d +docfiles size=167 + texmf-dist/doc/latex/axodraw2/AUTHORS + texmf-dist/doc/latex/axodraw2/COPYING + texmf-dist/doc/latex/axodraw2/ChangeLog + texmf-dist/doc/latex/axodraw2/INSTALL + texmf-dist/doc/latex/axodraw2/README details="Readme" + texmf-dist/doc/latex/axodraw2/axodraw2-man.pdf details="Package documentation" + texmf-dist/doc/latex/axodraw2/axodraw2-man.tex + texmf-dist/doc/latex/axodraw2/example.tex + texmf-dist/doc/man/man1/axohelp.1 + texmf-dist/doc/man/man1/axohelp.man1.pdf +srccontainersize 33984 +srccontainerchecksum 1c242daf8d3f1848178031e016fc9588fee3eb628f0641acc2076aec4e2e01aaf62b0dbdaeda682d7a583bb28d56443af539fe86b58cb84c933b566e72a8bbad +srcfiles size=76 + texmf-dist/source/latex/axodraw2/Makefile.am + texmf-dist/source/latex/axodraw2/axohelp-big.test + texmf-dist/source/latex/axodraw2/axohelp.c + texmf-dist/source/latex/axodraw2/axohelp.test + texmf-dist/source/latex/axodraw2/configure.ac + texmf-dist/source/latex/axodraw2/test-big.ax1 + texmf-dist/source/latex/axodraw2/test-big.ax2-std + texmf-dist/source/latex/axodraw2/test.ax1 + texmf-dist/source/latex/axodraw2/test.ax2-std +runfiles size=34 + texmf-dist/tex/latex/axodraw2/axodraw2.sty +catalogue-ctan /graphics/axodraw2 +catalogue-date 2018-09-12 23:51:03 +0200 +catalogue-license gpl3 +catalogue-topics physics graphics-in-tex +catalogue-version 2.1.1a + +name axodraw2.aarch64-linux +category Package +revision 48789 +shortdesc aarch64-linux files of axodraw2 +containersize 19316 +containerchecksum ba6b48a6e45c166bca71c04e11cd53302ee182e06a986795b13909fcbad3ff814f4f7d8f328fdb25cb693c1fe5aa7f04d281d9c6a59a221f79cbd469ef9510e2 +binfiles arch=aarch64-linux size=14 + bin/aarch64-linux/axohelp + +name axodraw2.amd64-freebsd +category Package +revision 50445 +shortdesc amd64-freebsd files of axodraw2 +containersize 28024 +containerchecksum 8890dfa66dad20d7f3eda5f23bb819293b435aaf3302c6c6899e5a87c2b33a46ee2e601a7aeda209d1814b9431e9ff98b081077e12e94fcb391abeda580a8488 +binfiles arch=amd64-freebsd size=19 + bin/amd64-freebsd/axohelp + +name axodraw2.amd64-netbsd +category Package +revision 48698 +shortdesc amd64-netbsd files of axodraw2 +containersize 20540 +containerchecksum d47932bf4e58523c4e8ee74a0b7e46e491bc17282530fcaa0f9c7bcfcc5a0e22c7b7a775b8ecfb22c2431dd252347c25b91efd625fed3f6142050d4c4076f0f2 +binfiles arch=amd64-netbsd size=20 + bin/amd64-netbsd/axohelp + +name axodraw2.armhf-linux +category Package +revision 50150 +shortdesc armhf-linux files of axodraw2 +containersize 19080 +containerchecksum f6fa68038f6761f336bb0c125ae21594aed59418b1fd8a315cc6e80c6943075d68cd257d56d8e16305e666f2f0ad48d5c645fec676728a25fe01052eb7885dff +binfiles arch=armhf-linux size=12 + bin/armhf-linux/axohelp + +name axodraw2.i386-cygwin +category Package +revision 50455 +shortdesc i386-cygwin files of axodraw2 +containersize 21372 +containerchecksum a372b5296d7ed30611d116f599dd6bbe80c8be57383f96fab0b3c133644d31a799bec0be55ffd2ef6111187b187b8b41fc522baf6ad18062e70f90c391c32b2e +binfiles arch=i386-cygwin size=16 + bin/i386-cygwin/axohelp.exe + +name axodraw2.i386-freebsd +category Package +revision 50473 +shortdesc i386-freebsd files of axodraw2 +containersize 20296 +containerchecksum ac293ec8c6b9ab5e7cd66b2946b754a149e50a213c54afa6832a3b67269f3181db5ac4de8f7f65652669f2549fd8bf2a07b7f27dccb9dee576097ef3780d005f +binfiles arch=i386-freebsd size=17 + bin/i386-freebsd/axohelp + +name axodraw2.i386-linux +category Package +revision 50281 +shortdesc i386-linux files of axodraw2 +containersize 22680 +containerchecksum 9e28e112151153d3ea9da6f048fde217e1e1445f653bf00ba411289fc929d99687398042c58821627aeda8c0ade4db69670b0b758a56f766d145caa8f1a4831b +binfiles arch=i386-linux size=16 + bin/i386-linux/axohelp + +name axodraw2.i386-netbsd +category Package +revision 50171 +shortdesc i386-netbsd files of axodraw2 +containersize 16540 +containerchecksum c81fd1fdcab5282cebd26c6ee2feaa39429b7f3c0961839ba44fb3e522be887a53c08e57c19273a83ec108ee63d51130f141ff467ec6ce9c5a2a04bc46e2b81f +binfiles arch=i386-netbsd size=16 + bin/i386-netbsd/axohelp + +name axodraw2.i386-solaris +category Package +revision 46829 +shortdesc i386-solaris files of axodraw2 +containersize 20904 +containerchecksum efce54eac22c3b9c582a30d4090baeaddced3509ba2287c6007392ff2e06191af119d740484c4c071f979a66ef39a325816f1ed6cf91f1a602c4364fbf84a78b +binfiles arch=i386-solaris size=14 + bin/i386-solaris/axohelp + +name axodraw2.win32 +category Package +revision 50155 +shortdesc win32 files of axodraw2 +containersize 86708 +containerchecksum dc751a7c3fd4259f95b241b152ee59e31302fa0a9669d07d7ba3ab3d25ee06ac909bd94e5409c93c8f1dedcb8c15816faa52e15da4434a586f2771032a027f25 +binfiles arch=win32 size=50 + bin/win32/axohelp.exe + +name axodraw2.x86_64-cygwin +category Package +revision 50889 +shortdesc x86_64-cygwin files of axodraw2 +containersize 25248 +containerchecksum 11b89824fbc304acf67cbdc1135a121c38f3773ecd3f1efbd30d7d23c48ec8544949dc8c65af352e1a6e8c7fcc7b16497637470f0f22035c84b3215a94bef088 +binfiles arch=x86_64-cygwin size=17 + bin/x86_64-cygwin/axohelp.exe + +name axodraw2.x86_64-darwin +category Package +revision 50150 +shortdesc x86_64-darwin files of axodraw2 +containersize 25732 +containerchecksum 15f3ecc088de116ce81494c81083499a77269c266acccc837d1d7ee6c5b671785ab97a3139e1a51b059a5ceae614187d2215d8bb042cedbf277dc02cdbbdf05d +binfiles arch=x86_64-darwin size=18 + bin/x86_64-darwin/axohelp + +name axodraw2.x86_64-darwinlegacy +category Package +revision 50282 +shortdesc x86_64-darwinlegacy files of axodraw2 +containersize 22108 +containerchecksum f42c8295f3def1e59981bc7c214637ffebce951d987b102aac0452d6768b9aeaf2710b9e7c0dccaddae8e7744a717fdd9dd19009d883fa354cdd0ca20f83d274 +binfiles arch=x86_64-darwinlegacy size=15 + bin/x86_64-darwinlegacy/axohelp + +name axodraw2.x86_64-linux +category Package +revision 50281 +shortdesc x86_64-linux files of axodraw2 +containersize 23852 +containerchecksum 4b4af8a154bee6abd7248e854ed575a63781d06586d0261c89c371537510675eb080cbc9cd4f8e33097d1ac07777417943c27c398549ba43592c3da40bd7737e +binfiles arch=x86_64-linux size=16 + bin/x86_64-linux/axohelp + +name axodraw2.x86_64-linuxmusl +category Package +revision 47036 +shortdesc x86_64-linuxmusl files of axodraw2 +containersize 25284 +containerchecksum 5fac1a9fdf05a24ac274dda1965bc61f68a51356948149abede8607a68b0bdea7feb3ada6d3de2ec70df461542374558ee93ab7c1560ceb5a6d60d98971817bf +binfiles arch=x86_64-linuxmusl size=17 + bin/x86_64-linuxmusl/axohelp + +name axodraw2.x86_64-solaris +category Package +revision 46829 +shortdesc x86_64-solaris files of axodraw2 +containersize 26860 +containerchecksum f92e3dd187ff0646fbefccfdb8a11657c00e43b56042c2adddddad67d7d90f40cb47a575773e7a961d61fdec4bc40611245629ac92a80040d4d5454c55f6c9d0 +binfiles arch=x86_64-solaris size=18 + bin/x86_64-solaris/axohelp + name b1encoding category Package revision 21271 -shortdesc LaTeX encoding tools for Bookhands fonts. +shortdesc LaTeX encoding tools for Bookhands fonts relocated 1 longdesc The package characterises and defines the author's B1 encoding longdesc for use with LaTeX when typesetting things using his Bookhands longdesc fonts. -runfiles size=7 - RELOC/fonts/enc/dvips/b1encoding/TeXB1.enc - RELOC/tex/latex/b1encoding/b1cmr.fd - RELOC/tex/latex/b1encoding/b1enc.def +containersize 4520 +containerchecksum b33280f64e37f300c92f9bad4372c13dd34e3dbe5fe47f2dc9fe0e270f33eaf5bedf9485293a74a6e0eb87b65f44fb66a286fb279a3d2c390c463e6aecfacb57 +doccontainersize 142812 +doccontainerchecksum 4bfac8bf2a00dc61a007c10654cb7fe539c111170127934cd3a64ecea9ceed3fd04ac249cbd645d89400bef6f4a3527d1db04baa88eab88eceee2edd48e64393 docfiles size=45 - RELOC/doc/latex/b1encoding/README - RELOC/doc/latex/b1encoding/b1encoding.pdf + RELOC/doc/latex/b1encoding/README details="Readme" + RELOC/doc/latex/b1encoding/b1encoding.pdf details="Package documentation" +srccontainersize 8164 +srccontainerchecksum 7368dec012e7dd9fd948856aa0b901be48a5800dec417a1511510e184e7543ae9d76acf46a12ea956b1b27367b41309923ce5ed3bdb320399572f5dde737543c srcfiles size=8 RELOC/source/latex/b1encoding/b1encoding.dtx RELOC/source/latex/b1encoding/b1encoding.ins +runfiles size=7 + RELOC/fonts/enc/dvips/b1encoding/TeXB1.enc + RELOC/tex/latex/b1encoding/b1cmr.fd + RELOC/tex/latex/b1encoding/b1enc.def catalogue-ctan /macros/latex/contrib/b1encoding -catalogue-date 2012-05-17 15:24:13 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics fontenc catalogue-version 1.0 +name babel +category Package +revision 50977 +shortdesc Multilingual support for Plain TeX or LaTeX +relocated 1 +longdesc This package manages culturally-determined typographical (and +longdesc other) rules for a wide range of languages. A document may +longdesc select a single language to be supported, or it may select +longdesc several, in which case the document may switch from one +longdesc language to another in a variety of ways. Babel uses +longdesc contributed configuration files that provide the detail of what +longdesc has to be done for each language. Included is also a set of ini +longdesc files for about 200 languages. Many language styles work with +longdesc pdfLaTeX, as well as with XeLaTeX and LuaLaTeX, out of the box. +longdesc A few even work with plain formats. +containersize 146812 +containerchecksum fa47183bcb3d05024fa28e4d6581c42b0be245af122b7320e8157b847d524717ee8604948ea1ac38039318b6a4eb90ffab183cc5be135aef21894a72488122d0 +doccontainersize 696336 +doccontainerchecksum 9589f48f6dd443c0fb87f476e661b761cd7b128e12750e33d7a724c07529af003ac4b20ba2945a29c08b5b521a6254e448153cf8c66e4f72f6395438afbded9b +docfiles size=174 + RELOC/doc/latex/babel/README.md details="Readme" + RELOC/doc/latex/babel/babel.pdf details="Package documentation" +srccontainersize 600328 +srccontainerchecksum 5768726ad5422c88bd4862510771a2f05c5b00e4ff3c16110b821c24642c4dc49ae719278640aa62e2970344b4f94ed61a13d201040beb6f64933ad93daf60db +srcfiles size=334 + RELOC/source/latex/babel/babel.dtx + RELOC/source/latex/babel/babel.ins + RELOC/source/latex/babel/bbcompat.dtx + RELOC/source/latex/babel/bbidxglo.dtx + RELOC/source/latex/babel/locale.zip +runfiles size=829 + RELOC/makeindex/babel/bbglo.ist + RELOC/makeindex/babel/bbind.ist + RELOC/tex/generic/babel/UKenglish.sty + RELOC/tex/generic/babel/USenglish.sty + RELOC/tex/generic/babel/afrikaans.sty + RELOC/tex/generic/babel/albanian.sty + RELOC/tex/generic/babel/american.sty + RELOC/tex/generic/babel/austrian.sty + RELOC/tex/generic/babel/babel-bidi-basic-r.lua + RELOC/tex/generic/babel/babel-bidi-basic.lua + RELOC/tex/generic/babel/babel-data-bidi.lua + RELOC/tex/generic/babel/babel-data-cjk.lua + RELOC/tex/generic/babel/babel.def + RELOC/tex/generic/babel/babel.sty + RELOC/tex/generic/babel/bahasa.sty + RELOC/tex/generic/babel/bahasam.sty + RELOC/tex/generic/babel/basque.sty + RELOC/tex/generic/babel/blplain.tex + RELOC/tex/generic/babel/bplain.tex + RELOC/tex/generic/babel/breton.sty + RELOC/tex/generic/babel/british.sty + RELOC/tex/generic/babel/bulgarian.sty + RELOC/tex/generic/babel/catalan.sty + RELOC/tex/generic/babel/croatian.sty + RELOC/tex/generic/babel/czech.sty + RELOC/tex/generic/babel/danish.sty + RELOC/tex/generic/babel/dutch.sty + RELOC/tex/generic/babel/english.sty + RELOC/tex/generic/babel/esperanto.sty + RELOC/tex/generic/babel/estonian.sty + RELOC/tex/generic/babel/finnish.sty + RELOC/tex/generic/babel/francais.sty + RELOC/tex/generic/babel/galician.sty + RELOC/tex/generic/babel/germanb.sty + RELOC/tex/generic/babel/greek.sty + RELOC/tex/generic/babel/hebrew.sty + RELOC/tex/generic/babel/hyphen.cfg + RELOC/tex/generic/babel/icelandic.sty + RELOC/tex/generic/babel/interlingua.sty + RELOC/tex/generic/babel/irish.sty + RELOC/tex/generic/babel/italian.sty + RELOC/tex/generic/babel/latin.sty + RELOC/tex/generic/babel/locale/af/babel-af.ini + RELOC/tex/generic/babel/locale/af/babel-afrikaans.tex + RELOC/tex/generic/babel/locale/agq/babel-aghem.tex + RELOC/tex/generic/babel/locale/agq/babel-agq.ini + RELOC/tex/generic/babel/locale/ak/babel-ak.ini + RELOC/tex/generic/babel/locale/ak/babel-akan.tex + RELOC/tex/generic/babel/locale/am/babel-am.ini + RELOC/tex/generic/babel/locale/am/babel-amharic.tex + RELOC/tex/generic/babel/locale/ar/babel-ar-DZ.ini + RELOC/tex/generic/babel/locale/ar/babel-ar-MA.ini + RELOC/tex/generic/babel/locale/ar/babel-ar-SY.ini + RELOC/tex/generic/babel/locale/ar/babel-ar.ini + RELOC/tex/generic/babel/locale/ar/babel-arabic-algeria.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic-dz.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic-ma.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic-morocco.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic-sy.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic-syria.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic.tex + RELOC/tex/generic/babel/locale/as/babel-as.ini + RELOC/tex/generic/babel/locale/as/babel-assamese.tex + RELOC/tex/generic/babel/locale/asa/babel-asa.ini + RELOC/tex/generic/babel/locale/asa/babel-asu.tex + RELOC/tex/generic/babel/locale/ast/babel-ast.ini + RELOC/tex/generic/babel/locale/ast/babel-asturian.tex + RELOC/tex/generic/babel/locale/az/babel-az-Cyrl.ini + RELOC/tex/generic/babel/locale/az/babel-az-Latn.ini + RELOC/tex/generic/babel/locale/az/babel-az.ini + RELOC/tex/generic/babel/locale/az/babel-azerbaijani-cyrillic.tex + RELOC/tex/generic/babel/locale/az/babel-azerbaijani-cyrl.tex + RELOC/tex/generic/babel/locale/az/babel-azerbaijani-latin.tex + RELOC/tex/generic/babel/locale/az/babel-azerbaijani-latn.tex + RELOC/tex/generic/babel/locale/az/babel-azerbaijani.tex + RELOC/tex/generic/babel/locale/bas/babel-bas.ini + RELOC/tex/generic/babel/locale/bas/babel-basaa.tex + RELOC/tex/generic/babel/locale/be/babel-be.ini + RELOC/tex/generic/babel/locale/be/babel-belarusian.tex + RELOC/tex/generic/babel/locale/bem/babel-bem.ini + RELOC/tex/generic/babel/locale/bem/babel-bemba.tex + RELOC/tex/generic/babel/locale/bez/babel-bena.tex + RELOC/tex/generic/babel/locale/bez/babel-bez.ini + RELOC/tex/generic/babel/locale/bg/babel-bg.ini + RELOC/tex/generic/babel/locale/bg/babel-bulgarian.tex + RELOC/tex/generic/babel/locale/bm/babel-bambara.tex + RELOC/tex/generic/babel/locale/bm/babel-bm.ini + RELOC/tex/generic/babel/locale/bn/babel-bengali.tex + RELOC/tex/generic/babel/locale/bn/babel-bn.ini + RELOC/tex/generic/babel/locale/bo/babel-bo.ini + RELOC/tex/generic/babel/locale/bo/babel-tibetan.tex + RELOC/tex/generic/babel/locale/br/babel-br.ini + RELOC/tex/generic/babel/locale/br/babel-breton.tex + RELOC/tex/generic/babel/locale/brx/babel-bodo.tex + RELOC/tex/generic/babel/locale/brx/babel-brx.ini + RELOC/tex/generic/babel/locale/bs/babel-bosnian-cyrillic.tex + RELOC/tex/generic/babel/locale/bs/babel-bosnian-cyrl.tex + RELOC/tex/generic/babel/locale/bs/babel-bosnian-latin.tex + RELOC/tex/generic/babel/locale/bs/babel-bosnian-latn.tex + RELOC/tex/generic/babel/locale/bs/babel-bosnian.tex + RELOC/tex/generic/babel/locale/bs/babel-bs-Cyrl.ini + RELOC/tex/generic/babel/locale/bs/babel-bs-Latn.ini + RELOC/tex/generic/babel/locale/bs/babel-bs.ini + RELOC/tex/generic/babel/locale/ca/babel-ca.ini + RELOC/tex/generic/babel/locale/ca/babel-catalan.tex + RELOC/tex/generic/babel/locale/ce/babel-ce.ini + RELOC/tex/generic/babel/locale/ce/babel-chechen.tex + RELOC/tex/generic/babel/locale/cgg/babel-cgg.ini + RELOC/tex/generic/babel/locale/cgg/babel-chiga.tex + RELOC/tex/generic/babel/locale/chr/babel-cherokee.tex + RELOC/tex/generic/babel/locale/chr/babel-chr.ini + RELOC/tex/generic/babel/locale/ckb/babel-centralkurdish.tex + RELOC/tex/generic/babel/locale/ckb/babel-ckb.ini + RELOC/tex/generic/babel/locale/cs/babel-cs.ini + RELOC/tex/generic/babel/locale/cs/babel-czech.tex + RELOC/tex/generic/babel/locale/cy/babel-cy.ini + RELOC/tex/generic/babel/locale/cy/babel-welsh.tex + RELOC/tex/generic/babel/locale/da/babel-da.ini + RELOC/tex/generic/babel/locale/da/babel-danish.tex + RELOC/tex/generic/babel/locale/dav/babel-dav.ini + RELOC/tex/generic/babel/locale/dav/babel-taita.tex + RELOC/tex/generic/babel/locale/de/babel-austrian.tex + RELOC/tex/generic/babel/locale/de/babel-de-AT.ini + RELOC/tex/generic/babel/locale/de/babel-de-CH.ini + RELOC/tex/generic/babel/locale/de/babel-de.ini + RELOC/tex/generic/babel/locale/de/babel-german-at.tex + RELOC/tex/generic/babel/locale/de/babel-german-austria.tex + RELOC/tex/generic/babel/locale/de/babel-german-ch.tex + RELOC/tex/generic/babel/locale/de/babel-german-switzerland.tex + RELOC/tex/generic/babel/locale/de/babel-german.tex + RELOC/tex/generic/babel/locale/de/babel-nswissgerman.tex + RELOC/tex/generic/babel/locale/de/babel-swissgerman.tex + RELOC/tex/generic/babel/locale/dje/babel-dje.ini + RELOC/tex/generic/babel/locale/dje/babel-zarma.tex + RELOC/tex/generic/babel/locale/dsb/babel-dsb.ini + RELOC/tex/generic/babel/locale/dsb/babel-lowersorbian.tex + RELOC/tex/generic/babel/locale/dsb/babel-lsorbian.tex + RELOC/tex/generic/babel/locale/dua/babel-dua.ini + RELOC/tex/generic/babel/locale/dua/babel-duala.tex + RELOC/tex/generic/babel/locale/dyo/babel-dyo.ini + RELOC/tex/generic/babel/locale/dyo/babel-jolafonyi.tex + RELOC/tex/generic/babel/locale/dz/babel-dz.ini + RELOC/tex/generic/babel/locale/dz/babel-dzongkha.tex + RELOC/tex/generic/babel/locale/ebu/babel-ebu.ini + RELOC/tex/generic/babel/locale/ebu/babel-embu.tex + RELOC/tex/generic/babel/locale/ee/babel-ee.ini + RELOC/tex/generic/babel/locale/ee/babel-ewe.tex + RELOC/tex/generic/babel/locale/el/babel-el.ini + RELOC/tex/generic/babel/locale/el/babel-greek.tex + RELOC/tex/generic/babel/locale/en/babel-american.tex + RELOC/tex/generic/babel/locale/en/babel-australian.tex + RELOC/tex/generic/babel/locale/en/babel-british.tex + RELOC/tex/generic/babel/locale/en/babel-canadian.tex + RELOC/tex/generic/babel/locale/en/babel-en-AU.ini + RELOC/tex/generic/babel/locale/en/babel-en-CA.ini + RELOC/tex/generic/babel/locale/en/babel-en-GB.ini + RELOC/tex/generic/babel/locale/en/babel-en-NZ.ini + RELOC/tex/generic/babel/locale/en/babel-en-US.ini + RELOC/tex/generic/babel/locale/en/babel-en.ini + RELOC/tex/generic/babel/locale/en/babel-english-au.tex + RELOC/tex/generic/babel/locale/en/babel-english-australia.tex + RELOC/tex/generic/babel/locale/en/babel-english-ca.tex + RELOC/tex/generic/babel/locale/en/babel-english-canada.tex + RELOC/tex/generic/babel/locale/en/babel-english-gb.tex + RELOC/tex/generic/babel/locale/en/babel-english-newzealand.tex + RELOC/tex/generic/babel/locale/en/babel-english-nz.tex + RELOC/tex/generic/babel/locale/en/babel-english-unitedkingdom.tex + RELOC/tex/generic/babel/locale/en/babel-english-unitedstates.tex + RELOC/tex/generic/babel/locale/en/babel-english-us.tex + RELOC/tex/generic/babel/locale/en/babel-english.tex + RELOC/tex/generic/babel/locale/en/babel-newzealand.tex + RELOC/tex/generic/babel/locale/en/babel-ukenglish.tex + RELOC/tex/generic/babel/locale/en/babel-usenglish.tex + RELOC/tex/generic/babel/locale/eo/babel-eo.ini + RELOC/tex/generic/babel/locale/eo/babel-esperanto.tex + RELOC/tex/generic/babel/locale/es/babel-es-MX.ini + RELOC/tex/generic/babel/locale/es/babel-es.ini + RELOC/tex/generic/babel/locale/es/babel-mexican.tex + RELOC/tex/generic/babel/locale/es/babel-spanish-mexico.tex + RELOC/tex/generic/babel/locale/es/babel-spanish-mx.tex + RELOC/tex/generic/babel/locale/es/babel-spanish.tex + RELOC/tex/generic/babel/locale/et/babel-estonian.tex + RELOC/tex/generic/babel/locale/et/babel-et.ini + RELOC/tex/generic/babel/locale/eu/babel-basque.tex + RELOC/tex/generic/babel/locale/eu/babel-eu.ini + RELOC/tex/generic/babel/locale/ewo/babel-ewo.ini + RELOC/tex/generic/babel/locale/ewo/babel-ewondo.tex + RELOC/tex/generic/babel/locale/fa/babel-fa.ini + RELOC/tex/generic/babel/locale/fa/babel-persian.tex + RELOC/tex/generic/babel/locale/ff/babel-ff.ini + RELOC/tex/generic/babel/locale/ff/babel-fulah.tex + RELOC/tex/generic/babel/locale/fi/babel-fi.ini + RELOC/tex/generic/babel/locale/fi/babel-finnish.tex + RELOC/tex/generic/babel/locale/fil/babel-fil.ini + RELOC/tex/generic/babel/locale/fil/babel-filipino.tex + RELOC/tex/generic/babel/locale/fo/babel-faroese.tex + RELOC/tex/generic/babel/locale/fo/babel-fo.ini + RELOC/tex/generic/babel/locale/fr/babel-fr-BE.ini + RELOC/tex/generic/babel/locale/fr/babel-fr-CA.ini + RELOC/tex/generic/babel/locale/fr/babel-fr-CH.ini + RELOC/tex/generic/babel/locale/fr/babel-fr-LU.ini + RELOC/tex/generic/babel/locale/fr/babel-fr.ini + RELOC/tex/generic/babel/locale/fr/babel-french-be.tex + RELOC/tex/generic/babel/locale/fr/babel-french-belgium.tex + RELOC/tex/generic/babel/locale/fr/babel-french-ca.tex + RELOC/tex/generic/babel/locale/fr/babel-french-canada.tex + RELOC/tex/generic/babel/locale/fr/babel-french-ch.tex + RELOC/tex/generic/babel/locale/fr/babel-french-lu.tex + RELOC/tex/generic/babel/locale/fr/babel-french-luxembourg.tex + RELOC/tex/generic/babel/locale/fr/babel-french-switzerland.tex + RELOC/tex/generic/babel/locale/fr/babel-french.tex + RELOC/tex/generic/babel/locale/fur/babel-friulian.tex + RELOC/tex/generic/babel/locale/fur/babel-fur.ini + RELOC/tex/generic/babel/locale/fy/babel-fy.ini + RELOC/tex/generic/babel/locale/fy/babel-westernfrisian.tex + RELOC/tex/generic/babel/locale/ga/babel-ga.ini + RELOC/tex/generic/babel/locale/ga/babel-irish.tex + RELOC/tex/generic/babel/locale/gd/babel-gd.ini + RELOC/tex/generic/babel/locale/gd/babel-scottishgaelic.tex + RELOC/tex/generic/babel/locale/gl/babel-galician.tex + RELOC/tex/generic/babel/locale/gl/babel-gl.ini + RELOC/tex/generic/babel/locale/gsw/babel-gsw.ini + RELOC/tex/generic/babel/locale/gu/babel-gu.ini + RELOC/tex/generic/babel/locale/gu/babel-gujarati.tex + RELOC/tex/generic/babel/locale/guz/babel-gusii.tex + RELOC/tex/generic/babel/locale/guz/babel-guz.ini + RELOC/tex/generic/babel/locale/gv/babel-gv.ini + RELOC/tex/generic/babel/locale/gv/babel-manx.tex + RELOC/tex/generic/babel/locale/ha/babel-ha-GH.ini + RELOC/tex/generic/babel/locale/ha/babel-ha-NE.ini + RELOC/tex/generic/babel/locale/ha/babel-ha.ini + RELOC/tex/generic/babel/locale/ha/babel-hausa-gh.tex + RELOC/tex/generic/babel/locale/ha/babel-hausa-ghana.tex + RELOC/tex/generic/babel/locale/ha/babel-hausa-ne.tex + RELOC/tex/generic/babel/locale/ha/babel-hausa-niger.tex + RELOC/tex/generic/babel/locale/ha/babel-hausa.tex + RELOC/tex/generic/babel/locale/haw/babel-haw.ini + RELOC/tex/generic/babel/locale/haw/babel-hawaiian.tex + RELOC/tex/generic/babel/locale/he/babel-he.ini + RELOC/tex/generic/babel/locale/he/babel-hebrew.tex + RELOC/tex/generic/babel/locale/hi/babel-hi.ini + RELOC/tex/generic/babel/locale/hi/babel-hindi.tex + RELOC/tex/generic/babel/locale/hr/babel-croatian.tex + RELOC/tex/generic/babel/locale/hr/babel-hr.ini + RELOC/tex/generic/babel/locale/hsb/babel-hsb.ini + RELOC/tex/generic/babel/locale/hsb/babel-uppersorbian.tex + RELOC/tex/generic/babel/locale/hsb/babel-usorbian.tex + RELOC/tex/generic/babel/locale/hu/babel-hu.ini + RELOC/tex/generic/babel/locale/hu/babel-hungarian.tex + RELOC/tex/generic/babel/locale/hy/babel-armenian.tex + RELOC/tex/generic/babel/locale/hy/babel-hy.ini + RELOC/tex/generic/babel/locale/ia/babel-ia.ini + RELOC/tex/generic/babel/locale/ia/babel-interlingua.tex + RELOC/tex/generic/babel/locale/id/babel-id.ini + RELOC/tex/generic/babel/locale/id/babel-indonesian.tex + RELOC/tex/generic/babel/locale/ig/babel-ig.ini + RELOC/tex/generic/babel/locale/ig/babel-igbo.tex + RELOC/tex/generic/babel/locale/ii/babel-ii.ini + RELOC/tex/generic/babel/locale/ii/babel-sichuanyi.tex + RELOC/tex/generic/babel/locale/is/babel-icelandic.tex + RELOC/tex/generic/babel/locale/is/babel-is.ini + RELOC/tex/generic/babel/locale/it/babel-it.ini + RELOC/tex/generic/babel/locale/it/babel-italian.tex + RELOC/tex/generic/babel/locale/ja/babel-ja.ini + RELOC/tex/generic/babel/locale/ja/babel-japanese.tex + RELOC/tex/generic/babel/locale/jgo/babel-jgo.ini + RELOC/tex/generic/babel/locale/jgo/babel-ngomba.tex + RELOC/tex/generic/babel/locale/jmc/babel-jmc.ini + RELOC/tex/generic/babel/locale/jmc/babel-machame.tex + RELOC/tex/generic/babel/locale/ka/babel-georgian.tex + RELOC/tex/generic/babel/locale/ka/babel-ka.ini + RELOC/tex/generic/babel/locale/kab/babel-kab.ini + RELOC/tex/generic/babel/locale/kab/babel-kabyle.tex + RELOC/tex/generic/babel/locale/kam/babel-kam.ini + RELOC/tex/generic/babel/locale/kam/babel-kamba.tex + RELOC/tex/generic/babel/locale/kde/babel-kde.ini + RELOC/tex/generic/babel/locale/kde/babel-makonde.tex + RELOC/tex/generic/babel/locale/kea/babel-kabuverdianu.tex + RELOC/tex/generic/babel/locale/kea/babel-kea.ini + RELOC/tex/generic/babel/locale/khq/babel-khq.ini + RELOC/tex/generic/babel/locale/khq/babel-koyrachiini.tex + RELOC/tex/generic/babel/locale/ki/babel-ki.ini + RELOC/tex/generic/babel/locale/ki/babel-kikuyu.tex + RELOC/tex/generic/babel/locale/kk/babel-kazakh.tex + RELOC/tex/generic/babel/locale/kk/babel-kk.ini + RELOC/tex/generic/babel/locale/kkj/babel-kako.tex + RELOC/tex/generic/babel/locale/kkj/babel-kkj.ini + RELOC/tex/generic/babel/locale/kl/babel-kalaallisut.tex + RELOC/tex/generic/babel/locale/kl/babel-kl.ini + RELOC/tex/generic/babel/locale/kln/babel-kalenjin.tex + RELOC/tex/generic/babel/locale/kln/babel-kln.ini + RELOC/tex/generic/babel/locale/km/babel-khmer.tex + RELOC/tex/generic/babel/locale/km/babel-km.ini + RELOC/tex/generic/babel/locale/kn/babel-kannada.tex + RELOC/tex/generic/babel/locale/kn/babel-kn.ini + RELOC/tex/generic/babel/locale/ko/babel-ko.ini + RELOC/tex/generic/babel/locale/ko/babel-korean.tex + RELOC/tex/generic/babel/locale/kok/babel-kok.ini + RELOC/tex/generic/babel/locale/kok/babel-konkani.tex + RELOC/tex/generic/babel/locale/ks/babel-kashmiri.tex + RELOC/tex/generic/babel/locale/ks/babel-ks.ini + RELOC/tex/generic/babel/locale/ksb/babel-ksb.ini + RELOC/tex/generic/babel/locale/ksb/babel-shambala.tex + RELOC/tex/generic/babel/locale/ksf/babel-bafia.tex + RELOC/tex/generic/babel/locale/ksf/babel-ksf.ini + RELOC/tex/generic/babel/locale/ksh/babel-colognian.tex + RELOC/tex/generic/babel/locale/ksh/babel-ksh.ini + RELOC/tex/generic/babel/locale/kw/babel-cornish.tex + RELOC/tex/generic/babel/locale/kw/babel-kw.ini + RELOC/tex/generic/babel/locale/ky/babel-ky.ini + RELOC/tex/generic/babel/locale/ky/babel-kyrgyz.tex + RELOC/tex/generic/babel/locale/lag/babel-lag.ini + RELOC/tex/generic/babel/locale/lag/babel-langi.tex + RELOC/tex/generic/babel/locale/lb/babel-lb.ini + RELOC/tex/generic/babel/locale/lb/babel-luxembourgish.tex + RELOC/tex/generic/babel/locale/lg/babel-ganda.tex + RELOC/tex/generic/babel/locale/lg/babel-lg.ini + RELOC/tex/generic/babel/locale/lkt/babel-lakota.tex + RELOC/tex/generic/babel/locale/lkt/babel-lkt.ini + RELOC/tex/generic/babel/locale/ln/babel-lingala.tex + RELOC/tex/generic/babel/locale/ln/babel-ln.ini + RELOC/tex/generic/babel/locale/lo/babel-lao.tex + RELOC/tex/generic/babel/locale/lo/babel-lo.ini + RELOC/tex/generic/babel/locale/lrc/babel-lrc.ini + RELOC/tex/generic/babel/locale/lrc/babel-northernluri.tex + RELOC/tex/generic/babel/locale/lt/babel-lithuanian.tex + RELOC/tex/generic/babel/locale/lt/babel-lt.ini + RELOC/tex/generic/babel/locale/lu/babel-lu.ini + RELOC/tex/generic/babel/locale/lu/babel-lubakatanga.tex + RELOC/tex/generic/babel/locale/luo/babel-luo.ini + RELOC/tex/generic/babel/locale/luo/babel-luo.tex + RELOC/tex/generic/babel/locale/luy/babel-luy.ini + RELOC/tex/generic/babel/locale/luy/babel-luyia.tex + RELOC/tex/generic/babel/locale/lv/babel-latvian.tex + RELOC/tex/generic/babel/locale/lv/babel-lv.ini + RELOC/tex/generic/babel/locale/mas/babel-mas.ini + RELOC/tex/generic/babel/locale/mas/babel-masai.tex + RELOC/tex/generic/babel/locale/mer/babel-mer.ini + RELOC/tex/generic/babel/locale/mer/babel-meru.tex + RELOC/tex/generic/babel/locale/mfe/babel-mfe.ini + RELOC/tex/generic/babel/locale/mfe/babel-morisyen.tex + RELOC/tex/generic/babel/locale/mg/babel-malagasy.tex + RELOC/tex/generic/babel/locale/mg/babel-mg.ini + RELOC/tex/generic/babel/locale/mgh/babel-makhuwameetto.tex + RELOC/tex/generic/babel/locale/mgh/babel-mgh.ini + RELOC/tex/generic/babel/locale/mgo/babel-meta.tex + RELOC/tex/generic/babel/locale/mgo/babel-mgo.ini + RELOC/tex/generic/babel/locale/mk/babel-macedonian.tex + RELOC/tex/generic/babel/locale/mk/babel-mk.ini + RELOC/tex/generic/babel/locale/ml/babel-malayalam.tex + RELOC/tex/generic/babel/locale/ml/babel-ml.ini + RELOC/tex/generic/babel/locale/mn/babel-mn.ini + RELOC/tex/generic/babel/locale/mn/babel-mongolian.tex + RELOC/tex/generic/babel/locale/mr/babel-marathi.tex + RELOC/tex/generic/babel/locale/mr/babel-mr.ini + RELOC/tex/generic/babel/locale/ms/babel-malay-bn.tex + RELOC/tex/generic/babel/locale/ms/babel-malay-brunei.tex + RELOC/tex/generic/babel/locale/ms/babel-malay-sg.tex + RELOC/tex/generic/babel/locale/ms/babel-malay-singapore.tex + RELOC/tex/generic/babel/locale/ms/babel-malay.tex + RELOC/tex/generic/babel/locale/ms/babel-ms-BN.ini + RELOC/tex/generic/babel/locale/ms/babel-ms-SG.ini + RELOC/tex/generic/babel/locale/ms/babel-ms.ini + RELOC/tex/generic/babel/locale/mt/babel-maltese.tex + RELOC/tex/generic/babel/locale/mt/babel-mt.ini + RELOC/tex/generic/babel/locale/mua/babel-mua.ini + RELOC/tex/generic/babel/locale/mua/babel-mundang.tex + RELOC/tex/generic/babel/locale/my/babel-burmese.tex + RELOC/tex/generic/babel/locale/my/babel-my.ini + RELOC/tex/generic/babel/locale/mzn/babel-mazanderani.tex + RELOC/tex/generic/babel/locale/mzn/babel-mzn.ini + RELOC/tex/generic/babel/locale/naq/babel-nama.tex + RELOC/tex/generic/babel/locale/naq/babel-naq.ini + RELOC/tex/generic/babel/locale/nb/babel-nb.ini + RELOC/tex/generic/babel/locale/nb/babel-norsk.tex + RELOC/tex/generic/babel/locale/nb/babel-norwegianbokmal.tex + RELOC/tex/generic/babel/locale/nd/babel-nd.ini + RELOC/tex/generic/babel/locale/nd/babel-northndebele.tex + RELOC/tex/generic/babel/locale/ne/babel-ne.ini + RELOC/tex/generic/babel/locale/ne/babel-nepali.tex + RELOC/tex/generic/babel/locale/nl/babel-dutch.tex + RELOC/tex/generic/babel/locale/nl/babel-nl.ini + RELOC/tex/generic/babel/locale/nmg/babel-kwasio.tex + RELOC/tex/generic/babel/locale/nmg/babel-nmg.ini + RELOC/tex/generic/babel/locale/nn/babel-nn.ini + RELOC/tex/generic/babel/locale/nn/babel-norwegiannynorsk.tex + RELOC/tex/generic/babel/locale/nn/babel-nynorsk.tex + RELOC/tex/generic/babel/locale/nnh/babel-ngiemboon.tex + RELOC/tex/generic/babel/locale/nnh/babel-nnh.ini + RELOC/tex/generic/babel/locale/nus/babel-nuer.tex + RELOC/tex/generic/babel/locale/nus/babel-nus.ini + RELOC/tex/generic/babel/locale/nyn/babel-nyankole.tex + RELOC/tex/generic/babel/locale/nyn/babel-nyn.ini + RELOC/tex/generic/babel/locale/oc/babel-oc.ini + RELOC/tex/generic/babel/locale/oc/babel-occitan.tex + RELOC/tex/generic/babel/locale/om/babel-om.ini + RELOC/tex/generic/babel/locale/om/babel-oromo.tex + RELOC/tex/generic/babel/locale/or/babel-or.ini + RELOC/tex/generic/babel/locale/or/babel-oriya.tex + RELOC/tex/generic/babel/locale/os/babel-os.ini + RELOC/tex/generic/babel/locale/os/babel-ossetic.tex + RELOC/tex/generic/babel/locale/pa/babel-pa-Arab.ini + RELOC/tex/generic/babel/locale/pa/babel-pa-Guru.ini + RELOC/tex/generic/babel/locale/pa/babel-pa.ini + RELOC/tex/generic/babel/locale/pa/babel-punjabi-arab.tex + RELOC/tex/generic/babel/locale/pa/babel-punjabi-arabic.tex + RELOC/tex/generic/babel/locale/pa/babel-punjabi-gurmukhi.tex + RELOC/tex/generic/babel/locale/pa/babel-punjabi-guru.tex + RELOC/tex/generic/babel/locale/pa/babel-punjabi.tex + RELOC/tex/generic/babel/locale/pl/babel-pl.ini + RELOC/tex/generic/babel/locale/pl/babel-polish.tex + RELOC/tex/generic/babel/locale/pms/babel-piedmontese.tex + RELOC/tex/generic/babel/locale/pms/babel-pms.ini + RELOC/tex/generic/babel/locale/ps/babel-pashto.tex + RELOC/tex/generic/babel/locale/ps/babel-ps.ini + RELOC/tex/generic/babel/locale/pt/babel-brazilian.tex + RELOC/tex/generic/babel/locale/pt/babel-portuguese-br.tex + RELOC/tex/generic/babel/locale/pt/babel-portuguese-brazil.tex + RELOC/tex/generic/babel/locale/pt/babel-portuguese-portugal.tex + RELOC/tex/generic/babel/locale/pt/babel-portuguese-pt.tex + RELOC/tex/generic/babel/locale/pt/babel-portuguese.tex + RELOC/tex/generic/babel/locale/pt/babel-pt-BR.ini + RELOC/tex/generic/babel/locale/pt/babel-pt-PT.ini + RELOC/tex/generic/babel/locale/pt/babel-pt.ini + RELOC/tex/generic/babel/locale/qu/babel-qu.ini + RELOC/tex/generic/babel/locale/qu/babel-quechua.tex + RELOC/tex/generic/babel/locale/rm/babel-rm.ini + RELOC/tex/generic/babel/locale/rm/babel-romansh.tex + RELOC/tex/generic/babel/locale/rn/babel-rn.ini + RELOC/tex/generic/babel/locale/rn/babel-rundi.tex + RELOC/tex/generic/babel/locale/ro/babel-ro.ini + RELOC/tex/generic/babel/locale/ro/babel-romanian.tex + RELOC/tex/generic/babel/locale/rof/babel-rof.ini + RELOC/tex/generic/babel/locale/rof/babel-rombo.tex + RELOC/tex/generic/babel/locale/ru/babel-ru.ini + RELOC/tex/generic/babel/locale/ru/babel-russian.tex + RELOC/tex/generic/babel/locale/rw/babel-kinyarwanda.tex + RELOC/tex/generic/babel/locale/rw/babel-rw.ini + RELOC/tex/generic/babel/locale/rwk/babel-rwa.tex + RELOC/tex/generic/babel/locale/rwk/babel-rwk.ini + RELOC/tex/generic/babel/locale/sa/babel-sa-Beng.ini + RELOC/tex/generic/babel/locale/sa/babel-sa-Deva.ini + RELOC/tex/generic/babel/locale/sa/babel-sa-Gujr.ini + RELOC/tex/generic/babel/locale/sa/babel-sa-Knda.ini + RELOC/tex/generic/babel/locale/sa/babel-sa-Mlym.ini + RELOC/tex/generic/babel/locale/sa/babel-sa-Telu.ini + RELOC/tex/generic/babel/locale/sa/babel-sa.ini + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-beng.tex + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-bengali.tex + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-deva.tex + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-devanagari.tex + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-gujarati.tex + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-gujr.tex + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-kannada.tex + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-knda.tex + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-malayalam.tex + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-mlym.tex + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-telu.tex + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-telugu.tex + RELOC/tex/generic/babel/locale/sa/babel-sanskrit.tex + RELOC/tex/generic/babel/locale/sah/babel-sah.ini + RELOC/tex/generic/babel/locale/sah/babel-sakha.tex + RELOC/tex/generic/babel/locale/saq/babel-samburu.tex + RELOC/tex/generic/babel/locale/saq/babel-saq.ini + RELOC/tex/generic/babel/locale/sbp/babel-sangu.tex + RELOC/tex/generic/babel/locale/sbp/babel-sbp.ini + RELOC/tex/generic/babel/locale/se/babel-northernsami.tex + RELOC/tex/generic/babel/locale/se/babel-samin.tex + RELOC/tex/generic/babel/locale/se/babel-se.ini + RELOC/tex/generic/babel/locale/seh/babel-seh.ini + RELOC/tex/generic/babel/locale/seh/babel-sena.tex + RELOC/tex/generic/babel/locale/ses/babel-koyraborosenni.tex + RELOC/tex/generic/babel/locale/ses/babel-ses.ini + RELOC/tex/generic/babel/locale/sg/babel-sango.tex + RELOC/tex/generic/babel/locale/sg/babel-sg.ini + RELOC/tex/generic/babel/locale/shi/babel-shi-Latn.ini + RELOC/tex/generic/babel/locale/shi/babel-shi-Tfng.ini + RELOC/tex/generic/babel/locale/shi/babel-shi.ini + RELOC/tex/generic/babel/locale/shi/babel-tachelhit-latin.tex + RELOC/tex/generic/babel/locale/shi/babel-tachelhit-latn.tex + RELOC/tex/generic/babel/locale/shi/babel-tachelhit-tfng.tex + RELOC/tex/generic/babel/locale/shi/babel-tachelhit-tifinagh.tex + RELOC/tex/generic/babel/locale/shi/babel-tachelhit.tex + RELOC/tex/generic/babel/locale/si/babel-si.ini + RELOC/tex/generic/babel/locale/si/babel-sinhala.tex + RELOC/tex/generic/babel/locale/sk/babel-sk.ini + RELOC/tex/generic/babel/locale/sk/babel-slovak.tex + RELOC/tex/generic/babel/locale/sl/babel-sl.ini + RELOC/tex/generic/babel/locale/sl/babel-slovene.tex + RELOC/tex/generic/babel/locale/sl/babel-slovenian.tex + RELOC/tex/generic/babel/locale/smn/babel-inarisami.tex + RELOC/tex/generic/babel/locale/smn/babel-smn.ini + RELOC/tex/generic/babel/locale/sn/babel-shona.tex + RELOC/tex/generic/babel/locale/sn/babel-sn.ini + RELOC/tex/generic/babel/locale/so/babel-so.ini + RELOC/tex/generic/babel/locale/so/babel-somali.tex + RELOC/tex/generic/babel/locale/sq/babel-albanian.tex + RELOC/tex/generic/babel/locale/sq/babel-sq.ini + RELOC/tex/generic/babel/locale/sr/babel-serbian-cyrillic-bosniaherzegovina.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-cyrillic-kosovo.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-cyrillic-montenegro.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-cyrillic.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-cyrl-ba.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-cyrl-me.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-cyrl-xk.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-cyrl.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-latin-bosniaherzegovina.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-latin-kosovo.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-latin-montenegro.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-latin.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-latn-ba.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-latn-me.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-latn-xk.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian-latn.tex + RELOC/tex/generic/babel/locale/sr/babel-serbian.tex + RELOC/tex/generic/babel/locale/sr/babel-sr-Cyrl-BA.ini + RELOC/tex/generic/babel/locale/sr/babel-sr-Cyrl-ME.ini + RELOC/tex/generic/babel/locale/sr/babel-sr-Cyrl-XK.ini + RELOC/tex/generic/babel/locale/sr/babel-sr-Cyrl.ini + RELOC/tex/generic/babel/locale/sr/babel-sr-Latn-BA.ini + RELOC/tex/generic/babel/locale/sr/babel-sr-Latn-ME.ini + RELOC/tex/generic/babel/locale/sr/babel-sr-Latn-XK.ini + RELOC/tex/generic/babel/locale/sr/babel-sr-Latn.ini + RELOC/tex/generic/babel/locale/sr/babel-sr.ini + RELOC/tex/generic/babel/locale/sv/babel-sv.ini + RELOC/tex/generic/babel/locale/sv/babel-swedish.tex + RELOC/tex/generic/babel/locale/sw/babel-sw.ini + RELOC/tex/generic/babel/locale/sw/babel-swahili.tex + RELOC/tex/generic/babel/locale/ta/babel-ta.ini + RELOC/tex/generic/babel/locale/ta/babel-tamil.tex + RELOC/tex/generic/babel/locale/te/babel-te.ini + RELOC/tex/generic/babel/locale/te/babel-telugu.tex + RELOC/tex/generic/babel/locale/teo/babel-teo.ini + RELOC/tex/generic/babel/locale/teo/babel-teso.tex + RELOC/tex/generic/babel/locale/th/babel-th.ini + RELOC/tex/generic/babel/locale/th/babel-thai.tex + RELOC/tex/generic/babel/locale/ti/babel-ti.ini + RELOC/tex/generic/babel/locale/ti/babel-tigrinya.tex + RELOC/tex/generic/babel/locale/tk/babel-tk.ini + RELOC/tex/generic/babel/locale/tk/babel-turkmen.tex + RELOC/tex/generic/babel/locale/to/babel-to.ini + RELOC/tex/generic/babel/locale/to/babel-tongan.tex + RELOC/tex/generic/babel/locale/tr/babel-tr.ini + RELOC/tex/generic/babel/locale/tr/babel-turkish.tex + RELOC/tex/generic/babel/locale/twq/babel-tasawaq.tex + RELOC/tex/generic/babel/locale/twq/babel-twq.ini + RELOC/tex/generic/babel/locale/tzm/babel-centralatlastamazight.tex + RELOC/tex/generic/babel/locale/tzm/babel-tzm.ini + RELOC/tex/generic/babel/locale/ug/babel-ug.ini + RELOC/tex/generic/babel/locale/ug/babel-uyghur.tex + RELOC/tex/generic/babel/locale/uk/babel-uk.ini + RELOC/tex/generic/babel/locale/uk/babel-ukrainian.tex + RELOC/tex/generic/babel/locale/ur/babel-ur.ini + RELOC/tex/generic/babel/locale/ur/babel-urdu.tex + RELOC/tex/generic/babel/locale/uz/babel-uz-Arab.ini + RELOC/tex/generic/babel/locale/uz/babel-uz-Cyrl.ini + RELOC/tex/generic/babel/locale/uz/babel-uz-Latn.ini + RELOC/tex/generic/babel/locale/uz/babel-uz.ini + RELOC/tex/generic/babel/locale/uz/babel-uzbek-arab.tex + RELOC/tex/generic/babel/locale/uz/babel-uzbek-arabic.tex + RELOC/tex/generic/babel/locale/uz/babel-uzbek-cyrillic.tex + RELOC/tex/generic/babel/locale/uz/babel-uzbek-cyrl.tex + RELOC/tex/generic/babel/locale/uz/babel-uzbek-latin.tex + RELOC/tex/generic/babel/locale/uz/babel-uzbek-latn.tex + RELOC/tex/generic/babel/locale/uz/babel-uzbek.tex + RELOC/tex/generic/babel/locale/vai/babel-vai-Latn.ini + RELOC/tex/generic/babel/locale/vai/babel-vai-Vaii.ini + RELOC/tex/generic/babel/locale/vai/babel-vai-latin.tex + RELOC/tex/generic/babel/locale/vai/babel-vai-latn.tex + RELOC/tex/generic/babel/locale/vai/babel-vai-vai.tex + RELOC/tex/generic/babel/locale/vai/babel-vai-vaii.tex + RELOC/tex/generic/babel/locale/vai/babel-vai.ini + RELOC/tex/generic/babel/locale/vai/babel-vai.tex + RELOC/tex/generic/babel/locale/vi/babel-vi.ini + RELOC/tex/generic/babel/locale/vi/babel-vietnam.tex + RELOC/tex/generic/babel/locale/vi/babel-vietnamese.tex + RELOC/tex/generic/babel/locale/vun/babel-vun.ini + RELOC/tex/generic/babel/locale/vun/babel-vunjo.tex + RELOC/tex/generic/babel/locale/wae/babel-wae.ini + RELOC/tex/generic/babel/locale/wae/babel-walser.tex + RELOC/tex/generic/babel/locale/xog/babel-soga.tex + RELOC/tex/generic/babel/locale/xog/babel-xog.ini + RELOC/tex/generic/babel/locale/yav/babel-yangben.tex + RELOC/tex/generic/babel/locale/yav/babel-yav.ini + RELOC/tex/generic/babel/locale/yi/babel-yi.ini + RELOC/tex/generic/babel/locale/yi/babel-yiddish.tex + RELOC/tex/generic/babel/locale/yo/babel-yo.ini + RELOC/tex/generic/babel/locale/yo/babel-yoruba.tex + RELOC/tex/generic/babel/locale/yue/babel-cantonese.tex + RELOC/tex/generic/babel/locale/yue/babel-yue.ini + RELOC/tex/generic/babel/locale/zgh/babel-standardmoroccantamazight.tex + RELOC/tex/generic/babel/locale/zgh/babel-zgh.ini + RELOC/tex/generic/babel/locale/zh/babel-chinese-hans-hk.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-hans-mo.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-hans-sg.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-hans.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-hant-hk.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-hant-mo.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-hant.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-simplified-hongkongsarchina.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-simplified-macausarchina.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-simplified-singapore.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-simplified.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-traditional-hongkongsarchina.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-traditional-macausarchina.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese-traditional.tex + RELOC/tex/generic/babel/locale/zh/babel-chinese.tex + RELOC/tex/generic/babel/locale/zh/babel-zh-Hans-HK.ini + RELOC/tex/generic/babel/locale/zh/babel-zh-Hans-MO.ini + RELOC/tex/generic/babel/locale/zh/babel-zh-Hans-SG.ini + RELOC/tex/generic/babel/locale/zh/babel-zh-Hans.ini + RELOC/tex/generic/babel/locale/zh/babel-zh-Hant-HK.ini + RELOC/tex/generic/babel/locale/zh/babel-zh-Hant-MO.ini + RELOC/tex/generic/babel/locale/zh/babel-zh-Hant.ini + RELOC/tex/generic/babel/locale/zh/babel-zh.ini + RELOC/tex/generic/babel/locale/zu/babel-zu.ini + RELOC/tex/generic/babel/locale/zu/babel-zulu.tex + RELOC/tex/generic/babel/lsorbian.sty + RELOC/tex/generic/babel/luababel.def + RELOC/tex/generic/babel/magyar.sty + RELOC/tex/generic/babel/naustrian.sty + RELOC/tex/generic/babel/ngermanb.sty + RELOC/tex/generic/babel/nil.ldf + RELOC/tex/generic/babel/norsk.sty + RELOC/tex/generic/babel/plain.def + RELOC/tex/generic/babel/polish.sty + RELOC/tex/generic/babel/portuges.sty + RELOC/tex/generic/babel/romanian.sty + RELOC/tex/generic/babel/russianb.sty + RELOC/tex/generic/babel/samin.sty + RELOC/tex/generic/babel/scottish.sty + RELOC/tex/generic/babel/serbian.sty + RELOC/tex/generic/babel/slovak.sty + RELOC/tex/generic/babel/slovene.sty + RELOC/tex/generic/babel/spanish.sty + RELOC/tex/generic/babel/swedish.sty + RELOC/tex/generic/babel/switch.def + RELOC/tex/generic/babel/turkish.sty + RELOC/tex/generic/babel/txtbabel.def + RELOC/tex/generic/babel/ukraineb.sty + RELOC/tex/generic/babel/usorbian.sty + RELOC/tex/generic/babel/welsh.sty + RELOC/tex/generic/babel/xebabel.def +catalogue-also polyglossia +catalogue-contact-bugs https://github.com/latex3/babel/issues +catalogue-contact-repository https://github.com/latex3/babel +catalogue-ctan /macros/latex/required/babel/base +catalogue-date 2019-05-04 18:01:34 +0200 +catalogue-license lppl1.3 +catalogue-topics multilingual +catalogue-version 3.31 + name babel-albanian category Package revision 30254 @@ -11266,127 +23092,110 @@ shortdesc Support for Albanian within babel relocated 1 longdesc The package provides support for typesetting Albanian (as part longdesc of the babel system). -runfiles size=2 - RELOC/tex/generic/babel-albanian/albanian.ldf +containersize 2472 +containerchecksum 55231eb303d7a2549d21e2d3bba9cb784e95cb99edc29a84212539ce04eb27261078437b8902419e85c69e2a8d7e6fba7abcb86e7b6448b4ab139de60cb77d87 +doccontainersize 124384 +doccontainerchecksum 12afde1de6174c7aee0dcafa4c6df472c0096373a09726c5d4223d082b53b558185b3b48d1ab3204d03c4a89c5f5f2293136fae671c2f2913ea72109c3f58e19 docfiles size=31 - RELOC/doc/generic/babel-albanian/albanian.pdf + RELOC/doc/generic/babel-albanian/albanian.pdf details="Package documentation" +srccontainersize 5092 +srccontainerchecksum 95c1550b76ca8ecf4dea6495b644b550dc2feb45cc3d3c597c94236e6d3f86a3a42da7bcc7b77b4ee6597d167da33a571da16f5f7e35fd4666ea708a86c490ea srcfiles size=5 RELOC/source/generic/babel-albanian/albanian.dtx RELOC/source/generic/babel-albanian/albanian.ins +runfiles size=2 + RELOC/tex/generic/babel-albanian/albanian.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/albanian -catalogue-date 2014-05-22 11:58:32 +0200 +catalogue-date 2018-01-13 10:24:37 +0100 catalogue-license lppl +catalogue-topics albanian catalogue-version 1.0c -name babel-bahasa -category Package -revision 30255 -shortdesc Support for Bahasa within babel. -relocated 1 -longdesc The bundle provides two sets of language typesetting support, -longdesc for Bahasa Indonesia and Bahasa Malaysia. -runfiles size=4 - RELOC/tex/generic/babel-bahasa/bahasai.ldf - RELOC/tex/generic/babel-bahasa/bahasam.ldf -docfiles size=56 - RELOC/doc/generic/babel-bahasa/bahasa.pdf - RELOC/doc/generic/babel-bahasa/bahasam.pdf -srcfiles size=8 - RELOC/source/generic/babel-bahasa/bahasa.dtx - RELOC/source/generic/babel-bahasa/bahasa.ins - RELOC/source/generic/babel-bahasa/bahasam.dtx -catalogue-ctan /macros/latex/contrib/babel-contrib/bahasa -catalogue-date 2015-03-22 05:41:14 +0100 +name babel-azerbaijani +category Package +revision 44197 +shortdesc Support for Azerbaijani within babel +relocated 1 +longdesc This is the babel style for Azerbaijani. This language poses +longdesc special challenges because no "traditional" font encoding +longdesc contains the full character set, and therefore a mixture must +longdesc be used (e.g., T2A and T1). This package is compatible with +longdesc Unicode engines (LuaTeX, XeTeX), which are very likely the most +longdesc convenient way to write Azerbaijani documents. +containersize 3076 +containerchecksum 3f20954607195d4804b4bd90d7fe5baa209d5ffac6dfbe5f758306bb7c8aedd1c4c92675f5dce7f634e7ceb2b65e9c3ead0ebfef730bfe2dbd8c0ba17d3079b0 +doccontainersize 232940 +doccontainerchecksum bfd4434720b9676e253f69144aac9a07d6bd19e3a4418ae74269df70085391444ac46556928f131a14e85b87211fd76521b67a457e7319eedd3781a215efd962 +docfiles size=58 + RELOC/doc/generic/babel-azerbaijani/README details="Readme" + RELOC/doc/generic/babel-azerbaijani/azerbaijani.pdf details="Package documentation" +srccontainersize 5156 +srccontainerchecksum b3eb9fdbc08643706a2dfa50daaf27a687c593900a972f89029aeebe08e2a1c4fbea08a848224b198ba447d3ad3a62459aeb9db2c00a0f3f039a16c863ebaf0d +srcfiles size=5 + RELOC/source/generic/babel-azerbaijani/azerbaijani.dtx + RELOC/source/generic/babel-azerbaijani/azerbaijani.ins +runfiles size=2 + RELOC/tex/generic/babel-azerbaijani/azerbaijani.ldf +catalogue-contact-bugs http://www.texnia.com/contact.html +catalogue-ctan /macros/latex/contrib/babel-contrib/azerbaijani +catalogue-date 2017-06-05 06:44:00 +0200 catalogue-license lppl1.3 -catalogue-version 1.0l +catalogue-topics azerbaijani multilingual-addon +catalogue-version 1.0a name babel-basque category Package revision 30256 -shortdesc Babel contributed support for Basque. +shortdesc Babel contributed support for Basque relocated 1 longdesc The package establishes Basque conventions in a document. -runfiles size=2 - RELOC/tex/generic/babel-basque/basque.ldf +containersize 2664 +containerchecksum 40079f02225f81c8838aee6179548f3fcb773fa8e031e07f30df761f298b9980e3a4357a8013bd7802c688a192cd9ef2102be1b6e8e1f3efcd68769a9e5a5a2a +doccontainersize 155352 +doccontainerchecksum e6342328d62cb0232d38e10b3b38cd4d75c55a5d31d702c167099a2bd4122e40c5e3cac8a9c2940a9f9893d7aa2594b8322cf469924b97e903cab970dee81c6c docfiles size=38 - RELOC/doc/generic/babel-basque/basque.pdf + RELOC/doc/generic/babel-basque/basque.pdf details="Package documentation" +srccontainersize 6464 +srccontainerchecksum 1c924232920a969fa48e6d61bcdfc5150cd1afcef6d98cdd27fbe2e0acb5b7749d2b2dea77db88125128b380f2b4ccca4d49d1d140f2e96880e0daf2d09c2d50 srcfiles size=6 RELOC/source/generic/babel-basque/basque.dtx RELOC/source/generic/babel-basque/basque.ins +runfiles size=2 + RELOC/tex/generic/babel-basque/basque.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/basque -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics basque multilingual-addon catalogue-version 1.0f -name babelbib +name babel-belarusian category Package -revision 25245 -shortdesc Multilingual bibliographies. +revision 49022 +shortdesc Babel support for Belarusian relocated 1 -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. -runfiles size=209 - RELOC/bibtex/bst/babelbib/bababbr3-fl.bst - RELOC/bibtex/bst/babelbib/bababbr3-lf.bst - RELOC/bibtex/bst/babelbib/bababbr3.bst - RELOC/bibtex/bst/babelbib/bababbrv-fl.bst - RELOC/bibtex/bst/babelbib/bababbrv-lf.bst - RELOC/bibtex/bst/babelbib/bababbrv.bst - RELOC/bibtex/bst/babelbib/babalpha-fl.bst - RELOC/bibtex/bst/babelbib/babalpha-lf.bst - RELOC/bibtex/bst/babelbib/babalpha.bst - RELOC/bibtex/bst/babelbib/babamspl.bst - RELOC/bibtex/bst/babelbib/babplai3-fl.bst - RELOC/bibtex/bst/babelbib/babplai3-lf.bst - RELOC/bibtex/bst/babelbib/babplai3.bst - RELOC/bibtex/bst/babelbib/babplain-fl.bst - RELOC/bibtex/bst/babelbib/babplain-lf.bst - RELOC/bibtex/bst/babelbib/babplain.bst - RELOC/bibtex/bst/babelbib/babunsrt-fl.bst - RELOC/bibtex/bst/babelbib/babunsrt-lf.bst - RELOC/bibtex/bst/babelbib/babunsrt.bst - RELOC/tex/latex/babelbib/afrikaans.bdf - RELOC/tex/latex/babelbib/babelbib.sty - RELOC/tex/latex/babelbib/bahasa.bdf - RELOC/tex/latex/babelbib/catalan.bdf - RELOC/tex/latex/babelbib/croatian.bdf - RELOC/tex/latex/babelbib/czech.bdf - RELOC/tex/latex/babelbib/danish.bdf - RELOC/tex/latex/babelbib/dutch.bdf - RELOC/tex/latex/babelbib/english.bdf - RELOC/tex/latex/babelbib/esperanto.bdf - RELOC/tex/latex/babelbib/finnish.bdf - RELOC/tex/latex/babelbib/french.bdf - RELOC/tex/latex/babelbib/galician.bdf - RELOC/tex/latex/babelbib/german.bdf - RELOC/tex/latex/babelbib/greek.bdf - RELOC/tex/latex/babelbib/italian.bdf - RELOC/tex/latex/babelbib/norsk.bdf - RELOC/tex/latex/babelbib/portuguese.bdf - RELOC/tex/latex/babelbib/romanian.bdf - RELOC/tex/latex/babelbib/russian.bdf - RELOC/tex/latex/babelbib/serbian.bdf - RELOC/tex/latex/babelbib/spanish.bdf - RELOC/tex/latex/babelbib/swedish.bdf -docfiles size=423 - RELOC/doc/bibtex/babelbib/ChangeLog - RELOC/doc/bibtex/babelbib/Makefile - RELOC/doc/bibtex/babelbib/README - RELOC/doc/bibtex/babelbib/babelbib.dtx - RELOC/doc/bibtex/babelbib/babelbib.ins - RELOC/doc/bibtex/babelbib/babelbib.pdf - RELOC/doc/bibtex/babelbib/babelbibtest.bib - RELOC/doc/bibtex/babelbib/babelbibtest.tex - RELOC/doc/bibtex/babelbib/getversion.tex - RELOC/doc/bibtex/babelbib/tugboat-babelbib.pdf -catalogue-ctan /biblio/bibtex/contrib/babelbib -catalogue-date 2012-02-24 15:56:58 +0100 -catalogue-license lppl1 -catalogue-version 1.31 +longdesc The package provides support for use of Babel in documents +longdesc written in Belarusian. +containersize 5112 +containerchecksum 5856582f8bf6a98a4fbd560bfca82ccb226267e249f0caf8afc775875d50ec204ea613320534a63062dffd0e050905adb24763a95fec2ef4e8faed70a400d976 +doccontainersize 152780 +doccontainerchecksum 247d5a3b99cd5a377534a94fedf47f6710d32d875d3208b1516fdc9acafee70a14ef1dc37600f9da53f806323d0519ebb2c4e288e471363756b7b819751373c8 +docfiles size=39 + RELOC/doc/generic/babel-belarusian/README.md details="Readme" + RELOC/doc/generic/babel-belarusian/belarusian.pdf details="Package documentation" +srccontainersize 21492 +srccontainerchecksum 82262f7775c22a908161a7a2d65caa8662c62ad759db792a6718dba043804b7aac523a8f3eab2dbdc3882a88c55bb641b862f3f19e9c4d3ba1a0f4298db9833e +srcfiles size=22 + RELOC/source/generic/babel-belarusian/belarusian.dtx + RELOC/source/generic/babel-belarusian/belarusian.ins +runfiles size=6 + RELOC/tex/generic/babel-belarusian/belarusian.ldf +catalogue-contact-bugs https://github.com/andrewshadura/babel-belarusian/issues +catalogue-contact-repository https://github.com/andrewshadura/babel-belarusian +catalogue-ctan /macros/latex/contrib/babel-contrib/belarusian +catalogue-date 2018-10-09 18:40:30 +0200 +catalogue-license lppl1.3c +catalogue-topics multilingual-addon belarusian +catalogue-version 1.5 name babel-bosnian category Package @@ -11395,16 +23204,22 @@ shortdesc Babel contrib support for Bosnian relocated 1 longdesc The package provides a language definition file that enables longdesc support of Bosnian with babel. -runfiles size=1 - RELOC/tex/generic/babel-bosnian/bosnian.ldf +containersize 2080 +containerchecksum bef1defaacf5232bf9cce6c1a9956c9a42d35a2c2b6ddccbcca3938386f4f4a61a0cbcba74b930dfad18ed211374c3667120c6706ebf097c56ec3c5915ccdff2 +doccontainersize 103208 +doccontainerchecksum 84238e6b38021582de93e9fe934bf608e647c9b4cc0a066b4fbdd2ba98c8e6531b653907f9bcfb79e6afc9074b4a079b5e419db25625d40a76a8ca8e55e81ab1 docfiles size=27 - RELOC/doc/generic/babel-bosnian/README - RELOC/doc/generic/babel-bosnian/bosnian.pdf + RELOC/doc/generic/babel-bosnian/README details="Readme" + RELOC/doc/generic/babel-bosnian/bosnian.pdf details="Package documentation" +srccontainersize 4344 +srccontainerchecksum dfc18e55b30620e27cb8809259a6b4790b94cb98b334a69cd48f66c25696e2df8d38dc5a1d402ae8464ced727752d96d8b5abf18522c8bbde4ce1f6f8ad73c92 srcfiles size=4 RELOC/source/generic/babel-bosnian/bosnian.dtx RELOC/source/generic/babel-bosnian/bosnian.ins +runfiles size=1 + RELOC/tex/generic/babel-bosnian/bosnian.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/bosnian -catalogue-date 2015-08-21 00:26:56 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 catalogue-topics bosnian multilingual-addon catalogue-version 1.1 @@ -11412,185 +23227,256 @@ catalogue-version 1.1 name babel-breton category Package revision 30257 -shortdesc Babel contributed support for Breton. +shortdesc Babel contributed support for Breton relocated 1 longdesc Breton (being, principally, a spoken language) does not have longdesc typographic rules of its own; this package provides an longdesc "appropriate" selection of French and British typographic longdesc rules. -runfiles size=2 - RELOC/tex/generic/babel-breton/breton.ldf +containersize 2756 +containerchecksum bbcfa22674ca1d4a8e23f179480f9e94a50d5b460b8b0d27365c9166adc02a191253ef2d61d6f5eaf5bc61e73faf5d307378898f1d6b1b748448bbd8a36ea141 +doccontainersize 118232 +doccontainerchecksum 3b47653b26901dd4aba1395c61c9dc01d43ed490c70ca04ba7d1cc67ba7b23b658db32b7a5fef085b236a68bcd009dc5cc5687e3dc2dc8d246ab2ccb8d391b42 docfiles size=29 - RELOC/doc/generic/babel-breton/breton.pdf + RELOC/doc/generic/babel-breton/breton.pdf details="Package documentation" +srccontainersize 5384 +srccontainerchecksum 8f381a3955780617f9738b008e6f4490632a67c70f16d4855f15ca59981dadaf72f7f15cebe10a121bcbb894006c738ca1872fbe33bb256c8145b22254236b67 srcfiles size=5 RELOC/source/generic/babel-breton/breton.dtx RELOC/source/generic/babel-breton/breton.ins +runfiles size=2 + RELOC/tex/generic/babel-breton/breton.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/breton -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics breton multilingual-addon catalogue-version 1.0h name babel-bulgarian category Package revision 31902 -shortdesc Babel contributed support for Bulgarian. +shortdesc Babel contributed support for Bulgarian relocated 1 longdesc The package provides support for documents in Bulgarian (or longdesc simply containing some Bulgarian text). -runfiles size=6 - RELOC/tex/generic/babel-bulgarian/bulgarian.ldf +containersize 5808 +containerchecksum 0c838e5c5cd010fddaec385376f9eb5fb10730e918dd28f58987f855a444d91ed2e66c0de46c74637d134d72f7e348e538836df33f6255a14ed51d0e8d5e8a3e +doccontainersize 176396 +doccontainerchecksum 4dcd92a2088e737972f0663fe5161883cae901dc82aafd1bd33f2d80a852fb51d6229c95cc655826bd17599a7152b8a7bf0031eb046530a135e8bc5c9c74b2dd docfiles size=48 - RELOC/doc/generic/babel-bulgarian/README - RELOC/doc/generic/babel-bulgarian/bulgarian.pdf + RELOC/doc/generic/babel-bulgarian/README details="Readme" + RELOC/doc/generic/babel-bulgarian/bulgarian.pdf details="Package documentation" +srccontainersize 20716 +srccontainerchecksum 047f69cbdedea9070a002782e8d1b893aae71adaa2e637df560ab8a176308faf8d1b8b52afda8f38f264783077a227176eacace9484ccc0af2a4a7615460c7a2 srcfiles size=20 RELOC/source/generic/babel-bulgarian/bulgarian.dtx RELOC/source/generic/babel-bulgarian/bulgarian.ins +runfiles size=6 + RELOC/tex/generic/babel-bulgarian/bulgarian.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/bulgarian -catalogue-date 2014-05-22 11:58:32 +0200 +catalogue-date 2018-01-13 10:24:37 +0100 catalogue-license lppl1.3 +catalogue-topics bulgarian multilingual-addon catalogue-version 1.2g name babel-catalan category Package revision 30259 -shortdesc Babel contributed support for Catalan. +shortdesc Babel contributed support for Catalan relocated 1 longdesc The package establishes Catalan conventions in a document (or a longdesc subset of the conventions, if Catalan is not the main language longdesc of the document). -runfiles size=3 - RELOC/tex/generic/babel-catalan/catalan.ldf +containersize 3444 +containerchecksum 728d847331f1a00766cfc2818691516234b153182f31ad2da024ec3194cc384a41ca89cc67ce66447191188dfe088d1dc4c8af3b2e6952931ec7eb58737c4bca +doccontainersize 209232 +doccontainerchecksum 3184373d85b1e9bd76588318372ced328d2ce7f6d4f45bc5634671a88314d1ed18cedd968e59dd5203b4d77e6d3576f36a654b1a8bbdaa106d47cbdfb825e452 docfiles size=52 - RELOC/doc/generic/babel-catalan/catalan.pdf + RELOC/doc/generic/babel-catalan/catalan.pdf details="Package documentation" +srccontainersize 9708 +srccontainerchecksum ef15d0aca46af936141fa2d47c6b794ce85f2c3fc9adf18b5ca4b0267292f24d1c02121d5189f7cc9db98e0ab22a5d4ec2febc32b2bec5c3c5923598e869878c srcfiles size=10 RELOC/source/generic/babel-catalan/catalan.dtx RELOC/source/generic/babel-catalan/catalan.ins +runfiles size=3 + RELOC/tex/generic/babel-catalan/catalan.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/catalan -catalogue-date 2014-05-22 11:58:32 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics catalan multilingual-addon catalogue-version 2.2p name babel-croatian category Package revision 35198 -shortdesc Babel contributed support for Croatian. +shortdesc Babel contributed support for Croatian relocated 1 longdesc The package establishes Croatian conventions in a document (or longdesc a subset of the conventions, if Croatian is not the main longdesc language of the document). -runfiles size=1 - RELOC/tex/generic/babel-croatian/croatian.ldf +containersize 2176 +containerchecksum b5724a84cd180e9de79136ced8bd38717dcb4e932dbba4e20fc071ba9f50fb35cebe83d4a95ec6e8ef0e09a02732cbdc8b1a71715c8a5967393f54087ba4a807 +doccontainersize 114148 +doccontainerchecksum d5e40e95037c3035589b093037c563b3737e061369f27ff5c51d620e0655dd075f413b91434591e2130849d641c1ac59469db46be1d8b0761075424c468668d2 docfiles size=30 - RELOC/doc/generic/babel-croatian/croatian.pdf + RELOC/doc/generic/babel-croatian/croatian.pdf details="Package documentation" +srccontainersize 4428 +srccontainerchecksum fdd4efb6d24bc9560e14f9e02d231ac636f2f69249d7dea9c07b337f0d5617c754bbc9087bda5cf1f2da6178807e46f015658b3fc2d04ddd5749dc2643ef4ed0 srcfiles size=5 RELOC/source/generic/babel-croatian/croatian.dtx RELOC/source/generic/babel-croatian/croatian.ins +runfiles size=1 + RELOC/tex/generic/babel-croatian/croatian.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/croatian -catalogue-date 2014-09-18 10:38:54 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics croatian multilingual-addon catalogue-version 1.3l name babel-czech category Package revision 30261 -shortdesc Babel support for Czech. +shortdesc Babel support for Czech relocated 1 longdesc The package provides the language definition file for support longdesc of Czech in babel. Some shortcuts are defined, as well as longdesc translations to Czech of standard "LaTeX names". -runfiles size=4 - RELOC/tex/generic/babel-czech/czech.ldf +containersize 4880 +containerchecksum 0cc0f07fafefa6d7ea1ae1b2ce143dbec124fe96b36221f1b5a847fd0b789d1974b5990ebd93b8ac0607f63956948bede25c7e690784ca7e9638f48139585a32 +doccontainersize 188640 +doccontainerchecksum 1575fbe0d70725e975cdb0c1c5ca685985d91f23e4a997af4a0db21905ac34962f69653ffe4084065bda70cfbba0f0a1f0885d3afc19e98d0045ebb68cb545c3 docfiles size=47 - RELOC/doc/generic/babel-czech/czech.pdf + RELOC/doc/generic/babel-czech/czech.pdf details="Package documentation" +srccontainersize 12536 +srccontainerchecksum 1cbc5de700e32ac2600a50a85f6437b7bada601734753a8ea62b845f7500880195625e827be41e277d76137ca3dac05b230e64e0edcf1807cae2079feceff8a0 srcfiles size=12 RELOC/source/generic/babel-czech/czech.dtx RELOC/source/generic/babel-czech/czech.ins +runfiles size=4 + RELOC/tex/generic/babel-czech/czech.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/czech -catalogue-date 2014-05-22 11:58:32 +0200 +catalogue-date 2018-01-13 10:24:37 +0100 catalogue-license lppl1.3 +catalogue-topics czech catalogue-version 3.1a name babel-danish category Package revision 30262 -shortdesc Babel contributed support for Danish. +shortdesc Babel contributed support for Danish relocated 1 longdesc The package provides a language definition, file for use with longdesc babel, which establishes Danish conventions in a document (or a longdesc subset of the conventions, if Danish is not the main language longdesc of the document). -runfiles size=2 - RELOC/tex/generic/babel-danish/danish.ldf +containersize 2464 +containerchecksum 03bc05d7e6d59ffbb6191cc392294007bf4f1b6f758aceeedb8dddfe9aefadde3e7904d7aa0834ecdf6dbae732057ed0523b24ca20dfa594e02ee8857c94cd3a +doccontainersize 127824 +doccontainerchecksum b85445b348bd65abb4c7df530e20b93c5cc86f2ce25f0306aef3d32b585ce8ad8d5b16007bede46be535ac0737546f453c1241a225b31a9216ae25482360b2cf docfiles size=32 - RELOC/doc/generic/babel-danish/danish.pdf + RELOC/doc/generic/babel-danish/danish.pdf details="Package documentation" +srccontainersize 5704 +srccontainerchecksum 0556cb121d06313ea2c1f84a98ea89e75d8bc0fe2a8dcbee98deff446ddf187833af6ee2634483f25a721142078ea889bf065996171617cc95ce28a8a5083b81 srcfiles size=6 RELOC/source/generic/babel-danish/danish.dtx RELOC/source/generic/babel-danish/danish.ins +runfiles size=2 + RELOC/tex/generic/babel-danish/danish.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/danish -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-01-13 10:24:37 +0100 catalogue-license lppl1.3 +catalogue-topics danish catalogue-version 1.3r name babel-dutch category Package revision 30263 -shortdesc Babel contributed support for Dutch. +shortdesc Babel contributed support for Dutch relocated 1 longdesc The package provides a language definition, file for use with longdesc babel, which establishes Dutch conventions in a document (or a longdesc subset of the conventions, if Dutch is not the main language of longdesc the document). -runfiles size=2 - RELOC/tex/generic/babel-dutch/dutch.ldf +containersize 2848 +containerchecksum 3f967688c9124502243589b666e1e3af500329782cdad8da5225eb3fe6a50262c2287be02d6d6ec04f3ce81a6767b4d2821179cbf04dcea4c20001e8ea1a9f5c +doccontainersize 154000 +doccontainerchecksum 5591a30a32ac2900266d4dd642481a5c9e7bac1062fcf5557ad4acf93cad0e36020c75e081b63680c0c96ff580a2156fded920e394a9c5c685cbb152e8d4142f docfiles size=38 - RELOC/doc/generic/babel-dutch/dutch.pdf + RELOC/doc/generic/babel-dutch/dutch.pdf details="Package documentation" +srccontainersize 7936 +srccontainerchecksum 98c412d7a2a776286fb3f78faa49da6dedab2d3ec80b5f722a20eb34fec53768ba4000debc952df3241661f1f86b7035d7e71f712be3fff91f13608dd0fcf87c srcfiles size=8 RELOC/source/generic/babel-dutch/dutch.dtx RELOC/source/generic/babel-dutch/dutch.ins +runfiles size=2 + RELOC/tex/generic/babel-dutch/dutch.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/dutch -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-01-13 10:24:37 +0100 catalogue-license lppl1.3 +catalogue-topics dutch catalogue-version 3.8i name babel-english category Package -revision 30264 -shortdesc Babel support for English. +revision 44495 +shortdesc Babel support for English relocated 1 longdesc The package provides the language definition file for support longdesc of English in babel. Care is taken to select british longdesc hyphenation patterns for British English and Australian text, longdesc and default ('american') patterns for Canadian and USA text. -runfiles size=2 - RELOC/tex/generic/babel-english/english.ldf -docfiles size=32 - RELOC/doc/generic/babel-english/english.pdf +containersize 3040 +containerchecksum f570d2aae8a97ba0762fc1eab75dad1f17c4ac582a351ffeb8e56a136b789a38b7a6519247ba5981385f1a093101542942b3bd073a5097336392929ed40c9e39 +doccontainersize 130652 +doccontainerchecksum 77d6b482407ff24095b1076673316744374e66bdbdd7ebb767ec66ccdccd6ed5bb27ecfd0796eee210f1a888c82ad2eb4b9d2142c427bff137bd139c4cc53ec3 +docfiles size=33 + RELOC/doc/generic/babel-english/README details="Readme" + RELOC/doc/generic/babel-english/english.pdf details="Package documentation" +srccontainersize 6256 +srccontainerchecksum ce636f5cca9aa33ad7414432fcc46fbf1873c4b1576cae8c04b8cf15381f4b6ea54e0621f297114f302ae172752282daedc0b59c15393e1071f8542ad3baf628 srcfiles size=7 RELOC/source/generic/babel-english/english.dtx RELOC/source/generic/babel-english/english.ins +runfiles size=9 + RELOC/tex/generic/babel-english/UKenglish.ldf + RELOC/tex/generic/babel-english/USenglish.ldf + RELOC/tex/generic/babel-english/american.ldf + RELOC/tex/generic/babel-english/australian.ldf + RELOC/tex/generic/babel-english/british.ldf + RELOC/tex/generic/babel-english/canadian.ldf + RELOC/tex/generic/babel-english/english.ldf + RELOC/tex/generic/babel-english/newzealand.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/english -catalogue-date 2014-05-22 11:58:32 +0200 +catalogue-date 2017-06-07 05:21:27 +0200 catalogue-license lppl1.3 -catalogue-version 3.3p +catalogue-topics english multilingual-addon +catalogue-version 3.3r name babel-esperanto category Package revision 30265 -shortdesc Babel support for Esperanto. +shortdesc Babel support for Esperanto relocated 1 longdesc The package provides the language definition file for support longdesc of Esperanto in babel. Some shortcuts are defined, as well as longdesc translations to Esperanto of standard "LaTeX names". -runfiles size=2 - RELOC/tex/generic/babel-esperanto/esperanto.ldf +containersize 2584 +containerchecksum 0c3be27d02d4c3157f2b0df0950e0814db3ffbdb2553d2c0f176893f3669123a9130874e93edcfd86480b785bbbfda35f9246dac3b4a0779da51387b0bf12ee8 +doccontainersize 126500 +doccontainerchecksum 166c1b59511b5a01cac11b5cd76c84cfa485c2674b390a167ff165bec1326709437ee843f664fd4ac9e61338481df9e7f3026189f7c29c71778dbd1df98cd35f docfiles size=31 - RELOC/doc/generic/babel-esperanto/esperanto.pdf + RELOC/doc/generic/babel-esperanto/esperanto.pdf details="Package documentation" +srccontainersize 5688 +srccontainerchecksum f2fcef5841400c521415c870ae1641549eb702944ebd404b96ff9d5b52ee9c2d484662a50d9b410f62e74580f37fdbd269b3650cee0572b3096e4b0365787d4b srcfiles size=6 RELOC/source/generic/babel-esperanto/esperanto.dtx RELOC/source/generic/babel-esperanto/esperanto.ins +runfiles size=2 + RELOC/tex/generic/babel-esperanto/esperanto.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/esperanto -catalogue-date 2014-05-22 11:58:32 +0200 +catalogue-date 2018-01-13 10:24:37 +0100 catalogue-license lppl1.3 +catalogue-topics esperanto catalogue-version 1.4t name babel-estonian @@ -11601,16 +23487,22 @@ relocated 1 longdesc The package provides the language definition file for support longdesc of Estonian in babel. Some shortcuts are defined, as well as longdesc translations to Estonian of standard "LaTeX names". -runfiles size=2 - RELOC/tex/generic/babel-estonian/estonian.ldf +containersize 3040 +containerchecksum 03357f8b0c101e5e186fa4211a971e625f6970a3129a2594a611c74b77b36a27a288d2da518d21e6e2e5d98bb82802b2115d47e31e6258f01c003be854090baf +doccontainersize 91472 +doccontainerchecksum ca732f4b6ccb9ae27f99aaabc99037d9f3d04bc170b9a8bb189a81b6bc9f55fd757c5755bf51ff423850f6b45c88a5645f75a462fc9d9e9b989fa04c1a2cc7c1 docfiles size=28 - RELOC/doc/generic/babel-estonian/README.txt - RELOC/doc/generic/babel-estonian/estonian.pdf + RELOC/doc/generic/babel-estonian/README.txt details="Readme" + RELOC/doc/generic/babel-estonian/estonian.pdf details="Package documentation" +srccontainersize 9136 +srccontainerchecksum 47e8d53d379ec383400e618873d800bbb6dcd8eea7807e31173110d5d7492f52cd4808a288e53534a2de578c43a5ee4eceef690bfcd56cc11e863919f86ee8af srcfiles size=8 RELOC/source/generic/babel-estonian/estonian.dtx RELOC/source/generic/babel-estonian/estonian.ins +runfiles size=2 + RELOC/tex/generic/babel-estonian/estonian.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/estonian -catalogue-date 2015-08-05 10:58:42 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 catalogue-topics estonian catalogue-version 1.1a @@ -11618,97 +23510,170 @@ catalogue-version 1.1a name babel-finnish category Package revision 30267 +shortdesc Babel/Polyglossia support for Finnish relocated 1 -runfiles size=2 - RELOC/tex/generic/babel-finnish/finnish.ldf +longdesc The package provides a language description file that enables +longdesc support of Finnish either with babel or with polyglossia. +containersize 2520 +containerchecksum b39de5e94debff30a9f3a0b0b1d27cdc75e7479ad3f37ba73769226e9e2b1883bf272c3dc87044f6c2b97c80a7c049aee64458a78c289f01470ee4a6ecec0d59 +doccontainersize 139484 +doccontainerchecksum 52fca9282d4070cc451eff247b0743b576dc7ef2553952863aeaf04c01f876d72e0062857690b1d62f1e3ed17918b64b125b96df82f2fc05ae695dcb4788146a docfiles size=35 - RELOC/doc/generic/babel-finnish/finnish.pdf + RELOC/doc/generic/babel-finnish/finnish.pdf details="Package documentation" +srccontainersize 6132 +srccontainerchecksum c8b07de49127f766659f5842d211cef3830ea3f92d8703fd482c713993f924ed0171864f055ae526bed407059733295fe9741646228cece4516bdf49ad4622d7 srcfiles size=6 RELOC/source/generic/babel-finnish/finnish.dtx RELOC/source/generic/babel-finnish/finnish.ins +runfiles size=2 + RELOC/tex/generic/babel-finnish/finnish.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/finnish +catalogue-date 2018-01-13 10:24:37 +0100 +catalogue-license lppl1.3 +catalogue-topics multilingual-addon +catalogue-version 1.3q name babel-french category Package -revision 38160 +revision 50711 shortdesc Babel contributed support for French relocated 1 -longdesc The package establishes French conventions in a document (or a -longdesc subset of the conventions, if French is not the main language -longdesc of the document). -runfiles size=17 - RELOC/tex/generic/babel-french/frenchb.ldf - RELOC/tex/generic/babel-french/frenchb.lua -docfiles size=66 - RELOC/doc/generic/babel-french/README - RELOC/doc/generic/babel-french/frenchb.pdf -srcfiles size=48 +longdesc The package, formerly known as frenchb, establishes French +longdesc conventions in a document (or a subset of the conventions, if +longdesc French is not the main language of the document). +containersize 15840 +containerchecksum 4b18d293334b94f74f43b4dcf2ff3e4b912a966d659071d0f0b1d0a86004133efc7265c1dddfa30fb6db9e565da09737f526b3b649e415de4f13d6dcbb67b075 +doccontainersize 427436 +doccontainerchecksum b38f39e45c3f54a8eaa61b81cedded7cd37b51fe19c809bfa9800dbab9aa0c83040d2f819b2a5a532586591e3540812eac520d3e810a90be00df30639e7f00e3 +docfiles size=125 + RELOC/doc/generic/babel-french/README details="Readme" + RELOC/doc/generic/babel-french/frenchb-doc.pdf details="User manual" language="fr" + RELOC/doc/generic/babel-french/frenchb-doc.tex + RELOC/doc/generic/babel-french/frenchb.pdf details="Package documentation" +srccontainersize 54932 +srccontainerchecksum 0bb25be78313c886544afbc3e1339888373f8aa390b7bf853606c44bf96410951c5ab24b79c67f68fb19af4289d5a519c57290aaa5fe01b6151b40039bc9d942 +srcfiles size=59 RELOC/source/generic/babel-french/frenchb.dtx RELOC/source/generic/babel-french/frenchb.ins +runfiles size=24 + RELOC/tex/generic/babel-french/acadian.ldf + RELOC/tex/generic/babel-french/canadien.ldf + RELOC/tex/generic/babel-french/francais.ldf + RELOC/tex/generic/babel-french/french.ldf + RELOC/tex/generic/babel-french/frenchb.ldf + RELOC/tex/generic/babel-french/frenchb.lua +catalogue-contact-home http://daniel.flipo.free.fr/babel-french catalogue-ctan /macros/latex/contrib/babel-contrib/french -catalogue-date 2015-08-19 19:30:43 +0200 +catalogue-date 2019-04-01 22:16:31 +0200 catalogue-license lppl1.3 catalogue-topics french multilingual-addon -catalogue-version 3.1h +catalogue-version 3.5e name babel-friulan category Package -revision 30361 -shortdesc Babel/Polyglossia support for Friulan(Furlan). +revision 39861 +shortdesc Babel/Polyglossia support for Friulan(Furlan) relocated 1 longdesc The package provides a language description file that enables longdesc support of Friulan either with babel or with polyglossia. -runfiles size=1 - RELOC/tex/generic/babel-friulan/friulan.ldf -docfiles size=30 - RELOC/doc/generic/babel-friulan/friulan.pdf +containersize 1576 +containerchecksum e6210dc473c3d71759f2faf1558df2d6a7c646485d85cf0113074fb68eaef23b2e44eb88c9fd35a7a7929b408d6574f7230852643366bccd29afee744e0b2d07 +doccontainersize 138624 +doccontainerchecksum 0ce539cb0b6cc7af830c7413545f411e1291491fb26ad0451e7caf1346da9ab188a457e3292efe9724070e77f67e46e06293dbfb40b78a1328112b04d4a1fd77 +docfiles size=35 + RELOC/doc/generic/babel-friulan/README.txt details="Readme" + RELOC/doc/generic/babel-friulan/friulan.pdf details="Package documentation" +srccontainersize 3456 +srccontainerchecksum 1e7e241350d499bd0bf28b1c190b3c73e20d02be12612905305ad53cead422e8ea1b6b0dd633190170d7ab2ac2802559693597a8c6ae8527a7fe83af7cc61463 srcfiles size=3 RELOC/source/generic/babel-friulan/friulan.dtx +runfiles size=1 + RELOC/tex/generic/babel-friulan/friulan.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/friulan -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics multilingual-addon +catalogue-version 1.3 name babel-galician category Package revision 30270 +shortdesc Babel/Polyglossia support for Galician relocated 1 -runfiles size=7 - RELOC/tex/generic/babel-galician/galician.ldf +longdesc The package provides a language description file that enables +longdesc support of Galician either with babel or with polyglossia. +containersize 7192 +containerchecksum 1c8aef52e0eaba8a55e6c0bdaca4ef47012012a85d38ed268207227063d042f2f0b2cbafa3d1e4d71432e3ea6effd2a781ab0aefc536276de36a95d0dc834b68 +doccontainersize 444432 +doccontainerchecksum a60ed8ffc43cb56aeafab8d09e8235eea9482ff8cdabc00da68938d980b20a7067da3286fa8ce19eddf9276b51e78dd944545cb8bb891bc13c31cffbab39544e docfiles size=112 - RELOC/doc/generic/babel-galician/galician.pdf + RELOC/doc/generic/babel-galician/galician.pdf details="Package documentation" RELOC/doc/generic/babel-galician/glbst.tex RELOC/doc/generic/babel-galician/glromidx.tex +srccontainersize 26212 +srccontainerchecksum aef01bd2587b5a452874e67c52bb4adbd89c5203bbe9a338e85449831434cbcd58415afd3d31d6e315eb91dff955750753bdc9cd38e87e3aded5350a350df547 srcfiles size=22 RELOC/source/generic/babel-galician/galician.dtx RELOC/source/generic/babel-galician/galician.ins +runfiles size=7 + RELOC/tex/generic/babel-galician/galician.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/galician +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics multilingual-addon +catalogue-version 4.3c name babel-georgian category Package -revision 33527 -shortdesc Babel +revision 45864 +shortdesc Babel support for Georgian relocated 1 longdesc The package provides support for use of Babel in documents longdesc written in Georgian. The package is adapted for use both under longdesc 'traditional' TeX engines, and under XeTeX and LuaTeX. +containersize 5028 +containerchecksum 07adf0a76fb15951db5dd01a0a1595aa9c8119d6e39e94eb36ac340932f763975abe284d738a52a1fa2a938a14f87fe7ede10758529c3f68c6d573dbccbcbc82 +doccontainersize 424 +doccontainerchecksum b2f45e828e32fef5e4ac130230050f035ec69607c97562a835ef2157ccc6673d4ae452624d2d1aded3552eb71d85d971a7e35d9774ad7b6e4ca7a8e0a71e48c1 +docfiles size=1 + RELOC/doc/generic/babel-georgian/README runfiles size=6 RELOC/tex/generic/babel-georgian/georgian.ldf RELOC/tex/generic/babel-georgian/georgian.sty RELOC/tex/generic/babel-georgian/georgiancaps.tex -docfiles size=1 - RELOC/doc/generic/babel-georgian/readme +catalogue-contact-home http://tex.tsu.ge catalogue-ctan /macros/latex/contrib/babel-contrib/georgian -catalogue-date 2014-05-22 12:07:21 +0200 +catalogue-date 2017-11-21 00:20:29 +0100 catalogue-license lppl1.3 -catalogue-version 2.1 +catalogue-topics georgian multilingual-addon +catalogue-version 2.2 name babel-german category Package -revision 35349 -shortdesc Babel support for documents written in German. -relocated 1 -longdesc The package defines LaTeX support, within the Babel package, of -longdesc German (including its Austrian dialect), in both 'old' and -longdesc 'new' orthographies. -runfiles size=10 +revision 49391 +shortdesc Babel support for documents written in German +relocated 1 +longdesc This bundle is an extension to the babel package for +longdesc multilingual typesetting. It provides all the necessary macros, +longdesc definitions and settings to typeset German documents. The +longdesc bundle includes support for the traditional and reformed German +longdesc orthography as well as for the Austrian and Swiss varieties of +longdesc German. +containersize 3880 +containerchecksum 2aa32e3cd0deb815a559e1722cb2ee423d605449af766a8b7c36c67a0e9081fa0402b88ef5c171186d353a8a57d0ae630fd7eedca1d795bd8130189bf05ab2f3 +doccontainersize 495632 +doccontainerchecksum fcee15f9b0123fd6c5cac11143f6ade9e770f4a3dab07e45bd5cebb30e020be58bb9e43cafee6b4dbc96f8037a84012f900eb33836f7e48607c5424ebfa61947 +docfiles size=189 + RELOC/doc/generic/babel-german/README details="Readme" + RELOC/doc/generic/babel-german/germanb.pdf details="Package documentation (traditional orthography)" + RELOC/doc/generic/babel-german/ngermanb.pdf details="Package documentation (new orthography)" +srccontainersize 14728 +srccontainerchecksum a1fc8b8134042079b7cf5d2497b7802397ab7fd43dc354a7bd9ef3c9a9cc3e2e6f84cdb193653d0147fcbe9a6859e9ddb2aff7f5e25093771c7ce76024eb0b7a +srcfiles size=21 + RELOC/source/generic/babel-german/german.ins + RELOC/source/generic/babel-german/germanb.dtx + RELOC/source/generic/babel-german/ngermanb.dtx +runfiles size=11 RELOC/tex/generic/babel-german/austrian.ldf RELOC/tex/generic/babel-german/german.ldf RELOC/tex/generic/babel-german/germanb.ldf @@ -11717,67 +23682,84 @@ runfiles size=10 RELOC/tex/generic/babel-german/ngermanb.ldf RELOC/tex/generic/babel-german/nswissgerman.ldf RELOC/tex/generic/babel-german/swissgerman.ldf -docfiles size=46 - RELOC/doc/generic/babel-german/README - RELOC/doc/generic/babel-german/germanb.pdf - RELOC/doc/generic/babel-german/ngermanb.pdf -srcfiles size=15 - RELOC/source/generic/babel-german/german.ins - RELOC/source/generic/babel-german/germanb.dtx - RELOC/source/generic/babel-german/ngermanb.dtx +catalogue-contact-repository https://github.com/jspitz/babel-german catalogue-ctan /macros/latex/contrib/babel-contrib/german -catalogue-date 2014-10-10 15:41:35 +0200 +catalogue-date 2018-12-08 11:36:53 +0100 catalogue-license lppl1.3 -catalogue-version 2.7b +catalogue-topics german multilingual-addon +catalogue-version 2.11 name babel-greek category Package -revision 38296 +revision 42010 shortdesc Babel support for documents written in Greek relocated 1 longdesc The file provides modes for monotonic (single-diacritic) and longdesc polytonic (multiple-diacritic) modes of writing. Provision is -longdesc made for Greek function names in mathematics, and for classical- -longdesc era symbols. -runfiles size=7 - RELOC/tex/generic/babel-greek/athnum.sty - RELOC/tex/generic/babel-greek/greek.ldf - RELOC/tex/generic/babel-greek/grmath.sty +longdesc made for Greek function names in mathematics, and for +longdesc classical-era symbols. +containersize 5736 +containerchecksum 20550086fe3f970ecd38d4b7104abe8c40ef1b12c4b139dd612e76808707b2590184436d4d4b9b1f67b23b618e86c2513434d144c73920af552f8b03523f039a +doccontainersize 1023936 +doccontainerchecksum 44017bf5fdc55f37a3e8b14e385b7e36a8f8180b1adbf7c20523c8d7de0d830c0b4dcaea7b50230129318c0fb39363dbbed4a7e1a5525cc834ae721f40bc4383 docfiles size=282 - RELOC/doc/generic/babel-greek/README - RELOC/doc/generic/babel-greek/README.html + RELOC/doc/generic/babel-greek/README details="Readme" + RELOC/doc/generic/babel-greek/README.html details="Readme (HTML)" RELOC/doc/generic/babel-greek/athnum.pdf - RELOC/doc/generic/babel-greek/babel-greek.pdf - RELOC/doc/generic/babel-greek/grmath.pdf + RELOC/doc/generic/babel-greek/babel-greek.pdf details="Documentation" + RELOC/doc/generic/babel-greek/grmath.pdf details="Maths documentation" RELOC/doc/generic/babel-greek/test-greek.pdf RELOC/doc/generic/babel-greek/test-greek.tex RELOC/doc/generic/babel-greek/test-unicode-greek.pdf RELOC/doc/generic/babel-greek/test-unicode-greek.tex RELOC/doc/generic/babel-greek/test-unicode-lgr.pdf RELOC/doc/generic/babel-greek/test-unicode-lgr.tex - RELOC/doc/generic/babel-greek/usage.pdf + RELOC/doc/generic/babel-greek/usage.pdf details="Usage documentation" RELOC/doc/generic/babel-greek/usage.tex +srccontainersize 20004 +srccontainerchecksum 96aa89aff00bf8302f44aba32723317bcc79de85901c70c8aed262d9149dbbe069e01173aafda71144716bbbe8fb599e42d33a0b68dc8930666dca136cb20619 srcfiles size=21 RELOC/source/generic/babel-greek/athnum.dtx RELOC/source/generic/babel-greek/babel-greek.dtx RELOC/source/generic/babel-greek/babel-greek.ins RELOC/source/generic/babel-greek/grmath.dtx +runfiles size=7 + RELOC/tex/generic/babel-greek/athnum.sty + RELOC/tex/generic/babel-greek/greek.ldf + RELOC/tex/generic/babel-greek/grmath.sty catalogue-ctan /macros/latex/contrib/babel-contrib/greek -catalogue-date 2015-09-04 16:00:57 +0200 +catalogue-date 2018-01-13 10:24:37 +0100 catalogue-license lppl1.3 catalogue-topics greek multilingual-addon -catalogue-version 1.9d +catalogue-version 1.9g name babel-hebrew category Package revision 30273 -shortdesc Babel support for Hebrew. +shortdesc Babel support for Hebrew relocated 1 longdesc The package provides the language definition file for support longdesc of Hebrew in babel. Macros to control the use of text direction longdesc control of TeX--XeT and e-TeX are provided (and may be used longdesc elsewhere). Some shortcuts are defined, as well as translations longdesc to Hebrew of standard "LaTeX names". +containersize 17516 +containerchecksum 4690fc4288ba1d2142fcda24153e741a539ddc4a52d3e502c1c349feb19609c7cef1427751af24b93df191f12d2b7cf2d11423052193df01d848987e66744dab +doccontainersize 718868 +doccontainerchecksum cd4b52bb2d207cb2bcd327e2351bf30d18921c7c4f8a8fa79ce0bf8864d6f6a34e2272fd416828c772abb2df5612b4a78f73f54157b6d69b011c008495b93cd5 +docfiles size=197 + RELOC/doc/generic/babel-hebrew/00readme.heb + RELOC/doc/generic/babel-hebrew/heb209.pdf details="Package documentation (LaTeX 2.09 compatibility style files)" + RELOC/doc/generic/babel-hebrew/hebinp.pdf details="Package documentation (Hebrew input encodings for use with LaTeX 2)" + RELOC/doc/generic/babel-hebrew/hebrew.pdf details="Package documentation" +srccontainersize 42724 +srccontainerchecksum 6d380ba803ecb1f6f268ebd2f80da0eca87c7f25d3374ba0a0432f9de6d39632613fb49e108ac9b7d97438b589dc71c37b47927b7387bad8809175355aeabbc6 +srcfiles size=52 + RELOC/source/generic/babel-hebrew/heb209.dtx + RELOC/source/generic/babel-hebrew/hebinp.dtx + RELOC/source/generic/babel-hebrew/hebrew.dtx + RELOC/source/generic/babel-hebrew/hebrew.fdd + RELOC/source/generic/babel-hebrew/hebrew.ins runfiles size=53 RELOC/tex/generic/babel-hebrew/8859-8.def RELOC/tex/generic/babel-hebrew/cp1255.def @@ -11813,62 +23795,95 @@ runfiles size=53 RELOC/tex/generic/babel-hebrew/lheshstk.fd RELOC/tex/generic/babel-hebrew/rlbabel.def RELOC/tex/generic/babel-hebrew/si960.def -docfiles size=197 - RELOC/doc/generic/babel-hebrew/00readme.heb - RELOC/doc/generic/babel-hebrew/heb209.pdf - RELOC/doc/generic/babel-hebrew/hebinp.pdf - RELOC/doc/generic/babel-hebrew/hebrew.pdf -srcfiles size=52 - RELOC/source/generic/babel-hebrew/heb209.dtx - RELOC/source/generic/babel-hebrew/hebinp.dtx - RELOC/source/generic/babel-hebrew/hebrew.dtx - RELOC/source/generic/babel-hebrew/hebrew.fdd - RELOC/source/generic/babel-hebrew/hebrew.ins catalogue-ctan /macros/latex/contrib/babel-contrib/hebrew -catalogue-date 2014-05-22 12:07:21 +0200 +catalogue-date 2018-01-13 10:24:37 +0100 catalogue-license lppl1.3 +catalogue-topics hebrew catalogue-version 2.3h name babel-hungarian category Package -revision 35053 -shortdesc Babel support for Hungarian (Magyar). +revision 49701 +shortdesc Babel support for Hungarian (Magyar) relocated 1 longdesc The package provides a language definition file that enables longdesc support of Magyar (Hungarian) with babel. -runfiles size=61 - RELOC/tex/generic/babel-hungarian/magyar.ldf +containersize 55016 +containerchecksum 5b05fe625155df3a958eaf44dc55190fff60ef356d40e681870ff27adbeaef1dd2b27402d9058d27dec665dbe9127d43a2e07ad02ef5a546c2e77479453678b2 +doccontainersize 728 +doccontainerchecksum 696cff23cc5e2c32034729385c251c8dbeb5f78d11c0f8a0515af480f7a9b5fc5fa6c07d216c5078d5f1c4e71cabe093f023f294dbebb6b203337da9423a438c docfiles size=1 - RELOC/doc/generic/babel-hungarian/README -catalogue-ctan /macros/latex/contrib/babel-contrib/hungarian/magyar.ldf -catalogue-date 2015-03-22 09:07:09 +0100 + RELOC/doc/generic/babel-hungarian/README details="Notes about distribution" +runfiles size=62 + RELOC/tex/generic/babel-hungarian/magyar.ldf +catalogue-contact-home http://www.math.bme.hu/latex/ +catalogue-ctan /macros/latex/contrib/babel-contrib/hungarian +catalogue-date 2019-01-14 17:57:57 +0100 catalogue-license lppl -catalogue-version 1.5 +catalogue-topics multilingual-addon hungarian +catalogue-version 1.5c name babel-icelandic category Package -revision 30275 -shortdesc Babel support for Icelandic. +revision 39387 +shortdesc Babel support for Icelandic relocated 1 longdesc The package provides the language definition file for support longdesc of Icelandic in babel. Some shortcuts are defined, as well as longdesc translations to Icelandic of standard "LaTeX names". -runfiles size=3 - RELOC/tex/generic/babel-icelandic/icelandic.ldf -docfiles size=68 - RELOC/doc/generic/babel-icelandic/icelandic.pdf -srcfiles size=9 +containersize 4232 +containerchecksum 5b6c47c195209906aa93885cbec937cd9fdf4601c6aac0530f6b7a0cb6ce5606a711db4ae716aa0c70ec53f88c504a53e60037c8b89fd5fc9c384f6a3caab70e +doccontainersize 316496 +doccontainerchecksum fe2c431e823db51376bca55859783b79a647ac9b0bdae2971d4f29870e46df7640b07e8a37345ab4b629082a8a34fc9efedb52581ea986d1344bff980b5fa0e4 +docfiles size=79 + RELOC/doc/generic/babel-icelandic/README.md details="Readme" + RELOC/doc/generic/babel-icelandic/icelandic.pdf details="Package documentation" +srccontainersize 10984 +srccontainerchecksum 7254517649b58e0011da88490eb3a1d54196b005939598a3220107941a820b88ad29f5ef1f79e1d5b5702e8aa6eb7fcddae451651f89b83e1cbef6f7373c0549 +srcfiles size=10 RELOC/source/generic/babel-icelandic/icelandic.dtx RELOC/source/generic/babel-icelandic/icelandic.ins +runfiles size=3 + RELOC/tex/generic/babel-icelandic/icelandic.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/icelandic -catalogue-date 2014-05-22 12:07:21 +0200 +catalogue-date 2018-01-13 10:17:26 +0100 +catalogue-license lppl1.3 +catalogue-topics icelandic +catalogue-version 1.2b + +name babel-indonesian +category Package +revision 43235 +shortdesc Support for Indonesian within babel +relocated 1 +longdesc This is the babel style for Indonesian. +containersize 2500 +containerchecksum 9e42cb144d53dc0a076afffdbcd2adb7bb55cbc58feb77916e02beebfd1833fa308a0c78d0c26e1d187386b60572381c881da083c73ac8fcc651e77af17e2093 +doccontainersize 114176 +doccontainerchecksum c4f86b646d67ce4b29e96771ea5657e352ee7633c344f24552a2fde4c387aea41f9694d77114a1454b106646d12d30b277fc9de589d3d4b666b00208978f5bb9 +docfiles size=29 + RELOC/doc/generic/babel-indonesian/README + RELOC/doc/generic/babel-indonesian/indonesian.pdf details="Documentation for Bahasa indonesia version" +srccontainersize 4932 +srccontainerchecksum 30a1b987fee18a002316bb51e3497d22696e83ed48cb4a6e40da2f82876cd2ffc5b4ab95a0c1cef8a62f3d0a610401bf6552d5080dad3a9d0c45d4fca53dfe7b +srcfiles size=5 + RELOC/source/generic/babel-indonesian/indonesian.dtx + RELOC/source/generic/babel-indonesian/indonesian.ins +runfiles size=5 + RELOC/tex/generic/babel-indonesian/bahasa.ldf + RELOC/tex/generic/babel-indonesian/bahasai.ldf + RELOC/tex/generic/babel-indonesian/indon.ldf + RELOC/tex/generic/babel-indonesian/indonesian.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/indonesian +catalogue-date 2018-01-13 10:17:26 +0100 catalogue-license lppl1.3 -catalogue-version 1.1g +catalogue-topics bahasa-indonesia+malaysia multilingual +catalogue-version 1.0m name babel-interlingua category Package revision 30276 -shortdesc Babel support for Interlingua. +shortdesc Babel support for Interlingua relocated 1 longdesc The package provides the language definition file for support longdesc of Interlingua in babel. Translations to Interlingua of @@ -11876,60 +23891,114 @@ longdesc standard "LaTeX names" (no shortcuts are provided). Interlingua longdesc itself is an auxiliary language, built from the common longdesc vocabulary of Spanish/Portuguese, English, Italian and French, longdesc with some normalisation of spelling. -runfiles size=1 - RELOC/tex/generic/babel-interlingua/interlingua.ldf +containersize 2256 +containerchecksum e562cdb5b7cc35d14f4696cd3b85c6578a4daaf7899bf684026e50ade2113ee2314405756dd5f6ab91b6faea4da59a3546e30a18ba77037eab581ae3c98b044d +doccontainersize 109964 +doccontainerchecksum f2f86fcb4a132a9c1f5c65007c8f1662a8498a53f265cc778ad3ba33120a97317aac890c1ff72cc6b94727d215937352ae268cf51344053bec6e0ee5687d0f69 docfiles size=27 - RELOC/doc/generic/babel-interlingua/interlingua.pdf + RELOC/doc/generic/babel-interlingua/interlingua.pdf details="Package documentation" +srccontainersize 3992 +srccontainerchecksum 260b2b01ec451d2a37e00e83c79a09f359a3e4a7c34b1396892259442a3f9d2df683e74e6f14a5cbb9b797f8cdc24d0bfdc7f9c3dbe124eb901f43d393f5e1bf srcfiles size=4 RELOC/source/generic/babel-interlingua/interlingua.dtx RELOC/source/generic/babel-interlingua/interlingua.ins +runfiles size=1 + RELOC/tex/generic/babel-interlingua/interlingua.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/interlingua -catalogue-date 2014-05-22 12:07:21 +0200 +catalogue-date 2018-01-13 10:24:37 +0100 catalogue-license lppl1.3 +catalogue-topics interlingua catalogue-version 1.6 name babel-irish category Package revision 30277 -shortdesc Babel support for Irish. +shortdesc Babel support for Irish relocated 1 longdesc The package provides the language definition file for support longdesc of Irish Gaelic in babel. The principal content is translations longdesc to Irish of standard "LaTeX names". (No shortcuts are defined.) -runfiles size=1 - RELOC/tex/generic/babel-irish/irish.ldf +containersize 2276 +containerchecksum d9b1486da57f9685e136e14adc61773ec0b3a58ade370da8383476862ad798f26609329d445ee6dd0c6419c98342b720a6880939324d19f67e1528fe99ea3692 +doccontainersize 110184 +doccontainerchecksum f5dd55c6a527cf19eebe492271d1404be3c995cac004d41160522c6c71e4a4636c32547fd64b93beae41b60d8a48184ff9b498f82ca0453bc72b601de3d66cee docfiles size=27 - RELOC/doc/generic/babel-irish/irish.pdf + RELOC/doc/generic/babel-irish/irish.pdf details="Package documentation" +srccontainersize 4252 +srccontainerchecksum df023dd1a4b04e022f46f7202b616e6329b4673084876c1afaadd41faf4414e908411deda1ab909246ea7e1922c46b0a70b5e3e3fbc6c4855e060d47e45ca21e srcfiles size=4 RELOC/source/generic/babel-irish/irish.dtx RELOC/source/generic/babel-irish/irish.ins +runfiles size=1 + RELOC/tex/generic/babel-irish/irish.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/irish -catalogue-date 2014-05-22 12:07:21 +0200 +catalogue-date 2018-01-13 10:24:37 +0100 catalogue-license lppl1.3 +catalogue-topics irish-gaelic catalogue-version 1.0h name babel-italian category Package -revision 36645 -shortdesc Babel support for Italian text. +revision 49606 +shortdesc Babel support for Italian text relocated 1 longdesc The package provides language definitions for use in babel. +containersize 3764 +containerchecksum 5950227b917860a1954b8050ce2949cf5decb0340abd1bad36464a73f84f0a0f86ca7f81c2c412b90a3d7b12a9355d383391bc2eae6ceaaee9328dc4b46252c3 +doccontainersize 443492 +doccontainerchecksum 5be388f15aa9a2a84e9770f1be49c6b2cc1e0539d5ad9149ce02eb7154253292105d10f83ef291b30c079b0fd29aed53394ebb9270cb7326a0e94014aa0e9403 +docfiles size=110 + RELOC/doc/generic/babel-italian/README.txt details="Readme" + RELOC/doc/generic/babel-italian/italian.pdf details="Package documentation" +srccontainersize 21960 +srccontainerchecksum 5256bf88ae2bd3160cc1b11a757e0541e0dc5be05e6a0033ab5b4471d75845265921a2771320f397f957ec4f77882577bb23bafa1b91eeca74af7ff9570b3857 +srcfiles size=18 + RELOC/source/generic/babel-italian/italian.dtx runfiles size=3 RELOC/tex/generic/babel-italian/italian.ldf -docfiles size=92 - RELOC/doc/generic/babel-italian/italian.pdf -srcfiles size=19 - RELOC/source/generic/babel-italian/italian.dtx - RELOC/source/generic/babel-italian/italian.ins catalogue-ctan /macros/latex/contrib/babel-contrib/italian -catalogue-date 2015-03-27 10:41:04 +0100 +catalogue-date 2019-01-05 20:06:26 +0100 +catalogue-license lppl1.3c +catalogue-topics italian multilingual-addon +catalogue-version 1.4.01 + +name babel-japanese +category Package +revision 50735 +shortdesc Babel support for Japanese +relocated 1 +longdesc This package provides a japanese option for the babel package. +longdesc It defines all the language definition macros in Japanese. +longdesc Currently this package works with pLaTeX, upLaTeX, XeLaTeX and +longdesc LuaLaTeX. +containersize 3160 +containerchecksum eeab94dee49061fabb116702c1cdd0c6ff11eb61994c4bc20bc2147329411c42f5db7faae78141ca53380c308f8b310f592abbbc77d67654270b6b1d72ca5cca +doccontainersize 184256 +doccontainerchecksum 152a3c6d723dc8bcbc046275993b207103e12ab551216e87aa999c2c912acf2ba7e1bd54b0a1c8099940c62f564a268da04372ee559da7a7c56b6e0a32e29b4f +docfiles size=48 + RELOC/doc/generic/babel-japanese/README.md details="Readme" + RELOC/doc/generic/babel-japanese/japanese-sample.pdf details="Example of use (Japanese)" language="ja" + RELOC/doc/generic/babel-japanese/japanese-sample.tex + RELOC/doc/generic/babel-japanese/japanese.pdf details="Package documentation (Japanese)" language="ja" +srccontainersize 7384 +srccontainerchecksum 04bec4bd09f46c0c6e25a0f59ce2435a5d5fe222268616b02314ef091315e3bdb882381890fd304c07d5398e95e217aac46b47734fc9e6efbb32649c9f974cf2 +srcfiles size=8 + RELOC/source/generic/babel-japanese/Makefile + RELOC/source/generic/babel-japanese/japanese.dtx + RELOC/source/generic/babel-japanese/japanese.ins +runfiles size=3 + RELOC/tex/generic/babel-japanese/japanese.ldf +catalogue-contact-repository https://github.com/texjporg/babel-japanese +catalogue-ctan /macros/latex/contrib/babel-contrib/japanese +catalogue-date 2019-04-03 17:03:05 +0200 catalogue-license lppl1.3 -catalogue-version 1.3n +catalogue-topics japanese multilingual-addon +catalogue-version 2.2 name babel-kurmanji category Package revision 30279 -shortdesc Babel support for Kurmanji. +shortdesc Babel support for Kurmanji relocated 1 longdesc The package provides the language definition file for support longdesc of Kurmanji in babel. Kurmanji belongs to the family of Kurdish @@ -11938,16 +24007,23 @@ longdesc to Kurmanji of standard "LaTeX names". Note that the package is longdesc dealing with 'Northern' Kurdish, written using a Latin-based longdesc alphabet. The arabxetex package offers support for Kurdish longdesc written in Arabic script. -runfiles size=2 - RELOC/tex/generic/babel-kurmanji/kurmanji.ldf +containersize 2928 +containerchecksum bbdd05e7106494f23892f3455ad224d3deb1881f5a73720e2c73e7401514fed324484416def64e2e8fd7c2416b521fb2d4527585d2302a220330925c296afecb +doccontainersize 124800 +doccontainerchecksum c31f7efd7415f3439635b293c9aad2cfc2632352534e579c0f8d3e74443fb7aa88a95e19735a7b65137d81899ad9d2ad8bbdb28c5da2ff05a2be9dbad552b0f8 docfiles size=31 - RELOC/doc/generic/babel-kurmanji/kurmanji.pdf + RELOC/doc/generic/babel-kurmanji/kurmanji.pdf details="Package documentation" +srccontainersize 6140 +srccontainerchecksum 88f600cac9509695c36969ee2bb2041142dee729381a1ffa49489f32454e4c53b4d1795407436df9c31da040cc1d0c7e38077fc786e5cd6832ab9ccd14453d2c srcfiles size=6 RELOC/source/generic/babel-kurmanji/kurmanji.dtx RELOC/source/generic/babel-kurmanji/kurmanji.ins +runfiles size=2 + RELOC/tex/generic/babel-kurmanji/kurmanji.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/kurmanji -catalogue-date 2014-05-22 12:36:10 +0200 +catalogue-date 2018-04-25 12:44:05 +0200 catalogue-license lppl1.3 +catalogue-topics kurmanji kurdish multilingual-addon catalogue-version 1.1 name babel-latin @@ -11960,182 +24036,326 @@ longdesc of Latin in babel. Translations to Latin (in both modern and longdesc medieval spelling) of standard "LaTeX names", and some longdesc shortcuts, are provided. Apart from the modern vs. medieval longdesc setting, a further switch permits addition of prosodic marks. -runfiles size=2 - RELOC/tex/generic/babel-latin/latin.ldf +containersize 2996 +containerchecksum 56ede1f441e96e3f17c165de65a7703c8e8897c17ef775fef1e30e1d2382eee0738ba91c97717694edc7e932ee0dbbfd1600d16ff86d6bbea1ccd5cfcec82ed2 +doccontainersize 156012 +doccontainerchecksum 6dc352b57346f0caaebc0832d12a9c1f13743e5cc39285b4d81edc23cd5f21692165040becf4ec12ca6d1acf6c19f1b2ab1da8d79e3e82ccc2dc865322bfaacb docfiles size=39 - RELOC/doc/generic/babel-latin/latin.pdf + RELOC/doc/generic/babel-latin/latin.pdf details="Package documentation" +srccontainersize 13420 +srccontainerchecksum 9f04205ee8e5c18a0ec6e20fdd7ab0d89d4e1ea28d5c3ad819ca9d09358466215b4d0c2b18d77ba5cca604b3997814ce39b33fe7f438b5b554500b5f4edd783a srcfiles size=11 RELOC/source/generic/babel-latin/latin.dtx RELOC/source/generic/babel-latin/latin.ins +runfiles size=2 + RELOC/tex/generic/babel-latin/latin.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/latin -catalogue-date 2015-08-21 11:47:02 +0200 +catalogue-date 2018-01-13 10:24:37 +0100 catalogue-license lppl1 catalogue-topics latin multilingual-addon catalogue-version 3.5 name babel-latvian category Package -revision 34377 -shortdesc Babel support for Latvian. +revision 46681 +shortdesc Babel support for Latvian relocated 1 longdesc The package provides the language definition file for support longdesc of Latvian in babel. -runfiles size=3 - RELOC/tex/generic/babel-latvian/latvian.ldf -docfiles size=61 - RELOC/doc/generic/babel-latvian/README - RELOC/doc/generic/babel-latvian/latvian.pdf +containersize 4140 +containerchecksum 0e19f04d81195b77ae200946e5502fccfaedca5a6da8080a0e7351b684c7d1802a1d9d05794006561109dc8f9a0c04f45266e74068157caa9c470899cbec5230 +doccontainersize 267488 +doccontainerchecksum e7c4f93db73431708eb902af924672727a6dc6d1cc9d17ca92436cea51310a10538f32825c13144ac35ec8633fc146d1788492f9c6ecf7b11ed72893ab6393fb +docfiles size=67 + RELOC/doc/generic/babel-latvian/README.md details="Readme" + RELOC/doc/generic/babel-latvian/latvian.pdf details="Package documentation" +srccontainersize 6236 +srccontainerchecksum ce0c59467b4cf94857bd0713283f46aa5c64987f5a4c68536566b98693b93e61ead42049a2ca323eab3b2b9842623f1318f2c27ab4a28d3e4660b8edffd988c0 srcfiles size=6 RELOC/source/generic/babel-latvian/latvian.dtx RELOC/source/generic/babel-latvian/latvian.ins +runfiles size=3 + RELOC/tex/generic/babel-latvian/latvian.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/latvian -catalogue-date 2014-07-01 22:21:53 +0200 +catalogue-date 2018-02-19 17:17:15 +0100 catalogue-license lppl1.3 -catalogue-version 2.0a +catalogue-topics latvian multilingual-addon +catalogue-version 2.0b + +name babel-macedonian +category Package +revision 39587 +shortdesc Babel module to support Macedonian Cyrillic +relocated 1 +longdesc The package provides support for Macedonian documents written +longdesc in Cyrillic, in babel. +containersize 4832 +containerchecksum c061ca1ec358e4d8df05e0adadd5d87695cf3b9f86cab52eaa0e08b1f5b1fedb66febe32107e74c1926fa4d697b056d7d3f119db525b90ff7e7bde30fd015508 +doccontainersize 207284 +doccontainerchecksum 7284141fbecedad06cfef78f50b4c13ebb3af76ced474c456a364c97943b51b9a233ecf6797e561ab0936ef7d082adc80daea0de4e961baab60e494bd72f7061 +docfiles size=52 + RELOC/doc/generic/babel-macedonian/README.md details="Readme" + RELOC/doc/generic/babel-macedonian/macedonian.pdf details="Package documentation" +srccontainersize 11544 +srccontainerchecksum c5866f925540742391981848fb5a76908863fba8a7c77da97b6e6bc634a8425c2d39459f789749cd1ccc4e7888e6d0f5b40d3d9a0a76611f4b1ff2db80866c72 +srcfiles size=11 + RELOC/source/generic/babel-macedonian/macedonian.dtx + RELOC/source/generic/babel-macedonian/macedonian.ins +runfiles size=4 + RELOC/tex/generic/babel-macedonian/macedonian.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/macedonian +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics macedonian multilingual-addon + +name babel-malay +category Package +revision 43234 +shortdesc Support for Malay within babel +relocated 1 +longdesc This is the babel style for Malay. +containersize 2516 +containerchecksum 6e2f95eb95a7ffe0b21789a65e74936139d92381867e507ce56bd8eb39b4061b177c10fed0a0226e9091b963370d3c001115473625910f03b699d5517350f2da +doccontainersize 114256 +doccontainerchecksum b06395639e743571870dee10e029e4622c55683d7a9d728fff381bcabe4bf694511230795c79da4080299938acf66d03cc55fd45cb8426b484e19e0fb0f73b10 +docfiles size=29 + RELOC/doc/generic/babel-malay/README + RELOC/doc/generic/babel-malay/malay.pdf details="Documentation for Bahasa Malaysia version" +srccontainersize 5056 +srccontainerchecksum 4e7e47a29802a7369f7bdcf29ac0fec13afd69f42c9b01060ffadb2cd8d1f1656f7f6ae8fe5ced67d9ce6438c26a07743a18bd38c561fbe8357e8ea3c685a5dc +srcfiles size=5 + RELOC/source/generic/babel-malay/malay.dtx + RELOC/source/generic/babel-malay/malay.ins +runfiles size=5 + RELOC/tex/generic/babel-malay/bahasam.ldf + RELOC/tex/generic/babel-malay/malay.ldf + RELOC/tex/generic/babel-malay/melayu.ldf + RELOC/tex/generic/babel-malay/meyalu.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/malay +catalogue-date 2018-01-13 10:17:26 +0100 +catalogue-license lppl1.3 +catalogue-topics bahasa-indonesia+malaysia multilingual +catalogue-version 1.0m name babel-norsk category Package revision 30281 -shortdesc Babel support for Norwegian. +shortdesc Babel support for Norwegian relocated 1 longdesc The package provides the language definition file for support longdesc of Norwegian in babel. Some shortcuts are defined, as well as longdesc translations to Norsk of standard "LaTeX names". -runfiles size=2 - RELOC/tex/generic/babel-norsk/norsk.ldf +containersize 2932 +containerchecksum a57f44910dea4a1b9fc94d2705e1627fd42ef21a35737067bbebf6c56f6e4e87031b40b41d68a4f90329aa38a468a87c8c91ca60e10af2d064f502ef9e60d3a0 +doccontainersize 142428 +doccontainerchecksum 646d8bcb3bb4b864fc9cab92a1ae264801222cc70eeae8db63be8ace926cc62918031726da9e758ebb4bc19797eea498af10437066612ff7dc3ca3c99bab4749 docfiles size=35 - RELOC/doc/generic/babel-norsk/norsk.pdf + RELOC/doc/generic/babel-norsk/norsk.pdf details="Package documentation" +srccontainersize 6784 +srccontainerchecksum 4643e3a1f3612c9966da916949e51346c7cb595ee8a2b98d585ae12e51fbf2cf23e2817b5c21575d80feaeaf399d3e1f0db6fad4d228b2b5f9a25d51ac3a7941 srcfiles size=7 RELOC/source/generic/babel-norsk/norsk.dtx RELOC/source/generic/babel-norsk/norsk.ins +runfiles size=2 + RELOC/tex/generic/babel-norsk/norsk.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/norsk -catalogue-date 2014-05-22 12:36:10 +0200 +catalogue-date 2018-01-13 10:24:37 +0100 catalogue-license lppl1.3 +catalogue-topics norsk multilingual-addon catalogue-version 2.0i +name babel-occitan +category Package +revision 39608 +shortdesc Babel support for Occitan +relocated 1 +longdesc Occitan language description file with usage instructions. +containersize 2384 +containerchecksum f1f2f26b5466d10e995d76f7003c202650e3976b82b431d2bae768a582bc0c5662fc120739c49fcfd1226da3595c8a6b2e8c952a491718c45e69770c09d542a9 +doccontainersize 411824 +doccontainerchecksum 86433fa646eb6b2f7ee0ba54f1dafa73b81bd98012859c59408883cc76ec876720ef526cb2f526bd4a8385c0371f9bb01ae6d604661deabb4ec920172986adf0 +docfiles size=102 + RELOC/doc/generic/babel-occitan/README details="Readme" + RELOC/doc/generic/babel-occitan/occitan.pdf details="Package documentation" +srccontainersize 10520 +srccontainerchecksum 95bd15481ed6d20f1b9b71fad9661e5a12e4f29cda61dc8910a1601fb0f97cb4797d5ecf8137c9465a623288dc05e58c84740ee5b663b1f30f1c984d4dde9b03 +srcfiles size=8 + RELOC/source/generic/babel-occitan/occitan.dtx +runfiles size=2 + RELOC/tex/generic/babel-occitan/occitan.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/occitan +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics multilingual-addon occitan +catalogue-version 0.2 + name babel-piedmontese category Package revision 30282 -shortdesc Babel support for Piedmontese. +shortdesc Babel support for Piedmontese relocated 1 longdesc The package provides the language definition file for support longdesc of Piedmontese in babel. Some shortcuts are defined, as well as longdesc translations to Piedmontese of standard "LaTeX names". -runfiles size=1 - RELOC/tex/generic/babel-piedmontese/piedmontese.ldf +containersize 1804 +containerchecksum 72fe6338ef6f172a23790402a632881906689117e7227b6f2f2fb6129fca9a7d44c42ddd48e8286252f3b5fce9dc34439594882c1f80f33557ef5ef70afe4993 +doccontainersize 106224 +doccontainerchecksum a2fa0cc72a205fcc25c2baeb7717a573bf8f2db5438e49c9de8a90e8da37d4f267ff30f08f8bb79f08756f5d227acddba8c069c8a5c257adf95c3afac271927f docfiles size=26 - RELOC/doc/generic/babel-piedmontese/piedmontese.pdf + RELOC/doc/generic/babel-piedmontese/piedmontese.pdf details="Package documentation" +srccontainersize 4044 +srccontainerchecksum 6020ade081108365e4b23d9b3c9ef789e95764748d06a647a071e8ad77c945593a680c7669c57e989e71104a8bdfbf857eec9599327560e4453e0a81b9d309e8 srcfiles size=3 RELOC/source/generic/babel-piedmontese/piedmontese.dtx +runfiles size=1 + RELOC/tex/generic/babel-piedmontese/piedmontese.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/piedmontese -catalogue-date 2014-05-22 12:36:10 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics piedmontese multilingual-addon catalogue-version 1.0 name babel-polish category Package revision 30283 -shortdesc Babel support for Polish. +shortdesc Babel support for Polish relocated 1 longdesc The package provides the language definition file for support longdesc of Polish in babel. Some shortcuts are defined, as well as longdesc translations to Polish of standard "LaTeX names". -runfiles size=3 - RELOC/tex/generic/babel-polish/polish.ldf +containersize 3360 +containerchecksum cfd5f27f92e75883572adce926cbcfa9d9248367979c3b3411e6ca1c2d4bf441d2fa790dfff94f0f6001c68f354628334aa0a920ee68900398879c978cf962e4 +doccontainersize 134416 +doccontainerchecksum 6f12e4c792eda6ec33db820bf3e0c9a0fbec8f07adf413c4c98d40624cbf8d46588e16271e459eedcb37ceb2f89f13c3a9dab89122172fe2b8ee9330ab6109fe docfiles size=33 - RELOC/doc/generic/babel-polish/polish.pdf + RELOC/doc/generic/babel-polish/polish.pdf details="Package documentation" +srccontainersize 7592 +srccontainerchecksum 19d6cd158e48666b843628d0325d0e52ebbe137d28686d8b31199e9bad1c4d3393487aa300179688af5b9f7307eea8376f8ba82ed2209efcf39abef094787d82 srcfiles size=8 RELOC/source/generic/babel-polish/polish.dtx RELOC/source/generic/babel-polish/polish.ins +runfiles size=3 + RELOC/tex/generic/babel-polish/polish.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/polish -catalogue-date 2014-05-22 12:36:10 +0200 +catalogue-date 2018-01-13 10:24:37 +0100 catalogue-license lppl1.3 +catalogue-topics polish catalogue-version 1.2l name babel-portuges category Package revision 30284 -shortdesc Babel support for Portuges. +shortdesc Babel support for Portuges relocated 1 longdesc The package provides the language definition file for support longdesc of Portuguese and Brazilian Portuguese in babel. Some shortcuts longdesc are defined, as well as translations to Portuguese of standard longdesc "LaTeX names". -runfiles size=2 - RELOC/tex/generic/babel-portuges/portuges.ldf +containersize 2704 +containerchecksum 5762aed39d183575921e0a6d4210d37b5cc25e66288c3c5eba18ce5b2854de8fd440a738faec95a4ec537a3d5c9667f8f2f7d7cd30eff96531062059d90ba97d +doccontainersize 146188 +doccontainerchecksum 34c0d961f0cf2eba8c71a0e770d1539eb4825c50f8fd91046697d9b55fb4b45c54b98d69e82b3567faeddc1b59535d32d3d99e6ba9b10d6bb8ecd01c85ee6334 docfiles size=36 - RELOC/doc/generic/babel-portuges/portuges.pdf + RELOC/doc/generic/babel-portuges/portuges.pdf details="Package documentation" +srccontainersize 6648 +srccontainerchecksum 524f94da19dd272d73cf4ded57f7e7d450d155ea0c7dd004e572811837e4ce25e6d0d02739c11db2647956cd3df99dd26eb648a7556fcc55b70eaedc975a3dbc srcfiles size=7 RELOC/source/generic/babel-portuges/portuges.dtx RELOC/source/generic/babel-portuges/portuges.ins +runfiles size=2 + RELOC/tex/generic/babel-portuges/portuges.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/portuges -catalogue-date 2014-05-22 12:36:10 +0200 +catalogue-date 2018-01-13 10:24:37 +0100 catalogue-license lppl1.3 +catalogue-topics portuguese portuguese-br catalogue-version 1.2q name babel-romanian category Package revision 30285 -shortdesc Babel support for Romanian. +shortdesc Babel support for Romanian relocated 1 longdesc The package provides the language definition file for support longdesc of Romanian in babel. Translations to Romanian of standard longdesc "LaTeX names" are provided. -runfiles size=1 - RELOC/tex/generic/babel-romanian/romanian.ldf +containersize 2176 +containerchecksum d2aca8f17ae173c36185d6d3514b0b09f76233e44f30177a50240ef0cf0f25f85767a6fc5ee0f94e2eff0df0b94fbca08eb048e95b35a631b7d30a1fbf6c23e6 +doccontainersize 113084 +doccontainerchecksum 876a8cd9e515ecad570ce23686b71e896fa377ce8fb4840e511430aabb05e9cb03f614167fa2abd13328d0ea7f4eebf7044a65db584b95ce4c64bd37d2602b2e docfiles size=28 - RELOC/doc/generic/babel-romanian/romanian.pdf + RELOC/doc/generic/babel-romanian/romanian.pdf details="Package documentation" +srccontainersize 4340 +srccontainerchecksum 493834afa2339a8a63c017ca880ec07626a62b88f76688192253985bb5b254412409c1128714a2ce8a7f7a296cef6ad9ae67b32a276372c811933df8d2929e2b srcfiles size=5 RELOC/source/generic/babel-romanian/romanian.dtx RELOC/source/generic/babel-romanian/romanian.ins +runfiles size=1 + RELOC/tex/generic/babel-romanian/romanian.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/romanian -catalogue-date 2014-05-22 12:36:10 +0200 +catalogue-date 2018-01-13 10:24:37 +0100 catalogue-license lppl1.3 +catalogue-topics romanian catalogue-version 1.2l name babel-romansh category Package revision 30286 -shortdesc Babel/Polyglossia support for the Romansh language. +shortdesc Babel/Polyglossia support for the Romansh language relocated 1 longdesc The package provides a language description file that enables longdesc support of Romansh either with babel or with polyglossia. -runfiles size=1 - RELOC/tex/generic/babel-romansh/romansh.ldf +containersize 1132 +containerchecksum db28e78ce4e028ead2f31fc84d0e7d8997a18dff3bf6aed0301b79bfc7bdc52a8741f9975766d36ca9ca2af9908e7e0bda9e454abf268a1eebf4693c30f5a5e8 +doccontainersize 111840 +doccontainerchecksum 42f9b63d92e522b596839d10c1b90ee9052cac86cdd54ac408063c24456b2a7b5adbfc8208a0a388fcffbb19b98ae0810f7da9d6bc517ddeeab78c8389bdd5a7 docfiles size=28 - RELOC/doc/generic/babel-romansh/romansh.pdf + RELOC/doc/generic/babel-romansh/romansh.pdf details="Package documentation" +srccontainersize 3200 +srccontainerchecksum e26e9ec260d7f01550799f90c6bb76c0c29cd200896c4634085627599f5c3d7438159ea9f72df416e334200a7e1aa3f063dfe9bac5817f55c8f6cc83fe906a63 srcfiles size=2 RELOC/source/generic/babel-romansh/romansh.dtx +runfiles size=1 + RELOC/tex/generic/babel-romansh/romansh.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/romansh -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics multilingual-addon name babel-russian category Package -revision 37209 -shortdesc Russian language module for Babel. +revision 45007 +shortdesc Russian language module for Babel relocated 1 longdesc The package provides support for use of Babel in documents longdesc written in Russian (in both "traditional" and modern forms). longdesc The support is adapted for use both under 'traditional' TeX longdesc engines, and under XeTeX and LuaTeX. -runfiles size=6 - RELOC/tex/generic/babel-russian/russianb.ldf -docfiles size=37 - RELOC/doc/generic/babel-russian/README - RELOC/doc/generic/babel-russian/russianb.pdf -srcfiles size=23 +containersize 6180 +containerchecksum 6072d24abd098a037a97c9bc139db9454e363b35ab1b84f2641684aa0e95ab3747068a715522e2716cc1dfcd129404f038aa5829054abc29102306e84cb27070 +doccontainersize 138068 +doccontainerchecksum 702b72058f3142b8e5c2d1e752ef46622f688bbe42a7afc3e93251dd42bced6543aadc4d9ed70865d8fc7868b2c560231489e521eb63ec897068b7d712d732cf +docfiles size=36 + RELOC/doc/generic/babel-russian/README details="Readme" + RELOC/doc/generic/babel-russian/russianb.pdf details="Package documentation" +srccontainersize 23808 +srccontainerchecksum 307e7b28b91c02dc8287d2567eaf057597739d04a5db1ad3ccee3b190c01d5161426ab50e1849294f1222add41b322047d372115e31200588f59317b33d49c11 +srcfiles size=24 RELOC/source/generic/babel-russian/russianb.dtx RELOC/source/generic/babel-russian/russianb.ins +runfiles size=7 + RELOC/tex/generic/babel-russian/russianb.ldf +catalogue-contact-bugs https://github.com/kia999/babel-russian/issues +catalogue-contact-home https://github.com/kia999/babel-russian catalogue-ctan /macros/latex/contrib/babel-contrib/russian -catalogue-date 2015-05-05 07:39:59 +0200 +catalogue-date 2017-08-10 18:00:28 +0200 catalogue-license lppl1.3 -catalogue-version 1.3g +catalogue-topics multilingual-addon russian +catalogue-version 1.3j name babel-samin category Package revision 30288 -shortdesc Babel support for Samin. +shortdesc Babel support for Samin relocated 1 longdesc The package provides the language definition file for support longdesc of North Sami in babel. (Several Sami dialects/languages are @@ -12144,147 +24364,194 @@ longdesc Russia). Not all use the same alphabet, and no attempt is made longdesc to support any other than North Sami here. Some shortcuts are longdesc defined, as well as translations to Norsk of standard "LaTeX longdesc names". -runfiles size=1 - RELOC/tex/generic/babel-samin/samin.ldf +containersize 2324 +containerchecksum 8a9e832e988da76ca26d87ab54438048d3d76cf02027ac9120d1277096d2495ece671607d32182cc5f9a61032b1ec33695f6592796680aaba0b65c142aa8a43a +doccontainersize 125092 +doccontainerchecksum a8d43e73b4ab86378c5e3d2b402298580dfaf19afcce509ffa8ac747d68627c21b58020dd823528073240e1a28a2178157f9752d587286a0168fc3047cacd0cd docfiles size=31 - RELOC/doc/generic/babel-samin/samin.pdf + RELOC/doc/generic/babel-samin/samin.pdf details="Package documentation" +srccontainersize 4384 +srccontainerchecksum 2e0fe9724a55daefdc3196fc2934d3551b4e738be4d6940a25a091c173f220f2853b077e5534ac20f868954e360e547fbc7d622507d227b8cb0bf7e074e57f48 srcfiles size=4 RELOC/source/generic/babel-samin/samin.dtx RELOC/source/generic/babel-samin/samin.ins +runfiles size=1 + RELOC/tex/generic/babel-samin/samin.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/samin -catalogue-date 2014-05-22 12:43:44 +0200 +catalogue-date 2018-01-13 10:24:37 +0100 catalogue-license lppl1.3 +catalogue-topics samin catalogue-version 1.0c name babel-scottish category Package revision 30289 -shortdesc Babel support for Scottish Gaelic. +shortdesc Babel support for Scottish Gaelic relocated 1 longdesc The package provides the language definition file for support longdesc of Gaidhlig (Scottish Gaelic) in babel. Some shortcuts are longdesc defined, as well as translations of standard "LaTeX names". -runfiles size=1 - RELOC/tex/generic/babel-scottish/scottish.ldf +containersize 2260 +containerchecksum a2c708d9e116933fd00619fa8d89e30aecccbfe162c96eac22055bc442276863e8957481787d94a75507c2662ff4fcd13760b454d12b811dc4659205cdf5825b +doccontainersize 113832 +doccontainerchecksum b32687935329933a733d239a58d7cbb7c4721c4fe37c703891547c2e6e82503235a0420890a9f025cb81a5c86148bd5ac2301da20d538781fa6f2831939c8009 docfiles size=28 - RELOC/doc/generic/babel-scottish/scottish.pdf + RELOC/doc/generic/babel-scottish/scottish.pdf details="Package documentation" +srccontainersize 4100 +srccontainerchecksum 8ec0b8a65d433f978db671a344ff22263929c96b742ab7c11c0b47eb2e2f2d652064fefb4a19cc3f91a95cf0abe3450574a3381917fbd239be1bc89d002f99e2 srcfiles size=4 RELOC/source/generic/babel-scottish/scottish.dtx RELOC/source/generic/babel-scottish/scottish.ins +runfiles size=1 + RELOC/tex/generic/babel-scottish/scottish.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/scottish -catalogue-date 2014-05-22 12:43:44 +0200 +catalogue-date 2018-01-13 10:24:37 +0100 catalogue-license lppl1.3 +catalogue-topics scottish multilingual-addon catalogue-version 1.0g +name babel-serbian +category Package +revision 30290 +shortdesc Babel/Polyglossia support for Serbian +relocated 1 +longdesc The package provides a language description file that enables +longdesc support of Serbian either with babel or with polyglossia. +containersize 2560 +containerchecksum d853c396b2499489ecb9d6b5105c32d657c4f7406cefb8356b59a48f0a16d173a1d08fc1e3c07e9317926b2ec32c935ae72a6a8cb868f138ceb16ac79208847f +doccontainersize 130532 +doccontainerchecksum 935ddcee5f53fc402d96ef186d966319119a611816b4503f6b8343d8f2c4ded9e11fe99e583f8b578d403ccf4b3260bf7da0ad23434290764d9ebea4d61537f0 +docfiles size=32 + RELOC/doc/generic/babel-serbian/serbian.pdf details="Package documentation" +srccontainersize 5268 +srccontainerchecksum 0d24a0172899916c1b8cc800fc9c6605f4e55db1a947934c82172474abdd02f1a18f1fe840332e89dddbcc675d060a2e00f8873bba56d35c333993d9191a4c35 +srcfiles size=5 + RELOC/source/generic/babel-serbian/serbian.dtx + RELOC/source/generic/babel-serbian/serbian.ins +runfiles size=2 + RELOC/tex/generic/babel-serbian/serbian.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/serbian +catalogue-date 2018-01-13 10:24:37 +0100 +catalogue-license lppl1.3 +catalogue-topics multilingual-addon +catalogue-version 1.0d + name babel-serbianc category Package -revision 30348 -shortdesc Babel module to support Serbian Cyrillic. +revision 49693 +shortdesc Babel module to support Serbian Cyrillic relocated 1 longdesc The package provides support for Serbian documents written in longdesc Cyrillic, in babel. -runfiles size=3 - RELOC/tex/generic/babel-serbianc/serbianc.ldf - RELOC/tex/generic/babel-serbianc/serbianc.sty -docfiles size=34 - RELOC/doc/generic/babel-serbianc/COPYING - RELOC/doc/generic/babel-serbianc/ChangeLog - RELOC/doc/generic/babel-serbianc/Copyright - RELOC/doc/generic/babel-serbianc/INSTALL - RELOC/doc/generic/babel-serbianc/README - RELOC/doc/generic/babel-serbianc/README.Files - RELOC/doc/generic/babel-serbianc/README.serbianc - RELOC/doc/generic/babel-serbianc/sample.pdf - RELOC/doc/generic/babel-serbianc/sample.tex - RELOC/doc/generic/babel-serbianc/serbianc.patch -srcfiles size=4 +containersize 4032 +containerchecksum bcf0ff70ccdcd6f3e74ac54ab0acd0f5d804b7d7e91c86524242fd75423be3648b09d878f001c91417b3182fdaa6ac4d4836e71668e97c1eb124df9f13b82e45 +doccontainersize 281824 +doccontainerchecksum a43cbfd660bf909b90cd135589285ac66bae3655d00869571fbe76cc7016b45eb9899ab76606bcaf25b065074f78baa5d698dc196d1b302d2103103bc35ed0d9 +docfiles size=74 + RELOC/doc/generic/babel-serbianc/README.md details="Readme" + RELOC/doc/generic/babel-serbianc/serbianc.pdf details="Package documentation" +srccontainersize 9188 +srccontainerchecksum 0eb121cc4eb9527884a39f0c8ab2977f39889f4d41439039f914a7faf7d2cee85b8b001592df2945b41c3cd2b5f2e03a1feae78db1b06c0cebdbb27f83f5a8fe +srcfiles size=9 RELOC/source/generic/babel-serbianc/serbianc.dtx RELOC/source/generic/babel-serbianc/serbianc.ins +runfiles size=4 + RELOC/tex/generic/babel-serbianc/serbianc.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/serbianc -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2019-01-13 09:59:25 +0100 catalogue-license lppl1.3 -catalogue-version 2.2 - -name babel-serbian -category Package -revision 30290 -relocated 1 -runfiles size=2 - RELOC/tex/generic/babel-serbian/serbian.ldf -docfiles size=32 - RELOC/doc/generic/babel-serbian/serbian.pdf -srcfiles size=5 - RELOC/source/generic/babel-serbian/serbian.dtx - RELOC/source/generic/babel-serbian/serbian.ins +catalogue-topics serbian multilingual-addon +catalogue-version 3.0 name babel-slovak category Package revision 30292 -shortdesc Babel support for typesetting Slovak. +shortdesc Babel support for typesetting Slovak relocated 1 longdesc The package provides the language definition file for support -longdesc of Slovak in babel, including Slovak variants of LaTeX built-in- -longdesc names. Shortcuts are also defined. -runfiles size=5 - RELOC/tex/generic/babel-slovak/slovak.ldf +longdesc of Slovak in babel, including Slovak variants of LaTeX +longdesc built-in-names. Shortcuts are also defined. +containersize 5432 +containerchecksum b14b98d2cb66a3f8f5d8a313d9208a700d1c3664a5bd23f5baf0d9aa2e3acf3891a0536871988e7579020570999ea05a9dcd60a404cd6670e3c1cf8110d9094e +doccontainersize 195272 +doccontainerchecksum da1d663125b913e3480ad147ac1f5c1befa00110e71bbd2d42384db03fe0f0db3133b49e26d1a336b49c10018990763d42ef49b64440c9138d9d938057ac90e0 docfiles size=48 - RELOC/doc/generic/babel-slovak/slovak.pdf + RELOC/doc/generic/babel-slovak/slovak.pdf details="Package documentation" +srccontainersize 13924 +srccontainerchecksum 1668ed3f373e58ee9a507637ed4c17638fc429a30ad6087c7f153f8fa23103c0a93c0c0beec73380d41925ef1ebf25ac214f1afc95793edad65545256e6ce5d8 srcfiles size=14 RELOC/source/generic/babel-slovak/slovak.dtx RELOC/source/generic/babel-slovak/slovak.ins +runfiles size=5 + RELOC/tex/generic/babel-slovak/slovak.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/slovak -catalogue-date 2014-05-22 12:43:44 +0200 +catalogue-date 2018-01-13 10:24:37 +0100 catalogue-license lppl1.3 +catalogue-topics slovak multilingual-addon catalogue-version 3.1a name babel-slovenian category Package revision 30351 -shortdesc Babel support for typesetting Slovenian. +shortdesc Babel support for typesetting Slovenian relocated 1 longdesc The package provides the language definition file for support longdesc of Slovenian in babel. Several shortcuts are defined, as well longdesc as translations to Slovenian of standard "LaTeX names". -runfiles size=2 - RELOC/tex/generic/babel-slovenian/slovene.ldf +containersize 2412 +containerchecksum 0293242dac7cfa3aafca92ade6b065522872ee7561d9b465d42a846121c3387e710f06e330461d9d4347c9dccb2be3885050847f8fd721a3c3dcad3ec2715ad8 +doccontainersize 127596 +doccontainerchecksum 5e5bcc2a71e4258ccbe3f094f19c782512c70796886c94abe2254e3fc376cfbd1c13115f42da1828f16dcae4e0b95075e9510fe42879f6a116105190fcab70c1 docfiles size=32 - RELOC/doc/generic/babel-slovenian/slovene.pdf + RELOC/doc/generic/babel-slovenian/slovene.pdf details="Package documentation" +srccontainersize 5340 +srccontainerchecksum 5c4cc055c76d898c8bd11e061658e8f8ecf165f9571efb0340ae1a828d65eea6e071210bbbab1a15c6825e10e1a8b187ce8717e7c32a328bccb4f427cb03a493 srcfiles size=5 RELOC/source/generic/babel-slovenian/slovene.dtx RELOC/source/generic/babel-slovenian/slovene.ins +runfiles size=2 + RELOC/tex/generic/babel-slovenian/slovene.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/slovenian -catalogue-date 2014-05-22 12:43:44 +0200 +catalogue-date 2018-01-13 10:24:37 +0100 catalogue-license lppl1.3 +catalogue-topics slovenian multilingual-addon catalogue-version 1.2i name babel-sorbian category Package revision 30294 -shortdesc Babel support for Upper and Lower Sorbian. +shortdesc Babel support for Upper and Lower Sorbian relocated 1 longdesc The package provides language definitions file for support of longdesc both Upper and Lower Sorbian, in babel. Some shortcuts are longdesc defined, as well as translations to the relevant language of longdesc standard "LaTeX names". -runfiles size=4 - RELOC/tex/generic/babel-sorbian/lsorbian.ldf - RELOC/tex/generic/babel-sorbian/usorbian.ldf +containersize 3156 +containerchecksum 1c76a622852d0354112805a1db3b2ed6ac23656a754e2909c4bfceb0ab84db201f18d37d8c9fce527ea52fc4c2b302ff943353ec4cd5ab45da76dd4755a09be3 +doccontainersize 215620 +doccontainerchecksum f79448d484de1fb95394dd28c833661d6c9a686148b544fe28a60af17ffb50d36902d4b7b8b62772466d7588dfedf31e772d0ce5b32270732d0d2453dc7d0fd8 docfiles size=64 - RELOC/doc/generic/babel-sorbian/lsorbian.pdf - RELOC/doc/generic/babel-sorbian/usorbian.pdf + RELOC/doc/generic/babel-sorbian/lsorbian.pdf details="Package documentation (Lower Sorbian)" + RELOC/doc/generic/babel-sorbian/usorbian.pdf details="Package documentation (Upper Sorbian)" +srccontainersize 6236 +srccontainerchecksum 736c15e75d097f9475da38d80c495b28af4457736534092759750cffd2fed2ea54fbb4bcec656666f13cc2d61e82af59ea0ae665e30f73b251eb4fb35d44a8e3 srcfiles size=9 RELOC/source/generic/babel-sorbian/lsorbian.dtx RELOC/source/generic/babel-sorbian/sorbian.ins RELOC/source/generic/babel-sorbian/usorbian.dtx +runfiles size=4 + RELOC/tex/generic/babel-sorbian/lsorbian.ldf + RELOC/tex/generic/babel-sorbian/usorbian.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/sorbian -catalogue-date 2014-05-22 12:43:44 +0200 +catalogue-date 2018-01-13 10:24:37 +0100 catalogue-license lppl1.3 +catalogue-topics sorbian catalogue-version lower sorbian:1.0g, upper:1.0k name babel-spanglish category Package revision 37629 -shortdesc Simplified Spanish support for Babel. +shortdesc Simplified Spanish support for Babel relocated 1 longdesc The package provides very simplified (or ultra sloppy) support longdesc for Spanish in Babel, mostly as a fallback in case spanish.ldf @@ -12294,56 +24561,74 @@ longdesc indentfirst, symbolic footnotes, enumerations, small caps roman longdesc numerals, and a handful of shorthands and Spanish mathematical longdesc operators. No options or attributes for customization are longdesc provided. +containersize 4284 +containerchecksum 17fa7078d6bd54fff6c73677536dec46960703e14536c4a4476dc46a8586678b117e71058f665cbbf850a269cae841511807c6647251e088111262d9f2c4bef1 +doccontainersize 1232 +doccontainerchecksum 43cf66e656d965bb80e294a5e2786b412e79eb1ac6542a4a3788fde7cc6874e168cff30676c3bfe90c5bb67dc4452769dece84508fe999529d54bde40be5a5c1 +docfiles size=1 + RELOC/doc/generic/babel-spanglish/README details="Readme" runfiles size=4 RELOC/tex/generic/babel-spanglish/spanglish.ldf RELOC/tex/generic/babel-spanglish/spanglish.sty -docfiles size=1 - RELOC/doc/generic/babel-spanglish/README catalogue-ctan /macros/latex/contrib/babel-contrib/spanglish -catalogue-date 2015-06-12 07:58:03 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 catalogue-topics spanish multilingual-addon catalogue-version 0.3 name babel-spanish category Package -revision 33668 -shortdesc Babel support for Spanish. +revision 39920 +shortdesc Babel support for Spanish relocated 1 longdesc This bundle provides the means to typeset Spanish text, with longdesc the support provided by the LaTeX standard package babel. Note longdesc that separate support is provided for those who wish to typeset longdesc Spanish as written in Mexico. -runfiles size=9 - RELOC/tex/generic/babel-spanish/romanidx.sty - RELOC/tex/generic/babel-spanish/spanish.ldf +containersize 8668 +containerchecksum 3a80652d28b1a80ab83c49b0694cd88a236b6420f51c084e4eb24c5ea57a3359f15a05c7cc99118b303f199703749dd724cd5ad30035b9bde7b9f95f2bd34d46 +doccontainersize 183488 +doccontainerchecksum 8e6a424ec3caa8ff9b6d6f0695e54340dfa4fe61c4bdb46e5579ac768894f906458d594869e8d02bff9c7aeb47e75a7233367fcd6525f2a4815d211528552ebb docfiles size=46 - RELOC/doc/generic/babel-spanish/README - RELOC/doc/generic/babel-spanish/spanish.pdf + RELOC/doc/generic/babel-spanish/README.md details="Readme" + RELOC/doc/generic/babel-spanish/spanish.pdf details="Package documentation" language="es" +srccontainersize 29552 +srccontainerchecksum 1eb97589d5495a46ca98774adc0d1e58da3a103e43ee3a38abb46708529af9a9d2414b7f81882c45b0a20bfa53114e39368c6142d2f6bbc19306d4c2249cddc8 srcfiles size=24 RELOC/source/generic/babel-spanish/spanish.dtx RELOC/source/generic/babel-spanish/spanish.ins +runfiles size=9 + RELOC/tex/generic/babel-spanish/romanidx.sty + RELOC/tex/generic/babel-spanish/spanish.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/spanish -catalogue-date 2014-05-22 12:43:44 +0200 -catalogue-license lppl -catalogue-version 5.0n +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics spanish multilingual-addon +catalogue-version 5.0p name babel-swedish category Package revision 30296 -shortdesc Babel support for typesetting Swedish. +shortdesc Babel support for typesetting Swedish relocated 1 longdesc The package provides the language definition file for Swedish. -runfiles size=2 - RELOC/tex/generic/babel-swedish/swedish.ldf +containersize 2688 +containerchecksum 46dbacd9ed25d6eba7a8f5a26a28c40f5c77cbdf4140e3a6ceac1b34a8afdc95626200ea0a6775c3f00b8aa7ae5b7772144e7ef8d0e409531b5bb74e01a90278 +doccontainersize 130184 +doccontainerchecksum 2c3f738b347fb8a4c6dc3917c840de294f21e544ef995770099eb6d779995ba32ea1a1adc8def7a883bc983a4cf85268628e623aaff44c9be653fe55d901d452 docfiles size=32 - RELOC/doc/generic/babel-swedish/swedish.pdf + RELOC/doc/generic/babel-swedish/swedish.pdf details="Package documentation" +srccontainersize 6788 +srccontainerchecksum 44c4ae33b5d6824fddaa77142c55016473ac2b4520ba17e504854d7893c3b9fd317dd67149b4cb005311b7fd0daa86630e5ef83c903f69facbf667c993f6a59d srcfiles size=7 RELOC/source/generic/babel-swedish/swedish.dtx RELOC/source/generic/babel-swedish/swedish.ins +runfiles size=2 + RELOC/tex/generic/babel-swedish/swedish.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/swedish -catalogue-date 2014-05-22 12:43:44 +0200 +catalogue-date 2018-01-13 10:24:37 +0100 catalogue-license lppl1.3 +catalogue-topics swedish multilingual-addon catalogue-version 2.3d name babel-thai @@ -12353,163 +24638,109 @@ shortdesc Support for Thai within babel relocated 1 longdesc The package provides support for typesetting Thai text. within longdesc the babel system. -runfiles size=8 - RELOC/tex/generic/babel-thai/lthenc.def - RELOC/tex/generic/babel-thai/thai.ldf - RELOC/tex/generic/babel-thai/tis620.def +containersize 6376 +containerchecksum 4e3e5c6d8944040177a21f04e63bd40e85c24e9327eeddfe98072da38590c58523f676fd7532e4e00d0e3cc88121a2885788d606d2dc9ca02fd91c7f04a6ef57 +doccontainersize 215648 +doccontainerchecksum 791539a57534c4870a81ec2318298b29e9e9ad925161b0a4cf52c49086a865d5b58b60da10829a5fb37e66f0d161b396beb127e586457c556875f1205fac9360 docfiles size=53 - RELOC/doc/generic/babel-thai/thai.pdf + RELOC/doc/generic/babel-thai/thai.pdf details="Package documentation" +srccontainersize 11116 +srccontainerchecksum db43b9422d95579f9bec645671e5c0ba654ce2d7ca89c3e98b6d910f6546a30b29656aa7061d03b767aca6eb2a01b001613a8b619d597bb9053a8a0df3376b6f srcfiles size=12 RELOC/source/generic/babel-thai/thai.dtx RELOC/source/generic/babel-thai/thai.ins +runfiles size=8 + RELOC/tex/generic/babel-thai/lthenc.def + RELOC/tex/generic/babel-thai/thai.ldf + RELOC/tex/generic/babel-thai/tis620.def catalogue-ctan /macros/latex/contrib/babel-contrib/thai -catalogue-date 2014-05-22 12:50:09 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics thai multilingual-addon catalogue-version 1.0.0 -name babel -category Package -revision 38036 -shortdesc Multilingual support for Plain TeX or LaTeX -relocated 1 -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. -runfiles size=86 - RELOC/makeindex/babel/bbglo.ist - RELOC/makeindex/babel/bbind.ist - RELOC/tex/generic/babel/UKenglish.sty - RELOC/tex/generic/babel/USenglish.sty - RELOC/tex/generic/babel/afrikaans.sty - RELOC/tex/generic/babel/albanian.sty - RELOC/tex/generic/babel/american.sty - RELOC/tex/generic/babel/austrian.sty - RELOC/tex/generic/babel/babel.def - RELOC/tex/generic/babel/babel.sty - RELOC/tex/generic/babel/bahasa.sty - RELOC/tex/generic/babel/bahasam.sty - RELOC/tex/generic/babel/basque.sty - RELOC/tex/generic/babel/blplain.tex - RELOC/tex/generic/babel/bplain.tex - RELOC/tex/generic/babel/breton.sty - RELOC/tex/generic/babel/british.sty - RELOC/tex/generic/babel/bulgarian.sty - RELOC/tex/generic/babel/catalan.sty - RELOC/tex/generic/babel/croatian.sty - RELOC/tex/generic/babel/czech.sty - RELOC/tex/generic/babel/danish.sty - RELOC/tex/generic/babel/dutch.sty - RELOC/tex/generic/babel/english.sty - RELOC/tex/generic/babel/esperanto.sty - RELOC/tex/generic/babel/estonian.sty - RELOC/tex/generic/babel/finnish.sty - RELOC/tex/generic/babel/francais.sty - RELOC/tex/generic/babel/galician.sty - RELOC/tex/generic/babel/germanb.sty - RELOC/tex/generic/babel/greek.sty - RELOC/tex/generic/babel/hebrew.sty - RELOC/tex/generic/babel/hyphen.cfg - RELOC/tex/generic/babel/icelandic.sty - RELOC/tex/generic/babel/interlingua.sty - RELOC/tex/generic/babel/irish.sty - RELOC/tex/generic/babel/italian.sty - RELOC/tex/generic/babel/latin.sty - RELOC/tex/generic/babel/lsorbian.sty - RELOC/tex/generic/babel/luababel.def - RELOC/tex/generic/babel/magyar.sty - RELOC/tex/generic/babel/naustrian.sty - RELOC/tex/generic/babel/ngermanb.sty - RELOC/tex/generic/babel/nil.ldf - RELOC/tex/generic/babel/norsk.sty - RELOC/tex/generic/babel/plain.def - RELOC/tex/generic/babel/polish.sty - RELOC/tex/generic/babel/portuges.sty - RELOC/tex/generic/babel/romanian.sty - RELOC/tex/generic/babel/russianb.sty - RELOC/tex/generic/babel/samin.sty - RELOC/tex/generic/babel/scottish.sty - RELOC/tex/generic/babel/serbian.sty - RELOC/tex/generic/babel/slovak.sty - RELOC/tex/generic/babel/slovene.sty - RELOC/tex/generic/babel/spanish.sty - RELOC/tex/generic/babel/swedish.sty - RELOC/tex/generic/babel/switch.def - RELOC/tex/generic/babel/turkish.sty - RELOC/tex/generic/babel/ukraineb.sty - RELOC/tex/generic/babel/usorbian.sty - RELOC/tex/generic/babel/welsh.sty - RELOC/tex/generic/babel/xebabel.def -docfiles size=100 - RELOC/doc/latex/babel/CONTRIB - RELOC/doc/latex/babel/FIXES39 - RELOC/doc/latex/babel/README - RELOC/doc/latex/babel/babel.pdf -srcfiles size=97 - RELOC/source/latex/babel/babel.dtx - RELOC/source/latex/babel/babel.ins - RELOC/source/latex/babel/bbcompat.dtx - RELOC/source/latex/babel/bbidxglo.dtx - RELOC/source/latex/babel/bbunicode.dtx -catalogue-ctan /macros/latex/required/babel/base -catalogue-date 2015-08-03 16:04:17 +0200 -catalogue-license lppl1.3 -catalogue-topics multilingual -catalogue-version 3.9m - name babel-turkish category Package revision 33284 -shortdesc Babel support for Turkish documents. +shortdesc Babel support for Turkish documents relocated 1 longdesc The package provides support, within babel, of the Turkish longdesc language. -runfiles size=2 - RELOC/tex/generic/babel-turkish/turkish.ldf +containersize 2932 +containerchecksum 0f00f5efcfc3f73a1a41a5c4b9bd2e6ba6bf11552113a56d2299745608ca12bcfa3303f090174a5c43344216cc08e249e2648a9a10134fb23954985becca0615 +doccontainersize 267188 +doccontainerchecksum ddd2eb1afc2c8951e14db117dca597e73220e8b488d959678430e9e4cc3239e4af126da5f123b13d5505312e8356b3e172725c510277222696e0a7fef930459d docfiles size=67 RELOC/doc/generic/babel-turkish/README - RELOC/doc/generic/babel-turkish/turkish.pdf + RELOC/doc/generic/babel-turkish/turkish.pdf details="Package documentation" +srccontainersize 6268 +srccontainerchecksum 1d81e3380d92fcbed58963dc15173f134f7f9a69086abaec26cbd670d506d3d2f924bf792fb0c4503ef96e1f8539420a045a3c9d08219551e798a8f058b0951f srcfiles size=6 RELOC/source/generic/babel-turkish/turkish.dtx RELOC/source/generic/babel-turkish/turkish.ins +runfiles size=2 + RELOC/tex/generic/babel-turkish/turkish.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/turkish -catalogue-date 2014-03-25 07:43:48 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics turkish multilingual-addon catalogue-version 1.3b -name babel-ukraineb +name babel-ukrainian category Package -revision 30298 +revision 47585 +shortdesc Babel support for Ukrainian relocated 1 -runfiles size=4 - RELOC/tex/generic/babel-ukraineb/ukraineb.ldf -docfiles size=53 - RELOC/doc/generic/babel-ukraineb/ukraineb.pdf -srcfiles size=13 - RELOC/source/generic/babel-ukraineb/ukraineb.dtx - RELOC/source/generic/babel-ukraineb/ukraineb.ins +longdesc The package provides support for use of babel in documents +longdesc written in Ukrainian. The support is adapted for use under +longdesc legacy TeX engines as well as XeTeX and LuaTeX. +containersize 5068 +containerchecksum 6729384e1029580ee8ff2337508cb5998e8a385de25da4d5969341869f22f17180b03a98a403b583ac5b7a965c2a07d5c96b0aff1b93b82cdcb549b4915ceb4e +doccontainersize 450616 +doccontainerchecksum f36acbe23a159e2a9547d7cd5b64d529c49a35353f5a84082a303204f8a55f088f1beb0aa75d852595768a3ad10de34763329a22e2c87c5081ce2d6fa4076309 +docfiles size=112 + RELOC/doc/generic/babel-ukrainian/README.md details="Readme" + RELOC/doc/generic/babel-ukrainian/ukraineb.pdf details="Package documentation" +srccontainersize 19232 +srccontainerchecksum 110d08aa4e84718e04223e4e4745a968c2bbf3d7f453430ee02eec57a96fe952046dc9101b95f90a7de84bf6a4dbd65e8697e1980f0d85eee84233554de31370 +srcfiles size=19 + RELOC/source/generic/babel-ukrainian/ukraineb.dtx + RELOC/source/generic/babel-ukrainian/ukraineb.ins +runfiles size=5 + RELOC/tex/generic/babel-ukrainian/ukraineb.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/ukrainian +catalogue-date 2018-04-11 21:43:45 +0200 +catalogue-license lppl1.3c +catalogue-topics multilingual-addon ukrainian +catalogue-version 1.4c name babel-vietnamese category Package -revision 30578 -shortdesc Babel support for typesetting Vietnamese. +revision 39246 +shortdesc Babel support for typesetting Vietnamese relocated 1 longdesc The package provides the language definition file for support longdesc of Vietnamese in babel. -runfiles size=2 - RELOC/tex/generic/babel-vietnamese/vietnam.ldf - RELOC/tex/generic/babel-vietnamese/vietnamese.ldf -srcfiles size=2 +containersize 2480 +containerchecksum ddb75c37017c1b0b6af2cfbdf574526cdfdce2099d599a23cc8ac819f6ebe5ea7a2eda4bd743af93d78835ca5dccb3d7fa55db22b3154862aa4affe83c28185f +doccontainersize 49604 +doccontainerchecksum b078464ce848b24d692d4dded7c9827f37fdb4141b719c71e28b5ef0a827f9ea5c2137745f9689fcb89a486d4a88a94a043a62348e86b5736a68ea48c7f33e16 +docfiles size=18 + RELOC/doc/generic/babel-vietnamese/README details="Readme" + RELOC/doc/generic/babel-vietnamese/uvnenc.tex + RELOC/doc/generic/babel-vietnamese/vietnamese.pdf details="Package documentation" +srccontainersize 6908 +srccontainerchecksum ffdf9a552fd79b1b51c0064ffef8f9dca1e618b41b0abebd2a22152e8f2bde04a9e35964250e8bd42912929d3e6d8dab6fa430ce302a1f28f27676015667d489 +srcfiles size=10 RELOC/source/generic/babel-vietnamese/vietnamese.dtx RELOC/source/generic/babel-vietnamese/vietnamese.ins +runfiles size=2 + RELOC/tex/generic/babel-vietnamese/vietnamese.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/vietnamese -catalogue-date 2014-05-22 12:50:09 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 -catalogue-version 1.3 +catalogue-topics vietnamese multilingual-addon +catalogue-version 1.4 name babel-welsh category Package @@ -12519,24 +24750,108 @@ relocated 1 longdesc The package provides the language definition file for Welsh. longdesc (Mostly Welsh-language versions of the standard names in a longdesc LaTeX file.) -runfiles size=1 - RELOC/tex/generic/babel-welsh/welsh.ldf +containersize 1836 +containerchecksum 89526156517773131b5452f2cf5bf773f34b97b2e35e786f2bcd4dad512519766eded269539ada9d5c34d4b1f02d65bf55a0da0053e6bd7b7a3c66c606cfb60b +doccontainersize 111648 +doccontainerchecksum cb0ff59d9c02bce3028f0025c07963d42856eb4e68f322b839ed1ea5f51abf372ea17fc695e7be4bf87f75b3d2b163f801102f469773a4474bd0d0a72a47376d docfiles size=29 - RELOC/doc/generic/babel-welsh/README - RELOC/doc/generic/babel-welsh/welsh.pdf + RELOC/doc/generic/babel-welsh/README details="Readme" + RELOC/doc/generic/babel-welsh/welsh.pdf details="Package documentation (code listing)" +srccontainersize 4100 +srccontainerchecksum 42c52ecdbb0b1de295800bece99804a481afffa2848a2146429b318f964e3a88dadfca9c020e9dec6bb3db1548ccfa79db3e66edf366a32fa83a1b6ba91e7fc1 srcfiles size=4 RELOC/source/generic/babel-welsh/welsh.dtx RELOC/source/generic/babel-welsh/welsh.ins +runfiles size=1 + RELOC/tex/generic/babel-welsh/welsh.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/welsh -catalogue-date 2015-09-04 20:16:13 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 catalogue-topics welsh multilingual-addon catalogue-version 1.1a +name babelbib +category Package +revision 50354 +shortdesc Multilingual bibliographies +relocated 1 +longdesc This package enables the user to generate multilingual +longdesc bibliographies in cooperation with babel. Two approaches are +longdesc possible: Each citation may be written in another language, or +longdesc the whole bibliography can be typeset in a language chosen by +longdesc the user. In addition, the package supports commands to change +longdesc the typography of the bibliographies. +containersize 26184 +containerchecksum 70214f7a3e16c1fe4b3bfae479df63c10f9b654b34bd29abe3b4837b1a375b1a13077d0ba98e46a78ed702616bccac6aac3c70d422c85e37f462a376b2ee2589 +doccontainersize 1169396 +doccontainerchecksum 729fdb0bcc60929dffce6883db377e487a31610979d92f7be48e017a6f982298a9d113f06376bacbf2406a89fc1ce10cab86a43de3d92be8aeea7e3cb7cb9f98 +docfiles size=405 + RELOC/doc/bibtex/babelbib/ChangeLog + RELOC/doc/bibtex/babelbib/Makefile + RELOC/doc/bibtex/babelbib/README details="Readme" + RELOC/doc/bibtex/babelbib/babelbib.dtx + RELOC/doc/bibtex/babelbib/babelbib.ins + RELOC/doc/bibtex/babelbib/babelbib.pdf details="Package documentation" + RELOC/doc/bibtex/babelbib/babelbibtest.bib + RELOC/doc/bibtex/babelbib/babelbibtest.tex + RELOC/doc/bibtex/babelbib/getversion.tex + RELOC/doc/bibtex/babelbib/tugboat-babelbib.pdf details="TUGboat paper about the package" +runfiles size=209 + RELOC/bibtex/bst/babelbib/bababbr3-fl.bst + RELOC/bibtex/bst/babelbib/bababbr3-lf.bst + RELOC/bibtex/bst/babelbib/bababbr3.bst + RELOC/bibtex/bst/babelbib/bababbrv-fl.bst + RELOC/bibtex/bst/babelbib/bababbrv-lf.bst + RELOC/bibtex/bst/babelbib/bababbrv.bst + RELOC/bibtex/bst/babelbib/babalpha-fl.bst + RELOC/bibtex/bst/babelbib/babalpha-lf.bst + RELOC/bibtex/bst/babelbib/babalpha.bst + RELOC/bibtex/bst/babelbib/babamspl.bst + RELOC/bibtex/bst/babelbib/babplai3-fl.bst + RELOC/bibtex/bst/babelbib/babplai3-lf.bst + RELOC/bibtex/bst/babelbib/babplai3.bst + RELOC/bibtex/bst/babelbib/babplain-fl.bst + RELOC/bibtex/bst/babelbib/babplain-lf.bst + RELOC/bibtex/bst/babelbib/babplain.bst + RELOC/bibtex/bst/babelbib/babunsrt-fl.bst + RELOC/bibtex/bst/babelbib/babunsrt-lf.bst + RELOC/bibtex/bst/babelbib/babunsrt.bst + RELOC/tex/latex/babelbib/afrikaans.bdf + RELOC/tex/latex/babelbib/babelbib.sty + RELOC/tex/latex/babelbib/bahasa.bdf + RELOC/tex/latex/babelbib/catalan.bdf + RELOC/tex/latex/babelbib/croatian.bdf + RELOC/tex/latex/babelbib/czech.bdf + RELOC/tex/latex/babelbib/danish.bdf + RELOC/tex/latex/babelbib/dutch.bdf + RELOC/tex/latex/babelbib/english.bdf + RELOC/tex/latex/babelbib/esperanto.bdf + RELOC/tex/latex/babelbib/finnish.bdf + RELOC/tex/latex/babelbib/french.bdf + RELOC/tex/latex/babelbib/galician.bdf + RELOC/tex/latex/babelbib/german.bdf + RELOC/tex/latex/babelbib/greek.bdf + RELOC/tex/latex/babelbib/italian.bdf + RELOC/tex/latex/babelbib/norsk.bdf + RELOC/tex/latex/babelbib/portuguese.bdf + RELOC/tex/latex/babelbib/romanian.bdf + RELOC/tex/latex/babelbib/russian.bdf + RELOC/tex/latex/babelbib/serbian.bdf + RELOC/tex/latex/babelbib/spanish.bdf + RELOC/tex/latex/babelbib/swedish.bdf +catalogue-contact-bugs https://github.com/TeX-Live/babelbib/issues +catalogue-contact-home https://github.com/TeX-Live/babelbib +catalogue-contact-repository https://github.com/TeX-Live/babelbib.git +catalogue-ctan /biblio/bibtex/contrib/babelbib +catalogue-date 2019-03-12 18:20:34 +0100 +catalogue-license lppl1 +catalogue-topics bibtex-sty multilingual +catalogue-version 1.32 + name background category Package -revision 33100 -shortdesc Placement of background material on pages of a document. +revision 42428 +shortdesc Placement of background material on pages of a document relocated 1 longdesc The package offers the placement of background material on the longdesc pages of a document. The user can control many aspects @@ -12544,52 +24859,95 @@ longdesc (contents, position, color, opacity) of the background material longdesc that will be displayed; all placement and attribute settings longdesc are controlled by setting key values. The package makes use of longdesc the everypage package, and uses pgf/tikz for attribute control. -runfiles size=2 - RELOC/tex/latex/background/background.sty +containersize 2080 +containerchecksum e9fd9b5e680082aa3e9f0482ebe41a753088a1e61b85876a9685942172cb9d5b6c9819ac2d61e0274f988b46d4f962222ce0afeac2827630edc728125761f214 +doccontainersize 115784 +doccontainerchecksum 518b0785e562fc6f01d6bba6cf7157c847faab151bcfe7840d5f2c9d8fc3ca54689beaa8698c92f24c196393fdbf90b027165be80e6cf07e9ee79ad8073d8533 docfiles size=30 - RELOC/doc/latex/background/README - RELOC/doc/latex/background/background.pdf + RELOC/doc/latex/background/README details="Readme" + RELOC/doc/latex/background/background.pdf details="Package documentation" +srccontainersize 8408 +srccontainerchecksum 36bddbbaf17dc15e72773400e75dac754a2eb60c106c7a6861226b6dd2a1955fc016810a10d5c90ff56b690be922affc0427c1cf3b5e5c1f334231bc8df69872 srcfiles size=8 RELOC/source/latex/background/background.dtx RELOC/source/latex/background/background.ins +runfiles size=2 + RELOC/tex/latex/background/background.sty catalogue-ctan /macros/latex/contrib/background -catalogue-date 2014-03-04 21:07:04 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics background decoration catalogue-version 2.1 name backnaur category Package -revision 28513 -shortdesc Typeset Backus Naur Form definitions. +revision 51001 +shortdesc Typeset Backus Naur Form definitions relocated 1 longdesc The package typesets Backus-Naur Form (BNF) definitions. It -longdesc creates aligned lists of productions, with numbers if required. -longdesc It can also print in-line BNF expressions using math mode. -runfiles size=1 - RELOC/tex/latex/backnaur/backnaur.sty -docfiles size=76 - RELOC/doc/latex/backnaur/README - RELOC/doc/latex/backnaur/backnaur.pdf +longdesc prints formatted lists of productions, with numbers if +longdesc required. It can also print in-line BNF expressions using math +longdesc mode. +containersize 1276 +containerchecksum fd275c570f6af15571ce1ac22f37851934bbf0b0ffd2e758244acd08b03a1b7a30b46bf7c5c07a10b61ab7c42a7da0308fed2e3a3552fa47dfb7a5dee97da138 +doccontainersize 229956 +doccontainerchecksum ca762efc9bfe0b0f9c5d33bf28058cf2a26eda272b66446dcffce30bd2e252aa980e31d79e3955bf8b6ec117fe82314bb608b33ccbcaa3780a9d009023e0a668 +docfiles size=60 + RELOC/doc/latex/backnaur/README details="Readme" + RELOC/doc/latex/backnaur/backnaur.pdf details="Package documentation" +srccontainersize 5796 +srccontainerchecksum 5ad26ca2aa8f259f344776a4448bcea26db121d4cf796d341babadec208d957e77346c008717db87e936edfe8152116979f254612b52897f1643bb480109686c srcfiles size=6 RELOC/source/latex/backnaur/backnaur.dtx RELOC/source/latex/backnaur/backnaur.ins +runfiles size=1 + RELOC/tex/latex/backnaur/backnaur.sty catalogue-ctan /macros/latex/contrib/backnaur -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.1 +catalogue-date 2019-04-15 21:22:16 +0200 +catalogue-license lppl1.3c +catalogue-topics formal-spec +catalogue-version 2.0 + +name baekmuk +category Package +revision 42106 +shortdesc Baekmuk Korean TrueType fonts +relocated 1 +longdesc Baekmuk TrueType fonts (Korean) These fonts were retrieved from +longdesc http://kldp.net/baekmuk/ +containersize 8736988 +containerchecksum e10fef8fcee389514d759d7b985df3e84d3459a357fc3b4b6bec5c3814aea175aa8f313ab63e6048e60cfa5fe1cb1ddc0ae0410801893ec0e7ff5eabd7283c9f +doccontainersize 1656 +doccontainerchecksum 0a69ee489e8ee9fea0fedd80bdbcc7a13505b5e3cc12fae3d56e09a852bc54eb0e64ba73f4c085e5286fb048114eb81aacc2aa34b27d72b4a72b966e188d78c5 +docfiles size=4 + RELOC/doc/fonts/baekmuk/COPYRIGHT + RELOC/doc/fonts/baekmuk/COPYRIGHT.ks + RELOC/doc/fonts/baekmuk/README.md + RELOC/doc/fonts/baekmuk/README_original +runfiles size=6983 + RELOC/fonts/truetype/public/baekmuk/batang.ttf + RELOC/fonts/truetype/public/baekmuk/dotum.ttf + RELOC/fonts/truetype/public/baekmuk/gulim.ttf + RELOC/fonts/truetype/public/baekmuk/hline.ttf +catalogue-contact-home http://kldp.net/baekmuk +catalogue-ctan /fonts/baekmuk +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license other-free +catalogue-topics font font-ttf korean +catalogue-version 2.2 name bagpipe category Package revision 34393 -shortdesc Support for typesetting bagpipe music. +shortdesc Support for typesetting bagpipe music relocated 1 longdesc Typesetting bagpipe music in MusixTeX is needlessly tedious. longdesc This package provides specialized and re-defined macros to longdesc simplify this task. -runfiles size=15 - RELOC/tex/generic/bagpipe/bagpipe.ini - RELOC/tex/generic/bagpipe/bagpipe.tex - RELOC/tex/generic/bagpipe/bagpipex.ini +containersize 11240 +containerchecksum 7d815e23e9b5d686e0df54c4a0ad51c85360c7b3879695977fb9be2b69cb343e1c9043c2595ac5554e87e0a568b2441bd16a43b334af4b43e5302eba19bc33d8 +doccontainersize 201344 +doccontainerchecksum 696047cc4965a06388a61232af9336f2010fdb0b869914cf66ac9b052d1efd85ff05119a277aa127cf05f56e03b63060956c7c284df78e93b0f0beabd691d33a docfiles size=76 RELOC/doc/generic/bagpipe/BlackDonald.pdf RELOC/doc/generic/bagpipe/BlackDonald.tex @@ -12599,47 +24957,97 @@ docfiles size=76 RELOC/doc/generic/bagpipe/Green.tex RELOC/doc/generic/bagpipe/GreenTwo.pdf RELOC/doc/generic/bagpipe/GreenTwo.tex - RELOC/doc/generic/bagpipe/README + RELOC/doc/generic/bagpipe/README details="Readme" RELOC/doc/generic/bagpipe/Washer.pdf RELOC/doc/generic/bagpipe/Washer.tex - RELOC/doc/generic/bagpipe/bagdoc.pdf + RELOC/doc/generic/bagpipe/bagdoc.pdf details="Package documentation" RELOC/doc/generic/bagpipe/bagdoc.tex - RELOC/doc/generic/bagpipe/quickref.pdf + RELOC/doc/generic/bagpipe/quickref.pdf details="Package 'quick reference'" RELOC/doc/generic/bagpipe/quickref.tex +runfiles size=15 + RELOC/tex/generic/bagpipe/bagpipe.ini + RELOC/tex/generic/bagpipe/bagpipe.tex + RELOC/tex/generic/bagpipe/bagpipex.ini catalogue-ctan /macros/generic/bagpipe -catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics music catalogue-version 3.02 name bangorcsthesis category Package -revision 36727 -shortdesc Typeset a thesis at Bangor University. +revision 48834 +shortdesc Typeset a thesis at Bangor University relocated 1 longdesc The class typesets thesis/dissertation documents for all levels longdesc (i.e., both undergraduate and graduate students may use the longdesc class). It also provides macros designed to optimise the longdesc process of producing a thesis. -runfiles size=61 - RELOC/tex/latex/bangorcsthesis/bangorcsthesis.cls +containersize 51844 +containerchecksum 3d8dd2648361f74ec6af8727f0895ad1e1008ce0e8612d879634b196d5e4cdadff20e33e60e27d9812d7b6fe3762026ee46139f3ade3a3a3cd5d27a941355a62 +doccontainersize 285232 +doccontainerchecksum 97c98bb791018631b7c5bb282aa3585ae68ab1d2d81f56e1be91ad92d6dead30885c478856f59651b533590eca2f80e3596d09f0277ea6dbd6ec44b97ed64fb9 docfiles size=72 - RELOC/doc/latex/bangorcsthesis/README - RELOC/doc/latex/bangorcsthesis/bangorcsthesis.pdf + RELOC/doc/latex/bangorcsthesis/README details="Readme" + RELOC/doc/latex/bangorcsthesis/bangorcsthesis.pdf details="Package documentation" +srccontainersize 55560 +srccontainerchecksum b48f9e854297a3effe72c3e4f5b26d1a48b5023b25691727ab6c735379a092f8a6ce1b7dee1eb87b5cdc10866591b35c83df579147d3ecf36e6a27356d50381c srcfiles size=65 RELOC/source/latex/bangorcsthesis/bangorcsthesis.dtx RELOC/source/latex/bangorcsthesis/bangorcsthesis.ins +runfiles size=61 + RELOC/tex/latex/bangorcsthesis/bangorcsthesis.cls catalogue-ctan /macros/latex/contrib/bangorcsthesis -catalogue-date 2015-04-06 11:58:09 +0200 +catalogue-date 2018-10-05 20:51:17 +0200 catalogue-license lppl1.3 -catalogue-version 1.3.0 +catalogue-topics dissertation class +catalogue-version 1.5.3 + +name bangorexam +category Package +revision 46626 +shortdesc Typeset an examination at Bangor University +relocated 1 +longdesc The package allows typesetting of Bangor Univesity's exam +longdesc style. It currently supports a standard A/B choice, A-only +longdesc compulsory and 'n' from 'm' exam styles. Marks are totalled and +longdesc checked automatically. +containersize 49800 +containerchecksum 9da594fb6d8dec3727dc5e437923c225aff392250c42566972a6998a4709e1853e6b7399ce64e8cbb7408a422631ee61229cc97001343ac8acee7d5c0fd20847 +doccontainersize 185696 +doccontainerchecksum 576b991d414d9a8b481dd2d76a4ba74af9db70ae720d9b81f16cb2cfd887d8a09c2bd601bf7711ec77073909aa61470f2cdd7573457ea2ed25f9e316417da9ac +docfiles size=47 + RELOC/doc/latex/bangorexam/README.txt details="Readme" + RELOC/doc/latex/bangorexam/bangorexam.pdf details="Package documentation" +srccontainersize 49668 +srccontainerchecksum 22732c47f60e2145ba850a60afc15cc926e57ff27a9234d84cf647ae83c8b783cd8023bb419f576dbba1f5e49de95416f98639440d6001525eac3cbd4fe8ab41 +srcfiles size=64 + RELOC/source/latex/bangorexam/bangorexam.dtx + RELOC/source/latex/bangorexam/bangorexam.ins +runfiles size=60 + RELOC/tex/latex/bangorexam/bangorexam.cls +catalogue-ctan /macros/latex/contrib/bangorexam +catalogue-date 2018-02-13 10:08:01 +0100 +catalogue-license lppl1.3 +catalogue-topics exam class +catalogue-version 1.4.0 name bangtex category Package revision 15878 -shortdesc Writing Bangla and Assamese with LaTeX. +shortdesc Writing Bangla and Assamese with LaTeX relocated 1 longdesc The bundle provides class files for writing Bangla and Assamese longdesc with LaTeX, and Metafont sources for fonts. +containersize 35324 +containerchecksum e64473076f23f537a3d543aa325b159b6f7c050b626e880628bfa76a705dbbc57dd6dbc1418b4fe0124e90ec4922e90800b42d5f636ed910590fb060e119d962 +doccontainersize 15640 +doccontainerchecksum ccbcc6e4739001b6306dc6559f76f577310e73e515aef27ad39c08e770a9eef54a6cd162343aac83ef3530758b3d7dd4c19b1bf5718a86fd321189ea58a786f4 +docfiles size=16 + RELOC/doc/latex/bangtex/README.bangtex details="Readme" + RELOC/doc/latex/bangtex/manual.tex + RELOC/doc/latex/bangtex/samplett.tex + RELOC/doc/latex/bangtex/samptex.tex runfiles size=78 RELOC/fonts/source/public/bangtex/bang10.mf RELOC/fonts/source/public/bangtex/bangbase.mf @@ -12669,19 +25077,15 @@ runfiles size=78 RELOC/tex/latex/bangtex/bsize10.clo RELOC/tex/latex/bangtex/bsize11.clo RELOC/tex/latex/bangtex/bsize12.clo -docfiles size=16 - RELOC/doc/latex/bangtex/README.bangtex - RELOC/doc/latex/bangtex/manual.tex - RELOC/doc/latex/bangtex/samplett.tex - RELOC/doc/latex/bangtex/samptex.tex -catalogue-ctan /language/bangtex -catalogue-date 2012-05-25 22:30:43 +0200 +catalogue-ctan /language/bengali/bangtex +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics indic name bankstatement category Package -revision 35985 -shortdesc A LaTeX class for bank statements based on csv data. +revision 38857 +shortdesc A LaTeX class for bank statements based on csv data relocated 1 longdesc More and more banks allow their customers to download posting longdesc records in various formats. By using the bankstatement class, @@ -12694,88 +25098,102 @@ longdesc terminology in this class -- such as BIC (Business Identifier longdesc Code) or IBAN (International Bank Account Number) -- is based longdesc on usage in the SEPA (Single Euro Payments Area). The user may longdesc adjust the terminology to suit local needs. -runfiles size=6 +containersize 3452 +containerchecksum c388a06b1527fe131dd56813303ca727c035f2023b25426e8aae7387867afa0425e4f739c2698b30af97737557c068b94741dce51f8df573c29c14e4cc4f02c0 +doccontainersize 128040 +doccontainerchecksum 5290904ce0aab9e4e098fb4625c8a0cb5c728769faef312267131eedbee937e1d964a561b2c001c38131ff93c9083db46275d693431b2447267edaae19c296f9 +docfiles size=46 + RELOC/doc/latex/bankstatement/201412.csv + RELOC/doc/latex/bankstatement/README.md details="Readme" + RELOC/doc/latex/bankstatement/bankstatement-example.pdf details="Package example" + RELOC/doc/latex/bankstatement/bankstatement-example.tex + RELOC/doc/latex/bankstatement/bankstatement.dtx + RELOC/doc/latex/bankstatement/bankstatement.pdf details="Package documentation" + RELOC/doc/latex/bankstatement/makefile + RELOC/doc/latex/bankstatement/stmlogo.jpg +runfiles size=8 RELOC/tex/latex/bankstatement/bankstatement.cls RELOC/tex/latex/bankstatement/csv-camt.def RELOC/tex/latex/bankstatement/csv-mt940.def + RELOC/tex/latex/bankstatement/csv-standard-bank-na.def RELOC/tex/latex/bankstatement/stmenglish.def RELOC/tex/latex/bankstatement/stmgerman.def -docfiles size=29 - RELOC/doc/latex/bankstatement/201412.csv - RELOC/doc/latex/bankstatement/README - RELOC/doc/latex/bankstatement/bankstatement-example.pdf - RELOC/doc/latex/bankstatement/bankstatement-example.tex - RELOC/doc/latex/bankstatement/bankstatement.pdf - RELOC/doc/latex/bankstatement/bankstatement.tex - RELOC/doc/latex/bankstatement/makefile - RELOC/doc/latex/bankstatement/stmlogo.jpg + RELOC/tex/latex/bankstatement/stmnamibian.def +catalogue-contact-home http://bankstatement.jklatex.de/ catalogue-ctan /macros/latex/contrib/bankstatement -catalogue-date 2015-01-27 11:33:51 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl -catalogue-version 0.9.1 +catalogue-topics class +catalogue-version 0.9.2 name barcodes category Package revision 15878 -shortdesc Fonts for making barcodes. +shortdesc Fonts for making barcodes relocated 1 longdesc The package deals with EAN barcodes; Metafont sources for fonts longdesc are provided, and a set of examples; for some codes, a small longdesc Perl script is needed. -runfiles size=17 - RELOC/fonts/source/public/barcodes/wlc11.mf - RELOC/fonts/source/public/barcodes/wlc128.mf - RELOC/fonts/source/public/barcodes/wlc39.mf - RELOC/fonts/source/public/barcodes/wlc93.mf - RELOC/fonts/source/public/barcodes/wlcr39.mf - RELOC/fonts/source/public/barcodes/wlean.mf - RELOC/fonts/tfm/public/barcodes/wlc11.tfm - RELOC/fonts/tfm/public/barcodes/wlc128.tfm - RELOC/fonts/tfm/public/barcodes/wlc39.tfm - RELOC/fonts/tfm/public/barcodes/wlc93.tfm - RELOC/fonts/tfm/public/barcodes/wlcr39.tfm - RELOC/tex/latex/barcodes/barcodes.sty +containersize 6452 +containerchecksum e4b9f432d4464da19d279d8e7a5c2ccbd6dbba27fd175bbe7385c0f34199955c16427fc7bf6b487cad1da0b2e28b94d44267a0042e811fc73a88661f3d312b91 +doccontainersize 129364 +doccontainerchecksum 2054d8b87084bbdccdea4a2c05c43b427249d597880b3870fffb98bcf0bf88adf64c9110e3ff98d1755596d559ab548a464a2d681eb1adbaf57cc748424e0d98 docfiles size=74 - RELOC/doc/latex/barcodes/README + RELOC/doc/latex/barcodes/README details="Package Readme" RELOC/doc/latex/barcodes/bcfaq.tex RELOC/doc/latex/barcodes/changes RELOC/doc/latex/barcodes/code39.tex RELOC/doc/latex/barcodes/codean.pl - RELOC/doc/latex/barcodes/eandoc.pdf + RELOC/doc/latex/barcodes/eandoc.pdf details="Package documentation" RELOC/doc/latex/barcodes/eandoc.tex RELOC/doc/latex/barcodes/examples.tex RELOC/doc/latex/barcodes/install.bat RELOC/doc/latex/barcodes/wlcdb.vpl RELOC/doc/latex/barcodes/wlcf39.vpl RELOC/doc/latex/barcodes/wlitf.vpl +srccontainersize 21948 +srccontainerchecksum 9b72c54e083622b95df17e643a6466125a22fb62e3ebc64c3b0f5304253ba5625f0ce2e0071dfc4e06643259b4d7b575a1bae5bc6beb213e5bdd3e83074ba9d9 srcfiles size=21 RELOC/source/latex/barcodes/barcodes.dtx RELOC/source/latex/barcodes/barcodes.ins +runfiles size=17 + RELOC/fonts/source/public/barcodes/wlc11.mf + RELOC/fonts/source/public/barcodes/wlc128.mf + RELOC/fonts/source/public/barcodes/wlc39.mf + RELOC/fonts/source/public/barcodes/wlc93.mf + RELOC/fonts/source/public/barcodes/wlcr39.mf + RELOC/fonts/source/public/barcodes/wlean.mf + RELOC/fonts/tfm/public/barcodes/wlc11.tfm + RELOC/fonts/tfm/public/barcodes/wlc128.tfm + RELOC/fonts/tfm/public/barcodes/wlc39.tfm + RELOC/fonts/tfm/public/barcodes/wlc93.tfm + RELOC/fonts/tfm/public/barcodes/wlcr39.tfm + RELOC/tex/latex/barcodes/barcodes.sty +catalogue-also code128 ean pst-barcode catalogue-ctan /fonts/barcodes/willadt -catalogue-date 2012-04-03 18:09:05 +0200 +catalogue-date 2016-07-15 12:22:13 +0200 catalogue-license lppl +catalogue-topics barcode name bardiag category Package revision 22013 -shortdesc LateX package for drawing bar diagrams. +shortdesc LaTeX package for drawing bar diagrams relocated 1 longdesc The main purpose of the package is to make the drawing of bar longdesc diagrams possible and easy in LaTeX. The BarDiag package is longdesc inspired by and based on PSTricks. -runfiles size=18 - RELOC/tex/latex/bardiag/barddoc.sty - RELOC/tex/latex/bardiag/bardiag.bar - RELOC/tex/latex/bardiag/bardiag.cfg - RELOC/tex/latex/bardiag/bardiag.sty - RELOC/tex/latex/bardiag/pstfp.sty +containersize 12260 +containerchecksum dad9b5a50e5a82ed0285fb36c609c4302f7b22daf71c159848788d8c7c91c19dd44398e98357dd58366cd97140e943540d05b6e1c9937124a40c4b4070065a1a +doccontainersize 588832 +doccontainerchecksum 54fcfb2473c6ece46ec2b01853c89046c7f5396e97f62b9175cedaf4b1e783285c7c417700c827a7b9fefe5055b10723ce278e5fff0e864434f84020472c1cd8 docfiles size=419 - RELOC/doc/latex/bardiag/README - RELOC/doc/latex/bardiag/bardiag.pdf + RELOC/doc/latex/bardiag/README details="Readme" + RELOC/doc/latex/bardiag/bardiag.pdf details="Package documentation, sections 1-3" RELOC/doc/latex/bardiag/bardiag.tex - RELOC/doc/latex/bardiag/bardiag1.pdf + RELOC/doc/latex/bardiag/bardiag1.pdf details="Package documentation, section 4" RELOC/doc/latex/bardiag/bardiag1.tex - RELOC/doc/latex/bardiag/bardiag2.pdf + RELOC/doc/latex/bardiag/bardiag2.pdf details="Package documentation, appendix" RELOC/doc/latex/bardiag/bardiag2.tex RELOC/doc/latex/bardiag/example/altdiags.ps RELOC/doc/latex/bardiag/example/altdiags.tex @@ -12822,36 +25240,95 @@ docfiles size=419 RELOC/doc/latex/bardiag/src/7.tex RELOC/doc/latex/bardiag/src/8.tex RELOC/doc/latex/bardiag/src/9.tex +runfiles size=18 + RELOC/tex/latex/bardiag/barddoc.sty + RELOC/tex/latex/bardiag/bardiag.bar + RELOC/tex/latex/bardiag/bardiag.cfg + RELOC/tex/latex/bardiag/bardiag.sty + RELOC/tex/latex/bardiag/pstfp.sty +catalogue-also pst-bar bchart catalogue-ctan /graphics/bardiag -catalogue-date 2012-07-19 15:23:05 +0200 +catalogue-date 2018-09-15 11:18:06 +0200 catalogue-license lppl +catalogue-topics genchart catalogue-version 0.4a name barr category Package -revision 23579 +revision 38479 catalogue diagxy -shortdesc Diagram macros by Michael Barr. +shortdesc Diagram macros by Michael Barr relocated 1 longdesc Diagxy is a general diagramming package, useful for diagrams in longdesc a number of mathematical disciplines. Diagxy is a development longdesc of an earlier (successful) package to use the facilities of the longdesc xypic bundle. -runfiles size=12 - RELOC/tex/generic/barr/diagxy.tex -docfiles size=93 - RELOC/doc/generic/barr/diaxydoc.pdf +containersize 8104 +containerchecksum 6bd398efda5027e3b762b817ce777adb9bb1c8e593ca04386adedeab7dc26ba382058ccfa3c281ef8612fcc50c9b719e7f881dcde0cfec041cf4b2cd05f238f8 +doccontainersize 414908 +doccontainerchecksum 6600ecadc60fdd00e4d894969a84118265b5c5d07e9a411d3f01887fd1e94c481b117cbda80451774294dbb989a61379b16fe3ba5c3b8363a9a2485b76752aed +docfiles size=117 + RELOC/doc/generic/barr/README details="Readme" + RELOC/doc/generic/barr/diaxydoc.pdf details="Package documentation" RELOC/doc/generic/barr/diaxydoc.tex -catalogue-ctan /macros/generic/diagrams/barr -catalogue-date 2012-02-21 12:31:05 +0100 -catalogue-license lppl +runfiles size=13 + RELOC/tex/generic/barr/diagxy.tex +catalogue-ctan /macros/generic/diagrams/diagxy +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics diagram-comm name bartel-chess-fonts category Package revision 20619 -shortdesc A set of fonts supporting chess diagrams. +shortdesc A set of fonts supporting chess diagrams relocated 1 longdesc The fonts are provided as Metafont source. +containersize 17456 +containerchecksum 33c52620d32f5e79a702bb664cfcb47409faa049dbf7f34cc5816005b4667267810fab130e3aee1ff7a7e3292af37c2d376c01dd2bbf17be199a22cc36ba751f +doccontainersize 5492 +doccontainerchecksum e61232eed7f345e28796192d836af9de29bda257fb85460f67a89bbdfd7dce01b8361962b7cccf314311c0e772e69367f2921ad898c106389195164b6c925ffc +docfiles size=40 + RELOC/doc/fonts/bartel-chess-fonts/README details="Readme" + RELOC/doc/fonts/bartel-chess-fonts/other-sources/CGA.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/agfa.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/amiga-PAL.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/amiga.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/chess.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/fselch15.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/fselch30.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/fselch34.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/fselch5mm.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/pkelch.mfj + RELOC/doc/fonts/bartel-chess-fonts/other-sources/pkfootbows.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/pkmakeneutral.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/pkparallel.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/pkscreengrid.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/pkshorten.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px150.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px17.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px20.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px21.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px23.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px25.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px29.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px31.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px33.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px41.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px45.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px49.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px53.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px57.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px63.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px700.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px71.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px72.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px79.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/px9.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/scan.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/screengrid.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/tt.mf + RELOC/doc/fonts/bartel-chess-fonts/other-sources/turnboard.mf runfiles size=92 RELOC/fonts/source/public/bartel-chess-fonts/elch-bishop.mf RELOC/fonts/source/public/bartel-chess-fonts/elch-blackfield.mf @@ -12917,55 +25394,15 @@ runfiles size=92 RELOC/fonts/tfm/public/bartel-chess-fonts/pkelch16.tfm RELOC/fonts/tfm/public/bartel-chess-fonts/pkelch8.tfm RELOC/fonts/tfm/public/bartel-chess-fonts/pkelch9.tfm -docfiles size=40 - RELOC/doc/fonts/bartel-chess-fonts/README - RELOC/doc/fonts/bartel-chess-fonts/other-sources/CGA.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/agfa.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/amiga-PAL.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/amiga.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/chess.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/fselch15.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/fselch30.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/fselch34.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/fselch5mm.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/pkelch.mfj - RELOC/doc/fonts/bartel-chess-fonts/other-sources/pkfootbows.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/pkmakeneutral.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/pkparallel.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/pkscreengrid.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/pkshorten.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/px150.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/px17.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/px20.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/px21.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/px23.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/px25.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/px29.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/px31.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/px33.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/px41.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/px45.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/px49.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/px53.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/px57.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/px63.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/px700.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/px71.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/px72.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/px79.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/px9.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/scan.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/screengrid.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/tt.mf - RELOC/doc/fonts/bartel-chess-fonts/other-sources/turnboard.mf catalogue-ctan /fonts/bartel-chess-fonts -catalogue-date 2014-04-06 12:09:20 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics games font font-chess font-mf name bashful category Package revision 25597 -shortdesc Invoke bash commands from within LaTeX. +shortdesc Invoke bash commands from within LaTeX relocated 1 longdesc The package makes it possible to execute Unix bash shell longdesc scripts from within LaTeX. The main application is in writing @@ -12975,22 +25412,27 @@ longdesc input. The package may use other Unix shells than bash, but longdesc does not work without modification in a Windows environment. longdesc The package requires the -shell-escape flag when LaTeX is longdesc processing your document. -runfiles size=5 - RELOC/tex/latex/bashful/bashful.sty +containersize 5292 +containerchecksum b46abbc1622fcc15d65981368d5c8a7528f2142d722604eb028e0cc364d6e908587cb58a340283e7afa43581ce365ac7a545bef65d1cb5e273e777467231c40d +doccontainersize 570412 +doccontainerchecksum 5017fef7ad1c67f33cc881a94f75cce97d422b047d8944dbff377b1f3f3d36025b7b73c76ba2ed96bf06b0c6e9c3e99b97ecf36e2ec8ab8b7e1893dc11f201f2 docfiles size=148 RELOC/doc/latex/bashful/Makefile RELOC/doc/latex/bashful/README - RELOC/doc/latex/bashful/bashful.pdf + RELOC/doc/latex/bashful/bashful.pdf details="Package documentation" RELOC/doc/latex/bashful/bashful.tex +runfiles size=5 + RELOC/tex/latex/bashful/bashful.sty catalogue-ctan /macros/latex/contrib/bashful -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics ext-code catalogue-version 0.93 name basicarith category Package revision 35460 -shortdesc Macros for typesetting basic arithmetic. +shortdesc Macros for typesetting basic arithmetic relocated 1 longdesc The package provides macros for typesetting basic arithmetic, longdesc in the style typically found in textbooks. It focuses on the @@ -12999,26 +25441,33 @@ longdesc mostly in low-level TeX, with the goal that it should run in longdesc either plain TeX or LaTeX, but there are two constructions that longdesc currently prevent this. It is highly configurable, with macros longdesc and lengths described in the documentation. -runfiles size=2 - RELOC/tex/latex/basicarith/basicarith.sty +containersize 2628 +containerchecksum 346edf1704ed621a326e4f945b8f5341dfbd2d46af095691c7b853a9683dfb2254d443ae04bf235f192a57dd55336dd50249b0963bde041120468499e61012b7 +doccontainersize 219292 +doccontainerchecksum bf454539b0202321121437d2448c3b49a2d6122459af4788a573cc2525f0301d1267b12f3df8636a36fe807c474cb23347a41a2c412eb12b674c58541516ade2 docfiles size=59 RELOC/doc/latex/basicarith/CHANGES - RELOC/doc/latex/basicarith/README - RELOC/doc/latex/basicarith/basicarith.pdf + RELOC/doc/latex/basicarith/README details="Readme" + RELOC/doc/latex/basicarith/basicarith.pdf details="Package documentation" RELOC/doc/latex/basicarith/lppl.txt +srccontainersize 10016 +srccontainerchecksum 6c8b449cd8f356be6403a48943d6b91cf2c2dcff90020041a8dde0fb8ad1fa598727137dfda0b091ee776c968d4dffdad1215716111a36be16cc5c5e5b2cc5e6 srcfiles size=9 RELOC/source/latex/basicarith/basicarith.dtx RELOC/source/latex/basicarith/basicarith.ins +runfiles size=2 + RELOC/tex/latex/basicarith/basicarith.sty catalogue-ctan /macros/latex/contrib/basicarith -catalogue-date 2014-10-27 22:19:19 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics arithmetic calculation catalogue-version 1.1 name baskervald category Package revision 19490 catalogue baskervaldadf -shortdesc Baskervald ADF fonts collection with TeX/LaTeX support. +shortdesc Baskervald ADF fonts collection with TeX/LaTeX support relocated 1 longdesc Baskervald ADF is a serif family with lining figures designed longdesc as a substitute for Baskerville. The family currently includes @@ -13031,6 +25480,27 @@ longdesc "standard" or default characters while the other supports longdesc additional ligatures. The included package files provide access longdesc to these features in LaTeX. execute addMap ybv.map +containersize 421084 +containerchecksum 3c0451c43f81396038c3ccff2b4a9b07bf31023fa7afafd2884506928dffc8a9345ff0b8c8114f20b3016026f4532ab138a8b4787a37811501659a0f53c98941 +doccontainersize 245760 +doccontainerchecksum e9e2c8749e29351b59690027b019da441de5c74068aa5a8457e3014c751fb23dddb0e8b94bf56529879086ea8c58e023a23b85ed9bbaece10f6dcc65ddcf3ff6 +docfiles size=76 + RELOC/doc/fonts/baskervald/COPYING + RELOC/doc/fonts/baskervald/NOTICE.txt + RELOC/doc/fonts/baskervald/README details="Readme" + RELOC/doc/fonts/baskervald/baskervaldadf.pdf details="Package documentation" + RELOC/doc/fonts/baskervald/baskervaldadf.tex + RELOC/doc/fonts/baskervald/manifest.txt +srccontainersize 9356 +srccontainerchecksum 60122d6a04e88fecd4c6baae3a657f40bbfd48895cc674e95ee9e2b3f9172e01d009064a616f2d7b3f48c41d43f75efda19c3ca54feee612f1866fe64eef366e +srcfiles size=25 + RELOC/source/fonts/baskervald/reglyph-ybv.tex + RELOC/source/fonts/baskervald/supp-ybv.etx + RELOC/source/fonts/baskervald/t1-baskervald-lig.etx + RELOC/source/fonts/baskervald/t1-baskervald.etx + RELOC/source/fonts/baskervald/ts1-baskervald.etx + RELOC/source/fonts/baskervald/ybv-drv.tex + RELOC/source/fonts/baskervald/ybv-map.tex runfiles size=274 RELOC/fonts/afm/arkandis/baskervald/ybvb8a.afm RELOC/fonts/afm/arkandis/baskervald/ybvbi8a.afm @@ -13105,29 +25575,17 @@ runfiles size=274 RELOC/tex/latex/baskervald/t1ybvw.fd RELOC/tex/latex/baskervald/ts1ybv.fd RELOC/tex/latex/baskervald/ts1ybvw.fd -docfiles size=76 - RELOC/doc/fonts/baskervald/COPYING - RELOC/doc/fonts/baskervald/NOTICE.txt - RELOC/doc/fonts/baskervald/README - RELOC/doc/fonts/baskervald/baskervaldadf.pdf - RELOC/doc/fonts/baskervald/baskervaldadf.tex - RELOC/doc/fonts/baskervald/manifest.txt -srcfiles size=25 - RELOC/source/fonts/baskervald/reglyph-ybv.tex - RELOC/source/fonts/baskervald/supp-ybv.etx - RELOC/source/fonts/baskervald/t1-baskervald-lig.etx - RELOC/source/fonts/baskervald/t1-baskervald.etx - RELOC/source/fonts/baskervald/ts1-baskervald.etx - RELOC/source/fonts/baskervald/ybv-drv.tex - RELOC/source/fonts/baskervald/ybv-map.tex +catalogue-also baskervaldx +catalogue-contact-home http://arkandis.tuxfamily.org/ catalogue-ctan /fonts/baskervaldadf -catalogue-date 2015-01-19 21:10:13 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl +catalogue-topics font font-type1 font-serif catalogue-version 1.016 name baskervaldx category Package -revision 36734 +revision 43461 shortdesc Extension and modification of BaskervaldADF with LaTeX support relocated 1 longdesc Extends and modifies the BaskervaldADF font (a Baskerville @@ -13135,7 +25593,18 @@ longdesc substitute) with more accented glyphs, with small caps and longdesc oldstyle figures in all shapes. Includes OpenType and longdesc PostScript fonts, as well as LaTeX support files. execute addMap baskervaldx.map -runfiles size=1155 +containersize 671052 +containerchecksum e3d0d7c0329c170f2b88a9696b96bb7e19b51470030a039eba34f6bf90f033ef6805bca13227415dd69a636ccf0eb5b45527597128bc412ac9ae9415deea1e78 +doccontainersize 211436 +doccontainerchecksum 442a8f29795b3af8022e0a4753807e1f2060f53e06257d5198e8e23cd7615a20869a90eb7f50649c4773fa2d72faaa038c579738b3c5f3ba47c796b00afe1720 +docfiles size=66 + RELOC/doc/fonts/baskervaldx/COPYING + RELOC/doc/fonts/baskervaldx/NOTICE.txt + RELOC/doc/fonts/baskervaldx/README details="Readme" + RELOC/doc/fonts/baskervaldx/baskervaldx-doc.pdf details="Package documentation" + RELOC/doc/fonts/baskervaldx/baskervaldx-doc.tex + RELOC/doc/fonts/baskervaldx/baskervaldxmatheg-crop.pdf +runfiles size=1150 RELOC/fonts/afm/public/baskervaldx/Baskervaldx-Bol.afm RELOC/fonts/afm/public/baskervaldx/Baskervaldx-BolIta.afm RELOC/fonts/afm/public/baskervaldx/Baskervaldx-Ita.afm @@ -13601,141 +26070,837 @@ runfiles size=1155 RELOC/tex/latex/baskervaldx/TS1Baskervaldx-TLF.fd RELOC/tex/latex/baskervaldx/TS1Baskervaldx-TOsF.fd RELOC/tex/latex/baskervaldx/baskervaldx.fontspec -docfiles size=57 - RELOC/doc/fonts/baskervaldx/COPYING - RELOC/doc/fonts/baskervaldx/NOTICE.txt - RELOC/doc/fonts/baskervaldx/README - RELOC/doc/fonts/baskervaldx/baskervaldx-doc.pdf - RELOC/doc/fonts/baskervaldx/baskervaldx-doc.tex - RELOC/doc/fonts/baskervaldx/baskervaldxmatheg-crop.pdf catalogue-ctan /fonts/baskervaldx -catalogue-date 2015-04-07 00:01:20 +0200 +catalogue-date 2017-03-11 09:14:11 +0100 catalogue-license gpl -catalogue-version 1.07 +catalogue-topics font-otf font-type1 font-serif +catalogue-version 1.072 + +name baskervillef +category Package +revision 51121 +shortdesc Fry's Baskerville look-alike, with math support +relocated 1 +longdesc BaskervilleF is a fork from the Libre Baskerville fonts (Roman, +longdesc Italic, Bold only) released under the OFL by Paolo Impallari +longdesc and Rodrigo Fuenzalida. Their fonts are optimized for web +longdesc usage, while BaskervilleF is optimized for traditional TeX +longdesc usage, normally destined for production of pdf files. A bold +longdesc italic style was added and mathematical support is offered as +longdesc an option to newtxmath. +execute addMap BaskervilleF.map +containersize 1071840 +containerchecksum ee8de6accb53b62908a025fea331a07570bbb016c7904fd700ba9ed584e482dd993ab04b7fbf8e6517d3a573cea1b6a055d3b3ea7ad03eedad2fe14aa8893191 +doccontainersize 205276 +doccontainerchecksum 942d3d68e79cf65cffbc73ac225a6020655bce8af27d616de784747225cd6de51ca606963daa55fc698c6dd989ce12ff1a0103ba3b9391ed6aa2edadadead829 +docfiles size=66 + RELOC/doc/fonts/baskervillef/FONTLOG.txt + RELOC/doc/fonts/baskervillef/OFL-FAQ.txt + RELOC/doc/fonts/baskervillef/OFL.txt + RELOC/doc/fonts/baskervillef/README details="Readme" + RELOC/doc/fonts/baskervillef/baskervillef-doc.pdf details="Package documentation" + RELOC/doc/fonts/baskervillef/baskervillef-doc.tex +runfiles size=2326 + RELOC/fonts/enc/dvips/baskervillef/zba_3oppw2.enc + RELOC/fonts/enc/dvips/baskervillef/zba_4scfns.enc + RELOC/fonts/enc/dvips/baskervillef/zba_523v7l.enc + RELOC/fonts/enc/dvips/baskervillef/zba_66iezk.enc + RELOC/fonts/enc/dvips/baskervillef/zba_6emqgt.enc + RELOC/fonts/enc/dvips/baskervillef/zba_6mhi2z.enc + RELOC/fonts/enc/dvips/baskervillef/zba_77ryg7.enc + RELOC/fonts/enc/dvips/baskervillef/zba_7yyqda.enc + RELOC/fonts/enc/dvips/baskervillef/zba_a6zfty.enc + RELOC/fonts/enc/dvips/baskervillef/zba_adnnkl.enc + RELOC/fonts/enc/dvips/baskervillef/zba_ahcsm7.enc + RELOC/fonts/enc/dvips/baskervillef/zba_b5lrlg.enc + RELOC/fonts/enc/dvips/baskervillef/zba_bnmcfu.enc + RELOC/fonts/enc/dvips/baskervillef/zba_bue3wb.enc + RELOC/fonts/enc/dvips/baskervillef/zba_bvbtx2.enc + RELOC/fonts/enc/dvips/baskervillef/zba_cgvvj5.enc + RELOC/fonts/enc/dvips/baskervillef/zba_csuamn.enc + RELOC/fonts/enc/dvips/baskervillef/zba_cvjygd.enc + RELOC/fonts/enc/dvips/baskervillef/zba_cyyuxb.enc + RELOC/fonts/enc/dvips/baskervillef/zba_dzrx7a.enc + RELOC/fonts/enc/dvips/baskervillef/zba_e3xw3x.enc + RELOC/fonts/enc/dvips/baskervillef/zba_e6c7a3.enc + RELOC/fonts/enc/dvips/baskervillef/zba_eurn55.enc + RELOC/fonts/enc/dvips/baskervillef/zba_evqzha.enc + RELOC/fonts/enc/dvips/baskervillef/zba_fj77ru.enc + RELOC/fonts/enc/dvips/baskervillef/zba_hkkd2g.enc + RELOC/fonts/enc/dvips/baskervillef/zba_hljrbf.enc + RELOC/fonts/enc/dvips/baskervillef/zba_i3q27v.enc + RELOC/fonts/enc/dvips/baskervillef/zba_i5fury.enc + RELOC/fonts/enc/dvips/baskervillef/zba_igqvi4.enc + RELOC/fonts/enc/dvips/baskervillef/zba_invrxa.enc + RELOC/fonts/enc/dvips/baskervillef/zba_iqxfxn.enc + RELOC/fonts/enc/dvips/baskervillef/zba_iy3fha.enc + RELOC/fonts/enc/dvips/baskervillef/zba_iy3qnl.enc + RELOC/fonts/enc/dvips/baskervillef/zba_jayro7.enc + RELOC/fonts/enc/dvips/baskervillef/zba_jesydd.enc + RELOC/fonts/enc/dvips/baskervillef/zba_kb3ura.enc + RELOC/fonts/enc/dvips/baskervillef/zba_kodzea.enc + RELOC/fonts/enc/dvips/baskervillef/zba_koujiy.enc + RELOC/fonts/enc/dvips/baskervillef/zba_kqfmr4.enc + RELOC/fonts/enc/dvips/baskervillef/zba_kragcu.enc + RELOC/fonts/enc/dvips/baskervillef/zba_kua26b.enc + RELOC/fonts/enc/dvips/baskervillef/zba_kuzvvg.enc + RELOC/fonts/enc/dvips/baskervillef/zba_ljx3jq.enc + RELOC/fonts/enc/dvips/baskervillef/zba_lwrbox.enc + RELOC/fonts/enc/dvips/baskervillef/zba_m3z5kj.enc + RELOC/fonts/enc/dvips/baskervillef/zba_mebvzg.enc + RELOC/fonts/enc/dvips/baskervillef/zba_mevjdz.enc + RELOC/fonts/enc/dvips/baskervillef/zba_n43ddx.enc + RELOC/fonts/enc/dvips/baskervillef/zba_n4mxmz.enc + RELOC/fonts/enc/dvips/baskervillef/zba_nvjtae.enc + RELOC/fonts/enc/dvips/baskervillef/zba_o2tifi.enc + RELOC/fonts/enc/dvips/baskervillef/zba_o6dtj2.enc + RELOC/fonts/enc/dvips/baskervillef/zba_owa6ha.enc + RELOC/fonts/enc/dvips/baskervillef/zba_owjda7.enc + RELOC/fonts/enc/dvips/baskervillef/zba_oxcsv2.enc + RELOC/fonts/enc/dvips/baskervillef/zba_oyegn6.enc + RELOC/fonts/enc/dvips/baskervillef/zba_p3pzma.enc + RELOC/fonts/enc/dvips/baskervillef/zba_pjh6nq.enc + RELOC/fonts/enc/dvips/baskervillef/zba_pqfamk.enc + RELOC/fonts/enc/dvips/baskervillef/zba_q37ime.enc + RELOC/fonts/enc/dvips/baskervillef/zba_qleltn.enc + RELOC/fonts/enc/dvips/baskervillef/zba_qptswd.enc + RELOC/fonts/enc/dvips/baskervillef/zba_qycpdj.enc + RELOC/fonts/enc/dvips/baskervillef/zba_rqwz3b.enc + RELOC/fonts/enc/dvips/baskervillef/zba_s6fzkp.enc + RELOC/fonts/enc/dvips/baskervillef/zba_sb5wfb.enc + RELOC/fonts/enc/dvips/baskervillef/zba_sqc4ly.enc + RELOC/fonts/enc/dvips/baskervillef/zba_t5goht.enc + RELOC/fonts/enc/dvips/baskervillef/zba_t7zhq6.enc + RELOC/fonts/enc/dvips/baskervillef/zba_taxp3x.enc + RELOC/fonts/enc/dvips/baskervillef/zba_tjuaha.enc + RELOC/fonts/enc/dvips/baskervillef/zba_tqvuvp.enc + RELOC/fonts/enc/dvips/baskervillef/zba_twn2qn.enc + RELOC/fonts/enc/dvips/baskervillef/zba_u24co6.enc + RELOC/fonts/enc/dvips/baskervillef/zba_uf7ozb.enc + RELOC/fonts/enc/dvips/baskervillef/zba_vaofbk.enc + RELOC/fonts/enc/dvips/baskervillef/zba_ve4agh.enc + RELOC/fonts/enc/dvips/baskervillef/zba_vezlo5.enc + RELOC/fonts/enc/dvips/baskervillef/zba_vunabj.enc + RELOC/fonts/enc/dvips/baskervillef/zba_wcz3px.enc + RELOC/fonts/enc/dvips/baskervillef/zba_wdfmp4.enc + RELOC/fonts/enc/dvips/baskervillef/zba_xlbenp.enc + RELOC/fonts/enc/dvips/baskervillef/zba_xt7x67.enc + RELOC/fonts/enc/dvips/baskervillef/zba_xucdkt.enc + RELOC/fonts/enc/dvips/baskervillef/zba_z5rfyo.enc + RELOC/fonts/enc/dvips/baskervillef/zba_zfeutd.enc + RELOC/fonts/enc/dvips/baskervillef/zba_zn4iv3.enc + RELOC/fonts/enc/dvips/baskervillef/zba_zptsj3.enc + RELOC/fonts/enc/dvips/baskervillef/zba_zygn7r.enc + RELOC/fonts/map/dvips/baskervillef/BaskervilleF.map + RELOC/fonts/opentype/public/baskervillef/BaskervilleF-Bold.otf + RELOC/fonts/opentype/public/baskervillef/BaskervilleF-BoldItalic.otf + RELOC/fonts/opentype/public/baskervillef/BaskervilleF-Italic.otf + RELOC/fonts/opentype/public/baskervillef/BaskervilleF-Regular.otf + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-osf.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-ot1G.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Bold.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-alph.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-osf.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-ot1G.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-BoldItalic.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-alph.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-dnom-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-dnom-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-dnom-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-th-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-th-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-th-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-th-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-th-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-th-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-th-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-th-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-th-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-th-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-osf.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-ot1G.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-th-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-th-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-th-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-th-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-th-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-th-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-th-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-th-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-th-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-th-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Italic.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-dnom-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-dnom-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-dnom-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-dnom-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-osf.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-ot1G.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/baskervillef/BaskervilleF-Regular.tfm + RELOC/fonts/tfm/public/baskervillef/zbabmi.tfm + RELOC/fonts/tfm/public/baskervillef/zbami.tfm + RELOC/fonts/type1/public/baskervillef/BaskervilleF-Bold.pfb + RELOC/fonts/type1/public/baskervillef/BaskervilleF-BoldItalic.pfb + RELOC/fonts/type1/public/baskervillef/BaskervilleF-Italic.pfb + RELOC/fonts/type1/public/baskervillef/BaskervilleF-Regular.pfb + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-lf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-lf-swash-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-lf-swash-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-lf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-lf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-osf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-osf-swash-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-osf-swash-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-osf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-osf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-sup-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-sup-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tlf-ot1G.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tlf-swash-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tlf-swash-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tlf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tosf-swash-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tosf-swash-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tosf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-lf-swash-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-osf-swash-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-osf-swash-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tlf-ot1G.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tosf-swash-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tosf-swash-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-dnom-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-dnom-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-lf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-lf-swash-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-lf-swash-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-lf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-lf-th-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-lf-th-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-lf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-osf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-osf-swash-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-osf-swash-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-osf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-osf-th-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-osf-th-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-osf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-sup-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-sup-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tlf-ot1G.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tlf-swash-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tlf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tlf-th-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tlf-th-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tosf-swash-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tosf-swash-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tosf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tosf-th-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tosf-th-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-dnom-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-dnom-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-lf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-lf-swash-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-lf-swash-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-lf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-lf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-osf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-osf-swash-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-osf-swash-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-osf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-osf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-sup-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-sup-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tlf-ot1G.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tlf-swash-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tlf-swash-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tlf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tosf-swash-ly1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tosf-swash-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tosf-t1.vf + RELOC/fonts/vf/public/baskervillef/BaskervilleF-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/baskervillef/zbabmi.vf + RELOC/fonts/vf/public/baskervillef/zbami.vf + RELOC/tex/latex/baskervillef/LY1BaskervilleF-Dnom.fd + RELOC/tex/latex/baskervillef/LY1BaskervilleF-LF.fd + RELOC/tex/latex/baskervillef/LY1BaskervilleF-OsF.fd + RELOC/tex/latex/baskervillef/LY1BaskervilleF-Sup.fd + RELOC/tex/latex/baskervillef/LY1BaskervilleF-TLF.fd + RELOC/tex/latex/baskervillef/LY1BaskervilleF-TOsF.fd + RELOC/tex/latex/baskervillef/OT1BaskervilleF-Dnom.fd + RELOC/tex/latex/baskervillef/OT1BaskervilleF-LF.fd + RELOC/tex/latex/baskervillef/OT1BaskervilleF-OsF.fd + RELOC/tex/latex/baskervillef/OT1BaskervilleF-Sup.fd + RELOC/tex/latex/baskervillef/OT1BaskervilleF-TLF.fd + RELOC/tex/latex/baskervillef/OT1BaskervilleF-TOsF.fd + RELOC/tex/latex/baskervillef/T1BaskervilleF-Dnom.fd + RELOC/tex/latex/baskervillef/T1BaskervilleF-LF.fd + RELOC/tex/latex/baskervillef/T1BaskervilleF-OsF.fd + RELOC/tex/latex/baskervillef/T1BaskervilleF-Sup.fd + RELOC/tex/latex/baskervillef/T1BaskervilleF-TLF.fd + RELOC/tex/latex/baskervillef/T1BaskervilleF-TOsF.fd + RELOC/tex/latex/baskervillef/TS1BaskervilleF-LF.fd + RELOC/tex/latex/baskervillef/TS1BaskervilleF-OsF.fd + RELOC/tex/latex/baskervillef/TS1BaskervilleF-TLF.fd + RELOC/tex/latex/baskervillef/TS1BaskervilleF-TOsF.fd + RELOC/tex/latex/baskervillef/baskervillef.fontspec + RELOC/tex/latex/baskervillef/baskervillef.sty + RELOC/tex/latex/baskervillef/omlzbami.fd +catalogue-ctan /fonts/baskervillef +catalogue-date 2019-05-14 08:08:45 +0200 +catalogue-license ofllppl1.3 +catalogue-topics font font-serif font-otf font-type1 font-t1enc +catalogue-version 1.047 name basque-book category Package revision 32924 -shortdesc Class for book-type documents written in Basque. +shortdesc Class for book-type documents written in Basque relocated 1 longdesc The class is derived from the LaTeX book class. The extensions -longdesc solve grammatical and numeration issues that occur when book- -longdesc type documents are written in Basque. The class is useful for -longdesc writing books, PhD and Master Theses, etc., in Basque. -runfiles size=6 - RELOC/tex/latex/basque-book/basque-book.cls +longdesc solve grammatical and numeration issues that occur when +longdesc book-type documents are written in Basque. The class is useful +longdesc for writing books, PhD and Master Theses, etc., in Basque. +containersize 6032 +containerchecksum 645d55362506a1bcf563a12ddb7616f085d5cc75a45cb2f0dcdf551158b48f595cd71278caf9a0c35f1d85ca66b880e6f59f9ee416fb9bf15cd7c18bf6fda2b9 +doccontainersize 391648 +doccontainerchecksum 7954b1c86ddac3a1409bf16cc7db5470332fb86459257756200dc794a3443b137e6013a7e904bbf63e8fceae64850418e56ad08af12a448c1fe507e29221c7be docfiles size=117 - RELOC/doc/latex/basque-book/README - RELOC/doc/latex/basque-book/basque-book.pdf - RELOC/doc/latex/basque-book/basque-book_EUS.pdf + RELOC/doc/latex/basque-book/README details="Readme" + RELOC/doc/latex/basque-book/basque-book.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/basque-book/basque-book_EUS.pdf details="Package documentation (Basque)" language="eu" RELOC/doc/latex/basque-book/basque-book_EUS.tex +srccontainersize 10280 +srccontainerchecksum 4b8a2ac7320d04d5e35a0c789e5b548582ef4e0723ca45231250b44ab08fb52a73e88f5425218ecdc3e3d35e01042b64c711ad78aaef0c4f119ebd1abc4dc36f srcfiles size=11 RELOC/source/latex/basque-book/basque-book.dtx RELOC/source/latex/basque-book/basque-book.ins +runfiles size=6 + RELOC/tex/latex/basque-book/basque-book.cls catalogue-ctan /macros/latex/contrib/basque-book -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics book-pub dissertation class basque catalogue-version 1.20 name basque-date category Package revision 26477 -shortdesc Print the date in Basque. +shortdesc Print the date in Basque relocated 1 longdesc The package provides two LaTeX commands to print the current longdesc date in Basque according to the correct forms ruled by The longdesc Basque Language Academy (Euskaltzaindia). The commands longdesc automatically solve the complex declination issues of numbers longdesc in Basque. -runfiles size=2 - RELOC/tex/latex/basque-date/basque-date.sty +containersize 1696 +containerchecksum 2f0cdfa78c3b75dddc5ab9ed15f651308dad4e598f9623eea50929c48d6f15318f768b95d55ba124eb048129447ce1e629febbb3fa6925677b2a46ac94d82654 +doccontainersize 194976 +doccontainerchecksum 249bfaabe93c4306c32c698eede8835cac334a27802253dc6ce1f380eaafa5c79fc3b86ee34ddd7b98df043cc0ccec137ae3d342cd3904f39203b0ffba2fc9b7 docfiles size=49 - RELOC/doc/latex/basque-date/README - RELOC/doc/latex/basque-date/basque-date.pdf + RELOC/doc/latex/basque-date/README details="Readme" + RELOC/doc/latex/basque-date/basque-date.pdf details="Package documentation" +srccontainersize 3180 +srccontainerchecksum f38091d9c38f86efa401f11759c536dc3ec041688ef9b1909dbdb5661ea096b7e4d69ee78a5beb194e1cdb24afc8ea07e26f2c9c45777aae517351fd4f3a2b86 srcfiles size=4 RELOC/source/latex/basque-date/basque-date.dtx RELOC/source/latex/basque-date/basque-date.ins +runfiles size=2 + RELOC/tex/latex/basque-date/basque-date.sty catalogue-ctan /macros/latex/contrib/basque-date -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics basque date-time catalogue-version 1.05 +name bath-bst +category Package +revision 47507 +shortdesc Harvard referencing style as recommended by the University of Bath Library +relocated 1 +longdesc This package provides a BibTeX style to format reference lists +longdesc in the Harvard style recommended by the University of Bath +longdesc Library. It should be used in conjunction with natbib for +longdesc citations. +containersize 7456 +containerchecksum a838d793eb43f8d642fcb07a9533c7e05161e9e37bb49c29bc2ce9be9e0765f24a8eeaaf1be76df77fbfa583e4ce8b788f90c7739ea9a641edddcfa13e88f2cd +doccontainersize 720192 +doccontainerchecksum 3866857b822bdbce88be3e6faad8f03beacc9e196ea283cc23b9e1f635ee3be10b1a262d47cbe4257c4841b5e051c6521d253085c3ea728fdda8972b3827bc6e +docfiles size=209 + RELOC/doc/bibtex/bath-bst/Makefile + RELOC/doc/bibtex/bath-bst/README.md details="Readme" + RELOC/doc/bibtex/bath-bst/bath-bst-v1.bib + RELOC/doc/bibtex/bath-bst/bath-bst-v1.pdf details="Documentation of version 1 style" + RELOC/doc/bibtex/bath-bst/bath-bst-v1.tex + RELOC/doc/bibtex/bath-bst/bath-bst.bib + RELOC/doc/bibtex/bath-bst/bath-bst.pdf details="Package documentation" +srccontainersize 29472 +srccontainerchecksum 2962455c69b503eeb6edfb21af0ddf6419b21e83070589d5f77eece592d4fed8f1fc071db44c92ae216680ec83ce77303f28eaca5efaeff26480670182324b8a +srcfiles size=37 + RELOC/source/bibtex/bath-bst/bath-bst.dtx + RELOC/source/bibtex/bath-bst/bath-bst.ins +runfiles size=24 + RELOC/bibtex/bst/bath-bst/bath.bst + RELOC/bibtex/bst/bath-bst/bathx.bst +catalogue-also biblatex-bath +catalogue-contact-bugs https://github.com/alex-ball/bathbib/issues +catalogue-contact-home https://github.com/alex-ball/bathbib +catalogue-ctan /biblio/bibtex/contrib/bath-bst +catalogue-date 2018-05-01 06:53:23 +0200 +catalogue-license lppl1.3c +catalogue-topics bibtex-sty +catalogue-version 2.0 + name bbcard category Package revision 19440 -shortdesc Bullshit bingo, calendar and baseball-score cards. +shortdesc Bullshit bingo, calendar and baseball-score cards relocated 1 longdesc Three jiffy packages for creating cards of various sorts with longdesc MetaPost. +containersize 6828 +containerchecksum ac7fff708b3e25312460a740241ed003ee471f84dd4d30388d9cde8380ec9a6b6fa6fd6aba69b170c464a25bec44f1669fabc4ac2d7d3e216885b7e683f88af6 +doccontainersize 2200 +doccontainerchecksum 9e4561e97ea77c84e3c1cc8f75ca61318937c45b7b50dab66d6745f61725b6397458a05e50a267937bf6db4b28558ff0e9f2225078b9516fe574620982ab2cb4 +docfiles size=4 + RELOC/doc/metapost/bbcard/README.TEXLIVE + RELOC/doc/metapost/bbcard/README.bbcard details="Bullshit bingo readme" + RELOC/doc/metapost/bbcard/README.calendar details="Calendar readme" + RELOC/doc/metapost/bbcard/README.scorecard details="Scorecard readme" runfiles size=6 RELOC/metapost/bbcard/bbcard.mp RELOC/metapost/bbcard/breakwidth.mp RELOC/metapost/bbcard/calendar.mp RELOC/metapost/bbcard/scorecard.mp -docfiles size=4 - RELOC/doc/metapost/bbcard/README.TEXLIVE - RELOC/doc/metapost/bbcard/README.bbcard - RELOC/doc/metapost/bbcard/README.calendar - RELOC/doc/metapost/bbcard/README.scorecard catalogue-ctan /graphics/metapost/contrib/macros/bbcard -catalogue-date 2012-05-17 17:06:31 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics games calendar card-gen name bbding category Package revision 17186 -shortdesc A symbol (dingbat) font and LaTeX macros for its use. +shortdesc A symbol (dingbat) font and LaTeX macros for its use relocated 1 longdesc A symbol font (distributed as Metafont source) that contains longdesc many of the symbols of the Zapf dingbats set, together with an longdesc NFSS interface for using the font. An Adobe Type 1 version of longdesc the fonts is available in the niceframe fonts bundle. -runfiles size=24 - RELOC/fonts/source/public/bbding/bbding10.mf - RELOC/fonts/tfm/public/bbding/bbding10.tfm - RELOC/tex/latex/bbding/Uding.fd - RELOC/tex/latex/bbding/bbding.sty +containersize 11688 +containerchecksum d5505fd7aaffead426a873844112e11fba47694ab07d0f5c88be31188fbf4a09ed4b8f8bce75221b2b2efb3ff81fc132fe54c2634f32679e2e2041944ec92f7d +doccontainersize 437588 +doccontainerchecksum a1425b521b1c8178bd6c9b059acf034080be6f3f312decb575b7541d34a6e1de926965cde8701061ffcb57147052b1495b21142f0eac645596a783820eb6200a docfiles size=131 - RELOC/doc/latex/bbding/README - RELOC/doc/latex/bbding/bbding.pdf + RELOC/doc/latex/bbding/README details="Readme" + RELOC/doc/latex/bbding/bbding.pdf details="Package documentation" RELOC/doc/latex/bbding/bbding10.org +srccontainersize 10152 +srccontainerchecksum be0e2b1332835920a3c93ec69ae53fe83df4918db9d3080716d7b77edf999a87f54a4c87ccbe4d48b008403539a514810f35c6b2a59d8be0ed6968f6a91ba129 srcfiles size=9 RELOC/source/latex/bbding/bbding.dtx RELOC/source/latex/bbding/bbding.ins +runfiles size=24 + RELOC/fonts/source/public/bbding/bbding10.mf + RELOC/fonts/tfm/public/bbding/bbding10.tfm + RELOC/tex/latex/bbding/Uding.fd + RELOC/tex/latex/bbding/bbding.sty catalogue-ctan /fonts/bbding -catalogue-date 2014-04-06 17:50:10 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-symbol font-mf catalogue-version 1.01 -name bbm-macros -category Package -revision 17224 -shortdesc LaTeX support for "blackboard-style" cm fonts. -relocated 1 -longdesc Provides LaTeX support for Blackboard variants of Computer -longdesc Modern fonts. Declares a font family bbm so you can in -longdesc principle write running text in blackboard bold, and lots of -longdesc math alphabets for using the fonts within maths. -runfiles size=4 - RELOC/tex/latex/bbm-macros/bbm.sty - RELOC/tex/latex/bbm-macros/ubbm.fd - RELOC/tex/latex/bbm-macros/ubbmss.fd - RELOC/tex/latex/bbm-macros/ubbmtt.fd -docfiles size=79 - RELOC/doc/latex/bbm-macros/README - RELOC/doc/latex/bbm-macros/bbm.pdf -srcfiles size=5 - RELOC/source/latex/bbm-macros/bbm.drv - RELOC/source/latex/bbm-macros/bbm.dtx - RELOC/source/latex/bbm-macros/bbm.ins -catalogue-ctan /macros/latex/contrib/bbm -catalogue-date 2012-04-25 18:00:26 +0200 -catalogue-license lppl - name bbm category Package revision 15878 -shortdesc "Blackboard-style" cm fonts. +shortdesc "Blackboard-style" cm fonts relocated 1 longdesc Blackboard variants of Computer Modern fonts. The fonts are longdesc distributed as Metafont source (only); LaTeX support is @@ -13743,6 +26908,15 @@ longdesc available with the bbm-macros package. The Sauter font package longdesc has Metafont parameter source files for building the fonts at longdesc more sizes than you could reasonably imagine. A sample of these longdesc fonts appears in the blackboard bold sampler. +containersize 32616 +containerchecksum d795fb56f2ba57dea55a546244c5d07bb20c104cb9d1e6f9b6c229df9e5fa4244f8bb883bcddc150e1072453cb518d31c110bb85d157b4fbfeb47195da939619 +doccontainersize 2288 +doccontainerchecksum 034d880588fa88d97045d73dd651a0b3573c624dbbf1d2f9fee046c59f007b9e3e2121d5d773b34aa7b0bc8c72daa540447981bf60731e64d99cde49b5f6e911 +docfiles size=4 + RELOC/doc/fonts/bbm/README details="Readme" + RELOC/doc/fonts/bbm/gfbatch.batch + RELOC/doc/fonts/bbm/mfbatch.batch + RELOC/doc/fonts/bbm/test.tex runfiles size=159 RELOC/fonts/source/public/bbm/bbm10.mf RELOC/fonts/source/public/bbm/bbm12.mf @@ -13836,19 +27010,48 @@ runfiles size=159 RELOC/fonts/tfm/public/bbm/bbmtt12.tfm RELOC/fonts/tfm/public/bbm/bbmtt8.tfm RELOC/fonts/tfm/public/bbm/bbmtt9.tfm -docfiles size=4 - RELOC/doc/fonts/bbm/README - RELOC/doc/fonts/bbm/gfbatch.batch - RELOC/doc/fonts/bbm/mfbatch.batch - RELOC/doc/fonts/bbm/test.tex +catalogue-also bbold doublestroke mbboard catalogue-ctan /fonts/cm/bbm -catalogue-date 2014-04-06 17:37:39 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics font font-maths font-bbd font-mf + +name bbm-macros +category Package +revision 17224 +shortdesc LaTeX support for "blackboard-style" cm fonts +relocated 1 +longdesc Provides LaTeX support for Blackboard variants of Computer +longdesc Modern fonts. Declares a font family bbm so you can in +longdesc principle write running text in blackboard bold, and lots of +longdesc math alphabets for using the fonts within maths. +containersize 1708 +containerchecksum 06f59837d585c721da77f289119bd4b45a91e3d72543ed3e4de76f84a2916431a733baa379b83a3e299d166e27bc0350df6f053d1ec744c52dcd0297d416fdf1 +doccontainersize 301276 +doccontainerchecksum 20a29809dffe8090e5c067dd2df9dd5a5f7de6ec7abbc01eb14b5a500f37cd62b50914733edf7403af89a1db86ebe10b3d7262f519dc01dc35b29ba0c70c3478 +docfiles size=79 + RELOC/doc/latex/bbm-macros/README details="Readme" + RELOC/doc/latex/bbm-macros/bbm.pdf details="Package documentation" +srccontainersize 3916 +srccontainerchecksum 11d1d83d558a7943e35e8146b7f44df6a553a513f8e0478e1a9c773d66d004a4110288f91896b283dc4153372bb638a444c53b9184745858976a7e6aac69b121 +srcfiles size=5 + RELOC/source/latex/bbm-macros/bbm.drv + RELOC/source/latex/bbm-macros/bbm.dtx + RELOC/source/latex/bbm-macros/bbm.ins +runfiles size=4 + RELOC/tex/latex/bbm-macros/bbm.sty + RELOC/tex/latex/bbm-macros/ubbm.fd + RELOC/tex/latex/bbm-macros/ubbmss.fd + RELOC/tex/latex/bbm-macros/ubbmtt.fd +catalogue-ctan /macros/latex/contrib/bbm +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font-supp name bbold category Package revision 17187 -shortdesc Sans serif blackboard bold. +shortdesc Sans serif blackboard bold relocated 1 longdesc A geometric sans serif blackboard bold font, for use in longdesc mathematics; Metafont sources are provided, as well as macros @@ -13856,6 +27059,20 @@ longdesc for use with LaTeX. The Sauter font package has Metafont longdesc parameter source files for building the fonts at more sizes longdesc than you could reasonably imagine. See the blackboard sampler longdesc for a feel for the font's appearance. +containersize 15768 +containerchecksum 1b123e9135179244050ed6f97f17efa2a43c42018b2fa3b01c956a99886ae6696c83df2a0d61ce95cba925c2bb4c734d77253aab165fe9f622695f557fcb0abe +doccontainersize 153072 +doccontainerchecksum c754e81f83a53c4a1cacbd2638d550ad178e0e26d7feb592585579a27b780e11733a7dc68fd374ac575cc7866a1e5417d3df0d2b973e7278d1012657bf340390 +docfiles size=41 + RELOC/doc/latex/bbold/INSTALL + RELOC/doc/latex/bbold/README details="Readme" + RELOC/doc/latex/bbold/bbold.pdf details="Package documentation" +srccontainersize 4596 +srccontainerchecksum a7a61bb796d3ee618ddc39d471bb29d1b7350a40bd7a97d44d4a1c7cd5e4eb5d5783d2ea46313344468406d1d25c71ac322ac4bbbf7b06aac35bc03651e7ccbb +srcfiles size=5 + RELOC/source/latex/bbold/bbold.dtx + RELOC/source/latex/bbold/bbold.ins + RELOC/source/latex/bbold/fonttabl.sty runfiles size=45 RELOC/fonts/source/public/bbold/bbbase.mf RELOC/fonts/source/public/bbold/bbgreekl.mf @@ -13885,23 +27102,17 @@ runfiles size=45 RELOC/fonts/tfm/public/bbold/bbold9.tfm RELOC/tex/latex/bbold/Ubbold.fd RELOC/tex/latex/bbold/bbold.sty -docfiles size=41 - RELOC/doc/latex/bbold/INSTALL - RELOC/doc/latex/bbold/README - RELOC/doc/latex/bbold/bbold.pdf -srcfiles size=5 - RELOC/source/latex/bbold/bbold.dtx - RELOC/source/latex/bbold/bbold.ins - RELOC/source/latex/bbold/fonttabl.sty +catalogue-also bbm doublestroke mbboard catalogue-ctan /fonts/bbold -catalogue-date 2014-04-06 17:50:10 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license bsd +catalogue-topics font font-maths font-bbd font-mf catalogue-version 1.01 name bbold-type1 category Package revision 33143 -shortdesc An Adobe Type 1 format version of the bbold font. +shortdesc An Adobe Type 1 format version of the bbold font relocated 1 longdesc The files offer an Adobe Type 1 format version of the 5pt, 7pt longdesc and 10pt versions of the bbold fonts. The distribution also @@ -13912,6 +27123,14 @@ longdesc fonts were produced to be part of the TeX distribution from longdesc Y&Y; they were generously donated to the TeX Users Group when longdesc Y&Y closed its doors as a business. execute addMixedMap bbold.map +containersize 70004 +containerchecksum 86631e16388a447db7c521087eccbb666612933f6fee8eace091e00b20b5070d38ebc2d4d0a754536eacef9e9e6470f237d184e00cc4419bff85087f54b81566 +doccontainersize 39920 +doccontainerchecksum ad841ac652a7985ab907572f66462091b1c40f7cdab2b00086209a2d96056e0a9e32842dfbc22c829b27799882252da95e3d10d4a9dd174f487327d5f3ac3899 +docfiles size=12 + RELOC/doc/fonts/bbold-type1/README details="Readme" + RELOC/doc/fonts/bbold-type1/test.pdf + RELOC/doc/fonts/bbold-type1/test.tex runfiles size=28 RELOC/fonts/afm/public/bbold-type1/bbold10.afm RELOC/fonts/afm/public/bbold-type1/bbold5.afm @@ -13920,44 +27139,67 @@ runfiles size=28 RELOC/fonts/type1/public/bbold-type1/bbold10.pfb RELOC/fonts/type1/public/bbold-type1/bbold5.pfb RELOC/fonts/type1/public/bbold-type1/bbold7.pfb -docfiles size=12 - RELOC/doc/fonts/bbold-type1/README - RELOC/doc/fonts/bbold-type1/test.pdf - RELOC/doc/fonts/bbold-type1/test.tex catalogue-ctan /fonts/bbold-type1 -catalogue-date 2014-04-06 17:50:10 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics font font-maths font-bbd font-type1 name bchart category Package -revision 27496 -shortdesc Draw simple bar charts in LaTeX. +revision 43928 +shortdesc Draw simple bar charts in LaTeX relocated 1 longdesc The package provides horizontal bar charts, drawn using TikZ on longdesc a numeric X-axis. The focus of the package is simplicity and longdesc aesthetics. -runfiles size=2 - RELOC/tex/latex/bchart/bchart.sty +containersize 1868 +containerchecksum b78e4017d0355107e1e73670c20457c2dc314dd0537bb3e699df3118231b5b3c0b2acbf50ca07f71216d56c81acbb031d38dea7b42099165a03a8049f62021a0 +doccontainersize 148224 +doccontainerchecksum 762b75974de179360fcfe6057102919644a564ad2c3431ef25e2c373267ec063ac8350caf0038a5964345491355ddda4f5190eff6de93f2c2da7ab168c829fcd docfiles size=44 RELOC/doc/latex/bchart/CHANGES.txt RELOC/doc/latex/bchart/LICENSE.txt - RELOC/doc/latex/bchart/README - RELOC/doc/latex/bchart/bchart.pdf + RELOC/doc/latex/bchart/README.md details="Readme" + RELOC/doc/latex/bchart/bchart.pdf details="Package documentation" RELOC/doc/latex/bchart/bchart.tex +runfiles size=2 + RELOC/tex/latex/bchart/bchart.sty +catalogue-also pst-bar +catalogue-contact-bugs https://github.com/tkuhn/bchart/issues +catalogue-contact-repository https://github.com/tkuhn/bchart catalogue-ctan /macros/latex/contrib/bchart -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license other-free -catalogue-version 0.1.2 +catalogue-date 2017-04-18 23:08:12 +0200 +catalogue-license mit +catalogue-topics genchart pgf-tikz +catalogue-version 0.1.3 name bclogo category Package -revision 23305 -shortdesc Creating colourful boxes with logos. +revision 39364 +shortdesc Creating colourful boxes with logos relocated 1 longdesc The package facilitates the creation of colorful boxes with a longdesc title and logo. It may use either tikz or PSTricks as graphics longdesc engine. -runfiles size=381 +containersize 239356 +containerchecksum 9afc02338b4141607cfd50d7678832304339d0b532464ada6fbc22c58d06dbc5a0793098c9e24617ba5296c3f7b22bccf16062017701608a758e4a26c05f12a2 +doccontainersize 662208 +doccontainerchecksum 8671f8095005a0abec84a316da59f914d19d8fe0f4d33b13e73d6ddabcefd3ec7fedcfc8ce9dcf2ed3380a129f58bec16f73694a5d2769a18618142de93be38b +docfiles size=192 + RELOC/doc/latex/bclogo/LISEZ-MOI details="Lisez moi (French)" language="fr" + RELOC/doc/latex/bclogo/README details="Readme (English)" language="en" + RELOC/doc/latex/bclogo/bclogo-doc.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/bclogo/bclogo-doc.tex + RELOC/doc/latex/bclogo/bclogo.pdf + RELOC/doc/latex/bclogo/brace.mps + RELOC/doc/latex/bclogo/fond.pdf + RELOC/doc/latex/bclogo/index.xml + RELOC/doc/latex/bclogo/losanges.mps + RELOC/doc/latex/bclogo/spir.mps + RELOC/doc/latex/bclogo/syracuse-crop.pdf + RELOC/doc/latex/bclogo/syracuse.pdf + RELOC/doc/latex/bclogo/syracuse.tex +runfiles size=382 RELOC/metapost/bclogo/bc-attention.mp RELOC/metapost/bclogo/bc-aux-301.mp RELOC/metapost/bclogo/bc-bombe.mp @@ -14088,49 +27330,417 @@ runfiles size=381 RELOC/tex/latex/bclogo/bc-velo.mps RELOC/tex/latex/bclogo/bc-yin.mps RELOC/tex/latex/bclogo/bclogo.sty -docfiles size=175 - RELOC/doc/latex/bclogo/LISEZ-MOI.doc - RELOC/doc/latex/bclogo/LISEZ-MOI.latex - RELOC/doc/latex/bclogo/README.doc - RELOC/doc/latex/bclogo/README.latex - RELOC/doc/latex/bclogo/bclogo-doc.pdf - RELOC/doc/latex/bclogo/bclogo-doc.tex - RELOC/doc/latex/bclogo/brace.mps - RELOC/doc/latex/bclogo/losanges.mps - RELOC/doc/latex/bclogo/spir.mps catalogue-ctan /graphics/bclogo -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-09-15 11:20:18 +0200 +catalogue-license lppl1.3 +catalogue-topics logo boxing +catalogue-version 3.1 + +name beamer +category Package +revision 49306 +shortdesc A LaTeX class for producing presentations and slides +relocated 1 +longdesc The beamer LaTeX class can be used for producing slides. The +longdesc class works in both PostScript and direct PDF output modes, +longdesc using the pgf graphics system for visual effects. Content is +longdesc created in the frame environment, and each frame can be made up +longdesc of a number of slides using a simple notation for specifying +longdesc material to appear on each slide within a frame. Short versions +longdesc of title, authors, institute can also be specified as optional +longdesc parameters. Whole frame graphics are supported by plain frames. +longdesc The class supports figure and table environments, transparency +longdesc effects, varying slide transitions and animations. Beamer also +longdesc provides compatibility with other packages like prosper. The +longdesc package now incorporates the functionality of the former +longdesc translator package, which is used for customising the package +longdesc for use in other language environments. Beamer depends on the +longdesc following other packages: atbegshi, etoolbox, hyperref, ifpdf, +longdesc pgf, and translator. +depend pgf +depend xcolor +containersize 164840 +containerchecksum 61dc28b7fcc108420891456b59d29f70250736bed03c51d74ac363ff8ef8a8e3edc4c216f235e11935e258367af65cffe10ba3dfda91116658bd145db653beda +doccontainersize 2272992 +doccontainerchecksum 6913c68c0010fe44a79c2530f0d7f5b9b2e822e6b4a4fcc99ddeeeaf5ac5e5e3c717538bff76ef0972d002871be570a063dffeb4aa7968fc49715ae423863f55 +docfiles size=892 + RELOC/doc/latex/beamer/AUTHORS.md + RELOC/doc/latex/beamer/CHANGELOG.md + RELOC/doc/latex/beamer/LICENSE.md + RELOC/doc/latex/beamer/README.md details="Readme" + RELOC/doc/latex/beamer/beamercolorthemeexample.tex + RELOC/doc/latex/beamer/beamerexample-conference-talk.pdf + RELOC/doc/latex/beamer/beamerexample-conference-talk.tex + RELOC/doc/latex/beamer/beamerexample-foils.tex + RELOC/doc/latex/beamer/beamerexample-lecture-beamer-version.pdf + RELOC/doc/latex/beamer/beamerexample-lecture-beamer-version.tex + RELOC/doc/latex/beamer/beamerexample-lecture-body.tex + RELOC/doc/latex/beamer/beamerexample-lecture-logo.pdf + RELOC/doc/latex/beamer/beamerexample-lecture-pic1.jpg + RELOC/doc/latex/beamer/beamerexample-lecture-pic2.jpg + RELOC/doc/latex/beamer/beamerexample-lecture-pic3.jpg + RELOC/doc/latex/beamer/beamerexample-lecture-pic4.jpg + RELOC/doc/latex/beamer/beamerexample-lecture-pic5.jpg + RELOC/doc/latex/beamer/beamerexample-lecture-pic6.jpg + RELOC/doc/latex/beamer/beamerexample-lecture-print-version.pdf + RELOC/doc/latex/beamer/beamerexample-lecture-print-version.tex + RELOC/doc/latex/beamer/beamerexample-lecture-style.tex + RELOC/doc/latex/beamer/beamerexample-prosper.tex + RELOC/doc/latex/beamer/beamerexample-seminar.tex + RELOC/doc/latex/beamer/beamerexample-texpower.tex + RELOC/doc/latex/beamer/beamerfontthemeexample.tex + RELOC/doc/latex/beamer/beamerinnerthemeexample.tex + RELOC/doc/latex/beamer/beamerlogo.pdf + RELOC/doc/latex/beamer/beamerouterthemeexample.tex + RELOC/doc/latex/beamer/beamerthemeexample.tex + RELOC/doc/latex/beamer/beamerthemeexamplebase.tex + RELOC/doc/latex/beamer/beamerug-animations.tex + RELOC/doc/latex/beamer/beamerug-color.tex + RELOC/doc/latex/beamer/beamerug-compatibility.tex + RELOC/doc/latex/beamer/beamerug-elements.tex + RELOC/doc/latex/beamer/beamerug-emulation.tex + RELOC/doc/latex/beamer/beamerug-fonts.tex + RELOC/doc/latex/beamer/beamerug-frames.tex + RELOC/doc/latex/beamer/beamerug-globalstructure.tex + RELOC/doc/latex/beamer/beamerug-graphics.tex + RELOC/doc/latex/beamer/beamerug-guidelines.tex + RELOC/doc/latex/beamer/beamerug-installation.tex + RELOC/doc/latex/beamer/beamerug-interaction.tex + RELOC/doc/latex/beamer/beamerug-introduction.tex + RELOC/doc/latex/beamer/beamerug-license.tex + RELOC/doc/latex/beamer/beamerug-localstructure.tex + RELOC/doc/latex/beamer/beamerug-macros.tex + RELOC/doc/latex/beamer/beamerug-nonpresentation.tex + RELOC/doc/latex/beamer/beamerug-notes.tex + RELOC/doc/latex/beamer/beamerug-overlays.tex + RELOC/doc/latex/beamer/beamerug-solutions.tex + RELOC/doc/latex/beamer/beamerug-themes.tex + RELOC/doc/latex/beamer/beamerug-transparencies.tex + RELOC/doc/latex/beamer/beamerug-tricks.tex + RELOC/doc/latex/beamer/beamerug-tutorial.tex + RELOC/doc/latex/beamer/beamerug-twoscreens.tex + RELOC/doc/latex/beamer/beamerug-workflow.tex + RELOC/doc/latex/beamer/beameruserguide.pdf details="Package documentation" + RELOC/doc/latex/beamer/beameruserguide.tex + RELOC/doc/latex/beamer/conference-ornate-20min.de.tex + RELOC/doc/latex/beamer/conference-ornate-20min.en.tex + RELOC/doc/latex/beamer/conference-ornate-20min.fr.tex + RELOC/doc/latex/beamer/fdl.txt + RELOC/doc/latex/beamer/generic-ornate-15min-45min.de.tex + RELOC/doc/latex/beamer/generic-ornate-15min-45min.en.tex + RELOC/doc/latex/beamer/generic-ornate-15min-45min.fr.tex + RELOC/doc/latex/beamer/gpl-2.0.txt + RELOC/doc/latex/beamer/lppl-1-3c.txt + RELOC/doc/latex/beamer/manifest-code.txt + RELOC/doc/latex/beamer/manifest-documentation.txt + RELOC/doc/latex/beamer/speaker_introduction-ornate-2min.de.tex + RELOC/doc/latex/beamer/speaker_introduction-ornate-2min.en.tex + RELOC/doc/latex/beamer/speaker_introduction-ornate-2min.fr.tex +runfiles size=252 + RELOC/tex/latex/beamer/beamer.cls + RELOC/tex/latex/beamer/beamerarticle.sty + RELOC/tex/latex/beamer/beamerbasearticle.sty + RELOC/tex/latex/beamer/beamerbaseauxtemplates.sty + RELOC/tex/latex/beamer/beamerbaseboxes.sty + RELOC/tex/latex/beamer/beamerbasecolor.sty + RELOC/tex/latex/beamer/beamerbasecompatibility.sty + RELOC/tex/latex/beamer/beamerbasedecode.sty + RELOC/tex/latex/beamer/beamerbasefont.sty + RELOC/tex/latex/beamer/beamerbaseframe.sty + RELOC/tex/latex/beamer/beamerbaseframecomponents.sty + RELOC/tex/latex/beamer/beamerbaseframesize.sty + RELOC/tex/latex/beamer/beamerbaselocalstructure.sty + RELOC/tex/latex/beamer/beamerbasemisc.sty + RELOC/tex/latex/beamer/beamerbasemodes.sty + RELOC/tex/latex/beamer/beamerbasenavigation.sty + RELOC/tex/latex/beamer/beamerbasenotes.sty + RELOC/tex/latex/beamer/beamerbaseoptions.sty + RELOC/tex/latex/beamer/beamerbaseoverlay.sty + RELOC/tex/latex/beamer/beamerbaserequires.sty + RELOC/tex/latex/beamer/beamerbasesection.sty + RELOC/tex/latex/beamer/beamerbasetemplates.sty + RELOC/tex/latex/beamer/beamerbasethemes.sty + RELOC/tex/latex/beamer/beamerbasetheorems.sty + RELOC/tex/latex/beamer/beamerbasetitle.sty + RELOC/tex/latex/beamer/beamerbasetoc.sty + RELOC/tex/latex/beamer/beamerbasetranslator.sty + RELOC/tex/latex/beamer/beamerbasetwoscreens.sty + RELOC/tex/latex/beamer/beamerbaseverbatim.sty + RELOC/tex/latex/beamer/beamercolorthemealbatross.sty + RELOC/tex/latex/beamer/beamercolorthemebeaver.sty + RELOC/tex/latex/beamer/beamercolorthemebeetle.sty + RELOC/tex/latex/beamer/beamercolorthemecrane.sty + RELOC/tex/latex/beamer/beamercolorthemedefault.sty + RELOC/tex/latex/beamer/beamercolorthemedolphin.sty + RELOC/tex/latex/beamer/beamercolorthemedove.sty + RELOC/tex/latex/beamer/beamercolorthemefly.sty + RELOC/tex/latex/beamer/beamercolorthemelily.sty + RELOC/tex/latex/beamer/beamercolorthememonarca.sty + RELOC/tex/latex/beamer/beamercolorthemeorchid.sty + RELOC/tex/latex/beamer/beamercolorthemerose.sty + RELOC/tex/latex/beamer/beamercolorthemeseagull.sty + RELOC/tex/latex/beamer/beamercolorthemeseahorse.sty + RELOC/tex/latex/beamer/beamercolorthemesidebartab.sty + RELOC/tex/latex/beamer/beamercolorthemespruce.sty + RELOC/tex/latex/beamer/beamercolorthemestructure.sty + RELOC/tex/latex/beamer/beamercolorthemewhale.sty + RELOC/tex/latex/beamer/beamercolorthemewolverine.sty + RELOC/tex/latex/beamer/beamerfoils.sty + RELOC/tex/latex/beamer/beamerfontthemedefault.sty + RELOC/tex/latex/beamer/beamerfontthemeprofessionalfonts.sty + RELOC/tex/latex/beamer/beamerfontthemeserif.sty + RELOC/tex/latex/beamer/beamerfontthemestructurebold.sty + RELOC/tex/latex/beamer/beamerfontthemestructureitalicserif.sty + RELOC/tex/latex/beamer/beamerfontthemestructuresmallcapsserif.sty + RELOC/tex/latex/beamer/beamericonarticle.20.eps + RELOC/tex/latex/beamer/beamericonarticle.20.pdf + RELOC/tex/latex/beamer/beamericonarticle.eps + RELOC/tex/latex/beamer/beamericonarticle.pdf + RELOC/tex/latex/beamer/beamericonarticle.tex + RELOC/tex/latex/beamer/beamericonbook.20.eps + RELOC/tex/latex/beamer/beamericonbook.20.pdf + RELOC/tex/latex/beamer/beamericonbook.eps + RELOC/tex/latex/beamer/beamericonbook.pdf + RELOC/tex/latex/beamer/beamericonbook.tex + RELOC/tex/latex/beamer/beamericononline.20.eps + RELOC/tex/latex/beamer/beamericononline.20.pdf + RELOC/tex/latex/beamer/beamericononline.eps + RELOC/tex/latex/beamer/beamericononline.pdf + RELOC/tex/latex/beamer/beamerinnerthemecircles.sty + RELOC/tex/latex/beamer/beamerinnerthemedefault.sty + RELOC/tex/latex/beamer/beamerinnerthemeinmargin.sty + RELOC/tex/latex/beamer/beamerinnerthemerectangles.sty + RELOC/tex/latex/beamer/beamerinnerthemerounded.sty + RELOC/tex/latex/beamer/beamerouterthemedefault.sty + RELOC/tex/latex/beamer/beamerouterthemeinfolines.sty + RELOC/tex/latex/beamer/beamerouterthememiniframes.sty + RELOC/tex/latex/beamer/beamerouterthemeshadow.sty + RELOC/tex/latex/beamer/beamerouterthemesidebar.sty + RELOC/tex/latex/beamer/beamerouterthemesmoothbars.sty + RELOC/tex/latex/beamer/beamerouterthemesmoothtree.sty + RELOC/tex/latex/beamer/beamerouterthemesplit.sty + RELOC/tex/latex/beamer/beamerouterthemetree.sty + RELOC/tex/latex/beamer/beamerpatchparalist.sty + RELOC/tex/latex/beamer/beamerprosper.sty + RELOC/tex/latex/beamer/beamerseminar.sty + RELOC/tex/latex/beamer/beamertexpower.sty + RELOC/tex/latex/beamer/beamerthemeAnnArbor.sty + RELOC/tex/latex/beamer/beamerthemeAntibes.sty + RELOC/tex/latex/beamer/beamerthemeBergen.sty + RELOC/tex/latex/beamer/beamerthemeBerkeley.sty + RELOC/tex/latex/beamer/beamerthemeBerlin.sty + RELOC/tex/latex/beamer/beamerthemeBoadilla.sty + RELOC/tex/latex/beamer/beamerthemeCambridgeUS.sty + RELOC/tex/latex/beamer/beamerthemeCopenhagen.sty + RELOC/tex/latex/beamer/beamerthemeDarmstadt.sty + RELOC/tex/latex/beamer/beamerthemeDresden.sty + RELOC/tex/latex/beamer/beamerthemeEastLansing.sty + RELOC/tex/latex/beamer/beamerthemeFrankfurt.sty + RELOC/tex/latex/beamer/beamerthemeGoettingen.sty + RELOC/tex/latex/beamer/beamerthemeHannover.sty + RELOC/tex/latex/beamer/beamerthemeIlmenau.sty + RELOC/tex/latex/beamer/beamerthemeJuanLesPins.sty + RELOC/tex/latex/beamer/beamerthemeLuebeck.sty + RELOC/tex/latex/beamer/beamerthemeMadrid.sty + RELOC/tex/latex/beamer/beamerthemeMalmoe.sty + RELOC/tex/latex/beamer/beamerthemeMarburg.sty + RELOC/tex/latex/beamer/beamerthemeMontpellier.sty + RELOC/tex/latex/beamer/beamerthemePaloAlto.sty + RELOC/tex/latex/beamer/beamerthemePittsburgh.sty + RELOC/tex/latex/beamer/beamerthemeRochester.sty + RELOC/tex/latex/beamer/beamerthemeSingapore.sty + RELOC/tex/latex/beamer/beamerthemeSzeged.sty + RELOC/tex/latex/beamer/beamerthemeWarsaw.sty + RELOC/tex/latex/beamer/beamerthemebars.sty + RELOC/tex/latex/beamer/beamerthemeboxes.sty + RELOC/tex/latex/beamer/beamerthemeclassic.sty + RELOC/tex/latex/beamer/beamerthemecompatibility.sty + RELOC/tex/latex/beamer/beamerthemedefault.sty + RELOC/tex/latex/beamer/beamerthemelined.sty + RELOC/tex/latex/beamer/beamerthemeplain.sty + RELOC/tex/latex/beamer/beamerthemeshadow.sty + RELOC/tex/latex/beamer/beamerthemesidebar.sty + RELOC/tex/latex/beamer/beamerthemesplit.sty + RELOC/tex/latex/beamer/beamerthemetree.sty + RELOC/tex/latex/beamer/multimedia.sty + RELOC/tex/latex/beamer/multimediasymbols.sty + RELOC/tex/latex/beamer/xmpmulti.sty +catalogue-contact-bugs https://github.com/josephwright/beamer/issues +catalogue-contact-repository https://github.com/josephwright/beamer +catalogue-ctan /macros/latex/contrib/beamer +catalogue-date 2018-12-02 14:06:22 +0100 +catalogue-license lppl1.3cgpl2+fdl +catalogue-topics presentation class +catalogue-version 3.55 + +name beamer-FUBerlin +category Package +revision 38159 +shortdesc Beamer, using the style of FU Berlin +relocated 1 +longdesc The bundle provides a beamer-derived class and a theme style +longdesc file for the corporate design of the Free University in Berlin. +longdesc Users may use the class itself (FUbeamer) or use the theme in +longdesc the usual way with \usetheme{BerlinFU}. Examples of using both +longdesc the class and the theme are provided; the PDF is visually +longdesc identical, so the catalogue only lists one; the sources of the +longdesc examples do of course differ. +containersize 612 +containerchecksum 10d5ac201b18b2d7de8e8e4ce2d08255ced89567f311d449002711235e0e0d052b6001acf5aac198397e295e7970863d42a57ecedb8464c8d49a3eba43b6d90d +doccontainersize 369760 +doccontainerchecksum 451a4ff305191947bb594394f863c447a96b5ca8327a08a5897ed7486e1a3ddcfb7e415d4da613050e38c8a76388cfbd7a3631be8a84d82e31f25081e71e913f +docfiles size=167 + RELOC/doc/latex/beamer-FUBerlin/Changes + RELOC/doc/latex/beamer-FUBerlin/README details="Readme" + RELOC/doc/latex/beamer-FUBerlin/doc/README.doc + RELOC/doc/latex/beamer-FUBerlin/doc/exampleClass.pdf details="Example of use of the class" + RELOC/doc/latex/beamer-FUBerlin/doc/exampleClass.tex + RELOC/doc/latex/beamer-FUBerlin/doc/exampleTheme.pdf + RELOC/doc/latex/beamer-FUBerlin/doc/exampleTheme.tex + RELOC/doc/latex/beamer-FUBerlin/tex/latex/FUbeamer.cls + RELOC/doc/latex/beamer-FUBerlin/tex/latex/beamercolorthemeBerlinFU.sty + RELOC/doc/latex/beamer-FUBerlin/tex/latex/beamerfontthemeBerlinFU.sty + RELOC/doc/latex/beamer-FUBerlin/tex/latex/beamerouterthemeBerlinFU.sty + RELOC/doc/latex/beamer-FUBerlin/tex/latex/beamerthemeBerlinFU.sty +catalogue-ctan /macros/latex/contrib/beamer-FUBerlin +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl -catalogue-version 2.26 +catalogue-topics presentation +catalogue-version 0.02b + +name beamer-rl +category Package +revision 50970 +shortdesc Right to left presentation with beamer and babel +relocated 1 +longdesc This package provides patches of some beamer templates and +longdesc commands for presentation from right to left. It requires Babel +longdesc with the LuaLaTeX engine. +containersize 3528 +containerchecksum f608c257eeeb1f1f3c55cd948d716d843f10a001f5e021c9bee7321435feb07dc743febdac4b715d40f9dffa1b578e413d06f80c02b7578503377a67661fa9d9 +doccontainersize 182884 +doccontainerchecksum b7b686b82795b6d15bd56cbf70219fe411b218e9ed22255860d16bd319022b5f4393aa1135b58004d55367208322631a408fd9c54ce0e6b97eeaee72300f6288 +docfiles size=62 + RELOC/doc/lualatex/beamer-rl/Example-of-use-ar.pdf details="Example of use (Arabic)" language="ar" + RELOC/doc/lualatex/beamer-rl/Example-of-use-ar.tex + RELOC/doc/lualatex/beamer-rl/Example-of-use-en.pdf details="Example of use (English)" language="en" + RELOC/doc/lualatex/beamer-rl/Example-of-use-en.tex + RELOC/doc/lualatex/beamer-rl/README.txt details="Readme" +runfiles size=4 + RELOC/tex/lualatex/beamer-rl/beamer-rl.sty +catalogue-contact-bugs https://github.com/seloumi/beamer-rl/issues +catalogue-contact-home https://github.com/seloumi/beamer-rl +catalogue-contact-repository https://github.com/seloumi/beamer-rl +catalogue-ctan /macros/luatex/latex/beamer-rl +catalogue-date 2019-05-03 18:55:43 +0200 +catalogue-license lppl1.3c +catalogue-topics multilingual presentation +catalogue-version 1.2 + +name beamer-tut-pt +category Package +revision 15878 +shortdesc An introduction to the Beamer class, in Portuguese +relocated 1 +containersize 372 +containerchecksum 6074f5933b945f02b24c31353bd7d683b35a54f53aacfa2ac19de382f56fbb9f6284316ee70c0eacea3760101d98d4a6b7d78412a0d41b13c9e1c907d181ee16 +doccontainersize 919784 +doccontainerchecksum ef6e80c3417cfad3e2f3e0ecd3ce249aa0b4cf0a6b5dced09c27138e34a8c86a74d0d03c6888d0944fe2b03bb5b8180872306263c58f54281f4ed2fe3424d4bc +docfiles size=1022 + RELOC/doc/latex/beamer-tut-pt/AnnArbor1.ps + RELOC/doc/latex/beamer-tut-pt/AnnArbor2.ps + RELOC/doc/latex/beamer-tut-pt/CambridgeUS1.ps + RELOC/doc/latex/beamer-tut-pt/CambridgeUS2.ps + RELOC/doc/latex/beamer-tut-pt/LEIAME + RELOC/doc/latex/beamer-tut-pt/README + RELOC/doc/latex/beamer-tut-pt/anim1.ps + RELOC/doc/latex/beamer-tut-pt/anim2.ps + RELOC/doc/latex/beamer-tut-pt/anim3.ps + RELOC/doc/latex/beamer-tut-pt/anim4.ps + RELOC/doc/latex/beamer-tut-pt/automato1.jpg + RELOC/doc/latex/beamer-tut-pt/automato2.jpg + RELOC/doc/latex/beamer-tut-pt/automato3.jpg + RELOC/doc/latex/beamer-tut-pt/automato4.jpg + RELOC/doc/latex/beamer-tut-pt/automato5.jpg + RELOC/doc/latex/beamer-tut-pt/berkeley1.ps + RELOC/doc/latex/beamer-tut-pt/berkeley2.ps + RELOC/doc/latex/beamer-tut-pt/blocos.ps + RELOC/doc/latex/beamer-tut-pt/boadilla1.ps + RELOC/doc/latex/beamer-tut-pt/boadilla2.ps + RELOC/doc/latex/beamer-tut-pt/exemplo.tex + RELOC/doc/latex/beamer-tut-pt/madrid1.ps + RELOC/doc/latex/beamer-tut-pt/madrid2.ps + RELOC/doc/latex/beamer-tut-pt/montpellier1.ps + RELOC/doc/latex/beamer-tut-pt/montpellier2.ps + RELOC/doc/latex/beamer-tut-pt/tutorialbeamer.pdf details="The document itself (in Portuguese)" language="pt" + RELOC/doc/latex/beamer-tut-pt/tutorialbeamer.tex + RELOC/doc/latex/beamer-tut-pt/ufpellogo.jpg +catalogue-ctan /info/portuguese/beamer +catalogue-date 2016-06-18 16:48:54 +0200 +catalogue-license gpl +catalogue-topics portuguese-doc presentation + +name beamer-verona +category Package +revision 39180 +shortdesc A theme for the beamer class +relocated 1 +longdesc This package provides the 'Verona' theme for the beamer class +longdesc by Till Tantau. +containersize 3988 +containerchecksum 71b241e603688bd22e10f171d32ea3dcca1f25c136a7c0d0cea3e72e936b068ea7ced6a40c03d2e2fb21e533506bcbfaf10f450493cb4e2c3df2981b714048d5 +doccontainersize 618140 +doccontainerchecksum ab68e6accfbfea7651dd43b55c4ddd86a66a827ecc6f6353dc58e3aad47ba89e051fb4f9dcc76e0e8081784385cc696fda9d95c0e82c71b0645d358afaf42c4c +docfiles size=346 + RELOC/doc/latex/beamer-verona/README.md details="Readme" + RELOC/doc/latex/beamer-verona/beamer-verona-default.pdf + RELOC/doc/latex/beamer-verona/beamer-verona-default.tex + RELOC/doc/latex/beamer-verona/beamer-verona-sidebar.pdf + RELOC/doc/latex/beamer-verona/beamer-verona-sidebar.tex + RELOC/doc/latex/beamer-verona/beamer-verona.pdf details="Package documentation" + RELOC/doc/latex/beamer-verona/plato-aristotle.jpg +runfiles size=4 + RELOC/tex/latex/beamer-verona/beamerthemeVerona.sty +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamer-verona +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics presentation +catalogue-version 0.2 name beamer2thesis category Package revision 27539 -shortdesc Thesis presentations using beamer. +shortdesc Thesis presentations using beamer relocated 1 longdesc The package specifies a beamer theme for presenting a thesis. -runfiles size=88 - RELOC/tex/latex/beamer2thesis/beamer2thesis.jpg - RELOC/tex/latex/beamer2thesis/beamercolorthemetorinoth.sty - RELOC/tex/latex/beamer2thesis/beamerfontthemetorinoth.sty - RELOC/tex/latex/beamer2thesis/beamerinnerthemetorinoth.sty - RELOC/tex/latex/beamer2thesis/beamerouterthemetorinoth.sty - RELOC/tex/latex/beamer2thesis/beamerthemeTorinoTh.sty - RELOC/tex/latex/beamer2thesis/logopolito.jpg +containersize 292036 +containerchecksum 793ec95902fbecc2de84616b74494d7e34a1a1c88277277ee82bb172c1ef0cc42cf175f62fa2b4926abb73817b7eb258d85be6689b60a56e0faee941276471a9 +doccontainersize 296660 +doccontainerchecksum ea71d35ac3e02d3016b8d19d38132ee16960757c9846192cf2213061c9899a9788e98f50dac074b0cf83f6029f883eb1f7784779d0256c719d55490284cfc8f0 docfiles size=99 - RELOC/doc/latex/beamer2thesis/README - RELOC/doc/latex/beamer2thesis/beamer2thesis.pdf + RELOC/doc/latex/beamer2thesis/README details="Readme" + RELOC/doc/latex/beamer2thesis/beamer2thesis.pdf details="Package documentation (as presentation; in English)" language="en" RELOC/doc/latex/beamer2thesis/beamer2thesis.tex - RELOC/doc/latex/beamer2thesis/beamer2thesis_ita.pdf + RELOC/doc/latex/beamer2thesis/beamer2thesis_ita.pdf details="Package documentation (as presentation; in Italian)" language="it" RELOC/doc/latex/beamer2thesis/beamer2thesis_ita.tex RELOC/doc/latex/beamer2thesis/content_end.tex RELOC/doc/latex/beamer2thesis/content_end_ita.tex RELOC/doc/latex/beamer2thesis/content_initial.tex RELOC/doc/latex/beamer2thesis/content_initial_ita.tex RELOC/doc/latex/beamer2thesis/license +runfiles size=88 + RELOC/tex/latex/beamer2thesis/beamer2thesis.jpg + RELOC/tex/latex/beamer2thesis/beamercolorthemetorinoth.sty + RELOC/tex/latex/beamer2thesis/beamerfontthemetorinoth.sty + RELOC/tex/latex/beamer2thesis/beamerinnerthemetorinoth.sty + RELOC/tex/latex/beamer2thesis/beamerouterthemetorinoth.sty + RELOC/tex/latex/beamer2thesis/beamerthemeTorinoTh.sty + RELOC/tex/latex/beamer2thesis/logopolito.jpg +catalogue-contact-home http://claudiofiandrino.altervista.org/latex_projects.html catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamer2thesis -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl +catalogue-topics dissertation presentation catalogue-version 2.2 name beameraudience @@ -14142,32 +27752,127 @@ longdesc The Beamer Audience package provides macros to easily assemble longdesc frames according to different audiences. It enables to pick up longdesc the frames for a specific audience while leaving their order longdesc according to a logical structure in the LaTeX source. +containersize 1364 +containerchecksum f1fa8d1d30b00ea59b3fd83347fc1ea1e90135e51e8f4393eacdf32ae983a80e865d4364c924c74bb1d409ebf22ebb5e290707b945898db9e6234dd297553b49 +doccontainersize 1144 +doccontainerchecksum 25fbfbf71ff66a80597b368882de63aee2e090e5604a67d66d52e99dd606ce54079e4a7350c4acee5966555dfa5dc8de0e650c7cb4c136bdc40cbe5739c0dfe1 +docfiles size=1 + RELOC/doc/latex/beameraudience/README details="Readme" runfiles size=1 RELOC/tex/latex/beameraudience/beameraudience.sty -docfiles size=1 - RELOC/doc/latex/beameraudience/README +catalogue-also beamer catalogue-ctan /macros/latex/contrib/beamer-contrib/beameraudience -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics presentation catalogue-version 0.1 +name beamerauxtheme +category Package +revision 51053 +shortdesc Supplementary outer and inner themes for beamer +relocated 1 +longdesc This bundle provides a collection of inner and outer themes as +longdesc supplements to the default themes in the beamer distribution. +longdesc These themes can be used in combination with existing inner, +longdesc outer, and color themes. +containersize 3304 +containerchecksum 3f5585ec5b379f32d6051d604526ebb00673fab5236190226fce4bc2a4da3ed4c6a79431edd0c011bd34298d8bc2f5eb7a9dd9aa9b0bb15bfca0195222e1a37b +doccontainersize 188568 +doccontainerchecksum faaf5267dea60efacd78f6ed055e1a8691729d96e3959d98ec315ef9802aa01a7193823973c488d44d21ecd845ae21bf51433acf007a34f806656fa6b3a8ecbb +docfiles size=124 + RELOC/doc/latex/beamerauxtheme/LICENSE + RELOC/doc/latex/beamerauxtheme/README.md details="Readme" + RELOC/doc/latex/beamerauxtheme/example-content.ltx + RELOC/doc/latex/beamerauxtheme/example-inner-simplelines.pdf details="Example presentation (1)" + RELOC/doc/latex/beamerauxtheme/example-inner-simplelines.tex + RELOC/doc/latex/beamerauxtheme/example-outer-sidebarwithminiframes.pdf details="Example presentation (2)" + RELOC/doc/latex/beamerauxtheme/example-outer-sidebarwithminiframes.tex + RELOC/doc/latex/beamerauxtheme/example-outer-splitwithminiframes.pdf details="Example presentation (3)" + RELOC/doc/latex/beamerauxtheme/example-outer-splitwithminiframes.tex + RELOC/doc/latex/beamerauxtheme/example-outer-twolines.pdf details="Example presentation (4)" + RELOC/doc/latex/beamerauxtheme/example-outer-twolines.tex +runfiles size=6 + RELOC/tex/latex/beamerauxtheme/beamerinnerthemesimplelines.sty + RELOC/tex/latex/beamerauxtheme/beamerouterthemesidebarwithminiframes.sty + RELOC/tex/latex/beamerauxtheme/beamerouterthemesplitwithminiframes.sty + RELOC/tex/latex/beamerauxtheme/beamerouterthemetwolines.sty +catalogue-contact-bugs https://github.com/louisstuart96/beamerauxtheme/issues +catalogue-contact-repository https://github.com/louisstuart96/beamerauxtheme +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamerauxtheme +catalogue-date 2019-05-07 22:26:01 +0200 +catalogue-license lppl1.3c +catalogue-topics presentation +catalogue-version 1.01 + +name beamercolorthemeowl +category Package +revision 40105 +shortdesc A flexible beamer color theme to maximize visibility +relocated 1 +longdesc This package provides a flexible dark or light colour theme +longdesc designed for maximum readability in environments where most +longdesc themes fall flat. Main features: Dark color theme for +longdesc presenting in low-light conditions. Optional light color theme +longdesc for presenting in bright ambient light. Redefines color names +longdesc "red", "green", "blue", "yellow" to values that are visible +longdesc when displayed by certain projectors, particularly those with a +longdesc very bright green channel and dim red and blue channels. This +longdesc behaviour can be optionally disabled, with the provided colours +longdesc also available as "OwlRed", "OwlGreen", etc. +containersize 1904 +containerchecksum bf9874f0d7bbbe3f95c352d1c5e93c5e7fa3af18dd02eedee553c312ef01783420b035ac74f93eb150a99a597ff9948d978ea575963f4117d0965137446ee5fc +doccontainersize 558476 +doccontainerchecksum 258016683c605b4961ee25f30077cec69c486cf3ed0cccce2482db01b39141e122dcb46e02e960a83138d124aa269ec903379c3c6b65f3366e96565e90c2337a +docfiles size=169 + RELOC/doc/latex/beamercolorthemeowl/Makefile + RELOC/doc/latex/beamercolorthemeowl/README.md details="Readme" + RELOC/doc/latex/beamercolorthemeowl/beamercolorthemeowl.pdf details="Package documentation" + RELOC/doc/latex/beamercolorthemeowl/ex/Hannover-dark/Hannover-owl-1.png + RELOC/doc/latex/beamercolorthemeowl/ex/Hannover-dark/Hannover-owl-2.png + RELOC/doc/latex/beamercolorthemeowl/ex/Hannover-light/Hannover-owl-1.png + RELOC/doc/latex/beamercolorthemeowl/ex/Hannover-light/Hannover-owl-2.png + RELOC/doc/latex/beamercolorthemeowl/ex/Pittsburgh-dark/Pittsburgh-owl-1.png + RELOC/doc/latex/beamercolorthemeowl/ex/Pittsburgh-dark/Pittsburgh-owl-2.png + RELOC/doc/latex/beamercolorthemeowl/ex/Pittsburgh-light/Pittsburgh-owl-1.png + RELOC/doc/latex/beamercolorthemeowl/ex/Pittsburgh-light/Pittsburgh-owl-2.png + RELOC/doc/latex/beamercolorthemeowl/ex/colours.png + RELOC/doc/latex/beamercolorthemeowl/ex/metropolis-dark/metropolis-owl-1.png + RELOC/doc/latex/beamercolorthemeowl/ex/metropolis-dark/metropolis-owl-2.png + RELOC/doc/latex/beamercolorthemeowl/ex/metropolis-light/metropolis-owl-1.png + RELOC/doc/latex/beamercolorthemeowl/ex/metropolis-light/metropolis-owl-2.png + RELOC/doc/latex/beamercolorthemeowl/ex/readme.jpg +srccontainersize 5756 +srccontainerchecksum 940218da36cd17d38e2b8c6d79eb1570d6c779b5f694e9b43abf6614db93a8227939e1ef86678f72461752ca0acdcaf2fd5e52a45a35b6d98811511af5090a2f +srcfiles size=6 + RELOC/source/latex/beamercolorthemeowl/beamercolorthemeowl.dtx + RELOC/source/latex/beamercolorthemeowl/beamercolorthemeowl.ins +runfiles size=2 + RELOC/tex/latex/beamercolorthemeowl/beamercolorthemeowl.sty +catalogue-contact-repository https://github.com/rchurchley/beamercolortheme-owl +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamercolorthemeowl +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics presentation +catalogue-version 0.1.1 + name beamerdarkthemes category Package revision 35101 -shortdesc Dark color themes for beamer. +shortdesc Dark color themes for beamer relocated 1 longdesc A package with three dark color themes for beamer, designed for longdesc presentations with pictures and/or for bright rooms without longdesc screen. These themes mix one dominant foreground colour and a longdesc black background. Cormorant stands for green, frigatebird for longdesc red and magpie for blue. -runfiles size=3 - RELOC/tex/latex/beamerdarkthemes/beamercolorthemecormorant.sty - RELOC/tex/latex/beamerdarkthemes/beamercolorthemefrigatebird.sty - RELOC/tex/latex/beamerdarkthemes/beamercolorthememagpie.sty +containersize 1792 +containerchecksum ca30d15a7bc198e67cca5cc43dcdb8e644e03d1c8ed71f0b40c1dd0219ce81688067a82a0ab002b2d72e990e227f4628319cc72d5687881a3b886e213d7eee93 +doccontainersize 1883612 +doccontainerchecksum 6a1fcfc34793b93005b683eb0f0f4aae794c56e85fd5e14ac6e1c4eeed763f7c6203bd05c92755a2db91aea10f4c16117e702c291388153415dfbacb4b39d00d docfiles size=2368 - RELOC/doc/latex/beamerdarkthemes/README - RELOC/doc/latex/beamerdarkthemes/beamerdarkthemesuserguide.pdf + RELOC/doc/latex/beamerdarkthemes/README details="Readme" + RELOC/doc/latex/beamerdarkthemes/beamerdarkthemesuserguide.pdf details="Package documentation" RELOC/doc/latex/beamerdarkthemes/beamerdarkthemesuserguide.tex RELOC/doc/latex/beamerdarkthemes/ccby.png RELOC/doc/latex/beamerdarkthemes/cormorantexampledefault.pdf @@ -14186,46 +27891,20 @@ docfiles size=2368 RELOC/doc/latex/beamerdarkthemes/magpieexamplesidebar.pdf RELOC/doc/latex/beamerdarkthemes/magpieexampletree.pdf RELOC/doc/latex/beamerdarkthemes/makeexamples.sh +runfiles size=3 + RELOC/tex/latex/beamerdarkthemes/beamercolorthemecormorant.sty + RELOC/tex/latex/beamerdarkthemes/beamercolorthemefrigatebird.sty + RELOC/tex/latex/beamerdarkthemes/beamercolorthememagpie.sty catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamerdarkthemes -catalogue-date 2014-09-09 16:43:02 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 -catalogue-version 0.4.1 - -name beamer-FUBerlin -category Package -revision 38159 -shortdesc Beamer, using the style of FU Berlin -relocated 1 -longdesc The bundle provides a beamer-derived class and a theme style -longdesc file for the corporate design of the Free University in Berlin. -longdesc Users may use the class itself (FUbeamer) or use the theme in -longdesc the usual way with \usetheme{BerlinFU}. Examples of using both -longdesc the class and the theme are provided; the PDF is visually -longdesc identical, so the catalogue only lists one; the sources of the -longdesc examples do of course differ. -docfiles size=167 - RELOC/doc/latex/beamer-FUBerlin/Changes - RELOC/doc/latex/beamer-FUBerlin/README - RELOC/doc/latex/beamer-FUBerlin/doc/README.doc - RELOC/doc/latex/beamer-FUBerlin/doc/exampleClass.pdf - RELOC/doc/latex/beamer-FUBerlin/doc/exampleClass.tex - RELOC/doc/latex/beamer-FUBerlin/doc/exampleTheme.pdf - RELOC/doc/latex/beamer-FUBerlin/doc/exampleTheme.tex - RELOC/doc/latex/beamer-FUBerlin/tex/latex/FUbeamer.cls - RELOC/doc/latex/beamer-FUBerlin/tex/latex/beamercolorthemeBerlinFU.sty - RELOC/doc/latex/beamer-FUBerlin/tex/latex/beamerfontthemeBerlinFU.sty - RELOC/doc/latex/beamer-FUBerlin/tex/latex/beamerouterthemeBerlinFU.sty - RELOC/doc/latex/beamer-FUBerlin/tex/latex/beamerthemeBerlinFU.sty -catalogue-ctan /macros/latex/contrib/beamer-FUBerlin -catalogue-date 2015-08-19 20:38:31 +0200 -catalogue-license lppl catalogue-topics presentation -catalogue-version 0.02b +catalogue-version 0.4.1 name beamerposter category Package -revision 37009 -shortdesc Extend beamer and a0poster for custom sized posters. +revision 47508 +shortdesc Extend beamer and a0poster for custom sized posters relocated 1 longdesc The package enables the user to use beamer style operations on longdesc a canvas of the sizes provided by a0poster; font scaling is @@ -14236,533 +27915,524 @@ longdesc (for example, with rounded corners and shadows). Good looking longdesc posters may be created very rapidly. Features include: scalable longdesc fonts using the fp and type1cm packages; posters in A-series longdesc sizes, and custom sizes like double A0 are possible; still -longdesc applicable to custom beamer slides, e.g. 16:9 slides for a wide- -longdesc screen (i.e. 1.78 aspect ratio); orientation may be portrait or -longdesc landscape; a 'debug mode' is provided. -runfiles size=4 - RELOC/tex/latex/beamerposter/beamerposter.sty +longdesc applicable to custom beamer slides, e.g. 16:9 slides for a +longdesc wide-screen (i.e. 1.78 aspect ratio); orientation may be +longdesc portrait or landscape; a 'debug mode' is provided. +containersize 7476 +containerchecksum e4ade5948c1eb8e18cba3d3b7699686d55d57361e0b26b923336d295b8fb6c7cdec39832dbe4f9358c94302d412000f19b4706295af5856e12482bb3c9951a98 +doccontainersize 77044 +doccontainerchecksum 88ec2b723a551711c33972cb72b7ab9ac13508f583e4e26eaa1c9e6d57d537667259b4f93e7e33fd2a5db8086998f6ddef05c363613be645eb293606d72cd52f docfiles size=22 - RELOC/doc/latex/beamerposter/README - RELOC/doc/latex/beamerposter/beamerposter.pdf + RELOC/doc/latex/beamerposter/README details="Readme" + RELOC/doc/latex/beamerposter/beamerposter.pdf details="Package documentation (PDF)" RELOC/doc/latex/beamerposter/beamerposter.tex RELOC/doc/latex/beamerposter/example.tex +runfiles size=16 + RELOC/tex/latex/beamerposter/beamerposter.sty + RELOC/tex/latex/beamerposter/beamerthemeAachen.sty + RELOC/tex/latex/beamerposter/beamerthemeI6dv.sty + RELOC/tex/latex/beamerposter/beamerthemeI6pd.sty + RELOC/tex/latex/beamerposter/beamerthemeI6pd2.sty + RELOC/tex/latex/beamerposter/beamerthemeI6td.sty + RELOC/tex/latex/beamerposter/beamerthemeZH.sty +catalogue-contact-announce https://groups.google.com/forum/#!forum/beamerposter +catalogue-contact-bugs https://github.com/deselaers/latex-beamerposter/issues +catalogue-contact-home https://github.com/deselaers/latex-beamerposter +catalogue-contact-repository https://github.com/deselaers/latex-beamerposter +catalogue-contact-support https://groups.google.com/forum/#!forum/beamerposter catalogue-ctan /macros/latex/contrib/beamerposter -catalogue-date 2015-04-22 07:10:09 +0200 -catalogue-license lppl -catalogue-version 1.12 +catalogue-date 2018-04-23 11:03:46 +0200 +catalogue-license lpplgpl +catalogue-topics poster presentation +catalogue-version 1.13 name beamersubframe category Package revision 23510 -shortdesc Reorder frames in the PDF file. +shortdesc Reorder frames in the PDF file relocated 1 longdesc The package provides a method to reorder frames in the PDF file longdesc without reordering the source. Its principal use is to embed or longdesc append frames with details on some subject. The author longdesc describes the package as "experimental". -runfiles size=4 - RELOC/tex/latex/beamersubframe/beamersubframe.sty +containersize 3864 +containerchecksum d3ab81c5eb90d8566eb850c25d7751f5a341107fdb756b46bb50b392741746eea356ff54ef1ceb6ca6f0a2c0dfb7940aa7cd6e3d0cd27e4328e817d1be454964 +doccontainersize 375856 +doccontainerchecksum 85878ad48e6ba191174140517ac03039320620f246efb51c65e57541d9cf569d59bdd6cef17f10f6f6d85bff9532f6ea70175cb09b68ea6e59312a407d89f557 docfiles size=150 - RELOC/doc/latex/beamersubframe/README + RELOC/doc/latex/beamersubframe/README details="Readme" RELOC/doc/latex/beamersubframe/beamersubframe-append.pdf RELOC/doc/latex/beamersubframe/beamersubframe-append.svg RELOC/doc/latex/beamersubframe/beamersubframe-embed.pdf RELOC/doc/latex/beamersubframe/beamersubframe-embed.svg - RELOC/doc/latex/beamersubframe/beamersubframe.pdf + RELOC/doc/latex/beamersubframe/beamersubframe.pdf details="Package documentation" RELOC/doc/latex/beamersubframe/bsf-example.tex +srccontainersize 19496 +srccontainerchecksum f4c9d5b2f9a868e1cf3dead5636025698137d63f64c0c528abafa0e5719987e6df9be31a6ecb9597824e5c9793172208908616f42f8980b49796368e217be24a srcfiles size=23 RELOC/source/latex/beamersubframe/beamersubframe.dtx RELOC/source/latex/beamersubframe/beamersubframe.ins +runfiles size=4 + RELOC/tex/latex/beamersubframe/beamersubframe.sty catalogue-ctan /macros/latex/contrib/beamer-contrib/beamersubframe -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics presentation catalogue-version 0.2 -name beamerthemejltree +name beamerswitch +category Package +revision 49849 +shortdesc Convenient mode selection in Beamer documents +relocated 1 +longdesc This class is a wrapper around the beamer class to make it +longdesc easier to use the same document to generate the different forms +longdesc of the presentation: the slides themselves, an abbreviated +longdesc slide set for transparencies or online reference, an n-up +longdesc handout version (various layouts are provided), and a +longdesc transcript or set of notes using the article class. The class +longdesc provides a variety of handout layouts, and allows the mode to +longdesc be chosen from the command line (without changing the document +longdesc itself). +containersize 4652 +containerchecksum 73fb637ea191f42127ac76fd5ec5573820e40964296c2ae9215d82e426438a28149afd5d86553e1bbd4a6ed5808d429f0cf98295e69d6bef0a607924c894753c +doccontainersize 241676 +doccontainerchecksum 5f598af37ae2202cf7db5dacd0d7b947e64b33f63eff64e549a1bda063fd992e64bb177586d3cb4b00eee1029409c2650a888cacc94158dcdfbedbdb50727090 +docfiles size=75 + RELOC/doc/latex/beamerswitch/README.md details="Readme" + RELOC/doc/latex/beamerswitch/beamerswitch-example-article.pdf details="Example of use (article)" + RELOC/doc/latex/beamerswitch/beamerswitch-example-handout.pdf details="Example of use (handout)" + RELOC/doc/latex/beamerswitch/beamerswitch-example-trans.pdf details="Example of use (transparencies, without overlays)" + RELOC/doc/latex/beamerswitch/beamerswitch-example.pdf details="Example of use (slides, with overlays)" + RELOC/doc/latex/beamerswitch/beamerswitch-example.tex + RELOC/doc/latex/beamerswitch/beamerswitch.pdf details="Package documentation" +srccontainersize 19640 +srccontainerchecksum 9daa1006f526510d3731ffcfac33b9a23fff97b66eab0cae0cf51fc7a2765ad5fdcf5247b8640d2d60eac1c94e73444df2329dd5e078321f21263fb4b5a0fac0 +srcfiles size=26 + RELOC/source/latex/beamerswitch/Makefile + RELOC/source/latex/beamerswitch/beamerswitch.dtx + RELOC/source/latex/beamerswitch/beamerswitch.ins +runfiles size=11 + RELOC/tex/latex/beamerswitch/beamerswitch.cls +catalogue-contact-bugs https://github.com/alex-ball/beamerswitch/issues +catalogue-contact-repository https://github.com/alex-ball/beamerswitch +catalogue-ctan /macros/latex/contrib/beamer-contrib/beamerswitch +catalogue-date 2019-01-28 18:28:39 +0100 +catalogue-license lppl1.3c +catalogue-topics presentation class +catalogue-version 1.5 + +name beamertheme-cuerna +category Package +revision 42161 +shortdesc A beamer theme with 4 colour palettes +relocated 1 +longdesc The package contains a theme for Beamer which is referenced as +longdesc "Cuerna" inside beamer and has four basic colour themes. The +longdesc title page shows rectangles that represent the Fibonacci +longdesc sequence, and spiral is drawn on top of the rectangles. Besides +longdesc that the rest of the graphic elements in the slides are scarce +longdesc to keep it clean +containersize 2492 +containerchecksum f0433d4a4582958ad057fddcddf1f1f992ec98a199943bcf80a7834e37eb7fa5660258edb08e2bd9205628dc1b8a69419c907b6c007a1c63cd1fb335e439125d +doccontainersize 332524 +doccontainerchecksum 96f4e9c3afbb81a7841130ea076b2cd35477e93eb105c03add6077fd76981cbd14b609c3b9e573f143572764ac87b1ff76ce18c377f3bbd9b02a1ed45a02eaab +docfiles size=280 + RELOC/doc/latex/beamertheme-cuerna/README details="Readme" + RELOC/doc/latex/beamertheme-cuerna/beamertheme-cuerna.pdf details="Package documentation" + RELOC/doc/latex/beamertheme-cuerna/pictures/bluesimplex.png + RELOC/doc/latex/beamertheme-cuerna/pictures/bluesimplexexample.pdf + RELOC/doc/latex/beamertheme-cuerna/pictures/brickexample.pdf + RELOC/doc/latex/beamertheme-cuerna/pictures/defaultexample.pdf + RELOC/doc/latex/beamertheme-cuerna/pictures/lettuceexample.pdf + RELOC/doc/latex/beamertheme-cuerna/template.tex +srccontainersize 4008 +srccontainerchecksum a4381e52d7e46336d8d8989be45c185156e67df776d5ad159f2db6c62c751dae59e0c19fa0c5ec3de4b0385047d5f6fdf166b6c12707c889cffeabe11802a10f +srcfiles size=5 + RELOC/source/latex/beamertheme-cuerna/beamertheme-cuerna.dtx + RELOC/source/latex/beamertheme-cuerna/beamertheme-cuerna.ins +runfiles size=8 + RELOC/tex/latex/beamertheme-cuerna/beamercolorthemeCuerna.sty + RELOC/tex/latex/beamertheme-cuerna/beamercolorthemebluesimplex.sty + RELOC/tex/latex/beamertheme-cuerna/beamercolorthemebrick.sty + RELOC/tex/latex/beamertheme-cuerna/beamercolorthemelettuce.sty + RELOC/tex/latex/beamertheme-cuerna/beamerinnerthemeCuerna.sty + RELOC/tex/latex/beamertheme-cuerna/beamerouterthemeCuerna.sty + RELOC/tex/latex/beamertheme-cuerna/beamerthemeCuerna.sty +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-cuerna +catalogue-date 2018-01-07 14:49:11 +0100 +catalogue-license lppl1.3 +catalogue-topics presentation + +name beamertheme-detlevcm +category Package +revision 39048 +shortdesc A beamer theme designed for use in the University of Leeds +relocated 1 +longdesc The bundle provides a simple theme that has been used in the +longdesc author's department. +containersize 3064 +containerchecksum cab4d390d7469056f2235c493b9383a4374c4a686810db428cfe622a4c2513f7176df489d22f7e37ae1f8a2d3303443b60c12c577764be2258b345fe9c3dc543 +doccontainersize 1517564 +doccontainerchecksum 2c637af44b258c688449ad2bbd81664e3086efe874d03352ab393487d7eae1148773ba39a498611a848c43824415cb5b860259111f6d287fd9e6d7f1c01eb530 +docfiles size=377 + RELOC/doc/latex/beamertheme-detlevcm/FS-img1.png + RELOC/doc/latex/beamertheme-detlevcm/FS-img2.png + RELOC/doc/latex/beamertheme-detlevcm/FS-img3.png + RELOC/doc/latex/beamertheme-detlevcm/LogoTop.png + RELOC/doc/latex/beamertheme-detlevcm/README.txt details="Readme" + RELOC/doc/latex/beamertheme-detlevcm/beamertheme-detlevcm.pdf details="Package documentation" + RELOC/doc/latex/beamertheme-detlevcm/beamertheme-detlevcm.tex +runfiles size=5 + RELOC/tex/latex/beamertheme-detlevcm/beamercolorthemeETII.sty + RELOC/tex/latex/beamertheme-detlevcm/beamerfontthemeDetlevCM.sty + RELOC/tex/latex/beamertheme-detlevcm/beamerouterthemeDetlevCM.sty + RELOC/tex/latex/beamertheme-detlevcm/beamerthemeDetlevCM.sty +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/detlevcm +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license gpl +catalogue-topics presentation +catalogue-version 1.02 + +name beamertheme-epyt category Package -revision 21977 -shortdesc Contributed beamer theme. +revision 41404 +shortdesc A simple and clean theme for LaTeX beamer class relocated 1 -longdesc A theme for beamer presentations. -runfiles size=1 - RELOC/tex/latex/beamerthemejltree/beamerthemeJLTree.sty -catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamerthemeJLTree.sty -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license gpl -catalogue-version 1.1 +longdesc This package provides a simple but nice theme for Beamer, with +longdesc the following features: simple structure: with page numbers at +longdesc footer, no head bar and side bar simple templates: displaying +longdesc theorems with traditional inline style simple colors: using +longdesc only several foreground and background colors +containersize 3560 +containerchecksum 2bf451ccfe095384aeec149e97d7022cefaf997cd19dedffcad5606fc149739cf21b6128ef08e609aaffd6afbaa59b1cdc401cbd3ee4fbe0e997d724b713a620 +doccontainersize 164664 +doccontainerchecksum a615bddd7955869d7e175f734a06308b166057dce0b479a4b11d2bd1d06fda7e0a4fdf8185d0a3db2d2302cea2890184616b92d0b7abd5321fe9edaca6dbbd2e +docfiles size=85 + RELOC/doc/latex/beamertheme-epyt/README details="Readme" + RELOC/doc/latex/beamertheme-epyt/epyt-demo-cn.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/beamertheme-epyt/epyt-demo-cn.tex + RELOC/doc/latex/beamertheme-epyt/epyt-demo.pdf details="Package documentation" + RELOC/doc/latex/beamertheme-epyt/epyt-demo.tex +runfiles size=4 + RELOC/tex/latex/beamertheme-epyt/beamerthemeepyt.sty +catalogue-contact-repository https://github.com/zohooo/epyt +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-epyt +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics presentation +catalogue-version 1.0 -name beamerthemenirma +name beamertheme-focus category Package -revision 20765 -shortdesc A Beamer theme for academic presentations. +revision 49748 +shortdesc A minimalist presentation theme for LaTeX Beamer relocated 1 -longdesc The package developed for academic purposes. The distribution -longdesc includes nothing more than style file needed for preparing -longdesc presentations. +longdesc A presentation theme for LaTeX Beamer that aims at a clean and +longdesc minimalist design, so to minimize distractions and put the +longdesc focus directly on the content. +containersize 4300 +containerchecksum 03bab50a19a100e1ec64dfac81469c2f7a7bdede3616aa377c567b3fa48203a0d04a00794efa6fc3376518a252c1ff0ceee2be890127ec653dc0ad3186c08b57 +doccontainersize 534596 +doccontainerchecksum cb808d4f989cb1795a814ad25d8a6b5cd61d86680edf15a61f6ecdb8db1a95f14a0b9a024fedeb8f367ada8311ce41bae315cc448dbafd0f25aeb77cfb5826e9 +docfiles size=150 + RELOC/doc/latex/beamertheme-focus/LICENSE + RELOC/doc/latex/beamertheme-focus/README.md details="Readme" + RELOC/doc/latex/beamertheme-focus/demo-screenshots/demo-appendix.jpg + RELOC/doc/latex/beamertheme-focus/demo-screenshots/demo-focus.jpg + RELOC/doc/latex/beamertheme-focus/demo-screenshots/demo-references.jpg + RELOC/doc/latex/beamertheme-focus/demo-screenshots/demo-sectionpage.jpg + RELOC/doc/latex/beamertheme-focus/demo-screenshots/demo-titlepage-color.jpg + RELOC/doc/latex/beamertheme-focus/demo-screenshots/demo-titlepage.jpg + RELOC/doc/latex/beamertheme-focus/demo-screenshots/demo-typeset.jpg + RELOC/doc/latex/beamertheme-focus/demo.pdf details="Example of use" + RELOC/doc/latex/beamertheme-focus/demo.tex + RELOC/doc/latex/beamertheme-focus/demo_bibliography.bib + RELOC/doc/latex/beamertheme-focus/focuslogo.pdf +runfiles size=7 + RELOC/tex/latex/beamertheme-focus/beamercolorthemefocus.sty + RELOC/tex/latex/beamertheme-focus/beamerfontthemefocus.sty + RELOC/tex/latex/beamertheme-focus/beamerinnerthemefocus.sty + RELOC/tex/latex/beamertheme-focus/beamerouterthemefocus.sty + RELOC/tex/latex/beamertheme-focus/beamerthemefocus.sty +catalogue-contact-bugs https://github.com/elauksap/focus-beamertheme/issues +catalogue-contact-repository https://github.com/elauksap/focus-beamertheme +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-focus +catalogue-date 2019-01-18 11:41:18 +0100 +catalogue-license gpl3 +catalogue-topics presentation +catalogue-version 2.3 + +name beamertheme-light +category Package +revision 49867 +shortdesc A minimal beamer style +relocated 1 +longdesc The LaTeX package beamertheme-light provides an aesthetic and +longdesc minimal beamer style by redefining colors and fonts. +containersize 1868 +containerchecksum 5cc15c3ee0222678c1c97b31805421caac8b20fca03b1d748fd2a71756d5d764b8fbfb32ab70937e890f7755966b520362db98a9ae65be3f83509cfa287d600a +doccontainersize 99012 +doccontainerchecksum e2d0cdb7fdabe582f2b6f1a656a5b9b61ee3680fd4944c06f108cf69eced96bed7b25e56563b1cb9879e8da42fdbbeaa41d769158c5e256bc70b5d695571a5af +docfiles size=26 + RELOC/doc/latex/beamertheme-light/README details="Readme" + RELOC/doc/latex/beamertheme-light/beamertheme-light-example.pdf details="Example of use" + RELOC/doc/latex/beamertheme-light/beamertheme-light-example.tex runfiles size=2 - RELOC/tex/latex/beamerthemenirma/beamerthemenirma.sty -docfiles size=1 - RELOC/doc/latex/beamerthemenirma/README -catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/nirma -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.1 + RELOC/tex/latex/beamertheme-light/beamertheme-light.sty +catalogue-also beamertheme-focus +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-light +catalogue-date 2019-01-31 09:05:36 +0100 +catalogue-license gpl3 +catalogue-topics presentation +catalogue-version 1.0 -name beamerthemephnompenh +name beamertheme-metropolis category Package -revision 31392 +revision 43031 +shortdesc A modern LaTeX beamer theme relocated 1 -runfiles size=1 - RELOC/tex/latex/beamerthemephnompenh/beamerthemePhnomPenh.sty +longdesc The package provides a simple, modern Beamer theme for anyone +longdesc to use. It tries to minimize noise and maximize space for +longdesc content. +containersize 6572 +containerchecksum dae8058ae5c2883b383a2bcb85bbdc45d0b0a3fab46a4498ea1f3b8568f04d049598fa78b72429adc7e36773905c67801e129378e233582f0fd8eb5ca4327745 +doccontainersize 178716 +doccontainerchecksum c4661061ea3ce52a20fb8c704042cf755b8b54549dd62467b1e78f85a4067c11a02c89422384e96323ef277ce44a3f648b1778b54e0b5c79b721f67451fabfc1 +docfiles size=50 + RELOC/doc/latex/beamertheme-metropolis/README.md details="Readme" + RELOC/doc/latex/beamertheme-metropolis/demo.bib + RELOC/doc/latex/beamertheme-metropolis/demo.pdf + RELOC/doc/latex/beamertheme-metropolis/demo.tex + RELOC/doc/latex/beamertheme-metropolis/metropolistheme.pdf details="Package documentation" +srccontainersize 18424 +srccontainerchecksum af3cec1b7544ecd51c875a704605500ee1ab4374df9cf1a7db6c6b9102c4800651485a64dd865c1158d729c06f2499021408230c50278da3de40f7f0cac7bf6b +srcfiles size=25 + RELOC/source/latex/beamertheme-metropolis/beamercolorthememetropolis-highcontrast.dtx + RELOC/source/latex/beamertheme-metropolis/beamercolorthememetropolis.dtx + RELOC/source/latex/beamertheme-metropolis/beamerfontthememetropolis.dtx + RELOC/source/latex/beamertheme-metropolis/beamerinnerthememetropolis.dtx + RELOC/source/latex/beamertheme-metropolis/beamerouterthememetropolis.dtx + RELOC/source/latex/beamertheme-metropolis/beamerthememetropolis.dtx + RELOC/source/latex/beamertheme-metropolis/beamerthememetropolis.ins + RELOC/source/latex/beamertheme-metropolis/metropolistheme.dtx + RELOC/source/latex/beamertheme-metropolis/pgfplotsthemetol.dtx +runfiles size=12 + RELOC/tex/latex/beamertheme-metropolis/beamercolorthememetropolis-highcontrast.sty + RELOC/tex/latex/beamertheme-metropolis/beamercolorthememetropolis.sty + RELOC/tex/latex/beamertheme-metropolis/beamerfontthememetropolis.sty + RELOC/tex/latex/beamertheme-metropolis/beamerinnerthememetropolis.sty + RELOC/tex/latex/beamertheme-metropolis/beamerouterthememetropolis.sty + RELOC/tex/latex/beamertheme-metropolis/beamerthememetropolis.sty + RELOC/tex/latex/beamertheme-metropolis/pgfplotsthemetol.sty +catalogue-contact-repository https://github.com/matze/mtheme +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/metropolis +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license other-free +catalogue-topics presentation +catalogue-version 1.2 + +name beamertheme-npbt +category Package +revision 48424 +shortdesc A collection of LaTeX beamer themes +relocated 1 +longdesc "NPBT" stands for "Norman's Pandoc Beamer Themes". Currently +longdesc the following themes are supported: Sefiroth Consulting: A +longdesc private (demonstration) theme. FOM: The layout of Hochschule +longdesc FOM. FOM ifes: The layout of Hochschule FOM, Institut fur +longdesc Empirie & Statistik. eufom: The layout of eufom. +containersize 1457200 +containerchecksum bbc620fbe30505183c4678e0dc9c7574ba93a4c410647b54609c310918e32a638265b07633932e2f5f63fd2ecf8504869e4f3f138073e666e1341a4d0aff327c +doccontainersize 418012 +doccontainerchecksum 0c1f5df1c664a31e400f4d05a9f2b57c4c9fbf881295fa8165796944a06ace35641487df93db33276924d4e7c5b9d6c621aba70e5ed9ee61dc269af3b51f7a2a +docfiles size=113 + RELOC/doc/latex/beamertheme-npbt/LICENSE + RELOC/doc/latex/beamertheme-npbt/README details="Readme" + RELOC/doc/latex/beamertheme-npbt/example/NPBT_exsamle.pdf + RELOC/doc/latex/beamertheme-npbt/example/NPBT_exsamle.tex + RELOC/doc/latex/beamertheme-npbt/header.tex +runfiles size=404 + RELOC/tex/latex/beamertheme-npbt/beamercolorthemeNPBT_EUFOM.sty + RELOC/tex/latex/beamertheme-npbt/beamercolorthemeNPBT_FOM.sty + RELOC/tex/latex/beamertheme-npbt/beamercolorthemeNPBT_FOM_ifes.sty + RELOC/tex/latex/beamertheme-npbt/beamercolorthemeNPBT_SC.sty + RELOC/tex/latex/beamertheme-npbt/beamerouterthemeNPBT_FOM.sty + RELOC/tex/latex/beamertheme-npbt/beamerouterthemeNPBT_FOM_ifes.sty + RELOC/tex/latex/beamertheme-npbt/beamerthemeNPBT.sty + RELOC/tex/latex/beamertheme-npbt/images/LICENSE.md + RELOC/tex/latex/beamertheme-npbt/images/NPBT_FOM_background.png + RELOC/tex/latex/beamertheme-npbt/images/NPBT_FOM_frametitlebackground.png + RELOC/tex/latex/beamertheme-npbt/images/NPBT_FOM_ifes_backgound.png + RELOC/tex/latex/beamertheme-npbt/images/NPBT_FOM_ifes_frametitlebackgound.png + RELOC/tex/latex/beamertheme-npbt/images/NPBT_FOM_ifes_linie.pdf + RELOC/tex/latex/beamertheme-npbt/images/NPBT_FOM_ifes_logo.png + RELOC/tex/latex/beamertheme-npbt/images/NPBT_FOM_linie.pdf + RELOC/tex/latex/beamertheme-npbt/images/NPBT_FOM_logo.pdf + RELOC/tex/latex/beamertheme-npbt/images/NPBT_SC_background.jpg + RELOC/tex/latex/beamertheme-npbt/images/NPBT_SC_logo.png + RELOC/tex/latex/beamertheme-npbt/images/NPBT_eufom_backgound.png + RELOC/tex/latex/beamertheme-npbt/images/NPBT_eufom_frametitlebackgound.png + RELOC/tex/latex/beamertheme-npbt/images/NPBT_eufom_linie.png + RELOC/tex/latex/beamertheme-npbt/images/NPBT_eufom_logo.png + RELOC/tex/latex/beamertheme-npbt/images/lNPBT_SC_linie.png +catalogue-contact-bugs https://github.com/NMarkgraf/NPBT/issues +catalogue-contact-repository https://github.com/NMarkgraf/NPBT +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-npbt +catalogue-date 2018-08-18 05:26:33 +0200 +catalogue-license gpl3pd +catalogue-topics presentation +catalogue-version 4.1 + +name beamertheme-phnompenh +category Package +revision 39100 +shortdesc A simple beamer theme +relocated 1 +longdesc The package provides a simple theme, similar to some others, +longdesc but designed to be attractive. +containersize 784 +containerchecksum 30745bb1f92c230bedd953d32eaa6f2085ad2aa7f147bd3368fe8ebe4f6092ecc615acce55b9573da4dc04c8e89877ba2705a6712cd4c4f67f34dc59eae97880 +doccontainersize 57496 +doccontainerchecksum 626d124c6ac02271cc3bc137e60b8a66a861b7f692910e9fad283d8836599e3adbdd1ac472fe66955a392d1b563e955da852cfd5a0d712d284fdb2dc4d709a63 docfiles size=21 - RELOC/doc/latex/beamerthemephnompenh/README - RELOC/doc/latex/beamerthemephnompenh/beamerthemePhnomPenh.pdf - RELOC/doc/latex/beamerthemephnompenh/beamerthemePhnomPenh.tex + RELOC/doc/latex/beamertheme-phnompenh/README details="Readme" + RELOC/doc/latex/beamertheme-phnompenh/beamerthemePhnomPenh.pdf details="small sample of use" + RELOC/doc/latex/beamertheme-phnompenh/beamerthemePhnomPenh.tex +runfiles size=1 + RELOC/tex/latex/beamertheme-phnompenh/beamerthemePhnomPenh.sty +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/phnompenh +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics presentation +catalogue-version 1.0 + +name beamertheme-saintpetersburg +category Package +revision 45877 +shortdesc A beamer theme that incorporates colours and fonts of Saint Petersburg State University +relocated 1 +longdesc This minimalistic beamer theme incorporates Saint Petersburg +longdesc State University colours and fonts. It is suitable for both +longdesc presentations and posters. +containersize 3552 +containerchecksum c258a4eee25ccdb2437625982e54def90aec87be003f697a47334be52b85ef223b377c7fc57d49c889121caea664fcd6353015ad2e62f5bee5379bc222958f53 +doccontainersize 243188 +doccontainerchecksum bf51e2bc33f32ba3dda6c140040a7499a60c26082569729743228a6c7abc97fb20076d1d0c7d0b64a25a54cbba1d9a8b59a9059d160a5a488ef6641999e8611f +docfiles size=146 + RELOC/doc/latex/beamertheme-saintpetersburg/README.md details="Readme" + RELOC/doc/latex/beamertheme-saintpetersburg/SaintPetersburg.pdf details="Package documentation" + RELOC/doc/latex/beamertheme-saintpetersburg/example.pdf details="Example of use" + RELOC/doc/latex/beamertheme-saintpetersburg/example.tex + RELOC/doc/latex/beamertheme-saintpetersburg/figures/propagating-elevation.eps + RELOC/doc/latex/beamertheme-saintpetersburg/figures/propagating-wave-height-x.eps + RELOC/doc/latex/beamertheme-saintpetersburg/figures/propagating-wave-length-x.eps + RELOC/doc/latex/beamertheme-saintpetersburg/figures/propagating-wave-period.eps + RELOC/doc/latex/beamertheme-saintpetersburg/figures/standing-elevation.eps + RELOC/doc/latex/beamertheme-saintpetersburg/figures/standing-wave-height-x.eps + RELOC/doc/latex/beamertheme-saintpetersburg/figures/standing-wave-length-x.eps + RELOC/doc/latex/beamertheme-saintpetersburg/figures/standing-wave-period.eps +srccontainersize 6008 +srccontainerchecksum 6cd3ed424b3a724e397de3fb7b47de33a5c9f0c5ac0e0f8b26bde55ef69b66015874dbd438912c682c9aa1c33e4e916fb895458964dea11fe228e29c1afc40e8 +srcfiles size=10 + RELOC/source/latex/beamertheme-saintpetersburg/SaintPetersburg.dtx + RELOC/source/latex/beamertheme-saintpetersburg/SaintPetersburg.ins + RELOC/source/latex/beamertheme-saintpetersburg/beamercolorthemeSaintPetersburg.dtx + RELOC/source/latex/beamertheme-saintpetersburg/beamerfontthemeSaintPetersburg.dtx + RELOC/source/latex/beamertheme-saintpetersburg/beamerthemeSaintPetersburg.dtx +runfiles size=4 + RELOC/tex/latex/beamertheme-saintpetersburg/beamercolorthemeSaintPetersburg.sty + RELOC/tex/latex/beamertheme-saintpetersburg/beamerfontthemeSaintPetersburg.sty + RELOC/tex/latex/beamertheme-saintpetersburg/beamerthemeSaintPetersburg.sty +catalogue-contact-bugs https://github.com/igankevich/SaintPetersburg/issues +catalogue-contact-repository https://github.com/igankevich/SaintPetersburg +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-saintpetersburg +catalogue-date 2017-11-23 15:14:44 +0100 +catalogue-license lppl1.3c +catalogue-topics presentation name beamertheme-upenn-bc category Package revision 29937 -shortdesc Beamer themies for Boston College and the University of Pennsylvania. +shortdesc Beamer themes for Boston College and the University of Pennsylvania relocated 1 longdesc Beamer themes in the colors of the University of Pennsylvania, longdesc USA, and Boston College, USA. Both were tested for the -longdesc presentation theme 'Warsaw. Please note that these color themes -longdesc are neither official nor exact! The colours are approximated -longdesc from the universities' style guidelines and websites, and -longdesc slightly modified where necessary to generate an appealing -longdesc look. The universities neither endorse, nor provide any support -longdesc for, these color themes. I give no warranty for the code. -runfiles size=2 - RELOC/tex/latex/beamertheme-upenn-bc/beamercolorthemegoeagles.sty - RELOC/tex/latex/beamertheme-upenn-bc/beamercolorthemepenn.sty +longdesc presentation theme 'Warsaw'. Please note that these color +longdesc themes are neither official nor exact! The colours are +longdesc approximated from the universities' style guidelines and +longdesc websites, and slightly modified where necessary to generate an +longdesc appealing look. The universities neither endorse, nor provide +longdesc any support for, these color themes. I give no warranty for the +longdesc code. +containersize 1660 +containerchecksum 0c483991348107a2b9102e514ec05838a9ae3e97dceddcbf3b8cc21ae635a272c7d70d97b2e1a0929b7545e50560f16a71f7b290ca16cdfd63177782b993b714 +doccontainersize 340140 +doccontainerchecksum 5feb0a4401d9ebbc4672b7f9668f850fb65002c7d7124c607009775149c4c428642cd17df133ae80d564ab091fdff039d34c1704360033f2374b55466fe1b618 docfiles size=139 - RELOC/doc/latex/beamertheme-upenn-bc/README + RELOC/doc/latex/beamertheme-upenn-bc/README details="Readme" RELOC/doc/latex/beamertheme-upenn-bc/beamerBCstyle.pdf RELOC/doc/latex/beamertheme-upenn-bc/beamerBCstyle.tex RELOC/doc/latex/beamertheme-upenn-bc/beamerPENNstyle.pdf +runfiles size=2 + RELOC/tex/latex/beamertheme-upenn-bc/beamercolorthemegoeagles.sty + RELOC/tex/latex/beamertheme-upenn-bc/beamercolorthemepenn.sty catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/upenn-bc -catalogue-date 2014-10-16 09:35:03 +0200 +catalogue-date 2017-11-20 21:38:25 +0100 catalogue-license lppl +catalogue-topics presentation catalogue-version 1.0 -name beamer +name beamerthemejltree category Package -revision 36461 -shortdesc A LaTeX class for producing presentations and slides. -relocated 1 -longdesc The beamer LaTeX class can be used for producing slides. Its -longdesc functionality is similar to Prosper but does not need any -longdesc external programs and can directly produce a presentation using -longdesc pdflatex. Beamer uses pgf for pdf/ps independent graphics. -longdesc Frames are created using \frame{...}, and a frame can build -longdesc multiple slides through a simple notation for specifying -longdesc material for each slide within a frame. Beamer supports -longdesc bibliographies, appendicies and transitions. Short versions of -longdesc title, authors, institute can also be specified as optional -longdesc parameters. A \plainframe{} allows a picture, for example, to -longdesc fill the whole frame. Support figure and table environments, -longdesc transparency effects, a \transduration command, animation -longdesc commands, a pauses environment. Beamer also provides -longdesc compatibility with other packages like prosper. The package now -longdesc incorporates the functionality of the former translator -longdesc package, which is used for customising the package for use in -longdesc other language environments. -depend pgf -depend xcolor -runfiles size=335 - RELOC/tex/latex/beamer/art/beamericonarticle.20.eps - RELOC/tex/latex/beamer/art/beamericonarticle.20.pdf - RELOC/tex/latex/beamer/art/beamericonarticle.eps - RELOC/tex/latex/beamer/art/beamericonarticle.pdf - RELOC/tex/latex/beamer/art/beamericonarticle.tex - RELOC/tex/latex/beamer/art/beamericonbook.20.eps - RELOC/tex/latex/beamer/art/beamericonbook.20.pdf - RELOC/tex/latex/beamer/art/beamericonbook.eps - RELOC/tex/latex/beamer/art/beamericonbook.pdf - RELOC/tex/latex/beamer/art/beamericonbook.tex - RELOC/tex/latex/beamer/art/beamericononline.20.eps - RELOC/tex/latex/beamer/art/beamericononline.20.pdf - RELOC/tex/latex/beamer/art/beamericononline.eps - RELOC/tex/latex/beamer/art/beamericononline.pdf - RELOC/tex/latex/beamer/beamer.cls - RELOC/tex/latex/beamer/beamerarticle.sty - RELOC/tex/latex/beamer/beamerbasearticle.sty - RELOC/tex/latex/beamer/beamerbaseauxtemplates.sty - RELOC/tex/latex/beamer/beamerbaseboxes.sty - RELOC/tex/latex/beamer/beamerbasecolor.sty - RELOC/tex/latex/beamer/beamerbasecompatibility.sty - RELOC/tex/latex/beamer/beamerbasedecode.sty - RELOC/tex/latex/beamer/beamerbaseexercise.sty - RELOC/tex/latex/beamer/beamerbasefont.sty - RELOC/tex/latex/beamer/beamerbaseframe.sty - RELOC/tex/latex/beamer/beamerbaseframecomponents.sty - RELOC/tex/latex/beamer/beamerbaseframesize.sty - RELOC/tex/latex/beamer/beamerbaselocalstructure.sty - RELOC/tex/latex/beamer/beamerbasemisc.sty - RELOC/tex/latex/beamer/beamerbasemodes.sty - RELOC/tex/latex/beamer/beamerbasenavigation.sty - RELOC/tex/latex/beamer/beamerbasenotes.sty - RELOC/tex/latex/beamer/beamerbaseoptions.sty - RELOC/tex/latex/beamer/beamerbaseoverlay.sty - RELOC/tex/latex/beamer/beamerbasercs.sty - RELOC/tex/latex/beamer/beamerbaserequires.sty - RELOC/tex/latex/beamer/beamerbasesection.sty - RELOC/tex/latex/beamer/beamerbasetemplates.sty - RELOC/tex/latex/beamer/beamerbasethemes.sty - RELOC/tex/latex/beamer/beamerbasetheorems.sty - RELOC/tex/latex/beamer/beamerbasetitle.sty - RELOC/tex/latex/beamer/beamerbasetoc.sty - RELOC/tex/latex/beamer/beamerbasetranslator.sty - RELOC/tex/latex/beamer/beamerbasetwoscreens.sty - RELOC/tex/latex/beamer/beamerbaseverbatim.sty - RELOC/tex/latex/beamer/emulation/beamerfoils.sty - RELOC/tex/latex/beamer/emulation/beamerprosper.sty - RELOC/tex/latex/beamer/emulation/beamerseminar.sty - RELOC/tex/latex/beamer/emulation/beamertexpower.sty - RELOC/tex/latex/beamer/emulation/examples/beamerexample-foils.tex - RELOC/tex/latex/beamer/emulation/examples/beamerexample-prosper.tex - RELOC/tex/latex/beamer/emulation/examples/beamerexample-seminar.tex - RELOC/tex/latex/beamer/emulation/examples/beamerexample-texpower.tex - RELOC/tex/latex/beamer/multimedia/multimedia.sty - RELOC/tex/latex/beamer/multimedia/multimediasymbols.sty - RELOC/tex/latex/beamer/multimedia/xmpmulti.sty - RELOC/tex/latex/beamer/themes/color/beamercolorthemealbatross.sty - RELOC/tex/latex/beamer/themes/color/beamercolorthemebeaver.sty - RELOC/tex/latex/beamer/themes/color/beamercolorthemebeetle.sty - RELOC/tex/latex/beamer/themes/color/beamercolorthemecrane.sty - RELOC/tex/latex/beamer/themes/color/beamercolorthemedefault.sty - RELOC/tex/latex/beamer/themes/color/beamercolorthemedolphin.sty - RELOC/tex/latex/beamer/themes/color/beamercolorthemedove.sty - RELOC/tex/latex/beamer/themes/color/beamercolorthemefly.sty - RELOC/tex/latex/beamer/themes/color/beamercolorthemelily.sty - RELOC/tex/latex/beamer/themes/color/beamercolorthememonarca.sty - RELOC/tex/latex/beamer/themes/color/beamercolorthemeorchid.sty - RELOC/tex/latex/beamer/themes/color/beamercolorthemerose.sty - RELOC/tex/latex/beamer/themes/color/beamercolorthemeseagull.sty - RELOC/tex/latex/beamer/themes/color/beamercolorthemeseahorse.sty - RELOC/tex/latex/beamer/themes/color/beamercolorthemesidebartab.sty - RELOC/tex/latex/beamer/themes/color/beamercolorthemespruce.sty - RELOC/tex/latex/beamer/themes/color/beamercolorthemestructure.sty - RELOC/tex/latex/beamer/themes/color/beamercolorthemewhale.sty - RELOC/tex/latex/beamer/themes/color/beamercolorthemewolverine.sty - RELOC/tex/latex/beamer/themes/font/beamerfontthemedefault.sty - RELOC/tex/latex/beamer/themes/font/beamerfontthemeprofessionalfonts.sty - RELOC/tex/latex/beamer/themes/font/beamerfontthemeserif.sty - RELOC/tex/latex/beamer/themes/font/beamerfontthemestructurebold.sty - RELOC/tex/latex/beamer/themes/font/beamerfontthemestructureitalicserif.sty - RELOC/tex/latex/beamer/themes/font/beamerfontthemestructuresmallcapsserif.sty - RELOC/tex/latex/beamer/themes/inner/beamerinnerthemecircles.sty - RELOC/tex/latex/beamer/themes/inner/beamerinnerthemedefault.sty - RELOC/tex/latex/beamer/themes/inner/beamerinnerthemeinmargin.sty - RELOC/tex/latex/beamer/themes/inner/beamerinnerthemerectangles.sty - RELOC/tex/latex/beamer/themes/inner/beamerinnerthemerounded.sty - RELOC/tex/latex/beamer/themes/outer/beamerouterthemedefault.sty - RELOC/tex/latex/beamer/themes/outer/beamerouterthemeinfolines.sty - RELOC/tex/latex/beamer/themes/outer/beamerouterthememiniframes.sty - RELOC/tex/latex/beamer/themes/outer/beamerouterthemeshadow.sty - RELOC/tex/latex/beamer/themes/outer/beamerouterthemesidebar.sty - RELOC/tex/latex/beamer/themes/outer/beamerouterthemesmoothbars.sty - RELOC/tex/latex/beamer/themes/outer/beamerouterthemesmoothtree.sty - RELOC/tex/latex/beamer/themes/outer/beamerouterthemesplit.sty - RELOC/tex/latex/beamer/themes/outer/beamerouterthemetree.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeAnnArbor.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeAntibes.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeBergen.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeBerkeley.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeBerlin.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeBoadilla.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeCambridgeUS.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeCopenhagen.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeDarmstadt.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeDresden.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeEastLansing.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeFrankfurt.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeGoettingen.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeHannover.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeIlmenau.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeJuanLesPins.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeLuebeck.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeMadrid.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeMalmoe.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeMarburg.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeMontpellier.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemePaloAlto.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemePittsburgh.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeRochester.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeSingapore.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeSzeged.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeWarsaw.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemeboxes.sty - RELOC/tex/latex/beamer/themes/theme/beamerthemedefault.sty - RELOC/tex/latex/beamer/themes/theme/compatibility/beamerthemebars.sty - RELOC/tex/latex/beamer/themes/theme/compatibility/beamerthemeclassic.sty - RELOC/tex/latex/beamer/themes/theme/compatibility/beamerthemecompatibility.sty - RELOC/tex/latex/beamer/themes/theme/compatibility/beamerthemelined.sty - RELOC/tex/latex/beamer/themes/theme/compatibility/beamerthemeplain.sty - RELOC/tex/latex/beamer/themes/theme/compatibility/beamerthemeshadow.sty - RELOC/tex/latex/beamer/themes/theme/compatibility/beamerthemesidebar.sty - RELOC/tex/latex/beamer/themes/theme/compatibility/beamerthemesplit.sty - RELOC/tex/latex/beamer/themes/theme/compatibility/beamerthemetree.sty - RELOC/tex/latex/beamer/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Brazilian.dict - RELOC/tex/latex/beamer/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Catalan.dict - RELOC/tex/latex/beamer/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Croatian.dict - RELOC/tex/latex/beamer/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-English.dict - RELOC/tex/latex/beamer/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-French.dict - RELOC/tex/latex/beamer/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-German.dict - RELOC/tex/latex/beamer/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Greek.dict - RELOC/tex/latex/beamer/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Norsk.dict - RELOC/tex/latex/beamer/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Nynorsk.dict - RELOC/tex/latex/beamer/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Polish.dict - RELOC/tex/latex/beamer/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Serbian.dict - RELOC/tex/latex/beamer/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Spanish.dict - RELOC/tex/latex/beamer/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Brazilian.dict - RELOC/tex/latex/beamer/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Catalan.dict - RELOC/tex/latex/beamer/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Croatian.dict - RELOC/tex/latex/beamer/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-English.dict - RELOC/tex/latex/beamer/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-French.dict - RELOC/tex/latex/beamer/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-German.dict - RELOC/tex/latex/beamer/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Greek.dict - RELOC/tex/latex/beamer/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Polish.dict - RELOC/tex/latex/beamer/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Serbian.dict - RELOC/tex/latex/beamer/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Spanish.dict - RELOC/tex/latex/beamer/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Brazilian.dict - RELOC/tex/latex/beamer/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Catalan.dict - RELOC/tex/latex/beamer/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Croatian.dict - RELOC/tex/latex/beamer/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-English.dict - RELOC/tex/latex/beamer/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-French.dict - RELOC/tex/latex/beamer/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-German.dict - RELOC/tex/latex/beamer/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Greek.dict - RELOC/tex/latex/beamer/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Polish.dict - RELOC/tex/latex/beamer/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Portuguese.dict - RELOC/tex/latex/beamer/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Serbian.dict - RELOC/tex/latex/beamer/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Spanish.dict - RELOC/tex/latex/beamer/translator/dicts/translator-months-dictionary/translator-months-dictionary-Brazilian.dict - RELOC/tex/latex/beamer/translator/dicts/translator-months-dictionary/translator-months-dictionary-Catalan.dict - RELOC/tex/latex/beamer/translator/dicts/translator-months-dictionary/translator-months-dictionary-Croatian.dict - RELOC/tex/latex/beamer/translator/dicts/translator-months-dictionary/translator-months-dictionary-English.dict - RELOC/tex/latex/beamer/translator/dicts/translator-months-dictionary/translator-months-dictionary-French.dict - RELOC/tex/latex/beamer/translator/dicts/translator-months-dictionary/translator-months-dictionary-German.dict - RELOC/tex/latex/beamer/translator/dicts/translator-months-dictionary/translator-months-dictionary-Greek.dict - RELOC/tex/latex/beamer/translator/dicts/translator-months-dictionary/translator-months-dictionary-Italian.dict - RELOC/tex/latex/beamer/translator/dicts/translator-months-dictionary/translator-months-dictionary-Norsk.dict - RELOC/tex/latex/beamer/translator/dicts/translator-months-dictionary/translator-months-dictionary-Nynorsk.dict - RELOC/tex/latex/beamer/translator/dicts/translator-months-dictionary/translator-months-dictionary-Polish.dict - RELOC/tex/latex/beamer/translator/dicts/translator-months-dictionary/translator-months-dictionary-Portuguese.dict - RELOC/tex/latex/beamer/translator/dicts/translator-months-dictionary/translator-months-dictionary-Serbian.dict - RELOC/tex/latex/beamer/translator/dicts/translator-months-dictionary/translator-months-dictionary-Spanish.dict - RELOC/tex/latex/beamer/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Brazilian.dict - RELOC/tex/latex/beamer/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Catalan.dict - RELOC/tex/latex/beamer/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Croatian.dict - RELOC/tex/latex/beamer/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-English.dict - RELOC/tex/latex/beamer/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-French.dict - RELOC/tex/latex/beamer/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-German.dict - RELOC/tex/latex/beamer/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Greek.dict - RELOC/tex/latex/beamer/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Norsk.dict - RELOC/tex/latex/beamer/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Nynorsk.dict - RELOC/tex/latex/beamer/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Polish.dict - RELOC/tex/latex/beamer/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Portuguese.dict - RELOC/tex/latex/beamer/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Serbian.dict - RELOC/tex/latex/beamer/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Spanish.dict - RELOC/tex/latex/beamer/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Brazilian.dict - RELOC/tex/latex/beamer/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Catalan.dict - RELOC/tex/latex/beamer/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Croatian.dict - RELOC/tex/latex/beamer/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-English.dict - RELOC/tex/latex/beamer/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-French.dict - RELOC/tex/latex/beamer/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-German.dict - RELOC/tex/latex/beamer/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Greek.dict - RELOC/tex/latex/beamer/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Norsk.dict - RELOC/tex/latex/beamer/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Polish.dict - RELOC/tex/latex/beamer/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Serbian.dict - RELOC/tex/latex/beamer/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Spanish.dict - RELOC/tex/latex/beamer/translator/translator-language-mappings.tex - RELOC/tex/latex/beamer/translator/translator.sty -docfiles size=1263 - RELOC/doc/latex/beamer/AUTHORS - RELOC/doc/latex/beamer/ChangeLog - RELOC/doc/latex/beamer/FILES - RELOC/doc/latex/beamer/INSTALL - RELOC/doc/latex/beamer/README - RELOC/doc/latex/beamer/TODO - RELOC/doc/latex/beamer/doc/Makefile - RELOC/doc/latex/beamer/doc/beamercolorthemeexample.tex - RELOC/doc/latex/beamer/doc/beamerfontthemeexample.tex - RELOC/doc/latex/beamer/doc/beamerinnerthemeexample.tex - RELOC/doc/latex/beamer/doc/beamerlogo.pdf - RELOC/doc/latex/beamer/doc/beamerouterthemeexample.tex - RELOC/doc/latex/beamer/doc/beamerthemeexample.tex - RELOC/doc/latex/beamer/doc/beamerthemeexamplebase.tex - RELOC/doc/latex/beamer/doc/beamerug-animations.tex - RELOC/doc/latex/beamer/doc/beamerug-color.tex - RELOC/doc/latex/beamer/doc/beamerug-compatibility.tex - RELOC/doc/latex/beamer/doc/beamerug-elements.tex - RELOC/doc/latex/beamer/doc/beamerug-emulation.tex - RELOC/doc/latex/beamer/doc/beamerug-fonts.tex - RELOC/doc/latex/beamer/doc/beamerug-frames.tex - RELOC/doc/latex/beamer/doc/beamerug-globalstructure.tex - RELOC/doc/latex/beamer/doc/beamerug-graphics.tex - RELOC/doc/latex/beamer/doc/beamerug-guidelines.tex - RELOC/doc/latex/beamer/doc/beamerug-installation.tex - RELOC/doc/latex/beamer/doc/beamerug-interaction.tex - RELOC/doc/latex/beamer/doc/beamerug-introduction.tex - RELOC/doc/latex/beamer/doc/beamerug-license.tex - RELOC/doc/latex/beamer/doc/beamerug-localstructure.tex - RELOC/doc/latex/beamer/doc/beamerug-macros.tex - RELOC/doc/latex/beamer/doc/beamerug-nonpresentation.tex - RELOC/doc/latex/beamer/doc/beamerug-notes.tex - RELOC/doc/latex/beamer/doc/beamerug-overlays.tex - RELOC/doc/latex/beamer/doc/beamerug-solutions.tex - RELOC/doc/latex/beamer/doc/beamerug-themes.tex - RELOC/doc/latex/beamer/doc/beamerug-translator.tex - RELOC/doc/latex/beamer/doc/beamerug-transparencies.tex - RELOC/doc/latex/beamer/doc/beamerug-tricks.tex - RELOC/doc/latex/beamer/doc/beamerug-tutorial.tex - RELOC/doc/latex/beamer/doc/beamerug-twoscreens.tex - RELOC/doc/latex/beamer/doc/beamerug-workflow.tex - RELOC/doc/latex/beamer/doc/beamerugcolorthemealbatross.pdf - RELOC/doc/latex/beamer/doc/beamerugcolorthemealbatrossstylish.pdf - RELOC/doc/latex/beamer/doc/beamerugcolorthemebeaver.pdf - RELOC/doc/latex/beamer/doc/beamerugcolorthemebeetle.pdf - RELOC/doc/latex/beamer/doc/beamerugcolorthemecrane.pdf - RELOC/doc/latex/beamer/doc/beamerugcolorthemedefault.pdf - RELOC/doc/latex/beamer/doc/beamerugcolorthemedolphin.pdf - RELOC/doc/latex/beamer/doc/beamerugcolorthemedove.pdf - RELOC/doc/latex/beamer/doc/beamerugcolorthemefly.pdf - RELOC/doc/latex/beamer/doc/beamerugcolorthemelily.pdf - RELOC/doc/latex/beamer/doc/beamerugcolorthemeorchid.pdf - RELOC/doc/latex/beamer/doc/beamerugcolorthemerose.pdf - RELOC/doc/latex/beamer/doc/beamerugcolorthemeseagull.pdf - RELOC/doc/latex/beamer/doc/beamerugcolorthemeseahorse.pdf - RELOC/doc/latex/beamer/doc/beamerugcolorthemesidebartab.pdf - RELOC/doc/latex/beamer/doc/beamerugcolorthemespruce.pdf - RELOC/doc/latex/beamer/doc/beamerugcolorthemestructure.pdf - RELOC/doc/latex/beamer/doc/beamerugcolorthemewhale.pdf - RELOC/doc/latex/beamer/doc/beamerugcolorthemewolverine.pdf - RELOC/doc/latex/beamer/doc/beamerugfontthemedefault.pdf - RELOC/doc/latex/beamer/doc/beamerugfontthemeserif.pdf - RELOC/doc/latex/beamer/doc/beamerugfontthemestructurebold.pdf - RELOC/doc/latex/beamer/doc/beamerugfontthemestructureitalicserif.pdf - RELOC/doc/latex/beamer/doc/beamerugfontthemestructuresmallcapsserif.pdf - RELOC/doc/latex/beamer/doc/beameruginnerthemecircles.pdf - RELOC/doc/latex/beamer/doc/beameruginnerthemedefault.pdf - RELOC/doc/latex/beamer/doc/beameruginnerthemeinmargin.pdf - RELOC/doc/latex/beamer/doc/beameruginnerthemerectangles.pdf - RELOC/doc/latex/beamer/doc/beameruginnerthemerounded.pdf - RELOC/doc/latex/beamer/doc/beamerugouterthemedefault.pdf - RELOC/doc/latex/beamer/doc/beamerugouterthemeinfolines.pdf - RELOC/doc/latex/beamer/doc/beamerugouterthememiniframes.pdf - RELOC/doc/latex/beamer/doc/beamerugouterthemeshadow.pdf - RELOC/doc/latex/beamer/doc/beamerugouterthemesidebar.pdf - RELOC/doc/latex/beamer/doc/beamerugouterthemesmoothbars.pdf - RELOC/doc/latex/beamer/doc/beamerugouterthemesmoothtree.pdf - RELOC/doc/latex/beamer/doc/beamerugouterthemesplit.pdf - RELOC/doc/latex/beamer/doc/beamerugouterthemetree.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeAnnArbor.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeAntibes.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeBergen.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeBerkeley.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeBerlin.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeBoadilla.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeCambridgeUS.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeCopenhagen.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeDarmstadt.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeDresden.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeEastLansing.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeFrankfurt.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeGoettingen.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeHannover.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeIlmenau.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeJuanLesPins.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeLuebeck.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeMadrid.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeMalmoe.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeMarburg.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeMontpellier.pdf - RELOC/doc/latex/beamer/doc/beamerugthemePaloAlto.pdf - RELOC/doc/latex/beamer/doc/beamerugthemePittsburgh.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeRochester.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeSingapore.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeSzeged.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeWarsaw.pdf - RELOC/doc/latex/beamer/doc/beamerugthemeboxes.pdf - RELOC/doc/latex/beamer/doc/beamerugthemedefault.pdf - RELOC/doc/latex/beamer/doc/beameruserguide.pdf - RELOC/doc/latex/beamer/doc/beameruserguide.tex - RELOC/doc/latex/beamer/doc/licenses/LICENSE - RELOC/doc/latex/beamer/examples/Makefile - RELOC/doc/latex/beamer/examples/a-conference-talk/beamerexample-conference-talk.tex - RELOC/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-beamer-version.pdf - RELOC/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-beamer-version.tex - RELOC/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-body.tex - RELOC/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-logo.pdf - RELOC/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-pic1.jpg - RELOC/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-pic2.jpg - RELOC/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-pic3.jpg - RELOC/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-pic4.jpg - RELOC/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-pic5.jpg - RELOC/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-pic6.jpg - RELOC/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-print-version.tex - RELOC/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-style.tex - RELOC/doc/latex/beamer/examples/beamerexample-conference-talk.pdf - RELOC/doc/latex/beamer/examples/beamerexample-lecture-print-version.pdf - RELOC/doc/latex/beamer/solutions/conference-talks/conference-ornate-20min.de.tex - RELOC/doc/latex/beamer/solutions/conference-talks/conference-ornate-20min.en.tex - RELOC/doc/latex/beamer/solutions/conference-talks/conference-ornate-20min.fr.tex - RELOC/doc/latex/beamer/solutions/generic-talks/generic-ornate-15min-45min.de.tex - RELOC/doc/latex/beamer/solutions/generic-talks/generic-ornate-15min-45min.en.tex - RELOC/doc/latex/beamer/solutions/generic-talks/generic-ornate-15min-45min.fr.tex - RELOC/doc/latex/beamer/solutions/short-talks/speaker_introduction-ornate-2min.de.tex - RELOC/doc/latex/beamer/solutions/short-talks/speaker_introduction-ornate-2min.en.tex - RELOC/doc/latex/beamer/solutions/short-talks/speaker_introduction-ornate-2min.fr.tex -catalogue-ctan /macros/latex/contrib/beamer -catalogue-date 2015-03-08 17:33:38 +0100 -catalogue-license lppl1.3 -catalogue-version 3.36 +revision 21977 +shortdesc Contributed beamer theme +relocated 1 +longdesc A theme for beamer presentations. +containersize 1500 +containerchecksum b079ceab30460a7b92a616fa6d7216ddddecfa02adfd66bf38aea83eccdf6e63cc52d8b2ae88db0b21962af223b364424227806beabbfb2e344af98474af2528 +runfiles size=1 + RELOC/tex/latex/beamerthemejltree/beamerthemeJLTree.sty +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamerthemeJLTree.sty +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics presentation +catalogue-version 1.1 -name beamer-tut-pt +name beamerthemenirma category Package -revision 15878 -shortdesc An introduction to the Beamer class, in Portuguese. +revision 20765 +shortdesc A Beamer theme for academic presentations relocated 1 -docfiles size=1022 - RELOC/doc/latex/beamer-tut-pt/AnnArbor1.ps - RELOC/doc/latex/beamer-tut-pt/AnnArbor2.ps - RELOC/doc/latex/beamer-tut-pt/CambridgeUS1.ps - RELOC/doc/latex/beamer-tut-pt/CambridgeUS2.ps - RELOC/doc/latex/beamer-tut-pt/LEIAME - RELOC/doc/latex/beamer-tut-pt/README - RELOC/doc/latex/beamer-tut-pt/anim1.ps - RELOC/doc/latex/beamer-tut-pt/anim2.ps - RELOC/doc/latex/beamer-tut-pt/anim3.ps - RELOC/doc/latex/beamer-tut-pt/anim4.ps - RELOC/doc/latex/beamer-tut-pt/automato1.jpg - RELOC/doc/latex/beamer-tut-pt/automato2.jpg - RELOC/doc/latex/beamer-tut-pt/automato3.jpg - RELOC/doc/latex/beamer-tut-pt/automato4.jpg - RELOC/doc/latex/beamer-tut-pt/automato5.jpg - RELOC/doc/latex/beamer-tut-pt/berkeley1.ps - RELOC/doc/latex/beamer-tut-pt/berkeley2.ps - RELOC/doc/latex/beamer-tut-pt/blocos.ps - RELOC/doc/latex/beamer-tut-pt/boadilla1.ps - RELOC/doc/latex/beamer-tut-pt/boadilla2.ps - RELOC/doc/latex/beamer-tut-pt/exemplo.tex - RELOC/doc/latex/beamer-tut-pt/madrid1.ps - RELOC/doc/latex/beamer-tut-pt/madrid2.ps - RELOC/doc/latex/beamer-tut-pt/montpellier1.ps - RELOC/doc/latex/beamer-tut-pt/montpellier2.ps - RELOC/doc/latex/beamer-tut-pt/tutorialbeamer.pdf - RELOC/doc/latex/beamer-tut-pt/tutorialbeamer.tex - RELOC/doc/latex/beamer-tut-pt/ufpellogo.jpg -catalogue-ctan /info/portuguese/beamer -catalogue-date 2012-04-27 14:49:55 +0200 -catalogue-license gpl +longdesc The package developed for academic purposes. The distribution +longdesc includes nothing more than style file needed for preparing +longdesc presentations. +containersize 2704 +containerchecksum 6fe83e0805fde96d585dc027ecadd23862815171f56f6a05db0a6788018a096c193c995895f7ca18af6d322877e24d570743d84a922a2c7e4baef35d3f6dfca1 +doccontainersize 404 +doccontainerchecksum 13f1dfbc8f09662b627dd4ed6c7ff297612c5d05a140a446ccdcb6f0ad3a9995b434d418994cccc2323ead666eaeb10b32e1a9d410a38c632df9873717397231 +docfiles size=1 + RELOC/doc/latex/beamerthemenirma/README details="Readme" +runfiles size=2 + RELOC/tex/latex/beamerthemenirma/beamerthemenirma.sty +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/nirma +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics presentation +catalogue-version 0.1 name beebe category Package -revision 38101 +revision 51168 +catalogue biblio +shortdesc A collection of bibliographies relocated 1 -runfiles size=1198 - RELOC/bibtex/bib/beebe/gut.bib - RELOC/bibtex/bib/beebe/komoedie.bib +longdesc A collection of BibTeX bibliographies on TeX-related topics +longdesc (including, for example, spell-checking and SGML). Each +longdesc includes a LaTeX wrapper file to typeset the bibliography. +containersize 648040 +containerchecksum 76778e8a0562b5af5b3be4c97fe293898018d7ded0b666149a4f5b1584ced681bff0a9f086f8733b976860347e28b5bc99afb4712b8cca7aca432d0c556a4064 +runfiles size=1927 RELOC/bibtex/bib/beebe/texbook1.bib RELOC/bibtex/bib/beebe/texbook2.bib RELOC/bibtex/bib/beebe/texbook3.bib @@ -14770,6 +28440,7 @@ runfiles size=1198 RELOC/bibtex/bib/beebe/texjourn.bib RELOC/bibtex/bib/beebe/texnique.bib RELOC/bibtex/bib/beebe/tugboat.bib + RELOC/bibtex/bib/beebe/typeset.bib RELOC/bibtex/bst/beebe/aaai-named.bst RELOC/bibtex/bst/beebe/abstract.bst RELOC/bibtex/bst/beebe/annotate.bst @@ -14816,57 +28487,127 @@ runfiles size=1198 RELOC/tex/generic/beebe/bibnames.sty RELOC/tex/generic/beebe/texnames.sty RELOC/tex/generic/beebe/tugboat.def +catalogue-contact-home http://www.math.utah.edu/~beebe/ +catalogue-ctan /info/biblio +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license noinfo +catalogue-topics bibtex-lib name begingreek category Package revision 36294 -shortdesc Greek environment to be used with pdflatex only +shortdesc Greek environment to be used with pdfLaTeX only relocated 1 longdesc This simple package defines a greek environment to be used with longdesc pdfLaTeX only, that accepts an optional Greek font family name longdesc to type its contents with. A similar \greektxt command does a longdesc similar action for shorter texts. -runfiles size=1 - RELOC/tex/latex/begingreek/begingreek.sty +containersize 1664 +containerchecksum 88b3bd66f458eacdb1c4da1cf4a44de333ab45f3d498eecc1a1d4b688c955b3a759a620642e3cf94268136989817f97d783475740a0c16d3b5578b670d967719 +doccontainersize 709916 +doccontainerchecksum 3792be7b825db6ffa7194a0cad8d8ba0c2ab3ef64f87abeb607870702612a22c798a61e8b07d61f21e1a0db30c4645c3ebe03bc0ac7c297fbec163d9cb91f22b docfiles size=175 - RELOC/doc/latex/begingreek/README - RELOC/doc/latex/begingreek/begingreek.pdf + RELOC/doc/latex/begingreek/README details="Readme" + RELOC/doc/latex/begingreek/begingreek.pdf details="Package documentation" RELOC/doc/latex/begingreek/manifest.txt +srccontainersize 7448 +srccontainerchecksum 605588a60e9cb2d6a3be3d8dfada6468dfee100eb7739c7ce3d264af38d305be103a62b267b8f05d8a57d9bae273f930b2e4dcc5f3352ddfb8c1e50ac81ae7d4 srcfiles size=5 RELOC/source/latex/begingreek/begingreek.dtx +runfiles size=1 + RELOC/tex/latex/begingreek/begingreek.sty catalogue-ctan /macros/latex/contrib/begingreek -catalogue-date 2015-02-16 12:49:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics greek catalogue-version 1.5 name begriff category Package revision 15878 -shortdesc Typeset Begriffschrift. +shortdesc Typeset Begriffschrift relocated 1 longdesc The package defines maths mode commands for typesetting Frege's longdesc Begriffschrift. -runfiles size=2 - RELOC/tex/latex/begriff/begriff.sty +containersize 2468 +containerchecksum ed1060e0ce9bad28f98481eed44f8bd98f6b8be91dd5dc87d5c34a6cc57e724d175fa909fd6ff514399eb81bd8f28450f7c9a6c6a9bc991f35d617a8a25de8ed +doccontainersize 40204 +doccontainerchecksum af28c20897e297af4ca1fb13bb286ff0eece9e2f06f5b734062716c0c5f5b7dd673d046a5a47c907f9a845a7257393f3328d46c4ea2ac0ae6b0eff1244e97256 docfiles size=20 RELOC/doc/latex/begriff/COPYING - RELOC/doc/latex/begriff/README + RELOC/doc/latex/begriff/README details="Readme" RELOC/doc/latex/begriff/examples.pdf RELOC/doc/latex/begriff/examples.tex +runfiles size=2 + RELOC/tex/latex/begriff/begriff.sty +catalogue-also frege grundgesetze bguq catalogue-ctan /macros/latex/contrib/begriff -catalogue-date 2014-03-25 19:16:16 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics maths logic catalogue-version 1.6 +name beilstein +category Package +revision 46503 +shortdesc Support for submissions to the "Beilstein Journal of Nanotechnology" +relocated 1 +longdesc The package provides a LaTeX class file and a BibTeX style file +longdesc in accordance with the requirements of submissions to the +longdesc ``Beilstein Journal of Nanotechnology''. Although the files can +longdesc be used for any kind of document, they have only been designed +longdesc and tested to be suitable for submissions to the Beilstein +longdesc Journal of Nanotechnology. +containersize 13972 +containerchecksum b581df03b91834de1382b50dbcd1c4df25d8d3c1788889bb7057cebf3193fb664ef94f63b5c137f7ec5e3ce7a8d2d40fa3acf3a2640ba1e2b7b94daaf870841d +doccontainersize 698248 +doccontainerchecksum 00d281b248088fc0e31004bd4eced9a9eacba7f4260676318e13452e467d8e4587a8493a6444e709b76c18902ce766e35cda7ebf14595c277b59232a66e76e4b +docfiles size=186 + RELOC/doc/latex/beilstein/BJNANO_Technical_Handbook.pdf + RELOC/doc/latex/beilstein/CHANGELOG.md + RELOC/doc/latex/beilstein/README.md details="Readme" + RELOC/doc/latex/beilstein/beilstein-template.bib + RELOC/doc/latex/beilstein/beilstein-template.tex + RELOC/doc/latex/beilstein/figure1.pdf + RELOC/doc/latex/beilstein/scheme1.pdf + RELOC/doc/latex/beilstein/scheme2.pdf +srccontainersize 76764 +srccontainerchecksum fbaa3aeb41641adb0dcb559347b8eaf30adc79719d305d26f62bdbc2a80a913e4dcbb6507f7c2353687011a02fbf43f0fa49a67445844e4d37294b7ea4c3726f +srcfiles size=50 + RELOC/source/latex/beilstein/beilstein.dtx + RELOC/source/latex/beilstein/beilstein.ins + RELOC/source/latex/beilstein/bjnano_logo.pdf +runfiles size=17 + RELOC/bibtex/bst/beilstein/bjnano.bst + RELOC/tex/latex/beilstein/beilstein.cls +catalogue-contact-home https://www.beilstein-journals.org/bjnano/ +catalogue-ctan /macros/latex/contrib/beilstein +catalogue-date 2018-01-30 22:19:12 +0100 +catalogue-license lppl1.3c +catalogue-topics journalpub +catalogue-version 1.4 + name belleek category Package revision 18651 -shortdesc Free replacement for basic MathTime fonts. +shortdesc Free replacement for basic MathTime fonts relocated 1 -longdesc This package replaces the original MathTime fonts, not MathTime- -longdesc Plus or MathTime Professional (the last being the only +longdesc This package replaces the original MathTime fonts, not +longdesc MathTime-Plus or MathTime Professional (the last being the only longdesc currently available commercial bundle). execute addMap belleek.map +containersize 83284 +containerchecksum cdc7499ec32c26ac524caecc6b5c1f30f3ded83d78756b198b918d321696f378e6487f528cb3781a44f3485110dfff14a14c9b3306e22ae79a8d262c1f1baea4 +doccontainersize 720 +doccontainerchecksum e974e00c2e43d01d598c18f664e8ca3ca9259ca55089598c77468d6f50d0cc9a64d4fc23154bf9ba7acf3b9b9ca406beff24623eae5b6c3ce4c167904e5fb720 +docfiles size=1 + RELOC/doc/fonts/belleek/README details="Readme" +srccontainersize 596 +srccontainerchecksum 27ea3f4dd1ba7919bf06dfcdcf7b1ca4fa609759a58dffd91fdb2a55662e58e14e19d855d93ec932d176060ee332d89e02c9d2965ec545adfb10f3f486f8875d +srcfiles size=3 + RELOC/source/latex/belleek/my1mtt.fd + RELOC/source/latex/belleek/my2mtt.fd + RELOC/source/latex/belleek/my3mtt.fd runfiles size=34 RELOC/fonts/map/dvips/belleek/belleek.map RELOC/fonts/truetype/public/belleek/blex.ttf @@ -14875,25 +28616,36 @@ runfiles size=34 RELOC/fonts/type1/public/belleek/blex.pfb RELOC/fonts/type1/public/belleek/blsy.pfb RELOC/fonts/type1/public/belleek/rblmi.pfb -docfiles size=1 - RELOC/doc/fonts/belleek/README -srcfiles size=3 - RELOC/source/latex/belleek/my1mtt.fd - RELOC/source/latex/belleek/my2mtt.fd - RELOC/source/latex/belleek/my3mtt.fd +catalogue-contact-home http://truetex.com catalogue-ctan /fonts/belleek -catalogue-date 2014-04-06 17:50:10 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license pd +catalogue-topics font font-maths font-type1 name bengali category Package revision 20987 catalogue bengali-pandey -shortdesc Support for the Bengali language. +shortdesc Support for the Bengali language relocated 1 longdesc The package is based on Velthuis' transliteration scheme, with longdesc extensions to deal with the Bengali letters that are not in longdesc Devanagari. The package also supports Assamese. +containersize 17072 +containerchecksum 384c07640acd5d4ef2fb661d661f1f3550fd84ed08e5345ec71cd7b3189560cff18c4992a91c13812e5bacd06364e3cc52faf6fd32d01a4fac1b2928490f97b8 +doccontainersize 76020 +doccontainerchecksum cde57bbf0c8eb52b92973f80c7a780d30967fc2dc0624f1626856054bc0005a5f0e318474f145b9abd60a59cdb6e87e8b4a3b03b4b18282db758b5f110b46371 +docfiles size=39 + RELOC/doc/fonts/bengali/README + RELOC/doc/fonts/bengali/bengdoc.bn + RELOC/doc/fonts/bengali/bengdoc.pdf details="Package documentation" + RELOC/doc/fonts/bengali/example.bn + RELOC/doc/fonts/bengali/example.pdf + RELOC/doc/fonts/bengali/manifest.txt +srccontainersize 8944 +srccontainerchecksum f6f8641cd631870077a73c702da0d7718b2a06236da608b3ad6cb81e60530f93328772e97870c3da8d6e3ff9106729db5d3137c56329f6271a9b1810a565c189 +srcfiles size=11 + RELOC/source/latex/bengali/beng.c runfiles size=42 RELOC/fonts/source/public/bengali/bn.mf RELOC/fonts/source/public/bengali/bnbanjon.mf @@ -14918,23 +28670,16 @@ runfiles size=42 RELOC/tex/latex/bengali/beng.sty RELOC/tex/latex/bengali/ubn.fd RELOC/tex/latex/bengali/ubnx.fd -docfiles size=39 - RELOC/doc/fonts/bengali/README - RELOC/doc/fonts/bengali/bengdoc.bn - RELOC/doc/fonts/bengali/bengdoc.pdf - RELOC/doc/fonts/bengali/example.bn - RELOC/doc/fonts/bengali/example.pdf - RELOC/doc/fonts/bengali/manifest.txt -srcfiles size=11 - RELOC/source/latex/bengali/beng.c +catalogue-also arosgn catalogue-ctan /language/bengali/pandey -catalogue-date 2012-05-25 22:30:43 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics indic name bera category Package revision 20031 -shortdesc Bera fonts. +shortdesc Bera fonts relocated 1 longdesc The package contains the Bera Type 1 fonts, and a zip archive longdesc containing files to use the fonts with LaTeX. Bera is a set of @@ -14943,6 +28688,15 @@ longdesc (a Frutiger descendant), and Bera Mono (monospaced/typewriter). longdesc Support for use in LaTeX is also provided. The Bera family is a longdesc repackaging, for use with TeX, of the Bitstream Vera family. execute addMap bera.map +containersize 312612 +containerchecksum 103b2db8f7bccf6a9729faae793246d2933667295ba404fdaa7b61cfbce0f1209ea27e7a2a63846c6550b41214ff496a62598bbb9b731c087b8bba9e0abade80 +doccontainersize 18556 +doccontainerchecksum 2606c87871d6f6ed27b2a5e49117c50f00573bc6b9ce249d1433da214764b220eb00c73e59be43e32e8a4827c397c53504103e00b7e5602de5df5bb817e2145d +docfiles size=10 + RELOC/doc/fonts/bera/LICENSE + RELOC/doc/fonts/bera/README details="Readme" + RELOC/doc/fonts/bera/bera.pdf details="Font samples" + RELOC/doc/fonts/bera/bera.txt runfiles size=249 RELOC/fonts/afm/public/bera/fveb8a.afm RELOC/fonts/afm/public/bera/fver8a.afm @@ -15045,25 +28799,39 @@ runfiles size=249 RELOC/tex/latex/bera/ts1fve.fd RELOC/tex/latex/bera/ts1fvm.fd RELOC/tex/latex/bera/ts1fvs.fd -docfiles size=10 - RELOC/doc/fonts/bera/LICENSE - RELOC/doc/fonts/bera/README - RELOC/doc/fonts/bera/bera.pdf - RELOC/doc/fonts/bera/bera.txt catalogue-ctan /fonts/bera -catalogue-date 2014-07-12 12:25:45 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics font font-serif font-sans font-proportional font-mono font-type1 name berenisadf category Package revision 32215 -shortdesc Berenis ADF fonts and TeX/LaTeX support. +shortdesc Berenis ADF fonts and TeX/LaTeX support relocated 1 longdesc The bundle provides the BerenisADF Pro font collection, in longdesc OpenType and PostScript Type 1 formats, together with support longdesc files to use the fonts in TeXnANSI (LY1) and LaTeX standard T1 longdesc and TS1 encodings. execute addMap ybd.map +containersize 1389668 +containerchecksum 70dd547d0c5138f2a61e20b4585160e5fef281bbba72ba8dcc7032efa957d80c158ba88fdc0dda9982dbcd69a48d5d54286f52d1425a5819e54e05d79eb9dd49 +doccontainersize 364484 +doccontainerchecksum f076717ff948247589225fbe4fcd92114d719526e535d645d767a3f7fdaafd3a6ca84c3a60997074186974ebf045e31a51d16d53c8a5fdc78a2461733cc66372 +docfiles size=118 + RELOC/doc/fonts/berenisadf/COPYING + RELOC/doc/fonts/berenisadf/COPYING.unix + RELOC/doc/fonts/berenisadf/Makefile.source + RELOC/doc/fonts/berenisadf/NOTICE.txt + RELOC/doc/fonts/berenisadf/README.doc + RELOC/doc/fonts/berenisadf/berenisadf.pdf details="Package documentation" + RELOC/doc/fonts/berenisadf/berenisadf.tex + RELOC/doc/fonts/berenisadf/cfr.gwneud.cyhoeddus + RELOC/doc/fonts/berenisadf/ff-ybd.pe + RELOC/doc/fonts/berenisadf/manifest.txt + RELOC/doc/fonts/berenisadf/ybd-8t.lig + RELOC/doc/fonts/berenisadf/ybd-8y.lig + RELOC/doc/fonts/berenisadf/ybd.nam runfiles size=1517 RELOC/fonts/afm/arkandis/berenisadf/ybdb.afm RELOC/fonts/afm/arkandis/berenisadf/ybdbc.afm @@ -15311,39 +29079,77 @@ runfiles size=1517 RELOC/tex/latex/berenisadf/ts1ybd2.fd RELOC/tex/latex/berenisadf/ts1ybd2j.fd RELOC/tex/latex/berenisadf/ts1ybdj.fd -docfiles size=118 - RELOC/doc/fonts/berenisadf/COPYING - RELOC/doc/fonts/berenisadf/COPYING.unix - RELOC/doc/fonts/berenisadf/Makefile.source - RELOC/doc/fonts/berenisadf/NOTICE.txt - RELOC/doc/fonts/berenisadf/README.doc - RELOC/doc/fonts/berenisadf/berenisadf.pdf - RELOC/doc/fonts/berenisadf/berenisadf.tex - RELOC/doc/fonts/berenisadf/cfr.gwneud.cyhoeddus - RELOC/doc/fonts/berenisadf/ff-ybd.pe - RELOC/doc/fonts/berenisadf/manifest.txt - RELOC/doc/fonts/berenisadf/ybd-8t.lig - RELOC/doc/fonts/berenisadf/ybd-8y.lig - RELOC/doc/fonts/berenisadf/ybd.nam catalogue-ctan /fonts/berenisadf -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics font font-serif font-type1 font-otf catalogue-version 1.004 name besjournals category Package -revision 35428 -relocated 1 -runfiles size=11 - RELOC/bibtex/bst/besjournals/besjournals.bst +revision 45662 +catalogue besjournals-bst +shortdesc Bibliographies suitable for British Ecological Society journals +relocated 1 +longdesc The package provides a BibTeX style for use with journals +longdesc published by the British Ecological Society. The style was +longdesc produced independently of the Society, and has no formal +longdesc approval by the BES. +containersize 8920 +containerchecksum e797bce36fa6529d6b57be352ed81b7413c2ca818fa904a8cc4c7c8f0801369543482aa5c286b40f6f7c5e0b73d53b6aa6b9aaeab3e6229da7dd954a3dedb1ca +doccontainersize 8264 +doccontainerchecksum c790eb0ced559adc6696f0f228c88a2314214ff6a4ab71ae03dc46b3974cdaae53fc685c05f0bbb7646a5b31d332f763fce4a71919319aa520965f56979eee54 docfiles size=8 - RELOC/doc/bibtex/besjournals/README + RELOC/doc/bibtex/besjournals/README details="Readme" RELOC/doc/bibtex/besjournals/besjournals.dbj +runfiles size=11 + RELOC/bibtex/bst/besjournals/besjournals.bst +catalogue-ctan /biblio/bibtex/contrib/besjournals +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics bibtex-sty journalpub + +name bestpapers +category Package +revision 38708 +shortdesc A BibTeX package to produce lists of authors' best papers +relocated 1 +longdesc Many people preparing their resumes find the requirement +longdesc "please list five (or six, or ten) papers authored by you". The +longdesc same requirement is often stated for reports prepared by +longdesc professional teams. The creation of such lists may be a +longdesc cumbersome task. Even more difficult is it to support such +longdesc lists over the time, when new papers are added. The BibTeX +longdesc style bestpapers.bst is intended to facilitate this task. It is +longdesc based on the idea that it is easier to score than to sort: We +longdesc can assign a score to a paper and then let the computer select +longdesc the papers with highest scores. This work was commissioned by +longdesc the Consumer Financial Protection Bureau, United States +longdesc Treasury. This package is in the public domain. +containersize 7456 +containerchecksum d015369a268cff98571985f319f95df9ffe0255ad222e8c8133252c3ab5537cfc4c3ea11aab13a565c096e92472d7724c0ef23ce6a71f62c7a5fc2b30382a054 +doccontainersize 176932 +doccontainerchecksum cb5e9bbcc83b6081dd0207001d1b39c6e089e2ae168f20d1cc87482560a483e4ea195fbf208c342ba691d3c85ea9f4674b2eb6cf68db9f9d83d3b98bbab60dc3 +docfiles size=50 + RELOC/doc/bibtex/bestpapers/Makefile + RELOC/doc/bibtex/bestpapers/README details="Readme" + RELOC/doc/bibtex/bestpapers/bestpapers-guide.pdf details="Package documentation" + RELOC/doc/bibtex/bestpapers/bestpapers-guide.tex + RELOC/doc/bibtex/bestpapers/tex.bib + RELOC/doc/bibtex/bestpapers/typography.bib +runfiles size=9 + RELOC/bibtex/bst/bestpapers/bestpapers-export.bst + RELOC/bibtex/bst/bestpapers/bestpapers.bst +catalogue-ctan /biblio/bibtex/contrib/bestpapers +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics bibtex-sty +catalogue-version 1.0 name betababel category Package revision 15878 -shortdesc Insert ancient greek text coded in Beta Code. +shortdesc Insert ancient greek text coded in Beta Code relocated 1 longdesc The betababel package extends the babel polutonikogreek option longdesc to provide a simple way to insert ancient Greek texts with @@ -15351,34 +29157,95 @@ longdesc diacritical characters into your document using the commonly longdesc used Beta Code transliteration. You can directly insert Beta longdesc Code texts -- as they can be found at the Perseus project, for longdesc example -- without modification. -runfiles size=3 - RELOC/tex/latex/betababel/betababel.sty +containersize 3344 +containerchecksum db2a590e8ed5e946652cc54d5c01bd540b87f77253278f9211c8720229992275f80edc26d0c94b4f68237d84a5bf7b56bd93a40e2a0ce8df5ffdeb124c81d219 +doccontainersize 151916 +doccontainerchecksum 209f8fc6123f8403bf6a30731773aeea82c5c6de123e24755e9a22ca6f3ea170015feeb541242a772c3244e7b74f1a766e95886e4f773f21c48b353f22d6adce docfiles size=48 - RELOC/doc/latex/betababel/betatest.pdf + RELOC/doc/latex/betababel/betatest.pdf details="Package documentation" RELOC/doc/latex/betababel/betatest.tex +runfiles size=3 + RELOC/tex/latex/betababel/betababel.sty +catalogue-contact-home http://www.tlg.uci.edu/ catalogue-ctan /macros/latex/contrib/betababel -catalogue-date 2012-04-24 11:13:54 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl +catalogue-topics greek multilingual-addon catalogue-version 0.5 name beton category Package revision 15878 -shortdesc Use Concrete fonts. +shortdesc Use Concrete fonts relocated 1 longdesc Typeset a LaTeX2e document with the Concrete fonts designed by longdesc Don Knuth and used in his book "Concrete Mathematics". -runfiles size=1 - RELOC/tex/latex/beton/beton.sty +containersize 1772 +containerchecksum 23d243f15a79246aa590a7ec65249724a4460ac6e3ac01dba2aeddfc169875dd8392c1374cb8459ff84210d51822430fab9d75a87f0ece20323cd20709de0c14 +doccontainersize 59196 +doccontainerchecksum fa579427c97f930455bc548d5b438f32aa291d98f9d8b391dae686b270e135605cb3ddd6cfb9076cb248a17eabb4e62bcf4f720b2daf829b3d12d6ebc294f832 docfiles size=27 RELOC/doc/latex/beton/beton.pdf RELOC/doc/latex/beton/legal.txt +srccontainersize 5796 +srccontainerchecksum 79e129919c06ef083e4f8fdcd88a60339591b3f95776feb9cc076e46fb379b5ab10f9b48f3b8a948e9a120412f818dd3d99cc24957d3eaa812bbefb388d91049 srcfiles size=5 RELOC/source/latex/beton/beton.dtx RELOC/source/latex/beton/beton.ins +runfiles size=1 + RELOC/tex/latex/beton/beton.sty +catalogue-also euler catalogue-ctan /macros/latex/contrib/beton -catalogue-date 2012-04-24 11:13:54 +0200 -catalogue-license lppl +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font-supp + +name beuron +category Package +revision 46374 +shortdesc The script of the Beuronese art school +relocated 1 +longdesc This package provides the script used in the works of the +longdesc Beuron art school for use with TeX and LaTeX. It is a +longdesc monumental script consisting of capital letters only. The fonts +longdesc are provided as Metafont sources, in the Type1 and in the +longdesc OpenType format. The package includes suitable font selection +longdesc commands for use with LaTeX. +execute addMap beuron.map +containersize 50972 +containerchecksum 623d3b7d8747ce1776de9d0ee6eec013c2050f9cb4a521167bcf23435d5e30c1233ee869ccb299360cfb6f8f4b4034a77d4fe601f789211b290684c0858462a2 +doccontainersize 216700 +doccontainerchecksum 812dd30a9b49d7ab5e529f3c7ef934be5d72b75adeec1a38cba77c867525243ffd0d4f4901c9100e6518eb0a8c35e208157b8e3669d3700203ab7fe95aa29845 +docfiles size=81 + RELOC/doc/fonts/beuron/Literatur.bib + RELOC/doc/fonts/beuron/README details="Readme" + RELOC/doc/fonts/beuron/beuron-de.pdf details="Package documentation (German)" language="de" + RELOC/doc/fonts/beuron/beuron-de.tex + RELOC/doc/fonts/beuron/beuron-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/fonts/beuron/beuron-en.tex +runfiles size=36 + RELOC/fonts/map/dvips/beuron/beuron.map + RELOC/fonts/opentype/public/beuron/Beuron-Regular.otf + RELOC/fonts/opentype/public/beuron/BeuronCondensed-Regular.otf + RELOC/fonts/opentype/public/beuron/BeuronExtended-Regular.otf + RELOC/fonts/source/public/beuron/beuron.mf + RELOC/fonts/source/public/beuron/beuronbuchst.mf + RELOC/fonts/source/public/beuron/beuronc.mf + RELOC/fonts/source/public/beuron/beuronkern.mf + RELOC/fonts/source/public/beuron/beuronx.mf + RELOC/fonts/tfm/public/beuron/beuron.tfm + RELOC/fonts/tfm/public/beuron/beuronc.tfm + RELOC/fonts/tfm/public/beuron/beuronx.tfm + RELOC/fonts/type1/public/beuron/beuron.pfb + RELOC/fonts/type1/public/beuron/beuronc.pfb + RELOC/fonts/type1/public/beuron/beuronx.pfb + RELOC/tex/latex/beuron/beuron.sty + RELOC/tex/latex/beuron/t1beuron.fd +catalogue-ctan /fonts/beuron +catalogue-date 2018-01-18 06:45:20 +0100 +catalogue-license lppl1.3 +catalogue-topics font-decor font-mf font-type1 font-otf +catalogue-version 1.3 name bewerbung category Package @@ -15389,32 +29256,38 @@ longdesc The package provides packages and classes for typesetting longdesc applications with titlepage, letter, cv and additional longdesc documents in just a single document. The data for the longdesc application can be edited in a simple csv file. -runfiles size=18 - RELOC/tex/latex/bewerbung/argetabelle.cls - RELOC/tex/latex/bewerbung/bewerbung-cv-casual.sty - RELOC/tex/latex/bewerbung/bewerbung-cv-classic.sty - RELOC/tex/latex/bewerbung/bewerbung-cv-oldstyle.sty - RELOC/tex/latex/bewerbung/bewerbung-cv.sty - RELOC/tex/latex/bewerbung/bewerbung.cls - RELOC/tex/latex/bewerbung/bewerbung.sty +containersize 9872 +containerchecksum a82ffeb4fc7fa5bc42f06476df0c985d59d70c81b34ab50f10cf2117f8861a09b90ef3f53bee78291842a46fbc15bc40663d65b88c7c682c72b25fc86ccff2bd +doccontainersize 803952 +doccontainerchecksum d9fb4f9da944e132187fce6e987be8eb0ef08cce80ce63e8813c1af8738dad61a93aa7c2e214b3ac0b77c980f8a000251ab9536c8a7557b9c7cdf66ae42fcbcd docfiles size=236 RELOC/doc/latex/bewerbung/Foto.pdf - RELOC/doc/latex/bewerbung/README - RELOC/doc/latex/bewerbung/README_DE + RELOC/doc/latex/bewerbung/README details="Readme" + RELOC/doc/latex/bewerbung/README_DE details="Readme(German)" language="de" RELOC/doc/latex/bewerbung/anschrift.csv RELOC/doc/latex/bewerbung/argetabelle-example.pdf RELOC/doc/latex/bewerbung/argetabelle-example.tex - RELOC/doc/latex/bewerbung/bewerbung-example.pdf + RELOC/doc/latex/bewerbung/bewerbung-example.pdf details="Example of use" RELOC/doc/latex/bewerbung/bewerbung-example.tex - RELOC/doc/latex/bewerbung/bewerbung.pdf + RELOC/doc/latex/bewerbung/bewerbung.pdf details="Package documentation" RELOC/doc/latex/bewerbung/config.inc RELOC/doc/latex/bewerbung/neueBewerbung.sh RELOC/doc/latex/bewerbung/titlepage.inc +srccontainersize 25492 +srccontainerchecksum 260f6f1b5484358c7b558f8b78ca68ec5ac691fa367e634e5fe6f29b06ea9eeee868bce9e10717971d85c5ac23b71d853ed746842ad7674f7e913cf16b9def47 srcfiles size=30 RELOC/source/latex/bewerbung/bewerbung.dtx RELOC/source/latex/bewerbung/bewerbung.ins +runfiles size=18 + RELOC/tex/latex/bewerbung/argetabelle.cls + RELOC/tex/latex/bewerbung/bewerbung-cv-casual.sty + RELOC/tex/latex/bewerbung/bewerbung-cv-classic.sty + RELOC/tex/latex/bewerbung/bewerbung-cv-oldstyle.sty + RELOC/tex/latex/bewerbung/bewerbung-cv.sty + RELOC/tex/latex/bewerbung/bewerbung.cls + RELOC/tex/latex/bewerbung/bewerbung.sty catalogue-ctan /macros/latex/contrib/bewerbung -catalogue-date 2015-07-15 05:44:18 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 catalogue-topics cv class catalogue-version 1.1 @@ -15422,56 +29295,88 @@ catalogue-version 1.1 name bez123 category Package revision 15878 -shortdesc Support for Bezier curves. +shortdesc Support for Bezier curves relocated 1 longdesc Provides additional facilities in a picture environment for longdesc drawing linear, cubic, and rational quadratic Bezier curves longdesc (standard LaTeX only offers non-rational quadratic splines). longdesc Provides a package multiply that provides a command for longdesc multiplication of a length without numerical overflow. -runfiles size=4 - RELOC/tex/latex/bez123/bez123.sty - RELOC/tex/latex/bez123/multiply.sty +containersize 2644 +containerchecksum e70a0889ceab74fcff4994568a97f31ac93165353ac207ee683b28aee2ad3cb8f770d8e3b450e3237537e97312a0995fa8c17196ead0fce55fd76a49c77de72b +doccontainersize 256740 +doccontainerchecksum 91ae5e35394e5bf3a6bbcc6aa7d7180ba546b58e84683c569bc34f5b0f9dcc6ea30153305fd83fe28e3bcd8eccb6179d277d28e1ff56538fc6980a7c3ec8f444 docfiles size=72 - RELOC/doc/latex/bez123/README - RELOC/doc/latex/bez123/bez123.pdf + RELOC/doc/latex/bez123/README details="Readme" + RELOC/doc/latex/bez123/bez123.pdf details="Package documentation" +srccontainersize 14300 +srccontainerchecksum fc329c0c99ecd10c42bdffde10918239874367e7b54a75c4de4882e520ea82e87188070775174a11621dca9bc5949a850207f02af7c08d1b6768ea87fba7e10c srcfiles size=17 RELOC/source/latex/bez123/bez123.dtx RELOC/source/latex/bez123/bez123.ins +runfiles size=4 + RELOC/tex/latex/bez123/bez123.sty + RELOC/tex/latex/bez123/multiply.sty catalogue-ctan /macros/latex/contrib/bez123 -catalogue-date 2012-06-07 15:01:30 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics graphics-in-tex graphics-curve catalogue-version 1.1b +name bezierplot +category Package +revision 48644 +shortdesc Approximate smooth function graphs with cubic bezier splines for use with TikZ or MetaPost +relocated 1 +longdesc This package consists of a Lua program as well as a (Lua)LaTeX +longdesc .sty file. Given a smooth function, bezierplot returns a smooth +longdesc bezier path written in TikZ notation (which also matches +longdesc MetaPost) that approximates the graph of the function. For +longdesc polynomial functions of degree [?] 3 and their inverses the +longdesc approximation is exact (up to numeric precision). bezierplot +longdesc also finds special points such as extreme points and inflection +longdesc points and reduces the number of used points. +containersize 7792 +containerchecksum f67725beb0a1d2368a046be85e481d0c972ebd095f266958f3aab7eb3b17099514f1c04ee8a90b07c33f2693f57782647bebc755343d34b042d39b54cccdbe0d +doccontainersize 255100 +doccontainerchecksum 1eeb6569ed23d323bebb8d88abf6f122863208a85663bbad6813e7a1726bfa062a08cfaa6aebcc7125c9453daf5f6d16c4125ccb244c81a4e87347d36875761f +docfiles size=66 + RELOC/doc/lualatex/bezierplot/README details="Readme" + RELOC/doc/lualatex/bezierplot/bezierplot-doc.pdf details="Package documentation" + RELOC/doc/lualatex/bezierplot/bezierplot-doc.tex +runfiles size=9 + RELOC/tex/lualatex/bezierplot/bezierplot.lua + RELOC/tex/lualatex/bezierplot/bezierplot.sty +catalogue-contact-repository https://github.com/linusromer/bezierplot +catalogue-ctan /macros/luatex/latex/bezierplot +catalogue-date 2018-09-11 17:29:23 +0200 +catalogue-license lppl1.3c +catalogue-topics luatex use-lua graphics-plot graphics-plotfn +catalogue-version 1.3 + name bezos category Package -revision 25507 -shortdesc Packages by Javier Bezos. +revision 49850 +shortdesc Packages by Javier Bezos relocated 1 longdesc A set of packages that provide: tools for maths accents; a tool longdesc that changes page-numbering in frontmatter to arabic; tools for -longdesc dealing with some annoyances in babel; a tool for making end- -longdesc environment checking more meaningful; tensorial indexes; +longdesc dealing with some annoyances in babel; a tool for making +longdesc end-environment checking more meaningful; tensorial indexes; longdesc support for multi-file documents; tools for easy entry of longdesc Spanish index entries; dotless i's and j's for maths fonts; and longdesc fancy underlining. -runfiles size=16 - RELOC/tex/latex/bezos/accents.sty - RELOC/tex/latex/bezos/arabicfront.sty - RELOC/tex/latex/bezos/babeltools.sty - RELOC/tex/latex/bezos/checkend.sty - RELOC/tex/latex/bezos/dotlessi.sty - RELOC/tex/latex/bezos/esindex.sty - RELOC/tex/latex/bezos/soulpos.sty - RELOC/tex/latex/bezos/subdocs.sty - RELOC/tex/latex/bezos/tensind.sty -docfiles size=266 - RELOC/doc/latex/bezos/README +containersize 12688 +containerchecksum d01fc0077ca852abbff7f662b024e9251ca726da320c36e5eccfb4d799742c9be02b9412281bd326440805692a4a002c4ac393f3d2cb139eb21c7b8e59300d57 +doccontainersize 1040380 +doccontainerchecksum f8ca7ee42992ec313f00d5c3cc430d9f288ff1297c1086a7d68eab6c693a6c8cf7c994d4148eec329e4999ae980e8079162483dde83048c60fbae58826ea290d +docfiles size=275 + RELOC/doc/latex/bezos/README details="Bundle Readme" RELOC/doc/latex/bezos/accents.pdf RELOC/doc/latex/bezos/accents.tex RELOC/doc/latex/bezos/babeltools.pdf RELOC/doc/latex/bezos/babeltools.tex - RELOC/doc/latex/bezos/bezos.pdf + RELOC/doc/latex/bezos/bezos.pdf details="Bundle outline" RELOC/doc/latex/bezos/bezos.tex RELOC/doc/latex/bezos/esindex.pdf RELOC/doc/latex/bezos/esindex.tex @@ -15479,20 +29384,45 @@ docfiles size=266 RELOC/doc/latex/bezos/soulpos.tex RELOC/doc/latex/bezos/tensind.pdf RELOC/doc/latex/bezos/tensind.tex +runfiles size=17 + RELOC/tex/latex/bezos/accents.sty + RELOC/tex/latex/bezos/arabicfront.sty + RELOC/tex/latex/bezos/babeltools.sty + RELOC/tex/latex/bezos/checkend.sty + RELOC/tex/latex/bezos/dotlessi.sty + RELOC/tex/latex/bezos/esindex.sty + RELOC/tex/latex/bezos/soulpos.sty + RELOC/tex/latex/bezos/subdocs.sty + RELOC/tex/latex/bezos/tensind.sty +catalogue-contact-home http://www.texnia.com/ +catalogue-contact-repository https://github.com/jbezos catalogue-ctan /macros/latex/contrib/bezos -catalogue-date 2014-10-16 09:35:03 +0200 -catalogue-license lppl +catalogue-date 2019-01-28 20:10:48 +0100 +catalogue-license mit +catalogue-topics collection name bgreek category Package revision 15878 -shortdesc Using Beccari's fonts in betacode for classical Greek. +shortdesc Using Beccari's fonts in betacode for classical Greek relocated 1 longdesc This package implements a dialect of the Beta Code encoding longdesc (TLG and Perseus Projects) for typesetting classical Greek longdesc using Claudio Beccari's Greek Fonts. The package provides longdesc virtual fonts, to reference Beccari's fonts in bgreek mode, and longdesc support macros for use with LaTeX. +containersize 40876 +containerchecksum 64a0a2a8e19d7fbc2953b8f1e9fee90d0367e5f943cbf146489e930d6a946f9977c32b5ea3fcb334c2c297050b36292f813e073e35866a167ddddb72f123a2d6 +doccontainersize 207580 +doccontainerchecksum b5af046a386422400434b1c5ef441cf1c2ddc29f5d4b089aab0ece392e7ea81d9ba224145d612d721d13f05eab3e4b0f2cd6283f95e096d831e6e68074d6fbf6 +docfiles size=83 + RELOC/doc/latex/bgreek/MANIFEST.TXT + RELOC/doc/latex/bgreek/README details="Readme" + RELOC/doc/latex/bgreek/bgman.pdf details="Package documentation" + RELOC/doc/latex/bgreek/bgman.tex + RELOC/doc/latex/bgreek/bgreek.etx + RELOC/doc/latex/bgreek/cbgreek.etx + RELOC/doc/latex/bgreek/qbgreek.etx runfiles size=396 RELOC/fonts/tfm/public/bgreek/bgmc0500.tfm RELOC/fonts/tfm/public/bgreek/bgmc0600.tfm @@ -15792,23 +29722,16 @@ runfiles size=396 RELOC/tex/latex/bgreek/bgreek.ldf RELOC/tex/latex/bgreek/bgreek.sty RELOC/tex/latex/bgreek/ibygreek.ldf -docfiles size=83 - RELOC/doc/latex/bgreek/MANIFEST.TXT - RELOC/doc/latex/bgreek/README - RELOC/doc/latex/bgreek/bgman.pdf - RELOC/doc/latex/bgreek/bgman.tex - RELOC/doc/latex/bgreek/bgreek.etx - RELOC/doc/latex/bgreek/cbgreek.etx - RELOC/doc/latex/bgreek/qbgreek.etx catalogue-ctan /language/greek/bgreek -catalogue-date 2014-05-28 23:45:53 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics greek font font-virtual catalogue-version 0.3 name bgteubner category Package -revision 25892 -shortdesc Class for producing books for the publisher "Teubner Verlag". +revision 44205 +shortdesc Class for producing books for the publisher "Teubner Verlag" relocated 1 longdesc The bgteubner document class has been programmed by order of longdesc the Teubner Verlag, Wiesbaden, Germany, to ensure that books of @@ -15821,28 +29744,19 @@ longdesc publishing with the Teubner Verlag, this may arrise unwanted longdesc restrictions (For instance, the document class provides only longdesc two paper sizes: DIN A-5 and 17cm x 24cm; only two font longdesc families are supported: Times and European Computer Modern). -runfiles size=69 - RELOC/bibtex/bst/bgteubner/bgteuabbr.bst - RELOC/bibtex/bst/bgteubner/bgteuabbr2.bst - RELOC/bibtex/bst/bgteubner/bgteupln.bst - RELOC/bibtex/bst/bgteubner/bgteupln2.bst - RELOC/bibtex/bst/bgteubner/bgteupln3.bst - RELOC/makeindex/bgteubner/bgteubner.ist - RELOC/makeindex/bgteubner/bgteuglo.ist - RELOC/makeindex/bgteubner/bgteuglochar.ist - RELOC/tex/latex/bgteubner/bgteubner.cls - RELOC/tex/latex/bgteubner/hhfixme.sty - RELOC/tex/latex/bgteubner/hhsubfigure.sty - RELOC/tex/latex/bgteubner/ptmxcomp.sty -docfiles size=533 +containersize 28968 +containerchecksum 0bf19f7ecb12194c2d112ab15226aaaed3737f99cb2841ab9c755e78e3fe92d43f8c1e3abca566426f1c16bb4a200790d77397129da594239aa9d2f9a6ff0a0a +doccontainersize 2484192 +doccontainerchecksum a4277960129fff04ba3ef6e24463866ae75ae0b690d8e95f618a7c95a442dd02e84d16793a4f5ac12a945ef3b4bc7af05fdc27e551c0e8c92c141081d6a71cd3 +docfiles size=821 RELOC/doc/latex/bgteubner/01b.png RELOC/doc/latex/bgteubner/02b.png RELOC/doc/latex/bgteubner/ChangeLog - RELOC/doc/latex/bgteubner/LIESMICH + RELOC/doc/latex/bgteubner/LIESMICH details="Readme" language="de" RELOC/doc/latex/bgteubner/Makefile.hhsubfigure RELOC/doc/latex/bgteubner/Makefile.source RELOC/doc/latex/bgteubner/Makefile.src - RELOC/doc/latex/bgteubner/README + RELOC/doc/latex/bgteubner/README details="Readme" RELOC/doc/latex/bgteubner/README.hhsubfigure RELOC/doc/latex/bgteubner/ToDo RELOC/doc/latex/bgteubner/anhang.tex @@ -15852,11 +29766,13 @@ docfiles size=533 RELOC/doc/latex/bgteubner/bgteubner-17x24-mathtime.tex RELOC/doc/latex/bgteubner/bgteubner-17x24-times.tex RELOC/doc/latex/bgteubner/bgteubner-a5-cm.tex + RELOC/doc/latex/bgteubner/bgteubner-a5-mathtime.tex RELOC/doc/latex/bgteubner/bgteubner-a5-times.tex + RELOC/doc/latex/bgteubner/bgteubner-cm.pdf RELOC/doc/latex/bgteubner/bgteubner-with-hyperref.tex - RELOC/doc/latex/bgteubner/bgteubner.pdf + RELOC/doc/latex/bgteubner/bgteubner.pdf details="Class documentation" language="de" RELOC/doc/latex/bgteubner/bgteubner.tex - RELOC/doc/latex/bgteubner/bgteucls.pdf + RELOC/doc/latex/bgteubner/bgteucls.pdf details="Commented source" language="de" RELOC/doc/latex/bgteubner/bgteuversion.tex RELOC/doc/latex/bgteubner/bild4c.png RELOC/doc/latex/bgteubner/bild_ganz.eps @@ -15896,20 +29812,14 @@ docfiles size=533 RELOC/doc/latex/bgteubner/kapitel2.tex RELOC/doc/latex/bgteubner/literatur.bib RELOC/doc/latex/bgteubner/literatur.tex - RELOC/doc/latex/bgteubner/ltxdoc.cfg RELOC/doc/latex/bgteubner/manifest.txt - RELOC/doc/latex/bgteubner/math-cm.info RELOC/doc/latex/bgteubner/math-cm.pdf RELOC/doc/latex/bgteubner/math-cm.tex - RELOC/doc/latex/bgteubner/math-mathtime.info RELOC/doc/latex/bgteubner/math-mathtime.pdf RELOC/doc/latex/bgteubner/math-mathtime.tex - RELOC/doc/latex/bgteubner/math.info RELOC/doc/latex/bgteubner/math.pdf RELOC/doc/latex/bgteubner/math.tex RELOC/doc/latex/bgteubner/optionen-advanced.tex - RELOC/doc/latex/bgteubner/testquick.exercise - RELOC/doc/latex/bgteubner/testquick.info RELOC/doc/latex/bgteubner/testquick.tex RELOC/doc/latex/bgteubner/testtimes.tex RELOC/doc/latex/bgteubner/tex_aufruf.tex @@ -15936,20 +29846,37 @@ docfiles size=533 RELOC/doc/latex/bgteubner/usefiles.txt RELOC/doc/latex/bgteubner/verzeichnisse.tex RELOC/doc/latex/bgteubner/vorwort.tex -srcfiles size=92 +srccontainersize 74256 +srccontainerchecksum 5d20396e63bdedcf2b94222b8e060c498539f92bd99c9b78fc0e0fa44eb95734dfcad7c16e503f33dbfa8032f49d7a6c1020a8a940077bba36ff73f5ecd45ef3 +srcfiles size=94 RELOC/source/latex/bgteubner/bgteucls.dtx RELOC/source/latex/bgteubner/bgteucls.ins RELOC/source/latex/bgteubner/hhsubfigure.dtx RELOC/source/latex/bgteubner/hhsubfigure.ins + RELOC/source/latex/bgteubner/ltxdoc.cfg +runfiles size=70 + RELOC/bibtex/bst/bgteubner/bgteuabbr.bst + RELOC/bibtex/bst/bgteubner/bgteuabbr2.bst + RELOC/bibtex/bst/bgteubner/bgteupln.bst + RELOC/bibtex/bst/bgteubner/bgteupln2.bst + RELOC/bibtex/bst/bgteubner/bgteupln3.bst + RELOC/makeindex/bgteubner/bgteubner.ist + RELOC/makeindex/bgteubner/bgteuglo.ist + RELOC/makeindex/bgteubner/bgteuglochar.ist + RELOC/tex/latex/bgteubner/bgteubner.cls + RELOC/tex/latex/bgteubner/hhfixme.sty + RELOC/tex/latex/bgteubner/hhsubfigure.sty + RELOC/tex/latex/bgteubner/ptmxcomp.sty catalogue-ctan /macros/latex/contrib/bgteubner -catalogue-date 2013-10-30 13:49:16 +0100 +catalogue-date 2017-05-05 00:16:32 +0200 catalogue-license lppl -catalogue-version 2.02 +catalogue-topics class book-pub publisher +catalogue-version 2.11 name bguq category Package revision 27401 -shortdesc Improved quantifier stroke for Begriffsschrift packages. +shortdesc Improved quantifier stroke for Begriffsschrift packages relocated 1 longdesc The font contains a single character: the Begriffsschrift longdesc quantifier (in several sizes), as used to set the @@ -15959,6 +29886,20 @@ longdesc used by other packages which implement the Begriffsschrift. An longdesc (unofficial) modified version of Josh Parsons' begriff is longdesc included as an example of implementation. execute addMap bguq.map +containersize 14868 +containerchecksum 8a795ba517941a07ec1445a16947ce5028cfd61ba2b5c818bc894ffa73d439162271d6269c67c8ee7afd6d13551d4a9bf73763c00b719bf3a9019a8e7d368256 +doccontainersize 118616 +doccontainerchecksum 1bfe38f2d904af63a5a0fd2ab4accd04fbd294083cc462f7d53f79819f40dccf1c3c729ad591d15327eb120bce847ae62c2bc9b9554ea278c1974e3b37296dc5 +docfiles size=32 + RELOC/doc/fonts/bguq/INSTALL.txt + RELOC/doc/fonts/bguq/Makefile + RELOC/doc/fonts/bguq/README details="Readme" + RELOC/doc/fonts/bguq/bguq-doc.pdf details="Package documentation" +srccontainersize 2968 +srccontainerchecksum 108ecf4268a4491904d46f5aebdace10f8aab84a4333fddf94788b677088a584da284fd763a8f0ab19cbc335a3a143489a49836ba059971483faeaf40ecbb0de +srcfiles size=3 + RELOC/source/fonts/bguq/bguq.dtx + RELOC/source/fonts/bguq/bguq.ins runfiles size=43 RELOC/fonts/map/dvips/bguq/bguq.map RELOC/fonts/source/public/bguq/bguq.mf @@ -16002,128 +29943,713 @@ runfiles size=43 RELOC/tex/latex/bguq/begriff-bguq.sty RELOC/tex/latex/bguq/bguq.cfg RELOC/tex/latex/bguq/bguq.sty -docfiles size=32 - RELOC/doc/fonts/bguq/INSTALL.txt - RELOC/doc/fonts/bguq/Makefile - RELOC/doc/fonts/bguq/README - RELOC/doc/fonts/bguq/bguq-doc.pdf -srcfiles size=3 - RELOC/source/fonts/bguq/bguq.dtx - RELOC/source/fonts/bguq/bguq.ins +catalogue-also begriff frege grundgesetze catalogue-ctan /fonts/bguq -catalogue-date 2014-04-07 13:51:00 +0200 +catalogue-date 2017-10-29 14:21:00 +0100 catalogue-license lppl +catalogue-topics font font-mf font-specialist font-maths logic catalogue-version 0.4 name bhcexam category Package -revision 34360 -shortdesc An exam class designed for Mathematics Teachers in China. +revision 39041 +shortdesc An exam class designed for Mathematics Teachers in China relocated 1 longdesc The class based on the exam class, and is specially designed longdesc for High School Mathematics Teachers in China. -runfiles size=4 - RELOC/tex/latex/bhcexam/BHCexam.cfg - RELOC/tex/latex/bhcexam/BHCexam.cls -docfiles size=1 - RELOC/doc/latex/bhcexam/README +containersize 3832 +containerchecksum 83841b8ee51766a9fd7acaef2f2c2662a969e5e6460a54db66e1b70138041eb799eda2e4881b0a2102a00019464a26253ca7d36d7858d2d56684f104bc570be3 +doccontainersize 3436 +doccontainerchecksum 167f5a65edce24e367d6cfb7ebea877b13b1d9cb6f406689c9bdcf364aca0ed04d86c0c1cd3694986dab2ac10230818cbf58f8039568c3e5d9b6b4b98bb93ec6 +docfiles size=10 + RELOC/doc/latex/bhcexam/Makefile + RELOC/doc/latex/bhcexam/README details="Readme" + RELOC/doc/latex/bhcexam/test1.tex + RELOC/doc/latex/bhcexam/test2.tex + RELOC/doc/latex/bhcexam/test3.tex + RELOC/doc/latex/bhcexam/test4.tex +srccontainersize 8508 +srccontainerchecksum ff1583e92e3cc10efe9baaacb523e87ca1884db4203eac09d23c246c1dfa01c5f828d595d03f88241ba4bf80b9cd7b5c62ebffc43e497bebd04144f80d5aefed srcfiles size=7 RELOC/source/latex/bhcexam/BHCexam.dtx RELOC/source/latex/bhcexam/BHCexam.ins +runfiles size=4 + RELOC/tex/latex/bhcexam/BHCexam.cfg + RELOC/tex/latex/bhcexam/BHCexam.cls +catalogue-also exam catalogue-ctan /macros/latex/contrib/bhcexam -catalogue-date 2014-06-23 06:40:38 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl -catalogue-version 0.3 +catalogue-topics exam +catalogue-version 0.4 -name bibarts +name bib-fr category Package revision 15878 -shortdesc "Arts"-style bibliographical information. +shortdesc French translation of classical BibTeX styles relocated 1 -longdesc The bibarts package assists in making bibliographical lists in -longdesc the way that is common in the arts; it requires an auxiliary -longdesc program, for which source and a DOS executable are provided. -longdesc (Documentation is in German, though bibarts.sty does contain a -longdesc brief introduction in English, as a comment.) -runfiles size=7 - RELOC/makeindex/bibarts/gbibarts.ist - RELOC/tex/latex/bibarts/bibarts.sty -docfiles size=101 - RELOC/doc/latex/bibarts/bibarts.pdf +longdesc These files are French translations of the classical BibTeX +longdesc style files. The translations can easily be modified by simply +longdesc redefining FUNCTIONs named fr.*, at the beginning (lines +longdesc 50-150) of each file. +containersize 13440 +containerchecksum 24e5ada94266ba8786470453bf8a076891e9b7efac1ff64fcb559bfe2c95875d3120634f94f464c9e40da0f45b18a78af1bc428106b31e85851a2998b58f0834 +doccontainersize 952 +doccontainerchecksum a19ffa9b3ce51d372a7467bdf7e360ac4a0faf45fc2205eadfaff16fb640ffb0cccac7fd0849a74955dcf612e353f0e25f94c0af9e3b5bf617f067606c1da120 +docfiles size=2 + RELOC/doc/bibtex/bib-fr/CHANGELOG + RELOC/doc/bibtex/bib-fr/README details="Readme" +runfiles size=66 + RELOC/bibtex/bst/bib-fr/abbrv-fr.bst + RELOC/bibtex/bst/bib-fr/abbrvnat-fr.bst + RELOC/bibtex/bst/bib-fr/alpha-fr.bst + RELOC/bibtex/bst/bib-fr/apalike-fr.bst + RELOC/bibtex/bst/bib-fr/ieeetr-fr.bst + RELOC/bibtex/bst/bib-fr/plain-fr.bst + RELOC/bibtex/bst/bib-fr/plainnat-fr.bst + RELOC/bibtex/bst/bib-fr/siam-fr.bst + RELOC/bibtex/bst/bib-fr/unsrt-fr.bst + RELOC/bibtex/bst/bib-fr/unsrtnat-fr.bst +catalogue-also babelbib +catalogue-ctan /biblio/bibtex/contrib/bib-fr +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics bibtex-sty french +catalogue-version 1.5 + +name bib2gls +category Package +revision 51008 +shortdesc Command line application to convert .bib files to glossaries-extra.sty resource files +longdesc This Java command line application may be used to extract +longdesc glossary information stored in a .bib file and convert it into +longdesc glossary entry definition commands. This application should be +longdesc used with glossaries-extra.sty's 'record' package option. It +longdesc performs two functions in one: selects entries according to +longdesc records found in the .aux file (similar to bibtex), +longdesc hierarchically sorts entries and collates location lists +longdesc (similar to makeindex or xindy). The glossary entries can then +longdesc be managed in a system such as JabRef, and only the entries +longdesc that are actually required will be defined, reducing the +longdesc resources required by TeX. The supplementary application +longdesc convertgls2bib can be used to convert existing .tex files +longdesc containing definitions (\newglossaryentry etc.) to the .bib +longdesc format required by bib2gls. +depend bib2gls.ARCH +containersize 1136984 +containerchecksum d96ac64723c13e4d17780ddddcf526840796cc329358cc1672ad12aed53d64fb09a828d5c0501e398fed365193784ddcc74bb944df8a924385e63a1bdca938da +doccontainersize 4959228 +doccontainerchecksum 892a57451f2a9f0083388a22951f04ff2610c2754e66d2e9f1e48470023e4d5e2c3c74c51dccb8a32ba80bf3398be7707a7de74102d63737d94dfe11dc0f1306 +docfiles size=1733 + texmf-dist/doc/support/bib2gls/CHANGES + texmf-dist/doc/support/bib2gls/README.md details="Readme" + texmf-dist/doc/support/bib2gls/bib2gls-begin.pdf details="Introductory Guide" + texmf-dist/doc/support/bib2gls/bib2gls.1 + texmf-dist/doc/support/bib2gls/bib2gls.pdf details="Package documentation" + texmf-dist/doc/support/bib2gls/convertgls2bib.1 + texmf-dist/doc/support/bib2gls/examples/animals.bib + texmf-dist/doc/support/bib2gls/examples/bacteria.bib + texmf-dist/doc/support/bib2gls/examples/baseunits.bib + texmf-dist/doc/support/bib2gls/examples/bigmathsymbols.bib + texmf-dist/doc/support/bib2gls/examples/binaryoperators.bib + texmf-dist/doc/support/bib2gls/examples/books.bib + texmf-dist/doc/support/bib2gls/examples/chemicalformula.bib + texmf-dist/doc/support/bib2gls/examples/citations.bib + texmf-dist/doc/support/bib2gls/examples/constants.bib + texmf-dist/doc/support/bib2gls/examples/derivedunits.bib + texmf-dist/doc/support/bib2gls/examples/films.bib + texmf-dist/doc/support/bib2gls/examples/interpret-preamble.bib + texmf-dist/doc/support/bib2gls/examples/interpret-preamble2.bib + texmf-dist/doc/support/bib2gls/examples/markuplanguages.bib + texmf-dist/doc/support/bib2gls/examples/mathgreek.bib + texmf-dist/doc/support/bib2gls/examples/mathsobjects.bib + texmf-dist/doc/support/bib2gls/examples/mathsrelations.bib + texmf-dist/doc/support/bib2gls/examples/minerals.bib + texmf-dist/doc/support/bib2gls/examples/miscsymbols.bib + texmf-dist/doc/support/bib2gls/examples/no-interpret-preamble.bib + texmf-dist/doc/support/bib2gls/examples/people.bib + texmf-dist/doc/support/bib2gls/examples/sample-authors.pdf + texmf-dist/doc/support/bib2gls/examples/sample-authors.tex + texmf-dist/doc/support/bib2gls/examples/sample-bacteria.pdf + texmf-dist/doc/support/bib2gls/examples/sample-bacteria.tex + texmf-dist/doc/support/bib2gls/examples/sample-chemical.pdf + texmf-dist/doc/support/bib2gls/examples/sample-chemical.tex + texmf-dist/doc/support/bib2gls/examples/sample-citations.pdf + texmf-dist/doc/support/bib2gls/examples/sample-citations.tex + texmf-dist/doc/support/bib2gls/examples/sample-constants.pdf + texmf-dist/doc/support/bib2gls/examples/sample-constants.tex + texmf-dist/doc/support/bib2gls/examples/sample-markuplanguages.pdf + texmf-dist/doc/support/bib2gls/examples/sample-markuplanguages.tex + texmf-dist/doc/support/bib2gls/examples/sample-maths.pdf + texmf-dist/doc/support/bib2gls/examples/sample-maths.tex + texmf-dist/doc/support/bib2gls/examples/sample-media.pdf + texmf-dist/doc/support/bib2gls/examples/sample-media.tex + texmf-dist/doc/support/bib2gls/examples/sample-msymbols.pdf + texmf-dist/doc/support/bib2gls/examples/sample-msymbols.tex + texmf-dist/doc/support/bib2gls/examples/sample-multi1.pdf + texmf-dist/doc/support/bib2gls/examples/sample-multi1.tex + texmf-dist/doc/support/bib2gls/examples/sample-multi2.pdf + texmf-dist/doc/support/bib2gls/examples/sample-multi2.tex + texmf-dist/doc/support/bib2gls/examples/sample-people.pdf + texmf-dist/doc/support/bib2gls/examples/sample-people.tex + texmf-dist/doc/support/bib2gls/examples/sample-textsymbols.pdf + texmf-dist/doc/support/bib2gls/examples/sample-textsymbols.tex + texmf-dist/doc/support/bib2gls/examples/sample-textsymbols2.pdf + texmf-dist/doc/support/bib2gls/examples/sample-textsymbols2.tex + texmf-dist/doc/support/bib2gls/examples/sample-units1.pdf + texmf-dist/doc/support/bib2gls/examples/sample-units1.tex + texmf-dist/doc/support/bib2gls/examples/sample-units2.pdf + texmf-dist/doc/support/bib2gls/examples/sample-units2.tex + texmf-dist/doc/support/bib2gls/examples/sample-units3.pdf + texmf-dist/doc/support/bib2gls/examples/sample-units3.tex + texmf-dist/doc/support/bib2gls/examples/sample-usergroups.pdf + texmf-dist/doc/support/bib2gls/examples/sample-usergroups.tex + texmf-dist/doc/support/bib2gls/examples/terms.bib + texmf-dist/doc/support/bib2gls/examples/topics.bib + texmf-dist/doc/support/bib2gls/examples/unaryoperators.bib + texmf-dist/doc/support/bib2gls/examples/usergroups.bib + texmf-dist/doc/support/bib2gls/examples/vegetables.bib +srccontainersize 1143552 +srccontainerchecksum ebd165839e3312d13240818185a0ee9234b49d0d7ecec1714536086a9a68e8f5e92e9f35c21ca4fe633af9bae79f6f1360a349a3ec85a27e190888aa1657f631 +srcfiles size=663 + texmf-dist/source/support/bib2gls/src/bib2gls-begin.tex + texmf-dist/source/support/bib2gls/src/bib2gls-cite.bib + texmf-dist/source/support/bib2gls/src/bib2gls-src.zip + texmf-dist/source/support/bib2gls/src/bib2gls.bib + texmf-dist/source/support/bib2gls/src/bib2gls.pod + texmf-dist/source/support/bib2gls/src/bib2gls.tex + texmf-dist/source/support/bib2gls/src/convertgls2bib.pod + texmf-dist/source/support/bib2gls/src/gls2bib-src.zip + texmf-dist/source/support/bib2gls/src/texparser-src.zip +runfiles size=320 + texmf-dist/scripts/bib2gls/bib2gls.jar + texmf-dist/scripts/bib2gls/bib2gls.sh + texmf-dist/scripts/bib2gls/convertgls2bib.jar + texmf-dist/scripts/bib2gls/convertgls2bib.sh + texmf-dist/scripts/bib2gls/resources/bib2gls-en.xml + texmf-dist/scripts/bib2gls/texparserlib.jar +catalogue-contact-home https://www.dickimaw-books.com/software/bib2gls/ +catalogue-contact-repository https://github.com/nlct/bib2gls +catalogue-ctan /support/bib2gls +catalogue-date 2019-04-09 23:05:37 +0200 +catalogue-license gpl3+ +catalogue-topics bibtex-util glossary +catalogue-version 1.9 + +name bib2gls.aarch64-linux +category Package +revision 46228 +shortdesc aarch64-linux files of bib2gls +containersize 376 +containerchecksum e2a10fac0890421063f7080c519f3c35912cc4a49bc1ad4194f7925f374bfcce04baaf64c5c42979aa22831c51767f121768e4d94c43e7097e70db26a3d2c1d9 +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/bib2gls + bin/aarch64-linux/convertgls2bib + +name bib2gls.amd64-freebsd +category Package +revision 45266 +shortdesc amd64-freebsd files of bib2gls +containersize 376 +containerchecksum 39e033a18e9fa460615aabbbe49688f554b3d68b5123cf12379b4fd53f414de24f44b6d2c48d3519ebdb81f38b1d23c5bcc3712c417007cfb57e8a14e5b1aec0 +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/bib2gls + bin/amd64-freebsd/convertgls2bib + +name bib2gls.amd64-netbsd +category Package +revision 45266 +shortdesc amd64-netbsd files of bib2gls +containersize 372 +containerchecksum 0174b56f81b1b7763c5219b5e64cf6a81ef32b93b4978e7dc0ea6a27513528750ad06c1785977eeebda586ca44e0a7e76fd3ff22d593ebd9df3f877357111eb8 +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/bib2gls + bin/amd64-netbsd/convertgls2bib + +name bib2gls.armhf-linux +category Package +revision 45266 +shortdesc armhf-linux files of bib2gls +containersize 372 +containerchecksum 17a0604c24f57bd0a3ffc4d0c2d42f6190f70b1e22c5ed97e52933129af09757e6527a2bf1a0af84447a45b9c0044953a3e6abe898089a4d222b87503a11ef16 +binfiles arch=armhf-linux size=2 + bin/armhf-linux/bib2gls + bin/armhf-linux/convertgls2bib + +name bib2gls.i386-cygwin +category Package +revision 45266 +shortdesc i386-cygwin files of bib2gls +containersize 372 +containerchecksum d9a39f8e3c90e194595e98ea9ad055e52520ca4c81a3d2eb27ec336c18e9c3e5ab6e419659514754267fff72bbc4c7aca06aef3c72f7f5b84758d73fbe9e457d +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/bib2gls + bin/i386-cygwin/convertgls2bib + +name bib2gls.i386-freebsd +category Package +revision 45266 +shortdesc i386-freebsd files of bib2gls +containersize 372 +containerchecksum b3890b2b445062884c40fd337b2881d8e8d62efe0020842a4a97952eb417640408337fbb53275ad94d1a96cdcebdee4e5557fb03032cc5d230014ef26b445fbd +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/bib2gls + bin/i386-freebsd/convertgls2bib + +name bib2gls.i386-linux +category Package +revision 45266 +shortdesc i386-linux files of bib2gls +containersize 372 +containerchecksum cf7f103c477300add8d72d9d4ed71355415c4e7a6ba8e1232e6d05bc4cc559090db06fea428f46cafe6080590647fc98f78abccee9275d49d0b279af71af2338 +binfiles arch=i386-linux size=2 + bin/i386-linux/bib2gls + bin/i386-linux/convertgls2bib + +name bib2gls.i386-netbsd +category Package +revision 45266 +shortdesc i386-netbsd files of bib2gls +containersize 372 +containerchecksum 1faf4ccaa077ea0567d57ac1e64a36aa5230f91c81abd8490d67565035c9929cd91b0b67945e7107291605b3e93a0c0fbe94a9c1879067b69f6344a9044e32fe +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/bib2gls + bin/i386-netbsd/convertgls2bib + +name bib2gls.i386-solaris +category Package +revision 45266 +shortdesc i386-solaris files of bib2gls +containersize 372 +containerchecksum 7c4f2237b2a73107ff854e0ff62428cb83586dc9eab503ed679f31f54b314bc0a89025b272f698ccea0f4bca52ce637a979f2bd54e6ddb123dd3272b2f092937 +binfiles arch=i386-solaris size=2 + bin/i386-solaris/bib2gls + bin/i386-solaris/convertgls2bib + +name bib2gls.win32 +category Package +revision 45266 +shortdesc win32 files of bib2gls +containersize 712 +containerchecksum 572e79de961689c7e8b4adf77d11c9e7a165a3d001a8a01863e81e4985701dbdde6ebb08bf554b529f9b32fc6778f0e8ac019797241e2860949aaa2cbfaa4c51 +binfiles arch=win32 size=2 + bin/win32/bib2gls.exe + bin/win32/convertgls2bib.exe + +name bib2gls.x86_64-cygwin +category Package +revision 45266 +shortdesc x86_64-cygwin files of bib2gls +containersize 376 +containerchecksum e0bdb841bbd561a7af1ccb335194f411877715e96ded2a3d944ab3496125afcd161d0a714e57b781e9a6f407805aac614bf81c66272c4d4947f178145c7fe6a2 +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/bib2gls + bin/x86_64-cygwin/convertgls2bib + +name bib2gls.x86_64-darwin +category Package +revision 45266 +shortdesc x86_64-darwin files of bib2gls +containersize 372 +containerchecksum ab394eacc6e35aa6439fba5bbcb15bf5128ae752efe3bb54ff2809305e52b70e837d0d8414ec3f0d1f8d7b0927bf2fd0527ba987fa17f8a0792af2f7dca5c1d1 +binfiles arch=x86_64-darwin size=2 + bin/x86_64-darwin/bib2gls + bin/x86_64-darwin/convertgls2bib + +name bib2gls.x86_64-darwinlegacy +category Package +revision 45266 +shortdesc x86_64-darwinlegacy files of bib2gls +containersize 384 +containerchecksum aa7d5aa4458ef5445532992c9060337b7e19bad82501a996b46a95438bc119124d64edbe7002985ef9dbb9a89f8961e46769f1aa8ceadc0c835077c89870ce07 +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/bib2gls + bin/x86_64-darwinlegacy/convertgls2bib + +name bib2gls.x86_64-linux +category Package +revision 45266 +shortdesc x86_64-linux files of bib2gls +containersize 372 +containerchecksum 8c979dbb4303241cb6d4877eaeb1158a75c4af77cb85d35812f66329c3d521a71c3bef97cc5a9e2e979a7c27d3a3d95f2015ac9058c717a542fed4478588464d +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/bib2gls + bin/x86_64-linux/convertgls2bib + +name bib2gls.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of bib2gls +containersize 380 +containerchecksum 2399519e1cde732a379f77fc1a31ae39a195eb011c4fde53818385575662ac4aa174a6eb0c744ff79e7c69abf5b17917f5eaef56ac306fadd23c568dac532977 +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/bib2gls + bin/x86_64-linuxmusl/convertgls2bib + +name bib2gls.x86_64-solaris +category Package +revision 45266 +shortdesc x86_64-solaris files of bib2gls +containersize 376 +containerchecksum 5cece3c2e29d3338c867055710d57e5ffb83f6d7db5c67215fe7a988c628698595b9aea6652bc6b009a5584455b7f152275895223941190c8a290faf6eb78e82 +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/bib2gls + bin/x86_64-solaris/convertgls2bib + +name bibarts +category Package +revision 50226 +shortdesc "Arts"-style bibliographical information +relocated 1 +longdesc BibArts is a LaTeX package to assist in making bibliographical +longdesc features common in the arts, and the humanities (history, +longdesc political science, philosophy, etc.). bibarts.sty provides +longdesc commands for quotation, abbreviations, and especially for a +longdesc formatted citation of literature, journals (periodicals), +longdesc edited sources, and archive sources. In difference to its +longdesc forerunner, it helps to use slanted fonts (italics), and is +longdesc able to set ibidem automatically in footnotes. It will also +longdesc copy all citation information, abbreviations, and register key +longdesc words into lists for an automatically generated appendix. That +longdesc lists could refer to page and footnote numbers. BibArts has +longdesc nothing to do with BibTeX. The lists are created by bibsort. +longdesc BibArts requires a program, for which source and Windows +longdesc executable are provided. The program creates the bibliography +longdesc without using MakeIndex or BibTeX. Its source is not written +longdesc for a certain operating system. A summary of contents is in +longdesc English; the full documentation is in German. +containersize 27216 +containerchecksum 04ac23199e53049f54b670a2c6de94546a01d987e96aed23617692aef156e487dbf631309b81aaa0a95885f9b989e4e9fd9409d444d319cd58169e930b842ae6 +doccontainersize 1129924 +doccontainerchecksum 4e6282217b655fe87dea8e5cd68ed0db14990756bf997e90d3a5def53da50fed63687bf33e00ed741ed437572bb554fe68ce34b146bd31f3fd16e9f66e5879f8 +docfiles size=449 + RELOC/doc/latex/bibarts/COPYING + RELOC/doc/latex/bibarts/README.txt details="Readme" + RELOC/doc/latex/bibarts/ba-short.pdf details="Package short documentation" + RELOC/doc/latex/bibarts/ba-short.tex + RELOC/doc/latex/bibarts/bibarts.pdf details="Package documentation" language="de" RELOC/doc/latex/bibarts/bibarts.tex - RELOC/doc/latex/bibarts/gbib209.bat - RELOC/doc/latex/bibarts/gbib2e.bat - RELOC/doc/latex/bibarts/gbibsort.exe -srcfiles size=7 - RELOC/source/latex/bibarts/gbibsort.c + RELOC/doc/latex/bibarts/bibsort.exe +srccontainersize 37824 +srccontainerchecksum 59a2a25aab81c196e50be807e43a2db0a8eb72b0990b7b5cd8dba971ea995f863986fe759534bcd306b64aaae155cc99a5c6432bda65346cf0899de2c62caa97 +srcfiles size=54 + RELOC/source/latex/bibarts/bibsort.c +runfiles size=35 + RELOC/tex/latex/bibarts/bibarts.sty catalogue-ctan /macros/latex/contrib/bibarts -catalogue-date 2012-04-10 13:05:36 +0200 +catalogue-date 2019-03-04 09:44:09 +0100 catalogue-license gpl +catalogue-topics bibtex-supp humanities +catalogue-version 2.2 + +name biber +category Package +revision 50203 +shortdesc A BibTeX replacement for users of BibLaTeX +longdesc Biber is a BibTeX replacement for users of BibLaTeX. Biber +longdesc supports full UTF-8, can (re)-encode input and output, supports +longdesc highly configurable sorting, dynamic bibliography sets and many +longdesc other features. The CTAN distribution offers a compressed tar +longdesc archive of the sources, etc., together with "binary" +longdesc distributions for a variety of platforms. Note: on SourceForge +longdesc biber is formally named "biblatex-biber", to distinguish it +longdesc from an earlier (now apparently moribund) project called +longdesc "biber". +depend biber.ARCH +containersize 760 +containerchecksum 68ae0529f05d7656d5632f70fc0300115159d12ef296f40695120071071e34630b54b2bdb1025e0a17eb9554254e9d7ecfa3310b56dfc05d61aa4d80aa9a4f51 +doccontainersize 258972 +doccontainerchecksum 26f7d3f73e0f46beca639e948bc139c073aadbe7ac6ce5ff8a1cf42298eb96260e83aa4db80fff367efa36067ee430b544afcfe5195b7f25342c195808db6203 +docfiles size=65 + texmf-dist/doc/bibtex/biber/biber.pdf details="Manual" +srccontainersize 845140 +srccontainerchecksum 2489a03b4b40db620fe504103c2b37e239962e5fb5b5cd8a1fb298c600ee7e01097f380afd53856d1cdf296b86b30a7e537d83d6f06a919b8ecf180d94861ed5 +srcfiles size=263 + texmf-dist/source/bibtex/biber/Changes + texmf-dist/source/bibtex/biber/README.md + texmf-dist/source/bibtex/biber/biblatex-biber.tar.gz + texmf-dist/source/bibtex/biber/utf8-macro-map.html +catalogue-also bibtex crosstex biblatex +catalogue-contact-bugs https://github.com/plk/biber/issues +catalogue-contact-home http://biblatex-biber.sourceforge.net/ +catalogue-contact-repository https://github.com/plk/biber +catalogue-ctan /biblio/biber +catalogue-date 2019-01-28 06:40:59 +0100 +catalogue-license artistic2 +catalogue-topics biblio +catalogue-version 2.12 + +name biber.amd64-freebsd +category Package +revision 49068 +shortdesc amd64-freebsd files of biber +containersize 17094068 +containerchecksum 323f061e31811ee7cfbe183b10e0c8c3d50ee1dedef8eb08211f108324ad7ff8334220b29bbdd0a50aea78e3a851352d242c0271d2c2f75af9c73c9cf0b7572e +binfiles arch=amd64-freebsd size=5251 + bin/amd64-freebsd/biber + +name biber.i386-cygwin +category Package +revision 49068 +shortdesc i386-cygwin files of biber +containersize 16343124 +containerchecksum 757e9230cdafd146880a4a380f1a5e36b15d6002bf9d7eba7e9b5fc49be587626ecbd2bc89d41656a8c0407d1b20ca3e658fb3d4d25b8668cd2be09ec8c6fb41 +binfiles arch=i386-cygwin size=4974 + bin/i386-cygwin/biber.exe + +name biber.i386-freebsd +category Package +revision 49068 +shortdesc i386-freebsd files of biber +containersize 15208288 +containerchecksum 9dac170181f2a4f2d66452a5c3737823da20041d9e24748346872c7587dda63e7a3db08cb1767469fe3fdce6f1777f8d3e1012635882438e5daf33304dd0ce86 +binfiles arch=i386-freebsd size=4722 + bin/i386-freebsd/biber + +name biber.i386-linux +category Package +revision 49068 +shortdesc i386-linux files of biber +containersize 15819872 +containerchecksum d00e29dcc18db349e94a3c64dd80e4902e921d75de94548d82786fb915221e5276282f054314451f08d3badcf639c111cf87af6a92ac508143d3a09ec78b82d2 +binfiles arch=i386-linux size=4881 + bin/i386-linux/biber + +name biber.i386-solaris +category Package +revision 49068 +shortdesc i386-solaris files of biber +containersize 14956568 +containerchecksum d4e931412afc505a268671272bf85a22c7ae2d90fe070f6b0ce879082ba9d72e69508b01ac257add460cf7ed4d9ce4d1a8a45259e2886bb63a34017d18906e61 +binfiles arch=i386-solaris size=4640 + bin/i386-solaris/biber + +name biber.win32 +category Package +revision 49068 +shortdesc win32 files of biber +containersize 21411656 +containerchecksum 5a628f7536185fd830a67e63b056393ad4d8285aecf3127f37b0853ae1b52e0daa0c79a69d129d9b922c3d008d144d0eb00828a4784c95dde789cfb88d0bbb2c +binfiles arch=win32 size=6735 + bin/win32/biber.exe + +name biber.x86_64-cygwin +category Package +revision 49068 +shortdesc x86_64-cygwin files of biber +containersize 16454900 +containerchecksum d59ffeec8caf72e917cbf27fe19e504c94c8083a13a9f430c087cabd25eff64cea859f1ac01a5ceb37d4095bfebf595011390a87b396abfbeb1b76c3425c1afc +binfiles arch=x86_64-cygwin size=4982 + bin/x86_64-cygwin/biber.exe + +name biber.x86_64-darwin +category Package +revision 49068 +shortdesc x86_64-darwin files of biber +containersize 15798812 +containerchecksum a16687eb02735d86f3ff28a2fb6beadf9c0782b2e11d615f4224d744508eeda444f4d8671854b57624505d7dd5eb84bec0e73f4a48c165d579706114c9e88261 +binfiles arch=x86_64-darwin size=4885 + bin/x86_64-darwin/biber + +name biber.x86_64-darwinlegacy +category Package +revision 49068 +shortdesc x86_64-darwinlegacy files of biber +containersize 15798924 +containerchecksum f65864c2ce57b43ee65c5123d8bbf219d459040db151c83c56c3f74606657c77f1a0fe2aa5b4af59a7a6a08a76a6d4284fa513c22a0cc5d3925f4c727d3100c3 +binfiles arch=x86_64-darwinlegacy size=4885 + bin/x86_64-darwinlegacy/biber + +name biber.x86_64-linux +category Package +revision 49068 +shortdesc x86_64-linux files of biber +containersize 17706800 +containerchecksum f7a74a86733ac9ebf19de6231caf9439bb50a1aa170127c3d8394cb1805ed8643522fe53feb431ea23ba6d7e09c452486e41745d8ee9428ed45d70b6b8dbeea0 +binfiles arch=x86_64-linux size=5413 + bin/x86_64-linux/biber + +name biber.x86_64-solaris +category Package +revision 49068 +shortdesc x86_64-solaris files of biber +containersize 15896496 +containerchecksum 925b4acca3638b3a06eb15662f11e4e4bfd8c505bcf81d3e07101f2f4a5cf3ef49eb485264be6feb1792b658b26cc5628ca2c5e297f74ba9ccdafc23baccfa29 +binfiles arch=x86_64-solaris size=4953 + bin/x86_64-solaris/biber name bibexport category Package -revision 29349 -shortdesc Extract a BibTeX file based on a .aux file. +revision 50677 +shortdesc Extract a BibTeX file based on a .aux file longdesc A Bourne shell script that uses BibTeX to extract bibliography longdesc entries that are \cite'd in a document. It can also expand a -longdesc BibTeX file, expanding the abbreviations (other than the built- -longdesc in ones like month names) and following the cross-references. +longdesc BibTeX file, expanding the abbreviations (other than the +longdesc built-in ones like month names) and following the +longdesc cross-references. depend bibexport.ARCH +containersize 6512 +containerchecksum 75f9cb374e0aee1b049e977e3ee1a855ae8f908a6c6191589ce9d9fc28a8358fedf93faa416b1020e157a8ec7a3980673d00e052a100c88724e86050ea5eb487 +doccontainersize 256176 +doccontainerchecksum ec96364b4a9f7ab446c6b0104646e82cab1c9015e0d3dfac6a795e58e02dd3920737207d16089c5470ac32f76a61be949efa6899ca935322c0062f71f3477b16 +docfiles size=64 + texmf-dist/doc/bibtex/bibexport/README details="Readme" + texmf-dist/doc/bibtex/bibexport/bibexport.pdf details="Package documentation" +srccontainersize 11296 +srccontainerchecksum 6c18b4e12e8eecdd03f6afae80766cebe3f826a1146c38b6387c6793abf284d3c44e7d4d6050675f01676128f1d073d8ee8f38f31a6081049b8c390b5a7813a1 +srcfiles size=12 + texmf-dist/source/bibtex/bibexport/bibexport.dtx + texmf-dist/source/bibtex/bibexport/bibexport.ins runfiles size=10 texmf-dist/bibtex/bst/bibexport/expcites.bst texmf-dist/bibtex/bst/bibexport/expkeys.bst texmf-dist/bibtex/bst/bibexport/export.bst texmf-dist/scripts/bibexport/bibexport.sh -docfiles size=71 - texmf-dist/doc/bibtex/bibexport/README - texmf-dist/doc/bibtex/bibexport/bibexport.pdf -srcfiles size=12 - texmf-dist/source/bibtex/bibexport/bibexport.dtx - texmf-dist/source/bibtex/bibexport/bibexport.ins catalogue-ctan /biblio/bibtex/utils/bibexport -catalogue-date 2011-12-03 09:04:10 +0100 +catalogue-date 2019-03-31 09:13:05 +0200 catalogue-license lppl1.3 -catalogue-version 3.01 +catalogue-topics bibtex-util +catalogue-version 3.03 + +name bibexport.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of bibexport +containersize 344 +containerchecksum 9da92582f848d67820129174c9c653508df8bf4e75bcc1ec119896fa76cf33f1646784b7066e21cfd3ea734767bd2215b34410119e4e10121c3343cb33931f8d +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/bibexport + +name bibexport.amd64-freebsd +category Package +revision 16484 +shortdesc amd64-freebsd files of bibexport +containersize 344 +containerchecksum 77b2ec90288b6bcd268b348085505bac5076540c0e4e52598818e5e77572599d5a68da907730deba7af9705c1624e578d973c995d33abcd9afc9c5aa23f026f8 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/bibexport + +name bibexport.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of bibexport +containersize 344 +containerchecksum 7656cae4250710162de7107bfd8d2657292914e0e29b2d40cdb9454540a75f74492c2cb623baf4498b4c44dcfd9fdbe6528e767fdb69ab1026149d8a64e15289 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/bibexport + +name bibexport.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of bibexport +containersize 340 +containerchecksum 2d270358c28ab658d15e60453c57b7c2e73e64f62f59f1577ea5b40ea273bd1202f5d227c2c46a7b56bc540b24190caa9e8326a20cf524ebdb80d50b1bd3675f +binfiles arch=armhf-linux size=1 + bin/armhf-linux/bibexport + +name bibexport.i386-cygwin +category Package +revision 16219 +shortdesc i386-cygwin files of bibexport +containersize 340 +containerchecksum cd74c7a9be5e28583242c47087cd4d27e05d38082329998ee339eb6c1614046b42ce957bd791a23a9b6ba1f7b2f174f54fd843e113d478a99518ef99aedfe7da +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/bibexport + +name bibexport.i386-freebsd +category Package +revision 16484 +shortdesc i386-freebsd files of bibexport +containersize 344 +containerchecksum 53e8de0dac6631032711526e5614c93f6478ab67c857c549e01864b230bf5aead9e9b69cdcef686960a82f1729cebb6c12a1603a62ded3c8479cdb5a7d3c17c6 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/bibexport name bibexport.i386-linux category Package revision 16219 shortdesc i386-linux files of bibexport +containersize 344 +containerchecksum 73cbd38aa31b7fb24ac12e9e252bc99c526ad994f448ccf459df1b3ceefa3c7dcd07be63531e5a49fd7b15c82b5f4dff3cd7e14cd48b5fc392ead3441f45d3b4 binfiles arch=i386-linux size=1 bin/i386-linux/bibexport -name bib-fr +name bibexport.i386-netbsd category Package -revision 15878 -shortdesc French translation of classical BibTeX styles -relocated 1 -longdesc These files are French translations of the classical BibTeX -longdesc style files. The translations can easily be modified by simply -longdesc redefining FUNCTIONs named fr.*, at the beginning (lines 50- -longdesc 150) of each file. -runfiles size=66 - RELOC/bibtex/bst/bib-fr/abbrv-fr.bst - RELOC/bibtex/bst/bib-fr/abbrvnat-fr.bst - RELOC/bibtex/bst/bib-fr/alpha-fr.bst - RELOC/bibtex/bst/bib-fr/apalike-fr.bst - RELOC/bibtex/bst/bib-fr/ieeetr-fr.bst - RELOC/bibtex/bst/bib-fr/plain-fr.bst - RELOC/bibtex/bst/bib-fr/plainnat-fr.bst - RELOC/bibtex/bst/bib-fr/siam-fr.bst - RELOC/bibtex/bst/bib-fr/unsrt-fr.bst - RELOC/bibtex/bst/bib-fr/unsrtnat-fr.bst -docfiles size=2 - RELOC/doc/bibtex/bib-fr/CHANGELOG - RELOC/doc/bibtex/bib-fr/README -catalogue-ctan /biblio/bibtex/contrib/bib-fr -catalogue-date 2012-04-27 15:08:24 +0200 -catalogue-license lppl -catalogue-version 1.5 +revision 30191 +shortdesc i386-netbsd files of bibexport +containersize 344 +containerchecksum cddc811f4a805e545f8326c0285e7855331084704a0aae0eda1c1946d9e1e1b2ba5c29906d040343126a188dbfca0abdbb73464d30f8ad28c2409c3e5ea1cf57 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/bibexport + +name bibexport.i386-solaris +category Package +revision 16219 +shortdesc i386-solaris files of bibexport +containersize 340 +containerchecksum 57193f49cf4049ca3f142827ca8adcd358cf01181d0c1f3e18b6df10313c6ab50da4d761ca11aec763f9c6c6b23ecee999bc813c30ef62b5417a4d0ba949d5d8 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/bibexport + +name bibexport.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of bibexport +containersize 344 +containerchecksum 407f2ca2f063b376d19ebbbbda2233d3087b8b839ccbae6110faf743b0553bf28e7119e08784c65ee2f1d389adc9a3ab0f8c322029c506d9d92bbdacbd8d8ea0 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/bibexport + +name bibexport.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of bibexport +containersize 344 +containerchecksum 081adc02303386d334c21401b6e0b93113fc47a0c1e43c082eaf362e8a35dd9288e19552770cf1e572ecc620e9417a867a56a7825c34c7be37a384bd5a6e153b +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/bibexport + +name bibexport.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of bibexport +containersize 348 +containerchecksum 25c015139a935386c00cde6669bf2b0902fc0ac93f8e5439afc468043b8c942a9ef80c6a8f09e5f74952872b6a278c993df65615a38bc4fdf337f96b1fb1c6b4 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/bibexport + +name bibexport.x86_64-linux +category Package +revision 16219 +shortdesc x86_64-linux files of bibexport +containersize 340 +containerchecksum 50c97b45d55fb59962dd41f40ad3460353d5501eaaee6c735cf017c6e25340d8548b7118df8b8f90b983fdfc6f23cb08c57541592b588b49d3994f007b8678c9 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/bibexport + +name bibexport.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of bibexport +containersize 348 +containerchecksum ea7b38641e69355a381d97e2c2a03e4ff586d50c280c89f0a94f0e1dcb12f336dfde855f2b73279e28fee57f4377f221e2c1c440a903bc671173b37277eb788d +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/bibexport + +name bibexport.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of bibexport +containersize 344 +containerchecksum 6ebea077c178daff326ce9693dd15d44d9073029939c1bab9725a64fa126d7c732de0d3fd96ebfa3ac56779c3deaf066f293d136874a11626c64087c2d9cdf17 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/bibexport name bibhtml category Package revision 31607 -shortdesc BibTeX support for HTML files. +shortdesc BibTeX support for HTML files relocated 1 longdesc Bibhtml consists of a Perl script and a set of BibTeX style longdesc files, which together allow you to output a bibliography as a @@ -16134,6 +30660,20 @@ longdesc the generated bibliography entry is linked to this. The package longdesc provides three different style files derived from each of the longdesc standard plain.bst and alpha.bst, as well as two style files longdesc derived from abbrv.bst and unsrt.bst (i.e., eight in total). +containersize 11448 +containerchecksum c7245cce245740f0d930518cfee66dc513bd4b43c8b5804e1012fb95f401dbca2321be44ba6251de573723ec2e6da85fc77b9a9192004ac2144bfbeb3225d27c +doccontainersize 23716 +doccontainerchecksum cf01a0853d87180205651768b639ee4cf7ed1b6bb4869880489f57e37ed8fbff3e8406fbcae1d0c652b3d410f77af9b4d1932ee154c60cc79e2876014abf7b80 +docfiles size=24 + RELOC/doc/bibtex/bibhtml/LICENCE + RELOC/doc/bibtex/bibhtml/README details="Readme" + RELOC/doc/bibtex/bibhtml/bibhtml + RELOC/doc/bibtex/bibhtml/bibhtml-extract-aux.xslt + RELOC/doc/bibtex/bibhtml/bibhtml-insert-bib.xslt + RELOC/doc/bibtex/bibhtml/bibhtml.html details="Package documentation" + RELOC/doc/bibtex/bibhtml/bibrefs.bib + RELOC/doc/bibtex/bibhtml/detex.sed + RELOC/doc/bibtex/bibhtml/style.css runfiles size=57 RELOC/bibtex/bst/bibhtml/abbrvhtml.bst RELOC/bibtex/bst/bibhtml/alphahtml.bst @@ -16143,58 +30683,444 @@ runfiles size=57 RELOC/bibtex/bst/bibhtml/plainhtmldate.bst RELOC/bibtex/bst/bibhtml/plainhtmldater.bst RELOC/bibtex/bst/bibhtml/unsrthtml.bst -docfiles size=24 - RELOC/doc/bibtex/bibhtml/LICENCE - RELOC/doc/bibtex/bibhtml/README - RELOC/doc/bibtex/bibhtml/bibhtml - RELOC/doc/bibtex/bibhtml/bibhtml-extract-aux.xslt - RELOC/doc/bibtex/bibhtml/bibhtml-insert-bib.xslt - RELOC/doc/bibtex/bibhtml/bibhtml.html - RELOC/doc/bibtex/bibhtml/bibrefs.bib - RELOC/doc/bibtex/bibhtml/detex.sed - RELOC/doc/bibtex/bibhtml/style.css catalogue-ctan /biblio/bibtex/contrib/bibhtml -catalogue-date 2013-09-08 21:40:59 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics bibtex-util cvt-html catalogue-version 2.0.2 +name biblatex +category Package +revision 49069 +shortdesc Sophisticated Bibliographies in LaTeX +relocated 1 +longdesc BibLaTeX is a complete reimplementation of the bibliographic +longdesc facilities provided by LaTeX. Formatting of the bibliography is +longdesc entirely controlled by LaTeX macros, and a working knowledge of +longdesc LaTeX should be sufficient to design new bibliography and +longdesc citation styles. BibLaTeX uses its own data backend program +longdesc called "biber" to read and process the bibliographic data. With +longdesc biber, BibLaTeX has many features rivalling or surpassing other +longdesc bibliography systems. To mention a few: Full Unicode support +longdesc Highly customisable sorting using the Unicode Collation +longdesc Algorithm + CLDR tailoring Highly customisable bibliography +longdesc labels Complex macro-based on-the-fly data modification without +longdesc changing your data sources A tool mode for transforming +longdesc bibliographic data sources Multiple bibliographies and lists of +longdesc bibliographic information in the same document with different +longdesc sorting Highly customisable data source inheritance rules +longdesc Polyglossia and babel suppport for automatic language switching +longdesc for bibliographic entries and citations Automatic bibliography +longdesc data recoding (UTF-8 -> latin1, LaTeX macros -> UTF-8 etc) +longdesc Remote data sources Highly sophisticated automatic name and +longdesc name list disambiguation system Highly customisable data model +longdesc so users can define their own bibliographic data types +longdesc Validation of bibliographic data against a data model +longdesc Subdivided and/or filtered bibligraphies, bibliographies per +longdesc chapter, section etc. Apart from the features unique to +longdesc BibLaTeX, the package also incorporates core features of the +longdesc following packages: babelbib, bibtopic, bibunits, chapterbib, +longdesc cite, inlinebib, mcite and mciteplus, mlbib, multibib, +longdesc splitbib. The package strictly requires e-TeX BibTeX, bibtex8, +longdesc or Biber etoolbox 2.1 or later logreq 1.0 or later keyval +longdesc ifthen url Biber, babel / polyglossia, and csquotes 4.4 or +longdesc later are strongly recommended. +containersize 211584 +containerchecksum b4834e32af364be45fc56b7824e15e096305da62b75d057c6c4c00e89d6425e2798ee7c6caaca288b61a025d62385fc2e517b36553e3417f336b942136ababcc +doccontainersize 7082620 +doccontainerchecksum 1557bf11fa2bf2913fc68c5685cce100d7925605acde1f8cc867009decc9750fcc1745993d2a663d08206af5a756c6cbb9bf832ec724b49c5ff0579cd6ed4d4c +docfiles size=4833 + RELOC/doc/latex/biblatex/CHANGES.md details="Release notes for current version" language="en" + RELOC/doc/latex/biblatex/README details="Readme" language="en" + RELOC/doc/latex/biblatex/biber/bltxml/biblatex-examples.bltxml + RELOC/doc/latex/biblatex/biblatex.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/biblatex/biblatex.tex + RELOC/doc/latex/biblatex/examples/01-introduction-biber.pdf + RELOC/doc/latex/biblatex/examples/01-introduction-bibtex.pdf + RELOC/doc/latex/biblatex/examples/01-introduction.tex + RELOC/doc/latex/biblatex/examples/02-annotations-biber.pdf + RELOC/doc/latex/biblatex/examples/02-annotations-bibtex.pdf + RELOC/doc/latex/biblatex/examples/02-annotations.tex + RELOC/doc/latex/biblatex/examples/03-localization-keys-biber.pdf + RELOC/doc/latex/biblatex/examples/03-localization-keys-bibtex.pdf + RELOC/doc/latex/biblatex/examples/03-localization-keys.tex + RELOC/doc/latex/biblatex/examples/04-delimiters-biber.pdf + RELOC/doc/latex/biblatex/examples/04-delimiters-bibtex.pdf + RELOC/doc/latex/biblatex/examples/04-delimiters.tex + RELOC/doc/latex/biblatex/examples/10-references-per-section-biber.pdf + RELOC/doc/latex/biblatex/examples/10-references-per-section-bibtex.pdf + RELOC/doc/latex/biblatex/examples/10-references-per-section.tex + RELOC/doc/latex/biblatex/examples/11-references-by-section-biber.pdf + RELOC/doc/latex/biblatex/examples/11-references-by-section-bibtex.pdf + RELOC/doc/latex/biblatex/examples/11-references-by-section.tex + RELOC/doc/latex/biblatex/examples/12-references-by-segment-biber.pdf + RELOC/doc/latex/biblatex/examples/12-references-by-segment-bibtex.pdf + RELOC/doc/latex/biblatex/examples/12-references-by-segment.tex + RELOC/doc/latex/biblatex/examples/13-references-by-keyword-biber.pdf + RELOC/doc/latex/biblatex/examples/13-references-by-keyword-bibtex.pdf + RELOC/doc/latex/biblatex/examples/13-references-by-keyword.tex + RELOC/doc/latex/biblatex/examples/14-references-by-category-biber.pdf + RELOC/doc/latex/biblatex/examples/14-references-by-category-bibtex.pdf + RELOC/doc/latex/biblatex/examples/14-references-by-category.tex + RELOC/doc/latex/biblatex/examples/15-references-by-type-biber.pdf + RELOC/doc/latex/biblatex/examples/15-references-by-type-bibtex.pdf + RELOC/doc/latex/biblatex/examples/15-references-by-type.tex + RELOC/doc/latex/biblatex/examples/16-numeric-prefixed-1-biber.pdf + RELOC/doc/latex/biblatex/examples/16-numeric-prefixed-1-bibtex.pdf + RELOC/doc/latex/biblatex/examples/16-numeric-prefixed-1-bibtex.tex + RELOC/doc/latex/biblatex/examples/16-numeric-prefixed-1.tex + RELOC/doc/latex/biblatex/examples/17-numeric-prefixed-2-biber.pdf + RELOC/doc/latex/biblatex/examples/17-numeric-prefixed-2-bibtex.pdf + RELOC/doc/latex/biblatex/examples/17-numeric-prefixed-2-bibtex.tex + RELOC/doc/latex/biblatex/examples/17-numeric-prefixed-2.tex + RELOC/doc/latex/biblatex/examples/18-numeric-hybrid-biber.pdf + RELOC/doc/latex/biblatex/examples/18-numeric-hybrid-bibtex.pdf + RELOC/doc/latex/biblatex/examples/18-numeric-hybrid.tex + RELOC/doc/latex/biblatex/examples/19-alphabetic-prefixed-biber.pdf + RELOC/doc/latex/biblatex/examples/19-alphabetic-prefixed-bibtex.pdf + RELOC/doc/latex/biblatex/examples/19-alphabetic-prefixed-bibtex.tex + RELOC/doc/latex/biblatex/examples/19-alphabetic-prefixed.tex + RELOC/doc/latex/biblatex/examples/20-indexing-single-biber.pdf + RELOC/doc/latex/biblatex/examples/20-indexing-single-bibtex.pdf + RELOC/doc/latex/biblatex/examples/20-indexing-single.tex + RELOC/doc/latex/biblatex/examples/21-indexing-multiple-biber.pdf + RELOC/doc/latex/biblatex/examples/21-indexing-multiple-bibtex.pdf + RELOC/doc/latex/biblatex/examples/21-indexing-multiple.tex + RELOC/doc/latex/biblatex/examples/22-indexing-subentry-biber.pdf + RELOC/doc/latex/biblatex/examples/22-indexing-subentry-bibtex.pdf + RELOC/doc/latex/biblatex/examples/22-indexing-subentry.tex + RELOC/doc/latex/biblatex/examples/30-style-numeric-biber.pdf + RELOC/doc/latex/biblatex/examples/30-style-numeric-bibtex.pdf + RELOC/doc/latex/biblatex/examples/30-style-numeric.tex + RELOC/doc/latex/biblatex/examples/31-style-numeric-comp-biber.pdf + RELOC/doc/latex/biblatex/examples/31-style-numeric-comp-bibtex.pdf + RELOC/doc/latex/biblatex/examples/31-style-numeric-comp.tex + RELOC/doc/latex/biblatex/examples/32-style-numeric-verb-biber.pdf + RELOC/doc/latex/biblatex/examples/32-style-numeric-verb-bibtex.pdf + RELOC/doc/latex/biblatex/examples/32-style-numeric-verb.tex + RELOC/doc/latex/biblatex/examples/40-style-alphabetic-biber.pdf + RELOC/doc/latex/biblatex/examples/40-style-alphabetic-bibtex.pdf + RELOC/doc/latex/biblatex/examples/40-style-alphabetic.tex + RELOC/doc/latex/biblatex/examples/41-style-alphabetic-verb-biber.pdf + RELOC/doc/latex/biblatex/examples/41-style-alphabetic-verb-bibtex.pdf + RELOC/doc/latex/biblatex/examples/41-style-alphabetic-verb.tex + RELOC/doc/latex/biblatex/examples/42-style-alphabetic-template-biber.pdf + RELOC/doc/latex/biblatex/examples/42-style-alphabetic-template-bibtex.pdf + RELOC/doc/latex/biblatex/examples/42-style-alphabetic-template.tex + RELOC/doc/latex/biblatex/examples/50-style-authoryear-biber.pdf + RELOC/doc/latex/biblatex/examples/50-style-authoryear-bibtex.pdf + RELOC/doc/latex/biblatex/examples/50-style-authoryear.tex + RELOC/doc/latex/biblatex/examples/51-style-authoryear-ibid-biber.pdf + RELOC/doc/latex/biblatex/examples/51-style-authoryear-ibid-bibtex.pdf + RELOC/doc/latex/biblatex/examples/51-style-authoryear-ibid.tex + RELOC/doc/latex/biblatex/examples/52-style-authoryear-comp-biber.pdf + RELOC/doc/latex/biblatex/examples/52-style-authoryear-comp-bibtex.pdf + RELOC/doc/latex/biblatex/examples/52-style-authoryear-comp.tex + RELOC/doc/latex/biblatex/examples/53-style-authoryear-icomp-biber.pdf + RELOC/doc/latex/biblatex/examples/53-style-authoryear-icomp-bibtex.pdf + RELOC/doc/latex/biblatex/examples/53-style-authoryear-icomp.tex + RELOC/doc/latex/biblatex/examples/60-style-authortitle-biber.pdf + RELOC/doc/latex/biblatex/examples/60-style-authortitle-bibtex.pdf + RELOC/doc/latex/biblatex/examples/60-style-authortitle.tex + RELOC/doc/latex/biblatex/examples/61-style-authortitle-ibid-biber.pdf + RELOC/doc/latex/biblatex/examples/61-style-authortitle-ibid-bibtex.pdf + RELOC/doc/latex/biblatex/examples/61-style-authortitle-ibid.tex + RELOC/doc/latex/biblatex/examples/62-style-authortitle-comp-biber.pdf + RELOC/doc/latex/biblatex/examples/62-style-authortitle-comp-bibtex.pdf + RELOC/doc/latex/biblatex/examples/62-style-authortitle-comp.tex + RELOC/doc/latex/biblatex/examples/63-style-authortitle-icomp-biber.pdf + RELOC/doc/latex/biblatex/examples/63-style-authortitle-icomp-bibtex.pdf + RELOC/doc/latex/biblatex/examples/63-style-authortitle-icomp.tex + RELOC/doc/latex/biblatex/examples/64-style-authortitle-terse-biber.pdf + RELOC/doc/latex/biblatex/examples/64-style-authortitle-terse-bibtex.pdf + RELOC/doc/latex/biblatex/examples/64-style-authortitle-terse.tex + RELOC/doc/latex/biblatex/examples/65-style-authortitle-tcomp-biber.pdf + RELOC/doc/latex/biblatex/examples/65-style-authortitle-tcomp-bibtex.pdf + RELOC/doc/latex/biblatex/examples/65-style-authortitle-tcomp.tex + RELOC/doc/latex/biblatex/examples/66-style-authortitle-ticomp-biber.pdf + RELOC/doc/latex/biblatex/examples/66-style-authortitle-ticomp-bibtex.pdf + RELOC/doc/latex/biblatex/examples/66-style-authortitle-ticomp.tex + RELOC/doc/latex/biblatex/examples/70-style-verbose-biber.pdf + RELOC/doc/latex/biblatex/examples/70-style-verbose-bibtex.pdf + RELOC/doc/latex/biblatex/examples/70-style-verbose.tex + RELOC/doc/latex/biblatex/examples/71-style-verbose-ibid-biber.pdf + RELOC/doc/latex/biblatex/examples/71-style-verbose-ibid-bibtex.pdf + RELOC/doc/latex/biblatex/examples/71-style-verbose-ibid.tex + RELOC/doc/latex/biblatex/examples/72-style-verbose-note-biber.pdf + RELOC/doc/latex/biblatex/examples/72-style-verbose-note-bibtex.pdf + RELOC/doc/latex/biblatex/examples/72-style-verbose-note.tex + RELOC/doc/latex/biblatex/examples/73-style-verbose-inote-biber.pdf + RELOC/doc/latex/biblatex/examples/73-style-verbose-inote-bibtex.pdf + RELOC/doc/latex/biblatex/examples/73-style-verbose-inote.tex + RELOC/doc/latex/biblatex/examples/74-style-verbose-trad1-biber.pdf + RELOC/doc/latex/biblatex/examples/74-style-verbose-trad1-bibtex.pdf + RELOC/doc/latex/biblatex/examples/74-style-verbose-trad1.tex + RELOC/doc/latex/biblatex/examples/75-style-verbose-trad2-biber.pdf + RELOC/doc/latex/biblatex/examples/75-style-verbose-trad2-bibtex.pdf + RELOC/doc/latex/biblatex/examples/75-style-verbose-trad2.tex + RELOC/doc/latex/biblatex/examples/76-style-verbose-trad3-biber.pdf + RELOC/doc/latex/biblatex/examples/76-style-verbose-trad3-bibtex.pdf + RELOC/doc/latex/biblatex/examples/76-style-verbose-trad3.tex + RELOC/doc/latex/biblatex/examples/80-style-reading-biber.pdf + RELOC/doc/latex/biblatex/examples/80-style-reading-bibtex.pdf + RELOC/doc/latex/biblatex/examples/80-style-reading.tex + RELOC/doc/latex/biblatex/examples/81-style-draft-biber.pdf + RELOC/doc/latex/biblatex/examples/81-style-draft-bibtex.pdf + RELOC/doc/latex/biblatex/examples/81-style-draft.tex + RELOC/doc/latex/biblatex/examples/82-style-debug-biber.pdf + RELOC/doc/latex/biblatex/examples/82-style-debug-bibtex.pdf + RELOC/doc/latex/biblatex/examples/82-style-debug.tex + RELOC/doc/latex/biblatex/examples/90-related-entries-biber.pdf + RELOC/doc/latex/biblatex/examples/90-related-entries.tex + RELOC/doc/latex/biblatex/examples/91-sorting-schemes-biber.pdf + RELOC/doc/latex/biblatex/examples/91-sorting-schemes.tex + RELOC/doc/latex/biblatex/examples/92-bibliographylists-biber.pdf + RELOC/doc/latex/biblatex/examples/92-bibliographylists.tex + RELOC/doc/latex/biblatex/examples/93-nameparts-biber.pdf + RELOC/doc/latex/biblatex/examples/93-nameparts.dbx + RELOC/doc/latex/biblatex/examples/93-nameparts.tex + RELOC/doc/latex/biblatex/examples/94-labelprefix-biber.pdf + RELOC/doc/latex/biblatex/examples/94-labelprefix.tex + RELOC/doc/latex/biblatex/examples/95-customlists-biber.pdf + RELOC/doc/latex/biblatex/examples/95-customlists.bib + RELOC/doc/latex/biblatex/examples/95-customlists.dbx + RELOC/doc/latex/biblatex/examples/95-customlists.tex + RELOC/doc/latex/biblatex/examples/96-dates-biber.pdf + RELOC/doc/latex/biblatex/examples/96-dates.tex + RELOC/doc/latex/biblatex/examples/97-annotations-biber.pdf + RELOC/doc/latex/biblatex/examples/97-annotations.bib + RELOC/doc/latex/biblatex/examples/97-annotations.tex + RELOC/doc/latex/biblatex/examples/biblatex-examples.bib + RELOC/doc/latex/biblatex/examples/biblatex-examples.bltxml +runfiles size=528 + RELOC/bibtex/bib/biblatex/biblatex/biblatex-examples.bib + RELOC/bibtex/bst/biblatex/biblatex.bst + RELOC/tex/latex/biblatex/bbx/alphabetic-verb.bbx + RELOC/tex/latex/biblatex/bbx/alphabetic.bbx + RELOC/tex/latex/biblatex/bbx/authortitle-comp.bbx + RELOC/tex/latex/biblatex/bbx/authortitle-ibid.bbx + RELOC/tex/latex/biblatex/bbx/authortitle-icomp.bbx + RELOC/tex/latex/biblatex/bbx/authortitle-tcomp.bbx + RELOC/tex/latex/biblatex/bbx/authortitle-terse.bbx + RELOC/tex/latex/biblatex/bbx/authortitle-ticomp.bbx + RELOC/tex/latex/biblatex/bbx/authortitle.bbx + RELOC/tex/latex/biblatex/bbx/authoryear-comp.bbx + RELOC/tex/latex/biblatex/bbx/authoryear-ibid.bbx + RELOC/tex/latex/biblatex/bbx/authoryear-icomp.bbx + RELOC/tex/latex/biblatex/bbx/authoryear.bbx + RELOC/tex/latex/biblatex/bbx/debug.bbx + RELOC/tex/latex/biblatex/bbx/draft.bbx + RELOC/tex/latex/biblatex/bbx/numeric-comp.bbx + RELOC/tex/latex/biblatex/bbx/numeric-verb.bbx + RELOC/tex/latex/biblatex/bbx/numeric.bbx + RELOC/tex/latex/biblatex/bbx/reading.bbx + RELOC/tex/latex/biblatex/bbx/standard.bbx + RELOC/tex/latex/biblatex/bbx/verbose-ibid.bbx + RELOC/tex/latex/biblatex/bbx/verbose-inote.bbx + RELOC/tex/latex/biblatex/bbx/verbose-note.bbx + RELOC/tex/latex/biblatex/bbx/verbose-trad1.bbx + RELOC/tex/latex/biblatex/bbx/verbose-trad2.bbx + RELOC/tex/latex/biblatex/bbx/verbose-trad3.bbx + RELOC/tex/latex/biblatex/bbx/verbose.bbx + RELOC/tex/latex/biblatex/biblatex.cfg + RELOC/tex/latex/biblatex/biblatex.def + RELOC/tex/latex/biblatex/biblatex.sty + RELOC/tex/latex/biblatex/blx-bibtex.def + RELOC/tex/latex/biblatex/blx-compat.def + RELOC/tex/latex/biblatex/blx-dm.def + RELOC/tex/latex/biblatex/blx-mcite.def + RELOC/tex/latex/biblatex/blx-natbib.def + RELOC/tex/latex/biblatex/blx-unicode.def + RELOC/tex/latex/biblatex/cbx/alphabetic-verb.cbx + RELOC/tex/latex/biblatex/cbx/alphabetic.cbx + RELOC/tex/latex/biblatex/cbx/authortitle-comp.cbx + RELOC/tex/latex/biblatex/cbx/authortitle-ibid.cbx + RELOC/tex/latex/biblatex/cbx/authortitle-icomp.cbx + RELOC/tex/latex/biblatex/cbx/authortitle-tcomp.cbx + RELOC/tex/latex/biblatex/cbx/authortitle-terse.cbx + RELOC/tex/latex/biblatex/cbx/authortitle-ticomp.cbx + RELOC/tex/latex/biblatex/cbx/authortitle.cbx + RELOC/tex/latex/biblatex/cbx/authoryear-comp.cbx + RELOC/tex/latex/biblatex/cbx/authoryear-ibid.cbx + RELOC/tex/latex/biblatex/cbx/authoryear-icomp.cbx + RELOC/tex/latex/biblatex/cbx/authoryear.cbx + RELOC/tex/latex/biblatex/cbx/debug.cbx + RELOC/tex/latex/biblatex/cbx/draft.cbx + RELOC/tex/latex/biblatex/cbx/numeric-comp.cbx + RELOC/tex/latex/biblatex/cbx/numeric-verb.cbx + RELOC/tex/latex/biblatex/cbx/numeric.cbx + RELOC/tex/latex/biblatex/cbx/reading.cbx + RELOC/tex/latex/biblatex/cbx/verbose-ibid.cbx + RELOC/tex/latex/biblatex/cbx/verbose-inote.cbx + RELOC/tex/latex/biblatex/cbx/verbose-note.cbx + RELOC/tex/latex/biblatex/cbx/verbose-trad1.cbx + RELOC/tex/latex/biblatex/cbx/verbose-trad2.cbx + RELOC/tex/latex/biblatex/cbx/verbose-trad3.cbx + RELOC/tex/latex/biblatex/cbx/verbose.cbx + RELOC/tex/latex/biblatex/lbx/UKenglish.lbx + RELOC/tex/latex/biblatex/lbx/USenglish.lbx + RELOC/tex/latex/biblatex/lbx/american.lbx + RELOC/tex/latex/biblatex/lbx/australian.lbx + RELOC/tex/latex/biblatex/lbx/austrian.lbx + RELOC/tex/latex/biblatex/lbx/brazil.lbx + RELOC/tex/latex/biblatex/lbx/brazilian.lbx + RELOC/tex/latex/biblatex/lbx/british.lbx + RELOC/tex/latex/biblatex/lbx/bulgarian.lbx + RELOC/tex/latex/biblatex/lbx/canadian.lbx + RELOC/tex/latex/biblatex/lbx/catalan.lbx + RELOC/tex/latex/biblatex/lbx/croatian.lbx + RELOC/tex/latex/biblatex/lbx/czech.lbx + RELOC/tex/latex/biblatex/lbx/danish.lbx + RELOC/tex/latex/biblatex/lbx/dutch.lbx + RELOC/tex/latex/biblatex/lbx/english.lbx + RELOC/tex/latex/biblatex/lbx/estonian.lbx + RELOC/tex/latex/biblatex/lbx/finnish.lbx + RELOC/tex/latex/biblatex/lbx/french.lbx + RELOC/tex/latex/biblatex/lbx/galician.lbx + RELOC/tex/latex/biblatex/lbx/german.lbx + RELOC/tex/latex/biblatex/lbx/greek.lbx + RELOC/tex/latex/biblatex/lbx/hungarian.lbx + RELOC/tex/latex/biblatex/lbx/icelandic.lbx + RELOC/tex/latex/biblatex/lbx/italian.lbx + RELOC/tex/latex/biblatex/lbx/latvian.lbx + RELOC/tex/latex/biblatex/lbx/magyar.lbx + RELOC/tex/latex/biblatex/lbx/naustrian.lbx + RELOC/tex/latex/biblatex/lbx/newzealand.lbx + RELOC/tex/latex/biblatex/lbx/ngerman.lbx + RELOC/tex/latex/biblatex/lbx/norsk.lbx + RELOC/tex/latex/biblatex/lbx/nswissgerman.lbx + RELOC/tex/latex/biblatex/lbx/nynorsk.lbx + RELOC/tex/latex/biblatex/lbx/polish.lbx + RELOC/tex/latex/biblatex/lbx/portuges.lbx + RELOC/tex/latex/biblatex/lbx/portuguese.lbx + RELOC/tex/latex/biblatex/lbx/russian.lbx + RELOC/tex/latex/biblatex/lbx/slovak.lbx + RELOC/tex/latex/biblatex/lbx/slovene.lbx + RELOC/tex/latex/biblatex/lbx/slovenian.lbx + RELOC/tex/latex/biblatex/lbx/spanish.lbx + RELOC/tex/latex/biblatex/lbx/swedish.lbx + RELOC/tex/latex/biblatex/lbx/swissgerman.lbx + RELOC/tex/latex/biblatex/lbx/ukrainian.lbx +catalogue-also translation-biblatex-de +catalogue-contact-announce https://github.com/plk/biblatex/wiki +catalogue-contact-bugs https://github.com/plk/biblatex/issues +catalogue-contact-home https://github.com/plk/biblatex +catalogue-contact-repository https://github.com/plk/biblatex.git +catalogue-ctan /macros/latex/contrib/biblatex +catalogue-date 2018-11-02 21:52:33 +0100 +catalogue-license lppl1.3 +catalogue-topics biblio biblatex etex +catalogue-version 3.12 + +name biblatex-abnt +category Package +revision 49179 +shortdesc BibLaTeX style for Brazil's ABNT rules +relocated 1 +longdesc This package offers a BibLaTeX style for Brazil's ABNT +longdesc (Brazilian Association of Technical Norms) rules. +containersize 18036 +containerchecksum f2c239aed726d57eb98cef8892c4b4295205d5a8d55a14b16db8bd6b42bf3f51aadb0dc767f97dfbcd8e57a1f867c5e344c604d726453113a007169edee0ff58 +doccontainersize 861432 +doccontainerchecksum 04158e1b92a2976d2a5cc107e00b5e4ab90a85799f9e55b25936fdd0e141fc2196f0f64577bf2eb8997b7ba5b7e8c575bb725febfc397940d271ecd5f56138a8 +docfiles size=256 + RELOC/doc/latex/biblatex-abnt/CHANGELOG.md + RELOC/doc/latex/biblatex-abnt/NBR10520-2002.bib + RELOC/doc/latex/biblatex-abnt/NBR10520-2002.tex + RELOC/doc/latex/biblatex-abnt/NBR10520-2002_reference.pdf details="Examples of use" + RELOC/doc/latex/biblatex-abnt/NBR10520-2002_test.tex + RELOC/doc/latex/biblatex-abnt/NBR6023-2002.bib + RELOC/doc/latex/biblatex-abnt/NBR6023-2002.tex + RELOC/doc/latex/biblatex-abnt/NBR6023-2002_reference.pdf + RELOC/doc/latex/biblatex-abnt/NBR6023-2002_test.tex + RELOC/doc/latex/biblatex-abnt/README.md details="Readme" language="pt-br" + RELOC/doc/latex/biblatex-abnt/biblatex-abnt.bib + RELOC/doc/latex/biblatex-abnt/biblatex-abnt.pdf details="Package documentation" language="pt-br" + RELOC/doc/latex/biblatex-abnt/biblatex-abnt.tex + RELOC/doc/latex/biblatex-abnt/test.sh + RELOC/doc/latex/biblatex-abnt/tests/README.md details="Readme" language="pt-br" + RELOC/doc/latex/biblatex-abnt/texlive.sh +runfiles size=50 + RELOC/tex/latex/biblatex-abnt/abnt-ibid.bbx + RELOC/tex/latex/biblatex-abnt/abnt-ibid.cbx + RELOC/tex/latex/biblatex-abnt/abnt-numeric.bbx + RELOC/tex/latex/biblatex-abnt/abnt-numeric.cbx + RELOC/tex/latex/biblatex-abnt/abnt.bbx + RELOC/tex/latex/biblatex-abnt/abnt.cbx + RELOC/tex/latex/biblatex-abnt/american-abnt.lbx + RELOC/tex/latex/biblatex-abnt/australian-abnt.lbx + RELOC/tex/latex/biblatex-abnt/brazil-abnt.lbx + RELOC/tex/latex/biblatex-abnt/brazilian-abnt.lbx + RELOC/tex/latex/biblatex-abnt/british-abnt.lbx + RELOC/tex/latex/biblatex-abnt/canadian-abnt.lbx + RELOC/tex/latex/biblatex-abnt/english-abnt.lbx + RELOC/tex/latex/biblatex-abnt/portuges-abnt.lbx + RELOC/tex/latex/biblatex-abnt/portuguese-abnt.lbx + RELOC/tex/latex/biblatex-abnt/spanish-abnt.lbx +catalogue-contact-bugs https://github.com/abntex/biblatex-abnt/issues +catalogue-contact-repository https://github.com/abntex/biblatex-abnt +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-abnt +catalogue-date 2018-11-17 17:39:25 +0100 +catalogue-license lppl1.3c +catalogue-topics biblatex journalpub portuguese-br +catalogue-version 3.4 + name biblatex-anonymous category Package -revision 35491 -shortdesc A tool to manage anonymous work with biblatex. +revision 48548 +shortdesc A tool to manage anonymous work with BibLaTeX relocated 1 longdesc The package provides tools to help manage anonymous work with -longdesc biblatex. It will be useful, for example, in history or +longdesc BibLaTeX. It will be useful, for example, in history or longdesc classical philology. -runfiles size=1 - RELOC/tex/latex/biblatex-anonymous/biblatex-anonymous.sty -docfiles size=17 - RELOC/doc/latex/biblatex-anonymous/README - RELOC/doc/latex/biblatex-anonymous/biblatex-anonymous.pdf +containersize 1608 +containerchecksum 3a3cc037e3ce718c219e4bd4e380075d4a92d85cd1f490b8ffee10c5b80bb9e515f1f170b53eae033ea064cac2ddb3bb285655482e5cd65801403584fb9e215e +doccontainersize 62380 +doccontainerchecksum 11b4a4f281068004c2bb11028200bf7f8b1461b4b40d0b52b60d60f145b3e9ea38fb672ae532d8430b0ed889df631b1dbeabcef5e9373b720d4a3c3354254789 +docfiles size=20 + RELOC/doc/latex/biblatex-anonymous/README details="Readme" + RELOC/doc/latex/biblatex-anonymous/biblatex-anonymous.pdf details="Package documentation" RELOC/doc/latex/biblatex-anonymous/biblatex-anonymous.tex RELOC/doc/latex/biblatex-anonymous/latexmkrc RELOC/doc/latex/biblatex-anonymous/makefile +runfiles size=1 + RELOC/tex/latex/biblatex-anonymous/biblatex-anonymous.sty +catalogue-contact-bugs https://github.com/maieul/biblatex-anonymous/issues +catalogue-contact-repository https://github.com/maieul/biblatex-anonymous catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-anonymous -catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-date 2018-09-02 14:32:32 +0200 catalogue-license lppl1.3 -catalogue-version 2.1.0 +catalogue-topics humanities biblatex +catalogue-version 2.6.2 name biblatex-apa category Package -revision 36124 -shortdesc Biblatex citation and reference style for APA. +revision 47268 +shortdesc BibLaTeX citation and reference style for APA relocated 1 -longdesc This is a fairly complete biblatex style (citations and +longdesc This is a fairly complete BibLaTeX style (citations and longdesc references) for APA (American Psychological Association) longdesc publications. It implements and automates most of the longdesc guidelines in the APA 6th edition style guide for citations and longdesc references with a few (documented) exceptions (which are mainly -longdesc currently impossible to automate in principle for any BibTeX- -longdesc backed system). An example document is also given which +longdesc currently impossible to automate in principle for any +longdesc BibTeX-backed system). An example document is also given which longdesc typesets every citation and reference example in the APA 6th longdesc edition style guide. This version of the package requires use -longdesc of biblatex v2.0 and biber v1.0 (at least). -runfiles size=56 +longdesc of BibLaTeX v3.8 and biber v2.8. +containersize 20668 +containerchecksum 8b2f69f360a335783121cf8d6176b99466cfa0089c315ddbcfe178bf8abd1ad68aaeebd3a97dedaf5227c338cd1955b8e82fb2f4b96f66cab2b38f72853c6dc4 +doccontainersize 223888 +doccontainerchecksum 2ba853a29feb8624d5602299b56e9278e4d7f91efb45d0ba300ecb428a60f61e8bb3095bc0388124f6a324874273952674aa0dfabfa9298366aa19956d7d3e66 +docfiles size=77 + RELOC/doc/latex/biblatex-apa/README details="Readme" + RELOC/doc/latex/biblatex-apa/biblatex-apa-test-citations.bib + RELOC/doc/latex/biblatex-apa/biblatex-apa-test-references.bib + RELOC/doc/latex/biblatex-apa/biblatex-apa-test.pdf details="The examples in the APA style guide" + RELOC/doc/latex/biblatex-apa/biblatex-apa-test.tex + RELOC/doc/latex/biblatex-apa/biblatex-apa.pdf details="Package documentation" + RELOC/doc/latex/biblatex-apa/biblatex-apa.tex +runfiles size=69 RELOC/tex/latex/biblatex-apa/american-apa.lbx RELOC/tex/latex/biblatex-apa/apa.bbx RELOC/tex/latex/biblatex-apa/apa.cbx @@ -16202,6 +31128,7 @@ runfiles size=56 RELOC/tex/latex/biblatex-apa/austrian-apa.lbx RELOC/tex/latex/biblatex-apa/brazilian-apa.lbx RELOC/tex/latex/biblatex-apa/british-apa.lbx + RELOC/tex/latex/biblatex-apa/danish-apa.lbx RELOC/tex/latex/biblatex-apa/dutch-apa.lbx RELOC/tex/latex/biblatex-apa/english-apa.lbx RELOC/tex/latex/biblatex-apa/french-apa.lbx @@ -16212,114 +31139,744 @@ runfiles size=56 RELOC/tex/latex/biblatex-apa/ngerman-apa.lbx RELOC/tex/latex/biblatex-apa/norsk-apa.lbx RELOC/tex/latex/biblatex-apa/norwegian-apa.lbx + RELOC/tex/latex/biblatex-apa/nswissgerman-apa.lbx RELOC/tex/latex/biblatex-apa/nynorsk-apa.lbx + RELOC/tex/latex/biblatex-apa/portuguese-apa.lbx + RELOC/tex/latex/biblatex-apa/russian-apa.lbx RELOC/tex/latex/biblatex-apa/slovene-apa.lbx RELOC/tex/latex/biblatex-apa/spanish-apa.lbx RELOC/tex/latex/biblatex-apa/swedish-apa.lbx -docfiles size=75 - RELOC/doc/latex/biblatex-apa/README - RELOC/doc/latex/biblatex-apa/biblatex-apa-test-citations.bib - RELOC/doc/latex/biblatex-apa/biblatex-apa-test-references.bib - RELOC/doc/latex/biblatex-apa/biblatex-apa-test.pdf - RELOC/doc/latex/biblatex-apa/biblatex-apa-test.tex - RELOC/doc/latex/biblatex-apa/biblatex-apa.pdf - RELOC/doc/latex/biblatex-apa/biblatex-apa.tex + RELOC/tex/latex/biblatex-apa/swissgerman-apa.lbx +catalogue-contact-announce https://github.com/plk/biblatex-apa/wiki +catalogue-contact-bugs https://github.com/plk/biblatex-apa/issues +catalogue-contact-home https://github.com/plk/biblatex-apa +catalogue-contact-repository https://github.com/plk/biblatex-apa.git catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-apa -catalogue-date 2015-01-23 19:22:40 +0100 -catalogue-license lppl -catalogue-version 6.7 +catalogue-date 2018-04-03 08:26:57 +0200 +catalogue-license lppl1.3c +catalogue-topics apa biblatex psychology journalpub +catalogue-version 7.7 + +name biblatex-archaeology +category Package +revision 49202 +shortdesc A collection of BibLaTeX styles for German prehistory +relocated 1 +longdesc This package provides additional BibLaTeX styles for German +longdesc humanities. Its core purpose is to enable the referencing rules +longdesc of the Romano-Germanic Commission (>Romisch-Germanische +longdesc Kommission), the department of prehistory of the German +longdesc Archaeological Institute (Deutsches Archaologisches Institut), +longdesc since these are referenced by most guidelines in German +longdesc prehistory and medieval archaeology and serve as a kind of +longdesc template. biblatex-archaeology provides verbose, numeric and +longdesc author date styles as well and adaptions to specific document +longdesc types like exhibition and auction catalogues. +containersize 37356 +containerchecksum 16e26c3a96789ac75333fb474e12acfd4e8bbdfe9dc19c5b44194842870238de100603befb0d1bc468ac24f5ceb9b1bae54ae6fe955f215a67d86046fc9ab287 +doccontainersize 4298196 +doccontainerchecksum 8929d568b2d6d9e7e2a1e6eb335490f9b9ac246bf1dff5553fa564675dbd9922ef1125b0f648b638951ba7ac1eda0942f22ea75eeac0ef20ff9b6533ffe96f22 +docfiles size=1638 + RELOC/doc/latex/biblatex-archaeology/README.htm + RELOC/doc/latex/biblatex-archaeology/README.md details="Readme" + RELOC/doc/latex/biblatex-archaeology/biblatex-archaeology-example.bib + RELOC/doc/latex/biblatex-archaeology/biblatex-archaeology-manual.bib + RELOC/doc/latex/biblatex-archaeology/biblatex-archaeology-strings-full-subtitle.bib + RELOC/doc/latex/biblatex-archaeology/biblatex-archaeology-strings-full.bib + RELOC/doc/latex/biblatex-archaeology/biblatex-archaeology-strings-rgk.bib + RELOC/doc/latex/biblatex-archaeology/biblatex-archaeology.conf + RELOC/doc/latex/biblatex-archaeology/biblatex-archaeology.pdf details="Package documentation" + RELOC/doc/latex/biblatex-archaeology/example/aefkw-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/afwl-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/amit-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/archa-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/authoryear-archaeology-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/authoryear-comp-archaeology-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/authoryear-ibid-archaeology-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/authoryear-icomp-archaeology-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/biblatex-archaeology_example.tex + RELOC/doc/latex/biblatex-archaeology/example/dguf-alt-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/dguf-apa-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/dguf-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/eaz-alt-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/eaz-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/foe-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/jb-halle-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/jb-kreis-neuss-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/karl-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/kunde-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/maja-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/mpk-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/mpkoeaw-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/niedersachsen-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/nnu-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/numeric-comp-archaeology-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/offa-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/rgk-inline-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/rgk-numeric-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/rgk-verbose-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/rgzm-inline-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/rgzm-numeric-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/rgzm-verbose-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/ufg-muenster-inline-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/ufg-muenster-numeric-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/ufg-muenster-verbose-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/verbose-archaeology-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/verbose-ibid-archaeology-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/verbose-trad2note-archaeology-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/volkskunde-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/zaak-example.pdf + RELOC/doc/latex/biblatex-archaeology/example/zaes-example.pdf +srccontainersize 189092 +srccontainerchecksum f057e96faeb6c5d355b6bf6d809b64dc395d42781ddcd0d29b7b42b057f0313a1fd46e9aa34634c9de51dc2055b63106b289c441c35823f812c01db5eb431ba6 +srcfiles size=464 + RELOC/source/latex/biblatex-archaeology/biblatex-archaeology-nodoc.dtx + RELOC/source/latex/biblatex-archaeology/biblatex-archaeology.dtx + RELOC/source/latex/biblatex-archaeology/biblatex-archaeology.ins +runfiles size=410 + RELOC/tex/latex/biblatex-archaeology/UKenglish-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-archa.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-foe.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-karl.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-maja.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-offa.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/UKenglish-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-archa.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-foe.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-karl.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-maja.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-offa.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/USenglish-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/aefkw.bbx + RELOC/tex/latex/biblatex-archaeology/aefkw.cbx + RELOC/tex/latex/biblatex-archaeology/aefkw.dbx + RELOC/tex/latex/biblatex-archaeology/afwl.bbx + RELOC/tex/latex/biblatex-archaeology/afwl.cbx + RELOC/tex/latex/biblatex-archaeology/afwl.dbx + RELOC/tex/latex/biblatex-archaeology/american-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/american-archa.lbx + RELOC/tex/latex/biblatex-archaeology/american-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/american-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/american-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/american-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/american-foe.lbx + RELOC/tex/latex/biblatex-archaeology/american-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/american-karl.lbx + RELOC/tex/latex/biblatex-archaeology/american-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/american-maja.lbx + RELOC/tex/latex/biblatex-archaeology/american-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/american-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/american-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/american-offa.lbx + RELOC/tex/latex/biblatex-archaeology/american-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/american-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/american-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/amit.bbx + RELOC/tex/latex/biblatex-archaeology/amit.cbx + RELOC/tex/latex/biblatex-archaeology/amit.dbx + RELOC/tex/latex/biblatex-archaeology/archa.bbx + RELOC/tex/latex/biblatex-archaeology/archa.cbx + RELOC/tex/latex/biblatex-archaeology/archa.dbx + RELOC/tex/latex/biblatex-archaeology/australian-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/australian-archa.lbx + RELOC/tex/latex/biblatex-archaeology/australian-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/australian-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/australian-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/australian-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/australian-foe.lbx + RELOC/tex/latex/biblatex-archaeology/australian-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/australian-karl.lbx + RELOC/tex/latex/biblatex-archaeology/australian-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/australian-maja.lbx + RELOC/tex/latex/biblatex-archaeology/australian-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/australian-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/australian-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/australian-offa.lbx + RELOC/tex/latex/biblatex-archaeology/australian-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/australian-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/australian-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-archa.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-foe.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-karl.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-maja.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-offa.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/austrian-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/authoryear-archaeology.bbx + RELOC/tex/latex/biblatex-archaeology/authoryear-archaeology.cbx + RELOC/tex/latex/biblatex-archaeology/authoryear-archaeology.dbx + RELOC/tex/latex/biblatex-archaeology/authoryear-comp-archaeology.bbx + RELOC/tex/latex/biblatex-archaeology/authoryear-comp-archaeology.cbx + RELOC/tex/latex/biblatex-archaeology/authoryear-comp-archaeology.dbx + RELOC/tex/latex/biblatex-archaeology/authoryear-ibid-archaeology.bbx + RELOC/tex/latex/biblatex-archaeology/authoryear-ibid-archaeology.cbx + RELOC/tex/latex/biblatex-archaeology/authoryear-ibid-archaeology.dbx + RELOC/tex/latex/biblatex-archaeology/authoryear-icomp-archaeology.bbx + RELOC/tex/latex/biblatex-archaeology/authoryear-icomp-archaeology.cbx + RELOC/tex/latex/biblatex-archaeology/authoryear-icomp-archaeology.dbx + RELOC/tex/latex/biblatex-archaeology/biblatex-archaeology.sty + RELOC/tex/latex/biblatex-archaeology/british-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/british-archa.lbx + RELOC/tex/latex/biblatex-archaeology/british-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/british-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/british-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/british-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/british-foe.lbx + RELOC/tex/latex/biblatex-archaeology/british-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/british-karl.lbx + RELOC/tex/latex/biblatex-archaeology/british-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/british-maja.lbx + RELOC/tex/latex/biblatex-archaeology/british-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/british-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/british-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/british-offa.lbx + RELOC/tex/latex/biblatex-archaeology/british-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/british-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/british-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-archa.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-foe.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-karl.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-maja.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-offa.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/canadian-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/dguf-alt.bbx + RELOC/tex/latex/biblatex-archaeology/dguf-alt.cbx + RELOC/tex/latex/biblatex-archaeology/dguf-alt.dbx + RELOC/tex/latex/biblatex-archaeology/dguf-apa.bbx + RELOC/tex/latex/biblatex-archaeology/dguf-apa.cbx + RELOC/tex/latex/biblatex-archaeology/dguf-apa.dbx + RELOC/tex/latex/biblatex-archaeology/dguf.bbx + RELOC/tex/latex/biblatex-archaeology/dguf.cbx + RELOC/tex/latex/biblatex-archaeology/dguf.dbx + RELOC/tex/latex/biblatex-archaeology/eaz-alt.bbx + RELOC/tex/latex/biblatex-archaeology/eaz-alt.cbx + RELOC/tex/latex/biblatex-archaeology/eaz-alt.dbx + RELOC/tex/latex/biblatex-archaeology/eaz.bbx + RELOC/tex/latex/biblatex-archaeology/eaz.cbx + RELOC/tex/latex/biblatex-archaeology/eaz.dbx + RELOC/tex/latex/biblatex-archaeology/english-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/english-archa.lbx + RELOC/tex/latex/biblatex-archaeology/english-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/english-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/english-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/english-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/english-foe.lbx + RELOC/tex/latex/biblatex-archaeology/english-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/english-karl.lbx + RELOC/tex/latex/biblatex-archaeology/english-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/english-maja.lbx + RELOC/tex/latex/biblatex-archaeology/english-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/english-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/english-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/english-offa.lbx + RELOC/tex/latex/biblatex-archaeology/english-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/english-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/english-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/foe.bbx + RELOC/tex/latex/biblatex-archaeology/foe.cbx + RELOC/tex/latex/biblatex-archaeology/foe.dbx + RELOC/tex/latex/biblatex-archaeology/german-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/german-archa.lbx + RELOC/tex/latex/biblatex-archaeology/german-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/german-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/german-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/german-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/german-foe.lbx + RELOC/tex/latex/biblatex-archaeology/german-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/german-karl.lbx + RELOC/tex/latex/biblatex-archaeology/german-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/german-maja.lbx + RELOC/tex/latex/biblatex-archaeology/german-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/german-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/german-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/german-offa.lbx + RELOC/tex/latex/biblatex-archaeology/german-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/german-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/german-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/jb-halle.bbx + RELOC/tex/latex/biblatex-archaeology/jb-halle.cbx + RELOC/tex/latex/biblatex-archaeology/jb-halle.dbx + RELOC/tex/latex/biblatex-archaeology/jb-kreis-neuss.bbx + RELOC/tex/latex/biblatex-archaeology/jb-kreis-neuss.cbx + RELOC/tex/latex/biblatex-archaeology/jb-kreis-neuss.dbx + RELOC/tex/latex/biblatex-archaeology/karl.bbx + RELOC/tex/latex/biblatex-archaeology/karl.cbx + RELOC/tex/latex/biblatex-archaeology/karl.dbx + RELOC/tex/latex/biblatex-archaeology/kunde.bbx + RELOC/tex/latex/biblatex-archaeology/kunde.cbx + RELOC/tex/latex/biblatex-archaeology/kunde.dbx + RELOC/tex/latex/biblatex-archaeology/maja.bbx + RELOC/tex/latex/biblatex-archaeology/maja.cbx + RELOC/tex/latex/biblatex-archaeology/maja.dbx + RELOC/tex/latex/biblatex-archaeology/mpk.bbx + RELOC/tex/latex/biblatex-archaeology/mpk.cbx + RELOC/tex/latex/biblatex-archaeology/mpk.dbx + RELOC/tex/latex/biblatex-archaeology/mpkoeaw.bbx + RELOC/tex/latex/biblatex-archaeology/mpkoeaw.cbx + RELOC/tex/latex/biblatex-archaeology/mpkoeaw.dbx + RELOC/tex/latex/biblatex-archaeology/naustrian-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-archa.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-foe.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-karl.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-maja.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-offa.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/naustrian-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-archa.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-foe.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-karl.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-maja.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-offa.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/newzealand-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-archa.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-foe.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-karl.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-maja.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-offa.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/ngerman-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/niedersachsen.bbx + RELOC/tex/latex/biblatex-archaeology/niedersachsen.cbx + RELOC/tex/latex/biblatex-archaeology/niedersachsen.dbx + RELOC/tex/latex/biblatex-archaeology/nnu.bbx + RELOC/tex/latex/biblatex-archaeology/nnu.cbx + RELOC/tex/latex/biblatex-archaeology/nnu.dbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-archa.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-foe.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-karl.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-maja.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-offa.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/nswissgerman-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/numeric-comp-archaeology.bbx + RELOC/tex/latex/biblatex-archaeology/numeric-comp-archaeology.cbx + RELOC/tex/latex/biblatex-archaeology/numeric-comp-archaeology.dbx + RELOC/tex/latex/biblatex-archaeology/offa.bbx + RELOC/tex/latex/biblatex-archaeology/offa.cbx + RELOC/tex/latex/biblatex-archaeology/offa.dbx + RELOC/tex/latex/biblatex-archaeology/rgk-inline.bbx + RELOC/tex/latex/biblatex-archaeology/rgk-inline.cbx + RELOC/tex/latex/biblatex-archaeology/rgk-inline.dbx + RELOC/tex/latex/biblatex-archaeology/rgk-numeric.bbx + RELOC/tex/latex/biblatex-archaeology/rgk-numeric.cbx + RELOC/tex/latex/biblatex-archaeology/rgk-numeric.dbx + RELOC/tex/latex/biblatex-archaeology/rgk-verbose.bbx + RELOC/tex/latex/biblatex-archaeology/rgk-verbose.cbx + RELOC/tex/latex/biblatex-archaeology/rgk-verbose.dbx + RELOC/tex/latex/biblatex-archaeology/rgzm-inline.bbx + RELOC/tex/latex/biblatex-archaeology/rgzm-inline.cbx + RELOC/tex/latex/biblatex-archaeology/rgzm-inline.dbx + RELOC/tex/latex/biblatex-archaeology/rgzm-numeric.bbx + RELOC/tex/latex/biblatex-archaeology/rgzm-numeric.cbx + RELOC/tex/latex/biblatex-archaeology/rgzm-numeric.dbx + RELOC/tex/latex/biblatex-archaeology/rgzm-verbose.bbx + RELOC/tex/latex/biblatex-archaeology/rgzm-verbose.cbx + RELOC/tex/latex/biblatex-archaeology/rgzm-verbose.dbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-aefkw.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-archa.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-archaeology.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-dguf-alt.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-dguf-apa.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-eaz.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-foe.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-jb-kreis-neuss.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-karl.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-kunde.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-maja.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-mpk.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-mpkoeaw.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-niedersachsen.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-offa.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-rgzm.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-zaak.lbx + RELOC/tex/latex/biblatex-archaeology/swissgerman-zaes.lbx + RELOC/tex/latex/biblatex-archaeology/ufg-muenster-inline.bbx + RELOC/tex/latex/biblatex-archaeology/ufg-muenster-inline.cbx + RELOC/tex/latex/biblatex-archaeology/ufg-muenster-inline.dbx + RELOC/tex/latex/biblatex-archaeology/ufg-muenster-numeric.bbx + RELOC/tex/latex/biblatex-archaeology/ufg-muenster-numeric.cbx + RELOC/tex/latex/biblatex-archaeology/ufg-muenster-numeric.dbx + RELOC/tex/latex/biblatex-archaeology/ufg-muenster-verbose.bbx + RELOC/tex/latex/biblatex-archaeology/ufg-muenster-verbose.cbx + RELOC/tex/latex/biblatex-archaeology/ufg-muenster-verbose.dbx + RELOC/tex/latex/biblatex-archaeology/verbose-archaeology.bbx + RELOC/tex/latex/biblatex-archaeology/verbose-archaeology.cbx + RELOC/tex/latex/biblatex-archaeology/verbose-archaeology.dbx + RELOC/tex/latex/biblatex-archaeology/verbose-ibid-archaeology.bbx + RELOC/tex/latex/biblatex-archaeology/verbose-ibid-archaeology.cbx + RELOC/tex/latex/biblatex-archaeology/verbose-ibid-archaeology.dbx + RELOC/tex/latex/biblatex-archaeology/verbose-trad2note-archaeology.bbx + RELOC/tex/latex/biblatex-archaeology/verbose-trad2note-archaeology.cbx + RELOC/tex/latex/biblatex-archaeology/verbose-trad2note-archaeology.dbx + RELOC/tex/latex/biblatex-archaeology/volkskunde.bbx + RELOC/tex/latex/biblatex-archaeology/volkskunde.cbx + RELOC/tex/latex/biblatex-archaeology/volkskunde.dbx + RELOC/tex/latex/biblatex-archaeology/zaak.bbx + RELOC/tex/latex/biblatex-archaeology/zaak.cbx + RELOC/tex/latex/biblatex-archaeology/zaak.dbx + RELOC/tex/latex/biblatex-archaeology/zaes.bbx + RELOC/tex/latex/biblatex-archaeology/zaes.cbx + RELOC/tex/latex/biblatex-archaeology/zaes.dbx +catalogue-also archaeologie +catalogue-contact-home https://ingram-braun.net/public/programming/tex/latex-typography-prehistory-egyptology-anthropology-rgk-rgzm-dguf/ +catalogue-contact-repository https://github.com/CarlOrff/biblatex-archaeology +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-archaeology +catalogue-date 2018-11-20 10:54:04 +0100 +catalogue-license lppl1.3c +catalogue-topics humanities biblatex +catalogue-version 2.1 -name biblatex-bookinarticle +name biblatex-arthistory-bonn +category Package +revision 46637 +shortdesc BibLaTeX citation style covers the citation and bibliography guidelines for art historians +relocated 1 +longdesc This citation style covers the citation and bibliography +longdesc guidelines of the Kunsthistorisches Institut der Universitat +longdesc Bonn for undergraduates. It introduces bibliography entry types +longdesc for catalogs and features a tabular bibliography, among other +longdesc things. Various options are available to change and adjust the +longdesc outcome according to one's own preferences. The style is +longdesc compatible with English and German. +containersize 7784 +containerchecksum 93b48bb950e9a4bb81efabe4a3c8ee85d7056daeca88c1c1a070c5321b8caa0045c4005467cdc029f8a26b94a425235e36a36bdee163242194a5301ddd6fcc98 +doccontainersize 182764 +doccontainerchecksum e31b7912ca34e6ec27c365c2b3e549cdfb60bd94c19b9f1cd54d35d2a1b99ef2702c3f818f7354ef4f5d3157c0e29538a94315ae7af8177de23893e598c7d439 +docfiles size=67 + RELOC/doc/latex/biblatex-arthistory-bonn/README.md details="Readme" + RELOC/doc/latex/biblatex-arthistory-bonn/arthistory-bonn-examples.bib + RELOC/doc/latex/biblatex-arthistory-bonn/arthistory-bonn.pdf details="Package documentation" + RELOC/doc/latex/biblatex-arthistory-bonn/arthistory-bonn.tex +runfiles size=15 + RELOC/tex/latex/biblatex-arthistory-bonn/arthistory-bonn-english.lbx + RELOC/tex/latex/biblatex-arthistory-bonn/arthistory-bonn-german.lbx + RELOC/tex/latex/biblatex-arthistory-bonn/arthistory-bonn.bbx + RELOC/tex/latex/biblatex-arthistory-bonn/arthistory-bonn.cbx + RELOC/tex/latex/biblatex-arthistory-bonn/arthistory-bonn.dbx +catalogue-contact-bugs https://github.com/LukasCBossert/biblatex-arthistory-bonn/issues +catalogue-contact-repository https://github.com/LukasCBossert/biblatex-arthistory-bonn +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-arthistory-bonn +catalogue-date 2018-02-13 22:43:43 +0100 +catalogue-license lppl1.3 +catalogue-topics biblatex +catalogue-version 1.2 + +name biblatex-bath category Package -revision 36218 -shortdesc Manage book edited in article. +revision 48943 +shortdesc Harvard referencing style as recommended by the University of Bath Library relocated 1 -longdesc This package provides two new biblatex entry types: -longdesc @bookinarticle and @bookinincollection, to refer to a modern -longdesc edition of an old book, where this modern edition is provided -longdesc in a @article or in a @incollection. -runfiles size=1 - RELOC/tex/latex/biblatex-bookinarticle/biblatex-bookinarticle.sty -docfiles size=24 - RELOC/doc/latex/biblatex-bookinarticle/README - RELOC/doc/latex/biblatex-bookinarticle/documentation/biblatex-bookinarticle.pdf +longdesc This package provides a BibLaTeX style to format reference +longdesc lists in the Harvard style recommended by the University of +longdesc Bath Library. +containersize 6556 +containerchecksum d11851f1b0bb4cfa3784d0a5493eb5e99eb42a8e0c36f74347a0825e75684e3e5de5d053b88b3fce1d286f097f6226a348f447f8071f53cc589381a18a6150a9 +doccontainersize 422692 +doccontainerchecksum 0cb5e8c91885b386a92074a0c827145a79397f448d3309c9410037ae498c88477da6c7db413342521bc86c4e694bd6e9880cd7bcf15506151e4616a777ad9994 +docfiles size=111 + RELOC/doc/latex/biblatex-bath/Makefile + RELOC/doc/latex/biblatex-bath/README.md details="Readme" + RELOC/doc/latex/biblatex-bath/biblatex-bath.bib + RELOC/doc/latex/biblatex-bath/biblatex-bath.pdf details="Package documentation" +srccontainersize 25972 +srccontainerchecksum 91a0c614575e3e49a55220cdd9d71c053ccd252fa8cdddf9995f0068b182b65c730bc2376db4814b6bc2c4fb0e2ffb61ddc86d08dd40105276940dc4ef88d7cb +srcfiles size=29 + RELOC/source/latex/biblatex-bath/biblatex-bath.dtx + RELOC/source/latex/biblatex-bath/biblatex-bath.ins +runfiles size=13 + RELOC/tex/latex/biblatex-bath/american-bath.lbx + RELOC/tex/latex/biblatex-bath/bath.bbx + RELOC/tex/latex/biblatex-bath/bath.cbx + RELOC/tex/latex/biblatex-bath/bath.dbx + RELOC/tex/latex/biblatex-bath/british-bath.lbx +catalogue-also bath-bst +catalogue-contact-bugs https://github.com/alex-ball/bathbib/issues +catalogue-contact-home https://github.com/alex-ball/bathbib +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-bath +catalogue-date 2018-10-19 06:33:44 +0200 +catalogue-license lppl1.3c +catalogue-topics biblatex +catalogue-version 2.0.1 + +name biblatex-bookinarticle +category Package +revision 40323 +shortdesc Manage book edited in article +relocated 1 +longdesc This package provides three new BibLaTeX entry types - +longdesc @bookinarticle, @bookinincollection and @bookinthesis - to +longdesc refer to a modern edition of an old book, where this modern +longdesc edition is provided in a @article, @incollection or in a +longdesc @thesis. The package is now superseded by biblatex-bookinother. +containersize 1968 +containerchecksum 8a7bfae09d95434d6db671e4037a2f1d5c1ba9cae5982e286389364ee2ff24f9a2daee78c69e529efd06be37d2e6a6f860820361feb42f5b84157dda2ef0988f +doccontainersize 104796 +doccontainerchecksum 727228b915e6b370a74b4d38dffde3bbb7ae47973c33263bafab2aa6b640102775dbeeea7f09c046903dbfe86dbdfcdd8e0418d125a51678e603425328cd2da1 +docfiles size=44 + RELOC/doc/latex/biblatex-bookinarticle/README details="Readme" + RELOC/doc/latex/biblatex-bookinarticle/documentation/biblatex-bookinarticle-crossref.pdf + RELOC/doc/latex/biblatex-bookinarticle/documentation/biblatex-bookinarticle.dot + RELOC/doc/latex/biblatex-bookinarticle/documentation/biblatex-bookinarticle.pdf details="Package documentation" RELOC/doc/latex/biblatex-bookinarticle/documentation/biblatex-bookinarticle.tex + RELOC/doc/latex/biblatex-bookinarticle/documentation/example-bookinarticle.bib RELOC/doc/latex/biblatex-bookinarticle/documentation/example-bookinincollection.bib - RELOC/doc/latex/biblatex-bookinarticle/documentation/example.bib + RELOC/doc/latex/biblatex-bookinarticle/documentation/example-bookinthesis.bib RELOC/doc/latex/biblatex-bookinarticle/documentation/makefile RELOC/doc/latex/biblatex-bookinarticle/makefile +runfiles size=2 + RELOC/tex/latex/biblatex-bookinarticle/biblatex-bookinarticle.sty +catalogue-contact-repository https://github.com/maieul/biblatex-bookinarticle catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-bookinarticle -catalogue-date 2015-02-05 19:25:52 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 -catalogue-version 1.1.2 +catalogue-topics humanities biblatex +catalogue-version 1.3.1a + +name biblatex-bookinother +category Package +revision 45856 +shortdesc Manage book edited in other entry type +relocated 1 +longdesc This package provides new BibLaTeX entry types and fields for +longdesc book edited in other types, like for instance @bookinarticle. +longdesc It offers more types than the older package +longdesc biblatex-bookinarticle which it superseeds. +containersize 3172 +containerchecksum 2e6f21726ee4289801546508a26a9416b6725059c63f214d7cc8a6a8b3cf7d3b60fcb87fb7451f4ccfe6d1a27b986e9e0ddbd5a8f0b1070d7e37b775d07ec7d4 +doccontainersize 265780 +doccontainerchecksum 5c6a1c0b44533b518d95f0dab2aed58e41253c97eee9d04b9b734bcfc7eb2f8437f835a3b7120b37fb5ec3b58d8929b93185fe9bc43c78e15f30fe1f8e7adfb4 +docfiles size=143 + RELOC/doc/latex/biblatex-bookinother/README details="Readme" + RELOC/doc/latex/biblatex-bookinother/documentation/biblatex-bookinother.pdf details="Package documentation" + RELOC/doc/latex/biblatex-bookinother/documentation/biblatex-bookinother.tex + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinarticle.bib + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinarticle.dot + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinarticle.pdf + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookincollection.bib + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookincollection.dot + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookincollection.pdf + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookininarticle.bib + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookininarticle.dot + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookininarticle.pdf + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookininbook.bib + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookininbook.dot + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookininbook.pdf + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinincollection.bib + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinincollection.dot + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinincollection.pdf + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookininproceedings.bib + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookininproceedings.dot + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookininproceedings.pdf + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinjournal.bib + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinjournal.dot + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinjournal.pdf + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinproceedings.bib + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinproceedings.dot + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinproceedings.pdf + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinthesis.bib + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinthesis.dot + RELOC/doc/latex/biblatex-bookinother/documentation/example-bookinthesis.pdf + RELOC/doc/latex/biblatex-bookinother/documentation/generate-crossref-graphs.py + RELOC/doc/latex/biblatex-bookinother/documentation/latexmkrc + RELOC/doc/latex/biblatex-bookinother/documentation/makefile + RELOC/doc/latex/biblatex-bookinother/makefile +runfiles size=6 + RELOC/tex/latex/biblatex-bookinother/bookinother.bbx + RELOC/tex/latex/biblatex-bookinother/bookinother.dbx +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-bookinother +catalogue-date 2017-11-19 17:23:13 +0100 +catalogue-license lppl1.3 +catalogue-topics humanities biblatex +catalogue-version 2.3.1 name biblatex-bwl category Package revision 26556 -shortdesc Biblatex citations for FU Berlin. +shortdesc BibLaTeX citations for FU Berlin relocated 1 -longdesc The bundle provides a set of biblatex implementations of +longdesc The bundle provides a set of BibLaTeX implementations of longdesc bibliography and citation styles for the Business longdesc Administration Department of the Free University of Berlin. -runfiles size=2 - RELOC/tex/latex/biblatex-bwl/bwl-FU.bbx - RELOC/tex/latex/biblatex-bwl/bwl-FU.cbx +containersize 1308 +containerchecksum ca5e20736a70ed02fbdada150433162b64b39b0d95bca623cebda8da821bfe8554f9409cdd49af7559737dbc6d6033bbf6868f5ed809b1004cbeba4bbabbc38f +doccontainersize 114332 +doccontainerchecksum 32acf8bc10c07532e8d6174f3dd9a1f850acaeaaa5a91d14a1c299f2f5f22e34c619a41fd9ae7a90e097fd5ec30fdbce581f65560e2891f697ddb0106469f50b docfiles size=35 RELOC/doc/latex/biblatex-bwl/Changes RELOC/doc/latex/biblatex-bwl/doc/bwl-FU.bib - RELOC/doc/latex/biblatex-bwl/doc/bwl-FU.pdf + RELOC/doc/latex/biblatex-bwl/doc/bwl-FU.pdf details="Package documentation" RELOC/doc/latex/biblatex-bwl/doc/bwl-FU.tex +runfiles size=2 + RELOC/tex/latex/biblatex-bwl/bwl-FU.bbx + RELOC/tex/latex/biblatex-bwl/bwl-FU.cbx catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-bwl -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics bus-study biblatex catalogue-version 0.02 name biblatex-caspervector category Package -revision 37600 -shortdesc A simple citation style for Chinese users. +revision 48122 +shortdesc A simple citation style for Chinese users relocated 1 longdesc The package provides a simple and easily extensible longdesc biblography/citation style for Chinese LaTeX users, using -longdesc biblatex. -runfiles size=6 - RELOC/tex/latex/biblatex-caspervector/biblatex-caspervector-gbk.def - RELOC/tex/latex/biblatex-caspervector/biblatex-caspervector-utf8.def - RELOC/tex/latex/biblatex-caspervector/caspervector.bbx - RELOC/tex/latex/biblatex-caspervector/caspervector.cbx -docfiles size=97 +longdesc BibLaTeX. +containersize 4144 +containerchecksum f309df056d2fa0d58f46568e64b188d21414d4640106ca11ac51cc1de779b3e7a76d2633b1adb38412131c682808dfb2397093969e69b765c3d79099f421b9e7 +doccontainersize 591984 +doccontainerchecksum 78de4d815a69d965c08cd789c4c42aa16342f43dd9e485dd4af2ed10f688c32d69bad9fc9678947e8c3cffb4c6baa4cf84e4d6f90d21f1f99acbd9c3e5b11153 +docfiles size=159 RELOC/doc/latex/biblatex-caspervector/ChangeLog.txt RELOC/doc/latex/biblatex-caspervector/Makefile - RELOC/doc/latex/biblatex-caspervector/readme.bib - RELOC/doc/latex/biblatex-caspervector/readme.pdf - RELOC/doc/latex/biblatex-caspervector/readme.tex + RELOC/doc/latex/biblatex-caspervector/caspervector-ay.pdf + RELOC/doc/latex/biblatex-caspervector/caspervector-ay.tex + RELOC/doc/latex/biblatex-caspervector/caspervector.bib + RELOC/doc/latex/biblatex-caspervector/caspervector.pdf details="Package documentation" language="zh" + RELOC/doc/latex/biblatex-caspervector/caspervector.tex +runfiles size=10 + RELOC/tex/latex/biblatex-caspervector/blx-caspervector-base.def + RELOC/tex/latex/biblatex-caspervector/blx-caspervector-gbk.def + RELOC/tex/latex/biblatex-caspervector/blx-caspervector-utf8.def + RELOC/tex/latex/biblatex-caspervector/caspervector-ay.bbx + RELOC/tex/latex/biblatex-caspervector/caspervector-ay.cbx + RELOC/tex/latex/biblatex-caspervector/caspervector.bbx + RELOC/tex/latex/biblatex-caspervector/caspervector.cbx +catalogue-contact-repository https://gitlab.com/CasperVector/biblatex-caspervector catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-caspervector -catalogue-date 2015-06-18 15:07:31 +0200 +catalogue-date 2018-07-02 05:37:57 +0200 catalogue-license lppl1.3 catalogue-topics biblatex chinese -catalogue-version 0.2.2 +catalogue-version 0.3.3 + +name biblatex-cheatsheet +category Package +revision 44685 +shortdesc BibLaTeX/Biber 'cheat sheet' +relocated 1 +longdesc A BibLaTeX/Biber 'cheat sheet' which I wrote because I wanted +longdesc one to distribute to students, but couldn't find an existing +longdesc one. +containersize 436 +containerchecksum a974a8eeb4282f66ebdc7a57d40c76b0f2bc957249c130d4f97aa9f9749f5091745a87db277c3bef43d0f4e37790a9663949ca3bba3b28a16d37c13bd6029181 +doccontainersize 322392 +doccontainerchecksum a2b9a82afe127d0bfb71f3a481eed3198e27ef35caa5cd08557ed35645f6209e9187f1e0c21d6fa51e6c32d0cf044c0d85373195a5f034c856fb4beec360af13 +docfiles size=85 + RELOC/doc/latex/biblatex-cheatsheet/README details="Readme" + RELOC/doc/latex/biblatex-cheatsheet/biblatex-cheatsheet.pdf details="The document itself" + RELOC/doc/latex/biblatex-cheatsheet/biblatex-cheatsheet.tex +catalogue-ctan /info/biblatex-cheatsheet +catalogue-date 2017-06-24 10:26:01 +0200 +catalogue-license lppl1.3 +catalogue-topics biblatex bibtex-doc name biblatex-chem category Package -revision 35614 -shortdesc A set of biblatex implementations of chemistry-related bibliography styles. +revision 48944 +shortdesc A set of BibLaTeX implementations of chemistry-related bibliography styles relocated 1 longdesc The bundle offers a set of styles to allow chemists to use -longdesc biblatex. The package has complete styles for: all ACS +longdesc BibLaTeX. The package has complete styles for: all ACS longdesc journals; RSC journals using standard (Chem. Commun.) style; longdesc and Angewandte Chem. style, (thus covering a wide range of longdesc journals). A comprehensive set of examples of use is included. -runfiles size=24 - RELOC/tex/latex/biblatex-chem/chem-acs.bbx - RELOC/tex/latex/biblatex-chem/chem-acs.cbx - RELOC/tex/latex/biblatex-chem/chem-angew.bbx - RELOC/tex/latex/biblatex-chem/chem-angew.cbx - RELOC/tex/latex/biblatex-chem/chem-biochem.bbx - RELOC/tex/latex/biblatex-chem/chem-biochem.cbx - RELOC/tex/latex/biblatex-chem/chem-rsc.bbx - RELOC/tex/latex/biblatex-chem/chem-rsc.cbx -docfiles size=400 - RELOC/doc/latex/biblatex-chem/README +containersize 5616 +containerchecksum b37b7cec9dccad241e70d2f7174ce6e31fe54065174bd1c00862d4d41a72cd836f69ce93d6fddbb291b1bd3e7200311da66a20d03a5e63ebd9ffc7844210993c +doccontainersize 923400 +doccontainerchecksum c1bf8e1b270dea266c83598d3e4e56b24f74f2d84f72152f7dc5f2c2b1cb78343f088d0adc1be2a8bf19f6218ea53613a1aa28729b07c650ca86819da93e107b +docfiles size=382 + RELOC/doc/latex/biblatex-chem/README.md details="Readme" RELOC/doc/latex/biblatex-chem/biblatex-chem-acs.pdf RELOC/doc/latex/biblatex-chem/biblatex-chem-acs.tex RELOC/doc/latex/biblatex-chem/biblatex-chem-angew.pdf @@ -16329,37 +31886,72 @@ docfiles size=400 RELOC/doc/latex/biblatex-chem/biblatex-chem-rsc.pdf RELOC/doc/latex/biblatex-chem/biblatex-chem-rsc.tex RELOC/doc/latex/biblatex-chem/biblatex-chem.bib - RELOC/doc/latex/biblatex-chem/biblatex-chem.pdf + RELOC/doc/latex/biblatex-chem/biblatex-chem.pdf details="Package documentation" RELOC/doc/latex/biblatex-chem/biblatex-chem.tex +runfiles size=24 + RELOC/tex/latex/biblatex-chem/chem-acs.bbx + RELOC/tex/latex/biblatex-chem/chem-acs.cbx + RELOC/tex/latex/biblatex-chem/chem-angew.bbx + RELOC/tex/latex/biblatex-chem/chem-angew.cbx + RELOC/tex/latex/biblatex-chem/chem-biochem.bbx + RELOC/tex/latex/biblatex-chem/chem-biochem.cbx + RELOC/tex/latex/biblatex-chem/chem-rsc.bbx + RELOC/tex/latex/biblatex-chem/chem-rsc.cbx catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-chem -catalogue-date 2014-11-18 11:22:28 +0100 +catalogue-date 2018-10-19 10:22:36 +0200 catalogue-license lppl1.3 -catalogue-version 1.1m +catalogue-topics biblatex chemistry journalpub +catalogue-version 1.1w name biblatex-chicago category Package -revision 35015 -shortdesc Chicago style files for biblatex. -relocated 1 -longdesc This is a biblatex style that implements the Chicago 'author- -longdesc date' and 'notes with bibliography' style specifications given -longdesc in the Chicago Manual of Style, 16th edition (support for the -longdesc 15th edition remains, but is 'strongly deprecated'). The style -longdesc implements entry types for citing audio-visual materials. The -longdesc package was previously known as biblatex-chicago-notes-df. -runfiles size=283 +revision 46331 +shortdesc Chicago style files for BibLaTeX +relocated 1 +longdesc This is a BibLaTeX style that implements the Chicago +longdesc 'author-date' and 'notes with bibliography' style +longdesc specifications given in the Chicago Manual of Style, 16th +longdesc edition (support for the 15th edition remains, but is 'strongly +longdesc deprecated'). The style implements entry types for citing +longdesc audio-visual materials. The package was previously known as +longdesc biblatex-chicago-notes-df. +containersize 65676 +containerchecksum 85f50368da0e9497b92c09548c60c7160779fe583a8817a114d625846349dbdb0f9be6813476bd74246016b85badf90733557770094207107fa3d23bdb436783 +doccontainersize 5247144 +doccontainerchecksum aa511c96eed89d10629bf6f47aad832530f1c108a6f5eea64bfdb9c47f377e7b64b69cd55eed2022ab79fb0d93a31574adb9182919b2113976d1ff084898e920 +docfiles size=1580 + RELOC/doc/latex/biblatex-chicago/README details="Readme and usage outline" + RELOC/doc/latex/biblatex-chicago/RELEASE + RELOC/doc/latex/biblatex-chicago/biblatex-chicago.pdf details="Package documentation" + RELOC/doc/latex/biblatex-chicago/biblatex-chicago.tex + RELOC/doc/latex/biblatex-chicago/cms-dates-intro.pdf + RELOC/doc/latex/biblatex-chicago/cms-dates-intro.tex + RELOC/doc/latex/biblatex-chicago/cms-dates-sample.pdf + RELOC/doc/latex/biblatex-chicago/cms-dates-sample.tex + RELOC/doc/latex/biblatex-chicago/cms-legal-sample.pdf + RELOC/doc/latex/biblatex-chicago/cms-legal-sample.tex + RELOC/doc/latex/biblatex-chicago/cms-notes-intro.pdf + RELOC/doc/latex/biblatex-chicago/cms-notes-intro.tex + RELOC/doc/latex/biblatex-chicago/cms-notes-sample.pdf + RELOC/doc/latex/biblatex-chicago/cms-notes-sample.tex + RELOC/doc/latex/biblatex-chicago/cms-trad-appendix.pdf + RELOC/doc/latex/biblatex-chicago/cms-trad-appendix.tex + RELOC/doc/latex/biblatex-chicago/cms-trad-sample.pdf + RELOC/doc/latex/biblatex-chicago/cms-trad-sample.tex + RELOC/doc/latex/biblatex-chicago/dates-test.bib + RELOC/doc/latex/biblatex-chicago/legal-test.bib + RELOC/doc/latex/biblatex-chicago/notes-test.bib +runfiles size=257 RELOC/tex/latex/biblatex-chicago/biblatex-chicago.sty RELOC/tex/latex/biblatex-chicago/chicago-authordate-trad.bbx RELOC/tex/latex/biblatex-chicago/chicago-authordate-trad.cbx RELOC/tex/latex/biblatex-chicago/chicago-authordate.bbx RELOC/tex/latex/biblatex-chicago/chicago-authordate.cbx - RELOC/tex/latex/biblatex-chicago/chicago-authordate15.bbx - RELOC/tex/latex/biblatex-chicago/chicago-authordate15.cbx + RELOC/tex/latex/biblatex-chicago/chicago-dates-common.cbx RELOC/tex/latex/biblatex-chicago/chicago-notes.bbx RELOC/tex/latex/biblatex-chicago/chicago-notes.cbx - RELOC/tex/latex/biblatex-chicago/chicago-notes15.bbx - RELOC/tex/latex/biblatex-chicago/chicago-notes15.cbx RELOC/tex/latex/biblatex-chicago/cms-american.lbx + RELOC/tex/latex/biblatex-chicago/cms-brazilian.lbx RELOC/tex/latex/biblatex-chicago/cms-british.lbx RELOC/tex/latex/biblatex-chicago/cms-finnish.lbx RELOC/tex/latex/biblatex-chicago/cms-french.lbx @@ -16369,65 +31961,83 @@ runfiles size=283 RELOC/tex/latex/biblatex-chicago/cms-norsk.lbx RELOC/tex/latex/biblatex-chicago/cms-norwegian.lbx RELOC/tex/latex/biblatex-chicago/cms-nynorsk.lbx -docfiles size=1300 - RELOC/doc/latex/biblatex-chicago/README - RELOC/doc/latex/biblatex-chicago/RELEASE - RELOC/doc/latex/biblatex-chicago/biblatex-chicago.pdf - RELOC/doc/latex/biblatex-chicago/biblatex-chicago.tex - RELOC/doc/latex/biblatex-chicago/biblatex-chicago15.pdf - RELOC/doc/latex/biblatex-chicago/biblatex-chicago15.tex - RELOC/doc/latex/biblatex-chicago/cms-dates-sample.pdf - RELOC/doc/latex/biblatex-chicago/cms-dates-sample.tex - RELOC/doc/latex/biblatex-chicago/cms-notes-sample.pdf - RELOC/doc/latex/biblatex-chicago/cms-notes-sample.tex - RELOC/doc/latex/biblatex-chicago/cms-trad-sample.pdf - RELOC/doc/latex/biblatex-chicago/cms-trad-sample.tex - RELOC/doc/latex/biblatex-chicago/cms15-dates-sample.pdf - RELOC/doc/latex/biblatex-chicago/cms15-dates-sample.tex - RELOC/doc/latex/biblatex-chicago/cms15-notes-sample.pdf - RELOC/doc/latex/biblatex-chicago/cms15-notes-sample.tex - RELOC/doc/latex/biblatex-chicago/dates-test.bib - RELOC/doc/latex/biblatex-chicago/notes-test.bib + RELOC/tex/latex/biblatex-chicago/cms-swedish.lbx + RELOC/tex/latex/biblatex-chicago/cmsdocs.sty catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-chicago -catalogue-date 2014-08-22 11:24:45 +0200 +catalogue-date 2018-01-16 13:19:32 +0100 catalogue-license lppl1.3 -catalogue-version 0.9.9g +catalogue-topics biblatex +catalogue-version 1.0rc5 + +name biblatex-claves +category Package +revision 43723 +shortdesc A tool to manage claves of old litterature with BibLaTeX +relocated 1 +longdesc When studying antic and medieval literature, we may find many +longdesc different texts published with the same title, or, in contrary, +longdesc the same text published with different titles. To avoid +longdesc confusion, scholars have published claves, which are books +longdesc listing ancient texts, identifying them by an identifier -- a +longdesc number or a string of text. For example, for early +longdesc Christianity, we have the Bibliotheca Hagiographica Graeca, the +longdesc Clavis Apocryphorum Novi Testamenti and other claves. It could +longdesc be useful to print the identifier of a texts in one specific +longdesc clavis, or in many claves. The package allows us to create new +longdesc field for different claves, and to present all these fields in +longdesc a consistent way. +containersize 2184 +containerchecksum 008cb8403f1b35a7fd077f8ac2f33f73ced090ce3d65ce678ecfe90af8ab6fb2b4349342aa838d2d4f1e78d0d87267c7b8206a3377c6490499ee9196498c130f +doccontainersize 90108 +doccontainerchecksum a11a4df38dbeb4c27f30b824c9f1ba230d273e227b8cdbfe5f61268a1a2b7ff3193e79d8e8bedb6f9334df39001b71a3ec78116637745679bf3d67582727371d +docfiles size=31 + RELOC/doc/latex/biblatex-claves/README details="Readme" + RELOC/doc/latex/biblatex-claves/documentation/biblatex-claves-ref.bib + RELOC/doc/latex/biblatex-claves/documentation/biblatex-claves.bib + RELOC/doc/latex/biblatex-claves/documentation/biblatex-claves.pdf details="Package documentation" + RELOC/doc/latex/biblatex-claves/documentation/biblatex-claves.tex + RELOC/doc/latex/biblatex-claves/documentation/latexmkrc + RELOC/doc/latex/biblatex-claves/documentation/makefile + RELOC/doc/latex/biblatex-claves/makefile +runfiles size=2 + RELOC/tex/latex/biblatex-claves/claves.bbx + RELOC/tex/latex/biblatex-claves/claves.dbx +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-claves +catalogue-date 2017-11-19 19:32:20 +0100 +catalogue-license lppl1.3 +catalogue-topics biblatex +catalogue-version 1.2.1 name biblatex-dw category Package -revision 31752 -shortdesc Humanities styles for biblatex. +revision 42649 +shortdesc Humanities styles for BibLaTeX relocated 1 -longdesc A small collection of styles for the biblatex package. It was +longdesc A small collection of styles for the BibLaTeX package. It was longdesc designed for citations in the humanities and offers some -longdesc features that are not provided by the standard biblatex styles. -longdesc The styles are dependent on biblatex (at least version 0.9b) +longdesc features that are not provided by the standard BibLaTeX styles. +longdesc The styles are dependent on BibLaTeX (at least version 0.9b) longdesc and cannot be used without it. Eine kleine Sammlung von Stilen -longdesc fur das Paket biblatex. Es ist auf geisteswissenschaftliche +longdesc fur das Paket BibLaTeX. Es ist auf geisteswissenschaftliche longdesc Zitierweise zugeschnitten und bietet einige Funktionen, die von -longdesc den Standard-Stilen von biblatex nicht direkt bereitgestellt -longdesc werden. Biblatex-dw baut vollstandig auf biblatex auf und kann -longdesc nicht ohne biblatex (mindestens in der Version 0.9b) verwendet +longdesc den Standard-Stilen von BibLaTeX nicht direkt bereitgestellt +longdesc werden. Das Paket baut vollstandig auf BibLaTeX auf und kann +longdesc nicht ohne BibLaTeX (mindestens in der Version 0.9b) verwendet longdesc werden. -runfiles size=35 - RELOC/tex/latex/biblatex-dw/bbx/authortitle-dw.bbx - RELOC/tex/latex/biblatex-dw/bbx/footnote-dw.bbx - RELOC/tex/latex/biblatex-dw/bbx/standard-dw.bbx - RELOC/tex/latex/biblatex-dw/cbx/authortitle-dw.cbx - RELOC/tex/latex/biblatex-dw/cbx/footnote-dw.cbx - RELOC/tex/latex/biblatex-dw/cbx/standard-dw.cbx - RELOC/tex/latex/biblatex-dw/lbx/english-dw.lbx - RELOC/tex/latex/biblatex-dw/lbx/german-dw.lbx -docfiles size=492 +containersize 16432 +containerchecksum faa43e5f4de281747e5cbc22fdcbfb7d03c5c04d68245340e084c4e34f1ff9917c6ccf22a06ae4eefc41f7a5315db15aa8b51f2a8c3ed7c68cd033308fbe99be +doccontainersize 1124296 +doccontainerchecksum d29c64dac41255066a844639e4330193811c62049e4b38600951346d4c126a495fab78458bd322fb3defc4352b765c1a7e7a73b7c64bdfde3a90f3e5a74e4e4c +docfiles size=491 RELOC/doc/latex/biblatex-dw/CHANGES - RELOC/doc/latex/biblatex-dw/LIESMICH - RELOC/doc/latex/biblatex-dw/README + RELOC/doc/latex/biblatex-dw/LIESMICH details="Readme (German)" language="de" + RELOC/doc/latex/biblatex-dw/README details="Readme (English)" language="en" RELOC/doc/latex/biblatex-dw/biblatex-dw-preamble.tex RELOC/doc/latex/biblatex-dw/biblatex-dw-print.tex RELOC/doc/latex/biblatex-dw/biblatex-dw-screen.tex - RELOC/doc/latex/biblatex-dw/biblatex-dw.pdf + RELOC/doc/latex/biblatex-dw/biblatex-dw.pdf details="Package documentation (English)" language="en" RELOC/doc/latex/biblatex-dw/biblatex-dw.tex - RELOC/doc/latex/biblatex-dw/de-biblatex-dw.pdf + RELOC/doc/latex/biblatex-dw/de-biblatex-dw.pdf details="Package documentation (German)" language="de" RELOC/doc/latex/biblatex-dw/de-biblatex-dw.tex RELOC/doc/latex/biblatex-dw/examples/de-authortitle-dw.pdf RELOC/doc/latex/biblatex-dw/examples/de-authortitle-dw.tex @@ -16439,60 +32049,281 @@ docfiles size=492 RELOC/doc/latex/biblatex-dw/examples/en-footnote-dw.pdf RELOC/doc/latex/biblatex-dw/examples/en-footnote-dw.tex RELOC/doc/latex/biblatex-dw/examples/examples-dw.bib +runfiles size=35 + RELOC/tex/latex/biblatex-dw/bbx/authortitle-dw.bbx + RELOC/tex/latex/biblatex-dw/bbx/footnote-dw.bbx + RELOC/tex/latex/biblatex-dw/bbx/standard-dw.bbx + RELOC/tex/latex/biblatex-dw/cbx/authortitle-dw.cbx + RELOC/tex/latex/biblatex-dw/cbx/footnote-dw.cbx + RELOC/tex/latex/biblatex-dw/cbx/standard-dw.cbx + RELOC/tex/latex/biblatex-dw/lbx/english-dw.lbx + RELOC/tex/latex/biblatex-dw/lbx/german-dw.lbx +catalogue-contact-home http://biblatex.dominik-wassenhoven.de catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-dw -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl -catalogue-version 1.6a +catalogue-topics biblatex humanities +catalogue-version 1.7 + +name biblatex-enc +category Package +revision 44627 +shortdesc BibLaTeX style for the Ecole nationale des chartes (Paris) +relocated 1 +longdesc This package provides a citation and bibliography style for use +longdesc with BibLaTeX. It conforms to the bibliographic standards used +longdesc at the Ecole nationale des chartes (Paris), and may be suitable +longdesc for a more general use in historical and philological works. +longdesc The package was initially derived from historische-zeitschrift, +longdesc with the necessary modifications. +containersize 8476 +containerchecksum 6aab8a819ce9a3ec2d6676ab8850c3fc6bb81e5af5c9414555581cc9d164184d18ec550fb0ca67d28d800826356f1c709144ee7d38c0cfbc274179fa813a3a0c +doccontainersize 2284 +doccontainerchecksum ae50544ebdf7bbf9ee708f193493ffa241ba91f0925a2bf03b6bf1ec486586fde3c630fe717f4f2904373c08a2f9a90afca86b50870f87aa0d04430554650223 +docfiles size=2 + RELOC/doc/latex/biblatex-enc/README details="Readme" +runfiles size=13 + RELOC/tex/latex/biblatex-enc/enc.bbx + RELOC/tex/latex/biblatex-enc/enc.cbx +catalogue-contact-bugs https://github.com/Jean-Baptiste-Camps/biblatex-enc/issues +catalogue-contact-repository https://github.com/Jean-Baptiste-Camps/biblatex-enc +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-enc +catalogue-date 2017-06-19 06:38:53 +0200 +catalogue-license lppl1.3 +catalogue-topics biblatex french humanities journalpub +catalogue-version 1.0 + +name biblatex-ext +category Package +revision 50759 +shortdesc Extended BibLaTeX standard styles +relocated 1 +longdesc The BibLaTeX-ext bundle provides styles that slightly extend +longdesc the standard styles that ship with BibLaTeX. The styles offered +longdesc in this bundle provide a simple interface to change some of the +longdesc stylistic decisions made in the standard styles. At the same +longdesc time they stay as close to their standard counterparts as +longdesc possible, so that most customisation methods can be applied +longdesc here as well. +containersize 25352 +containerchecksum 344fe22dc2bf00408faa9abd4a3123d17f63f8ab60fcf4c127be694d14628dae60176a43dda4292ef5fab7ce41954c9299e9e94d3bb7dd24845e28869e5cd0dd +doccontainersize 529388 +doccontainerchecksum ae472fd0f9dbe4fc4336f49e0937153a0fd51688fc6a0bd151679a90c0dacae1521832dde0727724d8b8c3ff31baedd7423f05ed03d9a3feff94209e906d6d88 +docfiles size=207 + RELOC/doc/latex/biblatex-ext/CHANGES.md + RELOC/doc/latex/biblatex-ext/README.md details="Readme" + RELOC/doc/latex/biblatex-ext/biblatex-ext-examples.bib + RELOC/doc/latex/biblatex-ext/biblatex-ext.pdf details="Package documentation" + RELOC/doc/latex/biblatex-ext/biblatex-ext.tex +runfiles size=114 + RELOC/tex/latex/biblatex-ext/biblatex-ext-oa-doiapi.sty + RELOC/tex/latex/biblatex-ext/biblatex-ext-oa.sty + RELOC/tex/latex/biblatex-ext/biblatex-ext-oasymb-l3draw.sty + RELOC/tex/latex/biblatex-ext/biblatex-ext-oasymb-pict2e.sty + RELOC/tex/latex/biblatex-ext/biblatex-ext-oasymb-tikz.sty + RELOC/tex/latex/biblatex-ext/biblatex-ext-tabular.sty + RELOC/tex/latex/biblatex-ext/blxextdoiapi.lua + RELOC/tex/latex/biblatex-ext/ext-alphabetic-verb.bbx + RELOC/tex/latex/biblatex-ext/ext-alphabetic-verb.cbx + RELOC/tex/latex/biblatex-ext/ext-alphabetic.bbx + RELOC/tex/latex/biblatex-ext/ext-alphabetic.cbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-common.bbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-comp.bbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-comp.cbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-ibid.bbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-ibid.cbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-icomp.bbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-icomp.cbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-tcomp.bbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-tcomp.cbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-terse.bbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-terse.cbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-ticomp.bbx + RELOC/tex/latex/biblatex-ext/ext-authortitle-ticomp.cbx + RELOC/tex/latex/biblatex-ext/ext-authortitle.bbx + RELOC/tex/latex/biblatex-ext/ext-authortitle.cbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-common.bbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-comp.bbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-comp.cbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-ecomp.bbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-ecomp.cbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-ibid.bbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-ibid.cbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-icomp.bbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-icomp.cbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-iecomp.bbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-iecomp.cbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-tcomp.bbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-tcomp.cbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-tecomp.bbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-tecomp.cbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-terse.bbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-terse.cbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-ticomp.bbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-ticomp.cbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-tiecomp.bbx + RELOC/tex/latex/biblatex-ext/ext-authoryear-tiecomp.cbx + RELOC/tex/latex/biblatex-ext/ext-authoryear.bbx + RELOC/tex/latex/biblatex-ext/ext-authoryear.cbx + RELOC/tex/latex/biblatex-ext/ext-biblatex-aux.def + RELOC/tex/latex/biblatex-ext/ext-dashed-common.bbx + RELOC/tex/latex/biblatex-ext/ext-numeric-comp.bbx + RELOC/tex/latex/biblatex-ext/ext-numeric-comp.cbx + RELOC/tex/latex/biblatex-ext/ext-numeric-verb.bbx + RELOC/tex/latex/biblatex-ext/ext-numeric-verb.cbx + RELOC/tex/latex/biblatex-ext/ext-numeric.bbx + RELOC/tex/latex/biblatex-ext/ext-numeric.cbx + RELOC/tex/latex/biblatex-ext/ext-standard.bbx + RELOC/tex/latex/biblatex-ext/ext-verbose-ibid.bbx + RELOC/tex/latex/biblatex-ext/ext-verbose-ibid.cbx + RELOC/tex/latex/biblatex-ext/ext-verbose-inote.bbx + RELOC/tex/latex/biblatex-ext/ext-verbose-inote.cbx + RELOC/tex/latex/biblatex-ext/ext-verbose-note.bbx + RELOC/tex/latex/biblatex-ext/ext-verbose-note.cbx + RELOC/tex/latex/biblatex-ext/ext-verbose-trad1.bbx + RELOC/tex/latex/biblatex-ext/ext-verbose-trad1.cbx + RELOC/tex/latex/biblatex-ext/ext-verbose-trad2.bbx + RELOC/tex/latex/biblatex-ext/ext-verbose-trad2.cbx + RELOC/tex/latex/biblatex-ext/ext-verbose-trad3.bbx + RELOC/tex/latex/biblatex-ext/ext-verbose-trad3.cbx + RELOC/tex/latex/biblatex-ext/ext-verbose.bbx + RELOC/tex/latex/biblatex-ext/ext-verbose.cbx +catalogue-contact-bugs https://github.com/moewew/biblatex-ext/issues +catalogue-contact-home https://github.com/moewew/biblatex-ext +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-ext +catalogue-date 2019-04-04 14:55:48 +0200 +catalogue-license lppl1.3c +catalogue-topics biblatex +catalogue-version 0.7a name biblatex-fiwi category Package -revision 37721 -shortdesc Biblatex styles for use in German humanities. +revision 45876 +shortdesc BibLaTeX styles for use in German humanities relocated 1 -longdesc The package provides a collection of styles for biblatex -longdesc (version 1.7 is required, currently). It was designed for +longdesc The package provides a collection of styles for BibLaTeX +longdesc (version 3.5 is required, currently). It was designed for longdesc citations in German Humanities, especially film studies, and longdesc offers some features that are not provided by the standard -longdesc biblatex styles. The style is highly optimized for documents +longdesc BibLaTeX styles. The style is highly optimized for documents longdesc written in German, and the main documentation is only available longdesc in German. -runfiles size=27 - RELOC/tex/latex/biblatex-fiwi/fiwi-yearbeginning.bbx - RELOC/tex/latex/biblatex-fiwi/fiwi.bbx - RELOC/tex/latex/biblatex-fiwi/fiwi.cbx - RELOC/tex/latex/biblatex-fiwi/fiwi.dbx - RELOC/tex/latex/biblatex-fiwi/fiwi2.bbx - RELOC/tex/latex/biblatex-fiwi/fiwi2.cbx - RELOC/tex/latex/biblatex-fiwi/fiwi2.dbx -docfiles size=228 - RELOC/doc/latex/biblatex-fiwi/README - RELOC/doc/latex/biblatex-fiwi/biblatex-fiwi.pdf +containersize 16768 +containerchecksum 72b1e41ac55403f144529fd5cbd88f51dfd61cd637bd8e6427a2714d3684ffa37774c698475994f1481442cc8eb336d8de398d55b3df28e5e1615b9cd74cef27 +doccontainersize 595408 +doccontainerchecksum 37fd37d39fee963af8567cf27cd266597175ccebe20f016c7dda699d95e6f7fd0408a57f9061b98996a6ce8eab04a8ed376e6e29b5cb41635d004d24082e91be +docfiles size=219 + RELOC/doc/latex/biblatex-fiwi/README details="Readme" + RELOC/doc/latex/biblatex-fiwi/biblatex-fiwi.pdf details="Package documentation" language="de" RELOC/doc/latex/biblatex-fiwi/biblatex-fiwi.tex + RELOC/doc/latex/biblatex-fiwi/diss.xdy + RELOC/doc/latex/biblatex-fiwi/dissff.xdy RELOC/doc/latex/biblatex-fiwi/example-biblatex-fiwi-options.pdf RELOC/doc/latex/biblatex-fiwi/example-biblatex-fiwi-options.tex + RELOC/doc/latex/biblatex-fiwi/example-biblatex-fiwi-xindy.pdf + RELOC/doc/latex/biblatex-fiwi/example-biblatex-fiwi-xindy.tex RELOC/doc/latex/biblatex-fiwi/example-biblatex-fiwi.pdf RELOC/doc/latex/biblatex-fiwi/example-biblatex-fiwi.tex - RELOC/doc/latex/biblatex-fiwi/example-biblatex-fiwi2-options RELOC/doc/latex/biblatex-fiwi/example-biblatex-fiwi2-options.pdf - RELOC/doc/latex/biblatex-fiwi/example-biblatex-fiwi2.pdf - RELOC/doc/latex/biblatex-fiwi/example-biblatex-fiwi2.tex + RELOC/doc/latex/biblatex-fiwi/example-biblatex-fiwi2-options.tex RELOC/doc/latex/biblatex-fiwi/examples.bib +runfiles size=33 + RELOC/tex/latex/biblatex-fiwi/fiwi-yearbeginning.bbx + RELOC/tex/latex/biblatex-fiwi/fiwi.bbx + RELOC/tex/latex/biblatex-fiwi/fiwi.cbx + RELOC/tex/latex/biblatex-fiwi/fiwi.dbx + RELOC/tex/latex/biblatex-fiwi/fiwi2.bbx + RELOC/tex/latex/biblatex-fiwi/fiwi2.cbx + RELOC/tex/latex/biblatex-fiwi/fiwi2.dbx catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-fiwi -catalogue-date 2015-06-30 13:33:30 +0200 +catalogue-date 2017-11-21 15:39:47 +0100 catalogue-license lppl1.3 catalogue-topics biblatex humanities -catalogue-version 1.3 +catalogue-version 1.7 + +name biblatex-gb7714-2015 +category Package +revision 50661 +shortdesc A BibLaTeX implementation of the GBT7714-2015 bibliography style for Chinese users +relocated 1 +longdesc This package provides an implementation of the GBT7714-2015 +longdesc bibliography style. This implementation follows the +longdesc GBT7714-2015 standard and can be used by simply loading +longdesc BibLaTeX with the appropriate option. A demonstration database +longdesc is provided to show how to format input for the style. +containersize 35716 +containerchecksum e55d2670b88a1491d6ed714fc842c84cd3ef0d5e571eb6c1a6615771ae4804451815636c34b287458604a2aa97af16f5a01e7e2b016a2e755f70d64ddda1cb09 +doccontainersize 1384168 +doccontainerchecksum d0dd6f36a78582a17d34454f41484d9abb630fcf17b412995f0f126210035731dfc7d9af4444c84b7dc5ac1e5e1a7060b4e0bb66bfb8bb6351849f0f1bea0b72 +docfiles size=481 + RELOC/doc/latex/biblatex-gb7714-2015/README.md details="Readme" + RELOC/doc/latex/biblatex-gb7714-2015/biblatex-gb7714-2015-preamble.tex + RELOC/doc/latex/biblatex-gb7714-2015/biblatex-gb7714-2015.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/biblatex-gb7714-2015/biblatex-gb7714-2015.tex + RELOC/doc/latex/biblatex-gb7714-2015/biblatex-map-test.bib + RELOC/doc/latex/biblatex-gb7714-2015/biblatex-map.py + RELOC/doc/latex/biblatex-gb7714-2015/biblatex_check.py + RELOC/doc/latex/biblatex-gb7714-2015/example.bib + RELOC/doc/latex/biblatex-gb7714-2015/gb7714texteg.dat + RELOC/doc/latex/biblatex-gb7714-2015/gb7714texttobib.pl + RELOC/doc/latex/biblatex-gb7714-2015/gbT7714-2015.tex + RELOC/doc/latex/biblatex-gb7714-2015/gbT7714-2015eg.tex + RELOC/doc/latex/biblatex-gb7714-2015/gbT7714-2015fmt.tex + RELOC/doc/latex/biblatex-gb7714-2015/gbT7714-2015lan.tex + RELOC/doc/latex/biblatex-gb7714-2015/gbT7714-2015ms.tex + RELOC/doc/latex/biblatex-gb7714-2015/gbT7714-2015thesis.tex + RELOC/doc/latex/biblatex-gb7714-2015/readme-BibLatex-Check.md + RELOC/doc/latex/biblatex-gb7714-2015/readme-BibLatex-map.md +runfiles size=146 + RELOC/tex/latex/biblatex-gb7714-2015/chinese-erj.bbx + RELOC/tex/latex/biblatex-gb7714-2015/chinese-erj.cbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015-gbk.def + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015.bbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015.cbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015ay.bbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015ay.cbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015ms.bbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015ms.cbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015mx.bbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015mx.cbx +catalogue-contact-repository https://github.com/hushidong/biblatex-gb7714-2015 +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-gb7714-2015 +catalogue-date 2019-03-30 10:39:22 +0100 +catalogue-license lppl1.3 +catalogue-topics biblatex chinese +catalogue-version 1.0rm name biblatex-gost category Package -revision 37210 -shortdesc Biblatex support for GOST standard bibliographies. +revision 46709 +shortdesc BibLaTeX support for GOST standard bibliographies relocated 1 -longdesc The package provides biblatex support for Russian bibliography +longdesc The package provides BibLaTeX support for Russian bibliography longdesc style GOST 7.0.5-2008 -runfiles size=65 +containersize 21024 +containerchecksum bba80e3d8452ff64b54f2f71ba7440f67c823583937b1ac82c6f63e61fb72e69d08ffd01ecb76753ba9ccd9defeb2233d426afe474605134d04659b3f1b39a19 +doccontainersize 1139096 +doccontainerchecksum e6187b9afacf87fed1877057532a0fadd6dab04cd5de084931cb66a2ae2bf8ff4100eaa1d7aa43dd89c208c6cd512b36173b83b82e37829cbf455362be683f42 +docfiles size=388 + RELOC/doc/latex/biblatex-gost/README.md details="Readme" + RELOC/doc/latex/biblatex-gost/biblatex-gost-examples.bib + RELOC/doc/latex/biblatex-gost/biblatex-gost-examples.pdf + RELOC/doc/latex/biblatex-gost/biblatex-gost-examples.tex + RELOC/doc/latex/biblatex-gost/biblatex-gost.pdf details="Package documentation" language="ru" + RELOC/doc/latex/biblatex-gost/biblatex-gost.tex + RELOC/doc/latex/biblatex-gost/ltxdockit.cfg +runfiles size=82 + RELOC/tex/latex/biblatex-gost/american-gost.lbx RELOC/tex/latex/biblatex-gost/biblatex-gost.dbx RELOC/tex/latex/biblatex-gost/biblatex-gost.def + RELOC/tex/latex/biblatex-gost/brazilian-gost.lbx + RELOC/tex/latex/biblatex-gost/british-gost.lbx + RELOC/tex/latex/biblatex-gost/catalan-gost.lbx + RELOC/tex/latex/biblatex-gost/croatian-gost.lbx + RELOC/tex/latex/biblatex-gost/english-gost.lbx + RELOC/tex/latex/biblatex-gost/french-gost.lbx + RELOC/tex/latex/biblatex-gost/galician-gost.lbx + RELOC/tex/latex/biblatex-gost/german-gost.lbx RELOC/tex/latex/biblatex-gost/gost-alphabetic-min.bbx RELOC/tex/latex/biblatex-gost/gost-alphabetic-min.cbx RELOC/tex/latex/biblatex-gost/gost-alphabetic-min.dbx @@ -16524,100 +32355,227 @@ runfiles size=65 RELOC/tex/latex/biblatex-gost/gost-numeric.cbx RELOC/tex/latex/biblatex-gost/gost-numeric.dbx RELOC/tex/latex/biblatex-gost/gost-standard.bbx + RELOC/tex/latex/biblatex-gost/greek-gost.lbx + RELOC/tex/latex/biblatex-gost/icelandic-gost.lbx + RELOC/tex/latex/biblatex-gost/italian-gost.lbx + RELOC/tex/latex/biblatex-gost/portuguese-gost.lbx RELOC/tex/latex/biblatex-gost/russian-gost.lbx -docfiles size=298 - RELOC/doc/latex/biblatex-gost/README - RELOC/doc/latex/biblatex-gost/biblatex-gost-examples.bib - RELOC/doc/latex/biblatex-gost/biblatex-gost-examples.pdf - RELOC/doc/latex/biblatex-gost/biblatex-gost-examples.tex - RELOC/doc/latex/biblatex-gost/biblatex-gost.pdf - RELOC/doc/latex/biblatex-gost/biblatex-gost.tex - RELOC/doc/latex/biblatex-gost/ltxdockit.cfg + RELOC/tex/latex/biblatex-gost/slovene-gost.lbx + RELOC/tex/latex/biblatex-gost/spanish-gost.lbx +catalogue-also gost +catalogue-contact-repository https://github.com/odomanov/biblatex-gost/ catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-gost -catalogue-date 2015-05-05 17:35:21 +0200 -catalogue-license lppl1.3 -catalogue-version 1.3 +catalogue-date 2018-02-21 09:43:10 +0100 +catalogue-license lppl1.3c +catalogue-topics biblatex std-conform russian +catalogue-version 1.17 name biblatex-historian category Package revision 19787 -shortdesc A Biblatex style. +shortdesc A BibLaTeX style relocated 1 -longdesc A biblatex style, based on the Turabian Manual (a version of +longdesc A BibLaTeX style, based on the Turabian Manual (a version of longdesc Chicago). +containersize 24464 +containerchecksum bba5cedd64fcf0c0cfbf9b56c66838141917ba1e7c2f27aea5bda44261ba28366b465415e3674a2ce398812d5cefbb2727c7e5e1adf53a2d9779754849664502 +doccontainersize 578372 +doccontainerchecksum ed87ab74fd06ccdfa0923289dcd7a37df695fdf76003aa7ab142c9d924fb69a81430ab7651314a9a391b9114dc2c2d63ffe94461bb00fd33d97ac9e8c5b2a8cf +docfiles size=230 + RELOC/doc/latex/biblatex-historian/README.txt + RELOC/doc/latex/biblatex-historian/historian.bib + RELOC/doc/latex/biblatex-historian/historian.pdf details="Package documentation" runfiles size=40 RELOC/tex/latex/biblatex-historian/historian.bbx RELOC/tex/latex/biblatex-historian/historian.cbx RELOC/tex/latex/biblatex-historian/historian.lbx -docfiles size=230 - RELOC/doc/latex/biblatex-historian/README.txt - RELOC/doc/latex/biblatex-historian/historian.bib - RELOC/doc/latex/biblatex-historian/historian.pdf catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-historian -catalogue-date 2012-04-27 15:08:24 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics humanities biblatex catalogue-version 0.4 name biblatex-ieee category Package -revision 36497 -shortdesc Ieee style files for biblatex. +revision 48448 +shortdesc IEEE style files for BibLaTeX relocated 1 -longdesc This is a biblatex style that implements the bibliography style -longdesc of the IEEE for biblatex. The implementation follows standard -longdesc biblatex conventions, and can be used simply by loading -longdesc biblatex with the appropriate option: +longdesc This is a BibLaTeX style that implements the bibliography style +longdesc of the IEEE for BibLaTeX. The implementation follows standard +longdesc BibLaTeX conventions, and can be used simply by loading +longdesc BibLaTeX with the appropriate option: longdesc \usepackage[style=ieee]{biblatex} A demonstration database is longdesc provided to show how to format input for the style. +longdesc biblatex-ieee requires BibLaTeX 2.7 or later, and works with +longdesc both BibTeX and Biber as the database back-end. +containersize 5140 +containerchecksum d9f0de9d4c158c6d35d0a89a5ba526eaa04bd976889896e73f27c36b67f4906b4463df68409277234a3cc77c3cbf008f8256bda8fdce02206d983b3fbd4352c4 +doccontainersize 557376 +doccontainerchecksum 91908e2c3755d3e5fb5438932b0164dd14e5580a042f574b99781ad59d5bb0fe0af7b65a4f0a59fbc6c56c737e62a339aba56f1dbe0c3afa666a863cee0b9411 +docfiles size=175 + RELOC/doc/latex/biblatex-ieee/LICENSE.md + RELOC/doc/latex/biblatex-ieee/README.md details="Readme" + RELOC/doc/latex/biblatex-ieee/biblatex-ieee-alphabetic.pdf + RELOC/doc/latex/biblatex-ieee/biblatex-ieee-alphabetic.tex + RELOC/doc/latex/biblatex-ieee/biblatex-ieee.bib + RELOC/doc/latex/biblatex-ieee/biblatex-ieee.pdf details="Package documentation" + RELOC/doc/latex/biblatex-ieee/biblatex-ieee.tex runfiles size=9 RELOC/tex/latex/biblatex-ieee/ieee-alphabetic.bbx RELOC/tex/latex/biblatex-ieee/ieee-alphabetic.cbx RELOC/tex/latex/biblatex-ieee/ieee.bbx RELOC/tex/latex/biblatex-ieee/ieee.cbx -docfiles size=174 - RELOC/doc/latex/biblatex-ieee/README - RELOC/doc/latex/biblatex-ieee/biblatex-ieee-alphabetic.pdf - RELOC/doc/latex/biblatex-ieee/biblatex-ieee-alphabetic.tex - RELOC/doc/latex/biblatex-ieee/biblatex-ieee.bib - RELOC/doc/latex/biblatex-ieee/biblatex-ieee.pdf - RELOC/doc/latex/biblatex-ieee/biblatex-ieee.tex + RELOC/tex/latex/biblatex-ieee/magyar-ieee.lbx catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-ieee -catalogue-date 2015-03-12 17:10:44 +0100 +catalogue-date 2018-08-21 09:59:57 +0200 +catalogue-license lppl1.3 +catalogue-topics biblatex journalpub +catalogue-version 1.3 + +name biblatex-ijsra +category Package +revision 41634 +shortdesc BibLaTeX style for the International Journal of Student Research in Archaeology +relocated 1 +longdesc BibLaTeX style used for the journal International Journal of +longdesc Student Research in Archaeology. +containersize 1332 +containerchecksum 040efc5b43e2642251921bcc49db1ae2e00342100d302bca24e2b7b11d1724797f1fe7aa254d01b35d1dfa316f2b0f739664f275031c498b157bb652c6aaef44 +doccontainersize 49096 +doccontainerchecksum 36cef635b4603606d36f13b489320e10fad48869b8cdbe78d6f81ca9f3caee0f3e14e408236b1f18e6c7cbf3cd414ed8eb2863058b31e761b4355c6ff1230dd3 +docfiles size=16 + RELOC/doc/latex/biblatex-ijsra/README.md details="Readme" + RELOC/doc/latex/biblatex-ijsra/biblatex-ijsra.pdf details="Package documentation" + RELOC/doc/latex/biblatex-ijsra/biblatex-ijsra.tex +runfiles size=2 + RELOC/tex/latex/biblatex-ijsra/ijsra.bbx + RELOC/tex/latex/biblatex-ijsra/ijsra.cbx +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-ijsra +catalogue-date 2016-07-07 05:41:56 +0200 +catalogue-license lppl1.3 +catalogue-topics biblio biblatex +catalogue-version 0.1 + +name biblatex-iso690 +category Package +revision 44066 +shortdesc BibLaTeX style for ISO 690 standard +relocated 1 +longdesc The package provides a bibliography and citation style which +longdesc conforms to the latest revision of the international standard +longdesc ISO 690:2010. The implementation follows BibLaTeX conventions +longdesc and requires BibLaTeX [?] 3.4 and biber [?] 2.5. +containersize 6164 +containerchecksum f9fdbc47e9d655a525d5f02a82d45ddc89cbd2a7ab8f3827996bec5c28c3e6f3f8ad5524ab129a86b235bebd2c3005dd2abdf121bfa419292a09d0915ec0badf +doccontainersize 176392 +doccontainerchecksum ff6a45de0d40f99dbd55402cd4aa19fe4eac71a1e65376241ea3a4fead3370208acefc8bb37595c8bf380aa00d2acdc7657d195df8e62fef49c389d0e698bfee +docfiles size=49 + RELOC/doc/latex/biblatex-iso690/README.md details="Readme" + RELOC/doc/latex/biblatex-iso690/biblatex-iso690.pdf details="Package documentation" + RELOC/doc/latex/biblatex-iso690/biblatex-iso690.tex + RELOC/doc/latex/biblatex-iso690/mybib.bib +runfiles size=21 + RELOC/tex/latex/biblatex-iso690/czech-iso.lbx + RELOC/tex/latex/biblatex-iso690/english-iso.lbx + RELOC/tex/latex/biblatex-iso690/german-iso.lbx + RELOC/tex/latex/biblatex-iso690/iso-alphabetic.bbx + RELOC/tex/latex/biblatex-iso690/iso-alphabetic.cbx + RELOC/tex/latex/biblatex-iso690/iso-authortitle.bbx + RELOC/tex/latex/biblatex-iso690/iso-authortitle.cbx + RELOC/tex/latex/biblatex-iso690/iso-authortitle.dbx + RELOC/tex/latex/biblatex-iso690/iso-authoryear.bbx + RELOC/tex/latex/biblatex-iso690/iso-authoryear.cbx + RELOC/tex/latex/biblatex-iso690/iso-authoryear.dbx + RELOC/tex/latex/biblatex-iso690/iso-fullcite.cbx + RELOC/tex/latex/biblatex-iso690/iso-numeric.bbx + RELOC/tex/latex/biblatex-iso690/iso-numeric.cbx + RELOC/tex/latex/biblatex-iso690/iso-numeric.dbx + RELOC/tex/latex/biblatex-iso690/iso.bbx + RELOC/tex/latex/biblatex-iso690/slovak-iso.lbx +catalogue-contact-repository https://github.com/michal-h21/biblatex-iso690 +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-iso690 +catalogue-date 2017-04-26 20:10:54 +0200 catalogue-license lppl1.3 -catalogue-version 1.1k +catalogue-topics biblatex +catalogue-version 0.3.2 name biblatex-juradiss category Package revision 29252 -shortdesc Biblatex stylefiles for German law thesis. +shortdesc BibLaTeX stylefiles for German law thesis relocated 1 longdesc The package provides a style for use in typesetting a German -longdesc law thesis with LaTeX. The package (using biblatex) is based on +longdesc law thesis with LaTeX. The package (using BibLaTeX) is based on longdesc biblatex-dw and uses biber. -runfiles size=7 - RELOC/tex/latex/biblatex-juradiss/biblatex-juradiss.bbx - RELOC/tex/latex/biblatex-juradiss/biblatex-juradiss.cbx +containersize 5840 +containerchecksum 48e5d926b24752a8138b1094ba47955e9f8d479d3572c2c81d727824e0e5a6243cad37d3a61f1d28163b5bddec6ceb2b35a5f19aff722980eae350ac9382cdd9 +doccontainersize 138024 +doccontainerchecksum 573378ed40ce0a3efd0c47bf0a32d146543e16b80dbff7935ab980e82de61a1d8023688d59fc2df001a3415b9c73bfbbeae3ce4c240c2ea958a65d6d2003274d docfiles size=60 - RELOC/doc/latex/biblatex-juradiss/README + RELOC/doc/latex/biblatex-juradiss/README details="Readme" RELOC/doc/latex/biblatex-juradiss/biber.conf RELOC/doc/latex/biblatex-juradiss/biblatex-juradiss.pdf RELOC/doc/latex/biblatex-juradiss/biblatex-juradiss.tex +runfiles size=7 + RELOC/tex/latex/biblatex-juradiss/biblatex-juradiss.bbx + RELOC/tex/latex/biblatex-juradiss/biblatex-juradiss.cbx catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-juradiss -catalogue-date 2013-03-29 23:21:06 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics legal dissertation biblatex catalogue-version 0.1g +name biblatex-lni +category Package +revision 49935 +shortdesc LNI style for BibLaTeX +relocated 1 +longdesc BibLaTeX style for the Lecture Notes in Informatics, which is +longdesc published by the Gesellschaft fur Informatik (GI e.V.). +containersize 2904 +containerchecksum 9089117cc653cb9251622299b20d79525ae9623661de402732c9b9f47b2b296cc0b756bda279487f5d042316693ac624b18352dcfd04e6cec436a402b9bbba57 +doccontainersize 9700 +doccontainerchecksum 23435bb5cdcc7cfaa58d732582e23d3a23589ee064122b231794f17ecd0137e7a4a0e21057835d3925c149d637a7bd12270b4dd05cff6259f103498e0989ac66 +docfiles size=11 + RELOC/doc/latex/biblatex-lni/CHANGELOG.md + RELOC/doc/latex/biblatex-lni/LICENSE + RELOC/doc/latex/biblatex-lni/LNI-examples.bib + RELOC/doc/latex/biblatex-lni/LNI-test-de.tex + RELOC/doc/latex/biblatex-lni/LNI-test-en.tex + RELOC/doc/latex/biblatex-lni/README.md details="Readme" +runfiles size=6 + RELOC/tex/latex/biblatex-lni/LNI-english.lbx + RELOC/tex/latex/biblatex-lni/LNI-ngerman.lbx + RELOC/tex/latex/biblatex-lni/LNI.bbx + RELOC/tex/latex/biblatex-lni/LNI.cbx +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-lni +catalogue-date 2019-02-03 22:46:22 +0100 +catalogue-license lppl1.3 +catalogue-topics biblatex journalpub +catalogue-version 0.5 + name biblatex-luh-ipw category Package revision 32180 -shortdesc Biblatex styles for social sciences. +shortdesc BibLaTeX styles for social sciences relocated 1 -longdesc The bundle is a small collection of styles for biblatex. It was +longdesc The bundle is a small collection of styles for BibLaTeX. It was longdesc designed for citations in the Humanities, following the longdesc guidelines of style of the institutes for the social sciences longdesc of the Leibniz University Hannover/LUH (especially the -longdesc Institute of Political Science). The bundle depends on biblatex +longdesc Institute of Political Science). The bundle depends on BibLaTeX longdesc (version 1.1 at least) and cannot be used without it. +containersize 5372 +containerchecksum e58e2522d9a4711454166c816b971bbf6bab1f8d1c7eea122933c8b7955a49ad294df410fe0a75375134b77d442bd5214ee25d56d766be7e5843e4ac14d7ef5a +doccontainersize 358604 +doccontainerchecksum bbfa55884d3dd3167618f6f9595c301e5faeab0a35cd058cc68922a2aa8362cb3a9d035eaea06ee43c428dd89d23538b15bd4c79c1e095ad10aa4d1d7184f92d +docfiles size=93 + RELOC/doc/latex/biblatex-luh-ipw/README details="Readme" + RELOC/doc/latex/biblatex-luh-ipw/biblatex-luh-ipw-preamble.tex + RELOC/doc/latex/biblatex-luh-ipw/biblatex-luh-ipw-print.tex + RELOC/doc/latex/biblatex-luh-ipw/biblatex-luh-ipw-screen.tex + RELOC/doc/latex/biblatex-luh-ipw/de-biblatex-luh-ipw.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/biblatex-luh-ipw/de-biblatex-luh-ipw.tex runfiles size=11 RELOC/tex/latex/biblatex-luh-ipw/bbx/authoryear-luh-ipw.bbx RELOC/tex/latex/biblatex-luh-ipw/bbx/standard-luh-ipw.bbx @@ -16627,196 +32585,396 @@ runfiles size=11 RELOC/tex/latex/biblatex-luh-ipw/cbx/verbose-inote-luh-ipw.cbx RELOC/tex/latex/biblatex-luh-ipw/lbx/english-luh-ipw.lbx RELOC/tex/latex/biblatex-luh-ipw/lbx/german-luh-ipw.lbx -docfiles size=93 - RELOC/doc/latex/biblatex-luh-ipw/README - RELOC/doc/latex/biblatex-luh-ipw/biblatex-luh-ipw-preamble.tex - RELOC/doc/latex/biblatex-luh-ipw/biblatex-luh-ipw-print.tex - RELOC/doc/latex/biblatex-luh-ipw/biblatex-luh-ipw-screen.tex - RELOC/doc/latex/biblatex-luh-ipw/de-biblatex-luh-ipw.pdf - RELOC/doc/latex/biblatex-luh-ipw/de-biblatex-luh-ipw.tex catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-luh-ipw -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics biblatex humanities catalogue-version 0.3 name biblatex-manuscripts-philology category Package -revision 37237 -shortdesc Manage classical manuscripts with biblatex. +revision 48786 +shortdesc Manage classical manuscripts with BibLaTeX relocated 1 longdesc The package adds a new entry type: @manuscript to manage longdesc manuscript in classical philology, for example to prepare a longdesc critical edition. -runfiles size=9 +containersize 4692 +containerchecksum 3e56168bf54dfa78e5eca8ea15376f7748c11f7b9eb64c1b27418bd0cdc650bb1e9958468739e28641a77c8ad886968f77de5dddfd674f3b92d0b9ffd6aef9af +doccontainersize 145280 +doccontainerchecksum 169c557a5a54252440abf7a5a284c8c260ca42d7f07c3a383527c71f216c6daa2c9502ed46a4f170ff75856040911bc78c13d8b1b3ddababfce179743c41e10c +docfiles size=46 + RELOC/doc/latex/biblatex-manuscripts-philology/README details="Readme" + RELOC/doc/latex/biblatex-manuscripts-philology/documentation/biblatex-manuscripts-philology-example.bib + RELOC/doc/latex/biblatex-manuscripts-philology/documentation/biblatex-manuscripts-philology-example.pdf details="Example of use" + RELOC/doc/latex/biblatex-manuscripts-philology/documentation/biblatex-manuscripts-philology-example.tex + RELOC/doc/latex/biblatex-manuscripts-philology/documentation/biblatex-manuscripts-philology.pdf details="Package documentation" + RELOC/doc/latex/biblatex-manuscripts-philology/documentation/biblatex-manuscripts-philology.tex + RELOC/doc/latex/biblatex-manuscripts-philology/documentation/makefile + RELOC/doc/latex/biblatex-manuscripts-philology/makefile +runfiles size=12 RELOC/tex/latex/biblatex-manuscripts-philology/english-manuscripts.lbx RELOC/tex/latex/biblatex-manuscripts-philology/french-manuscripts.lbx + RELOC/tex/latex/biblatex-manuscripts-philology/italian-manuscripts.lbx + RELOC/tex/latex/biblatex-manuscripts-philology/manuscripts-NewBibliographyString.sty RELOC/tex/latex/biblatex-manuscripts-philology/manuscripts-noautoshorthand.bbx RELOC/tex/latex/biblatex-manuscripts-philology/manuscripts-noautoshorthand.dbx RELOC/tex/latex/biblatex-manuscripts-philology/manuscripts-shared.bbx RELOC/tex/latex/biblatex-manuscripts-philology/manuscripts-shared.dbx RELOC/tex/latex/biblatex-manuscripts-philology/manuscripts.bbx RELOC/tex/latex/biblatex-manuscripts-philology/manuscripts.dbx -docfiles size=39 - RELOC/doc/latex/biblatex-manuscripts-philology/README - RELOC/doc/latex/biblatex-manuscripts-philology/documentation/biblatex-manuscripts-philology.pdf - RELOC/doc/latex/biblatex-manuscripts-philology/documentation/biblatex-manuscripts-philology.tex - RELOC/doc/latex/biblatex-manuscripts-philology/documentation/example.bib - RELOC/doc/latex/biblatex-manuscripts-philology/documentation/example.pdf - RELOC/doc/latex/biblatex-manuscripts-philology/documentation/example.tex - RELOC/doc/latex/biblatex-manuscripts-philology/documentation/makefile - RELOC/doc/latex/biblatex-manuscripts-philology/makefile +catalogue-contact-bugs https://github.com/maieul/biblatex-manuscripts-philology/issues +catalogue-contact-repository https://github.com/maieul/biblatex-manuscripts-philology catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-manuscripts-philology -catalogue-date 2015-05-06 07:33:48 +0200 +catalogue-date 2018-09-29 20:53:18 +0200 catalogue-license lppl1.3 -catalogue-version 1.6.1a +catalogue-topics biblatex humanities +catalogue-version 2.1.0 name biblatex-mla category Package -revision 30249 -shortdesc MLA style files for biblatex. +revision 42445 +shortdesc MLA style files for BibLaTeX relocated 1 -longdesc The package provides biblatex support for citations in the +longdesc The package provides BibLaTeX support for citations in the longdesc format specified by the MLA handbook. -runfiles size=27 +containersize 15540 +containerchecksum b6e3f7b5323e0246c1b2e1ee1c767b624e59d4d1ab9aac4bc24d59c15d1f8228695ccc072b30bbe1f4a2de24fb6eeee3c81095fa572f3e27a09f0de7c5b3994e +doccontainersize 1273944 +doccontainerchecksum 87e9b73615b404f8b676b8a4158edac551f8dd3712e1f6ecaec473789df884c85d6ba48eafad428eebce10ff6f0c13b382fb4e4c79cc960b860565bedf7f935f +docfiles size=420 + RELOC/doc/latex/biblatex-mla/CHANGES + RELOC/doc/latex/biblatex-mla/README details="Readme" + RELOC/doc/latex/biblatex-mla/doc/biblatex-mla.pdf details="Package documentation" + RELOC/doc/latex/biblatex-mla/doc/biblatex-mla.tex + RELOC/doc/latex/biblatex-mla/doc/citation-examples-new.pdf + RELOC/doc/latex/biblatex-mla/doc/citation-examples-new.tex + RELOC/doc/latex/biblatex-mla/doc/citation-examples.pdf + RELOC/doc/latex/biblatex-mla/doc/citation-examples.tex + RELOC/doc/latex/biblatex-mla/doc/handbooksamplebib-new.pdf + RELOC/doc/latex/biblatex-mla/doc/handbooksamplebib-new.tex + RELOC/doc/latex/biblatex-mla/doc/handbooksamplebib.pdf + RELOC/doc/latex/biblatex-mla/doc/handbooksamplebib.tex + RELOC/doc/latex/biblatex-mla/doc/handbooksamples-new.bib + RELOC/doc/latex/biblatex-mla/doc/handbooksamples.bib + RELOC/doc/latex/biblatex-mla/doc/samples.bib +runfiles size=44 RELOC/tex/latex/biblatex-mla/american-mla.lbx RELOC/tex/latex/biblatex-mla/english-mla.lbx RELOC/tex/latex/biblatex-mla/italian-mla.lbx + RELOC/tex/latex/biblatex-mla/mla-new.bbx + RELOC/tex/latex/biblatex-mla/mla-new.cbx RELOC/tex/latex/biblatex-mla/mla.bbx RELOC/tex/latex/biblatex-mla/mla.cbx RELOC/tex/latex/biblatex-mla/portuguese-mla.lbx RELOC/tex/latex/biblatex-mla/spanish-mla.lbx -docfiles size=208 - RELOC/doc/latex/biblatex-mla/CHANGES - RELOC/doc/latex/biblatex-mla/README - RELOC/doc/latex/biblatex-mla/doc/biblatex-mla-old.pdf - RELOC/doc/latex/biblatex-mla/doc/biblatex-mla.pdf - RELOC/doc/latex/biblatex-mla/doc/biblatex-mla.tex - RELOC/doc/latex/biblatex-mla/doc/citation-examples.pdf - RELOC/doc/latex/biblatex-mla/doc/citation-examples.tex - RELOC/doc/latex/biblatex-mla/doc/handbooksamples.bib - RELOC/doc/latex/biblatex-mla/doc/samples.bib catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-mla -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-11-06 18:51:22 +0100 catalogue-license lppl -catalogue-version 1.5 +catalogue-topics linguistic journalpub biblatex +catalogue-version 1.9 + +name biblatex-morenames +category Package +revision 43049 +shortdesc New names for standard BibLaTeX entry type +relocated 1 +longdesc This package adds new fields of "name" type to the standard +longdesc entry types of BibLaTeX. For example: maineditor, for a +longdesc @collection, means the editor of @mvcollection, and not the +longdesc editor of the @collection. bookineditor, for a @bookinbook, +longdesc means the editor of the entry, and not, as the standard editor +longdesc field, the editor of the volume in which the entry is +longdesc contained. +containersize 2448 +containerchecksum 7e847faa586655aa7b3c92d9379540b2f5e78fb50843e36416e21552c6a9e810945f5b60a96a14c35570bd0403ac29a43af29bd46e2ecb0d87e3c6ac90345826 +doccontainersize 134744 +doccontainerchecksum c30953fabfd4717c56cc818e55f83995ceb203bfd67775aced3fe8f1f4f4a92b118ed9c40665ea28944806cb2d409a541f59df530e37274e3bc3babfbe55713a +docfiles size=64 + RELOC/doc/latex/biblatex-morenames/README details="Readme" + RELOC/doc/latex/biblatex-morenames/documentation/biblatex-morenames.pdf details="Package documentation" + RELOC/doc/latex/biblatex-morenames/documentation/biblatex-morenames.tex + RELOC/doc/latex/biblatex-morenames/documentation/example-bookineditor-BookineditorFromEditor.bib + RELOC/doc/latex/biblatex-morenames/documentation/example-bookineditor-BookineditorFromEditor.dot + RELOC/doc/latex/biblatex-morenames/documentation/example-bookineditor-BookineditorFromEditor.pdf + RELOC/doc/latex/biblatex-morenames/documentation/example-bookineditor.bib + RELOC/doc/latex/biblatex-morenames/documentation/example-bookineditor.dot + RELOC/doc/latex/biblatex-morenames/documentation/example-bookineditor.pdf details="Example of use" + RELOC/doc/latex/biblatex-morenames/documentation/example-maineditor.bib + RELOC/doc/latex/biblatex-morenames/documentation/example-maineditor.dot + RELOC/doc/latex/biblatex-morenames/documentation/example-maineditor.pdf details="Example of use" + RELOC/doc/latex/biblatex-morenames/documentation/generate-crossref-graphs.py + RELOC/doc/latex/biblatex-morenames/documentation/latexmkrc + RELOC/doc/latex/biblatex-morenames/documentation/makefile + RELOC/doc/latex/biblatex-morenames/makefile +runfiles size=3 + RELOC/tex/latex/biblatex-morenames/morenames.bbx + RELOC/tex/latex/biblatex-morenames/morenames.dbx +catalogue-contact-repository https://git.framasoft.org/maieul/biblatex-morenames +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-morenames +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics humanities biblatex +catalogue-version 1.3.1 name biblatex-multiple-dm category Package revision 37081 -shortdesc Load multiple datamodels in biblatex +shortdesc Load multiple datamodels in BibLaTeX relocated 1 -longdesc The package adds the possibility to biblatex to load data +longdesc The package adds the possibility to BibLaTeX to load data longdesc models from multiple sources. -runfiles size=3 - RELOC/tex/latex/biblatex-multiple-dm/biblatex-multiple-dm.sty - RELOC/tex/latex/biblatex-multiple-dm/multiple-dm.bbx - RELOC/tex/latex/biblatex-multiple-dm/multiple-dm.dbx +containersize 1088 +containerchecksum 9f83220ae7f2576b4f58394634dea831e5759bf6560ede3244ffb9d18fbf522e9c728c47a4184a43c2dcf6807481a964d7e468e4e6cb921129440bf917925a8f +doccontainersize 54860 +doccontainerchecksum f33e650b2faac0c7b9d078f0f4fd9da8a58562c6a9a8b13acbb4b23001d2ecdde105c08b6b6e62f138783d61f3e071f8780afee2f170c134c275ae62ca5a597a docfiles size=18 - RELOC/doc/latex/biblatex-multiple-dm/README - RELOC/doc/latex/biblatex-multiple-dm/biblatex-multiple-dm.pdf + RELOC/doc/latex/biblatex-multiple-dm/README details="Readme" + RELOC/doc/latex/biblatex-multiple-dm/biblatex-multiple-dm.pdf details="Package documentation" RELOC/doc/latex/biblatex-multiple-dm/biblatex-multiple-dm.tex RELOC/doc/latex/biblatex-multiple-dm/latexmkrc RELOC/doc/latex/biblatex-multiple-dm/makefile +runfiles size=3 + RELOC/tex/latex/biblatex-multiple-dm/biblatex-multiple-dm.sty + RELOC/tex/latex/biblatex-multiple-dm/multiple-dm.bbx + RELOC/tex/latex/biblatex-multiple-dm/multiple-dm.dbx catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-multiple-dm -catalogue-date 2015-04-26 21:10:32 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics biblatex catalogue-version 1.0.1 name biblatex-musuos category Package revision 24097 -shortdesc A biblatex style for citations in musuos.cls. +shortdesc A BibLaTeX style for citations in musuos.cls relocated 1 longdesc The style is designed for use with the musuos class, but it longdesc should be usable with other classes, too. +containersize 3796 +containerchecksum 129d1c12bc0e4e8fd339f7bc37442947dc492700a721933c9dda0b18edf78a9b402884376cb7d80893a06834f70a5d377fd264813cdf869ce5e40667f296d618 +doccontainersize 424364 +doccontainerchecksum d2fc62bb25394195a161e47ba116f2e795e6009b5f547d09cae2e21cc0f8171c610013622c2a019438e04b6c089d17c21333e3c70b8faeb09f90113cca9536c4 +docfiles size=109 + RELOC/doc/latex/biblatex-musuos/README details="Readme" + RELOC/doc/latex/biblatex-musuos/biblatex-musuos.pdf details="Package documentation" + RELOC/doc/latex/biblatex-musuos/biblatex-musuos.tex + RELOC/doc/latex/biblatex-musuos/musuos-bsp.bib runfiles size=5 RELOC/tex/latex/biblatex-musuos/german-musuos.lbx RELOC/tex/latex/biblatex-musuos/musuos.bbx RELOC/tex/latex/biblatex-musuos/musuos.cbx -docfiles size=109 - RELOC/doc/latex/biblatex-musuos/README - RELOC/doc/latex/biblatex-musuos/biblatex-musuos.pdf - RELOC/doc/latex/biblatex-musuos/biblatex-musuos.tex - RELOC/doc/latex/biblatex-musuos/musuos-bsp.bib +catalogue-also musuos catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-musuos -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics biblatex music catalogue-version 1.0 name biblatex-nature category Package -revision 30595 -shortdesc Biblatex support for Nature. +revision 48940 +shortdesc BibLaTeX support for Nature relocated 1 -longdesc The bundle offers styles that allow authors to use biblatex +longdesc The bundle offers styles that allow authors to use BibLaTeX longdesc when preparing papers for submission to the journal Nature. -runfiles size=5 - RELOC/tex/latex/biblatex-nature/nature.bbx - RELOC/tex/latex/biblatex-nature/nature.cbx -docfiles size=99 - RELOC/doc/latex/biblatex-nature/README +containersize 3272 +containerchecksum 265427460a57fa3cba846b3e7dd4fddf9639c11e223cba5e7f47da5b18ed1d348a70c29204378ab560f2eeacfdb12257c25482a1c3d9836f9025d0ddf987b511 +doccontainersize 385628 +doccontainerchecksum 9053472af9e07e4c297ce0650c7d9d20b85dfe22645652a9be49e950bc9718160433e6ffa01e5d0dec04a036425e31d4b7e6c31de9fc7553a730720fe54eb36a +docfiles size=100 + RELOC/doc/latex/biblatex-nature/README.md details="Readme" RELOC/doc/latex/biblatex-nature/biblatex-nature.bib - RELOC/doc/latex/biblatex-nature/biblatex-nature.pdf + RELOC/doc/latex/biblatex-nature/biblatex-nature.pdf details="Examples of use" RELOC/doc/latex/biblatex-nature/biblatex-nature.tex +runfiles size=6 + RELOC/tex/latex/biblatex-nature/nature.bbx + RELOC/tex/latex/biblatex-nature/nature.cbx catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-nature -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.2e +catalogue-date 2018-10-19 10:44:44 +0200 +catalogue-license lppl1.3 +catalogue-topics biblatex journalpub +catalogue-version 1.3c name biblatex-nejm category Package -revision 24011 -shortdesc Biblatex style for the New England Journal of Medicine (NEJM). +revision 49839 +shortdesc BibLaTeX style for the New England Journal of Medicine (NEJM) relocated 1 -longdesc This is a biblatex numeric style based on the design of the New +longdesc This is a BibLaTeX numeric style based on the design of the New longdesc England Journal of Medicine (NEJM). -runfiles size=3 +containersize 2036 +containerchecksum 97443b036769ffe3487cefa6cb5647eadfb8cdb20db0f6607028298b196a0df1ddf1fdee85e3f163a138da47f28019ab32147f65a5f7cb23b46596c96a772799 +doccontainersize 156060 +doccontainerchecksum bfcf854e7545237dab17bfe3cd2045a1914397a02e5fa31bde2bce8c0e44c474fe0389e2cb8cd59516f4db9a3b538524f8321723a49c41233de637075bb41720 +docfiles size=42 + RELOC/doc/latex/biblatex-nejm/README details="Readme" + RELOC/doc/latex/biblatex-nejm/biblatex-nejm.pdf details="Package documentation" + RELOC/doc/latex/biblatex-nejm/biblatex-nejm.tex +srccontainersize 508 +srccontainerchecksum 7a2cd3e8205c9b081e9a9601240dffd3943eef31cab5339de92be61fd023f3889958292ba8698760e8d8e6cf196f306b76e34c677d6aa2074271d11cbd78f799 +srcfiles size=1 + RELOC/source/latex/biblatex-nejm/Makefile +runfiles size=2 RELOC/tex/latex/biblatex-nejm/nejm.bbx RELOC/tex/latex/biblatex-nejm/nejm.cbx -docfiles size=43 - RELOC/doc/latex/biblatex-nejm/README - RELOC/doc/latex/biblatex-nejm/biblatex-nejm.pdf - RELOC/doc/latex/biblatex-nejm/biblatex-nejm.tex catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-nejm -catalogue-date 2011-09-19 08:28:16 +0200 +catalogue-date 2019-01-22 06:24:59 +0100 catalogue-license lppl1.3 -catalogue-version 0.4 +catalogue-topics biblatex +catalogue-version 0.5.0 + +name biblatex-nottsclassic +category Package +revision 41596 +shortdesc Citation style for the University of Nottingham +relocated 1 +longdesc This citation-style covers the citation and bibliography rules +longdesc of the University of Nottingham. +containersize 3056 +containerchecksum a0da4bac443dcbc2c0d8b97d4eed21c171e876cdaee3699a0652c905088056802bc12e1f16965b6b2063e1ca0dee808f5f5e9fd9e5f6da7f956548fd5bf0b222 +doccontainersize 110820 +doccontainerchecksum d0b6de2439ff0698b14781deecd260d5851b44da80a10827e0b0bf5ff21ddbe46b979dae9afe988ec1520387668a802a777fba28a830b0e0a7ce60988bfe375a +docfiles size=33 + RELOC/doc/latex/biblatex-nottsclassic/README.md details="Readme" + RELOC/doc/latex/biblatex-nottsclassic/nottsclassic.pdf details="Package documentation" + RELOC/doc/latex/biblatex-nottsclassic/nottsclassic.tex +runfiles size=4 + RELOC/tex/latex/biblatex-nottsclassic/nottsclassic-english.lbx + RELOC/tex/latex/biblatex-nottsclassic/nottsclassic.bbx + RELOC/tex/latex/biblatex-nottsclassic/nottsclassic.cbx +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-nottsclassic +catalogue-date 2016-07-07 05:47:40 +0200 +catalogue-license lppl1.3 +catalogue-topics biblatex +catalogue-version 0.1 name biblatex-opcit-booktitle category Package -revision 37733 +revision 48983 shortdesc Use op. cit. for the booktitle of a subentry relocated 1 longdesc The default citation styles verbose-trad1+; verbose-trad2 ; -longdesc verbose-trad3 use the op. cit. form in order to have shorter -longdesc reference when a title have been already cited. However, when +longdesc verbose-trad3 use the op. cit. form in order to have a shorter +longdesc reference when a title has already been cited. However, when longdesc you cite two entries which share the same booktitle but not the longdesc same title, the op. cit. mechanism does not work. This package longdesc enables to obtain references like this: Author1, Title, in -longdesc Booktitle, Location, Publiser, Year, pages xxx Author2, Title2, -longdesc in Booktitle, op. cit, pages. -runfiles size=1 - RELOC/tex/latex/biblatex-opcit-booktitle/biblatex-opcit-booktitle.sty -docfiles size=31 - RELOC/doc/latex/biblatex-opcit-booktitle/README +longdesc Booktitle, Location, Publisher, Year, pages xxx Author2, +longdesc Title2, in Booktitle, op. cit, pages. +containersize 2788 +containerchecksum 4779618979e358380b2d9d2163a8e62274093bc4e7d7a959364b1980d86110233f3927a80e2dac7390ec43d0626f92311d5923657872d25bdcab5d93dd84956a +doccontainersize 109536 +doccontainerchecksum 81990177b6cb92dde0e2d1371fa6e5ad6685c9750eac87063e336fd3412b46eca40e091bf2222631f6abcef995fd04c82a3cfd3f87baa2b069c74457edf7f13a +docfiles size=36 + RELOC/doc/latex/biblatex-opcit-booktitle/README details="Readme" RELOC/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle-example.bib RELOC/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle-example.pdf RELOC/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle-example.tex - RELOC/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle.pdf + RELOC/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle.pdf details="Package documentation" RELOC/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle.tex RELOC/doc/latex/biblatex-opcit-booktitle/documentation/latexmkrc RELOC/doc/latex/biblatex-opcit-booktitle/documentation/makefile RELOC/doc/latex/biblatex-opcit-booktitle/makefile +runfiles size=3 + RELOC/tex/latex/biblatex-opcit-booktitle/biblatex-opcit-booktitle.sty +catalogue-contact-bugs https://git.framasoft.org/maieul/biblatex-opcit-booktitle/issues +catalogue-contact-repository https://git.framasoft.org/maieul/biblatex-opcit-booktitle catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-opcit-booktitle -catalogue-date 2015-07-02 16:01:04 +0200 +catalogue-date 2018-10-24 14:20:48 +0200 catalogue-license lppl1.3 catalogue-topics biblio biblatex -catalogue-version 1.1.1 +catalogue-version 1.9.0 + +name biblatex-oxref +category Package +revision 50061 +shortdesc BibLaTeX styles inspired by the Oxford Guide to Style +relocated 1 +longdesc This bundle provides four BibLaTeX styles that implement (many +longdesc of) the stipulations and examples provided by the 2014 New +longdesc Hart's Rules and the 2002 Oxford Guide to Style: 'oxnotes' is a +longdesc style similar to the standard 'verbose', intended for use with +longdesc footnotes; 'oxnum' is a style similar to the standard +longdesc 'numeric', intended for use with numeric in-text citations; +longdesc 'oxalph' is a style similar to the standard 'alphabetic', +longdesc intended for use with alphabetic in-text citations; 'oxyear' is +longdesc a style similar to the standard 'author-year', intended for use +longdesc with parenthetical in-text citations. The bundle provides +longdesc support for a wide variety of content types, including +longdesc manuscripts, audiovisual resources, social media and legal +longdesc references. These styles should be considered experimental. In +longdesc particular, the ways in which they handle certain tricky +longdesc references are subject to change. +containersize 22228 +containerchecksum ba694a18d9f123495cffac8d10bff74c6b6d7fcfca8ea6fe374a090dd27e16019d264fc7b71718a674ed34905a85267615c98aa16b62589fdbd0c11b1e5a5e7a +doccontainersize 1943096 +doccontainerchecksum 13e0559b303925fb50ad68232852700cab3b0ea455ac88529779c9832bb55e7f97778fbf434300d76c785beb92b98ca429f7f9e28f8725eb150ea6ef90b8944e +docfiles size=738 + RELOC/doc/latex/biblatex-oxref/README.md details="Readme" + RELOC/doc/latex/biblatex-oxref/oxalph-doc.pdf details="Style documentation for oxalph" + RELOC/doc/latex/biblatex-oxref/oxalph-doc.tex + RELOC/doc/latex/biblatex-oxref/oxnotes-doc.pdf details="Style documentation for oxnotes" + RELOC/doc/latex/biblatex-oxref/oxnotes-doc.tex + RELOC/doc/latex/biblatex-oxref/oxnum-doc.pdf details="Style documentation for oxnum" + RELOC/doc/latex/biblatex-oxref/oxnum-doc.tex + RELOC/doc/latex/biblatex-oxref/oxref.bib + RELOC/doc/latex/biblatex-oxref/oxref.pdf details="Package documentation" + RELOC/doc/latex/biblatex-oxref/oxyear-doc.pdf details="Style documentation for oxyear" + RELOC/doc/latex/biblatex-oxref/oxyear-doc.tex +srccontainersize 86304 +srccontainerchecksum 8f5d390fa078f607a24647e5a74f3f0853e51fd439948c8af4bd5451fb51b848acb181c2102aa42ce73c33cf9ae9b368ce328e946025bd15a1aaad3f072a087e +srcfiles size=117 + RELOC/source/latex/biblatex-oxref/Makefile + RELOC/source/latex/biblatex-oxref/oxref.dtx + RELOC/source/latex/biblatex-oxref/oxref.ins +runfiles size=71 + RELOC/tex/latex/biblatex-oxref/american-oxref.lbx + RELOC/tex/latex/biblatex-oxref/british-oxref.lbx + RELOC/tex/latex/biblatex-oxref/english-oxref.lbx + RELOC/tex/latex/biblatex-oxref/oxalph.bbx + RELOC/tex/latex/biblatex-oxref/oxalph.cbx + RELOC/tex/latex/biblatex-oxref/oxalph.dbx + RELOC/tex/latex/biblatex-oxref/oxnotes-ibid.bbx + RELOC/tex/latex/biblatex-oxref/oxnotes-ibid.cbx + RELOC/tex/latex/biblatex-oxref/oxnotes-ibid.dbx + RELOC/tex/latex/biblatex-oxref/oxnotes-inote.bbx + RELOC/tex/latex/biblatex-oxref/oxnotes-inote.cbx + RELOC/tex/latex/biblatex-oxref/oxnotes-inote.dbx + RELOC/tex/latex/biblatex-oxref/oxnotes-note.bbx + RELOC/tex/latex/biblatex-oxref/oxnotes-note.cbx + RELOC/tex/latex/biblatex-oxref/oxnotes-note.dbx + RELOC/tex/latex/biblatex-oxref/oxnotes-trad1.bbx + RELOC/tex/latex/biblatex-oxref/oxnotes-trad1.cbx + RELOC/tex/latex/biblatex-oxref/oxnotes-trad1.dbx + RELOC/tex/latex/biblatex-oxref/oxnotes-trad2.bbx + RELOC/tex/latex/biblatex-oxref/oxnotes-trad2.cbx + RELOC/tex/latex/biblatex-oxref/oxnotes-trad2.dbx + RELOC/tex/latex/biblatex-oxref/oxnotes-trad3.bbx + RELOC/tex/latex/biblatex-oxref/oxnotes-trad3.cbx + RELOC/tex/latex/biblatex-oxref/oxnotes-trad3.dbx + RELOC/tex/latex/biblatex-oxref/oxnotes.bbx + RELOC/tex/latex/biblatex-oxref/oxnotes.cbx + RELOC/tex/latex/biblatex-oxref/oxnotes.dbx + RELOC/tex/latex/biblatex-oxref/oxnum.bbx + RELOC/tex/latex/biblatex-oxref/oxnum.cbx + RELOC/tex/latex/biblatex-oxref/oxnum.dbx + RELOC/tex/latex/biblatex-oxref/oxref.bbx + RELOC/tex/latex/biblatex-oxref/oxyear.bbx + RELOC/tex/latex/biblatex-oxref/oxyear.cbx + RELOC/tex/latex/biblatex-oxref/oxyear.dbx +catalogue-contact-bugs https://github.com/alex-ball/biblatex-oxref/issues +catalogue-contact-home https://github.com/alex-ball/biblatex-oxref +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-oxref +catalogue-date 2019-02-19 19:47:43 +0100 +catalogue-license lppl1.3c +catalogue-topics biblatex +catalogue-version 1.1 name biblatex-philosophy category Package -revision 37527 -shortdesc Styles for using biblatex for work in philosophy. +revision 47283 +shortdesc Styles for using BibLaTeX for work in philosophy relocated 1 longdesc The bundle offers two styles - philosophy-classic and longdesc philosophy-modern - that facilitate the production of two @@ -16827,8 +32985,22 @@ longdesc package's default settings are based on the conventions used in longdesc Italian publications, these styles can be used with every longdesc language recognized by babel, possibly with some simple longdesc redefinitions. -runfiles size=27 +containersize 12572 +containerchecksum faf78d9a7a551c2a161bf69c1a9146dd7846cb4ff1c3f6332806f955357a8f3af66b9ddc7d9732246982b9bba60730071390a0cf240a241d50db03655414174d +doccontainersize 883940 +doccontainerchecksum 1e68948403c72e93f94b758786a0c632827d5e5bdf0a8db2066e52868b2ee339bbf0948ed381d78db733482cfca075d9d5c26624df9f2f85d4ded232ece45ed8 +docfiles size=220 + RELOC/doc/latex/biblatex-philosophy/README details="Readme" + RELOC/doc/latex/biblatex-philosophy/biblatex-philosophy.pdf details="Package documentation" + RELOC/doc/latex/biblatex-philosophy/examples.zip +srccontainersize 39380 +srccontainerchecksum e170fb71a9c429204fab059f266e90c4b67a2ecc24f504ef68f70c5ffdb8cc619a2a1963febc0ae308b27f75aa19f0d2e90445ef9e6f3bc81b2fc212c9cf4835 +srcfiles size=60 + RELOC/source/latex/biblatex-philosophy/biblatex-philosophy.bib + RELOC/source/latex/biblatex-philosophy/biblatex-philosophy.dtx +runfiles size=32 RELOC/tex/latex/biblatex-philosophy/english-philosophy.lbx + RELOC/tex/latex/biblatex-philosophy/french-philosophy.lbx RELOC/tex/latex/biblatex-philosophy/italian-philosophy.lbx RELOC/tex/latex/biblatex-philosophy/philosophy-classic.bbx RELOC/tex/latex/biblatex-philosophy/philosophy-classic.cbx @@ -16838,119 +33010,249 @@ runfiles size=27 RELOC/tex/latex/biblatex-philosophy/philosophy-verbose.bbx RELOC/tex/latex/biblatex-philosophy/philosophy-verbose.cbx RELOC/tex/latex/biblatex-philosophy/spanish-philosophy.lbx -docfiles size=201 - RELOC/doc/latex/biblatex-philosophy/README - RELOC/doc/latex/biblatex-philosophy/biblatex-philosophy.pdf - RELOC/doc/latex/biblatex-philosophy/examples.zip - RELOC/doc/latex/biblatex-philosophy/philosophy-examples.bib - RELOC/doc/latex/biblatex-philosophy/test-classic.tex - RELOC/doc/latex/biblatex-philosophy/test-modern.tex - RELOC/doc/latex/biblatex-philosophy/test-verbose.tex -srcfiles size=48 - RELOC/source/latex/biblatex-philosophy/biblatex-philosophy.bib - RELOC/source/latex/biblatex-philosophy/biblatex-philosophy.dtx catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-philosophy -catalogue-date 2015-06-13 19:32:19 +0200 +catalogue-date 2018-03-28 22:28:16 +0200 catalogue-license lppl1.3 -catalogue-topics humanities biblatex -catalogue-version 1.1 +catalogue-topics humanities philosophy biblatex +catalogue-version 1.9.8a name biblatex-phys category Package -revision 34035 -shortdesc A biblatex implementation of the AIP and APS bibliography style. +revision 48941 +shortdesc A BibLaTeX implementation of the AIP and APS bibliography style relocated 1 longdesc The biblatex-phys package provides an implementation of the -longdesc bibliography styles of both the AIP and the APS for biblatex. -longdesc This implementation follows standard biblatex conventions, and -longdesc can be used simply by loading biblatex with the appropriate +longdesc bibliography styles of both the AIP and the APS for BibLaTeX. +longdesc This implementation follows standard BibLaTeX conventions, and +longdesc can be used simply by loading BibLaTeX with the appropriate longdesc option: \usepackage[style=phys]{biblatex} A demonstration longdesc database is provided to show how to format input for the style. longdesc Style options are provided to cover the minor formatting longdesc variations between the AIP and APS bibliography styles. +containersize 3340 +containerchecksum 00e4b8dda617420a6062aab6160d91503576cd03ddef240f27247352b69507f546bd18cd21fcfd0cc6882b484d7c711b52c85d5af2c213f0d27579960bcf6fd9 +doccontainersize 454284 +doccontainerchecksum f48d1cca37b0bc1d07a67da3a106621e9754f5b4a2036f1dae636a23af50a82370b24a75340ff96d5f05fec57517f7ec68f7d9ed2278aa9fbcf8805456dc4f69 +docfiles size=118 + RELOC/doc/latex/biblatex-phys/README.md details="Readme" + RELOC/doc/latex/biblatex-phys/biblatex-phys.bib + RELOC/doc/latex/biblatex-phys/biblatex-phys.pdf details="Package documentation" + RELOC/doc/latex/biblatex-phys/biblatex-phys.tex runfiles size=5 RELOC/tex/latex/biblatex-phys/phys.bbx RELOC/tex/latex/biblatex-phys/phys.cbx -docfiles size=106 - RELOC/doc/latex/biblatex-phys/biblatex-phys.bib - RELOC/doc/latex/biblatex-phys/biblatex-phys.pdf - RELOC/doc/latex/biblatex-phys/biblatex-phys.tex catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-phys -catalogue-date 2014-05-14 19:30:50 +0200 +catalogue-date 2018-10-19 11:03:25 +0200 catalogue-license lppl1.3 -catalogue-version 0.9f +catalogue-topics physics biblatex +catalogue-version 1.1 name biblatex-publist category Package -revision 35959 -shortdesc BibLaTeX bibliography support for publication lists. +revision 50989 +shortdesc BibLaTeX bibliography support for publication lists relocated 1 longdesc The package provides a BibLaTeX bibliography style file (*.bbx) longdesc for publication lists. The style file draws on BibLaTeX's longdesc authoryear style, but provides some extra features often longdesc desired for publication lists, such as the omission of the -longdesc author's own name from author or editor data. -runfiles size=6 +longdesc author's own name from author or editor data. At least version +longdesc 3.4 of biblatex is required. +containersize 6932 +containerchecksum 9f73dd60d22adc1af2cc87c7fe3cf38b50fcc173a66cd1511a08a37938a0bcacef20ab27995ccc2cf4912d2b74948e417d0209bef93be8bcf49f51a6883778a4 +doccontainersize 327812 +doccontainerchecksum 1899ddf6edeb2ed11417cd90957bd9567041d6c06b43a56d08d618a734d7700e5092dc1e350ed03a08e82f3b2e8759ef8fed8f8933996d1d8a5b7ed5c8becb17 +docfiles size=88 + RELOC/doc/latex/biblatex-publist/README details="Readme" + RELOC/doc/latex/biblatex-publist/biblatex-publist.pdf details="Package documentation" + RELOC/doc/latex/biblatex-publist/biblatex-publist.tex +runfiles size=9 RELOC/tex/latex/biblatex-publist/publist.bbx RELOC/tex/latex/biblatex-publist/publist.cbx -docfiles size=31 - RELOC/doc/latex/biblatex-publist/README - RELOC/doc/latex/biblatex-publist/biblatex-publist.pdf - RELOC/doc/latex/biblatex-publist/biblatex-publist.tex +catalogue-contact-bugs https://github.com/jspitz/biblatex-publist/issues +catalogue-contact-repository https://github.com/jspitz/biblatex-publist catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-publist -catalogue-date 2015-01-04 13:49:06 +0100 +catalogue-date 2019-04-16 16:26:16 +0200 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics biblatex +catalogue-version 1.16 name biblatex-realauthor category Package -revision 37062 +revision 45865 shortdesc Indicate the real author of a work relocated 1 longdesc This package allows to use a new field "realauthor", which longdesc indicates the real author of a work, when published in a longdesc pseudepigraphic name. -runfiles size=2 - RELOC/tex/latex/biblatex-realauthor/realauthor.bbx - RELOC/tex/latex/biblatex-realauthor/realauthor.dbx -docfiles size=27 - RELOC/doc/latex/biblatex-realauthor/README - RELOC/doc/latex/biblatex-realauthor/documentation/biblatex-realauthor.pdf +containersize 2484 +containerchecksum dec592d3f16a431286f7887af863664d777e09e5784a53e9b99247e3bae86c7928907135980d27614e52ab6bd1f1f59a3e8633ecde05d3f9b84b97c84ccefa23 +doccontainersize 93700 +doccontainerchecksum bf0ed482905bfcf9bf5a8eda61f609037316012aa2992796c57d48b5f5ccac496dd372ef5e8c88262c8bc5b2d543cbf5f6aba8ff1833a99db6929dfbf379d2cc +docfiles size=31 + RELOC/doc/latex/biblatex-realauthor/README details="Readme" + RELOC/doc/latex/biblatex-realauthor/documentation/biblatex-realauthor.pdf details="Package documentation" RELOC/doc/latex/biblatex-realauthor/documentation/biblatex-realauthor.tex - RELOC/doc/latex/biblatex-realauthor/documentation/example.bib - RELOC/doc/latex/biblatex-realauthor/documentation/example.pdf - RELOC/doc/latex/biblatex-realauthor/documentation/example.tex + RELOC/doc/latex/biblatex-realauthor/documentation/example-realauthor.bib + RELOC/doc/latex/biblatex-realauthor/documentation/example-realauthor.pdf details="Example of use" + RELOC/doc/latex/biblatex-realauthor/documentation/example-realauthor.tex RELOC/doc/latex/biblatex-realauthor/documentation/makefile RELOC/doc/latex/biblatex-realauthor/makefile +runfiles size=4 + RELOC/tex/latex/biblatex-realauthor/realauthor.bbx + RELOC/tex/latex/biblatex-realauthor/realauthor.dbx +catalogue-contact-bugs https://github.com/maieul/biblatex-realauthor/issues +catalogue-contact-repository https://github.com/maieul/biblatex-realauthor catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-realauthor -catalogue-date 2015-04-26 20:06:01 +0200 +catalogue-date 2017-11-20 18:21:46 +0100 catalogue-license lppl1.3 -catalogue-version 2.2.0 +catalogue-topics biblatex +catalogue-version 2.7.1a + +name biblatex-sbl +category Package +revision 49426 +shortdesc Society of Biblical Literature (SBL) style files for BibLaTeX +relocated 1 +longdesc The package provides BibLaTeX support for citations in the +longdesc format specified by the second edition of the Society of +longdesc Biblical Literature (SBL) Handbook of Style. All example notes +longdesc and bibliography entries from the handbook are supported and +longdesc shown in an example file. A style file for writing SBL student +longdesc papers is also included. +containersize 19960 +containerchecksum dfbe4de870b93fd1bd77aacf003ea56926adc6d52d0b5f47125d411738a66822f8c99bf3d58d0fe955105a30e5f2629a0c37ef5bc3cf00d3ebe895cadf621063 +doccontainersize 650976 +doccontainerchecksum c7ccc14015397b816ca508bed2533fbc2ff183dbdb035d13100e8ec8faee18ea7ce10f7d8140b2ebbc6d58831db59ed6a9d7a4b75b0ef346081deebc7c323b72 +docfiles size=201 + RELOC/doc/latex/biblatex-sbl/README.md details="Readme" + RELOC/doc/latex/biblatex-sbl/biblatex-sbl-examples.pdf + RELOC/doc/latex/biblatex-sbl/biblatex-sbl-examples.tex + RELOC/doc/latex/biblatex-sbl/biblatex-sbl-ibid.pdf + RELOC/doc/latex/biblatex-sbl/biblatex-sbl-ibid.tex + RELOC/doc/latex/biblatex-sbl/biblatex-sbl.bib + RELOC/doc/latex/biblatex-sbl/biblatex-sbl.pdf details="Package documentation" + RELOC/doc/latex/biblatex-sbl/biblatex-sbl.tex + RELOC/doc/latex/biblatex-sbl/sbl-paper.pdf + RELOC/doc/latex/biblatex-sbl/sbl-paper.tex +runfiles size=41 + RELOC/makeindex/biblatex-sbl/sbl-paper-bibleref.ist + RELOC/tex/latex/biblatex-sbl/american-sbl.lbx + RELOC/tex/latex/biblatex-sbl/biblatex-sbl.def + RELOC/tex/latex/biblatex-sbl/english-sbl.lbx + RELOC/tex/latex/biblatex-sbl/german-sbl.lbx + RELOC/tex/latex/biblatex-sbl/sbl-paper.sty + RELOC/tex/latex/biblatex-sbl/sbl.bbx + RELOC/tex/latex/biblatex-sbl/sbl.cbx + RELOC/tex/latex/biblatex-sbl/sbl.dbx + RELOC/tex/latex/biblatex-sbl/spanish-sbl.lbx +catalogue-contact-repository https://github.com/dcpurton/biblatex-sbl +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-sbl +catalogue-date 2018-12-16 13:45:34 +0100 +catalogue-license lppl1.3 +catalogue-topics biblatex theology +catalogue-version 0.11 name biblatex-science category Package -revision 28970 -shortdesc Biblatex implementation of the Science bibliography style. +revision 48945 +shortdesc BibLaTeX implementation of the Science bibliography style relocated 1 -longdesc The bundle offers styles that allow authors to use biblatex +longdesc The bundle offers styles that allow authors to use BibLaTeX longdesc when preparing papers for submission to the journal Science. +containersize 2916 +containerchecksum e75dccc1a01975776cf94c17aad531823844085e4fa2ba54ba4f74d77ad193c26238eed602f309760f3057b6fc405fd01ec2a7a20647cd8570889832b1ee6bdb +doccontainersize 356968 +doccontainerchecksum ad7d8fd4e54830d77f0a155a04cd523c5c789745b5da34b8ea1efe59ffd4ee1673045dec58d28b8234993a70061337178cddda2267506366549c2639f6c917b7 +docfiles size=94 + RELOC/doc/latex/biblatex-science/LICENSE.md + RELOC/doc/latex/biblatex-science/README.md details="Readme" + RELOC/doc/latex/biblatex-science/biblatex-science.bib + RELOC/doc/latex/biblatex-science/biblatex-science.pdf details="Package documentation" + RELOC/doc/latex/biblatex-science/biblatex-science.tex runfiles size=5 RELOC/tex/latex/biblatex-science/science.bbx RELOC/tex/latex/biblatex-science/science.cbx -docfiles size=96 - RELOC/doc/latex/biblatex-science/README - RELOC/doc/latex/biblatex-science/biblatex-science.bib - RELOC/doc/latex/biblatex-science/biblatex-science.pdf - RELOC/doc/latex/biblatex-science/biblatex-science.tex catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-science -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.1d +catalogue-date 2018-10-19 10:04:33 +0200 +catalogue-license lppl1.3 +catalogue-topics biblatex journalpub +catalogue-version 1.2 + +name biblatex-shortfields +category Package +revision 45858 +shortdesc Use short forms of fields with BibLaTeX +relocated 1 +longdesc The BibLaTeX package provides shortseries and shortjournal +longdesc field, but the default styles don't use them. It also provides +longdesc a mechanism to print the equivalence between short forms of +longdesc fields and long fields (\printbiblist), but this mechanism does +longdesc not allow to mix between different type of short fields, for +longdesc example, between short forms of journal title and short forms +longdesc of series titles. This package provides a solution to these two +longdesc problems: If a shortjournal field is defined, it prints it +longdesc instead of the \journal field. If a shortseries field is +longdesc defined, it prints it instead of the \series field. It provides +longdesc a \printbibshortfields command to print a list of the sort +longdesc forms of the fields. This list also includes the claves defined +longdesc with the biblatex-claves package version 1.2 or later. +containersize 2080 +containerchecksum be9562c2b79e1f01a110708eb6c0de165a9f596bd18ee72dd6c8add0bf380222a31ae12d86ab843083ae3e7f47a608826b985455f4c8501bbe21d4f0a0e15b80 +doccontainersize 81992 +doccontainerchecksum e6e5e6c113ef43a9784f9000637d526f0bc989358d690d4f41be01e1e22abcb33f347421c727c411c2c02f0c11b1c60d54e7fc23180bd6f66c5c46bf29fc1202 +docfiles size=27 + RELOC/doc/latex/biblatex-shortfields/README details="Readme" + RELOC/doc/latex/biblatex-shortfields/documentation/biblatex-shortfields-example.pdf + RELOC/doc/latex/biblatex-shortfields/documentation/biblatex-shortfields-example.tex + RELOC/doc/latex/biblatex-shortfields/documentation/biblatex-shortfields.bib + RELOC/doc/latex/biblatex-shortfields/documentation/biblatex-shortfields.pdf details="Package documentation" + RELOC/doc/latex/biblatex-shortfields/documentation/biblatex-shortfields.tex + RELOC/doc/latex/biblatex-shortfields/documentation/latexmkrc + RELOC/doc/latex/biblatex-shortfields/documentation/makefile + RELOC/doc/latex/biblatex-shortfields/makefile +runfiles size=1 + RELOC/tex/latex/biblatex-shortfields/biblatex-shortfields.sty +catalogue-contact-bugs https://framagit.org/maieul/biblatex-shortfields/issues +catalogue-contact-repository https://framagit.org/maieul/biblatex-shortfields +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-shortfields +catalogue-date 2017-11-19 19:22:04 +0100 +catalogue-license lppl1.3 +catalogue-topics biblatex +catalogue-version 1.0.1 + +name biblatex-socialscienceshuberlin +category Package +revision 47839 +shortdesc BibLaTeX-style for the social sciences at HU Berlin +relocated 1 +longdesc This is a BibLaTeX style for the social sciences at the +longdesc Humboldt-Universitat zu Berlin. +containersize 2112 +containerchecksum f927cccda37e1ab37bd01b49f3247b688ba0186db5b162ab9b73db7be5f83d1b261bcfbf355d575a3905cdfca2421b6b592ae0763d7575957ea382b451fb6099 +doccontainersize 112244 +doccontainerchecksum 30c411b27e50e0f4ac46385a07606846ae3dd744879de257e2f2abec829e5920957d55e970255cc51cb768f3ca0aab629f30d2860e5745c4addf5aac10ecaca3 +docfiles size=33 + RELOC/doc/latex/biblatex-socialscienceshuberlin/README.md details="Readme" + RELOC/doc/latex/biblatex-socialscienceshuberlin/socialscienceshuberlin-examples.bib + RELOC/doc/latex/biblatex-socialscienceshuberlin/socialscienceshuberlin.pdf details="Package documentation" + RELOC/doc/latex/biblatex-socialscienceshuberlin/socialscienceshuberlin.tex +runfiles size=4 + RELOC/tex/latex/biblatex-socialscienceshuberlin/german-socialscienceshuberlin.lbx + RELOC/tex/latex/biblatex-socialscienceshuberlin/socialscienceshuberlin.bbx + RELOC/tex/latex/biblatex-socialscienceshuberlin/socialscienceshuberlin.cbx +catalogue-contact-bugs https://github.com/LukasCBossert/biblatex-socialscienceshuberlin/issues +catalogue-contact-repository https://github.com/LukasCBossert/biblatex-socialscienceshuberlin +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-socialscienceshuberlin +catalogue-date 2018-05-28 05:03:03 +0200 +catalogue-license lppl1.3 +catalogue-topics biblio biblatex +catalogue-version 0.0.1 name biblatex-source-division category Package -revision 37806 -shortdesc References by "division" in classical sources. +revision 45379 +shortdesc References by "division" in classical sources relocated 1 longdesc The package enables the user to make reference to "division longdesc marks" (such as book, chapter, section), in the document being @@ -16959,26 +33261,31 @@ longdesc BibTeX-based citations have always had. The citation is made in longdesc the same way as the LaTeX standard, but what's inside the longdesc square brackets may include the "division" specification, as in longdesc \cite[()]{} -runfiles size=1 - RELOC/tex/latex/biblatex-source-division/biblatex-source-division.sty -docfiles size=27 - RELOC/doc/latex/biblatex-source-division/README +containersize 1980 +containerchecksum f7a9b6a9f8fb21a5b9f06e3904ec2147ccd21383c3ced8852b22d0cf62088be103b674466ae571ace6bea52904f6cfb79ef2982bdb16679d02ff1d260d5b3517 +doccontainersize 65448 +doccontainerchecksum 1ae3883454e6aafc91b996de520a4669a06a67cd74b9df7e7cb7d096291d5f1dbe728a2a0fbd3b5968fdebf64946e829c4722bff33ff52ccbf32d8055f042144 +docfiles size=22 + RELOC/doc/latex/biblatex-source-division/README details="Readme" RELOC/doc/latex/biblatex-source-division/biblatex-source-division.bib - RELOC/doc/latex/biblatex-source-division/biblatex-source-division.pdf + RELOC/doc/latex/biblatex-source-division/biblatex-source-division.pdf details="Package documentation" RELOC/doc/latex/biblatex-source-division/biblatex-source-division.tex - RELOC/doc/latex/biblatex-source-division/issue1.pdf RELOC/doc/latex/biblatex-source-division/latexmkrc RELOC/doc/latex/biblatex-source-division/makefile +runfiles size=1 + RELOC/tex/latex/biblatex-source-division/biblatex-source-division.sty +catalogue-contact-bugs https://github.com/maieul/biblatex-source-division/issues +catalogue-contact-repository https://github.com/maieul/biblatex-source-division catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-source-division -catalogue-date 2015-07-08 05:02:01 +0200 +catalogue-date 2017-09-21 22:32:43 +0200 catalogue-license lppl1.3 catalogue-topics biblio biblatex -catalogue-version 2.3.1 +catalogue-version 2.4.2 name biblatex-subseries category Package -revision 37415 -shortdesc Manages subseries with biblatex +revision 43330 +shortdesc Manages subseries with BibLaTeX relocated 1 longdesc Some publishers organize book series with subseries. In this longdesc case, two numbers are associated with one volume: the number @@ -16986,32 +33293,47 @@ longdesc inside the series and the number inside the subseries. That is longdesc the case of the series Corpus Scriptorium Christianorum longdesc Orientalium published by Peeters. This package provides new longdesc fields to manage such system. -runfiles size=2 - RELOC/tex/latex/biblatex-subseries/subseries.bbx - RELOC/tex/latex/biblatex-subseries/subseries.dbx -docfiles size=23 - RELOC/doc/latex/biblatex-subseries/README +containersize 1384 +containerchecksum 37955d7e547fceb3e3856f5e367d39a4952ee0d604652963db2a54466e9d6c1effb6b2c195ffd1dd15eec5552df97419a09763bc51af06c6726dbe40a6e3bbae +doccontainersize 70196 +doccontainerchecksum 94bf4807e0623c35690ef7b1fd879710a762630224c0a52ee4e7b4a96c27001a9653de2c7d2ecd2a12cda448bfbdc336c54bcc8fb6674782af017cddfdc8e5fb +docfiles size=25 + RELOC/doc/latex/biblatex-subseries/README details="Readme" RELOC/doc/latex/biblatex-subseries/documentation/biblatex-subseries-example.bib RELOC/doc/latex/biblatex-subseries/documentation/biblatex-subseries-example.pdf RELOC/doc/latex/biblatex-subseries/documentation/biblatex-subseries-example.tex - RELOC/doc/latex/biblatex-subseries/documentation/biblatex-subseries.pdf + RELOC/doc/latex/biblatex-subseries/documentation/biblatex-subseries.pdf details="Package documentation" RELOC/doc/latex/biblatex-subseries/documentation/biblatex-subseries.tex RELOC/doc/latex/biblatex-subseries/documentation/makefile RELOC/doc/latex/biblatex-subseries/makefile +runfiles size=2 + RELOC/tex/latex/biblatex-subseries/subseries.bbx + RELOC/tex/latex/biblatex-subseries/subseries.dbx +catalogue-contact-repository https://git.framasoft.org/maieul/biblatex-subseries catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-subseries -catalogue-date 2015-05-15 06:07:43 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 -catalogue-version 1.0.0a +catalogue-topics biblatex biblio +catalogue-version 1.2.0 name biblatex-swiss-legal category Package revision 32750 -shortdesc Bibliography and citation styles following Swiss legal practice. +shortdesc Bibliography and citation styles following Swiss legal practice relocated 1 -longdesc The package provides biblatex bibliography and citation styles +longdesc The package provides BibLaTeX bibliography and citation styles longdesc for documents written in accordance with Swiss legal citation longdesc standards. Currently, the package is usable for French and longdesc German documents. +containersize 18060 +containerchecksum fd21319f30eb2187333db187c7ad171cb61a75ad4d62ddf3414a04021a7ad4fce57836aa0d2a9ef00488256d5126c18a976f664cff8978f8aa1e80a161dce979 +doccontainersize 513436 +doccontainerchecksum beba2cd9e8a78076148f7aedb6b5cf950ed865de9432633f225c160e1a46c98098a8bc94c783ec35cd982e020736c85ec94bc66ad68ead05d7187238ceb0a07c +docfiles size=145 + RELOC/doc/latex/biblatex-swiss-legal/README details="Readme (French and English)" + RELOC/doc/latex/biblatex-swiss-legal/biblatex-swiss-legal.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/biblatex-swiss-legal/doc_source/biblatex-swiss-legal.bib + RELOC/doc/latex/biblatex-swiss-legal/doc_source/biblatex-swiss-legal.tex runfiles size=28 RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-base.bbx RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-base.cbx @@ -17025,451 +33347,221 @@ runfiles size=28 RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-longarticle.cbx RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-shortarticle.bbx RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-shortarticle.cbx -docfiles size=145 - RELOC/doc/latex/biblatex-swiss-legal/README - RELOC/doc/latex/biblatex-swiss-legal/biblatex-swiss-legal.pdf - RELOC/doc/latex/biblatex-swiss-legal/doc_source/biblatex-swiss-legal.bib - RELOC/doc/latex/biblatex-swiss-legal/doc_source/biblatex-swiss-legal.tex catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-swiss-legal -catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics legal french german biblatex catalogue-version 1.1.2a -name biblatex +name biblatex-trad category Package -revision 37083 -shortdesc Bibliographies in LaTeX using BibTeX for sorting only. -relocated 1 -longdesc Biblatex is a complete reimplementation of the bibliographic -longdesc facilities provided by LaTeX in conjunction with BibTeX. It -longdesc redesigns the way in which LaTeX interacts with BibTeX at a -longdesc fairly fundamental level. With biblatex, BibTeX is only used -longdesc (if it is used at all) to sort the bibliography and to generate -longdesc labels. Formatting of the bibliography is entirely controlled -longdesc by TeX macros (the BibTeX-based mechanism embeds some parts of -longdesc formatting in the BibTeX style file. Good working knowledge in -longdesc LaTeX should be sufficient to design new bibliography and -longdesc citation styles; nothing related to BibTeX's language is -longdesc needed. In fact, users need not remain bound to BibTeX for use -longdesc with biblatex: an alternative bibliography processor biblatex- -longdesc biber is available. Development of biblatex and biblatex-biber -longdesc is closely coupled; the present release of biblatex is designed -longdesc to work with biblatex-biber version 0.9.6. The package needs e- -longdesc TeX, and uses the author's etoolbox and logreq packages. For -longdesc users of biblatex-biber, version 0.9 is required (at least; -longdesc refer to the notes for the version of biblatex-biber that you -longdesc are using). Apart from the features unique to biblatex, the -longdesc package also incorporates core features of the following -longdesc packages: babelbib, bibtopic, bibunits, chapterbib, cite, -longdesc inlinebib, mcite and mciteplus, mlbib, multibib, splitbib. -longdesc Biblatex supports split bibliographies and multiple -longdesc bibliographies within one document, and separate lists of -longdesc bibliographic shorthands. Bibliographies may be subdivided into -longdesc parts (by chapter, by section, etc.) and/or segmented by topics -longdesc (by type, by keyword, etc.). Biblatex is fully localized and -longdesc can interface with the babel. -runfiles size=532 - RELOC/bibtex/bib/biblatex/biblatex/biblatex-examples.bib - RELOC/bibtex/bst/biblatex/biblatex.bst - RELOC/bibtex/csf/biblatex/latin1.csf - RELOC/bibtex/csf/biblatex/latin1_at.csf - RELOC/bibtex/csf/biblatex/latin1_de.csf - RELOC/bibtex/csf/biblatex/latin1_dk.csf - RELOC/bibtex/csf/biblatex/latin1_fi.csf - RELOC/bibtex/csf/biblatex/latin1_no.csf - RELOC/bibtex/csf/biblatex/latin1_se.csf - RELOC/bibtex/csf/biblatex/latin9.csf - RELOC/bibtex/csf/biblatex/latin9_at.csf - RELOC/bibtex/csf/biblatex/latin9_de.csf - RELOC/bibtex/csf/biblatex/latin9_dk.csf - RELOC/bibtex/csf/biblatex/latin9_fi.csf - RELOC/bibtex/csf/biblatex/latin9_no.csf - RELOC/bibtex/csf/biblatex/latin9_se.csf - RELOC/bibtex/csf/biblatex/winansi.csf - RELOC/bibtex/csf/biblatex/winansi_at.csf - RELOC/bibtex/csf/biblatex/winansi_de.csf - RELOC/bibtex/csf/biblatex/winansi_dk.csf - RELOC/bibtex/csf/biblatex/winansi_fi.csf - RELOC/bibtex/csf/biblatex/winansi_no.csf - RELOC/bibtex/csf/biblatex/winansi_se.csf - RELOC/tex/latex/biblatex/bbx/alphabetic-verb.bbx - RELOC/tex/latex/biblatex/bbx/alphabetic.bbx - RELOC/tex/latex/biblatex/bbx/authortitle-comp.bbx - RELOC/tex/latex/biblatex/bbx/authortitle-ibid.bbx - RELOC/tex/latex/biblatex/bbx/authortitle-icomp.bbx - RELOC/tex/latex/biblatex/bbx/authortitle-tcomp.bbx - RELOC/tex/latex/biblatex/bbx/authortitle-terse.bbx - RELOC/tex/latex/biblatex/bbx/authortitle-ticomp.bbx - RELOC/tex/latex/biblatex/bbx/authortitle.bbx - RELOC/tex/latex/biblatex/bbx/authoryear-comp.bbx - RELOC/tex/latex/biblatex/bbx/authoryear-ibid.bbx - RELOC/tex/latex/biblatex/bbx/authoryear-icomp.bbx - RELOC/tex/latex/biblatex/bbx/authoryear.bbx - RELOC/tex/latex/biblatex/bbx/debug.bbx - RELOC/tex/latex/biblatex/bbx/draft.bbx - RELOC/tex/latex/biblatex/bbx/numeric-comp.bbx - RELOC/tex/latex/biblatex/bbx/numeric-verb.bbx - RELOC/tex/latex/biblatex/bbx/numeric.bbx - RELOC/tex/latex/biblatex/bbx/reading.bbx - RELOC/tex/latex/biblatex/bbx/standard.bbx - RELOC/tex/latex/biblatex/bbx/verbose-ibid.bbx - RELOC/tex/latex/biblatex/bbx/verbose-inote.bbx - RELOC/tex/latex/biblatex/bbx/verbose-note.bbx - RELOC/tex/latex/biblatex/bbx/verbose-trad1.bbx - RELOC/tex/latex/biblatex/bbx/verbose-trad2.bbx - RELOC/tex/latex/biblatex/bbx/verbose-trad3.bbx - RELOC/tex/latex/biblatex/bbx/verbose.bbx - RELOC/tex/latex/biblatex/biblatex.cfg - RELOC/tex/latex/biblatex/biblatex.def - RELOC/tex/latex/biblatex/biblatex.sty - RELOC/tex/latex/biblatex/biblatex1.sty - RELOC/tex/latex/biblatex/biblatex2.sty - RELOC/tex/latex/biblatex/blx-compat.def - RELOC/tex/latex/biblatex/blx-dm.def - RELOC/tex/latex/biblatex/blx-mcite.def - RELOC/tex/latex/biblatex/blx-natbib.def - RELOC/tex/latex/biblatex/cbx/alphabetic-verb.cbx - RELOC/tex/latex/biblatex/cbx/alphabetic.cbx - RELOC/tex/latex/biblatex/cbx/authortitle-comp.cbx - RELOC/tex/latex/biblatex/cbx/authortitle-ibid.cbx - RELOC/tex/latex/biblatex/cbx/authortitle-icomp.cbx - RELOC/tex/latex/biblatex/cbx/authortitle-tcomp.cbx - RELOC/tex/latex/biblatex/cbx/authortitle-terse.cbx - RELOC/tex/latex/biblatex/cbx/authortitle-ticomp.cbx - RELOC/tex/latex/biblatex/cbx/authortitle.cbx - RELOC/tex/latex/biblatex/cbx/authoryear-comp.cbx - RELOC/tex/latex/biblatex/cbx/authoryear-ibid.cbx - RELOC/tex/latex/biblatex/cbx/authoryear-icomp.cbx - RELOC/tex/latex/biblatex/cbx/authoryear.cbx - RELOC/tex/latex/biblatex/cbx/debug.cbx - RELOC/tex/latex/biblatex/cbx/draft.cbx - RELOC/tex/latex/biblatex/cbx/numeric-comp.cbx - RELOC/tex/latex/biblatex/cbx/numeric-verb.cbx - RELOC/tex/latex/biblatex/cbx/numeric.cbx - RELOC/tex/latex/biblatex/cbx/reading.cbx - RELOC/tex/latex/biblatex/cbx/verbose-ibid.cbx - RELOC/tex/latex/biblatex/cbx/verbose-inote.cbx - RELOC/tex/latex/biblatex/cbx/verbose-note.cbx - RELOC/tex/latex/biblatex/cbx/verbose-trad1.cbx - RELOC/tex/latex/biblatex/cbx/verbose-trad2.cbx - RELOC/tex/latex/biblatex/cbx/verbose-trad3.cbx - RELOC/tex/latex/biblatex/cbx/verbose.cbx - RELOC/tex/latex/biblatex/lbx/UKenglish.lbx - RELOC/tex/latex/biblatex/lbx/USenglish.lbx - RELOC/tex/latex/biblatex/lbx/american.lbx - RELOC/tex/latex/biblatex/lbx/australian.lbx - RELOC/tex/latex/biblatex/lbx/austrian.lbx - RELOC/tex/latex/biblatex/lbx/brazil.lbx - RELOC/tex/latex/biblatex/lbx/brazilian.lbx - RELOC/tex/latex/biblatex/lbx/british.lbx - RELOC/tex/latex/biblatex/lbx/canadian.lbx - RELOC/tex/latex/biblatex/lbx/catalan.lbx - RELOC/tex/latex/biblatex/lbx/croatian.lbx - RELOC/tex/latex/biblatex/lbx/czech.lbx - RELOC/tex/latex/biblatex/lbx/danish.lbx - RELOC/tex/latex/biblatex/lbx/dutch.lbx - RELOC/tex/latex/biblatex/lbx/english.lbx - RELOC/tex/latex/biblatex/lbx/finnish.lbx - RELOC/tex/latex/biblatex/lbx/french.lbx - RELOC/tex/latex/biblatex/lbx/german.lbx - RELOC/tex/latex/biblatex/lbx/greek.lbx - RELOC/tex/latex/biblatex/lbx/icelandic.lbx - RELOC/tex/latex/biblatex/lbx/italian.lbx - RELOC/tex/latex/biblatex/lbx/naustrian.lbx - RELOC/tex/latex/biblatex/lbx/newzealand.lbx - RELOC/tex/latex/biblatex/lbx/ngerman.lbx - RELOC/tex/latex/biblatex/lbx/norsk.lbx - RELOC/tex/latex/biblatex/lbx/norwegian.lbx - RELOC/tex/latex/biblatex/lbx/nynorsk.lbx - RELOC/tex/latex/biblatex/lbx/polish.lbx - RELOC/tex/latex/biblatex/lbx/portuges.lbx - RELOC/tex/latex/biblatex/lbx/portuguese.lbx - RELOC/tex/latex/biblatex/lbx/russian.lbx - RELOC/tex/latex/biblatex/lbx/slovene.lbx - RELOC/tex/latex/biblatex/lbx/spanish.lbx - RELOC/tex/latex/biblatex/lbx/swedish.lbx -docfiles size=4610 - RELOC/doc/latex/biblatex/README - RELOC/doc/latex/biblatex/RELEASE - RELOC/doc/latex/biblatex/biblatex.pdf - RELOC/doc/latex/biblatex/biblatex.tex - RELOC/doc/latex/biblatex/examples/01-introduction-bibtex.pdf - RELOC/doc/latex/biblatex/examples/01-introduction.pdf - RELOC/doc/latex/biblatex/examples/01-introduction.tex - RELOC/doc/latex/biblatex/examples/02-annotations-bibtex.pdf - RELOC/doc/latex/biblatex/examples/02-annotations.pdf - RELOC/doc/latex/biblatex/examples/02-annotations.tex - RELOC/doc/latex/biblatex/examples/03-localization-keys-bibtex.pdf - RELOC/doc/latex/biblatex/examples/03-localization-keys.pdf - RELOC/doc/latex/biblatex/examples/03-localization-keys.tex - RELOC/doc/latex/biblatex/examples/10-references-per-section-bibtex.pdf - RELOC/doc/latex/biblatex/examples/10-references-per-section.pdf - RELOC/doc/latex/biblatex/examples/10-references-per-section.tex - RELOC/doc/latex/biblatex/examples/11-references-by-section-bibtex.pdf - RELOC/doc/latex/biblatex/examples/11-references-by-section.pdf - RELOC/doc/latex/biblatex/examples/11-references-by-section.tex - RELOC/doc/latex/biblatex/examples/12-references-by-segment-bibtex.pdf - RELOC/doc/latex/biblatex/examples/12-references-by-segment.pdf - RELOC/doc/latex/biblatex/examples/12-references-by-segment.tex - RELOC/doc/latex/biblatex/examples/13-references-by-keyword-bibtex.pdf - RELOC/doc/latex/biblatex/examples/13-references-by-keyword.pdf - RELOC/doc/latex/biblatex/examples/13-references-by-keyword.tex - RELOC/doc/latex/biblatex/examples/14-references-by-category-bibtex.pdf - RELOC/doc/latex/biblatex/examples/14-references-by-category.pdf - RELOC/doc/latex/biblatex/examples/14-references-by-category.tex - RELOC/doc/latex/biblatex/examples/15-references-by-type-bibtex.pdf - RELOC/doc/latex/biblatex/examples/15-references-by-type.pdf - RELOC/doc/latex/biblatex/examples/15-references-by-type.tex - RELOC/doc/latex/biblatex/examples/16-numeric-prefixed-1-bibtex.pdf - RELOC/doc/latex/biblatex/examples/16-numeric-prefixed-1.pdf - RELOC/doc/latex/biblatex/examples/16-numeric-prefixed-1.tex - RELOC/doc/latex/biblatex/examples/17-numeric-prefixed-2-bibtex.pdf - RELOC/doc/latex/biblatex/examples/17-numeric-prefixed-2.pdf - RELOC/doc/latex/biblatex/examples/17-numeric-prefixed-2.tex - RELOC/doc/latex/biblatex/examples/18-numeric-hybrid-bibtex.pdf - RELOC/doc/latex/biblatex/examples/18-numeric-hybrid.pdf - RELOC/doc/latex/biblatex/examples/18-numeric-hybrid.tex - RELOC/doc/latex/biblatex/examples/19-alphabetic-prefixed-bibtex.pdf - RELOC/doc/latex/biblatex/examples/19-alphabetic-prefixed.pdf - RELOC/doc/latex/biblatex/examples/19-alphabetic-prefixed.tex - RELOC/doc/latex/biblatex/examples/20-indexing-single-bibtex.pdf - RELOC/doc/latex/biblatex/examples/20-indexing-single.pdf - RELOC/doc/latex/biblatex/examples/20-indexing-single.tex - RELOC/doc/latex/biblatex/examples/21-indexing-multiple-bibtex.pdf - RELOC/doc/latex/biblatex/examples/21-indexing-multiple.pdf - RELOC/doc/latex/biblatex/examples/21-indexing-multiple.tex - RELOC/doc/latex/biblatex/examples/22-indexing-subentry-bibtex.pdf - RELOC/doc/latex/biblatex/examples/22-indexing-subentry.pdf - RELOC/doc/latex/biblatex/examples/22-indexing-subentry.tex - RELOC/doc/latex/biblatex/examples/30-style-numeric-bibtex.pdf - RELOC/doc/latex/biblatex/examples/30-style-numeric.pdf - RELOC/doc/latex/biblatex/examples/30-style-numeric.tex - RELOC/doc/latex/biblatex/examples/31-style-numeric-comp-bibtex.pdf - RELOC/doc/latex/biblatex/examples/31-style-numeric-comp.pdf - RELOC/doc/latex/biblatex/examples/31-style-numeric-comp.tex - RELOC/doc/latex/biblatex/examples/32-style-numeric-verb-bibtex.pdf - RELOC/doc/latex/biblatex/examples/32-style-numeric-verb.pdf - RELOC/doc/latex/biblatex/examples/32-style-numeric-verb.tex - RELOC/doc/latex/biblatex/examples/40-style-alphabetic-bibtex.pdf - RELOC/doc/latex/biblatex/examples/40-style-alphabetic.pdf - RELOC/doc/latex/biblatex/examples/40-style-alphabetic.tex - RELOC/doc/latex/biblatex/examples/41-style-alphabetic-verb-bibtex.pdf - RELOC/doc/latex/biblatex/examples/41-style-alphabetic-verb.pdf - RELOC/doc/latex/biblatex/examples/41-style-alphabetic-verb.tex - RELOC/doc/latex/biblatex/examples/42-style-alphabetic-template-bibtex.pdf - RELOC/doc/latex/biblatex/examples/42-style-alphabetic-template.pdf - RELOC/doc/latex/biblatex/examples/42-style-alphabetic-template.tex - RELOC/doc/latex/biblatex/examples/50-style-authoryear-bibtex.pdf - RELOC/doc/latex/biblatex/examples/50-style-authoryear.pdf - RELOC/doc/latex/biblatex/examples/50-style-authoryear.tex - RELOC/doc/latex/biblatex/examples/51-style-authoryear-ibid-bibtex.pdf - RELOC/doc/latex/biblatex/examples/51-style-authoryear-ibid.pdf - RELOC/doc/latex/biblatex/examples/51-style-authoryear-ibid.tex - RELOC/doc/latex/biblatex/examples/52-style-authoryear-comp-bibtex.pdf - RELOC/doc/latex/biblatex/examples/52-style-authoryear-comp.pdf - RELOC/doc/latex/biblatex/examples/52-style-authoryear-comp.tex - RELOC/doc/latex/biblatex/examples/53-style-authoryear-icomp-bibtex.pdf - RELOC/doc/latex/biblatex/examples/53-style-authoryear-icomp.pdf - RELOC/doc/latex/biblatex/examples/53-style-authoryear-icomp.tex - RELOC/doc/latex/biblatex/examples/60-style-authortitle-bibtex.pdf - RELOC/doc/latex/biblatex/examples/60-style-authortitle.pdf - RELOC/doc/latex/biblatex/examples/60-style-authortitle.tex - RELOC/doc/latex/biblatex/examples/61-style-authortitle-ibid-bibtex.pdf - RELOC/doc/latex/biblatex/examples/61-style-authortitle-ibid.pdf - RELOC/doc/latex/biblatex/examples/61-style-authortitle-ibid.tex - RELOC/doc/latex/biblatex/examples/62-style-authortitle-comp-bibtex.pdf - RELOC/doc/latex/biblatex/examples/62-style-authortitle-comp.pdf - RELOC/doc/latex/biblatex/examples/62-style-authortitle-comp.tex - RELOC/doc/latex/biblatex/examples/63-style-authortitle-icomp-bibtex.pdf - RELOC/doc/latex/biblatex/examples/63-style-authortitle-icomp.pdf - RELOC/doc/latex/biblatex/examples/63-style-authortitle-icomp.tex - RELOC/doc/latex/biblatex/examples/64-style-authortitle-terse-bibtex.pdf - RELOC/doc/latex/biblatex/examples/64-style-authortitle-terse.pdf - RELOC/doc/latex/biblatex/examples/64-style-authortitle-terse.tex - RELOC/doc/latex/biblatex/examples/65-style-authortitle-tcomp-bibtex.pdf - RELOC/doc/latex/biblatex/examples/65-style-authortitle-tcomp.pdf - RELOC/doc/latex/biblatex/examples/65-style-authortitle-tcomp.tex - RELOC/doc/latex/biblatex/examples/66-style-authortitle-ticomp-bibtex.pdf - RELOC/doc/latex/biblatex/examples/66-style-authortitle-ticomp.pdf - RELOC/doc/latex/biblatex/examples/66-style-authortitle-ticomp.tex - RELOC/doc/latex/biblatex/examples/70-style-verbose-bibtex.pdf - RELOC/doc/latex/biblatex/examples/70-style-verbose.pdf - RELOC/doc/latex/biblatex/examples/70-style-verbose.tex - RELOC/doc/latex/biblatex/examples/71-style-verbose-ibid-bibtex.pdf - RELOC/doc/latex/biblatex/examples/71-style-verbose-ibid.pdf - RELOC/doc/latex/biblatex/examples/71-style-verbose-ibid.tex - RELOC/doc/latex/biblatex/examples/72-style-verbose-note-bibtex.pdf - RELOC/doc/latex/biblatex/examples/72-style-verbose-note.pdf - RELOC/doc/latex/biblatex/examples/72-style-verbose-note.tex - RELOC/doc/latex/biblatex/examples/73-style-verbose-inote-bibtex.pdf - RELOC/doc/latex/biblatex/examples/73-style-verbose-inote.pdf - RELOC/doc/latex/biblatex/examples/73-style-verbose-inote.tex - RELOC/doc/latex/biblatex/examples/74-style-verbose-trad1-bibtex.pdf - RELOC/doc/latex/biblatex/examples/74-style-verbose-trad1.pdf - RELOC/doc/latex/biblatex/examples/74-style-verbose-trad1.tex - RELOC/doc/latex/biblatex/examples/75-style-verbose-trad2-bibtex.pdf - RELOC/doc/latex/biblatex/examples/75-style-verbose-trad2.pdf - RELOC/doc/latex/biblatex/examples/75-style-verbose-trad2.tex - RELOC/doc/latex/biblatex/examples/76-style-verbose-trad3-bibtex.pdf - RELOC/doc/latex/biblatex/examples/76-style-verbose-trad3.pdf - RELOC/doc/latex/biblatex/examples/76-style-verbose-trad3.tex - RELOC/doc/latex/biblatex/examples/80-style-reading-bibtex.pdf - RELOC/doc/latex/biblatex/examples/80-style-reading.pdf - RELOC/doc/latex/biblatex/examples/80-style-reading.tex - RELOC/doc/latex/biblatex/examples/81-style-draft-bibtex.pdf - RELOC/doc/latex/biblatex/examples/81-style-draft.pdf - RELOC/doc/latex/biblatex/examples/81-style-draft.tex - RELOC/doc/latex/biblatex/examples/82-style-debug-bibtex.pdf - RELOC/doc/latex/biblatex/examples/82-style-debug.pdf - RELOC/doc/latex/biblatex/examples/82-style-debug.tex - RELOC/doc/latex/biblatex/examples/90-related-entries.pdf - RELOC/doc/latex/biblatex/examples/90-related-entries.tex - RELOC/doc/latex/biblatex/examples/91-sorting-schemes.pdf - RELOC/doc/latex/biblatex/examples/91-sorting-schemes.tex - RELOC/doc/latex/biblatex/examples/92-bibliographylists.pdf - RELOC/doc/latex/biblatex/examples/92-bibliographylists.tex - RELOC/doc/latex/biblatex/examples/biblatex-examples.bib -catalogue-ctan /macros/latex/contrib/biblatex -catalogue-date 2015-04-26 09:52:59 +0200 -catalogue-license lppl -catalogue-version 3.0 - -name biblatex-trad -category Package -revision 27852 -shortdesc "Traditional" BibTeX styles with BibLaTeX. +revision 46668 +shortdesc "Traditional" BibTeX styles with BibLaTeX relocated 1 longdesc The bundle provides implementations of the "traditional" BibTeX longdesc styles (plain, abbrev, unsrt and alpha) with BibLaTeX. -runfiles size=11 - RELOC/tex/latex/biblatex-trad/bbx/trad-abbrv.bbx - RELOC/tex/latex/biblatex-trad/bbx/trad-alpha.bbx - RELOC/tex/latex/biblatex-trad/bbx/trad-plain.bbx - RELOC/tex/latex/biblatex-trad/bbx/trad-standard.bbx - RELOC/tex/latex/biblatex-trad/bbx/trad-unsrt.bbx - RELOC/tex/latex/biblatex-trad/cbx/trad-abbrv.cbx - RELOC/tex/latex/biblatex-trad/cbx/trad-alpha.cbx - RELOC/tex/latex/biblatex-trad/cbx/trad-plain.cbx - RELOC/tex/latex/biblatex-trad/cbx/trad-standard.cbx - RELOC/tex/latex/biblatex-trad/cbx/trad-unsrt.cbx -docfiles size=63 - RELOC/doc/latex/biblatex-trad/README.txt - RELOC/doc/latex/biblatex-trad/biblatex-trad.pdf +containersize 4172 +containerchecksum 3a21ed76cdfd4c327562aed15a56fda824b33fdbab993accc8e944a662e157ca8ce30c4ac6413b4365c27ce787625e03d206a5574116c205daa55a5211779f7d +doccontainersize 333008 +doccontainerchecksum cabf53ca2febe8bdc26c56f58f99e811ab8695134f3b10c01f946c7c13a63b723ebd598013fdad3eff8aec9d4f629b16bd3915d9087b1dca365cf208a7f72ea5 +docfiles size=88 + RELOC/doc/latex/biblatex-trad/README.md details="Readme" + RELOC/doc/latex/biblatex-trad/biblatex-trad.pdf details="Package documentation" RELOC/doc/latex/biblatex-trad/biblatex-trad.tex +runfiles size=15 + RELOC/tex/latex/biblatex-trad/trad-abbrv.bbx + RELOC/tex/latex/biblatex-trad/trad-abbrv.cbx + RELOC/tex/latex/biblatex-trad/trad-alpha.bbx + RELOC/tex/latex/biblatex-trad/trad-alpha.cbx + RELOC/tex/latex/biblatex-trad/trad-plain.bbx + RELOC/tex/latex/biblatex-trad/trad-plain.cbx + RELOC/tex/latex/biblatex-trad/trad-standard.bbx + RELOC/tex/latex/biblatex-trad/trad-standard.cbx + RELOC/tex/latex/biblatex-trad/trad-unsrt.bbx + RELOC/tex/latex/biblatex-trad/trad-unsrt.cbx +catalogue-contact-bugs https://github.com/moewew/biblatex-trad/issues +catalogue-contact-home https://github.com/moewew/biblatex-trad catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-trad -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.2 +catalogue-date 2018-02-17 21:45:55 +0100 +catalogue-license lppl1.3c +catalogue-topics biblatex +catalogue-version 0.4a name biblatex-true-citepages-omit category Package -revision 36047 -shortdesc Correction of some limitation of the citepages=omit option of biblatex styles +revision 44653 +shortdesc Correction of some limitation of the citepages=omit option of BibLaTeX styles relocated 1 longdesc This package deals with a limitation of the citepages=omit -longdesc option of the verbose family of biblatex citestyles. The option +longdesc option of the verbose family of BibLaTeX citestyles. The option longdesc works when you \cite[xx]{key}, but not when you \cite[\pno~xx, longdesc some text]{key}. The package corrects this problem. -runfiles size=1 - RELOC/tex/latex/biblatex-true-citepages-omit/biblatex-true-citepages-omit.sty -docfiles size=24 - RELOC/doc/latex/biblatex-true-citepages-omit/README +containersize 1308 +containerchecksum 908f6544890f69b4ca405c94e68c4814c52956bb77108f8e29bb4b6b63ad7de3bc0b1f1213a612f9e0ebd94ddc054907092451a9f326476f39e18a1f81ed0c63 +doccontainersize 70876 +doccontainerchecksum bb53e66c1aec87669be8bb608f82cd7683692cf87aeed792d1e9d49045039c15fc7113fe116e04332e8aa6331101a6e97e97f655e26cecee9636409d810f77e7 +docfiles size=26 + RELOC/doc/latex/biblatex-true-citepages-omit/README details="Readme" + RELOC/doc/latex/biblatex-true-citepages-omit/biblatex-true-citepages-omit-example.pdf + RELOC/doc/latex/biblatex-true-citepages-omit/biblatex-true-citepages-omit-example.tex RELOC/doc/latex/biblatex-true-citepages-omit/biblatex-true-citepages-omit.bib - RELOC/doc/latex/biblatex-true-citepages-omit/biblatex-true-citepages-omit.pdf + RELOC/doc/latex/biblatex-true-citepages-omit/biblatex-true-citepages-omit.pdf details="Package documentation" RELOC/doc/latex/biblatex-true-citepages-omit/biblatex-true-citepages-omit.tex RELOC/doc/latex/biblatex-true-citepages-omit/example.bib - RELOC/doc/latex/biblatex-true-citepages-omit/example.pdf - RELOC/doc/latex/biblatex-true-citepages-omit/example.tex RELOC/doc/latex/biblatex-true-citepages-omit/latexmkrc RELOC/doc/latex/biblatex-true-citepages-omit/makefile +runfiles size=1 + RELOC/tex/latex/biblatex-true-citepages-omit/biblatex-true-citepages-omit.sty +catalogue-contact-bugs https://github.com/maieul/biblatex-true-citepages-omit/issues +catalogue-contact-home https://github.com/maieul/biblatex-true-citepages-omit +catalogue-contact-repository https://github.com/maieul/biblatex-true-citepages-omit +catalogue-contact-support https://github.com/maieul/biblatex-true-citepages-omit/issues catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-true-citepages-omit -catalogue-date 2015-01-13 06:25:52 +0100 +catalogue-date 2017-06-20 18:15:37 +0200 +catalogue-license lppl1.3 +catalogue-topics biblio biblatex bugfix +catalogue-version 2.0.0 + +name bibleref +category Package +revision 49699 +shortdesc Format bible citations +relocated 1 +longdesc The bibleref package offers consistent formatting of references +longdesc to parts of the Christian bible, in a number of well-defined +longdesc formats. It depends on ifthen, fmtcount, and amsgen. +containersize 6708 +containerchecksum 0a25a0c4577815d27c02a0af30d1b70eddbb9de696c83333858d698aff9e8ed5e76d6b3278504cb153f284ce8fa23e0748140d7f9cc7fe1e04607825458941e2 +doccontainersize 362560 +doccontainerchecksum 5479f8c951c37d27f6a4115030fc1065b1da5d9ddfc81be2ef6da561adde77f71fc86b49f08958a7b3310256c38b760aaa556b0a275be920f79b5c6e98e97471 +docfiles size=96 + RELOC/doc/latex/bibleref/CHANGES + RELOC/doc/latex/bibleref/README details="Readme" + RELOC/doc/latex/bibleref/bibleref.pdf details="Package documentation" + RELOC/doc/latex/bibleref/makefile + RELOC/doc/latex/bibleref/sample.ist + RELOC/doc/latex/bibleref/samples/sample-categories.pdf + RELOC/doc/latex/bibleref/samples/sample-indextools.pdf + RELOC/doc/latex/bibleref/samples/sample-xidx.pdf + RELOC/doc/latex/bibleref/samples/sample.pdf details="Example of use" +srccontainersize 16416 +srccontainerchecksum b21f2e9e48dc4c1bb690a5ac6faec0664ea691bfab8c347df540f3172aff14cd2aac12fe38aee3a9339c874af158c2f440733bdadd9a0ebe45c5a28a642fe08b +srcfiles size=24 + RELOC/source/latex/bibleref/bibleref.dtx + RELOC/source/latex/bibleref/bibleref.ins +runfiles size=11 + RELOC/tex/latex/bibleref/bibleref-xidx.sty + RELOC/tex/latex/bibleref/bibleref.sty +catalogue-contact-bugs https://framagit.org/maieul/bibleref/issues +catalogue-contact-repository https://framagit.org/maieul/bibleref/ +catalogue-ctan /macros/latex/contrib/bibleref +catalogue-date 2019-01-14 15:10:52 +0100 catalogue-license lppl1.3 -catalogue-version 1.2.0a +catalogue-topics theology label-ref +catalogue-version 1.23 name bibleref-french category Package -revision 35497 -shortdesc French translations for bibleref. +revision 50075 +shortdesc French translations for bibleref relocated 1 longdesc The package provides translations and alternative typesetting longdesc conventions for use of bibleref in French. -runfiles size=8 - RELOC/tex/latex/bibleref-french/bibleref-french.sty +containersize 4600 +containerchecksum 0e7d9a9a6db26612cc2a78c526980aee6b1f47312e02317b5d9791a9386c1799622df36283337c57d33bf4935cf24b1cf65999875479973b8f1309392d97b3a6 +doccontainersize 643708 +doccontainerchecksum 133644d3298435d9ceaa1443cea19dbf7465ef82a4fdde4c7f2e1f950735fe220e6dafb0512505f8762725bbbc0062413b646204ca728fcf9481dfcb51a9ef35 docfiles size=191 RELOC/doc/latex/bibleref-french/Lacroux-Bible.pdf RELOC/doc/latex/bibleref-french/README RELOC/doc/latex/bibleref-french/bible.bib - RELOC/doc/latex/bibleref-french/bibleref-french-francais.pdf + RELOC/doc/latex/bibleref-french/bibleref-french-francais.pdf details="Package Manual" language="fr" RELOC/doc/latex/bibleref-french/bibleref-french-francais.tex - RELOC/doc/latex/bibleref-french/bibleref-french.pdf + RELOC/doc/latex/bibleref-french/bibleref-french.pdf details="Package Manual" language="en" RELOC/doc/latex/bibleref-french/livres.tex RELOC/doc/latex/bibleref-french/makefile RELOC/doc/latex/bibleref-french/styles.tex RELOC/doc/latex/bibleref-french/test.tex +srccontainersize 7940 +srccontainerchecksum d17db1b6a96b8a4c69217e1685e653a03ed2536e146fc10788521a9fa95b44cced0abaff6ba965e654f4d69cc68d03f75956f619cfd8d2735c8ab605876cda09 srcfiles size=12 RELOC/source/latex/bibleref-french/bibleref-french.dtx RELOC/source/latex/bibleref-french/bibleref-french.ins +runfiles size=8 + RELOC/tex/latex/bibleref-french/bibleref-french.sty catalogue-ctan /macros/latex/contrib/bibleref-french -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2019-02-20 11:57:53 +0100 catalogue-license lppl1.3 -catalogue-version 2.3.1 +catalogue-topics theology +catalogue-version 2.3.2 name bibleref-german category Package revision 21923 -shortdesc German adaptation of bibleref. +shortdesc German adaptation of bibleref relocated 1 longdesc The package provides translations and various formats for the longdesc use of bibleref in German documents. The German naming of the longdesc bible books complies with the 'Loccumer Richtlinien' (Locum longdesc guidelines). In addition, the Vulgate (Latin bible) is longdesc supported. -runfiles size=17 - RELOC/tex/latex/bibleref-german/bibleref-german.sty +containersize 7488 +containerchecksum 094177e505025eef5262b876fc49cfb09435b653c87fb1ee7453650e94f098bfbc7f5c78684849b3ce0cec2019d85a0413728397b5ffaf32bde542d8fa86222f +doccontainersize 659488 +doccontainerchecksum c3c610fd8a80ca5a0b8de6ce4aac887a7d16f01e21d845fad595e1d5d6069d8e89459dfd187cc458d21bf2247f4f2c7fe72233a12c8e532b9466f2ceea283360 docfiles size=243 RELOC/doc/latex/bibleref-german/CHANGES - RELOC/doc/latex/bibleref-german/LIESMICH - RELOC/doc/latex/bibleref-german/README + RELOC/doc/latex/bibleref-german/LIESMICH details="Liesmich" language="de" + RELOC/doc/latex/bibleref-german/README details="Readme" language="en" RELOC/doc/latex/bibleref-german/bibleref-german-preamble.tex RELOC/doc/latex/bibleref-german/bibleref-german-print.tex RELOC/doc/latex/bibleref-german/bibleref-german-screen.tex - RELOC/doc/latex/bibleref-german/de-bibleref-german.pdf + RELOC/doc/latex/bibleref-german/de-bibleref-german.pdf details="Package documentation (German)" language="de" RELOC/doc/latex/bibleref-german/de-bibleref-german.tex - RELOC/doc/latex/bibleref-german/en-bibleref-german.pdf + RELOC/doc/latex/bibleref-german/en-bibleref-german.pdf details="Package documentation (English)" language="en" RELOC/doc/latex/bibleref-german/en-bibleref-german.tex +runfiles size=17 + RELOC/tex/latex/bibleref-german/bibleref-german.sty catalogue-ctan /macros/latex/contrib/bibleref-german -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics theology catalogue-version 1.0a name bibleref-lds category Package revision 25526 -shortdesc Bible references, including those to the scriptures of the Church of Jesus Christ of Latter Day Saints. +shortdesc Bible references, including those to the scriptures of the Church of Jesus Christ of Latter Day Saints relocated 1 longdesc The package extends the bibleref-mouth package to support longdesc references to the scriptures of The Church of Jesus Christ of longdesc Latter-day Saints (LDS). The package requires bibleref-mouth to longdesc run, and its reference syntax is the same as that of the parent longdesc package. -runfiles size=5 - RELOC/tex/latex/bibleref-lds/bibleref-lds.sty +containersize 3636 +containerchecksum ba3c4e41b566d0a26bd9f0d11d8e776fe04a18aac451435ff0283ff273971138407753bd6806f34708c5a2f0c1b2581c71de46bbc2e0c8063c9838b3d946f2ca +doccontainersize 269992 +doccontainerchecksum 6fd81f90d0c94644231e911ab44827b77864842a3fa91127fb53114179488e5ffd66a404a1b5afee513e0cd3f4c83f38cae547e6dd6484403926c4c46b5cdec7 docfiles size=74 - RELOC/doc/latex/bibleref-lds/README - RELOC/doc/latex/bibleref-lds/bibleref-lds.pdf + RELOC/doc/latex/bibleref-lds/README details="Readme" + RELOC/doc/latex/bibleref-lds/bibleref-lds.pdf details="Package documentation" +srccontainersize 8524 +srccontainerchecksum 0494b05fd3881cc273e8232c398e80ddca4c1286b10aef5d341c6c3573ee40cd5ad1b7a2ae0aab9fd505f94a4bf98643453648b7cc52fda09f5e705a8b4da863 srcfiles size=11 RELOC/source/latex/bibleref-lds/bibleref-lds.dtx RELOC/source/latex/bibleref-lds/bibleref-lds.ins +runfiles size=5 + RELOC/tex/latex/bibleref-lds/bibleref-lds.sty catalogue-ctan /macros/latex/contrib/bibleref-lds -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics theology catalogue-version 1.0 name bibleref-mouth category Package revision 25527 -shortdesc Consistent formatting of Bible references. +shortdesc Consistent formatting of Bible references relocated 1 longdesc The package allows Bible references to be formatted in a longdesc consistent way. It is similar to the bibleref package, except @@ -17477,140 +33569,108 @@ longdesc that the formatting macros are all purely expandable -- that longdesc is, they are all implemented in TeX's mouth. This means that longdesc they can be used in any expandable context, such as an argument longdesc to a \url command. -runfiles size=8 - RELOC/tex/latex/bibleref-mouth/bibleref-mouth.sty +containersize 5476 +containerchecksum 5ae9356781549cb5ecbdfa33085ede0fdbcb7f131d55484153484c777f88e23cf965507afde803e7bc5b775aeb416b9ee767815b5dbec444a3d21be18c7445f4 +doccontainersize 366172 +doccontainerchecksum a904b4c9c0c8f3ff1feaaad8d1650b383ff0110bcf463f004938c51bce84ffc860082bf3e598922eedf0aeaa664ef0379ea3304f6dc5b681679d9545026c6bf4 docfiles size=102 - RELOC/doc/latex/bibleref-mouth/README - RELOC/doc/latex/bibleref-mouth/bibleref-mouth.pdf + RELOC/doc/latex/bibleref-mouth/README details="Readme" + RELOC/doc/latex/bibleref-mouth/bibleref-mouth.pdf details="Package documentation" +srccontainersize 18324 +srccontainerchecksum 5ad805eb19d6ce8fef804117b462eb1f1dff887c3b6326fd42eba88c7a218ada84992bc419d889f04363ae9b7073b13ebb5f7a002225191fc22c2a2cb5824514 srcfiles size=24 RELOC/source/latex/bibleref-mouth/bibleref-mouth.dtx RELOC/source/latex/bibleref-mouth/bibleref-mouth.ins +runfiles size=8 + RELOC/tex/latex/bibleref-mouth/bibleref-mouth.sty +catalogue-also bibleref catalogue-ctan /macros/latex/contrib/bibleref-mouth -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics theology catalogue-version 1.0 name bibleref-parse category Package revision 22054 -shortdesc Specify Bible passages in human-readable format. +shortdesc Specify Bible passages in human-readable format relocated 1 longdesc The package parses Bible passages that are given in human longdesc readable format. It accepts a wide variety of formats. This longdesc allows for a simpler and more convenient interface to the longdesc functionality of the bibleref package. -runfiles size=12 - RELOC/tex/latex/bibleref-parse/bibleref-parse.sty +containersize 7204 +containerchecksum 3af7da247ff7f9708ef076a3fe110979e7ff07be0afb08597feeda9ae31e60a66eb2bbbb5da015e10566e83a116cc9f2efa56fe91a57717230fb35bd004c209d +doccontainersize 101648 +doccontainerchecksum 08393d76bca59dcbd715cc443ffbf7a1e15894ac6a2963d0ce770c96974c14d42283fd9237c215fe454ec4403a21387ba9dee52ea1bd93b83ab4a13fbc65157c docfiles size=35 - RELOC/doc/latex/bibleref-parse/README - RELOC/doc/latex/bibleref-parse/bibleref-parse.pdf + RELOC/doc/latex/bibleref-parse/README details="Readme" + RELOC/doc/latex/bibleref-parse/bibleref-parse.pdf details="Package documentation" RELOC/doc/latex/bibleref-parse/bibleref-parse.tex +runfiles size=12 + RELOC/tex/latex/bibleref-parse/bibleref-parse.sty catalogue-ctan /macros/latex/contrib/bibleref-parse -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics theology catalogue-version 1.1 -name bibleref +name bibletext category Package -revision 21145 -shortdesc Format bible citations. +revision 45196 +shortdesc Insert Bible passages by their reference relocated 1 -longdesc The bibleref package offers consistent formatting of references -longdesc to parts of the Christian bible, in a number of well-defined -longdesc formats. -runfiles size=8 - RELOC/tex/latex/bibleref/bibleref.sty -docfiles size=170 - RELOC/doc/latex/bibleref/CHANGES - RELOC/doc/latex/bibleref/README - RELOC/doc/latex/bibleref/bibleref-manual.css - RELOC/doc/latex/bibleref/bibleref-manual.html - RELOC/doc/latex/bibleref/bibleref-manual.tex - RELOC/doc/latex/bibleref/bibleref.pdf - RELOC/doc/latex/bibleref/samples/sample-categories.pdf - RELOC/doc/latex/bibleref/samples/sample-categories.tex - RELOC/doc/latex/bibleref/samples/sample-multind.pdf - RELOC/doc/latex/bibleref/samples/sample-multind.tex - RELOC/doc/latex/bibleref/samples/sample-xidx.pdf - RELOC/doc/latex/bibleref/samples/sample-xidx.tex - RELOC/doc/latex/bibleref/samples/sample.ist - RELOC/doc/latex/bibleref/samples/sample.pdf - RELOC/doc/latex/bibleref/samples/sample.tex -srcfiles size=46 - RELOC/source/latex/bibleref/bibleref.dtx - RELOC/source/latex/bibleref/bibleref.ins - RELOC/source/latex/bibleref/bibleref.perl -catalogue-ctan /macros/latex/contrib/bibleref -catalogue-date 2012-02-27 13:04:41 +0100 -catalogue-license lppl1.3 -catalogue-version 1.14 +longdesc The package allows to insert Bible texts in a document by +longdesc specifying references. +containersize 1156 +containerchecksum 3c5170b747c6426099c021390f7ac226ebf9dbe42ff586c698b3489d47639fcd4198a4cf49261bba9335caebf8f39488d65fe851d60d9f3c2cc2127539ef080a +doccontainersize 142004 +doccontainerchecksum ea38659b5b2bc252760937ecf21d4ac3e8986ac8be6afdc1f2205d84696b8da55e02037bcddb24de389d54a692240ae946ab3e41a0a7913015da4d7b5e12da7f +docfiles size=38 + RELOC/doc/latex/bibletext/LICENSE + RELOC/doc/latex/bibletext/README.md details="Readme" + RELOC/doc/latex/bibletext/bibletext.pdf details="Package documentation" + RELOC/doc/latex/bibletext/bibletext.tex +runfiles size=1 + RELOC/tex/latex/bibletext/bibletext.sty +catalogue-contact-bugs https://github.com/camilstaps/bibletext/issues +catalogue-contact-repository https://github.com/camilstaps/bibletext +catalogue-ctan /macros/latex/contrib/bibletext +catalogue-date 2017-09-02 12:55:57 +0200 +catalogue-license mit +catalogue-topics theology +catalogue-version 0.1.2 name biblist category Package revision 17116 -shortdesc Print a BibTeX database. +shortdesc Print a BibTeX database relocated 1 longdesc The package provides the means of listing an entire BibTeX longdesc database, avoiding the potentially large (macro) impact longdesc associated with \nocite{*}. -runfiles size=6 - RELOC/tex/latex/biblist/biblist.sty +containersize 8332 +containerchecksum 02f006139b475cb5d4ec2bf85ec098de78f5bed7242ec693317ad4e01acb62a8c5479f295a8a1409fccd41b327daa75a2639b67d9838777b8355e6bd40af478c +doccontainersize 207180 +doccontainerchecksum b5bdd51d7acb738569671f13dbd25fc7b98a8e2e03e324e9501a20ac34cf1ae3578fcd622be73a80467e47a64a81f4d897c4e167b07a5ff5d06635b09dbec51d docfiles size=71 - RELOC/doc/latex/biblist/README + RELOC/doc/latex/biblist/README details="Readme" RELOC/doc/latex/biblist/biblist.bst-dist RELOC/doc/latex/biblist/biblist.gde - RELOC/doc/latex/biblist/biblist.pdf + RELOC/doc/latex/biblist/biblist.pdf details="Package documentation" RELOC/doc/latex/biblist/biblist.tex +runfiles size=6 + RELOC/tex/latex/biblist/biblist.sty +catalogue-also listbib catalogue-ctan /macros/latex209/contrib/biblist -catalogue-date 2012-04-27 14:49:55 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl - -name bibtex8 -category TLCore -revision 29725 -catalogue bibtex8bit -shortdesc A fully 8-bit adaptation of BibTeX 0.99. -longdesc An enhanced, portable C version of BibTeX. Enhanced by -longdesc conversion to "big" (32-bit) capacity, addition of run-time -longdesc selectable capacity and 8-bit support extensions. National -longdesc character set and sorting order are controlled by an external -longdesc configuration file. Various examples are included. -depend bibtex8.ARCH -runfiles size=36 - texmf-dist/bibtex/csf/base/88591lat.csf - texmf-dist/bibtex/csf/base/88591sca.csf - texmf-dist/bibtex/csf/base/README.TEXLIVE - texmf-dist/bibtex/csf/base/ascii.csf - texmf-dist/bibtex/csf/base/cp437lat.csf - texmf-dist/bibtex/csf/base/cp850lat.csf - texmf-dist/bibtex/csf/base/cp850sca.csf - texmf-dist/bibtex/csf/base/cp866rus.csf - texmf-dist/bibtex/csf/base/csfile.txt - texmf-dist/bibtex/csf/polish-csf/88592pl.csf - texmf-dist/bibtex/csf/polish-csf/cp1250pl.csf - texmf-dist/bibtex/csf/polish-csf/cp852pl.csf - texmf-dist/bibtex/csf/polish-csf/iso8859-7.csf -docfiles size=15 - texmf-dist/doc/bibtex8/00readme.txt - texmf-dist/doc/bibtex8/HISTORY - texmf-dist/doc/bibtex8/csfile.txt - texmf-dist/doc/bibtex8/file_id.diz -catalogue-ctan /biblio/bibtex/8-bit -catalogue-date 2014-01-03 12:07:14 +0100 -catalogue-license gpl -catalogue-version 3.71 - -name bibtex8.i386-linux -category TLCore -revision 36790 -shortdesc i386-linux files of bibtex8 -binfiles arch=i386-linux size=66 - bin/i386-linux/bibtex8 +catalogue-topics bibtex-util name bibtex category Package -revision 37078 -shortdesc Process bibliographies for LaTeX, etc. +revision 50602 +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 @@ -17621,12 +33681,25 @@ 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. +longdesc urged to consider using biber with BibLaTeX to typeset its +longdesc output. depend kpathsea depend bibtex.ARCH -runfiles size=48 +containersize 14924 +containerchecksum 2657225efc1d8f9954d1be9d9b866a626cb252cf596a78a7573ab5b43272e8646a4dd5c59f87275bd6280a2e614bb450c000da6cd9db6b2666f551943ccba8ef +doccontainersize 398184 +doccontainerchecksum 4974d5cc9b6702558a9df37d48ed1c00cf12b1ac54c38954c2ff000dcf11a832b2f1267ca1bc009768cc18adccc0fd7bc7bf0e8ebd351f11caaa5f58b63f6585 +docfiles size=134 + texmf-dist/doc/bibtex/base/README + texmf-dist/doc/bibtex/base/btxbst.doc + texmf-dist/doc/bibtex/base/btxdoc.bib + texmf-dist/doc/bibtex/base/btxdoc.pdf details="Using BibTeX" + texmf-dist/doc/bibtex/base/btxdoc.tex + texmf-dist/doc/bibtex/base/btxhak.pdf details="Writing BibTeX styles" + texmf-dist/doc/bibtex/base/btxhak.tex + texmf-dist/doc/man/man1/bibtex.1 + texmf-dist/doc/man/man1/bibtex.man1.pdf +runfiles size=51 texmf-dist/bibtex/bib/base/xampl.bib texmf-dist/bibtex/bst/base/abbrv.bst texmf-dist/bibtex/bst/base/acm.bst @@ -17636,74 +33709,612 @@ runfiles size=48 texmf-dist/bibtex/bst/base/plain.bst texmf-dist/bibtex/bst/base/siam.bst texmf-dist/bibtex/bst/base/unsrt.bst -docfiles size=132 - texmf-dist/doc/bibtex/base/README - texmf-dist/doc/bibtex/base/btxbst.doc - texmf-dist/doc/bibtex/base/btxdoc.bib - texmf-dist/doc/bibtex/base/btxdoc.pdf - texmf-dist/doc/bibtex/base/btxdoc.tex - texmf-dist/doc/bibtex/base/btxhak.pdf - texmf-dist/doc/bibtex/base/btxhak.tex - texmf-dist/doc/man/man1/bibtex.1 - texmf-dist/doc/man/man1/bibtex.man1.pdf texmf-dist/tex/generic/bibtex/apalike.sty texmf-dist/tex/generic/bibtex/apalike.tex +catalogue-contact-bugs http://lists.tug.org/tex-k +catalogue-contact-home http://tug.org/bibtex +catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-contact-support http://lists.tug.org/tex-k catalogue-ctan /biblio/bibtex/base -catalogue-date 2014-10-12 16:42:37 +0200 +catalogue-date 2018-12-31 06:11:12 +0100 catalogue-license knuth +catalogue-topics biblio catalogue-version 0.99d +name bibtex.aarch64-linux +category Package +revision 50150 +shortdesc aarch64-linux files of bibtex +containersize 70708 +containerchecksum 873de9f57a2d5f94f6b9b9a9ae0097ade8f4271d5bd8cfc92a05c106aeb3cc3cddce48fdc85b28ff7f9ae3f863930003c1a70fa5277c31ddc983288bd6b89cc3 +binfiles arch=aarch64-linux size=49 + bin/aarch64-linux/bibtex + +name bibtex.amd64-freebsd +category Package +revision 50445 +shortdesc amd64-freebsd files of bibtex +containersize 90888 +containerchecksum e28eb8c0b0c850203aec5d639ea9d09f935c0bd5e984ee05a47762010acbdaf9a65769108109a7b3eaecddcbef2b0d2a7f16b61a4b36ad106a1d12b0911109d5 +binfiles arch=amd64-freebsd size=56 + bin/amd64-freebsd/bibtex + +name bibtex.amd64-netbsd +category Package +revision 50171 +shortdesc amd64-netbsd files of bibtex +containersize 68856 +containerchecksum aaf4752f603dc705c1417ddaac8ef6131e2943a3b919d3c3a31407b753b0d73f0764ffb4147bc1aa04492bd48a742116be5ee8f11d3756e0444d198251f7b218 +binfiles arch=amd64-netbsd size=52 + bin/amd64-netbsd/bibtex + +name bibtex.armhf-linux +category Package +revision 50150 +shortdesc armhf-linux files of bibtex +containersize 59856 +containerchecksum 16bf0769a541499f8ca287bd1dd7f1aba02ffa34bcfc6137d33c65debcc70fbe847f630a50259e13019ae683a5665965f00c49b3f233c7a2fb84b2dbd2c1fdfc +binfiles arch=armhf-linux size=38 + bin/armhf-linux/bibtex + +name bibtex.i386-cygwin +category Package +revision 50455 +shortdesc i386-cygwin files of bibtex +containersize 38132 +containerchecksum 8f9e38054b22bd33b5b544a897d727c5ab67fcaae107426ed12be440b53dd1fba9decc3f2c6ca68f1653af3d20995863ec99e42aa532d483b83de283c19bb052 +binfiles arch=i386-cygwin size=27 + bin/i386-cygwin/bibtex.exe + +name bibtex.i386-freebsd +category Package +revision 50473 +shortdesc i386-freebsd files of bibtex +containersize 65952 +containerchecksum b2883f1cfeaafc0d7c089d88565d3d745a9fd26649a3f9cebe1e9976e5b5fa00646a05d8504f93fbd03815565c170faa51602719784e56c0e2b131b1e568fcdb +binfiles arch=i386-freebsd size=43 + bin/i386-freebsd/bibtex + name bibtex.i386-linux category Package -revision 36790 +revision 50281 shortdesc i386-linux files of bibtex -binfiles arch=i386-linux size=56 +containersize 70944 +containerchecksum 3a879c3b83f37feed4c1d2089d3bb535cf134b7d849efb98764abb1ec209dfe820185a0d4d23bc8f7a37a98901a4ddc2c1508b7ba07b5552cf985c7492230a5a +binfiles arch=i386-linux size=47 bin/i386-linux/bibtex +name bibtex.i386-netbsd +category Package +revision 50171 +shortdesc i386-netbsd files of bibtex +containersize 55272 +containerchecksum 0b4634ab6def90ffb0017ffa0fb5033f550a54d85af37b6f023054039b3d1b35b10c7f11eceafa50f4a183fd26dbc1b3c95696c3effe9a53425623f258091708 +binfiles arch=i386-netbsd size=49 + bin/i386-netbsd/bibtex + +name bibtex.i386-solaris +category Package +revision 50150 +shortdesc i386-solaris files of bibtex +containersize 70692 +containerchecksum 83e7c884d7c97589687303c189913cf4d038fd9c75e87a05a758e9774fe9ac0270950c320ea6562a93f202c7a1c90f46c0882d524b113269d3ab99909fcf9668 +binfiles arch=i386-solaris size=43 + bin/i386-solaris/bibtex + +name bibtex.win32 +category Package +revision 50155 +shortdesc win32 files of bibtex +containersize 41616 +containerchecksum 292fbd44e349360e9a0ec688a0430d63ad81f48bc62a5fb9a944b192af0b4ce6f853da1318a7315045cc3201d5a9a8e82a31c620bc3ec3e43ba7e4ff1c1433e8 +binfiles arch=win32 size=25 + bin/win32/bibtex.exe + +name bibtex.x86_64-cygwin +category Package +revision 50889 +shortdesc x86_64-cygwin files of bibtex +containersize 46568 +containerchecksum 056d836c1a457c91b161d1896382c79b2427a28fbbd143e6cb72130b003c4e8d958bdac4d0d33fa216b0ef198ba2c307685cae59dbda6812d4ee77559832b900 +binfiles arch=x86_64-cygwin size=26 + bin/x86_64-cygwin/bibtex.exe + +name bibtex.x86_64-darwin +category Package +revision 50150 +shortdesc x86_64-darwin files of bibtex +containersize 85476 +containerchecksum 2c657556e1ffeeb155d067e7a77bbcd5c2d77199f23f7ebbe8ba5a1fc48a53e727977fc8e0a44ebe36332f791880fea9c77e9e48d7fb4a2d6c83f64692dcb65b +binfiles arch=x86_64-darwin size=51 + bin/x86_64-darwin/bibtex + +name bibtex.x86_64-darwinlegacy +category Package +revision 50282 +shortdesc x86_64-darwinlegacy files of bibtex +containersize 76648 +containerchecksum 2815bc3c783db6b9bad00bc774c63ed51d14b5842fbc719f655689da99aafa2be5c4d2cc7eefa4cd06f7191b45cf6476df353e16488a2c8df901afdcb8e9a971 +binfiles arch=x86_64-darwinlegacy size=45 + bin/x86_64-darwinlegacy/bibtex + +name bibtex.x86_64-linux +category Package +revision 50281 +shortdesc x86_64-linux files of bibtex +containersize 73656 +containerchecksum 5052866f519b8e5468e89120815ab40c793d55405d65a07a958815dc6d8cacdcc1d61818585aa12e7947b6698e2f772b12b916d193f720dd5a74f485964d0a22 +binfiles arch=x86_64-linux size=42 + bin/x86_64-linux/bibtex + +name bibtex.x86_64-linuxmusl +category Package +revision 50176 +shortdesc x86_64-linuxmusl files of bibtex +containersize 81168 +containerchecksum 16eed4a2313238b0b58781b14dec5af4c05d8cd67dfffd59a5bac50448fd8fe0c24295eff4fd7d27b9868ed61b1658d0591b5a4f80bc0a0134eedd47c979a5df +binfiles arch=x86_64-linuxmusl size=50 + bin/x86_64-linuxmusl/bibtex + +name bibtex.x86_64-solaris +category Package +revision 50150 +shortdesc x86_64-solaris files of bibtex +containersize 84412 +containerchecksum f3463867b67577aca8cfcee0026dd7c4673b0ab01d8c4f1c33a5583152ce7fff2c40f79a800df9d38b66cd6ee412a2e3e041386cec39799578aa3fe1dfb06156 +binfiles arch=x86_64-solaris size=50 + bin/x86_64-solaris/bibtex + +name bibtex8 +category TLCore +revision 50602 +catalogue bibtex8bit +shortdesc BibTeX variant supporting 8-bit encodings +longdesc An enhanced, portable C version of BibTeX. Enhanced by +longdesc conversion to "big" (32-bit) capacity, addition of run-time +longdesc selectable capacity and 8-bit support extensions. National +longdesc character set and sorting order are controlled by an external +longdesc configuration file. Various examples are included. +depend bibtex8.ARCH +containersize 9216 +containerchecksum 9d8ebea38bad048488251baf4ec7f939eec9c75df17dba576e510c09da6288a9cd2967c6c1dd5f7a472de51e38030801ff192874fd7d038a1f81e063614675d7 +doccontainersize 33160 +doccontainerchecksum bf6b13a5ca1e467c5435b51e6c5c6c4549eb456ae91fcac1c756ca09c165fafd488de6a4d2462057ef6ec7b3ea0b0518bd732556159ced0936494c5ebd4aad22 +docfiles size=22 + texmf-dist/doc/bibtex8/00readme.txt + texmf-dist/doc/bibtex8/HISTORY + texmf-dist/doc/bibtex8/csfile.txt + texmf-dist/doc/bibtex8/file_id.diz + texmf-dist/doc/man/man1/bibtex8.1 + texmf-dist/doc/man/man1/bibtex8.man1.pdf +runfiles size=36 + texmf-dist/bibtex/csf/base/88591lat.csf + texmf-dist/bibtex/csf/base/88591sca.csf + texmf-dist/bibtex/csf/base/README.TEXLIVE + texmf-dist/bibtex/csf/base/ascii.csf + texmf-dist/bibtex/csf/base/cp437lat.csf + texmf-dist/bibtex/csf/base/cp850lat.csf + texmf-dist/bibtex/csf/base/cp850sca.csf + texmf-dist/bibtex/csf/base/cp866rus.csf + texmf-dist/bibtex/csf/base/csfile.txt + texmf-dist/bibtex/csf/polish-csf/88592pl.csf + texmf-dist/bibtex/csf/polish-csf/cp1250pl.csf + texmf-dist/bibtex/csf/polish-csf/cp852pl.csf + texmf-dist/bibtex/csf/polish-csf/iso8859-7.csf +catalogue-ctan /biblio/bibtex/8-bit +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics biblio +catalogue-version 3.71 + +name bibtex8.aarch64-linux +category TLCore +revision 50285 +shortdesc aarch64-linux files of bibtex8 +containersize 77076 +containerchecksum 2ba22607a5364bf173edcb463234dc5ce5d60698d31c62b6aacb87552ef89020011667d9ad6290f29df5a5bea3e9bd06c21e8f9c33c489718ecf57673bd38707 +binfiles arch=aarch64-linux size=53 + bin/aarch64-linux/bibtex8 + +name bibtex8.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of bibtex8 +containersize 83868 +containerchecksum ac93f1591b9b4887ac3c77714471def2a68e452ffb649592b0e41845a8981997d8f809c8497591898e341c4ad6157441dfaa1a0e42b650a94d980486613d8aff +binfiles arch=amd64-freebsd size=52 + bin/amd64-freebsd/bibtex8 + +name bibtex8.amd64-netbsd +category TLCore +revision 50274 +shortdesc amd64-netbsd files of bibtex8 +containersize 77452 +containerchecksum 861e4bbe6dfb9d5209034387a7aa64910f3f4f5141feb81f793fb48d06092216d5dcefe78e7920782cd56e7e1110aa10a7a5ae4e0774392394f3a05161a5ff49 +binfiles arch=amd64-netbsd size=61 + bin/amd64-netbsd/bibtex8 + +name bibtex8.armhf-linux +category TLCore +revision 50296 +shortdesc armhf-linux files of bibtex8 +containersize 66936 +containerchecksum 2a8f343e46e5b4397c24f9df12770a4a40136f1f8d0afc398a007eaa2f8e33f59eae263f4953af2b226aae0fca044945b8e8d89035c36727f78b5165ddc1b83b +binfiles arch=armhf-linux size=43 + bin/armhf-linux/bibtex8 + +name bibtex8.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of bibtex8 +containersize 45908 +containerchecksum 2d1ddd92487ff5c4f03253408e8163055daccffa8b3fa2bd54f4e416fb5df2b892afb203d42580f3566fd2ef875849de6504277b40df79ec6604f3114c28f11f +binfiles arch=i386-cygwin size=33 + bin/i386-cygwin/bibtex8.exe + +name bibtex8.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of bibtex8 +containersize 65260 +containerchecksum 3b11e8c62b7134c5dc18536bd8fb2d6aa626f63e0e6dac22eddc398b08836847c0249d6fe7d15aa940f619736d288c0949f65eca5a53c1e042e318c9c5b2f6c3 +binfiles arch=i386-freebsd size=41 + bin/i386-freebsd/bibtex8 + +name bibtex8.i386-linux +category TLCore +revision 50281 +shortdesc i386-linux files of bibtex8 +containersize 78888 +containerchecksum c8d3206e4145899e2ed763a724deedc4844eed9c916cff1fc5881234d5eedb28fe3b54abb6f4c3adfd143b9381028bd4db3852abeb4c29c793b6b4f5a12695b7 +binfiles arch=i386-linux size=54 + bin/i386-linux/bibtex8 + +name bibtex8.i386-netbsd +category TLCore +revision 50274 +shortdesc i386-netbsd files of bibtex8 +containersize 61656 +containerchecksum 65e7bedef60fa01861df7ed4095e054364a224f424ba7c85b211ec27f9a83dc6f50e28a1a962e42b6674d04a8da8209ef25d43310eac9cbaf57b20c033a34524 +binfiles arch=i386-netbsd size=57 + bin/i386-netbsd/bibtex8 + +name bibtex8.i386-solaris +category TLCore +revision 50296 +shortdesc i386-solaris files of bibtex8 +containersize 76708 +containerchecksum 040d261e38e3a03d522a746b509afd2930f6bf0043a50603478e3eadef2152136a1df51a1f3174017664a9b4cd090a2e727f1d96c8d50ad1c5b2493999646cdc +binfiles arch=i386-solaris size=48 + bin/i386-solaris/bibtex8 + +name bibtex8.win32 +category TLCore +revision 50254 +shortdesc win32 files of bibtex8 +containersize 143772 +containerchecksum 19e10048893f2ec4f4b01d550a797b43fcf8262322593dc2b81959093a2385af7f929216b798ada47248fb6dd26c4560fb571f5ebab51eff26457c90ea629915 +binfiles arch=win32 size=79 + bin/win32/bibtex8.exe + +name bibtex8.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of bibtex8 +containersize 52184 +containerchecksum a64e0e0330660d7c30810af297ab482bf7fc3ba11d4c4e59e453245fffd33f6a86748f1206d2870214e3bc42f394be1633ed3dbf8a593ac3042dd275508f6032 +binfiles arch=x86_64-cygwin size=33 + bin/x86_64-cygwin/bibtex8.exe + +name bibtex8.x86_64-darwin +category TLCore +revision 50284 +shortdesc x86_64-darwin files of bibtex8 +containersize 86152 +containerchecksum 0122fcac5233b10ac1dfc8effd79098a6824c9061e165b0f712728c84d06362eb9459f0b4b92c63d9637edfa13dadd1b00167f616fa50aedc8aeca322713802a +binfiles arch=x86_64-darwin size=51 + bin/x86_64-darwin/bibtex8 + +name bibtex8.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of bibtex8 +containersize 83064 +containerchecksum 204b4bdbd302eca1152e5702962e500ed95ed46a51d906b147113b40dbfab92ee68dc3044f56ef0530bc15fc2cf902e63c84d7221c52e20dd9b59037efa4b26c +binfiles arch=x86_64-darwinlegacy size=50 + bin/x86_64-darwinlegacy/bibtex8 + +name bibtex8.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of bibtex8 +containersize 80680 +containerchecksum 5e397d492172266c608fe9d26db20c2be5be2cee0d644dab382fef2bd1eed9d52b1534ae433e7c624839e3984b4d865b1bd538fb25a2083172f24e30cbf42ec0 +binfiles arch=x86_64-linux size=48 + bin/x86_64-linux/bibtex8 + +name bibtex8.x86_64-linuxmusl +category TLCore +revision 50281 +shortdesc x86_64-linuxmusl files of bibtex8 +containersize 89296 +containerchecksum 30db0a464dab5ecbf0fb7dd43f341e10cf9d65dae434e03de796d6b6fd9c95032488f3bdb1c5d2eb35ddced56780284a72d189d460f73f89ed730fb3ce7d3808 +binfiles arch=x86_64-linuxmusl size=56 + bin/x86_64-linuxmusl/bibtex8 + +name bibtex8.x86_64-solaris +category TLCore +revision 50296 +shortdesc x86_64-solaris files of bibtex8 +containersize 89884 +containerchecksum a7ca750fff7e398d241248f3eee97599b2ff86bbbd6e103fc4debe847ba0b94bd0eecc02298c1ae958b0c02d75aeff5c70bd5c7bc993c6760b74898bd4ce559d +binfiles arch=x86_64-solaris size=56 + bin/x86_64-solaris/bibtex8 + +name bibtexperllibs +category Package +revision 47520 +shortdesc BibTeX Perl Libraries +relocated 1 +longdesc This package provides BibTeX related Perl libraries by Gerhard +longdesc Gossen, repacked by Boris Veytsman, for TeX Live and other +longdesc TDS-compliant distributions. The libraries are written in pure +longdesc Perl, so should work out of the box on any architecture. They +longdesc have been packaged here mostly for Boris Veytsman's BibTeX +longdesc suite, but can be used in any other Perl script. +containersize 10944 +containerchecksum 157db9c0bd7d44fea67844046996b5323f2d26828a8a4031712fe006ef0cdbb0992348d4a8e53c2a52ef0f8a1bd8cd108946baba46783d83d27e05b370bbc6c6 +doccontainersize 5588 +doccontainerchecksum 59f0d671efc182550ca926b1a208c31569e76bacd96e6444437d8ddfae3ad7fcfba60fcb292fcebacfeed1dc225a3e973b41e852ed77eab11308848e532a2c31 +docfiles size=11 + RELOC/doc/support/bibtexperllibs/BibTeXParser.3pm + RELOC/doc/support/bibtexperllibs/BibTeXParserAuthor.3pm + RELOC/doc/support/bibtexperllibs/BibTeXParserEntry.3pm + RELOC/doc/support/bibtexperllibs/LaTeXToUnicode.3pm + RELOC/doc/support/bibtexperllibs/LaTeXToUnicodeTables.3pm +srccontainersize 136052 +srccontainerchecksum 59b5717b5762643e135ac5540d86e841ab6694539723f808e64c1533aa93c62dbcb1a4fe86e0b649abcf60c86efc94b696834614dc0e3c8b9418dfcc86cd36b0 +srcfiles size=369 + RELOC/source/support/bibtexperllibs/BibTeX-Parser/Changes + RELOC/source/support/bibtexperllibs/BibTeX-Parser/LICENSE + RELOC/source/support/bibtexperllibs/BibTeX-Parser/MANIFEST + RELOC/source/support/bibtexperllibs/BibTeX-Parser/META.yml + RELOC/source/support/bibtexperllibs/BibTeX-Parser/Makefile.PL + RELOC/source/support/bibtexperllibs/BibTeX-Parser/Makefile.TDS + RELOC/source/support/bibtexperllibs/BibTeX-Parser/README + RELOC/source/support/bibtexperllibs/BibTeX-Parser/dist.ini + RELOC/source/support/bibtexperllibs/BibTeX-Parser/notes + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/00-load.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/01-parse.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/02-parse_string.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/03-parse_entry.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/04-entry.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/05-author.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/06-parse_complex.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/07-parse_englishbib.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/08-parse_large.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/09-complex.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/10-funnyname.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/11-split_braced.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/12-von_token.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/13_output.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/14-extratext.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/15-capitalization.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/01.bib + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/06.bib + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/09-complex.bib + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/10-funnyname.bib + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/14-extratext.bib + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/braces.bib + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/endnote.txt + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/engineering_village.txt + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/english.bib + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/mathscinet.txt + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/bug66325.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/bug67419.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/cleaned_field.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/pod-coverage.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/pod.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/release-pod-coverage.t + RELOC/source/support/bibtexperllibs/BibTeX-Parser/t/release-pod-syntax.t + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/Changes + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/LICENSE + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/MANIFEST + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/META.yml + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/Makefile.PL + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/Makefile.TDS + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/README + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/dist.ini + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/script/UnicodeData.txt + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/script/convert.pl + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/t/convert.t + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/t/release-pod-coverage.t + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/t/release-pod-syntax.t + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/t/release-synopsis.t + RELOC/source/support/bibtexperllibs/LaTeX-ToUnicode/weaver.ini + RELOC/source/support/bibtexperllibs/Makefile + RELOC/source/support/bibtexperllibs/README +runfiles size=14 + RELOC/scripts/bibtexperllibs/BibTeX/Parser.pm + RELOC/scripts/bibtexperllibs/BibTeX/Parser/Author.pm + RELOC/scripts/bibtexperllibs/BibTeX/Parser/Entry.pm + RELOC/scripts/bibtexperllibs/LaTeX/ToUnicode.pm + RELOC/scripts/bibtexperllibs/LaTeX/ToUnicode/Tables.pm +catalogue-contact-bugs https://github.com/borisveytsman/BibTeXPerlLibs/issues +catalogue-contact-development https://github.com/borisveytsman/BibTeXPerlLibs/pulls +catalogue-contact-repository https://github.com/borisveytsman/BibTeXPerlLibs +catalogue-ctan /support/bibtexperllibs +catalogue-date 2018-04-29 23:05:58 +0200 +catalogue-license gpl1artisticpd +catalogue-topics bibtex-supp +catalogue-version 1.5 + name bibtexu category TLCore -revision 29743 +revision 50655 +shortdesc BibTeX variant supporting Unicode (UTF-8) depend bibtexu.ARCH -docfiles size=15 - texmf-dist/doc/bibtexu/00readme.txt - texmf-dist/doc/bibtexu/HISTORY - texmf-dist/doc/bibtexu/csfile.txt - texmf-dist/doc/bibtexu/file_id.diz +containersize 292 +containerchecksum ad6c9702b9b1a41f45e493d27a75f703a06aab99f30ed920f8e3fa8a00d9fdb37009afc7dc5c27ac557e5fb5b3214cb0473ea5099e1fbdc596c5d8f86865a71f +doccontainersize 67480 +doccontainerchecksum 317a7806774db23017870f67b66730a77ff3944467bd9575bc6fb9f6a64c8e273bd3e337af218e1b4a156cd4e040bf6c152711d2e8bcd4bcfcb94c4746cd6b06 +docfiles size=23 + texmf-dist/doc/bibtexu/README + texmf-dist/doc/bibtexu/examples/test.bbl + texmf-dist/doc/bibtexu/examples/test.bib + texmf-dist/doc/bibtexu/examples/test.pdf + texmf-dist/doc/bibtexu/examples/test.tex + texmf-dist/doc/man/man1/bibtexu.1 + texmf-dist/doc/man/man1/bibtexu.man1.pdf + +name bibtexu.aarch64-linux +category TLCore +revision 50285 +shortdesc aarch64-linux files of bibtexu +containersize 5333996 +containerchecksum 205ef73521d2ef0d60bf2376c65278f4138ecbc542fadc2c08a3dfe215cc8fe0d998d0767f40e8e2a0a60bd0739ad5f2e0f3982980170b4755c1d0b7ef463218 +binfiles arch=aarch64-linux size=4889 + bin/aarch64-linux/bibtexu + +name bibtexu.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of bibtexu +containersize 5343888 +containerchecksum 5e92a934d7d8c08005ceeba26d05fc11bca4afb0bcc511cfd28472b1bf8bcf6bd4ac8391b24fc1d926741f1969a7979f4f68d7f5b335eb508565bf0855343e5b +binfiles arch=amd64-freebsd size=4853 + bin/amd64-freebsd/bibtexu + +name bibtexu.amd64-netbsd +category TLCore +revision 50274 +shortdesc amd64-netbsd files of bibtexu +containersize 5293356 +containerchecksum 907cb4c1cdc08b8a9c8ddf8d56ca05ac3240a12327baab770d555fae45543fec0d872d947915428dd6e6d5e1a51994a85803fd7369e347e7dd0a753fa2a8338f +binfiles arch=amd64-netbsd size=4927 + bin/amd64-netbsd/bibtexu + +name bibtexu.armhf-linux +category TLCore +revision 50296 +shortdesc armhf-linux files of bibtexu +containersize 5264980 +containerchecksum 432c802c5d440b495cc947c2db6e7fc08d970addc5e79eaacfd2f0f3672ca7f79497176c1e693f3cfc3beb40b4dec3aca231f12da2a52906f0328339459bece3 +binfiles arch=armhf-linux size=4796 + bin/armhf-linux/bibtexu + +name bibtexu.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of bibtexu +containersize 5315960 +containerchecksum 21b4156380eee9e2202a981d50ca76bf5b0460991707db99aff0c1157c3654e82146cda5b45f774b529876a85bcdc596a4624bc19ab2caf9800a68dd20ef1953 +binfiles arch=i386-cygwin size=4830 + bin/i386-cygwin/bibtexu.exe + +name bibtexu.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of bibtexu +containersize 5298984 +containerchecksum 11b64a8c570c2d01d5cdca597d283cd091a597cb3298ca41a79621e89f95d050474187d3718e6eadd3be287b2d2c2089e58d7d922a0a4b947ded5db7690d9d12 +binfiles arch=i386-freebsd size=4802 + bin/i386-freebsd/bibtexu name bibtexu.i386-linux category TLCore -revision 36790 +revision 50281 shortdesc i386-linux files of bibtexu -binfiles arch=i386-linux size=4616 +containersize 5381792 +containerchecksum 9ca05b765b723b38ee5daf0434fcc8ecc5fa6375cdec42ae0dc4851992825bd223ecced70b4401259f1a5c9bc58c3fab9f03cbeae469fe5187d66073b178dd6e +binfiles arch=i386-linux size=4865 bin/i386-linux/bibtexu -name bibtopicprefix -category Package -revision 15878 -shortdesc Prefix references to bibliographies produced by bibtopic. -relocated 1 -longdesc The package permits users to apply prefixes (fixed strings) to -longdesc references to entries in bibliographies produced by the -longdesc bibtopic package. -runfiles size=1 - RELOC/tex/latex/bibtopicprefix/bibtopicprefix.sty -docfiles size=98 - RELOC/doc/latex/bibtopicprefix/README - RELOC/doc/latex/bibtopicprefix/bibtopicprefix.pdf - RELOC/doc/latex/bibtopicprefix/bibtopicprefix.xml -srcfiles size=5 - RELOC/source/latex/bibtopicprefix/bibtopicprefix.drv - RELOC/source/latex/bibtopicprefix/bibtopicprefix.dtx - RELOC/source/latex/bibtopicprefix/bibtopicprefix.ins -catalogue-ctan /macros/latex/contrib/bibtopicprefix -catalogue-date 2012-06-03 12:03:29 +0200 -catalogue-license lppl -catalogue-version 1.10 +name bibtexu.i386-netbsd +category TLCore +revision 50274 +shortdesc i386-netbsd files of bibtexu +containersize 5251284 +containerchecksum 91dcf31a165126b3f1b3fbbfac74899be212d66e1f6543a20817b6bbbe43996fd324a337fe4fcb6d8919e62aee6bac6e869cc427ad015baef412b0626623feb9 +binfiles arch=i386-netbsd size=4879 + bin/i386-netbsd/bibtexu + +name bibtexu.i386-solaris +category TLCore +revision 50296 +shortdesc i386-solaris files of bibtexu +containersize 5407156 +containerchecksum ab9c8df051c33aa5feafbc1aa03cb0672ba422f0d8e1c6471b571c828baccd5f2ef767206ec2740a40ddb424961dd46aa40265af0d4c17f50e7fecf6063e23bf +binfiles arch=i386-solaris size=4901 + bin/i386-solaris/bibtexu + +name bibtexu.win32 +category TLCore +revision 50254 +shortdesc win32 files of bibtexu +containersize 515752 +containerchecksum eafb5957fe1ccf8e8d3f2bd99db9cb07d85102b13d79c14c0da9a2fad1e8121352058a742ce7a6a87aa2738d9a5df4d69b0f39d4e41ac8a1546a4899c202fb3c +binfiles arch=win32 size=325 + bin/win32/bibtexu.exe + +name bibtexu.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of bibtexu +containersize 5307956 +containerchecksum e0a140e2fcd3425de0b93941eb85bf815ba1671ce0c3a556c2cee7bed80de2fd6b8fb76cb810698431a7a732000e79ac0e082b7d6d8ba09ca8846f300f8db06e +binfiles arch=x86_64-cygwin size=4816 + bin/x86_64-cygwin/bibtexu.exe + +name bibtexu.x86_64-darwin +category TLCore +revision 50284 +shortdesc x86_64-darwin files of bibtexu +containersize 5360260 +containerchecksum 04abef3f1d577308161e673553206a853b3ae1eb314bffea5c652336b16eb2e0fdc540c402c15f9e1942ee706dc05e4c96f0d1aaf5fbbfaac1859d5ee79b690e +binfiles arch=x86_64-darwin size=4840 + bin/x86_64-darwin/bibtexu + +name bibtexu.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of bibtexu +containersize 5326288 +containerchecksum 99e2ca507ffb56c23f6404852f7e1d00cd9d019fbaf373313e355a17fdaec0797dca53e38a9b0b1bad7f7ce7f10dcc223ac21f570f253725f142d2b287856c2e +binfiles arch=x86_64-darwinlegacy size=4823 + bin/x86_64-darwinlegacy/bibtexu + +name bibtexu.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of bibtexu +containersize 5360820 +containerchecksum d02931ce00c55c6e2d86faa2205c2976b4b6f6493d80c75ce187bc621574afc7efc4d000c5b7aec90e36943bbe52fd3b84b16bf3d589e27fd702db6cc4e61f3d +binfiles arch=x86_64-linux size=4849 + bin/x86_64-linux/bibtexu + +name bibtexu.x86_64-linuxmusl +category TLCore +revision 50281 +shortdesc x86_64-linuxmusl files of bibtexu +containersize 5397336 +containerchecksum 4f3c03022b2da5cf9ad9f12cc9fee24b35f0a8efcce38cdf204ce8b1a60531804f299c24100eb07fd361760cad15d798ebfa49732c4be5fa63e575fb9d39b3d9 +binfiles arch=x86_64-linuxmusl size=4909 + bin/x86_64-linuxmusl/bibtexu + +name bibtexu.x86_64-solaris +category TLCore +revision 50296 +shortdesc x86_64-solaris files of bibtexu +containersize 5447136 +containerchecksum 1b6bd1b226b9256b2f5fd7275f1e37d793e1be85a3d1c4a57d42190800e6d1765a1f8325a6f222a167df7e4811377eeb3ca1bd6be4751d673dbda4bef553558e +binfiles arch=x86_64-solaris size=4959 + bin/x86_64-solaris/bibtexu name bibtopic category Package revision 15878 -shortdesc Include multiple bibliographies in a document. +shortdesc Include multiple bibliographies in a document relocated 1 longdesc The package allows the user to include several bibliographies longdesc covering different 'topics' or bibliographic material into a @@ -17716,26 +34327,63 @@ longdesc bibliographic 'topic', each of which will be processed longdesc separately by BibTeX. If you want to have bibliographies longdesc specific to one part of a document, see the packages bibunits longdesc or chapterbib. -runfiles size=9 - RELOC/tex/latex/bibtopic/bibtopic.sty +containersize 8592 +containerchecksum 34e2a644cc4472f415522e6e798bcb1e2d623afd4783b07f4904405c63296ec912fb6c1d03f80d51c37ab81944cddb5b4f3678a22a7151d89376ed9aa343e9d7 +doccontainersize 222060 +doccontainerchecksum 5849fd57abb9bd847833993e660e342a537562bea9fba76376f3885d3bd09360c5783e4f04828137b43c076b635a2d566d908be48287c3fe6645c2abcba06652 docfiles size=66 - RELOC/doc/latex/bibtopic/README + RELOC/doc/latex/bibtopic/README details="Readme" RELOC/doc/latex/bibtopic/articles.bib - RELOC/doc/latex/bibtopic/bibtopic.pdf + RELOC/doc/latex/bibtopic/bibtopic.pdf details="Package documentation" RELOC/doc/latex/bibtopic/books.bib RELOC/doc/latex/bibtopic/sample.tex +srccontainersize 40496 +srccontainerchecksum 2b6d11221e625b6d568874d12cbc7b45d074ebe2bb973d63fcbb9d85689a4c27824f3eec68fcaa46f0de707767baa516c3925ff0fc4d6a90518584847844ede9 srcfiles size=42 RELOC/source/latex/bibtopic/bibtopic.dtx RELOC/source/latex/bibtopic/bibtopic.ins +runfiles size=9 + RELOC/tex/latex/bibtopic/bibtopic.sty catalogue-ctan /macros/latex/contrib/bibtopic -catalogue-date 2012-06-03 12:03:29 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics bibtex-multi bibtex-supp catalogue-version 1.1a +name bibtopicprefix +category Package +revision 15878 +shortdesc Prefix references to bibliographies produced by bibtopic +relocated 1 +longdesc The package permits users to apply prefixes (fixed strings) to +longdesc references to entries in bibliographies produced by the +longdesc bibtopic package. +containersize 1844 +containerchecksum 1df7d78498b6de233aea92cb1b18f73893b8cab723fb614a9fe895e5131639c1b4f4318cbe103ea4d9308e383627873576664f0af3ac6fd26aebd5b8b0036379 +doccontainersize 374820 +doccontainerchecksum 473a7db7638f471fd87b1cb242a3a593e3ff0aa4586c1fbe906cf12f2dd866a27ab50176b01d3f4158cdf0fc263fa54ce16eb63c797392349fbc90a8422c3b2f +docfiles size=98 + RELOC/doc/latex/bibtopicprefix/README + RELOC/doc/latex/bibtopicprefix/bibtopicprefix.pdf details="Package documentation" + RELOC/doc/latex/bibtopicprefix/bibtopicprefix.xml +srccontainersize 4620 +srccontainerchecksum ebb06f55dd58c5948e5586ba29fe3aff33533eb3b044e07be71da0f20512af21d9808ae7d970f168189bc84ccb9bde6a19e935d7d6280e929d169250d3781a3e +srcfiles size=5 + RELOC/source/latex/bibtopicprefix/bibtopicprefix.drv + RELOC/source/latex/bibtopicprefix/bibtopicprefix.dtx + RELOC/source/latex/bibtopicprefix/bibtopicprefix.ins +runfiles size=1 + RELOC/tex/latex/bibtopicprefix/bibtopicprefix.sty +catalogue-ctan /macros/latex/contrib/bibtopicprefix +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics bibtex-multi bibtex-supp +catalogue-version 1.10 + name bibunits category Package revision 15878 -shortdesc Multiple bibliographies in one document. +shortdesc Multiple bibliographies in one document relocated 1 longdesc The package provide a mechanism to generate separate longdesc bibliographies for different units (chapters, sections or @@ -17746,160 +34394,80 @@ longdesc by LaTeX may also appear in the document and citations can be longdesc placed in both the local unit and the global bibliographies at longdesc the same time. The package is compatible with koma-script and longdesc with the babel French option frenchb. -runfiles size=3 - RELOC/tex/latex/bibunits/bibunits.sty +containersize 3036 +containerchecksum 5658d508b876a88f3916a190a9090d66f2dbee98260af8d23c8358d0708f27fc80d4cf6c348b1f6e1ff196e7de6d5567e371ada640a9a602185611fb09e64ddd +doccontainersize 193792 +doccontainerchecksum 888e5a4c1863c15112ece5763b01525a1a74f97ae1270495a41d598e73c4583ce2b9e28030b3054dcfebd60b038fb2d32938d6be947477fca93014fac70676af docfiles size=68 - RELOC/doc/latex/bibunits/README + RELOC/doc/latex/bibunits/README details="Readme" RELOC/doc/latex/bibunits/bibtexall - RELOC/doc/latex/bibunits/bibunits.pdf + RELOC/doc/latex/bibunits/bibunits.pdf details="Package documentation" +srccontainersize 16152 +srccontainerchecksum 37cbb8ff6443757982a97bf6efa90881807712ebd7f0ce2975ef4960ef74e0541cea9fbffd64f765b6631378f3d21e2ac308ea1554709b6c2582b7cf7485398e srcfiles size=18 RELOC/source/latex/bibunits/bibunits.dtx RELOC/source/latex/bibunits/bibunits.ins +runfiles size=3 + RELOC/tex/latex/bibunits/bibunits.sty +catalogue-also bibtopic chapterbib catalogue-ctan /macros/latex/contrib/bibunits -catalogue-date 2012-06-03 12:03:29 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics bibtex-multi bibtex-supp catalogue-version 2.2 -name bidi-atbegshi -category Package -revision 35154 -shortdesc Bidi-aware shipout macros. -relocated 1 -longdesc The package adds some commands to the atbegshi package for -longdesc proper placement of background material in the left and right -longdesc corners of the output page, in both LTR and RTL modes. The -longdesc package only works with xelatex format and should be loaded -longdesc before the bidi package. -runfiles size=1 - RELOC/tex/xelatex/bidi-atbegshi/bidi-atbegshi.sty -docfiles size=24 - RELOC/doc/xelatex/bidi-atbegshi/README - RELOC/doc/xelatex/bidi-atbegshi/bidi-atbegshi-doc.pdf - RELOC/doc/xelatex/bidi-atbegshi/bidi-atbegshi-doc.tex - RELOC/doc/xelatex/bidi-atbegshi/test-LTR.pdf - RELOC/doc/xelatex/bidi-atbegshi/test-LTR.tex - RELOC/doc/xelatex/bidi-atbegshi/test-RTL.pdf - RELOC/doc/xelatex/bidi-atbegshi/test-RTL.tex - RELOC/doc/xelatex/bidi-atbegshi/test-foreground-LTR.pdf - RELOC/doc/xelatex/bidi-atbegshi/test-foreground-LTR.tex - RELOC/doc/xelatex/bidi-atbegshi/test-foreground-RTL.pdf - RELOC/doc/xelatex/bidi-atbegshi/test-foreground-RTL.tex -catalogue-ctan /macros/xetex/latex/bidi-atbegshi -catalogue-date 2014-09-12 11:12:21 +0200 -catalogue-license lppl1.3 -catalogue-version 0.1 - -name bidicontour -category Package -revision 34631 -shortdesc Bidi-aware coloured contour around text. -relocated 1 -longdesc The package is a re-implementation of the contour package, -longdesc making it bidi-aware, and adding support of the xdvipdfmx (when -longdesc the outline option of the package is used). -runfiles size=1 - RELOC/tex/xelatex/bidicontour/bidicontour.sty -docfiles size=14 - RELOC/doc/xelatex/bidicontour/README - RELOC/doc/xelatex/bidicontour/bidicontour-doc.pdf - RELOC/doc/xelatex/bidicontour/bidicontour-doc.tex - RELOC/doc/xelatex/bidicontour/bidicontour-example-copies.pdf - RELOC/doc/xelatex/bidicontour/bidicontour-example-copies.tex - RELOC/doc/xelatex/bidicontour/bidicontour-example-outline.pdf - RELOC/doc/xelatex/bidicontour/bidicontour-example-outline.tex -catalogue-ctan /macros/xetex/latex/bidicontour -catalogue-date 2015-03-30 22:55:45 +0200 -catalogue-license lppl1.3 -catalogue-version 0.2 - -name bidihl -category Package -revision 37795 -shortdesc Experimental bidi-aware text highlighting -relocated 1 -longdesc Experimental bidi-aware text highlighting. -runfiles size=2 - RELOC/tex/xelatex/bidihl/bidihl.sty -docfiles size=16 - RELOC/doc/xelatex/bidihl/README - RELOC/doc/xelatex/bidihl/bidihl-doc.pdf - RELOC/doc/xelatex/bidihl/bidihl-doc.tex - RELOC/doc/xelatex/bidihl/test-bidihl.pdf - RELOC/doc/xelatex/bidihl/test-bidihl.tex -catalogue-also bidi -catalogue-ctan /macros/xetex/latex/bidihl -catalogue-date 2015-07-07 06:21:04 +0200 -catalogue-license lppl1.3 -catalogue-topics xetex bidi -catalogue-version 0.1c - -name bidipagegrid -category Package -revision 34632 -shortdesc Bidi-aware page grid in background. -relocated 1 -longdesc The package is based on pagegrid. -runfiles size=4 - RELOC/tex/xelatex/bidipagegrid/bidipagegrid.sty -docfiles size=9 - RELOC/doc/xelatex/bidipagegrid/README - RELOC/doc/xelatex/bidipagegrid/bidipagegrid-doc.pdf - RELOC/doc/xelatex/bidipagegrid/bidipagegrid-doc.tex -catalogue-ctan /macros/xetex/latex/bidipagegrid -catalogue-date 2015-03-30 22:55:45 +0200 -catalogue-license lppl1.3 -catalogue-version 0.2 - -name bidipresentation -category Package -revision 35267 -shortdesc Experimental bidi presentation. -relocated 1 -longdesc A great portion of the code is borrowed from the texpower -longdesc bundle, with modifications to get things working properly in -longdesc both right to left and left to right modes. -runfiles size=47 - RELOC/tex/xelatex/bidipresentation/bidiprescolors.cfg - RELOC/tex/xelatex/bidipresentation/bidipresentation.cls -docfiles size=25 - RELOC/doc/xelatex/bidipresentation/README - RELOC/doc/xelatex/bidipresentation/fig-1.pdf - RELOC/doc/xelatex/bidipresentation/sample.pdf - RELOC/doc/xelatex/bidipresentation/sample.tex -catalogue-ctan /macros/xetex/latex/bidipresentation -catalogue-date 2014-09-30 08:30:24 +0200 -catalogue-license lppl1.3 -catalogue-version 0.3 - -name bidishadowtext -category Package -revision 34633 -shortdesc Bidi-aware shadow text. -relocated 1 -longdesc This package allows you to typeset Bidi-aware shadow text. It -longdesc is a re-implementation of the shadowtext package adding bidi -longdesc support. -runfiles size=1 - RELOC/tex/xelatex/bidishadowtext/bidishadowtext.sty -docfiles size=32 - RELOC/doc/xelatex/bidishadowtext/bidishadowtext-demo.pdf - RELOC/doc/xelatex/bidishadowtext/bidishadowtext-demo.tex - RELOC/doc/xelatex/bidishadowtext/bidishadowtext-doc.pdf - RELOC/doc/xelatex/bidishadowtext/bidishadowtext-doc.tex -catalogue-ctan /macros/xetex/latex/bidishadowtext -catalogue-date 2014-09-06 11:05:32 +0200 -catalogue-license lppl1.3 -catalogue-version 0.1 - name bidi category Package -revision 38190 -shortdesc Bidirectional typesetting in plain TeX and LaTeX, using XeTeX engine +revision 50910 +shortdesc Bidirectional typesetting in plain TeX and LaTeX, using XeTeX relocated 1 longdesc A convenient interface for typesetting bidirectional texts with longdesc plain TeX and LaTeX. The package includes adaptations for use longdesc with many other commonly-used packages. -runfiles size=256 +containersize 116640 +containerchecksum 50655aead4161a07102e9a32aa315e65c08ac6c4c896dfaa94d7198600ac9a9801a8366925c402b13e1512baf1ae024b1a682b0b8e2e97876e1511f0383eab46 +doccontainersize 3700636 +doccontainerchecksum 90931a137dbd9fb2101664829c6aa9380b7c45ab57f116edccab3d8e01bd96ccb402ae7af4b67b742cc59a545e2468feee4013763eff8725a1cba0f69c7615d8 +docfiles size=1015 + RELOC/doc/xelatex/bidi/README details="Readme" + RELOC/doc/xelatex/bidi/bidi-doc.pdf details="Package user documentation" + RELOC/doc/xelatex/bidi/bidi-logo.tex + RELOC/doc/xelatex/bidi/bidi.pdf details="Package source documentation" + RELOC/doc/xelatex/bidi/bidisample2e.tex + RELOC/doc/xelatex/bidi/bidismall2e.tex + RELOC/doc/xelatex/bidi/gull.jpg + RELOC/doc/xelatex/bidi/picture.jpg + RELOC/doc/xelatex/bidi/test-arydshln.tex + RELOC/doc/xelatex/bidi/test-bidi.tex + RELOC/doc/xelatex/bidi/test-brochure.tex + RELOC/doc/xelatex/bidi/test-casualcv.tex + RELOC/doc/xelatex/bidi/test-classiccv.tex + RELOC/doc/xelatex/bidi/test-color.tex + RELOC/doc/xelatex/bidi/test-supertabular.tex + RELOC/doc/xelatex/bidi/test-tabular.tex + RELOC/doc/xelatex/bidi/test-tabularx.tex + RELOC/doc/xelatex/bidi/test-tabulary.tex + RELOC/doc/xelatex/bidi/test1-colortbl.tex + RELOC/doc/xelatex/bidi/test1-wrapfig.tex + RELOC/doc/xelatex/bidi/test2-colortbl.tex + RELOC/doc/xelatex/bidi/test2-wrapfig.tex + RELOC/doc/xelatex/bidi/test3-wrapfig.tex +srccontainersize 133228 +srccontainerchecksum e078ced740ea5330792ee7625f20bea1096f8ac123f062365be96a1d2e95aa6cdaebb2112b8ff5e208a8f7e29443565d355e717000b81a9424119db2c6b37bf7 +srcfiles size=240 + RELOC/source/xelatex/bidi/bidi-doc-intro.ltx + RELOC/source/xelatex/bidi/bidi-doc-latex-basics.ltx + RELOC/source/xelatex/bidi/bidi-doc-latex-pkgs.ltx + RELOC/source/xelatex/bidi/bidi-doc-latex-pkgsupport.ltx + RELOC/source/xelatex/bidi/bidi-doc-latex-programming.ltx + RELOC/source/xelatex/bidi/bidi-doc-plain-basics.ltx + RELOC/source/xelatex/bidi/bidi-doc-plain-programming.ltx + RELOC/source/xelatex/bidi/bidi-doc-preamble.ltx + RELOC/source/xelatex/bidi/bidi-doc-title.ltx + RELOC/source/xelatex/bidi/bidi-doc.ltx + RELOC/source/xelatex/bidi/bidi.dtx + RELOC/source/xelatex/bidi/bidi.ins +runfiles size=293 RELOC/tex/xelatex/bidi/adjmulticol-xetex-bidi.def RELOC/tex/xelatex/bidi/algorithm2e-xetex-bidi.def RELOC/tex/xelatex/bidi/amsart-xetex-bidi.def @@ -17914,7 +34482,9 @@ runfiles size=256 RELOC/tex/xelatex/bidi/artikel3-xetex-bidi.def RELOC/tex/xelatex/bidi/arydshln-xetex-bidi.def RELOC/tex/xelatex/bidi/bibitem.pdf - RELOC/tex/xelatex/bidi/bidi-longtable.sty + RELOC/tex/xelatex/bidi/bidi-logo.pdf + RELOC/tex/xelatex/bidi/bidi-media9.sty + RELOC/tex/xelatex/bidi/bidi-perpage.sty RELOC/tex/xelatex/bidi/bidi.sty RELOC/tex/xelatex/bidi/bidi.tex RELOC/tex/xelatex/bidi/bidi2in1.sty @@ -17948,6 +34518,7 @@ runfiles size=256 RELOC/tex/xelatex/bidi/cvthemebidicasual.sty RELOC/tex/xelatex/bidi/cvthemebidiclassic.sty RELOC/tex/xelatex/bidi/dblfnote-xetex-bidi.def + RELOC/tex/xelatex/bidi/diagbox-xetex-bidi.def RELOC/tex/xelatex/bidi/draftwatermark-xetex-bidi.def RELOC/tex/xelatex/bidi/empheq-xetex-bidi.def RELOC/tex/xelatex/bidi/eso-pic-xetex-bidi.def @@ -17970,13 +34541,16 @@ runfiles size=256 RELOC/tex/xelatex/bidi/graphicx-xetex-bidi.def RELOC/tex/xelatex/bidi/hvfloat-xetex-bidi.def RELOC/tex/xelatex/bidi/hyperref-xetex-bidi.def + RELOC/tex/xelatex/bidi/imsproc-xetex-bidi.def RELOC/tex/xelatex/bidi/latex-xetex-bidi.def RELOC/tex/xelatex/bidi/leqno-xetex-bidi.def RELOC/tex/xelatex/bidi/letter-xetex-bidi.def RELOC/tex/xelatex/bidi/lettrine-xetex-bidi.def + RELOC/tex/xelatex/bidi/lineno-xetex-bidi.def RELOC/tex/xelatex/bidi/listings-xetex-bidi.def RELOC/tex/xelatex/bidi/loadingorder-xetex-bidi.def RELOC/tex/xelatex/bidi/longtable-xetex-bidi.def + RELOC/tex/xelatex/bidi/mathtools-xetex-bidi.def RELOC/tex/xelatex/bidi/mdframed-xetex-bidi.def RELOC/tex/xelatex/bidi/memoir-xetex-bidi.def RELOC/tex/xelatex/bidi/midfloat-xetex-bidi.def @@ -17987,8 +34561,10 @@ runfiles size=256 RELOC/tex/xelatex/bidi/newfloat-xetex-bidi.def RELOC/tex/xelatex/bidi/ntheorem-hyper-xetex-bidi.def RELOC/tex/xelatex/bidi/ntheorem-xetex-bidi.def + RELOC/tex/xelatex/bidi/overpic-xetex-bidi.def + RELOC/tex/xelatex/bidi/pdfbase-xetex-bidi.def RELOC/tex/xelatex/bidi/pdfpages-xetex-bidi.def - RELOC/tex/xelatex/bidi/pgf-xetex-bidi.def + RELOC/tex/xelatex/bidi/pgfcorescopes.code-xetex-bidi.def RELOC/tex/xelatex/bidi/picinpar-xetex-bidi.def RELOC/tex/xelatex/bidi/plain-xetex-bidi.def RELOC/tex/xelatex/bidi/pstricks-xetex-bidi.def @@ -18004,15 +34580,17 @@ runfiles size=256 RELOC/tex/xelatex/bidi/scrlettr-xetex-bidi.def RELOC/tex/xelatex/bidi/scrreprt-xetex-bidi.def RELOC/tex/xelatex/bidi/sidecap-xetex-bidi.def + RELOC/tex/xelatex/bidi/soul-xetex-bidi.def RELOC/tex/xelatex/bidi/stabular-xetex-bidi.def RELOC/tex/xelatex/bidi/subfigure-xetex-bidi.def RELOC/tex/xelatex/bidi/tabls-xetex-bidi.def RELOC/tex/xelatex/bidi/tabularx-xetex-bidi.def RELOC/tex/xelatex/bidi/tabulary-xetex-bidi.def RELOC/tex/xelatex/bidi/tc-xetex-bidi.def - RELOC/tex/xelatex/bidi/tikz-xetex-bidi.def + RELOC/tex/xelatex/bidi/tcolorbox-xetex-bidi.def RELOC/tex/xelatex/bidi/titlesec-xetex-bidi.def RELOC/tex/xelatex/bidi/titletoc-xetex-bidi.def + RELOC/tex/xelatex/bidi/tocbasic-xetex-bidi.def RELOC/tex/xelatex/bidi/tocbibind-xetex-bidi.def RELOC/tex/xelatex/bidi/tocloft-xetex-bidi.def RELOC/tex/xelatex/bidi/tocstyle-xetex-bidi.def @@ -18020,39 +34598,185 @@ runfiles size=256 RELOC/tex/xelatex/bidi/wrapfig-xetex-bidi.def RELOC/tex/xelatex/bidi/xcolor-xetex-bidi.def RELOC/tex/xelatex/bidi/xltxtra-xetex-bidi.def -docfiles size=948 - RELOC/doc/xelatex/bidi/README - RELOC/doc/xelatex/bidi/bidi-logo.pdf - RELOC/doc/xelatex/bidi/bidi-logo.tex - RELOC/doc/xelatex/bidi/bidi.pdf - RELOC/doc/xelatex/bidi/bidisample2e.tex - RELOC/doc/xelatex/bidi/bidismall2e.tex - RELOC/doc/xelatex/bidi/gull.jpg - RELOC/doc/xelatex/bidi/picture.jpg - RELOC/doc/xelatex/bidi/presentation-sample.tex - RELOC/doc/xelatex/bidi/test-arydshln.tex - RELOC/doc/xelatex/bidi/test-bidi.tex - RELOC/doc/xelatex/bidi/test-brochure.tex - RELOC/doc/xelatex/bidi/test-casualcv.tex - RELOC/doc/xelatex/bidi/test-classiccv.tex - RELOC/doc/xelatex/bidi/test-color.tex - RELOC/doc/xelatex/bidi/test-supertabular.tex - RELOC/doc/xelatex/bidi/test-tabular.tex - RELOC/doc/xelatex/bidi/test-tabularx.tex - RELOC/doc/xelatex/bidi/test-tabulary.tex - RELOC/doc/xelatex/bidi/test1-colortbl.tex - RELOC/doc/xelatex/bidi/test1-wrapfig.tex - RELOC/doc/xelatex/bidi/test2-colortbl.tex - RELOC/doc/xelatex/bidi/test2-wrapfig.tex - RELOC/doc/xelatex/bidi/test3-wrapfig.tex -srcfiles size=205 - RELOC/source/xelatex/bidi/bidi.dtx - RELOC/source/xelatex/bidi/bidi.ins +catalogue-contact-bugs https://github.com/bidi-tex/bidi/issues +catalogue-contact-repository https://github.com/bidi-tex/bidi catalogue-ctan /macros/xetex/latex/bidi -catalogue-date 2015-08-23 08:07:08 +0200 -catalogue-license lppl1.3 +catalogue-date 2019-04-30 10:23:54 +0200 +catalogue-license lppl1.3c catalogue-topics typesetting xetex bidi class -catalogue-version 17.6 +catalogue-version 35.8 + +name bidi-atbegshi +category Package +revision 35154 +shortdesc Bidi-aware shipout macros +relocated 1 +longdesc The package adds some commands to the atbegshi package for +longdesc proper placement of background material in the left and right +longdesc corners of the output page, in both LTR and RTL modes. The +longdesc package only works with xelatex format and should be loaded +longdesc before the bidi package. +containersize 1260 +containerchecksum 1295c87c038683212deaf52a4436bb6adc2a0cc0220b6767e770aa909d88eaeda4a0bd2dec739a2415745609aaec78cdd91d4949f90663323aeec63cefd45d01 +doccontainersize 66784 +doccontainerchecksum 6199c4d5b6064244c2fd38d8a0d6c4eac3c790cc786625502d89a5a8a2426f7182cc0e7c4b70513971a0cb4b1230bdbd1382c05762f6537a63a34fa4e79c020d +docfiles size=24 + RELOC/doc/xelatex/bidi-atbegshi/README details="Readme" + RELOC/doc/xelatex/bidi-atbegshi/bidi-atbegshi-doc.pdf details="Package documentation" + RELOC/doc/xelatex/bidi-atbegshi/bidi-atbegshi-doc.tex + RELOC/doc/xelatex/bidi-atbegshi/test-LTR.pdf + RELOC/doc/xelatex/bidi-atbegshi/test-LTR.tex + RELOC/doc/xelatex/bidi-atbegshi/test-RTL.pdf + RELOC/doc/xelatex/bidi-atbegshi/test-RTL.tex + RELOC/doc/xelatex/bidi-atbegshi/test-foreground-LTR.pdf + RELOC/doc/xelatex/bidi-atbegshi/test-foreground-LTR.tex + RELOC/doc/xelatex/bidi-atbegshi/test-foreground-RTL.pdf + RELOC/doc/xelatex/bidi-atbegshi/test-foreground-RTL.tex +runfiles size=1 + RELOC/tex/xelatex/bidi-atbegshi/bidi-atbegshi.sty +catalogue-contact-bugs https://github.com/bidi-tex/bidi-atbegshi/issues +catalogue-contact-repository https://github.com/bidi-tex/bidi-atbegshi +catalogue-ctan /macros/xetex/latex/bidi-atbegshi +catalogue-date 2018-11-28 18:39:05 +0100 +catalogue-license lppl1.3 +catalogue-topics bidi xetex +catalogue-version 0.1 + +name bidicontour +category Package +revision 34631 +shortdesc Bidi-aware coloured contour around text +relocated 1 +longdesc The package is a re-implementation of the contour package, +longdesc making it bidi-aware, and adding support of the xdvipdfmx (when +longdesc the outline option of the package is used). +containersize 1848 +containerchecksum 10364edc592375f69912888945e6d555df30627498aaae409b727392c64cd4aac386433119578a7a01a48bd0cff84aae33079593219b282feb9d96a68bdde78f +doccontainersize 30508 +doccontainerchecksum a1a3f9692ea2e462305f8c6db432586eb76d78cef5fa0e9057cbe5766ad99e25c560ad658569a92d1885e373fb6215fe2f9bcbc1c69b46c3088d36eb92e1aae9 +docfiles size=14 + RELOC/doc/xelatex/bidicontour/README + RELOC/doc/xelatex/bidicontour/bidicontour-doc.pdf details="Package documentation" + RELOC/doc/xelatex/bidicontour/bidicontour-doc.tex + RELOC/doc/xelatex/bidicontour/bidicontour-example-copies.pdf + RELOC/doc/xelatex/bidicontour/bidicontour-example-copies.tex + RELOC/doc/xelatex/bidicontour/bidicontour-example-outline.pdf + RELOC/doc/xelatex/bidicontour/bidicontour-example-outline.tex +runfiles size=1 + RELOC/tex/xelatex/bidicontour/bidicontour.sty +catalogue-contact-bugs https://github.com/bidi-tex/bidicontour/issues +catalogue-contact-repository https://github.com/bidi-tex/bidicontour +catalogue-ctan /macros/xetex/latex/bidicontour +catalogue-date 2018-11-28 18:47:25 +0100 +catalogue-license lppl1.3 +catalogue-topics decoration colour +catalogue-version 0.2 + +name bidihl +category Package +revision 37795 +shortdesc Experimental bidi-aware text highlighting +relocated 1 +longdesc Experimental bidi-aware text highlighting. +containersize 2356 +containerchecksum fd82ad18b96cdd782fddab8739e09978d08fc37e8c65a177bde930671e102c9ffefe7465fc766860068188f6b9f8222119ac791f07223f79e9840f25659ea3ea +doccontainersize 43416 +doccontainerchecksum c9d0503857f2cfa960e36872757afcab17b2631caa8a33112ff2361694939774052a5249db62d21831e19c17826f422853a78c5522094706bd4208d4c5223019 +docfiles size=16 + RELOC/doc/xelatex/bidihl/README details="Readme" + RELOC/doc/xelatex/bidihl/bidihl-doc.pdf details="Package documentation" + RELOC/doc/xelatex/bidihl/bidihl-doc.tex + RELOC/doc/xelatex/bidihl/test-bidihl.pdf + RELOC/doc/xelatex/bidihl/test-bidihl.tex +runfiles size=2 + RELOC/tex/xelatex/bidihl/bidihl.sty +catalogue-also bidi +catalogue-contact-bugs https://github.com/bidi-tex/bidihl/issues +catalogue-contact-repository https://github.com/bidi-tex/bidihl +catalogue-ctan /macros/xetex/latex/bidihl +catalogue-date 2018-11-28 18:51:46 +0100 +catalogue-license lppl1.3 +catalogue-topics xetex bidi +catalogue-version 0.1c + +name bidipagegrid +category Package +revision 34632 +shortdesc Bidi-aware page grid in background +relocated 1 +longdesc The package is based on pagegrid. +containersize 3264 +containerchecksum b823a646d97c15ad9beb3aebeb7b2156aefc3ffd7bdec813e9cb2481e137cd661936c57bacc3b8c42509151205dbd4096329b5cbec25bd06698b698c59739551 +doccontainersize 25800 +doccontainerchecksum 615d87ca4c29e0a30cf1eee08819b10419a2f399a88f2bfed5bfb6eaf7b1adc8b64a2ccac5da7bedab4e4b951e80488b97203b9960980ca5919f653cc4218996 +docfiles size=9 + RELOC/doc/xelatex/bidipagegrid/README details="README" + RELOC/doc/xelatex/bidipagegrid/bidipagegrid-doc.pdf details="Package documentation" + RELOC/doc/xelatex/bidipagegrid/bidipagegrid-doc.tex +runfiles size=4 + RELOC/tex/xelatex/bidipagegrid/bidipagegrid.sty +catalogue-contact-bugs https://github.com/bidi-tex/bidipagegrid/issues +catalogue-contact-repository https://github.com/bidi-tex/bidipagegrid +catalogue-ctan /macros/xetex/latex/bidipagegrid +catalogue-date 2018-11-28 18:59:23 +0100 +catalogue-license lppl1.3 +catalogue-topics layout-show background xetex bidi +catalogue-version 0.2 + +name bidipresentation +category Package +revision 35267 +shortdesc Experimental bidi presentation +relocated 1 +longdesc A great portion of the code is borrowed from the texpower +longdesc bundle, with modifications to get things working properly in +longdesc both right to left and left to right modes. +containersize 28048 +containerchecksum a41f98c3f009f7f8de8a41e386cc829c55650e603ccaa8e7e381fae45be2872e0b20e66b68e4d7ef8110abf7c9f6661865d49f7c0cf3ca4ae6f781c3ef5bc0ac +doccontainersize 75456 +doccontainerchecksum 56993d41b237d25e00536926b3b23f1b1a6940aabe4f636df73cabd5ec27252de9fb8ff17d872cec3cda7a0a3b8b13013ec77477dd89ebba83a8406da3ee144d +docfiles size=25 + RELOC/doc/xelatex/bidipresentation/README details="Readme" + RELOC/doc/xelatex/bidipresentation/fig-1.pdf + RELOC/doc/xelatex/bidipresentation/sample.pdf details="Sample presentation" + RELOC/doc/xelatex/bidipresentation/sample.tex +runfiles size=47 + RELOC/tex/xelatex/bidipresentation/bidiprescolors.cfg + RELOC/tex/xelatex/bidipresentation/bidipresentation.cls +catalogue-contact-bugs https://github.com/bidi-tex/bidipresentation/issues +catalogue-contact-repository https://github.com/bidi-tex/bidipresentation +catalogue-ctan /macros/xetex/latex/bidipresentation +catalogue-date 2018-11-28 19:02:56 +0100 +catalogue-license lppl1.3 +catalogue-topics class presentation bidi +catalogue-version 0.3 + +name bidishadowtext +category Package +revision 34633 +shortdesc Bidi-aware shadow text +relocated 1 +longdesc This package allows you to typeset bidi-aware shadow text. It +longdesc is a re-implementation of the shadowtext package adding bidi +longdesc support. +containersize 1312 +containerchecksum bf9a75be6d1f37055c793a16b0a4d019579adcbe14a93b64cec5495e4d7c8bcd8b8c6d86906714f8aa47be5789209a1ce78d19e8023b44b9d52409b281797310 +doccontainersize 120564 +doccontainerchecksum ac2f47ed1a5535ff1f0030c38bc210b2e3905bd46ce7024d5237387faf87be6a408ea35648f83a2ad7697ec09a91a4cce1aebd32c3446756adf1955bfa97f7c3 +docfiles size=32 + RELOC/doc/xelatex/bidishadowtext/bidishadowtext-demo.pdf details="Example of use" + RELOC/doc/xelatex/bidishadowtext/bidishadowtext-demo.tex + RELOC/doc/xelatex/bidishadowtext/bidishadowtext-doc.pdf details="Package documentation" + RELOC/doc/xelatex/bidishadowtext/bidishadowtext-doc.tex +runfiles size=1 + RELOC/tex/xelatex/bidishadowtext/bidishadowtext.sty +catalogue-contact-bugs https://github.com/bidi-tex/bidishadowtext/issues +catalogue-contact-repository https://github.com/bidi-tex/bidishadowtext +catalogue-ctan /macros/xetex/latex/bidishadowtext +catalogue-date 2018-11-28 19:08:07 +0100 +catalogue-license lppl1.3 +catalogue-topics decoration xetex bidi +catalogue-version 0.1 name bigfoot category Package @@ -18070,17 +34794,19 @@ longdesc Note that the majority of the bigfoot package's interface is longdesc identical to that of manyfoot; users should seek information longdesc from that package's documentation. The bigfoot bundle also longdesc provides the perpage and suffix packages. -runfiles size=14 - RELOC/tex/latex/bigfoot/bigfoot.sty - RELOC/tex/latex/bigfoot/perpage.sty - RELOC/tex/latex/bigfoot/suffix.sty +containersize 11372 +containerchecksum f56fb1545e0a044a143d1a257b9784b5f5dcc56d68bbeb52f909eb928e9d749729135f0c76b3af6dd0306add550b440d32aee21c33e70b9b48a5a82220623702 +doccontainersize 736348 +doccontainerchecksum f5935a5ede836798f3eab1ff61d528870a07be712047a64aa5af5576a1c6032e9d88fb5c42cf216e0f9812266f9a8562b5290301446c654dcb46146d7b60a16e docfiles size=202 RELOC/doc/latex/bigfoot/COPYING RELOC/doc/latex/bigfoot/Makefile - RELOC/doc/latex/bigfoot/README - RELOC/doc/latex/bigfoot/bigfoot.pdf + RELOC/doc/latex/bigfoot/README details="Readme" + RELOC/doc/latex/bigfoot/bigfoot.pdf details="Package documentation" RELOC/doc/latex/bigfoot/perpage.pdf RELOC/doc/latex/bigfoot/suffix.pdf +srccontainersize 43760 +srccontainerchecksum 75316aff3c594fd904adec7cadd0b24aff9d527479d0c59f3fc654772e29cdb4cca938fe5fef6e14b9928fb25f37fdd3f7a894a81f95810813875c4fd419dff6 srcfiles size=49 RELOC/source/latex/bigfoot/bigfoot.drv RELOC/source/latex/bigfoot/bigfoot.dtx @@ -18089,8 +34815,12 @@ srcfiles size=49 RELOC/source/latex/bigfoot/perpage.dtx RELOC/source/latex/bigfoot/suffix.drv RELOC/source/latex/bigfoot/suffix.dtx +runfiles size=14 + RELOC/tex/latex/bigfoot/bigfoot.sty + RELOC/tex/latex/bigfoot/perpage.sty + RELOC/tex/latex/bigfoot/suffix.sty catalogue-ctan /macros/latex/contrib/bigfoot -catalogue-date 2015-08-30 19:17:38 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl2 catalogue-topics footnote catalogue-version 2.1 @@ -18098,45 +34828,127 @@ catalogue-version 2.1 name bigints category Package revision 29803 -shortdesc Writing big integrals. +shortdesc Writing big integrals relocated 1 longdesc The package provides facilities for drawing big integral signs longdesc when needed. An example would be when the integrand is a longdesc matrix. -runfiles size=2 - RELOC/tex/latex/bigints/bigints.sty +containersize 1228 +containerchecksum 23f9a529af214771f74c6921baf8582b6a3c5e170d0fa511c260f5dd3fb6cb6194ef4082ed299dc0a3ff8e413981a36b594b440e7bc5512c7d2732fed9eb7a8e +doccontainersize 107716 +doccontainerchecksum 46799d5c6758657eadca7fb30d214baf47c237b63655a71ad19e188fd54b664397babbbc5cf6d9897e81decd027dea1e0d1a6fea97384461ec8976fc19c7fd8d docfiles size=61 RELOC/doc/latex/bigints/Makefile - RELOC/doc/latex/bigints/README + RELOC/doc/latex/bigints/README details="Readme" RELOC/doc/latex/bigints/bigints.forlisting - RELOC/doc/latex/bigints/bigints.pdf + RELOC/doc/latex/bigints/bigints.pdf details="Package documentation" RELOC/doc/latex/bigints/bigints.tex RELOC/doc/latex/bigints/perso.ist +runfiles size=2 + RELOC/tex/latex/bigints/bigints.sty catalogue-ctan /macros/latex/contrib/bigints -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2019-02-04 13:21:37 +0100 catalogue-license lppl +catalogue-topics maths + +name binarytree +category Package +revision 41777 +shortdesc Drawing binary trees using TikZ +relocated 1 +longdesc This package provides an easy but flexible way to draw binary +longdesc trees using TikZ. A path specification and the setting of +longdesc various options determine the style for each edge of the tree. +longdesc There is support for the external library of TikZ which does +longdesc not affect externalization of the rest of the TikZ figures in +longdesc the document. There is an option to use automatic file naming: +longdesc useful if the trees are often moved around. +containersize 5976 +containerchecksum b2204194393811994915604d428e0b537bf871681ea42a93d1e26a74d01cdee3ccd7817e7705cb6a3b9a1f2a97381e23226db9d671ddc36beb5c478271099cc0 +doccontainersize 447560 +doccontainerchecksum 4ef9f7db1d9cf124112e3f3e5c6db7e0b53bd72a5d7674a9f0ac7c471b88ff72309705b8d3942277a93883ef821907f0119d4dd3f645c8caa098f363612df68a +docfiles size=119 + RELOC/doc/latex/binarytree/README details="README" + RELOC/doc/latex/binarytree/binarytree.pdf details="Package documentation" + RELOC/doc/latex/binarytree/examples/binarytree-ex1.pdf + RELOC/doc/latex/binarytree/examples/binarytree-ex1.tex + RELOC/doc/latex/binarytree/examples/binarytree-ex2.pdf + RELOC/doc/latex/binarytree/examples/binarytree-ex2.tex + RELOC/doc/latex/binarytree/examples/binarytree-ex3.pdf + RELOC/doc/latex/binarytree/examples/binarytree-ex3.tex + RELOC/doc/latex/binarytree/examples/binarytree-ex4.pdf + RELOC/doc/latex/binarytree/examples/binarytree-ex4.tex + RELOC/doc/latex/binarytree/examples/btree-5_up_0,0,0_3729359_7458719_655360_0.7_0.7_-lrr-x--_-llrr-x--_-rll-x--_-rrll-x--.pdf +srccontainersize 18836 +srccontainerchecksum ff1e8ce1d07c2011624086ae5810220af3e28f19eba4dff9e090e757787797afded50d937a7c1f503eb32bdc91cee2b0b1b42486381b725e57a127e5751ae5d7 +srcfiles size=21 + RELOC/source/latex/binarytree/binarytree.dtx + RELOC/source/latex/binarytree/binarytree.ins +runfiles size=7 + RELOC/tex/latex/binarytree/binarytree.sty +catalogue-ctan /graphics/pgf/contrib/binarytree +catalogue-date 2016-09-17 10:33:12 +0200 +catalogue-license lppl1.3 +catalogue-topics graphics-in-tex pgf-tikz tree +catalogue-version 1.01 name binomexp category Package revision 15878 -shortdesc Calculate Pascal's triangle. +shortdesc Calculate Pascal's triangle relocated 1 longdesc The package calculates and prints rows of Pascal's triangle. It longdesc may be used: simply to print successive rows of the triangle, longdesc or to print the rows inside an array or tabular. -runfiles size=2 - RELOC/tex/latex/binomexp/binomexp.sty +containersize 2328 +containerchecksum 61cd0072f766bc4abb1e3ed828d06c0e0ae6fb74902ad86e6c4ff3279ddd84386bbb0b1d669d9e71eef362c8d50577047e6076b174ca5b54da8680a43c5e1715 +doccontainersize 66976 +doccontainerchecksum 9f8e24377ef858e0b3ecc94dc87eeeae08931084316034ea5e3de822ed8b6a65c4744b744a547aea19d3486bb6f2b04f46f1e7ec81cac2470d16b7134885d355 docfiles size=22 - RELOC/doc/latex/binomexp/README - RELOC/doc/latex/binomexp/binomexp.pdf + RELOC/doc/latex/binomexp/README details="Readme" + RELOC/doc/latex/binomexp/binomexp.pdf details="Package documentation" +srccontainersize 4600 +srccontainerchecksum 96ac7f02535a36555dc773b096324e821fa554423dc1d3fbb3436042a2ffa63e7d28b8d872b03b961143178aad40b6d14ef0be7378be99782e94f957889489d9 srcfiles size=5 RELOC/source/latex/binomexp/binomexp.dtx RELOC/source/latex/binomexp/binomexp.ins +runfiles size=2 + RELOC/tex/latex/binomexp/binomexp.sty catalogue-ctan /macros/latex/contrib/binomexp -catalogue-date 2014-10-16 09:43:46 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics calculation maths catalogue-version 1.0 +name biochemistry-colors +category Package +revision 43960 +shortdesc Colors used to display amino acids, nucleotides, sugars or atoms in biochemistry +relocated 1 +longdesc Biochemistry-colors.sty defines the standard colors of +longdesc biochemistry for use with the color package and the xcolor +longdesc package. xcolor is loaded by Biochemistry-colors.sty. Colors +longdesc include: Shapely-colors for amino acids and nucleotides. +longdesc CPK-Colors (Corey, Pauling and Koltun) of elements. Jmol-colors +longdesc of elements, important isotopes and structures. Glycopedia +longdesc colors for sugars. +containersize 2868 +containerchecksum 204e04776677a70f40ac602977cb4e4f53a8d15873808b98653981b2e8198e7cd234189bc0903467569bc95a1f4aa2070343f27042bcbcf2d43720a44dc53b5e +doccontainersize 67040 +doccontainerchecksum e1ce9b0e9afc7b6fad2b22b9a30b8785dca1a8a5e132c23a1ed688fcf6df06245a6914a5123f937fc37b597fa3a2f412e0a4afc5f8aae85cefc32dbf70a14405 +docfiles size=50 + RELOC/doc/latex/biochemistry-colors/Biochemistry-colors.pdf details="Package documentation" + RELOC/doc/latex/biochemistry-colors/Biochemistry-colors.xls + RELOC/doc/latex/biochemistry-colors/README.txt details="Readme" +runfiles size=3 + RELOC/tex/latex/biochemistry-colors/Biochemistry-colors.sty +catalogue-also css-colors +catalogue-ctan /macros/latex/contrib/biochemistry-colors +catalogue-date 2017-06-05 06:44:00 +0200 +catalogue-license lpplgpl +catalogue-topics colour +catalogue-version 1.00 + name biocon category Package revision 15878 @@ -18150,29 +34962,57 @@ longdesc Fungi, Animalia and Bacteria kingdoms. There are default longdesc settings for the way species names are typeset, but they can be longdesc customized. Different default styles are used in different longdesc situations. -runfiles size=4 - RELOC/tex/latex/biocon/biocon-old.sty - RELOC/tex/latex/biocon/biocon.sty +containersize 3376 +containerchecksum 54676e4acaee07609c379d387af4f06b45a4bc0051a3333c250555536114b3862da73d70305b1f62adf7afca2b4a2157cce8afd9e20f10e49b01d4c2ad351cdb +doccontainersize 225784 +doccontainerchecksum c296c8402129338295a3043a66bab91a499b29703f7ecead0a045e0820ced683a4c25168ecdfc184c07282904afed3703b31f8ca707492a913de7c49a351c322 docfiles size=121 RELOC/doc/latex/biocon/COPYING RELOC/doc/latex/biocon/INSTALL - RELOC/doc/latex/biocon/README + RELOC/doc/latex/biocon/README details="Readme" RELOC/doc/latex/biocon/biocon.nw RELOC/doc/latex/biocon/literature.bib RELOC/doc/latex/biocon/manual-old.pdf RELOC/doc/latex/biocon/manual-old.tex - RELOC/doc/latex/biocon/manual.pdf + RELOC/doc/latex/biocon/manual.pdf details="Package documentation" RELOC/doc/latex/biocon/manual.tex RELOC/doc/latex/biocon/source.pdf RELOC/doc/latex/biocon/source.tex +runfiles size=4 + RELOC/tex/latex/biocon/biocon-old.sty + RELOC/tex/latex/biocon/biocon.sty catalogue-ctan /macros/latex/contrib/biocon -catalogue-date 2012-04-28 20:54:25 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics biology + +name biolett-bst +category Package +revision 42217 +shortdesc A BibTeX style for the journal "Biology Letters" +relocated 1 +longdesc This package provides a BibTeX style (.bst) file for the +longdesc journal "Biology Letters" published by the Royal Society. This +longdesc style was produced independently and hence has no formal +longdesc approval from the Royal Society. +containersize 5696 +containerchecksum e593f073daea4a8326d0a472999c128f511becde100c5dbedd540fd6ea116c5585b2d3673165ed39abf1942fb66c8372ca1961cef90501244f5320119117af05 +doccontainersize 960 +doccontainerchecksum 7b3f9666225849463683a38a3ccb4e5bc9c0869312d31173f48776c2b209eb269309699b2173c2eb5fc9163baabefd1bf6cf288ca683142285dda6f0c6d95b61 +docfiles size=1 + RELOC/doc/bibtex/biolett-bst/README.txt details="Readme" +runfiles size=7 + RELOC/bibtex/bst/biolett-bst/biolett.bst +catalogue-contact-home http://www.isoptera.ufv.br/ +catalogue-ctan /biblio/bibtex/contrib/biolett-bst +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1 +catalogue-topics bibtex-sty journalpub biology name bitelist category Package revision 25779 -shortdesc Split list, in TeX's mouth. +shortdesc Split list, in TeX's mouth relocated 1 longdesc The package provides commands for "splitting" a token list at longdesc the first occurrence of another (specified) token list. I.e., @@ -18184,68 +35024,186 @@ longdesc parameters; splitting macros work by pure expansion, without longdesc assignments; the operation is carried out in a single macro longdesc call. A variant of the operation is provided, that retains longdesc outer braces. -runfiles size=4 - RELOC/tex/generic/bitelist/bitedemo.tex - RELOC/tex/generic/bitelist/bitelist.sty +containersize 5352 +containerchecksum a2022ccc4f45f7a911eea4e99557764770b4e6f2ba0333e043fda2419e29d93bac40462fd36568354a415a9b27204a38620e6191fddcdb053f8956aac5747cbf +doccontainersize 362388 +doccontainerchecksum 5c3186464aaadbf269b26321ed9447e8a1633ca9b4a7b323da692277ab074f15b6c39df866eb41955dbd6ca8b0ff76a115786f3273fdb293bfb79893dfe0de99 docfiles size=100 - RELOC/doc/generic/bitelist/README - RELOC/doc/generic/bitelist/bitelist.pdf + RELOC/doc/generic/bitelist/README details="Readme" + RELOC/doc/generic/bitelist/bitelist.pdf details="Package documentation" +srccontainersize 6228 +srccontainerchecksum 0dfbf3dc2ad3b11ce91f1f5f6949f3d8559e0f90044abff431af556560382b5063a96e661c7e95667f3079a7386df85938e937743e2f185a13f4d8a2259fc4eb srcfiles size=5 RELOC/source/generic/bitelist/bitelist.tex RELOC/source/generic/bitelist/srcfiles.tex +runfiles size=4 + RELOC/tex/generic/bitelist/bitedemo.tex + RELOC/tex/generic/bitelist/bitelist.sty +catalogue-also datatool stringstrings ted texapi xstring +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html catalogue-ctan /macros/generic/bitelist -catalogue-date 2014-10-16 09:43:46 +0200 +catalogue-date 2017-05-05 20:23:26 +0200 catalogue-license lppl1.3 +catalogue-topics text-manip macro-supp catalogue-version 0.1 +name bitpattern +category Package +revision 39073 +shortdesc Typeset bit pattern diagrams +relocated 1 +longdesc A package to typeset bit pattern diagrams such as those used to +longdesc describe hardware, data format or protocols. +containersize 2156 +containerchecksum 34a0ade2d1110a15618b2ecc7f46a413519a0864a2e5cd1e25eacb9dd76cc66b35565b4b8c015780fa1d3dc88e2237ae7de33c77e29fd5428758a526959625af +doccontainersize 175700 +doccontainerchecksum d1fd1b2b46d7846804c9163889bf3a96cda2e11e35de2328c9043f99ccd9d0778710219593565ec9231775e1404d713edd7998e3fa909ada7dee35333137b56f +docfiles size=44 + RELOC/doc/latex/bitpattern/README.md details="Readme" + RELOC/doc/latex/bitpattern/bitpattern.pdf details="Package documentation" +srccontainersize 6764 +srccontainerchecksum 8c5860792394f85ab87d2a3ab234496a1f550a24f98a5e2f8f4d815b24e4fd3e7d0a1ffefac3912536d22cd39fdbd91db013b1c8e05d4de92aca47db679fa7e3 +srcfiles size=8 + RELOC/source/latex/bitpattern/bitpattern.dtx + RELOC/source/latex/bitpattern/bitpattern.ins +runfiles size=2 + RELOC/tex/latex/bitpattern/bitpattern.sty +catalogue-ctan /macros/latex/contrib/bitpattern +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics engineering comp-sci comp-net + +name bitter +category Package +revision 51086 +shortdesc LaTeX support for the Bitter family of fonts +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Bitter family of fonts, designed by Sol Matas +longdesc for Huerta Tipografica Bitter is a contemporary slab-serif +longdesc typeface for text. There are regular and bold weights and an +longdesc italic, but no bold italic. +execute addMap bitter.map +containersize 191556 +containerchecksum edb101df2026b97585f8f5ca712a4bf41f5a2a15122a0e51448fcf1bdfe532bd7f70315644935a942bacdd431db4ff48ebc8b119cbf5d758909560eb2c942633 +doccontainersize 16644 +doccontainerchecksum 926e4a3e7e19ed8571e23afc779be014c3b451d9696ef8d552d6c7f9072c9ccac2eb3ebd68adbb247d7238b0e4786594f85aaecd65b91ddf883e81f20222f29c +docfiles size=8 + RELOC/doc/fonts/bitter/OFL.txt + RELOC/doc/fonts/bitter/README details="Readme" + RELOC/doc/fonts/bitter/bitter-samples.pdf details="Package documentation" + RELOC/doc/fonts/bitter/bitter-samples.tex +runfiles size=116 + RELOC/fonts/enc/dvips/bitter/btr_6upxhe.enc + RELOC/fonts/enc/dvips/bitter/btr_72jdjw.enc + RELOC/fonts/enc/dvips/bitter/btr_azarls.enc + RELOC/fonts/enc/dvips/bitter/btr_b5i5mx.enc + RELOC/fonts/enc/dvips/bitter/btr_f2umud.enc + RELOC/fonts/enc/dvips/bitter/btr_gljolu.enc + RELOC/fonts/enc/dvips/bitter/btr_ncjtqa.enc + RELOC/fonts/enc/dvips/bitter/btr_ssdm5h.enc + RELOC/fonts/enc/dvips/bitter/btr_vzfpnj.enc + RELOC/fonts/enc/dvips/bitter/btr_w3wxei.enc + RELOC/fonts/enc/dvips/bitter/btr_x2bjkb.enc + RELOC/fonts/map/dvips/bitter/bitter.map + RELOC/fonts/tfm/huerta/bitter/Bitter-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/bitter/Bitter-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/bitter/Bitter-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/bitter/Bitter-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/bitter/Bitter-Bold-tlf-t1.tfm + RELOC/fonts/tfm/huerta/bitter/Bitter-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/bitter/Bitter-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/bitter/Bitter-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/bitter/Bitter-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/bitter/Bitter-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/bitter/Bitter-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/bitter/Bitter-Italic-tlf-t1.tfm + RELOC/fonts/tfm/huerta/bitter/Bitter-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/bitter/Bitter-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/bitter/Bitter-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/bitter/Bitter-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/bitter/Bitter-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/bitter/Bitter-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/bitter/Bitter-Regular-tlf-t1.tfm + RELOC/fonts/tfm/huerta/bitter/Bitter-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/bitter/Bitter-Regular-tlf-ts1.tfm + RELOC/fonts/truetype/huerta/bitter/Bitter-Bold.ttf + RELOC/fonts/truetype/huerta/bitter/Bitter-Italic.ttf + RELOC/fonts/truetype/huerta/bitter/Bitter-Regular.ttf + RELOC/fonts/type1/huerta/bitter/Bitter-Bold.pfb + RELOC/fonts/type1/huerta/bitter/Bitter-Italic.pfb + RELOC/fonts/type1/huerta/bitter/Bitter-Regular.pfb + RELOC/fonts/vf/huerta/bitter/Bitter-Bold-tlf-ly1.vf + RELOC/fonts/vf/huerta/bitter/Bitter-Bold-tlf-t1.vf + RELOC/fonts/vf/huerta/bitter/Bitter-Bold-tlf-ts1.vf + RELOC/fonts/vf/huerta/bitter/Bitter-Italic-tlf-ly1.vf + RELOC/fonts/vf/huerta/bitter/Bitter-Italic-tlf-t1.vf + RELOC/fonts/vf/huerta/bitter/Bitter-Italic-tlf-ts1.vf + RELOC/fonts/vf/huerta/bitter/Bitter-Regular-tlf-ly1.vf + RELOC/fonts/vf/huerta/bitter/Bitter-Regular-tlf-t1.vf + RELOC/fonts/vf/huerta/bitter/Bitter-Regular-tlf-ts1.vf + RELOC/tex/latex/bitter/LY1Bitter-TLF.fd + RELOC/tex/latex/bitter/OT1Bitter-TLF.fd + RELOC/tex/latex/bitter/T1Bitter-TLF.fd + RELOC/tex/latex/bitter/TS1Bitter-TLF.fd + RELOC/tex/latex/bitter/bitter.sty +catalogue-contact-home https://fonts.google.com/specimen/Bitter +catalogue-ctan /fonts/bitter +catalogue-date 2019-05-11 18:45:21 +0200 +catalogue-license lpplofl +catalogue-topics font font-serif font-proportional font-body font-ttf font-type1 font-t1enc + name bizcard category Package revision 15878 -shortdesc Typeset business cards. +shortdesc Typeset business cards relocated 1 longdesc This is an adaption for current LaTeX of a LaTeX 2.09 style by longdesc Silvano Balemi. It produces cards at the normal US card size, longdesc 76.2mm x 50.8mm. -runfiles size=1 - RELOC/tex/latex/bizcard/bizcard.sty +containersize 2032 +containerchecksum 1575499c7118a96f3273c5b8d68e25a20410daeecbce48d1e6355039b97867b34a06c40785052d378dffbc80b862beafc06b9fedf62254d8b31445d8f95cdd29 +doccontainersize 74552 +doccontainerchecksum f529ec77b370def29ad77927170874dc02af37bfb9f57a4e1383b5adaa93f6e59aa33df06d40a80e2374db514f55e2f115e7c8f22e4c92cbd3cb621d8a735bdd docfiles size=25 - RELOC/doc/latex/bizcard/bizcard.pdf - RELOC/doc/latex/bizcard/bizex.pdf + RELOC/doc/latex/bizcard/bizcard.pdf details="Package documentation" + RELOC/doc/latex/bizcard/bizex.pdf details="Example of use" RELOC/doc/latex/bizcard/bizex.tex +srccontainersize 4376 +srccontainerchecksum ea5567a5b3f2a8f70954ca9b5939cb4f9cda05dd128da4d6592dcab25babf284d5fdb2c6af7a31e181f871802ab267fe012d9da3df963be19d789c6984c88cd5 srcfiles size=5 RELOC/source/latex/bizcard/bizcard.drv RELOC/source/latex/bizcard/bizcard.dtx RELOC/source/latex/bizcard/bizcard.ins +runfiles size=1 + RELOC/tex/latex/bizcard/bizcard.sty catalogue-ctan /macros/latex/contrib/bizcard -catalogue-date 2012-04-28 23:45:30 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics file-card catalogue-version 1.1 name blacklettert1 category Package revision 15878 -shortdesc T1-encoded versions of Haralambous old German fonts. +shortdesc T1-encoded versions of Haralambous old German fonts relocated 1 longdesc This package contains virtual fonts that offer T1-alike encoded longdesc variants of Yannis Haralambous's old German fonts Gothic, longdesc Schwabacher and Fraktur (which are also available in Adobe type longdesc 1 format). The package includes LaTeX macros to embed the fonts longdesc into the LaTeX font selection scheme. -runfiles size=14 - RELOC/fonts/tfm/public/blacklettert1/tfrak.tfm - RELOC/fonts/tfm/public/blacklettert1/tfrakls.tfm - RELOC/fonts/tfm/public/blacklettert1/tgoth.tfm - RELOC/fonts/tfm/public/blacklettert1/tswab.tfm - RELOC/fonts/vf/public/blacklettert1/tfrak.vf - RELOC/fonts/vf/public/blacklettert1/tfrakls.vf - RELOC/fonts/vf/public/blacklettert1/tgoth.vf - RELOC/fonts/vf/public/blacklettert1/tswab.vf - RELOC/tex/latex/blacklettert1/t1yfrak.fd +containersize 12436 +containerchecksum eb7d531fd91c6d46145c76a08678033e20097805b3a911fa85194217104e071c56d3842cee83c275a11cd4cdee162aee4630d86025cab76806f20e19c975076d +doccontainersize 88892 +doccontainerchecksum a1f18f4adc7f26b9e71db6f171ddb4a8eb15912cf57445110a9da52eb4e0b017a0ace85ddc46ec2df36e73ee3d9bf8dee087fe4467f46bb2bd7f708108585412 docfiles size=29 RELOC/doc/fonts/blacklettert1/COPYING RELOC/doc/fonts/blacklettert1/INSTALL - RELOC/doc/fonts/blacklettert1/README + RELOC/doc/fonts/blacklettert1/README details="Readme" RELOC/doc/fonts/blacklettert1/blacklettert1.pdf +srccontainersize 42424 +srccontainerchecksum 0951e374a22fda09a3fe51e3a7743874c774a756560fb63a68aa199ad2cca674ee87d1dd30b98709b0e74e018e0eec878316ff303575eabb014158311f22a273 srcfiles size=155 RELOC/source/fonts/blacklettert1/Makefile RELOC/source/fonts/blacklettert1/blacklettert1.dtx @@ -18264,14 +35222,25 @@ srcfiles size=155 RELOC/source/fonts/blacklettert1/yfrak.pl RELOC/source/fonts/blacklettert1/ygoth.pl RELOC/source/fonts/blacklettert1/yswab.pl +runfiles size=14 + RELOC/fonts/tfm/public/blacklettert1/tfrak.tfm + RELOC/fonts/tfm/public/blacklettert1/tfrakls.tfm + RELOC/fonts/tfm/public/blacklettert1/tgoth.tfm + RELOC/fonts/tfm/public/blacklettert1/tswab.tfm + RELOC/fonts/vf/public/blacklettert1/tfrak.vf + RELOC/fonts/vf/public/blacklettert1/tfrakls.vf + RELOC/fonts/vf/public/blacklettert1/tgoth.vf + RELOC/fonts/vf/public/blacklettert1/tswab.vf + RELOC/tex/latex/blacklettert1/t1yfrak.fd catalogue-ctan /fonts/gothic/blacklettert1 -catalogue-date 2014-04-07 13:51:00 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics font font-virtual font-gothic name blindtext category Package revision 25039 -shortdesc Producing 'blind' text for testing. +shortdesc Producing 'blind' text for testing relocated 1 longdesc The package provides the commands \blindtext and \Blindtext for longdesc creating 'blind' text useful in testing new classes and @@ -18280,11 +35249,15 @@ longdesc entire random document with sections, lists, mathematics, etc. longdesc The package supports three languages, english, (n)german and longdesc latin; the latin option provides a short "lorem ipsum" (for a longdesc fuller lorem ipsum text, see the lipsum package). -runfiles size=12 - RELOC/tex/latex/blindtext/blindtext.sty +containersize 10516 +containerchecksum 3baf7b9db502824ebf1cf8892cafb189654ad0a91a8cfba399e103b417a91e4f137918b73201fb5988c8dcecabc557865e190cdf77af35e634d0519d52715795 +doccontainersize 341172 +doccontainerchecksum 290a4c76fbeb8003c6972933baaa95e62b37310594e459e27083326977d370c1408de95eae44d05d848c61eb22b555792e5e38f4a0b70267d6a87c0314268501 docfiles size=85 - RELOC/doc/latex/blindtext/README - RELOC/doc/latex/blindtext/blindtext.pdf + RELOC/doc/latex/blindtext/README details="Readme" + RELOC/doc/latex/blindtext/blindtext.pdf details="Package documentation" +srccontainersize 17668 +srccontainerchecksum 2ca8cbd44a56c36ea66fbad415524697009af4c7e39164bb43d9c689743666c05aded6042393bba6d658a0be1df3ca5ac64a6e8da2e9c726fbcd1500239c4532 srcfiles size=25 RELOC/source/latex/blindtext/blindtext.dtx RELOC/source/latex/blindtext/blindtext.ins @@ -18295,15 +35268,19 @@ srcfiles size=25 RELOC/source/latex/blindtext/blindtext_german.dtx RELOC/source/latex/blindtext/blindtext_latin.dtx RELOC/source/latex/blindtext/blindtext_ngerman.dtx +runfiles size=12 + RELOC/tex/latex/blindtext/blindtext.sty +catalogue-also kantlipsum catalogue-ctan /macros/latex/contrib/blindtext -catalogue-date 2012-03-12 20:01:10 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics macro-supp dummy-gen catalogue-version 2.0 name blkarray category Package revision 36406 -shortdesc Extended array and tabular. +shortdesc Extended array and tabular relocated 1 longdesc An experimental package which implements an environment, longdesc blockarray, that may be used in the same way as the array or @@ -18314,20 +35291,25 @@ longdesc implements a new method of defining column types, and also longdesc block and block* environments, for specifying sub-arrays of the longdesc main array. What's more, the \footnote command works inside a longdesc blockarray. -runfiles size=18 - RELOC/tex/latex/blkarray/blkarray.sty +containersize 18876 +containerchecksum 5ed66db84619cd9130e68e05acf617ed0007db9ea35895e31ad96b543f7d6a01fddf00304f05b0fb71ec9484556326ebad1d895b81b821b9f19fe6ae9f3ee12e +doccontainersize 294168 +doccontainerchecksum 81f1d5b5609531deda3475eb906b841d33a6e01ee49c54102474d852856172954d943ee02648fd1ce74d5bf4030db8d36c7b6786c9fe3105f3be08fea36fe207 docfiles size=75 RELOC/doc/latex/blkarray/README - RELOC/doc/latex/blkarray/blkarray.pdf + RELOC/doc/latex/blkarray/blkarray.pdf details="Package documentation" RELOC/doc/latex/blkarray/blkarray.tex +runfiles size=18 + RELOC/tex/latex/blkarray/blkarray.sty catalogue-ctan /macros/latex/contrib/blkarray -catalogue-date 2015-02-28 13:23:59 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics maths table catalogue-version 0.07 name blochsphere category Package -revision 38137 +revision 38388 shortdesc Draw pseudo-3D diagrams of Bloch spheres relocated 1 longdesc This package is used to draw pseudo-3D Blochsphere diagrams. It @@ -18335,31 +35317,73 @@ longdesc supports various annotations, such as great and small circles, longdesc axes, rotation markings and state vectors. It can be used in a longdesc standalone fashion, or nested within a tikzpicture environment longdesc by setting the environment option nested to true. -runfiles size=5 - RELOC/tex/latex/blochsphere/blochsphere.sty +containersize 3816 +containerchecksum cf7a7865e3e994f2b951a24018b1b1b71ce2b61542751f495dc14ebc4964a1f4a2833d95bde9b8920d4a4fd60ccc03760e66b8ab64f6b14ff77b9206c98e19a2 +doccontainersize 99736 +doccontainerchecksum 3a9706ba73e8da7280495f9d32d32a38c9119bac9b8497e7e1bc69a704fde2552848d60ab0ec175544046fdc06b3e8887b4eaeb1c50a5796144cd56e4a44d9e3 docfiles size=39 RELOC/doc/latex/blochsphere/LICENSE - RELOC/doc/latex/blochsphere/README.md - RELOC/doc/latex/blochsphere/blochsphere.pdf - RELOC/doc/latex/blochsphere/example.pdf + RELOC/doc/latex/blochsphere/README.md details="Readme" + RELOC/doc/latex/blochsphere/blochsphere.pdf details="Package documentation" + RELOC/doc/latex/blochsphere/example.pdf details="Example diagram" RELOC/doc/latex/blochsphere/example.tex +srccontainersize 7340 +srccontainerchecksum d5c54403afb2cc4db7c5340fe6aaec54da4066f6e9898cbf1f1d2ee3d4ba9a001699e8e32cf38fd87b355c1adbbbcb649635f9abc07976c2139fa6e851a987ac srcfiles size=9 RELOC/source/latex/blochsphere/blochsphere.dtx RELOC/source/latex/blochsphere/blochsphere.ins +runfiles size=5 + RELOC/tex/latex/blochsphere/blochsphere.sty catalogue-ctan /graphics/pgf/contrib/blochsphere -catalogue-date 2015-08-17 17:33:55 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 catalogue-topics physics pgf-tikz -catalogue-version 1.0 +catalogue-version 1.1 + +name block +category Package +revision 17209 +shortdesc A block letter style for the letter class +relocated 1 +longdesc A style file for use with the letter class that overwrites the +longdesc \opening and \closing macros so that letters can be styled with +longdesc the block letter style instead of the default style. Thus, the +longdesc return address, the closing, and the signature appear flushed +longdesc on the left margin. +containersize 924 +containerchecksum 0dedf4b50238e3f12c3d17eca19e4640f2a36511fd65fe4d0baf4f221df279a5d9f28024cb0e20f528e32921e1d6b4c785071210e5ff6471c73e42e58faf89a5 +doccontainersize 60880 +doccontainerchecksum 77b8c5b6949fb7eade5eee082be1c28433136b8374d45f255a80daa0c7a0340a3154a9f6f174fc52b25c252f1b5a2304b32e26c6d6a2f9af033569d7ba602952 +docfiles size=17 + RELOC/doc/latex/block/block.pdf details="Package documentation" + RELOC/doc/latex/block/block.tex +runfiles size=1 + RELOC/tex/latex/block/block.sty +catalogue-ctan /macros/latex/contrib/block +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics letter name blockdraw_mp category Package revision 15878 -shortdesc Block diagrams and bond graphs, with MetaPost. +shortdesc Block diagrams and bond graphs, with MetaPost relocated 1 longdesc A set of simple MetaPost macros for the task. While the task is longdesc not itself difficult to program, it is felt that many users longdesc will be happy to have a library for the job.. +containersize 4856 +containerchecksum 86bd39051095fde2a99b232b1139c4c196467d0e1825b3c1c73bd25551a55edb6417a0810b20c4ac3d53ff82519364f2ac72fde3845a750396a4f6a8966c73ef +doccontainersize 276436 +doccontainerchecksum 01fc4226a952c76b52726d1217649d9d98ec708163e4a9b997e36f505b385ed145182bca747a2b5334cfe8b4663d010a699664728c5be05cc4daba63ff1f3c00 +docfiles size=87 + RELOC/doc/metapost/blockdraw_mp/README details="Readme" + RELOC/doc/metapost/blockdraw_mp/blockdraw_mp.pdf details="Outline package documentation" + RELOC/doc/metapost/blockdraw_mp/blockdraw_mp.tex + RELOC/doc/metapost/blockdraw_mp/bonddemo.pdf details="Example 1" + RELOC/doc/metapost/blockdraw_mp/cascadedemo.pdf details="Example 1" + RELOC/doc/metapost/blockdraw_mp/tiddetext.sty + RELOC/doc/metapost/blockdraw_mp/tighttoc.sty runfiles size=8 RELOC/metapost/blockdraw_mp/blockdraw.mp RELOC/metapost/blockdraw_mp/bonddemo.mp @@ -18367,139 +35391,150 @@ runfiles size=8 RELOC/metapost/blockdraw_mp/cascadedemo.mp RELOC/metapost/blockdraw_mp/docblockprefs.mp RELOC/metapost/blockdraw_mp/shiftoff.mp -docfiles size=87 - RELOC/doc/metapost/blockdraw_mp/README - RELOC/doc/metapost/blockdraw_mp/blockdraw_mp.pdf - RELOC/doc/metapost/blockdraw_mp/blockdraw_mp.tex - RELOC/doc/metapost/blockdraw_mp/bonddemo.pdf - RELOC/doc/metapost/blockdraw_mp/cascadedemo.pdf - RELOC/doc/metapost/blockdraw_mp/tiddetext.sty - RELOC/doc/metapost/blockdraw_mp/tighttoc.sty catalogue-ctan /graphics/metapost/contrib/macros/blockdraw_mp -catalogue-date 2012-04-24 11:15:15 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl - -name block -category Package -revision 17209 -shortdesc A block letter style for the letter class. -relocated 1 -longdesc A style file for use with the letter class that overwrites the -longdesc \opening and \closing macros so that letters can be styled with -longdesc the block letter style instead of the default style. Thus, the -longdesc return address, the closing, and the signature appear flushed -longdesc on the left margin. -runfiles size=1 - RELOC/tex/latex/block/block.sty -docfiles size=17 - RELOC/doc/latex/block/block.pdf - RELOC/doc/latex/block/block.tex -catalogue-ctan /macros/latex/contrib/block -catalogue-date 2011-09-13 15:32:00 +0200 -catalogue-license pd +catalogue-topics diagram-block name bloques category Package revision 22490 -shortdesc Generate control diagrams. +shortdesc Generate control diagrams relocated 1 longdesc The package uses TikZ to provide commands for generating longdesc control diagrams (specially in power electronics). -runfiles size=3 - RELOC/tex/latex/bloques/bloques.sty +containersize 1748 +containerchecksum 06b18467956f6782de7e0dad41f66a79e1c7dc5c3ff007a8970f24740dd5edfae0e375288c3510a8acfcdfda7b568f2316827cad1b6a006789afe8a31f829f4f +doccontainersize 124652 +doccontainerchecksum fe37018f08820f21bf188301d0145e42b50563d8dbd8f9b232e6fa1b7eecda931e8a42d40f47ed7cbae24235833eebab874e30dd24d8393dc728d6fcb10057e1 docfiles size=35 - RELOC/doc/latex/bloques/README - RELOC/doc/latex/bloques/example.pdf + RELOC/doc/latex/bloques/README details="Readme" + RELOC/doc/latex/bloques/example.pdf details="Command listing and examples" RELOC/doc/latex/bloques/example.tex +runfiles size=3 + RELOC/tex/latex/bloques/bloques.sty catalogue-ctan /graphics/pgf/contrib/bloques -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics diagram-ctrl catalogue-version 1.0 name blowup category Package -revision 15878 -shortdesc Upscale or downscale all pages of a document. +revision 46213 +shortdesc Upscale or downscale all pages of a document relocated 1 -longdesc The package blowup only defines the user-level macro \blowup, +longdesc The package blowup only defines the user-level macro \blowUp, longdesc which can be used to upscale or downscale all pages of a longdesc document. It is similar to the TeX primitive \magnification but longdesc more accurate and user-friendly. -runfiles size=2 - RELOC/tex/latex/blowup/blowup.sty -docfiles size=39 - RELOC/doc/latex/blowup/README - RELOC/doc/latex/blowup/blowup-test0.tex - RELOC/doc/latex/blowup/blowup-test1.tex - RELOC/doc/latex/blowup/blowup-test2.tex - RELOC/doc/latex/blowup/blowup-test3.tex - RELOC/doc/latex/blowup/blowup-test4.tex - RELOC/doc/latex/blowup/blowup-test5.tex - RELOC/doc/latex/blowup/blowup.pdf +containersize 2644 +containerchecksum 6ccf18bd12423d3a561e59a2ed9c8e2c7586fa65e47ab784c71111318fe370615acec672ca0e89bde159ec946abc1d4233f8367cc2e6f6f28f3f52dae6bc93e1 +doccontainersize 317720 +doccontainerchecksum 962ab6dbac803f5043df96d178452da2e4ec2db96a7fe9a8400eff658e61169faff501cab3e7e078a18738d683c3bf1ec09a14f70fecbe5c8190b35101196ce2 +docfiles size=99 + RELOC/doc/latex/blowup/README.md details="Readme" + RELOC/doc/latex/blowup/blowup-ex1.pdf + RELOC/doc/latex/blowup/blowup-ex1.tex + RELOC/doc/latex/blowup/blowup-ex2.pdf + RELOC/doc/latex/blowup/blowup-ex2.tex + RELOC/doc/latex/blowup/blowup-ex3.pdf + RELOC/doc/latex/blowup/blowup-ex3.tex + RELOC/doc/latex/blowup/blowup-ex4.pdf + RELOC/doc/latex/blowup/blowup-ex4.tex + RELOC/doc/latex/blowup/blowup-ex5.pdf + RELOC/doc/latex/blowup/blowup-ex5.tex + RELOC/doc/latex/blowup/blowup.pdf details="Package documentation" +srccontainersize 5160 +srccontainerchecksum 6dad611292dae9ea8fe308beb3796e350a3beeaafc16f53b19d49863d5ab4321a94dfe41b6c0ecce236c922a4e0ef766082656bc41583bcbec42d7ccaa35d544 srcfiles size=5 RELOC/source/latex/blowup/blowup.dtx RELOC/source/latex/blowup/blowup.ins +runfiles size=2 + RELOC/tex/latex/blowup/blowup.sty +catalogue-contact-bugs https://github.com/rolfn/blowup/issues +catalogue-contact-repository https://github.com/rolfn/blowup catalogue-ctan /macros/latex/contrib/blowup -catalogue-date 2012-04-23 23:26:21 +0200 -catalogue-license lppl -catalogue-version 0.1j +catalogue-date 2018-01-08 05:32:27 +0100 +catalogue-license lppl1.3 +catalogue-topics typesetting +catalogue-version 1.0 name blox category Package revision 35014 -shortdesc Draw block diagrams, using TikZ. +shortdesc Draw block diagrams, using TikZ relocated 1 longdesc This package, along with TikZ, will typeset block diagrams for longdesc use with programming and control theory. It is an English longdesc translation of the schemabloc package. -runfiles size=2 - RELOC/tex/latex/blox/blox.sty +containersize 2360 +containerchecksum 66a326bc8bf228db3bb7ee061958f0daa7ff8645a7ed89748d60c5193b63b494a94248bd3a9c4734f810b9cbb76cfcedc88201728dec86f1e4d2d33101f741cc +doccontainersize 384140 +doccontainerchecksum 5a78aeb59f517d74def3dbb0353545e1efca8bc7627e4c095743a6c2bbe4f9ddc78a0e293f9689089f1f253150404706622745c7a823de9e6b316f2950d98c02 docfiles size=105 - RELOC/doc/latex/blox/README - RELOC/doc/latex/blox/blox.pdf + RELOC/doc/latex/blox/README details="Readme" + RELOC/doc/latex/blox/blox.pdf details="Package documentation" +srccontainersize 13488 +srccontainerchecksum 68dfe55be37e38390310f95f303add7883d416f64a0827f75809153b51764533609ee69278a57c7555b34d9413df884b5a29c65a2f3db291b7382c8fe5ded09e srcfiles size=14 RELOC/source/latex/blox/blox.dtx +runfiles size=2 + RELOC/tex/latex/blox/blox.sty +catalogue-also schemabloc catalogue-ctan /graphics/pgf/contrib/blox -catalogue-date 2014-09-09 12:05:44 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics diagram-block pgf-tikz catalogue-version 2.5 name bnumexpr category Package -revision 35511 -shortdesc Extends eTeX's \numexpr...\relax construct to big integers. -relocated 1 -longdesc The package extends eTeX \numexpr...\relax operation to allow -longdesc big integers. Package option allowpower furthermore enables ^ -longdesc for power operations. By default, bnumexpr loads package -longdesc xintcore (part of the xint bundle) and uses its arithmetic -longdesc macros. -runfiles size=4 - RELOC/tex/latex/bnumexpr/bnumexpr.sty -docfiles size=24 - RELOC/doc/latex/bnumexpr/README - RELOC/doc/latex/bnumexpr/bnumexpr.pdf -srcfiles size=13 +revision 49643 +shortdesc Extends eTeX's \numexpr...\relax construct to big integers +relocated 1 +longdesc The package extends e-TeX \numexpr...\relax operation to allow +longdesc big integers, powers, factorials, truncated division and its +longdesc associated modulo. By default, bnumexpr loads package xintcore +longdesc (part of the xint bundle) and uses its arithmetic macros. +containersize 3720 +containerchecksum c4bf69cf261c8545aeffe69c22e0a018afab5f919aa186efbdae0d0eff6728f36f0ca94831cbef7828e9df349bc2e7eed22c284cb41924b83464efa51418b22e +doccontainersize 90596 +doccontainerchecksum 2e1430651869f89d3b1ecd146858b004ea04e6506cad29bcc131761b975a89671504b22e7bbe8bdd9e6be1d513f28f85e073a0f123e21e12584782db5242a50c +docfiles size=27 + RELOC/doc/latex/bnumexpr/README details="Readme" + RELOC/doc/latex/bnumexpr/README.md + RELOC/doc/latex/bnumexpr/bnumexpr.pdf details="Package documentation" + RELOC/doc/latex/bnumexpr/bnumexpr.tex + RELOC/doc/latex/bnumexpr/bnumexprchanges.tex +srccontainersize 16944 +srccontainerchecksum 25488522b3ad578b8c2fe5e418c5a6d1bf6295de7f16e743dbe90417ca36a8888309a8b6e56bcd93f72c89b02841f0b1326351f6d47840a1fc59042d11641186 +srcfiles size=14 RELOC/source/latex/bnumexpr/bnumexpr.dtx RELOC/source/latex/bnumexpr/bnumexpr.ins +runfiles size=4 + RELOC/tex/latex/bnumexpr/bnumexpr.sty catalogue-ctan /macros/latex/contrib/bnumexpr -catalogue-date 2014-11-04 18:49:30 +0100 -catalogue-license lppl1.3 -catalogue-version 1.1b +catalogue-date 2019-01-07 13:21:12 +0100 +catalogue-license lppl1.3c +catalogue-topics arithmetic calculation +catalogue-version 1.2d name bodegraph category Package revision 20047 -shortdesc Draw Bode, Nyquist and Black plots with gnuplot and TikZ. +shortdesc Draw Bode, Nyquist and Black plots with gnuplot and TikZ relocated 1 longdesc The package provides facilities to draw Bode, Nyquist and Black longdesc plots using Gnuplot and Tikz. Elementary Transfer Functions and longdesc basic correctors are preprogrammed for use. -runfiles size=18 - RELOC/tex/latex/bodegraph/bodegraph.sty +containersize 16020 +containerchecksum eb4be1d54f84a372bda79a35aa928be028aa3fdd13c589143e3bfbdd111f4819ac7927bc9eb7473c64fb9035b5bbab789b55a5967e4569e916a7fe516933612d +doccontainersize 343180 +doccontainerchecksum 479d5d95643a0b5a673df4d48049f6a7d89b4dc8d1511676d6ff53e039f65fb27994e35d3db3adeef0cdb30658d3eaa454d997ab4649567148fe90938602024c docfiles size=281 - RELOC/doc/latex/bodegraph/README - RELOC/doc/latex/bodegraph/bodegraph.pdf + RELOC/doc/latex/bodegraph/README details="Readme (bilingual)" + RELOC/doc/latex/bodegraph/bodegraph.pdf details="Package documentation (French with some English)" RELOC/doc/latex/bodegraph/bodegraph.tex RELOC/doc/latex/bodegraph/gnuplot/bodegraph/1.gnuplot RELOC/doc/latex/bodegraph/gnuplot/bodegraph/1.table @@ -18677,28 +35712,36 @@ docfiles size=281 RELOC/doc/latex/bodegraph/gnuplot/bodegraph/94.table RELOC/doc/latex/bodegraph/gnuplot/bodegraph/95.gnuplot RELOC/doc/latex/bodegraph/gnuplot/bodegraph/95.table +runfiles size=18 + RELOC/tex/latex/bodegraph/bodegraph.sty catalogue-ctan /graphics/pgf/contrib/bodegraph -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-03-29 05:14:22 +0200 catalogue-license lppl +catalogue-topics engineering graphics-plot pgf-tikz catalogue-version 1.4 name bohr category Package revision 37657 -shortdesc Simple atom representation according to the Bohr model. +shortdesc Simple atom representation according to the Bohr model relocated 1 longdesc The package provides means for the creation of simple Bohr longdesc models of atoms up to the atomic number 112. In addition, longdesc commands are provided to convert atomic numbers to element longdesc symbols or element names and vice versa. -runfiles size=4 - RELOC/tex/latex/bohr/bohr.sty +containersize 3656 +containerchecksum cb85d1a70ea2ba3bca7a21996319df8c29f1c28b5a62d08f0f145f5c157d4eda65b66f8fa5b833c40b1a4bb7c91d6f42eecb8d97a3c3d906207558110eee1880 +doccontainersize 424416 +doccontainerchecksum 5e3dffb0e2d1ac0a5aa3021ade89416e330f7b71600bb1a524920eafbda148bda2f55d5d355efbced93528cad1c918fedbf50f43089f4948d0211e0e13386591 docfiles size=107 - RELOC/doc/latex/bohr/README - RELOC/doc/latex/bohr/bohr_en.pdf + RELOC/doc/latex/bohr/README details="Readme" + RELOC/doc/latex/bohr/bohr_en.pdf details="Package documentation" RELOC/doc/latex/bohr/bohr_en.tex +runfiles size=4 + RELOC/tex/latex/bohr/bohr.sty +catalogue-contact-repository https://bitbucket.org/cgnieder/bohr/ catalogue-ctan /macros/latex/contrib/bohr -catalogue-date 2015-06-24 13:13:16 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 catalogue-topics chemistry catalogue-version 1.0 @@ -18706,12 +35749,27 @@ catalogue-version 1.0 name boisik category Package revision 15878 -shortdesc A font inspired by Baskerville design. +shortdesc A font inspired by Baskerville design relocated 1 longdesc Boisik is a serif font set (inspired by the Baskerville longdesc typeface), written in Metafont. The set comprises roman and longdesc italic text fonts and maths fonts. LaTeX support is offered for longdesc use with OT1, IL2 and OM* encodings. +containersize 215572 +containerchecksum 48403f4b18cb23e7e16e3cbf19d066dc7e1576f4d9ae42b94a4a34508905f5e6e2f8f60f2de7881a29b8525c86a8120a76f1f66f8b9ea047da0a884637b1bb9e +doccontainersize 939068 +doccontainerchecksum c68e8434fe456c5e58a6ebb9e744c81dfba5098c0fb12024de750f73022e300016a424bd1ad9cc85c3122c9a0c863737b2e27f2b151667955f92ebbdc060c6bd +docfiles size=461 + RELOC/doc/fonts/boisik/README details="Readme" + RELOC/doc/fonts/boisik/example/boisik-idiot.pdf details="Running text, in the font" language="cs" + RELOC/doc/fonts/boisik/example/boisik-idiot.tex + RELOC/doc/fonts/boisik/example/boisik.pdf details="Brief outline, in the font" + RELOC/doc/fonts/boisik/example/boisik.tex + RELOC/doc/fonts/boisik/example/bskrlogo10.mf + RELOC/doc/fonts/boisik/example/table.pdf details="Font table" + RELOC/doc/fonts/boisik/example/table.tex + RELOC/doc/fonts/boisik/example/testfont.pdf + RELOC/doc/fonts/boisik/example/testfont.tex runfiles size=670 RELOC/fonts/source/public/boisik/bskarr10.mf RELOC/fonts/source/public/boisik/bskarrows.mf @@ -18829,20 +35887,10 @@ runfiles size=670 RELOC/tex/latex/boisik/ot1bskf.fd RELOC/tex/latex/boisik/ts1bsk.fd RELOC/tex/latex/boisik/ubskex.fd -docfiles size=461 - RELOC/doc/fonts/boisik/README - RELOC/doc/fonts/boisik/example/boisik-idiot.pdf - RELOC/doc/fonts/boisik/example/boisik-idiot.tex - RELOC/doc/fonts/boisik/example/boisik.pdf - RELOC/doc/fonts/boisik/example/boisik.tex - RELOC/doc/fonts/boisik/example/bskrlogo10.mf - RELOC/doc/fonts/boisik/example/table.pdf - RELOC/doc/fonts/boisik/example/table.tex - RELOC/doc/fonts/boisik/example/testfont.pdf - RELOC/doc/fonts/boisik/example/testfont.tex catalogue-ctan /fonts/boisik -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl2 +catalogue-topics font font-maths font-serif font-mf catalogue-version 0.5 name boites @@ -18853,63 +35901,106 @@ relocated 1 longdesc Defines environments that allow page breaks inside framed boxes longdesc whose edges may be variously fancy. The bundle includes a few longdesc examples (shaded box, box with a wavy line on its side, etc). -runfiles size=4 - RELOC/tex/latex/boites/boites.sty - RELOC/tex/latex/boites/boites_exemples.sty +containersize 4276 +containerchecksum 894f6d2484e9b72a24816c34e1254ae8a6d011610770e40590fdc3ed22a24b6f655418694de256a6522e4024f4df033c017f294743113256583ffb8445a63bec +doccontainersize 273004 +doccontainerchecksum 22ef96e0f64b4d42b978abbba806f497fecf686d76b159bf3d06aedefe1097569053a11ced6c3ff2c7d05f975345957af0790f2035fa3af396b123da7d41cd7c docfiles size=94 RELOC/doc/latex/boites/Makefile - RELOC/doc/latex/boites/README + RELOC/doc/latex/boites/README details="Readme" RELOC/doc/latex/boites/README.docu - RELOC/doc/latex/boites/boites.pdf - RELOC/doc/latex/boites/demo.pdf + RELOC/doc/latex/boites/boites.pdf details="English translation" + RELOC/doc/latex/boites/demo.pdf details="Examples of use" RELOC/doc/latex/boites/demo.tex RELOC/doc/latex/boites/ligne_qui_ondule_sur_la_gauche.eps +srccontainersize 6424 +srccontainerchecksum 682b3e64f47f71849853bb8752e342ca74a8937e5f1f0f75ba3428ec3e32593339e5f0c90695aa112edd2f607dc4e1c80985558f354b6181f73e5da6cffee8ad srcfiles size=5 RELOC/source/latex/boites/boites.dtx +runfiles size=4 + RELOC/tex/latex/boites/boites.sty + RELOC/tex/latex/boites/boites_exemples.sty catalogue-ctan /macros/latex/contrib/boites -catalogue-date 2013-11-23 08:21:35 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics boxing box-breaking decoration catalogue-version 1.1 name bold-extra category Package revision 17076 -shortdesc Use bold small caps and typewriter fonts. +shortdesc Use bold small caps and typewriter fonts relocated 1 longdesc Allows access to 'extra' bold fonts for Computer Modern OT1 longdesc encoding (the fonts are available in Metafont source). Since longdesc there is more than one bold tt-family font set, the version longdesc required is selected by a package option. -runfiles size=1 - RELOC/tex/latex/bold-extra/bold-extra.sty +containersize 1452 +containerchecksum cc12de98493fc01b9a59993ad32e646102751c3023e64f66255a1b66505d3cc2f82d71ac53b4f6691e083bcce3037e521a35feb09cd5019d662a6ce56cc55032 +doccontainersize 217976 +doccontainerchecksum 4bb27a63f711421437385c2a76f26d74cbfcf6ac5bd8811bf4ca5a0da354608dbc6ff295c3943edae1701fefece397ec356361176a9713f607c9677b8222b7af docfiles size=56 - RELOC/doc/latex/bold-extra/bold-extra.pdf + RELOC/doc/latex/bold-extra/bold-extra.pdf details="Package documentation" RELOC/doc/latex/bold-extra/bold-extra.tex +runfiles size=1 + RELOC/tex/latex/bold-extra/bold-extra.sty +catalogue-contact-repository https://github.com/rf-latex/bold-extra +catalogue-contact-support https://github.com/rf-latex/bold-extra/issues catalogue-ctan /macros/latex/contrib/bold-extra -catalogue-date 2012-06-14 23:01:55 +0200 +catalogue-date 2018-09-14 18:24:33 +0200 catalogue-license lppl +catalogue-topics font-supp catalogue-version 0.1 name boldtensors category Package revision 15878 -shortdesc Bold latin and greek characters through simple prefix characters. +shortdesc Bold latin and greek characters through simple prefix characters relocated 1 longdesc This package provides bold latin and greek characters within longdesc \mathversion{normal}, by using ~ and " as prefix characters. -runfiles size=3 - RELOC/tex/latex/boldtensors/boldtensors.sty +containersize 2616 +containerchecksum 3c2d17f2bf8ff48638540ec5a3ea57bc835227291fdf6580747a87dafeed6afa4f49b91a67154da35dfac9a405aab2aaed5bbef1ac188291319a972b4e50ebeb +doccontainersize 53640 +doccontainerchecksum 657bdc4960e2d40621520240840ab4252e927baca704da0388e3124938c55de834e59cf8ff3d900aa294ac366ae7b1367909cbe885de08790d51380726960146 docfiles size=17 - RELOC/doc/latex/boldtensors/boldtensors.pdf + RELOC/doc/latex/boldtensors/boldtensors.pdf details="Package documentation" RELOC/doc/latex/boldtensors/boldtensors.tex +runfiles size=3 + RELOC/tex/latex/boldtensors/boldtensors.sty catalogue-ctan /macros/latex/contrib/boldtensors -catalogue-date 2012-06-15 00:14:06 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics maths + +name bondgraph +category Package +revision 21670 +shortdesc Create bond graph figures in LaTeX documents +relocated 1 +longdesc The package draws bond graphs using PGF and TikZ. +containersize 1812 +containerchecksum 171233d7850335c1819bf1f74e0bcd1c221e5db73d092b0efea71ad35f71b16e4f240c3c791f9022a9e21ab7a2bb62f20ad06609051ecb54fd0640add0ef8381 +doccontainersize 48760 +doccontainerchecksum 0697b880e1bcd51c3b5c2e035a15f852f943ffb86ea2952b460f01e42ced2e4fad8f8b15f32f58cc7771c28ca9bf66f2302914bf08d6696b6d952d347199134c +docfiles size=19 + RELOC/doc/latex/bondgraph/License.txt + RELOC/doc/latex/bondgraph/README details="Readme" + RELOC/doc/latex/bondgraph/bondgraph_arrows.tex + RELOC/doc/latex/bondgraph/bondgraph_example.pdf + RELOC/doc/latex/bondgraph/bondgraph_example.tex +runfiles size=2 + RELOC/tex/latex/bondgraph/bondgraph.sty +catalogue-ctan /macros/latex/contrib/bondgraph +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics diagram +catalogue-version 1.0 name bondgraphs category Package revision 36605 -shortdesc Draws bond graphs in LaTeX, using pgf/TikZ. +shortdesc Draws bond graphs in LaTeX, using PGF/TikZ relocated 1 longdesc The package is used to draw bond graphs in LaTeX. It uses a longdesc recent version (3.0+) of PGF and TikZ for the drawing, hence, @@ -18918,95 +36009,103 @@ longdesc bond graphs easier. Compared to the bondgraph package this longdesc package relies more on TikZ styles and less on macros, to longdesc generate the drawings. As such it can be more flexible than longdesc his, but requires more TikZ knowledge of the user. -runfiles size=2 - RELOC/tex/latex/bondgraphs/bondgraphs.sty +containersize 2376 +containerchecksum 61ed449d8fcee24f383762eeac54949d709fe3fbcf06598acb8849613c68ce2f445dfb4cfc7871bb6c61bec65ed45e8888dadf036f299a4d5c0bad13db0e16ba +doccontainersize 363692 +doccontainerchecksum 223448f91f0cb9f7b032439aeddc85c132f39bf5ffacd058b76c85db825df15bb47bafe333a0ae8afb089864fe966973fbde6da0e02e1fa46b8077e3f84eb6f3 docfiles size=91 RELOC/doc/latex/bondgraphs/Makefile - RELOC/doc/latex/bondgraphs/README - RELOC/doc/latex/bondgraphs/bondgraphs.pdf + RELOC/doc/latex/bondgraphs/README details="Readme" + RELOC/doc/latex/bondgraphs/bondgraphs.pdf details="Package documentation" +srccontainersize 10308 +srccontainerchecksum 564af88ac0098d102bfc84932159dcb3df8e06ab30e849d7e039b13ae8855dc6093230e743bef13750a464eadfad54edea4f1a548c14e2df79e03b1f79754254 srcfiles size=10 RELOC/source/latex/bondgraphs/bondgraphs.dtx RELOC/source/latex/bondgraphs/bondgraphs.ins +runfiles size=2 + RELOC/tex/latex/bondgraphs/bondgraphs.sty +catalogue-also bondgraph catalogue-ctan /macros/latex/contrib/bondgraphs -catalogue-date 2015-03-23 13:37:48 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics diagram pgf-tikz catalogue-version 1.0.1 -name bondgraph -category Package -revision 21670 -shortdesc Create bond graph figures in LaTeX documents. -relocated 1 -longdesc The package draws bond graphs using PGF and TikZ. -runfiles size=2 - RELOC/tex/latex/bondgraph/bondgraph.sty -docfiles size=19 - RELOC/doc/latex/bondgraph/License.txt - RELOC/doc/latex/bondgraph/README - RELOC/doc/latex/bondgraph/bondgraph_arrows.tex - RELOC/doc/latex/bondgraph/bondgraph_example.pdf - RELOC/doc/latex/bondgraph/bondgraph_example.tex -catalogue-ctan /macros/latex/contrib/bondgraph -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0 - name bookcover category Package -revision 36440 -shortdesc A class for book covers and dust jackets. +revision 46410 +shortdesc A class for book covers and dust jackets relocated 1 longdesc This class helps typesetting book covers and dust jackets. -runfiles size=6 - RELOC/tex/latex/bookcover/bookcover.cls -docfiles size=5167 - RELOC/doc/latex/bookcover/README - RELOC/doc/latex/bookcover/bookcover.pdf - RELOC/doc/latex/bookcover/example1.pdf - RELOC/doc/latex/bookcover/example1.tex - RELOC/doc/latex/bookcover/example2.pdf - RELOC/doc/latex/bookcover/example2.tex +containersize 4968 +containerchecksum 1a96e15ab73c11f36b58dfbc0109529fb9bbe322d4c589222e122f774dbcff5337e88a5350a3fac05652aaf0010cf97ea1842693102acf00e9a22db7b6bf77f4 +doccontainersize 1817556 +doccontainerchecksum 1f017e0071060f82e5f530d3726d1d91c5fd742c6a29613a2009756d96a2afcbda1e647cc588c350e90cd65be67207c811ef6466cd863c1b80b39f6afcbbd7e1 +docfiles size=822 + RELOC/doc/latex/bookcover/README details="Readme" + RELOC/doc/latex/bookcover/bookcover-example-obsoletemethod.tex + RELOC/doc/latex/bookcover/bookcover-example1.pdf details="Examples of use 1" + RELOC/doc/latex/bookcover/bookcover-example1.tex + RELOC/doc/latex/bookcover/bookcover-example2.pdf details="Examples of use 2" + RELOC/doc/latex/bookcover/bookcover-example2.tex + RELOC/doc/latex/bookcover/bookcover.pdf details="Package documentation" RELOC/doc/latex/bookcover/figures/background1.pdf RELOC/doc/latex/bookcover/figures/background2.pdf RELOC/doc/latex/bookcover/figures/background3.pdf RELOC/doc/latex/bookcover/figures/background4.pdf RELOC/doc/latex/bookcover/figures/background5.pdf + RELOC/doc/latex/bookcover/figures/barcode.pdf RELOC/doc/latex/bookcover/figures/bg.jpg + RELOC/doc/latex/bookcover/figures/bg1.pdf + RELOC/doc/latex/bookcover/figures/bg4.pdf RELOC/doc/latex/bookcover/figures/cards.png RELOC/doc/latex/bookcover/figures/cover.pdf RELOC/doc/latex/bookcover/figures/coverscheme.pdf RELOC/doc/latex/bookcover/figures/dice.png - RELOC/doc/latex/bookcover/figures/ekflogo.pdf RELOC/doc/latex/bookcover/figures/foreground1.pdf RELOC/doc/latex/bookcover/figures/foreground2.pdf + RELOC/doc/latex/bookcover/figures/newpart.pdf + RELOC/doc/latex/bookcover/figures/parts.pdf RELOC/doc/latex/bookcover/figures/result.pdf + RELOC/doc/latex/bookcover/figures/ruler.pdf RELOC/doc/latex/bookcover/figures/sizes.pdf RELOC/doc/latex/bookcover/figures/summa.pdf -srcfiles size=10 + RELOC/doc/latex/bookcover/figures/tikz.pdf + RELOC/doc/latex/bookcover/figures/tikzclip.pdf +srccontainersize 10672 +srccontainerchecksum e018f3a388f3c5d0a4ff9f35a952ec96e7af45b2469122d6dc225ae6768704ae9884933200b8a7cb62c1e182602ec697daca530cc966d764ed2d7fe807b09328 +srcfiles size=19 RELOC/source/latex/bookcover/bookcover.dtx RELOC/source/latex/bookcover/bookcover.ins +runfiles size=11 + RELOC/tex/latex/bookcover/bookcover.cls catalogue-ctan /macros/latex/contrib/bookcover -catalogue-date 2015-03-11 05:49:32 +0100 +catalogue-date 2018-01-21 22:41:56 +0100 catalogue-license lppl1.2 -catalogue-version 1.0 +catalogue-topics class covers +catalogue-version 2.3 name bookdb category Package revision 37536 -shortdesc A BibTeX style file for cataloguing a home library. +shortdesc A BibTeX style file for cataloguing a home library relocated 1 longdesc This package provides an extended book entry for use in longdesc cataloguing a home library. The extensions include fields for longdesc binding, category, collator, condition, copy, illustrations, longdesc introduction, location, pages, size, value, volumes. -runfiles size=9 - RELOC/bibtex/bst/bookdb/bookdb.bst +containersize 7052 +containerchecksum 3e44184427ce346930b35fc2ea3b508d9f32c1e89cc01d66046e271d61e0bbfde54b5d18917b09acc159f1d657f9d32c29f3086b04e4f1dc6da0cd21a0df3da2 +doccontainersize 209744 +doccontainerchecksum 2449b7d32558665b297e57eaff6529932289e957e0a77d8a8ff84e9614b53844a2684a7b23a62ce6684b6e813223c2c1293bf25e678a1271e3e3cc27383d12b4 docfiles size=55 - RELOC/doc/bibtex/bookdb/README - RELOC/doc/bibtex/bookdb/bookdb.pdf + RELOC/doc/bibtex/bookdb/README details="Readme" + RELOC/doc/bibtex/bookdb/bookdb.pdf details="Package documentation" RELOC/doc/bibtex/bookdb/bookdb.tex +runfiles size=9 + RELOC/bibtex/bst/bookdb/bookdb.bst catalogue-ctan /biblio/bibtex/contrib/bookdb -catalogue-date 2015-06-04 20:56:45 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 catalogue-topics bibtex-sty catalogue catalogue-version 0.2 @@ -19014,43 +36113,138 @@ catalogue-version 0.2 name bookest category Package revision 15878 -shortdesc Extended book class. +shortdesc Extended book class relocated 1 longdesc The class extends the standard book class, in the areas of longdesc colour scheme management, document layout, headings and longdesc footers, front page layout, and other minor items. -runfiles size=5 - RELOC/tex/latex/bookest/bookest.cls +containersize 4204 +containerchecksum e49d8f0959276202dea2079df1a509dd296858841f4fa2df235743033ba852b856e5f2a9a14176fd986ad1e431ebd3581469e7ea30093b5a01b7d23b791a028e +doccontainersize 209440 +doccontainerchecksum ad51d3cfff90ce83c7f6479f9f0eb49a54613c585561def33529b301e00915d7a8f94fb62660b3bf5bd87104651e7333c3a9b620bbfc1ab7fa9fa510e16dc15b docfiles size=76 - RELOC/doc/latex/bookest/README - RELOC/doc/latex/bookest/bookestdoc-en.pdf + RELOC/doc/latex/bookest/README details="Readme" + RELOC/doc/latex/bookest/bookestdoc-en.pdf details="Package documentation (English)" language="en" RELOC/doc/latex/bookest/bookestdoc-en.tex - RELOC/doc/latex/bookest/bookestdoc-it.pdf + RELOC/doc/latex/bookest/bookestdoc-it.pdf details="Package documentation (Italian)" language="it" RELOC/doc/latex/bookest/bookestdoc-it.tex +runfiles size=5 + RELOC/tex/latex/bookest/bookest.cls catalogue-ctan /macros/latex/contrib/bookest -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics class book-pub catalogue-version 1.1 name bookhands category Package -revision 23609 -shortdesc A collection of book-hand fonts. +revision 46480 +shortdesc A collection of book-hand fonts relocated 1 -longdesc This is a set of book-hand (MetaFont) fonts and packages +longdesc This is a set of book-hand (Metafont) fonts and packages longdesc covering manuscript scripts from the 1st century until longdesc Gutenberg and Caxton. The included hands are: Square Capitals longdesc (1st century onwards); Roman Rustic (1st-6th centuries); longdesc Insular Minuscule (6th cenury onwards); Carolingian Minuscule longdesc (8th-12th centuries); Early Gothic (11th-12th centuries); longdesc Gothic Textura Quadrata (13th-15th centuries); Gothic Textura -longdesc Prescisus vel sine pedibus (13th century onwards); Rotunda (13- -longdesc 15th centuries); Humanist Minuscule (14th century onwards); +longdesc Prescisus vel sine pedibus (13th century onwards); Rotunda +longdesc (13-15th centuries); Humanist Minuscule (14th century onwards); longdesc Uncial (3rd-6th centuries); Half Uncial (3rd-9th centuries); longdesc Artificial Uncial (6th-10th centuries); and Insular Majuscule longdesc (6th-9th centuries). execute addMap sqrcaps.map -runfiles size=412 +containersize 139768 +containerchecksum 8a341131397637618acdb9bedc835a4ea98f40d55a8a2b312ac820821b00a1f059f37cde2aeb3f5b715eff9928b579a531c4c12d3bdbb3a7629a50d363f1a4cb +doccontainersize 1610264 +doccontainerchecksum b5901beafa849a52afaaa7cf09ebab327640eb5ad1c627bea5f8dde2c98aaf176f23f0c9460e7fb2212ce9b4038800c3a3c572830d08d059a04d3574d1015a75 +docfiles size=458 + RELOC/doc/fonts/bookhands/README.PRW details="Readme" + RELOC/doc/fonts/bookhands/allsqrcaps.pdf + RELOC/doc/fonts/bookhands/auncial-README + RELOC/doc/fonts/bookhands/auncial-tryfont.ps.gz + RELOC/doc/fonts/bookhands/auncial-tryfont.tex + RELOC/doc/fonts/bookhands/auncial/allfont.ps.gz + RELOC/doc/fonts/bookhands/auncial/allfont.tex + RELOC/doc/fonts/bookhands/bsamples.ps.gz + RELOC/doc/fonts/bookhands/bsamples.tex + RELOC/doc/fonts/bookhands/carolmin-README + RELOC/doc/fonts/bookhands/carolmin-tryfont.tex + RELOC/doc/fonts/bookhands/carolmin/allfont.tex + RELOC/doc/fonts/bookhands/egothic-README + RELOC/doc/fonts/bookhands/egothic-tryfont.tex + RELOC/doc/fonts/bookhands/egothic/allfont.tex + RELOC/doc/fonts/bookhands/humanist-README + RELOC/doc/fonts/bookhands/humanist-tryfont.tex + RELOC/doc/fonts/bookhands/humanist/allfont.tex + RELOC/doc/fonts/bookhands/huncial-README + RELOC/doc/fonts/bookhands/huncial-tryfont.ps.gz + RELOC/doc/fonts/bookhands/huncial-tryfont.tex + RELOC/doc/fonts/bookhands/huncial/allfont.ps.gz + RELOC/doc/fonts/bookhands/huncial/allfont.tex + RELOC/doc/fonts/bookhands/inslrmaj-README + RELOC/doc/fonts/bookhands/inslrmaj-tryfont.ps.gz + RELOC/doc/fonts/bookhands/inslrmaj-tryfont.tex + RELOC/doc/fonts/bookhands/inslrmaj/allfont.ps.gz + RELOC/doc/fonts/bookhands/inslrmaj/allfont.tex + RELOC/doc/fonts/bookhands/inslrmin-README + RELOC/doc/fonts/bookhands/inslrmin-tryfont.tex + RELOC/doc/fonts/bookhands/inslrmin/allfont.tex + RELOC/doc/fonts/bookhands/pgothic-README + RELOC/doc/fonts/bookhands/pgothic-tryfont.pdf + RELOC/doc/fonts/bookhands/pgothic-tryfont.tex + RELOC/doc/fonts/bookhands/pgothic/allfont.tex + RELOC/doc/fonts/bookhands/rotunda-README + RELOC/doc/fonts/bookhands/rotunda-tryfont.tex + RELOC/doc/fonts/bookhands/rotunda/allfont.tex + RELOC/doc/fonts/bookhands/rustic-README + RELOC/doc/fonts/bookhands/rustic-tryfont.ps.gz + RELOC/doc/fonts/bookhands/rustic-tryfont.tex + RELOC/doc/fonts/bookhands/rustic/allfont.ps.gz + RELOC/doc/fonts/bookhands/rustic/allfont.tex + RELOC/doc/fonts/bookhands/sqrcaps-README + RELOC/doc/fonts/bookhands/sqrcaps.pdf + RELOC/doc/fonts/bookhands/sqrcaps/allsqrcaps.tex + RELOC/doc/fonts/bookhands/tgothic-README + RELOC/doc/fonts/bookhands/tgothic-tryfont.tex + RELOC/doc/fonts/bookhands/tgothic/allfont.tex + RELOC/doc/fonts/bookhands/trysqrcaps.pdf + RELOC/doc/fonts/bookhands/trysqrcaps.tex + RELOC/doc/fonts/bookhands/uncial-README + RELOC/doc/fonts/bookhands/uncial-tryfont.ps.gz + RELOC/doc/fonts/bookhands/uncial-tryfont.tex + RELOC/doc/fonts/bookhands/uncial/allfont.ps.gz + RELOC/doc/fonts/bookhands/uncial/allfont.tex +srccontainersize 84212 +srccontainerchecksum 4df12247bff50722ae11636ecc0071e03d8d296ea958d2a1b84b5b2952f35d890be66af4b85dcf1fe2599e787e71c1b9e7f727a8be9b4ec79eb1bd6aec21925d +srcfiles size=430 + RELOC/source/fonts/bookhands/auncial.dtx + RELOC/source/fonts/bookhands/auncial.ins + RELOC/source/fonts/bookhands/carolmin.dtx + RELOC/source/fonts/bookhands/carolmin.ins + RELOC/source/fonts/bookhands/egothic.dtx + RELOC/source/fonts/bookhands/egothic.ins + RELOC/source/fonts/bookhands/humanist.dtx + RELOC/source/fonts/bookhands/humanist.ins + RELOC/source/fonts/bookhands/huncial.dtx + RELOC/source/fonts/bookhands/huncial.ins + RELOC/source/fonts/bookhands/inslrmaj.dtx + RELOC/source/fonts/bookhands/inslrmaj.ins + RELOC/source/fonts/bookhands/inslrmin.dtx + RELOC/source/fonts/bookhands/inslrmin.ins + RELOC/source/fonts/bookhands/pgothic.dtx + RELOC/source/fonts/bookhands/pgothic.ins + RELOC/source/fonts/bookhands/rotunda.dtx + RELOC/source/fonts/bookhands/rotunda.ins + RELOC/source/fonts/bookhands/rustic.dtx + RELOC/source/fonts/bookhands/rustic.ins + RELOC/source/fonts/bookhands/sqrcaps.dtx + RELOC/source/fonts/bookhands/sqrcaps.ins + RELOC/source/fonts/bookhands/tgothic.dtx + RELOC/source/fonts/bookhands/tgothic.ins + RELOC/source/fonts/bookhands/uncial.dtx + RELOC/source/fonts/bookhands/uncial.ins +runfiles size=451 RELOC/fonts/afm/public/bookhands/sqrc10.afm RELOC/fonts/afm/public/bookhands/sqrcb10.afm RELOC/fonts/map/dvips/bookhands/sqrcaps.map @@ -19174,6 +36368,18 @@ runfiles size=412 RELOC/fonts/source/public/bookhands/rustpunct.mf RELOC/fonts/source/public/bookhands/rusttitle.mf RELOC/fonts/source/public/bookhands/rustu.mf + RELOC/fonts/source/public/bookhands/tgothb10.mf + RELOC/fonts/source/public/bookhands/tgothb17.mf + RELOC/fonts/source/public/bookhands/tgothb7.mf + RELOC/fonts/source/public/bookhands/tgothdig.mf + RELOC/fonts/source/public/bookhands/tgothl.mf + RELOC/fonts/source/public/bookhands/tgothlig.mf + RELOC/fonts/source/public/bookhands/tgothpunct.mf + RELOC/fonts/source/public/bookhands/tgothr10.mf + RELOC/fonts/source/public/bookhands/tgothr17.mf + RELOC/fonts/source/public/bookhands/tgothr7.mf + RELOC/fonts/source/public/bookhands/tgothtitle.mf + RELOC/fonts/source/public/bookhands/tgothu.mf RELOC/fonts/source/public/bookhands/uncl10.mf RELOC/fonts/source/public/bookhands/uncl17.mf RELOC/fonts/source/public/bookhands/uncl7.mf @@ -19245,6 +36451,11 @@ runfiles size=412 RELOC/fonts/tfm/public/bookhands/rustb7.tfm RELOC/fonts/tfm/public/bookhands/sqrc10.tfm RELOC/fonts/tfm/public/bookhands/sqrcb10.tfm + RELOC/fonts/tfm/public/bookhands/tgothb10.tfm + RELOC/fonts/tfm/public/bookhands/tgothb17.tfm + RELOC/fonts/tfm/public/bookhands/tgothr10.tfm + RELOC/fonts/tfm/public/bookhands/tgothr17.tfm + RELOC/fonts/tfm/public/bookhands/tgothr7.tfm RELOC/fonts/tfm/public/bookhands/uncl10.tfm RELOC/fonts/tfm/public/bookhands/uncl17.tfm RELOC/fonts/tfm/public/bookhands/uncl7.tfm @@ -19263,6 +36474,7 @@ runfiles size=412 RELOC/tex/latex/bookhands/allrtnd.sty RELOC/tex/latex/bookhands/allrust.sty RELOC/tex/latex/bookhands/allsqrc.sty + RELOC/tex/latex/bookhands/alltgoth.sty RELOC/tex/latex/bookhands/alluncl.sty RELOC/tex/latex/bookhands/carolmin.sty RELOC/tex/latex/bookhands/egothic.sty @@ -19281,6 +36493,7 @@ runfiles size=412 RELOC/tex/latex/bookhands/ot1rtnd.fd RELOC/tex/latex/bookhands/ot1rust.fd RELOC/tex/latex/bookhands/ot1sqrc.fd + RELOC/tex/latex/bookhands/ot1tgoth.fd RELOC/tex/latex/bookhands/ot1uncl.fd RELOC/tex/latex/bookhands/pgothic.sty RELOC/tex/latex/bookhands/rotunda.sty @@ -19297,100 +36510,19 @@ runfiles size=412 RELOC/tex/latex/bookhands/t1rtnd.fd RELOC/tex/latex/bookhands/t1rust.fd RELOC/tex/latex/bookhands/t1sqrc.fd + RELOC/tex/latex/bookhands/t1tgoth.fd RELOC/tex/latex/bookhands/t1uncl.fd + RELOC/tex/latex/bookhands/tgothic.sty RELOC/tex/latex/bookhands/uncial.sty -docfiles size=497 - RELOC/doc/fonts/bookhands/README.PRW - RELOC/doc/fonts/bookhands/allsqrcaps.pdf - RELOC/doc/fonts/bookhands/auncial-README - RELOC/doc/fonts/bookhands/auncial-tryfont.ps.gz - RELOC/doc/fonts/bookhands/auncial-tryfont.tex - RELOC/doc/fonts/bookhands/auncial/allfont.ps.gz - RELOC/doc/fonts/bookhands/auncial/allfont.tex - RELOC/doc/fonts/bookhands/bsamples.ps.gz - RELOC/doc/fonts/bookhands/bsamples.tex - RELOC/doc/fonts/bookhands/carolmin-README - RELOC/doc/fonts/bookhands/carolmin-tryfont.tex - RELOC/doc/fonts/bookhands/carolmin/allfont.tex - RELOC/doc/fonts/bookhands/egothic-README - RELOC/doc/fonts/bookhands/egothic-tryfont.tex - RELOC/doc/fonts/bookhands/egothic/allfont.tex - RELOC/doc/fonts/bookhands/humanist-README - RELOC/doc/fonts/bookhands/humanist-tryfont.tex - RELOC/doc/fonts/bookhands/humanist/allfont.tex - RELOC/doc/fonts/bookhands/huncial-README - RELOC/doc/fonts/bookhands/huncial-tryfont.ps.gz - RELOC/doc/fonts/bookhands/huncial-tryfont.tex - RELOC/doc/fonts/bookhands/huncial/allfont.ps.gz - RELOC/doc/fonts/bookhands/huncial/allfont.tex - RELOC/doc/fonts/bookhands/inslrmaj-README - RELOC/doc/fonts/bookhands/inslrmaj-tryfont.ps.gz - RELOC/doc/fonts/bookhands/inslrmaj-tryfont.tex - RELOC/doc/fonts/bookhands/inslrmaj/allfont.ps.gz - RELOC/doc/fonts/bookhands/inslrmaj/allfont.tex - RELOC/doc/fonts/bookhands/inslrmin-README - RELOC/doc/fonts/bookhands/inslrmin-tryfont.tex - RELOC/doc/fonts/bookhands/inslrmin/allfont.tex - RELOC/doc/fonts/bookhands/pgothic-README - RELOC/doc/fonts/bookhands/pgothic-tryfont.pdf - RELOC/doc/fonts/bookhands/pgothic-tryfont.tex - RELOC/doc/fonts/bookhands/pgothic/allfont.tex - RELOC/doc/fonts/bookhands/rotunda-README - RELOC/doc/fonts/bookhands/rotunda-tryfont.tex - RELOC/doc/fonts/bookhands/rotunda/allfont.tex - RELOC/doc/fonts/bookhands/rustic-README - RELOC/doc/fonts/bookhands/rustic-tryfont.ps.gz - RELOC/doc/fonts/bookhands/rustic-tryfont.tex - RELOC/doc/fonts/bookhands/rustic/allfont.ps.gz - RELOC/doc/fonts/bookhands/rustic/allfont.tex - RELOC/doc/fonts/bookhands/sqrcaps-README - RELOC/doc/fonts/bookhands/sqrcaps.pdf - RELOC/doc/fonts/bookhands/sqrcaps/allsqrcaps.tex - RELOC/doc/fonts/bookhands/tgothic/README - RELOC/doc/fonts/bookhands/tgothic/allfont.tex - RELOC/doc/fonts/bookhands/tgothic/tgothic.dtx - RELOC/doc/fonts/bookhands/tgothic/tgothic.ins - RELOC/doc/fonts/bookhands/tgothic/tryfont.tex - RELOC/doc/fonts/bookhands/trysqrcaps.pdf - RELOC/doc/fonts/bookhands/trysqrcaps.tex - RELOC/doc/fonts/bookhands/uncial-README - RELOC/doc/fonts/bookhands/uncial-tryfont.ps.gz - RELOC/doc/fonts/bookhands/uncial-tryfont.tex - RELOC/doc/fonts/bookhands/uncial/allfont.ps.gz - RELOC/doc/fonts/bookhands/uncial/allfont.tex -srcfiles size=391 - RELOC/source/fonts/bookhands/auncial.dtx - RELOC/source/fonts/bookhands/auncial.ins - RELOC/source/fonts/bookhands/carolmin.dtx - RELOC/source/fonts/bookhands/carolmin.ins - RELOC/source/fonts/bookhands/egothic.dtx - RELOC/source/fonts/bookhands/egothic.ins - RELOC/source/fonts/bookhands/humanist.dtx - RELOC/source/fonts/bookhands/humanist.ins - RELOC/source/fonts/bookhands/huncial.dtx - RELOC/source/fonts/bookhands/huncial.ins - RELOC/source/fonts/bookhands/inslrmaj.dtx - RELOC/source/fonts/bookhands/inslrmaj.ins - RELOC/source/fonts/bookhands/inslrmin.dtx - RELOC/source/fonts/bookhands/inslrmin.ins - RELOC/source/fonts/bookhands/pgothic.dtx - RELOC/source/fonts/bookhands/pgothic.ins - RELOC/source/fonts/bookhands/rotunda.dtx - RELOC/source/fonts/bookhands/rotunda.ins - RELOC/source/fonts/bookhands/rustic.dtx - RELOC/source/fonts/bookhands/rustic.ins - RELOC/source/fonts/bookhands/sqrcaps.dtx - RELOC/source/fonts/bookhands/sqrcaps.ins - RELOC/source/fonts/bookhands/uncial.dtx - RELOC/source/fonts/bookhands/uncial.ins catalogue-ctan /fonts/bookhands -catalogue-date 2014-10-16 09:56:32 +0200 +catalogue-date 2017-10-29 15:32:26 +0100 catalogue-license lppl +catalogue-topics font font-mf font-bookhand collection name booklet category Package revision 15878 -shortdesc Aids for printing simple booklets. +shortdesc Aids for printing simple booklets relocated 1 longdesc Pages of a document processed with the booklet package will be longdesc reordered and scaled so that they can be printed as four pages @@ -19398,25 +36530,32 @@ longdesc per physical sheet of paper, two pages per side. The resulting longdesc sheets will, when folded in half, assemble into a booklet. longdesc Instructions on producing the manual itself as a booklet are longdesc included. -runfiles size=3 - RELOC/tex/latex/booklet/bkltprnt.sty - RELOC/tex/latex/booklet/booklet.sty +containersize 3184 +containerchecksum be6bc46fa76c0a1ecbfe199b1a1a6f0cedf14a8d583e9ab8ffd75d4cf8ae22e404b289224ed8fa6cd9e143119760d50131e97228cfe75ea56d5ab2f540e8ea8b +doccontainersize 207680 +doccontainerchecksum fb6d74ee03f303433e61fe1afe297cf5e343f95e3834fbdee483522a183d403fb6bac8bfd1d0ca687c448d522d370f5216caba2b52b066ac1657b8dc2fc3df1a docfiles size=63 - RELOC/doc/latex/booklet/README - RELOC/doc/latex/booklet/booklet.pdf + RELOC/doc/latex/booklet/README details="Readme" + RELOC/doc/latex/booklet/booklet.pdf details="Package documentation" +srccontainersize 23512 +srccontainerchecksum 7b63195d047c6d05cec02af6d44c77e9fbc0a198717a5ed3383f6d662946cb8de9b7659916ab6d7951eeeedfe00abcd68eb006012de3e083d767acffdc0f3cbe srcfiles size=23 RELOC/source/latex/booklet/booklet.dtx RELOC/source/latex/booklet/booklet.ins +runfiles size=3 + RELOC/tex/latex/booklet/bkltprnt.sty + RELOC/tex/latex/booklet/booklet.sty catalogue-ctan /macros/latex/contrib/booklet -catalogue-date 2012-04-26 14:33:15 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics layout catalogue-version 0.7b name bookman category Package revision 31835 catalogue urw-base35 -shortdesc URW "Base 35" font pack for LaTeX. +shortdesc URW "Base 35" font pack for LaTeX relocated 1 longdesc A set of fonts for use as "drop-in" replacements for Adobe's longdesc basic set, comprising: Century Schoolbook (substituting for @@ -19429,6 +36568,8 @@ longdesc Chancery L Medium Italic (substituting for Adobe's Zapf longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). execute addMap ubk.map +containersize 278764 +containerchecksum bcc6a2ca260350a22927d806b29dec9b7a6c7d9bfff2517d3c64072c9bcb3b73ec72937c004d36c2570a2c78f073548db6897195591e36bae7b6eaaecf6b6023 runfiles size=400 RELOC/dvips/bookman/config.ubk RELOC/fonts/afm/adobe/bookman/pbkd8a.afm @@ -19620,71 +36761,89 @@ runfiles size=400 RELOC/tex/latex/bookman/ot1ubk.fd RELOC/tex/latex/bookman/t1ubk.fd RELOC/tex/latex/bookman/ts1ubk.fd +catalogue-also tex-gyre catalogue-ctan /fonts/urw/base35 -catalogue-date 2014-06-07 20:47:53 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics font font-type1 font-collection + +name booktabs +category Package +revision 40846 +shortdesc Publication quality tables in LaTeX +relocated 1 +longdesc The package enhances the quality of tables in LaTeX, providing +longdesc extra commands as well as behind-the-scenes optimisation. +longdesc Guidelines are given as to what constitutes a good table in +longdesc this context. From version 1.61, the package offers longtable +longdesc compatibility. +containersize 2204 +containerchecksum 3857417992accba2d2ce5caa60098a5a8e32ae22a8a5293cb1e557ab79449af792302d918ef3c44ef3560f4a6840253446eba1339d1403c4f09190aaf41c6e27 +doccontainersize 295504 +doccontainerchecksum 9c59aa973601b85631dca21e2e79581436b0efd47e218fe4407b6af3056099ddb4d71a7fbe0401883777c0640f5202b1d0e1dd617ae60243d8635cfdbf108d0d +docfiles size=74 + RELOC/doc/latex/booktabs/README details="Readme" + RELOC/doc/latex/booktabs/booktabs.pdf details="Package documentation (English)" language="en" +srccontainersize 14496 +srccontainerchecksum 870f2933a9c08876bf518593318f9fbe09a9407f85b561cf8b9f78ba7214ca6ce9068aca19bf907560739b6d4a47ca3588d39bf6434776cd014c312ed1f50c9e +srcfiles size=12 + RELOC/source/latex/booktabs/booktabs.dtx + RELOC/source/latex/booktabs/booktabs.ins +runfiles size=2 + RELOC/tex/latex/booktabs/booktabs.sty +catalogue-ctan /macros/latex/contrib/booktabs +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics table table-rule +catalogue-version 1.618033 name booktabs-de category Package revision 21907 -shortdesc German version of booktabs. +shortdesc German version of booktabs relocated 1 longdesc This is a "translation" of the booktabs. +containersize 392 +containerchecksum 25a46153cea4a6e94c77cabf3afac74e642c7362f7c852725e8443de8ef8873c5a9d2dab3fc3b083dd7382e10d74e71b40b40b1143afce1646e853899c0ea2c6 +doccontainersize 273312 +doccontainerchecksum 1016522eb74332542a9497f47fb0ea884c7d8b3d0a0630b8a6604bdc41ee08d29d963fcee0d643a8260d2e667c0b39edc74f4998ecbe66bc7a45ef23ac78371c docfiles size=82 - RELOC/doc/latex/booktabs-de/README-DE + RELOC/doc/latex/booktabs-de/README-DE details="Readme (German)" language="de" RELOC/doc/latex/booktabs-de/booktabs-de.dtx RELOC/doc/latex/booktabs-de/booktabs-de.ins - RELOC/doc/latex/booktabs-de/booktabs-de.pdf + RELOC/doc/latex/booktabs-de/booktabs-de.pdf details="Package documentation" catalogue-ctan /macros/latex/contrib/booktabs-de -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics german-doc translation catalogue-version 1.61803 name booktabs-fr category Package revision 21948 -shortdesc French translation of booktabs documentation. +shortdesc French translation of booktabs documentation relocated 1 longdesc The translation comes from a collection provided by Benjamin longdesc Bayart. +containersize 420 +containerchecksum 62d4aefc19ff86a60b8fc68a5203bbc2dd2c86ef2f74d5dc0d2a664ff342c13077f5f71a4991704e1d9c69587e4ecde629e5432ade3695efbbc388714fa3c268 +doccontainersize 221368 +doccontainerchecksum eab2c83e6d81a601ec98ffe43ed4b5ec71e17c6ec42c26c519fdbbb3c3e82154b01bb569adca65dbf540ccbd7263cc20806dbe901ba44204b84d07d235b07bc7 docfiles size=67 - RELOC/doc/latex/booktabs-fr/README + RELOC/doc/latex/booktabs-fr/README details="Readme" language="fr" RELOC/doc/latex/booktabs-fr/f-booktabs.dtx - RELOC/doc/latex/booktabs-fr/f-booktabs.pdf + RELOC/doc/latex/booktabs-fr/f-booktabs.pdf details="The document itself" RELOC/doc/latex/booktabs-fr/ltxdoc.cfg catalogue-ctan /info/translations/booktabs/fr -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics french-doc translation catalogue-version 1.00 -name booktabs -category Package -revision 15878 -shortdesc Publication quality tables in LaTeX -relocated 1 -longdesc The package enhances the quality of tables in LaTeX, providing -longdesc extra commands as well as behind-the-scenes optimisation. -longdesc Guidelines are given as to what constitutes a good table in -longdesc this context. From version 1.61, the package offers longtable -longdesc compatibility. -runfiles size=2 - RELOC/tex/latex/booktabs/booktabs.sty -docfiles size=54 - RELOC/doc/latex/booktabs/COPYING - RELOC/doc/latex/booktabs/README - RELOC/doc/latex/booktabs/booktabs.pdf -srcfiles size=12 - RELOC/source/latex/booktabs/booktabs.dtx - RELOC/source/latex/booktabs/booktabs.ins -catalogue-ctan /macros/latex/contrib/booktabs -catalogue-date 2012-11-14 11:01:29 +0100 -catalogue-license gpl -catalogue-version 1.61803 - name boolexpr category Package revision 17830 -shortdesc A boolean expression evaluator and a switch command. +shortdesc A boolean expression evaluator and a switch command relocated 1 longdesc The \boolexpr macro evaluates boolean expressions in a purely longdesc expandable way. \boolexpr{ A \OR B \AND C } expands to 0 if the @@ -19697,31 +36856,46 @@ longdesc \AND C } What to do if true \else What to do if false \fi The longdesc \switch command (which is also expandable) has the form: longdesc \switch \case{} ... \case{} ... ... \otherwise ... \endswitch -runfiles size=2 - RELOC/tex/latex/boolexpr/boolexpr.sty +containersize 2772 +containerchecksum 677a397363b80126e45609d125ec2cf22b3ef144216e19183bcd48c1f0ccd6e2e079fbb0a2e7ac03f094470c8c0bc64ae652863aed970ee9fc75a9a69b60c618 +doccontainersize 142296 +doccontainerchecksum 6351bf2d3382c5a3b9a07a8458d7f158ee3bd0e72c96af5f2f985d28a40859f95ae7ae956e5dbaa1ed93b1331322ae1e8901ad3110f5e74024efd831e29b6b44 docfiles size=55 - RELOC/doc/latex/boolexpr/README - RELOC/doc/latex/boolexpr/boolexpr.pdf + RELOC/doc/latex/boolexpr/README details="Readme" + RELOC/doc/latex/boolexpr/boolexpr.pdf details="Package documentation" +srccontainersize 11884 +srccontainerchecksum 561daf8eb74f10987be27e884023ad443f24e8d48b573dbe8eab5e958c2ac9f2319b293874050c7d7f56ea3c22f31eaa57f3101c8878b466ad8938018427e765 srcfiles size=12 RELOC/source/latex/boolexpr/boolexpr.dtx RELOC/source/latex/boolexpr/boolexpr.ins +runfiles size=2 + RELOC/tex/latex/boolexpr/boolexpr.sty catalogue-ctan /macros/latex/contrib/boolexpr -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics macro-supp catalogue-version 3.14 name boondox category Package -revision 22313 -shortdesc Mathematical alphabets derived from the STIX fonts. +revision 43344 +shortdesc Mathematical alphabets derived from the STIX fonts relocated 1 longdesc The package contains a number of PostScript fonts derived from -longdesc the STIX OpenType fonts, that may be used in maths mode in -longdesc regular and bold weights for calligraphic, fraktur and double- -longdesc struck alphabets. Virtual fonts with metrics suitable for maths -longdesc mode are provided, as are LaTeX support files. +longdesc the STIX OpenType fonts that may be used in maths mode in +longdesc regular and bold weights for calligraphic, fraktur and +longdesc double-struck alphabets. Virtual fonts with metrics suitable +longdesc for maths mode are provided, as are LaTeX support files. execute addMap boondox.map -runfiles size=66 +containersize 204712 +containerchecksum 348b48abd7a8b95f37d211612ccc1e4931c0a768af82b695c263b7e8931eded562049ae5a1198361363b08cc269cfb8eafae93c074fe1ada7e9881dfc88d7a41 +doccontainersize 102676 +doccontainerchecksum 24ee6699a84da5931e5223f27bf74518544ebe1a11b303bbcb27c4afc203267159fd4b6d8d9e5828e92c96abd8fa3bb395528868bba0cc26db93fa6748643eca +docfiles size=28 + RELOC/doc/fonts/boondox/README details="Readme" + RELOC/doc/fonts/boondox/boondox-doc.pdf details="Package documentation" + RELOC/doc/fonts/boondox/boondox-doc.tex +runfiles size=98 RELOC/fonts/map/dvips/boondox/boondox.map RELOC/fonts/tfm/public/boondox/BOONDOX-b-cal.tfm RELOC/fonts/tfm/public/boondox/BOONDOX-b-calo.tfm @@ -19731,6 +36905,8 @@ runfiles size=66 RELOC/fonts/tfm/public/boondox/BOONDOX-r-calo.tfm RELOC/fonts/tfm/public/boondox/BOONDOX-r-ds.tfm RELOC/fonts/tfm/public/boondox/BOONDOX-r-frak.tfm + RELOC/fonts/tfm/public/boondox/BOONDOXUprScr-Bold.tfm + RELOC/fonts/tfm/public/boondox/BOONDOXUprScr-Regular.tfm RELOC/fonts/tfm/public/boondox/zxxbf7z.tfm RELOC/fonts/tfm/public/boondox/zxxbf8a.tfm RELOC/fonts/tfm/public/boondox/zxxbl7z.tfm @@ -19745,6 +36921,8 @@ runfiles size=66 RELOC/fonts/tfm/public/boondox/zxxrow7z.tfm RELOC/fonts/tfm/public/boondox/zxxrw7z.tfm RELOC/fonts/tfm/public/boondox/zxxrw8a.tfm + RELOC/fonts/type1/public/boondox/BOONDOXUprScr-Bold.pfb + RELOC/fonts/type1/public/boondox/BOONDOXUprScr-Regular.pfb RELOC/fonts/type1/public/boondox/zxxbf8a.pfb RELOC/fonts/type1/public/boondox/zxxbl8a.pfb RELOC/fonts/type1/public/boondox/zxxbw8a.pfb @@ -19763,44 +36941,51 @@ runfiles size=66 RELOC/tex/latex/boondox/BOONDOX-calo.sty RELOC/tex/latex/boondox/BOONDOX-ds.sty RELOC/tex/latex/boondox/BOONDOX-frak.sty + RELOC/tex/latex/boondox/BOONDOX-uprscr.sty RELOC/tex/latex/boondox/uboondox-cal.fd RELOC/tex/latex/boondox/uboondox-calo.fd RELOC/tex/latex/boondox/uboondox-ds.fd RELOC/tex/latex/boondox/uboondox-frak.fd -docfiles size=10 - RELOC/doc/fonts/boondox/README - RELOC/doc/fonts/boondox/boondox-doc.pdf - RELOC/doc/fonts/boondox/boondox-doc.tex + RELOC/tex/latex/boondox/uboondoxuprscr.fd catalogue-ctan /fonts/boondox -catalogue-date 2014-04-07 13:51:00 +0200 -catalogue-license lppl -catalogue-version 1.0 +catalogue-date 2017-02-26 09:09:50 +0100 +catalogue-license ofllppl +catalogue-topics font font-maths font-type1 +catalogue-version 1.02d name bophook category Package revision 17062 -shortdesc Provides an At-Begin-Page hook. +shortdesc Provides an At-Begin-Page hook relocated 1 longdesc Using the \AtBeginPage hook, you can add material in the longdesc background of a page. \PageLayout can be used to give page longdesc makeup commands to be executed on every page (e.g., depending longdesc on the page style). -runfiles size=1 - RELOC/tex/latex/bophook/bophook.sty +containersize 1764 +containerchecksum 8ce41fecd2befaf448ed238d8bf643362f5a945b7391d18b2698c006421b7b60ce4d886e09dc579eef12cfb459f49247f7f3afebdf8b590e9285c608d654ed60 +doccontainersize 44772 +doccontainerchecksum 7d8ce0b7caffa4e16539154ade5a3df6d6b42b75bc521643473ff568ef5c65c3014fb22053b353a917d2c4782f378bc765475dca5d20b3dc06ff02c0dd2a63ec docfiles size=16 - RELOC/doc/latex/bophook/bophook.pdf + RELOC/doc/latex/bophook/bophook.pdf details="Package documentation" +srccontainersize 4104 +srccontainerchecksum ca7e5fc30d23c022e4fec8414c9ef11d2acd5707ad781428021f8a828c6c8b891674fc6eb372a0dc33944e2a54adb9b86645529ff28b4438c31d8477cb2b3a6d srcfiles size=4 RELOC/source/latex/bophook/bophook.dtx RELOC/source/latex/bophook/bophook.ins +runfiles size=1 + RELOC/tex/latex/bophook/bophook.sty +catalogue-also everyshi catalogue-ctan /macros/latex/contrib/bophook -catalogue-date 2012-04-26 14:33:15 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics defer-stuff catalogue-version 0.02 name borceux category Package revision 21047 -shortdesc Diagram macros by Francois Borceux. +shortdesc Diagram macros by Francois Borceux relocated 1 longdesc The macros support the construction of diagrams, such as those longdesc that appear in category theory texts. The user gives the list @@ -19808,14 +36993,12 @@ longdesc of vertices and arrows to be included, just as when composing a longdesc matrix, and the program takes care of computing the dimensions longdesc of the arrows and realizing the pagesetting. All the user has longdesc to do about the arrows is to specify their type (monomorphism, -longdesc pair of adjoint arrows, etc.) and their direction (north, south- -longdesc east, etc.); 12 types and 32 directions are available. -runfiles size=191 - RELOC/tex/generic/borceux/Diagram - RELOC/tex/generic/borceux/MaxiDiagram - RELOC/tex/generic/borceux/MicroDiagram - RELOC/tex/generic/borceux/MiniDiagram - RELOC/tex/generic/borceux/MultipleArrows +longdesc pair of adjoint arrows, etc.) and their direction (north, +longdesc south-east, etc.); 12 types and 32 directions are available. +containersize 26844 +containerchecksum e4658e7a672caccd24832b31b0635dc61ae5ace5297569a84d9da981eb37f6b9b944bc33c1e964c09c7042e3e74f9b3067795fdad508e52e624f2bfaf439559e +doccontainersize 15640 +doccontainerchecksum 202e6b476c5c6f48ea2e6bdf2710d01afcdd9a02669d220bb11bab8fa920f41fddb8aa152a815045ce9d0c92b761f90ab34cd426ba62cf26282d71696f00f03f docfiles size=23 RELOC/doc/generic/borceux/Diagram_Mode_d_Emploi RELOC/doc/generic/borceux/Diagram_Read_Me @@ -19825,26 +37008,28 @@ docfiles size=23 RELOC/doc/generic/borceux/compatibility/OldMicroDiagram RELOC/doc/generic/borceux/compatibility/OldMiniDiagram RELOC/doc/generic/borceux/compatibility/OldMultipleArrows +runfiles size=191 + RELOC/tex/generic/borceux/Diagram + RELOC/tex/generic/borceux/MaxiDiagram + RELOC/tex/generic/borceux/MicroDiagram + RELOC/tex/generic/borceux/MiniDiagram + RELOC/tex/generic/borceux/MultipleArrows catalogue-ctan /macros/generic/diagrams/borceux -catalogue-date 2012-02-21 12:29:07 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics diagram-comm name bosisio category Package revision 16989 -shortdesc A collection of packages by Francesco Bosisio. +shortdesc A collection of packages by Francesco Bosisio relocated 1 longdesc A collection of packages containing: accenti dblfont; envmath; longdesc evenpage; graphfig; mathcmd; quotes; and sobolev. -runfiles size=15 - RELOC/tex/latex/bosisio/accenti.sty - RELOC/tex/latex/bosisio/dblfont.sty - RELOC/tex/latex/bosisio/envmath.sty - RELOC/tex/latex/bosisio/evenpage.sty - RELOC/tex/latex/bosisio/graphfig.sty - RELOC/tex/latex/bosisio/mathcmd.sty - RELOC/tex/latex/bosisio/quotes.sty - RELOC/tex/latex/bosisio/sobolev.sty +containersize 6992 +containerchecksum 659cd163c28a52fc12651b35b8018d0df7e4fb706739b090167689a7199a8f9ca3bc3376ed3a5b6c076e9242f4f8132dbec6cbeead499453fa5c9cbd2aecce38 +doccontainersize 462336 +doccontainerchecksum 7fc9a651f6845643fecbb9f0fff150fec2a22273accc420451c2c5dbeab6e40cbeb9b51a32589787c005fe479f626111214bebadb217a238baab07fa18d8c92b docfiles size=172 RELOC/doc/latex/bosisio/README RELOC/doc/latex/bosisio/accenti.html @@ -19857,7 +37042,7 @@ docfiles size=172 RELOC/doc/latex/bosisio/evenpage.pdf RELOC/doc/latex/bosisio/graphfig.html RELOC/doc/latex/bosisio/graphfig.pdf - RELOC/doc/latex/bosisio/index.html + RELOC/doc/latex/bosisio/index.html details="Outline of the collection" RELOC/doc/latex/bosisio/makedoc RELOC/doc/latex/bosisio/mathcmd.html RELOC/doc/latex/bosisio/mathcmd.pdf @@ -19865,6 +37050,8 @@ docfiles size=172 RELOC/doc/latex/bosisio/quotes.pdf RELOC/doc/latex/bosisio/sobolev.html RELOC/doc/latex/bosisio/sobolev.pdf +srccontainersize 23060 +srccontainerchecksum 494ff83253abdc9f0d81b3ee36f1d860938b1eb8a7691ecda596d31126624f3272ba65685a9436a5817b93a786da97e6bc6702249630d71f697ef394f801584e srcfiles size=41 RELOC/source/latex/bosisio/accenti.drv RELOC/source/latex/bosisio/accenti.dtx @@ -19882,9 +37069,42 @@ srcfiles size=41 RELOC/source/latex/bosisio/quotes.dtx RELOC/source/latex/bosisio/sobolev.drv RELOC/source/latex/bosisio/sobolev.dtx +runfiles size=15 + RELOC/tex/latex/bosisio/accenti.sty + RELOC/tex/latex/bosisio/dblfont.sty + RELOC/tex/latex/bosisio/envmath.sty + RELOC/tex/latex/bosisio/evenpage.sty + RELOC/tex/latex/bosisio/graphfig.sty + RELOC/tex/latex/bosisio/mathcmd.sty + RELOC/tex/latex/bosisio/quotes.sty + RELOC/tex/latex/bosisio/sobolev.sty catalogue-ctan /macros/latex/contrib/bosisio -catalogue-date 2012-04-24 13:27:55 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics collection + +name boxedminipage +category Package +revision 17087 +shortdesc A package for producing framed minipages +relocated 1 +longdesc The package defines the boxedminipage environment -- like +longdesc minipage, but with a frame around it. +containersize 1332 +containerchecksum 374033f9b8b88c55db6de9247d065f7841d49c8b7d42386694752e78b4bb2f4a311e42d5ca3c1e0dd5e694fddb0c18bf9ae6ccb39dc80bf075086e18fe39bf59 +doccontainersize 116348 +doccontainerchecksum 6fe8b0c04117d6b70972ca973e9a71cb33f2ea3f2789460aecb1f0702b896a3cf1d2e6d31533a13819caf1636c5e33ca40f60156992770e243be509dff765644 +docfiles size=31 + RELOC/doc/latex/boxedminipage/boxedminipage.pdf details="Package documentation" + RELOC/doc/latex/boxedminipage/boxedminipage.tex +runfiles size=1 + RELOC/tex/latex/boxedminipage/boxedminipage.sty +catalogue-also boxedminipage2e +catalogue-ctan /macros/latex/contrib/boxedminipage +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics boxing +catalogue-version 2 name boxedminipage2e category Package @@ -19898,40 +37118,31 @@ longdesc into the margin, \begin{boxedminipage}...\end{boxedminipage} longdesc does not. Instead, it subtracts the frame's dimensions from the longdesc specified dimensions of the minipage before typesetting the longdesc minipage. -runfiles size=1 - RELOC/tex/latex/boxedminipage2e/boxedminipage2e.sty +containersize 1304 +containerchecksum 418fbe838e907f3f545522922cf20548abcde20320dc63396434f7b68f578abaffa9f7b76a18373318ce5ed7cef699c64ad8e10e01cedf0b568e65f33ab609b9 +doccontainersize 209476 +doccontainerchecksum 1366f37d45e3df28d3b370b3a6d9618aad06dc68127d1c22cccb0a64d3f82195d5ca93adae86158a830cca26e7f3da051bd36ab1f80cd4bf3609676c0b790dd8 docfiles size=53 - RELOC/doc/latex/boxedminipage2e/README - RELOC/doc/latex/boxedminipage2e/boxedminipage2e.pdf + RELOC/doc/latex/boxedminipage2e/README details="Readme" + RELOC/doc/latex/boxedminipage2e/boxedminipage2e.pdf details="Package documentation" +srccontainersize 3808 +srccontainerchecksum 2bf7a086348da5cc606d5b5fa0b4b0c4c5f17e77aecb54fd94bd306d43ebddef8af5e143246a8695f18a447271508576c4a4bb051d4ad8b9e0cdb08f7212431c srcfiles size=4 RELOC/source/latex/boxedminipage2e/boxedminipage2e.dtx RELOC/source/latex/boxedminipage2e/boxedminipage2e.ins +runfiles size=1 + RELOC/tex/latex/boxedminipage2e/boxedminipage2e.sty +catalogue-also boxedminipage catalogue-ctan /macros/latex/contrib/boxedminipage2e -catalogue-date 2015-03-14 05:22:36 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics boxing catalogue-version 1.0 -name boxedminipage -category Package -revision 17087 -shortdesc A package for producing framed minipages. -relocated 1 -longdesc The package defines the boxedminipage environment -- like -longdesc minipage, but with a frame around it. -runfiles size=1 - RELOC/tex/latex/boxedminipage/boxedminipage.sty -docfiles size=31 - RELOC/doc/latex/boxedminipage/boxedminipage.pdf - RELOC/doc/latex/boxedminipage/boxedminipage.tex -catalogue-ctan /macros/latex/contrib/boxedminipage -catalogue-date 2015-03-10 11:34:51 +0100 -catalogue-license pd -catalogue-version 2 - name boxhandler category Package revision 28031 -shortdesc Flexible Captioning and Deferred Box/List Printing. +shortdesc Flexible Captioning and Deferred Box/List Printing relocated 1 longdesc The package allows the user to optimise presentation of LaTeX longdesc tables and figures. Boxhandler will lay out table and figure @@ -19948,44 +37159,59 @@ longdesc tables and lists appear (or not) in the document. Deferral longdesc routines also allow one to keep all figure and table data in a longdesc separate source file, while nonetheless producing a document longdesc with figures and tables appearing in the desired location. -runfiles size=6 - RELOC/tex/latex/boxhandler/boxhandler.sty +containersize 5484 +containerchecksum 8aa988155d5115e2fbfbee113013cbb4d32cebc670229104cf96c2920c81bb23245e2365cf31705b67cf72345387a275c83f170a777129ddafdf6cb7558bb077 +doccontainersize 325432 +doccontainerchecksum 15b69a4d434be9561cbcf45a5c3c68ae9560fae35ed2256cfcb4c2bca8ac172a8bd0d6f7335644f586a9b3da65948b9372ae9f7ec9bf2c0d43b572cce5af20bc docfiles size=87 - RELOC/doc/latex/boxhandler/README - RELOC/doc/latex/boxhandler/boxhandler.pdf + RELOC/doc/latex/boxhandler/README details="README file" + RELOC/doc/latex/boxhandler/boxhandler.pdf details="Package documentation" +srccontainersize 22640 +srccontainerchecksum 20e1dd79907029b015d9c6d85c80fa907efc490a80db7f0e871b6b379c1370982fced3e3865a9fc0c7492a9d3631d163b98177dca99deff4a78d7f2ee354f2cd srcfiles size=24 RELOC/source/latex/boxhandler/boxhandler.dtx RELOC/source/latex/boxhandler/boxhandler.ins +runfiles size=6 + RELOC/tex/latex/boxhandler/boxhandler.sty catalogue-ctan /macros/latex/contrib/boxhandler -catalogue-date 2013-04-25 17:41:24 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics float caption defer-stuff catalogue-version 1.30 name bpchem category Package -revision 15878 -shortdesc Typeset chemical names, formulae, etc. +revision 45120 +shortdesc Typeset chemical names, formulae, etc relocated 1 longdesc The package provides support for typesetting simple chemical longdesc formulae, those long IUPAC compound names, and some chemical longdesc idioms. It also supports the labelling of compounds and longdesc reference to labelled compounds. -runfiles size=2 - RELOC/tex/latex/bpchem/bpchem.sty -docfiles size=49 - RELOC/doc/latex/bpchem/bpchem.pdf +containersize 3168 +containerchecksum 3359bc429ec00bdf3b26810e373fd9bba8f562d4782d16adf2706b59ec1cd153f0fd565c26319bac0cf5065b6a2ea99ad5cf6461fba62a7bae8355fad7d8279b +doccontainersize 356700 +doccontainerchecksum c8edfa3e5fd901ef705b6b55dd2278eabd996e2b3aa76ec5da9c34c07db95909b67f31990684883edd256f7a5eb7c29450886472fafbd0ff91f8e81abc4dc93e +docfiles size=93 + RELOC/doc/latex/bpchem/README.md details="Readme" + RELOC/doc/latex/bpchem/bpchem.pdf details="Package documentation" +srccontainersize 5368 +srccontainerchecksum 0f2629325312dc8e7d05d593bf97ddba9b18d0709d0c29fd5df2b7e5077a15624d98edbca24e20c039e7e72bfc21e676c7bfdb6d29f7c84efd4c40f41d3d930c srcfiles size=5 RELOC/source/latex/bpchem/bpchem.dtx RELOC/source/latex/bpchem/bpchem.ins +runfiles size=2 + RELOC/tex/latex/bpchem/bpchem.sty catalogue-ctan /macros/latex/contrib/bpchem -catalogue-date 2011-09-27 19:59:36 +0200 +catalogue-date 2017-08-23 16:08:38 +0200 catalogue-license lppl -catalogue-version v1.06 +catalogue-topics chemistry +catalogue-version 1.1 name bpolynomial category Package revision 15878 -shortdesc Drawing polynomial functions of up to order 3. +shortdesc Drawing polynomial functions of up to order 3 relocated 1 longdesc This MetaPost package helps plotting polynomial and root longdesc functions up to order three. The package provides macros to @@ -19993,66 +37219,113 @@ longdesc calculate Bezier curves exactly matching a given constant, longdesc linear, quadratic or cubic polynomial, or square or cubic root longdesc function. In addition, tangents on all functions and longdesc derivatives of polynomials can be calculated. -runfiles size=3 - RELOC/metapost/bpolynomial/bpolynomial.mp +containersize 2580 +containerchecksum 370b9ee803390f51da2cf7da4832ce9a51d923420908ffbf5dba21a2380e13cf345413eb81465e0acf86bc4011ec0bdf8cfcf5ac0cdf62cb3e88b2f2b6a6edb1 +doccontainersize 198608 +doccontainerchecksum 2778eccb795d4543baa16966d55ab68a8c2c6f547d7a544aafec365036d9805a5cbfce97efbd25d0b39329814e95f6a2e18610f5e83a4d755a31dafbd651ce0b docfiles size=67 RELOC/doc/metapost/bpolynomial/CHANGES - RELOC/doc/metapost/bpolynomial/README + RELOC/doc/metapost/bpolynomial/README details="Readme" RELOC/doc/metapost/bpolynomial/TODO - RELOC/doc/metapost/bpolynomial/bpolynomial.pdf + RELOC/doc/metapost/bpolynomial/bpolynomial.pdf details="Package documentation" RELOC/doc/metapost/bpolynomial/bpolynomial.tex RELOC/doc/metapost/bpolynomial/examples.mp +runfiles size=3 + RELOC/metapost/bpolynomial/bpolynomial.mp catalogue-ctan /graphics/metapost/contrib/macros/bpolynomial -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics graphics-plotfn catalogue-version 0.5 +name br-lex +category Package +revision 44939 +shortdesc A Class for Typesetting Brazilian legal texts +relocated 1 +longdesc This class implements rules to typeset Brazilian legal texts. +longdesc Its purpose is to be an easy-to-use implementation for the +longdesc end-user. +containersize 2296 +containerchecksum e4eede34a086ab025a9918798feea2c6b8b19d86782a6d93745aa82d40258e1619433eb445d0b3c1335dcb195689bb76ac8142e6c65618cea6392e243dadd915 +doccontainersize 60588 +doccontainerchecksum 3d277aeef55721a833cd613c98852c33f7ce22a8034e2fe62952409cffe1ea49ebe1f3b80f91018ea51fadef226939a14e103884dca19227193a32d1e3ba3110 +docfiles size=19 + RELOC/doc/latex/br-lex/README.md details="Readme" + RELOC/doc/latex/br-lex/brlex-doc.pdf details="Package documentation" language="pt-br" + RELOC/doc/latex/br-lex/leis-exemplo.pdf details="Example of use" language="pt-br" + RELOC/doc/latex/br-lex/leis-exemplo.tex +runfiles size=2 + RELOC/tex/latex/br-lex/br-lex.cls +catalogue-ctan /macros/latex/contrib/br-lex +catalogue-date 2017-08-19 23:31:09 +0200 +catalogue-license lppl1.3 +catalogue-topics legal class + name bracketkey category Package revision 17129 -shortdesc Produce bracketed identification keys. +shortdesc Produce bracketed identification keys relocated 1 longdesc The package provides an environment bracketkey for use when longdesc producing lists of species. -runfiles size=1 - RELOC/tex/latex/bracketkey/bracketkey.sty +containersize 1792 +containerchecksum ecdf6f5c6cfa46a3a0eedc9eeef5bbc59cc05a2a831249787ff70fda7d69466862c18dd7ed7a440b8b2bb93c6a08225c7a97bb2f5588d94548d9f6b626ec36aa +doccontainersize 292852 +doccontainerchecksum db067a4ab9ac087f565d184c48a90800e68ddb25f5f78146ef1f65bcd3cfb1d0adea78483ca8e27fb9f82bbf26d23c5c16ce735aae194f4816ea73eb993ef099 docfiles size=79 RELOC/doc/latex/bracketkey/Malva.pdf RELOC/doc/latex/bracketkey/Malva.tex - RELOC/doc/latex/bracketkey/README - RELOC/doc/latex/bracketkey/bracketkey.pdf + RELOC/doc/latex/bracketkey/README details="Readme, including usage details" + RELOC/doc/latex/bracketkey/bracketkey.pdf details="Package documentation" RELOC/doc/latex/bracketkey/bracketkey.tex +runfiles size=1 + RELOC/tex/latex/bracketkey/bracketkey.sty catalogue-ctan /macros/latex/contrib/bracketkey -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics biology catalogue-version 1.0 name braids category Package -revision 23790 -shortdesc Draw braid diagrams with PGF/TikZ. +revision 51048 +shortdesc Draw braid diagrams with PGF/TikZ relocated 1 longdesc The package enables drawing of braid diagrams with PGF/TikZ longdesc using a simple syntax. The braid itself is specified by giving longdesc a word in the braid group, and there are many options for longdesc styling the strands and for drawing "floors". -runfiles size=4 +containersize 7160 +containerchecksum bf0c0ff2b6e81b0dbbbb317a1be711e8dc9812214740048a0dea40d8d3045c3fbb996fe1369783ed906571587a5fd241e6a7ce5023c3278ee1bdda19a7411787 +doccontainersize 670648 +doccontainerchecksum 2a96dfb2c18a89d34e4116e1fa81f48532605b625b227fb24f7a949a9e3707f1ffc02f4a20b254e963801a8f97d7f093db7b568adc3b8f4a1fce4bbb7ffb51b5 +docfiles size=185 + RELOC/doc/latex/braids/README.txt details="Readme" + RELOC/doc/latex/braids/braids.pdf details="Package documentation" + RELOC/doc/latex/braids/braids.tex + RELOC/doc/latex/braids/braids_code.pdf +srccontainersize 14312 +srccontainerchecksum 0a0760d9d88ba7c96d2691b0e180ed09ea9932f8170c4c112eef5eb58e112bd69e1d2362bd5ba46b852eb0d7678bf9049c9ae8e69e0b47772f8edfd2c23c5285 +srcfiles size=19 + RELOC/source/latex/braids/braids_code.dtx + RELOC/source/latex/braids/braids_code.ins +runfiles size=12 RELOC/tex/latex/braids/braids.sty -docfiles size=73 - RELOC/doc/latex/braids/README - RELOC/doc/latex/braids/braids_doc.pdf - RELOC/doc/latex/braids/braids_doc.tex -srcfiles size=8 - RELOC/source/latex/braids/braids.dtx + RELOC/tex/latex/braids/tikzlibrarybraids.code.tex +catalogue-contact-bugs https://github.com/loopspace/braids/issues +catalogue-contact-home https://github.com/loopspace/braids +catalogue-contact-repository https://github.com/loopspace/braids catalogue-ctan /graphics/pgf/contrib/braids -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-date 2019-05-08 08:33:46 +0200 +catalogue-license lppl1.3c +catalogue-topics maths diagram +catalogue-version 2.0 name braille category Package revision 20655 -shortdesc Support for braille. +shortdesc Support for braille relocated 1 longdesc This package allows the user to produce Braille documents on longdesc paper for the blind without knowing Braille (which can take @@ -20060,25 +37333,30 @@ longdesc years to learn). Python scripts grade1.py and grade2.py convert longdesc ordinary text to grade 1 and 2 Braille tags; then, the LaTeX longdesc package takes the tags and prints out corresponding Braille longdesc symbols. -runfiles size=5 - RELOC/tex/latex/braille/braille.sty +containersize 5980 +containerchecksum 04893a3664b10fa1d5b912751e51b6d4a596821535da87aa1f2c2c5632e1fc60278435fe9deae4b0fba8296f2e46015b27b592721dde26dcc4acf7e3bd672a4c +doccontainersize 61288 +doccontainerchecksum 1cf6922ffa0785adb8e7e7fa5cfe134b206d70d012eb2ec1bd40bedb72ace43c8a17b3e94b16635473d425420f362c49f1b509796d43ca0d2aff0bd9be9f25cf docfiles size=53 - RELOC/doc/latex/braille/README - RELOC/doc/latex/braille/braille.html + RELOC/doc/latex/braille/README details="Readme" + RELOC/doc/latex/braille/braille.html details="Package documentation (HTML)" RELOC/doc/latex/braille/braillegif1.gif RELOC/doc/latex/braille/braillegif2.gif RELOC/doc/latex/braille/grade1.py RELOC/doc/latex/braille/grade2.py - RELOC/doc/latex/braille/summary.pdf + RELOC/doc/latex/braille/summary.pdf details="Package documentation (PDF)" RELOC/doc/latex/braille/summary.tex +runfiles size=5 + RELOC/tex/latex/braille/braille.sty catalogue-ctan /macros/latex/contrib/braille -catalogue-date 2012-04-29 15:53:50 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics spec-alphabet name braket category Package revision 17127 -shortdesc Dirac bra-ket and set notations. +shortdesc Dirac bra-ket and set notations relocated 1 longdesc Provides macros to typeset bra-ket notation, as well as set longdesc specifiers, with a single ("|") or a double ("||" or ("\|") @@ -20086,41 +37364,111 @@ longdesc vertical bar specifier in between two bracketed parts. Each longdesc macro comes in a fixed-size version and an expanding version. longdesc If the package finds itself operating under e-tex, it uses the longdesc extended primitive \middle for more reliable results -runfiles size=1 - RELOC/tex/latex/braket/braket.sty +containersize 2028 +containerchecksum dc5f931ce9adbb3e8398cfab83402776d92018945172c7c17f04772f3253942c6ebecd5ca0f3d23f0befa87327dea4a3a9b90528bb7409963f04d9b856186562 +doccontainersize 215656 +doccontainerchecksum 9bdd3cec0da91ffd13d556b9620e9c502a658374657e2821141191000a2321bf030edc9c32641b5ae6c52acfc7266c377a8f4dfe4891cb616f8d4f6a377d9ee0 docfiles size=56 - RELOC/doc/latex/braket/braket.pdf + RELOC/doc/latex/braket/braket.pdf details="Package documentation" RELOC/doc/latex/braket/braket.tex +runfiles size=1 + RELOC/tex/latex/braket/braket.sty catalogue-ctan /macros/latex/contrib/braket -catalogue-date 2012-04-29 15:53:50 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics maths physics name brandeis-dissertation category Package revision 32047 -shortdesc Class for Brandeis University dissertations. +shortdesc Class for Brandeis University dissertations relocated 1 longdesc The class will enable the user to typeset a dissertation which longdesc adheres to the formatting guidelines of Brandeis University longdesc Graduate School of Arts and Sciences (GSAS). -runfiles size=4 - RELOC/tex/latex/brandeis-dissertation/brandeis-dissertation.cls +containersize 4100 +containerchecksum fa3e2f0c3cc3f1fa1607095dfd52e0d518e5710488a0d86bf9c46de444efbb5b1b253284cf8e996869ef4ff2c051ff1a6331296a7b8517ae93ebb91e7dff2826 +doccontainersize 251596 +doccontainerchecksum fb7fee200d7547615f5671743f89d571e9ebb7a0d52f5e8d835568230bdf16c9b4c8279d65dd93fec929e9337af666d2b9dae3dce744e4b71ad98b578a262099 docfiles size=64 RELOC/doc/latex/brandeis-dissertation/README - RELOC/doc/latex/brandeis-dissertation/brandeis-dissertation.pdf + RELOC/doc/latex/brandeis-dissertation/brandeis-dissertation.pdf details="Package documentation" RELOC/doc/latex/brandeis-dissertation/brandeis-dissertation.tex +srccontainersize 12812 +srccontainerchecksum b4aafd8e9afb0d8cfc9e184181e0e911214d1420114cb32ae41a184f4c7b5ce2a262c5bdb1ffd0144d9e566937a8c662d25316ef82c0d74ed5d5142a3b01a7b5 srcfiles size=13 RELOC/source/latex/brandeis-dissertation/brandeis-dissertation.dtx RELOC/source/latex/brandeis-dissertation/brandeis-dissertation.ins +runfiles size=4 + RELOC/tex/latex/brandeis-dissertation/brandeis-dissertation.cls catalogue-ctan /macros/latex/contrib/brandeis-dissertation -catalogue-date 2015-03-11 20:35:39 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics dissertation catalogue-version 2.0 +name brandeis-problemset +category Package +revision 50991 +shortdesc Document class for COSI Problem sets at Brandeis University (Waltham, MA) +relocated 1 +longdesc Brandeis University's computer science ("COSI") courses often +longdesc assign "problem sets" which require fairly rigorous formatting. +longdesc This document class, which extends article, provides a simple +longdesc way to typeset these problem sets in LaTeX. Although the class +longdesc is compatible with all LaTeX flavors, XeLaTeX or LuaLaTeX are +longdesc recommended for fontspec support. +containersize 6860 +containerchecksum fc5026cefa87e1ab248d9d26466a05e11b112c75bc3908c7e6f123a1436d5f813038176e97e1ed290cc99f93dfc8d024c88c1242b9bb41689bfa0a29153db9da +doccontainersize 148788 +doccontainerchecksum 0f6857c1ff226d797d6e0dc96bf040e2393564121b54d5d9b1e9e35acb01b7663441e0460cd117a0b015cb768bfdf3f40df142ae93d5a0d77f9a84f31c3e45b1 +docfiles size=51 + RELOC/doc/latex/brandeis-problemset/LICENSE.txt + RELOC/doc/latex/brandeis-problemset/README.md details="Readme" + RELOC/doc/latex/brandeis-problemset/brandeis-problemset.pdf details="Package documentation" + RELOC/doc/latex/brandeis-problemset/brandeis-problemset.tex + RELOC/doc/latex/brandeis-problemset/example.pdf details="Example of use" + RELOC/doc/latex/brandeis-problemset/example.tex +runfiles size=6 + RELOC/tex/latex/brandeis-problemset/brandeis-problemset.cls + RELOC/tex/latex/brandeis-problemset/brandeis-problemset.sty +catalogue-contact-bugs https://github.com/9999years/brandeis-problemset/issues +catalogue-contact-repository https://github.com/9999years/brandeis-problemset +catalogue-ctan /macros/latex/contrib/brandeis-problemset +catalogue-date 2019-04-15 22:05:06 +0200 +catalogue-license lppl1.3c +catalogue-topics exercise class +catalogue-version 0.5.5 + +name breakcites +category Package +revision 21014 +shortdesc Ensure that multiple citations may break at line end +relocated 1 +longdesc Makes a very minor change to the operation of the \cite +longdesc command. Note that the change is not necessary in unmodified +longdesc LaTeX; however, there remain packages that restore the +longdesc undesirable behaviour of the command as provided in LaTeX 2.09. +longdesc (Note that neither cite nor natbib make this mistake.) +containersize 956 +containerchecksum 13fdad42586a361b4e01999476f4d92ccc0fbcca4ee2663153b9eabbb08ad571dae6631306e9fc590d94f3f02af79519de30a78ed35f737004d86bd62b76786a +doccontainersize 148116 +doccontainerchecksum 2184e40db7f4a01113ba1040a62f8213f43bf34202a57a33abfc6291e84b01cf27298442f0f636289892d02764f1000ff3542f2ca6e490e0eaf6d5bab247b3f4 +docfiles size=39 + RELOC/doc/latex/breakcites/README + RELOC/doc/latex/breakcites/breakcites.pdf details="Package documentation" + RELOC/doc/latex/breakcites/breakcites.tex +runfiles size=1 + RELOC/tex/latex/breakcites/breakcites.sty +catalogue-ctan /macros/latex/contrib/breakcites +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics cite-supp + name breakurl category Package revision 29901 -shortdesc Line-breakable \url-like links in hyperref when compiling via dvips/ps2pdf. +shortdesc Line-breakable \url-like links in hyperref when compiling via dvips/ps2pdf relocated 1 longdesc This package provides a command much like hyperref's \url that longdesc typesets a URL using a typewriter-like font. However, if the @@ -20128,38 +37476,92 @@ longdesc dvips driver is being used, the original \url doesn't allow longdesc line breaks in the middle of the created link: the link comes longdesc in one atomic piece. This package allows such line breaks in longdesc the generated links. -runfiles size=3 - RELOC/tex/latex/breakurl/breakurl.sty +containersize 3100 +containerchecksum fa1fa9e3ac50f305ae5b82eb63997d1674b3f640f36d502a1000b439dd52dcaf6b539d153a2c7022f3a00fc0042bcfe341e850ed6b01f7058b1f8f6fd92b4d9b +doccontainersize 107520 +doccontainerchecksum 38f7847274cbee0a6e7c536a982d0110670cf6af54bfa99718a862e1974fdd839f6ef6871cbe2c40bcd0b2a9036c806eb2b57c8adaee583ef316da367ed854f5 docfiles size=32 - RELOC/doc/latex/breakurl/README - RELOC/doc/latex/breakurl/breakurl.pdf + RELOC/doc/latex/breakurl/README details="Package README" + RELOC/doc/latex/breakurl/breakurl.pdf details="Package documentation" +srccontainersize 10328 +srccontainerchecksum 9ecbae9c483331d636a522f67e5da197e4f647daff0a0fe81f4542c7248934c662046c8e61bd10fadb44144918cd508f09c57880b9c1e0c6515cb2dfd35e52cc srcfiles size=9 RELOC/source/latex/breakurl/breakurl.dtx RELOC/source/latex/breakurl/breakurl.ins +runfiles size=3 + RELOC/tex/latex/breakurl/breakurl.sty +catalogue-also hyperref catalogue-ctan /macros/latex/contrib/breakurl -catalogue-date 2013-04-12 10:31:24 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics hyper catalogue-version 1.40 +name bredzenie +category Package +revision 44371 +shortdesc A Polish version of "lorem ipsum..." in the form of a LaTeX package +relocated 1 +longdesc This is a polish version of the classic pseudo-Latin "lorem +longdesc ipsum dolor sit amet...". It provides access to several +longdesc paragraphs of pseudo-Polish generated with Hidden Markov Models +longdesc and Recurrent Neural Networks trained on a corpus of Polish. +containersize 49840 +containerchecksum 1e5629a2e6e6099a319d8b8a1efec83262780c70a57c482f66a33a48722bcdb18fb891a96b6b6f29c54d71ce581dd1c82decdd22ad74d6ef61765fec3f8c3614 +doccontainersize 169444 +doccontainerchecksum 29fba5bb48aeb2353616cfe9a8dd4fff90c164c10779b8115958733470fd47dc40a567212c62315110a5a7a51363c9f917c4984583d40177037d6b0803ce66fe +docfiles size=44 + RELOC/doc/latex/bredzenie/README details="Readme" + RELOC/doc/latex/bredzenie/bredzenie.pdf details="Package documentation" + RELOC/doc/latex/bredzenie/bredzenie.tex +runfiles size=35 + RELOC/tex/latex/bredzenie/bredzenie.sty +catalogue-alias polishlipsum +catalogue-also lipsum +catalogue-ctan /macros/latex/contrib/bredzenie +catalogue-date 2018-05-01 19:00:24 +0200 +catalogue-license lppl1.3c +catalogue-topics dummy-gen +catalogue-version 1.0 + name breqn category Package -revision 38099 +revision 48679 shortdesc Automatic line breaking of displayed equations relocated 1 longdesc The package provides solutions to a number of common -longdesc difficulties in writing displayed equations and getting high- -longdesc quality output. For example, it is a well-known inconvenience -longdesc that if an equation must be broken into more than one line, -longdesc 'left...right' constructs cannot span lines. The breqn package -longdesc makes them work as one would expect whether or not there is an -longdesc intervening line break. The single most ambitious goal of the -longdesc package, however, is to support automatic linebreaking of -longdesc displayed equations. Such linebreaking cannot be done without -longdesc substantial changes under the hood in the way formulae are -longdesc processed; the code must be watched carefully, keeping an eye -longdesc on possible glitches. The bundle also contains the flexisym and -longdesc mathstyle packages, which are both designated as support for -longdesc breqn. +longdesc difficulties in writing displayed equations and getting +longdesc high-quality output. For example, it is a well-known +longdesc inconvenience that if an equation must be broken into more than +longdesc one line, 'left...right' constructs cannot span lines. The +longdesc breqn package makes them work as one would expect whether or +longdesc not there is an intervening line break. The single most +longdesc ambitious goal of the package, however, is to support automatic +longdesc linebreaking of displayed equations. Such linebreaking cannot +longdesc be done without substantial changes under the hood in the way +longdesc formulae are processed; the code must be watched carefully, +longdesc keeping an eye on possible glitches. The bundle also contains +longdesc the flexisym and mathstyle packages, which are both designated +longdesc as support for breqn. +containersize 24456 +containerchecksum 3994e43a64d859798c386574af1d565b0a96cf345f6ea8de8b55a08a129c10c34940e8de56cb7e2571ea18ebe11c4327da579c266d8df8dc6f56053528f33fa0 +doccontainersize 1077028 +doccontainerchecksum c67520aad0820b13f30686bd1e16bd0950cb1f71829f1a5bcd42abd7c6cbd6a06fdfa9faa871ff5c8f66ea2f714e29ae8f6df0842166a93aba0affe523e44222 +docfiles size=283 + RELOC/doc/latex/breqn/CHANGES.md + RELOC/doc/latex/breqn/README.md details="Readme" + RELOC/doc/latex/breqn/breqn.pdf details="Package documentation" + RELOC/doc/latex/breqn/flexisym.pdf + RELOC/doc/latex/breqn/mathstyle.pdf +srccontainersize 80660 +srccontainerchecksum c8a1a337e20184d2331c1c09ed8c5438a61666ba353df009e3b52c03668ea5fd32ebd35a289477c4621b140cce4850a9e2c462d69dcd302eb25d464b4ffccf7f +srcfiles size=87 + RELOC/source/latex/breqn/breqn.dtx + RELOC/source/latex/breqn/breqn.ins + RELOC/source/latex/breqn/flexisym.dtx + RELOC/source/latex/breqn/flexisym.ins + RELOC/source/latex/breqn/mathstyle.dtx + RELOC/source/latex/breqn/mathstyle.ins runfiles size=42 RELOC/tex/latex/breqn/breqn.sty RELOC/tex/latex/breqn/cmbase.sym @@ -20168,66 +37570,46 @@ runfiles size=42 RELOC/tex/latex/breqn/mathptmx.sym RELOC/tex/latex/breqn/mathstyle.sty RELOC/tex/latex/breqn/msabm.sym -docfiles size=281 - RELOC/doc/latex/breqn/breqn.pdf - RELOC/doc/latex/breqn/flexisym.pdf - RELOC/doc/latex/breqn/mathstyle.pdf -srcfiles size=84 - RELOC/source/latex/breqn/breqn.dtx - RELOC/source/latex/breqn/flexisym.dtx - RELOC/source/latex/breqn/mathstyle.dtx +catalogue-contact-home http://wspr.io/breqn/ +catalogue-contact-repository https://github.com/wspr/breqn catalogue-ctan /macros/latex/contrib/breqn -catalogue-date 2015-08-11 18:03:08 +0200 +catalogue-date 2018-09-16 19:02:30 +0200 catalogue-license lppl1.3 catalogue-topics maths -catalogue-version 0.98d - -name br-lex -category Package -revision 37725 -shortdesc A Class for Typesetting Brazilian legal texts. -relocated 1 -longdesc This class implements rules to typeset Brazilian legal texts. -longdesc Its purpose is to be an easy-to-use implementation for the end- -longdesc user. -runfiles size=2 - RELOC/tex/latex/br-lex/br-lex.cls -docfiles size=32 - RELOC/doc/latex/br-lex/README - RELOC/doc/latex/br-lex/brlex-doc.pdf - RELOC/doc/latex/br-lex/brlex-doc.tex - RELOC/doc/latex/br-lex/leis-exemplo.pdf - RELOC/doc/latex/br-lex/leis-exemplo.tex -catalogue-ctan /macros/latex/contrib/br-lex -catalogue-date 2015-06-28 16:53:39 +0200 -catalogue-license lppl1.3 -catalogue-topics legal class +catalogue-version 0.98f name bropd category Package revision 35383 -shortdesc Simplified brackets and differentials in LaTeX. +shortdesc Simplified brackets and differentials in LaTeX relocated 1 longdesc The package simplifies the process of writing differential longdesc operators and brackets in LaTeX. The commands facilitate the longdesc easy manipulation of equations involving brackets and allow longdesc partial differentials to be expressed in an alternate form. -runfiles size=1 - RELOC/tex/latex/bropd/bropd.sty +containersize 1720 +containerchecksum d6bcf207cddeb6115cab45eab12d48326f067df2fec21386ca29282ccd484e572ee4b5420473079b033bf2b085e134fb42b76b3f18d5b56b47ad765c62b07023 +doccontainersize 61592 +doccontainerchecksum b9ed0de353b0b0e6d7c8e48f3a20c5ee88a0ee9fb1873ced88e89b9c4d73b20701add802442e69aecc419a2c6f433ca12ccea9130abcf895a5568f7b2d66d6a2 docfiles size=17 - RELOC/doc/latex/bropd/README - RELOC/doc/latex/bropd/bropd.pdf + RELOC/doc/latex/bropd/README details="Readme" + RELOC/doc/latex/bropd/bropd.pdf details="Package documentation" +srccontainersize 4136 +srccontainerchecksum b33ad62f68eb425381db0c6724fbcea32b1e37f8dace6737af6e996b7103d19eadabf60873ff367feb9c3a69743d219ce41d5274b8c533d5b5323a971d01a06f srcfiles size=4 RELOC/source/latex/bropd/bropd.dtx +runfiles size=1 + RELOC/tex/latex/bropd/bropd.sty catalogue-ctan /macros/latex/contrib/bropd -catalogue-date 2014-10-14 21:37:00 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics maths catalogue-version 1.2 name brushscr category Package revision 28363 -shortdesc A handwriting script font. +shortdesc A handwriting script font relocated 1 longdesc The BrushScript font simulates hand-written characters; it is longdesc distributed in Adobe Type 1 format (but is available in italic @@ -20235,6 +37617,18 @@ longdesc shape only). The package includes the files needed by LaTeX in longdesc order to use that font. The file AAA_readme.tex fully describes longdesc the package and sample.tex illustrates its use. execute addMap pbsi.map +containersize 48600 +containerchecksum f8c7107b0e98cc6e402ec8ee6f5e6f9a1b8e0d046dddae9486e4ca68327f370a75a0f90000939828605334b3ad3c5caaf5e541c7933c5545fe3e531066fa650f +doccontainersize 5120 +doccontainerchecksum 41ad7b1afc7cb0f4bfdf0bcff4c1d85f3d9603c3d48ccb62f94a6fa2258cf3f60f03ee1b4b5756d85a77ba4ff9afddbccaba1c4bd5b69d85ce4fed206aa16b1c +docfiles size=8 + RELOC/doc/fonts/brushscr/AAA_readme.tex + RELOC/doc/fonts/brushscr/Makefile + RELOC/doc/fonts/brushscr/README details="Readme" + RELOC/doc/fonts/brushscr/example.tex + RELOC/doc/fonts/brushscr/generate.tex + RELOC/doc/fonts/brushscr/kern.txt + RELOC/doc/fonts/brushscr/sample.tex runfiles size=31 RELOC/dvips/brushscr/config.pbsi RELOC/fonts/afm/public/brushscr/BrushScriptX-Italic.afm @@ -20246,50 +37640,50 @@ runfiles size=31 RELOC/fonts/vf/public/brushscr/pbsi8t.vf RELOC/tex/latex/brushscr/pbsi.sty RELOC/tex/latex/brushscr/t1pbsi.fd -docfiles size=8 - RELOC/doc/fonts/brushscr/AAA_readme.tex - RELOC/doc/fonts/brushscr/Makefile - RELOC/doc/fonts/brushscr/README - RELOC/doc/fonts/brushscr/example.tex - RELOC/doc/fonts/brushscr/generate.tex - RELOC/doc/fonts/brushscr/kern.txt - RELOC/doc/fonts/brushscr/sample.tex catalogue-ctan /fonts/brushscr -catalogue-date 2014-04-07 13:51:00 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics font font-calligraphic font-type1 name bullcntr category Package revision 15878 -shortdesc Display list item counter as regular pattern of bullets. +shortdesc Display list item counter as regular pattern of bullets relocated 1 longdesc The bullcntr package defines the command bullcntr, which may be longdesc thought of as an analogue of the \fnsymbol command: like the longdesc latter, it displays the value of a counter lying between 1 and longdesc 9, but uses, for the purpose, a regular pattern of bullets. -runfiles size=3 - RELOC/tex/latex/bullcntr/bullcntr.sty - RELOC/tex/latex/bullcntr/bullenum.sty +containersize 2536 +containerchecksum 886109fdce6a936d22b829ff769b130a445876073c73b2bc1767610302ba8a40112938311a138e1c93a0495a6e7d5cafa8d3606ca3b2fe48af442e023195ab93 +doccontainersize 726416 +doccontainerchecksum ab01cfba0570bc565d8b40945aec5d87739a0826d5c323c5ee960c0d3c7c3135ef2c8b7878268b415ffae3beb06fbc6af48656e7c4a6a45ee423254ce23cad1e docfiles size=217 RELOC/doc/latex/bullcntr/00readme.txt - RELOC/doc/latex/bullcntr/README - RELOC/doc/latex/bullcntr/bullcntr-man.pdf + RELOC/doc/latex/bullcntr/README details="Readme" + RELOC/doc/latex/bullcntr/bullcntr-man.pdf details="Package documentation" RELOC/doc/latex/bullcntr/bullcntr-man.tex RELOC/doc/latex/bullcntr/bullcntr-sam.tex RELOC/doc/latex/bullcntr/bullenum-sam.tex RELOC/doc/latex/bullcntr/manifest.txt +srccontainersize 17072 +srccontainerchecksum cd05d28c2e5c759863403e3ea9e8700002a4ef4f9021decec9a681b92d944ecc4c6765bae332f8645d06d12ab6adc096f4a560a195c981d5e6cbc72acb56e812 srcfiles size=17 RELOC/source/latex/bullcntr/bullcntr.dtx RELOC/source/latex/bullcntr/bullcntr.ins +runfiles size=3 + RELOC/tex/latex/bullcntr/bullcntr.sty + RELOC/tex/latex/bullcntr/bullenum.sty catalogue-ctan /macros/latex/contrib/bullcntr -catalogue-date 2012-04-29 18:30:38 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics numbers catalogue-version 0.04 name bundledoc category Package -revision 35041 -shortdesc Bundle together all the files needed to build a LaTeX document. +revision 47819 +shortdesc Bundle together all the files needed to build a LaTeX document longdesc The bundledoc package is a post-processor for the snapshot longdesc package that bundles together all the classes, packages and longdesc files needed to build a given LaTeX document. It reads the .dep @@ -20302,58 +37696,275 @@ longdesc file that contains all of the ancillary files of a LaTeX longdesc document, together with the document itself, using the longdesc filecontents* environment. depend bundledoc.ARCH +containersize 12276 +containerchecksum fd342f56a110ed29a4562057910c9bde89a3a70dc619381005dd38610736f9dd43a3c2c25dbdaf557b648e3d126d943418969dacfa26e6627fe8f9f767a9004d +doccontainersize 80972 +doccontainerchecksum 384a9519a3aaa328444dfb569e86d037ca283d2d24529057bcbd1dccb41a3ba7bda027c01bc986b0932da77198ca13e9d7c4f4859d898a284577796255baa9c9 +docfiles size=33 + texmf-dist/doc/man/man1/arlatex.1 + texmf-dist/doc/man/man1/arlatex.man1.pdf + texmf-dist/doc/man/man1/bundledoc.1 + texmf-dist/doc/man/man1/bundledoc.man1.pdf + texmf-dist/doc/support/bundledoc/README details="Readme" runfiles size=14 texmf-dist/scripts/bundledoc/arlatex texmf-dist/scripts/bundledoc/bundledoc texmf-dist/tex/latex/bundledoc/miktex.cfg texmf-dist/tex/latex/bundledoc/texlive-unix-arlatex.cfg texmf-dist/tex/latex/bundledoc/texlive-unix.cfg -docfiles size=20 - texmf-dist/doc/man/man1/arlatex.1 - texmf-dist/doc/man/man1/arlatex.man1.pdf - texmf-dist/doc/man/man1/bundledoc.1 - texmf-dist/doc/man/man1/bundledoc.man1.pdf - texmf-dist/doc/support/bundledoc/README catalogue-ctan /support/bundledoc -catalogue-date 2014-08-25 10:14:22 +0200 -catalogue-license lppl -catalogue-version 3.2 +catalogue-date 2018-05-23 08:34:52 +0200 +catalogue-license lppl1.3c +catalogue-topics bundle +catalogue-version 3.3 + +name bundledoc.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of bundledoc +containersize 364 +containerchecksum 684b033a23d82b3338ef60ab697ebb83328f420981521942eeed10fe323eaea88f606dd607856bd5a6852ff558ef5cffa878169353cd391196c7b772a205e6ac +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/arlatex + bin/aarch64-linux/bundledoc + +name bundledoc.amd64-freebsd +category Package +revision 17794 +shortdesc amd64-freebsd files of bundledoc +containersize 364 +containerchecksum e6b6bd0ed03790b8fd4a450a15a05891900dc46c1617a0b537b1167e1deb469cfec876c51f302d769c97a72c1c746e704361e8b8d9ae7e09d5a18d8a5d1d471e +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/arlatex + bin/amd64-freebsd/bundledoc + +name bundledoc.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of bundledoc +containersize 360 +containerchecksum ce0034aa645003fb54531ff7f54f3678248d7f968bdb93e4b6a059f8f43f9b7d635101420640cebc87a1a291a38654fd3248b4e08ea01ff9db359d6952852515 +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/arlatex + bin/amd64-netbsd/bundledoc + +name bundledoc.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of bundledoc +containersize 360 +containerchecksum 4426f2ead711423324f07bb7a708962573b6ef0b6e5f29051dcb91d4c3aa503299e0656b4f575d00c2e530323b79cf6c53a2c3cd02cc9ab28e56d407f28fddce +binfiles arch=armhf-linux size=2 + bin/armhf-linux/arlatex + bin/armhf-linux/bundledoc + +name bundledoc.i386-cygwin +category Package +revision 17794 +shortdesc i386-cygwin files of bundledoc +containersize 360 +containerchecksum 9226a3842a0012f54fa26f10800a6fcba35bb2c852278ac64700e649834ccc45c4d502b31df42bf3e3056e6165ae9f884dbd3b9cb929440964f6896dccc3bc02 +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/arlatex + bin/i386-cygwin/bundledoc + +name bundledoc.i386-freebsd +category Package +revision 17794 +shortdesc i386-freebsd files of bundledoc +containersize 364 +containerchecksum d52b1497d4211d3fe1c2ea384d8e733a9483e3d56b1babbfe52a74c7762068605a29708c8e48fe0b00262d0ea49ca069d6c46ebfeec5fb32dedab6491707478e +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/arlatex + bin/i386-freebsd/bundledoc name bundledoc.i386-linux category Package revision 17794 shortdesc i386-linux files of bundledoc +containersize 360 +containerchecksum 5b974cb80ebdb07b3677a8650de92fd38d36da4e4fa52ba5c5f7a757a8725d2b2267c64adeb0b1ec65dc4ca93b55f414af4b3a75f7f17166e23438c1f2adaa77 binfiles arch=i386-linux size=2 bin/i386-linux/arlatex bin/i386-linux/bundledoc +name bundledoc.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of bundledoc +containersize 364 +containerchecksum fcd707981f6ac3a2a8682febcefa874593ea10ee465d5b69da6bc9ef0701d7308f3b5bed1187bcde33733b44065bc2814e1716dff1ee458196a61297ee15d12d +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/arlatex + bin/i386-netbsd/bundledoc + +name bundledoc.i386-solaris +category Package +revision 17794 +shortdesc i386-solaris files of bundledoc +containersize 364 +containerchecksum 8d5a575b5ce7bac91ae052012e7cd09e09ea5edd67972213fe05a9a2d488c4fe706e3e5ec24169871b66e830387d93fdf17835713b0a0263a89fe43f132993dd +binfiles arch=i386-solaris size=2 + bin/i386-solaris/arlatex + bin/i386-solaris/bundledoc + +name bundledoc.win32 +category Package +revision 17813 +shortdesc win32 files of bundledoc +containersize 704 +containerchecksum 40148d3496893a170cd20418c006449629641e0143046fb7c659f11ed3b126312f030d04d2c190b0fcf632c9cbb8901ee4faecfd3d7b091aad7e9abfec6f2142 +binfiles arch=win32 size=2 + bin/win32/arlatex.exe + bin/win32/bundledoc.exe + +name bundledoc.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of bundledoc +containersize 364 +containerchecksum 89358399df190acfc1ee2d33b5357929317ea104f46d5eee6978989bf4db1c54663b9adbb021a43eb88eaf05603788b9c74103eb4855384c7c625fed1e88af37 +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/arlatex + bin/x86_64-cygwin/bundledoc + +name bundledoc.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of bundledoc +containersize 364 +containerchecksum 871f586c1a49936ceba64c727d412d0837bbfd17db09c7fa87990454047b121dbd6e704edba985b8b38c425c866da4c5fce906dafbc854c553b3a5ef506e703c +binfiles arch=x86_64-darwin size=2 + bin/x86_64-darwin/arlatex + bin/x86_64-darwin/bundledoc + +name bundledoc.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of bundledoc +containersize 368 +containerchecksum b3ae37bd7fcedd23e436fa91ff941fa0cc79619fc5985cebf4773e71fa3a00e611e5f47c0ad9d05e4c28674226796b329a6910975c374e45dd810ba98e9acd3d +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/arlatex + bin/x86_64-darwinlegacy/bundledoc + +name bundledoc.x86_64-linux +category Package +revision 17794 +shortdesc x86_64-linux files of bundledoc +containersize 360 +containerchecksum cb28604e5129bc9a49f9903d42df2ad44142408889e37a019f5e4174cb5160390fe1c2e3a025c4b4a8b0278f23e78ec0649509b564f641581d8362d79ec39220 +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/arlatex + bin/x86_64-linux/bundledoc + +name bundledoc.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of bundledoc +containersize 368 +containerchecksum c72abdba188682433f7baeee1cde13084e4d85d5dde108ad566fc17a759c897a6ee75f68c8969cfbaaf52518b324e5147d84554d4bbf9e70599f5d404c9ca578 +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/arlatex + bin/x86_64-linuxmusl/bundledoc + +name bundledoc.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of bundledoc +containersize 364 +containerchecksum 9dfa3e0eee7e2b660b6a14aa3a962840e1a5ca211396094fc9d49589abf922c9d53e2047be211831e06af4190ea57888344deb8e269540c92e6ca85557e80ff5 +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/arlatex + bin/x86_64-solaris/bundledoc + name burmese category Package revision 25185 -shortdesc Basic Support for Writing Burmese. +shortdesc Basic Support for Writing Burmese relocated 1 longdesc This package provides basic support for writing Burmese. The longdesc package provides a preprocessor (written in Perl), an Adobe longdesc Type 1 font, and LaTeX macros. execute addMap burmese.map +containersize 54644 +containerchecksum 7bce3a31febfc6a959ba4779d975cf93276a0bd1115e06a50a3c8d705e49e8d6747ecebc7eac2147f021a538dda1bb241d8f320ef1486229c930141e06d6ae26 +doccontainersize 133020 +doccontainerchecksum 4a7f3628efd913a362786564dd260dc1a63e51a397af3d92222db6f758b7a7792b13e58422d2604ae98f615fb5fc42e77f265e505236db9bc981d7951e0ee1ed +docfiles size=37 + RELOC/doc/fonts/burmese/burmguide.pdf details="Package documentation" +srccontainersize 3436 +srccontainerchecksum 066d164d97f4fa9e1050d75c3c20997be859718a2be37c465010040f969b2d3aa17edc3c241f5aca45d91dd12517d72a731d02954088ee83ff5aeec3be0b0fcd +srcfiles size=4 + RELOC/source/fonts/burmese/birm.pl runfiles size=18 RELOC/fonts/map/dvips/burmese/burmese.map RELOC/fonts/tfm/public/burmese/burm.tfm RELOC/fonts/type1/public/burmese/burm.pfb RELOC/tex/latex/burmese/birm.sty RELOC/tex/latex/burmese/ubirm.fd -docfiles size=37 - RELOC/doc/fonts/burmese/burmguide.pdf -srcfiles size=4 - RELOC/source/fonts/burmese/birm.pl catalogue-ctan /language/burmese -catalogue-date 2012-04-30 16:45:41 +0200 -catalogue-license lppl +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics burmese + +name businesscard-qrcode +category Package +revision 48417 +shortdesc Business cards with QR-Code +relocated 1 +longdesc What happens when you give your visiting card to someone? +longdesc Either they manually type the text into their computer or +longdesc mobile phone, or it will end up in a box and be forgotten. +longdesc Nowadays data is required electronically, not on paper. Here is +longdesc the solution: A visiting card with QR-Code that contains a full +longdesc vcard so that it can be scanned with an app on the mobile phone +longdesc and thereby automatically imported into the electronic +longdesc contacts. This also works well when you are offline and +longdesc bluetooth transfer fails. So here is the highly configurable +longdesc business card or visiting card with full vcard as QR-Code, +longdesc ready to send to online printers. You can specify the exact +longdesc size of the paper and the content within the paper, inluding +longdesc generation of crop marks. The package depends on the following +longdesc other LaTeX packages: calc, crop, DejaVuSans, etoolbox, +longdesc fontawesome, fontenc, geometry, kvoptions, marvosym, qrcode, +longdesc varwidth, and wrapfig. The package needs XeLaTeX for working +longdesc properly. +containersize 3784 +containerchecksum c0cccd1959a358d06db838ab035dfe2c4c2b960ffbea5241057871e4131ab06bdefd369fbc0179e74777fd83720692eb190322c797bc8da2ea84f1943684faf7 +doccontainersize 540992 +doccontainerchecksum bc2db833044104ec82b3c8913067e7687ab18944e7b12ac003391a207fe287b92426de1fce32088eb4293eb2a1bf955a21a82a42ed673938113d9d8a01ec9d10 +docfiles size=158 + RELOC/doc/xelatex/businesscard-qrcode/README.md details="Readme" + RELOC/doc/xelatex/businesscard-qrcode/examples/example.pdf details="Example of use (3)" + RELOC/doc/xelatex/businesscard-qrcode/examples/example.tex + RELOC/doc/xelatex/businesscard-qrcode/examples/john-doe-hongkong.pdf details="Example of use (1)" + RELOC/doc/xelatex/businesscard-qrcode/examples/john-doe-hongkong.tex + RELOC/doc/xelatex/businesscard-qrcode/examples/peter-muster-example-company-zuerich.pdf details="Example of use (2)" + RELOC/doc/xelatex/businesscard-qrcode/examples/peter-muster-example-company-zuerich.tex + RELOC/doc/xelatex/businesscard-qrcode/examples/special-papersize.pdf details="Example of use (4): Special papersize" + RELOC/doc/xelatex/businesscard-qrcode/examples/special-papersize.tex + RELOC/doc/xelatex/businesscard-qrcode/examples/texstudio_d30266.pdf + RELOC/doc/xelatex/businesscard-qrcode/examples/texstudio_d30266.tex + RELOC/doc/xelatex/businesscard-qrcode/screenshots/example.jpg + RELOC/doc/xelatex/businesscard-qrcode/screenshots/john-doe-hongkong.jpg + RELOC/doc/xelatex/businesscard-qrcode/screenshots/peter-muster-example-company-zuerich.jpg + RELOC/doc/xelatex/businesscard-qrcode/screenshots/special-papersize.jpg + RELOC/doc/xelatex/businesscard-qrcode/screenshots/texstudio_d30266.jpg +runfiles size=3 + RELOC/tex/xelatex/businesscard-qrcode/businesscard-qrcode.cls +catalogue-contact-bugs https://mrw.sh/templates/businesscard-qrcode/issues +catalogue-contact-repository https://mrw.sh/templates/businesscard-qrcode +catalogue-ctan /macros/xetex/latex/businesscard-qrcode +catalogue-date 2018-08-18 05:31:14 +0200 +catalogue-license lgpl +catalogue-topics class file-card qrcode xetex +catalogue-version 1.2 name bussproofs category Package revision 27488 -shortdesc Proof trees in the style of the sequent calculus. +shortdesc Proof trees in the style of the sequent calculus relocated 1 longdesc The package allows the construction of proof trees in the style longdesc of the sequent calculus and many other proof systems. One novel @@ -20363,108 +37974,350 @@ longdesc \fCenter. This is the style often used in sequent calculus longdesc proofs. The package works in a Plain TeX document, as well as longdesc in LaTeX; an exposition of the commands available is given in longdesc the package file itself. -runfiles size=10 - RELOC/tex/latex/bussproofs/bussproofs.sty +containersize 8820 +containerchecksum a23aa5580e6c3d691c7b14a58b20af1e135681000c50a84be01040df7e1a844b8abeebe11a9dc456cee37e9e34ec020139c9f8de4de51833a88f90e495a65fcc +doccontainersize 104936 +doccontainerchecksum b9af525a6a6204c07095864d257c65feda61214c557b0801c9a0c4357578755e1d01e278fe875c0b290f250e3adb03d260a5816a4ccd9f6f51ba67cd8af8269e docfiles size=42 - RELOC/doc/latex/bussproofs/BussGuide2.pdf + RELOC/doc/latex/bussproofs/BussGuide2.pdf details="User Guide" RELOC/doc/latex/bussproofs/BussGuide2.tex RELOC/doc/latex/bussproofs/README.txt - RELOC/doc/latex/bussproofs/testbp2.pdf + RELOC/doc/latex/bussproofs/testbp2.pdf details="Test/example of use" RELOC/doc/latex/bussproofs/testbp2.tex +runfiles size=10 + RELOC/tex/latex/bussproofs/bussproofs.sty +catalogue-also ebproof +catalogue-contact-home http://math.ucsd.edu/~sbuss/ResearchWeb/bussproofs/ catalogue-ctan /macros/latex/contrib/bussproofs -catalogue-date 2015-02-03 17:14:53 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl1.3 +catalogue-topics maths proof catalogue-version 1.1 -name bxbase +name bussproofs-extra category Package -revision 28825 -shortdesc BX bundle base components. +revision 50760 +shortdesc Extra commands for bussproofs.sty relocated 1 -runfiles size=14 +longdesc This package provides additional functionality for +longdesc bussproofs.sty; specifically, it allows for typesetting of +longdesc entire (sub)deductions. +containersize 2668 +containerchecksum 137ebf7cd5adb3c53c4500d3bec8807f9ffc79ad8a718d106857e3b6bc003a3612184319a3138a937cab1ef76608f05a8667a270fea9672d472b0d608fc586f7 +doccontainersize 233404 +doccontainerchecksum 7d34d0360d849a7da0e1a43c509149e3c34fe52f903092d1d75d7b5fedfd50c3f710f3667daf9bbafd9bd35ac2c18e388aa036b02ca47a6d635dbc253a98f7fa +docfiles size=59 + RELOC/doc/latex/bussproofs-extra/README.md details="Readme" + RELOC/doc/latex/bussproofs-extra/bpextra.sty + RELOC/doc/latex/bussproofs-extra/bussproofs-extra.pdf details="Package documentation" +srccontainersize 5904 +srccontainerchecksum c6a5fe3fef94d3271d992eee288505a3ac2741c50ec50bfad69da315732a1f907d3acd903b2ff7e03fa08ffb061a9f3f4b673efc60c601736c27cb8c15dfe036 +srcfiles size=7 + RELOC/source/latex/bussproofs-extra/Makefile + RELOC/source/latex/bussproofs-extra/bussproofs-extra.dtx + RELOC/source/latex/bussproofs-extra/bussproofs-extra.ins +runfiles size=3 + RELOC/tex/latex/bussproofs-extra/bussproofs-extra.sty +catalogue-also bussproofs +catalogue-contact-bugs https://github.com/OpenLogicProject/bussproofs-extra/issues +catalogue-contact-repository https://github.com/OpenLogicProject/bussproofs-extra +catalogue-ctan /macros/latex/contrib/bussproofs-extra +catalogue-date 2019-04-06 05:16:17 +0200 +catalogue-license lppl1.3c +catalogue-topics maths proof +catalogue-version 0.3 + +name bxbase +category Package +revision 44481 +shortdesc BX bundle base components +relocated 1 +longdesc The main purpose of this bundle is to serve as an underlying +longdesc library for other packages created by the same author (their +longdesc names start with "BX" or "PX"). However bxbase package contains +longdesc a few user-level commands and is of some use by itself. +containersize 22632 +containerchecksum 18b281f5147a179d2908944dc35e5b9547bb094b15adb559f8154c432710e531ada4c7ab6f755cb631ab882d005e55dd5aecf8602b61fa07bc54fa91506aac89 +doccontainersize 87112 +doccontainerchecksum da2a4dbce775b37d143b112159e132568b3c48bfa56599ab5f04db0b0b51d1b901775036b76cb4bc049f8193117a01a4d2b6054744a49a8d57f986a2193fc6d8 +docfiles size=30 + RELOC/doc/latex/bxbase/LICENSE + RELOC/doc/latex/bxbase/README-ja.md details="Readme" language="ja" + RELOC/doc/latex/bxbase/README.md details="Readme" + RELOC/doc/latex/bxbase/bxbase-ja.pdf details="Package documentation" language="ja" + RELOC/doc/latex/bxbase/bxbase-ja.tex +runfiles size=29 RELOC/tex/latex/bxbase/bxbase.def RELOC/tex/latex/bxbase/bxbase.sty - RELOC/tex/latex/bxbase/bxucs.sty + RELOC/tex/latex/bxbase/bxtoolbox-ext.def + RELOC/tex/latex/bxbase/bxtoolbox-ja.def + RELOC/tex/latex/bxbase/bxtoolbox.def + RELOC/tex/latex/bxbase/bxtoolbox.sty RELOC/tex/latex/bxbase/bxutf8.def RELOC/tex/latex/bxbase/bxutf8x.def RELOC/tex/latex/bxbase/zxbase.sty -docfiles size=8 - RELOC/doc/latex/bxbase/00README - RELOC/doc/latex/bxbase/LICENSE - RELOC/doc/latex/bxbase/README +catalogue-contact-home https://github.com/zr-tex8r/BXbase catalogue-ctan /language/japanese/BX/bxbase -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license other-free -catalogue-version 0.5 +catalogue-date 2017-05-30 16:37:29 +0200 +catalogue-license mit +catalogue-topics japanese macro-supp +catalogue-version 1.1 + +name bxcalc +category Package +revision 46482 +shortdesc Extend the functionality of the calc package +relocated 1 +longdesc This package bundle consists of the following packages: +longdesc bxcalcize: To make calc expressions available in more places. +longdesc bxcalcux: To add user-defined units to the calc syntax. In +longdesc addition, this bundle provides the bxcalc package, which simply +longdesc loads the above-mentioned packages internally. +containersize 3308 +containerchecksum 6669cb896306c352a7320eb957fe5751e7d0c4916fe7504cf9b385a16e9b1280267f2e7a2a5430d052369841f713e86e58e5c03fb995b0d7dd16123dd316c368 +doccontainersize 303896 +doccontainerchecksum d7606ce81855c390bef558df8af083cd2576700d2d26c5d892a938ca6f9720d685d2e78e6fb6a3b15d9c672db9b795ce169a617a93f2baf5240ffe3b73ab7df4 +docfiles size=91 + RELOC/doc/latex/bxcalc/LICENSE + RELOC/doc/latex/bxcalc/README-ja.md + RELOC/doc/latex/bxcalc/README.md details="Readme" + RELOC/doc/latex/bxcalc/bxcalcize.pdf details="Package documentation" + RELOC/doc/latex/bxcalc/bxcalcize.tex + RELOC/doc/latex/bxcalc/bxcalcux.pdf details="Further Package Documentation" + RELOC/doc/latex/bxcalc/bxcalcux.tex + RELOC/doc/latex/bxcalc/sample-bxcalc.pdf details="Examples" + RELOC/doc/latex/bxcalc/sample-bxcalc.tex +runfiles size=4 + RELOC/tex/latex/bxcalc/bxcalc.sty + RELOC/tex/latex/bxcalc/bxcalcize.sty + RELOC/tex/latex/bxcalc/bxcalcux.sty +catalogue-contact-home https://github.com/zr-tex8r/BXcalc +catalogue-ctan /macros/latex/contrib/bxcalc +catalogue-date 2018-01-28 18:33:51 +0100 +catalogue-license mit +catalogue-topics calculation arithmetic etex +catalogue-version 1.0a name bxcjkjatype category Package -revision 32048 -shortdesc Typeset Japanese with pdfLaTeX and CJK. +revision 42292 +shortdesc Typeset Japanese with pdfLaTeX and CJK relocated 1 longdesc The package provides a working configuration of the CJK longdesc package, suitable for Japanese typesetting of moderate quality. longdesc Moreover, it facilitates use of the CJK package for pLaTeX longdesc users, by providing commands that are similar to those used by longdesc the pLaTeX kernel and some other packages used with it. -runfiles size=6 - RELOC/tex/latex/bxcjkjatype/bxcjkjatype.sty -docfiles size=73 +containersize 8228 +containerchecksum ea75072ca87925cbac9c69335fd77b509396516b11cd74b4f29976566613a3f0fe091b8d77f00803932c55f87fd1af964243a02271ef3ba64f08da5a065fb7f3 +doccontainersize 261872 +doccontainerchecksum 4cf0962455982064956fed4080ccb8a4e4e386bdde5952880e05246bb655f064c22b4c1e2af32d3a8850304c1dd46c817ef16f0cb8a0e8cb764fcf788bb4ce6a +docfiles size=74 RELOC/doc/latex/bxcjkjatype/LICENSE - RELOC/doc/latex/bxcjkjatype/README - RELOC/doc/latex/bxcjkjatype/README-ja.md - RELOC/doc/latex/bxcjkjatype/sample-bxcjkjatype-beamer.pdf + RELOC/doc/latex/bxcjkjatype/README-ja.md details="Readme (Japanese)" language="ja" + RELOC/doc/latex/bxcjkjatype/README.md details="Readme (English)" language="en" + RELOC/doc/latex/bxcjkjatype/sample-bxcjkjatype-beamer.pdf details="Sample: Introductory beamer slides (English and Japanese)" RELOC/doc/latex/bxcjkjatype/sample-bxcjkjatype-beamer.tex - RELOC/doc/latex/bxcjkjatype/sample-bxcjkjatype.pdf + RELOC/doc/latex/bxcjkjatype/sample-bxcjkjatype.pdf details="Small example of use (Japanese and English)" language="ja" RELOC/doc/latex/bxcjkjatype/sample-bxcjkjatype.tex +runfiles size=8 + RELOC/tex/latex/bxcjkjatype/bxcjkjatype.sty catalogue-ctan /language/japanese/bxcjkjatype -catalogue-date 2014-11-17 07:39:31 +0100 -catalogue-license other-free -catalogue-version 0.2c +catalogue-date 2018-02-25 10:09:04 +0100 +catalogue-license mit +catalogue-topics japanese +catalogue-version 0.3 name bxdpx-beamer category Package -revision 30220 -shortdesc Dvipdfmx extras for use with beamer. +revision 41813 +shortdesc Dvipdfmx extras for use with beamer relocated 1 longdesc The package is a driver to support beamer Navigation symbols longdesc and \framezoomed regions when using dvipdfmx as PDF generator longdesc (e.g., as part of e-pTeX). The package does not define any longdesc 'user' commands. -runfiles size=1 - RELOC/tex/latex/bxdpx-beamer/bxdpx-beamer.sty +containersize 1380 +containerchecksum 48009e69d2bb6c316c5d33dcc9d17fcf9f762b68688130ee8407648039b7c3effbbdeaf991bda7842738da59213cc855b50f48cf179ec77e0682729d6e5d3709 +doccontainersize 1960 +doccontainerchecksum 2692918a0fb1ac7bccc6e905350c6cd716b72b33d8f00bad73ed0146238965d0c1a1d9de07c22fbef1ba7211a919c1152342a9f4bb48185099aa470f76374bc8 docfiles size=4 RELOC/doc/latex/bxdpx-beamer/LICENSE - RELOC/doc/latex/bxdpx-beamer/README + RELOC/doc/latex/bxdpx-beamer/README.md details="Readme" RELOC/doc/latex/bxdpx-beamer/sample/test-framezoom.tex RELOC/doc/latex/bxdpx-beamer/sample/test-navisymbol.tex +runfiles size=1 + RELOC/tex/latex/bxdpx-beamer/bxdpx-beamer.sty catalogue-ctan /macros/latex/contrib/beamer-contrib/bxdpx-beamer -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license other-free -catalogue-version 0.2 +catalogue-date 2016-12-18 08:45:22 +0100 +catalogue-license mit +catalogue-topics graphics-drv +catalogue-version 0.3 + +name bxdvidriver +category Package +revision 43219 +shortdesc Enables specifying a driver option effective only in DVI output +relocated 1 +longdesc This single-function package enables authors to specify a +longdesc global driver option (dvips, dvipdfmx, etc) which is applied +longdesc only when the engine outputs a DVI file. It is useful to create +longdesc special document- templates that can be compiled in both +longdesc PDF-mode and DVI-mode. +containersize 2660 +containerchecksum dc37ee5237e6eb02fca173b8b0501795604930b56c3e9101c6b653ad6df12cb5ae82ad81e66aac5c1ce4ff0aa8d7f05658f4b41057ede286715c25d290682182 +doccontainersize 2232 +doccontainerchecksum 83e18920fb6f2f54f54c401fe83ff131dcbe64ca712ded59f0690d90f1d8b2623ec135692a3fa437b77fe82336553a529d36b5bdcec96a96cd57523f11cc0e0b +docfiles size=2 + RELOC/doc/latex/bxdvidriver/LICENSE + RELOC/doc/latex/bxdvidriver/README.md details="Readme" +runfiles size=3 + RELOC/tex/latex/bxdvidriver/bxdvidriver.sty +catalogue-ctan /macros/latex/contrib/bxdvidriver +catalogue-date 2017-02-13 17:55:09 +0100 +catalogue-license mit +catalogue-topics dvi-proc +catalogue-version 0.2a name bxeepic category Package revision 30559 -shortdesc Eepic facilities using pict2e. +shortdesc Eepic facilities using pict2e relocated 1 longdesc The package provides an eepic driver to use pict2e facilities. -runfiles size=7 - RELOC/tex/latex/bxeepic/bxdpxp2e.def - RELOC/tex/latex/bxeepic/bxeepic.sty +containersize 7136 +containerchecksum a0436e9dc7dffa9c7a7b2a41662a41db934aa4242c953f480400b7a2c8a71bb526ebe8eefa46b02db03364efdf14fd88c1dcd267ebd59f594d72540ddd3048c2 +doccontainersize 10552 +doccontainerchecksum 25789b297ba2fcfb81e74637cb2270d41eff858e747b841cfbf5d29791fe6697d3a9cfd4abbbbc4ed0a5c5b274f8b5a7cdeaccc995f6ae623d2a6e2d831b7e55 docfiles size=6 RELOC/doc/latex/bxeepic/LICENSE - RELOC/doc/latex/bxeepic/README + RELOC/doc/latex/bxeepic/README details="Readme" RELOC/doc/latex/bxeepic/sample-bxeepic.pdf RELOC/doc/latex/bxeepic/sample-bxeepic.tex +runfiles size=7 + RELOC/tex/latex/bxeepic/bxdpxp2e.def + RELOC/tex/latex/bxeepic/bxeepic.sty catalogue-ctan /macros/latex/contrib/bxeepic -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics graphics-in-tex catalogue-version 0.2 +name bxenclose +category Package +revision 40213 +shortdesc Enclose the document body with some pieces of code +relocated 1 +longdesc The package enables authors to designate in the preamble to +longdesc make the document body enclosed with the given pieces of code. +longdesc As is known, there are already various mechanisms provided by +longdesc LaTeX kernel or packages that attach hooks at the beginning and +longdesc end of documents. +containersize 1764 +containerchecksum f3d0f39e9c21f3bff75d118bb1a9408e7fb2c84beb9301873cd37a678de4b7680d1e8f13693839ce32e1e816e756d8f0af14cc620952afc8fb02885debf478a8 +doccontainersize 1856 +doccontainerchecksum ea7e0f17ee70d3d4798e85e3788af1110fb2adb436106ad08f601655453af2c5d192d5e3854fee1b29f6ac21f2f6b02e239ff4ec6ae9181818b23bdbac45583e +docfiles size=2 + RELOC/doc/latex/bxenclose/LICENSE + RELOC/doc/latex/bxenclose/README.md details="Readme" +runfiles size=1 + RELOC/tex/latex/bxenclose/bxenclose.sty +catalogue-ctan /macros/latex/contrib/bxenclose +catalogue-date 2016-12-18 08:45:22 +0100 +catalogue-license mit +catalogue-topics macro-supp +catalogue-version 0.2 + +name bxjaholiday +category Package +revision 49924 +shortdesc Support for Japanese holidays +relocated 1 +longdesc This LaTeX package provides a command to convert dates to names +longdesc of Japanese holidays. Another command, converting dates to the +longdesc day of the week in Japanese, is available as a free gift. +longdesc Further (lower-level) APIs are provided for expl3. The package +longdesc supports pdfTeX, XeTeX, LuaTeX, pTeX, and upTeX. +containersize 5532 +containerchecksum d028523087abe4587c8eaf877eb2dd0f4c12fc12055c29bc1bbf615e855155a77266df8cdf50bb458600bab0264836346a6d98fc183aafc92b546cfc7bcc1bdf +doccontainersize 90320 +doccontainerchecksum 398bc4686c7c3b121260cbaf379ca66f7f64911b18d771c04507287d3cce834256662dd8f72f1f55601648cc364703f88a0713d9dab19c53cf19c252e2919fd1 +docfiles size=27 + RELOC/doc/latex/bxjaholiday/LICENSE + RELOC/doc/latex/bxjaholiday/README.md details="Readme" + RELOC/doc/latex/bxjaholiday/bxjaholiday.pdf details="Package documentation" + RELOC/doc/latex/bxjaholiday/bxjaholiday.tex +runfiles size=9 + RELOC/tex/latex/bxjaholiday/bxjaholiday.sty +catalogue-contact-bugs https://github.com/wtsnjp/BXjaholiday/issues +catalogue-contact-repository https://github.com/wtsnjp/BXjaholiday +catalogue-ctan /language/japanese/BX/bxjaholiday +catalogue-date 2019-02-05 05:26:48 +0100 +catalogue-license mit +catalogue-topics japanese date-time expl3 +catalogue-version 1.0.0 + +name bxjalipsum +category Package +revision 43369 +shortdesc Dummy text in Japanese +relocated 1 +longdesc This package enables users to print some Japanese text that can +longdesc be used as dummy text. It is a Japanese counterpart of the +longdesc lipsum package. Since there is no well-known nonsense text like +longdesc Lipsum in the Japanese language, the package uses some real +longdesc text in public domain. +containersize 26300 +containerchecksum fa8f096023f86fe53d09ef1e719d1930248981f4a9c4f762ceb00eb7e42ae87a876857f03b8210ded78798c4ea18bc44486a87876bd5f2509a9270f09d56a53f +doccontainersize 2896 +doccontainerchecksum 551385ef1ec3aed5d21cef7f1f66254f937c1a7f979db2ad083411580a64cd152b16b9629bdeaa8c2a14ebdc8566278e7a9533ea178b953b033b2637a5f29df4 +docfiles size=4 + RELOC/doc/latex/bxjalipsum/LICENSE + RELOC/doc/latex/bxjalipsum/README.md details="Readme" + RELOC/doc/latex/bxjalipsum/sample-bxjalipsum-1.tex + RELOC/doc/latex/bxjalipsum/sample-bxjalipsum-2.tex +runfiles size=22 + RELOC/tex/latex/bxjalipsum/bxjalipsum.sty +catalogue-ctan /language/japanese/BX/bxjalipsum +catalogue-date 2017-03-01 15:54:11 +0100 +catalogue-license mit +catalogue-topics macro-supp dummy-gen japanese +catalogue-version 0.3a + +name bxjaprnind +category Package +revision 45291 +shortdesc Adjust the position of parentheses at paragraph head +relocated 1 +longdesc In Japanese typesetting, opening parentheses placed at the +longdesc beginning of paragraphs or lines are treated specially; for +longdesc example, while the paragraph indent before normal kanji +longdesc characters is 1em, the indent before parentheses can be 0.5em, +longdesc 1em or 1.5em deoending on the local rule in effect. +containersize 2808 +containerchecksum 77f754e9d9cfc643286df17c7102685ee4c893b5b99308da7a8a9033fc043a7ac95a34dc4a253da4f5e6ed29b35a04376eba1635abbbbe6a6e2670d0d47f50b8 +doccontainersize 387396 +doccontainerchecksum 0010c6e9d1041013401f59820795e338d9e0f852b2d29212fda0c66cda3e2dbdf59593547a8d83d9c6d78d48fb0372a4335976ad1fcc190c3c71a3b5607a47a4 +docfiles size=103 + RELOC/doc/latex/bxjaprnind/LICENSE + RELOC/doc/latex/bxjaprnind/README-ja.md details="Readme" language="ja" + RELOC/doc/latex/bxjaprnind/README.md details="Readme" + RELOC/doc/latex/bxjaprnind/bxjaprnind.pdf details="Package documentation" language="ja" + RELOC/doc/latex/bxjaprnind/bxjaprnind.tex + RELOC/doc/latex/bxjaprnind/sample-bxjaprnind.pdf + RELOC/doc/latex/bxjaprnind/sample-bxjaprnind.tex +runfiles size=2 + RELOC/tex/latex/bxjaprnind/bxjaprnind.sty +catalogue-contact-home https://github.com/zr-tex8r/BXjaprnind +catalogue-ctan /language/japanese/BX/bxjaprnind +catalogue-date 2017-09-13 08:50:07 +0200 +catalogue-license mit +catalogue-topics japanese macro-supp +catalogue-version 0.3b + name bxjscls category Package -revision 38324 +revision 50318 shortdesc Japanese document class collection for all major engines relocated 1 longdesc This package provides an extended version of the Japanese @@ -20473,94 +38326,297 @@ longdesc original version supports only pLaTeX and upLaTeX, the extended longdesc version also supports pdfLaTeX, XeLaTeX and LuaLaTeX, with the longdesc aid of suitable packages that provide capability of Japanese longdesc typesetting. -runfiles size=62 +containersize 31204 +containerchecksum 7489681ec6b39088ee12053a6d71055cfd4651dbb1114d3e0fb30747cd346789f643d9c98234176ab15a00b0f657149ffc970ab4115376455332b5a6ecf1af55 +doccontainersize 1639000 +doccontainerchecksum 1f3dcbe82c81e9beb91361187f2762b4cf0ec62d9e08b2932b61792c17f3c8b44afd02601cf8d4d3cf6a6afde0d72f9d3798333c43db995e8851b554edf3e263 +docfiles size=438 + RELOC/doc/latex/bxjscls/LICENSE + RELOC/doc/latex/bxjscls/README-ja.md details="Readme (Japanese)" language="ja" + RELOC/doc/latex/bxjscls/README.md details="Readme" + RELOC/doc/latex/bxjscls/bxjscls-manual.pdf details="User guide (Japanese)" language="ja" + RELOC/doc/latex/bxjscls/bxjscls-manual.tex + RELOC/doc/latex/bxjscls/bxjscls.pdf details="Package documentation (Japanese)" language="ja" +srccontainersize 78516 +srccontainerchecksum e6085fd3cb4c37bd3a44b2ed2d54333e4c2662fa3a249d056d1a6986d50d5aeca63b87a45431621ee49df904a4e6e6a632b6a3c23e5678c5e37b0f78ed6e50bc +srcfiles size=95 + RELOC/source/latex/bxjscls/bxjscls.dtx + RELOC/source/latex/bxjscls/bxjscls.ins +runfiles size=97 RELOC/tex/latex/bxjscls/bxjsarticle.cls RELOC/tex/latex/bxjscls/bxjsbook.cls + RELOC/tex/latex/bxjscls/bxjscjkcat.sty + RELOC/tex/latex/bxjscls/bxjscompat.sty RELOC/tex/latex/bxjscls/bxjsja-minimal.def + RELOC/tex/latex/bxjscls/bxjsja-modern.def + RELOC/tex/latex/bxjscls/bxjsja-pandoc.def RELOC/tex/latex/bxjscls/bxjsja-standard.def + RELOC/tex/latex/bxjscls/bxjspandoc.sty RELOC/tex/latex/bxjscls/bxjsreport.cls RELOC/tex/latex/bxjscls/bxjsslide.cls -docfiles size=409 - RELOC/doc/latex/bxjscls/LICENSE - RELOC/doc/latex/bxjscls/README-ja.md - RELOC/doc/latex/bxjscls/README.md - RELOC/doc/latex/bxjscls/bxjscls-manual.pdf - RELOC/doc/latex/bxjscls/bxjscls-manual.tex - RELOC/doc/latex/bxjscls/bxjscls.pdf -srcfiles size=53 - RELOC/source/latex/bxjscls/bxjscls.dtx - RELOC/source/latex/bxjscls/bxjscls.ins +catalogue-contact-home https://github.com/zr-tex8r/BXjscls +catalogue-contact-repository https://github.com/zr-tex8r catalogue-ctan /language/japanese/BX/bxjscls -catalogue-date 2015-09-08 13:12:40 +0200 +catalogue-date 2019-03-09 22:03:51 +0100 catalogue-license bsd2 catalogue-topics japanese class -catalogue-version 1.0b +catalogue-version 1.9f + +name bxnewfont +category Package +revision 44173 +shortdesc Enhanced \newfont command +relocated 1 +longdesc This package provides a new command \newfontx. It is similar to +longdesc the old (and deprecated) command \newfont in function, but is +longdesc more compatible with NFSS. In particular, one can safely change +longdesc font size after invoking a font command defined by \newfontx. +longdesc The new command will be useful to users who know much of the +longdesc old \newfont command, but are unfamiliar with the details of +longdesc NFSS. +containersize 4760 +containerchecksum 83775ee72fceb4de0037327561ea2f1723db89dc23ccc42245390212ae1fb849c92c75b2e7b4b23440c62086116b8f0a14b12b27f97c9277c55a7454b231826f +doccontainersize 2376 +doccontainerchecksum f09fde7abd39a4df52175eff90363a469270ab1385f3600e654535cc90d7b4b5ba704be734323dffca512f5942c45a9ffb5cd19a73026c224cee3be33eaa5b65 +docfiles size=2 + RELOC/doc/latex/bxnewfont/LICENSE + RELOC/doc/latex/bxnewfont/README.md details="Readme" +runfiles size=4 + RELOC/tex/latex/bxnewfont/bxnewfont.sty +catalogue-contact-home https://github.com/zr-tex8r/BXnewfont +catalogue-ctan /macros/latex/contrib/bxnewfont +catalogue-date 2017-05-02 23:06:45 +0200 +catalogue-license mit +catalogue-topics font-sel +catalogue-version 0.2b + +name bxorigcapt +category Package +revision 48606 +shortdesc To retain the original caption names when using Babel +relocated 1 +longdesc This package forces the caption names (`\chaptername`, +longdesc `\today`, etc) declared by the document class in use to be used +longdesc as the caption names for a specific language introduced by the +longdesc Babel package. +containersize 2604 +containerchecksum de76176e7448732d3d429c11b605f24a01779651dc5bb3969a6cdd45ac1801a9d2472dcb4bda9751aae09428d7962981a4c9c581244f15b68b6a4aea43d54972 +doccontainersize 2112 +doccontainerchecksum 0ec8b913862e51f89f661de3f628bb51a306d09d04adce4ff46183d8bb24c351f73c877b08b699f704661ae2c31131b7a959ad863a3a6613235318f8825136a2 +docfiles size=2 + RELOC/doc/latex/bxorigcapt/LICENSE + RELOC/doc/latex/bxorigcapt/README.md details="Readme" +runfiles size=2 + RELOC/tex/latex/bxorigcapt/bxorigcapt.sty +catalogue-contact-home https://github.com/zr-tex8r/BXorigcapt +catalogue-ctan /macros/latex/contrib/bxorigcapt +catalogue-date 2018-09-09 06:33:26 +0200 +catalogue-license mit +catalogue-topics typesetting +catalogue-version 0.3 + +name bxpapersize +category Package +revision 45501 +shortdesc Synchronize output paper size with layout paper size +relocated 1 +longdesc As is well known, in LaTeX processing layout paper size +longdesc specified by document class options is not automatically +longdesc applied to output paper size. This package enables LaTeX +longdesc authors to synchronize both kinds of paper sizes. +containersize 5076 +containerchecksum 4ac98d8a350b2ebec289f99ae96a23cf88412de027f6a19e6aa89b7921aa15f1eb628d6be6be2759b2b4df47e35bb7df69a2c5df4cb637b9d71cd548c4df8014 +doccontainersize 3164 +doccontainerchecksum 1cc4a2db15f70542e4a313da9f8e36b6e2a5e65a0438d6a64039b7db28a06a827e68bbcdaff0de0f49f9e74863910c65d1d5e8a9b87cf07528476045d61a1ff7 +docfiles size=3 + RELOC/doc/latex/bxpapersize/LICENSE + RELOC/doc/latex/bxpapersize/README.md details="Readme" +runfiles size=5 + RELOC/tex/latex/bxpapersize/bxpapersize.sty +catalogue-contact-home https://github.com/zr-tex8r/BXpapersize +catalogue-ctan /macros/latex/contrib/bxpapersize +catalogue-date 2017-10-08 09:59:49 +0200 +catalogue-license mit +catalogue-topics page-control +catalogue-version 0.3b name bxpdfver category Package -revision 38050 +revision 43201 shortdesc Specify version and compression level of output PDF files relocated 1 longdesc This package enables users to specify in their sources the longdesc following settings on the PDF document to output: PDF version longdesc (1.4, 1.5 etc.); whether or not to compress streams; whether or -longdesc not to use object streams. This package supports all major PDF- -longdesc output engines and dvipdfmx. -runfiles size=3 - RELOC/tex/latex/bxpdfver/bxpdfver.sty -docfiles size=4 +longdesc not to use object streams. This package supports all major +longdesc PDF-output engines and dvipdfmx. +containersize 6224 +containerchecksum 06795ad6cf70da674064e9712584761e9ed7fc295585d66439c5501532fb5ed3da03d05c8b22b6022d3491079b7ae40af1edae12dd3c959c2adc0f05732be723 +doccontainersize 4612 +doccontainerchecksum 326cf6f244660a7d94a4c847ee9c7a43cf3d2fc199ae94035a76464691b48355432e71fff82f9c6bd3642e10b2011ba4d8d0f318304818ad9a8c27c579d3ca37 +docfiles size=6 RELOC/doc/latex/bxpdfver/LICENSE - RELOC/doc/latex/bxpdfver/README - RELOC/doc/latex/bxpdfver/README-ja + RELOC/doc/latex/bxpdfver/README-ja.md details="Readme" language="ja" + RELOC/doc/latex/bxpdfver/README.md details="Readme" RELOC/doc/latex/bxpdfver/sample-bxpdfver.tex +runfiles size=7 + RELOC/tex/latex/bxpdfver/bxpdfver.sty catalogue-ctan /macros/latex/contrib/bxpdfver -catalogue-date 2015-08-05 08:59:43 +0200 -catalogue-license other-free +catalogue-date 2017-02-14 00:26:52 +0100 +catalogue-license mit catalogue-topics pdf-feat -catalogue-version 0.2a +catalogue-version 0.4 + +name bxtexlogo +category Package +revision 47230 +shortdesc Additional TeX-family logos +relocated 1 +longdesc The hologo package provides many useful logos of popular (and +longdesc not so popular) TeX-family software. However, its interface is +longdesc a bit cumbersome because you must type \hologo{BibTeX} instead +longdesc of \BibTeX. This package makes it possible to import some of +longdesc the logos provided by hologo as single commands, such as +longdesc \BibTeX. Additionally, the package provides logos of some +longdesc TeX-family software that is popular mainly in Japan. These +longdesc logos can be imported in the same way as those provided by the +longdesc \hologo command. bxtexlogo depends on hologo and cjhebrew (if +longdesc \logoAleph and \logoLamed are used). +containersize 5748 +containerchecksum d3144e28a695f0e9939ac3074679558757f2272f0a2f2ad958481981389fae44a663c07fb914b13a890a736989bbb9946d22e1c9bd5d3ffba1db010fa451ee58 +doccontainersize 426348 +doccontainerchecksum 59ee17c9147587d1eb1052dcf4624517cb575c49163a24f3dcbf27785f75b325c0de1c079c0b214cc6a63dd9d5862578303170eea91b0903d3b803c044078ee5 +docfiles size=108 + RELOC/doc/latex/bxtexlogo/LICENSE + RELOC/doc/latex/bxtexlogo/README.md details="Readme" + RELOC/doc/latex/bxtexlogo/bxtexlogo-sample.pdf details="Samples" + RELOC/doc/latex/bxtexlogo/bxtexlogo-sample.tex +runfiles size=5 + RELOC/tex/latex/bxtexlogo/bxtexlogo.sty +catalogue-also hologo +catalogue-contact-home https://github.com/zr-tex8r/BXtexlogo +catalogue-ctan /macros/latex/contrib/bxtexlogo +catalogue-date 2018-04-03 05:07:13 +0200 +catalogue-license mit +catalogue-topics logo +catalogue-version 0.4 + +name bxwareki +category Package +revision 50696 +shortdesc Convert dates from Gregorian to Japanase calender +relocated 1 +longdesc This package provides commands to convert from the Gregorian +longdesc calendar (e. g. 2018/8/28) to the Japanese rendering of the +longdesc Japanese calendar (e. g. Heisei 30 nen 8 gatsu 28 nichi; +longdesc actually with kanji characters). You can choose whether the +longdesc numbers are written in Western numerals or kanji numerals. +containersize 9108 +containerchecksum 727905bcc54545908e603979c61127212c4937aa88ba7de80b2799c1f38fc2aaf901f1ce1ee5e5936745019f0ed869e259bfd5b765adc68b479ca80a94f25475 +doccontainersize 194724 +doccontainerchecksum 60b4b1e64f96e81f9a6483d9cb25f708f4b4d3f8ebb3dece72287eacb74cb201de468bed12b56e8bdbf8f04e43731d87ad9b930254272a0d27f9f665c2eebc86 +docfiles size=53 + RELOC/doc/latex/bxwareki/LICENSE + RELOC/doc/latex/bxwareki/README.md details="Readme" + RELOC/doc/latex/bxwareki/bxwareki.pdf details="Package documentation" + RELOC/doc/latex/bxwareki/bxwareki.tex +runfiles size=10 + RELOC/tex/latex/bxwareki/bxwareki-cd.def + RELOC/tex/latex/bxwareki/bxwareki.sty + RELOC/tex/latex/bxwareki/bxwareki2019.def +catalogue-contact-repository https://github.com/zr-tex8r/BXwareki +catalogue-ctan /language/japanese/BX/bxwareki +catalogue-date 2019-04-01 14:08:14 +0200 +catalogue-license mit +catalogue-topics calendar japanese +catalogue-version 0.5 name bytefield category Package -revision 34336 -shortdesc Create illustrations for network protocol specifications. +revision 45339 +shortdesc Create illustrations for network protocol specifications relocated 1 longdesc The bytefield package helps the user create illustrations for longdesc network protocol specifications and anything else that utilizes longdesc fields of data. These illustrations show how the bits and bytes -longdesc are laid out in a packet or in memory. Users should note that -longdesc the present version 2.0 offers a different (and incompatible) -longdesc user interface from earlier versions. -runfiles size=5 - RELOC/tex/latex/bytefield/bytefield.sty -docfiles size=249 - RELOC/doc/latex/bytefield/README +longdesc are laid out in a packet or in memory. +containersize 4552 +containerchecksum ae5c3c97ded2cc83be2dad6d67132b75eb55b22ffd8d4c0bd49dc842344a310c4ac80571165e43d2b446148dee1ae3927fc2193a92e85e75ad457b4732bca7ed +doccontainersize 552556 +doccontainerchecksum 6657581a9b97383c2dc3f8972ff77461a73ea33ecc0ba4dacbf0188e1db0dbe21e2d324dbb8fac7f05fafa585d3672d6de7d7db267a8e9f5e623838d0c46df5d +docfiles size=156 + RELOC/doc/latex/bytefield/README details="Readme" RELOC/doc/latex/bytefield/bf-example.pdf RELOC/doc/latex/bytefield/bf-example.tex - RELOC/doc/latex/bytefield/bytefield.pdf + RELOC/doc/latex/bytefield/bytefield.pdf details="Package documentation" +srccontainersize 27396 +srccontainerchecksum 1fab74d218ade9454924cff4345c55d6dde25d4350cd238834677d24be89ddc58ce7a610e089158281a472b102db3809979f25a57c0c31ce50dbfcef398a662a srcfiles size=33 RELOC/source/latex/bytefield/bytefield.dtx RELOC/source/latex/bytefield/bytefield.ins +runfiles size=5 + RELOC/tex/latex/bytefield/bytefield.sty catalogue-ctan /macros/latex/contrib/bytefield -catalogue-date 2014-06-06 21:33:06 +0200 -catalogue-license lppl -catalogue-version 2.2 +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl1.3c +catalogue-topics engineering comp-sci comp-net +catalogue-version 2.4 + +name c-pascal +category Package +revision 18337 +shortdesc Typeset Python, C and Pascal programs +relocated 1 +longdesc A TeX macro package for easy typesetting programs in Python, C +longdesc and Pascal. Program source files may also be input. +containersize 4988 +containerchecksum 59aa375b3b953f2fab04547b3234b36fd08af39392cfdf05f6992a90ef3a52503b2e11296787763abb9ce6251f9cc2fd062d78133038ca4a92e1b06ae65118e9 +doccontainersize 5548 +doccontainerchecksum 52252a2265d9bd48f09ddaf5f1517a6a74980897f0e8e0ad7ea71bafb194ca5bb98386af537ef2a4fb955e62ccba3d16cc1ebbae094502f16ae3bea0c5073c79 +docfiles size=8 + RELOC/doc/generic/c-pascal/README.eng details="Readme" language="en" + RELOC/doc/generic/c-pascal/README.pol details="Readme" language="pl" + RELOC/doc/generic/c-pascal/demo1.tex + RELOC/doc/generic/c-pascal/demo2.tex + RELOC/doc/generic/c-pascal/prog/fib.py + RELOC/doc/generic/c-pascal/prog/guess.pas + RELOC/doc/generic/c-pascal/prog/sun.c +runfiles size=9 + RELOC/tex/generic/c-pascal/cap.tex + RELOC/tex/generic/c-pascal/cap_c.tex + RELOC/tex/generic/c-pascal/cap_comm.tex + RELOC/tex/generic/c-pascal/cap_pas.tex + RELOC/tex/generic/c-pascal/cap_pyt.tex +catalogue-ctan /macros/generic/c_pascal +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics listing +catalogue-version 1.2 name c90 category Package -revision 37676 +revision 45666 +shortdesc c90 font encoding for Thai relocated 1 -runfiles size=1 - RELOC/fonts/enc/dvips/c90/c90.enc +longdesc part of the CJK package, ctan.org/pkg/cjk +containersize 1928 +containerchecksum f7e7aeb931bd215d38b41e1ded6d8fd046f90e54946a1bd1d4dc04b7ede4f6c20a3501d57397601f8a423fed9518672fffa9d45f17515f56b05217ebd59efe81 +doccontainersize 86524 +doccontainerchecksum dbf3f9d28bfad1d52dae43f9e9804d082525ea6deef94ba4ebbef6d06b06ad6010f5944c52ce992b1ba4cb5f3877a8eb3b694f106f0eaaef48ef350f62c76e8e docfiles size=22 RELOC/doc/fonts/enc/c90/c90.pdf +srccontainersize 9824 +srccontainerchecksum fac23323734b4cf9357067cf6d5304d36e669798494636d6b3283a074cbf3ec74168138f6d9bac3d6cb7e3ce3c7d5e35f7d98672865fa9dc87ea59d4227e337e srcfiles size=17 RELOC/source/fonts/enc/c90/c90.etx RELOC/source/fonts/enc/c90/c90.mtx +runfiles size=1 + RELOC/fonts/enc/dvips/c90/c90.enc name cabin category Package -revision 31265 -shortdesc A humanist Sans Serif font, with LaTeX support. +revision 50936 +shortdesc A humanist Sans Serif font, with LaTeX support relocated 1 longdesc Cabin is a humanist sans with four weights and true italics and longdesc small capitals. According to the designer, Pablo Impallari, @@ -20568,48 +38624,65 @@ longdesc Cabin was inspired by Edward Johnston's and Eric Gill's longdesc typefaces, with a touch of modernism. Cabin incorporates modern longdesc proportions, optical adjustments, and some elements of the longdesc geometric sans. cabin.sty supports use of the font under LaTeX, -longdesc pdfLaTeX, xeLaTeX and luaLaTeX; it uses the mweights, to manage +longdesc pdfLaTeX, XeLaTeX and LuaLaTeX; it uses the mweights, to manage longdesc the user's view of all those font weights. An sfdefault option longdesc is provided to enable Cabin as the default text font. The longdesc fontaxes package is required for use with [pdf]LaTeX. execute addMap cabin.map -runfiles size=1480 - RELOC/fonts/enc/dvips/cabin/cbn_6vzwvh.enc - RELOC/fonts/enc/dvips/cabin/cbn_7kg2sc.enc - RELOC/fonts/enc/dvips/cabin/cbn_aojlca.enc - RELOC/fonts/enc/dvips/cabin/cbn_cgvdav.enc - RELOC/fonts/enc/dvips/cabin/cbn_dh6h6g.enc - RELOC/fonts/enc/dvips/cabin/cbn_eeshah.enc - RELOC/fonts/enc/dvips/cabin/cbn_gi6ftn.enc - RELOC/fonts/enc/dvips/cabin/cbn_gipwm5.enc - RELOC/fonts/enc/dvips/cabin/cbn_hvmmj2.enc - RELOC/fonts/enc/dvips/cabin/cbn_j5omty.enc - RELOC/fonts/enc/dvips/cabin/cbn_jxvnp4.enc - RELOC/fonts/enc/dvips/cabin/cbn_mzrldx.enc - RELOC/fonts/enc/dvips/cabin/cbn_x3x2zv.enc - RELOC/fonts/enc/dvips/cabin/cbn_xtln4x.enc - RELOC/fonts/enc/dvips/cabin/cbn_xvjm53.enc - RELOC/fonts/enc/dvips/cabin/cbn_zljgjy.enc +containersize 1904680 +containerchecksum 886897d9ec75033f671b9229aa4be59191ea0d68585d3ddc818fea41f8b7732fd54db79f29ac7ac0977d49dd43b05a30c09def0089978ff2eb8703745edf2e04 +doccontainersize 43360 +doccontainerchecksum 38bb0178aa48476963bae49428578bfa129c560f55f918cc55bb50f7e5f69722b52d4fc3e0d604105e6820504df7c1d987fa6151e84889a3356d5857c8f55d11 +docfiles size=14 + RELOC/doc/fonts/cabin/OFL.txt + RELOC/doc/fonts/cabin/README details="Readme (primary documentation)" + RELOC/doc/fonts/cabin/samples.pdf details="Font samples" + RELOC/doc/fonts/cabin/samples.tex +runfiles size=1868 + RELOC/fonts/enc/dvips/cabin/cbn_2wmmq3.enc + RELOC/fonts/enc/dvips/cabin/cbn_5xld5w.enc + RELOC/fonts/enc/dvips/cabin/cbn_fp7bit.enc + RELOC/fonts/enc/dvips/cabin/cbn_hau3x5.enc + RELOC/fonts/enc/dvips/cabin/cbn_i3ioen.enc + RELOC/fonts/enc/dvips/cabin/cbn_jjp77t.enc + RELOC/fonts/enc/dvips/cabin/cbn_meva6t.enc + RELOC/fonts/enc/dvips/cabin/cbn_mvtsrz.enc + RELOC/fonts/enc/dvips/cabin/cbn_taosrr.enc + RELOC/fonts/enc/dvips/cabin/cbn_vqopxp.enc + RELOC/fonts/enc/dvips/cabin/cbn_vqpkf5.enc + RELOC/fonts/enc/dvips/cabin/cbn_yhiurv.enc + RELOC/fonts/enc/dvips/cabin/cbn_yhzmyq.enc RELOC/fonts/map/dvips/cabin/cabin.map RELOC/fonts/opentype/impallari/cabin/Cabin-Bold.otf RELOC/fonts/opentype/impallari/cabin/Cabin-BoldItalic.otf + RELOC/fonts/opentype/impallari/cabin/Cabin-Italic.otf RELOC/fonts/opentype/impallari/cabin/Cabin-Medium.otf RELOC/fonts/opentype/impallari/cabin/Cabin-MediumItalic.otf RELOC/fonts/opentype/impallari/cabin/Cabin-Regular.otf - RELOC/fonts/opentype/impallari/cabin/Cabin-RegularItalic.otf RELOC/fonts/opentype/impallari/cabin/Cabin-SemiBold.otf RELOC/fonts/opentype/impallari/cabin/Cabin-SemiBoldItalic.otf RELOC/fonts/opentype/impallari/cabin/CabinCondensed-Bold.otf RELOC/fonts/opentype/impallari/cabin/CabinCondensed-BoldItalic.otf + RELOC/fonts/opentype/impallari/cabin/CabinCondensed-Italic.otf RELOC/fonts/opentype/impallari/cabin/CabinCondensed-Medium.otf RELOC/fonts/opentype/impallari/cabin/CabinCondensed-MediumItalic.otf RELOC/fonts/opentype/impallari/cabin/CabinCondensed-Regular.otf - RELOC/fonts/opentype/impallari/cabin/CabinCondensed-RegularItalic.otf RELOC/fonts/opentype/impallari/cabin/CabinCondensed-SemiBold.otf RELOC/fonts/opentype/impallari/cabin/CabinCondensed-SemiBoldItalic.otf + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-sup-lgr.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-lgr.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-ly1.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-sc-lgr.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-sc-ly1.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-sc-ot1--base.tfm @@ -20620,9 +38693,20 @@ runfiles size=1480 RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-t1.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-ts1--base.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-lgr.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-ly1.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-sc-lgr.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-sc-ly1.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-sc-ot1--base.tfm @@ -20633,9 +38717,20 @@ runfiles size=1480 RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-t1.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-lgr.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-ly1.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-sc-lgr.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-sc-ly1.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-sc-ot1--base.tfm @@ -20646,9 +38741,20 @@ runfiles size=1480 RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-t1.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-ts1--base.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-sup-lgr.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-lgr.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-ly1.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-sc-lgr.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-sc-ly1.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-sc-ot1--base.tfm @@ -20659,9 +38765,20 @@ runfiles size=1480 RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-t1.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-ts1--base.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-lgr.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-ly1.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-sc-lgr.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-sc-ly1.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-sc-ot1--base.tfm @@ -20672,9 +38789,20 @@ runfiles size=1480 RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-t1.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-sup-lgr.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-lgr.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-ly1.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-sc-lgr.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-sc-ly1.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-sc-ot1--base.tfm @@ -20685,9 +38813,20 @@ runfiles size=1480 RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-t1.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-ts1--base.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-sup-lgr.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-lgr.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-ly1.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-sc-lgr.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-sc-ly1.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-sc-ot1--base.tfm @@ -20698,9 +38837,20 @@ runfiles size=1480 RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-t1.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-ts1--base.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-lgr.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-ly1.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-lgr.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-ly1.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-ot1--base.tfm @@ -20711,9 +38861,20 @@ runfiles size=1480 RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-t1.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Bold-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Bold-sup-lgr.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Bold-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Bold-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Bold-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Bold-tlf-lgr.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Bold-tlf-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Bold-tlf-ly1.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Bold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Bold-tlf-sc-lgr.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Bold-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Bold-tlf-sc-ly1.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Bold-tlf-sc-ot1--base.tfm @@ -20724,9 +38885,20 @@ runfiles size=1480 RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Bold-tlf-t1.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Bold-tlf-ts1--base.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalic-tlf-lgr.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalic-tlf-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalic-tlf-ly1.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalic-tlf-sc-lgr.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalic-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalic-tlf-sc-ly1.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalic-tlf-sc-ot1--base.tfm @@ -20737,9 +38909,44 @@ runfiles size=1480 RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalic-tlf-t1.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Italic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Italic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Italic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Italic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Italic-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Italic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Italic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Medium-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Medium-sup-lgr.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Medium-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Medium-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Medium-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Medium-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Medium-tlf-lgr.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Medium-tlf-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Medium-tlf-ly1.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Medium-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Medium-tlf-sc-lgr.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Medium-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Medium-tlf-sc-ly1.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Medium-tlf-sc-ot1--base.tfm @@ -20750,9 +38957,20 @@ runfiles size=1480 RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Medium-tlf-t1.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Medium-tlf-ts1--base.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalic-tlf-lgr.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalic-tlf-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalic-tlf-ly1.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalic-tlf-sc-lgr.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalic-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalic-tlf-sc-ly1.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalic-tlf-sc-ot1--base.tfm @@ -20763,9 +38981,20 @@ runfiles size=1480 RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalic-tlf-t1.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Regular-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Regular-sup-lgr.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Regular-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Regular-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Regular-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Regular-tlf-lgr.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Regular-tlf-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Regular-tlf-ly1.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Regular-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Regular-tlf-sc-lgr.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Regular-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Regular-tlf-sc-ly1.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Regular-tlf-sc-ot1--base.tfm @@ -20776,22 +39005,20 @@ runfiles size=1480 RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Regular-tlf-t1.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Regular-tlf-ts1--base.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Regular-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularItalic-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularItalic-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularItalic-tlf-t1.tfm - RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/cabin/CabinCondensed-RegularItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBold-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBold-sup-lgr.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBold-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBold-tlf-lgr.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBold-tlf-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBold-tlf-ly1.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBold-tlf-sc-lgr.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBold-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBold-tlf-sc-ly1.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBold-tlf-sc-ot1--base.tfm @@ -20802,9 +39029,20 @@ runfiles size=1480 RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBold-tlf-t1.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBold-tlf-ts1--base.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-lgr.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-ly1.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-sc-lgr.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-sc-ly1.tfm RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-sc-ot1--base.tfm @@ -20825,158 +39063,374 @@ runfiles size=1480 RELOC/fonts/type1/impallari/cabin/Cabin-SemiBoldItalic.pfb RELOC/fonts/type1/impallari/cabin/CabinCondensed-Bold.pfb RELOC/fonts/type1/impallari/cabin/CabinCondensed-BoldItalic.pfb + RELOC/fonts/type1/impallari/cabin/CabinCondensed-Italic.pfb RELOC/fonts/type1/impallari/cabin/CabinCondensed-Medium.pfb RELOC/fonts/type1/impallari/cabin/CabinCondensed-MediumItalic.pfb RELOC/fonts/type1/impallari/cabin/CabinCondensed-Regular.pfb - RELOC/fonts/type1/impallari/cabin/CabinCondensed-RegularItalic.pfb RELOC/fonts/type1/impallari/cabin/CabinCondensed-SemiBold.pfb RELOC/fonts/type1/impallari/cabin/CabinCondensed-SemiBoldItalic.pfb + RELOC/fonts/vf/impallari/cabin/Cabin-Bold-sup-lgr.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Bold-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Bold-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Bold-tlf-lgr.vf RELOC/fonts/vf/impallari/cabin/Cabin-Bold-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Bold-tlf-sc-lgr.vf RELOC/fonts/vf/impallari/cabin/Cabin-Bold-tlf-sc-ly1.vf RELOC/fonts/vf/impallari/cabin/Cabin-Bold-tlf-sc-ot1.vf RELOC/fonts/vf/impallari/cabin/Cabin-Bold-tlf-sc-t1.vf RELOC/fonts/vf/impallari/cabin/Cabin-Bold-tlf-t1.vf RELOC/fonts/vf/impallari/cabin/Cabin-Bold-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-sup-lgr.vf + RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-tlf-lgr.vf RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-tlf-sc-lgr.vf RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-tlf-sc-ly1.vf RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-tlf-sc-ot1.vf RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-tlf-sc-t1.vf RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-tlf-t1.vf RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Italic-sup-lgr.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Italic-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Italic-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Italic-tlf-lgr.vf RELOC/fonts/vf/impallari/cabin/Cabin-Italic-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Italic-tlf-sc-lgr.vf RELOC/fonts/vf/impallari/cabin/Cabin-Italic-tlf-sc-ly1.vf RELOC/fonts/vf/impallari/cabin/Cabin-Italic-tlf-sc-ot1.vf RELOC/fonts/vf/impallari/cabin/Cabin-Italic-tlf-sc-t1.vf RELOC/fonts/vf/impallari/cabin/Cabin-Italic-tlf-t1.vf RELOC/fonts/vf/impallari/cabin/Cabin-Italic-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Medium-sup-lgr.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Medium-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Medium-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Medium-tlf-lgr.vf RELOC/fonts/vf/impallari/cabin/Cabin-Medium-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Medium-tlf-sc-lgr.vf RELOC/fonts/vf/impallari/cabin/Cabin-Medium-tlf-sc-ly1.vf RELOC/fonts/vf/impallari/cabin/Cabin-Medium-tlf-sc-ot1.vf RELOC/fonts/vf/impallari/cabin/Cabin-Medium-tlf-sc-t1.vf RELOC/fonts/vf/impallari/cabin/Cabin-Medium-tlf-t1.vf RELOC/fonts/vf/impallari/cabin/Cabin-Medium-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-sup-lgr.vf + RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-tlf-lgr.vf RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-tlf-sc-lgr.vf RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-tlf-sc-ly1.vf RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-tlf-sc-ot1.vf RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-tlf-sc-t1.vf RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-tlf-t1.vf RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Regular-sup-lgr.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Regular-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Regular-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Regular-tlf-lgr.vf RELOC/fonts/vf/impallari/cabin/Cabin-Regular-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Regular-tlf-sc-lgr.vf RELOC/fonts/vf/impallari/cabin/Cabin-Regular-tlf-sc-ly1.vf RELOC/fonts/vf/impallari/cabin/Cabin-Regular-tlf-sc-ot1.vf RELOC/fonts/vf/impallari/cabin/Cabin-Regular-tlf-sc-t1.vf RELOC/fonts/vf/impallari/cabin/Cabin-Regular-tlf-t1.vf RELOC/fonts/vf/impallari/cabin/Cabin-Regular-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-sup-lgr.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-tlf-lgr.vf RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-tlf-sc-lgr.vf RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-tlf-sc-ly1.vf RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-tlf-sc-ot1.vf RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-tlf-sc-t1.vf RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-tlf-t1.vf RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-sup-lgr.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-tlf-lgr.vf RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-lgr.vf RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-ly1.vf RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-ot1.vf RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-t1.vf RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-tlf-t1.vf RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Bold-sup-lgr.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Bold-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Bold-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Bold-tlf-lgr.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-Bold-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Bold-tlf-sc-lgr.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-Bold-tlf-sc-ly1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-Bold-tlf-sc-ot1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-Bold-tlf-sc-t1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-Bold-tlf-t1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-Bold-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-BoldItalic-sup-lgr.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-BoldItalic-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-BoldItalic-tlf-lgr.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-BoldItalic-tlf-sc-lgr.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-BoldItalic-tlf-sc-ly1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-BoldItalic-tlf-sc-ot1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-BoldItalic-tlf-sc-t1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-BoldItalic-tlf-t1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Italic-sup-lgr.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Italic-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Italic-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Italic-tlf-lgr.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Italic-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Italic-tlf-sc-lgr.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Italic-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Italic-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Medium-sup-lgr.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Medium-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Medium-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Medium-tlf-lgr.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-Medium-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Medium-tlf-sc-lgr.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-Medium-tlf-sc-ly1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-Medium-tlf-sc-ot1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-Medium-tlf-sc-t1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-Medium-tlf-t1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-Medium-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-MediumItalic-sup-lgr.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-MediumItalic-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-MediumItalic-tlf-lgr.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-MediumItalic-tlf-sc-lgr.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-MediumItalic-tlf-sc-ly1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-MediumItalic-tlf-sc-ot1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-MediumItalic-tlf-sc-t1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-MediumItalic-tlf-t1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Regular-sup-lgr.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Regular-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Regular-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Regular-tlf-lgr.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-Regular-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Regular-tlf-sc-lgr.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-Regular-tlf-sc-ly1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-Regular-tlf-sc-ot1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-Regular-tlf-sc-t1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-Regular-tlf-t1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-Regular-tlf-ts1.vf - RELOC/fonts/vf/impallari/cabin/CabinCondensed-RegularItalic-tlf-ly1.vf - RELOC/fonts/vf/impallari/cabin/CabinCondensed-RegularItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/impallari/cabin/CabinCondensed-RegularItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/impallari/cabin/CabinCondensed-RegularItalic-tlf-sc-t1.vf - RELOC/fonts/vf/impallari/cabin/CabinCondensed-RegularItalic-tlf-t1.vf - RELOC/fonts/vf/impallari/cabin/CabinCondensed-RegularItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBold-sup-lgr.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBold-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBold-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBold-tlf-lgr.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBold-tlf-sc-lgr.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBold-tlf-sc-ly1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBold-tlf-sc-ot1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBold-tlf-sc-t1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBold-tlf-t1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBoldItalic-sup-lgr.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-lgr.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-sc-lgr.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-sc-ly1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-sc-ot1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-sc-t1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-t1.vf RELOC/fonts/vf/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-ts1.vf + RELOC/tex/latex/cabin/LY1Cabin-Sup.fd RELOC/tex/latex/cabin/LY1Cabin-TLF.fd - RELOC/tex/latex/cabin/LY1CabinCondensed-TLF.fd + RELOC/tex/latex/cabin/OT1Cabin-Sup.fd RELOC/tex/latex/cabin/OT1Cabin-TLF.fd - RELOC/tex/latex/cabin/OT1CabinCondensed-TLF.fd + RELOC/tex/latex/cabin/T1Cabin-Sup.fd RELOC/tex/latex/cabin/T1Cabin-TLF.fd - RELOC/tex/latex/cabin/T1CabinCondensed-TLF.fd RELOC/tex/latex/cabin/TS1Cabin-TLF.fd - RELOC/tex/latex/cabin/TS1CabinCondensed-TLF.fd RELOC/tex/latex/cabin/cabin.sty -docfiles size=49 - RELOC/doc/fonts/cabin/OFL.txt - RELOC/doc/fonts/cabin/README - RELOC/doc/fonts/cabin/samples-condensed.pdf - RELOC/doc/fonts/cabin/samples.pdf - RELOC/doc/fonts/cabin/samples.tex catalogue-ctan /fonts/cabin -catalogue-date 2014-04-07 15:39:41 +0200 +catalogue-date 2019-04-24 23:14:55 +0200 catalogue-license ofl +catalogue-topics font font-sans font-type1 font-otf name cachepic category Package revision 26313 -shortdesc Convert document fragments into graphics. +shortdesc Convert document fragments into graphics longdesc The bundle simplifies and automates conversion of document longdesc fragments into external EPS or PDF files. The bundle consists longdesc of two parts: a LaTeX package that implements a document level longdesc interface, and a command line tool (written in lua) that longdesc generates the external graphics. depend cachepic.ARCH +containersize 4428 +containerchecksum a0405befc4ed9217cedc4abc78c355b869bb803fa4be32245198ba4aa8151884ace023b3465db3b4757c923d0425fd1d186e25facd7c29d05d5072668a9f0e3d +doccontainersize 160372 +doccontainerchecksum 93108475f74b2356cea79a8403729df7c24e95871680b0b53f9316a7b158aa973ce108632a121198459352968bfdfd79f265d4aa301ecd00ce55cf56db5f976c +docfiles size=44 + texmf-dist/doc/latex/cachepic/README details="Readme" + texmf-dist/doc/latex/cachepic/cachepic.pdf details="Package documentation" + texmf-dist/doc/latex/cachepic/cachepic.tex runfiles size=5 texmf-dist/scripts/cachepic/cachepic.cmd texmf-dist/scripts/cachepic/cachepic.tlu texmf-dist/tex/latex/cachepic/cachepic.sty texmf-dist/tex/latex/cachepic/prcachepic.def -docfiles size=44 - texmf-dist/doc/latex/cachepic/README - texmf-dist/doc/latex/cachepic/cachepic.pdf - texmf-dist/doc/latex/cachepic/cachepic.tex catalogue-ctan /macros/latex/contrib/cachepic -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics graphics-prep catalogue-version 1.0 +name cachepic.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of cachepic +containersize 344 +containerchecksum e308d731d1c84c2f9560817b10e586b30a3f98da306456f976d2d94be492bc79bda23c946ef9154205e72d79082e3140f6b12652ae50a4a610676374d41cdd58 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/cachepic + +name cachepic.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of cachepic +containersize 344 +containerchecksum 7f6b26c2e85e2ce8eee3c0d12142e0f8ef809cecf38af383c69b5b3d37639c9ff87acf5b09d7a27a71288375b1d3a1ce4f2ef2dcf7abb2598c58712bb78083fe +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/cachepic + +name cachepic.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of cachepic +containersize 344 +containerchecksum 1b3781ad928f123067f062adc389d83b78f2b2a5c07efe5338f0d916262b8ff2bda7916e2be25268601e37316e632b1235343cbb016c770b742621d5e78ed85e +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/cachepic + +name cachepic.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of cachepic +containersize 340 +containerchecksum 171b9c3f97b02a4aa40a766f7f0fe87b13207d7aa8c8699588b732b346346fa8e78949e39f54680283523d1803af54f52df98da6a9c6a63435b2b97045cb0a56 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/cachepic + +name cachepic.i386-cygwin +category Package +revision 15543 +shortdesc i386-cygwin files of cachepic +containersize 340 +containerchecksum 06631f4aaf9304ae7c7a163b5dde20b2b6e1423fee7946fbc7681dbefcec8d8c476402eab426811ba75c5e2921073dee0587e2ebbc517310f553a69fcb3e8680 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/cachepic + +name cachepic.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of cachepic +containersize 344 +containerchecksum 1aa0fdd3527f7e7bddc0a52b018869106272ed6d6580858dd4d45a0011d8c26885435d3efbb50637e1cdd1e1633da2b91c9f5ed90f8ae16263b58c7f6eda5836 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/cachepic + name cachepic.i386-linux category Package revision 15543 shortdesc i386-linux files of cachepic +containersize 344 +containerchecksum 9d05756b229361e9c366869d7150d81f2b81c76b44648cec12fed65595881a47cdbfefc8b99c0e2fadf31b9fabf075d7ec18cfb7e8517a87b980dc341989167e binfiles arch=i386-linux size=1 bin/i386-linux/cachepic +name cachepic.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of cachepic +containersize 340 +containerchecksum e3b18ac67862a3a781ed5b6886644e48d27cbe9ace98762afe81fa86aa20d9ce75dc0c22be191beca525dac10e13ef381fd6332cdb82a54a880736256c316d30 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/cachepic + +name cachepic.i386-solaris +category Package +revision 15543 +shortdesc i386-solaris files of cachepic +containersize 340 +containerchecksum b229a9e9d6649533f8db8411d77d0c3913577e07b39f56b2275dd5376044a3f0a1a9594ff92ef7e848b812a85a741edc6b541f50601665373b97da1edd790c9a +binfiles arch=i386-solaris size=1 + bin/i386-solaris/cachepic + +name cachepic.win32 +category Package +revision 15549 +shortdesc win32 files of cachepic +containersize 684 +containerchecksum d6d7605f95503bda4e9105f1355c19508bddf3dbcba9df88f95739a9399c8cdcb4019924d6f4c642921abdea8199dba54c571336c087f79f08fa8d354797a13b +binfiles arch=win32 size=1 + bin/win32/cachepic.exe + +name cachepic.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of cachepic +containersize 344 +containerchecksum 337d9ce5b2ea106a62dd04fbda1a2c552d1fc47d0acdaf90ce7de3325709044f3d87af98a9f1fb9e87ec650048715cf7d97c851279b8d1e3fc1c92e7bec2c2e0 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/cachepic + +name cachepic.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of cachepic +containersize 344 +containerchecksum 40b907cfadcdbbc98669990d8cac25923b46b19dc1c11fc8e1b864870d61310660c3367e826685dd80863ec5142dd7be7aa7a3911a2f9a888e85657d8a971795 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/cachepic + +name cachepic.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of cachepic +containersize 352 +containerchecksum 82a9aa9ac68a7eba9c0c5fa845f6321c4abb2aebcb62324b86fcf3c08cbf61ea5bd16d08e5d14a75d0b48d7bfba575011801f365865ca04707b24fac8bf90e0d +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/cachepic + +name cachepic.x86_64-linux +category Package +revision 15543 +shortdesc x86_64-linux files of cachepic +containersize 340 +containerchecksum e5a57db9352e67a19408b765724d0edb52d65650df37901ba06c3e22f8548b389b6e6f9ed9133965a1f1c87142f2e03c0d440f56e7bbe734c695ee976b2ab68d +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/cachepic + +name cachepic.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of cachepic +containersize 348 +containerchecksum 4178d20ecf9cc8ae27c25e93f2c2184c3ff17aaeed9bed7fd371558cd81242d68a9b0aea1ddedc11d77750ddee068bf8b084f643c409281f777c44e4d8bc7a51 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/cachepic + +name cachepic.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of cachepic +containersize 344 +containerchecksum 6553622e283655b82b7d3bf030aab45b0c1ce9bad4d88bc855f61e9f4e608c279d0aedab979cfdab46354f3129ab5e3a4115d4bf05d51924d27cb0031e75ea48 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/cachepic + name caladea category Package revision 34991 @@ -20988,6 +39442,16 @@ longdesc Giovagnoli and Andres Torresi of the Huerta Tipografica foundry longdesc and adopted by Google for ChromeOS as a font-metric compatible longdesc replacement for Cambria. execute addMap caladea.map +containersize 343476 +containerchecksum 3e1d6bbb049ee4ac637fe051ac39d2e590d0e5ef4f2801ed9c1dac96b9ec8724e7643fcffe8a72de905572a75525fc6954871d8d953ae120af7e9f336da51442 +doccontainersize 93524 +doccontainerchecksum f6b47af3681349536a80bf5b6ea0db2113e35384dd7ce99da3704bdad3a3c5dc8f6dc0e4b1402c89ac97ece9907af5e0f2263edc4c0bb0a1e46ee89cac2f6639 +docfiles size=32 + RELOC/doc/fonts/caladea/Caladea-Regular.pdf details="Package documentation" + RELOC/doc/fonts/caladea/LICENSE-2.0 + RELOC/doc/fonts/caladea/README details="Readme" + RELOC/doc/fonts/caladea/samples.pdf + RELOC/doc/fonts/caladea/samples.tex runfiles size=204 RELOC/fonts/enc/dvips/caladea/cld_cb3g7n.enc RELOC/fonts/enc/dvips/caladea/cld_fjy5hl.enc @@ -21047,63 +39511,71 @@ runfiles size=204 RELOC/tex/latex/caladea/T1Caladea-TLF.fd RELOC/tex/latex/caladea/TS1Caladea-TLF.fd RELOC/tex/latex/caladea/caladea.sty -docfiles size=32 - RELOC/doc/fonts/caladea/Caladea-Regular.pdf - RELOC/doc/fonts/caladea/LICENSE-2.0 - RELOC/doc/fonts/caladea/README - RELOC/doc/fonts/caladea/samples.pdf - RELOC/doc/fonts/caladea/samples.tex catalogue-ctan /fonts/caladea -catalogue-date 2015-02-23 19:45:42 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license apache2 +catalogue-topics font font-type1 font-ttf name calcage category Package revision 27725 -shortdesc Calculate the age of something, in years. +shortdesc Calculate the age of something, in years relocated 1 longdesc The package calculates the age of someone or something in longdesc years. Internally it uses the datenumber package to calculate longdesc the age in days; conversion from days to years is then longdesc performed, taking care of leap years and such odd things. -runfiles size=1 - RELOC/tex/latex/calcage/calcage.sty +containersize 1464 +containerchecksum d3f6d46166f2b37e6ee8ff9185c6ddf5ed99ca2b32c7520966fa9a3db95d3a9517e39f5e8f928332a8dba490274c4fe48e62b6ce83ca10d0fbdb9a4218e0d92b +doccontainersize 279664 +doccontainerchecksum 4c3f1ed751005a5fc19e0ae40dfeb010ca211dbbdb7ac11c01525c7643f1e993346f1af21d411705ebcb119f8b1c20e4ad35384d2be9618fbe6db2de99e6eb45 docfiles size=70 - RELOC/doc/latex/calcage/README - RELOC/doc/latex/calcage/calcage.pdf + RELOC/doc/latex/calcage/README details="Readme" + RELOC/doc/latex/calcage/calcage.pdf details="Package documentation" +srccontainersize 5820 +srccontainerchecksum aa49d205c8366ad92a46195c113e69fe123979560ae92a51589718136bc8df8b3b00e0aad4d6643ca36d217be02fa61529c4a1779d6826a52f80d29649fc50ac srcfiles size=5 RELOC/source/latex/calcage/calcage.dtx RELOC/source/latex/calcage/calcage.ins +runfiles size=1 + RELOC/tex/latex/calcage/calcage.sty +catalogue-contact-repository https://github.com/ypid/latex-packages/tree/master/calcage catalogue-ctan /macros/latex/contrib/calcage -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 +catalogue-topics date-time catalogue-version 0.90 name calctab category Package revision 15878 -shortdesc Language for numeric tables. +shortdesc Language for numeric tables relocated 1 longdesc The calctab package helps the user to typeset a kind of longdesc economic table such as invoices, expense notes and liquidation, longdesc or other tabular material with a values column. The code longdesc computes sum and percentage with floating point numeric methods longdesc (using the fltpoint package) and builds the render table task. -runfiles size=5 - RELOC/tex/latex/calctab/calctab.sty +containersize 4680 +containerchecksum 20ccd46a047987004eef78f75b18f49b1e3001e240604e2657e23e30c4e6f286ba700cb828eeffbd608880ac4994d4a3cd2d67aa336957fecd1d3ea8a48058b1 +doccontainersize 407400 +doccontainerchecksum 555a9d966fe556e8aa1dd39ec1ec327995f62fa447bfd2bbb8efe47ad667427eef249c749f9d2c0436c16e31e6fe7b0dced9b449da307411ac186d30c2407270 docfiles size=115 - RELOC/doc/latex/calctab/README - RELOC/doc/latex/calctab/calctab_manual.pdf + RELOC/doc/latex/calctab/README details="Readme" + RELOC/doc/latex/calctab/calctab_manual.pdf details="Package documentation" RELOC/doc/latex/calctab/calctab_manual.tex +runfiles size=5 + RELOC/tex/latex/calctab/calctab.sty catalogue-ctan /macros/latex/contrib/calctab -catalogue-date 2012-06-13 20:28:58 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl -catalogue-version v0.6.1 +catalogue-topics calculation +catalogue-version 0.6.1 name calculation category Package revision 35973 -shortdesc Typesetting reasoned calculations, also called calculational proofs. +shortdesc Typesetting reasoned calculations, also called calculational proofs relocated 1 longdesc The calculation environment formats reasoned calculations, also longdesc called calculational proofs. The notion of reasoned @@ -21118,24 +39590,31 @@ longdesc if its hint is empty. An expression in a calculation can be longdesc given a comment; it is placed at the side opposite to the longdesc equation numbers. Calculations are allowed inside hints longdesc although numbering and commenting is then disabled. -runfiles size=3 - RELOC/tex/latex/calculation/calculation.sty +containersize 3316 +containerchecksum d60f9face95cdf6944363ce66b842b2a695b468e77193785564d1697244e193cc0dcf462e7a13c8a22eee173d5d4cd192ae59bbc68e086ac27c92d2dbaf6f156 +doccontainersize 98544 +doccontainerchecksum 741f4600986798bb191352ef98ac1a398014f92956267c36ca1834d95996008204107dcd8575077d7eb2dc1ddc627f03ffdf071ce0d8b2646809063eba59625a docfiles size=29 - RELOC/doc/latex/calculation/README - RELOC/doc/latex/calculation/calculation.pdf + RELOC/doc/latex/calculation/README details="Readme" + RELOC/doc/latex/calculation/calculation.pdf details="Package documentation" +srccontainersize 9640 +srccontainerchecksum 010291ac9b9d4529283ae9ed9054a2d797109a5eba2e999d26c4e847bba6c0bbb3a357a76526c77549636d2446d38fca2b6063ca238f5912c1aced9e2b63bb8a srcfiles size=10 RELOC/source/latex/calculation/calculation.drv RELOC/source/latex/calculation/calculation.dtx RELOC/source/latex/calculation/calculation.ins +runfiles size=3 + RELOC/tex/latex/calculation/calculation.sty catalogue-ctan /macros/latex/contrib/calculation -catalogue-date 2015-01-14 14:16:00 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics proof maths catalogue-version 1.0 name calculator category Package revision 33041 -shortdesc Use LaTeX as a scientific calculator. +shortdesc Use LaTeX as a scientific calculator relocated 1 longdesc The calculator and calculus packages define several longdesc instructions which allow us to realise algebraic operations and @@ -21144,12 +39623,13 @@ longdesc documents. The package's main goal is to define the arithmetic longdesc and functional calculations need in the author's package longdesc xpicture, but the numeric abilities of "calculator" and longdesc "calculus" may be useful in other contexts. -runfiles size=19 - RELOC/tex/latex/calculator/calculator.sty - RELOC/tex/latex/calculator/calculus.sty +containersize 9948 +containerchecksum d381e15db10c289b3de79bc6464c714391949f149cf5e6ff7af04e3f195308cd9d71627dc04c6138b17d4d2c1e5caeb44149e327df78d20e54344d95cfc4d8ac +doccontainersize 565844 +doccontainerchecksum 107055cab430fa0867f48b3e4c9215052926ea328d29d920dd0345bc48cc956a0673f6ba3b72c954acd98fb65678acde00b4d18def40225e1b8ff656a7938754 docfiles size=203 - RELOC/doc/latex/calculator/README - RELOC/doc/latex/calculator/calculator.pdf + RELOC/doc/latex/calculator/README details="Readme" + RELOC/doc/latex/calculator/calculator.pdf details="Package documentation" RELOC/doc/latex/calculator/examples/calculator1.tex RELOC/doc/latex/calculator/examples/calculator10.tex RELOC/doc/latex/calculator/examples/calculator11.tex @@ -21212,92 +39692,148 @@ docfiles size=203 RELOC/doc/latex/calculator/examples/calculator7.tex RELOC/doc/latex/calculator/examples/calculator8.tex RELOC/doc/latex/calculator/examples/calculator9.tex +srccontainersize 29364 +srccontainerchecksum 3121da3beab24f10d9898b88fb971613050078d2d09deedb03f3c5e6b9b1dd9f0a9e8a2c7c8ae092e8cee7058abca6366ff09dd15aab4f386adab0206e11303b srcfiles size=45 RELOC/source/latex/calculator/calculator.dtx RELOC/source/latex/calculator/calculator.ins +runfiles size=19 + RELOC/tex/latex/calculator/calculator.sty + RELOC/tex/latex/calculator/calculus.sty catalogue-ctan /macros/latex/contrib/calculator -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics calculation maths catalogue-version 2.0 name calligra category Package revision 15878 -shortdesc Calligraphic font. +shortdesc Calligraphic font relocated 1 longdesc A calligraphic font in the handwriting style of the author, longdesc Peter Vanroose. The font is supplied as Metafont source. LaTeX longdesc support of the font is provided in the calligra package in the longdesc fundus bundle. +containersize 42412 +containerchecksum 9479d6b5ab33b12acae5cb3858c218dc4a1e1901c4006dca5160778798813d333b2e9e615eeb29e01007084d8479c58573f88ad5e282dfc06f3f5a9820df482c +doccontainersize 77272 +doccontainerchecksum 05e7b61864f483f0fc50d4680d80a395282a5c7f36b7ccaebb70e1c24cb5a101c4ee5accfec8d12c7fac0e7a32851dc15906267b93e6d75094b7ac646826dead +docfiles size=26 + RELOC/doc/latex/calligra/README + RELOC/doc/latex/calligra/testfont.pdf details="Font table" runfiles size=76 RELOC/fonts/source/public/calligra/callig15.mf RELOC/fonts/source/public/calligra/calligra.mf RELOC/fonts/tfm/public/calligra/callig15.tfm -docfiles size=26 - RELOC/doc/latex/calligra/README - RELOC/doc/latex/calligra/testfont.pdf +catalogue-also calligra-type1 catalogue-ctan /fonts/calligra -catalogue-date 2014-04-07 15:39:41 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics font font-calligraphic font-mf name calligra-type1 category Package revision 24302 -shortdesc Type 1 version of Calligra. +shortdesc Type 1 version of Calligra relocated 1 longdesc This is a conversion (using mf2pt1) of Peter Vanroose's longdesc handwriting font. execute addMap calligra.map +containersize 59668 +containerchecksum 325764734735203d4e355d33b30a289d699fa10377212e39bf33d3195f2dfdebd4397785d69d6ca392e040cd2fd5bad20b0055b5f92620149fc96ed0d6d337a7 +doccontainersize 736 +doccontainerchecksum c1acbd3ae35c423b9414b5e132e1a164d4b102ecf9d7305548bb5d203a8d3a25309e2aa5a5d09277d310b9446013ca2db65f9ce6d5783432ed325838bfc9a48f +docfiles size=1 + RELOC/doc/fonts/calligra-type1/README details="Readme" runfiles size=19 RELOC/fonts/afm/public/calligra-type1/callig15.afm RELOC/fonts/map/dvips/calligra-type1/calligra.map RELOC/fonts/type1/public/calligra-type1/callig15.pfb -docfiles size=1 - RELOC/doc/fonts/calligra-type1/README catalogue-ctan /fonts/calligra-type1 -catalogue-date 2014-04-07 15:39:41 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics font font-calligraphic font-type1 catalogue-version 001.000 +name callouts +category Package +revision 44899 +shortdesc Put simple annotations and notes inside a picture +relocated 1 +longdesc The package defines the annotation environment in which +longdesc callouts, notes, arrows, and the like can be placed to describe +longdesc certain parts of a picture. +containersize 1488 +containerchecksum a440d3815f5c5a6d291ce4d7a20bc8483bebe190a0e6944de9f5be78a23eef119f41740ca0fbae4515b6ea7f2aefff90a62005883c44e8d70c6aec0a58c777ee +doccontainersize 200208 +doccontainerchecksum 0801298bd110f2e484b45c66626c790217666f3351aeeab87881d7f32ada1868222a21f2a7861afaacdea302ad269d2062aaf5fa9d13fdf8efb93efaeb499bb6 +docfiles size=77 + RELOC/doc/latex/callouts/A319neo.jpg + RELOC/doc/latex/callouts/README.md details="Readme" + RELOC/doc/latex/callouts/callouts.pdf details="Package documentation" + RELOC/doc/latex/callouts/callouts.tex +runfiles size=1 + RELOC/tex/latex/callouts/callouts.sty +catalogue-ctan /graphics/pgf/contrib/callouts +catalogue-date 2017-07-27 16:25:55 +0200 +catalogue-license lppl +catalogue-topics graphics pgf-tikz + name calrsfs category Package revision 17125 -shortdesc Copperplate calligraphic letters in LaTeX. +shortdesc Copperplate calligraphic letters in LaTeX relocated 1 longdesc Provides a maths interface to the rsfs fonts. +containersize 864 +containerchecksum 34b5315e9e5e0ca532733f7b7ebe66e77d935fedf0e042aec63fb7cae257a423db5e93e288b9e1dacb26b0b75784eddffa8b565acfa537a7d970297f71e63a2e +doccontainersize 153676 +doccontainerchecksum 2378c004fe888bd2d60d0830ec98e805a2bdea3a5a6f4161dd3d4cb56c437dabdb579f3293845a10e316cd868725abd304ecb8eab55fb4c728ed5bc0d2073673 +docfiles size=41 + RELOC/doc/latex/calrsfs/README details="Readme" + RELOC/doc/latex/calrsfs/calrsfs.pdf details="Package documentation" + RELOC/doc/latex/calrsfs/calrsfs.tex runfiles size=2 RELOC/tex/latex/calrsfs/OMSrsfs.fd RELOC/tex/latex/calrsfs/calrsfs.sty -docfiles size=41 - RELOC/doc/latex/calrsfs/README - RELOC/doc/latex/calrsfs/calrsfs.pdf - RELOC/doc/latex/calrsfs/calrsfs.tex catalogue-ctan /macros/latex/contrib/calrsfs -catalogue-date 2014-04-07 15:40:09 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics font-supp name cals category Package -revision 30784 -shortdesc Multipage tables with wide range of features. -relocated 1 -longdesc The package allows the user to typeset multipage tables with -longdesc repeatable headers and footers, and with cells spanned over -longdesc rows and columns. Decorations are supported: padding, -longdesc background color, width of separation rules. The package is -longdesc compatible with multicol and pdfsync. -runfiles size=5 - RELOC/tex/latex/cals/cals.sty -docfiles size=214 - RELOC/doc/latex/cals/README - RELOC/doc/latex/cals/cals.pdf - RELOC/doc/latex/cals/examples/demo.pdf +revision 43003 +shortdesc Multipage tables with wide range of features +relocated 1 +longdesc The package is a set of macros to typeset multipage tables with +longdesc repeatable headers and footers, with cells spanned over rows +longdesc and columns. Decorations are supported: padding, background +longdesc color, width of separation rules. The code is compatible with +longdesc multicol and bidi. +containersize 5096 +containerchecksum 75321e774560d7a205a7bf6b7d2d512c6aa9b5f38f6116813ff43ebd4d1fed23ebe26c235b278ee5723062e49630fc5f9480dccbe5bdfa44f5168f18657ddadc +doccontainersize 486132 +doccontainerchecksum 15accc06e3de07dc535078300efbffe305d8e26a3aa0e81304de37090500210932f08c24454d0bcb5d93ced903832891b6f987525eb64d04b1a7bfe577071153 +docfiles size=259 + RELOC/doc/latex/cals/README details="Readme" + RELOC/doc/latex/cals/cals.pdf details="Package documentation" + RELOC/doc/latex/cals/examples/bididemo.pdf + RELOC/doc/latex/cals/examples/bididemo.tex + RELOC/doc/latex/cals/examples/biditable1.tex + RELOC/doc/latex/cals/examples/biditable2.tex + RELOC/doc/latex/cals/examples/biditable3.tex + RELOC/doc/latex/cals/examples/biditable4.tex + RELOC/doc/latex/cals/examples/demo.pdf details="Examples of use" RELOC/doc/latex/cals/examples/demo.tex RELOC/doc/latex/cals/examples/table1.tex RELOC/doc/latex/cals/examples/table2.tex RELOC/doc/latex/cals/examples/table3.tex RELOC/doc/latex/cals/examples/table4.tex - RELOC/doc/latex/cals/test/README + RELOC/doc/latex/cals/notes.pdf details="Additional notes" + RELOC/doc/latex/cals/tb101parashchenko.pdf details="Users Guide" + RELOC/doc/latex/cals/test/README details="Readme" RELOC/doc/latex/cals/test/cell/test_10_create.chk RELOC/doc/latex/cals/test/cell/test_10_create.tex RELOC/doc/latex/cals/test/cell/test_20_colwidth.chk @@ -21344,6 +39880,14 @@ docfiles size=214 RELOC/doc/latex/cals/test/regression/test_060_alignment.tex RELOC/doc/latex/cals/test/regression/test_065_alignment.chk RELOC/doc/latex/cals/test/regression/test_065_alignment.tex + RELOC/doc/latex/cals/test/regression/test_070_clean_backup_row.chk + RELOC/doc/latex/cals/test/regression/test_070_clean_backup_row.tex + RELOC/doc/latex/cals/test/regression/test_075_vstraddled_retain_rowsep.chk + RELOC/doc/latex/cals/test/regression/test_075_vstraddled_retain_rowsep.tex + RELOC/doc/latex/cals/test/regression/test_080_never_pagebreak_in_float.chk + RELOC/doc/latex/cals/test/regression/test_080_never_pagebreak_in_float.tex + RELOC/doc/latex/cals/test/regression/test_085_allow_table_in_colspan.chk + RELOC/doc/latex/cals/test/regression/test_085_allow_table_in_colspan.tex RELOC/doc/latex/cals/test/rowsep/test_10_waitrule.chk RELOC/doc/latex/cals/test/rowsep/test_10_waitrule.tex RELOC/doc/latex/cals/test/rowsep/test_15_waitover.chk @@ -21401,7 +39945,9 @@ docfiles size=214 RELOC/doc/latex/cals/test/visual_tables/test_40_span.chk RELOC/doc/latex/cals/test/visual_tables/test_40_span.png RELOC/doc/latex/cals/test/visual_tables/test_40_span.tex -srcfiles size=21 +srccontainersize 18716 +srccontainerchecksum 59a99cfdb7923d0e9edfa656f53825194b3c1ad0cc554e28ce792783d3196b525a9e7dc0e5ef8dd824e4d35b39a71946c579978520c7fb87de24f1e8b91c1253 +srcfiles size=22 RELOC/source/latex/cals/cals.dtx RELOC/source/latex/cals/cals.ins RELOC/source/latex/cals/cell.dtx @@ -21409,79 +39955,103 @@ srcfiles size=21 RELOC/source/latex/cals/decor.dtx RELOC/source/latex/cals/lltokens.dtx RELOC/source/latex/cals/rowsep.dtx + RELOC/source/latex/cals/rtl.dtx RELOC/source/latex/cals/span.dtx RELOC/source/latex/cals/table.dtx +runfiles size=6 + RELOC/tex/latex/cals/cals.sty +catalogue-also longtable supertabular catalogue-ctan /macros/latex/contrib/cals -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-01-20 11:13:03 +0100 catalogue-license lppl1.3 -catalogue-version 2.2 +catalogue-topics table table-long +catalogue-version 2.4.2 name calxxxx-yyyy category Package -revision 36677 -shortdesc Print a calendar for a group of years. -relocated 1 -longdesc The package prints a calendar for 2 or more years, according to -longdesc a language selection. The package is also "culture dependent", -longdesc in the sense that it will start weeks according to local rules: -longdesc e.g., weeks conventionally start on Monday in the English- -longdesc speaking world. -runfiles size=4 +revision 49554 +shortdesc Print a calendar for a group of years +relocated 1 +longdesc The package prints a calendar for two or more years, according +longdesc to a language selection. The package is also "culture +longdesc dependent" in the sense that it will start weeks according to +longdesc local rules: e.g., weeks conventionally start on Monday in the +longdesc English-speaking world. The package requires array, babel, and +longdesc geometry. +containersize 6300 +containerchecksum d66d7c31c9e16d79d28b99a395b8d2206bf64ca1f036d94a34d9a60c67f87c5ee0e9295a9d01a8fe16590b42e570ee2d49e7ffb07cd831588ae9d8bab40746f2 +doccontainersize 376896 +doccontainerchecksum 53e3cc3a8152d7bcad1e00f2ab7163b0c6630c0a9a065f0bbe79ac9caf871bc50c985ba22eef2a69f745296ec22353e6d2780e92711d4c0453033ed436b414da +docfiles size=109 + RELOC/doc/latex/calxxxx-yyyy/README details="Readme" + RELOC/doc/latex/calxxxx-yyyy/cal2019-2036_DE.pdf details="Sample (German) Calendar" language="de" + RELOC/doc/latex/calxxxx-yyyy/cal2019-2036_DK.pdf details="Sample (Danish) Calendar" language="da" + RELOC/doc/latex/calxxxx-yyyy/cal2019-2036_EN.pdf details="Sample (English) Calendar" language="en" + RELOC/doc/latex/calxxxx-yyyy/calxxxx-yyyy-doc.pdf details="Package documentation" +runfiles size=5 + RELOC/tex/latex/calxxxx-yyyy/calxxxx-yyyy-doc.tex RELOC/tex/latex/calxxxx-yyyy/calxxxx-yyyy.tex -docfiles size=108 - RELOC/doc/latex/calxxxx-yyyy/README - RELOC/doc/latex/calxxxx-yyyy/README.pdf - RELOC/doc/latex/calxxxx-yyyy/README.tex - RELOC/doc/latex/calxxxx-yyyy/cal2015-2032_DE.pdf - RELOC/doc/latex/calxxxx-yyyy/cal2015-2032_DK.pdf - RELOC/doc/latex/calxxxx-yyyy/cal2015-2032_EN.pdf +catalogue-also calxxxx catalogue-ctan /macros/latex/contrib/calxxxx-yyyy -catalogue-date 2015-03-30 14:27:48 +0200 -catalogue-license lppl1.3 -catalogue-version 1.0h +catalogue-date 2018-12-31 17:10:11 +0100 +catalogue-license lppl1.3c +catalogue-topics calendar +catalogue-version 20.19a name cancel category Package revision 32508 -shortdesc Place lines through maths formulae. +shortdesc Place lines through maths formulae relocated 1 longdesc A package to draw diagonal lines ("cancelling" a term) and longdesc arrows with limits (cancelling a term "to a value") through longdesc parts of maths formulae. -runfiles size=2 - RELOC/tex/latex/cancel/cancel.sty +containersize 2904 +containerchecksum ac6e6b642dde29e32e45d7a0e967370c1f7a6ce604075cd43c57b1ee002e75adbe4fbc81de30e8d252cd58f2ac091503595a433c5de898deb3bfbdbb6f2d2e62 +doccontainersize 261244 +doccontainerchecksum 5af252a521c1976166db248c4c19d4fcadd32ec9801e0cd42b73e0a3a0adc461b88d765b90dec1af859474fc64bc00cbc8be44450cb4da6b43944c8fc46ba670 docfiles size=65 - RELOC/doc/latex/cancel/cancel.pdf + RELOC/doc/latex/cancel/cancel.pdf details="Package documentation" RELOC/doc/latex/cancel/cancel.tex +runfiles size=2 + RELOC/tex/latex/cancel/cancel.sty catalogue-ctan /macros/latex/contrib/cancel -catalogue-date 2013-12-30 10:37:07 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics maths catalogue-version 2.2 name canoniclayout category Package revision 24523 -shortdesc Create canonical page layouts with memoir. +shortdesc Create canonical page layouts with memoir relocated 1 longdesc A canonic text layout has specified relations to a circle longdesc inscribed within the enclosing page. The package allows the longdesc user to use a canonic layout with the memoir class. -runfiles size=1 - RELOC/tex/latex/canoniclayout/canoniclayout.sty +containersize 1916 +containerchecksum 19858946010eaac99d0a0b0808f31c57949b7488dea007e7a5a2d8820b0ae16518ff8aa48bfa5e067d90c8662937de7af7f325aa9a80dba382a03a66d89e46b6 +doccontainersize 475184 +doccontainerchecksum 221b7eb51a3e5e9da2e354646cf1c09a78811ff1804805171bedc1e72e5c1ebc3a2e974f3b5ce3eb6322e17111ce2486e9c9452367e4e753be029d096ae9033d docfiles size=117 - RELOC/doc/latex/canoniclayout/README - RELOC/doc/latex/canoniclayout/canoniclayout.pdf + RELOC/doc/latex/canoniclayout/README details="Readme" + RELOC/doc/latex/canoniclayout/canoniclayout.pdf details="Package documentation" +srccontainersize 9228 +srccontainerchecksum 27864e2f85680ac3fc8103bf14a420cd3b636124482ac2d0a382061825e70cf3674c8da8eb91fd8db5f2a7a15c173d2e16cc7f576cee28ac2a1d82417d662c8f srcfiles size=7 RELOC/source/latex/canoniclayout/canoniclayout.dtx +runfiles size=1 + RELOC/tex/latex/canoniclayout/canoniclayout.sty catalogue-ctan /macros/latex/contrib/canoniclayout -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics geometry catalogue-version 0.4 name cantarell category Package revision 27066 -shortdesc LaTeX support for the Cantarell font family. +shortdesc LaTeX support for the Cantarell font family relocated 1 longdesc Cantarell is a contemporary Humanist sans serif designed by longdesc Dave Crossland and Jakub Steiner. This font, delivered under @@ -21491,6 +40061,34 @@ longdesc includes Type 1 versions of the fonts, converted for this longdesc package using FontForge from its sources, for full support with longdesc Dvips. execute addMap cantarell.map +containersize 190832 +containerchecksum 70ed69ca67858e1b0e9d81d9c39e4a3f26e754925b7a525735a97dae1579c4d86d0dda0c7ca5142fc11518b2e41c598b094f55e7db7361da4d67f9865386313c +doccontainersize 201268 +doccontainerchecksum ecaa097eb6a2a3debb5e8edce79c0e756a46a2976ec32a2e1b632998d0d2f5a5bbdaddc67853437aa9249b4118ecfea51def48daab9d702c1bf2d8b4b42d6cad +docfiles size=64 + RELOC/doc/fonts/cantarell/CHANGES + RELOC/doc/fonts/cantarell/README details="Readme" + RELOC/doc/fonts/cantarell/cantarell-samples.pdf details="Font samples" + RELOC/doc/fonts/cantarell/cantarell-samples.tex + RELOC/doc/fonts/cantarell/cantarell.pdf details="Package documentation" + RELOC/doc/fonts/cantarell/cantarell.tex + RELOC/doc/fonts/cantarell/manifest.txt +srccontainersize 190708 +srccontainerchecksum eaf1ae6c6516aafee6aa20a72b86996f93c9920b45e3e661f02d0d5cc6ac9a3894db3ca84ef4d8c70ae8ea82e6ef90b47daffd0cbd6b5afa73cb6edbd916c4dc +srcfiles size=218 + RELOC/source/fonts/cantarell/Cantarell-Bold.sfd + RELOC/source/fonts/cantarell/Cantarell-Regular.sfd + RELOC/source/fonts/cantarell/Makefile + RELOC/source/fonts/cantarell/cantarell-01.etx + RELOC/source/fonts/cantarell/cantarell-02.etx + RELOC/source/fonts/cantarell/cantarell-03.etx + RELOC/source/fonts/cantarell/cantarell-drv.tex + RELOC/source/fonts/cantarell/cantarell-fixcyrillic.mtx + RELOC/source/fonts/cantarell/cantarell-fixgreek.mtx + RELOC/source/fonts/cantarell/cantarell-fixlatin.mtx + RELOC/source/fonts/cantarell/cantarell-fixtextcomp.mtx + RELOC/source/fonts/cantarell/cantarell-map.tex + RELOC/source/fonts/cantarell/sfd2type1.pe runfiles size=196 RELOC/fonts/afm/public/cantarell/Cantarell-Bold.afm RELOC/fonts/afm/public/cantarell/Cantarell-Regular.afm @@ -21624,37 +40222,47 @@ runfiles size=196 RELOC/tex/latex/cantarell/t2cfca.fd RELOC/tex/latex/cantarell/ts1fca.fd RELOC/tex/latex/cantarell/x2fca.fd -docfiles size=64 - RELOC/doc/fonts/cantarell/CHANGES - RELOC/doc/fonts/cantarell/README - RELOC/doc/fonts/cantarell/cantarell-samples.pdf - RELOC/doc/fonts/cantarell/cantarell-samples.tex - RELOC/doc/fonts/cantarell/cantarell.pdf - RELOC/doc/fonts/cantarell/cantarell.tex - RELOC/doc/fonts/cantarell/manifest.txt -srcfiles size=218 - RELOC/source/fonts/cantarell/Cantarell-Bold.sfd - RELOC/source/fonts/cantarell/Cantarell-Regular.sfd - RELOC/source/fonts/cantarell/Makefile - RELOC/source/fonts/cantarell/cantarell-01.etx - RELOC/source/fonts/cantarell/cantarell-02.etx - RELOC/source/fonts/cantarell/cantarell-03.etx - RELOC/source/fonts/cantarell/cantarell-drv.tex - RELOC/source/fonts/cantarell/cantarell-fixcyrillic.mtx - RELOC/source/fonts/cantarell/cantarell-fixgreek.mtx - RELOC/source/fonts/cantarell/cantarell-fixlatin.mtx - RELOC/source/fonts/cantarell/cantarell-fixtextcomp.mtx - RELOC/source/fonts/cantarell/cantarell-map.tex - RELOC/source/fonts/cantarell/sfd2type1.pe catalogue-ctan /fonts/cantarell -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics font font-sans font-type1 catalogue-version 2.4 +name capt-of +category Package +revision 29803 +shortdesc Captions on more than floats +relocated 1 +longdesc Defines a command \captionof for putting a caption to something +longdesc that's not a float. Note that the caption package includes a +longdesc \captionof command that is an extension of that provided by +longdesc this package. +containersize 1168 +containerchecksum f3b1b81aa5a8c2ed9d5ab94e2e242442674af957d3f987b0db459ff8ca920abaab43d46db234b92ab588bb5f7d4c587eccf586a87fd492659f5b088760859c62 +doccontainersize 72600 +doccontainerchecksum a8fa6b2a0787a3e52f3a9a22482ba9f9217ae97b985b4975c690d240ae040f4f1e17c3ea7439d53337e5a0815a66754d0e6c528417c04d7c6684d28e869f71d0 +docfiles size=22 + RELOC/doc/latex/capt-of/README details="Readme" + RELOC/doc/latex/capt-of/capt-of.pdf details="Package documentation" +srccontainersize 3396 +srccontainerchecksum 87d4bb47226cef478ada2482605b925a3ebb3c1ee1fc624f39e724a857101b113856d99bf659ec5e01ce6773e0f695e424c41ba0640f23a76e9721d06a1d4f56 +srcfiles size=3 + RELOC/source/latex/capt-of/capt-of.dtx + RELOC/source/latex/capt-of/capt-of.ins +runfiles size=1 + RELOC/tex/latex/capt-of/capt-of.sty +catalogue-also caption captdef +catalogue-contact-repository https://github.com/rf-latex/capt-of +catalogue-contact-support https://github.com/rf-latex/capt-of/issues +catalogue-ctan /macros/latex/contrib/capt-of +catalogue-date 2018-09-14 18:00:39 +0200 +catalogue-license lppl +catalogue-topics caption + name captcont category Package revision 15878 -shortdesc Retain float number across several floats. +shortdesc Retain float number across several floats relocated 1 longdesc The captcont package provides the ability to continue the longdesc numbering in your float environment (figure, table, etc.) with @@ -21665,26 +40273,33 @@ longdesc text and the entries in the list-of pages. The \caption and longdesc \captcont commands generate list-of page entries. The \caption longdesc and \caption* commands increment the figure or table counter. longdesc Captcont also fully supports the subfigure package. -runfiles size=2 - RELOC/tex/latex/captcont/captcont.sty +containersize 2232 +containerchecksum b5002e8ea4fc8ca1840190e8a2d40540576dc5e17110da473a8981198e3f24c858644b181545be3bed6275cd0e0bb9848a6058adfc8dbef26956e0754c4e4699 +doccontainersize 100532 +doccontainerchecksum 91bdb436163ff745f3aecc67eec747ef5a1853035d86258bbe23a080a92b3393f72b4029bad719765663c94e79217df4edf753be930a3e4b62f0b999c296ea86 docfiles size=36 - RELOC/doc/latex/captcont/README - RELOC/doc/latex/captcont/captcont.pdf + RELOC/doc/latex/captcont/README details="Readme" + RELOC/doc/latex/captcont/captcont.pdf details="Package documentation" RELOC/doc/latex/captcont/ltxdoc.cfg RELOC/doc/latex/captcont/test.tex +srccontainersize 9796 +srccontainerchecksum 9c9f8b2785ce2620db8e5c373cd2eee4d9aa3cd8eb47c648625ca7250e7ace861d9dbc31432a7dd7d0f6c7ccd48b43aba74df519d72e3fa1a3c9546de946e591 srcfiles size=11 RELOC/source/latex/captcont/Makefile RELOC/source/latex/captcont/captcont.dtx RELOC/source/latex/captcont/captcont.ins +runfiles size=2 + RELOC/tex/latex/captcont/captcont.sty catalogue-ctan /macros/latex/contrib/captcont -catalogue-date 2012-04-27 20:27:12 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics caption catalogue-version 2.0 name captdef category Package revision 17353 -shortdesc Declare free-standing \caption commands. +shortdesc Declare free-standing \caption commands relocated 1 longdesc The \DeclareCaption command defines a class of caption command longdesc associated with the counter specified to the command. These @@ -21692,20 +40307,28 @@ longdesc commands are free-standing (i.e., don't need to be inside a longdesc float environment). The package uses \DeclareCaption to define longdesc \figcaption and \tabcaption, which can be used outside figure longdesc or table environments. -runfiles size=1 - RELOC/tex/latex/captdef/captdef.sty +containersize 1140 +containerchecksum c24a7d66c1daa3a9c336a8555286876aea9e969a4107c42c258f0f4c9a88070316df70e0f2a860adb6335a33e49cdd7a9ba8391255f1e1fb283bd2f6a7e7b343 +doccontainersize 216228 +doccontainerchecksum c0a1a4584d0802eda39812d2c293fabed2487b0cedb57df622519d5857c2ef10e54e66032e9e9ee9ab81c757fb827eabf422b1bf2ab0ae6f7c22ab3aecb49a8f docfiles size=57 - RELOC/doc/latex/captdef/captdef.pdf + RELOC/doc/latex/captdef/captdef.pdf details="Package documentation" RELOC/doc/latex/captdef/captdef.tex RELOC/doc/latex/captdef/miscdoc.sty +runfiles size=1 + RELOC/tex/latex/captdef/captdef.sty +catalogue-also capt-of +catalogue-contact-repository https://github.com/rf-latex/captdef +catalogue-contact-support https://github.com/rf-latex/captdef/issues catalogue-ctan /macros/latex/contrib/captdef -catalogue-date 2012-04-27 20:27:12 +0200 +catalogue-date 2018-09-15 15:27:07 +0200 catalogue-license lppl +catalogue-topics caption name caption category Package -revision 30449 -shortdesc Customising captions in floating environments. +revision 48863 +shortdesc Customising captions in floating environments relocated 1 longdesc The caption package provides many ways to customise the longdesc captions in floating environments like figure and table, and @@ -21716,28 +40339,25 @@ longdesc compatibility notes, for other packages, is provided in the longdesc documentation. The package also provides the "caption outside longdesc float" facility, in the same way that simpler packages like longdesc capt-of do. The package supersedes caption2. -runfiles size=51 - RELOC/tex/latex/caption/bicaption.sty - RELOC/tex/latex/caption/caption.sty - RELOC/tex/latex/caption/caption2.sty - RELOC/tex/latex/caption/caption3.sty - RELOC/tex/latex/caption/ltcaption.sty - RELOC/tex/latex/caption/newfloat.sty - RELOC/tex/latex/caption/subcaption.sty - RELOC/tex/latex/caption/totalcount.sty +containersize 33520 +containerchecksum 53f72beb905f0caa8854b4ba3ec56034a8049d48f1a4e776fda530ae1798070899c1c7388f429a22b0284f41b9d351715637f4571787fa2ad029b92102537fdb +doccontainersize 1677000 +doccontainerchecksum f5855cf64ed8b3756ebab3bef9dc3caec89fc615c7dff4d836f376f69d29bcac6c28b8e074663fda7a2a5411c72b8f4ddfc46a2ff2426c0dbbbd3a65a69aa8a7 docfiles size=456 RELOC/doc/latex/caption/CHANGELOG - RELOC/doc/latex/caption/README + RELOC/doc/latex/caption/README details="Readme" RELOC/doc/latex/caption/SUMMARY RELOC/doc/latex/caption/bicaption.pdf - RELOC/doc/latex/caption/caption-deu.pdf - RELOC/doc/latex/caption/caption-eng.pdf - RELOC/doc/latex/caption/caption-rus.pdf + RELOC/doc/latex/caption/caption-deu.pdf details="German documentation" language="de" + RELOC/doc/latex/caption/caption-eng.pdf details="English documentation" language="en" + RELOC/doc/latex/caption/caption-rus.pdf details="Russian documentation" language="ru" RELOC/doc/latex/caption/ltcaption.pdf RELOC/doc/latex/caption/newfloat.pdf RELOC/doc/latex/caption/subcaption.pdf RELOC/doc/latex/caption/totalcount.pdf -srcfiles size=296 +srccontainersize 199392 +srccontainerchecksum 04abdb55a9f6aae454534d1ed130def48859de297a86408cea8a6776cbe83a8a1b306ceabac6cf54c6aab959c37e770815788d520c73ad77e70d0d8ed0f824c0 +srcfiles size=299 RELOC/source/latex/caption/bicaption.dtx RELOC/source/latex/caption/caption-deu.tex RELOC/source/latex/caption/caption-eng.tex @@ -21752,47 +40372,78 @@ srcfiles size=296 RELOC/source/latex/caption/newfloat.dtx RELOC/source/latex/caption/subcaption.dtx RELOC/source/latex/caption/totalcount.dtx +runfiles size=53 + RELOC/tex/latex/caption/bicaption.sty + RELOC/tex/latex/caption/caption.sty + RELOC/tex/latex/caption/caption2.sty + RELOC/tex/latex/caption/caption3.sty + RELOC/tex/latex/caption/ltcaption.sty + RELOC/tex/latex/caption/newfloat.sty + RELOC/tex/latex/caption/subcaption.sty + RELOC/tex/latex/caption/totalcount.sty +catalogue-also subcaption bicaption +catalogue-contact-bugs https://gitlab.com/axelsommerfeldt/caption/issues +catalogue-contact-repository https://gitlab.com/axelsommerfeldt/caption catalogue-ctan /macros/latex/contrib/caption -catalogue-date 2015-02-23 19:45:15 +0100 +catalogue-date 2018-10-05 12:42:16 +0200 catalogue-license lppl1.3 - -name capt-of -category Package -revision 29803 -shortdesc Captions on more than floats. -relocated 1 -longdesc Defines a command \captionof for putting a caption to something -longdesc that's not a float. Note that the caption package includes a -longdesc \captionof command that is an extension of that provided by -longdesc this package. -runfiles size=1 - RELOC/tex/latex/capt-of/capt-of.sty -docfiles size=22 - RELOC/doc/latex/capt-of/README - RELOC/doc/latex/capt-of/capt-of.pdf -srcfiles size=3 - RELOC/source/latex/capt-of/capt-of.dtx - RELOC/source/latex/capt-of/capt-of.ins -catalogue-ctan /macros/latex/contrib/capt-of -catalogue-date 2012-04-27 20:27:12 +0200 -catalogue-license lppl +catalogue-topics caption float + +name carbohydrates +category Package +revision 39000 +shortdesc Carbohydrate molecules with chemfig +relocated 1 +longdesc This package offers macros that make the preparation of +longdesc exercise sheets for teaching carbohydrate chemistry a lot less +longdesc tedious. It uses chemfig for drawing the formulas. Different +longdesc representation models (Fischer, Haworth, chair...) are +longdesc supported as well as alpha, beta, and chain isomers. +containersize 5180 +containerchecksum dfccca523ef4ea2c9bba9ebdbed7f6bbce1ab0739be02118231d1eb449bc826dd5e96406d5e009239a1bf25088e8df289e2e66423a536d76cf592af1a50f276a +doccontainersize 483796 +doccontainerchecksum 67de0675fbe00573058f428d34779b3423d1c9a7d47be5f8f1c3ba6b3cfb6783f5f1a945c1f201bb719bfe835ef035dfb56864a13ba0f12e0e83ef1ca0ce059d +docfiles size=123 + RELOC/doc/latex/carbohydrates/README details="Readme" + RELOC/doc/latex/carbohydrates/carbohydrates_en.pdf details="Package documentation" + RELOC/doc/latex/carbohydrates/carbohydrates_en.tex + RELOC/doc/latex/carbohydrates/test.tex +runfiles size=7 + RELOC/tex/latex/carbohydrates/carbohydrates.sty +catalogue-contact-repository https://github.com/cgnieder/carbohydrates/ +catalogue-ctan /macros/latex/contrib/carbohydrates +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics diagram chemistry +catalogue-version 0.1 name carlisle category Package -revision 18258 -shortdesc David Carlisle's small packages. +revision 47876 +shortdesc David Carlisle's small packages relocated 1 longdesc Many of David Carlisle's more substantial packages stand on -longdesc their own, or as part of the LaTeX tools set; this set +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 have them; A method for combining the capabilities of longtable +longdesc and tabularx; A proforma for building personalised LaTeX +longdesc formats; 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. +longdesc reset lists (now obsolete as it has been incorporated into the +longdesc LaTeX format); A jiffy to create 'slashed' characters for +longdesc physicists. +containersize 11400 +containerchecksum d3e743a5e614479167ead02eabfefeffc8006e27c486fb5c57f1cb94278418f86db0431c752310bc1f7cda6dad22b1610edf4d24742391f6b743cad4ea050344 +doccontainersize 72752 +doccontainerchecksum 8d49c9d72669bffa042defaa53b4bdacf2e107753608747162947f05ad8438b9463afd905a376e462e6491293cf0c4a202e0b76db965854c19b97641d0a7d295 +docfiles size=20 + RELOC/doc/latex/carlisle/README.txt details="Bundle README" + RELOC/doc/latex/carlisle/ltx1.tex + RELOC/doc/latex/carlisle/ltxtable.pdf details="Documentation of ltxtable" +srccontainersize 2884 +srccontainerchecksum 83417675f97cd8235ad3a38f3e333596188e717573a8739e41c1041d1641e1e53d48f189f6c01a58509ea8ca1c5d755c56aeeb9842e205c9aa8a01cfc7f688e9 +srcfiles size=2 + RELOC/source/latex/carlisle/ltxtable.tex runfiles size=11 RELOC/tex/latex/carlisle/dotlessj.sty RELOC/tex/latex/carlisle/ltxtable.sty @@ -21801,15 +40452,10 @@ runfiles size=11 RELOC/tex/latex/carlisle/remreset.sty RELOC/tex/latex/carlisle/scalefnt.sty RELOC/tex/latex/carlisle/slashed.sty -docfiles size=9 - RELOC/doc/latex/carlisle/README - RELOC/doc/latex/carlisle/ltx1.tex - RELOC/doc/latex/carlisle/ltxtable.pdf -srcfiles size=2 - RELOC/source/latex/carlisle/ltxtable.tex catalogue-ctan /macros/latex/contrib/carlisle -catalogue-date 2014-10-16 15:02:48 +0200 +catalogue-date 2018-05-30 10:45:25 +0200 catalogue-license lppl +catalogue-topics collection name carlito category Package @@ -21822,6 +40468,16 @@ longdesc Lukasz Dziedzic of the tyPoland foundry and adopted by Google longdesc for ChromeOS as a font-metric compatible replacement for longdesc Calibri. execute addMap carlito.map +containersize 2726328 +containerchecksum 57575185b89cf337f612f3e5b8458502e0d86a49c992d40f8cdb390417b0387fb0039ec316fa807fcddad7795e9f6617f62cf0bd6827bb654ac28231f65bc0a8 +doccontainersize 354048 +doccontainerchecksum b656565ef24d9939545e52af7bafcfc8a3613d0f206e1aab455e339c1d2590e930207db24033c8585a1e7950ec9f550d3b37a0c1adf456800b85ef63b68f875d +docfiles size=101 + RELOC/doc/fonts/carlito/Carlito-Regular.pdf details="Font tables" + RELOC/doc/fonts/carlito/LICENSE + RELOC/doc/fonts/carlito/README details="Readme" + RELOC/doc/fonts/carlito/samples.pdf details="Font samples" + RELOC/doc/fonts/carlito/samples.tex runfiles size=1561 RELOC/fonts/enc/dvips/carlito/crlt_57h366.enc RELOC/fonts/enc/dvips/carlito/crlt_bxv5ge.enc @@ -22043,27 +40699,29 @@ runfiles size=1561 RELOC/tex/latex/carlito/TS1Carlito-TLF.fd RELOC/tex/latex/carlito/TS1Carlito-TOsF.fd RELOC/tex/latex/carlito/carlito.sty -docfiles size=101 - RELOC/doc/fonts/carlito/Carlito-Regular.pdf - RELOC/doc/fonts/carlito/LICENSE - RELOC/doc/fonts/carlito/README - RELOC/doc/fonts/carlito/samples.pdf - RELOC/doc/fonts/carlito/samples.tex +catalogue-contact-home http://gsdview.appspot.com/chromeos-localmirror/distfiles/crosextrafonts-carlito-20130920.tar.gz catalogue-ctan /fonts/carlito -catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license ofl +catalogue-topics font font-ttf font-type1 font-sans name carolmin-ps category Package revision 15878 catalogue carolmin-t1 -shortdesc Adobe Type 1 format of Carolingian Minuscule fonts. +shortdesc Adobe Type 1 format of Carolingian Minuscule fonts relocated 1 longdesc The bundle offers Adobe Type 1 format versions of Peter longdesc Wilson's Carolingian Minuscule font set (part of the bookhands longdesc collection). The fonts in the bundle are ready-to-use longdesc replacements for the Metafont originals. execute addMap cmin.map +containersize 105236 +containerchecksum 61ae809b5e4e7ff493de30ebb825870ab9caa8dc64d6d3c82d4654fece82dece4937c798e3c1e5086a84411edbcaf8c2ea777a9534865b38d4bc5457ae59aa25 +doccontainersize 520 +doccontainerchecksum 284d9f740d1e4b1a4c989b527bac80e54afa74013d1234bf9e1c2d42ac2ca4387c3b0d24004818e1fb92b001582114a4432480804c721cc7df0bd3b85835f111 +docfiles size=1 + RELOC/doc/fonts/carolmin-ps/README runfiles size=38 RELOC/fonts/afm/public/carolmin-ps/cmin10.afm RELOC/fonts/afm/public/carolmin-ps/cmin17.afm @@ -22078,34 +40736,66 @@ runfiles size=38 RELOC/fonts/type1/public/carolmin-ps/cminb10.pfb RELOC/fonts/type1/public/carolmin-ps/cminb17.pfb RELOC/fonts/type1/public/carolmin-ps/cminb7.pfb -docfiles size=1 - RELOC/doc/fonts/carolmin-ps/README catalogue-ctan /fonts/carolmin-ps -catalogue-date 2014-04-07 15:39:41 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-bookhand font-type1 + +name cascade +category Package +revision 48200 +shortdesc Constructions with braces to present mathematical demonstrations +relocated 1 +longdesc The LaTeX package cascade provides a command \Cascade to do +longdesc constructions to present mathematical demonstrations with +longdesc successive braces for the deductions. +containersize 1840 +containerchecksum d72e9c46f4228af10abc33e96818ee488d09389d21575b40cec183c03664c63cf7dc7b9dc319b0fb775c41b5c9df8f767d06d131ada730f9b8dfb655111fd7fe +doccontainersize 71224 +doccontainerchecksum d74ad316352672ad753f48e1b1c317dbdf402927d75d583d85d85367ceac69228e81b726b575e84d2746a709457e18d25817ebe7850dd17ca07515192749b713 +docfiles size=20 + RELOC/doc/latex/cascade/README.md details="Readme" + RELOC/doc/latex/cascade/cascade.pdf details="Package documentation" +srccontainersize 5028 +srccontainerchecksum 53ef700bc723b28b36ffde548b030639e467fa1fd41570179b7ae9661c3d4a9911d9dc765362ce46178d06d3a67dfa1fb408e8f074141c80d32de437554a3b9f +srcfiles size=6 + RELOC/source/latex/cascade/cascade.dtx + RELOC/source/latex/cascade/cascade.ins +runfiles size=2 + RELOC/tex/latex/cascade/cascade.sty +catalogue-ctan /macros/latex/contrib/cascade +catalogue-date 2018-07-13 05:39:51 +0200 +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 1.01 name cascadilla category Package revision 25144 -shortdesc Typeset papers conforming to the stylesheet of the Cascadilla Proceedings Project. +shortdesc Typeset papers conforming to the stylesheet of the Cascadilla Proceedings Project relocated 1 longdesc The class provides an extension of the standard LaTeX article longdesc class that may be used to typeset papers conforming to the longdesc stylesheet of the Cascadilla Proceedings Project, which is used longdesc by a number of linguistics conference proceedings (e.g., longdesc WCCFL). -runfiles size=11 - RELOC/bibtex/bst/cascadilla/cascadilla.bst - RELOC/tex/latex/cascadilla/cascadilla.cls +containersize 9668 +containerchecksum df66bd91562f3678e2ef42f16a4a0c4af95209fb28b1176b5b63968632b3235391180b06431a42afdc73a9e4f97f47c8c954ed1ef2ccb746cdbf1d65058ad919 +doccontainersize 88068 +doccontainerchecksum 2c15b786f550642c26cc8f5e0151dd5b31e964b46d59837b3f1ccbe118fba6ad8f06f86c6a5bdc6a791615929bf4c9b7c2287f930d1ca3c8bd6c2d0d7ddf64b2 docfiles size=32 RELOC/doc/latex/cascadilla/LICENSE.txt - RELOC/doc/latex/cascadilla/README - RELOC/doc/latex/cascadilla/example.pdf + RELOC/doc/latex/cascadilla/README details="Readme" + RELOC/doc/latex/cascadilla/example.pdf details="Example document" RELOC/doc/latex/cascadilla/example.tex RELOC/doc/latex/cascadilla/exampleref.bib +runfiles size=11 + RELOC/bibtex/bst/cascadilla/cascadilla.bst + RELOC/tex/latex/cascadilla/cascadilla.cls catalogue-ctan /macros/latex/contrib/cascadilla -catalogue-date 2012-01-18 17:26:55 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics journalpub catalogue-version 1.8.2 name cases @@ -22118,40 +40808,51 @@ longdesc alternative right-hand sides, with equation numbers for each longdesc alternative. Also environment subnumcases, where each longdesc alternative is a sub-number (e.g., 8a, 8b, ...) of the equation longdesc set as a whole. -runfiles size=2 - RELOC/tex/latex/cases/cases.sty +containersize 3632 +containerchecksum 43d512d0a408c82b80cd3cc93ad858ded8a0af5634557e1a67fd41cdbef6f3df5d42d9f3e910d05fc203b741f9fb374271d22b2a22c4704010b934237e055c82 +doccontainersize 306892 +doccontainerchecksum 1d09e32e370635db9c9d3bb618b51da7c16f178b6d6639eb7e4247b67e12036ddea3095a41dee4ea4746eee8ea7ec33ceed5e3f84473dc5c08ef078734a02589 docfiles size=81 - RELOC/doc/latex/cases/cases.pdf + RELOC/doc/latex/cases/cases.pdf details="Package documentation" RELOC/doc/latex/cases/cases.tex +runfiles size=2 + RELOC/tex/latex/cases/cases.sty catalogue-ctan /macros/latex/contrib/cases -catalogue-date 2012-11-14 11:01:29 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics maths-syseqn catalogue-version 2.5 name casyl category Package revision 15878 -shortdesc Typeset Cree/Inuktitut in Canadian Aboriginal Syllabics. +shortdesc Typeset Cree/Inuktitut in Canadian Aboriginal Syllabics relocated 1 longdesc The bundle constitutes a font (as Metafont source) and LaTeX longdesc macros for its use within a document. +containersize 5796 +containerchecksum 1536d4fe6c0cc647def47d3686ac73757da8b4ebbb99a5188e78944d59350c0da731f2e51a40c94a1e05b225a793f292766de4221792804887b4350631c8a24b +doccontainersize 73008 +doccontainerchecksum 74adbaee46656ad57512a11986f834239d60259eb45014e2c738f7f5b5bb47897185528c0feeb96c45ab7d6c04e679e1858417a93db791b72b5eea1cf828c0ce +docfiles size=26 + RELOC/doc/latex/casyl/README + RELOC/doc/latex/casyl/casyldoc.pdf details="Package documentation" + RELOC/doc/latex/casyl/casyldoc.tex runfiles size=9 RELOC/fonts/source/public/casyl/casyll10.mf RELOC/fonts/tfm/public/casyl/casyll10.tfm RELOC/tex/latex/casyl/casyltex.sty -docfiles size=26 - RELOC/doc/latex/casyl/README - RELOC/doc/latex/casyl/casyldoc.pdf - RELOC/doc/latex/casyl/casyldoc.tex +catalogue-also oinuit catalogue-ctan /language/casyl -catalogue-date 2012-04-27 22:37:01 +0200 +catalogue-date 2017-10-29 14:24:36 +0100 catalogue-license pd +catalogue-topics linguistic font font-mf catalogue-version 2.0 name catchfilebetweentags category Package revision 21476 -shortdesc Catch text delimited by docstrip tags. +shortdesc Catch text delimited by docstrip tags relocated 1 longdesc This package (built using the facilities of catchfile) provides longdesc a macro \catchfilebetweentags acts like the original \catchfile @@ -22159,24 +40860,31 @@ longdesc but only extracts a portion of the file instead of the complete longdesc file. The extracted portion can be delimited by strings or by longdesc docstrip tags: %<*tag> .... % (comments in the caught longdesc region may be included or dropped). -runfiles size=1 - RELOC/tex/latex/catchfilebetweentags/catchfilebetweentags.sty +containersize 1968 +containerchecksum 71656fb162aae4fccf15767911b8524c4f3a72f4c6fbeaea45a3dd9593489ec7644e7c10ab61a49cdd125ffe56e61331c30e35a10517720948d4f03b97b20056 +doccontainersize 140092 +doccontainerchecksum 4071d6d6ada488b5bbbac0df3b7604939fafbebc17808430d8bd389b86a8aeca0df90da77fb00f8be14af9e9a79c45bf5a2dc0b9ea45af34f60cbce83810e1a5 docfiles size=48 - RELOC/doc/latex/catchfilebetweentags/README - RELOC/doc/latex/catchfilebetweentags/catchfilebetweentags.pdf + RELOC/doc/latex/catchfilebetweentags/README details="Readme" + RELOC/doc/latex/catchfilebetweentags/catchfilebetweentags.pdf details="Package documentation" +srccontainersize 9544 +srccontainerchecksum 0d0e6436d1e065fd518a743fd39062f1ef9a86f450130a2339ae59e5af0a9fd0ebeaf72a66301c8ad42c6e218a01bef48c977044cf284c98cbf25e6c8f1773b9 srcfiles size=10 RELOC/source/latex/catchfilebetweentags/catchfilebetweentags.drv RELOC/source/latex/catchfilebetweentags/catchfilebetweentags.dtx RELOC/source/latex/catchfilebetweentags/catchfilebetweentags.ins +runfiles size=1 + RELOC/tex/latex/catchfilebetweentags/catchfilebetweentags.sty catalogue-ctan /macros/latex/contrib/catchfilebetweentags -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics macro-supp catalogue-version 1.1 name catcodes category Package -revision 28210 -shortdesc Generic handling of TeX category codes. +revision 38859 +shortdesc Generic handling of TeX category codes relocated 1 longdesc The bundle deals with category code switching; the packages of longdesc the bundle should work with any TeX format (with the support of @@ -22185,52 +40893,69 @@ longdesc supports stacks that control the use of different catcodes; longdesc actcodes.sty, which deals with active characters; and longdesc catchdq.sty, which provides a simple quotation character longdesc control mechanism. -runfiles size=7 - RELOC/tex/generic/catcodes/actcodes.sty - RELOC/tex/generic/catcodes/catchdq.sty - RELOC/tex/generic/catcodes/catcodes.RLS - RELOC/tex/generic/catcodes/stacklet.sty -docfiles size=147 - RELOC/doc/generic/catcodes/README +containersize 6288 +containerchecksum 6eeba6d0c7435050e5ca07a6b0a24bca1714a9ba3d3a20168547502c2ec954b9d74918767c9728c1595355fdb84eb74ef258fee86cae1907fc5b186ccac0a939 +doccontainersize 542996 +doccontainerchecksum 4dbf09f34abc39d9aa5003ce3defe4f5a04b0cade5d6a848bbde4ff3f35ff6bd511b8dd8dade14f92b1ba38bda2595da65da589b0236920c7aa340d245e0cb7c +docfiles size=135 + RELOC/doc/generic/catcodes/README details="Readme" RELOC/doc/generic/catcodes/SrcFILEs.txt - RELOC/doc/generic/catcodes/catcodes.pdf -srcfiles size=7 + RELOC/doc/generic/catcodes/catcodes.pdf details="Package documentation" +srccontainersize 6940 +srccontainerchecksum 157520a8e968f5236add71d55aab0ddec48eeac801349ae1900cf70bcaf1faa4cfe98632ac5fa41cabee6dfb6fa46655a609023329d161cad06ece33f10d03d7 +srcfiles size=8 RELOC/source/generic/catcodes/catcodes.tex RELOC/source/generic/catcodes/fdatechk.tex RELOC/source/generic/catcodes/makedoc.cfg RELOC/source/generic/catcodes/mdoccorr.cfg RELOC/source/generic/catcodes/srcfiles.tex +runfiles size=7 + RELOC/tex/generic/catcodes/actcodes.sty + RELOC/tex/generic/catcodes/catchdq.sty + RELOC/tex/generic/catcodes/catcodes.RLS + RELOC/tex/generic/catcodes/stacklet.sty +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html catalogue-ctan /macros/generic/catcodes -catalogue-date 2014-10-16 15:02:48 +0200 +catalogue-date 2017-05-05 20:28:50 +0200 catalogue-license lppl1.3 -catalogue-version 0.3a +catalogue-topics macro-supp quote-marks macro-gen +catalogue-version r0.2 name catechis category Package -revision 15878 -shortdesc Macros for typesetting catechisms. +revision 49061 +shortdesc Macros for typesetting catechisms relocated 1 longdesc The macros include: format for question-and-answer; comments on -longdesc answers; citations; a specialised enumerate which only operates -longdesc in the catechism parts of a document. The macros are all highly -longdesc customisable. -runfiles size=7 - RELOC/tex/latex/catechis/catechis.sty -docfiles size=45 - RELOC/doc/latex/catechis/README - RELOC/doc/latex/catechis/catechis.pdf - RELOC/doc/latex/catechis/test.tex -srcfiles size=1 +longdesc answers; lengthier explanations of answers; citations. The +longdesc formatting of all the macros is highly (and simply) +longdesc customizable. +containersize 1664 +containerchecksum 2fb8f8ae6f9e597740edbdd0e686f9715dbd4ad2df2cf9d3737b09d1ef496582e243b8e21414fab8cb89d3d5a8ad30a4d82276551ad6fa548895c6cbc7612cb9 +doccontainersize 395344 +doccontainerchecksum 2273842b6b0222c98736fe6338eec505e5a75ca45d180c259bb3073ed47a5d0bab65fbb95630076f764db64d978ad8b3dbdb6a12775d2af3ea730c9d1b938bf6 +docfiles size=102 + RELOC/doc/latex/catechis/CHANGES + RELOC/doc/latex/catechis/README details="Readme" + RELOC/doc/latex/catechis/catechis.pdf details="Package documentation" + RELOC/doc/latex/catechis/lppl.txt +srccontainersize 6420 +srccontainerchecksum bd78292392877d0694fc085ab92e64ea47df555103ac745c8a0751ac445d0c74a034bfa9be1b39a3e16c0578da7bb68c7635a359f3caf69a2dd3d03ad21b51fb +srcfiles size=7 + RELOC/source/latex/catechis/catechis.dtx RELOC/source/latex/catechis/catechis.ins +runfiles size=1 + RELOC/tex/latex/catechis/catechis.sty catalogue-ctan /macros/latex/contrib/catechis -catalogue-date 2014-10-16 15:02:48 +0200 -catalogue-license lppl -catalogue-version 1.1 +catalogue-date 2018-11-02 22:33:14 +0100 +catalogue-license lppl1.3 +catalogue-topics theology +catalogue-version 2.5 name catoptions category Package revision 35069 -shortdesc Preserving and recalling standard catcodes. +shortdesc Preserving and recalling standard catcodes relocated 1 longdesc The package changes package loading internals so that all longdesc subsequently loaded packages can rely on normal/standard @@ -22241,21 +40966,26 @@ longdesc (XDeclareOption, XExecuteOptions and XProcessOptions, which longdesc will be used by \documentclass if the package has already been longdesc loaded). The package also provides a range of other TeX longdesc programming tools. +containersize 37784 +containerchecksum 1169ec654a56230c615f561649ca1fc22716eaee05e5229d1d2320ff73717b708abb98789d7457093e5ab5f2dc67f3e818e58c7e8f32c8f29014e19548f02de1 +doccontainersize 19124 +doccontainerchecksum 4c35a3fc5829e3492fad27f2635bb4ae62b17b5d012db40fcdc5929ffe0f3917ec76c12a940d5fc6dad2b8d7d9d12042c7f5c2350467ba0777a23c97372cca5c +docfiles size=19 + RELOC/doc/latex/catoptions/README details="Readme" + RELOC/doc/latex/catoptions/catoptions-guide.tex runfiles size=47 RELOC/tex/latex/catoptions/catoptions-guide.cfg RELOC/tex/latex/catoptions/catoptions.sty -docfiles size=19 - RELOC/doc/latex/catoptions/README - RELOC/doc/latex/catoptions/catoptions-guide.tex catalogue-ctan /macros/latex/contrib/catoptions -catalogue-date 2014-09-02 11:13:03 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics macro-supp keyval catalogue-version 0.2.7h name cbcoptic category Package revision 16666 -shortdesc Coptic fonts and LaTeX macros for general usage and for philology. +shortdesc Coptic fonts and LaTeX macros for general usage and for philology relocated 1 longdesc CBcoptic is a bundle of files for typesetting Coptic longdesc philological text with the proper fonts and hyphenation. The @@ -22264,6 +40994,15 @@ longdesc coptic bundle. The CBcoptic bundle includes font description longdesc files, Metafont sources and equivalent Adobe Type 1 fonts in longdesc pfb format. The bundle also includes a package that provides longdesc some macros of philological interest. +containersize 100688 +containerchecksum 7d48e324b5c5ff5b0755903973e0b439025e98277269f21cae33709a6c39eb6df7cd8f054b22fb8b1c072cabf9e92d0f1456cb41fbdd5a6e99bc0d63952e6c3c +doccontainersize 189788 +doccontainerchecksum e7e33c5af518e7fc4f8fb15af79a9aefc1ab8cb4401d0eecbd6b418acfb01c2fa790d4d7f55206ec9d6d865aa177b2872f4d742bec2991e7118df4b834341af2 +docfiles size=56 + RELOC/doc/latex/cbcoptic/README details="Readme" + RELOC/doc/latex/cbcoptic/coptfont.pdf details="Font details and samples" + RELOC/doc/latex/cbcoptic/testcop.tex + RELOC/doc/latex/cbcoptic/testcopOK.pdf runfiles size=72 RELOC/fonts/source/public/cbcoptic/coptbase.mf RELOC/fonts/source/public/cbcoptic/copti.mf @@ -22275,52 +41014,17 @@ runfiles size=72 RELOC/tex/latex/cbcoptic/coptic.sty RELOC/tex/latex/cbcoptic/lcopcoptic.fd RELOC/tex/latex/cbcoptic/prnthyph.sty -docfiles size=56 - RELOC/doc/latex/cbcoptic/README - RELOC/doc/latex/cbcoptic/coptfont.pdf - RELOC/doc/latex/cbcoptic/testcop.tex - RELOC/doc/latex/cbcoptic/testcopOK.pdf catalogue-ctan /language/coptic/cbcoptic -catalogue-date 2012-04-27 23:42:38 +0200 +catalogue-date 2017-10-29 14:28:43 +0100 catalogue-license lppl +catalogue-topics coptic font font-mf font-type1 catalogue-version 0.2 -name cbfonts-fd -category Package -revision 31624 -shortdesc LaTeX font description files for the CB Greek fonts. -relocated 1 -longdesc The package provides font description files for all the many -longdesc shapes available from the cbfonts collection. The files provide -longdesc the means whereby the NFSS knows which fonts a LaTeX user is -longdesc requesting. -runfiles size=12 - RELOC/tex/latex/cbfonts-fd/lgrcmr.fd - RELOC/tex/latex/cbfonts-fd/lgrcmro.fd - RELOC/tex/latex/cbfonts-fd/lgrcmss.fd - RELOC/tex/latex/cbfonts-fd/lgrcmtt.fd - RELOC/tex/latex/cbfonts-fd/lgrlcmss.fd - RELOC/tex/latex/cbfonts-fd/lgrlcmtt.fd - RELOC/tex/latex/cbfonts-fd/lgrlmr.fd - RELOC/tex/latex/cbfonts-fd/lgrlmro.fd - RELOC/tex/latex/cbfonts-fd/lgrlmss.fd - RELOC/tex/latex/cbfonts-fd/lgrlmtt.fd -docfiles size=162 - RELOC/doc/fonts/cbfonts-fd/README - RELOC/doc/fonts/cbfonts-fd/cbfonts-fd.pdf - RELOC/doc/fonts/cbfonts-fd/manifest.txt -srcfiles size=8 - RELOC/source/fonts/cbfonts-fd/cbfonts-fd.fdd -catalogue-ctan /fonts/greek/cbfonts-fd -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0 - name cbfonts category Package revision 31624 catalogue cbgreek-complete -shortdesc Complete set of Greek fonts. +shortdesc Complete set of Greek fonts relocated 1 longdesc This bundle presents the whole of Beccari's original Greek font longdesc set, which use the 'Lispiakos' font shape derived from the @@ -22330,6 +41034,15 @@ longdesc format, and at the same wide set of design sizes as are such longdesc font sets as the EC fonts. depend cbfonts-fd execute addMixedMap cbgreek-full.map +containersize 66006508 +containerchecksum 652472d9251cc9090906627a823fbaef3015ce0a5db5d08a347f6bb496303adb65339ccc2cd55c19df489512ba06c605342ba2871f99175685259415f6d3bc0a +doccontainersize 428688 +doccontainerchecksum 5168d8ae6380b6d7521e99037bc2b28c13f135aac9a3cda160c103d3fdd17555e1b6ffd371e8aba968d74cf50ac1d01a7415977f8efbfd1a8841ca4ce730e66e +docfiles size=149 + RELOC/doc/fonts/cbfonts/README details="Readme" + RELOC/doc/fonts/cbfonts/cbgreek.pdf details="Package documentation" + RELOC/doc/fonts/cbfonts/cbgreek.tex + RELOC/doc/fonts/cbfonts/grmn1000table.pdf details="Sample font table" runfiles size=20512 RELOC/fonts/enc/dvips/cbfonts/CB.enc RELOC/fonts/enc/dvips/cbfonts/gmtr.enc @@ -25253,19 +43966,111 @@ runfiles size=20512 RELOC/fonts/type1/public/cbfonts/gttu2488.pfb RELOC/fonts/type1/public/cbfonts/gttu2986.pfb RELOC/fonts/type1/public/cbfonts/gttu3583.pfb -docfiles size=149 - RELOC/doc/fonts/cbfonts/README - RELOC/doc/fonts/cbfonts/cbgreek.pdf - RELOC/doc/fonts/cbfonts/cbgreek.tex - RELOC/doc/fonts/cbfonts/grmn1000table.pdf catalogue-ctan /fonts/greek/cbfonts -catalogue-date 2014-04-24 13:41:31 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics greek font font-greek font-mf font-type1 + +name cbfonts-fd +category Package +revision 44917 +shortdesc LaTeX font description files for the CB Greek fonts +relocated 1 +longdesc The package provides font description files for all the many +longdesc shapes available from the cbfonts collection. The files provide +longdesc the means whereby the NFSS knows which fonts a LaTeX user is +longdesc requesting. +containersize 3308 +containerchecksum f892af7e63b4376f2d82d886516f6b25d362f8dc627435b4f353a72926f25c3867af1fb42a4083ebd16bddd05ea797d643b94f556cea37495fa0fb7786e33b3e +doccontainersize 444284 +doccontainerchecksum dc2b0570e042ed2e676c55df43b9254a277d1258861cd3c4c45ef65012dc8182c0e374ddf71f3d3ec6a667b5ef99bb449c43ada155367e1ef26a6ca8c8dd058d +docfiles size=111 + RELOC/doc/fonts/cbfonts-fd/README details="Readme" + RELOC/doc/fonts/cbfonts-fd/cbfonts-fd.pdf details="Package documentation" + RELOC/doc/fonts/cbfonts-fd/manifest.txt +srccontainersize 8564 +srccontainerchecksum 5a66545f0bdb71b951edde9debe8262a2bdd5e644da1fd3ee966cbae883ac62c6f121add0a5e9a39096081b1a810a602a45eddf5f2933c21bced260fa59f6a5e +srcfiles size=10 + RELOC/source/fonts/cbfonts-fd/cbfonts-fd.fdd +runfiles size=13 + RELOC/tex/latex/cbfonts-fd/lgrcmr.fd + RELOC/tex/latex/cbfonts-fd/lgrcmro.fd + RELOC/tex/latex/cbfonts-fd/lgrcmss.fd + RELOC/tex/latex/cbfonts-fd/lgrcmtt.fd + RELOC/tex/latex/cbfonts-fd/lgrlcmss.fd + RELOC/tex/latex/cbfonts-fd/lgrlcmtt.fd + RELOC/tex/latex/cbfonts-fd/lgrlmr.fd + RELOC/tex/latex/cbfonts-fd/lgrlmro.fd + RELOC/tex/latex/cbfonts-fd/lgrlmss.fd + RELOC/tex/latex/cbfonts-fd/lgrlmtt.fd +catalogue-ctan /fonts/greek/cbfonts-fd +catalogue-date 2017-07-29 20:12:21 +0200 +catalogue-license lppl1.3 +catalogue-topics font-supp font-greek +catalogue-version 1.2 + +name cc-pl +category Package +revision 15878 +shortdesc Polish extension of Computer Concrete fonts +relocated 1 +longdesc These Metafont sources rely on the availability of the Metafont +longdesc 'Polish' fonts and of the Metafont sources of the original +longdesc Concrete fonts. Adobe Type 1 versions of the fonts are +longdesc included. +execute addMixedMap ccpl.map +containersize 426636 +containerchecksum 768977678d3948fa5f479bba6248ffaed6b176a4b3d0c90d691b02e91108b7567420ec600fac235a7d8351ed00803f760d4432015f518c1c62c93af95b0a8394 +doccontainersize 1584 +doccontainerchecksum cb004afd1b835f5d75389f3470e1cf46506e8db46f56f562e5376b5f1a8a9d45d59ec99d7df2d791df0462cbc760aa8a278c6a73a582afa8c4e7d8c73149febf +docfiles size=1 + RELOC/doc/fonts/cc-pl/README.cc-pl +runfiles size=150 + RELOC/fonts/map/dvips/cc-pl/ccpl.map + RELOC/fonts/source/public/cc-pl/fic_mic.mf + RELOC/fonts/source/public/cc-pl/pccsc10.mf + RELOC/fonts/source/public/cc-pl/pcmi10.mf + RELOC/fonts/source/public/cc-pl/pcr10.mf + RELOC/fonts/source/public/cc-pl/pcr5.mf + RELOC/fonts/source/public/cc-pl/pcr6.mf + RELOC/fonts/source/public/cc-pl/pcr7.mf + RELOC/fonts/source/public/cc-pl/pcr8.mf + RELOC/fonts/source/public/cc-pl/pcr9.mf + RELOC/fonts/source/public/cc-pl/pcsl10.mf + RELOC/fonts/source/public/cc-pl/pcslc9.mf + RELOC/fonts/source/public/cc-pl/pcti10.mf + RELOC/fonts/tfm/public/cc-pl/pccsc10.tfm + RELOC/fonts/tfm/public/cc-pl/pcmi10.tfm + RELOC/fonts/tfm/public/cc-pl/pcr10.tfm + RELOC/fonts/tfm/public/cc-pl/pcr5.tfm + RELOC/fonts/tfm/public/cc-pl/pcr6.tfm + RELOC/fonts/tfm/public/cc-pl/pcr7.tfm + RELOC/fonts/tfm/public/cc-pl/pcr8.tfm + RELOC/fonts/tfm/public/cc-pl/pcr9.tfm + RELOC/fonts/tfm/public/cc-pl/pcsl10.tfm + RELOC/fonts/tfm/public/cc-pl/pcslc9.tfm + RELOC/fonts/tfm/public/cc-pl/pcti10.tfm + RELOC/fonts/type1/public/cc-pl/pccsc10.pfb + RELOC/fonts/type1/public/cc-pl/pcmi10.pfb + RELOC/fonts/type1/public/cc-pl/pcr10.pfb + RELOC/fonts/type1/public/cc-pl/pcr5.pfb + RELOC/fonts/type1/public/cc-pl/pcr6.pfb + RELOC/fonts/type1/public/cc-pl/pcr7.pfb + RELOC/fonts/type1/public/cc-pl/pcr8.pfb + RELOC/fonts/type1/public/cc-pl/pcr9.pfb + RELOC/fonts/type1/public/cc-pl/pcsl10.pfb + RELOC/fonts/type1/public/cc-pl/pcslc9.pfb + RELOC/fonts/type1/public/cc-pl/pcti10.pfb +catalogue-ctan /fonts/cc-pl +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics polish font font-serif font-mf font-type1 +catalogue-version 1.02.2 name ccaption category Package revision 23443 -shortdesc Continuation headings and legends for floats. +shortdesc Continuation headings and legends for floats relocated 1 longdesc A package providing commands for 'continuation captions', longdesc unnumbered captions, and also a non-specific legend heading for @@ -25273,53 +44078,83 @@ longdesc any environment. Methods are also provided to define captions longdesc for use outside float (e.g., figure and table) environments, longdesc and to define new float environments and Lists of Floats. Tools longdesc are provided for specifying your own captioning styles. -runfiles size=6 - RELOC/tex/latex/ccaption/ccaption.sty +containersize 5484 +containerchecksum f002efbd7af71c108e041daaa182a4432d1886a058cbfda2da7fcf6c0f75a217d04bbb8498deed29c7f03a8d22d4d2e24327e6a3b284d38c7b37200431f17918 +doccontainersize 468272 +doccontainerchecksum a3d2f92700e3421c37a666093944ae297ed39a35d99d6971978f5707619046603fad06b84aad55f41d3af08725535470ccec6d6bde3ab8f1ce4f0a53038e9ca8 docfiles size=116 - RELOC/doc/latex/ccaption/README - RELOC/doc/latex/ccaption/ccaption.pdf + RELOC/doc/latex/ccaption/README details="Readme" + RELOC/doc/latex/ccaption/ccaption.pdf details="Package documentation" +srccontainersize 34500 +srccontainerchecksum 83a8ab7b7b72c156ea07bf7d19c759d342187440574dc82dc0f5e683abe490c3b408d672464d142922229593a1f8363881a48475da0884920484c6057a40358a srcfiles size=37 RELOC/source/latex/ccaption/ccaption.dtx RELOC/source/latex/ccaption/ccaption.ins +runfiles size=6 + RELOC/tex/latex/ccaption/ccaption.sty +catalogue-also float caption catalogue-ctan /macros/latex/contrib/ccaption -catalogue-date 2012-05-15 20:34:46 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics caption catalogue-version 3.2c name ccfonts category Package revision 17122 -shortdesc Support for Concrete text and math fonts in LaTeX. +shortdesc Support for Concrete text and math fonts in LaTeX relocated 1 longdesc LaTeX font definition files for the Concrete fonts and a LaTeX longdesc package for typesetting documents using Concrete as the default longdesc font family. The files support OT1, T1, TS1, and Concrete longdesc mathematics including AMS fonts (Ulrik Vieth's concmath). -runfiles size=3 - RELOC/tex/latex/ccfonts/ccfonts.sty - RELOC/tex/latex/ccfonts/t1ccr.fd - RELOC/tex/latex/ccfonts/ts1ccr.fd +containersize 2116 +containerchecksum 0affcca65346d83ddfdd9f2d6a9bd9baf41113b396a99c76c88801b1d509f3e9d6168f0a4659a5cd440bb46fff996d5f3361ba342e11c902d0866f616e0d41c9 +doccontainersize 190000 +doccontainerchecksum 6a08c3f13c5ece4ebd67ff1463a4c27c1b5b114fa777e916c034a66dca5c8c85bfc138394ae9c2955182f68f34a91ad57eb4834f749e7107b0a311e0eb61848e docfiles size=52 - RELOC/doc/latex/ccfonts/ccfonts.pdf - RELOC/doc/latex/ccfonts/readme + RELOC/doc/latex/ccfonts/ccfonts.pdf details="Package documentation" + RELOC/doc/latex/ccfonts/readme details="Readme" +srccontainersize 5728 +srccontainerchecksum 2d560016ccd3e2c6593e5d06b4cbcf1ac238d3bb0b0d9632bff8f69720bc0cd1b20d2f7e3bc33f3204820abba18995467758db492b9f91fe1850f1eae55487b9 srcfiles size=6 RELOC/source/latex/ccfonts/cc.fdd RELOC/source/latex/ccfonts/ccfonts.dtx RELOC/source/latex/ccfonts/ccfonts.ins +runfiles size=3 + RELOC/tex/latex/ccfonts/ccfonts.sty + RELOC/tex/latex/ccfonts/t1ccr.fd + RELOC/tex/latex/ccfonts/ts1ccr.fd +catalogue-also ecc catalogue-ctan /macros/latex/contrib/ccfonts -catalogue-date 2012-05-15 20:34:46 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font-supp catalogue-version 1.1 name ccicons category Package -revision 30020 -shortdesc LaTeX support for Creative Commons icons. +revision 45646 +shortdesc LaTeX support for Creative Commons icons relocated 1 longdesc The package provides the means to typeset Creative Commons longdesc icons, in documents licensed under CC licences. A font (in longdesc Adobe Type 1 format) and LaTeX support macros are provided. execute addMap ccicons.map +containersize 15584 +containerchecksum 45df39a60891940e4ab24c489d7ff76971a7d378156ab4c533eb739fcc8723bc7ff6ef81322ef157b2498e24b5df97e6807796330f5852301e1e88d950f90d40 +doccontainersize 89352 +doccontainerchecksum 3e988fa5a9c4f3a07f0557d5ef787ff9f6ee2630be5ecbcab1e892086430f39a8f8e23deaeb624c1bc4b3f2f00b708edef4b3ed645c56400c13c0f9351b5d8dc +docfiles size=25 + RELOC/doc/fonts/ccicons/FONTLOG.txt + RELOC/doc/fonts/ccicons/OFL.txt + RELOC/doc/latex/ccicons/ccicons.pdf details="Package documentation" +srccontainersize 8828 +srccontainerchecksum c071924713a6b3e3a45a5e83a116c535ac3fed4958d9d395151c6592c854e8e493b51d2409dbdd07f2e53a6d3b51657b6578888f6dc6197584e5cee2e629610b +srcfiles size=9 + RELOC/source/fonts/ccicons/ccicons.sfd + RELOC/source/latex/ccicons/ccicons.dtx + RELOC/source/latex/ccicons/ccicons.ins runfiles size=10 RELOC/fonts/enc/dvips/ccicons/ccicons-u.enc RELOC/fonts/map/dvips/ccicons/ccicons.map @@ -25327,118 +44162,109 @@ runfiles size=10 RELOC/fonts/tfm/public/ccicons/ccicons.tfm RELOC/fonts/type1/public/ccicons/ccicons.pfb RELOC/tex/latex/ccicons/ccicons.sty -docfiles size=21 - RELOC/doc/fonts/ccicons/FONTLOG.txt - RELOC/doc/fonts/ccicons/OFL.txt - RELOC/doc/latex/ccicons/ccicons.pdf -srcfiles size=9 - RELOC/source/fonts/ccicons/ccicons.sfd - RELOC/source/latex/ccicons/ccicons.dtx - RELOC/source/latex/ccicons/ccicons.ins +catalogue-contact-home https://github.com/ummels/ccicons catalogue-ctan /fonts/ccicons -catalogue-date 2014-04-14 00:53:06 +0200 -catalogue-license lppl1.3 -catalogue-version 1.5 +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl1.3cofl +catalogue-topics font font-symbol font-type1 +catalogue-version 1.6 name cclicenses category Package revision 15878 -shortdesc Typeset Creative Commons licence logos. +shortdesc Typeset Creative Commons licence logos relocated 1 longdesc The cclicenses package helps users typesetting Creative Commons longdesc logos in LaTeX. It defines some commands useful to quickly longdesc write these logos, related to CC licences versions 1.0 and 2.0. -runfiles size=2 - RELOC/tex/latex/cclicenses/cclicenses.sty +containersize 1604 +containerchecksum dca388e065610abad24a76f7dc600d9ae659973fbc47f4fc2157958aa2850d9c3bae7811418bf76effaf696386a62584c8a2ff158e98ec7a971bd1dc800424ea +doccontainersize 81072 +doccontainerchecksum eb710fbac41527da39c26d5d27aaa84faf05e380356e9c3bc1a0c0fcb4d2dd5412f304d323ccf13084dfe8d31243698350fbdbefac07fff6cfabceed9f4d842c docfiles size=25 - RELOC/doc/latex/cclicenses/README - RELOC/doc/latex/cclicenses/cclicenses_short.pdf + RELOC/doc/latex/cclicenses/README details="Readme" + RELOC/doc/latex/cclicenses/cclicenses_short.pdf details="Brief package documentation" +srccontainersize 4060 +srccontainerchecksum d20b1cce1635b415d7368e49a9a32ee3a61efca8d0807b67c7e92ed59604fda1fd9b9d168ac23d54b90e396d971fd421463eb1ec77009d3e077e474166afed55 srcfiles size=4 RELOC/source/latex/cclicenses/cclicenses.dtx RELOC/source/latex/cclicenses/cclicenses.ins +runfiles size=2 + RELOC/tex/latex/cclicenses/cclicenses.sty catalogue-ctan /macros/latex/contrib/cclicenses -catalogue-date 2012-04-30 17:40:04 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics logo -name cc-pl +name cd category Package -revision 15878 -shortdesc Polish extension of Computer Concrete fonts. +revision 34452 +shortdesc Typeset CD covers relocated 1 -longdesc These Metafont sources rely on the availability of the Metafont -longdesc 'Polish' fonts and of the Metafont sources of the original -longdesc Concrete fonts. Adobe Type 1 versions of the fonts are -longdesc included. -execute addMixedMap ccpl.map -runfiles size=150 - RELOC/fonts/map/dvips/cc-pl/ccpl.map - RELOC/fonts/source/public/cc-pl/fic_mic.mf - RELOC/fonts/source/public/cc-pl/pccsc10.mf - RELOC/fonts/source/public/cc-pl/pcmi10.mf - RELOC/fonts/source/public/cc-pl/pcr10.mf - RELOC/fonts/source/public/cc-pl/pcr5.mf - RELOC/fonts/source/public/cc-pl/pcr6.mf - RELOC/fonts/source/public/cc-pl/pcr7.mf - RELOC/fonts/source/public/cc-pl/pcr8.mf - RELOC/fonts/source/public/cc-pl/pcr9.mf - RELOC/fonts/source/public/cc-pl/pcsl10.mf - RELOC/fonts/source/public/cc-pl/pcslc9.mf - RELOC/fonts/source/public/cc-pl/pcti10.mf - RELOC/fonts/tfm/public/cc-pl/pccsc10.tfm - RELOC/fonts/tfm/public/cc-pl/pcmi10.tfm - RELOC/fonts/tfm/public/cc-pl/pcr10.tfm - RELOC/fonts/tfm/public/cc-pl/pcr5.tfm - RELOC/fonts/tfm/public/cc-pl/pcr6.tfm - RELOC/fonts/tfm/public/cc-pl/pcr7.tfm - RELOC/fonts/tfm/public/cc-pl/pcr8.tfm - RELOC/fonts/tfm/public/cc-pl/pcr9.tfm - RELOC/fonts/tfm/public/cc-pl/pcsl10.tfm - RELOC/fonts/tfm/public/cc-pl/pcslc9.tfm - RELOC/fonts/tfm/public/cc-pl/pcti10.tfm - RELOC/fonts/type1/public/cc-pl/pccsc10.pfb - RELOC/fonts/type1/public/cc-pl/pcmi10.pfb - RELOC/fonts/type1/public/cc-pl/pcr10.pfb - RELOC/fonts/type1/public/cc-pl/pcr5.pfb - RELOC/fonts/type1/public/cc-pl/pcr6.pfb - RELOC/fonts/type1/public/cc-pl/pcr7.pfb - RELOC/fonts/type1/public/cc-pl/pcr8.pfb - RELOC/fonts/type1/public/cc-pl/pcr9.pfb - RELOC/fonts/type1/public/cc-pl/pcsl10.pfb - RELOC/fonts/type1/public/cc-pl/pcslc9.pfb - RELOC/fonts/type1/public/cc-pl/pcti10.pfb -docfiles size=1 - RELOC/doc/fonts/cc-pl/README.cc-pl -catalogue-ctan /fonts/cc-pl -catalogue-date 2012-11-30 16:37:48 +0100 -catalogue-license pd -catalogue-version 1.02.2 +longdesc Normal usage will ordinarily require no more than a simple data +longdesc file per cover; the package will make a full insert for a CD +longdesc case (it copes with both normal and slim cases). +containersize 4380 +containerchecksum 8b47a219e4d40364e1a4ed4d13245c0c9334508ffca0cff565a8d8856aef32184bdf0a19966027fc4e958a06b4f5a53bfb66188c6fd065a1b3b230cf1da2f484 +doccontainersize 72848 +doccontainerchecksum 5ab78083715332130aacf3a97f6280f2533e7f9383c38ddf431d3486c6e88589cc69b7cd760088fbd2928c9b349ff583bc275ce8d80590234deeaf1e1a23b4ca +docfiles size=25 + RELOC/doc/latex/cd/CD.tex + RELOC/doc/latex/cd/CDlist.tex + RELOC/doc/latex/cd/README details="Readme" + RELOC/doc/latex/cd/cd.pdf details="Package documentation" + RELOC/doc/latex/cd/example.dat + RELOC/doc/latex/cd/parsecd.rb + RELOC/doc/latex/cd/slimCD.tex + RELOC/doc/latex/cd/slimCDlist.tex +srccontainersize 9672 +srccontainerchecksum 094b4b41d99fcc81c4c02ec7aeeaa999b3e5ec7dd4984976021a1d75c5bf9c5a3e3f13b0acb939c14f80ec05b3843fda7558aaf7c324315434b69954084c57ed +srcfiles size=10 + RELOC/source/latex/cd/cd.dtx + RELOC/source/latex/cd/cd.ins +runfiles size=6 + RELOC/tex/latex/cd/cd.cls +catalogue-also cdcover +catalogue-ctan /macros/latex/contrib/cd +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics labels +catalogue-version 1.4 name cd-cover category Package revision 17121 catalogue cdcover -shortdesc Typeset CD covers. +shortdesc Typeset CD covers relocated 1 longdesc The CD-cover class will typeset front and back cover sheets for longdesc CD jewel cases, or an entire paper cover, or a label for a longdesc plastic slip-cover. -runfiles size=4 - RELOC/tex/latex/cd-cover/cd-cover.cls +containersize 3864 +containerchecksum 345b001cd40137d9739a97c3c06549c3c7b761f56f61109dd4908c767151515081defd6c432232ec7a9fdeb8e85e95258ded345facdef0cf6bffa82bb5c39fbe +doccontainersize 303956 +doccontainerchecksum f22c8eccbecb35d4c3c01788c0eb8ca793fbaf7b97e2bd54ec79e78ba10c13a4eef46c5eee70f1550cc7c378bb01926e8eecc6d41916df22a6e615aacd2b1e75 docfiles size=82 - RELOC/doc/latex/cd-cover/README - RELOC/doc/latex/cd-cover/cd-cover.pdf + RELOC/doc/latex/cd-cover/README details="Readme" + RELOC/doc/latex/cd-cover/cd-cover.pdf details="Package documentation" +srccontainersize 12956 +srccontainerchecksum d8ecc73c18376678b2ee97b8bc81aebae7860e40451427e03f382aedbacdbc17a7761e8a78e275470c36927b3461c422bc62462163c6d92c509eb50cfa75598c srcfiles size=12 RELOC/source/latex/cd-cover/cd-cover.dtx RELOC/source/latex/cd-cover/cd-cover.ins +runfiles size=4 + RELOC/tex/latex/cd-cover/cd-cover.cls +catalogue-also cd catalogue-ctan /macros/latex/contrib/cd-cover -catalogue-date 2012-05-15 20:34:46 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics covers catalogue-version 1.0 name cdpbundl category Package -revision 36697 -shortdesc Business letters in the Italian style. +revision 46613 +shortdesc Business letters in the Italian style relocated 1 longdesc The C.D.P. Bundle can be used to typeset high-quality business longdesc letters formatted according to Italian style conventions. It is @@ -25450,6 +44276,23 @@ longdesc floating figures and tables, and to have the relevant indexes longdesc compiled automatically. A single input file can contain several longdesc letters, and each letter will have its own table of contents, longdesc etc., independant from the other ones. +containersize 19100 +containerchecksum 142dc5657e1482cdf7392ee7df6967557cf09e5b733b12e8c7559863c2edc66a3439b29c7cf16c2461cc1090090117337f63db899bf7bba0cc23d04bb573c633 +doccontainersize 768180 +doccontainerchecksum 3fbfe5b5a8771bf3a74c6adc7a90e04f6085179c11a6db4ed8ebe644e00e334f447f3d32214d72ac341d18e3c79d3bfcfd788053d2065eeced76ad7c7ce6a9aa +docfiles size=201 + RELOC/doc/latex/cdpbundl/00readme.txt details="Basic introduction" + RELOC/doc/latex/cdpbundl/Makefile + RELOC/doc/latex/cdpbundl/README details="Readme" + RELOC/doc/latex/cdpbundl/cdp-ver-0-36.pdf + RELOC/doc/latex/cdpbundl/cdp-ver-0-36.tex + RELOC/doc/latex/cdpbundl/cdpbundl-doc.pdf details="Package overview" + RELOC/doc/latex/cdpbundl/manifest.txt +srccontainersize 68824 +srccontainerchecksum 579575c916a417be5d097d7e766c0cc599856d0b2aa3d4eae5880748c57c7735457aed493d3818974f25f07990b7496b6c5a92ceee39e0116510c420ae69d81f +srcfiles size=75 + RELOC/source/latex/cdpbundl/cdpbundl.dtx + RELOC/source/latex/cdpbundl/cdpbundl.ins runfiles size=28 RELOC/tex/latex/cdpbundl/articoletteracdp.cls RELOC/tex/latex/cdpbundl/cdpaddon.sty @@ -25461,53 +44304,70 @@ runfiles size=28 RELOC/tex/latex/cdpbundl/epson-stylus-740.def RELOC/tex/latex/cdpbundl/hp-laserjet-4500.def RELOC/tex/latex/cdpbundl/letteracdp.cls -docfiles size=200 - RELOC/doc/latex/cdpbundl/00readme.txt - RELOC/doc/latex/cdpbundl/Makefile - RELOC/doc/latex/cdpbundl/README - RELOC/doc/latex/cdpbundl/cdp-ver-0-36.pdf - RELOC/doc/latex/cdpbundl/cdp-ver-0-36.tex - RELOC/doc/latex/cdpbundl/cdpbundl-doc.pdf - RELOC/doc/latex/cdpbundl/manifest.txt -srcfiles size=72 - RELOC/source/latex/cdpbundl/cdpbundl.dtx - RELOC/source/latex/cdpbundl/cdpbundl.ins catalogue-ctan /macros/latex/contrib/cdpbundl -catalogue-date 2015-04-01 17:21:50 +0200 +catalogue-date 2018-02-12 06:16:41 +0100 catalogue-license lppl -catalogue-version 0.36 +catalogue-topics letter +catalogue-version 0.36d -name cd +name cell category Package -revision 34452 -shortdesc Typeset CD covers. +revision 42428 +shortdesc Bibliography style for Cell relocated 1 -longdesc Normal usage will ordinarily require no more than a simple data -longdesc file per cover; the package will make a full insert for a CD -longdesc case (it copes with both normal and slim cases). -runfiles size=6 - RELOC/tex/latex/cd/cd.cls -docfiles size=25 - RELOC/doc/latex/cd/CD.tex - RELOC/doc/latex/cd/CDlist.tex - RELOC/doc/latex/cd/README - RELOC/doc/latex/cd/cd.pdf - RELOC/doc/latex/cd/example.dat - RELOC/doc/latex/cd/parsecd.rb - RELOC/doc/latex/cd/slimCD.tex - RELOC/doc/latex/cd/slimCDlist.tex -srcfiles size=10 - RELOC/source/latex/cd/cd.dtx - RELOC/source/latex/cd/cd.ins -catalogue-ctan /macros/latex/contrib/cd -catalogue-date 2014-06-28 13:48:08 +0200 -catalogue-license gpl +longdesc This is an "apa-like" style (cf. apalike.bst in the BibTeX +longdesc distribution), developed from the same author's JMB style. A +longdesc supporting LaTeX package is also provided. +containersize 11228 +containerchecksum 917431174b203fd839d3cf81ed965cc654d66597246ef7a4f9f3c3a945397b546eef1e7bfc4f9fb52889e149ee2fd195dd559c317472831e66e0fc3253a6c22b +doccontainersize 480 +doccontainerchecksum 3cbf1ffa3902f49c155f2ee6b13e24b9abcbdf50da4668042dbc720ef20f483e230fd2ffdc8448007df7ced1ed34077811199cda4fbb35c104dce73084215bf4 +docfiles size=1 + RELOC/doc/latex/cell/README details="Readme" +runfiles size=10 + RELOC/bibtex/bst/cell/cell.bst + RELOC/tex/latex/cell/cell.sty +catalogue-ctan /macros/latex/contrib/cell +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics bibtex-sty + +name cellprops +category Package +revision 48227 +shortdesc Accept CSS-like selectors in tabular, array, ... +relocated 1 +longdesc This package reworks the internals of tabular, array, and +longdesc similar constructs, and adds a \cellprops command accepting +longdesc CSS-like selectors and properties. It depends on mdwtab, +longdesc xcolor, expl3, and xparse. +containersize 6116 +containerchecksum b265840a57793e1c3e3a0bae5b2cd64c613b35d7ee614e2b79c9f52106b1087b201050c90d12575581fe8d77a9d8b800922611e71dc0744d802f5cb95808248f +doccontainersize 569632 +doccontainerchecksum 9cbdf7da67411316ac2a7b9cb9968878d3edbc0ea2dbbfb03af317e3d2adc25bf9e25d147e7e29e31a572c2a6da5e38501c236ba2f57fe1d3a6455ce53b1fe8c +docfiles size=151 + RELOC/doc/latex/cellprops/LICENSE + RELOC/doc/latex/cellprops/README.md details="Readme" + RELOC/doc/latex/cellprops/cellprops.pdf details="Package documentation" +srccontainersize 10260 +srccontainerchecksum 9c3a64fd6f37f1697b9d2615604ab90c5cc540919d3014a6d734788704928def6192a383f87e201abe530a50d65e281e1d059010cf88d9619808380153085036 +srcfiles size=13 + RELOC/source/latex/cellprops/cellprops.dtx + RELOC/source/latex/cellprops/cellprops.ins +runfiles size=8 + RELOC/tex/latex/cellprops/cellprops.sty +catalogue-contact-bugs https://gitlab.com/frnchfrgg-latex/cellprops/issues +catalogue-contact-repository https://gitlab.com/frnchfrgg-latex/cellprops +catalogue-ctan /macros/latex/contrib/cellprops +catalogue-date 2018-07-18 22:06:07 +0200 +catalogue-license gpl3+ +catalogue-topics table catalogue-version 1.4 name cellspace category Package -revision 15878 -shortdesc Ensure minimal spacing of table cells. +revision 50374 +shortdesc Ensure minimal spacing of table cells relocated 1 longdesc It is well known that high or deep cells tend to touch the longdesc \hlines of a tabular. This package provides a modifier S acting @@ -25517,80 +44377,140 @@ longdesc \cellspacebottomlimit. The approach employed by this package is longdesc noticeably simpler than that of tabls, which considers the longdesc dimensions of each entire row; whereas you can ask the longdesc cellspace only to look at the cells of potentially difficult -longdesc columns. +longdesc columns. The package depends on ifthen, array, calc, and +longdesc xkeyval. +containersize 2448 +containerchecksum d2de1e55913a434eb5b0ab19f615ee325dca750eaa8d61222045220153d521eb8149bf025aa03b1e6a7c625cd994b8bdaea241b227b28d1622c1a75ec72d76fd +doccontainersize 342008 +doccontainerchecksum a1cdfb273e8c32374b03dfcd1d2ccbf12a19918fdeada025cf948fefa624decda07f8c3384a4dd859efdaa9048adcf0c513f59f28e48f31062819c1f9acdcd0d +docfiles size=88 + RELOC/doc/latex/cellspace/README details="Readme" + RELOC/doc/latex/cellspace/cellspace.pdf details="Package documentation" + RELOC/doc/latex/cellspace/cellspace.tex runfiles size=2 RELOC/tex/latex/cellspace/cellspace.sty -docfiles size=90 - RELOC/doc/latex/cellspace/README - RELOC/doc/latex/cellspace/cellspace.pdf - RELOC/doc/latex/cellspace/cellspace.tex catalogue-ctan /macros/latex/contrib/cellspace -catalogue-date 2012-05-15 20:34:46 +0200 +catalogue-date 2019-03-13 17:45:58 +0100 catalogue-license lppl -catalogue-version 1.6 - -name cell -category Package -revision 20756 -shortdesc Bibliography style for Cell. -relocated 1 -longdesc This is an "apa-like" style (cf. apalike.bst in the BibTeX -longdesc distribution), developed from the same author's JMB style. A -longdesc supporting LaTeX package is also provided. -runfiles size=10 - RELOC/bibtex/bst/cell/cell.bst - RELOC/tex/latex/cell/cell.sty -docfiles size=1 - RELOC/doc/latex/cell/README -catalogue-ctan /macros/latex/contrib/cell -catalogue-date 2015-02-23 19:46:09 +0100 -catalogue-license pd +catalogue-topics table +catalogue-version 1.8.1 name celtic category Package -revision 34676 -shortdesc A TikZ library for drawing celtic knots. +revision 39797 +shortdesc A TikZ library for drawing celtic knots relocated 1 longdesc The package provides a TikZ library for drawing celtic knots. -runfiles size=5 - RELOC/tex/latex/celtic/tikzlibraryceltic.code.tex -docfiles size=156 - RELOC/doc/latex/celtic/README - RELOC/doc/latex/celtic/celtic.pdf +containersize 3780 +containerchecksum df78495c7a42a60bf40be46bf14c30d97dcd7c7d1b283f487026f7c3b6a680c750d09527cdd578f69234500eca05764792ddc90ae4dc8005126510ae33fcab4a +doccontainersize 676044 +doccontainerchecksum ed29c2882619bc7f076578c91cfb7e1e83af9e6960ee58af78486c1af6aeeb2b2b6eabdf916fa30ab865991c677955c0fd15a43f128aecb635ee30b3ba514bb3 +docfiles size=172 + RELOC/doc/latex/celtic/README details="Readme" + RELOC/doc/latex/celtic/celtic.pdf details="Package documentation" RELOC/doc/latex/celtic/celtic_code.pdf RELOC/doc/latex/celtic/celtic_doc.tex +srccontainersize 8344 +srccontainerchecksum d60ef14ae649288b8b9484844fc9fbf15ce564209c04249b47c3cb0beb96c209c0401cf3f9200ca3be27ba0417c60a2a7a9780341ea311e1bc836753a2df7882 srcfiles size=10 RELOC/source/latex/celtic/celtic.dtx RELOC/source/latex/celtic/celtic.ins +runfiles size=5 + RELOC/tex/latex/celtic/tikzlibraryceltic.code.tex catalogue-ctan /graphics/pgf/contrib/celtic -catalogue-date 2014-08-05 11:12:00 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics graphics pgf-tikz +catalogue-version 1.1 name censor category Package -revision 31332 -shortdesc Facilities for controlling restricted text in a document. -relocated 1 -longdesc The package allows a convenient redaction/censor capability to -longdesc be employed, for those who need to protect restricted -longdesc information, etc. The package can "redact" anything that can be -longdesc enclosed by a LaTeX box. +revision 49168 +shortdesc Tools for producing redacted documents +relocated 1 +longdesc This package provides simple tools for creating redacted +longdesc documents with blacked-out text. Its tools are useful both for +longdesc creating documents in a restricted environment (for redacted +longdesc release in an unrestricted environment) as well as in an +longdesc unrestricted environment (for eventual transfer and completion +longdesc in the restricted environment). +containersize 2212 +containerchecksum 03b94dea9f5f69f0fde8dbd198e73a1ccc1e7b118b26c8272b217bfe76b7cec7eb0c8706dfbca7dd2a9438ea7337482cb55d631d3cabfaff3dab19d1cc565780 +doccontainersize 195860 +doccontainerchecksum 131b995300b302f482359820bb9dab62188be11f46470e2c9d25753a22d6b81def5e272cdca4f2057adbacb3bb9aa777e758ebfe8a95205db7de36b378369bdb +docfiles size=57 + RELOC/doc/latex/censor/README details="Readme" + RELOC/doc/latex/censor/censor.pdf details="Package documentation" + RELOC/doc/latex/censor/censor.tex runfiles size=2 RELOC/tex/latex/censor/censor.sty -docfiles size=54 - RELOC/doc/latex/censor/README - RELOC/doc/latex/censor/censor.pdf - RELOC/doc/latex/censor/censor.tex catalogue-ctan /macros/latex/contrib/censor -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-11-15 18:18:31 +0100 catalogue-license lppl1.3 -catalogue-version 3.21 +catalogue-topics security +catalogue-version 3.22 + +name centeredline +category Package +revision 50971 +shortdesc A macro for centering lines +relocated 1 +longdesc This package provides a macro \centeredline{...} which allows +longdesc to conveniently center a line inside a paragraph while allowing +longdesc usage therein of \verb or other macros changing catcodes. It +longdesc works nicely in list environments, and material whose natural +longdesc width exceeds the current linewidth will get properly centered +longdesc too. +containersize 1168 +containerchecksum 7b1359bd93853830d85fd84c9132d997c1384211c504999f4bc819cd6fe85effbe9f0fba64cc502419484cea3cacedf02beae22052bd10a7a7dbad3f97583731 +doccontainersize 1288 +doccontainerchecksum 237af456a51f539d02d96bc1c2bfd1fde1328cb270985b50a0ee9760f4b6f3675610ca088af135a86f07c02a0cd84c651118726915a0a01546468030acd596f3 +docfiles size=1 + RELOC/doc/latex/centeredline/README.md details="Readme" +runfiles size=1 + RELOC/tex/latex/centeredline/centeredline.sty +catalogue-ctan /macros/latex/contrib/centeredline +catalogue-date 2019-05-03 18:32:29 +0200 +catalogue-license lppl1.3c +catalogue-topics layout alignment +catalogue-version 1.1 + +name cesenaexam +category Package +revision 44960 +shortdesc A class file to typeset exams +relocated 1 +longdesc This LaTeX document class has been designed to typeset exams. +containersize 3532 +containerchecksum 780962e24e1dc4c6c385c18a6c95b8864b1930b2bc684d9a556a1d6579a2a8d06ec0df3fdb085c3ae8115dc72d06e376ed8ea6f6d801af07dfcbf133c9cb9c67 +doccontainersize 514948 +doccontainerchecksum 72d53ea8ffc1827f3965c6f0728aa5f2cae36f645ab10d78ff8c16a3537f79c6f53fd34f388f2991e5cd2261b366e7746a140285df95d17475adde9cee3fcaed +docfiles size=132 + RELOC/doc/latex/cesenaexam/Makefile + RELOC/doc/latex/cesenaexam/README.md details="Readme" + RELOC/doc/latex/cesenaexam/cesenaexam.pdf details="Package documentation" + RELOC/doc/latex/cesenaexam/cesenaexam_example.pdf details="Example document" + RELOC/doc/latex/cesenaexam/cesenaexam_example.tex +srccontainersize 6452 +srccontainerchecksum e1668fb9f07baea5ccb79e2f61d672f838a83c8d5d01b3da2b3080473865b9bc8acb0165dad58aa46d1ca296e2ef8dc545db3e856d95f6749310a4c90591b4e6 +srcfiles size=7 + RELOC/source/latex/cesenaexam/cesenaexam.dtx + RELOC/source/latex/cesenaexam/cesenaexam.ins +runfiles size=5 + RELOC/tex/latex/cesenaexam/cesenaexam.cls + RELOC/tex/latex/cesenaexam/cesenaexam.sty +catalogue-contact-bugs https://github.com/alexpacini/cesenaexam/issues +catalogue-contact-repository https://github.com/alexpacini/cesenaexam +catalogue-ctan /macros/latex/contrib/cesenaexam +catalogue-date 2017-08-07 04:55:20 +0200 +catalogue-license lppl1.3c +catalogue-topics exam class +catalogue-version 0.2 name cfr-initials category Package revision 36728 -shortdesc LaTeX packages for use of initials. +shortdesc LaTeX packages for use of initials relocated 1 longdesc This is a set of 23 tiny packages designed to make it easier to longdesc use fonts from the initials package in LaTeX, e.g. with the @@ -25600,6 +44520,15 @@ longdesc requesting sample package files for others to copy. I had longdesc previously assumed these were too trivial to be of interest, longdesc but if they would be useful, then I would prefer them to be longdesc generally available via CTAN. +containersize 2332 +containerchecksum d67830168afffe72ef37784db45176528065210d4956b4aef2a166d41c886f5b3874e0878da9c56302412cf5939291451e1e20ba3e676429c598342982b64083 +doccontainersize 687232 +doccontainerchecksum 0d628f9134254a92c7b88d0744b588bb197c6850d7d5e44a90e91c1ed128625c7add731916b727c2d3b532ade017daaf17f45e446e4bc6f0e447bb5fdb770066 +docfiles size=171 + RELOC/doc/latex/cfr-initials/README details="Readme" + RELOC/doc/latex/cfr-initials/cfr-initials.pdf details="Package documentation" + RELOC/doc/latex/cfr-initials/cfr-initials.tex + RELOC/doc/latex/cfr-initials/manifest.txt runfiles size=23 RELOC/tex/latex/cfr-initials/Acorn.sty RELOC/tex/latex/cfr-initials/AnnSton.sty @@ -25624,20 +44553,16 @@ runfiles size=23 RELOC/tex/latex/cfr-initials/Starburst.sty RELOC/tex/latex/cfr-initials/Typocaps.sty RELOC/tex/latex/cfr-initials/Zallman.sty -docfiles size=171 - RELOC/doc/latex/cfr-initials/README - RELOC/doc/latex/cfr-initials/cfr-initials.pdf - RELOC/doc/latex/cfr-initials/cfr-initials.tex - RELOC/doc/latex/cfr-initials/manifest.txt catalogue-ctan /macros/latex/contrib/cfr-initials -catalogue-date 2015-04-06 07:15:45 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics font-supp font-decor catalogue-version 1.01 name cfr-lm category Package revision 36195 -shortdesc Enhanced support for the Latin Modern fonts. +shortdesc Enhanced support for the Latin Modern fonts relocated 1 longdesc The package supports a number of features of the Latin Modern longdesc fonts which are not easily accessible via the default (La)TeX @@ -25661,6 +44586,28 @@ longdesc and TS1 encodings are supported for text fonts. The set up of longdesc fonts for mathematics is identical to that provided by Latin longdesc Modern. execute addMap clm.map +containersize 136092 +containerchecksum 02e30f6d6d19bede2121ee0a8db20c3d96c26ef000ffeab08e800bb1da994dfa2cb356a6d67c815e8579566cf97b33b956c79940de61725524c4a239f7c1a251 +doccontainersize 2524956 +doccontainerchecksum 32488ecec8a781f5548419a782775725e6b32276bab5e1d7f660b99468d47e71087fb35b8f4534f874b1dcf236d04eae9d7920fcf0bb46e139a4e7fedc415ef1 +docfiles size=670 + RELOC/doc/fonts/cfr-lm/README details="Readme" + RELOC/doc/fonts/cfr-lm/cfr-lm.pdf details="Package documentation" + RELOC/doc/fonts/cfr-lm/cfr-lm.tex + RELOC/doc/fonts/cfr-lm/clm-test.pdf details="Samples from available fonts" + RELOC/doc/fonts/cfr-lm/clm-test.tex + RELOC/doc/fonts/cfr-lm/manifest.txt +srccontainersize 12588 +srccontainerchecksum 643e7f1b48e3947506e97e1596972b686fab538511c2a0749ad936285c1e097ca8677730ea0748d1def6d6318030e7bb289e55d0c8f0ae9fc01fb308e974c24d +srcfiles size=37 + RELOC/source/fonts/cfr-lm/clm-map.tex + RELOC/source/fonts/cfr-lm/clm-t1-drv.tex + RELOC/source/fonts/cfr-lm/clm-ts1-drv.tex + RELOC/source/fonts/cfr-lm/dotdigits.etx + RELOC/source/fonts/cfr-lm/dotoldstyle.etx + RELOC/source/fonts/cfr-lm/dotprop.etx + RELOC/source/fonts/cfr-lm/dottaboldstyle.etx + RELOC/source/fonts/cfr-lm/t1-clm.etx runfiles size=1536 RELOC/fonts/enc/dvips/cfr-lm/dotdigits-clm.enc RELOC/fonts/enc/dvips/cfr-lm/t1-clm.enc @@ -26546,84 +45493,112 @@ runfiles size=1536 RELOC/tex/latex/cfr-lm/uclms.fd RELOC/tex/latex/cfr-lm/uclmt.fd RELOC/tex/latex/cfr-lm/uclmv.fd -docfiles size=670 - RELOC/doc/fonts/cfr-lm/README - RELOC/doc/fonts/cfr-lm/cfr-lm.pdf - RELOC/doc/fonts/cfr-lm/cfr-lm.tex - RELOC/doc/fonts/cfr-lm/clm-test.pdf - RELOC/doc/fonts/cfr-lm/clm-test.tex - RELOC/doc/fonts/cfr-lm/manifest.txt -srcfiles size=37 - RELOC/source/fonts/cfr-lm/clm-map.tex - RELOC/source/fonts/cfr-lm/clm-t1-drv.tex - RELOC/source/fonts/cfr-lm/clm-ts1-drv.tex - RELOC/source/fonts/cfr-lm/dotdigits.etx - RELOC/source/fonts/cfr-lm/dotoldstyle.etx - RELOC/source/fonts/cfr-lm/dotprop.etx - RELOC/source/fonts/cfr-lm/dottaboldstyle.etx - RELOC/source/fonts/cfr-lm/t1-clm.etx catalogue-ctan /fonts/cfr-lm -catalogue-date 2015-02-02 11:57:17 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics font-supp catalogue-version 1.5 name changebar category Package -revision 29349 -shortdesc Generate changebars in LaTeX documents. +revision 46919 +shortdesc Generate changebars in LaTeX documents relocated 1 longdesc Identify areas of text to be marked with changebars with the longdesc \cbstart and \cbend commands; the bars may be coloured. The longdesc package uses 'drivers' to place the bars; the available drivers longdesc can work with dvitoln03, dvitops, dvips, the emTeX and TeXtures -longdesc DVI drivers, and VTeX and PDFTeX. -runfiles size=8 - RELOC/tex/latex/changebar/changebar.sty -docfiles size=185 - RELOC/doc/latex/changebar/00readme.txt - RELOC/doc/latex/changebar/catalog.txt +longdesc DVI drivers, and VTeX and pdfTeX. +containersize 7032 +containerchecksum fa75f75aead49adb949e0bb5b5c116387e14b5fcf804502e12b7214a2638ec2032699125adc6ba8c528445c9f5c552ec744007530d1e5a69159f1041d2b7bceb +doccontainersize 636464 +doccontainerchecksum f25c8bd3cb493bfe8446d98f3c599ec002f818daecac76ec4f08d19bfd15581bf8bf8970fd145886a42c51cd40a53df7bfc2e10641df2f4c2cdcd8aa02bf6c30 +docfiles size=199 + RELOC/doc/latex/changebar/CATALOG + RELOC/doc/latex/changebar/MANIFEST + RELOC/doc/latex/changebar/README details="Readme" RELOC/doc/latex/changebar/cbtest1-ltx.pdf RELOC/doc/latex/changebar/cbtest1-pdf.pdf RELOC/doc/latex/changebar/cbtest1.tex + RELOC/doc/latex/changebar/cbtest1good.pdf + RELOC/doc/latex/changebar/cbtest1wrong.pdf RELOC/doc/latex/changebar/cbtest2-ltx.pdf RELOC/doc/latex/changebar/cbtest2-pdf.pdf RELOC/doc/latex/changebar/cbtest2.tex RELOC/doc/latex/changebar/changebar.bug - RELOC/doc/latex/changebar/changebar.pdf + RELOC/doc/latex/changebar/changebar.pdf details="Package documentation" RELOC/doc/latex/changebar/chbar.1 RELOC/doc/latex/changebar/chbar.sh - RELOC/doc/latex/changebar/manifest.txt -srcfiles size=29 +srccontainersize 27104 +srccontainerchecksum a7e2519d4dfd4b0b12a9cd8ea59ce32a37e4d0cb6e637b659e93ea5b296bed21298f8dfa13a13798eb87ce0ea0719546f721875a4115c62cf0ea6110d9ac8f76 +srcfiles size=31 RELOC/source/latex/changebar/changebar.dtx RELOC/source/latex/changebar/changebar.ins +runfiles size=9 + RELOC/tex/latex/changebar/changebar.sty +catalogue-also chbar xechangebar backgrnd catalogue-ctan /macros/latex/contrib/changebar -catalogue-date 2011-09-30 20:51:09 +0200 -catalogue-license lppl -catalogue-version 3.5c +catalogue-date 2018-03-11 17:41:18 +0100 +catalogue-license lppl1.3 +catalogue-topics editorial +catalogue-version 3.6c name changelayout category Package revision 16094 -shortdesc Change the layout of individual pages and their text. +shortdesc Change the layout of individual pages and their text relocated 1 longdesc The package is an extension of the changepage package to permit longdesc the user to change the layout of individual pages and their longdesc texts. -runfiles size=5 - RELOC/tex/latex/changelayout/changelayout.sty +containersize 3872 +containerchecksum c6852a40bc8415656b8137cfb90a79cff8f8e9938979eba4e02dadb3c5d1ffef60966f9e5779696402f2b9344026ebc1e22ddeb9dba856d779317ca801f26e7e +doccontainersize 57396 +doccontainerchecksum bb81e02317d12b4dae8b0886ac3222849a457563ee8c43e09495596c56482202bb702352a8551f5d760ee41a82dde6b3f3c2bf57b4671831a25805d44e8705de docfiles size=19 - RELOC/doc/latex/changelayout/README - RELOC/doc/latex/changelayout/changelayout-guide.pdf + RELOC/doc/latex/changelayout/README details="Readme" + RELOC/doc/latex/changelayout/changelayout-guide.pdf details="Package example (see code for details)" RELOC/doc/latex/changelayout/changelayout-guide.tex +runfiles size=5 + RELOC/tex/latex/changelayout/changelayout.sty catalogue-ctan /macros/latex/contrib/changelayout -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics geometry-adj catalogue-version 1.0 +name changelog +category Package +revision 50987 +shortdesc Provides a changelog environment +relocated 1 +longdesc This package provides a changelog environment (which itself +longdesc provides a version environment) to represent a changelog. The +longdesc package supports multiple authors, unreleased changes, and +longdesc yanked (revoked) releases. Inspired by keepachangelog.com. +containersize 2164 +containerchecksum ee7633f71f0d6a17a0c4058f289f49b3ad0001c69e7849150ad2c71b268e14dff71dcf040ce2ddbc1fab1804f092a2e94be2b8dacaa1b85e8eafb15125816d56 +doccontainersize 50260 +doccontainerchecksum bcd58fdddfb9d0af5d1985912339017c7d5ea3c2e9c517d949187f3ebb31b0474a400ad5639c42fd8ab9b519868350e3587550c1121488f8edb67c1bc51fcae6 +docfiles size=20 + RELOC/doc/latex/changelog/LICENSE.txt + RELOC/doc/latex/changelog/README.md details="Readme" + RELOC/doc/latex/changelog/changelog.pdf details="Package documentation" + RELOC/doc/latex/changelog/changelog.tex +runfiles size=2 + RELOC/tex/latex/changelog/changelog.sty +catalogue-contact-bugs https://github.com/9999years/latex-changelog/issues +catalogue-contact-repository https://github.com/9999years/latex-changelog +catalogue-ctan /macros/latex/contrib/changelog +catalogue-date 2019-04-15 21:52:17 +0200 +catalogue-license gpl3 +catalogue-topics version-control doc-mgmt +catalogue-version 2.0.0 + name changepage category Package revision 15878 -shortdesc Margin adjustment and detection of odd/even pages. +shortdesc Margin adjustment and detection of odd/even pages relocated 1 longdesc The package provides commands to change the page layout in the longdesc middle of a document, and to robustly check for typesetting on @@ -26632,51 +45607,59 @@ longdesc file. The package is an extraction of code from the memoir longdesc class, whose user interface it shares. It is intended the this longdesc package will eventually replace the chngpage package, which is longdesc distributed with the package. -runfiles size=4 - RELOC/tex/latex/changepage/changepage.sty - RELOC/tex/latex/changepage/chngpage.sty +containersize 2612 +containerchecksum 0ef1d3370affd4ffc2ef77031a8713b5c663263802d67142b10fa7fc025569b3914dbbaa5e71e2c643718940a0cb89194d79ec83a83b93fcf5d57e0bfbbdbb46 +doccontainersize 274712 +doccontainerchecksum e3894d3a475f132e2242a6402899e8b9b6045681ce1fdb05fc5b0570e4d6b8b6980c2b5f5953602690250826db0e7dc9bab2f235d39fa5bda0e1161fd781478f docfiles size=87 - RELOC/doc/latex/changepage/README - RELOC/doc/latex/changepage/changepage.pdf + RELOC/doc/latex/changepage/README details="Readme" + RELOC/doc/latex/changepage/changepage.pdf details="Package documentation" +srccontainersize 5956 +srccontainerchecksum 45ba09248231ad1bf14dfa553b11172e610ae8f46948451437ce3a88521f84791ae149a83c1ff104dd0f00ea6a1a029e816ab7dbe1e38b9eb97902c4a9b9b312 srcfiles size=6 RELOC/source/latex/changepage/changepage.ins RELOC/source/latex/changepage/changepage.tex +runfiles size=4 + RELOC/tex/latex/changepage/changepage.sty + RELOC/tex/latex/changepage/chngpage.sty catalogue-ctan /macros/latex/contrib/changepage -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics geometry-adj catalogue-version 1.0c name changes category Package -revision 37104 -shortdesc Manual change markup. +revision 49837 +shortdesc Manual change markup relocated 1 longdesc The package allows the user to manually markup changes of text, longdesc such as additions, deletions, or replacements. Changed text is -longdesc shown in a different colour; deleted text is crossed out. The -longdesc package allows definition of additional authors and their -longdesc associated colour. It also allows you to define a markup for -longdesc authors or annotations. A bash script is provided for removing -longdesc the changes. -runfiles size=6 - RELOC/tex/latex/changes/changes.sty -docfiles size=208 - RELOC/doc/latex/changes/README - RELOC/doc/latex/changes/changes.english.pdf - RELOC/doc/latex/changes/changes.english.withcode.pdf +longdesc shown in a different color; deleted text is striked out. +longdesc Additionally, text can be highlighted and/or commented. The +longdesc package allows free definition of additional authors and their +longdesc associated color. It also allows you to change the markup of +longdesc changes, authors, highlights or comments. A bash script is +longdesc provided for removing the changes. +containersize 7872 +containerchecksum ffcf61ab2a404c27cea3434f9c9f0a2007865a2b86fb59310cb15b614c49923ba48ba75aa7b4e0b771a36dc3ae5f98199f1a69e5deea2cb146e49c69a3837a8b +doccontainersize 492728 +doccontainerchecksum 42752f7e39ac0129527526ab7e545cb23cb239689ed54a6ad4ec7e4125c7608b6e392f7abbffed43d46d7b6061b4478e6773fe8653f67321f9abff2db17d83d9 +docfiles size=389 + RELOC/doc/latex/changes/README details="Readme" language="en" + RELOC/doc/latex/changes/changes.english.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/changes/changes.english.withcode.pdf details="Package documentation, with code listing (English)" language="en" RELOC/doc/latex/changes/changes.example.addedmarkup.bf.tex + RELOC/doc/latex/changes/changes.example.addedmarkup.colored.tex RELOC/doc/latex/changes/changes.example.addedmarkup.dashuline.tex RELOC/doc/latex/changes/changes.example.addedmarkup.dotuline.tex RELOC/doc/latex/changes/changes.example.addedmarkup.em.tex RELOC/doc/latex/changes/changes.example.addedmarkup.it.tex - RELOC/doc/latex/changes/changes.example.addedmarkup.none.tex RELOC/doc/latex/changes/changes.example.addedmarkup.sl.tex - RELOC/doc/latex/changes/changes.example.addedmarkup.sout.tex RELOC/doc/latex/changes/changes.example.addedmarkup.uline.tex RELOC/doc/latex/changes/changes.example.addedmarkup.uuline.tex RELOC/doc/latex/changes/changes.example.addedmarkup.uwave.tex RELOC/doc/latex/changes/changes.example.addedmarkup.wrong.tex - RELOC/doc/latex/changes/changes.example.addedmarkup.xout.tex RELOC/doc/latex/changes/changes.example.authormarkup.brackets.tex RELOC/doc/latex/changes/changes.example.authormarkup.footnote.tex RELOC/doc/latex/changes/changes.example.authormarkup.none.tex @@ -26689,12 +45672,16 @@ docfiles size=208 RELOC/doc/latex/changes/changes.example.authormarkuptext.id.tex RELOC/doc/latex/changes/changes.example.authormarkuptext.name.tex RELOC/doc/latex/changes/changes.example.authormarkuptext.wrong.tex + RELOC/doc/latex/changes/changes.example.commentmarkup.footnote.tex + RELOC/doc/latex/changes/changes.example.commentmarkup.margin.tex + RELOC/doc/latex/changes/changes.example.commentmarkup.todo.tex + RELOC/doc/latex/changes/changes.example.commentmarkup.uwave.tex RELOC/doc/latex/changes/changes.example.deletedmarkup.bf.tex + RELOC/doc/latex/changes/changes.example.deletedmarkup.colored.tex RELOC/doc/latex/changes/changes.example.deletedmarkup.dashuline.tex RELOC/doc/latex/changes/changes.example.deletedmarkup.dotuline.tex RELOC/doc/latex/changes/changes.example.deletedmarkup.em.tex RELOC/doc/latex/changes/changes.example.deletedmarkup.it.tex - RELOC/doc/latex/changes/changes.example.deletedmarkup.none.tex RELOC/doc/latex/changes/changes.example.deletedmarkup.sl.tex RELOC/doc/latex/changes/changes.example.deletedmarkup.sout.tex RELOC/doc/latex/changes/changes.example.deletedmarkup.uline.tex @@ -26704,61 +45691,163 @@ docfiles size=208 RELOC/doc/latex/changes/changes.example.deletedmarkup.xout.tex RELOC/doc/latex/changes/changes.example.draft.tex RELOC/doc/latex/changes/changes.example.final.tex - RELOC/doc/latex/changes/changes.example.listofchanges.both.tex + RELOC/doc/latex/changes/changes.example.highlightmarkup.background.tex + RELOC/doc/latex/changes/changes.example.highlightmarkup.uuline.tex + RELOC/doc/latex/changes/changes.example.highlightmarkup.uwave.tex + RELOC/doc/latex/changes/changes.example.listofchanges.all.tex + RELOC/doc/latex/changes/changes.example.listofchanges.compactsummary.tex RELOC/doc/latex/changes/changes.example.listofchanges.list.tex + RELOC/doc/latex/changes/changes.example.listofchanges.show.tex RELOC/doc/latex/changes/changes.example.listofchanges.summary.tex + RELOC/doc/latex/changes/changes.example.listofchanges.title.tex RELOC/doc/latex/changes/changes.example.listofchanges.wrong.tex RELOC/doc/latex/changes/changes.example.markup.bfit.tex RELOC/doc/latex/changes/changes.example.markup.default.tex RELOC/doc/latex/changes/changes.example.markup.nocolor.tex RELOC/doc/latex/changes/changes.example.markup.underlined.tex RELOC/doc/latex/changes/changes.example.markup.wrong.tex + RELOC/doc/latex/changes/changes.example.packageoptions.todonotes.tex + RELOC/doc/latex/changes/changes.example.packageoptions.truncate.tex + RELOC/doc/latex/changes/changes.example.packageoptions.ulem.tex + RELOC/doc/latex/changes/changes.example.packageoptions.xcolor.tex + RELOC/doc/latex/changes/changes.example.screenshot.tex RELOC/doc/latex/changes/changes.example.setaddedmarkup.tex RELOC/doc/latex/changes/changes.example.setauthormarkup.tex RELOC/doc/latex/changes/changes.example.setauthormarkupposition.tex RELOC/doc/latex/changes/changes.example.setauthormarkuptext.tex + RELOC/doc/latex/changes/changes.example.setcommentmarkup.tex RELOC/doc/latex/changes/changes.example.setdeletedmarkup.tex - RELOC/doc/latex/changes/changes.example.setremarkmarkup.tex + RELOC/doc/latex/changes/changes.example.sethighlightmarkup.tex RELOC/doc/latex/changes/changes.example.setsocextension.tex + RELOC/doc/latex/changes/changes.example.setsummarytowidth.tex + RELOC/doc/latex/changes/changes.example.setsummarywidth.tex + RELOC/doc/latex/changes/changes.example.settruncatewidth.tex RELOC/doc/latex/changes/changes.example.simple.tex - RELOC/doc/latex/changes/changes.ngerman.pdf - RELOC/doc/latex/changes/delcmdchanges.bash + RELOC/doc/latex/changes/changes.ngerman.pdf details="Package documentation (German)" language="de" RELOC/doc/latex/changes/userdoc/changes.de.tex RELOC/doc/latex/changes/userdoc/changes.en.tex -srcfiles size=16 + RELOC/doc/latex/changes/userdoc/ex_added.tex + RELOC/doc/latex/changes/userdoc/ex_comment.tex + RELOC/doc/latex/changes/userdoc/ex_definechangesauthor.tex + RELOC/doc/latex/changes/userdoc/ex_deleted.tex + RELOC/doc/latex/changes/userdoc/ex_highlight.tex + RELOC/doc/latex/changes/userdoc/ex_listofchanges.tex + RELOC/doc/latex/changes/userdoc/ex_replaced.tex + RELOC/doc/latex/changes/userdoc/ex_setaddedmarkup.tex + RELOC/doc/latex/changes/userdoc/ex_setauthormarkup.tex + RELOC/doc/latex/changes/userdoc/ex_setauthormarkupposition.tex + RELOC/doc/latex/changes/userdoc/ex_setauthormarkuptext.tex + RELOC/doc/latex/changes/userdoc/ex_setcommentmarkup.tex + RELOC/doc/latex/changes/userdoc/ex_setdeletedmarkup.tex + RELOC/doc/latex/changes/userdoc/ex_sethighlightmarkup.tex + RELOC/doc/latex/changes/userdoc/ex_setsocextension.tex + RELOC/doc/latex/changes/userdoc/ex_setsummarytowidth.tex + RELOC/doc/latex/changes/userdoc/ex_setsummarywidth.tex + RELOC/doc/latex/changes/userdoc/ex_settruncatewidth.tex + RELOC/doc/latex/changes/userdoc/ex_usepackage_addedmarkup_changes.tex + RELOC/doc/latex/changes/userdoc/ex_usepackage_authormarkup_changes.tex + RELOC/doc/latex/changes/userdoc/ex_usepackage_authormarkupposition_changes.tex + RELOC/doc/latex/changes/userdoc/ex_usepackage_authormarkuptext_changes.tex + RELOC/doc/latex/changes/userdoc/ex_usepackage_commentmarkup_changes.tex + RELOC/doc/latex/changes/userdoc/ex_usepackage_deletedmarkup_changes.tex + RELOC/doc/latex/changes/userdoc/ex_usepackage_highlightmarkup_changes.tex + RELOC/doc/latex/changes/userdoc/ex_usepackage_markup_changes.tex + RELOC/doc/latex/changes/userdoc/ex_usepackage_todonotes_changes.tex + RELOC/doc/latex/changes/userdoc/ex_usepackage_truncate_changes.tex + RELOC/doc/latex/changes/userdoc/ex_usepackage_ulem_changes.tex + RELOC/doc/latex/changes/userdoc/ex_usepackage_xcolor_changes.tex + RELOC/doc/latex/changes/userdoc/in_added.tex + RELOC/doc/latex/changes/userdoc/in_comment.tex + RELOC/doc/latex/changes/userdoc/in_definechangesauthor.tex + RELOC/doc/latex/changes/userdoc/in_deleted.tex + RELOC/doc/latex/changes/userdoc/in_highlight.tex + RELOC/doc/latex/changes/userdoc/in_listofchanges.tex + RELOC/doc/latex/changes/userdoc/in_path_doc_examples.tex + RELOC/doc/latex/changes/userdoc/in_path_script.tex + RELOC/doc/latex/changes/userdoc/in_replaced.tex + RELOC/doc/latex/changes/userdoc/in_setaddedmarkup.tex + RELOC/doc/latex/changes/userdoc/in_setauthormarkup.tex + RELOC/doc/latex/changes/userdoc/in_setauthormarkupposition.tex + RELOC/doc/latex/changes/userdoc/in_setauthormarkuptext.tex + RELOC/doc/latex/changes/userdoc/in_setcommentmarkup.tex + RELOC/doc/latex/changes/userdoc/in_setdeletedmarkup.tex + RELOC/doc/latex/changes/userdoc/in_sethighlightmarkup.tex + RELOC/doc/latex/changes/userdoc/in_setsocextension.tex + RELOC/doc/latex/changes/userdoc/in_setsummarytowidth.tex + RELOC/doc/latex/changes/userdoc/in_setsummarywidth.tex + RELOC/doc/latex/changes/userdoc/in_settruncatewidth.tex + RELOC/doc/latex/changes/userdoc/in_usepackage_addedmarkup_changes.tex + RELOC/doc/latex/changes/userdoc/in_usepackage_authormarkup_changes.tex + RELOC/doc/latex/changes/userdoc/in_usepackage_authormarkupposition_changes.tex + RELOC/doc/latex/changes/userdoc/in_usepackage_authormarkuptext_changes.tex + RELOC/doc/latex/changes/userdoc/in_usepackage_changes.tex + RELOC/doc/latex/changes/userdoc/in_usepackage_commentmarkup_changes.tex + RELOC/doc/latex/changes/userdoc/in_usepackage_deletedmarkup_changes.tex + RELOC/doc/latex/changes/userdoc/in_usepackage_draft_changes.tex + RELOC/doc/latex/changes/userdoc/in_usepackage_final_changes.tex + RELOC/doc/latex/changes/userdoc/in_usepackage_highlightmarkup_changes.tex + RELOC/doc/latex/changes/userdoc/in_usepackage_markup_changes.tex + RELOC/doc/latex/changes/userdoc/in_usepackage_options_changes.tex + RELOC/doc/latex/changes/userdoc/in_usepackage_todonotes_changes.tex + RELOC/doc/latex/changes/userdoc/in_usepackage_truncate_changes.tex + RELOC/doc/latex/changes/userdoc/in_usepackage_ulem_changes.tex + RELOC/doc/latex/changes/userdoc/in_usepackage_xcolor_changes.tex + RELOC/doc/latex/changes/userdoc/script_pymergechanges.tex + RELOC/doc/latex/changes/userdoc/script_pymergechanges_empty.tex +srccontainersize 16188 +srccontainerchecksum e08209d7dc9567a2187b9a3b8e76f9fe8655d1ab82f0f9549cc504f13826761a5138f3461b97e27c785a062fe598d64689c3826ba24b0eaac7c421e1727e044d +srcfiles size=26 RELOC/source/latex/changes/changes.drv RELOC/source/latex/changes/changes.dtx RELOC/source/latex/changes/changes.ins + RELOC/source/latex/changes/example-screenshot.dtx RELOC/source/latex/changes/examples.dtx +runfiles size=11 + RELOC/scripts/changes/pyMergeChanges.py + RELOC/tex/latex/changes/changes.sty +catalogue-contact-bugs https://gitlab.com/ekleinod/changes/issues +catalogue-contact-home http://changes.sourceforge.net/ +catalogue-contact-repository https://gitlab.com/ekleinod/changes/ +catalogue-contact-support https://gitlab.com/ekleinod/changes/issues catalogue-ctan /macros/latex/contrib/changes -catalogue-date 2015-04-28 00:10:32 +0200 +catalogue-date 2019-01-27 11:54:46 +0100 catalogue-license lppl1.3 -catalogue-version 2.0.4 +catalogue-topics editorial doc-tool +catalogue-version 3.1.2 name chappg category Package revision 15878 -shortdesc Page numbering by chapter. -relocated 1 -longdesc The package provides for 'chapterno-pageno' or 'chaptername- -longdesc pageno' page numbering. Provision is made for front- and -longdesc backmatter in book class. -runfiles size=1 - RELOC/tex/latex/chappg/chappg.sty +shortdesc Page numbering by chapter +relocated 1 +longdesc The package provides for 'chapterno-pageno' or +longdesc 'chaptername-pageno' page numbering. Provision is made for +longdesc front- and backmatter in book class. +containersize 1896 +containerchecksum 8286a7b7664f7634bc5dd16ae1888cc4b70e2880c8749fe2e894d209384da7a8513b2daa318a4154f9b443f89b7eb2e3c6d620b81e1bbfa1ed64c243ad57e47d +doccontainersize 189408 +doccontainerchecksum c0d42e7a9cbae3fc7386e9734492cd3f879ecf69551d17483c4f4516c2ea09d0b9b76914decb987f850af362e54c638af190de6d0d6414d09c49cf48c0635f59 docfiles size=51 - RELOC/doc/latex/chappg/chappg.pdf + RELOC/doc/latex/chappg/chappg.pdf details="Package documentation" +srccontainersize 6372 +srccontainerchecksum 371b6630fc12563694db35e8e086f7659e60f49a6b881281bd3bf2c081c6ccc2af74b630b6a53ac9d8b447635f2700f3d15643a02f7d873b5451c9b43a331b5d srcfiles size=6 RELOC/source/latex/chappg/chappg.dtx RELOC/source/latex/chappg/chappg.ins +runfiles size=1 + RELOC/tex/latex/chappg/chappg.sty +catalogue-contact-repository https://github.com/rf-latex/chappg +catalogue-contact-support https://github.com/rf-latex/chappg/issues catalogue-ctan /macros/latex/contrib/chappg -catalogue-date 2012-06-08 21:17:59 +0200 +catalogue-date 2018-09-15 15:30:15 +0200 catalogue-license lppl +catalogue-topics page-nos catalogue-version 2.1b name chapterfolder category Package revision 15878 -shortdesc Package for working with complicated folder structures. +shortdesc Package for working with complicated folder structures relocated 1 longdesc This package simplifies working with folder structures that longdesc match the chapter/section/subsection structure. It provides @@ -26767,25 +45856,38 @@ longdesc chapter/section/subsection, and provides macros that allow longdesc inclusion without using the full path, rather the path relative longdesc to the current folder of the chapter/section/subsection. It longdesc makes easy changing the name of a folder, for example. -runfiles size=2 - RELOC/tex/latex/chapterfolder/chapterfolder.sty +containersize 1588 +containerchecksum b5f68c160249e9cd94efc4c664a18c04e627d416b304697859144d6bbc5ef787c0f8721d19cd6aab6c60864dedc65e84b3ea9114b7c823a8131b4bfdfad0c2b8 +doccontainersize 186732 +doccontainerchecksum 43a28dd7182e02ebe0541c7b236046a6c23d55c73e36aa1a0e85954c5efd917667e1916ed0bb7000cbc5285230d162d5e844726282f0bb93ff85dfbde5fe8c57 docfiles size=49 - RELOC/doc/latex/chapterfolder/chapterfolder.pdf + RELOC/doc/latex/chapterfolder/chapterfolder.pdf details="Package documentation" +srccontainersize 2884 +srccontainerchecksum 179e4fd7966f1bc12fa89fa36a5e292f0d9937bd5ae74dbc9ef5846b0d55fdfd53e998fdb9ea40311dd34c7a99646d2dfb309fc942c6cfa3ada312297975f1e9 srcfiles size=5 RELOC/source/latex/chapterfolder/chapterfolder.dtx RELOC/source/latex/chapterfolder/chapterfolder.ins +runfiles size=2 + RELOC/tex/latex/chapterfolder/chapterfolder.sty catalogue-ctan /macros/latex/contrib/chapterfolder -catalogue-date 2012-06-08 21:17:59 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics doc-mgmt catalogue-version 2.0.1 name charter category Package revision 15878 -shortdesc Charter fonts. +shortdesc Charter fonts relocated 1 longdesc A commercial text font donated for the common good. Support for longdesc use with LaTeX is available in freenfss, part of psnfss. +containersize 175180 +containerchecksum 706efb4e3daf7c304f5047b99d1f68051aedafc110cdd51b2e3cc520ebe628a87c41579cf476978e70aa0ae920e7a3aca1082013b41be8902174975e164a8f9b +doccontainersize 800 +doccontainerchecksum 846ccf6ea679e3fc70192e340ce79982cd916d1383579a8549dba7125de645e4fcd4c276800bd5815fcb67d7227081a66b51f42dabebe8cf112585ce9685fb8e +docfiles size=1 + RELOC/doc/fonts/charter/readme.charter details="Readme" runfiles size=127 RELOC/fonts/afm/bitstrea/charter/bchb8a.afm RELOC/fonts/afm/bitstrea/charter/bchbi8a.afm @@ -26845,56 +45947,234 @@ runfiles size=127 RELOC/fonts/vf/bitstrea/charter/bchro7t.vf RELOC/fonts/vf/bitstrea/charter/bchro8c.vf RELOC/fonts/vf/bitstrea/charter/bchro8t.vf -docfiles size=1 - RELOC/doc/fonts/charter/readme.charter catalogue-ctan /fonts/charter -catalogue-date 2012-11-30 16:37:48 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics font font-serif font-type1 name chbibref category Package revision 17120 -shortdesc Change the Bibliography/References title. +shortdesc Change the Bibliography/References title relocated 1 longdesc Defines a single command, \setbibref, which sets whichever of longdesc \bibname and \refname is in use. (\bibname is used in book.cls longdesc and report.cls, and \refname is used in article.cls.) -runfiles size=1 - RELOC/tex/latex/chbibref/chbibref.sty +containersize 1060 +containerchecksum c87fc723f7d78aaf6f47f0eb34760d20c22a46983e802f1383ca4d952b354e199fe17dcb0e8b42e66522826f71f1031c59457ad4c5f5751c6ffeba66adeb4c30 +doccontainersize 169552 +doccontainerchecksum 58c43dbb1274e99ab60ae8c2911dff6d73099c02f3c6b4b97eeccaa336f56e677ad3a1897a4fd782cf97e59b9938c83f13c0741697630d2dcaa4a7daa0b852e0 docfiles size=44 - RELOC/doc/latex/chbibref/chbibref.pdf + RELOC/doc/latex/chbibref/chbibref.pdf details="Package documentation" RELOC/doc/latex/chbibref/chbibref.tex +runfiles size=1 + RELOC/tex/latex/chbibref/chbibref.sty catalogue-ctan /macros/latex/contrib/chbibref -catalogue-date 2012-08-26 01:20:08 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics headings catalogue-version 1.0 +name cheatsheet +category Package +revision 45069 +shortdesc A simple cheatsheet class +relocated 1 +longdesc The package provides a clean, multi-column design intended for +longdesc cheat sheets. It imports the most useful packages and encloses +longdesc the document in a multicol environment. +containersize 2676 +containerchecksum 5d50e5bc579821cc9296209983af68f5c12f6aaea90dffe386efb85d72683c10dd518fc2abefd51687402125bdd4f108ea6325c546ed6b2216cff130abdd1a51 +doccontainersize 404360 +doccontainerchecksum 0c798c7057e6e9d8b3aabaf745b374823f0a186e95a01d6208ec22df8f733f02a86c01b35bf4dfab88837574fc63f159ffe177f6c155e52f85bc0d062966acd3 +docfiles size=100 + RELOC/doc/latex/cheatsheet/README.md details="Readme" + RELOC/doc/latex/cheatsheet/cheatsheet.pdf details="Package documentation" +srccontainersize 5984 +srccontainerchecksum 66f00ad307295e106dbc45827a78041329bc8f4eb7fb3eff6b2c34ea6614b84496e4cec43e81213304022121268cef3e844f2f55e95c850f56ad261068448127 +srcfiles size=5 + RELOC/source/latex/cheatsheet/cheatsheet.dtx + RELOC/source/latex/cheatsheet/cheatsheet.ins +runfiles size=2 + RELOC/tex/latex/cheatsheet/cheatsheet.cls +catalogue-contact-bugs https://github.com/ACHinrichs/LaTeX-templates/issues +catalogue-contact-repository https://github.com/ACHinrichs/LaTeX-templates +catalogue-ctan /macros/latex/contrib/cheatsheet +catalogue-date 2017-08-20 06:11:29 +0200 +catalogue-license mit +catalogue-topics tut-cheat +catalogue-version 0.8 + name checkcites category Package -revision 28572 -shortdesc Check citation commands in a document. +revision 45131 +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 -runfiles size=4 - texmf-dist/scripts/checkcites/checkcites.lua -docfiles size=58 - texmf-dist/doc/support/checkcites/README - texmf-dist/doc/support/checkcites/checkcites-doc.pdf +containersize 5328 +containerchecksum 30cc60a17fadb14921a2134f60a70947727a8da100a47da50342f24b2071749a4a207994b0053a7d20e00a0eed0b9c985d8ce9f9a7e7ac874bd684a319b03847 +doccontainersize 224684 +doccontainerchecksum 56e2279cf3c522dbb86bb95e3a86ba7782bf422616568c806c97dbcd43437f75749771b50c2e53b7e247536ef9691157f00334d5f85b890ce588a5fdd01fe81e +docfiles size=61 + texmf-dist/doc/support/checkcites/README details="Readme" + texmf-dist/doc/support/checkcites/checkcites-doc.pdf details="Package documentation" texmf-dist/doc/support/checkcites/checkcites-doc.tex +runfiles size=6 + texmf-dist/scripts/checkcites/checkcites.lua +catalogue-contact-bugs https://github.com/cereda/checkcites/issues +catalogue-contact-repository https://github.com/cereda/checkcites catalogue-ctan /support/checkcites -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-08-25 17:01:28 +0200 catalogue-license lppl1.3 -catalogue-version 1.0i +catalogue-topics debug-supp +catalogue-version 2.0 + +name checkcites.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of checkcites +containersize 344 +containerchecksum 124f8102477f86ccd0a7ead8f9f082e7cd567632fef5df1e74e6042da068219bf145bb80e977e45d85cd0b735746f5c6deab5c05352e669c7778c269fce76fba +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/checkcites + +name checkcites.amd64-freebsd +category Package +revision 25623 +shortdesc amd64-freebsd files of checkcites +containersize 344 +containerchecksum 4de3a159c9ca04adbcd61018ace5f50c697b40d79f90159ff8bf7a814002e17c53e1d973551362033871c67adfa4613224f27891fe1a93884b4b2f3a5361b2d0 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/checkcites + +name checkcites.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of checkcites +containersize 344 +containerchecksum 2c5d4339127277b721245c3047150b860d98ef9e9b5ecfe0f6e1a0f91a250d6df92edb51f981cdbe8a099b2acc56c0489c66e6d5249969277c7502d08e37247f +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/checkcites + +name checkcites.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of checkcites +containersize 344 +containerchecksum d7f149d74066ca521158c99e11e89abe4a4a543d5b62639591dd88c4d68a381fe1c4d355761948309d4faeb420fd0cdc891e3626fa824803d3b98d977c576a19 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/checkcites + +name checkcites.i386-cygwin +category Package +revision 25623 +shortdesc i386-cygwin files of checkcites +containersize 344 +containerchecksum ed555451bf5cdd1d4d512ea8fcc0993bbb944fdf1d5b17076c6c8c88e19069f40a207e9123f8f97f33430ad22cdde8b083d60369a40b0db70ce0171178c423c7 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/checkcites + +name checkcites.i386-freebsd +category Package +revision 25623 +shortdesc i386-freebsd files of checkcites +containersize 344 +containerchecksum 84e344f28b911faa11852fd6009cfba643587a4819e036b4bdfdc523fdeddda918b53cb131a5913ed016d28b46dd7b783fb08c985b1f7270f303ff792cc03b22 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/checkcites name checkcites.i386-linux category Package revision 25623 shortdesc i386-linux files of checkcites +containersize 344 +containerchecksum e49382fad64fa3f1761c0e8b3a64422dcd980e4a83a6fe52952ba720156e0a89319c0df8742ab31068d53229bc78e4183b45ead9a694a9a83ef0b7bf1bd25c04 binfiles arch=i386-linux size=1 bin/i386-linux/checkcites +name checkcites.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of checkcites +containersize 344 +containerchecksum 34a2d9d1ecafe5a3a04a21acfd3dbe28f40fda819dbc69a4c6e6ab2062a4c0712ecc87a2ef0f650f6042cf86cd2c1ca78e0fc24f370d3c8f576f15aa13c7a3d6 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/checkcites + +name checkcites.i386-solaris +category Package +revision 25623 +shortdesc i386-solaris files of checkcites +containersize 344 +containerchecksum 44174b013fe4f9e74d15469f096ed0e39a3b031258f8ed2648c4ba86661dd0b5b67f9c48a0083544dfad40c06381d02e60e9b5d8f917dff94847800e5dc2e852 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/checkcites + +name checkcites.win32 +category Package +revision 25623 +shortdesc win32 files of checkcites +containersize 688 +containerchecksum 5461bcf73d9455c39040b5db44ffeb9f1f05d81e14f0c3e489a6dfada504e6545d15e2e723d4638db322a5a017cdf45c24bd6a4817a21ca10cd299c104f43a3a +binfiles arch=win32 size=1 + bin/win32/checkcites.exe + +name checkcites.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of checkcites +containersize 344 +containerchecksum 1c624c872a4f38262f37b465c7fce18fc0669f55e07a6ca1c2298521fb83d20395dc4b88f4f0e291cf8c6ba71f0fd9742f48faa3c6366ca0c9976ac3d02e0473 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/checkcites + +name checkcites.x86_64-darwin +category Package +revision 25623 +shortdesc x86_64-darwin files of checkcites +containersize 344 +containerchecksum 7e3fe0553490231af51d9061ab291b94f2b0858ba2aac0d3e5049a1c540c205b8dba6c21b730fadfa7a89d188d2204be379bd223a53f3974a7819c4c7305d2d5 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/checkcites + +name checkcites.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of checkcites +containersize 356 +containerchecksum bc6224f3925c0b3e94d3fa19e172384d59d572febc1e84f7f9c0a3a1184f5bb01f8f181ec093b48b1f88316f30be79b030f32f2df82365253011bbd0d3581e4e +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/checkcites + +name checkcites.x86_64-linux +category Package +revision 25623 +shortdesc x86_64-linux files of checkcites +containersize 344 +containerchecksum bdd29e325c0342eecfd324b822fb6992d34ad27bbba94082a7f7ed52238b6d48178f286052320c5c80647dd1e1090fd103ff2ddf82ef12b50d604847b216e714 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/checkcites + +name checkcites.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of checkcites +containersize 348 +containerchecksum 88fd112d83c18e9ed30d85c26e901e52bfbc84eb85ead9467843cb7b05d70d98e796b43ff8601a349369edb2a26cbcab8434ffa0e428b194f1ff94ce7251c79f +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/checkcites + +name checkcites.x86_64-solaris +category Package +revision 25623 +shortdesc x86_64-solaris files of checkcites +containersize 344 +containerchecksum 66a11f5542c150c82302b0342ecbe3830b67f48edb61a391c80672bda8aadd6e2f5defe3ab893c8d1406a7a0672f180c8120a240ed8b75fc8dffa34a34b97bc7 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/checkcites + name checklistings category Package revision 38300 @@ -26907,43 +46187,217 @@ longdesc package does not focus on a specific programming language, but longdesc it is designed to work well with languages and compilers in the longdesc ML family. depend checklistings.ARCH -runfiles size=6 - texmf-dist/scripts/checklistings/checklistings.sh - texmf-dist/tex/latex/checklistings/checklistings.sty +containersize 6496 +containerchecksum 599ed476321a825bea61fbdd468670cadcdb11249a4a9324fc88339a9445ceeced3680459dc2d27c2e6263cd207ffc0ce3b60b325d31072922bf4644478cf544 +doccontainersize 364456 +doccontainerchecksum 3f8d6eb67f305fa5e03bb625a4034ffe616a6c0223774688463884df99c337c1e5bdd76bbfa3b9428ec4812ec72388979c4252ba7407ae8b79e3de7cfacbeb01 docfiles size=96 texmf-dist/doc/latex/checklistings/Makefile - texmf-dist/doc/latex/checklistings/README.md + texmf-dist/doc/latex/checklistings/README.md details="Readme" texmf-dist/doc/latex/checklistings/checklistings.hva - texmf-dist/doc/latex/checklistings/checklistings.pdf + texmf-dist/doc/latex/checklistings/checklistings.pdf details="Package documentation" texmf-dist/doc/latex/checklistings/example.html - texmf-dist/doc/latex/checklistings/example.pdf + texmf-dist/doc/latex/checklistings/example.pdf details="Example of use" texmf-dist/doc/latex/checklistings/example.tex +srccontainersize 10948 +srccontainerchecksum a7435841305ce368f1bedac9cb531d8f0fce3fac27484547821a2e82998e977968e578601382f4cddf6c089b42e8e175c56d2e466faa5c4c0e5b49edaf6baf1d srcfiles size=11 texmf-dist/source/latex/checklistings/checklistings.dtx texmf-dist/source/latex/checklistings/checklistings.ins +runfiles size=6 + texmf-dist/scripts/checklistings/checklistings.sh + texmf-dist/tex/latex/checklistings/checklistings.sty +catalogue-contact-repository https://github.com/tbrk/checklistings catalogue-ctan /macros/latex/contrib/checklistings -catalogue-date 2015-09-03 19:26:31 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.2 catalogue-topics callback listing catalogue-version 1.0 +name checklistings.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of checklistings +containersize 348 +containerchecksum 1b9f15667531f7051882fda1938474d83cdc6b13e84073a4b554c5925c887f98f780434f32b247ab45cd8a78cb269c5647c3b4b0b9ad7393e8196e6ca9b18d6e +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/checklistings + +name checklistings.amd64-freebsd +category Package +revision 38300 +shortdesc amd64-freebsd files of checklistings +containersize 348 +containerchecksum d9b746b10d073975ee19fae94239ad9819cf5176ca2e2c54c5cf570ae2a1c50f1a86fda4857421c24aa08bb28817169cf36c3430e32406b39baf3b70269a0944 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/checklistings + +name checklistings.amd64-netbsd +category Package +revision 38300 +shortdesc amd64-netbsd files of checklistings +containersize 344 +containerchecksum 4fea897cfbb693aaa35bc426a33404f1c075d68e799d3283b9a964272461ff34ba6a9f589d8e07ef3819a775d2368ba7c28bc7c6ce3347877864eb12a15753cb +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/checklistings + +name checklistings.armhf-linux +category Package +revision 38300 +shortdesc armhf-linux files of checklistings +containersize 348 +containerchecksum 58d4cdbcd2a0108de2ffd7f143514d3a1d0dceee6944d489e0db988b526d56e09790023fb6955a50f77d23c9e21a87e08ca3cd0b1311dcf1b0d4629e6f5c4527 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/checklistings + +name checklistings.i386-cygwin +category Package +revision 38300 +shortdesc i386-cygwin files of checklistings +containersize 344 +containerchecksum 42e4be7598fe732c3585ed64ab21748794fe8cd29e86cfc3d9d719b7bbab8ec58be40a92c586323fc1816e4b847197b8a733b818649446b6d888869dbbab89fa +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/checklistings + +name checklistings.i386-freebsd +category Package +revision 38300 +shortdesc i386-freebsd files of checklistings +containersize 348 +containerchecksum e4dcc5326144080be8ce78cefceb0e323a22096f2760f35c7625176ebd6b4d06d27a0f0887d7ace52059a6a6539870bd3e6a32f3fca90e11bff5b15f78b72711 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/checklistings + name checklistings.i386-linux category Package revision 38300 shortdesc i386-linux files of checklistings +containersize 348 +containerchecksum 967d63835da87dc84d92dee3474b11f6e910cd2016a2553903e1e289840e4694a1d39edbd0d4c385a857b877531857ada7072b4e4a17bf06060e46e7cda23f05 binfiles arch=i386-linux size=1 bin/i386-linux/checklistings +name checklistings.i386-netbsd +category Package +revision 38300 +shortdesc i386-netbsd files of checklistings +containersize 344 +containerchecksum 8aab97f54e1dba3fd1109d8b0e23344249c386aee161afacfc1f436c25130aea5286c392f85334e6a26e953676338e40acf38b16f88f92a7f3a53781e247c12e +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/checklistings + +name checklistings.i386-solaris +category Package +revision 38300 +shortdesc i386-solaris files of checklistings +containersize 344 +containerchecksum 190382726ed7d08a4dbe8e91083ca83fa7e7554fe477134309de3ed9ca08a498580a2c5293f811b1bca14f1f7bb07475e225181827bb4be3aa76567d66b72fea +binfiles arch=i386-solaris size=1 + bin/i386-solaris/checklistings + +name checklistings.x86_64-cygwin +category Package +revision 38300 +shortdesc x86_64-cygwin files of checklistings +containersize 348 +containerchecksum afd2ce8fbd988e3ec4d9acfb44f31549efcf8a82baf37b921edcbf14220d08b8de2d1b340a594f204457e98f37734eff37608d0ef73ea0a8705585ee4a3a3b9c +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/checklistings + +name checklistings.x86_64-darwin +category Package +revision 38300 +shortdesc x86_64-darwin files of checklistings +containersize 348 +containerchecksum 34fcd3831878891e687013684053c2df19916ea67e04550c1e9243eafeb0c8776d5b1a45fe675800c4b96a6dad1f521061f92eb343ae909bd988e25217831749 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/checklistings + +name checklistings.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of checklistings +containersize 356 +containerchecksum 6d445b62e19511189c819f64502fa8ce75bfe39e0151e6b969245136903905ab20ac25de292716896e2c811eb239aa4c268a7ef6b6b661f574bb7020baad17de +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/checklistings + +name checklistings.x86_64-linux +category Package +revision 38300 +shortdesc x86_64-linux files of checklistings +containersize 344 +containerchecksum 864a320e41e6e635641604743cc94eb402b924e3d7962f2a29ebbb43dcdc31ddcdef4595b26aa8094068a4edf0bec2cab1a358c4feaad9c2e21416d01f3102cf +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/checklistings + +name checklistings.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of checklistings +containersize 348 +containerchecksum 184eb9f8eaee991efe054a32abc0e0f0e72356c77bd40609d7868d208aa7c213f4600d176dd62f0d5490f072745e642f39a9d3e3f8537bbfb32ef50814e97fce +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/checklistings + +name checklistings.x86_64-solaris +category Package +revision 38300 +shortdesc x86_64-solaris files of checklistings +containersize 344 +containerchecksum d7f40c89b55f7be00c385c518fcfb5a0b4324c04f499fbc82fdfe61e46df6a65779fa2ba731d470ffcb70597083b3aa01d790fcfb1ee447d8afa774373f3f269 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/checklistings + +name chem-journal +category Package +revision 15878 +shortdesc Various BibTeX formats for journals in Chemistry +relocated 1 +longdesc Various BibTeX formats for journals in Chemistry, including +longdesc Reviews in Computational Chemistry, Journal of Physical +longdesc Chemistry, Journal of Computational Chemistry, and Physical +longdesc Chemistry Chemical Physics. +containersize 4992 +containerchecksum afe7c82f6e139c1321759ef9125f262d504bf602c1c5e16a11d41cc00ea47dac3f2befd602a863a12c46beaac4c50fe6fcdb145c5c6582c9d44c2740aa1b7743 +runfiles size=20 + RELOC/bibtex/bst/chem-journal/jcc.bst + RELOC/bibtex/bst/chem-journal/jpc.bst + RELOC/bibtex/bst/chem-journal/pccp.bst + RELOC/bibtex/bst/chem-journal/revcompchem.bst +catalogue-ctan /biblio/bibtex/contrib/chem-journal +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics chemistry bibtex-supp journalpub + name chemarrow category Package revision 17146 -shortdesc Arrows for use in chemistry. +shortdesc Arrows for use in chemistry relocated 1 longdesc This bundle consists of a font (available as Metafont source, -longdesc Metapost source, and generated type 1 versions), and a package +longdesc MetaPost source, and generated type 1 versions), and a package longdesc to use it. The arrows in the font are designed to look more longdesc like those in chemistry text-books than do Knuth's originals. execute addMap chemarrow.map +containersize 5212 +containerchecksum 4a95a6b81bd649764dea052984eb21c7f9e89c612ff96d23907eefce29e2d33fe92bd7944d94a6b108213d1820b3340feab35e3646f727288cb1df9b78302990 +doccontainersize 343744 +doccontainerchecksum 882e6c6fbeb5223fc1d2404e8b9ef9bce2c3b2ed1279d2bdc45616476a856c63fe07cdeb42e27f3bc459199f3537fc620ef08c00f4eea83df77502463fc30ca6 +docfiles size=121 + RELOC/doc/fonts/chemarrow/Liesmich.txt details="Package Liesmich" language="de" + RELOC/doc/fonts/chemarrow/README details="Package README" language="en" + RELOC/doc/fonts/chemarrow/arrow.Mac.sit.hqx + RELOC/doc/fonts/chemarrow/chemarrow-de.pdf details="Package documentation (German)" language="de" + RELOC/doc/fonts/chemarrow/chemarrow-de.tex + RELOC/doc/fonts/chemarrow/chemarrow.pdf details="Package documentation (English)" language="en" + RELOC/doc/fonts/chemarrow/chemarrow.tex + RELOC/doc/fonts/chemarrow/testchem.tex +srccontainersize 3136 +srccontainerchecksum 19903052aaa97902f721892bf4a9df8d685db46ffddb4cdeb4df280c24a72d2166bc13408a32d5c760272aee45ad5516b899c0024ff3f077fec6825f94e36736 +srcfiles size=3 + RELOC/source/fonts/chemarrow/Arrow.vfb + RELOC/source/fonts/chemarrow/arrow.mp runfiles size=9 RELOC/fonts/afm/public/chemarrow/arrow.afm RELOC/fonts/map/dvips/chemarrow/chemarrow.map @@ -26953,27 +46407,17 @@ runfiles size=9 RELOC/fonts/type1/public/chemarrow/arrow.pfb RELOC/fonts/type1/public/chemarrow/arrow.pfm RELOC/tex/latex/chemarrow/chemarrow.sty -docfiles size=121 - RELOC/doc/fonts/chemarrow/Liesmich.txt - RELOC/doc/fonts/chemarrow/README - RELOC/doc/fonts/chemarrow/arrow.Mac.sit.hqx - RELOC/doc/fonts/chemarrow/chemarrow-de.pdf - RELOC/doc/fonts/chemarrow/chemarrow-de.tex - RELOC/doc/fonts/chemarrow/chemarrow.pdf - RELOC/doc/fonts/chemarrow/chemarrow.tex - RELOC/doc/fonts/chemarrow/testchem.tex -srcfiles size=3 - RELOC/source/fonts/chemarrow/Arrow.vfb - RELOC/source/fonts/chemarrow/arrow.mp +catalogue-also chemarr catalogue-ctan /macros/latex/contrib/chemarrow -catalogue-date 2011-09-27 19:59:36 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics chemistry diagram catalogue-version 0.9 name chembst category Package revision 15878 -shortdesc A collection of BibTeX files for chemistry journals. +shortdesc A collection of BibTeX files for chemistry journals relocated 1 longdesc The package offers a collection of advanced BibTeX style files longdesc suitable for publications in chemistry journals. Currently, @@ -26983,6 +46427,18 @@ longdesc available. The style files support advanced features such as longdesc automatic formatting of errata or creating an appropriate entry longdesc for publications in Angewandte Chemie where both English and longdesc German should be cited simultaneously. +containersize 6916 +containerchecksum f6bc14345c841db93207745de1d6ce189e08a30d17110d8efe04af0c5aa98cf7e3a1208e1969afeca0c69f747fb5db39437645e2437f9596ba5a70610747b6d4 +doccontainersize 204580 +doccontainerchecksum 3263dbeee44d46b6661e2e755ba10e22475432d03de6b3286d1191acf2fc8df1541d9a9684d5e00143dbebf65bee468e9244ffe73d7ff43889153925b6edb379 +docfiles size=60 + RELOC/doc/latex/chembst/README details="Readme" + RELOC/doc/latex/chembst/chembst.pdf details="Package documentation" +srccontainersize 16300 +srccontainerchecksum c0c6658210450aa13a17e04eaee082f4d08b71a50a1552b571a49557ce8422d709da325c8bc91e742eeae04de388a777134a4d626d72409da3662c2d152cfc12 +srcfiles size=21 + RELOC/source/latex/chembst/chembst.dtx + RELOC/source/latex/chembst/chembst.ins runfiles size=48 RELOC/bibtex/bst/chembst/ChemCommun.bst RELOC/bibtex/bst/chembst/ChemEurJ.bst @@ -26990,173 +46446,185 @@ runfiles size=48 RELOC/bibtex/bst/chembst/JAmChemSoc.bst RELOC/bibtex/bst/chembst/JAmChemSoc_all.bst RELOC/bibtex/bst/chembst/cv.bst -docfiles size=60 - RELOC/doc/latex/chembst/README - RELOC/doc/latex/chembst/chembst.pdf -srcfiles size=21 - RELOC/source/latex/chembst/chembst.dtx - RELOC/source/latex/chembst/chembst.ins catalogue-ctan /biblio/bibtex/contrib/chembst -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics bibtex-sty chemistry catalogue-version 0.2.5 name chemcompounds category Package revision 15878 -shortdesc Simple consecutive numbering of chemical compounds. +shortdesc Simple consecutive numbering of chemical compounds relocated 1 longdesc The chemcompounds package allows for a simple consecutive longdesc numbering of chemical compounds. Optionally, it is possible to longdesc supply a custom name for each compound. The package differs longdesc from the chemcono package by not generating an odd-looking list longdesc of compounds inside the text. -runfiles size=2 - RELOC/tex/latex/chemcompounds/chemcompounds.sty +containersize 1956 +containerchecksum d8cafe15f21045522812279337f9680a975a3f9b9930231b7992435bf694f8f180b061623bdf5fbe7dc9cfdf7d6342e0d6c2dae1cbe0d8e855699064a97a95fd +doccontainersize 111604 +doccontainerchecksum 26d9568f73f6b0c557cc55b48a99826b70d87724f7f5776f7c58691e8374b3b6ed400206b338bb0397ae5e0c1df5d1bdbb638e80d0dbfea228138b96863587ad docfiles size=33 RELOC/doc/latex/chemcompounds/README - RELOC/doc/latex/chemcompounds/chemcompounds.pdf + RELOC/doc/latex/chemcompounds/chemcompounds.pdf details="Package documentation" +srccontainersize 7200 +srccontainerchecksum d1a0c821c6624efcb31ca21ab658a64919dd6eca51add909bea4467dbf47b20dfb60f10ee979a7525a04bae0f7440ddfae2c244da25444ccf0486708b4d1a1a6 srcfiles size=8 RELOC/source/latex/chemcompounds/chemcompounds.dtx RELOC/source/latex/chemcompounds/chemcompounds.ins +runfiles size=2 + RELOC/tex/latex/chemcompounds/chemcompounds.sty catalogue-ctan /macros/latex/contrib/chemcompounds -catalogue-date 2012-05-07 18:06:12 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics chemistry name chemcono category Package revision 17119 -shortdesc Support for compound numbers in chemistry documents. +shortdesc Support for compound numbers in chemistry documents relocated 1 longdesc A LaTeX package for using compound numbers in chemistry longdesc documents. It works like \cite and the \thebibliography, using longdesc \fcite and \theffbibliography instead. It allows compound names longdesc in documents to be numbered and does not affect the normal longdesc citation routines. +containersize 8132 +containerchecksum 29b6e78d47cdcb21c634540ed6a935cd5c6eea5fb6a28ee85cfe681ff00c8bd24d7175ee5adbbeab03e11db2f56a38d3359235ed44771976917f35c673fd21c5 +doccontainersize 231312 +doccontainerchecksum 9936d1f0ce1e6ab9498aec9d68c176ddd803de3ed1e5a698ca7b548203cac66492ce319af3e5951144ad11878065c8b349f57668498d245413d7db62d1b6a8ae +docfiles size=62 + RELOC/doc/latex/chemcono/chemcono.pdf details="Package documentation" + RELOC/doc/latex/chemcono/chemcono.tex + RELOC/doc/latex/chemcono/example.tex runfiles size=7 RELOC/tex/latex/chemcono/chemcono.sty RELOC/tex/latex/chemcono/drftcono.sty RELOC/tex/latex/chemcono/showkeysff.sty -docfiles size=62 - RELOC/doc/latex/chemcono/chemcono.pdf - RELOC/doc/latex/chemcono/chemcono.tex - RELOC/doc/latex/chemcono/example.tex catalogue-ctan /macros/latex/contrib/chemcono -catalogue-date 2011-09-27 19:59:36 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics chemistry catalogue-version 1.3 name chemexec category Package revision 21632 -shortdesc Creating (chemical) exercise sheets. +shortdesc Creating (chemical) exercise sheets relocated 1 longdesc The package provides environments and commands that the author longdesc needed when preparing exercise sheets and other teaching longdesc material. In particular, the package supports the creation of longdesc exercise sheets, with separating printing of solutions -runfiles size=9 - RELOC/tex/latex/chemexec/chemexec.sty +containersize 7656 +containerchecksum 62f374a57c799873aa4d1db52c56fcaf2f15dd813e3bd9295044499defa29a88567034e39b20af1e8a7e4208dcc35aa422c0ea8e1e0925fb1ae3e02a1a8cb482 +doccontainersize 310880 +doccontainerchecksum 83b622fe694111fefb9c7863d5322f7a717778727c99db3fe5eedec0b6575d4fe50e6b5076413cbbf36a222ee7765bbb847c44783d6ce45cb07f55bab16955da docfiles size=131 - RELOC/doc/latex/chemexec/README - RELOC/doc/latex/chemexec/chemexec_de.pdf + RELOC/doc/latex/chemexec/README details="Readme" + RELOC/doc/latex/chemexec/chemexec_de.pdf details="Package documentation (German)" language="de" RELOC/doc/latex/chemexec/chemexec_de.tex - RELOC/doc/latex/chemexec/chemexec_en.pdf + RELOC/doc/latex/chemexec/chemexec_en.pdf details="Package documentation (English)" language="en" RELOC/doc/latex/chemexec/chemexec_en.tex +runfiles size=9 + RELOC/tex/latex/chemexec/chemexec.sty catalogue-ctan /macros/latex/contrib/chemexec -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics chemistry exercise catalogue-version 1.0 name chemfig category Package -revision 36374 -shortdesc Draw molecules with easy syntax. +revision 51176 +shortdesc Draw molecules with easy syntax relocated 1 longdesc The package provides the command \chemfig{}, which draws -longdesc molecules using the tikz package. The argument provides +longdesc molecules using the TikZ package. The argument provides longdesc instructions for the drawing operation. While the diagrams longdesc produced are essentially 2-dimensional, the package supports -longdesc many of the conventional notations for illustrating the 3- -longdesc dimensional layout of a molecule. The package uses TikZ for its -longdesc actual drawing operations. -runfiles size=27 +longdesc many of the conventional notations for illustrating the +longdesc 3-dimensional layout of a molecule. The package uses TikZ for +longdesc its actual drawing operations. +containersize 23716 +containerchecksum bf8b9f313bdc239eac7c11c8b887755fc5106c389b3d62f013c764a8392298f4e0074796ec128edaa0d4126b52b055b3787454885dd2cd214e2603b7896b28dd +doccontainersize 2075596 +doccontainerchecksum 61027d844de25043317e4eba23fd3003296fd0fad7ea9495f6b809c0a8b5cc055deb0798259bc6de09ed2a1e462b8aa9c226d5482c9642e87ae6c0de3787db47 +docfiles size=655 + RELOC/doc/generic/chemfig/README details="Readme" + RELOC/doc/generic/chemfig/chemfig-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/chemfig/chemfig-en.tex + RELOC/doc/generic/chemfig/chemfig-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/generic/chemfig/chemfig-fr.tex + RELOC/doc/generic/chemfig/chemfigold.tex +runfiles size=29 RELOC/tex/generic/chemfig/chemfig.sty RELOC/tex/generic/chemfig/chemfig.tex RELOC/tex/generic/chemfig/t-chemfig.tex -docfiles size=634 - RELOC/doc/generic/chemfig/README - RELOC/doc/generic/chemfig/chemfig_doc_en.pdf - RELOC/doc/generic/chemfig/chemfig_doc_en.tex - RELOC/doc/generic/chemfig/chemfig_doc_fr.pdf - RELOC/doc/generic/chemfig/chemfig_doc_fr.tex +catalogue-contact-bugs https://framagit.org/unbonpetit/chemfig/issues +catalogue-contact-repository https://framagit.org/unbonpetit/chemfig/tree/master catalogue-ctan /macros/generic/chemfig -catalogue-date 2015-02-24 06:54:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.1a +catalogue-date 2019-05-21 21:02:44 +0200 +catalogue-license lppl1.3c +catalogue-topics graphics diagram chemistry pgf-tikz etex +catalogue-version 1.41 name chemformula category Package -revision 38341 +revision 43583 shortdesc Command for typesetting chemical formulas and reactions relocated 1 longdesc The package provides a command to typeset chemical formulas and longdesc reactions in support of other chemistry packages (such as longdesc chemmacros). The package used to be distributed as a part of longdesc chemmacros. -runfiles size=30 - RELOC/tex/latex/chemformula/chemformula.sty -docfiles size=250 - RELOC/doc/latex/chemformula/README - RELOC/doc/latex/chemformula/chemformula_en.pdf +containersize 18536 +containerchecksum bf57f75d87af7a3b0287270276cd2467122ffd24ace6d378d72fa8b08fd278abe083211c3da442ea3a8392bac030e2c411a87a93df4c1a213f593f7fef22689f +doccontainersize 973588 +doccontainerchecksum a56ac7e497e3d6a6baf70c1051505968ffd965e9d91cb89b0dc5b2b2c182bb84cacb5c619266f427c62d5680b137e0f4a3d2533554b7e8a4f59b04fb396757fc +docfiles size=251 + RELOC/doc/latex/chemformula/README details="Readme" + RELOC/doc/latex/chemformula/chemformula_en.pdf details="Package documentation" RELOC/doc/latex/chemformula/chemformula_en.tex +runfiles size=33 + RELOC/tex/latex/chemformula/chemformula.sty +catalogue-contact-repository https://github.com/cgnieder/chemformula/ catalogue-ctan /macros/latex/contrib/chemformula -catalogue-date 2015-09-09 07:24:52 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 catalogue-topics chemistry -catalogue-version 4.12b +catalogue-version 4.15e name chemgreek category Package -revision 37729 -shortdesc Upright Greek letters in chemistry. +revision 42758 +shortdesc Upright Greek letters in chemistry relocated 1 longdesc The package provides upright Greek letters in support of other longdesc chemistry packages (such as chemmacros). The package used to be longdesc distributed as a part of chemmacros. -runfiles size=11 - RELOC/tex/latex/chemgreek/chemgreek.sty -docfiles size=181 - RELOC/doc/latex/chemgreek/README - RELOC/doc/latex/chemgreek/chemgreek_en.pdf +containersize 7116 +containerchecksum 5ad82bd7e1973ec3cc79277ab653e926bece0b9e8feffffbb798545ab1fe667c15a6ca08de7c6115c1436d552ec4ded0a9e489315f3e9325ea9dc0f82972a874 +doccontainersize 730616 +doccontainerchecksum 015c8e3357c7d53745516a4c6d6282bde49c9462d516e9bebe9316769684c310195c23fee9e7e24a14d8084bf0d5875b158b60488b7fbdd03a83b590abb1cf45 +docfiles size=187 + RELOC/doc/latex/chemgreek/README details="Readme" + RELOC/doc/latex/chemgreek/chemgreek_en.pdf details="Package documentation" RELOC/doc/latex/chemgreek/chemgreek_en.tex +runfiles size=12 + RELOC/tex/latex/chemgreek/chemgreek.sty +catalogue-contact-repository https://github.com/cgnieder/chemgreek/ catalogue-ctan /macros/latex/contrib/chemgreek -catalogue-date 2015-07-01 12:48:02 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 catalogue-topics chemistry -catalogue-version 1.0a - -name chem-journal -category Package -revision 15878 -shortdesc Various BibTeX formats for journals in Chemistry. -relocated 1 -longdesc Various BibTeX formats for journals in Chemistry, including -longdesc Reviews in Computational Chemistry, Journal of Physical -longdesc Chemistry, Journal of Computational Chemistry, and Physical -longdesc Chemistry Chemical Physics. -runfiles size=20 - RELOC/bibtex/bst/chem-journal/jcc.bst - RELOC/bibtex/bst/chem-journal/jpc.bst - RELOC/bibtex/bst/chem-journal/pccp.bst - RELOC/bibtex/bst/chem-journal/revcompchem.bst -catalogue-ctan /biblio/bibtex/contrib/chem-journal -catalogue-date 2011-11-15 11:50:22 +0100 -catalogue-license gpl +catalogue-version 1.1 name chemmacros category Package -revision 38359 +revision 45164 shortdesc A collection of macros to support typesetting chemistry documents relocated 1 longdesc The bundle offers a collection of macros and commands which are @@ -27171,12 +46639,22 @@ longdesc and ghsystem, providing for the UN globally harmonised chemical longdesc notation. The packages are written using current versions of longdesc the experimental LaTeX 3 coding conventions and the LaTeX 3 longdesc support packages. -runfiles size=93 +containersize 40252 +containerchecksum a35aa46671c8eaa68f7fece41fa87849ee02877f08cd65fbf24db3a0422c569062ba45fce7caa7b6c867a36074a68b3c8c2003fd5c2cfaa4db2638b8210491e4 +doccontainersize 1078412 +doccontainerchecksum 03d84a650e43618375c6dc0d3124e6aed73471c8aa770c348d381e1b5286ffba4b24d4258a2e189fb76c4eb850cd3641e52491c94507754d4a00fc22745b0b22 +docfiles size=300 + RELOC/doc/latex/chemmacros/README details="Readme" + RELOC/doc/latex/chemmacros/chemmacros.history + RELOC/doc/latex/chemmacros/chemmacros_en.pdf details="Chemmacros package documentation" language="en" + RELOC/doc/latex/chemmacros/chemmacros_en.tex +runfiles size=106 RELOC/tex/latex/chemmacros/chemmacros.module.acid-base.code.tex RELOC/tex/latex/chemmacros/chemmacros.module.all.code.tex RELOC/tex/latex/chemmacros/chemmacros.module.base.code.tex RELOC/tex/latex/chemmacros/chemmacros.module.charges.code.tex RELOC/tex/latex/chemmacros/chemmacros.module.chemformula.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.errorcheck.code.tex RELOC/tex/latex/chemmacros/chemmacros.module.greek.code.tex RELOC/tex/latex/chemmacros/chemmacros.module.isotopes.code.tex RELOC/tex/latex/chemmacros/chemmacros.module.lang.code.tex @@ -27186,6 +46664,7 @@ runfiles size=93 RELOC/tex/latex/chemmacros/chemmacros.module.orbital.code.tex RELOC/tex/latex/chemmacros/chemmacros.module.particles.code.tex RELOC/tex/latex/chemmacros/chemmacros.module.phases.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.polymers.code.tex RELOC/tex/latex/chemmacros/chemmacros.module.reactions.code.tex RELOC/tex/latex/chemmacros/chemmacros.module.redox.code.tex RELOC/tex/latex/chemmacros/chemmacros.module.scheme.code.tex @@ -27198,73 +46677,123 @@ runfiles size=93 RELOC/tex/latex/chemmacros/chemmacros.sty RELOC/tex/latex/chemmacros/chemmacros4.sty RELOC/tex/latex/chemmacros/chemmacros5.sty -docfiles size=267 - RELOC/doc/latex/chemmacros/README - RELOC/doc/latex/chemmacros/chemmacros_en.pdf - RELOC/doc/latex/chemmacros/chemmacros_en.tex +catalogue-contact-bugs https://github.com/cgnieder/chemmacros/issues +catalogue-contact-repository https://github.com/cgnieder/chemmacros/ catalogue-ctan /macros/latex/contrib/chemmacros -catalogue-date 2015-09-11 21:33:13 +0200 +catalogue-date 2017-08-29 13:01:07 +0200 catalogue-license lppl1.3 catalogue-topics chemistry expl3 -catalogue-version 5.0 +catalogue-version 5.8b name chemnum category Package -revision 37382 -shortdesc A method of numbering chemical compounds. +revision 40522 +shortdesc A method of numbering chemical compounds relocated 1 longdesc The package defines a \label- and \ref-like commands for longdesc compound numbers. The package requires LaTeX 3 packages expl3 longdesc (from the l3kernel bundle) and xparse (from the l3packages longdesc bundle). -runfiles size=18 - RELOC/tex/latex/chemnum/chemnum.sty +containersize 11200 +containerchecksum ac7be01ef0d71e553511e07db948c54b175fe4c76c1d58bc45886c4db003910ee7c4f12de2316355260854baec5ef423b242d477f887cad93f3f92172be303f8 +doccontainersize 753076 +doccontainerchecksum 6f677a996131d697fbbddbfd2e2eadf46650f2d705e2342bb13c912d0e007cb5783edb41fa3dbb356b877f008b685689ab9f8da7522057a71623e7058e124a10 docfiles size=263 - RELOC/doc/latex/chemnum/README - RELOC/doc/latex/chemnum/chemnum_en.pdf + RELOC/doc/latex/chemnum/README details="Readme" + RELOC/doc/latex/chemnum/chemnum_en.pdf details="Package documentation (English)" language="en" RELOC/doc/latex/chemnum/chemnum_en.tex RELOC/doc/latex/chemnum/scheme-bla.ps RELOC/doc/latex/chemnum/scheme-tmp.ps +runfiles size=18 + RELOC/tex/latex/chemnum/chemnum.sty +catalogue-also chemcompounds chemcono catalogue-ctan /macros/latex/contrib/chemnum -catalogue-date 2015-05-13 18:19:11 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 -catalogue-version 1.1a +catalogue-topics chemistry expl3 +catalogue-version 1.2 name chemschemex category Package -revision 34667 -shortdesc Typeset and cross-reference chemical schemes based on TikZ code. +revision 46723 +shortdesc Typeset and cross-reference chemical schemes based on TikZ code relocated 1 longdesc The package provides a comfortable means of typesetting longdesc chemical schemes, and also offers automatic structure longdesc referencing. -runfiles size=10 - RELOC/tex/latex/chemschemex/chemschemex.sty +containersize 6716 +containerchecksum c7375af2dbf1a7b55d41b0ab617111cc198f1aeac98c354813cb2886e0707ce5648d3e4fd9eefdd23bffddc08b96c35a050c1f440f21d5a2d7d5c6b5e0b6aaac +doccontainersize 291444 +doccontainerchecksum b5e864a02ed664e7d7596b56e2583f9a4aff2b8117f79415156df0cab9be084bb96eb6c70c4fca9dd4bd03b30e8b145e4cd809b165d17325625ae625c33f1dc3 docfiles size=84 RELOC/doc/latex/chemschemex/C2H4.pdf RELOC/doc/latex/chemschemex/CH2CH-R2.pdf RELOC/doc/latex/chemschemex/R1-CHCH2.pdf RELOC/doc/latex/chemschemex/R2-CHCH-R1.pdf - RELOC/doc/latex/chemschemex/README + RELOC/doc/latex/chemschemex/README details="Readme" RELOC/doc/latex/chemschemex/RuCH-R1.pdf RELOC/doc/latex/chemschemex/RuCH2.pdf - RELOC/doc/latex/chemschemex/chemschemex.pdf + RELOC/doc/latex/chemschemex/chemschemex.pdf details="Package documentation" RELOC/doc/latex/chemschemex/cp.pdf RELOC/doc/latex/chemschemex/maleimid.pdf RELOC/doc/latex/chemschemex/product.pdf RELOC/doc/latex/chemschemex/product_num.pdf +srccontainersize 14224 +srccontainerchecksum 56174f5943b8dc3aa0cccaefaf9d3f24903626d3c4eb48bc79f01f2a7be603921f7b1ee300e4009038e3a92cd550c08c37aff239a9426ef3277e47f645964488 srcfiles size=21 RELOC/source/latex/chemschemex/chemschemex.dtx RELOC/source/latex/chemschemex/chemschemex.ins +runfiles size=10 + RELOC/tex/latex/chemschemex/chemschemex.sty +catalogue-also chemscheme catalogue-ctan /macros/latex/contrib/chemschemex -catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-date 2018-02-23 21:15:29 +0100 catalogue-license lppl1.2 -catalogue-version 1.0 +catalogue-topics chemistry +catalogue-version 1.2 + +name chemsec +category Package +revision 46972 +shortdesc Automated creation of numeric entity labels +relocated 1 +longdesc Packages provides creation of sequential numeric labels for +longdesc entities in a document. The motivating example is chemical +longdesc structures in a scientific document. The package can +longdesc automatically output a full object name and label on the first +longdesc occurence in the document and just labels only on subsequent +longdesc references. +containersize 3216 +containerchecksum 7a69ed2535d477063e55541d53f73f5d1972905f63d2298629522dfbfbbc97dba0e9ea4a48ed1667ad7b50e24c4a0f7b6d5dbbf79863c9e79a0b3de522be54c4 +doccontainersize 252160 +doccontainerchecksum 5e132354e874b3ad5a4363cfbcad49e3601380dea8f53e106bb0b5d92fb1aff6facfedbad69444ea362c76473dcc7bd8703beeeda9b69f2501d995da98ef71a2 +docfiles size=68 + RELOC/doc/latex/chemsec/README.md details="Readme" + RELOC/doc/latex/chemsec/chemsec.pdf + RELOC/doc/latex/chemsec/example1.tex + RELOC/doc/latex/chemsec/example2.tex + RELOC/doc/latex/chemsec/example3.tex + RELOC/doc/latex/chemsec/example4.tex + RELOC/doc/latex/chemsec/example5.tex +srccontainersize 11632 +srccontainerchecksum b81e9807d8a082b1223d4747a3f0ad3eb3dd21d1d145de5c25b8c44a384dcd941eedf7117c794efc6e4af2397997d060d0b80bad1c7f487ae98b0679f5412b2a +srcfiles size=13 + RELOC/source/latex/chemsec/chemsec.dtx + RELOC/source/latex/chemsec/chemsec.ins +runfiles size=4 + RELOC/tex/latex/chemsec/chemsec.sty +catalogue-contact-home https://github.com/jfinn24985/chemsec/wiki +catalogue-contact-repository https://github.com/jfinn24985/chemsec +catalogue-ctan /macros/latex/contrib/chemsec +catalogue-date 2018-04-29 07:15:59 +0200 +catalogue-license lppl1.3 +catalogue-topics label-ref +catalogue-version 1.12a name chemstyle category Package revision 31096 -shortdesc Writing chemistry with style. +shortdesc Writing chemistry with style relocated 1 longdesc Chemstyle has been developed as a successor to the LaTeX longdesc package provided by the rsc bundle. The package provides an @@ -27277,6 +46806,20 @@ longdesc the rsc LaTeX package are present in chemstyle). The package longdesc chemscheme is distributed with chemstyle; chemstyle itself longdesc incorporates ideas that come from the trivfloat package; the longdesc documentation uses the auto-pst-pdf package. +containersize 6272 +containerchecksum 299e15460a64019177530a4d28154453a813c6987e6e89b6f60466ae9e59372c1a5e0fc418c49b85364ba3185d4fe4e4b7f98caad9add7dce9bbe1792d4e314d +doccontainersize 271232 +doccontainerchecksum f8d6c51cd7e3df7ea8366ade62d0cf8ec3825b0ca54be600107a6be8853d1c58e1989f5c13bddcacd97673260890fd0f63e9a0282203dbdbc6a01653d86f0537 +docfiles size=71 + RELOC/doc/latex/chemstyle/README details="Readme" + RELOC/doc/latex/chemstyle/chemscheme.cdx + RELOC/doc/latex/chemstyle/chemstyle-demo.tex + RELOC/doc/latex/chemstyle/chemstyle.pdf details="Package documentation" +srccontainersize 25008 +srccontainerchecksum 0ee97edc8ecf8f08ed39ed9fffe18b89249c513f33ff415e4205619395baa6e8b7c77832d5110d113d78d94c1d79ba84f79a5ff23a43fd0bb23d19db96badf52 +srcfiles size=25 + RELOC/source/latex/chemstyle/chemstyle.dtx + RELOC/source/latex/chemstyle/chemstyle.ins runfiles size=14 RELOC/tex/latex/chemstyle/chemscheme.sty RELOC/tex/latex/chemstyle/chemstyle.sty @@ -27287,23 +46830,16 @@ runfiles size=14 RELOC/tex/latex/chemstyle/config/orglett.chemstyle.cfg RELOC/tex/latex/chemstyle/config/rsc.chemstyle.cfg RELOC/tex/latex/chemstyle/config/tetlett.chemstyle.cfg -docfiles size=71 - RELOC/doc/latex/chemstyle/README - RELOC/doc/latex/chemstyle/chemscheme.cdx - RELOC/doc/latex/chemstyle/chemstyle-demo.tex - RELOC/doc/latex/chemstyle/chemstyle.pdf -srcfiles size=25 - RELOC/source/latex/chemstyle/chemstyle.dtx - RELOC/source/latex/chemstyle/chemstyle.ins catalogue-ctan /macros/latex/contrib/chemstyle -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl1.3 +catalogue-topics chemistry catalogue-version 2.0m name cherokee category Package revision 21046 -shortdesc A font for the Cherokee script. +shortdesc A font for the Cherokee script relocated 1 longdesc The Cherokee script was designed in 1821 by Segwoya. The longdesc alphabet is essentially syllabic, only 6 characters (a e i o s @@ -27316,20 +46852,108 @@ longdesc represented \Cse\Cgwo\Cya. The font is distributed as Metafont longdesc source; it works very poorly in modern environments, and could longdesc do with expert attention (if you are interested, please contact longdesc the CTAN team for details). +containersize 4424 +containerchecksum 731fb10454a9d359d91abf927a27215e72283a9635cbd853a6738ddbd5047d81fdb8d547b891f29836d0b604d97749074e9f2676c5ad122522d987ac9bb46105 +doccontainersize 616 +doccontainerchecksum 34b258b5b699f644cc0f7f9b673f3dbe48357bbd338726af2b404da4888a9e742f04e397cc3b6a3221d218a96ac7180ce1e6ba80a19c688de0960ce59cb14bb8 +docfiles size=1 + RELOC/doc/fonts/cherokee/README details="Readme" runfiles size=8 RELOC/fonts/source/public/cherokee/cherokee.mf RELOC/fonts/tfm/public/cherokee/cherokee.tfm RELOC/tex/latex/cherokee/cherokee.sty -docfiles size=1 - RELOC/doc/fonts/cherokee/README +catalogue-also ocherokee catalogue-ctan /fonts/cherokee -catalogue-date 2014-04-14 00:54:59 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics font font-nonroman font-mf + +name chess +category Package +revision 20582 +shortdesc Fonts for typesetting chess boards +relocated 1 +longdesc The original (and now somewhat dated) TeX chess font package. +longdesc Potential users should consider skak (for alternative fonts, +longdesc and notation support), texmate (for alternative notation +longdesc support), or chessfss (for flexible font choices). +containersize 10984 +containerchecksum 236e195febc213825fbb5569d8eddd1967fbce1c6e9d550a1c52729be43674e063161adcd5dcb1f6293d9ecf8809518d40064fee08ab64ffe444affe3282224b +doccontainersize 44696 +doccontainerchecksum 95d3b598f63231abb6cdccddc970d6ccb29bec7e9fa29efcf1391bca70b610e9c0bc65754061a4b955548a854bcbbdd8cdf05f8f93fe52bea400b7c281ccc0da +docfiles size=61 + RELOC/doc/fonts/chess/board.epsf + RELOC/doc/fonts/chess/boards.ltx + RELOC/doc/fonts/chess/changes12 + RELOC/doc/fonts/chess/chessdiag.Xmf + RELOC/doc/fonts/chess/copyright + RELOC/doc/fonts/chess/dutch-tt.ltx + RELOC/doc/fonts/chess/dutch-tt.tex + RELOC/doc/fonts/chess/installation + RELOC/doc/fonts/chess/kasparov.ltx + RELOC/doc/fonts/chess/makefile + RELOC/doc/fonts/chess/readme details="Readme" + RELOC/doc/fonts/chess/schaakmaatje.ltx + RELOC/doc/fonts/chess/symbols.ltx + RELOC/doc/fonts/chess/symbols.tex + RELOC/doc/fonts/chess/tal.ltx + RELOC/doc/fonts/chess/tal.tex + RELOC/doc/fonts/chess/tugboat.ltx + RELOC/doc/fonts/chess/tuggame.ltx +runfiles size=21 + RELOC/fonts/source/public/chess/README.mf + RELOC/fonts/source/public/chess/chess10.mf + RELOC/fonts/source/public/chess/chess20.mf + RELOC/fonts/source/public/chess/chess30.mf + RELOC/fonts/source/public/chess/chessbase.mf + RELOC/fonts/source/public/chess/chessdiag.mf + RELOC/fonts/source/public/chess/chessf10.mf + RELOC/fonts/source/public/chess/chesspieces.mf + RELOC/fonts/source/public/chess/empty.mf + RELOC/fonts/tfm/public/chess/chess10.tfm + RELOC/fonts/tfm/public/chess/chess20.tfm + RELOC/fonts/tfm/public/chess/chess30.tfm + RELOC/fonts/tfm/public/chess/chessf10.tfm + RELOC/fonts/tfm/public/chess/chessfig10.tfm + RELOC/tex/latex/chess/chess.sty +catalogue-ctan /fonts/chess/chess +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics font font-chess games +catalogue-version 1.2 + +name chess-problem-diagrams +category Package +revision 39317 +shortdesc A package for typesetting chess problem diagrams +relocated 1 +longdesc This package provides macros to typeset chess problem diagrams +longdesc including fairy chess problems (mostly using rotated images of +longdesc pieces) and other boards. +containersize 11600 +containerchecksum 9216d5a545da3a9bf845d0fb91e345117a5917fbb992c93049a05baef3ea6517870572cd0c4f6f725045cb094f64ee3067a2d2eb461515c937d061a611619b11 +doccontainersize 292612 +doccontainerchecksum 2d9268dd31ad4b9961824c7f9e73ea13c140a4d6fc6ab9c741ace4ec32de76ca2d0986b2caa5d2efa45c87968551dd3ba88d4d58b7c439300c9e748f551b2964 +docfiles size=87 + RELOC/doc/latex/chess-problem-diagrams/README details="Readme" + RELOC/doc/latex/chess-problem-diagrams/diagram.pdf details="Package documentation" +srccontainersize 23036 +srccontainerchecksum 52ecd3daa5e1de9feb486c256cb0acd1dc262d12d574fec5cee8fa81cccd927d2636a6309a2aa6a8a57e27648c89dfbe4c3c5d380ecfc44e816e1a428c00831a +srcfiles size=26 + RELOC/source/latex/chess-problem-diagrams/diagram.dtx + RELOC/source/latex/chess-problem-diagrams/diagram.ins +runfiles size=14 + RELOC/tex/latex/chess-problem-diagrams/diagram.sty +catalogue-ctan /macros/latex/contrib/chess-problem-diagrams +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.2 +catalogue-topics games +catalogue-version 1.12 name chessboard category Package revision 33801 -shortdesc Print chess boards. +shortdesc Print chess boards relocated 1 longdesc This package offers commands to print chessboards. It can print longdesc partial boards, hide pieces and fields, color the boards and @@ -27338,26 +46962,33 @@ longdesc place pieces on the board. Using exotic pieces (e.g., for fairy longdesc chess) is possible. The documentation includes an example of an longdesc animated chessboard, for those whose PDF viewer can display longdesc animations. -runfiles size=48 - RELOC/tex/latex/chessboard/chessboard-keys-main.sty - RELOC/tex/latex/chessboard/chessboard-keys-pgf.sty - RELOC/tex/latex/chessboard/chessboard-pgf.sty - RELOC/tex/latex/chessboard/chessboard.sty +containersize 20572 +containerchecksum f5ac3342bb9ad4b472b7d9a8b0f42b25eb6f5133ea76f76bbd75b876f9a10ca7ffe01ebb818000051a723a728a6fb20a367b298353b7679069049449c282460a +doccontainersize 1624 +doccontainerchecksum e23955eaed83ae9668fca5753f08ab71a57dcc187cdec4669ccbb544dbe34f231259c743b01680c52cb07d7918fe3b1ccfc550b22edfe46417e06b4826532eb1 docfiles size=2 - RELOC/doc/latex/chessboard/README + RELOC/doc/latex/chessboard/README details="Readme" RELOC/doc/latex/chessboard/README.TEXLIVE +srccontainersize 20780 +srccontainerchecksum 9d9582811fb6d4756aeed68e185e4f2e9457e218ad260d1a6bd4b09c1d21ae5ce7b2f12b71b5f835283961b45110fbe58cf683a18e8abefe1309ccb90f95f02e srcfiles size=48 RELOC/source/latex/chessboard/chessboard-src.dtx RELOC/source/latex/chessboard/chessboard.ins +runfiles size=48 + RELOC/tex/latex/chessboard/chessboard-keys-main.sty + RELOC/tex/latex/chessboard/chessboard-keys-pgf.sty + RELOC/tex/latex/chessboard/chessboard-pgf.sty + RELOC/tex/latex/chessboard/chessboard.sty catalogue-ctan /macros/latex/contrib/chessboard -catalogue-date 2014-05-01 22:32:50 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics games catalogue-version 1.7 name chessfss category Package revision 19440 -shortdesc A package to handle chess fonts. +shortdesc A package to handle chess fonts relocated 1 longdesc This package offers commands to use and switch between chess longdesc fonts. It uses the LaTeX font selection scheme (nfss). The @@ -27368,6 +46999,18 @@ longdesc that they don't have to implement all these commands for longdesc themselves. A normal user can use the package to print e.g. longdesc single chess symbols and simple diagrams. The documentation longdesc contains also a section about installation of chess fonts. +containersize 10968 +containerchecksum 8250d4b470a74877c44093888657b0a3c6ce71abc2a23780e71590d0398fc08943ef77ffafcfdabdc6bfd739f7d5b4ca15f2436df103271de029e5ff6102f579 +doccontainersize 1376 +doccontainerchecksum 1f9e625cb7765450fde23f5666af3b43ddb9ba2e67e7d04b98ef19446117cf26eaec3c2586be7c683286dedc37f8d628e4142bae834af716f2c068ac28beef58 +docfiles size=2 + RELOC/doc/latex/chessfss/README details="Readme" + RELOC/doc/latex/chessfss/README.TEXLIVE +srccontainersize 10896 +srccontainerchecksum 8745f5c712df2da39a61aa3d7ec3b6b4917c4905e3a0c4ac25ea6484555f25db6fd31b49a9c86566f69a660108683b4749abeb17f512ece9af54ffd7806c1d79 +srcfiles size=25 + RELOC/source/latex/chessfss/chessfss-src.dtx + RELOC/source/latex/chessfss/chessfss.ins runfiles size=47 RELOC/fonts/enc/dvips/chessfss/chess-board-example-enc.enc RELOC/fonts/enc/dvips/chessfss/chess-fig-example-enc.enc @@ -27400,116 +47043,57 @@ runfiles size=47 RELOC/tex/latex/chessfss/lsienc.def RELOC/tex/latex/chessfss/lsiskak.fd RELOC/tex/latex/chessfss/lsiskaknew.fd -docfiles size=2 - RELOC/doc/latex/chessfss/README - RELOC/doc/latex/chessfss/README.TEXLIVE -srcfiles size=25 - RELOC/source/latex/chessfss/chessfss-src.dtx - RELOC/source/latex/chessfss/chessfss.ins catalogue-ctan /macros/latex/contrib/chessfss -catalogue-date 2012-06-13 20:28:58 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics font-supp games catalogue-version 1.2a -name chess-problem-diagrams -category Package -revision 36531 -shortdesc A package for typesetting chess problem diagrams. -relocated 1 -longdesc This package provides macros to typeset chess problem diagrams -longdesc including fairy chess problems (mostly using rotated images of -longdesc pieces) and other boards. -runfiles size=14 - RELOC/tex/latex/chess-problem-diagrams/diagram.sty -docfiles size=86 - RELOC/doc/latex/chess-problem-diagrams/README - RELOC/doc/latex/chess-problem-diagrams/diagram.pdf -srcfiles size=26 - RELOC/source/latex/chess-problem-diagrams/diagram.dtx - RELOC/source/latex/chess-problem-diagrams/diagram.ins -catalogue-ctan /macros/latex/contrib/chess-problem-diagrams -catalogue-date 2015-03-16 17:50:42 +0100 -catalogue-license lppl1.2 -catalogue-version 1.11.1 - -name chess -category Package -revision 20582 -shortdesc Fonts for typesetting chess boards. -relocated 1 -longdesc The original (and now somewhat dated) TeX chess font package. -longdesc Potential users should consider skak (for alternative fonts, -longdesc and notation support), texmate (for alternative notation -longdesc support), or chessfss (for flexible font choices). -runfiles size=21 - RELOC/fonts/source/public/chess/README.mf - RELOC/fonts/source/public/chess/chess10.mf - RELOC/fonts/source/public/chess/chess20.mf - RELOC/fonts/source/public/chess/chess30.mf - RELOC/fonts/source/public/chess/chessbase.mf - RELOC/fonts/source/public/chess/chessdiag.mf - RELOC/fonts/source/public/chess/chessf10.mf - RELOC/fonts/source/public/chess/chesspieces.mf - RELOC/fonts/source/public/chess/empty.mf - RELOC/fonts/tfm/public/chess/chess10.tfm - RELOC/fonts/tfm/public/chess/chess20.tfm - RELOC/fonts/tfm/public/chess/chess30.tfm - RELOC/fonts/tfm/public/chess/chessf10.tfm - RELOC/fonts/tfm/public/chess/chessfig10.tfm - RELOC/tex/latex/chess/chess.sty -docfiles size=61 - RELOC/doc/fonts/chess/board.epsf - RELOC/doc/fonts/chess/boards.ltx - RELOC/doc/fonts/chess/changes12 - RELOC/doc/fonts/chess/chessdiag.Xmf - RELOC/doc/fonts/chess/copyright - RELOC/doc/fonts/chess/dutch-tt.ltx - RELOC/doc/fonts/chess/dutch-tt.tex - RELOC/doc/fonts/chess/installation - RELOC/doc/fonts/chess/kasparov.ltx - RELOC/doc/fonts/chess/makefile - RELOC/doc/fonts/chess/readme - RELOC/doc/fonts/chess/schaakmaatje.ltx - RELOC/doc/fonts/chess/symbols.ltx - RELOC/doc/fonts/chess/symbols.tex - RELOC/doc/fonts/chess/tal.ltx - RELOC/doc/fonts/chess/tal.tex - RELOC/doc/fonts/chess/tugboat.ltx - RELOC/doc/fonts/chess/tuggame.ltx -catalogue-ctan /fonts/chess/chess -catalogue-date 2014-04-14 00:53:06 +0200 -catalogue-license pd -catalogue-version 1.2 - name chet category Package -revision 38161 +revision 45081 shortdesc LaTeX layout inspired by harvmac relocated 1 longdesc The package aims to streamline the work of typesetting, and to longdesc provide the look and feel of harvmac for readers. +containersize 5628 +containerchecksum d4a43d5ed1f8e74f0b4681abeb2b1134e9ad770cbde69679d53ea77e09a1a23412f03705691cd31110d145a96dd97e078d675274342c9323b849c770828db5fd +doccontainersize 175744 +doccontainerchecksum 143b224d3ad957def3ec22a6e55c1b9eebd5db582065d422e1cf972580eb321ffc768c51cd687add62c01ab1cf3dec170422e6d9bbbab01846bf3e4cf84ec936 +docfiles size=46 + RELOC/doc/latex/chet/README details="Readme" + RELOC/doc/latex/chet/chetdoc.pdf details="Package documentation" + RELOC/doc/latex/chet/chetdoc.tex runfiles size=7 RELOC/bibtex/bst/chet/chetref.bst RELOC/tex/latex/chet/chet.sty -docfiles size=46 - RELOC/doc/latex/chet/README - RELOC/doc/latex/chet/chetdoc.pdf - RELOC/doc/latex/chet/chetdoc.tex catalogue-ctan /macros/latex/contrib/chet -catalogue-date 2015-08-18 23:28:09 +0200 +catalogue-date 2017-08-19 23:16:49 +0200 catalogue-license lppl1.3 catalogue-topics layout -catalogue-version 2.1 +catalogue-version 2.2 name chextras category Package revision 27118 -shortdesc A companion package for the Swiss typesetter. +shortdesc A companion package for the Swiss typesetter relocated 1 longdesc The package simplifies the preparation of Swiss documents and longdesc letters by setting up linguistic and common packages. While it longdesc is a useful addition to the chletter document class, it is not longdesc tied to it and may be used as a general purpose package. +containersize 4820 +containerchecksum 6fa92c9cf1da7cbe2ba74dd10f1f71274e25b228156f01efe5c67e54a2ba258500f7b2cc39fe935d4e92c641b760eacb7f39ea70643557ade4816e92e92a0b17 +doccontainersize 125712 +doccontainerchecksum 8bcc8a6c99be02d8e0babc82ec016fd6e91823a31338701e3d741af895a1d87d224a849598c2784f5de9cfefaf9cd7a09ee5b102636114d528b1e17b830ffecf +docfiles size=33 + RELOC/doc/latex/chextras/README details="Readme" + RELOC/doc/latex/chextras/chextras.pdf details="Package documentation" +srccontainersize 11708 +srccontainerchecksum 1b82f258f1420b07699a0ee75f99e330acb4b9ad1fadc9ffb0f42a1a4321cbad9c08718f9bbb94185eea9bef8d707f729d610b5f671db7014fd237dca5fb0d6a +srcfiles size=13 + RELOC/source/latex/chextras/chextras.dtx + RELOC/source/latex/chextras/chextras.ins runfiles size=11 RELOC/tex/latex/chextras/chextras.sty RELOC/tex/latex/chextras/eu1lmros.fd @@ -27520,52 +47104,56 @@ runfiles size=11 RELOC/tex/latex/chextras/t1lmssos.fd RELOC/tex/latex/chextras/t1lmttos.fd RELOC/tex/latex/chextras/t1lmvttos.fd -docfiles size=33 - RELOC/doc/latex/chextras/README - RELOC/doc/latex/chextras/chextras.pdf -srcfiles size=13 - RELOC/source/latex/chextras/chextras.dtx - RELOC/source/latex/chextras/chextras.ins +catalogue-also chletter catalogue-ctan /macros/latex/contrib/chextras -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics swiss catalogue-version 1.01 -name chicago-annote -category Package -revision 15878 -shortdesc Chicago-based annotated BibTeX style. -relocated 1 -longdesc This is a revision of chicagoa.bst, using the commonly-used -longdesc annote field in place of the original's annotation. -runfiles size=10 - RELOC/bibtex/bst/chicago-annote/chicago-annote.bst -docfiles size=1 - RELOC/doc/bibtex/chicago-annote/README -catalogue-ctan /biblio/bibtex/contrib/chicago-annote/chicago-annote.bst -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl - name chicago category Package revision 15878 -shortdesc A "Chicago" bibliography style. +shortdesc A "Chicago" bibliography style relocated 1 longdesc Chicago is a BibTeX style that follows the "B" reference style longdesc of the 13th Edition of the Chicago manual of style; a LaTeX longdesc package (to LaTeX 2.09 conventions) is also provided. The style longdesc was derived from the newapa style. +containersize 10508 +containerchecksum 2313d7911a8c6bbcfbfb25405e3fd2ea8c0721045f77b9ecf27e4daaee5cfc1a5c010c72d192583e6025aecc6f69421fbd7921d63daa9f29145eb6f9c96c3abb runfiles size=13 RELOC/bibtex/bst/chicago/chicago.bst RELOC/tex/latex/chicago/chicago.sty catalogue-ctan /biblio/bibtex/contrib/chicago -catalogue-date 2012-06-13 23:10:20 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics bibtex-sty + +name chicago-annote +category Package +revision 15878 +shortdesc Chicago-based annotated BibTeX style +relocated 1 +longdesc This is a revision of chicagoa.bst, using the commonly-used +longdesc annote field in place of the original's annotation. +containersize 8920 +containerchecksum be2bc8e7e8eaa881ed7a8225b211ef464dd5635b93b867333458521e405fa42375d4804fbdebe1b913fa694aaaa839703494a155b0ea5d4a99162f6335ccef0b +doccontainersize 416 +doccontainerchecksum 893ba3ff20355e0c395b2092fc01689bd956eb177434ab7152aea686210a7167a04b64ed8ec21030e4f4cbc7e1367a90976168b174fd068d6aecbd0304f380db +docfiles size=1 + RELOC/doc/bibtex/chicago-annote/README +runfiles size=10 + RELOC/bibtex/bst/chicago-annote/chicago-annote.bst +catalogue-ctan /biblio/bibtex/contrib/chicago-annote +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics bibtex-sty bibtex-annote name chickenize category Package -revision 31505 -shortdesc Use lua callbacks for "interesting" textual effects. +revision 45083 +shortdesc Use lua callbacks for "interesting" textual effects relocated 1 longdesc The package allows manipulations of any LuaTeX document (it is longdesc known to work with Plain LuaTeX and LuaLaTeX). Most of the @@ -27574,77 +47162,483 @@ 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. -runfiles size=12 +containersize 11344 +containerchecksum 82df32cba5f14ea8de96020b2412d7c2b3939b0afc4f42bd91e957694404a12a8ea38c9260cf472d81e9aa776556e9b5cf97a674d23ad32633f4fdefe3b3bf83 +doccontainersize 191532 +doccontainerchecksum 6d29cddc0030de2ac6b82dde660e405916bb79bb1e18fd0579a66555d49062fde5d0fa327b906baa1556efd080c55b7ee181ed7569e96dab256ab2be27620935 +docfiles size=49 + RELOC/doc/luatex/chickenize/README.md details="Readme" + RELOC/doc/luatex/chickenize/chickenize.pdf details="Package documentation" +srccontainersize 28780 +srccontainerchecksum bd53aa09a1a136d36f92ea0e8625684361b31ab9315a9f987560f171e893c022122b64a086aa2952a9f1fb96b7931f4e248c016cce8f0ef488c94fcd33c5e8f4 +srcfiles size=26 + RELOC/source/luatex/chickenize/chickenize.dtx +runfiles size=13 RELOC/tex/luatex/chickenize/chickenize.lua RELOC/tex/luatex/chickenize/chickenize.sty RELOC/tex/luatex/chickenize/chickenize.tex -docfiles size=44 - RELOC/doc/luatex/chickenize/README - RELOC/doc/luatex/chickenize/chickenize.pdf -srcfiles size=23 - RELOC/source/luatex/chickenize/chickenize.dtx +catalogue-contact-repository https://github.com/alt/chickenize catalogue-ctan /macros/luatex/generic/chickenize -catalogue-date 2015-01-05 20:19:10 +0100 +catalogue-date 2017-08-19 23:03:49 +0200 +catalogue-license lppl1.3 +catalogue-topics typesetting games luatex +catalogue-version 0.2.5 + +name childdoc +category Package +revision 49543 +shortdesc Directly compile \include'd child documents +relocated 1 +longdesc This LaTeX2e package enables the direct compilation of document +longdesc sections included by \include to individual files. +containersize 1320 +containerchecksum b268695b1d91b49ba6a0179124cafa5e5cfed56672424ab40cc31924c07879b4f50be47f9fe9d574f2adb3f183c71d799cde8854a2942b530c40a1e101d399ef +doccontainersize 261280 +doccontainerchecksum 1a74059d946b82da211f5fed7cb120453049ceaf5f10841a78ff8864b41444064b223939bd2296142bde9c7bececc0ca8bed141be02431fd60f069ecab998d87 +docfiles size=75 + RELOC/doc/latex/childdoc/README.txt details="Readme" + RELOC/doc/latex/childdoc/cdocsamp.tex + RELOC/doc/latex/childdoc/cdocsch1.tex + RELOC/doc/latex/childdoc/cdocsch2.tex + RELOC/doc/latex/childdoc/cdocsdrf.tex + RELOC/doc/latex/childdoc/cdocsfn1.tex + RELOC/doc/latex/childdoc/cdocsfn2.tex + RELOC/doc/latex/childdoc/cdocspt3.tex + RELOC/doc/latex/childdoc/cdocspt4.tex + RELOC/doc/latex/childdoc/childdoc.pdf details="Package documentation" +srccontainersize 11000 +srccontainerchecksum d74e34799e3cce5093f59d66d2680350ccf559b0a06045882dad98a60626c59f8e0ed8a6e03d09cb4ff443d3f68a33208af996e2b870047fb381f97bf92dbea8 +srcfiles size=12 + RELOC/source/latex/childdoc/childdoc.dtx + RELOC/source/latex/childdoc/childdoc.ins +runfiles size=1 + RELOC/tex/latex/childdoc/childdoc.def +catalogue-also subfiles +catalogue-ctan /macros/latex/contrib/childdoc +catalogue-date 2018-12-30 17:14:03 +0100 +catalogue-license lppl1.3 +catalogue-topics subdocs +catalogue-version 2.0 + +name chivo +category Package +revision 40931 +shortdesc Using the free Chivo fonts with LaTeX +relocated 1 +longdesc This work provides the necessary files to use the Chivo fonts +longdesc with LaTeX. Chivo is a set of eight fonts provided by Hector +longdesc Gatti & Omnibus Team under the Open Font License +longdesc [(OFL)](http://scripts.sil.org/OFL), version 1.1. The fonts are +longdesc copyright (c) 2011-2015, Omnibus-Type. +execute addMap Chivo.map +containersize 703832 +containerchecksum 31f4c993d7fe5281a4ca978fefd9e403eb8403259f1e2b8d56affcf46d67601228b4cff5ab604513f3470e1414177c3aa84c8282d907e169c5f05c0da92f3982 +doccontainersize 359460 +doccontainerchecksum 0a3f8ed64bf940446946acdcc9e56241b99ac9619fd6cf434afca1286650f3a4b294ee5dea641df56a3154f10cf98eedd82871154c66d5470ddbcaa89fd43f72 +docfiles size=91 + RELOC/doc/fonts/chivo/Chivo.pdf details="Package documentation" + RELOC/doc/fonts/chivo/OFL.txt + RELOC/doc/fonts/chivo/README.md details="Readme" +srccontainersize 5228 +srccontainerchecksum 0666bf9775b494a29fd0c151be8ffeff81de036c453779eab9c5669bcbd6d360de5e4443dd4f6b6fa13f9cd624069f6ff22f00518e87a8b6ab5b549ce7b77bd7 +srcfiles size=5 + RELOC/source/fonts/chivo/Chivo.dtx + RELOC/source/fonts/chivo/Chivo.ins +runfiles size=443 + RELOC/fonts/enc/dvips/chivo/chi_g7gdou.enc + RELOC/fonts/enc/dvips/chivo/chi_hxspk6.enc + RELOC/fonts/enc/dvips/chivo/chi_m6it5z.enc + RELOC/fonts/enc/dvips/chivo/chi_qbau2s.enc + RELOC/fonts/map/dvips/chivo/Chivo.map + RELOC/fonts/opentype/public/chivo/Chivo-Black.otf + RELOC/fonts/opentype/public/chivo/Chivo-BlackItalic.otf + RELOC/fonts/opentype/public/chivo/Chivo-Bold.otf + RELOC/fonts/opentype/public/chivo/Chivo-BoldItalic.otf + RELOC/fonts/opentype/public/chivo/Chivo-Italic.otf + RELOC/fonts/opentype/public/chivo/Chivo-Light.otf + RELOC/fonts/opentype/public/chivo/Chivo-LightItalic.otf + RELOC/fonts/opentype/public/chivo/Chivo-Regular.otf + RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-ts1.tfm + RELOC/fonts/type1/public/chivo/Chivo-Black.pfb + RELOC/fonts/type1/public/chivo/Chivo-BlackItalic.pfb + RELOC/fonts/type1/public/chivo/Chivo-BlackItalicLCDFJ.pfb + RELOC/fonts/type1/public/chivo/Chivo-BlackLCDFJ.pfb + RELOC/fonts/type1/public/chivo/Chivo-Bold.pfb + RELOC/fonts/type1/public/chivo/Chivo-BoldItalic.pfb + RELOC/fonts/type1/public/chivo/Chivo-BoldItalicLCDFJ.pfb + RELOC/fonts/type1/public/chivo/Chivo-BoldLCDFJ.pfb + RELOC/fonts/type1/public/chivo/Chivo-Italic.pfb + RELOC/fonts/type1/public/chivo/Chivo-ItalicLCDFJ.pfb + RELOC/fonts/type1/public/chivo/Chivo-Light.pfb + RELOC/fonts/type1/public/chivo/Chivo-LightItalic.pfb + RELOC/fonts/type1/public/chivo/Chivo-LightItalicLCDFJ.pfb + RELOC/fonts/type1/public/chivo/Chivo-LightLCDFJ.pfb + RELOC/fonts/type1/public/chivo/Chivo-Regular.pfb + RELOC/fonts/type1/public/chivo/Chivo-RegularLCDFJ.pfb + RELOC/fonts/vf/public/chivo/Chivo-Black-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-tlf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-tlf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-tlf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-tlf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-tlf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-tlf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-tlf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-tlf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-tlf-ts1.vf + RELOC/tex/latex/chivo/Chivo.sty + RELOC/tex/latex/chivo/LY1Chivo-TLF.fd + RELOC/tex/latex/chivo/OT1Chivo-TLF.fd + RELOC/tex/latex/chivo/T1Chivo-TLF.fd + RELOC/tex/latex/chivo/TS1Chivo-TLF.fd +catalogue-ctan /fonts/chivo +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 -catalogue-version 0.2.1a +catalogue-topics font font-sans font-otf font-supp font-type1 font-t1enc +catalogue-version 1.0 name chkfloat category Package revision 27473 -shortdesc Warn whenever a float is placed "to far away". +shortdesc Warn whenever a float is placed "to far away" relocated 1 longdesc The package checks for floats that are placed too far from longdesc their origin. It was motivated by a question on the question longdesc and answer page. -runfiles size=1 - RELOC/tex/latex/chkfloat/chkfloat.sty +containersize 1144 +containerchecksum 2a08b71c204709846bbf26ec3883e9037af6ff22e9bdf13b27319ceda55381eb9e3816ead4e444eba4b8a050a188e58d14f0d9153a813953f587c6cabb3932b8 +doccontainersize 44988 +doccontainerchecksum b79b6bd6943dcd07656bb46d44bf50ca2c0148bdb6ae711d17a49e78f3bbf2b95781cd6f3d0b2f7625b131f7485d3db608c963367dd91dc91070501b367471b3 docfiles size=15 - RELOC/doc/latex/chkfloat/README - RELOC/doc/latex/chkfloat/chkfloat.pdf + RELOC/doc/latex/chkfloat/README details="Readme" + RELOC/doc/latex/chkfloat/chkfloat.pdf details="Package documentation" RELOC/doc/latex/chkfloat/chkfloat.tex +runfiles size=1 + RELOC/tex/latex/chkfloat/chkfloat.sty catalogue-ctan /macros/latex/contrib/chkfloat -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics debug-supp catalogue-version 0.1 name chktex category TLCore -revision 37078 -shortdesc Check for errors in LaTeX documents. +revision 50602 +shortdesc Check for errors in LaTeX documents longdesc The program reports typographic and other errors in LaTeX longdesc documents. Filters are also provided for checking the LaTeX longdesc parts of CWEB documents. depend chktex.ARCH -runfiles size=8 - texmf-dist/chktex/chktexrc - texmf-dist/scripts/chktex/chkweb.sh - texmf-dist/scripts/chktex/deweb.pl -docfiles size=65 - texmf-dist/doc/chktex/ChkTeX.pdf +containersize 9940 +containerchecksum 528392dde236fd4dc9cca54239e7b1d19103fa5789a1c0f541a74472ccea52548fceb13e10a629e389f94ac5c16006246edb3ca584b1681b9e22346edc720715 +doccontainersize 425832 +doccontainerchecksum 6c879a78bc9aef8b851c07f54e3e1974628b0533a843046fad4e82013c32da6f1bcf585547816ac3f3b97fb4425af61e8b7b2b6e3ac1ca177e667a9b26ec17ae +docfiles size=112 + texmf-dist/doc/chktex/ChkTeX.pdf details="System documentation" texmf-dist/doc/man/man1/chktex.1 texmf-dist/doc/man/man1/chktex.man1.pdf texmf-dist/doc/man/man1/chkweb.1 texmf-dist/doc/man/man1/chkweb.man1.pdf texmf-dist/doc/man/man1/deweb.1 texmf-dist/doc/man/man1/deweb.man1.pdf +runfiles size=8 + texmf-dist/chktex/chktexrc + texmf-dist/scripts/chktex/chkweb.sh + texmf-dist/scripts/chktex/deweb.pl +catalogue-contact-home http://www.nongnu.org/chktex/ catalogue-ctan /support/chktex -catalogue-date 2015-04-12 05:55:29 +0200 -catalogue-license gpl -catalogue-version 1.7.4 +catalogue-date 2019-01-06 07:22:27 +0100 +catalogue-license gpl2 +catalogue-topics debug-supp +catalogue-version 1.7.6 + +name chktex.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of chktex +containersize 47532 +containerchecksum 7855afe473285a95c12249d438b5f73e5c800ac65f444602e20be9397a288c6d37c211fad4d740846fd20e1ba336efe554523f5020e602ec6e02ecee4f92a31a +binfiles arch=aarch64-linux size=36 + bin/aarch64-linux/chktex + bin/aarch64-linux/chkweb + bin/aarch64-linux/deweb + +name chktex.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of chktex +containersize 55924 +containerchecksum a77728874fb17eb21c4c4c0b51eea87390a4e7d42d022c6014216b9e5d351c14a4f36f012f98f6aa6747d7f5189c51135a020df032581f32da8a9cc669a8992d +binfiles arch=amd64-freebsd size=36 + bin/amd64-freebsd/chktex + bin/amd64-freebsd/chkweb + bin/amd64-freebsd/deweb + +name chktex.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of chktex +containersize 50324 +containerchecksum afd68d0d775ff0b81b7b7c316998dfdcf68fc6509f3dec2833cc3069f2cc0c427be77f92fb1199963c6c367faf5417a994091d47e0805d7b553421d080659546 +binfiles arch=amd64-netbsd size=42 + bin/amd64-netbsd/chktex + bin/amd64-netbsd/chkweb + bin/amd64-netbsd/deweb + +name chktex.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of chktex +containersize 43424 +containerchecksum 3c78fc4cff1bb1c2a68f3407b0f79e9ce2c08d5c52e5ac2301b7147c5783db8075a0eb5ce262707135ee6c3cf48282814e622364177a14eff7716d6574bee35d +binfiles arch=armhf-linux size=31 + bin/armhf-linux/chktex + bin/armhf-linux/chkweb + bin/armhf-linux/deweb + +name chktex.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of chktex +containersize 24560 +containerchecksum e43efdf40630403802d2a42ba94df212f0d683844a309251b1121121ca3fabb769ecc9f3a490343a426fffc32d1baf3fcaa636e372a1205926d267cf1626829b +binfiles arch=i386-cygwin size=17 + bin/i386-cygwin/chktex.exe + bin/i386-cygwin/chkweb + bin/i386-cygwin/deweb + +name chktex.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of chktex +containersize 47600 +containerchecksum ec04a62b751c4a597b5c3a39d4d4c33f12d8023a041ebb89008d199080886ee46c16480003da112316863cee92675e882fdf8d36a1ae406082b13d45edb5c49e +binfiles arch=i386-freebsd size=30 + bin/i386-freebsd/chktex + bin/i386-freebsd/chkweb + bin/i386-freebsd/deweb name chktex.i386-linux category TLCore -revision 36790 +revision 50281 shortdesc i386-linux files of chktex -binfiles arch=i386-linux size=44 +containersize 56528 +containerchecksum 7cb46d8d605f12b7c98b75fceb55720ccf1ad3b2602aa1538a8304c0878867d39350d191062e3334676e5c9eb912e860d6dc9953453198be8746f4b912e2bdb4 +binfiles arch=i386-linux size=39 bin/i386-linux/chktex bin/i386-linux/chkweb bin/i386-linux/deweb +name chktex.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of chktex +containersize 45384 +containerchecksum 74911395ebb0a5c6fad14a3ded29056271ee244262fd045d0e33a03e5f6cb59d8597d9034fc63d2506e1429926aafaef575dc9af06dc52893ecf2636d76a9073 +binfiles arch=i386-netbsd size=38 + bin/i386-netbsd/chktex + bin/i386-netbsd/chkweb + bin/i386-netbsd/deweb + +name chktex.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of chktex +containersize 53544 +containerchecksum b7d5edf7e796818e421577cb615c61ca7423b44986d2308809ec2e39ab06980f9ef47eb7cd5440f069356d26ef22afd52f82b6905e917fb714b71c3a7b5babcf +binfiles arch=i386-solaris size=32 + bin/i386-solaris/chktex + bin/i386-solaris/chkweb + bin/i386-solaris/deweb + +name chktex.win32 +category TLCore +revision 50155 +shortdesc win32 files of chktex +containersize 44884 +containerchecksum 9403d1779b84e117f112081dc587004ef0837620c1d28b97c8b690a68c6cb30009d6b120665d2b04c1de619d8970ae090ca7f220773a7ca89463dc36c4660448 +binfiles arch=win32 size=23 + bin/win32/chktex.exe + bin/win32/deweb.exe + +name chktex.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of chktex +containersize 25984 +containerchecksum 0b0251ccd1cbd2102a293de742602a20bb92fa5e0b179a3ab25a565ffede0ce4c41301f1646f5ef64bfc0a150373e48e5c3f65d6d6c3d9eafe89b6ed3e523c8a +binfiles arch=x86_64-cygwin size=18 + bin/x86_64-cygwin/chktex.exe + bin/x86_64-cygwin/chkweb + bin/x86_64-cygwin/deweb + +name chktex.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of chktex +containersize 55764 +containerchecksum f5a4aa40cd061ef882ef6aa1899fb3712d4027bc2fc5a9ef9f44da4d23cccdab4f237ec44cdbd8c69b2f7ea860c3efdaf47dfaae71d389c649689edbf3e8474e +binfiles arch=x86_64-darwin size=34 + bin/x86_64-darwin/chktex + bin/x86_64-darwin/chkweb + bin/x86_64-darwin/deweb + +name chktex.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of chktex +containersize 54356 +containerchecksum a2d0dc25a6850931d69d321502d8989cd376bd3fb17d8ec25f4a10e7e8555e3ff3056e764f7d14a67358bfbd9c7d4f9622966a2c8cdc3c4770b0bcc8949ed4e8 +binfiles arch=x86_64-darwinlegacy size=34 + bin/x86_64-darwinlegacy/chktex + bin/x86_64-darwinlegacy/chkweb + bin/x86_64-darwinlegacy/deweb + +name chktex.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of chktex +containersize 55072 +containerchecksum 61b5acf781542d9a6c83c1bae2184c8dfa58325b335a3481f56563a6e37d3abc4b8b2b1a66e4666004e95236410abcae429a238d1497c24b72bdfa72176b413f +binfiles arch=x86_64-linux size=36 + bin/x86_64-linux/chktex + bin/x86_64-linux/chkweb + bin/x86_64-linux/deweb + +name chktex.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of chktex +containersize 60264 +containerchecksum b37ca258956f8bec72840b3a4825d2de342b5746ba4d4e512fea364651f6ca9f7b2967bf75ece3b66b570ecf3a3cf06958cdd3a2cfd60c8c2e3bf6fa0aa0e6f2 +binfiles arch=x86_64-linuxmusl size=39 + bin/x86_64-linuxmusl/chktex + bin/x86_64-linuxmusl/chkweb + bin/x86_64-linuxmusl/deweb + +name chktex.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of chktex +containersize 59432 +containerchecksum 1d8cf12e45a3c4aacf4360b19c87f88d31ad8175ea9d4b95e44bd4311dce6144a8d4cd20c67f9265b8685f7b8f1e2e817bac3de0aff6d09b26929ea091f56cc8 +binfiles arch=x86_64-solaris size=38 + bin/x86_64-solaris/chktex + bin/x86_64-solaris/chkweb + bin/x86_64-solaris/deweb + name chletter category Package revision 20060 -shortdesc Class for typesetting letters to Swiss rules. +shortdesc Class for typesetting letters to Swiss rules relocated 1 longdesc The class enables composition of letters fitting into Swiss C5 longdesc & C6/5 windowed envelopes. No assumption is made about the @@ -27652,55 +47646,133 @@ longdesc language used. The class is based on the standard LaTeX classes longdesc and is compatible with the LaTeX letter class. It is not longdesc limited to letters and may be used as a generic document class; longdesc it is used with the chextras package. -runfiles size=3 - RELOC/tex/latex/chletter/chletter.cls +containersize 3724 +containerchecksum a32f71d89ee69ad60de6173f415d0a3aca7563107cfed71aab0ae99972a2ead442bc75f848ddf07c26c5d464b2224afed5ce976bf037049764f722396e9666d9 +doccontainersize 132172 +doccontainerchecksum 05cf8a4f37eb51cc00d9c254dcb817c41167eeb7643f7a793d1a841bd2c8a3715ced2036b974533521f48be48ae493e52ef0809789d36155d1ffc9624db538d5 docfiles size=35 - RELOC/doc/latex/chletter/README - RELOC/doc/latex/chletter/chletter.pdf + RELOC/doc/latex/chletter/README details="Readme" + RELOC/doc/latex/chletter/chletter.pdf details="Package documentation" language="en" RELOC/doc/latex/chletter/chlettmp.tex +srccontainersize 16892 +srccontainerchecksum 6e4c5063d7710fe5842ba684705d4b94478a9d468e68d60fe0b2ad23fdf717841421bb034317cf240269b77e4351eadce854145fe7e4300b2f9b698a6617679c srcfiles size=17 RELOC/source/latex/chletter/chletter.dtx RELOC/source/latex/chletter/chletter.ins +runfiles size=3 + RELOC/tex/latex/chletter/chletter.cls catalogue-ctan /macros/latex/contrib/chletter -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics letter swiss catalogue-version 2.0 name chngcntr category Package -revision 17157 -shortdesc Change the resetting of counters. +revision 47577 +shortdesc Change the resetting of counters relocated 1 longdesc Defines commands \counterwithin (which sets up a counter to be longdesc reset when another is incremented) and \counterwithout (which longdesc unsets such a relationship). -runfiles size=1 - RELOC/tex/latex/chngcntr/chngcntr.sty -docfiles size=60 - RELOC/doc/latex/chngcntr/chngcntr.pdf +containersize 2048 +containerchecksum 0fc94f91911c623578912ed43526d18f85a003f797e94ef5610aab8477154078efae7000256892cc3d3103843ac8065c27d56a10c6f57c16d9ff13693930b0b0 +doccontainersize 234200 +doccontainerchecksum 3b63e4676232c05516bb12c189873e4af39b8b34df2690c897c4733203c9f19a30759850979c47b05e5fea0bd1c277a5c1ea0624709cda6a3a4ab0196231afb9 +docfiles size=59 + RELOC/doc/latex/chngcntr/README.md + RELOC/doc/latex/chngcntr/chngcntr.pdf details="Package documentation" RELOC/doc/latex/chngcntr/chngcntr.tex +runfiles size=2 + RELOC/tex/latex/chngcntr/chngcntr.sty catalogue-ctan /macros/latex/contrib/chngcntr -catalogue-date 2012-06-14 16:35:51 +0200 +catalogue-date 2018-04-10 16:59:30 +0200 catalogue-license lppl -catalogue-version 1.0a +catalogue-topics macro-supp counter-mgmt +catalogue-version 1.1a + +name chordbars +category Package +revision 49569 +shortdesc Print chord grids for pop/jazz tunes +relocated 1 +longdesc This Tikz-based music-related package is targeted at pop/jazz +longdesc guitar/bass/piano musicians. They usually need only the chords +longdesc and the song structure. This package produces rectangular song +longdesc patterns with "one square per bar", with the chord shown inside +longdesc the square. It also handles the song structure by showing the +longdesc bar count and the repetitions of the patterns. +containersize 3376 +containerchecksum 1349aef2649fdd9b54751425d54cc9b0746dbcec9eebd1264c36867517c4f422d74d390a0e43d22fe81c5a36ff00e6cedc5e652183422e9408a2165486e79052 +doccontainersize 196648 +doccontainerchecksum ba8aae66430e2df58f01bb9860bfab9cdb3aa0636f77f657a1fe4405ec9397773b51b01d94201bb8dfc8660d05f2aa4ce9233ef985d3e4e35faf005c81759404 +docfiles size=56 + RELOC/doc/latex/chordbars/README.md details="Readme" + RELOC/doc/latex/chordbars/chordbars_manual.pdf details="Package documentation" + RELOC/doc/latex/chordbars/chordbars_manual.tex + RELOC/doc/latex/chordbars/listing_HOTRS.lst + RELOC/doc/latex/chordbars/listing_RBP.lst + RELOC/doc/latex/chordbars/listing_blues.lst + RELOC/doc/latex/chordbars/listing_halfbar.lst + RELOC/doc/latex/chordbars/listing_sharp_flat.lst +runfiles size=3 + RELOC/tex/latex/chordbars/chordbars.sty +catalogue-contact-bugs https://github.com/skramm/chordbars/issues +catalogue-contact-repository https://github.com/skramm/chordbars +catalogue-ctan /graphics/pgf/contrib/chordbars +catalogue-date 2018-12-31 21:35:08 +0100 +catalogue-license lppl1.3 +catalogue-topics music chords pgf-tikz +catalogue-version 1.1 + +name chordbox +category Package +revision 51000 +shortdesc Draw chord diagrams +relocated 1 +longdesc This package provides two macros for drawing chord diagrams, as +longdesc may be found for example in chord charts/books and educational +longdesc materials. They are composed as TikZ pictures and have several +longdesc options to modify their appearance. +containersize 3376 +containerchecksum 0e07cae95a8ee5f040b4df4d94f996f772f0780bbe47c77db891fbf44b08f20e28ba8442dee3e981a052b0ccebb0d630e0f0917eb7c65a490c844a65f3b2e3f4 +doccontainersize 565268 +doccontainerchecksum 0826513579953ea80047d596b6c577e4b6f00fcdddb7a06bdc953bccd72e09ec2fd9123995c1e04260ad880bc860454abd283885817a9eb359ec7cb5beba3cc5 +docfiles size=143 + RELOC/doc/latex/chordbox/README.md details="Readme" + RELOC/doc/latex/chordbox/chordbox.pdf details="Package documentation" + RELOC/doc/latex/chordbox/chordbox.tex +runfiles size=2 + RELOC/tex/latex/chordbox/chordbox.sty +catalogue-contact-bugs https://github.com/sfranzen/chordbox/issues +catalogue-contact-repository https://github.com/sfranzen/chordbox +catalogue-ctan /graphics/pgf/contrib/chordbox +catalogue-date 2019-04-20 09:00:43 +0200 +catalogue-license lppl1.3 +catalogue-topics music chords pgf-tikz +catalogue-version 1.0 name chronology category Package revision 37934 -shortdesc Provides a horizontal timeline. +shortdesc Provides a horizontal timeline relocated 1 longdesc A timeline package that allows labelling of events with per-day longdesc granularity. Other features include relative positioning with longdesc unit specification, adjustable tick mark step size, and scaling longdesc to specified width. -runfiles size=1 - RELOC/tex/latex/chronology/chronology.sty +containersize 1656 +containerchecksum 6fca0b31511366c1e39f6518bf5c6e10bfb503a8a901d9e1167866a40e2fbb9d2a6e109f48e146bbaaa2c017ac96e82196a5f49a91c6c9f52eee2633fd5c0737 +doccontainersize 12772 +doccontainerchecksum ce0417e339724dfd97c227f104d9cd0b697c1cb7a5c586c890c3e938bbdaf5db2984fa83a09d983970c1105751cd012e544807a74bf0a35ecd2074a97d0520a4 docfiles size=6 RELOC/doc/latex/chronology/README.md - RELOC/doc/latex/chronology/example.pdf + RELOC/doc/latex/chronology/example.pdf details="Package documentation" RELOC/doc/latex/chronology/example.tex +runfiles size=1 + RELOC/tex/latex/chronology/chronology.sty catalogue-ctan /macros/latex/contrib/chronology -catalogue-date 2015-07-23 12:12:39 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 catalogue-topics planning calendar catalogue-version 1.1.1 @@ -27708,53 +47780,135 @@ catalogue-version 1.1.1 name chronosys category Package revision 26700 -shortdesc Drawing time-line diagrams. +shortdesc Drawing time-line diagrams relocated 1 longdesc Macros to produce time line diagrams. Interfaces for Plain TeX, -longdesc Context and LaTeX are provided. +longdesc ConTeXt and LaTeX are provided. +containersize 7956 +containerchecksum a9503f9440dfa9a42a3f2d345c5e74faa9f40b03264bdf8482ffa58c34318467a7863033acaf089acff6056f91e9d85969676c1b0b080b363c1274ab96f022ed +doccontainersize 233192 +doccontainerchecksum 1f2078bc645e1a9af4220bf4041391353495f76f530ab5f1a35ebf2c2a534d60a910a9ec079ec2222ced7fc3d9c146bce3d6d4d703acd2bfb9ccf357f6fd812c +docfiles size=78 + RELOC/doc/generic/chronosys/README details="Readme" + RELOC/doc/generic/chronosys/docchronosys_en.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/chronosys/docchronosys_en.tex + RELOC/doc/generic/chronosys/docchronosys_fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/generic/chronosys/docchronosys_fr.tex runfiles size=12 RELOC/tex/generic/chronosys/chronosys.sty RELOC/tex/generic/chronosys/chronosys.tex RELOC/tex/generic/chronosys/chronosyschr.tex RELOC/tex/generic/chronosys/x-chronosys.tex -docfiles size=78 - RELOC/doc/generic/chronosys/README - RELOC/doc/generic/chronosys/docchronosys_en.pdf - RELOC/doc/generic/chronosys/docchronosys_en.tex - RELOC/doc/generic/chronosys/docchronosys_fr.pdf - RELOC/doc/generic/chronosys/docchronosys_fr.tex catalogue-ctan /macros/latex/contrib/chronosys -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics diagram catalogue-version 1.2 +name chs-physics-report +category Package +revision 48549 +shortdesc Physics lab reports for Carmel High School +relocated 1 +longdesc This package may optionally be used by students at Carmel High +longdesc School in Indiana in the United States to write physics lab +longdesc reports for FW physics courses. As many students are beginners +longdesc at LaTeX, it also attempts to simplify the report-writing +longdesc process by offering macros for commonly used notation and by +longdesc automatically formatting the documents for students who will +longdesc only use TeX for mathematics and not typesetting. The package +longdesc depends on amsmath, calc, fancyhdr, geometry, graphicx, +longdesc letltxmacro, titlesec, transparent, and xcolor. +containersize 2844 +containerchecksum e1af3e29e5b59545804d7ac7f3cfd0c7463fa9487c458ff3790a2b434151cfec925863bc2d107e5eb6e43c988d85136eaabe28065bf95b04836a8342d5626d23 +doccontainersize 194616 +doccontainerchecksum 3f87d4b32e3257a22e0e7146a89ab2fc90f796d524b0641ea0ec51ff7328518854d226f5405220d7f5466a138bdfecb6d1c6f8b056781e985cc1cc757d0f26e0 +docfiles size=56 + RELOC/doc/latex/chs-physics-report/README.txt details="Readme" + RELOC/doc/latex/chs-physics-report/chs-physics-report.pdf details="Package documentation" + RELOC/doc/latex/chs-physics-report/chs-physics-report.tex +runfiles size=2 + RELOC/tex/latex/chs-physics-report/chs-physics-report.sty +catalogue-ctan /macros/latex/contrib/chs-physics-report +catalogue-date 2018-09-06 05:15:28 +0200 +catalogue-license pdcc-by-sa-3 +catalogue-topics physics report-like + name chscite category Package revision 28552 -shortdesc Bibliography style for Chalmers University of Technology. +shortdesc Bibliography style for Chalmers University of Technology relocated 1 -longdesc The package, heavily based on the harvard package for Harvard- -longdesc style citations, provides a citation suite for students at -longdesc Chalmers University of Technology that follows given +longdesc The package, heavily based on the harvard package for +longdesc Harvard-style citations, provides a citation suite for students +longdesc at Chalmers University of Technology that follows given longdesc recommendations. -runfiles size=9 - RELOC/bibtex/bst/chscite/chscite.bst - RELOC/tex/latex/chscite/chscite.sty +containersize 6344 +containerchecksum 809c76b1bb47e194c43c869b27352578fb5490f6a9a8bbc2fae662b357bd36a099f5114765611d73fae87a846526781ceb7b45aa8968836c543e15f13e7ad7a8 +doccontainersize 191012 +doccontainerchecksum 215085d808b75d0d7f3e7e95830c63172606fd43e1e30a20e376f43d12959da71e8e77a6f06a6058d8ab9f9406f1260262af3e904ff65254e5d2635ca6d15975 docfiles size=48 - RELOC/doc/latex/chscite/README - RELOC/doc/latex/chscite/chscite.pdf + RELOC/doc/latex/chscite/README details="Readme" + RELOC/doc/latex/chscite/chscite.pdf details="Package documentation" +srccontainersize 9476 +srccontainerchecksum cf81a7ceda538e9a3a8bb0a78927c493d42993bb295680792ba643d6f771722e0fbe342bf59cd3104cccb63b1ece7905418b998c1af1dbd7c879cce024681f9f srcfiles size=12 RELOC/source/latex/chscite/chscite.dtx RELOC/source/latex/chscite/chscite.ins +runfiles size=9 + RELOC/bibtex/bst/chscite/chscite.bst + RELOC/tex/latex/chscite/chscite.sty catalogue-ctan /macros/latex/contrib/chscite -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl1.2 +catalogue-topics bibtex-supp catalogue-version 2.9999 +name churchslavonic +category Package +revision 42751 +shortdesc Typeset documents in Church Slavonic language using Unicode +relocated 1 +longdesc The package provides fonts, hyphenation patterns, and +longdesc supporting macros to typeset Church Slavonic texts. It depends +longdesc on the following other packages: fonts-churchslavonic, +longdesc hyph-utf8, intcalc, etoolbox, and xcolor. +depend fonts-churchslavonic +depend hyphen-churchslavonic +depend etoolbox +depend oberdiek +depend xcolor +containersize 7036 +containerchecksum 6c572235b95bb1f8407addefdefa1d7d3facc09b963f4d65d2be317986eb6523db9a8ff7104f15c526962ea8fbd0e1430b68867bf619cebc9b494f5cc04bfb07 +doccontainersize 176072 +doccontainerchecksum 90d563afc8248ded0ea4f30ff685e2fd9da8dec7ea92a3d4313040905be883af3f11393a031ec85ad39e9e51d374557e0f1f373a78caf855d2048fc4e0393e37 +docfiles size=58 + RELOC/doc/latex/churchslavonic/LICENSE + RELOC/doc/latex/churchslavonic/README details="Readme" + RELOC/doc/latex/churchslavonic/churchslavonic-en.pdf details="Package documentation" + RELOC/doc/latex/churchslavonic/churchslavonic-en.tex + RELOC/doc/latex/churchslavonic/churchslavonic-ru.pdf details="Package documentation" language="ru" + RELOC/doc/latex/churchslavonic/churchslavonic-ru.tex + RELOC/doc/latex/churchslavonic/churchslavonic.tex +runfiles size=11 + RELOC/tex/latex/churchslavonic/churchslavonic.sty + RELOC/tex/latex/churchslavonic/cu-calendar.sty + RELOC/tex/latex/churchslavonic/cu-kinovar.sty + RELOC/tex/latex/churchslavonic/cu-num.sty + RELOC/tex/latex/churchslavonic/cu-util.sty + RELOC/tex/latex/churchslavonic/gloss-churchslavonic.ldf +catalogue-also fonts-churchslavonic +catalogue-contact-repository https://github.com/slavonic/cu-tex +catalogue-ctan /language/churchslavonic +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license mit +catalogue-topics churchslavonic multilingual-addon +catalogue-version 0.2.1 + name cinzel category Package -revision 34408 -shortdesc LaTeX support for Cinzel and Cinzel Decorative fonts. +revision 51101 +shortdesc LaTeX support for Cinzel and Cinzel Decorative fonts relocated 1 longdesc Cinzel and Cinzel Decorative fonts, designed by Natanael Gama longdesc Natanael Gama), find their inspiration in first century roman @@ -27765,6 +47919,15 @@ longdesc fonts, but there are Decorative variants, which can be selected longdesc by the usual italic-selection commands in the package's LaTeX longdesc support. execute addMap cinzel.map +containersize 533008 +containerchecksum 1ac78f86bd959e4d863e4adf5e6ea69e804132ef7aecb8fa68011bb215d59d924677446c1c63515be4e658d98fd409da42a5b1b9c903268e03ca302e59d4185f +doccontainersize 39120 +doccontainerchecksum 6b60547d6145d02ffc88cc0e1687e7407aa955c6aab49ee9516f9a537d364518eeacfc29f1cf0eeac7834ad5f855a1ad73e2d29939a1aaa6d4b2b3d6705a1136 +docfiles size=13 + RELOC/doc/fonts/cinzel/README details="Readme" + RELOC/doc/fonts/cinzel/SIL_Open_Font_License.txt + RELOC/doc/fonts/cinzel/cinzel-samples.pdf details="Font samples" + RELOC/doc/fonts/cinzel/cinzel-samples.tex runfiles size=431 RELOC/fonts/enc/dvips/cinzel/cnzl_7luz43.enc RELOC/fonts/enc/dvips/cinzel/cnzl_7t2zcj.enc @@ -27852,28 +48015,44 @@ runfiles size=431 RELOC/tex/latex/cinzel/TS1Cinzel-LF.fd RELOC/tex/latex/cinzel/TS1CinzelDecorative-LF.fd RELOC/tex/latex/cinzel/cinzel.sty -docfiles size=12 - RELOC/doc/fonts/cinzel/README - RELOC/doc/fonts/cinzel/SIL_Open_Font_License.txt - RELOC/doc/fonts/cinzel/cinzel-samples.pdf - RELOC/doc/fonts/cinzel/cinzel-samples.tex +catalogue-contact-home http://ndiscovered.com catalogue-ctan /fonts/cinzel -catalogue-date 2015-03-30 22:55:45 +0200 -catalogue-license ofl +catalogue-date 2019-05-12 19:45:33 +0200 +catalogue-license ofllppl +catalogue-topics font font-decor font-type1 font-ttf name circ category Package revision 15878 -shortdesc Macros for typesetting circuit diagrams. +shortdesc Macros for typesetting circuit diagrams relocated 1 longdesc Several electrical symbols like resistor, capacitor, longdesc transistors etc., are defined. The symbols can be connected longdesc with wires. The package also contains an American resistor longdesc symbol for those of us on that side of the Atlantic. The longdesc package also has simple facilities for producing optics -longdesc diagrams; however, no-one would deny that the PSTricks pst- -longdesc optic package, or the MetaPost makecirc package does the job -longdesc better. +longdesc diagrams; however, no-one would deny that the PSTricks +longdesc pst-optic package, or the MetaPost makecirc package does the +longdesc job better. +containersize 23692 +containerchecksum 638a89cd3ef49ba7f21f42944d1452c2866265f326e33e07b47d9607723de7f477766e8c240df7a91081f864f12346aa358b48f66cb67017fc11ace129c9c694 +doccontainersize 207692 +doccontainerchecksum 389d98b3b5cce6c93d84bb3022f4aaaad1927bf78b323c106f7e89612835b92a2ff878fbe8d120406018549dba6cb370d88f098df523ff69a8810ff6e2b80241 +docfiles size=81 + RELOC/doc/latex/circ/COPYING + RELOC/doc/latex/circ/README details="Readme" + RELOC/doc/latex/circ/cidoc.tex + RELOC/doc/latex/circ/circ.pdf details="Package documentation" + RELOC/doc/latex/circ/circ.txt + RELOC/doc/latex/circ/cisyms.tex + RELOC/doc/latex/circ/index.hlp +srccontainersize 38440 +srccontainerchecksum b6127892465f3bbba51b3fa0f1d35e667cb4286adf0280691656a8b62c52ee57aa01578e716c495612b00a5725ed30c17b1a81b6346f184fd6d60611ea2663be +srcfiles size=47 + RELOC/source/latex/circ/Makefile + RELOC/source/latex/circ/circ.drv + RELOC/source/latex/circ/circ.dtx + RELOC/source/latex/circ/circ.ins runfiles size=43 RELOC/fonts/source/public/circ/cibimos.mf RELOC/fonts/source/public/circ/cicirc.mf @@ -27894,88 +48073,68 @@ runfiles size=43 RELOC/tex/latex/circ/oldgate.def RELOC/tex/latex/circ/optics.def RELOC/tex/latex/circ/physics.def -docfiles size=81 - RELOC/doc/latex/circ/COPYING - RELOC/doc/latex/circ/README - RELOC/doc/latex/circ/cidoc.tex - RELOC/doc/latex/circ/circ.pdf - RELOC/doc/latex/circ/circ.txt - RELOC/doc/latex/circ/cisyms.tex - RELOC/doc/latex/circ/index.hlp -srcfiles size=47 - RELOC/source/latex/circ/Makefile - RELOC/source/latex/circ/circ.drv - RELOC/source/latex/circ/circ.dtx - RELOC/source/latex/circ/circ.ins +catalogue-also circuit-macros catalogue-ctan /macros/generic/diagrams/circ -catalogue-date 2012-06-14 16:35:51 +0200 +catalogue-date 2017-10-29 14:32:55 +0100 catalogue-license gpl +catalogue-topics diagram-circ font font-mf catalogue-version 1.1 name circuitikz category Package -revision 37410 -shortdesc Draw electrical networks with TikZ. +revision 51071 +shortdesc Draw electrical networks with TikZ relocated 1 longdesc The package provides a set of macros for naturally typesetting longdesc electrical and (somewhat less naturally, perhaps) electronic longdesc networks. It is designed as a tool that is easy to use, with a longdesc lean syntax, native to LaTeX, and directly supporting PDF -longdesc output format. So is based on the very impressive pgf/TikZ -longdesc package. -runfiles size=103 +longdesc output format. It has therefore been based on the very +longdesc impressive pgf/TikZ package. +containersize 49952 +containerchecksum 9179b174101784fe2b66a15183cd835d1dcd20f65291d94f90c236309b34000551e5e4dc426d84f99019f0fe9947450af3b1bbea83de87b4f3137ab168679b83 +doccontainersize 581460 +doccontainerchecksum 8fc4103bb58d0a056ae46e004dd30850f057fc2a484866001277032ad3045e4bccdb37e1e6087aa5da8ddc7e3f3e86328f79bcbdad552c4ec97ba9650f23aae6 +docfiles size=190 + RELOC/doc/context/third/circuitikz/circuitikz-context.pdf + RELOC/doc/context/third/circuitikz/circuitikz-context.tex + RELOC/doc/generic/circuitikz/CHANGELOG.md + RELOC/doc/generic/circuitikz/README.md details="Readme" + RELOC/doc/latex/circuitikz/changelog.tex + RELOC/doc/latex/circuitikz/circuitikzmanual.pdf details="Package documentation" + RELOC/doc/latex/circuitikz/circuitikzmanual.tex + RELOC/doc/latex/circuitikz/compatibility.tex + RELOC/doc/latex/circuitikz/ctikzmanutils.sty +runfiles size=166 RELOC/tex/context/third/circuitikz/t-circuitikz.tex - RELOC/tex/generic/circuitikz/circuitikz.code.tex - RELOC/tex/generic/circuitikz/circuitikz1.code.tex + RELOC/tex/generic/circuitikz/pgfcirc.defines.tex RELOC/tex/generic/circuitikz/pgfcircbipoles.tex RELOC/tex/generic/circuitikz/pgfcirccurrent.tex - RELOC/tex/generic/circuitikz/pgfcircinputarrows.tex + RELOC/tex/generic/circuitikz/pgfcircflow.tex RELOC/tex/generic/circuitikz/pgfcirclabel.tex - RELOC/tex/generic/circuitikz/pgfcircmath.tex RELOC/tex/generic/circuitikz/pgfcircmonopoles.tex - RELOC/tex/generic/circuitikz/pgfcircnpoles.tex + RELOC/tex/generic/circuitikz/pgfcircmultipoles.tex + RELOC/tex/generic/circuitikz/pgfcircpath.tex RELOC/tex/generic/circuitikz/pgfcircquadpoles.tex RELOC/tex/generic/circuitikz/pgfcircshapes.tex RELOC/tex/generic/circuitikz/pgfcirctripoles.tex RELOC/tex/generic/circuitikz/pgfcircutils.tex RELOC/tex/generic/circuitikz/pgfcircvoltage.tex RELOC/tex/latex/circuitikz/circuitikz.sty -docfiles size=120 - RELOC/doc/context/third/circuitikz/circuitikz-context.tex - RELOC/doc/generic/circuitikz/CHANGELOG - RELOC/doc/generic/circuitikz/README - RELOC/doc/latex/circuitikz/circuitikzmanual.ltx - RELOC/doc/latex/circuitikz/circuitikzmanual.pdf - RELOC/doc/latex/circuitikz/compatibility.ltx - RELOC/doc/latex/circuitikz/compatibility.pdf +catalogue-contact-bugs https://github.com/circuitikz/circuitikz/issues +catalogue-contact-home https://circuitikz.github.io/circuitikz/ +catalogue-contact-repository https://github.com/circuitikz/circuitikz +catalogue-contact-support https://github.com/circuitikz/circuitikz/issues catalogue-ctan /graphics/pgf/contrib/circuitikz -catalogue-date 2015-05-15 14:08:27 +0200 -catalogue-license lppl -catalogue-version 0.4 - -name citeall -category Package -revision 37103 -shortdesc Cite all entries of a bbl created with biblatex. -relocated 1 -longdesc This small package allows to cite all entries of a bbl-file -longdesc created with biblatex (v1.9). -runfiles size=1 - RELOC/tex/latex/citeall/citeall.sty -docfiles size=30 - RELOC/doc/latex/citeall/README - RELOC/doc/latex/citeall/citeall.pdf - RELOC/doc/latex/citeall/citeall.tex - RELOC/doc/latex/citeall/examples-citeall.bib -catalogue-ctan /macros/latex/contrib/biblatex-contrib/citeall -catalogue-date 2015-04-28 16:03:17 +0200 -catalogue-license lppl1.3 -catalogue-version 1.2 +catalogue-date 2019-05-10 14:19:41 +0200 +catalogue-license lpplgpl +catalogue-topics diagram-circ pgf-tikz +catalogue-version 0.9.0 name cite category Package revision 36428 -shortdesc Improved citation handling in LaTeX. +shortdesc Improved citation handling in LaTeX relocated 1 longdesc The package supports compressed, sorted lists of numerical longdesc citations, and also deals with various punctuation and other @@ -27983,26 +48142,112 @@ longdesc issues of representation, including comprehensive management of longdesc break points. The package is compatible with both hyperref and longdesc backref. The package is (unsurprisingly) part of the cite longdesc bundle of the author's citation-related packages. +containersize 20120 +containerchecksum 39196b799273a2da29591b1b59c0a504f0e0971a6fb12a21bed5ac45d94eb017f1e7c64691fcd46f5c151d867c1ffac706f050fe2e08bf3c58aec8867fa185d3 +doccontainersize 221780 +doccontainerchecksum f9ccc0e1975064ec792c6138907cd3dc8080ff2fd02a2925d1a1334cebbb2289797b234b46d92be0ba45d460c31359b5c143f20e28cd1aa1827489d04b88d300 +docfiles size=65 + RELOC/doc/latex/cite/README details="Bundle readme" + RELOC/doc/latex/cite/chapterbib.ltx + RELOC/doc/latex/cite/chapterbib.pdf + RELOC/doc/latex/cite/cite.ltx + RELOC/doc/latex/cite/cite.pdf details="Package documentation" runfiles size=18 RELOC/tex/latex/cite/chapterbib.sty RELOC/tex/latex/cite/cite.sty RELOC/tex/latex/cite/drftcite.sty RELOC/tex/latex/cite/overcite.sty -docfiles size=65 - RELOC/doc/latex/cite/README - RELOC/doc/latex/cite/chapterbib.ltx - RELOC/doc/latex/cite/chapterbib.pdf - RELOC/doc/latex/cite/cite.ltx - RELOC/doc/latex/cite/cite.pdf +catalogue-also natbib catalogue-ctan /macros/latex/contrib/cite -catalogue-date 2015-03-03 13:01:15 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics cite-supp catalogue-version 5.5 +name citeall +category Package +revision 45975 +shortdesc Cite all entries of a bbl created with BibLaTeX +relocated 1 +longdesc This small package allows to cite all entries of a bbl-file +longdesc created with BibLaTeX (v1.9). +containersize 2060 +containerchecksum 2549b398c98f82833849a45716d55a776ab3b7927fdc400c2e6d43c45fb0cf628bd66bdade7ca63bcaa2e98807914f7adb958c6a06c27762fb0ee70452d4d280 +doccontainersize 110028 +doccontainerchecksum f1eaf5ed48bf3fd2bc336b7d91dde09b5cfa9a1901bd6315d4abf032439571a89f1d7c4794ed0256ef1aff0456d275e68326e81627f164652c84de2900165a98 +docfiles size=31 + RELOC/doc/latex/citeall/README.md details="Readme" + RELOC/doc/latex/citeall/citeall.pdf details="Package documentation" + RELOC/doc/latex/citeall/citeall.tex + RELOC/doc/latex/citeall/examples-citeall.bib +runfiles size=2 + RELOC/tex/latex/citeall/citeall.sty +catalogue-ctan /macros/latex/contrib/biblatex-contrib/citeall +catalogue-date 2017-12-03 20:33:16 +0100 +catalogue-license lppl1.3 +catalogue-topics biblatex +catalogue-version 1.4 + +name citeref +category Package +revision 47407 +shortdesc Add reference-page-list to bibliography-items +relocated 1 +longdesc The package does its job without using the indexing facilities, +longdesc and needs no special \cite-replacement package. +containersize 2264 +containerchecksum 5f56fb1d813962358c737023e06bc2fa249712d8ef984f835073e11b075b676e845596a61ac312991e646d72068670b60eb002f78ac322f66d8e5a9bce185063 +doccontainersize 66208 +doccontainerchecksum 21d1a8063586b09ba953ac5df96a3b1552c586d66c5f2af517b1b1ceb75b40f173bd411654dd313c6aeebabc35db7543ea8edcbc8705ae104c7f63e5a5b3cf57 +docfiles size=18 + RELOC/doc/latex/citeref/README.pdf + RELOC/doc/latex/citeref/README.txt details="Readme" +runfiles size=1 + RELOC/tex/latex/citeref/citeref.sty +catalogue-also backref +catalogue-ctan /macros/latex/contrib/citeref +catalogue-date 2018-04-29 07:15:59 +0200 +catalogue-license bsd4 +catalogue-topics bibtex-supp +catalogue-version 1.1 + +name cje +category Package +revision 46721 +shortdesc LaTeX document class for CJE articles +relocated 1 +longdesc The cje article class allows authors to format their papers to +longdesc Canadian Journal of Economics style with minimum effort. The +longdesc class includes options for two other formats: "review" (double +longdesc spaced, for use at the submission stage) and "proof" (used by +longdesc the typesetters to prepare the proof authors will receive for +longdesc approval). +containersize 26216 +containerchecksum cab80d266c2b5f9d4ba9d37cc5490e831e3f773d86c92fcbfab9474864aebbb6123e1ed44877127e84b6e1fe8037f2425259789b9b9597de49e1b24b123992a4 +doccontainersize 634044 +doccontainerchecksum 47a2d96b6b530be732385617af832ad48c3d6c7a34a7e9e0523c38a03b5116b94588c995afd153c25be6ceea9bc199685fab9eb83636b5fe27525b19a4bc7cec +docfiles size=178 + RELOC/doc/latex/cje/README.txt details="Readme" + RELOC/doc/latex/cje/ageingbib.bib + RELOC/doc/latex/cje/canadian-flag.pdf + RELOC/doc/latex/cje/cjeguide.pdf details="Package documentation" + RELOC/doc/latex/cje/cjeguide.tex + RELOC/doc/latex/cje/cjetemplate.tex +runfiles size=31 + RELOC/bibtex/bst/cje/cjebibstyle.bst + RELOC/tex/latex/cje/cje.cls + RELOC/tex/latex/cje/cjenatbib.sty + RELOC/tex/latex/cje/cjeupmath.sty +catalogue-ctan /macros/latex/contrib/cje +catalogue-date 2018-02-23 14:47:15 +0100 +catalogue-license lppl1.3c +catalogue-topics journalpub +catalogue-version 1.06 + name cjhebrew category Package -revision 15878 -shortdesc Typeset Hebrew with LaTeX. +revision 43444 +shortdesc Typeset Hebrew with LaTeX relocated 1 longdesc The cjhebrew package provides Adobe Type 1 fonts for Hebrew, longdesc and LaTeX macros to support their use. Hebrew text can be @@ -28011,6 +48256,15 @@ longdesc makes it easy to include Hebrew text in other-language longdesc documents. The package makes use of the e-TeX extensions to longdesc TeX, so should be run using an "e-LaTeX". execute addMap cjhebrew.map +containersize 41616 +containerchecksum 65a73380bcfd8892ab2eb93d088076e2d5371019244bc8a65a4695e69a45f743248fce59557533add032a02a0b7ea4f02d6ea4634265d2d9718a5b100f5a18c6 +doccontainersize 112888 +doccontainerchecksum 591d932ae099aa168d55f9479842d25c5212dd7aed27eac1a5d05a111a8a396baae7c73ddafe1087a7b8008528c50b1a85825851643d8107133d41470ce1e397 +docfiles size=32 + RELOC/doc/latex/cjhebrew/README details="Readme" + RELOC/doc/latex/cjhebrew/cjhebrew.pdf details="Package manual" + RELOC/doc/latex/cjhebrew/cjhebrew.tex + RELOC/doc/latex/cjhebrew/cjhebtst.tex runfiles size=27 RELOC/fonts/afm/public/cjhebrew/cjheblsm.afm RELOC/fonts/afm/public/cjhebrew/cjhebltx.afm @@ -28027,120 +48281,24 @@ runfiles size=27 RELOC/fonts/vf/public/cjhebrew/cjhblsm.vf RELOC/fonts/vf/public/cjhebrew/cjhbltx.vf RELOC/tex/latex/cjhebrew/cjhebrew.sty -docfiles size=29 - RELOC/doc/fonts/cjhebrew/cjhebtst.tex - RELOC/doc/fonts/cjhebrew/manual.pdf catalogue-ctan /language/hebrew/cjhebrew -catalogue-date 2013-09-30 11:39:01 +0200 -catalogue-license lppl -catalogue-version 0.1a - -name cjk-gs-integrate -category Package -revision 37266 -shortdesc Tools to integrate CJK fonts into Ghostscript -longdesc This script searches a list of directories for CJK fonts, and -longdesc makes them available to an installed GhostScript. In the -longdesc simplest case with sufficient privileges, a run without -longdesc arguments should effect in a complete setup of GhostScript. -depend cjk-gs-integrate.ARCH -runfiles size=13 - texmf-dist/scripts/cjk-gs-integrate/cjk-gs-integrate.pl -docfiles size=22 - texmf-dist/doc/fonts/cjk-gs-integrate/ChangeLog - texmf-dist/doc/fonts/cjk-gs-integrate/README.md - texmf-dist/doc/fonts/cjk-gs-integrate/macosx-filelist - texmf-dist/doc/fonts/cjk-gs-integrate/tests/Makefile - texmf-dist/doc/fonts/cjk-gs-integrate/tests/adobe-CNS1.tex - texmf-dist/doc/fonts/cjk-gs-integrate/tests/adobe-GB1-012.tex - texmf-dist/doc/fonts/cjk-gs-integrate/tests/adobe-GB1-345.tex - texmf-dist/doc/fonts/cjk-gs-integrate/tests/adobe-GB1.tex - texmf-dist/doc/fonts/cjk-gs-integrate/tests/adobe-Japan1.tex - texmf-dist/doc/fonts/cjk-gs-integrate/tests/adobe-Korea1.tex - texmf-dist/doc/fonts/cjk-gs-integrate/tests/cidtable.sty - texmf-dist/doc/fonts/cjk-gs-integrate/tests/japanese-updmap-tests/do-tests - texmf-dist/doc/fonts/cjk-gs-integrate/tests/japanese-updmap-tests/prn-variants.tex - texmf-dist/doc/fonts/cjk-gs-integrate/tests/japanese-updmap-tests/report - texmf-dist/doc/fonts/cjk-gs-integrate/tests/otfcidsample.tex - texmf-dist/doc/fonts/cjk-gs-integrate/tests/test-runner.sh - texmf-dist/doc/fonts/cjk-gs-integrate/tools/mkgsfntspecs.sh - texmf-dist/doc/fonts/cjk-gs-integrate/tools/release.sh -catalogue-ctan /fonts/utilities/cjk-gs-integrate -catalogue-date 2015-05-07 06:24:18 +0200 -catalogue-license gpl3 -catalogue-version 20150506.1 - -name cjk-gs-integrate.i386-linux -category Package -revision 37223 -shortdesc i386-linux files of cjk-gs-integrate -binfiles arch=i386-linux size=1 - bin/i386-linux/cjk-gs-integrate - -name cjk-ko -category Package -revision 37899 -shortdesc Extension of the CJK package for Korean typesetting. -relocated 1 -longdesc The package supports typesetting UTF-8-encoded modern Korean -longdesc documents with the help of the LaTeX2e CJK package. The package -longdesc requires nanumtype1 fonts. -runfiles size=11 - RELOC/tex/latex/cjk-ko/cjkutf8-josa.sty - RELOC/tex/latex/cjk-ko/cjkutf8-ko.sty - RELOC/tex/latex/cjk-ko/cjkutf8-nanummjhanja.sty - RELOC/tex/latex/cjk-ko/kolabels-utf.sty - RELOC/tex/latex/cjk-ko/konames-utf.sty - RELOC/tex/latex/cjk-ko/kotex.sty -docfiles size=46 - RELOC/doc/latex/cjk-ko/ChangeLog - RELOC/doc/latex/cjk-ko/README - RELOC/doc/latex/cjk-ko/cjk-ko-doc.pdf - RELOC/doc/latex/cjk-ko/cjk-ko-doc.tex -catalogue-ctan /language/korean/cjk-ko -catalogue-date 2015-07-19 07:58:52 +0200 -catalogue-license other-free -catalogue-topics korean -catalogue-version 1.7 - -name cjkpunct -category Package -revision 15878 -shortdesc Adjust locations and kerning of CJK punctuation marks. -relocated 1 -longdesc The package serves as a companion package for CJK. -runfiles size=4 - RELOC/tex/latex/cjkpunct/CJKpunct.sty -docfiles size=58 - RELOC/doc/latex/cjkpunct/CJKpunct.pdf - RELOC/doc/latex/cjkpunct/CJKpunct.spa - RELOC/doc/latex/cjkpunct/README - RELOC/doc/latex/cjkpunct/README.zh-cn.txt - RELOC/doc/latex/cjkpunct/examples/example-CJKfntef.tex - RELOC/doc/latex/cjkpunct/examples/example-gb.tex - RELOC/doc/latex/cjkpunct/examples/example-gbk.tex - RELOC/doc/latex/cjkpunct/examples/example-utf8.tex - RELOC/doc/latex/cjkpunct/setpunct/setpunct-macros.tex - RELOC/doc/latex/cjkpunct/setpunct/setpunct-main.tex -srcfiles size=6 - RELOC/source/latex/cjkpunct/CJKpunct.dtx -catalogue-ctan /language/chinese/cjkpunct -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-03-09 19:41:20 +0100 catalogue-license lppl -catalogue-version 4.8.1-2 +catalogue-topics hebrew font font-type1 font-hebrew font-supp +catalogue-version 0.2a name cjk category Package revision 36951 -shortdesc CJK language support. +shortdesc CJK language support relocated 1 longdesc CJK is a macro package for LaTeX, providing simultaneous longdesc support for various Asian scripts in many encodings (including longdesc Unicode): Chinese (both traditional and simplified), Japanese, longdesc Korean and Thai. A special add-on feature is an interface to -longdesc the Emacs editor (cjk-enc.el) which gives simultaneous, easy-to- -longdesc use support to a bunch of other scripts in addition to the -longdesc above -- Cyrillic, Greek, Latin-based scripts, Russian and +longdesc the Emacs editor (cjk-enc.el) which gives simultaneous, +longdesc easy-to-use support to a bunch of other scripts in addition to +longdesc the above -- Cyrillic, Greek, Latin-based scripts, Russian and longdesc Vietnamese are supported. depend arphic depend cns @@ -28148,6 +48306,176 @@ depend garuda-c90 depend norasi-c90 depend uhc depend wadalab +containersize 58340 +containerchecksum c35be1fc1d9f9d44e78effd6e7e539591020d785ae255a1cfa0d7e2508fcdd496d94e4bb0096bc7a281ee93b0b8e461efc6724c82f49d589dbcbdda35143c811 +doccontainersize 1458280 +doccontainerchecksum d598d599d02ca95b1375b8e989649b441980ae6467348270c366a670d79d606b1ca79801febdf5c8c636f2d1c7fa30eb87bd87f90f75b5b4436443ecdab53b73 +docfiles size=611 + RELOC/doc/latex/cjk/ChangeLog + RELOC/doc/latex/cjk/MANIFEST + RELOC/doc/latex/cjk/Makefile + RELOC/doc/latex/cjk/README details="Readme file" + RELOC/doc/latex/cjk/TODO + RELOC/doc/latex/cjk/doc/CEF.txt + RELOC/doc/latex/cjk/doc/CJK.txt + RELOC/doc/latex/cjk/doc/CJKnumb.txt + RELOC/doc/latex/cjk/doc/CJKspace.txt + RELOC/doc/latex/cjk/doc/CJKutf8.txt + RELOC/doc/latex/cjk/doc/COPYING + RELOC/doc/latex/cjk/doc/INSTALL + RELOC/doc/latex/cjk/doc/TDS.txt + RELOC/doc/latex/cjk/doc/chinese/README details="Readme file" + RELOC/doc/latex/cjk/doc/chinese/READMEb5.tex + RELOC/doc/latex/cjk/doc/chinese/READMEgb.tex + RELOC/doc/latex/cjk/doc/chinese/emTeXb5.txt + RELOC/doc/latex/cjk/doc/chinese/teTeXb5.txt + RELOC/doc/latex/cjk/doc/cjk-enc.txt + RELOC/doc/latex/cjk/doc/cjk/README details="Readme file" + RELOC/doc/latex/cjk/doc/cjk/READMEb5.cjk + RELOC/doc/latex/cjk/doc/commands.txt + RELOC/doc/latex/cjk/doc/dvidrv.txt + RELOC/doc/latex/cjk/doc/fdxfiles.txt + RELOC/doc/latex/cjk/doc/fonts.txt + RELOC/doc/latex/cjk/doc/hbf2gf.txt + RELOC/doc/latex/cjk/doc/history.2_5 + RELOC/doc/latex/cjk/doc/history.txt + RELOC/doc/latex/cjk/doc/japanese/README details="Readme file" + RELOC/doc/latex/cjk/doc/japanese/ascii.txt + RELOC/doc/latex/cjk/doc/japanese/japanese.jis + RELOC/doc/latex/cjk/doc/japanese/japanese.txt + RELOC/doc/latex/cjk/doc/japanese/jp-fonts.txt + RELOC/doc/latex/cjk/doc/japanese/jp-tex.txt + RELOC/doc/latex/cjk/doc/japanese/preview.txt + RELOC/doc/latex/cjk/doc/japanese/shibuaki.txt + RELOC/doc/latex/cjk/doc/pdf/READMEb5.pdf + RELOC/doc/latex/cjk/doc/pdf/READMEgb.pdf + RELOC/doc/latex/cjk/doc/pdfhowto/HOWTO.txt + RELOC/doc/latex/cjk/doc/pdfhowto/examples/bkai.map + RELOC/doc/latex/cjk/doc/pdfhowto/examples/cid-x.map + RELOC/doc/latex/cjk/doc/pdfhowto/examples/cwtb.map + RELOC/doc/latex/cjk/doc/pdfhowto/examples/dvipdfmx.cfg + RELOC/doc/latex/cjk/doc/pdfhowto/examples/gen-map.pl + RELOC/doc/latex/cjk/doc/pdfhowto/examples/map.list + RELOC/doc/latex/cjk/doc/pdfhowto/examples/texinput/Bg5/c00cwtb.fd + RELOC/doc/latex/cjk/doc/pdfhowto/examples/texinput/Bg5/c00tmpl.fd + RELOC/doc/latex/cjk/doc/pdfhowto/examples/texinput/GB/c10tmpl.fd + RELOC/doc/latex/cjk/doc/pdfhowto/examples/texinput/JIS/c40tmpl.fd + RELOC/doc/latex/cjk/doc/pdfhowto/examples/texinput/SJIS/c49tmpl.fd + RELOC/doc/latex/cjk/doc/pdfhowto/examples/updmap.my + RELOC/doc/latex/cjk/doc/pdfhowto/examples/wcl.sfd + RELOC/doc/latex/cjk/doc/pinyin.txt + RELOC/doc/latex/cjk/doc/pyhyphen.txt + RELOC/doc/latex/cjk/doc/reftex.txt + RELOC/doc/latex/cjk/doc/ruby.txt + RELOC/doc/latex/cjk/doc/thaifont.txt + RELOC/doc/latex/cjk/doc/vertical.txt + RELOC/doc/latex/cjk/examples/Big5.tex + RELOC/doc/latex/cjk/examples/Big5vert.tex + RELOC/doc/latex/cjk/examples/CEF_test.tex + RELOC/doc/latex/cjk/examples/CJKbabel.tex + RELOC/doc/latex/cjk/examples/CJKfntef.tex + RELOC/doc/latex/cjk/examples/CJKmixed.tex + RELOC/doc/latex/cjk/examples/CJKspace.tex + RELOC/doc/latex/cjk/examples/CJKutf8.tex + RELOC/doc/latex/cjk/examples/GB.tex + RELOC/doc/latex/cjk/examples/JIS.tex + RELOC/doc/latex/cjk/examples/KS.tex + RELOC/doc/latex/cjk/examples/README details="Readme file" + RELOC/doc/latex/cjk/examples/SJIS.tex + RELOC/doc/latex/cjk/examples/UTF8.tex + RELOC/doc/latex/cjk/examples/cjk/Big5.cjk + RELOC/doc/latex/cjk/examples/cjk/Big5vert.cjk + RELOC/doc/latex/cjk/examples/cjk/CEF_test.cjk + RELOC/doc/latex/cjk/examples/cjk/CJKbabel.cjk + RELOC/doc/latex/cjk/examples/cjk/SJIS.cjk + RELOC/doc/latex/cjk/examples/cjk/muletest.cjk + RELOC/doc/latex/cjk/examples/cjk/rubytest.cjk + RELOC/doc/latex/cjk/examples/cjk/thai.cjk + RELOC/doc/latex/cjk/examples/muletest.tex + RELOC/doc/latex/cjk/examples/pdf/Big5.pdf + RELOC/doc/latex/cjk/examples/pdf/Big5vert.pdf + RELOC/doc/latex/cjk/examples/pdf/CEF_test.pdf + RELOC/doc/latex/cjk/examples/pdf/CJKbabel.pdf + RELOC/doc/latex/cjk/examples/pdf/CJKfntef.pdf + RELOC/doc/latex/cjk/examples/pdf/CJKmixed.pdf + RELOC/doc/latex/cjk/examples/pdf/CJKspace.pdf + RELOC/doc/latex/cjk/examples/pdf/CJKutf8.pdf + RELOC/doc/latex/cjk/examples/pdf/GB.pdf + RELOC/doc/latex/cjk/examples/pdf/JIS.pdf + RELOC/doc/latex/cjk/examples/pdf/KS.pdf + RELOC/doc/latex/cjk/examples/pdf/SJIS.pdf + RELOC/doc/latex/cjk/examples/pdf/UTF8.pdf + RELOC/doc/latex/cjk/examples/pdf/muletest.pdf + RELOC/doc/latex/cjk/examples/pdf/py_test.pdf + RELOC/doc/latex/cjk/examples/pdf/pytest.pdf + RELOC/doc/latex/cjk/examples/pdf/rubytest.pdf + RELOC/doc/latex/cjk/examples/pdf/thai.pdf + RELOC/doc/latex/cjk/examples/pdf/thai_utf8.pdf + RELOC/doc/latex/cjk/examples/py_test.tex + RELOC/doc/latex/cjk/examples/rubytest.tex + RELOC/doc/latex/cjk/examples/thai.tex + RELOC/doc/latex/cjk/texlive/bin-cjkutils.pl + RELOC/doc/latex/cjk/texlive/c90.pl + RELOC/doc/latex/cjk/texlive/cjk-build.pl + RELOC/doc/latex/cjk/texlive/cjk.pl + RELOC/doc/latex/cjk/texlive/dnp.pl + RELOC/doc/latex/cjk/texlive/garuda-c90.pl + RELOC/doc/latex/cjk/texlive/norasi-c90.pl + RELOC/doc/latex/cjk/utils/pyhyphen/pytest.tex +srccontainersize 70368 +srccontainerchecksum bebcc4f77716c92fdff317d926b0ab47ff32efc8b235f721d7d3d1808dff5672127b4c80bb729aa1023f25949cee2c4d508adb40574a3d606f3d5840642eb604 +srcfiles size=115 + RELOC/source/latex/cjk/contrib/wadalab/fixwada + RELOC/source/latex/cjk/contrib/wadalab/fixwada2.pl + RELOC/source/latex/cjk/contrib/wadalab/makefont + RELOC/source/latex/cjk/contrib/wadalab/makeuniwada.pl + RELOC/source/latex/cjk/contrib/wadalab/wadalab.map + RELOC/source/latex/cjk/contrib/wadalab/wadalab.txt + RELOC/source/latex/cjk/texinput/KS/HLaTeX/c63mj.fd + RELOC/source/latex/cjk/texinput/KS/HLaTeX/c64mj.fd + RELOC/source/latex/cjk/texinput/KS/HLaTeX/c65mj.fd + RELOC/source/latex/cjk/utils/Bg5conv/bg5conv.w + RELOC/source/latex/cjk/utils/Bg5conv/bg5latex.bat + RELOC/source/latex/cjk/utils/Bg5conv/bg5latex.cmd + RELOC/source/latex/cjk/utils/CEFconv/cef5conv.w + RELOC/source/latex/cjk/utils/CEFconv/cef5ltx.bat + RELOC/source/latex/cjk/utils/CEFconv/cef5ltx.cmd + RELOC/source/latex/cjk/utils/CEFconv/cefconv.w + RELOC/source/latex/cjk/utils/CEFconv/ceflatex.bat + RELOC/source/latex/cjk/utils/CEFconv/ceflatex.cmd + RELOC/source/latex/cjk/utils/CEFconv/cefsconv.w + RELOC/source/latex/cjk/utils/CEFconv/cefsltx.bat + RELOC/source/latex/cjk/utils/CEFconv/cefsltx.cmd + RELOC/source/latex/cjk/utils/SJISconv/sjisconv.w + RELOC/source/latex/cjk/utils/SJISconv/sjisltx.bat + RELOC/source/latex/cjk/utils/SJISconv/sjisltx.cmd + RELOC/source/latex/cjk/utils/extconv/bg5pltx.bat + RELOC/source/latex/cjk/utils/extconv/bg5pltx.cmd + RELOC/source/latex/cjk/utils/extconv/extconv.w + RELOC/source/latex/cjk/utils/extconv/gbklatex.bat + RELOC/source/latex/cjk/utils/extconv/gbklatex.cmd + RELOC/source/latex/cjk/utils/f_name.bat + RELOC/source/latex/cjk/utils/hbf2gf/Makefile.gnu + RELOC/source/latex/cjk/utils/hbf2gf/Makefile.in + RELOC/source/latex/cjk/utils/hbf2gf/README + RELOC/source/latex/cjk/utils/hbf2gf/c-auto.h + RELOC/source/latex/cjk/utils/hbf2gf/dvidrv.btm + RELOC/source/latex/cjk/utils/lisp/cjkspace.el + RELOC/source/latex/cjk/utils/lisp/cjktilde.el + RELOC/source/latex/cjk/utils/lisp/emacs/cjk-enc.el + RELOC/source/latex/cjk/utils/lisp/emacs/thai-word.el + RELOC/source/latex/cjk/utils/lisp/mule-2.3/cjk-enc.el + RELOC/source/latex/cjk/utils/pyhyphen/pinyin.c + RELOC/source/latex/cjk/utils/pyhyphen/pinyin.tr + RELOC/source/latex/cjk/utils/pyhyphen/pyhyph.tex + RELOC/source/latex/cjk/utils/subfonts/clonevf.pl + RELOC/source/latex/cjk/utils/subfonts/hlatex2agl.pl + RELOC/source/latex/cjk/utils/subfonts/makefdx.pl + RELOC/source/latex/cjk/utils/subfonts/sfd2uni.pl + RELOC/source/latex/cjk/utils/subfonts/subfonts.pe + RELOC/source/latex/cjk/utils/subfonts/uni2sfd.pl + RELOC/source/latex/cjk/utils/subfonts/vertical.pe + RELOC/source/latex/cjk/utils/subfonts/vertref.pe runfiles size=294 RELOC/tex/latex/cjk/contrib/wadalab/c42goth.fd RELOC/tex/latex/cjk/contrib/wadalab/c42goth.fdx @@ -28360,179 +48688,321 @@ runfiles size=294 RELOC/tex/latex/cjk/texinput/thai/c90nrsr.fd RELOC/tex/latex/cjk/texinput/thai/thaicjk.ldf RELOC/tex/latex/cjk/utils/pyhyphen/pinyin.ldf -docfiles size=611 - RELOC/doc/latex/cjk/ChangeLog - RELOC/doc/latex/cjk/MANIFEST - RELOC/doc/latex/cjk/Makefile - RELOC/doc/latex/cjk/README - RELOC/doc/latex/cjk/TODO - RELOC/doc/latex/cjk/doc/CEF.txt - RELOC/doc/latex/cjk/doc/CJK.txt - RELOC/doc/latex/cjk/doc/CJKnumb.txt - RELOC/doc/latex/cjk/doc/CJKspace.txt - RELOC/doc/latex/cjk/doc/CJKutf8.txt - RELOC/doc/latex/cjk/doc/COPYING - RELOC/doc/latex/cjk/doc/INSTALL - RELOC/doc/latex/cjk/doc/TDS.txt - RELOC/doc/latex/cjk/doc/chinese/README - RELOC/doc/latex/cjk/doc/chinese/READMEb5.tex - RELOC/doc/latex/cjk/doc/chinese/READMEgb.tex - RELOC/doc/latex/cjk/doc/chinese/emTeXb5.txt - RELOC/doc/latex/cjk/doc/chinese/teTeXb5.txt - RELOC/doc/latex/cjk/doc/cjk-enc.txt - RELOC/doc/latex/cjk/doc/cjk/README - RELOC/doc/latex/cjk/doc/cjk/READMEb5.cjk - RELOC/doc/latex/cjk/doc/commands.txt - RELOC/doc/latex/cjk/doc/dvidrv.txt - RELOC/doc/latex/cjk/doc/fdxfiles.txt - RELOC/doc/latex/cjk/doc/fonts.txt - RELOC/doc/latex/cjk/doc/hbf2gf.txt - RELOC/doc/latex/cjk/doc/history.2_5 - RELOC/doc/latex/cjk/doc/history.txt - RELOC/doc/latex/cjk/doc/japanese/README - RELOC/doc/latex/cjk/doc/japanese/ascii.txt - RELOC/doc/latex/cjk/doc/japanese/japanese.jis - RELOC/doc/latex/cjk/doc/japanese/japanese.txt - RELOC/doc/latex/cjk/doc/japanese/jp-fonts.txt - RELOC/doc/latex/cjk/doc/japanese/jp-tex.txt - RELOC/doc/latex/cjk/doc/japanese/preview.txt - RELOC/doc/latex/cjk/doc/japanese/shibuaki.txt - RELOC/doc/latex/cjk/doc/pdf/READMEb5.pdf - RELOC/doc/latex/cjk/doc/pdf/READMEgb.pdf - RELOC/doc/latex/cjk/doc/pdfhowto/HOWTO.txt - RELOC/doc/latex/cjk/doc/pdfhowto/examples/bkai.map - RELOC/doc/latex/cjk/doc/pdfhowto/examples/cid-x.map - RELOC/doc/latex/cjk/doc/pdfhowto/examples/cwtb.map - RELOC/doc/latex/cjk/doc/pdfhowto/examples/dvipdfmx.cfg - RELOC/doc/latex/cjk/doc/pdfhowto/examples/gen-map.pl - RELOC/doc/latex/cjk/doc/pdfhowto/examples/map.list - RELOC/doc/latex/cjk/doc/pdfhowto/examples/texinput/Bg5/c00cwtb.fd - RELOC/doc/latex/cjk/doc/pdfhowto/examples/texinput/Bg5/c00tmpl.fd - RELOC/doc/latex/cjk/doc/pdfhowto/examples/texinput/GB/c10tmpl.fd - RELOC/doc/latex/cjk/doc/pdfhowto/examples/texinput/JIS/c40tmpl.fd - RELOC/doc/latex/cjk/doc/pdfhowto/examples/texinput/SJIS/c49tmpl.fd - RELOC/doc/latex/cjk/doc/pdfhowto/examples/updmap.my - RELOC/doc/latex/cjk/doc/pdfhowto/examples/wcl.sfd - RELOC/doc/latex/cjk/doc/pinyin.txt - RELOC/doc/latex/cjk/doc/pyhyphen.txt - RELOC/doc/latex/cjk/doc/reftex.txt - RELOC/doc/latex/cjk/doc/ruby.txt - RELOC/doc/latex/cjk/doc/thaifont.txt - RELOC/doc/latex/cjk/doc/vertical.txt - RELOC/doc/latex/cjk/examples/Big5.tex - RELOC/doc/latex/cjk/examples/Big5vert.tex - RELOC/doc/latex/cjk/examples/CEF_test.tex - RELOC/doc/latex/cjk/examples/CJKbabel.tex - RELOC/doc/latex/cjk/examples/CJKfntef.tex - RELOC/doc/latex/cjk/examples/CJKmixed.tex - RELOC/doc/latex/cjk/examples/CJKspace.tex - RELOC/doc/latex/cjk/examples/CJKutf8.tex - RELOC/doc/latex/cjk/examples/GB.tex - RELOC/doc/latex/cjk/examples/JIS.tex - RELOC/doc/latex/cjk/examples/KS.tex - RELOC/doc/latex/cjk/examples/README - RELOC/doc/latex/cjk/examples/SJIS.tex - RELOC/doc/latex/cjk/examples/UTF8.tex - RELOC/doc/latex/cjk/examples/cjk/Big5.cjk - RELOC/doc/latex/cjk/examples/cjk/Big5vert.cjk - RELOC/doc/latex/cjk/examples/cjk/CEF_test.cjk - RELOC/doc/latex/cjk/examples/cjk/CJKbabel.cjk - RELOC/doc/latex/cjk/examples/cjk/SJIS.cjk - RELOC/doc/latex/cjk/examples/cjk/muletest.cjk - RELOC/doc/latex/cjk/examples/cjk/rubytest.cjk - RELOC/doc/latex/cjk/examples/cjk/thai.cjk - RELOC/doc/latex/cjk/examples/muletest.tex - RELOC/doc/latex/cjk/examples/pdf/Big5.pdf - RELOC/doc/latex/cjk/examples/pdf/Big5vert.pdf - RELOC/doc/latex/cjk/examples/pdf/CEF_test.pdf - RELOC/doc/latex/cjk/examples/pdf/CJKbabel.pdf - RELOC/doc/latex/cjk/examples/pdf/CJKfntef.pdf - RELOC/doc/latex/cjk/examples/pdf/CJKmixed.pdf - RELOC/doc/latex/cjk/examples/pdf/CJKspace.pdf - RELOC/doc/latex/cjk/examples/pdf/CJKutf8.pdf - RELOC/doc/latex/cjk/examples/pdf/GB.pdf - RELOC/doc/latex/cjk/examples/pdf/JIS.pdf - RELOC/doc/latex/cjk/examples/pdf/KS.pdf - RELOC/doc/latex/cjk/examples/pdf/SJIS.pdf - RELOC/doc/latex/cjk/examples/pdf/UTF8.pdf - RELOC/doc/latex/cjk/examples/pdf/muletest.pdf - RELOC/doc/latex/cjk/examples/pdf/py_test.pdf - RELOC/doc/latex/cjk/examples/pdf/pytest.pdf - RELOC/doc/latex/cjk/examples/pdf/rubytest.pdf - RELOC/doc/latex/cjk/examples/pdf/thai.pdf - RELOC/doc/latex/cjk/examples/pdf/thai_utf8.pdf - RELOC/doc/latex/cjk/examples/py_test.tex - RELOC/doc/latex/cjk/examples/rubytest.tex - RELOC/doc/latex/cjk/examples/thai.tex - RELOC/doc/latex/cjk/texlive/bin-cjkutils.pl - RELOC/doc/latex/cjk/texlive/c90.pl - RELOC/doc/latex/cjk/texlive/cjk-build.pl - RELOC/doc/latex/cjk/texlive/cjk.pl - RELOC/doc/latex/cjk/texlive/dnp.pl - RELOC/doc/latex/cjk/texlive/garuda-c90.pl - RELOC/doc/latex/cjk/texlive/norasi-c90.pl - RELOC/doc/latex/cjk/utils/pyhyphen/pytest.tex -srcfiles size=115 - RELOC/source/latex/cjk/contrib/wadalab/fixwada - RELOC/source/latex/cjk/contrib/wadalab/fixwada2.pl - RELOC/source/latex/cjk/contrib/wadalab/makefont - RELOC/source/latex/cjk/contrib/wadalab/makeuniwada.pl - RELOC/source/latex/cjk/contrib/wadalab/wadalab.map - RELOC/source/latex/cjk/contrib/wadalab/wadalab.txt - RELOC/source/latex/cjk/texinput/KS/HLaTeX/c63mj.fd - RELOC/source/latex/cjk/texinput/KS/HLaTeX/c64mj.fd - RELOC/source/latex/cjk/texinput/KS/HLaTeX/c65mj.fd - RELOC/source/latex/cjk/utils/Bg5conv/bg5conv.w - RELOC/source/latex/cjk/utils/Bg5conv/bg5latex.bat - RELOC/source/latex/cjk/utils/Bg5conv/bg5latex.cmd - RELOC/source/latex/cjk/utils/CEFconv/cef5conv.w - RELOC/source/latex/cjk/utils/CEFconv/cef5ltx.bat - RELOC/source/latex/cjk/utils/CEFconv/cef5ltx.cmd - RELOC/source/latex/cjk/utils/CEFconv/cefconv.w - RELOC/source/latex/cjk/utils/CEFconv/ceflatex.bat - RELOC/source/latex/cjk/utils/CEFconv/ceflatex.cmd - RELOC/source/latex/cjk/utils/CEFconv/cefsconv.w - RELOC/source/latex/cjk/utils/CEFconv/cefsltx.bat - RELOC/source/latex/cjk/utils/CEFconv/cefsltx.cmd - RELOC/source/latex/cjk/utils/SJISconv/sjisconv.w - RELOC/source/latex/cjk/utils/SJISconv/sjisltx.bat - RELOC/source/latex/cjk/utils/SJISconv/sjisltx.cmd - RELOC/source/latex/cjk/utils/extconv/bg5pltx.bat - RELOC/source/latex/cjk/utils/extconv/bg5pltx.cmd - RELOC/source/latex/cjk/utils/extconv/extconv.w - RELOC/source/latex/cjk/utils/extconv/gbklatex.bat - RELOC/source/latex/cjk/utils/extconv/gbklatex.cmd - RELOC/source/latex/cjk/utils/f_name.bat - RELOC/source/latex/cjk/utils/hbf2gf/Makefile.gnu - RELOC/source/latex/cjk/utils/hbf2gf/Makefile.in - RELOC/source/latex/cjk/utils/hbf2gf/README - RELOC/source/latex/cjk/utils/hbf2gf/c-auto.h - RELOC/source/latex/cjk/utils/hbf2gf/dvidrv.btm - RELOC/source/latex/cjk/utils/lisp/cjkspace.el - RELOC/source/latex/cjk/utils/lisp/cjktilde.el - RELOC/source/latex/cjk/utils/lisp/emacs/cjk-enc.el - RELOC/source/latex/cjk/utils/lisp/emacs/thai-word.el - RELOC/source/latex/cjk/utils/lisp/mule-2.3/cjk-enc.el - RELOC/source/latex/cjk/utils/pyhyphen/pinyin.c - RELOC/source/latex/cjk/utils/pyhyphen/pinyin.tr - RELOC/source/latex/cjk/utils/pyhyphen/pyhyph.tex - RELOC/source/latex/cjk/utils/subfonts/clonevf.pl - RELOC/source/latex/cjk/utils/subfonts/hlatex2agl.pl - RELOC/source/latex/cjk/utils/subfonts/makefdx.pl - RELOC/source/latex/cjk/utils/subfonts/sfd2uni.pl - RELOC/source/latex/cjk/utils/subfonts/subfonts.pe - RELOC/source/latex/cjk/utils/subfonts/uni2sfd.pl - RELOC/source/latex/cjk/utils/subfonts/vertical.pe - RELOC/source/latex/cjk/utils/subfonts/vertref.pe +catalogue-also cjk-fonts catalogue-ctan /language/chinese/CJK -catalogue-date 2015-04-18 16:38:29 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics font-use font-cjk chinese japanese korean thai +catalogue-version 4.8.4 + +name cjk-gs-integrate +category Package +revision 50214 +shortdesc Tools to integrate CJK fonts into Ghostscript +longdesc This script searches a list of directories for CJK fonts, and +longdesc makes them available to an installed Ghostscript. In the +longdesc simplest case, with sufficient privileges, a run without +longdesc arguments should result in a complete setup of Ghostscript. +depend cjk-gs-integrate.ARCH +containersize 32060 +containerchecksum 3f18c476551f6152fb3ee6084c4bca190bf5821cdd484230652cf75190347f97a1f811b050763bac3c866e96cd09b3f20e1e1fe0a7d7aaa96bafe772840715a3 +doccontainersize 11596 +doccontainerchecksum 5a678f4c5d27801e300acf07eb2885f9dee948c8ba3e533b8ae3a5f76502351c769395e2483055cfb65d52e541d9f9062c7adc00a53de0130b62abdeb1cf58d1 +docfiles size=13 + texmf-dist/doc/fonts/cjk-gs-integrate/ChangeLog + texmf-dist/doc/fonts/cjk-gs-integrate/README.md details="Readme" +srccontainersize 548 +srccontainerchecksum 1fc237c5a2b4c9927874b2c2925f24c76e719d3f6dc0f83266da81de128240256143f4ed049e60e60c8121bd34d9055b33459ee76fe2d5d0da52a2d092a9ab5f +srcfiles size=1 + texmf-dist/source/fonts/cjk-gs-integrate/Makefile +runfiles size=67 + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-adobe.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-apple.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-arphic.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-bizud.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-cjkuni.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-dynacomware.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-fandol.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-fontworks.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-founder.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-hancom.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-heisei.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-hiragino.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-ipa.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-kozuka.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-macos-removeonly.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-microsoft.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-mogamobo.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-monotype.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-morisawa.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-nanum.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-notosans.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-notoserif.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-ryokana.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-sazanami.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-sinotype.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-solaris.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-sourcehansans.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-sourcehanserif.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-toppan.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-typebank.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-ume.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-unfonts.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-wenquanyi.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-yu-osx.dat + texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-yu-win.dat + texmf-dist/scripts/cjk-gs-integrate/cjk-gs-integrate.pl +catalogue-contact-repository https://github.com/texjporg/cjk-gs-support +catalogue-ctan /fonts/utilities/cjk-gs-integrate +catalogue-date 2019-03-03 15:13:43 +0100 +catalogue-license gpl3 +catalogue-topics font-util +catalogue-version 20190303.0 + +name cjk-gs-integrate.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of cjk-gs-integrate +containersize 352 +containerchecksum 806ba2f8cda5254da7d11d64e03be2c95e2528b26066efda55e49aa1a8d20acb5bc87836a7c9b08344770fec3d1e03d7387b4187f36896f927048235d246f9e3 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/cjk-gs-integrate + +name cjk-gs-integrate.amd64-freebsd +category Package +revision 37223 +shortdesc amd64-freebsd files of cjk-gs-integrate +containersize 352 +containerchecksum 44f1eeeb009bdb5d616f07ccfa0336c377cfba29cb91e502ff557e9d67ec79ae66967548282a39aec0900a873303a7f8c1b79828558e08f9c71ca2bc61ecd46c +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/cjk-gs-integrate + +name cjk-gs-integrate.amd64-netbsd +category Package +revision 37223 +shortdesc amd64-netbsd files of cjk-gs-integrate +containersize 352 +containerchecksum 70c50f498ce431d36d96a4f226648993896a72bc5e6dec3d5123c7f0027b96d7cf76ea0869ec6a29fa89ac151dd88f47d3362ffec84095369046405786f3836b +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/cjk-gs-integrate + +name cjk-gs-integrate.armhf-linux +category Package +revision 37223 +shortdesc armhf-linux files of cjk-gs-integrate +containersize 348 +containerchecksum 5e2df0b6fb516ea2cf7f52047f5e2125c72e224a2c96909637bf57f10d38b0f7e02f645f1186fa1445b481690cf10c85b4c017cf3dfbcfe30588270028a9cb94 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/cjk-gs-integrate + +name cjk-gs-integrate.i386-cygwin +category Package +revision 37223 +shortdesc i386-cygwin files of cjk-gs-integrate +containersize 348 +containerchecksum 21dadd7e1e625f307cc661cbdd2643d83dbf12f1dec0d2a80607ad7cd89402d8448939b27a248d02948bbea8ec38b7cb68ea55bc1194eab59329a38031695964 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/cjk-gs-integrate + +name cjk-gs-integrate.i386-freebsd +category Package +revision 37223 +shortdesc i386-freebsd files of cjk-gs-integrate +containersize 352 +containerchecksum 3594af88365eec818c65ea24eb5f973393c113417ed0bb7c54af44fb994c763b2f717b843f1eea7a9ef15e4bdbe90974bc2f0cd5ef2ab6db47ce627f94bc20ab +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/cjk-gs-integrate + +name cjk-gs-integrate.i386-linux +category Package +revision 37223 +shortdesc i386-linux files of cjk-gs-integrate +containersize 352 +containerchecksum d9cd232b20b0b524710aca7eb4a6b6a649fc6a613b8c78626962c657b4abd01ee39f84d04e37f1e973256bb2bf4c4a8c968b1d0a158e31fa4d66b01ed2f3029f +binfiles arch=i386-linux size=1 + bin/i386-linux/cjk-gs-integrate + +name cjk-gs-integrate.i386-netbsd +category Package +revision 37223 +shortdesc i386-netbsd files of cjk-gs-integrate +containersize 352 +containerchecksum c531cb984b647088dbe1d485f9d8b068a6afb3b21e6c6f7a7db0855decadecb4b7c18b4de2fed5f0c3fd32f19cd064187dae55f19668eb5c80dc02e723a82669 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/cjk-gs-integrate + +name cjk-gs-integrate.i386-solaris +category Package +revision 37223 +shortdesc i386-solaris files of cjk-gs-integrate +containersize 352 +containerchecksum e52235a0adf9368704461bd5c03bfd742c48b3d53c6aa4c1d4bca87441975eebb74e8f6fb1d9c5196c893f6bf29da10123f9cc7fa26a2eec46c6b4b6e4baf167 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/cjk-gs-integrate + +name cjk-gs-integrate.win32 +category Package +revision 37223 +shortdesc win32 files of cjk-gs-integrate +containersize 696 +containerchecksum 333c4b1f402af106180dc4a571334234981f1d67d61de6941f398948f03593fe890a73b6d59cd5e759c3b70556217eaf87cc10310d578e6aca69c357b5dc46e1 +binfiles arch=win32 size=1 + bin/win32/cjk-gs-integrate.exe + +name cjk-gs-integrate.x86_64-cygwin +category Package +revision 37223 +shortdesc x86_64-cygwin files of cjk-gs-integrate +containersize 352 +containerchecksum 0bb93a6de6ef5c83c2afa85d44cac9c4e264cdf27a868e61bf6fde8732363dd10ba6185d7fc73cb719076908bc482e4c6574adf886fc66e73d5d61d8335520d1 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/cjk-gs-integrate + +name cjk-gs-integrate.x86_64-darwin +category Package +revision 37223 +shortdesc x86_64-darwin files of cjk-gs-integrate +containersize 348 +containerchecksum b20564baf32016cd0e3b41b3360c613075e00df8e1745c2d90e70254e95edca3e83605f1bce242a8ba292ed0329e9b22c4784a3fac667aeb18b9611a38314775 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/cjk-gs-integrate + +name cjk-gs-integrate.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of cjk-gs-integrate +containersize 360 +containerchecksum a03f7541f081a5f40837c0f6d8dcedce8a53660f7d3c842986284143821924a5223e59fa6a6293f37ffed27f173bff06ad8f926f8cb1fd9f4a580400503a707b +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/cjk-gs-integrate + +name cjk-gs-integrate.x86_64-linux +category Package +revision 37223 +shortdesc x86_64-linux files of cjk-gs-integrate +containersize 348 +containerchecksum 9b04db277b84b51d42882a8f7ed274526493b9518871010b630db00d72694da45635e2c08a121019b195a981708c2e03b84da25c7bd2098bef115251639ff47b +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/cjk-gs-integrate + +name cjk-gs-integrate.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of cjk-gs-integrate +containersize 356 +containerchecksum 187351253dc4c241efb8638afaf466f40a8502e31d0a60e80596ef875e08ff94e9fcf781024d2c0f7acc91268e08a6283ec0558deca3ab844226b42c9682765a +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/cjk-gs-integrate + +name cjk-gs-integrate.x86_64-solaris +category Package +revision 37223 +shortdesc x86_64-solaris files of cjk-gs-integrate +containersize 352 +containerchecksum 8755c44fd4d5414adc6ec59b6bc137463677c8213a29dbce2d32c20aa066622ec5db53c62f6217aea1cfd72ada2fd15e61d42b493eba2e7e23f3278fb3d51a5c +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/cjk-gs-integrate + +name cjk-ko +category Package +revision 40373 +shortdesc Extension of the CJK package for Korean typesetting +relocated 1 +longdesc The package supports typesetting UTF-8-encoded modern Korean +longdesc documents with the help of the LaTeX2e CJK package. It provides +longdesc some enhanced features focused on Korean typesetting culture, +longdesc one of them being allowing line-break between Latin and CJK +longdesc characters. The package requires nanumtype1 fonts. +containersize 8440 +containerchecksum 52ed45e1e67b50a09ce4b1fc333222d93adba691265e13d0523aa2d1a2a82b78dacae5ec2ee1ec0e78dfdde740a15a3d48fe45750db17e5270480807521c59fa +doccontainersize 153424 +doccontainerchecksum 15b96571e56e9e08656f28fe8f8875e22de4a4c513a76b21206b66b8ffe2c986acc87c6f0bb1f693a2ac05ad07948ba89fbdf5f63259d08ef3b41726190e089d +docfiles size=47 + RELOC/doc/latex/cjk-ko/ChangeLog + RELOC/doc/latex/cjk-ko/README details="Readme" + RELOC/doc/latex/cjk-ko/cjk-ko-doc.pdf details="Package documentation (Korean)" language="ko" + RELOC/doc/latex/cjk-ko/cjk-ko-doc.tex +runfiles size=11 + RELOC/tex/latex/cjk-ko/cjkutf8-josa.sty + RELOC/tex/latex/cjk-ko/cjkutf8-ko.sty + RELOC/tex/latex/cjk-ko/cjkutf8-nanummjhanja.sty + RELOC/tex/latex/cjk-ko/kolabels-utf.sty + RELOC/tex/latex/cjk-ko/konames-utf.sty + RELOC/tex/latex/cjk-ko/kotex.sty +catalogue-contact-repository https://github.com/dohyunkim/cjk-ko +catalogue-ctan /language/korean/cjk-ko +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license other-free +catalogue-topics korean +catalogue-version 1.8 + +name cjkpunct +category Package +revision 41119 +shortdesc Adjust locations and kerning of CJK punctuation marks +relocated 1 +longdesc The package serves as a companion package for CJK. +containersize 4060 +containerchecksum cb44aa3386cd79f05980e5402adcbbf9f8b67fa76bdd5b293063fe9810520edbdf243656cfb54fe17d6ca43d405e6b16e8012eda63bae3cb3d8fc0f7755e2551 +doccontainersize 143540 +doccontainerchecksum cb9383b6d3fe9ffd5926d10dddcb1ea758aabda232f015b22f61dc8a9b316193b30ca2d8e2b849b1c03d92e0073bba6d90cc5b3b50f47b28a745dff2f7229486 +docfiles size=43 + RELOC/doc/latex/cjkpunct/CJKpunct.pdf + RELOC/doc/latex/cjkpunct/README.md details="Readme" + RELOC/doc/latex/cjkpunct/examples/example-CJKfntef.tex + RELOC/doc/latex/cjkpunct/examples/example-gb.tex + RELOC/doc/latex/cjkpunct/examples/example-gbk.tex + RELOC/doc/latex/cjkpunct/examples/example-utf8.tex + RELOC/doc/latex/cjkpunct/setpunct/README.txt + RELOC/doc/latex/cjkpunct/setpunct/setpunct-macros.tex + RELOC/doc/latex/cjkpunct/setpunct/setpunct-main.tex +srccontainersize 7020 +srccontainerchecksum 0155261e5a1a22634a4c6c779054198534bc2b6ef1f1d85d471a25bde59b7e872db01627f08db6dc76c7fe6fd08d9a2363c47e79425c80ec5319648c994cbf48 +srcfiles size=9 + RELOC/source/latex/cjkpunct/CJKpunct.dtx + RELOC/source/latex/cjkpunct/CJKpunct.ins +runfiles size=6 + RELOC/tex/latex/cjkpunct/CJKpunct.spa + RELOC/tex/latex/cjkpunct/CJKpunct.sty +catalogue-ctan /language/chinese/cjkpunct +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics chinese japanese korean catalogue-version 4.8.4 name cjkutils category TLCore -revision 37693 +revision 50602 +catalogue cjk +shortdesc CJK language support +longdesc CJK is a macro package for LaTeX, providing simultaneous +longdesc support for various Asian scripts in many encodings (including +longdesc Unicode): Chinese (both traditional and simplified), Japanese, +longdesc Korean and Thai. A special add-on feature is an interface to +longdesc the Emacs editor (cjk-enc.el) which gives simultaneous, +longdesc easy-to-use support to a bunch of other scripts in addition to +longdesc the above -- Cyrillic, Greek, Latin-based scripts, Russian and +longdesc Vietnamese are supported. depend cjkutils.ARCH +containersize 2016 +containerchecksum 0c6e2eef5022fcdedee3d3eeadd87a885e663f92274a4f671c039197b6fd886605c4d71b052669dc8665737f38f2ba02d070f75610384ed53d4e96d66d696457 +doccontainersize 98292 +doccontainerchecksum 50437984ba42ea9f4d0a23ce78110d5899cbe205a46150998a2e44b2710196a0b5cefc44fe3ff78567e4372f57bf9f9d7177dc29ca7c37785b56f4bbe49cf11e +docfiles size=55 + texmf-dist/doc/man/man1/bg5conv.1 + texmf-dist/doc/man/man1/bg5conv.man1.pdf + texmf-dist/doc/man/man1/cef5conv.1 + texmf-dist/doc/man/man1/cef5conv.man1.pdf + texmf-dist/doc/man/man1/cefconv.1 + texmf-dist/doc/man/man1/cefconv.man1.pdf + texmf-dist/doc/man/man1/cefsconv.1 + texmf-dist/doc/man/man1/cefsconv.man1.pdf + texmf-dist/doc/man/man1/extconv.1 + texmf-dist/doc/man/man1/extconv.man1.pdf + texmf-dist/doc/man/man1/hbf2gf.1 + texmf-dist/doc/man/man1/hbf2gf.man1.pdf + texmf-dist/doc/man/man1/sjisconv.1 + texmf-dist/doc/man/man1/sjisconv.man1.pdf runfiles size=16 texmf-dist/hbf2gf/README texmf-dist/hbf2gf/b5ka12.cfg @@ -28550,27 +49020,194 @@ runfiles size=16 texmf-dist/hbf2gf/j2so12.cfg texmf-dist/hbf2gf/jsso12.cfg texmf-dist/hbf2gf/ksso17.cfg -docfiles size=28 - texmf-dist/doc/man/man1/bg5conv.1 - texmf-dist/doc/man/man1/bg5conv.man1.pdf - texmf-dist/doc/man/man1/cef5conv.1 - texmf-dist/doc/man/man1/cef5conv.man1.pdf - texmf-dist/doc/man/man1/cefconv.1 - texmf-dist/doc/man/man1/cefconv.man1.pdf - texmf-dist/doc/man/man1/cefsconv.1 - texmf-dist/doc/man/man1/cefsconv.man1.pdf - texmf-dist/doc/man/man1/extconv.1 - texmf-dist/doc/man/man1/extconv.man1.pdf - texmf-dist/doc/man/man1/hbf2gf.1 - texmf-dist/doc/man/man1/hbf2gf.man1.pdf - texmf-dist/doc/man/man1/sjisconv.1 - texmf-dist/doc/man/man1/sjisconv.man1.pdf +catalogue-also cjk-fonts +catalogue-ctan /language/chinese/CJK +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics font-use font-cjk chinese japanese korean thai +catalogue-version 4.8.4 + +name cjkutils.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of cjkutils +containersize 43600 +containerchecksum afb2277eb30c1936772edc27c8be87e07ff242c692c5d6d70e923e2262a59e6c4392f049f3cb6ebfb15d1f13be38412ad6569855b003fbfe2031b5ade4ece18a +binfiles arch=aarch64-linux size=54 + bin/aarch64-linux/bg5+latex + bin/aarch64-linux/bg5+pdflatex + bin/aarch64-linux/bg5conv + bin/aarch64-linux/bg5latex + bin/aarch64-linux/bg5pdflatex + bin/aarch64-linux/cef5conv + bin/aarch64-linux/cef5latex + bin/aarch64-linux/cef5pdflatex + bin/aarch64-linux/cefconv + bin/aarch64-linux/ceflatex + bin/aarch64-linux/cefpdflatex + bin/aarch64-linux/cefsconv + bin/aarch64-linux/cefslatex + bin/aarch64-linux/cefspdflatex + bin/aarch64-linux/extconv + bin/aarch64-linux/gbklatex + bin/aarch64-linux/gbkpdflatex + bin/aarch64-linux/hbf2gf + bin/aarch64-linux/sjisconv + bin/aarch64-linux/sjislatex + bin/aarch64-linux/sjispdflatex + +name cjkutils.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of cjkutils +containersize 50076 +containerchecksum c2ff019c1badd393749af401bbd3b478b112ec4a87ca3406ab2a37eac7b39421fe65b83fa5ff3eacac5fdd1b90919e78c27967d21e4f672673e3848dd5bf744c +binfiles arch=amd64-freebsd size=53 + bin/amd64-freebsd/bg5+latex + bin/amd64-freebsd/bg5+pdflatex + bin/amd64-freebsd/bg5conv + bin/amd64-freebsd/bg5latex + bin/amd64-freebsd/bg5pdflatex + bin/amd64-freebsd/cef5conv + bin/amd64-freebsd/cef5latex + bin/amd64-freebsd/cef5pdflatex + bin/amd64-freebsd/cefconv + bin/amd64-freebsd/ceflatex + bin/amd64-freebsd/cefpdflatex + bin/amd64-freebsd/cefsconv + bin/amd64-freebsd/cefslatex + bin/amd64-freebsd/cefspdflatex + bin/amd64-freebsd/extconv + bin/amd64-freebsd/gbklatex + bin/amd64-freebsd/gbkpdflatex + bin/amd64-freebsd/hbf2gf + bin/amd64-freebsd/sjisconv + bin/amd64-freebsd/sjislatex + bin/amd64-freebsd/sjispdflatex + +name cjkutils.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of cjkutils +containersize 44320 +containerchecksum 3f4b4e7cc861e11c379981e60904fda963d2b33f9798c8276fd01d99c86042258d57463ee1a787fcb4c092d3e89bf4c7f4c4e5359d56eb3544da4cb28611e44a +binfiles arch=amd64-netbsd size=57 + bin/amd64-netbsd/bg5+latex + bin/amd64-netbsd/bg5+pdflatex + bin/amd64-netbsd/bg5conv + bin/amd64-netbsd/bg5latex + bin/amd64-netbsd/bg5pdflatex + bin/amd64-netbsd/cef5conv + bin/amd64-netbsd/cef5latex + bin/amd64-netbsd/cef5pdflatex + bin/amd64-netbsd/cefconv + bin/amd64-netbsd/ceflatex + bin/amd64-netbsd/cefpdflatex + bin/amd64-netbsd/cefsconv + bin/amd64-netbsd/cefslatex + bin/amd64-netbsd/cefspdflatex + bin/amd64-netbsd/extconv + bin/amd64-netbsd/gbklatex + bin/amd64-netbsd/gbkpdflatex + bin/amd64-netbsd/hbf2gf + bin/amd64-netbsd/sjisconv + bin/amd64-netbsd/sjislatex + bin/amd64-netbsd/sjispdflatex + +name cjkutils.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of cjkutils +containersize 40308 +containerchecksum ac11b67aefdff8c76117225f0d27682f7d3886d22d3e424e5ebec426cb1499127d09afe779919f68bba5930075f90390588f77287af8f50b14a99a181b892a62 +binfiles arch=armhf-linux size=49 + bin/armhf-linux/bg5+latex + bin/armhf-linux/bg5+pdflatex + bin/armhf-linux/bg5conv + bin/armhf-linux/bg5latex + bin/armhf-linux/bg5pdflatex + bin/armhf-linux/cef5conv + bin/armhf-linux/cef5latex + bin/armhf-linux/cef5pdflatex + bin/armhf-linux/cefconv + bin/armhf-linux/ceflatex + bin/armhf-linux/cefpdflatex + bin/armhf-linux/cefsconv + bin/armhf-linux/cefslatex + bin/armhf-linux/cefspdflatex + bin/armhf-linux/extconv + bin/armhf-linux/gbklatex + bin/armhf-linux/gbkpdflatex + bin/armhf-linux/hbf2gf + bin/armhf-linux/sjisconv + bin/armhf-linux/sjislatex + bin/armhf-linux/sjispdflatex + +name cjkutils.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of cjkutils +containersize 18916 +containerchecksum 1deb2efdca1b95ab54e375e3a0c6e7fb602c94059da3995fe2276eb192a5f7daf15ff5dc42b97ef0c823c4d43615485e0ac4fddccc4436499937a207bf63fa2d +binfiles arch=i386-cygwin size=41 + bin/i386-cygwin/bg5+latex + bin/i386-cygwin/bg5+pdflatex + bin/i386-cygwin/bg5conv.exe + bin/i386-cygwin/bg5latex + bin/i386-cygwin/bg5pdflatex + bin/i386-cygwin/cef5conv.exe + bin/i386-cygwin/cef5latex + bin/i386-cygwin/cef5pdflatex + bin/i386-cygwin/cefconv.exe + bin/i386-cygwin/ceflatex + bin/i386-cygwin/cefpdflatex + bin/i386-cygwin/cefsconv.exe + bin/i386-cygwin/cefslatex + bin/i386-cygwin/cefspdflatex + bin/i386-cygwin/extconv.exe + bin/i386-cygwin/gbklatex + bin/i386-cygwin/gbkpdflatex + bin/i386-cygwin/hbf2gf.exe + bin/i386-cygwin/sjisconv.exe + bin/i386-cygwin/sjislatex + bin/i386-cygwin/sjispdflatex + +name cjkutils.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of cjkutils +containersize 43416 +containerchecksum e1a92de27d730649004900676427408c1255843fd5f634486d5f2a513b55ad847f890da813b22bc0f15a1fb61190cbf7fbce394ab8166224ce642da6b74241eb +binfiles arch=i386-freebsd size=48 + bin/i386-freebsd/bg5+latex + bin/i386-freebsd/bg5+pdflatex + bin/i386-freebsd/bg5conv + bin/i386-freebsd/bg5latex + bin/i386-freebsd/bg5pdflatex + bin/i386-freebsd/cef5conv + bin/i386-freebsd/cef5latex + bin/i386-freebsd/cef5pdflatex + bin/i386-freebsd/cefconv + bin/i386-freebsd/ceflatex + bin/i386-freebsd/cefpdflatex + bin/i386-freebsd/cefsconv + bin/i386-freebsd/cefslatex + bin/i386-freebsd/cefspdflatex + bin/i386-freebsd/extconv + bin/i386-freebsd/gbklatex + bin/i386-freebsd/gbkpdflatex + bin/i386-freebsd/hbf2gf + bin/i386-freebsd/sjisconv + bin/i386-freebsd/sjislatex + bin/i386-freebsd/sjispdflatex name cjkutils.i386-linux category TLCore -revision 36924 +revision 50281 shortdesc i386-linux files of cjkutils -binfiles arch=i386-linux size=57 +containersize 51120 +containerchecksum 4d9dbfce8286dfb2f2395d2a9abf8afc0cbaa3eae6116cf692232cf6bcf510fd9196a9717977b596a40748a3841b03fa432a818b392a9e50a66a8398429b8794 +binfiles arch=i386-linux size=52 bin/i386-linux/bg5+latex bin/i386-linux/bg5+pdflatex bin/i386-linux/bg5conv @@ -28593,40 +49230,306 @@ binfiles arch=i386-linux size=57 bin/i386-linux/sjislatex bin/i386-linux/sjispdflatex +name cjkutils.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of cjkutils +containersize 40176 +containerchecksum 0c5effd2361b3de93b1f67942f6b6c82fc17c30d7916d3e6918c49ef0bb9e47f89ed7e2b8202bbe394402a7fb658bb9b732433c5ee169951d06f8746e2e061dc +binfiles arch=i386-netbsd size=55 + bin/i386-netbsd/bg5+latex + bin/i386-netbsd/bg5+pdflatex + bin/i386-netbsd/bg5conv + bin/i386-netbsd/bg5latex + bin/i386-netbsd/bg5pdflatex + bin/i386-netbsd/cef5conv + bin/i386-netbsd/cef5latex + bin/i386-netbsd/cef5pdflatex + bin/i386-netbsd/cefconv + bin/i386-netbsd/ceflatex + bin/i386-netbsd/cefpdflatex + bin/i386-netbsd/cefsconv + bin/i386-netbsd/cefslatex + bin/i386-netbsd/cefspdflatex + bin/i386-netbsd/extconv + bin/i386-netbsd/gbklatex + bin/i386-netbsd/gbkpdflatex + bin/i386-netbsd/hbf2gf + bin/i386-netbsd/sjisconv + bin/i386-netbsd/sjislatex + bin/i386-netbsd/sjispdflatex + +name cjkutils.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of cjkutils +containersize 47844 +containerchecksum 69000df5366359406328ac7f5a89e3c2fff0ccca8fa36e11073884f99aec1c61368eaade84836d0ecb0444e94640e79ffea564d2599ac3c537a70639596e91f0 +binfiles arch=i386-solaris size=50 + bin/i386-solaris/bg5+latex + bin/i386-solaris/bg5+pdflatex + bin/i386-solaris/bg5conv + bin/i386-solaris/bg5latex + bin/i386-solaris/bg5pdflatex + bin/i386-solaris/cef5conv + bin/i386-solaris/cef5latex + bin/i386-solaris/cef5pdflatex + bin/i386-solaris/cefconv + bin/i386-solaris/ceflatex + bin/i386-solaris/cefpdflatex + bin/i386-solaris/cefsconv + bin/i386-solaris/cefslatex + bin/i386-solaris/cefspdflatex + bin/i386-solaris/extconv + bin/i386-solaris/gbklatex + bin/i386-solaris/gbkpdflatex + bin/i386-solaris/hbf2gf + bin/i386-solaris/sjisconv + bin/i386-solaris/sjislatex + bin/i386-solaris/sjispdflatex + +name cjkutils.win32 +category TLCore +revision 50155 +shortdesc win32 files of cjkutils +containersize 23232 +containerchecksum 667a816e8092f8916a47f11c5e1116ec5ad9daad285c7af3ba465081170f463a2921ca25ef3c103a46a8fb49bdc95c0e66b5f53334a5938af42286518834120e +binfiles arch=win32 size=57 + bin/win32/bg5conv.exe + bin/win32/bg5latex.exe + bin/win32/bg5pdflatex.exe + bin/win32/cef5conv.exe + bin/win32/cef5latex.exe + bin/win32/cef5pdflatex.exe + bin/win32/cefconv.exe + bin/win32/ceflatex.exe + bin/win32/cefpdflatex.exe + bin/win32/cefsconv.exe + bin/win32/cefslatex.exe + bin/win32/cefspdflatex.exe + bin/win32/extconv.exe + bin/win32/gbklatex.exe + bin/win32/gbkpdflatex.exe + bin/win32/hbf2gf.exe + bin/win32/sjisconv.exe + bin/win32/sjislatex.exe + bin/win32/sjispdflatex.exe + +name cjkutils.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of cjkutils +containersize 19980 +containerchecksum a3aef725d3254c50f9a50b1cf924b7efcc79aaa6a1bb690f9646cf1cf1a1719fcef63c0c0802eea2b1484a4e5dd103b940487c3a24d2f66559d28e891f0ad219 +binfiles arch=x86_64-cygwin size=41 + bin/x86_64-cygwin/bg5+latex + bin/x86_64-cygwin/bg5+pdflatex + bin/x86_64-cygwin/bg5conv.exe + bin/x86_64-cygwin/bg5latex + bin/x86_64-cygwin/bg5pdflatex + bin/x86_64-cygwin/cef5conv.exe + bin/x86_64-cygwin/cef5latex + bin/x86_64-cygwin/cef5pdflatex + bin/x86_64-cygwin/cefconv.exe + bin/x86_64-cygwin/ceflatex + bin/x86_64-cygwin/cefpdflatex + bin/x86_64-cygwin/cefsconv.exe + bin/x86_64-cygwin/cefslatex + bin/x86_64-cygwin/cefspdflatex + bin/x86_64-cygwin/extconv.exe + bin/x86_64-cygwin/gbklatex + bin/x86_64-cygwin/gbkpdflatex + bin/x86_64-cygwin/hbf2gf.exe + bin/x86_64-cygwin/sjisconv.exe + bin/x86_64-cygwin/sjislatex + bin/x86_64-cygwin/sjispdflatex + +name cjkutils.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of cjkutils +containersize 49096 +containerchecksum 415018083bcd42ff13d468423cf872eb4771376844d94b5eea9ddc46b8c5ba5a52f52ed9bc393e414b826cd55096a4a00a7605d762b0f370def95104fb3f99ba +binfiles arch=x86_64-darwin size=58 + bin/x86_64-darwin/bg5+latex + bin/x86_64-darwin/bg5+pdflatex + bin/x86_64-darwin/bg5conv + bin/x86_64-darwin/bg5latex + bin/x86_64-darwin/bg5pdflatex + bin/x86_64-darwin/cef5conv + bin/x86_64-darwin/cef5latex + bin/x86_64-darwin/cef5pdflatex + bin/x86_64-darwin/cefconv + bin/x86_64-darwin/ceflatex + bin/x86_64-darwin/cefpdflatex + bin/x86_64-darwin/cefsconv + bin/x86_64-darwin/cefslatex + bin/x86_64-darwin/cefspdflatex + bin/x86_64-darwin/extconv + bin/x86_64-darwin/gbklatex + bin/x86_64-darwin/gbkpdflatex + bin/x86_64-darwin/hbf2gf + bin/x86_64-darwin/sjisconv + bin/x86_64-darwin/sjislatex + bin/x86_64-darwin/sjispdflatex + +name cjkutils.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of cjkutils +containersize 47144 +containerchecksum 97ac0eac25bdb6c71b125a5d6aaf4155d80283d36dadb8773c7850e0dcaf986307d685e94bfdcfb082769a2ccdc749c01dc7bde1c71114705eea352a2275f495 +binfiles arch=x86_64-darwinlegacy size=58 + bin/x86_64-darwinlegacy/bg5+latex + bin/x86_64-darwinlegacy/bg5+pdflatex + bin/x86_64-darwinlegacy/bg5conv + bin/x86_64-darwinlegacy/bg5latex + bin/x86_64-darwinlegacy/bg5pdflatex + bin/x86_64-darwinlegacy/cef5conv + bin/x86_64-darwinlegacy/cef5latex + bin/x86_64-darwinlegacy/cef5pdflatex + bin/x86_64-darwinlegacy/cefconv + bin/x86_64-darwinlegacy/ceflatex + bin/x86_64-darwinlegacy/cefpdflatex + bin/x86_64-darwinlegacy/cefsconv + bin/x86_64-darwinlegacy/cefslatex + bin/x86_64-darwinlegacy/cefspdflatex + bin/x86_64-darwinlegacy/extconv + bin/x86_64-darwinlegacy/gbklatex + bin/x86_64-darwinlegacy/gbkpdflatex + bin/x86_64-darwinlegacy/hbf2gf + bin/x86_64-darwinlegacy/sjisconv + bin/x86_64-darwinlegacy/sjislatex + bin/x86_64-darwinlegacy/sjispdflatex + +name cjkutils.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of cjkutils +containersize 49036 +containerchecksum 892ef2e59a2820090e5c933b47ef45a86519debebc659c1850435b83040bd4f15cffbcca430732b7fda480c9158c3df2ee7d0b34a3c55f4e34948da721e27a77 +binfiles arch=x86_64-linux size=51 + bin/x86_64-linux/bg5+latex + bin/x86_64-linux/bg5+pdflatex + bin/x86_64-linux/bg5conv + bin/x86_64-linux/bg5latex + bin/x86_64-linux/bg5pdflatex + bin/x86_64-linux/cef5conv + bin/x86_64-linux/cef5latex + bin/x86_64-linux/cef5pdflatex + bin/x86_64-linux/cefconv + bin/x86_64-linux/ceflatex + bin/x86_64-linux/cefpdflatex + bin/x86_64-linux/cefsconv + bin/x86_64-linux/cefslatex + bin/x86_64-linux/cefspdflatex + bin/x86_64-linux/extconv + bin/x86_64-linux/gbklatex + bin/x86_64-linux/gbkpdflatex + bin/x86_64-linux/hbf2gf + bin/x86_64-linux/sjisconv + bin/x86_64-linux/sjislatex + bin/x86_64-linux/sjispdflatex + +name cjkutils.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of cjkutils +containersize 51464 +containerchecksum bc4aeaf478570a3c82f2fda32aed92595f9c7498b256292a438ccf16f5aae0cd75164620365fa9e40868591abc99d18761f134be070f21a82906e96eb1224917 +binfiles arch=x86_64-linuxmusl size=58 + bin/x86_64-linuxmusl/bg5+latex + bin/x86_64-linuxmusl/bg5+pdflatex + bin/x86_64-linuxmusl/bg5conv + bin/x86_64-linuxmusl/bg5latex + bin/x86_64-linuxmusl/bg5pdflatex + bin/x86_64-linuxmusl/cef5conv + bin/x86_64-linuxmusl/cef5latex + bin/x86_64-linuxmusl/cef5pdflatex + bin/x86_64-linuxmusl/cefconv + bin/x86_64-linuxmusl/ceflatex + bin/x86_64-linuxmusl/cefpdflatex + bin/x86_64-linuxmusl/cefsconv + bin/x86_64-linuxmusl/cefslatex + bin/x86_64-linuxmusl/cefspdflatex + bin/x86_64-linuxmusl/extconv + bin/x86_64-linuxmusl/gbklatex + bin/x86_64-linuxmusl/gbkpdflatex + bin/x86_64-linuxmusl/hbf2gf + bin/x86_64-linuxmusl/sjisconv + bin/x86_64-linuxmusl/sjislatex + bin/x86_64-linuxmusl/sjispdflatex + +name cjkutils.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of cjkutils +containersize 52140 +containerchecksum b2f932f7e21b079edf82cf2148f4ce1e7d2da227836b980e4908ea817ca5b2b8b5acd93b52b161df570ba51b7df6ad17d6aaee9599075cdd2542ba66c45d7f79 +binfiles arch=x86_64-solaris size=57 + bin/x86_64-solaris/bg5+latex + bin/x86_64-solaris/bg5+pdflatex + bin/x86_64-solaris/bg5conv + bin/x86_64-solaris/bg5latex + bin/x86_64-solaris/bg5pdflatex + bin/x86_64-solaris/cef5conv + bin/x86_64-solaris/cef5latex + bin/x86_64-solaris/cef5pdflatex + bin/x86_64-solaris/cefconv + bin/x86_64-solaris/ceflatex + bin/x86_64-solaris/cefpdflatex + bin/x86_64-solaris/cefsconv + bin/x86_64-solaris/cefslatex + bin/x86_64-solaris/cefspdflatex + bin/x86_64-solaris/extconv + bin/x86_64-solaris/gbklatex + bin/x86_64-solaris/gbkpdflatex + bin/x86_64-solaris/hbf2gf + bin/x86_64-solaris/sjisconv + bin/x86_64-solaris/sjislatex + bin/x86_64-solaris/sjispdflatex + name classics category Package revision 29018 -shortdesc Cite classic works. +shortdesc Cite classic works relocated 1 longdesc The package provides a basic framework to cite classic works longdesc (specially from authors such as Homer, Plato, Aristotle, longdesc Descartes, Hume, and Kant) in accordance with traditional longdesc pagination systems. It may be used in conjunction with other longdesc citation packages. -runfiles size=1 - RELOC/tex/latex/classics/classics.sty +containersize 1868 +containerchecksum e92314a21577423aa48e718d044de1e2abd1c052f6f85139a5d20f99f670867bf448a52592ab267fa8fc88a96ef0edc23637573f16859843dd1e4b9a5dce489d +doccontainersize 209424 +doccontainerchecksum 353b486d22807305031d5b25e2a9d403da220f217d4dc7ee5b2d6c42e5127d004ad8eabf37d53f4933121961120ac476afa8ec3535498d1b5e4bee8c889fa53a docfiles size=55 - RELOC/doc/latex/classics/README - RELOC/doc/latex/classics/classics.pdf + RELOC/doc/latex/classics/README details="Readme" + RELOC/doc/latex/classics/classics.pdf details="Package documentation" RELOC/doc/latex/classics/classics.tex +runfiles size=1 + RELOC/tex/latex/classics/classics.sty catalogue-ctan /macros/latex/contrib/classics -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics humanities cite-supp catalogue-version 0.1 name classicthesis category Package -revision 38304 +revision 48041 shortdesc A "classically styled" thesis package relocated 1 -longdesc The classicthesis package provides an elegant layout designed -longdesc in homage to Bringhurst's "The Elements of Typographic Style". -longdesc It makes use of a range of techniques to get the best results -longdesc achievable using TeX. Included in the bundle are templates to -longdesc make thesis writing easier. -runfiles size=9 - RELOC/tex/latex/classicthesis/classicthesis.sty -docfiles size=205 +longdesc This package provides an elegant layout designed in homage to +longdesc Bringhurst's "The Elements of Typographic Style". It makes use +longdesc of a range of techniques to get the best results achievable +longdesc using TeX. Included in the bundle are templates to make thesis +longdesc writing easier. +containersize 8944 +containerchecksum 9a8c0c9ad0d97f187cf66679613514000324a72d2745c1026889b73e5981e0dcf36f388a0bf630f5ab35d28a39ae50ac842db28c214442ccfd987ff2c132ce7b +doccontainersize 521304 +doccontainerchecksum 3eb82d6c0f951a060e56c763e90ec842d1692326501f538d71780f4a0981edfda33b0ac0b5d00ccded7d3273fa69d4dd5d4a9c3557d9a69e1c3bc17375fbf43b +docfiles size=228 RELOC/doc/latex/classicthesis/AMiede_Publications.bib RELOC/doc/latex/classicthesis/Bibliography.bib RELOC/doc/latex/classicthesis/CHANGES @@ -28635,10 +49538,12 @@ docfiles size=205 RELOC/doc/latex/classicthesis/Chapters/Chapter02.tex RELOC/doc/latex/classicthesis/Chapters/Chapter03.tex RELOC/doc/latex/classicthesis/Chapters/Chapter0A.tex - RELOC/doc/latex/classicthesis/ClassicThesis.pdf + RELOC/doc/latex/classicthesis/ClassicThesis.pdf details="Package documentation" RELOC/doc/latex/classicthesis/ClassicThesis.tcp RELOC/doc/latex/classicthesis/ClassicThesis.tex RELOC/doc/latex/classicthesis/ClassicThesis.tps + RELOC/doc/latex/classicthesis/Examples/classicthesis-arsclassica-book.pdf + RELOC/doc/latex/classicthesis/Examples/classicthesis-arsclassica-book.tex RELOC/doc/latex/classicthesis/Examples/classicthesis-article.pdf RELOC/doc/latex/classicthesis/Examples/classicthesis-article.tex RELOC/doc/latex/classicthesis/Examples/classicthesis-book-xelatex.pdf @@ -28659,34 +49564,42 @@ docfiles size=205 RELOC/doc/latex/classicthesis/FrontBackmatter/Titleback.tex RELOC/doc/latex/classicthesis/FrontBackmatter/Titlepage.tex RELOC/doc/latex/classicthesis/LISTOFFILES - RELOC/doc/latex/classicthesis/README + RELOC/doc/latex/classicthesis/README details="Package README" RELOC/doc/latex/classicthesis/classicthesis-config.tex RELOC/doc/latex/classicthesis/gfx/TFZsuperellipse_bw.pdf RELOC/doc/latex/classicthesis/gfx/example_1.jpg RELOC/doc/latex/classicthesis/gfx/example_2.jpg RELOC/doc/latex/classicthesis/gfx/example_3.jpg RELOC/doc/latex/classicthesis/gfx/example_4.jpg +runfiles size=9 + RELOC/tex/latex/classicthesis/classicthesis-arsclassica.sty + RELOC/tex/latex/classicthesis/classicthesis.sty +catalogue-contact-bugs https://bitbucket.org/amiede/classicthesis/issues +catalogue-contact-home https://bitbucket.org/amiede/classicthesis/wiki/Home +catalogue-contact-repository https://bitbucket.org/amiede/classicthesis catalogue-ctan /macros/latex/contrib/classicthesis -catalogue-date 2015-09-06 15:59:03 +0200 -catalogue-license gpl2 +catalogue-date 2018-06-17 19:02:36 +0200 +catalogue-license gpl2+ catalogue-topics dissertation -catalogue-version 4.2 +catalogue-version 4.6 name classpack category Package revision 33101 -shortdesc XML mastering for LaTeX classes and packages. +shortdesc XML mastering for LaTeX classes and packages relocated 1 longdesc The package provides an experiment in using XML (specifically longdesc DocBook 5) to mark up and maintain LaTeX classes and packages. longdesc XSLT 2 styleheets generate the .dtx and .ins distribution files longdesc expected by end users. -runfiles size=1 - RELOC/tex/latex/classpack/classpack.sty +containersize 1340 +containerchecksum ac5e26d91107bb0166040c990e586b6504eccad7da3ec084a49b141a1e0fee2725939f10deef5af1c4fe89396bc8fdef86f3bd2e8de9099cbed9700867700e8a +doccontainersize 355320 +doccontainerchecksum 6a22b10f5630a52ba85d113ddab8dacae0ab8148f62d4f9958bf3619c2d88f9a1f3c9778e41773d7b9d392ddc4d6a30dc3cb995a24072cc60b446896ca48707c docfiles size=158 RELOC/doc/support/classpack/MANIFEST - RELOC/doc/support/classpack/README - RELOC/doc/support/classpack/classpack.pdf + RELOC/doc/support/classpack/README details="Readme" + RELOC/doc/support/classpack/classpack.pdf details="Package documentation" RELOC/doc/support/classpack/db2bibtex.xsl RELOC/doc/support/classpack/db2dtx.xsl RELOC/doc/support/classpack/db2plaintext.xsl @@ -28697,12 +49610,17 @@ docfiles size=158 RELOC/doc/support/classpack/prepost.xml RELOC/doc/support/classpack/readme.xml RELOC/doc/support/classpack/test.sh +srccontainersize 34876 +srccontainerchecksum 48762603b928b53cd9391908f2b0497e766ab516033a246aeeed014a99cd09a6e18f1feecd107067f58e3ecdad5ca37b4004890c4ec2e4bcce7e5f67e6d03724 srcfiles size=33 RELOC/source/support/classpack/classpack.dtx RELOC/source/support/classpack/classpack.ins +runfiles size=1 + RELOC/tex/latex/classpack/classpack.sty catalogue-ctan /support/classpack -catalogue-date 2014-03-06 12:57:31 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics class-supp catalogue-version 0.77 name cleanthesis @@ -28712,12 +49630,14 @@ shortdesc A clean LaTeX style for thesis documents relocated 1 longdesc The package offers a clean, simple, and elegant LaTeX style for longdesc thesis documents. -runfiles size=6 - RELOC/tex/latex/cleanthesis/cleanthesis.sty +containersize 6172 +containerchecksum f08a3d56f00e1627cb4ba4b7c242d10b2adfc1ec026dd2e15b09a851c7df895a804b53c28c7f78f4c880ab15728f8935f067a23044d95e221f164c5fb4cdbc3d +doccontainersize 808828 +doccontainerchecksum fd69963d55daeaf833bfe18242fb3f5843daf37d6bbd8fbb73b25792ab5578cf3e4a1e0361caad15f9433d399df085b3489e072a64c0be8f41cdcd8832f32dd8 docfiles size=465 RELOC/doc/latex/cleanthesis/CHANGELOG.md RELOC/doc/latex/cleanthesis/MANIFEST.md - RELOC/doc/latex/cleanthesis/README.md + RELOC/doc/latex/cleanthesis/README.md details="Readme" RELOC/doc/latex/cleanthesis/bib-refs.bib RELOC/doc/latex/cleanthesis/content/abstract.tex RELOC/doc/latex/cleanthesis/content/acknowledgement.tex @@ -28733,10 +49653,12 @@ docfiles size=465 RELOC/doc/latex/cleanthesis/doc/cleanthesis-doc.tex RELOC/doc/latex/cleanthesis/gfx/Clean-Thesis-Figure.pdf RELOC/doc/latex/cleanthesis/gfx/Clean-Thesis-Logo.pdf - RELOC/doc/latex/cleanthesis/thesis-example.pdf + RELOC/doc/latex/cleanthesis/thesis-example.pdf details="Sample document" RELOC/doc/latex/cleanthesis/thesis-example.tex +runfiles size=6 + RELOC/tex/latex/cleanthesis/cleanthesis.sty catalogue-ctan /macros/latex/contrib/cleanthesis -catalogue-date 2015-08-27 10:18:22 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 catalogue-topics dissertation catalogue-version 0.3.1 @@ -28744,7 +49666,7 @@ catalogue-version 0.3.1 name clearsans category Package revision 34405 -shortdesc Clear Sans fonts with LaTeX support. +shortdesc Clear Sans fonts with LaTeX support relocated 1 longdesc Clear Sans was designed by Daniel Ratighan at Monotype under longdesc the direction of the User Experience team at Intel's Open @@ -28758,6 +49680,16 @@ longdesc Sans comfortable for reading short UI labels and long passages longdesc in both screen and print. The fonts are available in both longdesc TrueType and Type 1 formats. execute addMap ClearSans.map +containersize 1323004 +containerchecksum 5f2b3bf0a523c6bbe2fcd5bc8cc7cf42834123d2de3299c46eb569981b368f14d2cf413be0e33001f4760eb9e5389c6e94f1c9b64f5393a926110a63aeb6a20a +doccontainersize 198484 +doccontainerchecksum de7d6b7ec5c6484b9597b35c3f4e25ffb37b237c92fa6aadfc33b213a2ade1355ae3a32f71b7dfd61cd0423cf0026b0cbcaeeaf2cd447f27fdbb181d86b3ff7d +docfiles size=58 + RELOC/doc/fonts/clearsans/LICENSE-2.0.txt + RELOC/doc/fonts/clearsans/README details="Readme" + RELOC/doc/fonts/clearsans/clear-samples.pdf details="Font samples" + RELOC/doc/fonts/clearsans/clear-samples.tex + RELOC/doc/fonts/clearsans/clearsans.png runfiles size=970 RELOC/fonts/enc/dvips/clearsans/clr_er7w2x.enc RELOC/fonts/enc/dvips/clearsans/clr_nrghxx.enc @@ -28873,20 +49805,15 @@ runfiles size=970 RELOC/tex/latex/clearsans/TS1ClearSans-LF.fd RELOC/tex/latex/clearsans/TS1ClearSansLight-LF.fd RELOC/tex/latex/clearsans/TS1ClearSansThin-LF.fd -docfiles size=58 - RELOC/doc/fonts/clearsans/LICENSE-2.0.txt - RELOC/doc/fonts/clearsans/README - RELOC/doc/fonts/clearsans/clear-samples.pdf - RELOC/doc/fonts/clearsans/clear-samples.tex - RELOC/doc/fonts/clearsans/clearsans.png catalogue-ctan /fonts/clearsans -catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license apache2 +catalogue-topics font-sans font-type1 font-ttf name clefval category Package revision 16549 -shortdesc Key/value support with a hash. +shortdesc Key/value support with a hash relocated 1 longdesc This package provides only two macros viz. \TheKey and longdesc \TheValue to define then use pairs of key/value and gives a @@ -28895,32 +49822,39 @@ longdesc value associated to the key, does not produce text; longdesc \TheValue{key} to return the value linked to the key. Both longdesc arguments of \TheKey are 'moving' as LaTeX defines the term and longdesc we have sometimes to protect them. -runfiles size=1 - RELOC/tex/latex/clefval/clefval.sty +containersize 1572 +containerchecksum 8bd7457b6f8144982781b029500db910fff387f3872d09039a2929c5e62dd7dea56e22cbc40036519cbb2060ba62bcc7d621dfd383493420a88699660a796e03 +doccontainersize 318292 +doccontainerchecksum 5789c53aed9c4bbe92e8c36f115cf63e07c7e7c35c26d62ba2be41eff8408c8e60f619f565cec1fc0e1ed55f2c571ee6f8115ffc2e88d9917fff085d19731694 docfiles size=96 RELOC/doc/latex/clefval/Changements RELOC/doc/latex/clefval/Changes RELOC/doc/latex/clefval/LISEZMOI - RELOC/doc/latex/clefval/README - RELOC/doc/latex/clefval/clefval.pdf - RELOC/doc/latex/clefval/example.pdf + RELOC/doc/latex/clefval/README details="Package README" + RELOC/doc/latex/clefval/clefval.pdf details="Package documentation" + RELOC/doc/latex/clefval/example.pdf details="Package example of use (English)" RELOC/doc/latex/clefval/example.tex - RELOC/doc/latex/clefval/exemple.pdf + RELOC/doc/latex/clefval/exemple.pdf details="Package examples of use (French)" language="fr" RELOC/doc/latex/clefval/exemple.tex +srccontainersize 8228 +srccontainerchecksum 119c560be9538b97bdd4366e8ef59b394aac864e54554388c98b7e5ef62fbbc0f13c4263f012fa6842081a97433caa318bc2eac6aa10c4b8a8f433ddb3f02090 srcfiles size=9 RELOC/source/latex/clefval/Makefile RELOC/source/latex/clefval/clefval.dtx RELOC/source/latex/clefval/clefval.ins RELOC/source/latex/clefval/fra-clefval.ins +runfiles size=1 + RELOC/tex/latex/clefval/clefval.sty catalogue-ctan /macros/latex/contrib/clefval -catalogue-date 2012-06-22 12:24:33 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics keyval catalogue-version 0 name cleveref category Package -revision 32513 -shortdesc Intelligent cross-referencing. +revision 47525 +shortdesc Intelligent cross-referencing relocated 1 longdesc The package enhances LaTeX's cross-referencing features, longdesc allowing the format of references to be determined @@ -28933,116 +49867,155 @@ longdesc also offers a means of referencing a list of references, each longdesc formatted according to its type. In such lists, it can collapse longdesc sequences of numerically-consecutive labels to a reference longdesc range. -runfiles size=83 - RELOC/tex/latex/cleveref/cleveref.sty -docfiles size=95 - RELOC/doc/latex/cleveref/README - RELOC/doc/latex/cleveref/cleveref.pdf +containersize 28484 +containerchecksum 669e122c22c55c1fe95353533a2c35adcd161080ab2e4f3120dab2286b60df316f4de792e9a6fe5b971d622bc2b087061836a3c0aebaf0bc5df17c854f64990b +doccontainersize 386944 +doccontainerchecksum 3885fe13cd51967620f1e48a25a82c2a4916b07ee45c963dfe9ea933a920f347512cf5c30f29ccef9c49c3862df4c9176fe0fa57b1043d3ac230b7cd8b3f8d78 +docfiles size=110 + RELOC/doc/latex/cleveref/README details="Readme" + RELOC/doc/latex/cleveref/cleveref.pdf details="Package documentation" +srccontainersize 77476 +srccontainerchecksum 71a49c96a943dc152cc1621e9e0ce1d0fe62762fa51f670ecd4a0e5a3613ccc52d41db355cfb0c31fc81867bdc07c26acd3e9ad74e0209459a099be823df2308 srcfiles size=140 RELOC/source/latex/cleveref/cleveref.dtx RELOC/source/latex/cleveref/cleveref.ins +runfiles size=81 + RELOC/tex/latex/cleveref/cleveref.sty +catalogue-contact-home http://www.dr-qubit.org/cleveref.html catalogue-ctan /macros/latex/contrib/cleveref -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.19 +catalogue-date 2018-04-19 15:40:06 +0200 +catalogue-license lppl1.2 +catalogue-topics label-ref +catalogue-version 0.21.4 name clipboard category Package -revision 28876 -shortdesc Copy and paste into and across documents. +revision 47747 +shortdesc Copy and paste into and across documents relocated 1 longdesc The clipboard package provides a basic framework for copying longdesc and pasting text and commands into and across multiple longdesc documents. It replaces the copypaste package. +containersize 1028 +containerchecksum 19aed32c2dc229852133a44fe5ed692a0d3194d374cc77e2301314b3fff929b834fd4df82e811095049e64ba127180eddb77fcc4211aecd2db40e8124a38d55c +doccontainersize 161528 +doccontainerchecksum 50e7447b35c1d73c1d36bab165a8bb476764ffcc4ed7994e1bc63c6759baad0dd6c2c1f6a95334c7bf649dd13c8e79d17ec536120f1112d621e833b6f9f80578 +docfiles size=44 + RELOC/doc/latex/clipboard/README details="Readme" + RELOC/doc/latex/clipboard/clipboard.pdf details="Package documentation" + RELOC/doc/latex/clipboard/clipboard.tex runfiles size=1 RELOC/tex/latex/clipboard/clipboard.sty -docfiles size=14 - RELOC/doc/latex/clipboard/README - RELOC/doc/latex/clipboard/clipboard.pdf - RELOC/doc/latex/clipboard/clipboard.tex catalogue-ctan /macros/latex/contrib/clipboard -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-05-18 08:42:31 +0200 catalogue-license lppl1.3 -catalogue-version 0.2 +catalogue-topics quotation-imp +catalogue-version 0.3 name clock category Package revision 15878 -shortdesc Graphical and textual clocks for TeX and LaTeX. +shortdesc Graphical and textual clocks for TeX and LaTeX relocated 1 longdesc Features graphical clocks (with a classical 12h dial and two longdesc hands) and text clocks (in 24h format) which can show system longdesc time or any time the user desires. Works with both TeX and longdesc LaTeX. The clock faces (appearances of the dial) are easily longdesc expandable; the default uses a custom Metafont font. -runfiles size=4 - RELOC/fonts/source/public/clock/clock.mf - RELOC/fonts/tfm/public/clock/clock.tfm - RELOC/tex/latex/clock/clock.sty - RELOC/tex/latex/clock/clock.tex +containersize 2712 +containerchecksum ba378fe241cd2e51b641f0edc4bdd1403477b392e0a22363bcf540b513c1c15b1c0e3ab37020aa77ec147ce59cc7ad6f09c86cadcc0a77892a1a798c36c411aa +doccontainersize 68320 +doccontainerchecksum d06e263266ab91b48ae3238af6ce283c7f720c2113d95d10c7de6026b4557b0fcb22aaec44caba2f7ad743e578e9840da1b116fd3372558d545c424159d8f2e5 docfiles size=35 RELOC/doc/latex/clock/COPYING RELOC/doc/latex/clock/EMTEX RELOC/doc/latex/clock/HISTORY RELOC/doc/latex/clock/INSTALL RELOC/doc/latex/clock/MIKTEX - RELOC/doc/latex/clock/README + RELOC/doc/latex/clock/README details="Readme" RELOC/doc/latex/clock/clockdoc.pdf RELOC/doc/latex/clock/clockdoc.tex +runfiles size=4 + RELOC/fonts/source/public/clock/clock.mf + RELOC/fonts/tfm/public/clock/clock.tfm + RELOC/tex/latex/clock/clock.sty + RELOC/tex/latex/clock/clock.tex catalogue-ctan /macros/latex/contrib/clock -catalogue-date 2012-06-25 23:32:47 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics date-time name cloze category Package -revision 37811 -shortdesc A LuaLaTeX package for creating cloze texts. +revision 41531 +shortdesc A LuaLaTeX package for creating cloze texts relocated 1 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: \cloze, \clozefix, -longdesc \closefil, and \closepar. -runfiles size=4 - RELOC/scripts/cloze/cloze.lua - RELOC/tex/lualatex/cloze/cloze.sty -docfiles size=44 - RELOC/doc/lualatex/cloze/README +longdesc and one environment to generate cloze texts: the commands +longdesc \cloze, \clozefix, \clozefil, and the environment clozepar. +containersize 4276 +containerchecksum e66b5d9086d3d6ac39c0664cc4906b467413b919a64538371077bbd9088d80ea81276ce66a64ba29040068b9b73ec5990a7d4422608ce85b0d94e8b2ee3bdce2 +doccontainersize 222748 +doccontainerchecksum c21e8561c296efaa8b4c30044f6121736d58a98d910bf671d11f1931d29ddd0d626bca69ab6f50225a3cb588346877b76ec43426822a869e72e266ee5d65cd5e +docfiles size=60 + RELOC/doc/lualatex/cloze/README details="Readme" RELOC/doc/lualatex/cloze/README.md - RELOC/doc/lualatex/cloze/cloze.pdf -srcfiles size=16 + RELOC/doc/lualatex/cloze/cloze.pdf details="Package documentation" +srccontainersize 15292 +srccontainerchecksum fe68d18164ef34259dcc42c4ec395b929c92d3758a8c9e911c2f20a136c2807ed229612db1efa6cb02704eac6924b9ac8b98742a546e271241013245d855e50a +srcfiles size=17 RELOC/source/lualatex/cloze/cloze.dtx RELOC/source/lualatex/cloze/cloze.ins +runfiles size=5 + RELOC/scripts/cloze/cloze.lua + RELOC/tex/lualatex/cloze/cloze.sty +catalogue-contact-repository https://github.com/Josef-Friedrich/cloze catalogue-ctan /macros/luatex/latex/cloze -catalogue-date 2015-07-08 19:30:11 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 catalogue-topics exam luatex -catalogue-version 1.0 +catalogue-version 1.2 -name clrscode3e -category Package -revision 34887 -shortdesc Typesets pseudocode as in Introduction to Algorithms. -relocated 1 -longdesc This package allows you to typeset pseudocode in the style of -longdesc Introduction to Algorithms, Third edition, by Cormen, -longdesc Leiserson, Rivest, and Stein. The package was written by the -longdesc authors. Use the commands the same way the package's author did -longdesc when writing the book, and your output will look just like the -longdesc pseudocode in the text. -runfiles size=4 - RELOC/tex/latex/clrscode3e/clrscode3e.sty -docfiles size=2 - RELOC/doc/latex/clrscode3e/README - RELOC/doc/latex/clrscode3e/README.TEXLIVE -catalogue-ctan /macros/latex/contrib/clrscode3e -catalogue-date 2014-08-20 08:37:40 +0200 -catalogue-license lppl +name clrdblpg +category Package +revision 47511 +shortdesc Control pagestyle of pages left blank by \cleardoublepage +relocated 1 +longdesc This tiny package allows easy manipulation of the headers and +longdesc footers on pages left blank by \cleardoublepage. By default, +longdesc LaTeX has no easy facilities for this. This package uses more +longdesc or less the algorithm listed in the fancyhdr package +longdesc documentation, with some better indentation and added +longdesc flexibility. +containersize 1256 +containerchecksum bdd3de3ea16cb5d24879bcf2255bbe01612f8af70f663b9ac578a4ac98910119ea96b8a5b4a59d25c0406c1b33786997ee2940da0273b025455e334b48f17b7d +doccontainersize 289968 +doccontainerchecksum 53ba8c83224ee6573cd1549e7e425fd524b5caf65ab139b67e7de9b32bdd5c3c87f5af63c2c43696554fcc33c8bff4690373ad25582b23bf51134b9cb6301409 +docfiles size=76 + RELOC/doc/latex/clrdblpg/CHANGES + RELOC/doc/latex/clrdblpg/README details="Readme" + RELOC/doc/latex/clrdblpg/clrdblpg.pdf details="Package documentation" + RELOC/doc/latex/clrdblpg/lppl.txt +srccontainersize 2740 +srccontainerchecksum 8663b5fa032e10cd77f4f526d30fd16302fd31c1e5ee268d815de3d4b9aee9fe6688e5c94ba50f5d0cb2bb11c03198401bb1a3bd03c431dece50dab65ae3d638 +srcfiles size=3 + RELOC/source/latex/clrdblpg/clrdblpg.dtx + RELOC/source/latex/clrdblpg/clrdblpg.ins +runfiles size=1 + RELOC/tex/latex/clrdblpg/clrdblpg.sty +catalogue-also fancyhdr +catalogue-ctan /macros/latex/contrib/clrdblpg +catalogue-date 2018-05-07 04:39:01 +0200 +catalogue-license lppl1.3 +catalogue-topics page-hf +catalogue-version 1.0 name clrscode category Package -revision 15878 -shortdesc Typesets pseudocode as in Introduction to Algorithms. +revision 51136 +shortdesc Typesets pseudocode as in Introduction to Algorithms relocated 1 longdesc This package allows you to typeset pseudocode in the style of longdesc Introduction to Algorithms, Second edition, by Cormen, @@ -29050,1173 +50023,575 @@ longdesc Leiserson, Rivest, and Stein. The package was written by the longdesc authors. You use the commands the same way the package's author longdesc did when writing the book, and your output will look just like longdesc the pseudocode in the text. +containersize 4520 +containerchecksum c26ac99b2f097b3b9df8bcb3ae040da959c0bd238be75a50b3711cdf0b7b0024ef40749169c0fe0437aa8c845b3ee9c9ec4ab46fe31fe6b1e28019fcd4779076 +doccontainersize 40052 +doccontainerchecksum b74c858703577f79c89b4e95a0fef2012a756defda525c25f2945952b6637fba7ae4c30791a5d566267a16627bf7ce991c4edf726f7106b27b2df3c2b81eb765 +docfiles size=19 + RELOC/doc/latex/clrscode/README + RELOC/doc/latex/clrscode/clrscode.pdf details="Package documentation" + RELOC/doc/latex/clrscode/clrscode.tex + RELOC/doc/latex/clrscode/page.tex runfiles size=3 RELOC/tex/latex/clrscode/clrscode.sty -docfiles size=11 - RELOC/doc/latex/clrscode/README - RELOC/doc/latex/clrscode/clrscode.pdf +catalogue-also newalg clrscode3e catalogue-ctan /macros/latex/contrib/clrscode -catalogue-date 2014-08-09 06:03:31 +0200 +catalogue-date 2019-05-15 17:29:17 +0200 catalogue-license lppl +catalogue-topics pseudocode catalogue-version 1.7 -name cmap +name clrscode3e category Package -revision 31477 -shortdesc Make PDF files searchable and copyable. +revision 51137 +shortdesc Typesets pseudocode as in Introduction to Algorithms relocated 1 -longdesc The cmap package provides character map tables, which make PDF -longdesc files generated by pdfLaTeX both searchable and copy-able in -longdesc acrobat reader and other compliant PDF viewers. Encodings -longdesc supported are OT1, T1, T2A, T2B, T2C and T5, together with LAE -longdesc (Arabic), LFE (Farsi) and LGR (Greek) and a variant OT1tt for -longdesc cmtt-like fonts. The package's main limitation currently is the -longdesc inability to work with virtual fonts, because of limitations of -longdesc pdfTeX. This restriction may be resolved in a future version of -longdesc pdfTeX. -runfiles size=12 - RELOC/tex/latex/cmap/cmap.sty - RELOC/tex/latex/cmap/lae.cmap - RELOC/tex/latex/cmap/lfe.cmap - RELOC/tex/latex/cmap/lgr.cmap - RELOC/tex/latex/cmap/ot1.cmap - RELOC/tex/latex/cmap/ot1tt.cmap - RELOC/tex/latex/cmap/ot6.cmap - RELOC/tex/latex/cmap/t1.cmap - RELOC/tex/latex/cmap/t2a.cmap - RELOC/tex/latex/cmap/t2b.cmap - RELOC/tex/latex/cmap/t2c.cmap - RELOC/tex/latex/cmap/t5.cmap -docfiles size=2 - RELOC/doc/latex/cmap/README -catalogue-ctan /macros/latex/contrib/cmap -catalogue-date 2012-11-14 17:49:35 +0100 +longdesc This package allows you to typeset pseudocode in the style of +longdesc Introduction to Algorithms, Third edition, by Cormen, +longdesc Leiserson, Rivest, and Stein. The package was written by the +longdesc authors. Use the commands the same way the package's author did +longdesc when writing the book, and your output will look just like the +longdesc pseudocode in the text. +containersize 5348 +containerchecksum eb609d4204f9292b387fb8ecac13eaaad77e1d32870cd29f4996771acc5f8e82560e3fb9dcd2c8284888ed55d2b7bfbf931b50e01b0e4b8790c2ce5ce4445588 +doccontainersize 79592 +doccontainerchecksum 0792d458ee46b44d37c31a5bbeaad2257ae1aca818ce33d0b1c8ae96b7e90ea6e06e9036ce61063f232c3829ec36bcef58f111b5df0b25d209e867ac53d322d1 +docfiles size=31 + RELOC/doc/latex/clrscode3e/README details="Readme" + RELOC/doc/latex/clrscode3e/clrscode3e.pdf details="Package documentation" + RELOC/doc/latex/clrscode3e/clrscode3e.tex + RELOC/doc/latex/clrscode3e/page.tex +runfiles size=4 + RELOC/tex/latex/clrscode3e/clrscode3e.sty +catalogue-also newalg clrscode +catalogue-ctan /macros/latex/contrib/clrscode3e +catalogue-date 2019-05-15 17:42:59 +0200 catalogue-license lppl -catalogue-version 1.0h +catalogue-topics pseudocode -name cmarrows +name clrstrip category Package -revision 24378 -shortdesc MetaPost arrows and braces in the Computer Modern style. +revision 49570 +shortdesc Place contents into a full width colour strip relocated 1 -longdesc This MetaPost package contains macros to draw arrows and braces -longdesc in the Computer Modern style. -runfiles size=59 - RELOC/metapost/cmarrows/cmarrows.mp - RELOC/metapost/cmarrows/rgbx0009.mp - RELOC/metapost/cmarrows/rgbx0016.mp - RELOC/metapost/cmarrows/rgbx0020.mp - RELOC/metapost/cmarrows/rgbx0025.mp - RELOC/metapost/cmarrows/sgbx0008.mp - RELOC/metapost/cmarrows/sgbx0010.mp - RELOC/metapost/cmarrows/sgbx0011.mp - RELOC/metapost/cmarrows/sgbx0012.mp - RELOC/metapost/cmarrows/sgbx0013.mp - RELOC/metapost/cmarrows/sgbx0014.mp - RELOC/metapost/cmarrows/sgbx0015.mp - RELOC/metapost/cmarrows/sgbx0017.mp - RELOC/metapost/cmarrows/sgbx0018.mp - RELOC/metapost/cmarrows/sgbx0019.mp - RELOC/metapost/cmarrows/sgbx0021.mp - RELOC/metapost/cmarrows/sgbx0022.mp - RELOC/metapost/cmarrows/sgbx0023.mp - RELOC/metapost/cmarrows/sgbx0024.mp - RELOC/metapost/cmarrows/tgbx0000.mp - RELOC/metapost/cmarrows/tgbx0001.mp - RELOC/metapost/cmarrows/tgbx0002.mp - RELOC/metapost/cmarrows/tgbx0003.mp - RELOC/metapost/cmarrows/tgbx0004.mp - RELOC/metapost/cmarrows/tgbx0005.mp - RELOC/metapost/cmarrows/tgbx0006.mp - RELOC/metapost/cmarrows/tgbx0007.mp - RELOC/metapost/cmarrows/tgbx0027.mp -docfiles size=14 - RELOC/doc/metapost/cmarrows/README - RELOC/doc/metapost/cmarrows/cmarrows.pdf -catalogue-ctan /graphics/metapost/contrib/macros/cmarrows -catalogue-date 2012-06-25 23:32:47 +0200 -catalogue-license lppl -catalogue-version v0.9 +longdesc This lightweight package provides the colorstrip environment, +longdesc that places its contents into a full page width colour strip. +containersize 1616 +containerchecksum f5ab46df63900b82ccc03e8adc5dec3eaf09bbf5f28f354da0446bf9b06e459b2aebfddb96d53895ccae9bd62f73315807f59ccafa4cc5593665283f7c118081 +doccontainersize 389848 +doccontainerchecksum 2bf85a9aaffb796a0f123be6a07782c4d44e61433637942ce94eb06db8209c76be5d3ae467100e3df1faeb65cebf308dd100d4f6e93e996e201891c203c4775c +docfiles size=96 + RELOC/doc/latex/clrstrip/README.md details="Readme" + RELOC/doc/latex/clrstrip/clrstrip.pdf details="Package documentation" +srccontainersize 4188 +srccontainerchecksum d59fd5917884a0b4032ef5341e5925f5fdd36c2057eff9b7a9334b1f53e77c698f243736ad1ad67bf93ef318f412c7048c45516563c945fcadefe002cb7f9c2a +srcfiles size=4 + RELOC/source/latex/clrstrip/clrstrip.dtx +runfiles size=1 + RELOC/tex/latex/clrstrip/clrstrip.sty +catalogue-also tcolorbox +catalogue-contact-repository https://github.com/Skillmon/ltx_clrstrip +catalogue-ctan /macros/latex/contrib/clrstrip +catalogue-date 2018-12-31 21:41:42 +0100 +catalogue-license lppl1.3c +catalogue-topics colour -name cmbright +name cluttex +category Package +revision 50913 +shortdesc An automation tool for running LaTeX +longdesc This is another tool for the automation of LaTeX document +longdesc processing, like latexmk or arara. The main feature of this +longdesc tool is that it does not clutter your working directory with +longdesc .aux or .log or other auxiliary files. It has of course the +longdesc usual features of automation tools: It automatically re-runs +longdesc (La)TeX for cross-references. MakeIndex, BibTeX, Biber, or +longdesc makeglossaries will be executed if a corresponding option is +longdesc set. Furthermore, cluttex can watch input files for changes +longdesc (using an external program). +depend cluttex.ARCH +containersize 19212 +containerchecksum 8363e6529dae0ec0b81c20180160bb1f794568520d68cd30f2287a6a5a4a22ddfb351ca0ede17c725ebac833d686f978e685921f6b8ac90316727d05b70801e8 +doccontainersize 646692 +doccontainerchecksum 5d49da59c17079981b59d820f60b658e36be0d3c1e57a29551ecdc3ec5d5948b0ee7b29c9a1eee44767cd858169e36b5e66a752359bf6fcb2a0c0e28ca15584f +docfiles size=262 + texmf-dist/doc/support/cluttex/CHANGELOG.md + texmf-dist/doc/support/cluttex/COPYING + texmf-dist/doc/support/cluttex/Makefile + texmf-dist/doc/support/cluttex/README.md details="Readme" + texmf-dist/doc/support/cluttex/bin/cluttex.bat + texmf-dist/doc/support/cluttex/build.lua + texmf-dist/doc/support/cluttex/checkglobal.lua + texmf-dist/doc/support/cluttex/doc/Makefile + texmf-dist/doc/support/cluttex/doc/manual-ja.pdf details="Package documentation" language="ja" + texmf-dist/doc/support/cluttex/doc/manual-ja.tex + texmf-dist/doc/support/cluttex/doc/manual.pdf details="Package documentation" language="en" + texmf-dist/doc/support/cluttex/doc/manual.tex + texmf-dist/doc/support/cluttex/example/README.md details="Readme" + texmf-dist/doc/support/cluttex/example/biblatex/foo.bib + texmf-dist/doc/support/cluttex/example/biblatex/main.tex + texmf-dist/doc/support/cluttex/example/biblatex/sub.tex + texmf-dist/doc/support/cluttex/example/bibtex/baz.bib + texmf-dist/doc/support/cluttex/example/bibtex/foo.bib + texmf-dist/doc/support/cluttex/example/bibtex/main.tex + texmf-dist/doc/support/cluttex/example/bibtex/sub.tex + texmf-dist/doc/support/cluttex/example/empty/main.tex + texmf-dist/doc/support/cluttex/example/epstopdf/drawing.eps + texmf-dist/doc/support/cluttex/example/epstopdf/fig/drawing2.eps + texmf-dist/doc/support/cluttex/example/epstopdf/main.tex + texmf-dist/doc/support/cluttex/example/include/main.tex + texmf-dist/doc/support/cluttex/example/include/path/to/file.tex + texmf-dist/doc/support/cluttex/example/include/sub.tex + texmf-dist/doc/support/cluttex/example/include/sub2.tex + texmf-dist/doc/support/cluttex/example/makeindex/main.tex + texmf-dist/doc/support/cluttex/example/minted/file.lua + texmf-dist/doc/support/cluttex/example/minted/main.tex + texmf-dist/doc/support/cluttex/example/simple-ja/main-luatexja.tex + texmf-dist/doc/support/cluttex/example/simple-ja/main-platex.tex + texmf-dist/doc/support/cluttex/example/simple/main.tex + texmf-dist/doc/support/cluttex/src/cluttex.lua + texmf-dist/doc/support/cluttex/src/texrunner/auxfile.lua + texmf-dist/doc/support/cluttex/src/texrunner/fsutil.lua + texmf-dist/doc/support/cluttex/src/texrunner/fswatcher_windows.lua + texmf-dist/doc/support/cluttex/src/texrunner/handleoption.lua + texmf-dist/doc/support/cluttex/src/texrunner/isatty.lua + texmf-dist/doc/support/cluttex/src/texrunner/luatexinit.lua + texmf-dist/doc/support/cluttex/src/texrunner/message.lua + texmf-dist/doc/support/cluttex/src/texrunner/option.lua + texmf-dist/doc/support/cluttex/src/texrunner/pathutil.lua + texmf-dist/doc/support/cluttex/src/texrunner/pathutil_unix.lua + texmf-dist/doc/support/cluttex/src/texrunner/pathutil_windows.lua + texmf-dist/doc/support/cluttex/src/texrunner/recovery.lua + texmf-dist/doc/support/cluttex/src/texrunner/reruncheck.lua + texmf-dist/doc/support/cluttex/src/texrunner/shellutil.lua + texmf-dist/doc/support/cluttex/src/texrunner/shellutil_unix.lua + texmf-dist/doc/support/cluttex/src/texrunner/shellutil_windows.lua + texmf-dist/doc/support/cluttex/src/texrunner/tex_engine.lua +runfiles size=25 + texmf-dist/scripts/cluttex/cluttex.lua +catalogue-contact-bugs https://github.com/minoki/cluttex/issues +catalogue-contact-repository https://github.com/minoki/cluttex +catalogue-ctan /support/cluttex +catalogue-date 2019-04-30 13:31:17 +0200 +catalogue-license gpl3 +catalogue-topics compilation use-lua +catalogue-version 0.3 + +name cluttex.aarch64-linux +category Package +revision 48871 +shortdesc aarch64-linux files of cluttex +containersize 388 +containerchecksum ec0e89696c8e99798a8fa54995c2420440577c2564867f3e6ad37e7501aa932a1ed94e2e88821fd74f4773a89c5caae6ea58bbcc12a45e665d2e9e3afa552318 +binfiles arch=aarch64-linux size=3 + bin/aarch64-linux/cllualatex + bin/aarch64-linux/cluttex + bin/aarch64-linux/clxelatex + +name cluttex.amd64-freebsd +category Package +revision 48871 +shortdesc amd64-freebsd files of cluttex +containersize 388 +containerchecksum fe148484416b1b66bafa8c8be8ffb4808387ed5f7139fa4d2b1ab5bbc1de51ede1a22b6c3378364f86498ea5cf1ae05a8654c5f623abfdde5fc9d236cca0f563 +binfiles arch=amd64-freebsd size=3 + bin/amd64-freebsd/cllualatex + bin/amd64-freebsd/cluttex + bin/amd64-freebsd/clxelatex + +name cluttex.amd64-netbsd +category Package +revision 48871 +shortdesc amd64-netbsd files of cluttex +containersize 388 +containerchecksum c19e112122da5207c35d4329a9cf0b4ce52843df9b141c98148c3575a505d03a52ff217e17093d333cde877e88a26b50b47fc4fa1fc511120d3093cf84683e20 +binfiles arch=amd64-netbsd size=3 + bin/amd64-netbsd/cllualatex + bin/amd64-netbsd/cluttex + bin/amd64-netbsd/clxelatex + +name cluttex.armhf-linux +category Package +revision 48871 +shortdesc armhf-linux files of cluttex +containersize 388 +containerchecksum b31b9ae855141985b48a968e19b7d2310bec509c61dfd9072fd8e6f85d946320c0304155cf74524ef3428d0ba94e3894d06b85cb56519a250c9f14e462fe5ed7 +binfiles arch=armhf-linux size=3 + bin/armhf-linux/cllualatex + bin/armhf-linux/cluttex + bin/armhf-linux/clxelatex + +name cluttex.i386-cygwin +category Package +revision 48871 +shortdesc i386-cygwin files of cluttex +containersize 384 +containerchecksum 6b9b69cec90932dc3abe7315342a068b6f037764f8cedfe54a2eb2226331c334e060afb63baf6a1d43003ced1faa524ce238c4b5304d487ecbbe329982ff532d +binfiles arch=i386-cygwin size=3 + bin/i386-cygwin/cllualatex + bin/i386-cygwin/cluttex + bin/i386-cygwin/clxelatex + +name cluttex.i386-freebsd +category Package +revision 48871 +shortdesc i386-freebsd files of cluttex +containersize 388 +containerchecksum f6d4f59938e7c5b67b6d8b16a8d224a559869e7e09cc3cdf326d23f5158501de400f7b919a6e2fa5db3b0c017821cea48fb427bcc9a0efdb2a47d781e2e1d2a0 +binfiles arch=i386-freebsd size=3 + bin/i386-freebsd/cllualatex + bin/i386-freebsd/cluttex + bin/i386-freebsd/clxelatex + +name cluttex.i386-linux +category Package +revision 48871 +shortdesc i386-linux files of cluttex +containersize 384 +containerchecksum 822fd929b4f8259793149adccc3121153282459b61f767b90ff98ad003e293879319ad6b4edcbe52ef1fcc4d19e33dff13a6dd508323e9f534ccd96fc7732888 +binfiles arch=i386-linux size=3 + bin/i386-linux/cllualatex + bin/i386-linux/cluttex + bin/i386-linux/clxelatex + +name cluttex.i386-netbsd +category Package +revision 48871 +shortdesc i386-netbsd files of cluttex +containersize 388 +containerchecksum e5efac55cfc6f4dcc51b37d1912d0776a1e1f5e7e2b9d94b4f7d5719577f78566cc288402e91551978d122a032879e2abc1a702d254af70fda14e04fe3f66dae +binfiles arch=i386-netbsd size=3 + bin/i386-netbsd/cllualatex + bin/i386-netbsd/cluttex + bin/i386-netbsd/clxelatex + +name cluttex.i386-solaris +category Package +revision 48871 +shortdesc i386-solaris files of cluttex +containersize 388 +containerchecksum 3e31342fadb8b4d9dae7ad4d96fdc96f5a212f5c4dcdbb9fa8bf4b92677fde85fecbdd6632e87391f5ea956ec038ea1ae652dcb0f61bf3e6bcf28076b2f4a7b7 +binfiles arch=i386-solaris size=3 + bin/i386-solaris/cllualatex + bin/i386-solaris/cluttex + bin/i386-solaris/clxelatex + +name cluttex.win32 +category Package +revision 48876 +shortdesc win32 files of cluttex +containersize 716 +containerchecksum 765a92a84529d9ae5c0dd3fc27ae4314dac490f61c1073c7b6848876395aef860c5e97c22b6bd8cd9c43aeccb5201f967886cc0544c72f76d2c5b5cc9130de77 +binfiles arch=win32 size=3 + bin/win32/cllualatex.exe + bin/win32/cluttex.exe + bin/win32/clxelatex.exe + +name cluttex.x86_64-cygwin +category Package +revision 48871 +shortdesc x86_64-cygwin files of cluttex +containersize 388 +containerchecksum 9df9fa61fb0cc2520ebd7899e202f806af91ef0b0489f1c3af38f09f48dcf218ddb574e524744879b330242667a064c178e057adaad21948414fdf3de6fa1cb6 +binfiles arch=x86_64-cygwin size=3 + bin/x86_64-cygwin/cllualatex + bin/x86_64-cygwin/cluttex + bin/x86_64-cygwin/clxelatex + +name cluttex.x86_64-darwin +category Package +revision 48871 +shortdesc x86_64-darwin files of cluttex +containersize 388 +containerchecksum 4547e8727b98e99bf773046d08b901c06bf8a45a9ae5f70455014cd03f75e80d4ed15fe5dcef1f9a4726768a22f5492945e1d1c1c09ce0644c55faa771495a61 +binfiles arch=x86_64-darwin size=3 + bin/x86_64-darwin/cllualatex + bin/x86_64-darwin/cluttex + bin/x86_64-darwin/clxelatex + +name cluttex.x86_64-darwinlegacy +category Package +revision 48871 +shortdesc x86_64-darwinlegacy files of cluttex +containersize 396 +containerchecksum 2c94c28a38f4be4cdb828dd200c7be2597676fb2be94441b9da2d2dfa4ddf473f3759f59bdf24ad47bd60dfec71ce64eb4cb7832d3687fc2634a6e17b1b9becd +binfiles arch=x86_64-darwinlegacy size=3 + bin/x86_64-darwinlegacy/cllualatex + bin/x86_64-darwinlegacy/cluttex + bin/x86_64-darwinlegacy/clxelatex + +name cluttex.x86_64-linux +category Package +revision 48871 +shortdesc x86_64-linux files of cluttex +containersize 388 +containerchecksum 20139142ae86d9562bff4af2c3dcecc2dfc4dec8d228a6872502634ac4e1f931d28e37ba0035e169ec4fa838ab34a62efcc291c1e0e7ab2b3ffb49b0797979af +binfiles arch=x86_64-linux size=3 + bin/x86_64-linux/cllualatex + bin/x86_64-linux/cluttex + bin/x86_64-linux/clxelatex + +name cluttex.x86_64-linuxmusl +category Package +revision 48871 +shortdesc x86_64-linuxmusl files of cluttex +containersize 392 +containerchecksum 43b7e0c8ce544830fb3f960a4a0d80e2514c99b3c4e7736b22d56cd68f989c86a85507d46c75189f78db72c83fc7dbecab3ed7fbcfcbe28d8f40667d7946cd08 +binfiles arch=x86_64-linuxmusl size=3 + bin/x86_64-linuxmusl/cllualatex + bin/x86_64-linuxmusl/cluttex + bin/x86_64-linuxmusl/clxelatex + +name cluttex.x86_64-solaris +category Package +revision 48871 +shortdesc x86_64-solaris files of cluttex +containersize 388 +containerchecksum 87ed84aa5552f7915e5eb721b41664f0d032890edbe3739961a8f2f20e2a233dfb4d765edf60ba033fbb5a9144357d7536bd9c9e7190f0b4b516868482c71290 +binfiles arch=x86_64-solaris size=3 + bin/x86_64-solaris/cllualatex + bin/x86_64-solaris/cluttex + bin/x86_64-solaris/clxelatex + +name cm category Package -revision 21107 -shortdesc Computer Modern Bright fonts. +revision 49028 +shortdesc Computer Modern fonts relocated 1 -longdesc A family of sans serif fonts for TeX and LaTeX, based on Donald -longdesc Knuth's CM fonts. It comprises OT1, T1 and TS1 encoded text -longdesc fonts of various shapes as well as all the fonts necessary for -longdesc mathematical typesetting, including AMS symbols. This -longdesc collection provides all the necessary files for using the fonts -longdesc with LaTeX. A commercial-quality Adobe Type 1 version of these -longdesc fonts is available from Micropress. Free versions are -longdesc available, in the cm-super font bundle (the T1 and TS1 encoded -longdesc part of the set), and in the hfbright package (the OT1 encoded -longdesc part, and the maths fonts). -runfiles size=337 - RELOC/fonts/source/public/cmbright/ams10pt.mf - RELOC/fonts/source/public/cmbright/ams8pt.mf - RELOC/fonts/source/public/cmbright/ams9pt.mf - RELOC/fonts/source/public/cmbright/baccent.mf - RELOC/fonts/source/public/cmbright/bgreeku.mf - RELOC/fonts/source/public/cmbright/bitalms.mf - RELOC/fonts/source/public/cmbright/bpunct.mf - RELOC/fonts/source/public/cmbright/br10pt.mf - RELOC/fonts/source/public/cmbright/br17pt.mf - RELOC/fonts/source/public/cmbright/br8pt.mf - RELOC/fonts/source/public/cmbright/br9pt.mf - RELOC/fonts/source/public/cmbright/brmsa.mf - RELOC/fonts/source/public/cmbright/brmsb.mf - RELOC/fonts/source/public/cmbright/broman.mf - RELOC/fonts/source/public/cmbright/bromanl.mf - RELOC/fonts/source/public/cmbright/bromlig.mf - RELOC/fonts/source/public/cmbright/bromms.mf - RELOC/fonts/source/public/cmbright/brs10pt.mf - RELOC/fonts/source/public/cmbright/brs17pt.mf - RELOC/fonts/source/public/cmbright/brs8pt.mf - RELOC/fonts/source/public/cmbright/brs9pt.mf - RELOC/fonts/source/public/cmbright/cmbr10.mf - RELOC/fonts/source/public/cmbright/cmbr17.mf - RELOC/fonts/source/public/cmbright/cmbr8.mf - RELOC/fonts/source/public/cmbright/cmbr9.mf - RELOC/fonts/source/public/cmbright/cmbras10.mf - RELOC/fonts/source/public/cmbright/cmbras8.mf - RELOC/fonts/source/public/cmbright/cmbras9.mf - RELOC/fonts/source/public/cmbright/cmbrbs10.mf - RELOC/fonts/source/public/cmbright/cmbrbs8.mf - RELOC/fonts/source/public/cmbright/cmbrbs9.mf - RELOC/fonts/source/public/cmbright/cmbrbx10.mf - RELOC/fonts/source/public/cmbright/cmbrmb10.mf - RELOC/fonts/source/public/cmbright/cmbrmi10.mf - RELOC/fonts/source/public/cmbright/cmbrmi8.mf - RELOC/fonts/source/public/cmbright/cmbrmi9.mf - RELOC/fonts/source/public/cmbright/cmbrsl10.mf - RELOC/fonts/source/public/cmbright/cmbrsl17.mf - RELOC/fonts/source/public/cmbright/cmbrsl8.mf - RELOC/fonts/source/public/cmbright/cmbrsl9.mf - RELOC/fonts/source/public/cmbright/cmbrsy10.mf - RELOC/fonts/source/public/cmbright/cmbrsy8.mf - RELOC/fonts/source/public/cmbright/cmbrsy9.mf - RELOC/fonts/source/public/cmbright/cmsltl10.mf - RELOC/fonts/source/public/cmbright/cmtl10.mf - RELOC/fonts/source/public/cmbright/ebaccess.mf - RELOC/fonts/source/public/cmbright/ebbase.mf - RELOC/fonts/source/public/cmbright/ebbraces.mf - RELOC/fonts/source/public/cmbright/ebbx10.mf - RELOC/fonts/source/public/cmbright/ebmo10.mf - RELOC/fonts/source/public/cmbright/ebmo17.mf - RELOC/fonts/source/public/cmbright/ebmo8.mf - RELOC/fonts/source/public/cmbright/ebmo9.mf - RELOC/fonts/source/public/cmbright/ebmr10.mf - RELOC/fonts/source/public/cmbright/ebmr17.mf - RELOC/fonts/source/public/cmbright/ebmr8.mf - RELOC/fonts/source/public/cmbright/ebmr9.mf - RELOC/fonts/source/public/cmbright/ebpseudo.mf - RELOC/fonts/source/public/cmbright/ebpunct.mf - RELOC/fonts/source/public/cmbright/ebrleast.mf - RELOC/fonts/source/public/cmbright/ebrlig.mf - RELOC/fonts/source/public/cmbright/ebrligtb.mf - RELOC/fonts/source/public/cmbright/ebrllett.mf - RELOC/fonts/source/public/cmbright/ebrlwest.mf - RELOC/fonts/source/public/cmbright/ebroman.mf - RELOC/fonts/source/public/cmbright/ebso10.mf - RELOC/fonts/source/public/cmbright/ebso17.mf - RELOC/fonts/source/public/cmbright/ebso8.mf - RELOC/fonts/source/public/cmbright/ebso9.mf - RELOC/fonts/source/public/cmbright/ebsr10.mf - RELOC/fonts/source/public/cmbright/ebsr17.mf - RELOC/fonts/source/public/cmbright/ebsr8.mf - RELOC/fonts/source/public/cmbright/ebsr9.mf - RELOC/fonts/source/public/cmbright/ebtl10.mf - RELOC/fonts/source/public/cmbright/ebto10.mf - RELOC/fonts/source/public/cmbright/mathsl.mf - RELOC/fonts/source/public/cmbright/msa.mf - RELOC/fonts/source/public/cmbright/msb.mf - RELOC/fonts/source/public/cmbright/tbbx10.mf - RELOC/fonts/source/public/cmbright/tbmo10.mf - RELOC/fonts/source/public/cmbright/tbmo17.mf - RELOC/fonts/source/public/cmbright/tbmo8.mf - RELOC/fonts/source/public/cmbright/tbmo9.mf - RELOC/fonts/source/public/cmbright/tbmr10.mf - RELOC/fonts/source/public/cmbright/tbmr17.mf - RELOC/fonts/source/public/cmbright/tbmr8.mf - RELOC/fonts/source/public/cmbright/tbmr9.mf - RELOC/fonts/source/public/cmbright/tbpseudo.mf - RELOC/fonts/source/public/cmbright/tbso10.mf - RELOC/fonts/source/public/cmbright/tbso17.mf - RELOC/fonts/source/public/cmbright/tbso8.mf - RELOC/fonts/source/public/cmbright/tbso9.mf - RELOC/fonts/source/public/cmbright/tbsr10.mf - RELOC/fonts/source/public/cmbright/tbsr17.mf - RELOC/fonts/source/public/cmbright/tbsr8.mf - RELOC/fonts/source/public/cmbright/tbsr9.mf - RELOC/fonts/source/public/cmbright/tbsymb.mf - RELOC/fonts/source/public/cmbright/tbsymbol.mf - RELOC/fonts/source/public/cmbright/tbtl10.mf - RELOC/fonts/source/public/cmbright/tbto10.mf - RELOC/fonts/source/public/cmbright/ttsymb.mf - RELOC/fonts/source/public/cmbright/ttsymbol.mf - RELOC/fonts/tfm/public/cmbright/cmbr10.tfm - RELOC/fonts/tfm/public/cmbright/cmbr17.tfm - RELOC/fonts/tfm/public/cmbright/cmbr8.tfm - RELOC/fonts/tfm/public/cmbright/cmbr9.tfm - RELOC/fonts/tfm/public/cmbright/cmbras10.tfm - RELOC/fonts/tfm/public/cmbright/cmbras8.tfm - RELOC/fonts/tfm/public/cmbright/cmbras9.tfm - RELOC/fonts/tfm/public/cmbright/cmbrbs10.tfm - RELOC/fonts/tfm/public/cmbright/cmbrbs8.tfm - RELOC/fonts/tfm/public/cmbright/cmbrbs9.tfm - RELOC/fonts/tfm/public/cmbright/cmbrbx10.tfm - RELOC/fonts/tfm/public/cmbright/cmbrmb10.tfm - RELOC/fonts/tfm/public/cmbright/cmbrmi10.tfm - RELOC/fonts/tfm/public/cmbright/cmbrmi8.tfm - RELOC/fonts/tfm/public/cmbright/cmbrmi9.tfm - RELOC/fonts/tfm/public/cmbright/cmbrsl10.tfm - RELOC/fonts/tfm/public/cmbright/cmbrsl17.tfm - RELOC/fonts/tfm/public/cmbright/cmbrsl8.tfm - RELOC/fonts/tfm/public/cmbright/cmbrsl9.tfm - RELOC/fonts/tfm/public/cmbright/cmbrsy10.tfm - RELOC/fonts/tfm/public/cmbright/cmbrsy8.tfm - RELOC/fonts/tfm/public/cmbright/cmbrsy9.tfm - RELOC/fonts/tfm/public/cmbright/cmsltl10.tfm - RELOC/fonts/tfm/public/cmbright/cmtl10.tfm - RELOC/fonts/tfm/public/cmbright/ebbx10.tfm - RELOC/fonts/tfm/public/cmbright/ebmo10.tfm - RELOC/fonts/tfm/public/cmbright/ebmo17.tfm - RELOC/fonts/tfm/public/cmbright/ebmo8.tfm - RELOC/fonts/tfm/public/cmbright/ebmo9.tfm - RELOC/fonts/tfm/public/cmbright/ebmr10.tfm - RELOC/fonts/tfm/public/cmbright/ebmr17.tfm - RELOC/fonts/tfm/public/cmbright/ebmr8.tfm - RELOC/fonts/tfm/public/cmbright/ebmr9.tfm - RELOC/fonts/tfm/public/cmbright/ebso10.tfm - RELOC/fonts/tfm/public/cmbright/ebso17.tfm - RELOC/fonts/tfm/public/cmbright/ebso8.tfm - RELOC/fonts/tfm/public/cmbright/ebso9.tfm - RELOC/fonts/tfm/public/cmbright/ebsr10.tfm - RELOC/fonts/tfm/public/cmbright/ebsr17.tfm - RELOC/fonts/tfm/public/cmbright/ebsr8.tfm - RELOC/fonts/tfm/public/cmbright/ebsr9.tfm - RELOC/fonts/tfm/public/cmbright/ebtl10.tfm - RELOC/fonts/tfm/public/cmbright/ebto10.tfm - RELOC/fonts/tfm/public/cmbright/tbbx10.tfm - RELOC/fonts/tfm/public/cmbright/tbmo10.tfm - RELOC/fonts/tfm/public/cmbright/tbmo17.tfm - RELOC/fonts/tfm/public/cmbright/tbmo8.tfm - RELOC/fonts/tfm/public/cmbright/tbmo9.tfm - RELOC/fonts/tfm/public/cmbright/tbmr10.tfm - RELOC/fonts/tfm/public/cmbright/tbmr17.tfm - RELOC/fonts/tfm/public/cmbright/tbmr8.tfm - RELOC/fonts/tfm/public/cmbright/tbmr9.tfm - RELOC/fonts/tfm/public/cmbright/tbso10.tfm - RELOC/fonts/tfm/public/cmbright/tbso17.tfm - RELOC/fonts/tfm/public/cmbright/tbso8.tfm - RELOC/fonts/tfm/public/cmbright/tbso9.tfm - RELOC/fonts/tfm/public/cmbright/tbsr10.tfm - RELOC/fonts/tfm/public/cmbright/tbsr17.tfm - RELOC/fonts/tfm/public/cmbright/tbsr8.tfm - RELOC/fonts/tfm/public/cmbright/tbsr9.tfm - RELOC/fonts/tfm/public/cmbright/tbtl10.tfm - RELOC/fonts/tfm/public/cmbright/tbto10.tfm - RELOC/tex/latex/cmbright/cmbright.sty - RELOC/tex/latex/cmbright/omlcmbr.fd - RELOC/tex/latex/cmbright/omlcmbrm.fd - RELOC/tex/latex/cmbright/omscmbr.fd - RELOC/tex/latex/cmbright/omscmbrs.fd - RELOC/tex/latex/cmbright/ot1cmbr.fd - RELOC/tex/latex/cmbright/ot1cmtl.fd - RELOC/tex/latex/cmbright/t1cmbr.fd - RELOC/tex/latex/cmbright/t1cmtl.fd - RELOC/tex/latex/cmbright/ts1cmbr.fd - RELOC/tex/latex/cmbright/ts1cmtl.fd -docfiles size=27 - RELOC/doc/fonts/cmbright/LICENSE - RELOC/doc/fonts/cmbright/README - RELOC/doc/fonts/cmbright/cmbright.txt - RELOC/doc/fonts/cmbright/manifest.txt - RELOC/doc/latex/cmbright/cmbright.pdf -srcfiles size=7 - RELOC/source/latex/cmbright/cmbright.dtx - RELOC/source/latex/cmbright/cmbright.ins -catalogue-ctan /fonts/cmbright -catalogue-date 2014-04-09 15:04:56 +0200 -catalogue-license lppl -catalogue-version 8.1 +longdesc Knuth's final iteration of his re-interpretation of a c.19 +longdesc Modern-style font from Monotype. The family is comprehensive, +longdesc offering both sans and roman styles, and a monospaced font, +longdesc together with mathematics fonts closely integrated with the +longdesc mathematical facilities of TeX itself. The base fonts are +longdesc distributed as Metafont source, but autotraced PostScript Type +longdesc 1 versions are available (one version in the AMS fonts +longdesc distribution, and also the BaKoMa distribution). The Computer +longdesc Modern fonts have inspired many later families, notably the +longdesc European Computer Modern and the Latin Modern families. +execute addMixedMap cmtext-bsr-interpolated.map +containersize 238088 +containerchecksum e939416545071f5c445d866255050cd4302c3ede6af1e080909a68b6e4327ace1f90af4677c68c18d1a85aecd4d2ff346e13670b0be59c76e11ef6334991aaad +doccontainersize 2496 +doccontainerchecksum d27b43854fa022de53379a84087657bf97ce5475d70f98c783f790e320d78daab2f002f49f3dd917224d30e308d78dcf0855325b39014fb0fe5b50d645c9b9a4 +docfiles size=2 + RELOC/doc/fonts/cm/README + RELOC/doc/fonts/cm/README-cmps.txt +runfiles size=340 + RELOC/fonts/map/dvips/cm/cmtext-bsr-interpolated.map + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmbx10.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmex10.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmmi10.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmmi7.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmr10.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmr12.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmr17.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmr6.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmr7.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmr8.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmsl10.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmsy10.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmsy7.pk + RELOC/fonts/pk/ljfour/public/cm/dpi600/cmti10.pk + RELOC/fonts/source/public/cm/accent.mf + RELOC/fonts/source/public/cm/bigacc.mf + RELOC/fonts/source/public/cm/bigdel.mf + RELOC/fonts/source/public/cm/bigop.mf + RELOC/fonts/source/public/cm/calu.mf + RELOC/fonts/source/public/cm/cmb10.mf + RELOC/fonts/source/public/cm/cmbase.mf + RELOC/fonts/source/public/cm/cmbsy10.mf + RELOC/fonts/source/public/cm/cmbx10.mf + RELOC/fonts/source/public/cm/cmbx12.mf + RELOC/fonts/source/public/cm/cmbx5.mf + RELOC/fonts/source/public/cm/cmbx6.mf + RELOC/fonts/source/public/cm/cmbx7.mf + RELOC/fonts/source/public/cm/cmbx8.mf + RELOC/fonts/source/public/cm/cmbx9.mf + RELOC/fonts/source/public/cm/cmbxsl10.mf + RELOC/fonts/source/public/cm/cmbxti10.mf + RELOC/fonts/source/public/cm/cmcsc10.mf + RELOC/fonts/source/public/cm/cmdunh10.mf + RELOC/fonts/source/public/cm/cmex10.mf + RELOC/fonts/source/public/cm/cmff10.mf + RELOC/fonts/source/public/cm/cmfi10.mf + RELOC/fonts/source/public/cm/cmfib8.mf + RELOC/fonts/source/public/cm/cminch.mf + RELOC/fonts/source/public/cm/cmitt10.mf + RELOC/fonts/source/public/cm/cmmi10.mf + RELOC/fonts/source/public/cm/cmmi12.mf + RELOC/fonts/source/public/cm/cmmi5.mf + RELOC/fonts/source/public/cm/cmmi6.mf + RELOC/fonts/source/public/cm/cmmi7.mf + RELOC/fonts/source/public/cm/cmmi8.mf + RELOC/fonts/source/public/cm/cmmi9.mf + RELOC/fonts/source/public/cm/cmmib10.mf + RELOC/fonts/source/public/cm/cmplain.mf + RELOC/fonts/source/public/cm/cmr10.mf + RELOC/fonts/source/public/cm/cmr12.mf + RELOC/fonts/source/public/cm/cmr17.mf + RELOC/fonts/source/public/cm/cmr5.mf + RELOC/fonts/source/public/cm/cmr6.mf + RELOC/fonts/source/public/cm/cmr7.mf + RELOC/fonts/source/public/cm/cmr8.mf + RELOC/fonts/source/public/cm/cmr9.mf + RELOC/fonts/source/public/cm/cmsl10.mf + RELOC/fonts/source/public/cm/cmsl12.mf + RELOC/fonts/source/public/cm/cmsl8.mf + RELOC/fonts/source/public/cm/cmsl9.mf + RELOC/fonts/source/public/cm/cmsltt10.mf + RELOC/fonts/source/public/cm/cmss10.mf + RELOC/fonts/source/public/cm/cmss12.mf + RELOC/fonts/source/public/cm/cmss17.mf + RELOC/fonts/source/public/cm/cmss8.mf + RELOC/fonts/source/public/cm/cmss9.mf + RELOC/fonts/source/public/cm/cmssbx10.mf + RELOC/fonts/source/public/cm/cmssdc10.mf + RELOC/fonts/source/public/cm/cmssi10.mf + RELOC/fonts/source/public/cm/cmssi12.mf + RELOC/fonts/source/public/cm/cmssi17.mf + RELOC/fonts/source/public/cm/cmssi8.mf + RELOC/fonts/source/public/cm/cmssi9.mf + RELOC/fonts/source/public/cm/cmssq8.mf + RELOC/fonts/source/public/cm/cmssqi8.mf + RELOC/fonts/source/public/cm/cmsy10.mf + RELOC/fonts/source/public/cm/cmsy5.mf + RELOC/fonts/source/public/cm/cmsy6.mf + RELOC/fonts/source/public/cm/cmsy7.mf + RELOC/fonts/source/public/cm/cmsy8.mf + RELOC/fonts/source/public/cm/cmsy9.mf + RELOC/fonts/source/public/cm/cmtcsc10.mf + RELOC/fonts/source/public/cm/cmtex10.mf + RELOC/fonts/source/public/cm/cmtex8.mf + RELOC/fonts/source/public/cm/cmtex9.mf + RELOC/fonts/source/public/cm/cmti10.mf + RELOC/fonts/source/public/cm/cmti12.mf + RELOC/fonts/source/public/cm/cmti7.mf + RELOC/fonts/source/public/cm/cmti8.mf + RELOC/fonts/source/public/cm/cmti9.mf + RELOC/fonts/source/public/cm/cmtt10.mf + RELOC/fonts/source/public/cm/cmtt12.mf + RELOC/fonts/source/public/cm/cmtt8.mf + RELOC/fonts/source/public/cm/cmtt9.mf + RELOC/fonts/source/public/cm/cmu10.mf + RELOC/fonts/source/public/cm/cmvtt10.mf + RELOC/fonts/source/public/cm/comlig.mf + RELOC/fonts/source/public/cm/csc.mf + RELOC/fonts/source/public/cm/cscspu.mf + RELOC/fonts/source/public/cm/greekl.mf + RELOC/fonts/source/public/cm/greeku.mf + RELOC/fonts/source/public/cm/itald.mf + RELOC/fonts/source/public/cm/italig.mf + RELOC/fonts/source/public/cm/itall.mf + RELOC/fonts/source/public/cm/italms.mf + RELOC/fonts/source/public/cm/italp.mf + RELOC/fonts/source/public/cm/italsp.mf + RELOC/fonts/source/public/cm/mathex.mf + RELOC/fonts/source/public/cm/mathit.mf + RELOC/fonts/source/public/cm/mathsy.mf + RELOC/fonts/source/public/cm/olddig.mf + RELOC/fonts/source/public/cm/punct.mf + RELOC/fonts/source/public/cm/roman.mf + RELOC/fonts/source/public/cm/romand.mf + RELOC/fonts/source/public/cm/romanl.mf + RELOC/fonts/source/public/cm/romanp.mf + RELOC/fonts/source/public/cm/romanu.mf + RELOC/fonts/source/public/cm/romlig.mf + RELOC/fonts/source/public/cm/romms.mf + RELOC/fonts/source/public/cm/romspl.mf + RELOC/fonts/source/public/cm/romspu.mf + RELOC/fonts/source/public/cm/romsub.mf + RELOC/fonts/source/public/cm/sym.mf + RELOC/fonts/source/public/cm/symbol.mf + RELOC/fonts/source/public/cm/texset.mf + RELOC/fonts/source/public/cm/textit.mf + RELOC/fonts/source/public/cm/title.mf + RELOC/fonts/source/public/cm/tset.mf + RELOC/fonts/source/public/cm/tsetsl.mf + RELOC/fonts/source/public/cm/white_setup.mf + RELOC/fonts/tfm/public/cm/cmb10.tfm + RELOC/fonts/tfm/public/cm/cmbsy10.tfm + RELOC/fonts/tfm/public/cm/cmbx10.tfm + RELOC/fonts/tfm/public/cm/cmbx12.tfm + RELOC/fonts/tfm/public/cm/cmbx5.tfm + RELOC/fonts/tfm/public/cm/cmbx6.tfm + RELOC/fonts/tfm/public/cm/cmbx7.tfm + RELOC/fonts/tfm/public/cm/cmbx8.tfm + RELOC/fonts/tfm/public/cm/cmbx9.tfm + RELOC/fonts/tfm/public/cm/cmbxsl10.tfm + RELOC/fonts/tfm/public/cm/cmbxti10.tfm + RELOC/fonts/tfm/public/cm/cmcsc10.tfm + RELOC/fonts/tfm/public/cm/cmdunh10.tfm + RELOC/fonts/tfm/public/cm/cmex10.tfm + RELOC/fonts/tfm/public/cm/cmff10.tfm + RELOC/fonts/tfm/public/cm/cmfi10.tfm + RELOC/fonts/tfm/public/cm/cmfib8.tfm + RELOC/fonts/tfm/public/cm/cminch.tfm + RELOC/fonts/tfm/public/cm/cmitt10.tfm + RELOC/fonts/tfm/public/cm/cmmi10.tfm + RELOC/fonts/tfm/public/cm/cmmi12.tfm + RELOC/fonts/tfm/public/cm/cmmi5.tfm + RELOC/fonts/tfm/public/cm/cmmi6.tfm + RELOC/fonts/tfm/public/cm/cmmi7.tfm + RELOC/fonts/tfm/public/cm/cmmi8.tfm + RELOC/fonts/tfm/public/cm/cmmi9.tfm + RELOC/fonts/tfm/public/cm/cmmib10.tfm + RELOC/fonts/tfm/public/cm/cmr10.tfm + RELOC/fonts/tfm/public/cm/cmr12.tfm + RELOC/fonts/tfm/public/cm/cmr17.tfm + RELOC/fonts/tfm/public/cm/cmr5.tfm + RELOC/fonts/tfm/public/cm/cmr6.tfm + RELOC/fonts/tfm/public/cm/cmr7.tfm + RELOC/fonts/tfm/public/cm/cmr8.tfm + RELOC/fonts/tfm/public/cm/cmr9.tfm + RELOC/fonts/tfm/public/cm/cmsl10.tfm + RELOC/fonts/tfm/public/cm/cmsl12.tfm + RELOC/fonts/tfm/public/cm/cmsl8.tfm + RELOC/fonts/tfm/public/cm/cmsl9.tfm + RELOC/fonts/tfm/public/cm/cmsltt10.tfm + RELOC/fonts/tfm/public/cm/cmss10.tfm + RELOC/fonts/tfm/public/cm/cmss12.tfm + RELOC/fonts/tfm/public/cm/cmss17.tfm + RELOC/fonts/tfm/public/cm/cmss8.tfm + RELOC/fonts/tfm/public/cm/cmss9.tfm + RELOC/fonts/tfm/public/cm/cmssbx10.tfm + RELOC/fonts/tfm/public/cm/cmssdc10.tfm + RELOC/fonts/tfm/public/cm/cmssi10.tfm + RELOC/fonts/tfm/public/cm/cmssi12.tfm + RELOC/fonts/tfm/public/cm/cmssi17.tfm + RELOC/fonts/tfm/public/cm/cmssi8.tfm + RELOC/fonts/tfm/public/cm/cmssi9.tfm + RELOC/fonts/tfm/public/cm/cmssq8.tfm + RELOC/fonts/tfm/public/cm/cmssqi8.tfm + RELOC/fonts/tfm/public/cm/cmsy10.tfm + RELOC/fonts/tfm/public/cm/cmsy5.tfm + RELOC/fonts/tfm/public/cm/cmsy6.tfm + RELOC/fonts/tfm/public/cm/cmsy7.tfm + RELOC/fonts/tfm/public/cm/cmsy8.tfm + RELOC/fonts/tfm/public/cm/cmsy9.tfm + RELOC/fonts/tfm/public/cm/cmtcsc10.tfm + RELOC/fonts/tfm/public/cm/cmtex10.tfm + RELOC/fonts/tfm/public/cm/cmtex8.tfm + RELOC/fonts/tfm/public/cm/cmtex9.tfm + RELOC/fonts/tfm/public/cm/cmti10.tfm + RELOC/fonts/tfm/public/cm/cmti12.tfm + RELOC/fonts/tfm/public/cm/cmti7.tfm + RELOC/fonts/tfm/public/cm/cmti8.tfm + RELOC/fonts/tfm/public/cm/cmti9.tfm + RELOC/fonts/tfm/public/cm/cmtt10.tfm + RELOC/fonts/tfm/public/cm/cmtt12.tfm + RELOC/fonts/tfm/public/cm/cmtt8.tfm + RELOC/fonts/tfm/public/cm/cmtt9.tfm + RELOC/fonts/tfm/public/cm/cmu10.tfm + RELOC/fonts/tfm/public/cm/cmvtt10.tfm +catalogue-ctan /fonts/cm +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license knuth +catalogue-topics font font-mf font-proportional font-mono font-cm -name cmcyr +name cm-lgc category Package -revision 16696 -shortdesc Computer Modern fonts with cyrillic extensions. -relocated 1 -longdesc These are the Computer Modern fonts extended with Russian -longdesc letters, in Metafont sources and ATM Compatible Type 1 format. -longdesc The fonts are provided in KOI-7, but virtual fonts are -longdesc available to recode them to three other Russian 8-bit -longdesc encodings. -execute addMap cmcyr.map -runfiles size=979 - RELOC/fonts/map/dvips/cmcyr/cmcyr.map - RELOC/fonts/source/public/cmcyr/ccsc.mf - RELOC/fonts/source/public/cmcyr/citall.mf - RELOC/fonts/source/public/cmcyr/cmcb10.mf - RELOC/fonts/source/public/cmcyr/cmcbx10.mf - RELOC/fonts/source/public/cmcyr/cmcbx12.mf - RELOC/fonts/source/public/cmcyr/cmcbx5.mf - RELOC/fonts/source/public/cmcyr/cmcbx6.mf - RELOC/fonts/source/public/cmcyr/cmcbx7.mf - RELOC/fonts/source/public/cmcyr/cmcbx8.mf - RELOC/fonts/source/public/cmcyr/cmcbx9.mf - RELOC/fonts/source/public/cmcyr/cmcbxsl1.mf - RELOC/fonts/source/public/cmcyr/cmcbxti1.mf - RELOC/fonts/source/public/cmcyr/cmccsc10.mf - RELOC/fonts/source/public/cmcyr/cmccsc8.mf - RELOC/fonts/source/public/cmcyr/cmccsc9.mf - RELOC/fonts/source/public/cmcyr/cmcinch.mf - RELOC/fonts/source/public/cmcyr/cmcitt10.mf - RELOC/fonts/source/public/cmcyr/cmcsc11.mf - RELOC/fonts/source/public/cmcyr/cmcsc12.mf - RELOC/fonts/source/public/cmcyr/cmcsc14.mf - RELOC/fonts/source/public/cmcyr/cmcsc18.mf - RELOC/fonts/source/public/cmcyr/cmcsc24.mf - RELOC/fonts/source/public/cmcyr/cmcsc36.mf - RELOC/fonts/source/public/cmcyr/cmcscsl1.mf - RELOC/fonts/source/public/cmcyr/cmcsl10.mf - RELOC/fonts/source/public/cmcyr/cmcsl12.mf - RELOC/fonts/source/public/cmcyr/cmcsl8.mf - RELOC/fonts/source/public/cmcyr/cmcsl9.mf - RELOC/fonts/source/public/cmcyr/cmcsltt1.mf - RELOC/fonts/source/public/cmcyr/cmcss10.mf - RELOC/fonts/source/public/cmcyr/cmcss12.mf - RELOC/fonts/source/public/cmcyr/cmcss17.mf - RELOC/fonts/source/public/cmcyr/cmcss8.mf - RELOC/fonts/source/public/cmcyr/cmcss9.mf - RELOC/fonts/source/public/cmcyr/cmcssbx1.mf - RELOC/fonts/source/public/cmcyr/cmcssdc1.mf - RELOC/fonts/source/public/cmcyr/cmcssi10.mf - RELOC/fonts/source/public/cmcyr/cmcssi12.mf - RELOC/fonts/source/public/cmcyr/cmcssi17.mf - RELOC/fonts/source/public/cmcyr/cmcssi8.mf - RELOC/fonts/source/public/cmcyr/cmcssi9.mf - RELOC/fonts/source/public/cmcyr/cmcssq8.mf - RELOC/fonts/source/public/cmcyr/cmcssqi8.mf - RELOC/fonts/source/public/cmcyr/cmcti10.mf - RELOC/fonts/source/public/cmcyr/cmcti12.mf - RELOC/fonts/source/public/cmcyr/cmcti7.mf - RELOC/fonts/source/public/cmcyr/cmcti8.mf - RELOC/fonts/source/public/cmcyr/cmcti9.mf - RELOC/fonts/source/public/cmcyr/cmctitle.mf - RELOC/fonts/source/public/cmcyr/cmctt10.mf - RELOC/fonts/source/public/cmcyr/cmctt12.mf - RELOC/fonts/source/public/cmcyr/cmctt8.mf - RELOC/fonts/source/public/cmcyr/cmctt9.mf - RELOC/fonts/source/public/cmcyr/cmcu10.mf - RELOC/fonts/source/public/cmcyr/cmcyr10.mf - RELOC/fonts/source/public/cmcyr/cmcyr12.mf - RELOC/fonts/source/public/cmcyr/cmcyr17.mf - RELOC/fonts/source/public/cmcyr/cmcyr5.mf - RELOC/fonts/source/public/cmcyr/cmcyr6.mf - RELOC/fonts/source/public/cmcyr/cmcyr7.mf - RELOC/fonts/source/public/cmcyr/cmcyr8.mf - RELOC/fonts/source/public/cmcyr/cmcyr9.mf - RELOC/fonts/source/public/cmcyr/coding.mf - RELOC/fonts/source/public/cmcyr/cyrillic.mf - RELOC/fonts/source/public/cmcyr/cyrl.mf - RELOC/fonts/source/public/cmcyr/cyrlc.mf - RELOC/fonts/source/public/cmcyr/cyrsymb.mf - RELOC/fonts/source/public/cmcyr/cyrt.mf - RELOC/fonts/source/public/cmcyr/cyru.mf - RELOC/fonts/source/public/cmcyr/cytextit.mf - RELOC/fonts/source/public/cmcyr/cytitle.mf - RELOC/fonts/tfm/public/cmcyr/cmcb10.tfm - RELOC/fonts/tfm/public/cmcyr/cmcbx10.tfm - RELOC/fonts/tfm/public/cmcyr/cmcbx12.tfm - RELOC/fonts/tfm/public/cmcyr/cmcbx5.tfm - RELOC/fonts/tfm/public/cmcyr/cmcbx6.tfm - RELOC/fonts/tfm/public/cmcyr/cmcbx7.tfm - RELOC/fonts/tfm/public/cmcyr/cmcbx8.tfm - RELOC/fonts/tfm/public/cmcyr/cmcbx9.tfm - RELOC/fonts/tfm/public/cmcyr/cmcbxsl10.tfm - RELOC/fonts/tfm/public/cmcyr/cmcbxti10.tfm - RELOC/fonts/tfm/public/cmcyr/cmccsc10.tfm - RELOC/fonts/tfm/public/cmcyr/cmccsc8.tfm - RELOC/fonts/tfm/public/cmcyr/cmccsc9.tfm - RELOC/fonts/tfm/public/cmcyr/cmcinch.tfm - RELOC/fonts/tfm/public/cmcyr/cmcitt10.tfm - RELOC/fonts/tfm/public/cmcyr/cmcsl10.tfm - RELOC/fonts/tfm/public/cmcyr/cmcsl12.tfm - RELOC/fonts/tfm/public/cmcyr/cmcsl8.tfm - RELOC/fonts/tfm/public/cmcyr/cmcsl9.tfm - RELOC/fonts/tfm/public/cmcyr/cmcsltt10.tfm - RELOC/fonts/tfm/public/cmcyr/cmcss10.tfm - RELOC/fonts/tfm/public/cmcyr/cmcss12.tfm - RELOC/fonts/tfm/public/cmcyr/cmcss17.tfm - RELOC/fonts/tfm/public/cmcyr/cmcss8.tfm - RELOC/fonts/tfm/public/cmcyr/cmcss9.tfm - RELOC/fonts/tfm/public/cmcyr/cmcssbx10.tfm - RELOC/fonts/tfm/public/cmcyr/cmcssdc10.tfm - RELOC/fonts/tfm/public/cmcyr/cmcssi10.tfm - RELOC/fonts/tfm/public/cmcyr/cmcssi12.tfm - RELOC/fonts/tfm/public/cmcyr/cmcssi17.tfm - RELOC/fonts/tfm/public/cmcyr/cmcssi8.tfm - RELOC/fonts/tfm/public/cmcyr/cmcssi9.tfm - RELOC/fonts/tfm/public/cmcyr/cmcssq8.tfm - RELOC/fonts/tfm/public/cmcyr/cmcssqi8.tfm - RELOC/fonts/tfm/public/cmcyr/cmcti10.tfm - RELOC/fonts/tfm/public/cmcyr/cmcti12.tfm - RELOC/fonts/tfm/public/cmcyr/cmcti7.tfm - RELOC/fonts/tfm/public/cmcyr/cmcti8.tfm - RELOC/fonts/tfm/public/cmcyr/cmcti9.tfm - RELOC/fonts/tfm/public/cmcyr/cmctt10.tfm - RELOC/fonts/tfm/public/cmcyr/cmctt12.tfm - RELOC/fonts/tfm/public/cmcyr/cmctt8.tfm - RELOC/fonts/tfm/public/cmcyr/cmctt9.tfm - RELOC/fonts/tfm/public/cmcyr/cmcu10.tfm - RELOC/fonts/tfm/public/cmcyr/cmcyr10.tfm - RELOC/fonts/tfm/public/cmcyr/cmcyr12.tfm - RELOC/fonts/tfm/public/cmcyr/cmcyr17.tfm - RELOC/fonts/tfm/public/cmcyr/cmcyr5.tfm - RELOC/fonts/tfm/public/cmcyr/cmcyr6.tfm - RELOC/fonts/tfm/public/cmcyr/cmcyr7.tfm - RELOC/fonts/tfm/public/cmcyr/cmcyr8.tfm - RELOC/fonts/tfm/public/cmcyr/cmcyr9.tfm - RELOC/fonts/tfm/public/cmcyr/kcmb10.tfm - RELOC/fonts/tfm/public/cmcyr/kcmbx10.tfm - RELOC/fonts/tfm/public/cmcyr/kcmbx12.tfm - RELOC/fonts/tfm/public/cmcyr/kcmbx5.tfm - RELOC/fonts/tfm/public/cmcyr/kcmbx6.tfm - RELOC/fonts/tfm/public/cmcyr/kcmbx7.tfm - RELOC/fonts/tfm/public/cmcyr/kcmbx8.tfm - RELOC/fonts/tfm/public/cmcyr/kcmbx9.tfm - RELOC/fonts/tfm/public/cmcyr/kcmbxsl10.tfm - RELOC/fonts/tfm/public/cmcyr/kcmbxti10.tfm - RELOC/fonts/tfm/public/cmcyr/kcmcsc10.tfm - RELOC/fonts/tfm/public/cmcyr/kcmcsc8.tfm - RELOC/fonts/tfm/public/cmcyr/kcmcsc9.tfm - RELOC/fonts/tfm/public/cmcyr/kcminch.tfm - RELOC/fonts/tfm/public/cmcyr/kcmitt10.tfm - RELOC/fonts/tfm/public/cmcyr/kcmmi10.tfm - RELOC/fonts/tfm/public/cmcyr/kcmmi12.tfm - RELOC/fonts/tfm/public/cmcyr/kcmmi5.tfm - RELOC/fonts/tfm/public/cmcyr/kcmmi6.tfm - RELOC/fonts/tfm/public/cmcyr/kcmmi7.tfm - RELOC/fonts/tfm/public/cmcyr/kcmmi8.tfm - RELOC/fonts/tfm/public/cmcyr/kcmmi9.tfm - RELOC/fonts/tfm/public/cmcyr/kcmmib10.tfm - RELOC/fonts/tfm/public/cmcyr/kcmr10.tfm - RELOC/fonts/tfm/public/cmcyr/kcmr12.tfm - RELOC/fonts/tfm/public/cmcyr/kcmr17.tfm - RELOC/fonts/tfm/public/cmcyr/kcmr5.tfm - RELOC/fonts/tfm/public/cmcyr/kcmr6.tfm - RELOC/fonts/tfm/public/cmcyr/kcmr7.tfm - RELOC/fonts/tfm/public/cmcyr/kcmr8.tfm - RELOC/fonts/tfm/public/cmcyr/kcmr9.tfm - RELOC/fonts/tfm/public/cmcyr/kcmsl10.tfm - RELOC/fonts/tfm/public/cmcyr/kcmsl12.tfm - RELOC/fonts/tfm/public/cmcyr/kcmsl8.tfm - RELOC/fonts/tfm/public/cmcyr/kcmsl9.tfm - RELOC/fonts/tfm/public/cmcyr/kcmsltt10.tfm - RELOC/fonts/tfm/public/cmcyr/kcmss10.tfm - RELOC/fonts/tfm/public/cmcyr/kcmss12.tfm - RELOC/fonts/tfm/public/cmcyr/kcmss17.tfm - RELOC/fonts/tfm/public/cmcyr/kcmss8.tfm - RELOC/fonts/tfm/public/cmcyr/kcmss9.tfm - RELOC/fonts/tfm/public/cmcyr/kcmssbx10.tfm - RELOC/fonts/tfm/public/cmcyr/kcmssdc10.tfm - RELOC/fonts/tfm/public/cmcyr/kcmssi10.tfm - RELOC/fonts/tfm/public/cmcyr/kcmssi12.tfm - RELOC/fonts/tfm/public/cmcyr/kcmssi17.tfm - RELOC/fonts/tfm/public/cmcyr/kcmssi8.tfm - RELOC/fonts/tfm/public/cmcyr/kcmssi9.tfm - RELOC/fonts/tfm/public/cmcyr/kcmssq8.tfm - RELOC/fonts/tfm/public/cmcyr/kcmssqi8.tfm - RELOC/fonts/tfm/public/cmcyr/kcmti10.tfm - RELOC/fonts/tfm/public/cmcyr/kcmti12.tfm - RELOC/fonts/tfm/public/cmcyr/kcmti7.tfm - RELOC/fonts/tfm/public/cmcyr/kcmti8.tfm - RELOC/fonts/tfm/public/cmcyr/kcmti9.tfm - RELOC/fonts/tfm/public/cmcyr/kcmtt10.tfm - RELOC/fonts/tfm/public/cmcyr/kcmtt12.tfm - RELOC/fonts/tfm/public/cmcyr/kcmtt8.tfm - RELOC/fonts/tfm/public/cmcyr/kcmtt9.tfm - RELOC/fonts/tfm/public/cmcyr/kcmu10.tfm - RELOC/fonts/tfm/public/cmcyr/wcmb10.tfm - RELOC/fonts/tfm/public/cmcyr/wcmbx10.tfm - RELOC/fonts/tfm/public/cmcyr/wcmbx12.tfm - RELOC/fonts/tfm/public/cmcyr/wcmbx5.tfm - RELOC/fonts/tfm/public/cmcyr/wcmbx6.tfm - RELOC/fonts/tfm/public/cmcyr/wcmbx7.tfm - RELOC/fonts/tfm/public/cmcyr/wcmbx8.tfm - RELOC/fonts/tfm/public/cmcyr/wcmbx9.tfm - RELOC/fonts/tfm/public/cmcyr/wcmbxsl10.tfm - RELOC/fonts/tfm/public/cmcyr/wcmbxti10.tfm - RELOC/fonts/tfm/public/cmcyr/wcmcsc10.tfm - RELOC/fonts/tfm/public/cmcyr/wcmcsc8.tfm - RELOC/fonts/tfm/public/cmcyr/wcmcsc9.tfm - RELOC/fonts/tfm/public/cmcyr/wcminch.tfm - RELOC/fonts/tfm/public/cmcyr/wcmitt10.tfm - RELOC/fonts/tfm/public/cmcyr/wcmmi10.tfm - RELOC/fonts/tfm/public/cmcyr/wcmmi12.tfm - RELOC/fonts/tfm/public/cmcyr/wcmmi5.tfm - RELOC/fonts/tfm/public/cmcyr/wcmmi6.tfm - RELOC/fonts/tfm/public/cmcyr/wcmmi7.tfm - RELOC/fonts/tfm/public/cmcyr/wcmmi8.tfm - RELOC/fonts/tfm/public/cmcyr/wcmmi9.tfm - RELOC/fonts/tfm/public/cmcyr/wcmmib10.tfm - RELOC/fonts/tfm/public/cmcyr/wcmr10.tfm - RELOC/fonts/tfm/public/cmcyr/wcmr12.tfm - RELOC/fonts/tfm/public/cmcyr/wcmr17.tfm - RELOC/fonts/tfm/public/cmcyr/wcmr5.tfm - RELOC/fonts/tfm/public/cmcyr/wcmr6.tfm - RELOC/fonts/tfm/public/cmcyr/wcmr7.tfm - RELOC/fonts/tfm/public/cmcyr/wcmr8.tfm - RELOC/fonts/tfm/public/cmcyr/wcmr9.tfm - RELOC/fonts/tfm/public/cmcyr/wcmsl10.tfm - RELOC/fonts/tfm/public/cmcyr/wcmsl12.tfm - RELOC/fonts/tfm/public/cmcyr/wcmsl8.tfm - RELOC/fonts/tfm/public/cmcyr/wcmsl9.tfm - RELOC/fonts/tfm/public/cmcyr/wcmsltt10.tfm - RELOC/fonts/tfm/public/cmcyr/wcmss10.tfm - RELOC/fonts/tfm/public/cmcyr/wcmss12.tfm - RELOC/fonts/tfm/public/cmcyr/wcmss17.tfm - RELOC/fonts/tfm/public/cmcyr/wcmss8.tfm - RELOC/fonts/tfm/public/cmcyr/wcmss9.tfm - RELOC/fonts/tfm/public/cmcyr/wcmssbx10.tfm - RELOC/fonts/tfm/public/cmcyr/wcmssdc10.tfm - RELOC/fonts/tfm/public/cmcyr/wcmssi10.tfm - RELOC/fonts/tfm/public/cmcyr/wcmssi12.tfm - RELOC/fonts/tfm/public/cmcyr/wcmssi17.tfm - RELOC/fonts/tfm/public/cmcyr/wcmssi8.tfm - RELOC/fonts/tfm/public/cmcyr/wcmssi9.tfm - RELOC/fonts/tfm/public/cmcyr/wcmssq8.tfm - RELOC/fonts/tfm/public/cmcyr/wcmssqi8.tfm - RELOC/fonts/tfm/public/cmcyr/wcmti10.tfm - RELOC/fonts/tfm/public/cmcyr/wcmti12.tfm - RELOC/fonts/tfm/public/cmcyr/wcmti7.tfm - RELOC/fonts/tfm/public/cmcyr/wcmti8.tfm - RELOC/fonts/tfm/public/cmcyr/wcmti9.tfm - RELOC/fonts/tfm/public/cmcyr/wcmtt10.tfm - RELOC/fonts/tfm/public/cmcyr/wcmtt12.tfm - RELOC/fonts/tfm/public/cmcyr/wcmtt8.tfm - RELOC/fonts/tfm/public/cmcyr/wcmtt9.tfm - RELOC/fonts/tfm/public/cmcyr/wcmu10.tfm - RELOC/fonts/tfm/public/cmcyr/xcmb10.tfm - RELOC/fonts/tfm/public/cmcyr/xcmbx10.tfm - RELOC/fonts/tfm/public/cmcyr/xcmbx12.tfm - RELOC/fonts/tfm/public/cmcyr/xcmbx5.tfm - RELOC/fonts/tfm/public/cmcyr/xcmbx6.tfm - RELOC/fonts/tfm/public/cmcyr/xcmbx7.tfm - RELOC/fonts/tfm/public/cmcyr/xcmbx8.tfm - RELOC/fonts/tfm/public/cmcyr/xcmbx9.tfm - RELOC/fonts/tfm/public/cmcyr/xcmbxsl10.tfm - RELOC/fonts/tfm/public/cmcyr/xcmbxti10.tfm - RELOC/fonts/tfm/public/cmcyr/xcmcsc10.tfm - RELOC/fonts/tfm/public/cmcyr/xcmcsc8.tfm - RELOC/fonts/tfm/public/cmcyr/xcmcsc9.tfm - RELOC/fonts/tfm/public/cmcyr/xcminch.tfm - RELOC/fonts/tfm/public/cmcyr/xcmitt10.tfm - RELOC/fonts/tfm/public/cmcyr/xcmmi10.tfm - RELOC/fonts/tfm/public/cmcyr/xcmmi12.tfm - RELOC/fonts/tfm/public/cmcyr/xcmmi5.tfm - RELOC/fonts/tfm/public/cmcyr/xcmmi6.tfm - RELOC/fonts/tfm/public/cmcyr/xcmmi7.tfm - RELOC/fonts/tfm/public/cmcyr/xcmmi8.tfm - RELOC/fonts/tfm/public/cmcyr/xcmmi9.tfm - RELOC/fonts/tfm/public/cmcyr/xcmmib10.tfm - RELOC/fonts/tfm/public/cmcyr/xcmr10.tfm - RELOC/fonts/tfm/public/cmcyr/xcmr12.tfm - RELOC/fonts/tfm/public/cmcyr/xcmr17.tfm - RELOC/fonts/tfm/public/cmcyr/xcmr5.tfm - RELOC/fonts/tfm/public/cmcyr/xcmr6.tfm - RELOC/fonts/tfm/public/cmcyr/xcmr7.tfm - RELOC/fonts/tfm/public/cmcyr/xcmr8.tfm - RELOC/fonts/tfm/public/cmcyr/xcmr9.tfm - RELOC/fonts/tfm/public/cmcyr/xcmsl10.tfm - RELOC/fonts/tfm/public/cmcyr/xcmsl12.tfm - RELOC/fonts/tfm/public/cmcyr/xcmsl8.tfm - RELOC/fonts/tfm/public/cmcyr/xcmsl9.tfm - RELOC/fonts/tfm/public/cmcyr/xcmsltt10.tfm - RELOC/fonts/tfm/public/cmcyr/xcmss10.tfm - RELOC/fonts/tfm/public/cmcyr/xcmss12.tfm - RELOC/fonts/tfm/public/cmcyr/xcmss17.tfm - RELOC/fonts/tfm/public/cmcyr/xcmss8.tfm - RELOC/fonts/tfm/public/cmcyr/xcmss9.tfm - RELOC/fonts/tfm/public/cmcyr/xcmssbx10.tfm - RELOC/fonts/tfm/public/cmcyr/xcmssdc10.tfm - RELOC/fonts/tfm/public/cmcyr/xcmssi10.tfm - RELOC/fonts/tfm/public/cmcyr/xcmssi12.tfm - RELOC/fonts/tfm/public/cmcyr/xcmssi17.tfm - RELOC/fonts/tfm/public/cmcyr/xcmssi8.tfm - RELOC/fonts/tfm/public/cmcyr/xcmssi9.tfm - RELOC/fonts/tfm/public/cmcyr/xcmssq8.tfm - RELOC/fonts/tfm/public/cmcyr/xcmssqi8.tfm - RELOC/fonts/tfm/public/cmcyr/xcmti10.tfm - RELOC/fonts/tfm/public/cmcyr/xcmti12.tfm - RELOC/fonts/tfm/public/cmcyr/xcmti7.tfm - RELOC/fonts/tfm/public/cmcyr/xcmti8.tfm - RELOC/fonts/tfm/public/cmcyr/xcmti9.tfm - RELOC/fonts/tfm/public/cmcyr/xcmtt10.tfm - RELOC/fonts/tfm/public/cmcyr/xcmtt12.tfm - RELOC/fonts/tfm/public/cmcyr/xcmtt8.tfm - RELOC/fonts/tfm/public/cmcyr/xcmtt9.tfm - RELOC/fonts/tfm/public/cmcyr/xcmu10.tfm - RELOC/fonts/tfm/public/cmcyr/ycmb10.tfm - RELOC/fonts/tfm/public/cmcyr/ycmbx10.tfm - RELOC/fonts/tfm/public/cmcyr/ycmbx12.tfm - RELOC/fonts/tfm/public/cmcyr/ycmbx5.tfm - RELOC/fonts/tfm/public/cmcyr/ycmbx6.tfm - RELOC/fonts/tfm/public/cmcyr/ycmbx7.tfm - RELOC/fonts/tfm/public/cmcyr/ycmbx8.tfm - RELOC/fonts/tfm/public/cmcyr/ycmbx9.tfm - RELOC/fonts/tfm/public/cmcyr/ycmbxsl10.tfm - RELOC/fonts/tfm/public/cmcyr/ycmbxti10.tfm - RELOC/fonts/tfm/public/cmcyr/ycmcsc10.tfm - RELOC/fonts/tfm/public/cmcyr/ycmcsc8.tfm - RELOC/fonts/tfm/public/cmcyr/ycmcsc9.tfm - RELOC/fonts/tfm/public/cmcyr/ycminch.tfm - RELOC/fonts/tfm/public/cmcyr/ycmitt10.tfm - RELOC/fonts/tfm/public/cmcyr/ycmmi10.tfm - RELOC/fonts/tfm/public/cmcyr/ycmmi12.tfm - RELOC/fonts/tfm/public/cmcyr/ycmmi5.tfm - RELOC/fonts/tfm/public/cmcyr/ycmmi6.tfm - RELOC/fonts/tfm/public/cmcyr/ycmmi7.tfm - RELOC/fonts/tfm/public/cmcyr/ycmmi8.tfm - RELOC/fonts/tfm/public/cmcyr/ycmmi9.tfm - RELOC/fonts/tfm/public/cmcyr/ycmmib10.tfm - RELOC/fonts/tfm/public/cmcyr/ycmr10.tfm - RELOC/fonts/tfm/public/cmcyr/ycmr12.tfm - RELOC/fonts/tfm/public/cmcyr/ycmr17.tfm - RELOC/fonts/tfm/public/cmcyr/ycmr5.tfm - RELOC/fonts/tfm/public/cmcyr/ycmr6.tfm - RELOC/fonts/tfm/public/cmcyr/ycmr7.tfm - RELOC/fonts/tfm/public/cmcyr/ycmr8.tfm - RELOC/fonts/tfm/public/cmcyr/ycmr9.tfm - RELOC/fonts/tfm/public/cmcyr/ycmsl10.tfm - RELOC/fonts/tfm/public/cmcyr/ycmsl12.tfm - RELOC/fonts/tfm/public/cmcyr/ycmsl8.tfm - RELOC/fonts/tfm/public/cmcyr/ycmsl9.tfm - RELOC/fonts/tfm/public/cmcyr/ycmsltt10.tfm - RELOC/fonts/tfm/public/cmcyr/ycmss10.tfm - RELOC/fonts/tfm/public/cmcyr/ycmss12.tfm - RELOC/fonts/tfm/public/cmcyr/ycmss17.tfm - RELOC/fonts/tfm/public/cmcyr/ycmss8.tfm - RELOC/fonts/tfm/public/cmcyr/ycmss9.tfm - RELOC/fonts/tfm/public/cmcyr/ycmssbx10.tfm - RELOC/fonts/tfm/public/cmcyr/ycmssdc10.tfm - RELOC/fonts/tfm/public/cmcyr/ycmssi10.tfm - RELOC/fonts/tfm/public/cmcyr/ycmssi12.tfm - RELOC/fonts/tfm/public/cmcyr/ycmssi17.tfm - RELOC/fonts/tfm/public/cmcyr/ycmssi8.tfm - RELOC/fonts/tfm/public/cmcyr/ycmssi9.tfm - RELOC/fonts/tfm/public/cmcyr/ycmssq8.tfm - RELOC/fonts/tfm/public/cmcyr/ycmssqi8.tfm - RELOC/fonts/tfm/public/cmcyr/ycmti10.tfm - RELOC/fonts/tfm/public/cmcyr/ycmti12.tfm - RELOC/fonts/tfm/public/cmcyr/ycmti7.tfm - RELOC/fonts/tfm/public/cmcyr/ycmti8.tfm - RELOC/fonts/tfm/public/cmcyr/ycmti9.tfm - RELOC/fonts/tfm/public/cmcyr/ycmtt10.tfm - RELOC/fonts/tfm/public/cmcyr/ycmtt12.tfm - RELOC/fonts/tfm/public/cmcyr/ycmtt8.tfm - RELOC/fonts/tfm/public/cmcyr/ycmtt9.tfm - RELOC/fonts/tfm/public/cmcyr/ycmu10.tfm - RELOC/fonts/type1/public/cmcyr/cmcb10.pfb - RELOC/fonts/type1/public/cmcyr/cmcb10.pfm - RELOC/fonts/type1/public/cmcyr/cmcbx10.pfb - RELOC/fonts/type1/public/cmcyr/cmcbx10.pfm - RELOC/fonts/type1/public/cmcyr/cmcbx12.pfb - RELOC/fonts/type1/public/cmcyr/cmcbx12.pfm - RELOC/fonts/type1/public/cmcyr/cmcbx5.pfb - RELOC/fonts/type1/public/cmcyr/cmcbx5.pfm - RELOC/fonts/type1/public/cmcyr/cmcbx6.pfb - RELOC/fonts/type1/public/cmcyr/cmcbx6.pfm - RELOC/fonts/type1/public/cmcyr/cmcbx7.pfb - RELOC/fonts/type1/public/cmcyr/cmcbx7.pfm - RELOC/fonts/type1/public/cmcyr/cmcbx8.pfb - RELOC/fonts/type1/public/cmcyr/cmcbx8.pfm - RELOC/fonts/type1/public/cmcyr/cmcbx9.pfb - RELOC/fonts/type1/public/cmcyr/cmcbx9.pfm - RELOC/fonts/type1/public/cmcyr/cmcbxsl1.pfb - RELOC/fonts/type1/public/cmcyr/cmcbxsl1.pfm - RELOC/fonts/type1/public/cmcyr/cmcbxti1.pfb - RELOC/fonts/type1/public/cmcyr/cmcbxti1.pfm - RELOC/fonts/type1/public/cmcyr/cmccsc10.pfb - RELOC/fonts/type1/public/cmcyr/cmccsc10.pfm - RELOC/fonts/type1/public/cmcyr/cmccsc8.pfb - RELOC/fonts/type1/public/cmcyr/cmccsc8.pfm - RELOC/fonts/type1/public/cmcyr/cmccsc9.pfb - RELOC/fonts/type1/public/cmcyr/cmccsc9.pfm - RELOC/fonts/type1/public/cmcyr/cmcinch7.pfb - RELOC/fonts/type1/public/cmcyr/cmcinch7.pfm - RELOC/fonts/type1/public/cmcyr/cmcitt10.pfb - RELOC/fonts/type1/public/cmcyr/cmcitt10.pfm - RELOC/fonts/type1/public/cmcyr/cmcsl10.pfb - RELOC/fonts/type1/public/cmcyr/cmcsl10.pfm - RELOC/fonts/type1/public/cmcyr/cmcsl12.pfb - RELOC/fonts/type1/public/cmcyr/cmcsl12.pfm - RELOC/fonts/type1/public/cmcyr/cmcsl8.pfb - RELOC/fonts/type1/public/cmcyr/cmcsl8.pfm - RELOC/fonts/type1/public/cmcyr/cmcsl9.pfb - RELOC/fonts/type1/public/cmcyr/cmcsl9.pfm - RELOC/fonts/type1/public/cmcyr/cmcsltt1.pfb - RELOC/fonts/type1/public/cmcyr/cmcsltt1.pfm - RELOC/fonts/type1/public/cmcyr/cmcss10.pfb - RELOC/fonts/type1/public/cmcyr/cmcss10.pfm - RELOC/fonts/type1/public/cmcyr/cmcss12.pfb - RELOC/fonts/type1/public/cmcyr/cmcss12.pfm - RELOC/fonts/type1/public/cmcyr/cmcss17.pfb - RELOC/fonts/type1/public/cmcyr/cmcss17.pfm - RELOC/fonts/type1/public/cmcyr/cmcss8.pfb - RELOC/fonts/type1/public/cmcyr/cmcss8.pfm - RELOC/fonts/type1/public/cmcyr/cmcss9.pfb - RELOC/fonts/type1/public/cmcyr/cmcss9.pfm - RELOC/fonts/type1/public/cmcyr/cmcssbx1.pfb - RELOC/fonts/type1/public/cmcyr/cmcssbx1.pfm - RELOC/fonts/type1/public/cmcyr/cmcssdc1.pfb - RELOC/fonts/type1/public/cmcyr/cmcssdc1.pfm - RELOC/fonts/type1/public/cmcyr/cmcssi10.pfb - RELOC/fonts/type1/public/cmcyr/cmcssi10.pfm - RELOC/fonts/type1/public/cmcyr/cmcssi12.pfb - RELOC/fonts/type1/public/cmcyr/cmcssi12.pfm - RELOC/fonts/type1/public/cmcyr/cmcssi17.pfb - RELOC/fonts/type1/public/cmcyr/cmcssi17.pfm - RELOC/fonts/type1/public/cmcyr/cmcssi8.pfb - RELOC/fonts/type1/public/cmcyr/cmcssi8.pfm - RELOC/fonts/type1/public/cmcyr/cmcssi9.pfb - RELOC/fonts/type1/public/cmcyr/cmcssi9.pfm - RELOC/fonts/type1/public/cmcyr/cmcssq8.pfb - RELOC/fonts/type1/public/cmcyr/cmcssq8.pfm - RELOC/fonts/type1/public/cmcyr/cmcssqi8.pfb - RELOC/fonts/type1/public/cmcyr/cmcssqi8.pfm - RELOC/fonts/type1/public/cmcyr/cmcti10.pfb - RELOC/fonts/type1/public/cmcyr/cmcti10.pfm - RELOC/fonts/type1/public/cmcyr/cmcti12.pfb - RELOC/fonts/type1/public/cmcyr/cmcti12.pfm - RELOC/fonts/type1/public/cmcyr/cmcti7.pfb - RELOC/fonts/type1/public/cmcyr/cmcti7.pfm - RELOC/fonts/type1/public/cmcyr/cmcti8.pfb - RELOC/fonts/type1/public/cmcyr/cmcti8.pfm - RELOC/fonts/type1/public/cmcyr/cmcti9.pfb - RELOC/fonts/type1/public/cmcyr/cmcti9.pfm - RELOC/fonts/type1/public/cmcyr/cmctt10.pfb - RELOC/fonts/type1/public/cmcyr/cmctt10.pfm - RELOC/fonts/type1/public/cmcyr/cmctt12.pfb - RELOC/fonts/type1/public/cmcyr/cmctt12.pfm - RELOC/fonts/type1/public/cmcyr/cmctt8.pfb - RELOC/fonts/type1/public/cmcyr/cmctt8.pfm - RELOC/fonts/type1/public/cmcyr/cmctt9.pfb - RELOC/fonts/type1/public/cmcyr/cmctt9.pfm - RELOC/fonts/type1/public/cmcyr/cmcu10.pfb - RELOC/fonts/type1/public/cmcyr/cmcu10.pfm - RELOC/fonts/type1/public/cmcyr/cmcyr10.pfb - RELOC/fonts/type1/public/cmcyr/cmcyr10.pfm - RELOC/fonts/type1/public/cmcyr/cmcyr12.pfb - RELOC/fonts/type1/public/cmcyr/cmcyr12.pfm - RELOC/fonts/type1/public/cmcyr/cmcyr17.pfb - RELOC/fonts/type1/public/cmcyr/cmcyr17.pfm - RELOC/fonts/type1/public/cmcyr/cmcyr5.pfb - RELOC/fonts/type1/public/cmcyr/cmcyr5.pfm - RELOC/fonts/type1/public/cmcyr/cmcyr6.pfb - RELOC/fonts/type1/public/cmcyr/cmcyr6.pfm - RELOC/fonts/type1/public/cmcyr/cmcyr7.pfb - RELOC/fonts/type1/public/cmcyr/cmcyr7.pfm - RELOC/fonts/type1/public/cmcyr/cmcyr8.pfb - RELOC/fonts/type1/public/cmcyr/cmcyr8.pfm - RELOC/fonts/type1/public/cmcyr/cmcyr9.pfb - RELOC/fonts/type1/public/cmcyr/cmcyr9.pfm - RELOC/fonts/vf/public/cmcyr/kcmb10.vf - RELOC/fonts/vf/public/cmcyr/kcmbx10.vf - RELOC/fonts/vf/public/cmcyr/kcmbx12.vf - RELOC/fonts/vf/public/cmcyr/kcmbx5.vf - RELOC/fonts/vf/public/cmcyr/kcmbx6.vf - RELOC/fonts/vf/public/cmcyr/kcmbx7.vf - RELOC/fonts/vf/public/cmcyr/kcmbx8.vf - RELOC/fonts/vf/public/cmcyr/kcmbx9.vf - RELOC/fonts/vf/public/cmcyr/kcmbxsl10.vf - RELOC/fonts/vf/public/cmcyr/kcmbxti10.vf - RELOC/fonts/vf/public/cmcyr/kcmcsc10.vf - RELOC/fonts/vf/public/cmcyr/kcmcsc8.vf - RELOC/fonts/vf/public/cmcyr/kcmcsc9.vf - RELOC/fonts/vf/public/cmcyr/kcminch.vf - RELOC/fonts/vf/public/cmcyr/kcmitt10.vf - RELOC/fonts/vf/public/cmcyr/kcmmi10.vf - RELOC/fonts/vf/public/cmcyr/kcmmi12.vf - RELOC/fonts/vf/public/cmcyr/kcmmi5.vf - RELOC/fonts/vf/public/cmcyr/kcmmi6.vf - RELOC/fonts/vf/public/cmcyr/kcmmi7.vf - RELOC/fonts/vf/public/cmcyr/kcmmi8.vf - RELOC/fonts/vf/public/cmcyr/kcmmi9.vf - RELOC/fonts/vf/public/cmcyr/kcmmib10.vf - RELOC/fonts/vf/public/cmcyr/kcmr10.vf - RELOC/fonts/vf/public/cmcyr/kcmr12.vf - RELOC/fonts/vf/public/cmcyr/kcmr17.vf - RELOC/fonts/vf/public/cmcyr/kcmr5.vf - RELOC/fonts/vf/public/cmcyr/kcmr6.vf - RELOC/fonts/vf/public/cmcyr/kcmr7.vf - RELOC/fonts/vf/public/cmcyr/kcmr8.vf - RELOC/fonts/vf/public/cmcyr/kcmr9.vf - RELOC/fonts/vf/public/cmcyr/kcmsl10.vf - RELOC/fonts/vf/public/cmcyr/kcmsl12.vf - RELOC/fonts/vf/public/cmcyr/kcmsl8.vf - RELOC/fonts/vf/public/cmcyr/kcmsl9.vf - RELOC/fonts/vf/public/cmcyr/kcmsltt10.vf - RELOC/fonts/vf/public/cmcyr/kcmss10.vf - RELOC/fonts/vf/public/cmcyr/kcmss12.vf - RELOC/fonts/vf/public/cmcyr/kcmss17.vf - RELOC/fonts/vf/public/cmcyr/kcmss8.vf - RELOC/fonts/vf/public/cmcyr/kcmss9.vf - RELOC/fonts/vf/public/cmcyr/kcmssbx10.vf - RELOC/fonts/vf/public/cmcyr/kcmssdc10.vf - RELOC/fonts/vf/public/cmcyr/kcmssi10.vf - RELOC/fonts/vf/public/cmcyr/kcmssi12.vf - RELOC/fonts/vf/public/cmcyr/kcmssi17.vf - RELOC/fonts/vf/public/cmcyr/kcmssi8.vf - RELOC/fonts/vf/public/cmcyr/kcmssi9.vf - RELOC/fonts/vf/public/cmcyr/kcmssq8.vf - RELOC/fonts/vf/public/cmcyr/kcmssqi8.vf - RELOC/fonts/vf/public/cmcyr/kcmti10.vf - RELOC/fonts/vf/public/cmcyr/kcmti12.vf - RELOC/fonts/vf/public/cmcyr/kcmti7.vf - RELOC/fonts/vf/public/cmcyr/kcmti8.vf - RELOC/fonts/vf/public/cmcyr/kcmti9.vf - RELOC/fonts/vf/public/cmcyr/kcmtt10.vf - RELOC/fonts/vf/public/cmcyr/kcmtt12.vf - RELOC/fonts/vf/public/cmcyr/kcmtt8.vf - RELOC/fonts/vf/public/cmcyr/kcmtt9.vf - RELOC/fonts/vf/public/cmcyr/kcmu10.vf - RELOC/fonts/vf/public/cmcyr/wcmb10.vf - RELOC/fonts/vf/public/cmcyr/wcmbx10.vf - RELOC/fonts/vf/public/cmcyr/wcmbx12.vf - RELOC/fonts/vf/public/cmcyr/wcmbx5.vf - RELOC/fonts/vf/public/cmcyr/wcmbx6.vf - RELOC/fonts/vf/public/cmcyr/wcmbx7.vf - RELOC/fonts/vf/public/cmcyr/wcmbx8.vf - RELOC/fonts/vf/public/cmcyr/wcmbx9.vf - RELOC/fonts/vf/public/cmcyr/wcmbxsl10.vf - RELOC/fonts/vf/public/cmcyr/wcmbxti10.vf - RELOC/fonts/vf/public/cmcyr/wcmcsc10.vf - RELOC/fonts/vf/public/cmcyr/wcmcsc8.vf - RELOC/fonts/vf/public/cmcyr/wcmcsc9.vf - RELOC/fonts/vf/public/cmcyr/wcminch.vf - RELOC/fonts/vf/public/cmcyr/wcmitt10.vf - RELOC/fonts/vf/public/cmcyr/wcmmi10.vf - RELOC/fonts/vf/public/cmcyr/wcmmi12.vf - RELOC/fonts/vf/public/cmcyr/wcmmi5.vf - RELOC/fonts/vf/public/cmcyr/wcmmi6.vf - RELOC/fonts/vf/public/cmcyr/wcmmi7.vf - RELOC/fonts/vf/public/cmcyr/wcmmi8.vf - RELOC/fonts/vf/public/cmcyr/wcmmi9.vf - RELOC/fonts/vf/public/cmcyr/wcmmib10.vf - RELOC/fonts/vf/public/cmcyr/wcmr10.vf - RELOC/fonts/vf/public/cmcyr/wcmr12.vf - RELOC/fonts/vf/public/cmcyr/wcmr17.vf - RELOC/fonts/vf/public/cmcyr/wcmr5.vf - RELOC/fonts/vf/public/cmcyr/wcmr6.vf - RELOC/fonts/vf/public/cmcyr/wcmr7.vf - RELOC/fonts/vf/public/cmcyr/wcmr8.vf - RELOC/fonts/vf/public/cmcyr/wcmr9.vf - RELOC/fonts/vf/public/cmcyr/wcmsl10.vf - RELOC/fonts/vf/public/cmcyr/wcmsl12.vf - RELOC/fonts/vf/public/cmcyr/wcmsl8.vf - RELOC/fonts/vf/public/cmcyr/wcmsl9.vf - RELOC/fonts/vf/public/cmcyr/wcmsltt10.vf - RELOC/fonts/vf/public/cmcyr/wcmss10.vf - RELOC/fonts/vf/public/cmcyr/wcmss12.vf - RELOC/fonts/vf/public/cmcyr/wcmss17.vf - RELOC/fonts/vf/public/cmcyr/wcmss8.vf - RELOC/fonts/vf/public/cmcyr/wcmss9.vf - RELOC/fonts/vf/public/cmcyr/wcmssbx10.vf - RELOC/fonts/vf/public/cmcyr/wcmssdc10.vf - RELOC/fonts/vf/public/cmcyr/wcmssi10.vf - RELOC/fonts/vf/public/cmcyr/wcmssi12.vf - RELOC/fonts/vf/public/cmcyr/wcmssi17.vf - RELOC/fonts/vf/public/cmcyr/wcmssi8.vf - RELOC/fonts/vf/public/cmcyr/wcmssi9.vf - RELOC/fonts/vf/public/cmcyr/wcmssq8.vf - RELOC/fonts/vf/public/cmcyr/wcmssqi8.vf - RELOC/fonts/vf/public/cmcyr/wcmti10.vf - RELOC/fonts/vf/public/cmcyr/wcmti12.vf - RELOC/fonts/vf/public/cmcyr/wcmti7.vf - RELOC/fonts/vf/public/cmcyr/wcmti8.vf - RELOC/fonts/vf/public/cmcyr/wcmti9.vf - RELOC/fonts/vf/public/cmcyr/wcmtt10.vf - RELOC/fonts/vf/public/cmcyr/wcmtt12.vf - RELOC/fonts/vf/public/cmcyr/wcmtt8.vf - RELOC/fonts/vf/public/cmcyr/wcmtt9.vf - RELOC/fonts/vf/public/cmcyr/wcmu10.vf - RELOC/fonts/vf/public/cmcyr/xcmb10.vf - RELOC/fonts/vf/public/cmcyr/xcmbx10.vf - RELOC/fonts/vf/public/cmcyr/xcmbx12.vf - RELOC/fonts/vf/public/cmcyr/xcmbx5.vf - RELOC/fonts/vf/public/cmcyr/xcmbx6.vf - RELOC/fonts/vf/public/cmcyr/xcmbx7.vf - RELOC/fonts/vf/public/cmcyr/xcmbx8.vf - RELOC/fonts/vf/public/cmcyr/xcmbx9.vf - RELOC/fonts/vf/public/cmcyr/xcmbxsl10.vf - RELOC/fonts/vf/public/cmcyr/xcmbxti10.vf - RELOC/fonts/vf/public/cmcyr/xcmcsc10.vf - RELOC/fonts/vf/public/cmcyr/xcmcsc8.vf - RELOC/fonts/vf/public/cmcyr/xcmcsc9.vf - RELOC/fonts/vf/public/cmcyr/xcminch.vf - RELOC/fonts/vf/public/cmcyr/xcmitt10.vf - RELOC/fonts/vf/public/cmcyr/xcmmi10.vf - RELOC/fonts/vf/public/cmcyr/xcmmi12.vf - RELOC/fonts/vf/public/cmcyr/xcmmi5.vf - RELOC/fonts/vf/public/cmcyr/xcmmi6.vf - RELOC/fonts/vf/public/cmcyr/xcmmi7.vf - RELOC/fonts/vf/public/cmcyr/xcmmi8.vf - RELOC/fonts/vf/public/cmcyr/xcmmi9.vf - RELOC/fonts/vf/public/cmcyr/xcmmib10.vf - RELOC/fonts/vf/public/cmcyr/xcmr10.vf - RELOC/fonts/vf/public/cmcyr/xcmr12.vf - RELOC/fonts/vf/public/cmcyr/xcmr17.vf - RELOC/fonts/vf/public/cmcyr/xcmr5.vf - RELOC/fonts/vf/public/cmcyr/xcmr6.vf - RELOC/fonts/vf/public/cmcyr/xcmr7.vf - RELOC/fonts/vf/public/cmcyr/xcmr8.vf - RELOC/fonts/vf/public/cmcyr/xcmr9.vf - RELOC/fonts/vf/public/cmcyr/xcmsl10.vf - RELOC/fonts/vf/public/cmcyr/xcmsl12.vf - RELOC/fonts/vf/public/cmcyr/xcmsl8.vf - RELOC/fonts/vf/public/cmcyr/xcmsl9.vf - RELOC/fonts/vf/public/cmcyr/xcmsltt10.vf - RELOC/fonts/vf/public/cmcyr/xcmss10.vf - RELOC/fonts/vf/public/cmcyr/xcmss12.vf - RELOC/fonts/vf/public/cmcyr/xcmss17.vf - RELOC/fonts/vf/public/cmcyr/xcmss8.vf - RELOC/fonts/vf/public/cmcyr/xcmss9.vf - RELOC/fonts/vf/public/cmcyr/xcmssbx10.vf - RELOC/fonts/vf/public/cmcyr/xcmssdc10.vf - RELOC/fonts/vf/public/cmcyr/xcmssi10.vf - RELOC/fonts/vf/public/cmcyr/xcmssi12.vf - RELOC/fonts/vf/public/cmcyr/xcmssi17.vf - RELOC/fonts/vf/public/cmcyr/xcmssi8.vf - RELOC/fonts/vf/public/cmcyr/xcmssi9.vf - RELOC/fonts/vf/public/cmcyr/xcmssq8.vf - RELOC/fonts/vf/public/cmcyr/xcmssqi8.vf - RELOC/fonts/vf/public/cmcyr/xcmti10.vf - RELOC/fonts/vf/public/cmcyr/xcmti12.vf - RELOC/fonts/vf/public/cmcyr/xcmti7.vf - RELOC/fonts/vf/public/cmcyr/xcmti8.vf - RELOC/fonts/vf/public/cmcyr/xcmti9.vf - RELOC/fonts/vf/public/cmcyr/xcmtt10.vf - RELOC/fonts/vf/public/cmcyr/xcmtt12.vf - RELOC/fonts/vf/public/cmcyr/xcmtt8.vf - RELOC/fonts/vf/public/cmcyr/xcmtt9.vf - RELOC/fonts/vf/public/cmcyr/xcmu10.vf - RELOC/fonts/vf/public/cmcyr/ycmb10.vf - RELOC/fonts/vf/public/cmcyr/ycmbx10.vf - RELOC/fonts/vf/public/cmcyr/ycmbx12.vf - RELOC/fonts/vf/public/cmcyr/ycmbx5.vf - RELOC/fonts/vf/public/cmcyr/ycmbx6.vf - RELOC/fonts/vf/public/cmcyr/ycmbx7.vf - RELOC/fonts/vf/public/cmcyr/ycmbx8.vf - RELOC/fonts/vf/public/cmcyr/ycmbx9.vf - RELOC/fonts/vf/public/cmcyr/ycmbxsl10.vf - RELOC/fonts/vf/public/cmcyr/ycmbxti10.vf - RELOC/fonts/vf/public/cmcyr/ycmcsc10.vf - RELOC/fonts/vf/public/cmcyr/ycmcsc8.vf - RELOC/fonts/vf/public/cmcyr/ycmcsc9.vf - RELOC/fonts/vf/public/cmcyr/ycminch.vf - RELOC/fonts/vf/public/cmcyr/ycmitt10.vf - RELOC/fonts/vf/public/cmcyr/ycmmi10.vf - RELOC/fonts/vf/public/cmcyr/ycmmi12.vf - RELOC/fonts/vf/public/cmcyr/ycmmi5.vf - RELOC/fonts/vf/public/cmcyr/ycmmi6.vf - RELOC/fonts/vf/public/cmcyr/ycmmi7.vf - RELOC/fonts/vf/public/cmcyr/ycmmi8.vf - RELOC/fonts/vf/public/cmcyr/ycmmi9.vf - RELOC/fonts/vf/public/cmcyr/ycmmib10.vf - RELOC/fonts/vf/public/cmcyr/ycmr10.vf - RELOC/fonts/vf/public/cmcyr/ycmr12.vf - RELOC/fonts/vf/public/cmcyr/ycmr17.vf - RELOC/fonts/vf/public/cmcyr/ycmr5.vf - RELOC/fonts/vf/public/cmcyr/ycmr6.vf - RELOC/fonts/vf/public/cmcyr/ycmr7.vf - RELOC/fonts/vf/public/cmcyr/ycmr8.vf - RELOC/fonts/vf/public/cmcyr/ycmr9.vf - RELOC/fonts/vf/public/cmcyr/ycmsl10.vf - RELOC/fonts/vf/public/cmcyr/ycmsl12.vf - RELOC/fonts/vf/public/cmcyr/ycmsl8.vf - RELOC/fonts/vf/public/cmcyr/ycmsl9.vf - RELOC/fonts/vf/public/cmcyr/ycmsltt10.vf - RELOC/fonts/vf/public/cmcyr/ycmss10.vf - RELOC/fonts/vf/public/cmcyr/ycmss12.vf - RELOC/fonts/vf/public/cmcyr/ycmss17.vf - RELOC/fonts/vf/public/cmcyr/ycmss8.vf - RELOC/fonts/vf/public/cmcyr/ycmss9.vf - RELOC/fonts/vf/public/cmcyr/ycmssbx10.vf - RELOC/fonts/vf/public/cmcyr/ycmssdc10.vf - RELOC/fonts/vf/public/cmcyr/ycmssi10.vf - RELOC/fonts/vf/public/cmcyr/ycmssi12.vf - RELOC/fonts/vf/public/cmcyr/ycmssi17.vf - RELOC/fonts/vf/public/cmcyr/ycmssi8.vf - RELOC/fonts/vf/public/cmcyr/ycmssi9.vf - RELOC/fonts/vf/public/cmcyr/ycmssq8.vf - RELOC/fonts/vf/public/cmcyr/ycmssqi8.vf - RELOC/fonts/vf/public/cmcyr/ycmti10.vf - RELOC/fonts/vf/public/cmcyr/ycmti12.vf - RELOC/fonts/vf/public/cmcyr/ycmti7.vf - RELOC/fonts/vf/public/cmcyr/ycmti8.vf - RELOC/fonts/vf/public/cmcyr/ycmti9.vf - RELOC/fonts/vf/public/cmcyr/ycmtt10.vf - RELOC/fonts/vf/public/cmcyr/ycmtt12.vf - RELOC/fonts/vf/public/cmcyr/ycmtt8.vf - RELOC/fonts/vf/public/cmcyr/ycmtt9.vf - RELOC/fonts/vf/public/cmcyr/ycmu10.vf -docfiles size=40 - RELOC/doc/fonts/cmcyr/README - RELOC/doc/fonts/cmcyr/cmalt - RELOC/doc/fonts/cmcyr/cmalte - RELOC/doc/fonts/cmcyr/cmiso - RELOC/doc/fonts/cmcyr/cmisoe - RELOC/doc/fonts/cmcyr/cmkde - RELOC/doc/fonts/cmcyr/cmkdee - RELOC/doc/fonts/cmcyr/cmkoi8 - RELOC/doc/fonts/cmcyr/cmkoi8e - RELOC/doc/fonts/cmcyr/cmwin - RELOC/doc/fonts/cmcyr/cmwine - RELOC/doc/fonts/cmcyr/coding.bak - RELOC/doc/fonts/cmcyr/cyralt - RELOC/doc/fonts/cmcyr/cyralte - RELOC/doc/fonts/cmcyr/cyriso - RELOC/doc/fonts/cmcyr/cyrisoe - RELOC/doc/fonts/cmcyr/cyrkde - RELOC/doc/fonts/cmcyr/cyrkdee - RELOC/doc/fonts/cmcyr/cyrkoi8 - RELOC/doc/fonts/cmcyr/cyrkoi8e - RELOC/doc/fonts/cmcyr/cyrwin - RELOC/doc/fonts/cmcyr/cyrwine - RELOC/doc/fonts/cmcyr/merge.6i - RELOC/doc/fonts/cmcyr/merge.6k - RELOC/doc/fonts/cmcyr/merge.6w - RELOC/doc/fonts/cmcyr/merge.alt - RELOC/doc/fonts/cmcyr/merge.bat - RELOC/doc/fonts/cmcyr/merge.iso - RELOC/doc/fonts/cmcyr/merge.koi - RELOC/doc/fonts/cmcyr/merge.o6w - RELOC/doc/fonts/cmcyr/merge.win - RELOC/doc/fonts/cmcyr/vf/cmcyr6i/merge.bat - RELOC/doc/fonts/cmcyr/vf/cmcyr6k/merge.bat - RELOC/doc/fonts/cmcyr/vf/cmcyr6w/merge.bat - RELOC/doc/fonts/cmcyr/wncalt - RELOC/doc/fonts/cmcyr/wncalte - RELOC/doc/fonts/cmcyr/wnciso - RELOC/doc/fonts/cmcyr/wncisoe - RELOC/doc/fonts/cmcyr/wnckoi8 - RELOC/doc/fonts/cmcyr/wnckoi8e -catalogue-ctan /fonts/cyrillic/cmcyr -catalogue-date 2014-04-09 15:04:56 +0200 -catalogue-license pd - -name cmdstring -category Package -revision 15878 -shortdesc Get command name reliably. -relocated 1 -longdesc Extracts the letters of a command's name (e.g., foo for command -longdesc \foo), in a reliable way. -runfiles size=1 - RELOC/tex/latex/cmdstring/cmdstring.sty -docfiles size=90 - RELOC/doc/latex/cmdstring/README - RELOC/doc/latex/cmdstring/cmdstring.pdf - RELOC/doc/latex/cmdstring/cmdstring.tex -catalogue-ctan /macros/latex/contrib/cmdstring -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.1 - -name cmdtrack -category Package -revision 28910 -shortdesc Check used commands. -relocated 1 -longdesc The package keeps track of whether a command defined in a -longdesc document preamble is actually used somewhere in the document. -longdesc After the package is loaded in the preamble of a document, all -longdesc \newcommand (and similar command definitions) between that -longdesc point and the beginning of the document will be marked for -longdesc logging. At the end of the document a report of command usage -longdesc will be printed in the TeX log, for example: "mdash was used on -longdesc line 25"; "ndash was never used". -runfiles size=2 - RELOC/tex/latex/cmdtrack/cmdtrack.sty -docfiles size=34 - RELOC/doc/latex/cmdtrack/Makefile - RELOC/doc/latex/cmdtrack/README - RELOC/doc/latex/cmdtrack/cmdtrack.pdf -srcfiles size=5 - RELOC/source/latex/cmdtrack/cmdtrack.dtx - RELOC/source/latex/cmdtrack/cmdtrack.ins -catalogue-ctan /macros/latex/contrib/cmdtrack -catalogue-date 2014-10-16 15:17:19 +0200 -catalogue-license lppl1 - -name cmextra -category Package -revision 32831 -catalogue knuth-local -shortdesc Knuth's local information. -relocated 1 -longdesc A collection of experimental programs and developments based -longdesc on, or complementary to, the matter in his distribution -longdesc directories. -runfiles size=58 - RELOC/fonts/source/public/cmextra/bible12.mf - RELOC/fonts/source/public/cmextra/cmbxcd10.mf - RELOC/fonts/source/public/cmextra/cmbxti12.mf - RELOC/fonts/source/public/cmextra/cmbxti7.mf - RELOC/fonts/source/public/cmextra/cmcscsl10.mf - RELOC/fonts/source/public/cmextra/cmfibs8.mf - RELOC/fonts/source/public/cmextra/cmitt12.mf - RELOC/fonts/source/public/cmextra/cmitt9.mf - RELOC/fonts/source/public/cmextra/cmman.mf - RELOC/fonts/source/public/cmextra/cmntex10.mf - RELOC/fonts/source/public/cmextra/cmntt10.mf - RELOC/fonts/source/public/cmextra/cmsl6.mf - RELOC/fonts/source/public/cmextra/cmsltt9.mf - RELOC/fonts/source/public/cmextra/cmssbxo10.mf - RELOC/fonts/source/public/cmextra/cmsslu30.mf - RELOC/fonts/source/public/cmextra/cmssu30.mf - RELOC/fonts/source/public/cmextra/cmsytt10.mf - RELOC/fonts/source/public/cmextra/cmtim.mf - RELOC/fonts/source/public/cmextra/cmvtti10.mf - RELOC/fonts/source/public/cmextra/diam12.mf - RELOC/fonts/source/public/cmextra/gen.mf - RELOC/fonts/source/public/cmextra/gen10.mf - RELOC/fonts/source/public/cmextra/gen8.mf - RELOC/fonts/source/public/cmextra/gen9.mf - RELOC/fonts/tfm/public/cmextra/bible12.tfm - RELOC/fonts/tfm/public/cmextra/cmbxcd10.tfm - RELOC/fonts/tfm/public/cmextra/cmbxti12.tfm - RELOC/fonts/tfm/public/cmextra/cmbxti7.tfm - RELOC/fonts/tfm/public/cmextra/cmcscsl10.tfm - RELOC/fonts/tfm/public/cmextra/cmfibs8.tfm - RELOC/fonts/tfm/public/cmextra/cmitt12.tfm - RELOC/fonts/tfm/public/cmextra/cmitt9.tfm - RELOC/fonts/tfm/public/cmextra/cmman.tfm - RELOC/fonts/tfm/public/cmextra/cmntex10.tfm - RELOC/fonts/tfm/public/cmextra/cmntt10.tfm - RELOC/fonts/tfm/public/cmextra/cmsl6.tfm - RELOC/fonts/tfm/public/cmextra/cmsltt9.tfm - RELOC/fonts/tfm/public/cmextra/cmssbxo10.tfm - RELOC/fonts/tfm/public/cmextra/cmsslu30.tfm - RELOC/fonts/tfm/public/cmextra/cmssu30.tfm - RELOC/fonts/tfm/public/cmextra/cmsytt10.tfm - RELOC/fonts/tfm/public/cmextra/cmtim.tfm - RELOC/fonts/tfm/public/cmextra/cmvtti10.tfm - RELOC/fonts/tfm/public/cmextra/diam12.tfm - RELOC/fonts/tfm/public/cmextra/gen10.tfm - RELOC/fonts/tfm/public/cmextra/gen8.tfm - RELOC/fonts/tfm/public/cmextra/gen9.tfm -catalogue-ctan /systems/knuth/local -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license knuth - -name cm-lgc -category Package -revision 28250 -shortdesc Type 1 CM-based fonts for Latin, Greek and Cyrillic. +revision 28250 +shortdesc Type 1 CM-based fonts for Latin, Greek and Cyrillic relocated 1 longdesc The fonts are converted from Metafont sources of the Computer longdesc Modern font families, using textrace. Supported encodings are: @@ -30229,6 +50604,16 @@ longdesc single size only; it offers a compact set for 'general' longdesc working. The fonts themselves are encoded to external longdesc standards, and virtual fonts are provided for use with TeX. execute addMap cm-lgc.map +containersize 4867236 +containerchecksum 5fcf591d132314d8ce160e3070036f6fba56962ed40d8fee7b58b0e8219a8124bcf380b1be4e943209ba230f05cfcd374c96e3e799695a018356d12be3215760 +doccontainersize 89820 +doccontainerchecksum eda2082e865dec858a010b757a2d60e0be9526d2e5f2c276d1c5e8d386a71f4d7631d1af8dee009f9d61e0682904697bfdc89222863499c8e1aca2b11d0f3ed9 +docfiles size=31 + RELOC/doc/fonts/cm-lgc/COPYING + RELOC/doc/fonts/cm-lgc/HISTORY + RELOC/doc/fonts/cm-lgc/INSTALL details="Installation instructions" + RELOC/doc/fonts/cm-lgc/README details="Bundle Readme" + RELOC/doc/fonts/cm-lgc/scripts.tar.gz runfiles size=5154 RELOC/fonts/afm/public/cm-lgc/fcmb6y.afm RELOC/fonts/afm/public/cm-lgc/fcmb6z.afm @@ -30875,226 +51260,40 @@ runfiles size=5154 RELOC/tex/latex/cm-lgc/ut1fcm.fd RELOC/tex/latex/cm-lgc/ut1fcs.fd RELOC/tex/latex/cm-lgc/ut1fct.fd -docfiles size=31 - RELOC/doc/fonts/cm-lgc/COPYING - RELOC/doc/fonts/cm-lgc/HISTORY - RELOC/doc/fonts/cm-lgc/INSTALL - RELOC/doc/fonts/cm-lgc/README - RELOC/doc/fonts/cm-lgc/scripts.tar.gz catalogue-ctan /fonts/ps-type1/cm-lgc -catalogue-date 2012-12-31 10:40:46 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics font font-serif font-sans font-mono font-greek font-cyrillic font-type1 omega catalogue-version 0.5 -name cmll +name cm-mf-extra-bold category Package -revision 17964 -shortdesc Symbols for linear logic. +revision 45796 +shortdesc Extra Metafont files for CM relocated 1 -longdesc This is a very small font set that contain some symbols useful -longdesc in linear logic, which are apparently not available elsewhere. -longdesc Variants are included for use with Computer Modern serif and -longdesc sans-serif and with the AMS Euler series. The font is provided -longdesc both as Metafont source, and in Adobe Type 1 format. LaTeX -longdesc support is provided. -execute addMixedMap cmll.map -runfiles size=191 - RELOC/fonts/map/dvips/cmll/cmll.map - RELOC/fonts/source/public/cmll/cmllbx10.mf - RELOC/fonts/source/public/cmll/cmllbx12.mf - RELOC/fonts/source/public/cmll/cmllbx5.mf - RELOC/fonts/source/public/cmll/cmllbx6.mf - RELOC/fonts/source/public/cmll/cmllbx7.mf - RELOC/fonts/source/public/cmll/cmllbx8.mf - RELOC/fonts/source/public/cmll/cmllbx9.mf - RELOC/fonts/source/public/cmll/cmllr10.mf - RELOC/fonts/source/public/cmll/cmllr12.mf - RELOC/fonts/source/public/cmll/cmllr17.mf - RELOC/fonts/source/public/cmll/cmllr5.mf - RELOC/fonts/source/public/cmll/cmllr6.mf - RELOC/fonts/source/public/cmll/cmllr7.mf - RELOC/fonts/source/public/cmll/cmllr8.mf - RELOC/fonts/source/public/cmll/cmllr9.mf - RELOC/fonts/source/public/cmll/cmllss10.mf - RELOC/fonts/source/public/cmll/cmllss12.mf - RELOC/fonts/source/public/cmll/cmllss17.mf - RELOC/fonts/source/public/cmll/cmllss8.mf - RELOC/fonts/source/public/cmll/cmllss9.mf - RELOC/fonts/source/public/cmll/cmllssbx10.mf - RELOC/fonts/source/public/cmll/eullbx10.mf - RELOC/fonts/source/public/cmll/eullbx5.mf - RELOC/fonts/source/public/cmll/eullbx6.mf - RELOC/fonts/source/public/cmll/eullbx7.mf - RELOC/fonts/source/public/cmll/eullbx8.mf - RELOC/fonts/source/public/cmll/eullbx9.mf - RELOC/fonts/source/public/cmll/eullr10.mf - RELOC/fonts/source/public/cmll/eullr5.mf - RELOC/fonts/source/public/cmll/eullr6.mf - RELOC/fonts/source/public/cmll/eullr7.mf - RELOC/fonts/source/public/cmll/eullr8.mf - RELOC/fonts/source/public/cmll/eullr9.mf - RELOC/fonts/source/public/cmll/llcommon.mf - RELOC/fonts/source/public/cmll/lleusym.mf - RELOC/fonts/source/public/cmll/llsymbols.mf - RELOC/fonts/tfm/public/cmll/cmllbx10.tfm - RELOC/fonts/tfm/public/cmll/cmllbx12.tfm - RELOC/fonts/tfm/public/cmll/cmllbx5.tfm - RELOC/fonts/tfm/public/cmll/cmllbx6.tfm - RELOC/fonts/tfm/public/cmll/cmllbx7.tfm - RELOC/fonts/tfm/public/cmll/cmllbx8.tfm - RELOC/fonts/tfm/public/cmll/cmllbx9.tfm - RELOC/fonts/tfm/public/cmll/cmllr10.tfm - RELOC/fonts/tfm/public/cmll/cmllr12.tfm - RELOC/fonts/tfm/public/cmll/cmllr17.tfm - RELOC/fonts/tfm/public/cmll/cmllr5.tfm - RELOC/fonts/tfm/public/cmll/cmllr6.tfm - RELOC/fonts/tfm/public/cmll/cmllr7.tfm - RELOC/fonts/tfm/public/cmll/cmllr8.tfm - RELOC/fonts/tfm/public/cmll/cmllr9.tfm - RELOC/fonts/tfm/public/cmll/cmllss10.tfm - RELOC/fonts/tfm/public/cmll/cmllss12.tfm - RELOC/fonts/tfm/public/cmll/cmllss17.tfm - RELOC/fonts/tfm/public/cmll/cmllss8.tfm - RELOC/fonts/tfm/public/cmll/cmllss9.tfm - RELOC/fonts/tfm/public/cmll/cmllssbx10.tfm - RELOC/fonts/tfm/public/cmll/eullbx10.tfm - RELOC/fonts/tfm/public/cmll/eullbx5.tfm - RELOC/fonts/tfm/public/cmll/eullbx6.tfm - RELOC/fonts/tfm/public/cmll/eullbx7.tfm - RELOC/fonts/tfm/public/cmll/eullbx8.tfm - RELOC/fonts/tfm/public/cmll/eullbx9.tfm - RELOC/fonts/tfm/public/cmll/eullr10.tfm - RELOC/fonts/tfm/public/cmll/eullr5.tfm - RELOC/fonts/tfm/public/cmll/eullr6.tfm - RELOC/fonts/tfm/public/cmll/eullr7.tfm - RELOC/fonts/tfm/public/cmll/eullr8.tfm - RELOC/fonts/tfm/public/cmll/eullr9.tfm - RELOC/fonts/type1/public/cmll/cmllbx10.pfb - RELOC/fonts/type1/public/cmll/cmllbx12.pfb - RELOC/fonts/type1/public/cmll/cmllbx5.pfb - RELOC/fonts/type1/public/cmll/cmllbx6.pfb - RELOC/fonts/type1/public/cmll/cmllbx7.pfb - RELOC/fonts/type1/public/cmll/cmllbx8.pfb - RELOC/fonts/type1/public/cmll/cmllbx9.pfb - RELOC/fonts/type1/public/cmll/cmllr10.pfb - RELOC/fonts/type1/public/cmll/cmllr12.pfb - RELOC/fonts/type1/public/cmll/cmllr17.pfb - RELOC/fonts/type1/public/cmll/cmllr5.pfb - RELOC/fonts/type1/public/cmll/cmllr6.pfb - RELOC/fonts/type1/public/cmll/cmllr7.pfb - RELOC/fonts/type1/public/cmll/cmllr8.pfb - RELOC/fonts/type1/public/cmll/cmllr9.pfb - RELOC/fonts/type1/public/cmll/cmllss10.pfb - RELOC/fonts/type1/public/cmll/cmllss12.pfb - RELOC/fonts/type1/public/cmll/cmllss17.pfb - RELOC/fonts/type1/public/cmll/cmllss8.pfb - RELOC/fonts/type1/public/cmll/cmllss9.pfb - RELOC/fonts/type1/public/cmll/cmllssbx10.pfb - RELOC/fonts/type1/public/cmll/eullbx10.pfb - RELOC/fonts/type1/public/cmll/eullbx5.pfb - RELOC/fonts/type1/public/cmll/eullbx6.pfb - RELOC/fonts/type1/public/cmll/eullbx7.pfb - RELOC/fonts/type1/public/cmll/eullbx8.pfb - RELOC/fonts/type1/public/cmll/eullbx9.pfb - RELOC/fonts/type1/public/cmll/eullr10.pfb - RELOC/fonts/type1/public/cmll/eullr5.pfb - RELOC/fonts/type1/public/cmll/eullr6.pfb - RELOC/fonts/type1/public/cmll/eullr7.pfb - RELOC/fonts/type1/public/cmll/eullr8.pfb - RELOC/fonts/type1/public/cmll/eullr9.pfb - RELOC/tex/latex/cmll/cmll.sty - RELOC/tex/latex/cmll/ucmllr.fd - RELOC/tex/latex/cmll/ucmllss.fd - RELOC/tex/latex/cmll/ueull.fd -docfiles size=28 - RELOC/doc/fonts/cmll/README - RELOC/doc/fonts/cmll/cmll.pdf -srcfiles size=5 - RELOC/source/latex/cmll/cmll.dtx - RELOC/source/latex/cmll/cmll.ins -catalogue-ctan /fonts/cmll -catalogue-date 2014-04-24 13:39:23 +0200 -catalogue-license lppl - -name cmpica -category Package -revision 15878 -shortdesc A Computer Modern Pica variant. -relocated 1 -longdesc An approximate equivalent of the Xerox Pica typeface; the font -longdesc is optimised for submitting fiction manuscripts to mainline -longdesc publishers. The font is a fixed-width one, rather less heavy -longdesc than Computer Modern typewriter. Emphasis for bold-face comes -longdesc from a wavy underline of each letter. The two fonts are -longdesc supplied as Metafont source. -runfiles size=13 - RELOC/fonts/source/public/cmpica/cmpica.mf - RELOC/fonts/source/public/cmpica/cmpicab.mf - RELOC/fonts/source/public/cmpica/cmpicati.mf - RELOC/fonts/source/public/cmpica/pcpunct.mf - RELOC/fonts/source/public/cmpica/pica.mf - RELOC/fonts/tfm/public/cmpica/cmpica.tfm - RELOC/fonts/tfm/public/cmpica/cmpicab.tfm - RELOC/fonts/tfm/public/cmpica/cmpicati.tfm -docfiles size=1 - RELOC/doc/latex/cmpica/README -catalogue-ctan /fonts/cmpica -catalogue-date 2014-04-09 16:14:23 +0200 -catalogue-license pd - -name cmpj -category Package -revision 33275 -shortdesc Style for the journal Condensed Matter Physics. -relocated 1 -longdesc The package contains macros and some documentation for -longdesc typesetting papers for submission to the Condensed Matter -longdesc Physics journal published by the Institute for Condensed Matter -longdesc Physics of the National Academy of Sciences of Ukraine. -runfiles size=49 - RELOC/bibtex/bst/cmpj/cmpj.bst - RELOC/tex/latex/cmpj/cmp-logo.eps - RELOC/tex/latex/cmpj/cmp-logo.pdf - RELOC/tex/latex/cmpj/cmpj.sty - RELOC/tex/latex/cmpj/cmpj2.sty -docfiles size=159 - RELOC/doc/latex/cmpj/README - RELOC/doc/latex/cmpj/eps_demo.eps - RELOC/doc/latex/cmpj/eps_demo.pdf - RELOC/doc/latex/cmpj/icmphome.eps - RELOC/doc/latex/cmpj/icmphome.pdf - RELOC/doc/latex/cmpj/template.pdf - RELOC/doc/latex/cmpj/template.tex -catalogue-ctan /macros/latex/contrib/cmpj -catalogue-date 2014-03-24 19:05:19 +0100 -catalogue-license lppl -catalogue-version 2.05 - -name cmsd -category Package -revision 18787 -shortdesc Interfaces to the CM Sans Serif Bold fonts. -relocated 1 -longdesc Thr purpose of the package is to provide an alternative -longdesc interface to the CM Sans Serif boldface fonts. The EC (T1, -longdesc Cork) encoded versions of the 'CM Sans Serif boldface extended' -longdesc fonts differ considerably from the traditionally (OT1) encoded -longdesc ones: at large sizes, >10pt, they have thinner strokes and are -longdesc much wider. At 25pt they are hardly to be recognized as being -longdesc 'boldface'. This package attempts to make these T1 fonts look -longdesc like the traditional ones did. You do not need any new fonts; -longdesc the package just changes the way LaTeX makes use of the current -longdesc ones. -runfiles size=3 - RELOC/tex/latex/cmsd/cmsd.sty - RELOC/tex/latex/cmsd/t1cmsd.fd - RELOC/tex/latex/cmsd/ts1cmsd.fd -docfiles size=2 - RELOC/doc/latex/cmsd/liesmich - RELOC/doc/latex/cmsd/readme -catalogue-ctan /macros/latex/contrib/cmsd -catalogue-date 2013-09-30 15:43:44 +0200 -catalogue-license lppl +longdesc The bundle provides bold versions of cmcsc, cmex, cmtex and +longdesc cmtt fonts (all parts of the standard computer modern font +longdesc distribution), as Metafont base files. +containersize 4916 +containerchecksum c9a9c5631ce016112ccd37ac3325c753e608bdc55e1de524742ce81f1ffa6c53ad6d113346d9d90cbe5466fe301d27050d40bff258678df840c693987afaf6ad +runfiles size=15 + RELOC/fonts/source/public/cm-mf-extra-bold/cmbcsc10.mf + RELOC/fonts/source/public/cm-mf-extra-bold/cmbtex10.mf + RELOC/fonts/source/public/cm-mf-extra-bold/cmbtt10.mf + RELOC/fonts/source/public/cm-mf-extra-bold/cmbtt8.mf + RELOC/fonts/source/public/cm-mf-extra-bold/cmbtt9.mf + RELOC/fonts/source/public/cm-mf-extra-bold/cmexb10.mf + RELOC/fonts/source/public/cm-mf-extra-bold/cmttb10.mf + RELOC/fonts/tfm/public/cm-mf-extra-bold/cmbcsc10.tfm + RELOC/fonts/tfm/public/cm-mf-extra-bold/cmbtex10.tfm + RELOC/fonts/tfm/public/cm-mf-extra-bold/cmbtt10.tfm + RELOC/fonts/tfm/public/cm-mf-extra-bold/cmbtt8.tfm + RELOC/fonts/tfm/public/cm-mf-extra-bold/cmbtt9.tfm + RELOC/fonts/tfm/public/cm-mf-extra-bold/cmttb10.tfm +catalogue-ctan /fonts/cm/mf-extra/bold +catalogue-date 2017-11-12 11:19:12 +0100 +catalogue-license gplpd +catalogue-topics font font-mf name cm-super category Package @@ -31113,6 +51312,18 @@ execute addMixedMap cm-super-t2b.map execute addMixedMap cm-super-t2c.map execute addMixedMap cm-super-ts1.map execute addMixedMap cm-super-x2.map +containersize 64562404 +containerchecksum 45638ebf4ef2ffb7c4b74669ea089a9f8d3ab4b98e555b3f9b2e9bd9732b48fdba61dc91188e2c8962b8bfa3caaab31c10d1ccd3e0aa9e26197b148e59576f8f +doccontainersize 22564 +doccontainerchecksum 5b524c55dbcfa1db87484d3437156ca9987fcca66e2c2e6d69e562c48ae708e51f089051524f324cbafb72a29e08f90e70c408d7fea7341e9ef0b5d53288b7d3 +docfiles size=17 + RELOC/doc/fonts/cm-super/COPYING + RELOC/doc/fonts/cm-super/ChangeLog + RELOC/doc/fonts/cm-super/FAQ details="Frequently Asked Questions" + RELOC/doc/fonts/cm-super/INSTALL + RELOC/doc/fonts/cm-super/README details="Bundle Readme" + RELOC/doc/fonts/cm-super/TODO + RELOC/doc/fonts/cm-super/cm-super-inf.tar.bz2 runfiles size=17068 RELOC/dvips/cm-super/cm-super.GS RELOC/dvips/cm-super/config.cm-super @@ -31954,302 +52165,15 @@ runfiles size=17068 RELOC/fonts/type1/public/cm-super/sfxc2986.pfb RELOC/fonts/type1/public/cm-super/sfxc3583.pfb RELOC/tex/latex/cm-super/type1ec.sty -docfiles size=17 - RELOC/doc/fonts/cm-super/COPYING - RELOC/doc/fonts/cm-super/ChangeLog - RELOC/doc/fonts/cm-super/FAQ - RELOC/doc/fonts/cm-super/INSTALL - RELOC/doc/fonts/cm-super/README - RELOC/doc/fonts/cm-super/TODO - RELOC/doc/fonts/cm-super/cm-super-inf.tar.bz2 catalogue-ctan /fonts/ps-type1/cm-super -catalogue-date 2014-07-11 15:31:42 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl - -name cmtiup -category Package -revision 20512 -shortdesc Upright punctuation with CM italic. -relocated 1 -longdesc The cmtiup fonts address a problem with the appearance of -longdesc punctuation in italic text in mathematical documents. To -longdesc achieve this, all punctuation characters are upright, and -longdesc kerning between letters and punctuation is adjusted to allow -longdesc for the italic correction. The fonts are implemented as a set -longdesc of vf files; a package for support in LaTeX 2e is provided. -runfiles size=23 - RELOC/fonts/source/public/cmtiup/cmtiup10.mf - RELOC/fonts/source/public/cmtiup/cmtiup12.mf - RELOC/fonts/source/public/cmtiup/cmtiup7.mf - RELOC/fonts/source/public/cmtiup/cmtiup8.mf - RELOC/fonts/source/public/cmtiup/cmtiup9.mf - RELOC/fonts/source/public/cmtiup/cmtiupgn.mf - RELOC/fonts/source/public/cmtiup/cmtiuplg.mf - RELOC/fonts/source/public/cmtiup/cmtiupp.mf - RELOC/fonts/tfm/public/cmtiup/cmtiup10.tfm - RELOC/fonts/tfm/public/cmtiup/cmtiup12.tfm - RELOC/fonts/tfm/public/cmtiup/cmtiup7.tfm - RELOC/fonts/tfm/public/cmtiup/cmtiup8.tfm - RELOC/fonts/tfm/public/cmtiup/cmtiup9.tfm - RELOC/fonts/vf/public/cmtiup/cmtiup10.vf - RELOC/fonts/vf/public/cmtiup/cmtiup12.vf - RELOC/fonts/vf/public/cmtiup/cmtiup7.vf - RELOC/fonts/vf/public/cmtiup/cmtiup8.vf - RELOC/fonts/vf/public/cmtiup/cmtiup9.vf - RELOC/tex/latex/cmtiup/cmtiup.sty -docfiles size=154 - RELOC/doc/latex/cmtiup/README - RELOC/doc/latex/cmtiup/cmtiup.dtx - RELOC/doc/latex/cmtiup/cmtiup.ins - RELOC/doc/latex/cmtiup/cmtiup.pdf - RELOC/doc/latex/cmtiup/testfont.pdf -catalogue-ctan /fonts/cm/cmtiup -catalogue-date 2014-04-24 00:33:23 +0200 -catalogue-license lppl1.3 -catalogue-version 1.3a - -name cm -category Package -revision 32865 -shortdesc Computer Modern fonts. -relocated 1 -longdesc Knuth's final iteration of his re-interpretation of a c.19 -longdesc Modern-style font from Monotype. The family is comprehensive, -longdesc offering both sans and roman styles, and a monospaced font, -longdesc together with mathematics fonts closely integrated with the -longdesc mathematical facilities of TeX itself. The base fonts are -longdesc distributed as Metafont source, but autotraced PostScript Type -longdesc 1 versions are available (one version in the AMS fonts -longdesc distribution, and also the BaKoMa distribution). The Computer -longdesc Modern fonts have inspired many later families, notably the -longdesc European Computer Modern and the Latin Modern families. -execute addMixedMap cmtext-bsr-interpolated.map -runfiles size=350 - RELOC/fonts/map/dvips/cm/cmtext-bsr-interpolated.map - RELOC/fonts/pk/ljfour/public/cm/dpi600/cmbx10.pk - RELOC/fonts/pk/ljfour/public/cm/dpi600/cmex10.pk - RELOC/fonts/pk/ljfour/public/cm/dpi600/cmmi10.pk - RELOC/fonts/pk/ljfour/public/cm/dpi600/cmmi7.pk - RELOC/fonts/pk/ljfour/public/cm/dpi600/cmr10.pk - RELOC/fonts/pk/ljfour/public/cm/dpi600/cmr12.pk - RELOC/fonts/pk/ljfour/public/cm/dpi600/cmr17.pk - RELOC/fonts/pk/ljfour/public/cm/dpi600/cmr6.pk - RELOC/fonts/pk/ljfour/public/cm/dpi600/cmr7.pk - RELOC/fonts/pk/ljfour/public/cm/dpi600/cmr8.pk - RELOC/fonts/pk/ljfour/public/cm/dpi600/cmsl10.pk - RELOC/fonts/pk/ljfour/public/cm/dpi600/cmsy10.pk - RELOC/fonts/pk/ljfour/public/cm/dpi600/cmsy7.pk - RELOC/fonts/pk/ljfour/public/cm/dpi600/cmti10.pk - RELOC/fonts/source/public/cm/accent.mf - RELOC/fonts/source/public/cm/bigacc.mf - RELOC/fonts/source/public/cm/bigdel.mf - RELOC/fonts/source/public/cm/bigop.mf - RELOC/fonts/source/public/cm/calu.mf - RELOC/fonts/source/public/cm/cmb10.mf - RELOC/fonts/source/public/cm/cmbase.mf - RELOC/fonts/source/public/cm/cmbcsc10.mf - RELOC/fonts/source/public/cm/cmbsy10.mf - RELOC/fonts/source/public/cm/cmbtex10.mf - RELOC/fonts/source/public/cm/cmbtt10.mf - RELOC/fonts/source/public/cm/cmbtt8.mf - RELOC/fonts/source/public/cm/cmbtt9.mf - RELOC/fonts/source/public/cm/cmbx10.mf - RELOC/fonts/source/public/cm/cmbx12.mf - RELOC/fonts/source/public/cm/cmbx5.mf - RELOC/fonts/source/public/cm/cmbx6.mf - RELOC/fonts/source/public/cm/cmbx7.mf - RELOC/fonts/source/public/cm/cmbx8.mf - RELOC/fonts/source/public/cm/cmbx9.mf - RELOC/fonts/source/public/cm/cmbxsl10.mf - RELOC/fonts/source/public/cm/cmbxti10.mf - RELOC/fonts/source/public/cm/cmcsc10.mf - RELOC/fonts/source/public/cm/cmdunh10.mf - RELOC/fonts/source/public/cm/cmex10.mf - RELOC/fonts/source/public/cm/cmexb10.mf - RELOC/fonts/source/public/cm/cmff10.mf - RELOC/fonts/source/public/cm/cmfi10.mf - RELOC/fonts/source/public/cm/cmfib8.mf - RELOC/fonts/source/public/cm/cminch.mf - RELOC/fonts/source/public/cm/cmitt10.mf - RELOC/fonts/source/public/cm/cmmi10.mf - RELOC/fonts/source/public/cm/cmmi12.mf - RELOC/fonts/source/public/cm/cmmi5.mf - RELOC/fonts/source/public/cm/cmmi6.mf - RELOC/fonts/source/public/cm/cmmi7.mf - RELOC/fonts/source/public/cm/cmmi8.mf - RELOC/fonts/source/public/cm/cmmi9.mf - RELOC/fonts/source/public/cm/cmmib10.mf - RELOC/fonts/source/public/cm/cmplain.mf - RELOC/fonts/source/public/cm/cmr10.mf - RELOC/fonts/source/public/cm/cmr12.mf - RELOC/fonts/source/public/cm/cmr17.mf - RELOC/fonts/source/public/cm/cmr5.mf - RELOC/fonts/source/public/cm/cmr6.mf - RELOC/fonts/source/public/cm/cmr7.mf - RELOC/fonts/source/public/cm/cmr8.mf - RELOC/fonts/source/public/cm/cmr9.mf - RELOC/fonts/source/public/cm/cmsl10.mf - RELOC/fonts/source/public/cm/cmsl12.mf - RELOC/fonts/source/public/cm/cmsl8.mf - RELOC/fonts/source/public/cm/cmsl9.mf - RELOC/fonts/source/public/cm/cmsltt10.mf - RELOC/fonts/source/public/cm/cmss10.mf - RELOC/fonts/source/public/cm/cmss12.mf - RELOC/fonts/source/public/cm/cmss17.mf - RELOC/fonts/source/public/cm/cmss8.mf - RELOC/fonts/source/public/cm/cmss9.mf - RELOC/fonts/source/public/cm/cmssbx10.mf - RELOC/fonts/source/public/cm/cmssdc10.mf - RELOC/fonts/source/public/cm/cmssi10.mf - RELOC/fonts/source/public/cm/cmssi12.mf - RELOC/fonts/source/public/cm/cmssi17.mf - RELOC/fonts/source/public/cm/cmssi8.mf - RELOC/fonts/source/public/cm/cmssi9.mf - RELOC/fonts/source/public/cm/cmssq8.mf - RELOC/fonts/source/public/cm/cmssqi8.mf - RELOC/fonts/source/public/cm/cmsy10.mf - RELOC/fonts/source/public/cm/cmsy5.mf - RELOC/fonts/source/public/cm/cmsy6.mf - RELOC/fonts/source/public/cm/cmsy7.mf - RELOC/fonts/source/public/cm/cmsy8.mf - RELOC/fonts/source/public/cm/cmsy9.mf - RELOC/fonts/source/public/cm/cmtcsc10.mf - RELOC/fonts/source/public/cm/cmtex10.mf - RELOC/fonts/source/public/cm/cmtex8.mf - RELOC/fonts/source/public/cm/cmtex9.mf - RELOC/fonts/source/public/cm/cmti10.mf - RELOC/fonts/source/public/cm/cmti12.mf - RELOC/fonts/source/public/cm/cmti7.mf - RELOC/fonts/source/public/cm/cmti8.mf - RELOC/fonts/source/public/cm/cmti9.mf - RELOC/fonts/source/public/cm/cmtt10.mf - RELOC/fonts/source/public/cm/cmtt12.mf - RELOC/fonts/source/public/cm/cmtt8.mf - RELOC/fonts/source/public/cm/cmtt9.mf - RELOC/fonts/source/public/cm/cmttb10.mf - RELOC/fonts/source/public/cm/cmu10.mf - RELOC/fonts/source/public/cm/cmvtt10.mf - RELOC/fonts/source/public/cm/comlig.mf - RELOC/fonts/source/public/cm/csc.mf - RELOC/fonts/source/public/cm/cscspu.mf - RELOC/fonts/source/public/cm/greekl.mf - RELOC/fonts/source/public/cm/greeku.mf - RELOC/fonts/source/public/cm/itald.mf - RELOC/fonts/source/public/cm/italig.mf - RELOC/fonts/source/public/cm/itall.mf - RELOC/fonts/source/public/cm/italms.mf - RELOC/fonts/source/public/cm/italp.mf - RELOC/fonts/source/public/cm/italsp.mf - RELOC/fonts/source/public/cm/mathex.mf - RELOC/fonts/source/public/cm/mathit.mf - RELOC/fonts/source/public/cm/mathsy.mf - RELOC/fonts/source/public/cm/olddig.mf - RELOC/fonts/source/public/cm/punct.mf - RELOC/fonts/source/public/cm/roman.mf - RELOC/fonts/source/public/cm/romand.mf - RELOC/fonts/source/public/cm/romanl.mf - RELOC/fonts/source/public/cm/romanp.mf - RELOC/fonts/source/public/cm/romanu.mf - RELOC/fonts/source/public/cm/romlig.mf - RELOC/fonts/source/public/cm/romms.mf - RELOC/fonts/source/public/cm/romspl.mf - RELOC/fonts/source/public/cm/romspu.mf - RELOC/fonts/source/public/cm/romsub.mf - RELOC/fonts/source/public/cm/sym.mf - RELOC/fonts/source/public/cm/symbol.mf - RELOC/fonts/source/public/cm/texset.mf - RELOC/fonts/source/public/cm/textit.mf - RELOC/fonts/source/public/cm/title.mf - RELOC/fonts/source/public/cm/tset.mf - RELOC/fonts/source/public/cm/tsetsl.mf - RELOC/fonts/source/public/cm/white_setup.mf - RELOC/fonts/tfm/public/cm/cmb10.tfm - RELOC/fonts/tfm/public/cm/cmbcsc10.tfm - RELOC/fonts/tfm/public/cm/cmbsy10.tfm - RELOC/fonts/tfm/public/cm/cmbx10.tfm - RELOC/fonts/tfm/public/cm/cmbx12.tfm - RELOC/fonts/tfm/public/cm/cmbx5.tfm - RELOC/fonts/tfm/public/cm/cmbx6.tfm - RELOC/fonts/tfm/public/cm/cmbx7.tfm - RELOC/fonts/tfm/public/cm/cmbx8.tfm - RELOC/fonts/tfm/public/cm/cmbx9.tfm - RELOC/fonts/tfm/public/cm/cmbxsl10.tfm - RELOC/fonts/tfm/public/cm/cmbxti10.tfm - RELOC/fonts/tfm/public/cm/cmcsc10.tfm - RELOC/fonts/tfm/public/cm/cmdunh10.tfm - RELOC/fonts/tfm/public/cm/cmex10.tfm - RELOC/fonts/tfm/public/cm/cmff10.tfm - RELOC/fonts/tfm/public/cm/cmfi10.tfm - RELOC/fonts/tfm/public/cm/cmfib8.tfm - RELOC/fonts/tfm/public/cm/cminch.tfm - RELOC/fonts/tfm/public/cm/cmitt10.tfm - RELOC/fonts/tfm/public/cm/cmmi10.tfm - RELOC/fonts/tfm/public/cm/cmmi12.tfm - RELOC/fonts/tfm/public/cm/cmmi5.tfm - RELOC/fonts/tfm/public/cm/cmmi6.tfm - RELOC/fonts/tfm/public/cm/cmmi7.tfm - RELOC/fonts/tfm/public/cm/cmmi8.tfm - RELOC/fonts/tfm/public/cm/cmmi9.tfm - RELOC/fonts/tfm/public/cm/cmmib10.tfm - RELOC/fonts/tfm/public/cm/cmr10.tfm - RELOC/fonts/tfm/public/cm/cmr12.tfm - RELOC/fonts/tfm/public/cm/cmr17.tfm - RELOC/fonts/tfm/public/cm/cmr5.tfm - RELOC/fonts/tfm/public/cm/cmr6.tfm - RELOC/fonts/tfm/public/cm/cmr7.tfm - RELOC/fonts/tfm/public/cm/cmr8.tfm - RELOC/fonts/tfm/public/cm/cmr9.tfm - RELOC/fonts/tfm/public/cm/cmsl10.tfm - RELOC/fonts/tfm/public/cm/cmsl12.tfm - RELOC/fonts/tfm/public/cm/cmsl8.tfm - RELOC/fonts/tfm/public/cm/cmsl9.tfm - RELOC/fonts/tfm/public/cm/cmsltt10.tfm - RELOC/fonts/tfm/public/cm/cmss10.tfm - RELOC/fonts/tfm/public/cm/cmss12.tfm - RELOC/fonts/tfm/public/cm/cmss17.tfm - RELOC/fonts/tfm/public/cm/cmss8.tfm - RELOC/fonts/tfm/public/cm/cmss9.tfm - RELOC/fonts/tfm/public/cm/cmssbx10.tfm - RELOC/fonts/tfm/public/cm/cmssdc10.tfm - RELOC/fonts/tfm/public/cm/cmssi10.tfm - RELOC/fonts/tfm/public/cm/cmssi12.tfm - RELOC/fonts/tfm/public/cm/cmssi17.tfm - RELOC/fonts/tfm/public/cm/cmssi8.tfm - RELOC/fonts/tfm/public/cm/cmssi9.tfm - RELOC/fonts/tfm/public/cm/cmssq8.tfm - RELOC/fonts/tfm/public/cm/cmssqi8.tfm - RELOC/fonts/tfm/public/cm/cmsy10.tfm - RELOC/fonts/tfm/public/cm/cmsy5.tfm - RELOC/fonts/tfm/public/cm/cmsy6.tfm - RELOC/fonts/tfm/public/cm/cmsy7.tfm - RELOC/fonts/tfm/public/cm/cmsy8.tfm - RELOC/fonts/tfm/public/cm/cmsy9.tfm - RELOC/fonts/tfm/public/cm/cmtcsc10.tfm - RELOC/fonts/tfm/public/cm/cmtex10.tfm - RELOC/fonts/tfm/public/cm/cmtex8.tfm - RELOC/fonts/tfm/public/cm/cmtex9.tfm - RELOC/fonts/tfm/public/cm/cmti10.tfm - RELOC/fonts/tfm/public/cm/cmti12.tfm - RELOC/fonts/tfm/public/cm/cmti7.tfm - RELOC/fonts/tfm/public/cm/cmti8.tfm - RELOC/fonts/tfm/public/cm/cmti9.tfm - RELOC/fonts/tfm/public/cm/cmtt10.tfm - RELOC/fonts/tfm/public/cm/cmtt12.tfm - RELOC/fonts/tfm/public/cm/cmtt8.tfm - RELOC/fonts/tfm/public/cm/cmtt9.tfm - RELOC/fonts/tfm/public/cm/cmu10.tfm - RELOC/fonts/tfm/public/cm/cmvtt10.tfm -docfiles size=2 - RELOC/doc/fonts/cm/README - RELOC/doc/fonts/cm/README-cmps.txt -catalogue-ctan /fonts/cm -catalogue-date 2014-07-11 15:31:42 +0200 -catalogue-license knuth +catalogue-topics font font-proportional font-mono font-cyrillic font-type1 font-cm name cm-unicode category Package revision 19445 -shortdesc Computer Modern Unicode font family. +shortdesc Computer Modern Unicode font family relocated 1 longdesc Computer Modern Unicode fonts, converted from Metafont sources longdesc using mftrace with autotrace backend and fontforge. Some @@ -32261,6 +52185,26 @@ longdesc font set contains 33 fonts. This archive contains AFM, PFB and longdesc OTF versions; the OTF version of the Computer Modern Unicode longdesc fonts works with TeX engines that directly support OpenType longdesc features, such as XeTeX and LuaTeX. +containersize 14122276 +containerchecksum b50e647db3be42cb8bc7f1df849590b4f3f8856523c57d16aa5b42237a3f7fbd381ea5f05c1337091a66fe667841704133828141eb8c40e50f595498949acd65 +doccontainersize 950712 +doccontainerchecksum 162e407cb299b1a4ee353fcd0cee7eee048f8356def550d591630f12924b4a5ff0e9d6f9a0652c3dee7a88e5c2521b0c23ba4549bdfcb21a90c1949ef566183f +docfiles size=292 + RELOC/doc/fonts/cm-unicode/Changes + RELOC/doc/fonts/cm-unicode/FAQ + RELOC/doc/fonts/cm-unicode/FontLog.txt + RELOC/doc/fonts/cm-unicode/Fontmap.CMU.alias + RELOC/doc/fonts/cm-unicode/Fontmap.CMU.otf + RELOC/doc/fonts/cm-unicode/Fontmap.CMU.pfb + RELOC/doc/fonts/cm-unicode/INSTALL + RELOC/doc/fonts/cm-unicode/OFL-FAQ.txt + RELOC/doc/fonts/cm-unicode/OFL.txt + RELOC/doc/fonts/cm-unicode/README details="Readme" + RELOC/doc/fonts/cm-unicode/README.doc + RELOC/doc/fonts/cm-unicode/TODO + RELOC/doc/fonts/cm-unicode/cmunrm.pdf details="Upright font tables" + RELOC/doc/fonts/cm-unicode/cmunti.pdf details="Italic font tables" + RELOC/doc/fonts/cm-unicode/config.cmu runfiles size=6942 RELOC/fonts/afm/public/cm-unicode/cmunbbx.afm RELOC/fonts/afm/public/cm-unicode/cmunbi.afm @@ -32378,813 +52322,4386 @@ runfiles size=6942 RELOC/fonts/type1/public/cm-unicode/cmunui.pfb RELOC/fonts/type1/public/cm-unicode/cmunvi.pfb RELOC/fonts/type1/public/cm-unicode/cmunvt.pfb -docfiles size=292 - RELOC/doc/fonts/cm-unicode/Changes - RELOC/doc/fonts/cm-unicode/FAQ - RELOC/doc/fonts/cm-unicode/FontLog.txt - RELOC/doc/fonts/cm-unicode/Fontmap.CMU.alias - RELOC/doc/fonts/cm-unicode/Fontmap.CMU.otf - RELOC/doc/fonts/cm-unicode/Fontmap.CMU.pfb - RELOC/doc/fonts/cm-unicode/INSTALL - RELOC/doc/fonts/cm-unicode/OFL-FAQ.txt - RELOC/doc/fonts/cm-unicode/OFL.txt - RELOC/doc/fonts/cm-unicode/README - RELOC/doc/fonts/cm-unicode/README.doc - RELOC/doc/fonts/cm-unicode/TODO - RELOC/doc/fonts/cm-unicode/cmunrm.pdf - RELOC/doc/fonts/cm-unicode/cmunti.pdf - RELOC/doc/fonts/cm-unicode/config.cmu +catalogue-contact-home http://canopus.iacp.dvo.ru/~panov/cm-unicode/ catalogue-ctan /fonts/cm-unicode -catalogue-date 2014-07-11 15:31:42 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license ofl +catalogue-topics font font-serif font-sans font-proportional font-mono font-cyrillic font-greek font-type1 font-otf font-cm catalogue-version 0.7.0 -name cnbwp -category Package -revision 32550 -shortdesc Typeset working papers of the Czech National Bank. -relocated 1 -longdesc The package supports proper formatting of Working Papers of the -longdesc Czech National Bank (WP CNB). The package was developed for CNB -longdesc but it is also intended for authors from outside CNB. -runfiles size=15 - RELOC/bibtex/bst/cnbwp/abbrvcnb.bst - RELOC/makeindex/cnbwp/cnbindex.ist - RELOC/tex/latex/cnbwp/cnbwp-manual.sty - RELOC/tex/latex/cnbwp/cnbwp.cls - RELOC/tex/latex/cnbwp/cnbwpsizes.clo -docfiles size=246 - RELOC/doc/latex/cnbwp/README - RELOC/doc/latex/cnbwp/biblio.tex - RELOC/doc/latex/cnbwp/cnbpaper.pdf - RELOC/doc/latex/cnbwp/cnbpaper.tex - RELOC/doc/latex/cnbwp/cnbsample.bib - RELOC/doc/latex/cnbwp/cnbwp-manual-cs.pdf - RELOC/doc/latex/cnbwp/cnbwp-manual-cs.tex - RELOC/doc/latex/cnbwp/cnbwp-manual-en.pdf - RELOC/doc/latex/cnbwp/cnbwp-manual-en.tex - RELOC/doc/latex/cnbwp/graph18.eps - RELOC/doc/latex/cnbwp/graph18.gif - RELOC/doc/latex/cnbwp/graph18.jpg - RELOC/doc/latex/cnbwp/graph18.pdf - RELOC/doc/latex/cnbwp/graph18.png - RELOC/doc/latex/cnbwp/numtable.tex - RELOC/doc/latex/cnbwp/widematrix.tex -catalogue-ctan /macros/latex/contrib/cnbwp -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl - -name cnltx -category Package -revision 38138 -shortdesc LaTeX tools and documenting facilities -relocated 1 -longdesc This is a versatile bundle of packages and classes for -longdesc consistent formatting of control sequences, package options, -longdesc source code examples, and writing a package manual (including -longdesc an index containing the explained control sequences, options, -longdesc ldots). The bundle also provides several other small ideas of -longdesc mine such as a mechansim for providing abbreviations etc. Not -longdesc at least it provides a number of programming tools. The -longdesc intention behind this bundle mainly is a selfish one: -longdesc documenting my own packages. The bundle contains an index style -longdesc file cnltx.ist that should be placed in a directory in a TDS -longdesc makeindex directory. -runfiles size=50 - RELOC/bibtex/bib/cnltx/cnltx.bib - RELOC/makeindex/cnltx/cnltx.ist - RELOC/tex/latex/cnltx/cnltx-base.sty - RELOC/tex/latex/cnltx/cnltx-doc.cls - RELOC/tex/latex/cnltx/cnltx-example.sty - RELOC/tex/latex/cnltx/cnltx-listings.sty - RELOC/tex/latex/cnltx/cnltx-names.sty - RELOC/tex/latex/cnltx/cnltx-tools.sty - RELOC/tex/latex/cnltx/cnltx-translations.sty - RELOC/tex/latex/cnltx/cnltx.bbx - RELOC/tex/latex/cnltx/cnltx.cbx - RELOC/tex/latex/cnltx/cnltx.dbx - RELOC/tex/latex/cnltx/cnltx.sty -docfiles size=223 - RELOC/doc/latex/cnltx/README - RELOC/doc/latex/cnltx/cnltx_en.pdf - RELOC/doc/latex/cnltx/cnltx_en.tex -catalogue-ctan /macros/latex/contrib/cnltx -catalogue-date 2015-08-17 17:04:10 +0200 -catalogue-license lppl1.3 -catalogue-topics doc-supp class expl3 -catalogue-version 0.13 - -name cns -category Package -revision 15878 -relocated 1 -runfiles size=2650 - RELOC/fonts/misc/cns/4040w0.bin - RELOC/fonts/misc/cns/4040w1.bin - RELOC/fonts/misc/cns/4040w2.bin - RELOC/fonts/misc/cns/4040w3.bin - RELOC/fonts/misc/cns/4040w4.bin - RELOC/fonts/misc/cns/4040w5.bin - RELOC/fonts/misc/cns/4040w6.bin - RELOC/fonts/misc/cns/4040w7.bin - RELOC/fonts/misc/cns/cns40-1.hbf - RELOC/fonts/misc/cns/cns40-2.hbf - RELOC/fonts/misc/cns/cns40-3.hbf - RELOC/fonts/misc/cns/cns40-4.hbf - RELOC/fonts/misc/cns/cns40-5.hbf - RELOC/fonts/misc/cns/cns40-6.hbf - RELOC/fonts/misc/cns/cns40-7.hbf - RELOC/fonts/misc/cns/cns40-b5.hbf - RELOC/fonts/tfm/cns/c0so12/c0so1201.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1202.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1203.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1204.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1205.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1206.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1207.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1208.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1209.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1210.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1211.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1212.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1213.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1214.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1215.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1216.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1217.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1218.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1219.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1220.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1221.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1222.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1223.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1224.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1225.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1226.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1227.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1228.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1229.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1230.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1231.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1232.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1233.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1234.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1235.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1236.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1237.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1238.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1239.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1240.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1241.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1242.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1243.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1244.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1245.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1246.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1247.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1248.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1249.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1250.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1251.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1252.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1253.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1254.tfm - RELOC/fonts/tfm/cns/c0so12/c0so1255.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1201.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1202.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1203.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1204.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1205.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1206.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1207.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1208.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1209.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1210.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1211.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1212.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1213.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1214.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1215.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1216.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1217.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1218.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1219.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1220.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1221.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1222.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1223.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1224.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1225.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1226.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1227.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1228.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1229.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1230.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1231.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1232.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1233.tfm - RELOC/fonts/tfm/cns/c1so12/c1so1234.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1201.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1202.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1203.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1204.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1205.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1206.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1207.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1208.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1209.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1210.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1211.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1212.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1213.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1214.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1215.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1216.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1217.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1218.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1219.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1220.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1221.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1222.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1223.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1224.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1225.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1226.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1227.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1228.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1229.tfm - RELOC/fonts/tfm/cns/c2so12/c2so1230.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1201.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1202.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1203.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1204.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1205.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1206.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1207.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1208.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1209.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1210.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1211.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1212.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1213.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1214.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1215.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1216.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1217.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1218.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1219.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1220.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1221.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1222.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1223.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1224.tfm - RELOC/fonts/tfm/cns/c3so12/c3so1225.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1201.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1202.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1203.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1204.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1205.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1206.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1207.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1208.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1209.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1210.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1211.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1212.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1213.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1214.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1215.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1216.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1217.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1218.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1219.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1220.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1221.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1222.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1223.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1224.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1225.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1226.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1227.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1228.tfm - RELOC/fonts/tfm/cns/c4so12/c4so1229.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1201.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1202.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1203.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1204.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1205.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1206.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1207.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1208.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1209.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1210.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1211.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1212.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1213.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1214.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1215.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1216.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1217.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1218.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1219.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1220.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1221.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1222.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1223.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1224.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1225.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1226.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1227.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1228.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1229.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1230.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1231.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1232.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1233.tfm - RELOC/fonts/tfm/cns/c5so12/c5so1234.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1201.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1202.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1203.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1204.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1205.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1206.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1207.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1208.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1209.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1210.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1211.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1212.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1213.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1214.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1215.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1216.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1217.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1218.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1219.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1220.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1221.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1222.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1223.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1224.tfm - RELOC/fonts/tfm/cns/c6so12/c6so1225.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1201.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1202.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1203.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1204.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1205.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1206.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1207.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1208.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1209.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1210.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1211.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1212.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1213.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1214.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1215.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1216.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1217.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1218.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1219.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1220.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1221.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1222.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1223.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1224.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1225.tfm - RELOC/fonts/tfm/cns/c7so12/c7so1226.tfm -docfiles size=8 - RELOC/doc/fonts/cns/cns40-1/README - RELOC/doc/fonts/cns/cns40-2/README - RELOC/doc/fonts/cns/cns40-3/README - RELOC/doc/fonts/cns/cns40-4/README - RELOC/doc/fonts/cns/cns40-5/README - RELOC/doc/fonts/cns/cns40-6/README - RELOC/doc/fonts/cns/cns40-7/README - RELOC/doc/fonts/cns/cns40-b5/README - -name cntformats -category Package -revision 34668 -shortdesc A different way to read counters. -relocated 1 -longdesc The package offers package or class authors a way to format -longdesc counters with 'patterns'. These patterns do not affect affect -longdesc 'normal' LaTeX treatment of counters. -runfiles size=3 - RELOC/tex/latex/cntformats/cntformats.sty -docfiles size=109 - RELOC/doc/latex/cntformats/README - RELOC/doc/latex/cntformats/cntformats_en.pdf - RELOC/doc/latex/cntformats/cntformats_en.tex -catalogue-ctan /macros/latex/contrib/cntformats -catalogue-date 2014-08-03 00:20:31 +0200 -catalogue-license lppl1.3 -catalogue-version 0.7 - -name cntperchap -category Package -revision 37572 -shortdesc Store counter values per chapter. -relocated 1 -longdesc This package stores values of counters (which have been -longdesc registered beforehand) on a per chapter base and provides the -longdesc values on demand in the 2nd LaTeX compilation run. In this way -longdesc it is possible to know how many sections etc. there are lying -longdesc ahead and to react to these counter values, if needed. This is -longdesc a preliminary version that has been tested with book.cls, -longdesc memoir.cls, and scrbook.cls. The packages assoccnt (by the same -longdesc author) and xparse are needed as well. -runfiles size=3 - RELOC/tex/latex/cntperchap/cntperchap.sty -docfiles size=74 - RELOC/doc/latex/cntperchap/README - RELOC/doc/latex/cntperchap/cntperchap_doc.pdf - RELOC/doc/latex/cntperchap/cntperchap_doc.tex - RELOC/doc/latex/cntperchap/cntperchap_example.pdf - RELOC/doc/latex/cntperchap/cntperchap_example.tex -catalogue-ctan /macros/latex/contrib/cntperchap -catalogue-date 2015-06-12 07:44:45 +0200 -catalogue-license lppl1.3 -catalogue-topics counter-mgmt macro-supp -catalogue-version 0.3 - -name codedoc +name cmap category Package -revision 17630 -shortdesc LaTeX code and documentation in LaTeX-format file. +revision 42428 +shortdesc Make PDF files searchable and copyable relocated 1 -longdesc The CodeDoc class is an alternative to DocStrip (and others) to -longdesc produce LaTeX code along with its documentation without -longdesc departing from LaTeX's ordinary syntax. The documentation is -longdesc prepared like any other LaTeX document and the code to be -longdesc commented verbatim is simply delimited by an environment. When -longdesc an option is turned on in the class options, this code is -longdesc written to the desired file(s). The class also includes fully -longdesc customizable verbatim environments which provide the author -longdesc with separate commands to typeset the material and/or to -longdesc execute it. +longdesc The cmap package provides character map tables, which make PDF +longdesc files generated by pdfLaTeX both searchable and copy-able in +longdesc acrobat reader and other compliant PDF viewers. Encodings +longdesc supported are OT1, T1, T2A, T2B, T2C and T5, together with LAE +longdesc (Arabic), LFE (Farsi) and LGR (Greek) and a variant OT1tt for +longdesc cmtt-like fonts. The package's main limitation currently is the +longdesc inability to work with virtual fonts, because of limitations of +longdesc pdfTeX. This restriction may be resolved in a future version of +longdesc pdfTeX. +containersize 5576 +containerchecksum d907b1483bcd8de1b2b3158ad1a90493e86a27bd60f3ea901011866e81d57b22a555da0e54340f77ae9584aba3960959e89071330d035671c549e887fbedbdef +doccontainersize 2196 +doccontainerchecksum c3ca940f836f5c5e433adedb404d3f1033d8efde61bbd9a043356889377e0914fe9dcb8cce8c2b9252502de6af3cc1a8bd71dbfc61e12446cc07bc9d5d2c2668 +docfiles size=2 + RELOC/doc/latex/cmap/README details="Readme" runfiles size=12 - RELOC/tex/latex/codedoc/codedoc.cls -docfiles size=187 - RELOC/doc/latex/codedoc/CodeDoc-manual.pdf - RELOC/doc/latex/codedoc/CodeDoc-manual.tex - RELOC/doc/latex/codedoc/README -catalogue-ctan /macros/latex/contrib/codedoc -catalogue-date 2014-02-26 23:03:13 +0100 + RELOC/tex/latex/cmap/cmap.sty + RELOC/tex/latex/cmap/lae.cmap + RELOC/tex/latex/cmap/lfe.cmap + RELOC/tex/latex/cmap/lgr.cmap + RELOC/tex/latex/cmap/ot1.cmap + RELOC/tex/latex/cmap/ot1tt.cmap + RELOC/tex/latex/cmap/ot6.cmap + RELOC/tex/latex/cmap/t1.cmap + RELOC/tex/latex/cmap/t2a.cmap + RELOC/tex/latex/cmap/t2b.cmap + RELOC/tex/latex/cmap/t2c.cmap + RELOC/tex/latex/cmap/t5.cmap +catalogue-also pdftex mmap +catalogue-ctan /macros/latex/contrib/cmap +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl -catalogue-version 0.3 - -name codepage -category Package -revision 21126 -shortdesc Support for variant code pages. -relocated 1 -longdesc The package provides a mechanism for inputting non-ASCII text. -longdesc Nowadays, the job is mostly done by the inputenc package in the -longdesc LaTeX distribution. -runfiles size=26 - RELOC/tex/latex/codepage/code437.tex - RELOC/tex/latex/codepage/code850.tex - RELOC/tex/latex/codepage/codeiso1.tex - RELOC/tex/latex/codepage/codemac.tex - RELOC/tex/latex/codepage/codepage.sty - RELOC/tex/latex/codepage/initcar.tex - RELOC/tex/latex/codepage/shapecm.tex - RELOC/tex/latex/codepage/shapedc.tex -docfiles size=81 - RELOC/doc/latex/codepage/LISEZMOI - RELOC/doc/latex/codepage/README - RELOC/doc/latex/codepage/codepage.pdf - RELOC/doc/latex/codepage/demo.zip - RELOC/doc/latex/codepage/frintro.pdf -srcfiles size=37 - RELOC/source/latex/codepage/codepage.drv - RELOC/source/latex/codepage/codepage.dtx - RELOC/source/latex/codepage/codepage.ins - RELOC/source/latex/codepage/frintro.drv -catalogue-ctan /macros/latex/contrib/codepage -catalogue-date 2012-05-17 00:55:12 +0200 -catalogue-license other-free +catalogue-topics pdf-feat +catalogue-version 1.0h -name codesection +name cmarrows category Package -revision 34481 -shortdesc Provides an environment that may be conditionally included. +revision 24378 +shortdesc MetaPost arrows and braces in the Computer Modern style relocated 1 -longdesc This package provides an environment to switch a section of -longdesc code on or off. The code may be placed anywhere in the file (it -longdesc is not limited to the document or the preamble). The motivation -longdesc for this package was to have commands which allow preselection -longdesc based on whether sections of code in a preamble of a template -longdesc are executed. -runfiles size=2 - RELOC/tex/latex/codesection/codesection.sty -docfiles size=94 - RELOC/doc/latex/codesection/README - RELOC/doc/latex/codesection/codesection.pdf -srcfiles size=4 - RELOC/source/latex/codesection/codesection.dtx - RELOC/source/latex/codesection/codesection.ins -catalogue-ctan /macros/latex/contrib/codesection -catalogue-date 2015-03-30 22:55:45 +0200 -catalogue-license lppl1.3 -catalogue-version 0.1 +longdesc This MetaPost package contains macros to draw arrows and braces +longdesc in the Computer Modern style. +containersize 10204 +containerchecksum 5f56f9ab77b2f250aff664b0007aa17eccad96d6f674ae7417f610b62d84123fc85bc80cf83948e0df2a7bfb721300e149fc764b03638e5005cc4832f2fa5544 +doccontainersize 47780 +doccontainerchecksum 0bc738eb48fc34b7cb35240622925d43e5ff5fce21b1c560158b2ceee2790a284b33816fd192a5b0161544ee5add98f4e3ebe7dd0165273d53e5ea2de7d994ac +docfiles size=14 + RELOC/doc/metapost/cmarrows/README details="Readme" + RELOC/doc/metapost/cmarrows/cmarrows.pdf details="Package documentation" +runfiles size=59 + RELOC/metapost/cmarrows/cmarrows.mp + RELOC/metapost/cmarrows/rgbx0009.mp + RELOC/metapost/cmarrows/rgbx0016.mp + RELOC/metapost/cmarrows/rgbx0020.mp + RELOC/metapost/cmarrows/rgbx0025.mp + RELOC/metapost/cmarrows/sgbx0008.mp + RELOC/metapost/cmarrows/sgbx0010.mp + RELOC/metapost/cmarrows/sgbx0011.mp + RELOC/metapost/cmarrows/sgbx0012.mp + RELOC/metapost/cmarrows/sgbx0013.mp + RELOC/metapost/cmarrows/sgbx0014.mp + RELOC/metapost/cmarrows/sgbx0015.mp + RELOC/metapost/cmarrows/sgbx0017.mp + RELOC/metapost/cmarrows/sgbx0018.mp + RELOC/metapost/cmarrows/sgbx0019.mp + RELOC/metapost/cmarrows/sgbx0021.mp + RELOC/metapost/cmarrows/sgbx0022.mp + RELOC/metapost/cmarrows/sgbx0023.mp + RELOC/metapost/cmarrows/sgbx0024.mp + RELOC/metapost/cmarrows/tgbx0000.mp + RELOC/metapost/cmarrows/tgbx0001.mp + RELOC/metapost/cmarrows/tgbx0002.mp + RELOC/metapost/cmarrows/tgbx0003.mp + RELOC/metapost/cmarrows/tgbx0004.mp + RELOC/metapost/cmarrows/tgbx0005.mp + RELOC/metapost/cmarrows/tgbx0006.mp + RELOC/metapost/cmarrows/tgbx0007.mp + RELOC/metapost/cmarrows/tgbx0027.mp +catalogue-also pst-text +catalogue-ctan /graphics/metapost/contrib/macros/cmarrows +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-symb +catalogue-version 0.9 -name codicefiscaleitaliano +name cmbright category Package -revision 29803 -shortdesc Test the consistency of the Italian personal Fiscal Code. +revision 21107 +shortdesc Computer Modern Bright fonts relocated 1 -longdesc The alphanumeric string that forms the Italian personal Fiscal -longdesc Code is prone to be misspelled thus rendering a legal document -longdesc invalid. The package quickly verifies the consistency of the -longdesc fiscal code string, and can therefore be useful for lawyers and -longdesc accountants that use fiscal codes very frequently. -runfiles size=1 - RELOC/tex/latex/codicefiscaleitaliano/codicefiscaleitaliano.sty -docfiles size=54 - RELOC/doc/latex/codicefiscaleitaliano/README - RELOC/doc/latex/codicefiscaleitaliano/codicefiscaleitaliano.pdf -srcfiles size=6 - RELOC/source/latex/codicefiscaleitaliano/codicefiscaleitaliano.dtx -catalogue-ctan /macros/latex/contrib/codicefiscaleitaliano -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.2 +longdesc A family of sans serif fonts for TeX and LaTeX, based on Donald +longdesc Knuth's CM fonts. It comprises OT1, T1 and TS1 encoded text +longdesc fonts of various shapes as well as all the fonts necessary for +longdesc mathematical typesetting, including AMS symbols. This +longdesc collection provides all the necessary files for using the fonts +longdesc with LaTeX. A commercial-quality Adobe Type 1 version of these +longdesc fonts is available from Micropress. Free versions are +longdesc available, in the cm-super font bundle (the T1 and TS1 encoded +longdesc part of the set), and in the hfbright package (the OT1 encoded +longdesc part, and the maths fonts). +containersize 111916 +containerchecksum 3251c7ce9f139a9e553e3cf343339367e98e6982850ca3d2a2087efe5e26f4828597e6f5c1ac85567e81897a09239f5be717a6a85d04b164442c9c5c53ea4fac +doccontainersize 61056 +doccontainerchecksum 7add06e9502ab0bf912e811afbb66caf7ac83d60b6e2575dbc75709438ce6252239a43106632633e2d90b2badd46bb800533c496c811de7316cd1766456058c9 +docfiles size=27 + RELOC/doc/fonts/cmbright/LICENSE + RELOC/doc/fonts/cmbright/README details="Readme" + RELOC/doc/fonts/cmbright/cmbright.txt + RELOC/doc/fonts/cmbright/manifest.txt + RELOC/doc/latex/cmbright/cmbright.pdf details="Package documentation" +srccontainersize 6944 +srccontainerchecksum 5824d33c26e94cf0ec8d2b69d0c80c715a68ef98ab5e2025c84fc20dcda2be4b89125dfe69400f2f27d46b773c5a3918af533cc2c25fad01694776bf5a546879 +srcfiles size=7 + RELOC/source/latex/cmbright/cmbright.dtx + RELOC/source/latex/cmbright/cmbright.ins +runfiles size=337 + RELOC/fonts/source/public/cmbright/ams10pt.mf + RELOC/fonts/source/public/cmbright/ams8pt.mf + RELOC/fonts/source/public/cmbright/ams9pt.mf + RELOC/fonts/source/public/cmbright/baccent.mf + RELOC/fonts/source/public/cmbright/bgreeku.mf + RELOC/fonts/source/public/cmbright/bitalms.mf + RELOC/fonts/source/public/cmbright/bpunct.mf + RELOC/fonts/source/public/cmbright/br10pt.mf + RELOC/fonts/source/public/cmbright/br17pt.mf + RELOC/fonts/source/public/cmbright/br8pt.mf + RELOC/fonts/source/public/cmbright/br9pt.mf + RELOC/fonts/source/public/cmbright/brmsa.mf + RELOC/fonts/source/public/cmbright/brmsb.mf + RELOC/fonts/source/public/cmbright/broman.mf + RELOC/fonts/source/public/cmbright/bromanl.mf + RELOC/fonts/source/public/cmbright/bromlig.mf + RELOC/fonts/source/public/cmbright/bromms.mf + RELOC/fonts/source/public/cmbright/brs10pt.mf + RELOC/fonts/source/public/cmbright/brs17pt.mf + RELOC/fonts/source/public/cmbright/brs8pt.mf + RELOC/fonts/source/public/cmbright/brs9pt.mf + RELOC/fonts/source/public/cmbright/cmbr10.mf + RELOC/fonts/source/public/cmbright/cmbr17.mf + RELOC/fonts/source/public/cmbright/cmbr8.mf + RELOC/fonts/source/public/cmbright/cmbr9.mf + RELOC/fonts/source/public/cmbright/cmbras10.mf + RELOC/fonts/source/public/cmbright/cmbras8.mf + RELOC/fonts/source/public/cmbright/cmbras9.mf + RELOC/fonts/source/public/cmbright/cmbrbs10.mf + RELOC/fonts/source/public/cmbright/cmbrbs8.mf + RELOC/fonts/source/public/cmbright/cmbrbs9.mf + RELOC/fonts/source/public/cmbright/cmbrbx10.mf + RELOC/fonts/source/public/cmbright/cmbrmb10.mf + RELOC/fonts/source/public/cmbright/cmbrmi10.mf + RELOC/fonts/source/public/cmbright/cmbrmi8.mf + RELOC/fonts/source/public/cmbright/cmbrmi9.mf + RELOC/fonts/source/public/cmbright/cmbrsl10.mf + RELOC/fonts/source/public/cmbright/cmbrsl17.mf + RELOC/fonts/source/public/cmbright/cmbrsl8.mf + RELOC/fonts/source/public/cmbright/cmbrsl9.mf + RELOC/fonts/source/public/cmbright/cmbrsy10.mf + RELOC/fonts/source/public/cmbright/cmbrsy8.mf + RELOC/fonts/source/public/cmbright/cmbrsy9.mf + RELOC/fonts/source/public/cmbright/cmsltl10.mf + RELOC/fonts/source/public/cmbright/cmtl10.mf + RELOC/fonts/source/public/cmbright/ebaccess.mf + RELOC/fonts/source/public/cmbright/ebbase.mf + RELOC/fonts/source/public/cmbright/ebbraces.mf + RELOC/fonts/source/public/cmbright/ebbx10.mf + RELOC/fonts/source/public/cmbright/ebmo10.mf + RELOC/fonts/source/public/cmbright/ebmo17.mf + RELOC/fonts/source/public/cmbright/ebmo8.mf + RELOC/fonts/source/public/cmbright/ebmo9.mf + RELOC/fonts/source/public/cmbright/ebmr10.mf + RELOC/fonts/source/public/cmbright/ebmr17.mf + RELOC/fonts/source/public/cmbright/ebmr8.mf + RELOC/fonts/source/public/cmbright/ebmr9.mf + RELOC/fonts/source/public/cmbright/ebpseudo.mf + RELOC/fonts/source/public/cmbright/ebpunct.mf + RELOC/fonts/source/public/cmbright/ebrleast.mf + RELOC/fonts/source/public/cmbright/ebrlig.mf + RELOC/fonts/source/public/cmbright/ebrligtb.mf + RELOC/fonts/source/public/cmbright/ebrllett.mf + RELOC/fonts/source/public/cmbright/ebrlwest.mf + RELOC/fonts/source/public/cmbright/ebroman.mf + RELOC/fonts/source/public/cmbright/ebso10.mf + RELOC/fonts/source/public/cmbright/ebso17.mf + RELOC/fonts/source/public/cmbright/ebso8.mf + RELOC/fonts/source/public/cmbright/ebso9.mf + RELOC/fonts/source/public/cmbright/ebsr10.mf + RELOC/fonts/source/public/cmbright/ebsr17.mf + RELOC/fonts/source/public/cmbright/ebsr8.mf + RELOC/fonts/source/public/cmbright/ebsr9.mf + RELOC/fonts/source/public/cmbright/ebtl10.mf + RELOC/fonts/source/public/cmbright/ebto10.mf + RELOC/fonts/source/public/cmbright/mathsl.mf + RELOC/fonts/source/public/cmbright/msa.mf + RELOC/fonts/source/public/cmbright/msb.mf + RELOC/fonts/source/public/cmbright/tbbx10.mf + RELOC/fonts/source/public/cmbright/tbmo10.mf + RELOC/fonts/source/public/cmbright/tbmo17.mf + RELOC/fonts/source/public/cmbright/tbmo8.mf + RELOC/fonts/source/public/cmbright/tbmo9.mf + RELOC/fonts/source/public/cmbright/tbmr10.mf + RELOC/fonts/source/public/cmbright/tbmr17.mf + RELOC/fonts/source/public/cmbright/tbmr8.mf + RELOC/fonts/source/public/cmbright/tbmr9.mf + RELOC/fonts/source/public/cmbright/tbpseudo.mf + RELOC/fonts/source/public/cmbright/tbso10.mf + RELOC/fonts/source/public/cmbright/tbso17.mf + RELOC/fonts/source/public/cmbright/tbso8.mf + RELOC/fonts/source/public/cmbright/tbso9.mf + RELOC/fonts/source/public/cmbright/tbsr10.mf + RELOC/fonts/source/public/cmbright/tbsr17.mf + RELOC/fonts/source/public/cmbright/tbsr8.mf + RELOC/fonts/source/public/cmbright/tbsr9.mf + RELOC/fonts/source/public/cmbright/tbsymb.mf + RELOC/fonts/source/public/cmbright/tbsymbol.mf + RELOC/fonts/source/public/cmbright/tbtl10.mf + RELOC/fonts/source/public/cmbright/tbto10.mf + RELOC/fonts/source/public/cmbright/ttsymb.mf + RELOC/fonts/source/public/cmbright/ttsymbol.mf + RELOC/fonts/tfm/public/cmbright/cmbr10.tfm + RELOC/fonts/tfm/public/cmbright/cmbr17.tfm + RELOC/fonts/tfm/public/cmbright/cmbr8.tfm + RELOC/fonts/tfm/public/cmbright/cmbr9.tfm + RELOC/fonts/tfm/public/cmbright/cmbras10.tfm + RELOC/fonts/tfm/public/cmbright/cmbras8.tfm + RELOC/fonts/tfm/public/cmbright/cmbras9.tfm + RELOC/fonts/tfm/public/cmbright/cmbrbs10.tfm + RELOC/fonts/tfm/public/cmbright/cmbrbs8.tfm + RELOC/fonts/tfm/public/cmbright/cmbrbs9.tfm + RELOC/fonts/tfm/public/cmbright/cmbrbx10.tfm + RELOC/fonts/tfm/public/cmbright/cmbrmb10.tfm + RELOC/fonts/tfm/public/cmbright/cmbrmi10.tfm + RELOC/fonts/tfm/public/cmbright/cmbrmi8.tfm + RELOC/fonts/tfm/public/cmbright/cmbrmi9.tfm + RELOC/fonts/tfm/public/cmbright/cmbrsl10.tfm + RELOC/fonts/tfm/public/cmbright/cmbrsl17.tfm + RELOC/fonts/tfm/public/cmbright/cmbrsl8.tfm + RELOC/fonts/tfm/public/cmbright/cmbrsl9.tfm + RELOC/fonts/tfm/public/cmbright/cmbrsy10.tfm + RELOC/fonts/tfm/public/cmbright/cmbrsy8.tfm + RELOC/fonts/tfm/public/cmbright/cmbrsy9.tfm + RELOC/fonts/tfm/public/cmbright/cmsltl10.tfm + RELOC/fonts/tfm/public/cmbright/cmtl10.tfm + RELOC/fonts/tfm/public/cmbright/ebbx10.tfm + RELOC/fonts/tfm/public/cmbright/ebmo10.tfm + RELOC/fonts/tfm/public/cmbright/ebmo17.tfm + RELOC/fonts/tfm/public/cmbright/ebmo8.tfm + RELOC/fonts/tfm/public/cmbright/ebmo9.tfm + RELOC/fonts/tfm/public/cmbright/ebmr10.tfm + RELOC/fonts/tfm/public/cmbright/ebmr17.tfm + RELOC/fonts/tfm/public/cmbright/ebmr8.tfm + RELOC/fonts/tfm/public/cmbright/ebmr9.tfm + RELOC/fonts/tfm/public/cmbright/ebso10.tfm + RELOC/fonts/tfm/public/cmbright/ebso17.tfm + RELOC/fonts/tfm/public/cmbright/ebso8.tfm + RELOC/fonts/tfm/public/cmbright/ebso9.tfm + RELOC/fonts/tfm/public/cmbright/ebsr10.tfm + RELOC/fonts/tfm/public/cmbright/ebsr17.tfm + RELOC/fonts/tfm/public/cmbright/ebsr8.tfm + RELOC/fonts/tfm/public/cmbright/ebsr9.tfm + RELOC/fonts/tfm/public/cmbright/ebtl10.tfm + RELOC/fonts/tfm/public/cmbright/ebto10.tfm + RELOC/fonts/tfm/public/cmbright/tbbx10.tfm + RELOC/fonts/tfm/public/cmbright/tbmo10.tfm + RELOC/fonts/tfm/public/cmbright/tbmo17.tfm + RELOC/fonts/tfm/public/cmbright/tbmo8.tfm + RELOC/fonts/tfm/public/cmbright/tbmo9.tfm + RELOC/fonts/tfm/public/cmbright/tbmr10.tfm + RELOC/fonts/tfm/public/cmbright/tbmr17.tfm + RELOC/fonts/tfm/public/cmbright/tbmr8.tfm + RELOC/fonts/tfm/public/cmbright/tbmr9.tfm + RELOC/fonts/tfm/public/cmbright/tbso10.tfm + RELOC/fonts/tfm/public/cmbright/tbso17.tfm + RELOC/fonts/tfm/public/cmbright/tbso8.tfm + RELOC/fonts/tfm/public/cmbright/tbso9.tfm + RELOC/fonts/tfm/public/cmbright/tbsr10.tfm + RELOC/fonts/tfm/public/cmbright/tbsr17.tfm + RELOC/fonts/tfm/public/cmbright/tbsr8.tfm + RELOC/fonts/tfm/public/cmbright/tbsr9.tfm + RELOC/fonts/tfm/public/cmbright/tbtl10.tfm + RELOC/fonts/tfm/public/cmbright/tbto10.tfm + RELOC/tex/latex/cmbright/cmbright.sty + RELOC/tex/latex/cmbright/omlcmbr.fd + RELOC/tex/latex/cmbright/omlcmbrm.fd + RELOC/tex/latex/cmbright/omscmbr.fd + RELOC/tex/latex/cmbright/omscmbrs.fd + RELOC/tex/latex/cmbright/ot1cmbr.fd + RELOC/tex/latex/cmbright/ot1cmtl.fd + RELOC/tex/latex/cmbright/t1cmbr.fd + RELOC/tex/latex/cmbright/t1cmtl.fd + RELOC/tex/latex/cmbright/ts1cmbr.fd + RELOC/tex/latex/cmbright/ts1cmtl.fd +catalogue-ctan /fonts/cmbright +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font font-maths font-sans font-mf +catalogue-version 8.1 -name collcell +name cmcyr category Package -revision 21539 -shortdesc Collect contents of a tabular cell as argument to a macro. +revision 39273 +shortdesc Computer Modern fonts with cyrillic extensions relocated 1 -longdesc The package provides macros that collect the content of a -longdesc tabular cell, and offer them as an argument to a macro. Special -longdesc care is taken to remove all aligning macros inserted by tabular -longdesc from the cell content. The macros also work in the last column -longdesc of a table, but do not support verbatim material inside the -longdesc cells. -runfiles size=2 - RELOC/tex/latex/collcell/collcell.sty -docfiles size=68 - RELOC/doc/latex/collcell/collcell.pdf -srcfiles size=8 - RELOC/source/latex/collcell/Makefile - RELOC/source/latex/collcell/README - RELOC/source/latex/collcell/collcell.dtx - RELOC/source/latex/collcell/collcell.ins -catalogue-ctan /macros/latex/contrib/collcell -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.5 +longdesc These are the Computer Modern fonts extended with Russian +longdesc letters, in Metafont sources and ATM Compatible Type 1 format. +longdesc The fonts are provided in KOI-7, but virtual fonts are +longdesc available to recode them to three other Russian 8-bit +longdesc encodings. +execute addMap cmcyr.map +containersize 901484 +containerchecksum 452551d8563b53408a058f847a4a8d3738ac7f0de1da15aea05208c030c67f904b848d71bacca2f6f5ec3e882cdf0be58a4037ed7dea7c7bbd2aeb08776427b9 +doccontainersize 5864 +doccontainerchecksum 748c60e2e54f49bc6afd2867574919003ad6412d721613dacf6f8dc48cb187ca915b1a5e7286a47db7087fe1133c8ceabd998a8c60b91e4d60264b6fc6253190 +docfiles size=40 + RELOC/doc/fonts/cmcyr/README details="Readme" + RELOC/doc/fonts/cmcyr/cmalt + RELOC/doc/fonts/cmcyr/cmalte + RELOC/doc/fonts/cmcyr/cmiso + RELOC/doc/fonts/cmcyr/cmisoe + RELOC/doc/fonts/cmcyr/cmkde + RELOC/doc/fonts/cmcyr/cmkdee + RELOC/doc/fonts/cmcyr/cmkoi8 + RELOC/doc/fonts/cmcyr/cmkoi8e + RELOC/doc/fonts/cmcyr/cmwin + RELOC/doc/fonts/cmcyr/cmwine + RELOC/doc/fonts/cmcyr/coding.bak + RELOC/doc/fonts/cmcyr/cyralt + RELOC/doc/fonts/cmcyr/cyralte + RELOC/doc/fonts/cmcyr/cyriso + RELOC/doc/fonts/cmcyr/cyrisoe + RELOC/doc/fonts/cmcyr/cyrkde + RELOC/doc/fonts/cmcyr/cyrkdee + RELOC/doc/fonts/cmcyr/cyrkoi8 + RELOC/doc/fonts/cmcyr/cyrkoi8e + RELOC/doc/fonts/cmcyr/cyrwin + RELOC/doc/fonts/cmcyr/cyrwine + RELOC/doc/fonts/cmcyr/merge.6i + RELOC/doc/fonts/cmcyr/merge.6k + RELOC/doc/fonts/cmcyr/merge.6w + RELOC/doc/fonts/cmcyr/merge.alt + RELOC/doc/fonts/cmcyr/merge.bat + RELOC/doc/fonts/cmcyr/merge.iso + RELOC/doc/fonts/cmcyr/merge.koi + RELOC/doc/fonts/cmcyr/merge.o6w + RELOC/doc/fonts/cmcyr/merge.win + RELOC/doc/fonts/cmcyr/vf/cmcyr6i/merge.bat + RELOC/doc/fonts/cmcyr/vf/cmcyr6k/merge.bat + RELOC/doc/fonts/cmcyr/vf/cmcyr6w/merge.bat + RELOC/doc/fonts/cmcyr/wncalt + RELOC/doc/fonts/cmcyr/wncalte + RELOC/doc/fonts/cmcyr/wnciso + RELOC/doc/fonts/cmcyr/wncisoe + RELOC/doc/fonts/cmcyr/wnckoi8 + RELOC/doc/fonts/cmcyr/wnckoi8e +runfiles size=979 + RELOC/fonts/map/dvips/cmcyr/cmcyr.map + RELOC/fonts/source/public/cmcyr/ccsc.mf + RELOC/fonts/source/public/cmcyr/citall.mf + RELOC/fonts/source/public/cmcyr/cmcb10.mf + RELOC/fonts/source/public/cmcyr/cmcbx10.mf + RELOC/fonts/source/public/cmcyr/cmcbx12.mf + RELOC/fonts/source/public/cmcyr/cmcbx5.mf + RELOC/fonts/source/public/cmcyr/cmcbx6.mf + RELOC/fonts/source/public/cmcyr/cmcbx7.mf + RELOC/fonts/source/public/cmcyr/cmcbx8.mf + RELOC/fonts/source/public/cmcyr/cmcbx9.mf + RELOC/fonts/source/public/cmcyr/cmcbxsl1.mf + RELOC/fonts/source/public/cmcyr/cmcbxti1.mf + RELOC/fonts/source/public/cmcyr/cmccsc10.mf + RELOC/fonts/source/public/cmcyr/cmccsc8.mf + RELOC/fonts/source/public/cmcyr/cmccsc9.mf + RELOC/fonts/source/public/cmcyr/cmcinch.mf + RELOC/fonts/source/public/cmcyr/cmcitt10.mf + RELOC/fonts/source/public/cmcyr/cmcsc11.mf + RELOC/fonts/source/public/cmcyr/cmcsc12.mf + RELOC/fonts/source/public/cmcyr/cmcsc14.mf + RELOC/fonts/source/public/cmcyr/cmcsc18.mf + RELOC/fonts/source/public/cmcyr/cmcsc24.mf + RELOC/fonts/source/public/cmcyr/cmcsc36.mf + RELOC/fonts/source/public/cmcyr/cmcscsl1.mf + RELOC/fonts/source/public/cmcyr/cmcsl10.mf + RELOC/fonts/source/public/cmcyr/cmcsl12.mf + RELOC/fonts/source/public/cmcyr/cmcsl8.mf + RELOC/fonts/source/public/cmcyr/cmcsl9.mf + RELOC/fonts/source/public/cmcyr/cmcsltt1.mf + RELOC/fonts/source/public/cmcyr/cmcss10.mf + RELOC/fonts/source/public/cmcyr/cmcss12.mf + RELOC/fonts/source/public/cmcyr/cmcss17.mf + RELOC/fonts/source/public/cmcyr/cmcss8.mf + RELOC/fonts/source/public/cmcyr/cmcss9.mf + RELOC/fonts/source/public/cmcyr/cmcssbx1.mf + RELOC/fonts/source/public/cmcyr/cmcssdc1.mf + RELOC/fonts/source/public/cmcyr/cmcssi10.mf + RELOC/fonts/source/public/cmcyr/cmcssi12.mf + RELOC/fonts/source/public/cmcyr/cmcssi17.mf + RELOC/fonts/source/public/cmcyr/cmcssi8.mf + RELOC/fonts/source/public/cmcyr/cmcssi9.mf + RELOC/fonts/source/public/cmcyr/cmcssq8.mf + RELOC/fonts/source/public/cmcyr/cmcssqi8.mf + RELOC/fonts/source/public/cmcyr/cmcti10.mf + RELOC/fonts/source/public/cmcyr/cmcti12.mf + RELOC/fonts/source/public/cmcyr/cmcti7.mf + RELOC/fonts/source/public/cmcyr/cmcti8.mf + RELOC/fonts/source/public/cmcyr/cmcti9.mf + RELOC/fonts/source/public/cmcyr/cmctitle.mf + RELOC/fonts/source/public/cmcyr/cmctt10.mf + RELOC/fonts/source/public/cmcyr/cmctt12.mf + RELOC/fonts/source/public/cmcyr/cmctt8.mf + RELOC/fonts/source/public/cmcyr/cmctt9.mf + RELOC/fonts/source/public/cmcyr/cmcu10.mf + RELOC/fonts/source/public/cmcyr/cmcyr10.mf + RELOC/fonts/source/public/cmcyr/cmcyr12.mf + RELOC/fonts/source/public/cmcyr/cmcyr17.mf + RELOC/fonts/source/public/cmcyr/cmcyr5.mf + RELOC/fonts/source/public/cmcyr/cmcyr6.mf + RELOC/fonts/source/public/cmcyr/cmcyr7.mf + RELOC/fonts/source/public/cmcyr/cmcyr8.mf + RELOC/fonts/source/public/cmcyr/cmcyr9.mf + RELOC/fonts/source/public/cmcyr/coding.mf + RELOC/fonts/source/public/cmcyr/cyrillic.mf + RELOC/fonts/source/public/cmcyr/cyrl.mf + RELOC/fonts/source/public/cmcyr/cyrlc.mf + RELOC/fonts/source/public/cmcyr/cyrsymb.mf + RELOC/fonts/source/public/cmcyr/cyrt.mf + RELOC/fonts/source/public/cmcyr/cyru.mf + RELOC/fonts/source/public/cmcyr/cytextit.mf + RELOC/fonts/source/public/cmcyr/cytitle.mf + RELOC/fonts/tfm/public/cmcyr/cmcb10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcbx10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcbx12.tfm + RELOC/fonts/tfm/public/cmcyr/cmcbx5.tfm + RELOC/fonts/tfm/public/cmcyr/cmcbx6.tfm + RELOC/fonts/tfm/public/cmcyr/cmcbx7.tfm + RELOC/fonts/tfm/public/cmcyr/cmcbx8.tfm + RELOC/fonts/tfm/public/cmcyr/cmcbx9.tfm + RELOC/fonts/tfm/public/cmcyr/cmcbxsl10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcbxti10.tfm + RELOC/fonts/tfm/public/cmcyr/cmccsc10.tfm + RELOC/fonts/tfm/public/cmcyr/cmccsc8.tfm + RELOC/fonts/tfm/public/cmcyr/cmccsc9.tfm + RELOC/fonts/tfm/public/cmcyr/cmcinch.tfm + RELOC/fonts/tfm/public/cmcyr/cmcitt10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcsl10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcsl12.tfm + RELOC/fonts/tfm/public/cmcyr/cmcsl8.tfm + RELOC/fonts/tfm/public/cmcyr/cmcsl9.tfm + RELOC/fonts/tfm/public/cmcyr/cmcsltt10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcss10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcss12.tfm + RELOC/fonts/tfm/public/cmcyr/cmcss17.tfm + RELOC/fonts/tfm/public/cmcyr/cmcss8.tfm + RELOC/fonts/tfm/public/cmcyr/cmcss9.tfm + RELOC/fonts/tfm/public/cmcyr/cmcssbx10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcssdc10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcssi10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcssi12.tfm + RELOC/fonts/tfm/public/cmcyr/cmcssi17.tfm + RELOC/fonts/tfm/public/cmcyr/cmcssi8.tfm + RELOC/fonts/tfm/public/cmcyr/cmcssi9.tfm + RELOC/fonts/tfm/public/cmcyr/cmcssq8.tfm + RELOC/fonts/tfm/public/cmcyr/cmcssqi8.tfm + RELOC/fonts/tfm/public/cmcyr/cmcti10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcti12.tfm + RELOC/fonts/tfm/public/cmcyr/cmcti7.tfm + RELOC/fonts/tfm/public/cmcyr/cmcti8.tfm + RELOC/fonts/tfm/public/cmcyr/cmcti9.tfm + RELOC/fonts/tfm/public/cmcyr/cmctt10.tfm + RELOC/fonts/tfm/public/cmcyr/cmctt12.tfm + RELOC/fonts/tfm/public/cmcyr/cmctt8.tfm + RELOC/fonts/tfm/public/cmcyr/cmctt9.tfm + RELOC/fonts/tfm/public/cmcyr/cmcu10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcyr10.tfm + RELOC/fonts/tfm/public/cmcyr/cmcyr12.tfm + RELOC/fonts/tfm/public/cmcyr/cmcyr17.tfm + RELOC/fonts/tfm/public/cmcyr/cmcyr5.tfm + RELOC/fonts/tfm/public/cmcyr/cmcyr6.tfm + RELOC/fonts/tfm/public/cmcyr/cmcyr7.tfm + RELOC/fonts/tfm/public/cmcyr/cmcyr8.tfm + RELOC/fonts/tfm/public/cmcyr/cmcyr9.tfm + RELOC/fonts/tfm/public/cmcyr/kcmb10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmbx10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmbx12.tfm + RELOC/fonts/tfm/public/cmcyr/kcmbx5.tfm + RELOC/fonts/tfm/public/cmcyr/kcmbx6.tfm + RELOC/fonts/tfm/public/cmcyr/kcmbx7.tfm + RELOC/fonts/tfm/public/cmcyr/kcmbx8.tfm + RELOC/fonts/tfm/public/cmcyr/kcmbx9.tfm + RELOC/fonts/tfm/public/cmcyr/kcmbxsl10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmbxti10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmcsc10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmcsc8.tfm + RELOC/fonts/tfm/public/cmcyr/kcmcsc9.tfm + RELOC/fonts/tfm/public/cmcyr/kcminch.tfm + RELOC/fonts/tfm/public/cmcyr/kcmitt10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmmi10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmmi12.tfm + RELOC/fonts/tfm/public/cmcyr/kcmmi5.tfm + RELOC/fonts/tfm/public/cmcyr/kcmmi6.tfm + RELOC/fonts/tfm/public/cmcyr/kcmmi7.tfm + RELOC/fonts/tfm/public/cmcyr/kcmmi8.tfm + RELOC/fonts/tfm/public/cmcyr/kcmmi9.tfm + RELOC/fonts/tfm/public/cmcyr/kcmmib10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmr10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmr12.tfm + RELOC/fonts/tfm/public/cmcyr/kcmr17.tfm + RELOC/fonts/tfm/public/cmcyr/kcmr5.tfm + RELOC/fonts/tfm/public/cmcyr/kcmr6.tfm + RELOC/fonts/tfm/public/cmcyr/kcmr7.tfm + RELOC/fonts/tfm/public/cmcyr/kcmr8.tfm + RELOC/fonts/tfm/public/cmcyr/kcmr9.tfm + RELOC/fonts/tfm/public/cmcyr/kcmsl10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmsl12.tfm + RELOC/fonts/tfm/public/cmcyr/kcmsl8.tfm + RELOC/fonts/tfm/public/cmcyr/kcmsl9.tfm + RELOC/fonts/tfm/public/cmcyr/kcmsltt10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmss10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmss12.tfm + RELOC/fonts/tfm/public/cmcyr/kcmss17.tfm + RELOC/fonts/tfm/public/cmcyr/kcmss8.tfm + RELOC/fonts/tfm/public/cmcyr/kcmss9.tfm + RELOC/fonts/tfm/public/cmcyr/kcmssbx10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmssdc10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmssi10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmssi12.tfm + RELOC/fonts/tfm/public/cmcyr/kcmssi17.tfm + RELOC/fonts/tfm/public/cmcyr/kcmssi8.tfm + RELOC/fonts/tfm/public/cmcyr/kcmssi9.tfm + RELOC/fonts/tfm/public/cmcyr/kcmssq8.tfm + RELOC/fonts/tfm/public/cmcyr/kcmssqi8.tfm + RELOC/fonts/tfm/public/cmcyr/kcmti10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmti12.tfm + RELOC/fonts/tfm/public/cmcyr/kcmti7.tfm + RELOC/fonts/tfm/public/cmcyr/kcmti8.tfm + RELOC/fonts/tfm/public/cmcyr/kcmti9.tfm + RELOC/fonts/tfm/public/cmcyr/kcmtt10.tfm + RELOC/fonts/tfm/public/cmcyr/kcmtt12.tfm + RELOC/fonts/tfm/public/cmcyr/kcmtt8.tfm + RELOC/fonts/tfm/public/cmcyr/kcmtt9.tfm + RELOC/fonts/tfm/public/cmcyr/kcmu10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmb10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmbx10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmbx12.tfm + RELOC/fonts/tfm/public/cmcyr/wcmbx5.tfm + RELOC/fonts/tfm/public/cmcyr/wcmbx6.tfm + RELOC/fonts/tfm/public/cmcyr/wcmbx7.tfm + RELOC/fonts/tfm/public/cmcyr/wcmbx8.tfm + RELOC/fonts/tfm/public/cmcyr/wcmbx9.tfm + RELOC/fonts/tfm/public/cmcyr/wcmbxsl10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmbxti10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmcsc10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmcsc8.tfm + RELOC/fonts/tfm/public/cmcyr/wcmcsc9.tfm + RELOC/fonts/tfm/public/cmcyr/wcminch.tfm + RELOC/fonts/tfm/public/cmcyr/wcmitt10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmmi10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmmi12.tfm + RELOC/fonts/tfm/public/cmcyr/wcmmi5.tfm + RELOC/fonts/tfm/public/cmcyr/wcmmi6.tfm + RELOC/fonts/tfm/public/cmcyr/wcmmi7.tfm + RELOC/fonts/tfm/public/cmcyr/wcmmi8.tfm + RELOC/fonts/tfm/public/cmcyr/wcmmi9.tfm + RELOC/fonts/tfm/public/cmcyr/wcmmib10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmr10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmr12.tfm + RELOC/fonts/tfm/public/cmcyr/wcmr17.tfm + RELOC/fonts/tfm/public/cmcyr/wcmr5.tfm + RELOC/fonts/tfm/public/cmcyr/wcmr6.tfm + RELOC/fonts/tfm/public/cmcyr/wcmr7.tfm + RELOC/fonts/tfm/public/cmcyr/wcmr8.tfm + RELOC/fonts/tfm/public/cmcyr/wcmr9.tfm + RELOC/fonts/tfm/public/cmcyr/wcmsl10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmsl12.tfm + RELOC/fonts/tfm/public/cmcyr/wcmsl8.tfm + RELOC/fonts/tfm/public/cmcyr/wcmsl9.tfm + RELOC/fonts/tfm/public/cmcyr/wcmsltt10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmss10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmss12.tfm + RELOC/fonts/tfm/public/cmcyr/wcmss17.tfm + RELOC/fonts/tfm/public/cmcyr/wcmss8.tfm + RELOC/fonts/tfm/public/cmcyr/wcmss9.tfm + RELOC/fonts/tfm/public/cmcyr/wcmssbx10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmssdc10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmssi10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmssi12.tfm + RELOC/fonts/tfm/public/cmcyr/wcmssi17.tfm + RELOC/fonts/tfm/public/cmcyr/wcmssi8.tfm + RELOC/fonts/tfm/public/cmcyr/wcmssi9.tfm + RELOC/fonts/tfm/public/cmcyr/wcmssq8.tfm + RELOC/fonts/tfm/public/cmcyr/wcmssqi8.tfm + RELOC/fonts/tfm/public/cmcyr/wcmti10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmti12.tfm + RELOC/fonts/tfm/public/cmcyr/wcmti7.tfm + RELOC/fonts/tfm/public/cmcyr/wcmti8.tfm + RELOC/fonts/tfm/public/cmcyr/wcmti9.tfm + RELOC/fonts/tfm/public/cmcyr/wcmtt10.tfm + RELOC/fonts/tfm/public/cmcyr/wcmtt12.tfm + RELOC/fonts/tfm/public/cmcyr/wcmtt8.tfm + RELOC/fonts/tfm/public/cmcyr/wcmtt9.tfm + RELOC/fonts/tfm/public/cmcyr/wcmu10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmb10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmbx10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmbx12.tfm + RELOC/fonts/tfm/public/cmcyr/xcmbx5.tfm + RELOC/fonts/tfm/public/cmcyr/xcmbx6.tfm + RELOC/fonts/tfm/public/cmcyr/xcmbx7.tfm + RELOC/fonts/tfm/public/cmcyr/xcmbx8.tfm + RELOC/fonts/tfm/public/cmcyr/xcmbx9.tfm + RELOC/fonts/tfm/public/cmcyr/xcmbxsl10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmbxti10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmcsc10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmcsc8.tfm + RELOC/fonts/tfm/public/cmcyr/xcmcsc9.tfm + RELOC/fonts/tfm/public/cmcyr/xcminch.tfm + RELOC/fonts/tfm/public/cmcyr/xcmitt10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmmi10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmmi12.tfm + RELOC/fonts/tfm/public/cmcyr/xcmmi5.tfm + RELOC/fonts/tfm/public/cmcyr/xcmmi6.tfm + RELOC/fonts/tfm/public/cmcyr/xcmmi7.tfm + RELOC/fonts/tfm/public/cmcyr/xcmmi8.tfm + RELOC/fonts/tfm/public/cmcyr/xcmmi9.tfm + RELOC/fonts/tfm/public/cmcyr/xcmmib10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmr10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmr12.tfm + RELOC/fonts/tfm/public/cmcyr/xcmr17.tfm + RELOC/fonts/tfm/public/cmcyr/xcmr5.tfm + RELOC/fonts/tfm/public/cmcyr/xcmr6.tfm + RELOC/fonts/tfm/public/cmcyr/xcmr7.tfm + RELOC/fonts/tfm/public/cmcyr/xcmr8.tfm + RELOC/fonts/tfm/public/cmcyr/xcmr9.tfm + RELOC/fonts/tfm/public/cmcyr/xcmsl10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmsl12.tfm + RELOC/fonts/tfm/public/cmcyr/xcmsl8.tfm + RELOC/fonts/tfm/public/cmcyr/xcmsl9.tfm + RELOC/fonts/tfm/public/cmcyr/xcmsltt10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmss10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmss12.tfm + RELOC/fonts/tfm/public/cmcyr/xcmss17.tfm + RELOC/fonts/tfm/public/cmcyr/xcmss8.tfm + RELOC/fonts/tfm/public/cmcyr/xcmss9.tfm + RELOC/fonts/tfm/public/cmcyr/xcmssbx10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmssdc10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmssi10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmssi12.tfm + RELOC/fonts/tfm/public/cmcyr/xcmssi17.tfm + RELOC/fonts/tfm/public/cmcyr/xcmssi8.tfm + RELOC/fonts/tfm/public/cmcyr/xcmssi9.tfm + RELOC/fonts/tfm/public/cmcyr/xcmssq8.tfm + RELOC/fonts/tfm/public/cmcyr/xcmssqi8.tfm + RELOC/fonts/tfm/public/cmcyr/xcmti10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmti12.tfm + RELOC/fonts/tfm/public/cmcyr/xcmti7.tfm + RELOC/fonts/tfm/public/cmcyr/xcmti8.tfm + RELOC/fonts/tfm/public/cmcyr/xcmti9.tfm + RELOC/fonts/tfm/public/cmcyr/xcmtt10.tfm + RELOC/fonts/tfm/public/cmcyr/xcmtt12.tfm + RELOC/fonts/tfm/public/cmcyr/xcmtt8.tfm + RELOC/fonts/tfm/public/cmcyr/xcmtt9.tfm + RELOC/fonts/tfm/public/cmcyr/xcmu10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmb10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmbx10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmbx12.tfm + RELOC/fonts/tfm/public/cmcyr/ycmbx5.tfm + RELOC/fonts/tfm/public/cmcyr/ycmbx6.tfm + RELOC/fonts/tfm/public/cmcyr/ycmbx7.tfm + RELOC/fonts/tfm/public/cmcyr/ycmbx8.tfm + RELOC/fonts/tfm/public/cmcyr/ycmbx9.tfm + RELOC/fonts/tfm/public/cmcyr/ycmbxsl10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmbxti10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmcsc10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmcsc8.tfm + RELOC/fonts/tfm/public/cmcyr/ycmcsc9.tfm + RELOC/fonts/tfm/public/cmcyr/ycminch.tfm + RELOC/fonts/tfm/public/cmcyr/ycmitt10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmmi10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmmi12.tfm + RELOC/fonts/tfm/public/cmcyr/ycmmi5.tfm + RELOC/fonts/tfm/public/cmcyr/ycmmi6.tfm + RELOC/fonts/tfm/public/cmcyr/ycmmi7.tfm + RELOC/fonts/tfm/public/cmcyr/ycmmi8.tfm + RELOC/fonts/tfm/public/cmcyr/ycmmi9.tfm + RELOC/fonts/tfm/public/cmcyr/ycmmib10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmr10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmr12.tfm + RELOC/fonts/tfm/public/cmcyr/ycmr17.tfm + RELOC/fonts/tfm/public/cmcyr/ycmr5.tfm + RELOC/fonts/tfm/public/cmcyr/ycmr6.tfm + RELOC/fonts/tfm/public/cmcyr/ycmr7.tfm + RELOC/fonts/tfm/public/cmcyr/ycmr8.tfm + RELOC/fonts/tfm/public/cmcyr/ycmr9.tfm + RELOC/fonts/tfm/public/cmcyr/ycmsl10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmsl12.tfm + RELOC/fonts/tfm/public/cmcyr/ycmsl8.tfm + RELOC/fonts/tfm/public/cmcyr/ycmsl9.tfm + RELOC/fonts/tfm/public/cmcyr/ycmsltt10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmss10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmss12.tfm + RELOC/fonts/tfm/public/cmcyr/ycmss17.tfm + RELOC/fonts/tfm/public/cmcyr/ycmss8.tfm + RELOC/fonts/tfm/public/cmcyr/ycmss9.tfm + RELOC/fonts/tfm/public/cmcyr/ycmssbx10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmssdc10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmssi10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmssi12.tfm + RELOC/fonts/tfm/public/cmcyr/ycmssi17.tfm + RELOC/fonts/tfm/public/cmcyr/ycmssi8.tfm + RELOC/fonts/tfm/public/cmcyr/ycmssi9.tfm + RELOC/fonts/tfm/public/cmcyr/ycmssq8.tfm + RELOC/fonts/tfm/public/cmcyr/ycmssqi8.tfm + RELOC/fonts/tfm/public/cmcyr/ycmti10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmti12.tfm + RELOC/fonts/tfm/public/cmcyr/ycmti7.tfm + RELOC/fonts/tfm/public/cmcyr/ycmti8.tfm + RELOC/fonts/tfm/public/cmcyr/ycmti9.tfm + RELOC/fonts/tfm/public/cmcyr/ycmtt10.tfm + RELOC/fonts/tfm/public/cmcyr/ycmtt12.tfm + RELOC/fonts/tfm/public/cmcyr/ycmtt8.tfm + RELOC/fonts/tfm/public/cmcyr/ycmtt9.tfm + RELOC/fonts/tfm/public/cmcyr/ycmu10.tfm + RELOC/fonts/type1/public/cmcyr/cmcb10.pfb + RELOC/fonts/type1/public/cmcyr/cmcb10.pfm + RELOC/fonts/type1/public/cmcyr/cmcbx10.pfb + RELOC/fonts/type1/public/cmcyr/cmcbx10.pfm + RELOC/fonts/type1/public/cmcyr/cmcbx12.pfb + RELOC/fonts/type1/public/cmcyr/cmcbx12.pfm + RELOC/fonts/type1/public/cmcyr/cmcbx5.pfb + RELOC/fonts/type1/public/cmcyr/cmcbx5.pfm + RELOC/fonts/type1/public/cmcyr/cmcbx6.pfb + RELOC/fonts/type1/public/cmcyr/cmcbx6.pfm + RELOC/fonts/type1/public/cmcyr/cmcbx7.pfb + RELOC/fonts/type1/public/cmcyr/cmcbx7.pfm + RELOC/fonts/type1/public/cmcyr/cmcbx8.pfb + RELOC/fonts/type1/public/cmcyr/cmcbx8.pfm + RELOC/fonts/type1/public/cmcyr/cmcbx9.pfb + RELOC/fonts/type1/public/cmcyr/cmcbx9.pfm + RELOC/fonts/type1/public/cmcyr/cmcbxsl1.pfb + RELOC/fonts/type1/public/cmcyr/cmcbxsl1.pfm + RELOC/fonts/type1/public/cmcyr/cmcbxti1.pfb + RELOC/fonts/type1/public/cmcyr/cmcbxti1.pfm + RELOC/fonts/type1/public/cmcyr/cmccsc10.pfb + RELOC/fonts/type1/public/cmcyr/cmccsc10.pfm + RELOC/fonts/type1/public/cmcyr/cmccsc8.pfb + RELOC/fonts/type1/public/cmcyr/cmccsc8.pfm + RELOC/fonts/type1/public/cmcyr/cmccsc9.pfb + RELOC/fonts/type1/public/cmcyr/cmccsc9.pfm + RELOC/fonts/type1/public/cmcyr/cmcinch7.pfb + RELOC/fonts/type1/public/cmcyr/cmcinch7.pfm + RELOC/fonts/type1/public/cmcyr/cmcitt10.pfb + RELOC/fonts/type1/public/cmcyr/cmcitt10.pfm + RELOC/fonts/type1/public/cmcyr/cmcsl10.pfb + RELOC/fonts/type1/public/cmcyr/cmcsl10.pfm + RELOC/fonts/type1/public/cmcyr/cmcsl12.pfb + RELOC/fonts/type1/public/cmcyr/cmcsl12.pfm + RELOC/fonts/type1/public/cmcyr/cmcsl8.pfb + RELOC/fonts/type1/public/cmcyr/cmcsl8.pfm + RELOC/fonts/type1/public/cmcyr/cmcsl9.pfb + RELOC/fonts/type1/public/cmcyr/cmcsl9.pfm + RELOC/fonts/type1/public/cmcyr/cmcsltt1.pfb + RELOC/fonts/type1/public/cmcyr/cmcsltt1.pfm + RELOC/fonts/type1/public/cmcyr/cmcss10.pfb + RELOC/fonts/type1/public/cmcyr/cmcss10.pfm + RELOC/fonts/type1/public/cmcyr/cmcss12.pfb + RELOC/fonts/type1/public/cmcyr/cmcss12.pfm + RELOC/fonts/type1/public/cmcyr/cmcss17.pfb + RELOC/fonts/type1/public/cmcyr/cmcss17.pfm + RELOC/fonts/type1/public/cmcyr/cmcss8.pfb + RELOC/fonts/type1/public/cmcyr/cmcss8.pfm + RELOC/fonts/type1/public/cmcyr/cmcss9.pfb + RELOC/fonts/type1/public/cmcyr/cmcss9.pfm + RELOC/fonts/type1/public/cmcyr/cmcssbx1.pfb + RELOC/fonts/type1/public/cmcyr/cmcssbx1.pfm + RELOC/fonts/type1/public/cmcyr/cmcssdc1.pfb + RELOC/fonts/type1/public/cmcyr/cmcssdc1.pfm + RELOC/fonts/type1/public/cmcyr/cmcssi10.pfb + RELOC/fonts/type1/public/cmcyr/cmcssi10.pfm + RELOC/fonts/type1/public/cmcyr/cmcssi12.pfb + RELOC/fonts/type1/public/cmcyr/cmcssi12.pfm + RELOC/fonts/type1/public/cmcyr/cmcssi17.pfb + RELOC/fonts/type1/public/cmcyr/cmcssi17.pfm + RELOC/fonts/type1/public/cmcyr/cmcssi8.pfb + RELOC/fonts/type1/public/cmcyr/cmcssi8.pfm + RELOC/fonts/type1/public/cmcyr/cmcssi9.pfb + RELOC/fonts/type1/public/cmcyr/cmcssi9.pfm + RELOC/fonts/type1/public/cmcyr/cmcssq8.pfb + RELOC/fonts/type1/public/cmcyr/cmcssq8.pfm + RELOC/fonts/type1/public/cmcyr/cmcssqi8.pfb + RELOC/fonts/type1/public/cmcyr/cmcssqi8.pfm + RELOC/fonts/type1/public/cmcyr/cmcti10.pfb + RELOC/fonts/type1/public/cmcyr/cmcti10.pfm + RELOC/fonts/type1/public/cmcyr/cmcti12.pfb + RELOC/fonts/type1/public/cmcyr/cmcti12.pfm + RELOC/fonts/type1/public/cmcyr/cmcti7.pfb + RELOC/fonts/type1/public/cmcyr/cmcti7.pfm + RELOC/fonts/type1/public/cmcyr/cmcti8.pfb + RELOC/fonts/type1/public/cmcyr/cmcti8.pfm + RELOC/fonts/type1/public/cmcyr/cmcti9.pfb + RELOC/fonts/type1/public/cmcyr/cmcti9.pfm + RELOC/fonts/type1/public/cmcyr/cmctt10.pfb + RELOC/fonts/type1/public/cmcyr/cmctt10.pfm + RELOC/fonts/type1/public/cmcyr/cmctt12.pfb + RELOC/fonts/type1/public/cmcyr/cmctt12.pfm + RELOC/fonts/type1/public/cmcyr/cmctt8.pfb + RELOC/fonts/type1/public/cmcyr/cmctt8.pfm + RELOC/fonts/type1/public/cmcyr/cmctt9.pfb + RELOC/fonts/type1/public/cmcyr/cmctt9.pfm + RELOC/fonts/type1/public/cmcyr/cmcu10.pfb + RELOC/fonts/type1/public/cmcyr/cmcu10.pfm + RELOC/fonts/type1/public/cmcyr/cmcyr10.pfb + RELOC/fonts/type1/public/cmcyr/cmcyr10.pfm + RELOC/fonts/type1/public/cmcyr/cmcyr12.pfb + RELOC/fonts/type1/public/cmcyr/cmcyr12.pfm + RELOC/fonts/type1/public/cmcyr/cmcyr17.pfb + RELOC/fonts/type1/public/cmcyr/cmcyr17.pfm + RELOC/fonts/type1/public/cmcyr/cmcyr5.pfb + RELOC/fonts/type1/public/cmcyr/cmcyr5.pfm + RELOC/fonts/type1/public/cmcyr/cmcyr6.pfb + RELOC/fonts/type1/public/cmcyr/cmcyr6.pfm + RELOC/fonts/type1/public/cmcyr/cmcyr7.pfb + RELOC/fonts/type1/public/cmcyr/cmcyr7.pfm + RELOC/fonts/type1/public/cmcyr/cmcyr8.pfb + RELOC/fonts/type1/public/cmcyr/cmcyr8.pfm + RELOC/fonts/type1/public/cmcyr/cmcyr9.pfb + RELOC/fonts/type1/public/cmcyr/cmcyr9.pfm + RELOC/fonts/vf/public/cmcyr/kcmb10.vf + RELOC/fonts/vf/public/cmcyr/kcmbx10.vf + RELOC/fonts/vf/public/cmcyr/kcmbx12.vf + RELOC/fonts/vf/public/cmcyr/kcmbx5.vf + RELOC/fonts/vf/public/cmcyr/kcmbx6.vf + RELOC/fonts/vf/public/cmcyr/kcmbx7.vf + RELOC/fonts/vf/public/cmcyr/kcmbx8.vf + RELOC/fonts/vf/public/cmcyr/kcmbx9.vf + RELOC/fonts/vf/public/cmcyr/kcmbxsl10.vf + RELOC/fonts/vf/public/cmcyr/kcmbxti10.vf + RELOC/fonts/vf/public/cmcyr/kcmcsc10.vf + RELOC/fonts/vf/public/cmcyr/kcmcsc8.vf + RELOC/fonts/vf/public/cmcyr/kcmcsc9.vf + RELOC/fonts/vf/public/cmcyr/kcminch.vf + RELOC/fonts/vf/public/cmcyr/kcmitt10.vf + RELOC/fonts/vf/public/cmcyr/kcmmi10.vf + RELOC/fonts/vf/public/cmcyr/kcmmi12.vf + RELOC/fonts/vf/public/cmcyr/kcmmi5.vf + RELOC/fonts/vf/public/cmcyr/kcmmi6.vf + RELOC/fonts/vf/public/cmcyr/kcmmi7.vf + RELOC/fonts/vf/public/cmcyr/kcmmi8.vf + RELOC/fonts/vf/public/cmcyr/kcmmi9.vf + RELOC/fonts/vf/public/cmcyr/kcmmib10.vf + RELOC/fonts/vf/public/cmcyr/kcmr10.vf + RELOC/fonts/vf/public/cmcyr/kcmr12.vf + RELOC/fonts/vf/public/cmcyr/kcmr17.vf + RELOC/fonts/vf/public/cmcyr/kcmr5.vf + RELOC/fonts/vf/public/cmcyr/kcmr6.vf + RELOC/fonts/vf/public/cmcyr/kcmr7.vf + RELOC/fonts/vf/public/cmcyr/kcmr8.vf + RELOC/fonts/vf/public/cmcyr/kcmr9.vf + RELOC/fonts/vf/public/cmcyr/kcmsl10.vf + RELOC/fonts/vf/public/cmcyr/kcmsl12.vf + RELOC/fonts/vf/public/cmcyr/kcmsl8.vf + RELOC/fonts/vf/public/cmcyr/kcmsl9.vf + RELOC/fonts/vf/public/cmcyr/kcmsltt10.vf + RELOC/fonts/vf/public/cmcyr/kcmss10.vf + RELOC/fonts/vf/public/cmcyr/kcmss12.vf + RELOC/fonts/vf/public/cmcyr/kcmss17.vf + RELOC/fonts/vf/public/cmcyr/kcmss8.vf + RELOC/fonts/vf/public/cmcyr/kcmss9.vf + RELOC/fonts/vf/public/cmcyr/kcmssbx10.vf + RELOC/fonts/vf/public/cmcyr/kcmssdc10.vf + RELOC/fonts/vf/public/cmcyr/kcmssi10.vf + RELOC/fonts/vf/public/cmcyr/kcmssi12.vf + RELOC/fonts/vf/public/cmcyr/kcmssi17.vf + RELOC/fonts/vf/public/cmcyr/kcmssi8.vf + RELOC/fonts/vf/public/cmcyr/kcmssi9.vf + RELOC/fonts/vf/public/cmcyr/kcmssq8.vf + RELOC/fonts/vf/public/cmcyr/kcmssqi8.vf + RELOC/fonts/vf/public/cmcyr/kcmti10.vf + RELOC/fonts/vf/public/cmcyr/kcmti12.vf + RELOC/fonts/vf/public/cmcyr/kcmti7.vf + RELOC/fonts/vf/public/cmcyr/kcmti8.vf + RELOC/fonts/vf/public/cmcyr/kcmti9.vf + RELOC/fonts/vf/public/cmcyr/kcmtt10.vf + RELOC/fonts/vf/public/cmcyr/kcmtt12.vf + RELOC/fonts/vf/public/cmcyr/kcmtt8.vf + RELOC/fonts/vf/public/cmcyr/kcmtt9.vf + RELOC/fonts/vf/public/cmcyr/kcmu10.vf + RELOC/fonts/vf/public/cmcyr/wcmb10.vf + RELOC/fonts/vf/public/cmcyr/wcmbx10.vf + RELOC/fonts/vf/public/cmcyr/wcmbx12.vf + RELOC/fonts/vf/public/cmcyr/wcmbx5.vf + RELOC/fonts/vf/public/cmcyr/wcmbx6.vf + RELOC/fonts/vf/public/cmcyr/wcmbx7.vf + RELOC/fonts/vf/public/cmcyr/wcmbx8.vf + RELOC/fonts/vf/public/cmcyr/wcmbx9.vf + RELOC/fonts/vf/public/cmcyr/wcmbxsl10.vf + RELOC/fonts/vf/public/cmcyr/wcmbxti10.vf + RELOC/fonts/vf/public/cmcyr/wcmcsc10.vf + RELOC/fonts/vf/public/cmcyr/wcmcsc8.vf + RELOC/fonts/vf/public/cmcyr/wcmcsc9.vf + RELOC/fonts/vf/public/cmcyr/wcminch.vf + RELOC/fonts/vf/public/cmcyr/wcmitt10.vf + RELOC/fonts/vf/public/cmcyr/wcmmi10.vf + RELOC/fonts/vf/public/cmcyr/wcmmi12.vf + RELOC/fonts/vf/public/cmcyr/wcmmi5.vf + RELOC/fonts/vf/public/cmcyr/wcmmi6.vf + RELOC/fonts/vf/public/cmcyr/wcmmi7.vf + RELOC/fonts/vf/public/cmcyr/wcmmi8.vf + RELOC/fonts/vf/public/cmcyr/wcmmi9.vf + RELOC/fonts/vf/public/cmcyr/wcmmib10.vf + RELOC/fonts/vf/public/cmcyr/wcmr10.vf + RELOC/fonts/vf/public/cmcyr/wcmr12.vf + RELOC/fonts/vf/public/cmcyr/wcmr17.vf + RELOC/fonts/vf/public/cmcyr/wcmr5.vf + RELOC/fonts/vf/public/cmcyr/wcmr6.vf + RELOC/fonts/vf/public/cmcyr/wcmr7.vf + RELOC/fonts/vf/public/cmcyr/wcmr8.vf + RELOC/fonts/vf/public/cmcyr/wcmr9.vf + RELOC/fonts/vf/public/cmcyr/wcmsl10.vf + RELOC/fonts/vf/public/cmcyr/wcmsl12.vf + RELOC/fonts/vf/public/cmcyr/wcmsl8.vf + RELOC/fonts/vf/public/cmcyr/wcmsl9.vf + RELOC/fonts/vf/public/cmcyr/wcmsltt10.vf + RELOC/fonts/vf/public/cmcyr/wcmss10.vf + RELOC/fonts/vf/public/cmcyr/wcmss12.vf + RELOC/fonts/vf/public/cmcyr/wcmss17.vf + RELOC/fonts/vf/public/cmcyr/wcmss8.vf + RELOC/fonts/vf/public/cmcyr/wcmss9.vf + RELOC/fonts/vf/public/cmcyr/wcmssbx10.vf + RELOC/fonts/vf/public/cmcyr/wcmssdc10.vf + RELOC/fonts/vf/public/cmcyr/wcmssi10.vf + RELOC/fonts/vf/public/cmcyr/wcmssi12.vf + RELOC/fonts/vf/public/cmcyr/wcmssi17.vf + RELOC/fonts/vf/public/cmcyr/wcmssi8.vf + RELOC/fonts/vf/public/cmcyr/wcmssi9.vf + RELOC/fonts/vf/public/cmcyr/wcmssq8.vf + RELOC/fonts/vf/public/cmcyr/wcmssqi8.vf + RELOC/fonts/vf/public/cmcyr/wcmti10.vf + RELOC/fonts/vf/public/cmcyr/wcmti12.vf + RELOC/fonts/vf/public/cmcyr/wcmti7.vf + RELOC/fonts/vf/public/cmcyr/wcmti8.vf + RELOC/fonts/vf/public/cmcyr/wcmti9.vf + RELOC/fonts/vf/public/cmcyr/wcmtt10.vf + RELOC/fonts/vf/public/cmcyr/wcmtt12.vf + RELOC/fonts/vf/public/cmcyr/wcmtt8.vf + RELOC/fonts/vf/public/cmcyr/wcmtt9.vf + RELOC/fonts/vf/public/cmcyr/wcmu10.vf + RELOC/fonts/vf/public/cmcyr/xcmb10.vf + RELOC/fonts/vf/public/cmcyr/xcmbx10.vf + RELOC/fonts/vf/public/cmcyr/xcmbx12.vf + RELOC/fonts/vf/public/cmcyr/xcmbx5.vf + RELOC/fonts/vf/public/cmcyr/xcmbx6.vf + RELOC/fonts/vf/public/cmcyr/xcmbx7.vf + RELOC/fonts/vf/public/cmcyr/xcmbx8.vf + RELOC/fonts/vf/public/cmcyr/xcmbx9.vf + RELOC/fonts/vf/public/cmcyr/xcmbxsl10.vf + RELOC/fonts/vf/public/cmcyr/xcmbxti10.vf + RELOC/fonts/vf/public/cmcyr/xcmcsc10.vf + RELOC/fonts/vf/public/cmcyr/xcmcsc8.vf + RELOC/fonts/vf/public/cmcyr/xcmcsc9.vf + RELOC/fonts/vf/public/cmcyr/xcminch.vf + RELOC/fonts/vf/public/cmcyr/xcmitt10.vf + RELOC/fonts/vf/public/cmcyr/xcmmi10.vf + RELOC/fonts/vf/public/cmcyr/xcmmi12.vf + RELOC/fonts/vf/public/cmcyr/xcmmi5.vf + RELOC/fonts/vf/public/cmcyr/xcmmi6.vf + RELOC/fonts/vf/public/cmcyr/xcmmi7.vf + RELOC/fonts/vf/public/cmcyr/xcmmi8.vf + RELOC/fonts/vf/public/cmcyr/xcmmi9.vf + RELOC/fonts/vf/public/cmcyr/xcmmib10.vf + RELOC/fonts/vf/public/cmcyr/xcmr10.vf + RELOC/fonts/vf/public/cmcyr/xcmr12.vf + RELOC/fonts/vf/public/cmcyr/xcmr17.vf + RELOC/fonts/vf/public/cmcyr/xcmr5.vf + RELOC/fonts/vf/public/cmcyr/xcmr6.vf + RELOC/fonts/vf/public/cmcyr/xcmr7.vf + RELOC/fonts/vf/public/cmcyr/xcmr8.vf + RELOC/fonts/vf/public/cmcyr/xcmr9.vf + RELOC/fonts/vf/public/cmcyr/xcmsl10.vf + RELOC/fonts/vf/public/cmcyr/xcmsl12.vf + RELOC/fonts/vf/public/cmcyr/xcmsl8.vf + RELOC/fonts/vf/public/cmcyr/xcmsl9.vf + RELOC/fonts/vf/public/cmcyr/xcmsltt10.vf + RELOC/fonts/vf/public/cmcyr/xcmss10.vf + RELOC/fonts/vf/public/cmcyr/xcmss12.vf + RELOC/fonts/vf/public/cmcyr/xcmss17.vf + RELOC/fonts/vf/public/cmcyr/xcmss8.vf + RELOC/fonts/vf/public/cmcyr/xcmss9.vf + RELOC/fonts/vf/public/cmcyr/xcmssbx10.vf + RELOC/fonts/vf/public/cmcyr/xcmssdc10.vf + RELOC/fonts/vf/public/cmcyr/xcmssi10.vf + RELOC/fonts/vf/public/cmcyr/xcmssi12.vf + RELOC/fonts/vf/public/cmcyr/xcmssi17.vf + RELOC/fonts/vf/public/cmcyr/xcmssi8.vf + RELOC/fonts/vf/public/cmcyr/xcmssi9.vf + RELOC/fonts/vf/public/cmcyr/xcmssq8.vf + RELOC/fonts/vf/public/cmcyr/xcmssqi8.vf + RELOC/fonts/vf/public/cmcyr/xcmti10.vf + RELOC/fonts/vf/public/cmcyr/xcmti12.vf + RELOC/fonts/vf/public/cmcyr/xcmti7.vf + RELOC/fonts/vf/public/cmcyr/xcmti8.vf + RELOC/fonts/vf/public/cmcyr/xcmti9.vf + RELOC/fonts/vf/public/cmcyr/xcmtt10.vf + RELOC/fonts/vf/public/cmcyr/xcmtt12.vf + RELOC/fonts/vf/public/cmcyr/xcmtt8.vf + RELOC/fonts/vf/public/cmcyr/xcmtt9.vf + RELOC/fonts/vf/public/cmcyr/xcmu10.vf + RELOC/fonts/vf/public/cmcyr/ycmb10.vf + RELOC/fonts/vf/public/cmcyr/ycmbx10.vf + RELOC/fonts/vf/public/cmcyr/ycmbx12.vf + RELOC/fonts/vf/public/cmcyr/ycmbx5.vf + RELOC/fonts/vf/public/cmcyr/ycmbx6.vf + RELOC/fonts/vf/public/cmcyr/ycmbx7.vf + RELOC/fonts/vf/public/cmcyr/ycmbx8.vf + RELOC/fonts/vf/public/cmcyr/ycmbx9.vf + RELOC/fonts/vf/public/cmcyr/ycmbxsl10.vf + RELOC/fonts/vf/public/cmcyr/ycmbxti10.vf + RELOC/fonts/vf/public/cmcyr/ycmcsc10.vf + RELOC/fonts/vf/public/cmcyr/ycmcsc8.vf + RELOC/fonts/vf/public/cmcyr/ycmcsc9.vf + RELOC/fonts/vf/public/cmcyr/ycminch.vf + RELOC/fonts/vf/public/cmcyr/ycmitt10.vf + RELOC/fonts/vf/public/cmcyr/ycmmi10.vf + RELOC/fonts/vf/public/cmcyr/ycmmi12.vf + RELOC/fonts/vf/public/cmcyr/ycmmi5.vf + RELOC/fonts/vf/public/cmcyr/ycmmi6.vf + RELOC/fonts/vf/public/cmcyr/ycmmi7.vf + RELOC/fonts/vf/public/cmcyr/ycmmi8.vf + RELOC/fonts/vf/public/cmcyr/ycmmi9.vf + RELOC/fonts/vf/public/cmcyr/ycmmib10.vf + RELOC/fonts/vf/public/cmcyr/ycmr10.vf + RELOC/fonts/vf/public/cmcyr/ycmr12.vf + RELOC/fonts/vf/public/cmcyr/ycmr17.vf + RELOC/fonts/vf/public/cmcyr/ycmr5.vf + RELOC/fonts/vf/public/cmcyr/ycmr6.vf + RELOC/fonts/vf/public/cmcyr/ycmr7.vf + RELOC/fonts/vf/public/cmcyr/ycmr8.vf + RELOC/fonts/vf/public/cmcyr/ycmr9.vf + RELOC/fonts/vf/public/cmcyr/ycmsl10.vf + RELOC/fonts/vf/public/cmcyr/ycmsl12.vf + RELOC/fonts/vf/public/cmcyr/ycmsl8.vf + RELOC/fonts/vf/public/cmcyr/ycmsl9.vf + RELOC/fonts/vf/public/cmcyr/ycmsltt10.vf + RELOC/fonts/vf/public/cmcyr/ycmss10.vf + RELOC/fonts/vf/public/cmcyr/ycmss12.vf + RELOC/fonts/vf/public/cmcyr/ycmss17.vf + RELOC/fonts/vf/public/cmcyr/ycmss8.vf + RELOC/fonts/vf/public/cmcyr/ycmss9.vf + RELOC/fonts/vf/public/cmcyr/ycmssbx10.vf + RELOC/fonts/vf/public/cmcyr/ycmssdc10.vf + RELOC/fonts/vf/public/cmcyr/ycmssi10.vf + RELOC/fonts/vf/public/cmcyr/ycmssi12.vf + RELOC/fonts/vf/public/cmcyr/ycmssi17.vf + RELOC/fonts/vf/public/cmcyr/ycmssi8.vf + RELOC/fonts/vf/public/cmcyr/ycmssi9.vf + RELOC/fonts/vf/public/cmcyr/ycmssq8.vf + RELOC/fonts/vf/public/cmcyr/ycmssqi8.vf + RELOC/fonts/vf/public/cmcyr/ycmti10.vf + RELOC/fonts/vf/public/cmcyr/ycmti12.vf + RELOC/fonts/vf/public/cmcyr/ycmti7.vf + RELOC/fonts/vf/public/cmcyr/ycmti8.vf + RELOC/fonts/vf/public/cmcyr/ycmti9.vf + RELOC/fonts/vf/public/cmcyr/ycmtt10.vf + RELOC/fonts/vf/public/cmcyr/ycmtt12.vf + RELOC/fonts/vf/public/cmcyr/ycmtt8.vf + RELOC/fonts/vf/public/cmcyr/ycmtt9.vf + RELOC/fonts/vf/public/cmcyr/ycmu10.vf +catalogue-ctan /fonts/cyrillic/cmcyr +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics font font-cyrillic font-type1 font-mf -name collectbox +name cmdstring category Package -revision 26557 -shortdesc Collect and process macro arguments as boxes. +revision 15878 +shortdesc Get command name reliably relocated 1 -longdesc The package provides macros to collect and process a macro -longdesc argument (i.e., something which looks like a macro argument) as -longdesc a horizontal box rather than as a real macro argument. The -longdesc "arguments" are stored as if they had been saved by \savebox or -longdesc by the lrbox environment. Grouping tokens \bgroup and \egroup -longdesc may be used, which allows the user to have the beginning and -longdesc end of a group in different macro invocations, or to place them -longdesc in the begin and end code of an environment. Arguments may -longdesc contain verbatim material or other special use of characters. -longdesc The macros were designed for use within other macros. -runfiles size=3 - RELOC/tex/latex/collectbox/collectbox.sty -docfiles size=67 - RELOC/doc/latex/collectbox/README - RELOC/doc/latex/collectbox/collectbox.pdf -srcfiles size=9 - RELOC/source/latex/collectbox/collectbox.dtx - RELOC/source/latex/collectbox/collectbox.ins -catalogue-ctan /macros/latex/contrib/collectbox -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.4b +longdesc Extracts the letters of a command's name (e.g., foo for command +longdesc \foo), in a reliable way. +containersize 872 +containerchecksum b05a8f8d326a6546b7c865e4cbc1afdfb0fa50993f4ad5e3b3a1e1781be9ed7590e1dd17b18d58f8a96c83aa2fe6218328b2df3e193e2dc7923d051374ebc9ba +doccontainersize 346136 +doccontainerchecksum c102fcd054597d84d98a4f74656f36a9e1aa53623bebaa4ef39f341ddb889062a0e0c705074a4909bf50ae3cdc9a0e0da06fc6b12fde10bcaf5391fe6c792818 +docfiles size=90 + RELOC/doc/latex/cmdstring/README details="Readme" + RELOC/doc/latex/cmdstring/cmdstring.pdf details="Package documentation" + RELOC/doc/latex/cmdstring/cmdstring.tex +runfiles size=1 + RELOC/tex/latex/cmdstring/cmdstring.sty +catalogue-ctan /macros/latex/contrib/cmdstring +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1.1 -name collection-basic -category Collection -revision 33040 -shortdesc Essential programs and files +name cmdtrack +category Package +revision 28910 +shortdesc Check used commands relocated 1 -longdesc These files are regarded as basic for any TeX system, covering -longdesc plain TeX macros, Computer Modern fonts, and configuration for -longdesc common drivers; no LaTeX. -depend texlive.infra -depend amsfonts -depend bibtex -depend cm -depend dvipdfmx -depend dvipdfmx-def -depend dvips -depend enctex -depend etex -depend etex-pkg -depend glyphlist -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 texconfig -depend texlive-common -depend texlive-en -depend texlive-msg-translations -depend texlive-scripts -depend xdvi +longdesc The package keeps track of whether a command defined in a +longdesc document preamble is actually used somewhere in the document. +longdesc After the package is loaded in the preamble of a document, all +longdesc \newcommand (and similar command definitions) between that +longdesc point and the beginning of the document will be marked for +longdesc logging. At the end of the document a report of command usage +longdesc will be printed in the TeX log, for example: "mdash was used on +longdesc line 25"; "ndash was never used". +containersize 2884 +containerchecksum 22de643d5b45f3898a1aeee44ae88594b545af34bb5bdac937753c13d31071872a78935dc2c73fb22c0e591d164f618549a2bd67a00550f3fb70753a951ad4cc +doccontainersize 131540 +doccontainerchecksum 2a69b054e1de07b31426e653af45125824bd037cf5a24fcde1f0fe1b6aa3eb925688959aa84094ecc65954b92030e1b78545db18f08a39990c4412d487ce2284 +docfiles size=34 + RELOC/doc/latex/cmdtrack/Makefile + RELOC/doc/latex/cmdtrack/README + RELOC/doc/latex/cmdtrack/cmdtrack.pdf details="Package documentation" +srccontainersize 5748 +srccontainerchecksum c6b02dd165bfb3ab40ee05aa3ac9df74faff8167de021495fb08e0d173b83f75453915a634d81d260d4739166b2e5a519b8cecfc7807d25f396c27c5b65f58f3 +srcfiles size=5 + RELOC/source/latex/cmdtrack/cmdtrack.dtx + RELOC/source/latex/cmdtrack/cmdtrack.ins +runfiles size=2 + RELOC/tex/latex/cmdtrack/cmdtrack.sty +catalogue-ctan /macros/latex/contrib/cmdtrack +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1 +catalogue-topics debug-supp -name collection-bibtexextra -category Collection -revision 38100 -shortdesc BibTeX additional styles +name cmexb +category Package +revision 45677 +shortdesc cmexb10 metrics and Type 1 relocated 1 -longdesc Additional BibTeX styles and bibliography data(bases), notably -longdesc including BibLaTeX. -depend collection-latex -depend aichej -depend ajl -depend amsrefs -depend apacite -depend apalike2 -depend beebe -depend besjournals -depend bibarts -depend biber -depend bibexport -depend bibhtml -depend biblatex -depend biblatex-anonymous -depend biblatex-apa -depend biblatex-bookinarticle -depend biblatex-bwl -depend biblatex-caspervector -depend biblatex-chem -depend biblatex-chicago -depend biblatex-dw -depend biblatex-fiwi -depend biblatex-gost -depend biblatex-historian -depend biblatex-ieee -depend biblatex-juradiss -depend biblatex-luh-ipw -depend biblatex-manuscripts-philology -depend biblatex-mla -depend biblatex-multiple-dm -depend biblatex-musuos -depend biblatex-nature -depend biblatex-nejm -depend biblatex-opcit-booktitle -depend biblatex-philosophy -depend biblatex-phys -depend biblatex-publist -depend biblatex-realauthor -depend biblatex-science -depend biblatex-source-division -depend biblatex-subseries -depend biblatex-swiss-legal -depend biblatex-trad -depend biblatex-true-citepages-omit -depend biblist -depend bibtopic -depend bibtopicprefix -depend bibunits -depend bookdb -depend breakcites -depend cell -depend chbibref -depend chicago -depend chicago-annote -depend chembst -depend chscite -depend citeall -depend collref -depend compactbib -depend crossrefware -depend custom-bib -depend din1505 -depend dk-bib -depend doipubmed -depend economic -depend fbs -depend figbib -depend footbib -depend francais-bst -depend geschichtsfrkl -depend harvard -depend harvmac -depend historische-zeitschrift -depend ijqc -depend inlinebib -depend iopart-num -depend jneurosci -depend jurabib -depend ksfh_nat -depend listbib -depend logreq -depend margbib -depend multibib -depend multibibliography -depend munich -depend nar -depend nmbib -depend notes2bib -depend oscola -depend perception -depend pnas2009 -depend rsc -depend showtags -depend sort-by-letters -depend splitbib -depend turabian-formatting -depend uni-wtal-ger -depend uni-wtal-lin -depend urlbst -depend usebib -depend vak -depend xcite +longdesc Computer Modern Math Extension bold, metrics and .pfb file. +longdesc Made by Petr Olsak via autotracing. +execute addMap cmexb.map +containersize 31728 +containerchecksum 1d5a3b2ee73dc85c2e19e7bd8bdf0eee0283ca161ecd42dbeffe0443849e73e09113220ca6e09039c0daa684b2f372e0f8b13bdd711a937a09cb8a8fb63b4593 +doccontainersize 916 +doccontainerchecksum f833bc57edead21d4fcb27c5822849f26cbd4b434bcd230bfccb190c94c47d2eaaec4dbc9264c6a55ba24b2571d2607197abfd792423e03b7013c478e261ee6d +docfiles size=1 + RELOC/doc/fonts/cmexb/README-cmexb +runfiles size=11 + RELOC/fonts/map/dvips/cmexb/cmexb.map + RELOC/fonts/tfm/public/cmexb/cmexb10.tfm + RELOC/fonts/type1/public/cmexb/cmexb10.pfb -name collection-binextra -category Collection -revision 38300 -shortdesc TeX auxiliary programs +name cmextra +category Package +revision 42428 +catalogue knuth-local +shortdesc Knuth's local information relocated 1 -longdesc Various useful, but non-essential, support programs. Includes -longdesc programs and macros for DVI file manipulation, literate -longdesc programming, patgen, and the TeX Works Editor. -depend collection-basic -depend a2ping -depend adhocfilelist -depend arara -depend asymptote -depend bibtex8 -depend bibtexu -depend bundledoc -depend checklistings -depend chktex -depend ctan_chk -depend ctanify -depend ctanupload -depend ctie -depend cweb -depend de-macro -depend detex -depend dtl -depend dtxgen -depend dvi2tty -depend dviasm -depend dvicopy -depend dvidvi -depend dviljk -depend dvipng -depend dvipos -depend dvisvgm -depend findhyph -depend fragmaster -depend hook-pre-commit-pkg -depend hyphenex -depend installfont -depend lacheck -depend latex-git-log -depend latex2man -depend latexdiff -depend latexfileversion -depend latexmk -depend latexpand -depend latexindent -depend ltxfileinfo -depend ltximg +longdesc A collection of experimental programs and developments based +longdesc on, or complementary to, the matter in his distribution +longdesc directories. +containersize 21752 +containerchecksum a9cf3d6157c6341de13f400bc496211912679702606d4e6c488231c41c4a70053791d031c7b6973ecfd68ab8e28c7d56d41a10492af7d8e4ae66b6eb923db370 +runfiles size=58 + RELOC/fonts/source/public/cmextra/bible12.mf + RELOC/fonts/source/public/cmextra/cmbxcd10.mf + RELOC/fonts/source/public/cmextra/cmbxti12.mf + RELOC/fonts/source/public/cmextra/cmbxti7.mf + RELOC/fonts/source/public/cmextra/cmcscsl10.mf + RELOC/fonts/source/public/cmextra/cmfibs8.mf + RELOC/fonts/source/public/cmextra/cmitt12.mf + RELOC/fonts/source/public/cmextra/cmitt9.mf + RELOC/fonts/source/public/cmextra/cmman.mf + RELOC/fonts/source/public/cmextra/cmntex10.mf + RELOC/fonts/source/public/cmextra/cmntt10.mf + RELOC/fonts/source/public/cmextra/cmsl6.mf + RELOC/fonts/source/public/cmextra/cmsltt9.mf + RELOC/fonts/source/public/cmextra/cmssbxo10.mf + RELOC/fonts/source/public/cmextra/cmsslu30.mf + RELOC/fonts/source/public/cmextra/cmssu30.mf + RELOC/fonts/source/public/cmextra/cmsytt10.mf + RELOC/fonts/source/public/cmextra/cmtim.mf + RELOC/fonts/source/public/cmextra/cmvtti10.mf + RELOC/fonts/source/public/cmextra/diam12.mf + RELOC/fonts/source/public/cmextra/gen.mf + RELOC/fonts/source/public/cmextra/gen10.mf + RELOC/fonts/source/public/cmextra/gen8.mf + RELOC/fonts/source/public/cmextra/gen9.mf + RELOC/fonts/tfm/public/cmextra/bible12.tfm + RELOC/fonts/tfm/public/cmextra/cmbxcd10.tfm + RELOC/fonts/tfm/public/cmextra/cmbxti12.tfm + RELOC/fonts/tfm/public/cmextra/cmbxti7.tfm + RELOC/fonts/tfm/public/cmextra/cmcscsl10.tfm + RELOC/fonts/tfm/public/cmextra/cmfibs8.tfm + RELOC/fonts/tfm/public/cmextra/cmitt12.tfm + RELOC/fonts/tfm/public/cmextra/cmitt9.tfm + RELOC/fonts/tfm/public/cmextra/cmman.tfm + RELOC/fonts/tfm/public/cmextra/cmntex10.tfm + RELOC/fonts/tfm/public/cmextra/cmntt10.tfm + RELOC/fonts/tfm/public/cmextra/cmsl6.tfm + RELOC/fonts/tfm/public/cmextra/cmsltt9.tfm + RELOC/fonts/tfm/public/cmextra/cmssbxo10.tfm + RELOC/fonts/tfm/public/cmextra/cmsslu30.tfm + RELOC/fonts/tfm/public/cmextra/cmssu30.tfm + RELOC/fonts/tfm/public/cmextra/cmsytt10.tfm + RELOC/fonts/tfm/public/cmextra/cmtim.tfm + RELOC/fonts/tfm/public/cmextra/cmvtti10.tfm + RELOC/fonts/tfm/public/cmextra/diam12.tfm + RELOC/fonts/tfm/public/cmextra/gen10.tfm + RELOC/fonts/tfm/public/cmextra/gen8.tfm + RELOC/fonts/tfm/public/cmextra/gen9.tfm +catalogue-ctan /systems/knuth/local +catalogue-date 2017-01-28 12:48:42 +0100 +catalogue-license knuth +catalogue-topics collection + +name cmll +category Package +revision 17964 +shortdesc Symbols for linear logic +relocated 1 +longdesc This is a very small font set that contain some symbols useful +longdesc in linear logic, which are apparently not available elsewhere. +longdesc Variants are included for use with Computer Modern serif and +longdesc sans-serif and with the AMS Euler series. The font is provided +longdesc both as Metafont source, and in Adobe Type 1 format. LaTeX +longdesc support is provided. +execute addMixedMap cmll.map +containersize 329904 +containerchecksum 8470819c5a37b3d8d1d44aae53b62ff020087e1125f381e51ef4a639fd6b2394c3d6f15a3a86fe70e61a4545213059bde6fc3e9d06cd054e46218e90e64c0543 +doccontainersize 96492 +doccontainerchecksum 71a7cd27a2744e8e3ab09b8fbbc514eb2e38d9740349139212f0861c67948fa1a98728acb1d22a4397fe95d8efd5c6fcb87a1843a1f9dbd0d161e2e835e1ac11 +docfiles size=28 + RELOC/doc/fonts/cmll/README details="Readme" + RELOC/doc/fonts/cmll/cmll.pdf details="Package documentation" +srccontainersize 4464 +srccontainerchecksum de17c8e0627408358ae3de41a5bf557d99abf76bb480ab28ef9df424d8b7ae1f73ca2e30f4eeb26ac9eb2dd36ddafa143cd49ce6618b2ca36fcfc6e22e83d217 +srcfiles size=5 + RELOC/source/latex/cmll/cmll.dtx + RELOC/source/latex/cmll/cmll.ins +runfiles size=191 + RELOC/fonts/map/dvips/cmll/cmll.map + RELOC/fonts/source/public/cmll/cmllbx10.mf + RELOC/fonts/source/public/cmll/cmllbx12.mf + RELOC/fonts/source/public/cmll/cmllbx5.mf + RELOC/fonts/source/public/cmll/cmllbx6.mf + RELOC/fonts/source/public/cmll/cmllbx7.mf + RELOC/fonts/source/public/cmll/cmllbx8.mf + RELOC/fonts/source/public/cmll/cmllbx9.mf + RELOC/fonts/source/public/cmll/cmllr10.mf + RELOC/fonts/source/public/cmll/cmllr12.mf + RELOC/fonts/source/public/cmll/cmllr17.mf + RELOC/fonts/source/public/cmll/cmllr5.mf + RELOC/fonts/source/public/cmll/cmllr6.mf + RELOC/fonts/source/public/cmll/cmllr7.mf + RELOC/fonts/source/public/cmll/cmllr8.mf + RELOC/fonts/source/public/cmll/cmllr9.mf + RELOC/fonts/source/public/cmll/cmllss10.mf + RELOC/fonts/source/public/cmll/cmllss12.mf + RELOC/fonts/source/public/cmll/cmllss17.mf + RELOC/fonts/source/public/cmll/cmllss8.mf + RELOC/fonts/source/public/cmll/cmllss9.mf + RELOC/fonts/source/public/cmll/cmllssbx10.mf + RELOC/fonts/source/public/cmll/eullbx10.mf + RELOC/fonts/source/public/cmll/eullbx5.mf + RELOC/fonts/source/public/cmll/eullbx6.mf + RELOC/fonts/source/public/cmll/eullbx7.mf + RELOC/fonts/source/public/cmll/eullbx8.mf + RELOC/fonts/source/public/cmll/eullbx9.mf + RELOC/fonts/source/public/cmll/eullr10.mf + RELOC/fonts/source/public/cmll/eullr5.mf + RELOC/fonts/source/public/cmll/eullr6.mf + RELOC/fonts/source/public/cmll/eullr7.mf + RELOC/fonts/source/public/cmll/eullr8.mf + RELOC/fonts/source/public/cmll/eullr9.mf + RELOC/fonts/source/public/cmll/llcommon.mf + RELOC/fonts/source/public/cmll/lleusym.mf + RELOC/fonts/source/public/cmll/llsymbols.mf + RELOC/fonts/tfm/public/cmll/cmllbx10.tfm + RELOC/fonts/tfm/public/cmll/cmllbx12.tfm + RELOC/fonts/tfm/public/cmll/cmllbx5.tfm + RELOC/fonts/tfm/public/cmll/cmllbx6.tfm + RELOC/fonts/tfm/public/cmll/cmllbx7.tfm + RELOC/fonts/tfm/public/cmll/cmllbx8.tfm + RELOC/fonts/tfm/public/cmll/cmllbx9.tfm + RELOC/fonts/tfm/public/cmll/cmllr10.tfm + RELOC/fonts/tfm/public/cmll/cmllr12.tfm + RELOC/fonts/tfm/public/cmll/cmllr17.tfm + RELOC/fonts/tfm/public/cmll/cmllr5.tfm + RELOC/fonts/tfm/public/cmll/cmllr6.tfm + RELOC/fonts/tfm/public/cmll/cmllr7.tfm + RELOC/fonts/tfm/public/cmll/cmllr8.tfm + RELOC/fonts/tfm/public/cmll/cmllr9.tfm + RELOC/fonts/tfm/public/cmll/cmllss10.tfm + RELOC/fonts/tfm/public/cmll/cmllss12.tfm + RELOC/fonts/tfm/public/cmll/cmllss17.tfm + RELOC/fonts/tfm/public/cmll/cmllss8.tfm + RELOC/fonts/tfm/public/cmll/cmllss9.tfm + RELOC/fonts/tfm/public/cmll/cmllssbx10.tfm + RELOC/fonts/tfm/public/cmll/eullbx10.tfm + RELOC/fonts/tfm/public/cmll/eullbx5.tfm + RELOC/fonts/tfm/public/cmll/eullbx6.tfm + RELOC/fonts/tfm/public/cmll/eullbx7.tfm + RELOC/fonts/tfm/public/cmll/eullbx8.tfm + RELOC/fonts/tfm/public/cmll/eullbx9.tfm + RELOC/fonts/tfm/public/cmll/eullr10.tfm + RELOC/fonts/tfm/public/cmll/eullr5.tfm + RELOC/fonts/tfm/public/cmll/eullr6.tfm + RELOC/fonts/tfm/public/cmll/eullr7.tfm + RELOC/fonts/tfm/public/cmll/eullr8.tfm + RELOC/fonts/tfm/public/cmll/eullr9.tfm + RELOC/fonts/type1/public/cmll/cmllbx10.pfb + RELOC/fonts/type1/public/cmll/cmllbx12.pfb + RELOC/fonts/type1/public/cmll/cmllbx5.pfb + RELOC/fonts/type1/public/cmll/cmllbx6.pfb + RELOC/fonts/type1/public/cmll/cmllbx7.pfb + RELOC/fonts/type1/public/cmll/cmllbx8.pfb + RELOC/fonts/type1/public/cmll/cmllbx9.pfb + RELOC/fonts/type1/public/cmll/cmllr10.pfb + RELOC/fonts/type1/public/cmll/cmllr12.pfb + RELOC/fonts/type1/public/cmll/cmllr17.pfb + RELOC/fonts/type1/public/cmll/cmllr5.pfb + RELOC/fonts/type1/public/cmll/cmllr6.pfb + RELOC/fonts/type1/public/cmll/cmllr7.pfb + RELOC/fonts/type1/public/cmll/cmllr8.pfb + RELOC/fonts/type1/public/cmll/cmllr9.pfb + RELOC/fonts/type1/public/cmll/cmllss10.pfb + RELOC/fonts/type1/public/cmll/cmllss12.pfb + RELOC/fonts/type1/public/cmll/cmllss17.pfb + RELOC/fonts/type1/public/cmll/cmllss8.pfb + RELOC/fonts/type1/public/cmll/cmllss9.pfb + RELOC/fonts/type1/public/cmll/cmllssbx10.pfb + RELOC/fonts/type1/public/cmll/eullbx10.pfb + RELOC/fonts/type1/public/cmll/eullbx5.pfb + RELOC/fonts/type1/public/cmll/eullbx6.pfb + RELOC/fonts/type1/public/cmll/eullbx7.pfb + RELOC/fonts/type1/public/cmll/eullbx8.pfb + RELOC/fonts/type1/public/cmll/eullbx9.pfb + RELOC/fonts/type1/public/cmll/eullr10.pfb + RELOC/fonts/type1/public/cmll/eullr5.pfb + RELOC/fonts/type1/public/cmll/eullr6.pfb + RELOC/fonts/type1/public/cmll/eullr7.pfb + RELOC/fonts/type1/public/cmll/eullr8.pfb + RELOC/fonts/type1/public/cmll/eullr9.pfb + RELOC/tex/latex/cmll/cmll.sty + RELOC/tex/latex/cmll/ucmllr.fd + RELOC/tex/latex/cmll/ucmllss.fd + RELOC/tex/latex/cmll/ueull.fd +catalogue-ctan /fonts/cmll +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font font-maths font-mf font-type1 + +name cmpica +category Package +revision 15878 +shortdesc A Computer Modern Pica variant +relocated 1 +longdesc An approximate equivalent of the Xerox Pica typeface; the font +longdesc is optimised for submitting fiction manuscripts to mainline +longdesc publishers. The font is a fixed-width one, rather less heavy +longdesc than Computer Modern typewriter. Emphasis for bold-face comes +longdesc from a wavy underline of each letter. The two fonts are +longdesc supplied as Metafont source. +containersize 6448 +containerchecksum 2aac63861c3c1099054286647917f4ab594fd535de9d513f790cb70e8a38278ffda0be29656e1da57206c7bac21928cf5179bd1cc22f50e0f10d1ca8083f4b86 +doccontainersize 1092 +doccontainerchecksum 7c6251f1c5090328c93f6ec224bbb6d05433b5471c6cb8b4d7f3b9ff05f9be8ad49587d24a34702fb23b9f1803ca3df3a638b16335944a9b2dc35422ca8bf9fe +docfiles size=1 + RELOC/doc/latex/cmpica/README details="Readme" +runfiles size=13 + RELOC/fonts/source/public/cmpica/cmpica.mf + RELOC/fonts/source/public/cmpica/cmpicab.mf + RELOC/fonts/source/public/cmpica/cmpicati.mf + RELOC/fonts/source/public/cmpica/pcpunct.mf + RELOC/fonts/source/public/cmpica/pica.mf + RELOC/fonts/tfm/public/cmpica/cmpica.tfm + RELOC/fonts/tfm/public/cmpica/cmpicab.tfm + RELOC/fonts/tfm/public/cmpica/cmpicati.tfm +catalogue-ctan /fonts/cmpica +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics font font-mf + +name cmpj +category Package +revision 44283 +shortdesc Style for the journal Condensed Matter Physics +relocated 1 +longdesc The package contains macros and some documentation for +longdesc typesetting papers for submission to the Condensed Matter +longdesc Physics journal published by the Institute for Condensed Matter +longdesc Physics of the National Academy of Sciences of Ukraine. +containersize 48396 +containerchecksum 17ff49e4350bad1a72e33291c37ede5cf8769d5d385b98f8fd47f309af7e47f00e98662b991055cd2dd1117fe65e69a63a0ca8ba00e7129bad772cbaa4df3b17 +doccontainersize 463512 +doccontainerchecksum 2440e6244a15c59b406520b0c1fc3f78fea2493bef65c66df445744efbc226c7768ebe1a7150fc12dde754c7bf671d455476ed87633efcf345b765a25b7af43c +docfiles size=172 + RELOC/doc/latex/cmpj/README details="Readme" + RELOC/doc/latex/cmpj/cmpjxampl.bib + RELOC/doc/latex/cmpj/eps_demo.eps + RELOC/doc/latex/cmpj/eps_demo.pdf + RELOC/doc/latex/cmpj/icmphome.eps + RELOC/doc/latex/cmpj/icmphome.pdf + RELOC/doc/latex/cmpj/template.pdf details="Template and instructions to authors" + RELOC/doc/latex/cmpj/template.tex +runfiles size=75 + RELOC/bibtex/bst/cmpj/cmpj.bst + RELOC/tex/latex/cmpj/cmp-logo.eps + RELOC/tex/latex/cmpj/cmp-logo.pdf + RELOC/tex/latex/cmpj/cmpj-cc-by-small.eps + RELOC/tex/latex/cmpj/cmpj-cc-by-small.pdf + RELOC/tex/latex/cmpj/cmpj.sty + RELOC/tex/latex/cmpj/cmpj2.sty + RELOC/tex/latex/cmpj/cmpj3.sty +catalogue-contact-home http://www.icmp.lviv.ua/journal/Instructions.html +catalogue-ctan /macros/latex/contrib/cmpj +catalogue-date 2017-05-10 15:16:26 +0200 +catalogue-license lppl +catalogue-topics physics journalpub +catalogue-version 3.01 + +name cmsd +category Package +revision 18787 +shortdesc Interfaces to the CM Sans Serif Bold fonts +relocated 1 +longdesc Thr purpose of the package is to provide an alternative +longdesc interface to the CM Sans Serif boldface fonts. The EC (T1, +longdesc Cork) encoded versions of the 'CM Sans Serif boldface extended' +longdesc fonts differ considerably from the traditionally (OT1) encoded +longdesc ones: at large sizes, >10pt, they have thinner strokes and are +longdesc much wider. At 25pt they are hardly to be recognized as being +longdesc 'boldface'. This package attempts to make these T1 fonts look +longdesc like the traditional ones did. You do not need any new fonts; +longdesc the package just changes the way LaTeX makes use of the current +longdesc ones. +containersize 1236 +containerchecksum 97e1830bdbab04e321433f43e14d65fd2e9820d46a6fb3616f2cea38a54208e80e1238eba7b5cfd20137f6e3a3da3a1586a7caa3e0a495ed91235a05120d444c +doccontainersize 2288 +doccontainerchecksum f9994a39f6e14f40398abacfe0f4c1a9cbd71d7b55c29787105fdbf8212953fb761f1696cf35196d446b9905a967d2908d7e41e7742e5cd7dd538ac0e7d3f5d0 +docfiles size=2 + RELOC/doc/latex/cmsd/liesmich + RELOC/doc/latex/cmsd/readme details="Readme" +runfiles size=3 + RELOC/tex/latex/cmsd/cmsd.sty + RELOC/tex/latex/cmsd/t1cmsd.fd + RELOC/tex/latex/cmsd/ts1cmsd.fd +catalogue-ctan /macros/latex/contrib/cmsd +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font-supp + +name cmsrb +category Package +revision 50531 +shortdesc Computer Modern for Serbian and Macedonian +relocated 1 +longdesc This package provides provides Adobe Type 1 Computer Modern +longdesc fonts for the Serbian and Macedonian languages. Although the +longdesc cm-super package provides great support for cyrillic script in +longdesc various languages, there remains a problem with italic variants +longdesc of some letters for Serbian and Macedonian. This package +longdesc includes the correct shapes for italic letters \cyrb, \cyrg, +longdesc \cyrd, \cyrp, and \cyrt. It also offers some improvements in +longdesc letters and accents used in the Serbian language. Supported +longdesc encodings are: T1, T2A, TS1, X2 and OT2. The OT2 encoding is +longdesc modified so that it is now easy to transcribe Latin text to +longdesc Cyrillic. +execute addMap cmsrb.map +containersize 2235496 +containerchecksum 34f93d3daeb14ca1f928515176dfb2dc241782936bc3b1f28d2271973758c917a77db83f8facc75c93858c80d775724af5e8b9302727aca75d0c26416995a6d7 +doccontainersize 552752 +doccontainerchecksum 0528bbf25e93b4c1a998fb12f84b386e9d3d3c6666b26ff9dfb3a6f02f58a89f9415fd926287c52f365a9a7da8e3a4129076dbdbeb50d9a345259acffef548dc +docfiles size=217 + RELOC/doc/fonts/cmsrb/README.md details="Readme" + RELOC/doc/fonts/cmsrb/cmsrb-SR.pdf details="Package documentation (Serbian)" language="sr-sp" + RELOC/doc/fonts/cmsrb/cmsrb-SR.tex + RELOC/doc/fonts/cmsrb/cmsrb.pdf details="Package documentation" + RELOC/doc/fonts/cmsrb/cmsrb.tex +runfiles size=1249 + RELOC/fonts/afm/public/cmsrb/cmsrbex.afm + RELOC/fonts/afm/public/cmsrb/cmsrbrb.afm + RELOC/fonts/afm/public/cmsrb/cmsrbrc.afm + RELOC/fonts/afm/public/cmsrb/cmsrbrd.afm + RELOC/fonts/afm/public/cmsrb/cmsrbri.afm + RELOC/fonts/afm/public/cmsrb/cmsrbrr.afm + RELOC/fonts/afm/public/cmsrb/cmsrbrs.afm + RELOC/fonts/afm/public/cmsrb/cmsrbrx.afm + RELOC/fonts/afm/public/cmsrb/cmsrbry.afm + RELOC/fonts/afm/public/cmsrb/cmsrbsb.afm + RELOC/fonts/afm/public/cmsrb/cmsrbsr.afm + RELOC/fonts/afm/public/cmsrb/cmsrbss.afm + RELOC/fonts/afm/public/cmsrb/cmsrbst.afm + RELOC/fonts/afm/public/cmsrb/cmsrbtc.afm + RELOC/fonts/afm/public/cmsrb/cmsrbti.afm + RELOC/fonts/afm/public/cmsrb/cmsrbtr.afm + RELOC/fonts/afm/public/cmsrb/cmsrbts.afm + RELOC/fonts/enc/dvips/cmsrb/cmsrbot2.enc + RELOC/fonts/enc/dvips/cmsrb/cmsrbt1.enc + RELOC/fonts/enc/dvips/cmsrb/cmsrbt2a.enc + RELOC/fonts/enc/dvips/cmsrb/cmsrbts1.enc + RELOC/fonts/enc/dvips/cmsrb/cmsrbx2.enc + RELOC/fonts/map/dvips/cmsrb/cmsrb.map + RELOC/fonts/tfm/public/cmsrb/cmsrbex.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbrb-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbrb.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbrc-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbrc.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbrd-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbrd.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbri-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbri.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbrr-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbrr.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbrs-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbrs.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbrx-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbrx.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbry-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbry.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbsb-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbsb.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbsr-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbsr.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbss-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbss.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbst-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbst.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbtc-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbtc.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbti-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbti.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbtr-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbtr.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbts-base.tfm + RELOC/fonts/tfm/public/cmsrb/ot2cmsrbts.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbrb-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbrb.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbrc-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbrc.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbrd-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbrd.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbri-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbri.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbrr-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbrr.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbrs-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbrs.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbrx-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbrx.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbry-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbry.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbsb-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbsb.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbsr-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbsr.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbss-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbss.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbst-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbst.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbtc-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbtc.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbti-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbti.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbtr-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbtr.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbts-base.tfm + RELOC/fonts/tfm/public/cmsrb/t1cmsrbts.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbrb-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbrb.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbrc-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbrc.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbrd-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbrd.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbri-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbri.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbrr-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbrr.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbrs-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbrs.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbrx-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbrx.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbry-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbry.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbsb-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbsb.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbsr-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbsr.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbss-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbss.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbst-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbst.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbtc-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbtc.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbti-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbti.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbtr-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbtr.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbts-base.tfm + RELOC/fonts/tfm/public/cmsrb/t2acmsrbts.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbrb-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbrb.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbrc-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbrc.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbrd-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbrd.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbri-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbri.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbrr-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbrr.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbrs-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbrs.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbrx-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbrx.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbry-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbry.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbsb-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbsb.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbsr-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbsr.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbss-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbss.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbst-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbst.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbtc-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbtc.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbti-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbti.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbtr-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbtr.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbts-base.tfm + RELOC/fonts/tfm/public/cmsrb/ts1cmsrbts.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbrb-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbrb.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbrc-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbrc.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbrd-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbrd.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbri-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbri.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbrr-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbrr.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbrs-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbrs.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbrx-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbrx.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbry-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbry.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbsb-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbsb.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbsr-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbsr.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbss-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbss.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbst-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbst.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbtc-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbtc.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbti-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbti.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbtr-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbtr.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbts-base.tfm + RELOC/fonts/tfm/public/cmsrb/x2cmsrbts.tfm + RELOC/fonts/type1/public/cmsrb/cmsrbex.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbrb.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbrc.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbrd.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbri.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbrr.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbrs.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbrx.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbry.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbsb.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbsr.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbss.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbst.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbtc.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbti.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbtr.pfb + RELOC/fonts/type1/public/cmsrb/cmsrbts.pfb + RELOC/fonts/vf/public/cmsrb/ot2cmsrbrb.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbrc.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbrd.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbri.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbrr.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbrs.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbrx.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbry.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbsb.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbsr.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbss.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbst.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbtc.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbti.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbtr.vf + RELOC/fonts/vf/public/cmsrb/ot2cmsrbts.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbrb.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbrc.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbrd.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbri.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbrr.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbrs.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbrx.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbry.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbsb.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbsr.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbss.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbst.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbtc.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbti.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbtr.vf + RELOC/fonts/vf/public/cmsrb/t1cmsrbts.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbrb.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbrc.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbrd.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbri.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbrr.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbrs.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbrx.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbry.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbsb.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbsr.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbss.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbst.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbtc.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbti.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbtr.vf + RELOC/fonts/vf/public/cmsrb/t2acmsrbts.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbrb.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbrc.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbrd.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbri.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbrr.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbrs.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbrx.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbry.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbsb.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbsr.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbss.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbst.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbtc.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbti.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbtr.vf + RELOC/fonts/vf/public/cmsrb/ts1cmsrbts.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbrb.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbrc.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbrd.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbri.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbrr.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbrs.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbrx.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbry.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbsb.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbsr.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbss.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbst.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbtc.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbti.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbtr.vf + RELOC/fonts/vf/public/cmsrb/x2cmsrbts.vf + RELOC/tex/latex/cmsrb/cmsrb.sty + RELOC/tex/latex/cmsrb/omxcmsrbex.fd + RELOC/tex/latex/cmsrb/ot2cmsrbr.fd + RELOC/tex/latex/cmsrb/ot2cmsrbs.fd + RELOC/tex/latex/cmsrb/ot2cmsrbt.fd + RELOC/tex/latex/cmsrb/t1cmsrbr.fd + RELOC/tex/latex/cmsrb/t1cmsrbs.fd + RELOC/tex/latex/cmsrb/t1cmsrbt.fd + RELOC/tex/latex/cmsrb/t2acmsrbr.fd + RELOC/tex/latex/cmsrb/t2acmsrbs.fd + RELOC/tex/latex/cmsrb/t2acmsrbt.fd + RELOC/tex/latex/cmsrb/ts1cmsrbr.fd + RELOC/tex/latex/cmsrb/ts1cmsrbs.fd + RELOC/tex/latex/cmsrb/ts1cmsrbt.fd + RELOC/tex/latex/cmsrb/x2cmsrbr.fd + RELOC/tex/latex/cmsrb/x2cmsrbs.fd + RELOC/tex/latex/cmsrb/x2cmsrbt.fd +catalogue-ctan /fonts/cmsrb +catalogue-date 2019-03-22 10:00:54 +0100 +catalogue-license gpl +catalogue-topics font font-cm font-serif font-sans font-mono font-cyrillic font-multilingual font-proportional font-t1enc font-type1 +catalogue-version 3.0 + +name cmtiup +category Package +revision 39728 +shortdesc Upright punctuation with CM italic +relocated 1 +longdesc The cmtiup fonts address a problem with the appearance of +longdesc punctuation in italic text in mathematical documents. To +longdesc achieve this, all punctuation characters are upright, and +longdesc kerning between letters and punctuation is adjusted to allow +longdesc for the italic correction. The fonts are implemented as a set +longdesc of vf files; a package for support in LaTeX 2e is provided. +containersize 43612 +containerchecksum 9412576d07ec490fda4dd01445f28e4b966d2664a81e5f44a574019df1eb4de4189b8d06edf7a1a3b57e8ade129b57c0147a96fa9b77337d9a906134e33f2067 +doccontainersize 585536 +doccontainerchecksum aae6105fc9e828715193bc4d251210f23ce6f4c4d703c79c244ff765a377f90055188f8af83e705da062cea8db8bf6b89beecc488cce32d7903fb7fb8c4bcad9 +docfiles size=204 + RELOC/doc/latex/cmtiup/README details="Readme" + RELOC/doc/latex/cmtiup/cmtiup.dtx + RELOC/doc/latex/cmtiup/cmtiup.ins + RELOC/doc/latex/cmtiup/cmtiup.pdf details="Package documentation" +runfiles size=165 + RELOC/fonts/source/public/cmtiup/cmtiup10.mf + RELOC/fonts/source/public/cmtiup/cmtiup12.mf + RELOC/fonts/source/public/cmtiup/cmtiup7.mf + RELOC/fonts/source/public/cmtiup/cmtiup8.mf + RELOC/fonts/source/public/cmtiup/cmtiup9.mf + RELOC/fonts/source/public/cmtiup/cmtiupgn.mf + RELOC/fonts/source/public/cmtiup/cmtiuplg.mf + RELOC/fonts/source/public/cmtiup/cmtiupp.mf + RELOC/fonts/tfm/public/cmtiup/cmbxtiup10.tfm + RELOC/fonts/tfm/public/cmtiup/cmtiup10.tfm + RELOC/fonts/tfm/public/cmtiup/cmtiup12.tfm + RELOC/fonts/tfm/public/cmtiup/cmtiup7.tfm + RELOC/fonts/tfm/public/cmtiup/cmtiup8.tfm + RELOC/fonts/tfm/public/cmtiup/cmtiup9.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup0500.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup0600.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup0700.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup0800.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup0900.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup1000.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup1095.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup1200.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup1440.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup1728.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup2074.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup2488.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup2986.tfm + RELOC/fonts/tfm/public/cmtiup/ecbiup3583.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup0500.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup0600.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup0700.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup0800.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup0900.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup1000.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup1095.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup1200.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup1440.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup1728.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup2074.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup2488.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup2986.tfm + RELOC/fonts/tfm/public/cmtiup/ectiup3583.tfm + RELOC/fonts/vf/public/cmtiup/cmbxtiup10.vf + RELOC/fonts/vf/public/cmtiup/cmtiup10.vf + RELOC/fonts/vf/public/cmtiup/cmtiup12.vf + RELOC/fonts/vf/public/cmtiup/cmtiup7.vf + RELOC/fonts/vf/public/cmtiup/cmtiup8.vf + RELOC/fonts/vf/public/cmtiup/cmtiup9.vf + RELOC/fonts/vf/public/cmtiup/ecbiup0500.vf + RELOC/fonts/vf/public/cmtiup/ecbiup0600.vf + RELOC/fonts/vf/public/cmtiup/ecbiup0700.vf + RELOC/fonts/vf/public/cmtiup/ecbiup0800.vf + RELOC/fonts/vf/public/cmtiup/ecbiup0900.vf + RELOC/fonts/vf/public/cmtiup/ecbiup1000.vf + RELOC/fonts/vf/public/cmtiup/ecbiup1095.vf + RELOC/fonts/vf/public/cmtiup/ecbiup1200.vf + RELOC/fonts/vf/public/cmtiup/ecbiup1440.vf + RELOC/fonts/vf/public/cmtiup/ecbiup1728.vf + RELOC/fonts/vf/public/cmtiup/ecbiup2074.vf + RELOC/fonts/vf/public/cmtiup/ecbiup2488.vf + RELOC/fonts/vf/public/cmtiup/ecbiup2986.vf + RELOC/fonts/vf/public/cmtiup/ecbiup3583.vf + RELOC/fonts/vf/public/cmtiup/ectiup0500.vf + RELOC/fonts/vf/public/cmtiup/ectiup0600.vf + RELOC/fonts/vf/public/cmtiup/ectiup0700.vf + RELOC/fonts/vf/public/cmtiup/ectiup0800.vf + RELOC/fonts/vf/public/cmtiup/ectiup0900.vf + RELOC/fonts/vf/public/cmtiup/ectiup1000.vf + RELOC/fonts/vf/public/cmtiup/ectiup1095.vf + RELOC/fonts/vf/public/cmtiup/ectiup1200.vf + RELOC/fonts/vf/public/cmtiup/ectiup1440.vf + RELOC/fonts/vf/public/cmtiup/ectiup1728.vf + RELOC/fonts/vf/public/cmtiup/ectiup2074.vf + RELOC/fonts/vf/public/cmtiup/ectiup2488.vf + RELOC/fonts/vf/public/cmtiup/ectiup2986.vf + RELOC/fonts/vf/public/cmtiup/ectiup3583.vf + RELOC/tex/latex/cmtiup/cmtiup.sty +catalogue-also cmslup +catalogue-ctan /fonts/cm/cmtiup +catalogue-date 2017-10-29 14:38:38 +0100 +catalogue-license lppl1.3 +catalogue-topics font font-mf font-virtual +catalogue-version 2.1 + +name cnbwp +category Package +revision 32550 +shortdesc Typeset working papers of the Czech National Bank +relocated 1 +longdesc The package supports proper formatting of Working Papers of the +longdesc Czech National Bank (WP CNB). The package was developed for CNB +longdesc but it is also intended for authors from outside CNB. +containersize 9924 +containerchecksum 31c83774160e64dadc95afebe830ea1aa7c929e48f611cf5c9742cb66e12a3dd459928c85ed1378460247241fd4f007145b002ae7aabb88e773779124510c86f +doccontainersize 684304 +doccontainerchecksum d41f72a3c5482b1ec50f1bacbaf8bed5f926c5d522ab5e3574d71d68b2d7c63e20fa1df65962f94e53b70f75aa7dee5337d064c212990c0f3351c30b05b567ac +docfiles size=246 + RELOC/doc/latex/cnbwp/README details="Readme" + RELOC/doc/latex/cnbwp/biblio.tex + RELOC/doc/latex/cnbwp/cnbpaper.pdf + RELOC/doc/latex/cnbwp/cnbpaper.tex + RELOC/doc/latex/cnbwp/cnbsample.bib + RELOC/doc/latex/cnbwp/cnbwp-manual-cs.pdf details="Package documentation (Czech)" + RELOC/doc/latex/cnbwp/cnbwp-manual-cs.tex + RELOC/doc/latex/cnbwp/cnbwp-manual-en.pdf details="Package documentation (English)" + RELOC/doc/latex/cnbwp/cnbwp-manual-en.tex + RELOC/doc/latex/cnbwp/graph18.eps + RELOC/doc/latex/cnbwp/graph18.gif + RELOC/doc/latex/cnbwp/graph18.jpg + RELOC/doc/latex/cnbwp/graph18.pdf + RELOC/doc/latex/cnbwp/graph18.png + RELOC/doc/latex/cnbwp/numtable.tex + RELOC/doc/latex/cnbwp/widematrix.tex +runfiles size=15 + RELOC/bibtex/bst/cnbwp/abbrvcnb.bst + RELOC/makeindex/cnbwp/cnbindex.ist + RELOC/tex/latex/cnbwp/cnbwp-manual.sty + RELOC/tex/latex/cnbwp/cnbwp.cls + RELOC/tex/latex/cnbwp/cnbwpsizes.clo +catalogue-ctan /macros/latex/contrib/cnbwp +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics misc-paper + +name cnltx +category Package +revision 38138 +shortdesc LaTeX tools and documenting facilities +relocated 1 +longdesc This is a versatile bundle of packages and classes for +longdesc consistent formatting of control sequences, package options, +longdesc source code examples, and writing a package manual (including +longdesc an index containing the explained control sequences, options, +longdesc ldots). The bundle also provides several other small ideas of +longdesc mine such as a mechansim for providing abbreviations etc. Not +longdesc at least it provides a number of programming tools. The +longdesc intention behind this bundle mainly is a selfish one: +longdesc documenting my own packages. The bundle contains an index style +longdesc file cnltx.ist that should be placed in a directory in a TDS +longdesc makeindex directory. +containersize 33992 +containerchecksum cbe777c4dc81f0798ba3d64844e65c84a7623611feb93a14e949375f0cda982d7a973fd662975edc51e508c0cd0d19f24e92bff112f56b765ad4378ae95b8bd4 +doccontainersize 796288 +doccontainerchecksum 1af4a294f758889b8cec97cdc53519fa9eb360e590e5db96cfb25ad2d0d0f89b7b3efa6b6ea986e29819b3023d04f3cf50a0a2e583bcd6fd80a61dfcdbc5dcc1 +docfiles size=223 + RELOC/doc/latex/cnltx/README details="Readme" + RELOC/doc/latex/cnltx/cnltx_en.pdf details="Package documentation" + RELOC/doc/latex/cnltx/cnltx_en.tex +runfiles size=50 + RELOC/bibtex/bib/cnltx/cnltx.bib + RELOC/makeindex/cnltx/cnltx.ist + RELOC/tex/latex/cnltx/cnltx-base.sty + RELOC/tex/latex/cnltx/cnltx-doc.cls + RELOC/tex/latex/cnltx/cnltx-example.sty + RELOC/tex/latex/cnltx/cnltx-listings.sty + RELOC/tex/latex/cnltx/cnltx-names.sty + RELOC/tex/latex/cnltx/cnltx-tools.sty + RELOC/tex/latex/cnltx/cnltx-translations.sty + RELOC/tex/latex/cnltx/cnltx.bbx + RELOC/tex/latex/cnltx/cnltx.cbx + RELOC/tex/latex/cnltx/cnltx.dbx + RELOC/tex/latex/cnltx/cnltx.sty +catalogue-contact-repository https://github.com/cgnieder/cnltx/ +catalogue-ctan /macros/latex/contrib/cnltx +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics doc-supp class expl3 +catalogue-version 0.13 + +name cns +category Package +revision 45677 +catalogue cjk-fonts +shortdesc Chinese/Japanese/Korean bitmap fonts +relocated 1 +longdesc Fonts to go with the cjk macro package for Chinese, Japanese +longdesc and Korean with LaTeX2e. The package aims to supersede HLaTeX +longdesc fonts bundle. +containersize 2985692 +containerchecksum 0b3645da07e0fc9482cfeddd93f949e18dc12b6aa02e5a6c45669f3d5f7f25d5fa7ff4992f40b9b71894e21b5b1855999ba8e1b130be27e8b7001444ed30db0f +doccontainersize 756 +doccontainerchecksum 264c64f2ae29bff96b428500af07a81402434d9422792a36ee0da74e9821f161cf8281d38317787c0db78109d2eeaaff4e62730855ae1f1e1f250f4173740d35 +docfiles size=8 + RELOC/doc/fonts/cns/cns40-1/README details="Readme" + RELOC/doc/fonts/cns/cns40-2/README details="Readme" + RELOC/doc/fonts/cns/cns40-3/README details="Readme" + RELOC/doc/fonts/cns/cns40-4/README details="Readme" + RELOC/doc/fonts/cns/cns40-5/README details="Readme" + RELOC/doc/fonts/cns/cns40-6/README details="Readme" + RELOC/doc/fonts/cns/cns40-7/README details="Readme" + RELOC/doc/fonts/cns/cns40-b5/README details="Readme" +runfiles size=2650 + RELOC/fonts/misc/cns/4040w0.bin + RELOC/fonts/misc/cns/4040w1.bin + RELOC/fonts/misc/cns/4040w2.bin + RELOC/fonts/misc/cns/4040w3.bin + RELOC/fonts/misc/cns/4040w4.bin + RELOC/fonts/misc/cns/4040w5.bin + RELOC/fonts/misc/cns/4040w6.bin + RELOC/fonts/misc/cns/4040w7.bin + RELOC/fonts/misc/cns/cns40-1.hbf + RELOC/fonts/misc/cns/cns40-2.hbf + RELOC/fonts/misc/cns/cns40-3.hbf + RELOC/fonts/misc/cns/cns40-4.hbf + RELOC/fonts/misc/cns/cns40-5.hbf + RELOC/fonts/misc/cns/cns40-6.hbf + RELOC/fonts/misc/cns/cns40-7.hbf + RELOC/fonts/misc/cns/cns40-b5.hbf + RELOC/fonts/tfm/cns/c0so12/c0so1201.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1202.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1203.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1204.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1205.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1206.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1207.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1208.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1209.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1210.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1211.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1212.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1213.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1214.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1215.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1216.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1217.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1218.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1219.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1220.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1221.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1222.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1223.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1224.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1225.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1226.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1227.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1228.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1229.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1230.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1231.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1232.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1233.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1234.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1235.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1236.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1237.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1238.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1239.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1240.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1241.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1242.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1243.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1244.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1245.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1246.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1247.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1248.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1249.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1250.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1251.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1252.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1253.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1254.tfm + RELOC/fonts/tfm/cns/c0so12/c0so1255.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1201.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1202.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1203.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1204.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1205.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1206.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1207.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1208.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1209.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1210.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1211.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1212.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1213.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1214.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1215.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1216.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1217.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1218.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1219.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1220.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1221.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1222.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1223.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1224.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1225.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1226.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1227.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1228.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1229.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1230.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1231.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1232.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1233.tfm + RELOC/fonts/tfm/cns/c1so12/c1so1234.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1201.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1202.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1203.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1204.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1205.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1206.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1207.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1208.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1209.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1210.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1211.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1212.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1213.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1214.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1215.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1216.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1217.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1218.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1219.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1220.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1221.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1222.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1223.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1224.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1225.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1226.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1227.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1228.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1229.tfm + RELOC/fonts/tfm/cns/c2so12/c2so1230.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1201.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1202.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1203.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1204.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1205.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1206.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1207.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1208.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1209.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1210.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1211.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1212.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1213.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1214.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1215.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1216.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1217.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1218.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1219.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1220.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1221.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1222.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1223.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1224.tfm + RELOC/fonts/tfm/cns/c3so12/c3so1225.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1201.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1202.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1203.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1204.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1205.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1206.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1207.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1208.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1209.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1210.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1211.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1212.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1213.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1214.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1215.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1216.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1217.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1218.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1219.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1220.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1221.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1222.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1223.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1224.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1225.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1226.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1227.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1228.tfm + RELOC/fonts/tfm/cns/c4so12/c4so1229.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1201.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1202.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1203.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1204.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1205.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1206.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1207.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1208.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1209.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1210.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1211.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1212.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1213.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1214.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1215.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1216.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1217.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1218.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1219.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1220.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1221.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1222.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1223.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1224.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1225.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1226.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1227.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1228.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1229.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1230.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1231.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1232.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1233.tfm + RELOC/fonts/tfm/cns/c5so12/c5so1234.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1201.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1202.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1203.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1204.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1205.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1206.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1207.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1208.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1209.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1210.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1211.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1212.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1213.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1214.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1215.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1216.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1217.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1218.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1219.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1220.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1221.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1222.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1223.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1224.tfm + RELOC/fonts/tfm/cns/c6so12/c6so1225.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1201.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1202.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1203.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1204.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1205.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1206.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1207.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1208.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1209.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1210.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1211.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1212.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1213.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1214.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1215.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1216.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1217.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1218.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1219.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1220.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1221.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1222.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1223.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1224.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1225.tfm + RELOC/fonts/tfm/cns/c7so12/c7so1226.tfm +catalogue-also arphic wadalab +catalogue-ctan /fonts/CJK +catalogue-date 2017-11-27 19:32:52 +0100 +catalogue-license pd +catalogue-topics font font-cjk chinese japanese korean +catalogue-version 4.2.0 + +name cntformats +category Package +revision 34668 +shortdesc A different way to read counters +relocated 1 +longdesc The package offers package or class authors a way to format +longdesc counters with 'patterns'. These patterns do not affect 'normal' +longdesc LaTeX treatment of counters. +containersize 2688 +containerchecksum f829d6452faa20a514bfe43a8b002d4d728b57e0d6c44de7ba8aebaa96d9a40fc0ac26ca6ef637ab9efd3f133c70cd4d5b9c81dd382ed8adcd5abd1b2fb5d6cd +doccontainersize 427824 +doccontainerchecksum 4d6c9b8ad41dea1e14eec71570afdeb28fb834191587ba964642628674526a5ac82d6ceb972d5d89e0faeb3fb46da26361dea45f8757523f58765dfbdb773a3d +docfiles size=109 + RELOC/doc/latex/cntformats/README details="Readme" + RELOC/doc/latex/cntformats/cntformats_en.pdf details="Package documentation" + RELOC/doc/latex/cntformats/cntformats_en.tex +runfiles size=3 + RELOC/tex/latex/cntformats/cntformats.sty +catalogue-contact-repository https://github.com/cgnieder/cntformats/ +catalogue-ctan /macros/latex/contrib/cntformats +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics numbers +catalogue-version 0.7 + +name cntperchap +category Package +revision 37572 +shortdesc Store counter values per chapter +relocated 1 +longdesc This package stores values of counters (which have been +longdesc registered beforehand) on a per chapter base and provides the +longdesc values on demand in the 2nd LaTeX compilation run. In this way +longdesc it is possible to know how many sections etc. there are lying +longdesc ahead and to react to these counter values, if needed. This is +longdesc a preliminary version that has been tested with book.cls, +longdesc memoir.cls, and scrbook.cls. The packages assoccnt (by the same +longdesc author) and xparse are needed as well. +containersize 3964 +containerchecksum ade4e6bbb00d619d52cb65549cb50f4ff9275d20a9e871ddee99064fb2ae0e02ba7d403bd6c7d658fdc6d542d7a32244ce8ff7fbe023b4fe292697584aed966a +doccontainersize 271048 +doccontainerchecksum 354ea40ce2fe4e543016970fe81745c151a53c182800e8b861006d7e1c6fff84628a0baa4bfad29a0b81c8d0eede9f31145e7d3f380953921a48f31c5b8d0a8a +docfiles size=74 + RELOC/doc/latex/cntperchap/README details="Readme" + RELOC/doc/latex/cntperchap/cntperchap_doc.pdf details="Package documentation" + RELOC/doc/latex/cntperchap/cntperchap_doc.tex + RELOC/doc/latex/cntperchap/cntperchap_example.pdf details="Example of use" + RELOC/doc/latex/cntperchap/cntperchap_example.tex +runfiles size=3 + RELOC/tex/latex/cntperchap/cntperchap.sty +catalogue-also xcntperchap +catalogue-ctan /macros/latex/contrib/cntperchap +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics counter-mgmt macro-supp +catalogue-version 0.3 + +name cochineal +category Package +revision 51161 +shortdesc Cochineal fonts with LaTeX support +relocated 1 +longdesc Cochineal is a fork from the Crimson fonts (Roman, Italic, +longdesc Bold, BoldItalic only) released under the OFL by Sebastian +longdesc Kosch. These remarkable fonts are inspired by the famous +longdesc oldstyle fonts in the garalde family (Garamond, Bembo) but, in +longdesc the end, look more similar to Minion, though with smaller +longdesc xheight and less plain in detail. The Crimson fonts on which +longdesc these were based had roughly 4200 glyphs in the four styles +longdesc mentioned above. Cochineal adds more than 1500 glyphs in those +longdesc styles so that it is possible to make a TeX support collection +longdesc that contains essentially all glyphs in all styles. Bringing +longdesc the Semibold styles up the same level would have required +longdesc adding about 2000 additional glyphs, which I could not even +longdesc contemplate. The fonts are provided in OpenType and PostScript +longdesc formats. +execute addMap Cochineal.map +containersize 2312204 +containerchecksum 2b674976caddbc3d25325f9e044db5b81b800dba0a4298f0195257de59f1d254a1b5f06b022d6acbfdaca55d11ab73a2570df8c4fb5657dd8987b821a52b34a7 +doccontainersize 332648 +doccontainerchecksum 22fcb87974fe058ab886b397b7849d422f33356d31cd652d5346c52773925565e4e57325482fb81a9c9153ffceb09e077036b9ab78621154f0def48e0bcc8955 +docfiles size=101 + RELOC/doc/fonts/cochineal/OFL-FAQ.txt + RELOC/doc/fonts/cochineal/OFL.txt + RELOC/doc/fonts/cochineal/README details="Readme" + RELOC/doc/fonts/cochineal/cochineal-doc.pdf details="Package manual" + RELOC/doc/fonts/cochineal/cochineal-doc.tex + RELOC/doc/fonts/cochineal/newgermanglyphs-crop.pdf + RELOC/doc/fonts/cochineal/newgermanglyphs.pdf + RELOC/doc/fonts/cochineal/newgermanglyphs.tex +runfiles size=5051 + RELOC/fonts/afm/public/cochineal/Cochineal-Bold.afm + RELOC/fonts/afm/public/cochineal/Cochineal-BoldItalic.afm + RELOC/fonts/afm/public/cochineal/Cochineal-Italic.afm + RELOC/fonts/afm/public/cochineal/Cochineal-Roman.afm + RELOC/fonts/enc/dvips/cochineal/coch-t2a.enc + RELOC/fonts/enc/dvips/cochineal/coch_2igcus.enc + RELOC/fonts/enc/dvips/cochineal/coch_2lyzki.enc + RELOC/fonts/enc/dvips/cochineal/coch_2m6jch.enc + RELOC/fonts/enc/dvips/cochineal/coch_3644xa.enc + RELOC/fonts/enc/dvips/cochineal/coch_3fmvzc.enc + RELOC/fonts/enc/dvips/cochineal/coch_47bkd3.enc + RELOC/fonts/enc/dvips/cochineal/coch_4b5cze.enc + RELOC/fonts/enc/dvips/cochineal/coch_4n5rlh.enc + RELOC/fonts/enc/dvips/cochineal/coch_5ggcpp.enc + RELOC/fonts/enc/dvips/cochineal/coch_5o2hga.enc + RELOC/fonts/enc/dvips/cochineal/coch_5tib5i.enc + RELOC/fonts/enc/dvips/cochineal/coch_5zktny.enc + RELOC/fonts/enc/dvips/cochineal/coch_6lje3b.enc + RELOC/fonts/enc/dvips/cochineal/coch_6lkrjm.enc + RELOC/fonts/enc/dvips/cochineal/coch_6nfbiu.enc + RELOC/fonts/enc/dvips/cochineal/coch_6qoxl4.enc + RELOC/fonts/enc/dvips/cochineal/coch_6ry5ir.enc + RELOC/fonts/enc/dvips/cochineal/coch_6wh55u.enc + RELOC/fonts/enc/dvips/cochineal/coch_73cr6n.enc + RELOC/fonts/enc/dvips/cochineal/coch_7fzfry.enc + RELOC/fonts/enc/dvips/cochineal/coch_7xhkhe.enc + RELOC/fonts/enc/dvips/cochineal/coch_aa3d23.enc + RELOC/fonts/enc/dvips/cochineal/coch_abfldu.enc + RELOC/fonts/enc/dvips/cochineal/coch_ag736r.enc + RELOC/fonts/enc/dvips/cochineal/coch_ajitlz.enc + RELOC/fonts/enc/dvips/cochineal/coch_alzuis.enc + RELOC/fonts/enc/dvips/cochineal/coch_apxmko.enc + RELOC/fonts/enc/dvips/cochineal/coch_asaeuh.enc + RELOC/fonts/enc/dvips/cochineal/coch_b7oxg2.enc + RELOC/fonts/enc/dvips/cochineal/coch_bat6hu.enc + RELOC/fonts/enc/dvips/cochineal/coch_bi2nei.enc + RELOC/fonts/enc/dvips/cochineal/coch_bjqtqq.enc + RELOC/fonts/enc/dvips/cochineal/coch_bp2pg7.enc + RELOC/fonts/enc/dvips/cochineal/coch_bqgjgh.enc + RELOC/fonts/enc/dvips/cochineal/coch_bvtvmv.enc + RELOC/fonts/enc/dvips/cochineal/coch_bzchxc.enc + RELOC/fonts/enc/dvips/cochineal/coch_c2ovjx.enc + RELOC/fonts/enc/dvips/cochineal/coch_cpg3ty.enc + RELOC/fonts/enc/dvips/cochineal/coch_crbsby.enc + RELOC/fonts/enc/dvips/cochineal/coch_cwrabp.enc + RELOC/fonts/enc/dvips/cochineal/coch_da7weg.enc + RELOC/fonts/enc/dvips/cochineal/coch_dv3gwv.enc + RELOC/fonts/enc/dvips/cochineal/coch_dx3muq.enc + RELOC/fonts/enc/dvips/cochineal/coch_dxwjai.enc + RELOC/fonts/enc/dvips/cochineal/coch_e2lzvu.enc + RELOC/fonts/enc/dvips/cochineal/coch_e3q7lx.enc + RELOC/fonts/enc/dvips/cochineal/coch_eluacw.enc + RELOC/fonts/enc/dvips/cochineal/coch_eluj5m.enc + RELOC/fonts/enc/dvips/cochineal/coch_ermyhb.enc + RELOC/fonts/enc/dvips/cochineal/coch_fdemcn.enc + RELOC/fonts/enc/dvips/cochineal/coch_fgurd2.enc + RELOC/fonts/enc/dvips/cochineal/coch_fuig2f.enc + RELOC/fonts/enc/dvips/cochineal/coch_g2axst.enc + RELOC/fonts/enc/dvips/cochineal/coch_gccjw3.enc + RELOC/fonts/enc/dvips/cochineal/coch_gcpa6j.enc + RELOC/fonts/enc/dvips/cochineal/coch_ggrwt7.enc + RELOC/fonts/enc/dvips/cochineal/coch_ghlqiw.enc + RELOC/fonts/enc/dvips/cochineal/coch_gkpez6.enc + RELOC/fonts/enc/dvips/cochineal/coch_h42wts.enc + RELOC/fonts/enc/dvips/cochineal/coch_hflk7g.enc + RELOC/fonts/enc/dvips/cochineal/coch_hie4zd.enc + RELOC/fonts/enc/dvips/cochineal/coch_hjbta7.enc + RELOC/fonts/enc/dvips/cochineal/coch_hl6u4r.enc + RELOC/fonts/enc/dvips/cochineal/coch_hqneph.enc + RELOC/fonts/enc/dvips/cochineal/coch_huga5l.enc + RELOC/fonts/enc/dvips/cochineal/coch_hupfny.enc + RELOC/fonts/enc/dvips/cochineal/coch_huz7n5.enc + RELOC/fonts/enc/dvips/cochineal/coch_ijxfrl.enc + RELOC/fonts/enc/dvips/cochineal/coch_in37z4.enc + RELOC/fonts/enc/dvips/cochineal/coch_ixjcas.enc + RELOC/fonts/enc/dvips/cochineal/coch_j2ekhj.enc + RELOC/fonts/enc/dvips/cochineal/coch_j4a4qt.enc + RELOC/fonts/enc/dvips/cochineal/coch_j7mi7a.enc + RELOC/fonts/enc/dvips/cochineal/coch_jc6axh.enc + RELOC/fonts/enc/dvips/cochineal/coch_jf7qqq.enc + RELOC/fonts/enc/dvips/cochineal/coch_jgxutr.enc + RELOC/fonts/enc/dvips/cochineal/coch_jjx7wg.enc + RELOC/fonts/enc/dvips/cochineal/coch_jxzuzf.enc + RELOC/fonts/enc/dvips/cochineal/coch_k5ugti.enc + RELOC/fonts/enc/dvips/cochineal/coch_ktoy4w.enc + RELOC/fonts/enc/dvips/cochineal/coch_kuld3f.enc + RELOC/fonts/enc/dvips/cochineal/coch_kxx5cy.enc + RELOC/fonts/enc/dvips/cochineal/coch_kzot5v.enc + RELOC/fonts/enc/dvips/cochineal/coch_l4bzf3.enc + RELOC/fonts/enc/dvips/cochineal/coch_l6dunu.enc + RELOC/fonts/enc/dvips/cochineal/coch_lhuxe4.enc + RELOC/fonts/enc/dvips/cochineal/coch_lnloax.enc + RELOC/fonts/enc/dvips/cochineal/coch_lygafn.enc + RELOC/fonts/enc/dvips/cochineal/coch_mdoead.enc + RELOC/fonts/enc/dvips/cochineal/coch_mmllnv.enc + RELOC/fonts/enc/dvips/cochineal/coch_mzcfhr.enc + RELOC/fonts/enc/dvips/cochineal/coch_n3wsi3.enc + RELOC/fonts/enc/dvips/cochineal/coch_nlwa7l.enc + RELOC/fonts/enc/dvips/cochineal/coch_nyeh65.enc + RELOC/fonts/enc/dvips/cochineal/coch_o5mx43.enc + RELOC/fonts/enc/dvips/cochineal/coch_oaz2vt.enc + RELOC/fonts/enc/dvips/cochineal/coch_obm4y4.enc + RELOC/fonts/enc/dvips/cochineal/coch_ofxlj7.enc + RELOC/fonts/enc/dvips/cochineal/coch_olgrrr.enc + RELOC/fonts/enc/dvips/cochineal/coch_opxmsy.enc + RELOC/fonts/enc/dvips/cochineal/coch_oqmhja.enc + RELOC/fonts/enc/dvips/cochineal/coch_panfjf.enc + RELOC/fonts/enc/dvips/cochineal/coch_pzkie3.enc + RELOC/fonts/enc/dvips/cochineal/coch_qgajns.enc + RELOC/fonts/enc/dvips/cochineal/coch_qkxc47.enc + RELOC/fonts/enc/dvips/cochineal/coch_qsfb2d.enc + RELOC/fonts/enc/dvips/cochineal/coch_r2kqsv.enc + RELOC/fonts/enc/dvips/cochineal/coch_r4tuvp.enc + RELOC/fonts/enc/dvips/cochineal/coch_rix5n3.enc + RELOC/fonts/enc/dvips/cochineal/coch_rmihs3.enc + RELOC/fonts/enc/dvips/cochineal/coch_s35xpx.enc + RELOC/fonts/enc/dvips/cochineal/coch_s5hytm.enc + RELOC/fonts/enc/dvips/cochineal/coch_sc4bro.enc + RELOC/fonts/enc/dvips/cochineal/coch_sdimnz.enc + RELOC/fonts/enc/dvips/cochineal/coch_sdyb62.enc + RELOC/fonts/enc/dvips/cochineal/coch_sechmf.enc + RELOC/fonts/enc/dvips/cochineal/coch_sqxi2m.enc + RELOC/fonts/enc/dvips/cochineal/coch_swy4oa.enc + RELOC/fonts/enc/dvips/cochineal/coch_sxkuxx.enc + RELOC/fonts/enc/dvips/cochineal/coch_syo7sr.enc + RELOC/fonts/enc/dvips/cochineal/coch_t24fhx.enc + RELOC/fonts/enc/dvips/cochineal/coch_t2fib6.enc + RELOC/fonts/enc/dvips/cochineal/coch_t4kqf4.enc + RELOC/fonts/enc/dvips/cochineal/coch_t556x2.enc + RELOC/fonts/enc/dvips/cochineal/coch_tbu25z.enc + RELOC/fonts/enc/dvips/cochineal/coch_tkhq7f.enc + RELOC/fonts/enc/dvips/cochineal/coch_ts1.enc + RELOC/fonts/enc/dvips/cochineal/coch_tub2zn.enc + RELOC/fonts/enc/dvips/cochineal/coch_tydrhh.enc + RELOC/fonts/enc/dvips/cochineal/coch_tzd7uw.enc + RELOC/fonts/enc/dvips/cochineal/coch_v4ag5s.enc + RELOC/fonts/enc/dvips/cochineal/coch_v7zunk.enc + RELOC/fonts/enc/dvips/cochineal/coch_vew4u5.enc + RELOC/fonts/enc/dvips/cochineal/coch_vpdkzq.enc + RELOC/fonts/enc/dvips/cochineal/coch_wa4y3o.enc + RELOC/fonts/enc/dvips/cochineal/coch_wcbuwv.enc + RELOC/fonts/enc/dvips/cochineal/coch_wnd62o.enc + RELOC/fonts/enc/dvips/cochineal/coch_wpweoy.enc + RELOC/fonts/enc/dvips/cochineal/coch_x4ugem.enc + RELOC/fonts/enc/dvips/cochineal/coch_xp3h6g.enc + RELOC/fonts/enc/dvips/cochineal/coch_xttjqz.enc + RELOC/fonts/enc/dvips/cochineal/coch_ygltby.enc + RELOC/fonts/enc/dvips/cochineal/coch_ykcvhy.enc + RELOC/fonts/enc/dvips/cochineal/coch_yska2a.enc + RELOC/fonts/enc/dvips/cochineal/coch_zetixv.enc + RELOC/fonts/enc/dvips/cochineal/coch_zgwplg.enc + RELOC/fonts/enc/dvips/cochineal/coch_zi6j5g.enc + RELOC/fonts/enc/dvips/cochineal/coch_zlykb2.enc + RELOC/fonts/enc/dvips/cochineal/coch_zmd4fr.enc + RELOC/fonts/enc/dvips/cochineal/cochalph.enc + RELOC/fonts/enc/dvips/cochineal/cochlf-lgr.enc + RELOC/fonts/enc/dvips/cochineal/cochlf-ot2.enc + RELOC/fonts/enc/dvips/cochineal/cochosf-lgr.enc + RELOC/fonts/enc/dvips/cochineal/cochosf-ot2.enc + RELOC/fonts/enc/dvips/cochineal/cochtabosf.enc + RELOC/fonts/enc/dvips/cochineal/cochtlf-lgr.enc + RELOC/fonts/enc/dvips/cochineal/cochtlf-ot2.enc + RELOC/fonts/enc/dvips/cochineal/cochtosf-lgr.enc + RELOC/fonts/enc/dvips/cochineal/cochtosf-ot2.enc + RELOC/fonts/map/dvips/cochineal/Cochineal.map + RELOC/fonts/opentype/public/cochineal/Cochineal-Bold.otf + RELOC/fonts/opentype/public/cochineal/Cochineal-BoldItalic.otf + RELOC/fonts/opentype/public/cochineal/Cochineal-Italic.otf + RELOC/fonts/opentype/public/cochineal/Cochineal-Roman.otf + RELOC/fonts/tfm/public/cochineal/Cochineal-Bol-alph.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bol-osf.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BolIta-alph.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-dnom-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-dnom-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-dnom-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-inf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bold-ts1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bolditalic-lf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bolditalic-osf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bolditalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Bolditalic-ts1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Ita-alph.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-dnom-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-dnom-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-dnom-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-inf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-th-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-th-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-th-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-th-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-lf-th-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-th-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-th-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-th-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-th-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-osf-th-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-th-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-th-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-th-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-th-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tlf-th-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-th-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-th-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-th-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-th-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-tosf-th-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Italic-ts1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-dnom-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-dnom-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-dnom-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-dnom-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-inf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-inf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-inf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-inf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-lf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-osf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-sup-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-sup-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-sup-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-sup-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tlf-t2a.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-lgr.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-ot2.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-t1--base.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-tosf-t1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-Roman-ts1.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-alph.tfm + RELOC/fonts/tfm/public/cochineal/Cochineal-osf.tfm + RELOC/fonts/tfm/public/cochineal/zcochbmi.tfm + RELOC/fonts/tfm/public/cochineal/zcochbmia.tfm + RELOC/fonts/tfm/public/cochineal/zcochmi.tfm + RELOC/fonts/tfm/public/cochineal/zcochmia.tfm + RELOC/fonts/type1/public/cochineal/Cochineal-Bold.pfb + RELOC/fonts/type1/public/cochineal/Cochineal-BoldItalic.pfb + RELOC/fonts/type1/public/cochineal/Cochineal-Italic.pfb + RELOC/fonts/type1/public/cochineal/Cochineal-Roman.pfb + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-dnom-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-dnom-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-inf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-inf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-lf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-lf-swash-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-lf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-lf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-osf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-osf-swash-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-osf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-osf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-sup-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-sup-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tlf-swash-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tlf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tlf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tosf-swash-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tosf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Bold-tosf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-lf-swash-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-osf-swash-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-osf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tosf-swash-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tosf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-dnom-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-dnom-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-inf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-inf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-lf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-lf-swash-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-lf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-lf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-lf-th-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-lf-th-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-osf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-osf-swash-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-osf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-osf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-osf-th-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-osf-th-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-sup-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-sup-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tlf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tlf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tlf-th-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tlf-th-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tosf-swash-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tosf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tosf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tosf-th-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Italic-tosf-th-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-dnom-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-inf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-lf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-lf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-lf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-lf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-lf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-osf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-osf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-osf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-osf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-osf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-sup-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-tlf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-tlf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-tlf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-tlf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-tlf-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-tosf-sc-ly1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-tosf-sc-ot1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-tosf-sc-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-tosf-swash-t1.vf + RELOC/fonts/vf/public/cochineal/Cochineal-Roman-tosf-t1.vf + RELOC/fonts/vf/public/cochineal/zcochbmi.vf + RELOC/fonts/vf/public/cochineal/zcochbmia.vf + RELOC/fonts/vf/public/cochineal/zcochmi.vf + RELOC/fonts/vf/public/cochineal/zcochmia.vf + RELOC/tex/latex/cochineal/LGRCochineal-LF.fd + RELOC/tex/latex/cochineal/LGRCochineal-OsF.fd + RELOC/tex/latex/cochineal/LGRCochineal-TLF.fd + RELOC/tex/latex/cochineal/LGRCochineal-TOsF.fd + RELOC/tex/latex/cochineal/LY1Cochineal-Dnom.fd + RELOC/tex/latex/cochineal/LY1Cochineal-Inf.fd + RELOC/tex/latex/cochineal/LY1Cochineal-LF.fd + RELOC/tex/latex/cochineal/LY1Cochineal-OsF.fd + RELOC/tex/latex/cochineal/LY1Cochineal-Sup.fd + RELOC/tex/latex/cochineal/LY1Cochineal-TLF.fd + RELOC/tex/latex/cochineal/LY1Cochineal-TOsF.fd + RELOC/tex/latex/cochineal/OT1Cochineal-Dnom.fd + RELOC/tex/latex/cochineal/OT1Cochineal-Inf.fd + RELOC/tex/latex/cochineal/OT1Cochineal-LF.fd + RELOC/tex/latex/cochineal/OT1Cochineal-OsF.fd + RELOC/tex/latex/cochineal/OT1Cochineal-Sup.fd + RELOC/tex/latex/cochineal/OT1Cochineal-TLF.fd + RELOC/tex/latex/cochineal/OT1Cochineal-TOsF.fd + RELOC/tex/latex/cochineal/OT2Cochineal-LF.fd + RELOC/tex/latex/cochineal/OT2Cochineal-OsF.fd + RELOC/tex/latex/cochineal/OT2Cochineal-TLF.fd + RELOC/tex/latex/cochineal/OT2Cochineal-TOsF.fd + RELOC/tex/latex/cochineal/T1Cochineal-Dnom.fd + RELOC/tex/latex/cochineal/T1Cochineal-Inf.fd + RELOC/tex/latex/cochineal/T1Cochineal-LF.fd + RELOC/tex/latex/cochineal/T1Cochineal-OsF.fd + RELOC/tex/latex/cochineal/T1Cochineal-Sup.fd + RELOC/tex/latex/cochineal/T1Cochineal-TLF.fd + RELOC/tex/latex/cochineal/T1Cochineal-TOsF.fd + RELOC/tex/latex/cochineal/T2ACochineal-TLF.fd + RELOC/tex/latex/cochineal/TS1Cochineal-LF.fd + RELOC/tex/latex/cochineal/TS1Cochineal-OsF.fd + RELOC/tex/latex/cochineal/TS1Cochineal-TLF.fd + RELOC/tex/latex/cochineal/TS1Cochineal-TOsF.fd + RELOC/tex/latex/cochineal/cochineal.fontspec + RELOC/tex/latex/cochineal/cochineal.sty + RELOC/tex/latex/cochineal/omlzcochmi.fd + RELOC/tex/latex/cochineal/uzcochmia.fd +catalogue-ctan /fonts/cochineal +catalogue-date 2019-05-19 06:05:07 +0200 +catalogue-license ofllppl1.3 +catalogue-topics font-serif font-otf font-type1 font-t1enc font-multilingual +catalogue-version 1.051 + +name codedoc +category Package +revision 17630 +shortdesc LaTeX code and documentation in LaTeX-format file +relocated 1 +longdesc The CodeDoc class is an alternative to DocStrip (and others) to +longdesc produce LaTeX code along with its documentation without +longdesc departing from LaTeX's ordinary syntax. The documentation is +longdesc prepared like any other LaTeX document and the code to be +longdesc commented verbatim is simply delimited by an environment. When +longdesc an option is turned on in the class options, this code is +longdesc written to the desired file(s). The class also includes fully +longdesc customizable verbatim environments which provide the author +longdesc with separate commands to typeset the material and/or to +longdesc execute it. +containersize 10108 +containerchecksum 8dc006776f2a3f0f28aeed0450e2d7b714402de1939a92d1e7f1e0174a8de7e9f7099e7ae9a5de34df03613ff16800bde17f7cc90fa82798f30c775c10c655ff +doccontainersize 377460 +doccontainerchecksum fa23f45c539ec134cff114d7252a4d96585168729dc33d0865f4976f94620a8d3c02fa21572953161977d893c7f311b0d15a431f74b8526d1de0680dfdad7341 +docfiles size=187 + RELOC/doc/latex/codedoc/CodeDoc-manual.pdf details="Package manual" + RELOC/doc/latex/codedoc/CodeDoc-manual.tex + RELOC/doc/latex/codedoc/README details="Readme" +runfiles size=12 + RELOC/tex/latex/codedoc/codedoc.cls +catalogue-also doc gmdoc +catalogue-ctan /macros/latex/contrib/codedoc +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics doc-supp +catalogue-version 0.3 + +name codepage +category Package +revision 21126 +shortdesc Support for variant code pages +relocated 1 +longdesc The package provides a mechanism for inputting non-ASCII text. +longdesc Nowadays, the job is mostly done by the inputenc package in the +longdesc LaTeX distribution. +containersize 10948 +containerchecksum cf402a9b00c08f030e108663ef6737f4db63407f576b3088ab336fde3d95aaa49a7c672c112d19ccaf7f6920657f6192e29945cfa76e78b2d16b266c542901b4 +doccontainersize 257732 +doccontainerchecksum d46cea964ebb8399d1a868de3cc8e535fb8ee09557329334129fba67cfe5e73975d651774b3a8bed48dd623d355ed1c8c8518da8c78b0ac5af3c82ec4a0e11a8 +docfiles size=81 + RELOC/doc/latex/codepage/LISEZMOI details="Readme" language="fr" + RELOC/doc/latex/codepage/README details="Readme" language="en" + RELOC/doc/latex/codepage/codepage.pdf details="Package documentation" language="en" + RELOC/doc/latex/codepage/demo.zip + RELOC/doc/latex/codepage/frintro.pdf details="Introduction to package" language="fr" +srccontainersize 24136 +srccontainerchecksum b3f850cc771dce7720d2b0bae922555b9b83a74104313e5e3bdb9591003ae81302041dd94737809d0145168e07a5182769d0863b67056a993def42e3dd061e40 +srcfiles size=37 + RELOC/source/latex/codepage/codepage.drv + RELOC/source/latex/codepage/codepage.dtx + RELOC/source/latex/codepage/codepage.ins + RELOC/source/latex/codepage/frintro.drv +runfiles size=26 + RELOC/tex/latex/codepage/code437.tex + RELOC/tex/latex/codepage/code850.tex + RELOC/tex/latex/codepage/codeiso1.tex + RELOC/tex/latex/codepage/codemac.tex + RELOC/tex/latex/codepage/codepage.sty + RELOC/tex/latex/codepage/initcar.tex + RELOC/tex/latex/codepage/shapecm.tex + RELOC/tex/latex/codepage/shapedc.tex +catalogue-ctan /macros/latex/contrib/codepage +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics inputenc + +name codesection +category Package +revision 34481 +shortdesc Provides an environment that may be conditionally included +relocated 1 +longdesc This package provides an environment to switch a section of +longdesc code on or off. The code may be placed anywhere in the file (it +longdesc is not limited to the document or the preamble). The motivation +longdesc for this package was to have commands which allow preselection +longdesc based on whether sections of code in a preamble of a template +longdesc are executed. +containersize 2144 +containerchecksum 95318ae4933d0cb43226c714c8ff931aaa8e06cfb2c44c3929db59ae8336882c588e26268445b62f8da32145a962bae0030daff3d5cfa22007919fb7b13fd69d +doccontainersize 376892 +doccontainerchecksum 881e62381793f548d0c291141944d81e19cf4340f2c1f63916857f5702756e18d107337c340568d62de48fe2190cf4c74a8d6604f8d4843c47ceb7c59608c0b0 +docfiles size=94 + RELOC/doc/latex/codesection/README details="Readme" + RELOC/doc/latex/codesection/codesection.pdf details="Package documentation" +srccontainersize 4192 +srccontainerchecksum e2ca6d6cb96977d494bfa9818d90aef30a915dd4c284fb7e555e79c09db022819a6e1f825ab895108594b90b488e70780f268022a896feef7dcc1ab590fabce9 +srcfiles size=4 + RELOC/source/latex/codesection/codesection.dtx + RELOC/source/latex/codesection/codesection.ins +runfiles size=2 + RELOC/tex/latex/codesection/codesection.sty +catalogue-also comment optional version +catalogue-ctan /macros/latex/contrib/codesection +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics cond-comp +catalogue-version 0.1 + +name codicefiscaleitaliano +category Package +revision 29803 +shortdesc Test the consistency of the Italian personal Fiscal Code +relocated 1 +longdesc The alphanumeric string that forms the Italian personal Fiscal +longdesc Code is prone to be misspelled thus rendering a legal document +longdesc invalid. The package quickly verifies the consistency of the +longdesc fiscal code string, and can therefore be useful for lawyers and +longdesc accountants that use fiscal codes very frequently. +containersize 1836 +containerchecksum 7c93841ceadbb7bbfc9846d281fdbd84b7f284117344e1c4fd984e746186403e9be3e2048cfca53f6690a1e20b7471224b8d30ed1358959053111c22d3f15191 +doccontainersize 217732 +doccontainerchecksum 7b0c13252796be7d584d3e5dad65711229cf916ce7c8e89e423805183629f161b3d4e4f47d6c9488ab32ff8b52723b0fbc4252f2ca99e965f4d7c4409881b67d +docfiles size=54 + RELOC/doc/latex/codicefiscaleitaliano/README details="Readme (English and Italian)" language="it" + RELOC/doc/latex/codicefiscaleitaliano/codicefiscaleitaliano.pdf details="Package documentation (principally Italian)" language="it" +srccontainersize 8224 +srccontainerchecksum 8602ad1eee729a5d21d760da54f31d67746bc336c9e18d43b9cf3a5443afaf8099d27a908cc1cd9cc028e94b2173e97179cf293d5739244834817f0bc50bbaa3 +srcfiles size=6 + RELOC/source/latex/codicefiscaleitaliano/codicefiscaleitaliano.dtx +runfiles size=1 + RELOC/tex/latex/codicefiscaleitaliano/codicefiscaleitaliano.sty +catalogue-ctan /macros/latex/contrib/codicefiscaleitaliano +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics calculation italian +catalogue-version 1.2 + +name coelacanth +category Package +revision 45270 +shortdesc Coelacanth fonts with LaTeX support +relocated 1 +longdesc The Coelacanth font is inspired by the classic Centaur type +longdesc design of Bruce Rogers, described by some as the most beautiful +longdesc typeface ever designed. It aims to be a professional quality +longdesc type family for general book typesetting. +execute addMap Coelacanth.map +containersize 6859952 +containerchecksum 817bd6c4864400107ec51cd308d95807487ade3ea91d56f38c9562912d48b0bf475a468a91945fba20c5a8ae13731a1a2c0718e79a1be01b93cda5daf7fb4764 +doccontainersize 154560 +doccontainerchecksum 6134c175aa622f013c7d3cf26d15b1e383af6181f977da0ee7f114f5d58e96f09677bc431df7202043c4b52929eed057bd6fbf6e198da5848fc8737386b7c87f +docfiles size=41 + RELOC/doc/fonts/coelacanth/LICENSE.md + RELOC/doc/fonts/coelacanth/README details="Readme" + RELOC/doc/fonts/coelacanth/coelacanth-samples.pdf details="Package documentation" + RELOC/doc/fonts/coelacanth/coelacanth-samples.tex +runfiles size=3874 + RELOC/fonts/enc/dvips/coelacanth/coel_2jlhoq.enc + RELOC/fonts/enc/dvips/coelacanth/coel_35r5ki.enc + RELOC/fonts/enc/dvips/coelacanth/coel_3oskfe.enc + RELOC/fonts/enc/dvips/coelacanth/coel_4utx75.enc + RELOC/fonts/enc/dvips/coelacanth/coel_552nxl.enc + RELOC/fonts/enc/dvips/coelacanth/coel_56r2mu.enc + RELOC/fonts/enc/dvips/coelacanth/coel_5kfzcm.enc + RELOC/fonts/enc/dvips/coelacanth/coel_676vfy.enc + RELOC/fonts/enc/dvips/coelacanth/coel_7a7buo.enc + RELOC/fonts/enc/dvips/coelacanth/coel_7svyb7.enc + RELOC/fonts/enc/dvips/coelacanth/coel_aksfuu.enc + RELOC/fonts/enc/dvips/coelacanth/coel_akszvl.enc + RELOC/fonts/enc/dvips/coelacanth/coel_arj52v.enc + RELOC/fonts/enc/dvips/coelacanth/coel_asvvw4.enc + RELOC/fonts/enc/dvips/coelacanth/coel_aztaqt.enc + RELOC/fonts/enc/dvips/coelacanth/coel_bgukot.enc + RELOC/fonts/enc/dvips/coelacanth/coel_c2xknr.enc + RELOC/fonts/enc/dvips/coelacanth/coel_cktdqa.enc + RELOC/fonts/enc/dvips/coelacanth/coel_dyimfx.enc + RELOC/fonts/enc/dvips/coelacanth/coel_foqa6g.enc + RELOC/fonts/enc/dvips/coelacanth/coel_fv62g6.enc + RELOC/fonts/enc/dvips/coelacanth/coel_fzzktv.enc + RELOC/fonts/enc/dvips/coelacanth/coel_gi7fl5.enc + RELOC/fonts/enc/dvips/coelacanth/coel_gwryf6.enc + RELOC/fonts/enc/dvips/coelacanth/coel_h4mk3u.enc + RELOC/fonts/enc/dvips/coelacanth/coel_hw4v6f.enc + RELOC/fonts/enc/dvips/coelacanth/coel_imsj7k.enc + RELOC/fonts/enc/dvips/coelacanth/coel_jiunfz.enc + RELOC/fonts/enc/dvips/coelacanth/coel_jnppct.enc + RELOC/fonts/enc/dvips/coelacanth/coel_ksfdos.enc + RELOC/fonts/enc/dvips/coelacanth/coel_ltfl5o.enc + RELOC/fonts/enc/dvips/coelacanth/coel_nbsgyv.enc + RELOC/fonts/enc/dvips/coelacanth/coel_nxpxy7.enc + RELOC/fonts/enc/dvips/coelacanth/coel_osu6er.enc + RELOC/fonts/enc/dvips/coelacanth/coel_pvge6z.enc + RELOC/fonts/enc/dvips/coelacanth/coel_pxgy5y.enc + RELOC/fonts/enc/dvips/coelacanth/coel_pxwm7f.enc + RELOC/fonts/enc/dvips/coelacanth/coel_qyombs.enc + RELOC/fonts/enc/dvips/coelacanth/coel_r7t3wu.enc + RELOC/fonts/enc/dvips/coelacanth/coel_rvr22c.enc + RELOC/fonts/enc/dvips/coelacanth/coel_rwwz7l.enc + RELOC/fonts/enc/dvips/coelacanth/coel_sfojue.enc + RELOC/fonts/enc/dvips/coelacanth/coel_surv45.enc + RELOC/fonts/enc/dvips/coelacanth/coel_ti6dce.enc + RELOC/fonts/enc/dvips/coelacanth/coel_tlxuk3.enc + RELOC/fonts/enc/dvips/coelacanth/coel_tpkp5g.enc + RELOC/fonts/enc/dvips/coelacanth/coel_tzvqqj.enc + RELOC/fonts/enc/dvips/coelacanth/coel_u3c7bp.enc + RELOC/fonts/enc/dvips/coelacanth/coel_v7z4te.enc + RELOC/fonts/enc/dvips/coelacanth/coel_vd2zd6.enc + RELOC/fonts/enc/dvips/coelacanth/coel_vhsdt6.enc + RELOC/fonts/enc/dvips/coelacanth/coel_xf4635.enc + RELOC/fonts/enc/dvips/coelacanth/coel_xkpln4.enc + RELOC/fonts/enc/dvips/coelacanth/coel_y2piry.enc + RELOC/fonts/enc/dvips/coelacanth/coel_y72t4k.enc + RELOC/fonts/enc/dvips/coelacanth/coel_yuuo6b.enc + RELOC/fonts/enc/dvips/coelacanth/coel_yxz7qf.enc + RELOC/fonts/enc/dvips/coelacanth/coel_zhgwvo.enc + RELOC/fonts/map/dvips/coelacanth/Coelacanth.map + RELOC/fonts/opentype/public/coelacanth/Coelacanth.otf + RELOC/fonts/opentype/public/coelacanth/CoelacanthBold.otf + RELOC/fonts/opentype/public/coelacanth/CoelacanthExtraLt.otf + RELOC/fonts/opentype/public/coelacanth/CoelacanthHeavy.otf + RELOC/fonts/opentype/public/coelacanth/CoelacanthItalic.otf + RELOC/fonts/opentype/public/coelacanth/CoelacanthLt.otf + RELOC/fonts/opentype/public/coelacanth/CoelacanthSemibd.otf + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-titling-t1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-lf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-osf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tlf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/Coelacanth-tosf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-titling-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-lf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-osf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-titling-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-lf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-osf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tlf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthExtraLt-tosf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-titling-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-lf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-osf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tlf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthHeavy-tosf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-titling-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-lf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-osf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tlf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthLt-tosf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-titling-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-lf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-osf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-titling-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tlf-ts1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-t1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-t1.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/coelacanth/CoelacanthSemibd-tosf-ts1.tfm + RELOC/fonts/type1/public/coelacanth/Coelacanth.pfb + RELOC/fonts/type1/public/coelacanth/CoelacanthBold.pfb + RELOC/fonts/type1/public/coelacanth/CoelacanthExtraLt.pfb + RELOC/fonts/type1/public/coelacanth/CoelacanthHeavy.pfb + RELOC/fonts/type1/public/coelacanth/CoelacanthItalic.pfb + RELOC/fonts/type1/public/coelacanth/CoelacanthLt.pfb + RELOC/fonts/type1/public/coelacanth/CoelacanthSemibd.pfb + RELOC/fonts/vf/public/coelacanth/Coelacanth-lf-ly1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-lf-ot1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-lf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-lf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-lf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-lf-t1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-lf-titling-ly1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-lf-titling-ot1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-lf-titling-t1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-lf-ts1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-osf-ly1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-osf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-osf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-osf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-osf-t1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-osf-ts1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tlf-ly1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tlf-ot1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tlf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tlf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tlf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tlf-t1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tlf-titling-ly1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tlf-titling-ot1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tlf-titling-t1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tlf-ts1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tosf-ly1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tosf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tosf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tosf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tosf-t1.vf + RELOC/fonts/vf/public/coelacanth/Coelacanth-tosf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-lf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-lf-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-lf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-lf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-lf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-lf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-lf-titling-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-lf-titling-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-lf-titling-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-lf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-osf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-osf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-osf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-osf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-osf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-osf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tlf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tlf-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tlf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tlf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tlf-titling-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tlf-titling-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tlf-titling-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tlf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tosf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tosf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tosf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthBold-tosf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-lf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-lf-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-lf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-lf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-lf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-lf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-lf-titling-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-lf-titling-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-lf-titling-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-lf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-osf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-osf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-osf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-osf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-osf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-osf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tlf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tlf-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tlf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tlf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tlf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tlf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tlf-titling-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tlf-titling-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tlf-titling-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tlf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tosf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tosf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tosf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tosf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tosf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthExtraLt-tosf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-lf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-lf-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-lf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-lf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-lf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-lf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-lf-titling-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-lf-titling-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-lf-titling-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-lf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-osf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-osf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-osf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-osf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-osf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-osf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tlf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tlf-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tlf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tlf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tlf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tlf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tlf-titling-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tlf-titling-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tlf-titling-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tlf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tosf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tosf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tosf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tosf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tosf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthHeavy-tosf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-lf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-lf-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-lf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-lf-titling-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-lf-titling-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-lf-titling-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-lf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-osf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-osf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-osf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tlf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tlf-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tlf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tlf-titling-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tlf-titling-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tlf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tosf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tosf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthItalic-tosf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-lf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-lf-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-lf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-lf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-lf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-lf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-lf-titling-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-lf-titling-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-lf-titling-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-lf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-osf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-osf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-osf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-osf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-osf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-osf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tlf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tlf-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tlf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tlf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tlf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tlf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tlf-titling-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tlf-titling-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tlf-titling-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tlf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tosf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tosf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tosf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tosf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tosf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthLt-tosf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-lf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-lf-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-lf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-lf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-lf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-lf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-lf-titling-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-lf-titling-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-lf-titling-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-lf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-osf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-osf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-osf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-osf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-osf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-osf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tlf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tlf-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tlf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tlf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tlf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tlf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tlf-titling-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tlf-titling-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tlf-titling-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tlf-ts1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tosf-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tosf-sc-ly1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tosf-sc-ot1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tosf-sc-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tosf-t1.vf + RELOC/fonts/vf/public/coelacanth/CoelacanthSemibd-tosf-ts1.vf + RELOC/tex/latex/coelacanth/LY1Coelacanth-LF.fd + RELOC/tex/latex/coelacanth/LY1Coelacanth-OsF.fd + RELOC/tex/latex/coelacanth/LY1Coelacanth-TLF.fd + RELOC/tex/latex/coelacanth/LY1Coelacanth-TOsF.fd + RELOC/tex/latex/coelacanth/OT1Coelacanth-LF.fd + RELOC/tex/latex/coelacanth/OT1Coelacanth-OsF.fd + RELOC/tex/latex/coelacanth/OT1Coelacanth-TLF.fd + RELOC/tex/latex/coelacanth/OT1Coelacanth-TOsF.fd + RELOC/tex/latex/coelacanth/T1Coelacanth-LF.fd + RELOC/tex/latex/coelacanth/T1Coelacanth-OsF.fd + RELOC/tex/latex/coelacanth/T1Coelacanth-TLF.fd + RELOC/tex/latex/coelacanth/T1Coelacanth-TOsF.fd + RELOC/tex/latex/coelacanth/TS1Coelacanth-LF.fd + RELOC/tex/latex/coelacanth/TS1Coelacanth-OsF.fd + RELOC/tex/latex/coelacanth/TS1Coelacanth-TLF.fd + RELOC/tex/latex/coelacanth/TS1Coelacanth-TOsF.fd + RELOC/tex/latex/coelacanth/coelacanth.sty +catalogue-ctan /fonts/coelacanth +catalogue-date 2017-09-14 05:34:39 +0200 +catalogue-license ofl +catalogue-topics font font-type1 font-otf + +name collcell +category Package +revision 21539 +shortdesc Collect contents of a tabular cell as argument to a macro +relocated 1 +longdesc The package provides macros that collect the content of a +longdesc tabular cell, and offer them as an argument to a macro. Special +longdesc care is taken to remove all aligning macros inserted by tabular +longdesc from the cell content. The macros also work in the last column +longdesc of a table, but do not support verbatim material inside the +longdesc cells. +containersize 2208 +containerchecksum 34a2fb5a5dc309e625e4c7d89b9e5aa9806d15d93cf0fec124a0505b20c6711bfa96b3f99986c23393632a9db1c773842c9bf6f10c01d1c4da8dcef2960df289 +doccontainersize 221632 +doccontainerchecksum 1bbb4e70a5f5163a62f1b0b135f5601b4d9378cf2a5d27fddfabf9ee5e65dae7a94cb4cf63ed5e98dbf35cee550bd0a7b425f505d462eeb7f1e7035fe3c7664d +docfiles size=68 + RELOC/doc/latex/collcell/collcell.pdf details="Package documentation" +srccontainersize 7536 +srccontainerchecksum 8d567bc14b9e6a8467da4893245efd56f7537f5b721b8b9c4300f9ffda5ab30649f7c0ca51f3673f786676fe20af948de63d1fd36ce2c3d0f9d217ad4e6bbad1 +srcfiles size=8 + RELOC/source/latex/collcell/Makefile + RELOC/source/latex/collcell/README + RELOC/source/latex/collcell/collcell.dtx + RELOC/source/latex/collcell/collcell.ins +runfiles size=2 + RELOC/tex/latex/collcell/collcell.sty +catalogue-ctan /macros/latex/contrib/collcell +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics table +catalogue-version 0.5 + +name collectbox +category Package +revision 26557 +shortdesc Collect and process macro arguments as boxes +relocated 1 +longdesc The package provides macros to collect and process a macro +longdesc argument (i.e., something which looks like a macro argument) as +longdesc a horizontal box rather than as a real macro argument. The +longdesc "arguments" are stored as if they had been saved by \savebox or +longdesc by the lrbox environment. Grouping tokens \bgroup and \egroup +longdesc may be used, which allows the user to have the beginning and +longdesc end of a group in different macro invocations, or to place them +longdesc in the begin and end code of an environment. Arguments may +longdesc contain verbatim material or other special use of characters. +longdesc The macros were designed for use within other macros. +containersize 2836 +containerchecksum e530c630a905084a3f9c43fd54c45fc5d4af437aab887f15f5d37c40d3ba2a86c576ef032e723cf95f4f5dc46256d3e7bf6440545f68133217fb620aa2db8a65 +doccontainersize 270912 +doccontainerchecksum e2248e9825490474e545c1674d1256ad586332045e2fd5ee5dc84d9965d4df263522277a14676010085a73dcf00d822ffb29117338b3fd3f854b7b0d0ddb5c9f +docfiles size=67 + RELOC/doc/latex/collectbox/README details="Readme" + RELOC/doc/latex/collectbox/collectbox.pdf +srccontainersize 8068 +srccontainerchecksum d29bd5252e632573797eba99f70172659303d7342ea345228d2ed448fb1c1b6a48aa2448a3cae1bec26849241a5d3e19cbc0c00e777a339dad23ad2864dc5da7 +srcfiles size=9 + RELOC/source/latex/collectbox/collectbox.dtx + RELOC/source/latex/collectbox/collectbox.ins +runfiles size=3 + RELOC/tex/latex/collectbox/collectbox.sty +catalogue-ctan /macros/latex/contrib/collectbox +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics boxing +catalogue-version 0.4b + +name collection-basic +category Collection +revision 50324 +shortdesc Essential programs and files +relocated 1 +longdesc These files are regarded as basic for any TeX system, covering +longdesc plain TeX macros, Computer Modern fonts, and configuration for +longdesc common drivers; no LaTeX. +depend texlive.infra +depend amsfonts +depend bibtex +depend cm +depend colorprofiles +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 texlive-common +depend texlive-docindex +depend texlive-en +depend texlive-msg-translations +depend texlive-scripts +depend tlshell +depend unicode-data +depend updmap-map +depend xdvi +containersize 636 +containerchecksum d037327a08ed3669c323adfc47217b7b448c732bac30694c32cbcc9bbcc4a83ae78446985124adbcff828a5b514becc18d49f29caabac75c3a7d2eb509fd2514 + +name collection-bibtexextra +category Collection +revision 50619 +shortdesc BibTeX additional styles +relocated 1 +longdesc Additional BibTeX styles and bibliography data(bases), notably +longdesc including BibLaTeX. +depend collection-latex +depend aichej +depend ajl +depend amsrefs +depend apacite +depend apalike2 +depend archaeologie +depend beebe +depend besjournals +depend bestpapers +depend bib2gls +depend bibarts +depend biber +depend bibexport +depend bibhtml +depend biblatex +depend biblatex-abnt +depend biblatex-anonymous +depend biblatex-apa +depend biblatex-archaeology +depend biblatex-arthistory-bonn +depend biblatex-bath +depend biblatex-bookinarticle +depend biblatex-bookinother +depend biblatex-bwl +depend biblatex-caspervector +depend biblatex-chem +depend biblatex-chicago +depend biblatex-claves +depend biblatex-dw +depend biblatex-enc +depend biblatex-ext +depend biblatex-fiwi +depend biblatex-gb7714-2015 +depend biblatex-gost +depend biblatex-historian +depend biblatex-ieee +depend biblatex-ijsra +depend biblatex-iso690 +depend biblatex-juradiss +depend biblatex-lni +depend biblatex-luh-ipw +depend biblatex-manuscripts-philology +depend biblatex-mla +depend biblatex-morenames +depend biblatex-multiple-dm +depend biblatex-musuos +depend biblatex-nature +depend biblatex-nejm +depend biblatex-nottsclassic +depend biblatex-opcit-booktitle +depend biblatex-oxref +depend biblatex-philosophy +depend biblatex-phys +depend biblatex-publist +depend biblatex-realauthor +depend biblatex-sbl +depend biblatex-science +depend biblatex-shortfields +depend biblatex-socialscienceshuberlin +depend biblatex-source-division +depend biblatex-subseries +depend biblatex-swiss-legal +depend biblatex-trad +depend biblatex-true-citepages-omit +depend biblist +depend bibtexperllibs +depend bibtopic +depend bibtopicprefix +depend bibunits +depend biolett-bst +depend bookdb +depend breakcites +depend cell +depend chbibref +depend chicago +depend chicago-annote +depend chembst +depend chscite +depend citeall +depend citeref +depend collref +depend compactbib +depend crossrefware +depend custom-bib +depend din1505 +depend dk-bib +depend doipubmed +depend ecobiblatex +depend econ-bst +depend economic +depend fbs +depend figbib +depend footbib +depend francais-bst +depend gbt7714 +depend geschichtsfrkl +depend harvard +depend harvmac +depend historische-zeitschrift +depend icite +depend ietfbibs +depend ijqc +depend inlinebib +depend iopart-num +depend jneurosci +depend jurabib +depend ksfh_nat +depend ltb2bib +depend listbib +depend logreq +depend luabibentry +depend margbib +depend multibib +depend multibibliography +depend munich +depend nar +depend nmbib +depend notes2bib +depend notex-bst +depend oscola +depend perception +depend pnas2009 +depend rsc +depend showtags +depend sort-by-letters +depend splitbib +depend turabian-formatting +depend uni-wtal-ger +depend uni-wtal-lin +depend urlbst +depend usebib +depend vak +depend windycity +depend xcite +depend zootaxa-bst +containersize 1140 +containerchecksum b1582ade8d050be6c53fcdec2a03f2c8c5d9aa661bfc5fba874221fb2fdefa8382eba0b6d54aa43eed6916349eb1b33a94c7f9235d49951438e206625d5c6ee3 + +name collection-binextra +category Collection +revision 50324 +shortdesc TeX auxiliary programs +relocated 1 +longdesc Various useful, but non-essential, support programs. Includes +longdesc programs and macros for DVI file manipulation, literate +longdesc programming, patgen, and the TeX Works Editor. +depend collection-basic +depend a2ping +depend adhocfilelist +depend arara +depend asymptote +depend bibtex8 +depend bibtexu +depend bundledoc +depend checklistings +depend chktex +depend cluttex +depend ctan-o-mat +depend ctan_chk +depend ctanbib +depend ctanify +depend ctanupload +depend ctie +depend cweb +depend de-macro +depend detex +depend dtl +depend dtxgen +depend dvi2tty +depend dviasm +depend dvicopy +depend dvidvi +depend dviinfox +depend dviljk +depend dviout-util +depend dvipng +depend dvipos +depend dvisvgm +depend findhyph +depend fragmaster +depend hook-pre-commit-pkg +depend hyphenex +depend installfont +depend ketcindy +depend lacheck +depend latex-git-log +depend latex-papersize +depend latex2man +depend latex2nemeth +depend latexdiff +depend latexfileversion +depend latexmk +depend latexpand +depend latexindent +depend ltxfileinfo +depend ltximg depend listings-ext depend make4ht depend match_parens +depend mflua depend mkjobtexmf depend patgen depend pdfbook2 depend pdfcrop depend pdfjam +depend pdflatexpicscale +depend pdftex-quiet depend pdftools +depend pdfxup depend pfarrei depend pkfix depend pkfix-helper depend purifyeps depend pythontex depend seetexk +depend srcredact depend sty2dtx depend synctex depend tex4ebook @@ -33193,19 +56710,25 @@ depend texdef depend texdiff depend texdirflatten depend texdoc +depend texdoctk depend texfot depend texliveonfly depend texloganalyser +depend texosquery depend texware depend tie +depend tlcockpit depend tpic2pdftex depend typeoutfileinfo depend web +depend xindex depend xindy +containersize 900 +containerchecksum 885f7b2009983d71ee4fa4dddc48045fe1fb92841bad8de3009b52cf4157c9bd79d1607b8fa6e55db298d1ce763423d8b1f1273d8faf41708e8bdc391bb76fdd name collection-context category Collection -revision 36190 +revision 47139 shortdesc ConTeXt and packages relocated 1 longdesc Hans Hagen's powerful ConTeXt system, http://pragma-ade.com. @@ -33213,28 +56736,31 @@ longdesc Also includes third-party ConTeXt packages. depend collection-basic depend context depend jmn +depend context-notes-zh-cn +depend npp-for-context depend context-account depend context-algorithmic depend context-animation depend context-annotation depend context-bnf depend context-chromato +depend context-cmscbf +depend context-cmttbf depend context-construction-plan depend context-cyrillicnumbers depend context-degrade depend context-fancybreak depend context-filter -depend context-fixme depend context-french depend context-fullpage -depend context-games depend context-gantt depend context-gnuplot +depend context-handlecsv +depend context-inifile +depend context-layout depend context-letter depend context-lettrine -depend context-lilypond depend context-mathsets -depend context-notes-zh-cn depend context-rst depend context-ruby depend context-simplefonts @@ -33245,27 +56771,33 @@ depend context-typearea depend context-typescripts depend context-vim depend context-visualcounter +containersize 600 +containerchecksum 21aa181d7a3e8c16dbb30e12e30822d18db1386e088103a0987dc2a0a4d611172079ac12d7edd7f9d8923598c1532f7162905940846d6e13e143883bd735996f name collection-fontsextra category Collection -revision 38204 +revision 51106 shortdesc Additional fonts relocated 1 depend collection-basic -depend asana-math +depend Asana-Math depend academicons depend accanthis depend adforn depend adfsymbols depend aecc depend alegreya +depend algolrevived depend allrunes +depend almendra depend almfixed depend anonymouspro depend antiqua depend antt depend archaic depend arev +depend arimo +depend asapsym depend ascii-font depend aspectratio depend astro @@ -33276,6 +56808,7 @@ depend b1encoding depend barcodes depend baskervald depend baskervaldx +depend baskervillef depend bbding depend bbm depend bbm-macros @@ -33284,7 +56817,9 @@ depend bbold-type1 depend belleek depend bera depend berenisadf +depend beuron depend bguq +depend bitter depend blacklettert1 depend boisik depend bookhands @@ -33302,25 +56837,36 @@ depend ccicons depend cfr-initials depend cfr-lm depend cherokee +depend chivo depend cinzel depend clearsans depend cm-lgc +depend cm-mf-extra-bold depend cm-unicode depend cmbright +depend cmexb depend cmll depend cmpica +depend cmsrb depend cmtiup +depend cochineal +depend coelacanth depend comfortaa depend comicneue depend concmath-fonts depend cookingsymbols +depend cormorantgaramond depend countriesofeurope depend courier-scaled +depend crimson +depend crimsonpro depend cryst +depend cuprum depend cyklop depend dancers depend dantelogo depend dejavu +depend dejavu-otf depend dice depend dictsym depend dingbat @@ -33328,6 +56874,7 @@ depend doublestroke depend dozenal depend drm depend droid +depend dsserif depend duerer depend duerer-latex depend dutchcal @@ -33354,14 +56901,19 @@ depend fetamont depend feyn depend fge depend fira +depend firamath +depend firamath-otf depend foekfont depend fonetika depend fontawesome +depend fontawesome5 depend fontmfizz -depend old-arrows +depend fonts-churchslavonic depend fourier depend fouriernc depend frcursive +depend frederika2016 +depend garamond-math depend genealogy depend gentium-tug depend gfsartemisia @@ -33369,10 +56921,12 @@ depend gfsbodoni depend gfscomplutum depend gfsdidot depend gfsneohellenic +depend gfsneohellenicmath depend gfssolomos depend gillcm depend gillius depend gnu-freefont +depend gofonts depend gothic depend greenpoint depend grotesq @@ -33382,46 +56936,65 @@ depend heuristica depend hfbright depend hfoldsty depend ifsym +depend imfellenglish depend inconsolata depend initials +depend inriafonts depend ipaex-type1 depend iwona depend jablantile depend jamtimes depend junicode depend kixfont -depend knuthotherfonts depend kpfonts depend kurier depend lato depend lfb depend libertine +depend libertinegc +depend libertinus +depend libertinus-fonts +depend libertinus-otf +depend libertinus-type1 +depend libertinust1math depend librebaskerville +depend librebodoni depend librecaslon +depend librefranklin depend libris -depend lineara +depend linearA +depend linguisticspro depend lobster2 depend lxfonts depend ly1 +depend marcellus depend mathabx depend mathabx-type1 depend mathdesign depend mdputu depend mdsymbol depend merriweather +depend miama depend mintspirit +depend missaali depend mnsymbol +depend montserrat +depend mweights depend newpx depend newtx depend newtxsf depend newtxtt +depend niceframe-type1 +depend nimbus15 depend nkarta +depend noto depend obnov depend ocherokee depend ocr-b depend ocr-b-outline depend ogham depend oinuit +depend old-arrows depend oldlatin depend oldstandard depend opensans @@ -33433,6 +57006,8 @@ depend phaistos depend phonetic depend pigpen depend playfair +depend plex +depend plex-otf depend poltawski depend prodint depend punk @@ -33444,6 +57019,7 @@ depend raleway depend recycle depend roboto depend romande +depend rosario depend rsfso depend sansmathaccent depend sansmathfonts @@ -33451,24 +57027,33 @@ depend sauter depend sauterfonts depend schulschriften depend semaphor +depend shobhika depend skull depend sourcecodepro depend sourcesanspro depend sourceserifpro depend starfont depend staves +depend stickstoo depend stix +depend stix2-otf +depend stix2-type1 depend superiors +depend svrsymbols depend tapir +depend tempora depend tengwarscript depend tfrupee +depend tinos depend tpslifonts depend trajan depend txfontsb +depend txuprcal depend typicons depend umtypewriter depend universa depend universalis +depend uppunctlm depend urwchancal depend venturisadf depend wsuipa @@ -33476,7 +57061,10 @@ depend xcharter depend xits depend yfonts depend yfonts-t1 +depend yinit-otf depend zlmtt +containersize 1700 +containerchecksum e1c8d83b0ad18ce8196dc8d600779adf5d9161e5a40a814383830cef261b07b868409f6115ff57d2695ac9b8e7264f07f0e700c4f393ac92d117a6cc23c0be65 name collection-fontsrecommended category Collection @@ -33521,6 +57109,8 @@ depend wasy2-ps depend wasysym depend zapfchan depend zapfding +containersize 560 +containerchecksum 9ce869ce9e21838cb467b7fb6e6087b2afa005c398075c5da77e07fcc57a3c153663ddf8c53f914638b3e1e44e8957b59459b689d17668fdf42a050b19d079f5 name collection-fontutils category Collection @@ -33548,28 +57138,45 @@ depend fontools depend mf2pt1 depend t1utils depend ttfutils +containersize 528 +containerchecksum 39ede1185914e6df2bd1a535d2ca955720dfd51fba425f0ee6ac75c9e8e7480e779c8eb41df0cd57d1f23595db0f247f5e8fb2988dcc1845dd5d51b3f8918533 name collection-formatsextra category Collection -revision 33658 +revision 44177 shortdesc Additional formats relocated 1 longdesc Collected TeX `formats', i.e., large-scale macro packages longdesc designed to be dumped into .fmt files -- excluding the most longdesc common ones, such as latex and context, which have their own -longdesc package(s). +longdesc package(s). It also includes the Aleph engine and related Omega +longdesc formats and packages. depend collection-basic +depend collection-latex depend edmac depend eplain +depend jadetex depend lollipop depend mltex +depend passivetex depend psizzl depend startex depend texsis - -name collection-games -category Collection -revision 36348 +depend xmltex +depend xmltexconfig +depend aleph +depend antomega +depend lambda +depend mxedruli +depend omega +depend omegaware +depend otibet +containersize 572 +containerchecksum 73b00a08738778902d35e934e296552c76db6a202c197432e57c3fe03d300dd5b3ba41a618151ffcd9642275db6899d8030329f3ec424b55da0a743ecbc84d0e + +name collection-games +category Collection +revision 51178 shortdesc Games typesetting relocated 1 longdesc Setups for typesetting various games, including chess. @@ -33587,9 +57194,13 @@ depend go depend hanoi depend havannah depend hexgame +depend hmtrump depend horoscop +depend jigsaw depend labyrinth depend logicpuzzle +depend musikui +depend onedown depend othello depend othelloboard depend pas-crosswords @@ -33600,105 +57211,23 @@ depend schwalbe-chess depend sgame depend skak depend skaknew +depend soup depend sudoku depend sudokubundle depend xq depend xskak - -name collection-genericextra -category Collection -revision 37591 -shortdesc Generic additional packages -relocated 1 -longdesc Extra packages that work with multiple formats, typically both -longdesc TeX and LaTeX. -depend collection-basic -depend abbr -depend abstyles -depend barr -depend bitelist -depend borceux -depend c-pascal -depend catcodes -depend chronosys -depend colorsep -depend dinat -depend dirtree -depend docbytex -depend dowith -depend eijkhout -depend encxvlna -depend epigram -depend fenixpar -depend fltpoint -depend fntproof -depend gates -depend ifetex -depend iftex -depend insbox -depend lambda-lists -depend langcode -depend lecturer -depend librarian -depend mathdots -depend metatex -depend midnight -depend navigator -depend ofs -depend pdf-trans -depend plainpkg -depend schemata -depend shade -depend systeme -depend tabto-generic -depend termmenu -depend tracklang -depend texapi -depend upca -depend xlop -depend yax - -name collection-genericrecommended -category Collection -revision 35655 -shortdesc Generic recommended packages -relocated 1 -longdesc Recommended packages that work with multiple formats. -depend collection-basic -depend apnum -depend epsf -depend fontname -depend genmisc -depend kastrup -depend multido -depend path -depend tex-ps -depend ulem - -name collection-htmlxml -category Collection -revision 35743 -shortdesc HTML/SGML/XML support -relocated 1 -longdesc Packages to convert LaTeX to XML/HTML, and typeset XML/SGML. -depend collection-basic -depend collection-fontsrecommended -depend collection-latex -depend classpack -depend jadetex -depend passivetex -depend tex4ht -depend xmltex -depend xmltexconfig +containersize 512 +containerchecksum bfa055b06a2a56cdac916627c79ad94242fee0b1ae747f721e0932452eedbff05566211a9e41aa8e66607b27d753db5edf5d0ed04cbf1ebb2944d3c4cebbf108 name collection-humanities category Collection -revision 37912 +revision 45363 shortdesc Humanities packages relocated 1 longdesc Packages for law, linguistics, social sciences, humanities, longdesc etc. depend collection-latex +depend adtrees depend bibleref depend bibleref-lds depend bibleref-mouth @@ -33720,9 +57249,9 @@ depend juraabbrev depend juramisc depend jurarsp depend ledmac -depend leipzig depend lexikon depend lexref +depend ling-macros depend linguex depend liturg depend metrix @@ -33732,6 +57261,7 @@ depend phonrule depend plari depend play depend poemscol +depend poetry depend poetrytex depend qobitree depend qtree @@ -33743,33 +57273,27 @@ depend screenplay-pkg depend sides depend stage depend textglos +depend theatre depend thalie depend tree-dvips depend verse depend xyling - -name collection-langafrican -category Collection -revision 30372 -shortdesc African scripts -relocated 1 -longdesc Support for African scripts. -depend collection-basic -depend ethiop -depend ethiop-t1 -depend fc -depend hyphen-ethiopic +containersize 584 +containerchecksum 94e1a021c967f623d24a3720199293f564ccc3e7339c2e58a456163d617740d3a6bfc8b5fd54fc288f269ebe7a4eafddaba0c6c78c66ea565bb2e0d753b7ebad name collection-langarabic category Collection -revision 37746 +revision 50080 shortdesc Arabic relocated 1 longdesc Support for Arabic and Persian. depend collection-basic +depend alkalami +depend alpha-persian depend amiri depend arabi depend arabi-add +depend arabluatex depend arabtex depend bidi depend bidihl @@ -33778,19 +57302,27 @@ depend ghab depend hyphen-arabic depend hyphen-farsi depend imsproc +depend kurdishlipsum depend lshort-persian +depend luabidi +depend na-box depend persian-bib +depend sexam depend simurgh depend tram +depend xepersian +containersize 428 +containerchecksum 4c0f4860c69b0be0e3bc909c577e2795fcb3c15b65961d7ada1624cc3c9f77b104f8a58a6d390c1085c464ae043c65b4912da9faa0e8334964d0c302952792fe name collection-langchinese category Collection -revision 35576 +revision 50930 shortdesc Chinese relocated 1 longdesc Support for Chinese; additional packages in collection-langcjk. depend collection-langcjk depend arphic +depend arphic-ttf depend asymptote-by-example-zh-cn depend asymptote-faq-zh-cn depend asymptote-manual-zh-cn @@ -33798,19 +57330,31 @@ depend cns depend ctex depend ctex-faq depend fandol +depend fduthesis depend hyphen-chinese depend impatient-cn depend latex-notes-zh-cn depend lshort-chinese +depend nanicolle +depend njurepo +depend pgfornament-han depend texlive-zh-cn +depend texproposal +depend xtuthesis +depend upzhkinsoku depend xpinyin +depend zhlineskip +depend zhlipsum depend zhmetrics +depend zhmetrics-uptex depend zhnumber depend zhspacing +containersize 508 +containerchecksum fa19508a88844191ac410af63bdfbf95ac75231c3e7564aa0c2d54bb1b474b1d769a61c96abf01a11757ce002ae4cdc4c757cbd28414f6a182ffedcb13afb6bf name collection-langcjk category Collection -revision 37224 +revision 45194 shortdesc Chinese/Japanese/Korean (base) relocated 1 longdesc Packages supporting a combination of Chinese, Japanese, Korean, @@ -33827,24 +57371,31 @@ depend cjkpunct depend cjkutils depend dnp depend garuda-c90 +depend fixjfm +depend jfmutil depend norasi-c90 +depend pxtatescale depend xcjk2uni depend zxjafont +containersize 572 +containerchecksum 959ee256fdf82076f8fa0d5a35f876b3c030e69feaf94cecc68e6e1061d968a72b9389e62b5c18c4d7fd4e98e707a1dfffecca7b7149d0c30388cb0c73870059 name collection-langcyrillic category Collection -revision 30455 +revision 44895 shortdesc Cyrillic relocated 1 longdesc Support for Cyrillic scripts (Bulgarian, Russian, Serbian, longdesc Ukrainian), even if Latin alphabets may also be used. depend collection-basic depend collection-latex +depend babel-belarusian depend babel-bulgarian depend babel-russian depend babel-serbian depend babel-serbianc -depend babel-ukraineb +depend babel-ukrainian +depend churchslavonic depend cmcyr depend cyrillic depend cyrillic-bin @@ -33853,7 +57404,9 @@ depend disser depend eskd depend eskdx depend gost +depend hyphen-belarusian depend hyphen-bulgarian +depend hyphen-churchslavonic depend hyphen-mongolian depend hyphen-russian depend hyphen-serbian @@ -33868,6 +57421,7 @@ depend lshort-ukr depend mongolian-babel depend montex depend mpman-ru +depend numnameru depend pst-eucl-translation-bg depend ruhyphen depend russ @@ -33879,6 +57433,8 @@ depend t2 depend texlive-ru depend texlive-sr depend ukrhyph +containersize 600 +containerchecksum 15c733db1104a296e0caeceab761a9e0f89c7bbae5c87d49a9539638cbcb1c2489c41fe08b0bbca5df503cb8ee54b61425e35b0e6db41947bdbcc40e4daea0bc name collection-langczechslovak category Collection @@ -33902,26 +57458,32 @@ depend vlna depend lshort-czech depend lshort-slovak depend texlive-cz +containersize 372 +containerchecksum daee20efa3c125fb5dcf55875eb3a7a3e94553a5f1e185c8fdf35db0ab933abbb2ac2f67da7fa578b1f915d88f3cde764dca098e76b5df73da18dece3e49dc6f name collection-langenglish category Collection -revision 37500 +revision 50985 shortdesc US and UK English relocated 1 -longdesc Support for (and documentation in) English. +longdesc Support for, and documentation in, English. depend collection-basic depend hyphen-english depend FAQ-en depend MemoirChapStyles depend Type1fonts +depend amscls-doc depend amslatex-primer depend around-the-bend depend ascii-chart +depend biblatex-cheatsheet depend components-of-TeX depend comprehensive depend dickimaw +depend docsurvey depend dtxtut depend first-latex-doc +depend forest-quickstart depend gentle depend guide-to-latex depend happy4th @@ -33933,6 +57495,7 @@ depend latex-brochure depend latex-course depend latex-doc-ptr depend latex-graphics-companion +depend latex-refsheet depend latex-veryshortguide depend latex-web-companion depend latex2e-help-texinfo @@ -33943,16 +57506,16 @@ depend latexfileinfo-pkgs depend lshort-english depend macros2e depend math-e +depend math-into-latex-4 depend maths-symbols depend memdesign depend metafont-beginners depend metapost-examples -depend mil3 depend patgen2-tutorial depend pictexsum depend plain-doc depend presentations-en -depend pstricks-examples-en +depend short-math-guide depend simplified-latex depend svg-inkscape depend tabulars-e @@ -33962,16 +57525,19 @@ depend tex-font-errors-cheatsheet depend tex-overview depend tex-refs depend texbytopic +depend texonly depend titlepages depend tlc2 +depend undergradmath depend visualfaq -depend voss-mathmode depend webguide depend xetexref +containersize 832 +containerchecksum a0f220fa23e8601cbf70fa29f6a3e3232f6b1acdf85f7cbdd40fb5ab269db4e4e3c0958ba870934813c680341d5f78d91f2297596e2158a49c032b48a7a3bb9b name collection-langeuropean category Collection -revision 38353 +revision 46803 shortdesc Other European languages relocated 1 longdesc Support for a number of European languages; others (Greek, @@ -33994,7 +57560,9 @@ depend babel-irish depend babel-kurmanji depend babel-latin depend babel-latvian +depend babel-macedonian depend babel-norsk +depend babel-occitan depend babel-piedmontese depend babel-romanian depend babel-romansh @@ -34005,8 +57573,9 @@ depend babel-swedish depend babel-turkish depend babel-welsh depend finbib +depend gloss-occitan depend hrlatex -depend hyphen-armenian +depend hulipsum depend hyphen-croatian depend hyphen-danish depend hyphen-dutch @@ -34021,6 +57590,7 @@ depend hyphen-latin depend hyphen-latvian depend hyphen-lithuanian depend hyphen-norwegian +depend hyphen-occitan depend hyphen-piedmontese depend hyphen-romanian depend hyphen-romansh @@ -34031,21 +57601,25 @@ depend hyphen-uppersorbian depend hyphen-welsh depend lithuanian depend lshort-dutch +depend lshort-estonian depend lshort-finnish depend lshort-slovenian depend lshort-turkish depend nevelok depend swebib depend turkmen +containersize 692 +containerchecksum 9505445397888b80e7f92026c63d4ec053758f835d6b217902639ecef6670f85a49e308891381be0340b43e7a793885dac79f88e75c376226d474682cedc3b12 name collection-langfrench category Collection -revision 38142 +revision 50933 shortdesc French relocated 1 longdesc Support for French and Basque. depend collection-basic depend aeguill +depend apprendre-a-programmer-en-tex depend apprends-latex depend babel-basque depend babel-french @@ -34058,12 +57632,16 @@ depend droit-fr depend e-french depend epslatex-fr depend facture +depend formation-latex-ul +depend frenchmath depend frletter +depend guide-latex-fr depend hyphen-basque depend hyphen-french depend impatient-fr depend impnattypo depend l2tabu-french +depend latex2e-help-texinfo-fr depend lshort-french depend mafr depend tabvar @@ -34074,21 +57652,27 @@ depend translation-dcolumn-fr depend translation-natbib-fr depend translation-tabbing-fr depend variations +depend visualtikz +containersize 548 +containerchecksum 90f3433c220a750c2759b8823333d766c2a816362517fafca988874863718affe809a697e5570b5e58558d3a71bc81b414b0fbcb2d243c9baddd33f238b3f7f5 name collection-langgerman category Collection -revision 36284 +revision 48599 shortdesc German relocated 1 longdesc Support for German. depend collection-basic +depend apalike-german depend babel-german depend bibleref-german depend booktabs-de depend csquotes-de +depend dehyph depend dehyph-exptl depend dhua depend einfuehrung +depend einfuehrung2 depend etdipa depend etoolbox-de depend fifinddo-info @@ -34102,17 +57686,19 @@ depend koma-script-examples depend l2picfaq depend l2tabu depend latex-bib-ex +depend latex-bib2-ex depend latex-referenz depend latex-tabellen depend latexcheat-de depend lshort-german depend lualatex-doc-de depend microtype-de +depend milog depend presentations -depend pstricks-examples depend r_und_s depend templates-fenn depend templates-sommer +depend termcal-de depend texlive-de depend tipa-de depend translation-arsclassica-de @@ -34124,12 +57710,15 @@ depend translation-europecv-de depend translation-filecontents-de depend translation-moreverb-de depend udesoftec +depend uhrzeit depend umlaute depend voss-mathcol +containersize 648 +containerchecksum efa8741b737f9331fed483fd4d0f8b286099f65503b3ea4874a272ea4c53f52e8d23cb9d76c1a4b19853d938a093e49b583a87003b7cdba41e9d6287598b396a name collection-langgreek category Collection -revision 36842 +revision 44192 shortdesc Greek relocated 1 longdesc Support for Greek. @@ -34146,6 +57735,7 @@ depend greek-fontenc depend greek-inputenc depend greekdates depend greektex +depend greektonoi depend hyphen-greek depend hyphen-ancientgreek depend ibycus-babel @@ -34157,27 +57747,8 @@ depend mkgrkindex depend teubner depend xgreek depend yannisgr - -name collection-langindic -category Collection -revision 35737 -shortdesc Indic scripts -relocated 1 -longdesc Support for Indic scripts. -depend collection-basic -depend bangtex -depend bengali -depend burmese -depend devnag -depend ebong -depend hyphen-indic -depend hyphen-sanskrit -depend sanskrit -depend sanskrit-t1 -depend velthuis -depend wnri -depend wnri-latex -depend xetex-devanagari +containersize 428 +containerchecksum 9633d376e164895cc7ea0d1a18759c1f06c71b83e612c10069dfd18237d61afab99170c03a9a1ba461d43d4273c7228f41f899dd77dc9308a8d329da6b336cba name collection-langitalian category Collection @@ -34202,46 +57773,77 @@ depend layaureo depend lshort-italian depend psfrag-italian depend texlive-it +containersize 412 +containerchecksum 1cace30c8b68dc6e44e5bfe070c155bc65462b4d950506d79967f9e7472c9d7b7f9b3016fe3a34049cc7ec50c21d12f4bd6c4a03bf4f3c63172976d1b888855e name collection-langjapanese category Collection -revision 33790 +revision 49995 shortdesc Japanese relocated 1 -longdesc Support for Japanese; additional packages in collection- -longdesc langcjk. +longdesc Support for Japanese; additional packages in +longdesc collection-langcjk. depend collection-langcjk +depend ascmac +depend babel-japanese depend bxbase depend bxcjkjatype +depend bxjaholiday +depend bxjalipsum +depend bxjaprnind depend bxjscls +depend bxorigcapt +depend bxwareki depend convbkmk +depend endnotesj +depend gentombow +depend ifptex +depend ifxptex depend ipaex -depend japanese depend japanese-otf depend japanese-otf-uptex -depend jfontmaps +depend jlreq depend jsclasses depend lshort-japanese depend luatexja +depend mendex-doc +depend morisawa +depend pbibtex-base +depend platex +depend platex-tools +depend platexcheat +depend plautopatch depend ptex +depend ptex-base +depend ptex-fontmaps +depend ptex-fonts +depend ptex-manual depend ptex2pdf depend pxbase depend pxchfon depend pxcjkcat depend pxjahyper +depend pxjodel depend pxrubrica +depend pxufont +depend uplatex depend uptex +depend uptex-base +depend uptex-fonts depend wadalab depend zxjafbfont depend zxjatype +containersize 580 +containerchecksum 1655f1079ab9792346eba7f1c5e29f0ed9a16ad153e9b3ba0b7052ba547946172d0242ce744bd74cdb3bb432d674336138bdb720c094662e2d49e645b68a325b name collection-langkorean category Collection -revision 33790 +revision 42106 shortdesc Korean relocated 1 longdesc Support for Korean; additional packages in collection-langcjk. depend collection-langcjk +depend baekmuk depend cjk-ko depend kotex-oblivoir depend kotex-plain @@ -34250,52 +57852,85 @@ depend kotex-utils depend lshort-korean depend nanumtype1 depend uhc +depend unfonts-core +depend unfonts-extra +containersize 388 +containerchecksum 6234b292f8b36a13d1a3543fb8ba19cb3cdab2fa30df008f1e33e62f4e6f291280b9f3e85aa21e5400ddd59392e698ddbf8c9c642934242402e93d6e3661d914 name collection-langother category Collection -revision 31014 +revision 51013 shortdesc Other languages relocated 1 -longdesc Support for languages not otherwise listed, including Thai, -longdesc Vietnamese, Hebrew, Indonesian, and plenty more. The split is -longdesc made simply on the basis of the size of the support, to keep -longdesc both collection sizes and the number of collections reasonable. +longdesc Support for languages not otherwise listed, including Indic, +longdesc Thai, Vietnamese, Hebrew, Indonesian, African languages, and +longdesc plenty more. The split is made simply on the basis of the size +longdesc of the support, to keep both collection sizes and the number of +longdesc collections reasonable. depend collection-basic depend amsldoc-vn depend aramaic-serto -depend babel-bahasa +depend hyphen-armenian +depend babel-azerbaijani depend babel-esperanto depend babel-georgian depend babel-hebrew +depend babel-indonesian depend babel-interlingua +depend babel-malay depend babel-sorbian depend babel-thai depend babel-vietnamese +depend bangtex +depend bengali +depend burmese depend cjhebrew depend ctib +depend ebong +depend ethiop +depend ethiop-t1 +depend fc depend fonts-tlwg depend hyphen-afrikaans depend hyphen-coptic depend hyphen-esperanto +depend hyphen-ethiopic depend hyphen-georgian +depend hyphen-indic depend hyphen-indonesian depend hyphen-interlingua +depend hyphen-sanskrit depend hyphen-thai depend hyphen-turkmen +depend latex-mr +depend latexbangla depend lshort-thai depend lshort-vietnamese depend ntheorem-vn +depend padauk +depend quran-ur +depend sanskrit +depend sanskrit-t1 +depend thaienum +depend thaispec +depend velthuis depend vntex +depend wnri +depend wnri-latex +depend xetex-devanagari +containersize 748 +containerchecksum 59d1d129529c8ba7d3fbe49d1bff671489d7a740a4420726337b0226f4ce73b0723d6cd8a393a8a3ce8543f5de2026d0f62c12f2703b2efc38337a4200ddb25a name collection-langpolish category Collection -revision 30372 +revision 44371 shortdesc Polish relocated 1 longdesc Support for Polish. depend collection-latex depend collection-basic depend babel-polish +depend bredzenie depend cc-pl depend gustlib depend gustprog @@ -34311,10 +57946,12 @@ depend tap depend tex-virtual-academy-pl depend texlive-pl depend utf8mex +containersize 412 +containerchecksum 38799df728e830c93a50928efe5f337c91e34b97368e4cce4707e6cbca0a8ee22b9edc528084034a86c72a748367c3f46af37fbe87f5171951563d98f836de58 name collection-langportuguese category Collection -revision 30962 +revision 47524 shortdesc Portuguese relocated 1 longdesc Support for Portuguese. @@ -34324,14 +57961,17 @@ depend beamer-tut-pt depend cursolatex depend feupphdteses depend hyphen-portuguese +depend latex-via-exemplos depend latexcheat-ptbr depend lshort-portuguese depend ordinalpt depend xypic-tut-pt +containersize 384 +containerchecksum 0e15945e469b7bb51157466d640b28dacc78a818f20a16296328b7378246000c2f2fd185264cba439035e4912ac1a63cc3441201c3309ca8a9d4d612e9e8c4f0 name collection-langspanish category Collection -revision 36995 +revision 40587 shortdesc Spanish relocated 1 longdesc Support for Spanish. @@ -34349,10 +57989,52 @@ depend latex2e-help-texinfo-spanish depend latexcheat-esmx depend lshort-spanish depend spanish-mx +depend texlive-es +containersize 392 +containerchecksum ed816cee1ca88a971b621d4a91ea7e6beebf8aacb684f8f000da8c4ce58e368a347eec69676db992dd1f09f287957855b4e814336a9bec689656a3eb6c34ce8b + +name collection-latex +category Collection +revision 41614 +shortdesc LaTeX fundamental packages +relocated 1 +longdesc These packages are either mandated by the core LaTeX team, or +longdesc very widely used and strongly recommended in practice. +depend 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 528 +containerchecksum b1aae6d9b6a16813d76ee4c4bff813120784f856574b83aad156bb6bd0edc8815688159f78a5fa74dc1662c02c94c675e8caa3f654e933673f0424e8f1ead80f name collection-latexextra category Collection -revision 38352 +revision 51179 shortdesc LaTeX additional packages relocated 1 longdesc A very large collection of add-on packages for LaTeX. @@ -34373,6 +58055,8 @@ depend acro depend acronym depend acroterm depend actuarialangle +depend actuarialsymbol +depend addfont depend addlines depend adjmulticol depend adjustbox @@ -34396,35 +58080,52 @@ depend arcs depend arrayjobx depend arraysort depend arydshln +depend asciilist depend assignment depend assoccnt depend attachfile +depend aurl depend authoraftertitle +depend authorarchive depend authorindex depend autonum depend autopdf depend avremu +depend axessibility depend background depend bankstatement depend bashful depend basicarith depend bchart depend beamer2thesis +depend beamer-rl depend beameraudience +depend beamerauxtheme +depend beamercolorthemeowl depend beamerdarkthemes depend beamerposter depend beamersubframe +depend beamertheme-cuerna +depend beamertheme-detlevcm +depend beamertheme-epyt +depend beamertheme-focus +depend beamertheme-light +depend beamertheme-metropolis +depend beamertheme-npbt +depend beamertheme-phnompenh +depend beamertheme-saintpetersburg depend beamertheme-upenn-bc depend beamerthemejltree depend beamerthemenirma -depend beamerthemephnompenh depend beton depend bewerbung depend bez123 depend bezos depend bhcexam +depend bibletext depend bigfoot depend bigints +depend biochemistry-colors depend bizcard depend blindtext depend blkarray @@ -34445,9 +58146,14 @@ depend bracketkey depend braket depend breakurl depend bullcntr -depend bussproofs +depend bxcalc depend bxdpx-beamer +depend bxdvidriver +depend bxenclose +depend bxnewfont +depend bxpapersize depend bxpdfver +depend bxtexlogo depend calcage depend calctab depend calculator @@ -34459,6 +58165,7 @@ depend canoniclayout depend capt-of depend captcont depend captdef +depend carbohydrates depend cases depend casyl depend catchfilebetweentags @@ -34470,26 +58177,35 @@ depend cclicenses depend cd depend cd-cover depend cdpbundl +depend cellprops depend cellspace depend censor +depend centeredline depend changebar depend changelayout +depend changelog depend changepage depend changes depend chappg depend chapterfolder +depend cheatsheet depend chet depend chextras +depend childdoc depend chkfloat depend chletter depend chngcntr depend chronology depend circ depend classics +depend classpack depend clefval depend cleveref depend clipboard depend clock +depend cloze +depend clrdblpg +depend clrstrip depend cmdstring depend cmdtrack depend cmsd @@ -34501,8 +58217,10 @@ depend codepage depend codesection depend collcell depend collectbox +depend colophon depend colordoc depend colorinfo +depend coloring depend colorspace depend colortab depend colorwav @@ -34512,13 +58230,18 @@ depend combelow depend combine depend comma depend commado +depend commedit depend comment +depend competences depend concepts depend concprog depend constants +depend continue depend contour depend contracard +depend conv-xkv depend cooking +depend cooking-units depend cool depend coollist depend coolstr @@ -34535,9 +58258,12 @@ depend coverpage depend cprotect depend crbox depend crossreference +depend crossreftools depend csquotes +depend css-colors depend csvsimple depend cuisine +depend currency depend currfile depend currvita depend cutwin @@ -34600,10 +58326,8 @@ depend datetime2-welsh depend dblfloatfix depend decimal depend decorule -depend delim depend delimtxt depend denisbdoc -depend detlev-cm depend diagbox depend diagnose depend dialogl @@ -34627,15 +58351,21 @@ depend dpfloat depend dprogress depend drac depend draftcopy +depend draftfigure depend draftwatermark depend dtk +depend dtxdescribe depend dtxgallery +depend duckuments +depend ducksay depend dvdcoll +depend dynamicnumber depend dynblocks depend ean13isbn depend easy depend easy-todo depend easyfig +depend easyformat depend easylist depend easyreview depend ebezier @@ -34646,6 +58376,10 @@ depend edmargin depend eemeir depend efbox depend egplot +depend ehhline +depend elegantbook +depend elegantnote +depend elegantpaper depend elements depend ellipsis depend elmath @@ -34670,12 +58404,13 @@ depend environ depend envlab depend epigraph depend epiolmec -depend epyt depend eqell depend eqlist +depend eqnalign depend eqname depend eqparbox depend errata +depend erw-l3 depend esami depend esdiff depend esint @@ -34683,20 +58418,25 @@ depend esint-type1 depend etaremune depend etextools depend etoc -depend etoolbox depend eukdate +depend eulerpx depend europasscv depend europecv depend everyhook depend everypage depend exam depend exam-n +depend exam-randomizechoices depend examdesign +depend exframe depend example depend examplep depend exceltex depend excludeonly depend exercise +depend exercisebank +depend exercisepoints +depend exercises depend exp-testopt depend expdlist depend export @@ -34705,23 +58445,30 @@ depend exsol depend extract depend facsimile depend factura +depend fancyhandout depend fancylabel depend fancynum depend fancypar depend fancyslides depend fancytabs depend fancytooltips +depend fbox depend fcolumn +depend fetchcls +depend ffslides +depend fgruler +depend fibeamer depend fifo-stack depend figsize depend filecontents +depend filecontentsdef depend filedate -depend filehook depend fileinfo depend filemod depend fink depend finstrut depend fithesis +depend fixcmex depend fixfoot depend fixme depend fixmetodonotes @@ -34749,6 +58496,7 @@ depend foilhtml depend fontaxes depend fonttable depend footmisc +depend footmisx depend footnotebackref depend footnoterange depend footnpag @@ -34756,6 +58504,7 @@ depend forarray depend foreign depend forloop depend formlett +depend forms16be depend formular depend fragments depend frame @@ -34770,22 +58519,32 @@ depend fullwidth depend fundus-calligra depend fundus-cyr depend fundus-sueterlin +depend fvextra depend fwlw depend g-brief +depend gatherenum depend gauss depend gcard depend gcite depend gender depend genmpage depend getfiledate +depend getitems depend ginpenc +depend gitfile-info depend gitinfo depend gitinfo2 +depend gitlog +depend gitver +depend globalvals depend gloss depend glossaries depend glossaries-danish depend glossaries-dutch depend glossaries-english +depend glossaries-estonian +depend glossaries-extra +depend glossaries-finnish depend glossaries-french depend glossaries-german depend glossaries-irish @@ -34800,15 +58559,20 @@ depend gmdoc-enhance depend gmiflink depend gmutils depend gmverb +depend grabbox depend graphbox depend graphicx-psmin depend graphicxbox +depend grayhints depend grfpaste depend grid depend grid-system depend gridset -depend gtl +depend gridslides depend guitlogo +depend halloweenmath +depend hackthefootline +depend handin depend handout depend hang depend hanging @@ -34826,12 +58590,14 @@ depend hrefhide depend hvindex depend hypdvips depend hyper +depend hyperbar depend hypernat -depend hyperref-docsrc depend hyperxmp depend hyphenat +depend identkey depend idxcmds depend idxlayout +depend iffont depend ifmslide depend ifmtarg depend ifnextok @@ -34844,17 +58610,22 @@ depend imakeidx depend import depend incgraph depend indextools +depend inline-images depend inlinedef depend inputtrc depend interactiveworkbook depend interfaces +depend intopdf depend inversepath depend invoice +depend invoice-class +depend invoice2 depend iso depend iso10303 depend isodate depend isodoc depend isonums +depend isopt depend isorot depend isotope depend issuulinks @@ -34863,32 +58634,45 @@ depend jlabels depend jslectureplanner depend jumplines depend jvlisting +depend kalendarium depend kantlipsum depend kerntest depend keycommand +depend keyfloat depend keyreader +depend keyindex depend keystroke depend keyval2e +depend keyvaltable depend kix +depend knowledge depend koma-moderncvclassic depend koma-script-sfs depend komacv +depend komacv-rg depend ktv-texdata depend l3build depend labbook -depend labelcas depend labels +depend labels4easylist +depend labelschanged depend lastpackage depend lastpage depend latex-tds +depend latex-uni8 +depend latexcolors depend latexdemo +depend latexgit depend layouts depend lazylist +depend lccaps depend lcd depend lcg depend leading depend leaflet +depend lectures depend leftidx +depend leipzig depend lengthconvert depend lettre depend lettrine @@ -34897,6 +58681,7 @@ depend lhelp depend libgreek depend limap depend linegoal +depend linop depend lipsum depend lisp-on-tex depend listing @@ -34910,24 +58695,31 @@ depend localloc depend logbox depend logical-markup-utils depend logpap +depend longfbox depend longfigure depend longnamefilelist depend loops depend lsc depend lstaddons +depend lstfiracode depend lt3graph depend ltablex depend ltabptch depend ltxdockit +depend ltxguidex depend ltxindex depend ltxkeys depend ltxnew depend ltxtools +depend lua-check-hyphen +depend luatodonotes depend macroswap depend magaz +depend makecookbook depend mailing depend mailmerge depend makebarcode +depend makebase depend makebox depend makecell depend makecirc @@ -34937,15 +58729,20 @@ depend makeglos depend mandi depend manfnt depend manuscript +depend manyind +depend marginfit depend marginfix depend marginnote -depend mathalfa +depend markdown +depend mathalpha depend mathastext depend mathexam +depend mathfam256 +depend mathfont depend maybemath -depend mbenotes depend mcaption depend mceinleger +depend mcexam depend mcite depend mciteplus depend mdframed @@ -34954,14 +58751,18 @@ depend medstarbeamer depend meetingmins depend memexsupp depend memory +depend mensa-tex depend menu depend menukeys +depend metalogox depend method depend metre depend mfirstuc depend mftinc +depend mi-solns depend midpage depend minibox +depend minidocument depend minifp depend minipage-marginpar depend minitoc @@ -34973,10 +58774,13 @@ depend mlist depend mmap depend mnotes depend moderncv +depend modernposter depend moderntimeline depend modref depend modroman +depend modular depend monofill +depend moodle depend moreenum depend morefloats depend morehype @@ -34985,6 +58789,7 @@ depend moreverb depend morewrites depend movie15 depend mparhack +depend mpostinl depend msc depend msg depend mslapa @@ -34993,12 +58798,14 @@ depend multenum depend multiaudience depend multibbl depend multicap +depend multicolrule +depend multidef depend multienv depend multiexpand +depend multilang depend multirow depend mversion depend mwe -depend mweights depend mycv depend mylatexformat depend nag @@ -35021,6 +58828,7 @@ depend nfssext-cfr depend nicefilelist depend niceframe depend nicetext +depend nidanfloat depend nlctdoc depend noconflict depend noindentafter @@ -35031,7 +58839,10 @@ depend nomentbl depend nonfloat depend nonumonpart depend nopageno +depend normalcolor depend notes +depend notespages +depend notestex depend notoccite depend nowidow depend nox @@ -35039,6 +58850,7 @@ depend ntheorem depend numberedblock depend numname depend numprint +depend numspell depend ocg-p depend ocgx depend ocgx2 @@ -35047,11 +58859,16 @@ depend octavo depend oldstyle depend onlyamsmath depend opcit +depend optidef depend optional +depend options depend outline depend outliner depend outlines +depend outlining +depend overlays depend overpic +depend padcount depend pagecolor depend pagecont depend pagenote @@ -35062,6 +58879,7 @@ depend papercdcase depend papermas depend papertex depend paracol +depend parades depend paralist depend paresse depend parnotes @@ -35080,7 +58898,11 @@ depend pdf14 depend pdfcomment depend pdfcprot depend pdfmarginpar +depend pdfoverlay depend pdfpagediff +depend pdfpc-movie +depend pdfprivacy +depend pdfreview depend pdfscreen depend pdfslide depend pdfsync @@ -35090,7 +58912,15 @@ depend pecha depend perltex depend permute depend petiteannonce +depend phffullpagefigure +depend phfnote +depend phfparen +depend phfqit +depend phfquotetext +depend phfsvnwatermark +depend phfthm depend philex +depend phonenumbers depend photo depend piff depend pkgloader @@ -35119,13 +58949,15 @@ depend prosper depend protex depend protocol depend psfragx -depend pst-pdf depend pstool +depend pstring depend pxgreeks +depend pygmentex depend python depend qcm depend qstest depend qsymbols +depend quicktype depend quotchap depend quoting depend quotmark @@ -35153,6 +58985,8 @@ depend relenc depend relsize depend repeatindex depend repltext +depend returntogrid +depend rgltxdoc depend rjlparshap depend rlepsf depend rmpage @@ -35167,8 +59001,10 @@ depend rotpages depend roundbox depend rterface depend rtkinenc +depend rulerbox depend rulercompass depend rvwrite +depend sanitize-umlaut depend sauerj depend savefnmark depend savesym @@ -35177,17 +59013,21 @@ depend scale depend scalebar depend scalerel depend scanpages +depend scrlttr2copy depend sdrt depend secdot depend sectionbox +depend sectionbreak depend sectsty depend seealso depend selectp depend semantic +depend semantic-markup depend semioneside depend semproc depend sepfootnotes depend seqsplit +depend sesstime depend sf298 depend sffms depend sfmath @@ -35202,13 +59042,14 @@ depend show2e depend showcharinbox depend showdim depend showexpl +depend showhyphens depend showlabels depend sidecap depend sidenotes depend silence depend simplecd depend simplecv -depend simplewick +depend simpleinvoice depend sitem depend skb depend skdoc @@ -35217,10 +59058,12 @@ depend skeyval depend skrapport depend slantsc depend smalltableof +depend smartunits depend smartref depend snapshot depend snotez depend soul +depend spark-otf depend sparklines depend sphack depend splitindex @@ -35235,8 +59078,8 @@ depend sslides depend stack depend stackengine depend standalone -depend statistik depend stdclsdv +depend stealcaps depend stdpage depend stex depend storebox @@ -35244,6 +59087,7 @@ depend storecmd depend stringstrings depend sttools depend stubs +depend studenthandouts depend subdepth depend subeqn depend subeqnarray @@ -35270,6 +59114,7 @@ depend tableof depend tablestyles depend tablists depend tabls +depend tablvar depend tabstackengine depend tabto-ltx depend tabu @@ -35279,6 +59124,7 @@ depend tabularew depend tabulary depend tagging depend tagpair +depend tagpdf depend talk depend tamefloats depend tasks @@ -35291,16 +59137,19 @@ depend templatetools depend termcal depend termlist depend testhyphens +depend testidx depend tex-label +depend tex-locale depend texlogos depend texmate depend texments depend texpower depend texshade +depend texvc depend textfit -depend textgreek depend textmerg depend textpos +depend textualicomma depend theoremref depend thinsp depend thmtools @@ -35318,6 +59167,7 @@ depend titleref depend titlesec depend titling depend tocbibind +depend tocdata depend tocloft depend tocvsec2 depend todo @@ -35325,6 +59175,7 @@ depend todonotes depend tokenizer depend toolbox depend topfloat +depend topiclongtable depend totcount depend totpages depend translations @@ -35339,7 +59190,9 @@ depend twoinone depend twoup depend txgreeks depend type1cm +depend typed-checklist depend typeface +depend typoaid depend typogrid depend uassign depend ucs @@ -35354,7 +59207,9 @@ depend upmethodology depend upquote depend uri depend ushort +depend uspace depend uwmslide +depend variablelm depend varindex depend varsfromjobname depend varwidth @@ -35374,24 +59229,40 @@ depend vmargin depend volumes depend vpe depend vruler +depend vtable depend vwcol +depend wallcalendar depend wallpaper depend warning depend warpcol depend was +depend webquiz depend widetable +depend widows-and-orphans depend williams depend withargs +depend wordcount depend wordlike +depend worksheet depend wrapfig +depend wtref depend xargs +depend xassoccnt +depend xbmks +depend xcntperchap +depend xcolor-material depend xcolor-solarized depend xcomment +depend xcookybooky +depend xcpdftips depend xdoc +depend xellipsis +depend xfakebold depend xfor depend xhfill depend xifthen depend xint +depend xltabular depend xmpincl depend xnewcommand depend xoptarg @@ -35399,22 +59270,30 @@ depend xpatch depend xpeek depend xprintlen depend xpunctuate +depend xsavebox +depend xsim depend xstring depend xtab +depend xurl depend xwatermark depend xytree depend yafoot +depend yaletter depend yagusylo +depend ycbook depend ydoc depend yplan +depend zebra-goodies depend zed-csp depend ziffer depend zwgetfdate depend zwpagelayout +containersize 5816 +containerchecksum 46fb3fa61a953c1d074ce4ef48e35a62bb0a4552c350819976116a151d2c5009ac14b5b5e4035f120d3b4f40345920d21bd94642ecb55138d6c4b38686534f07 name collection-latexrecommended category Collection -revision 35765 +revision 50559 shortdesc LaTeX recommended packages relocated 1 longdesc A collection of recommended add-on packages for LaTeX which @@ -35432,21 +59311,27 @@ depend ctable depend eso-pic depend euenc depend euler +depend etoolbox depend extsizes depend fancybox depend fancyref depend fancyvrb +depend filehook depend float depend fontspec +depend footnotehyper depend fp depend index depend jknapltx depend koma-script +depend latexbug +depend l3experimental depend l3kernel depend l3packages -depend l3experimental depend lineno depend listings +depend lwarp +depend mathspec depend mathtools depend mdwtools depend memoir @@ -35456,10 +59341,10 @@ depend ms depend ntgclass depend parskip depend pdfpages +depend polyglossia depend powerdot depend psfrag depend rcs -depend rotating depend sansmath depend section depend seminar @@ -35468,160 +59353,269 @@ depend setspace depend subfig depend textcase depend thumbpdf +depend translator depend typehtml +depend ucharcat depend underscore +depend unicode-math depend xcolor depend xkeyval - -name collection-latex -category Collection -revision 33055 -shortdesc LaTeX fundamental packages -relocated 1 -longdesc These packages are either mandated by the core LaTeX team, or -longdesc very widely used and strongly recommended in practice. -depend 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 hyperref -depend latex -depend latex-bin -depend latex-fonts -depend latexconfig -depend ltxmisc -depend mfnfss -depend mptopdf -depend natbib -depend oberdiek -depend pdftex-def -depend pslatex -depend psnfss -depend pspicture -depend tools -depend url +depend xltxtra +depend xunicode +containersize 672 +containerchecksum 8c82b97cc4fe2c223df0910f98edfba368d02141e2c38a1061085bc6f2f3fc43f5591011ebbb0d886ef7e5482b49102d1f216f8a4f40c7d9d069abd9a0d2b7f2 name collection-luatex category Collection -revision 37811 +revision 51127 shortdesc LuaTeX packages relocated 1 longdesc Packages for LuaTeX, a Unicode-aware extension of pdfTeX, using longdesc Lua as an embedded scripting and extension language. longdesc http://luatex.org/ depend collection-basic +depend addliga +depend auto-pst-pdf-lua +depend bezierplot depend checkcites depend chickenize -depend cloze +depend combofont +depend cstypo +depend ctablestack depend enigma depend interpreter -depend lua-check-hyphen +depend kanaparser depend lua-visual-debug depend lua2dox -depend luabibentry -depend luabidi depend luacode +depend luahyphenrules +depend luaimageembed depend luaindex depend luainputenc depend luaintro depend lualatex-doc depend lualatex-math +depend lualatex-truncate depend lualibs depend luamplib depend luaotfload -depend luasseq +depend luapackageloader +depend luarandom +depend luatex85 depend luatexbase depend luatexko depend luatextra -depend luatodonotes +depend luavlna depend luaxml +depend nodetree depend odsfile +depend pdfarticle depend placeat +depend plantuml depend selnolig -depend showhyphens depend spelling -depend ucharcat +depend typewriter +containersize 632 +containerchecksum 0994c7425cc79885ec523d73d7ab2db08f32117d2bff82f4e5c0c4df6c70c012f7b90e04e8f83cc263cdf29c39b1104e09a92e86a94eda0c2e9cdfb66377fe50 -name collection-mathextra +name collection-mathscience category Collection -revision 37535 -shortdesc Mathematics packages +revision 51105 +shortdesc Mathematics, natural sciences, computer science packages relocated 1 depend collection-fontsrecommended depend collection-latex depend 12many +depend SIstyle +depend SIunits +depend alg +depend algobox +depend algorithm2e +depend algorithmicx +depend algorithms +depend aligned-overset depend amstex +depend apxproof +depend autobreak +depend axodraw2 depend backnaur depend begriff depend binomexp +depend biocon +depend bitpattern +depend bohr depend boldtensors depend bosisio +depend bpchem depend bropd +depend bussproofs +depend bussproofs-extra +depend bytefield depend calculation +depend cascade depend ccfonts +depend chemarrow +depend chemcompounds +depend chemcono +depend chemexec +depend chemformula +depend chemgreek +depend chemmacros +depend chemnum +depend chemschemex +depend chemsec +depend chemstyle +depend clrscode +depend clrscode3e depend commath +depend complexity +depend computational-complexity depend concmath depend concrete depend conteq +depend correctmathalign +depend cryptocode +depend delim +depend delimseasy +depend delimset +depend diffcoeff +depend digiconfigs +depend dijkstra +depend drawmatrix +depend drawstack +depend dyntree depend ebproof +depend econometrics +depend eltex +depend emf +depend endiagram +depend engtlc +depend eqexpl depend eqnarray +depend eqnnumwarn depend extarrows depend extpfeil depend faktor +depend fascicules +depend fnspe +depend fouridx +depend functan +depend galois +depend gastex +depend gene-logic +depend ghsystem +depend gotoh depend grundgesetze +depend gu +depend hep +depend hepnames +depend hepparticles +depend hepthesis +depend hepunits +depend includernw depend interval depend ionumbers depend isomath +depend jkmath +depend karnaugh +depend karnaugh-map +depend karnaughmap +depend kvmap depend logicproof +depend longdivision depend lpform depend lplfitch +depend lstbayes +depend mathcommand depend mathcomp +depend mathfixs +depend mathpartir +depend mathpunctspace +depend matlab-prettifier depend mattens +depend memorygraphs +depend mgltex +depend mhchem depend mhequ +depend miller +depend mismath depend multiobjective +depend mychemistry depend natded depend nath +depend nicematrix +depend nuc +depend nucleardata +depend objectz +depend oplotsymbl depend ot-tableau depend oubraces depend perfectcut +depend physics +depend pm-isomath +depend polexpr depend prftree depend proba +depend proof-at-the-end +depend prooftrees +depend pseudocode +depend pythonhighlight +depend qsharp +depend rank-2-roots depend rec-thy +depend revquantum depend ribbonproofs depend rmathbr +depend sasnrdisplay +depend sciposter +depend sclang-prettifier +depend scratchx depend sesamanuel +depend sfg depend shuffle +depend simpler-wick +depend simplewick +depend siunitx depend skmath +depend spalign +depend stanli depend statex depend statex2 +depend statistics +depend statistik +depend statmath +depend steinmetz depend stmaryrd +depend structmech +depend struktex +depend substances depend subsupscripts depend susy depend syllogism depend sympytexpackage depend synproof +depend t-angles depend tablor depend tensor depend tex-ewd +depend textgreek +depend textopo depend thmbox depend turnstile -depend unicode-math +depend ulqda +depend unitsdef depend venn +depend witharrows +depend xymtex depend yhmath +depend youngtab depend ytableau +containersize 1308 +containerchecksum 5d060bad062df16d5e51413e43d24a764b8a64327f3ebcf313108e74dda05f8a7c3e438d5f545c502be63a28af9e2f3969985493ae9841172232a16e3e1f4843 name collection-metapost category Collection -revision 37994 +revision 50293 shortdesc MetaPost and Metafont packages relocated 1 depend collection-basic @@ -35639,6 +59633,7 @@ depend exteps depend featpost depend feynmf depend feynmp-auto +depend fiziko depend garrigues depend gmp depend hatching @@ -35648,13 +59643,16 @@ depend metago depend metaobj depend metaplot depend metapost +depend metapost-colorbrewer depend metauml depend mfpic depend mfpic4ode depend mp3d -depend mpcolornames +depend mparrows depend mpattern +depend mpcolornames depend mpgraphics +depend mptrees depend piechartmp depend repere depend roex @@ -35665,67 +59663,66 @@ depend splines depend suanpan depend textpath depend threeddice +containersize 540 +containerchecksum 09dfaa35971f85134d0854c08a99c4d2b01ddf08e8ab97449460bb99d1236a38c48643501e7bb56197a844491509af301da6c4f75a33d9286601633211ec7d93 name collection-music category Collection -revision 37604 +revision 51000 shortdesc Music packages relocated 1 longdesc Music-related fonts and packages. depend collection-latex depend abc +depend autosp depend bagpipe +depend chordbars +depend chordbox depend figbas depend gchords +depend gregoriotex depend gtrcrd depend guitar depend guitarchordschemes +depend guitartabs depend harmony depend leadsheets +depend latex4musicians depend lilyglyphs +depend lyluatex depend m-tx +depend musicography depend musixguit depend musixtex -depend musixtex-fnts +depend musixtex-fonts depend musixtnt +depend octave depend piano depend pmx depend pmxchords depend songbook depend songs depend xpiano - -name collection-omega -category Collection -revision 30388 -shortdesc Omega packages -relocated 1 -longdesc Omega, a 16-bit extended TeX by John Plaice and Yannis -longdesc Haralambous, now updated to Aleph. -depend collection-basic -depend collection-latex -depend aleph -depend antomega -depend lambda -depend mxedruli -depend omega -depend omegaware -depend otibet +containersize 460 +containerchecksum 79de42f416ef2ef1f3a67f125be4a040fcd037a7f11fd63ec3c86e63b7dfd12f943e45405c4ab7d343b6732f3e07bd74c5939df04d297ba44bea3eae91448d0a name collection-pictures category Collection -revision 38139 +revision 51051 shortdesc Graphics, pictures, diagrams relocated 1 longdesc Including TikZ, pict, etc., but MetaPost and PStricks are longdesc separate. depend collection-basic +depend adigraph depend aobs-tikz depend askmaps depend asyfig depend asypictureb depend autoarea depend bardiag +depend beamerswitch +depend binarytree depend blochsphere depend bloques depend blox @@ -35735,6 +59732,7 @@ depend bondgraphs depend braids depend bxeepic depend cachepic +depend callouts depend celtic depend chemfig depend combinedgraphics @@ -35744,16 +59742,22 @@ depend curve2e depend curves depend dcpic depend diagmac2 +depend ditaa depend doc-pictex depend dottex depend dot2texi depend dratex depend drs depend duotenzor +depend dynkin-diagrams +depend ecgdraw depend eepic +depend ellipse +depend endofproofwd depend epspdf depend epspdfconversion depend esk +depend euflag depend fast-diagram depend fig4latex depend fitbox @@ -35765,57 +59769,83 @@ depend gincltex depend gnuplottex depend gradientframe depend grafcet +depend graph35 +depend graphicxpsd depend graphviz +depend gtrlib-largetrees depend harveyballs depend here depend hf-tikz depend hobby depend hvfloat +depend istgame depend knitting depend knittingpattern +depend ladder depend lapdf depend latex-make depend lpic +depend lroundrect +depend luamesh +depend luasseq +depend maker depend makeshape depend mathspic +depend milsymb depend miniplot depend mkpic depend modiagram depend neuralnetwork depend numericplots depend pb-diagram +depend penrose depend petri-nets depend pgf depend pgf-blur +depend pgf-cmykshadings depend pgf-soroban +depend pgf-spectra depend pgf-umlcd depend pgf-umlsd depend pgfgantt depend pgfkeyx depend pgfmolbio +depend pgfmorepages depend pgfopts +depend pgfornament depend pgfplots depend picinpar depend pict2e depend pictex depend pictex2 depend pinlabel +depend pixelart depend pmgraph +depend postage depend prerex depend productbox +depend ptolemaicastronomy depend pxpgfmark depend qcircuit +depend quantikz depend qrcode depend randbild depend randomwalk +depend realhats depend reotex depend rviewport depend sa-tikz depend schemabloc +depend scsnowman +depend scratch +depend scratch3 depend setdeck +depend signchart depend smartdiagram depend spath3 +depend spectralsequences depend swimgraf +depend table-fct depend texdraw depend ticollege depend tipfr @@ -35824,16 +59854,35 @@ depend tikz-bayesnet depend tikz-cd depend tikz-dependency depend tikz-dimline +depend tikz-feynhand +depend tikz-feynman +depend tikz-imagelabels depend tikz-inet +depend tikz-kalender +depend tikz-karnaugh +depend tikz-ladder +depend tikz-layers +depend tikz-nef +depend tikz-network depend tikz-opm +depend tikz-optics +depend tikz-page depend tikz-palattice depend tikz-qtree +depend tikz-relay +depend tikz-sfc depend tikz-timing +depend tikz-truchet +depend tikzcodeblocks +depend tikzducks depend tikzinclude +depend tikzlings depend tikzmark +depend tikzmarmots depend tikzorbital depend tikzpagenodes depend tikzpfeile +depend tikzpeople depend tikzposter depend tikzscale depend tikzsymbols @@ -35852,49 +59901,123 @@ depend tkz-tab depend tsemlines depend tufte-latex depend venndiagram +depend visualpstricks depend xpicture depend xypic +containersize 1328 +containerchecksum f6131108287178f2900e35b632319f81e6e78c25676d0cfb8b2ff303f1d99d2399b4a0891c1d42eabaf91d43a932f1cee98dc71adab6492bd88128bc60c2a420 -name collection-plainextra +name collection-plaingeneric category Collection -revision 37156 -shortdesc Plain TeX packages +revision 50044 +shortdesc Plain (La)TeX packages relocated 1 -longdesc Add-on packages and macros that work with plain TeX. +longdesc Add-on packages and macros that work with plain TeX, often +longdesc LaTeX, and occasionally other formats. depend collection-basic +depend abbr +depend abstyles +depend apnum +depend autoaligne +depend barr +depend bitelist +depend borceux +depend c-pascal +depend catcodes +depend chronosys +depend colorsep +depend cweb-old +depend dinat +depend dirtree +depend docbytex +depend dowith +depend eijkhout +depend encxvlna +depend epigram +depend epsf depend epsf-dvipdfmx +depend fenixpar depend figflow depend fixpdfmag +depend fltpoint +depend fntproof depend font-change depend fontch +depend fontname +depend gates +depend genmisc depend getoptk depend gfnotation +depend gobble depend graphics-pln +depend gtl +depend hlist depend hyplain +depend ifetex +depend iftex +depend insbox depend js-misc +depend kastrup +depend lambda-lists +depend langcode +depend lecturer +depend librarian +depend listofitems +depend mathdots +depend metatex +depend midnight depend mkpattern +depend modulus +depend multido +depend navigator depend newsletr +depend ofs +depend olsak-misc +depend path +depend pdf-trans depend pitex depend placeins-plain +depend plainpkg depend plipsum depend plnfss depend plstmary +depend poormanlog depend present +depend randomlist depend resumemac +depend schemata +depend shade +depend simplekv +depend systeme +depend tabto-generic +depend termmenu +depend tex-ps +depend tex4ht +depend texapi +depend texdate depend texinfo depend timetable +depend tracklang depend treetex +depend trigonometry +depend ulem +depend upca depend varisize depend xii +depend xii-lat +depend xlop +depend yax +containersize 872 +containerchecksum 9ef13861626d3431dae68447b371f05ddbd0eaa3f81a41eaa830825df7775a12a824a36e9be8c14a1b3bcf25f7acafda0b010d3c6021e6cf2b2eb17b3f91c8ef name collection-pstricks category Collection -revision 34995 +revision 49316 shortdesc PSTricks relocated 1 longdesc PSTricks core and all add-on packages. depend collection-basic -depend collection-genericrecommended +depend collection-plaingeneric depend auto-pst-pdf depend bclogo depend dsptricks @@ -35907,23 +60030,30 @@ depend pst-2dplot depend pst-3d depend pst-3dplot depend pst-abspos +depend pst-arrow depend pst-am +depend pst-antiprism depend pst-asr depend pst-bar depend pst-barcode depend pst-bezier depend pst-blur depend pst-bspline +depend pst-calculate depend pst-calendar +depend pst-cie depend pst-circ depend pst-coil +depend pst-contourplot depend pst-cox +depend pst-dart depend pst-dbicons depend pst-diffraction depend pst-electricfield depend pst-eps depend pst-eucl depend pst-exa +depend pst-feyn depend pst-fill depend pst-fit depend pst-fr3d @@ -35932,6 +60062,7 @@ depend pst-fun depend pst-func depend pst-gantt depend pst-geo +depend pst-geometrictools depend pst-ghsb depend pst-gr3d depend pst-grad @@ -35944,9 +60075,12 @@ depend pst-labo depend pst-layout depend pst-lens depend pst-light3d +depend pst-lsystem depend pst-magneticfield +depend pst-marble depend pst-math depend pst-mirror +depend pst-moire depend pst-node depend pst-ob3d depend pst-ode @@ -35956,19 +60090,24 @@ depend pst-osci depend pst-ovl depend pst-pad depend pst-pdgr +depend pst-pdf depend pst-perspective depend pst-platon depend pst-plot +depend pst-poker depend pst-poly depend pst-pulley depend pst-qtree +depend pst-rputover depend pst-rubans +depend pst-shell depend pst-sigsys depend pst-slpe depend pst-solarsystem depend pst-solides3d depend pst-soroban depend pst-spectra +depend pst-spinner depend pst-spirograph depend pst-stru depend pst-support @@ -35979,6 +60118,8 @@ depend pst-tree depend pst-tvz depend pst-uml depend pst-vectorian +depend pst-vehicle +depend pst-venn depend pst-vowel depend pst-vue3d depend pst2pdf @@ -35988,17 +60129,21 @@ depend pstricks_calcnotes depend uml depend vaucanson-g depend vocaltract +containersize 808 +containerchecksum 6a1763933af0d8773f63a8eb354f47b8a360ce7dd8e64d4fe23269cfa19a9a51291a096535296110654a5dce737d2e3fa6cb423f494ea7f1ced1ea142fadfebd name collection-publishers category Collection -revision 38364 +revision 50974 shortdesc Publisher styles, theses, etc. relocated 1 depend collection-latex depend IEEEconf depend IEEEtran depend aastex +depend abnt depend abntex2 +depend acmart depend acmconf depend active-conf depend adfathesis @@ -36016,62 +60161,107 @@ depend arsclassica depend articleingud depend asaetr depend ascelike +depend asmeconf +depend asmejour +depend aucklandthesis depend bangorcsthesis +depend bangorexam +depend bath-bst depend beamer-FUBerlin +depend beamer-verona +depend beilstein depend bgteubner depend br-lex depend brandeis-dissertation +depend brandeis-problemset depend cascadilla +depend cesenaexam depend chem-journal +depend chs-physics-report +depend cje depend classicthesis depend cleanthesis depend cmpj depend confproc +depend cquthesis depend dccpaper depend dithesis depend ebook depend ebsthesis +depend ecothesis depend ejpecp depend ekaia depend elbioimp +depend els-cas-templates depend elsarticle depend elteikthesis +depend emisa depend erdc depend estcpmm +depend etsvthor +depend facture-belge-simple-sans-tva depend fbithesis depend fcavtex depend fcltxdoc depend fei +depend ftc-notebook depend gaceta +depend gammas depend gatech-thesis depend gradstudentresume +depend grant depend gsemthesis depend gzt +depend h2020proposal +depend hagenberg-thesis depend har2nat +depend hecthese +depend hithesis depend hobete +depend hustthesis depend icsv depend ieeepes depend ijmart +depend ijsra depend imac depend imtekda +depend iodhbwm +depend iscram +depend jacow depend jmlr +depend jnuexam depend jpsj depend kdgdocs depend kluwer +depend ksp-thesis +depend ku-template +depend langsci +depend limecv +depend lion-msc +depend llncsconf +depend lni depend lps depend matc3 depend matc3mem depend mcmthesis depend mentis +depend mlacls depend mnras +depend modeles-factures-belges-assocs depend msu-thesis +depend mucproc depend mugsthesis depend musuos depend muthesis +depend mynsfc depend nature +depend navydocs depend nddiss depend ndsu-thesis +depend novel +depend nwejm depend nih +depend nihbiosketch depend nostarch depend nrc depend onrannual @@ -36080,35 +60270,48 @@ depend philosophersimprint depend pittetd depend pkuthss depend powerdot-FUBerlin +depend powerdot-tuliplab depend pracjourn depend procIAGssymp depend proposal +depend prtec depend ptptex -depend psu-thesis depend resphilosophica depend resumecls depend revtex depend revtex4 +depend rutitlepage +depend ryersonsgsthesis depend ryethesis depend sageep depend sapthesis -depend scrjrnl depend schule +depend scrjrnl +depend scientific-thesis-cover depend sduthesis depend seuthesis +depend seuthesix depend soton depend sphdthesis depend spie depend sr-vorl +depend srdp-mathematik depend stellenbosch depend suftesi depend sugconf depend tabriz-thesis +depend technion-thesis-template depend texilikechaps depend texilikecover depend thesis-ekf +depend thesis-gwu +depend thesis-qom depend thesis-titlepage-fhac +depend thucoursework depend thuthesis +depend timbreicmc +depend tlc-article +depend topletter depend toptesi depend tudscr depend tugboat @@ -36116,19 +60319,25 @@ depend tugboat-plain depend turabian depend tui depend uaclasses -depend uadocs depend uafthesis +depend uantwerpendocs +depend ucalgmthesis depend ucbthesis depend ucdavisthesis +depend ucsmonograph depend ucthesis depend uestcthesis +depend uhhassignment depend uiucredborder depend uiucthesis depend ulthese +depend umbclegislation depend umthesis depend umich-thesis depend unamth-template depend unamthesis +depend unitn-bimrep +depend univie-ling depend unswcover depend uothesis depend urcls @@ -36136,124 +60345,82 @@ depend uowthesis depend uowthesistitlepage depend uspatent depend ut-thesis +depend utexasthesis depend uwthesis depend vancouver +depend xduthesis depend wsemclassic -depend xcookybooky depend yathesis depend york-thesis +containersize 1412 +containerchecksum a4a724bb427117253809e1e9115a304c95a8437e0c7d03b27df70ab0574914b5e0fc812d0949bf2bef46d685de880952a0b00b54c266425a86ad56fe7a974666 -name collection-science +name collection-texworks category Collection -revision 36989 -shortdesc Natural and computer sciences +revision 36934 +shortdesc TeXworks editor; TL includes only the Windows binary relocated 1 -depend collection-latex -depend SIstyle -depend SIunits -depend alg -depend algorithm2e -depend algorithmicx -depend algorithms -depend biocon -depend bohr -depend bpchem -depend bytefield -depend chemarrow -depend chemcompounds -depend chemcono -depend chemexec -depend chemformula -depend chemgreek -depend chemmacros -depend chemnum -depend chemschemex -depend chemstyle -depend clrscode -depend clrscode3e -depend complexity -depend computational-complexity -depend cryptocode -depend digiconfigs -depend drawstack -depend dyntree -depend eltex -depend endiagram -depend engtlc -depend fouridx -depend functan -depend galois -depend gastex -depend gene-logic -depend ghsystem -depend gu -depend hep -depend hepnames -depend hepparticles -depend hepthesis -depend hepunits -depend karnaugh -depend karnaughmap -depend matlab-prettifier -depend mhchem -depend miller -depend mychemistry -depend nuc -depend objectz -depend physics -depend pseudocode -depend pygmentex -depend sasnrdisplay -depend sciposter -depend sclang-prettifier -depend sfg -depend siunitx -depend steinmetz -depend struktex -depend substances -depend t-angles -depend textopo -depend ulqda -depend unitsdef -depend xymtex -depend youngtab +longdesc See http://tug.org/texworks. +depend collection-basic +depend texworks +containersize 340 +containerchecksum 76e9ad96aa649c70442533135cb3e198278a8df631f91f23b55bd2977eccacd81a2bafa6cf4f0fd1e83f86dd591a85eb8aaa93c5928b2cb9766683d089994199 + +name collection-wintools +category Collection +revision 30307 +shortdesc Windows-only support programs +relocated 1 +longdesc Utilities for Windows, since they are not readily available +longdesc there: chktex, unzip, wget, xpdf, and the dviout previewer. +depend wintools.win32 +depend dviout.win32 +containersize 388 +containerchecksum 648617c8a047b9833429a38e77f1b605b060fc3ab4a356ab8a19e0c1b3650bb56eef7e7b9e8727e95d1e48b0fcac40d8994303527afc7511c5d1a34adab8df30 name collection-xetex category Collection -revision 38257 +revision 49732 shortdesc XeTeX and packages relocated 1 longdesc Packages for XeTeX, the Unicode/OpenType-enabled TeX by longdesc Jonathan Kew, http://tug.org/xetex. depend collection-basic depend arabxetex +depend awesomebox depend bidi-atbegshi depend bidicontour depend bidipagegrid depend bidishadowtext depend bidipresentation +depend businesscard-qrcode +depend cqubeamer depend fixlatvian +depend font-change-xetex depend fontbook depend fontwrap depend interchar -depend mathspec +depend na-position depend philokalia -depend polyglossia depend ptext depend quran +depend quran-de depend realscripts +depend simple-resume-cv +depend simple-thesis-dissertation +depend tetragonos depend ucharclasses +depend unicode-bidi depend unisugar depend xebaposter +depend xechangebar depend xecjk depend xecolor depend xecyr depend xeindex -depend xepersian depend xesearch depend xespotcolor depend xetex -depend xetex-def depend xetex-itrans depend xetex-pstricks depend xetex-tibetan @@ -36261,35 +60428,80 @@ depend xetexconfig depend xetexfontinfo depend xetexko depend xevlna -depend xltxtra -depend xunicode +containersize 640 +containerchecksum 1dbbe2fba18718b2f7488bd078ce0ad2f46e66308a383ffe2a17e28f660ce56762da83df52e884867bdcce128267a2d608768a0df2fd9b29eeacf43285c78a6e name collref category Package -revision 35084 -shortdesc Collect blocks of references into a single reference. +revision 46358 +shortdesc Collect blocks of references into a single reference relocated 1 longdesc The package automatically collects multiple \bibitem longdesc references, which always appear in the same sequence in \cite, longdesc into a single \bibitem block. -runfiles size=1 - RELOC/tex/latex/collref/collref.sty -docfiles size=75 - RELOC/doc/latex/collref/README - RELOC/doc/latex/collref/collref.pdf +containersize 1696 +containerchecksum 56c2fda36523ae348bea381d90493238c7cbf5ab59f074437c7b694b441f913e6b58795ca81d2c549fbba01505a8895e9e139a9d143050761bceced2717fdb97 +doccontainersize 272712 +doccontainerchecksum 2d75180ab389632ec320795d6e6b989d902b82d1cfc97ea3c5113647e605c1eead0d0f5a6733cb692b624f4caa7120959c0b15018e35be4d4894183ad3e4c37d +docfiles size=71 + RELOC/doc/latex/collref/README.txt details="Readme" + RELOC/doc/latex/collref/collref.pdf details="Package documentation" RELOC/doc/latex/collref/collsamp.tex +srccontainersize 7172 +srccontainerchecksum 5a89f6703ab1818375ff33840b1295aee99e6a36338790014b7ac4b54bd49850adcf73ca793c57fb8159be87417741dcdd6ad3934af8bfde74595367f5e3a9fd srcfiles size=7 RELOC/source/latex/collref/collref.dtx RELOC/source/latex/collref/collref.ins +runfiles size=1 + RELOC/tex/latex/collref/collref.sty +catalogue-also mcite catalogue-ctan /macros/latex/contrib/collref -catalogue-date 2014-09-01 06:18:30 +0200 +catalogue-date 2018-01-17 14:22:05 +0100 catalogue-license lppl1.3 -catalogue-version 2.0b +catalogue-topics cite-supp +catalogue-version 2.0c + +name colophon +category Package +revision 47913 +shortdesc Provides commands for producing a colophon +relocated 1 +longdesc Colophons are a once-common design device by which a book (or +longdesc document) designer gave some information to his readers about +longdesc the design and makeup of the text. It typically includes the +longdesc publisher (if not included elsewhere in the document), font +longdesc size, leading size, measure, and of course font face +longdesc identification. Sometimes it includes information about the +longdesc tools used, as well. This package provides some highly +longdesc configurable macros, with sensible defaults, for producing +longdesc colophons without having to muck around with a lot of manual +longdesc code. +containersize 2028 +containerchecksum e85dfdef7eefa2fedd6af7c0b6eb71200485b5190268de3a89cbec8dd15f8e66b3260430660f6cb860e2712d3e20e5a8d0b874592a71b116dc07de6e28161474 +doccontainersize 377660 +doccontainerchecksum aba1badf34551d8340f733bb9e365a99c56c473f96ed69deadda917232ea8313df800579cb347e074ff0836553bdeb49f60330883581fb3cc7a3eeedc736d1ba +docfiles size=98 + RELOC/doc/latex/colophon/CHANGES + RELOC/doc/latex/colophon/README details="Readme" + RELOC/doc/latex/colophon/colophon.pdf details="Package documentation" + RELOC/doc/latex/colophon/lppl.txt +srccontainersize 7080 +srccontainerchecksum 8764595f95806d0aa8cd956bdfbec118f16376c936ae457d3d28c072eb8e2d6f0e7028fdb91ab301dfb587a721cc40fae13f56f5245b418413187f8776624855 +srcfiles size=6 + RELOC/source/latex/colophon/colophon.dtx + RELOC/source/latex/colophon/colophon.ins +runfiles size=2 + RELOC/tex/latex/colophon/colophon.sty +catalogue-ctan /macros/latex/contrib/colophon +catalogue-date 2018-06-03 15:59:08 +0200 +catalogue-license lppl1.3 +catalogue-topics typeset-tool +catalogue-version 1.1 name colordoc category Package revision 18270 -shortdesc Coloured syntax highlights in documentation. +shortdesc Coloured syntax highlights in documentation relocated 1 longdesc The package is used in documentation files (that use the doc longdesc package); with it the code listings will highlight (for @@ -36299,69 +60511,143 @@ longdesc of new commands. All this makes code a little more readable, longdesc and helps during process of writing. Three options are longdesc provided, including a non-color option designed for printing longdesc (which numbers delimiters and underlines new commands). -runfiles size=2 - RELOC/tex/latex/colordoc/colordoc.sty +containersize 2228 +containerchecksum a4d87deccae89f844a6251887e4d20817837fff4eef9cbd2874bef8890d41e0ab930a3ee55fae9ee46685c6b3b2b3324b54ce8507f1cb10eef332b7a480b94a8 +doccontainersize 173692 +doccontainerchecksum a2e5c6699a615651dd31a570ba6524cc7cb3d2f3c8d4b1fe49092dd4c01b40714c1c534f3554fca20fad7c17fdfb7104b699a10677519f57538e239820b6f1e7 docfiles size=50 - RELOC/doc/latex/colordoc/README - RELOC/doc/latex/colordoc/colordoc.pdf + RELOC/doc/latex/colordoc/README details="Readme" + RELOC/doc/latex/colordoc/colordoc.pdf details="Package documentation" +srccontainersize 11304 +srccontainerchecksum 2c42638129705d6e08375298684ff96c867a4deeb1d836ea12f8d6b0ad9f61f6840159ed04b92f2cac4c8d126da3a8e657589635ebd3388b9d457994bbc53a36 srcfiles size=11 RELOC/source/latex/colordoc/colordoc.dtx RELOC/source/latex/colordoc/colordoc.ins +runfiles size=2 + RELOC/tex/latex/colordoc/colordoc.sty catalogue-ctan /macros/latex/contrib/colordoc -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1 +catalogue-topics doc-supp name colorinfo category Package revision 15878 -shortdesc Retrieve colour model and values for defined colours. +shortdesc Retrieve colour model and values for defined colours relocated 1 -runfiles size=2 - RELOC/tex/latex/colorinfo/colorinfo.sty +containersize 2020 +containerchecksum 63bfe1dcdfd85dd1d7d3c7c8d3d345f221bc90bd34bd75888c361d4de97633b9c14d96930b41adf63370403c858f754e740c53d8100b9eb3c5557dd66e6876b3 +doccontainersize 784 +doccontainerchecksum d871a76648cd57af0bd6bd800ee8673ff07b2572ea514a3806731713d9ec4ab368fba2cf540ba71005300d4e02beb180f8eba82c0b060bcaa7a60e54ae601df1 docfiles size=2 - RELOC/doc/latex/colorinfo/README + RELOC/doc/latex/colorinfo/README details="Readme" RELOC/doc/latex/colorinfo/colorinfo-test.tex +runfiles size=2 + RELOC/tex/latex/colorinfo/colorinfo.sty catalogue-ctan /macros/latex/contrib/colorinfo -catalogue-date 2011-09-27 11:06:33 +0200 +catalogue-date 2016-06-18 16:48:54 +0200 catalogue-license lppl +catalogue-topics colour catalogue-version 0.3c +name coloring +category Package +revision 41042 +shortdesc Define missing colors by their names +relocated 1 +longdesc This package makes it possible to define colors automatically +longdesc by their names. This can be useful in drawing TikZ pictures and +longdesc designing beamer themes. Using the package, you don't need to +longdesc write \definecolor before using a color. +containersize 1480 +containerchecksum 7c89a6c53212beaa06d54dc091021c5fd57cc30fccc917ea413d23b0790ec637b6b8e69a3bf1b44d0a9ed24fa1c0dd21608b174c0230a0a94a2e5aed221be033 +doccontainersize 25984 +doccontainerchecksum cfe600ff32f680f7b7d3916e5a2e767732a9ab9f1e6d06133afbadc87dc1b8ac420284c75c221ed5b5a81b76f6b01302c5595b69439566775adc18ab11185961 +docfiles size=9 + RELOC/doc/latex/coloring/README details="Readme" + RELOC/doc/latex/coloring/coloring-doc.pdf details="Package documentation" + RELOC/doc/latex/coloring/coloring-doc.tex +runfiles size=1 + RELOC/tex/latex/coloring/coloring.sty +catalogue-contact-repository https://github.com/zohooo/coloring +catalogue-ctan /macros/latex/contrib/coloring +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics colour +catalogue-version 0.2 + +name colorprofiles +category Package +revision 49086 +shortdesc Collection of free ICC profiles +relocated 1 +longdesc This package collects free ICC profiles that can be used by +longdesc color profile aware applications/tools like the pdfx package, +longdesc as well as TeX and LaTeX packages to access them. +containersize 87972 +containerchecksum 49be492e62fcd615b08bb6a32767cac54a9535ab859d2a27d1c84788d4e168df2a10133e5408ab1bd3a802ffa8465a61c4144cd9cbafc6fa98f995cb7af89381 +doccontainersize 27632 +doccontainerchecksum ab7cabd369cdde5c2e5108b4d75d71bfa5e6b44d7ecc2eda25509078f26bfbc8515dd10a6dd82adab979170e12552fbecffca1f5bd3a1105db21b31097ec5f12 +docfiles size=33 + RELOC/doc/generic/colorprofiles/FOGRA39L_coated.iccprofile.xml + RELOC/doc/generic/colorprofiles/README details="Readme" +runfiles size=33 + RELOC/tex/generic/colorprofiles/FOGRA39L_coated.icc + RELOC/tex/generic/colorprofiles/colorprofiles.sty + RELOC/tex/generic/colorprofiles/colorprofiles.tex + RELOC/tex/generic/colorprofiles/sRGB.icc +catalogue-ctan /support/colorprofiles +catalogue-date 2018-11-12 08:43:52 +0100 +catalogue-license other-free +catalogue-topics colour +catalogue-version 20181105 + name colorsep category Package revision 13293 -shortdesc Color separation. +shortdesc Color separation relocated 1 longdesc Support for colour separation when using dvips. +containersize 1884 +containerchecksum 3c6387a4c538235181dcaf7b6c3ac51d2893d35fa2c18d95d85810b778fecaed7ae2337d2b284ee3439f44d3570ee86884d42616539bf61a15526aa711da70e9 runfiles size=2 RELOC/dvips/colorsep/colorsep.pro -catalogue-ctan /graphics/colorsep/colorsep.pro -catalogue-date 2011-09-27 13:05:50 +0200 +catalogue-ctan /graphics/colorsep +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics colour name colorspace category Package -revision 37573 +revision 50585 shortdesc Provides PDF color spaces relocated 1 longdesc The package provides PDF color spaces. Currently, only spot longdesc colors and overprinting are supported. It requires xcolor, and -longdesc supports pdfTeX and luaTeX. -runfiles size=5 - RELOC/tex/latex/colorspace/colorspace.sty -docfiles size=29 - RELOC/doc/latex/colorspace/README - RELOC/doc/latex/colorspace/colorspace.pdf +longdesc supports pdfTeX and LuaTeX. +containersize 6904 +containerchecksum 677f462e9ec347467ab39f3c4e776b870861ed0a38447d61a50abfc3172936c99b468320ad40a5b43713df070434c0b280e2d9d13609e141603453fa7d6c37f8 +doccontainersize 116840 +doccontainerchecksum 702060f3a2805be7dc472bab428fad866e947d8f700f8357e897443909d555dee399ac857feb1e341875bbd4017e7e456c46c4282def6daabc092417859bc634 +docfiles size=35 + RELOC/doc/latex/colorspace/README.md details="Readme" + RELOC/doc/latex/colorspace/colorspace.pdf details="Package documentation" RELOC/doc/latex/colorspace/colorspace.tex + RELOC/doc/latex/colorspace/colorspaceshade.png +runfiles size=6 + RELOC/tex/latex/colorspace/colorspace.sty +catalogue-contact-home http://www.texnia.com/ +catalogue-contact-repository https://github.com/jbezos/colorspace catalogue-ctan /macros/latex/contrib/colorspace -catalogue-date 2015-06-12 07:44:45 +0200 -catalogue-license lppl1.3 -catalogue-topics colour-supp -catalogue-version 1.1.0 +catalogue-date 2019-03-25 17:50:16 +0100 +catalogue-license mit +catalogue-topics colour +catalogue-version 1.3 name colortab category Package revision 22155 -shortdesc Shade cells of tables and halign. +shortdesc Shade cells of tables and halign relocated 1 longdesc The package lets you shade or colour the cells in the alignment longdesc environments such as \halign and LaTeX's tabular and array @@ -36370,90 +60656,117 @@ longdesc with LaTeX (it assures compatibility with the longtable longdesc package, which is no longer true with colortab); another modern longdesc option is the table-colouring option of the xcolor. However, longdesc colortab remains an adequate solution for use with Plain TeX. -runfiles size=7 - RELOC/tex/generic/colortab/colortab.sty - RELOC/tex/generic/colortab/colortab.tex +containersize 7960 +containerchecksum 460225705cfa914efc689df2d3f0c0ef7f5883082195e3d8e29e124726589fb5e9b7fc4679541b685439de097b6b297b803cf08e104ec13b849dbb26cffeaa04 +doccontainersize 60256 +doccontainerchecksum 947e46ffe5c83c3803e40f0da9a1a926e830e2b24f1d486d158da24bceade870cb1fe580aded3838f895deb238d1615cc0e3f95a05e99800fb1bad87ddf0b134 docfiles size=22 RELOC/doc/generic/colortab/Changes RELOC/doc/generic/colortab/Makefile - RELOC/doc/generic/colortab/colortab-doc.pdf + RELOC/doc/generic/colortab/colortab-doc.pdf details="Package documentation" RELOC/doc/generic/colortab/colortab-doc.tex +runfiles size=7 + RELOC/tex/generic/colortab/colortab.sty + RELOC/tex/generic/colortab/colortab.tex catalogue-ctan /macros/generic/colortab -catalogue-date 2011-09-27 13:26:50 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics colour table catalogue-version 1.0 name colortbl category Package -revision 29803 -shortdesc Add colour to LaTeX tables. +revision 49404 +shortdesc Add colour to LaTeX tables relocated 1 longdesc The package allows rows and columns to be coloured, and even longdesc individual cells. -runfiles size=3 - RELOC/tex/latex/colortbl/colortbl.sty -docfiles size=143 - RELOC/doc/latex/colortbl/README - RELOC/doc/latex/colortbl/colortbl-DE.pdf +containersize 3268 +containerchecksum fcfad0e46aa26afb44ad18f0dce4301c41f2db3168a5f8914eb58b2e91a53eb3fc2533249bd330152e3632b8d5ffb591b70c37b3700f6597eb6cae29804168aa +doccontainersize 592264 +doccontainerchecksum e550a2e3d3d0265a8d49db856a52899eafec47db8534297bae6c85f50f9858dce8e9f989d99e7cbdff0ecc61442827e79cadb4b8dc005f6cf60c9574996a661b +docfiles size=152 + RELOC/doc/latex/colortbl/README.txt + RELOC/doc/latex/colortbl/colortbl-DE.pdf details="Package manual" language="de" RELOC/doc/latex/colortbl/colortbl-DE.tex - RELOC/doc/latex/colortbl/colortbl.pdf + RELOC/doc/latex/colortbl/colortbl.pdf details="Package manual" language="en" +srccontainersize 11420 +srccontainerchecksum 2e5af0c9831e0aabea6079b67ea53df24953c05c1bd0ef2fc96190077a898840d530a061d585ba6a37d37686f9acc6192c1220793e373a52588009b1a134acb8 srcfiles size=12 RELOC/source/latex/colortbl/colortbl.dtx RELOC/source/latex/colortbl/colortbl.ins +runfiles size=3 + RELOC/tex/latex/colortbl/colortbl.sty +catalogue-also xcolor catalogue-ctan /macros/latex/contrib/colortbl -catalogue-date 2012-02-14 10:56:36 +0100 +catalogue-date 2018-12-12 22:35:53 +0100 catalogue-license lppl -catalogue-version v1.0a +catalogue-topics colour table +catalogue-version 1.0d name colorwav category Package revision 15878 -shortdesc Colours by wavelength of visible light. +shortdesc Colours by wavelength of visible light relocated 1 longdesc The package allows the user to obtain an RGB value (suitable longdesc for use in the color package) from a wavelength of light. The longdesc default unit is nanometres, but other units may be used. Note -longdesc that this function is also available within the xcolor. -runfiles size=2 - RELOC/tex/latex/colorwav/colorwav.sty +longdesc that this function is also available within xcolor. +containersize 1952 +containerchecksum 618f813c9e009a671069a151bc6d438a42b2c589b255685d91dbbbd162e6a106164d626cd772bdb3e6538a1b010ae178dd7e1519195b6b1fee10ce6e46253b6c +doccontainersize 98884 +doccontainerchecksum e042c10fcd4d2760383352ace13b2d3600682a01c900220913c79a950fb1597a59a82483429557aa7598e1cd1eea52b73dd23367139fb741ea48ee9c84c4c572 docfiles size=30 - RELOC/doc/latex/colorwav/README - RELOC/doc/latex/colorwav/colorwav.pdf + RELOC/doc/latex/colorwav/README details="Readme" + RELOC/doc/latex/colorwav/colorwav.pdf details="Package documentation" +srccontainersize 4204 +srccontainerchecksum 96ff1933d48bbe938de3635588d9a9c682ac387415d5a7c316e310ed0931e7fa0adf44185d8232d753a1532653b6bb5c0f6c402903bdab654333694f7c293215 srcfiles size=7 RELOC/source/latex/colorwav/colorwav.dtx RELOC/source/latex/colorwav/colorwav.ins +runfiles size=2 + RELOC/tex/latex/colorwav/colorwav.sty catalogue-ctan /macros/latex/contrib/colorwav -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-10-09 06:16:19 +0200 catalogue-license lgpl +catalogue-topics colour catalogue-version 1.0 name colorweb category Package revision 31490 -shortdesc Extend the color package colour space. +shortdesc Extend the color package colour space relocated 1 longdesc The package makes the 216 "web-safe colours" available to the longdesc standard color package. -runfiles size=5 - RELOC/tex/latex/colorweb/colorweb.sty +containersize 3064 +containerchecksum dd8e53aa707f1e73276cca9a9c5732b012ca7dcb0926d101c71aa5fe3829f07251a7f606accc95266f6c9aa4b867a38cc654ca97cc32857edc3d196b2c5a7fd4 +doccontainersize 1224824 +doccontainerchecksum b1ae7c14f2f07405b7a957831b60829046b058f6d1640051cbee877100c98a8f47d2c1d40f60599c42ff90eed246248b4f48dd8c1d31f9d45082f9ec5c341626 docfiles size=463 - RELOC/doc/latex/colorweb/README + RELOC/doc/latex/colorweb/README details="Readme" RELOC/doc/latex/colorweb/colorweb.pdf - RELOC/doc/latex/colorweb/colorwebfull.pdf - RELOC/doc/latex/colorweb/colorwebuser.pdf + RELOC/doc/latex/colorweb/colorwebfull.pdf details="Full package documentation" + RELOC/doc/latex/colorweb/colorwebuser.pdf details="Documentation for users" RELOC/doc/latex/colorweb/descript.ion +srccontainersize 11920 +srccontainerchecksum 4016805ddde5974257fc9f20a0f4a8e40b12d059ba74ed6425f206c4b10127596d579dd8c057e85289e32dc1652b2258f6d2590ec6d4cb10c72aa4a874158275 srcfiles size=21 RELOC/source/latex/colorweb/colorweb.dtx RELOC/source/latex/colorweb/colorweb.ins +runfiles size=5 + RELOC/tex/latex/colorweb/colorweb.sty catalogue-ctan /macros/latex/contrib/colorweb -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics colour catalogue-version 1.3 name colourchange category Package revision 21741 -shortdesc colourchange +shortdesc Colourchange relocated 1 longdesc The package allows you to change the colour of the structural longdesc elements (inner theme and outer theme) of your beamer @@ -36461,41 +60774,86 @@ longdesc presentation during the presentation. There is a manual option longdesc but there is also the option to have your structure colour longdesc change from one colour to another as a function of how far longdesc through the presentation you are. -runfiles size=2 - RELOC/tex/latex/colourchange/colourchange.sty +containersize 2060 +containerchecksum dba4ef8d97324c3da71de1c6a37e268618bab0a876e1da37226ec9fb187087d39f32507e97f4ab4fa801fd4bbb98c51a322c6f2493b719133154b24223bfba46 +doccontainersize 234136 +doccontainerchecksum 628bc515058108ba97312c15ee5af00e086ea3dc124b4e7b038b176d4175e2146afc6f571593c006d749634896fa286d16c923c17d4dc9e55e81ac3a8aa95442 docfiles size=59 - RELOC/doc/latex/colourchange/README - RELOC/doc/latex/colourchange/colourchangedoc.pdf + RELOC/doc/latex/colourchange/README details="Readme" + RELOC/doc/latex/colourchange/colourchangedoc.pdf details="Package documentation" RELOC/doc/latex/colourchange/colourchangedoc.tex +runfiles size=2 + RELOC/tex/latex/colourchange/colourchange.sty catalogue-ctan /macros/latex/contrib/colourchange -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-01-07 11:56:15 +0100 catalogue-license gpl3 +catalogue-topics presentation colour catalogue-version 1.22 name combelow category Package revision 18462 -shortdesc Typeset "comma-below" letters, as in Romanian. +shortdesc Typeset "comma-below" letters, as in Romanian relocated 1 longdesc The package defines a command \cb that positions a comma below longdesc a letter, as required (for example) in Romanian typesetting. longdesc The command is robust, but interferes with hyphenation. -runfiles size=1 - RELOC/tex/latex/combelow/combelow.sty +containersize 1040 +containerchecksum 17f1beb58a11f3c754c57331d1b2d9338fee359b6c27cdc0a855671397e78c0b2d29ba60247f3104d3eece22619671f56d2aac862ac404502faaea08f40d7be4 +doccontainersize 96092 +doccontainerchecksum 82d8e60a5cd8d46b952aa27dff03398cb6e65a1c5a76c1eb260d3e30172af89206a7a8ec7ab3871d5e33e87ccc2c99e2f54740facfd71d43ea6f88821c9ceb2a docfiles size=30 - RELOC/doc/latex/combelow/README + RELOC/doc/latex/combelow/README details="Readme" RELOC/doc/latex/combelow/combelow.bib - RELOC/doc/latex/combelow/combelow.pdf + RELOC/doc/latex/combelow/combelow.pdf details="Package documentation" RELOC/doc/latex/combelow/combelow.tex +runfiles size=1 + RELOC/tex/latex/combelow/combelow.sty catalogue-ctan /macros/latex/contrib/combelow -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics fake-glyph catalogue-version 0.99f +name combine +category Package +revision 19361 +shortdesc Bundle individual documents into a single document +relocated 1 +longdesc The combine class lets you bundle individual documents into a +longdesc single document, such as when preparing a conference +longdesc proceedings. The auxiliary combinet package puts the titles and +longdesc authors from \maketitle commands into the main document's Table +longdesc of Contents. The package cooperates with the abstract and +longdesc titling packages. +containersize 10568 +containerchecksum 9e57b01fa0a14556473764144dc3b5e4e3d40a7f913932b02826a68efdd952adc69e990ba75f6b5057d69850d3e693e1c5b5c40d2c3443aab2741ce9646d522e +doccontainersize 463152 +doccontainerchecksum 4e09fd0a9b587d61da2c6a15579675b9a839c83f0b38b0f958b2f4aa2c0a49adf93730ebafa235043cf645d6b8689cbcc5916e4bba92b5e30ac87a8282402859 +docfiles size=116 + RELOC/doc/latex/combine/README details="Package Readme" + RELOC/doc/latex/combine/combine.pdf details="Package documentation" +srccontainersize 31336 +srccontainerchecksum 25df0ae6e799710f575de4aab975f774f53abb28e627547cf61fe68a4de18cd1f9fa3a8cfd242ecede15e6363734844a8ca37b49da7bb4efda6bc90f4f1da168 +srcfiles size=37 + RELOC/source/latex/combine/combine.dtx + RELOC/source/latex/combine/combine.ins +runfiles size=16 + RELOC/tex/latex/combine/combcite.sty + RELOC/tex/latex/combine/combine.cls + RELOC/tex/latex/combine/combinet.sty + RELOC/tex/latex/combine/combnat.sty +catalogue-also docmute includex newclude standalone +catalogue-ctan /macros/latex/contrib/combine +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics subdocs +catalogue-version 0.7a + name combinedgraphics category Package revision 27198 -shortdesc Include graphic (EPS or PDF)/LaTeX combinations. +shortdesc Include graphic (EPS or PDF)/LaTeX combinations relocated 1 longdesc This package provides a macro (\includecombinedgraphics) for longdesc the inclusion of combined EPS/LaTeX and PDF/LaTeX graphics (an @@ -36509,13 +60867,15 @@ longdesc LaTeX part does not do it (e.g., for files exported from longdesc Gnuplot before version 4.2); and rescaling and rotating of longdesc complete graphics (similar to \includegraphics from the longdesc graphicx package). -runfiles size=4 - RELOC/tex/latex/combinedgraphics/combinedgraphics.sty +containersize 3532 +containerchecksum 22d36d3a44fbbe5f11522f28e716be862d354998750492d014d86037a24407a748248571e50dc99a6fe5518d8ecbf61ca657407194a43b75510b613438fa4b65 +doccontainersize 429112 +doccontainerchecksum 4802871f57bbc131c850f89eef43778ed25a9abb0a850dac0e91e762b7a321567348f147ae02847cad4c226f9acf2bce921f9745832d1dc298d751b8123741b4 docfiles size=138 RELOC/doc/latex/combinedgraphics/COPYING RELOC/doc/latex/combinedgraphics/Makefile - RELOC/doc/latex/combinedgraphics/README - RELOC/doc/latex/combinedgraphics/combinedgraphics.pdf + RELOC/doc/latex/combinedgraphics/README details="Readme" + RELOC/doc/latex/combinedgraphics/combinedgraphics.pdf details="Package documentation" RELOC/doc/latex/combinedgraphics/test/Makefile RELOC/doc/latex/combinedgraphics/test/combinedgraphics_test.pdf RELOC/doc/latex/combinedgraphics/test/combinedgraphics_test.tex @@ -36527,45 +60887,54 @@ docfiles size=138 RELOC/doc/latex/combinedgraphics/test/xfig325.fig RELOC/doc/latex/combinedgraphics/test/xfig325.pdf RELOC/doc/latex/combinedgraphics/test/xfig325.tex +srccontainersize 9428 +srccontainerchecksum 248524984e09cfe3a2a6bafdb0011d3470035243807635dff3ee6e6bd5c7d2ecb0483e7ce069a76f1589dc5bc2da4aab2ef94ce9ef587915a03d285bd95965ad srcfiles size=10 RELOC/source/latex/combinedgraphics/combinedgraphics.dtx RELOC/source/latex/combinedgraphics/combinedgraphics.ins +runfiles size=4 + RELOC/tex/latex/combinedgraphics/combinedgraphics.sty catalogue-ctan /macros/latex/contrib/combinedgraphics -catalogue-date 2014-10-17 01:17:00 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics graphics-supp catalogue-version 0.2.2 -name combine -category Package -revision 19361 -shortdesc Bundle individual documents into a single document. -relocated 1 -longdesc The combine class lets you bundle individual documents into a -longdesc single document, such as when preparing a conference -longdesc proceedings. The auxiliary combinet package puts the titles and -longdesc authors from \maketitle commands into the main document's Table -longdesc of Contents. The package cooperates with the abstract and -longdesc titling packages. -runfiles size=16 - RELOC/tex/latex/combine/combcite.sty - RELOC/tex/latex/combine/combine.cls - RELOC/tex/latex/combine/combinet.sty - RELOC/tex/latex/combine/combnat.sty -docfiles size=116 - RELOC/doc/latex/combine/README - RELOC/doc/latex/combine/combine.pdf -srcfiles size=37 - RELOC/source/latex/combine/combine.dtx - RELOC/source/latex/combine/combine.ins -catalogue-ctan /macros/latex/contrib/combine -catalogue-date 2012-01-27 23:18:23 +0100 -catalogue-license lppl1.3 -catalogue-version 0.7a +name combofont +category Package +revision 44746 +shortdesc Add NFSS-declarations of combo fonts to LuaLaTeX documents +relocated 1 +longdesc This highly experimental package can be used to add +longdesc NFSS-declarations of combo fonts to LuaLaTeX documents. This +longdesc package may disappear without notice, e.g. if luaotfload +longdesc changes in a way so that it no longer works, or if LuaTeX +longdesc changes, or if fontspec itself includes the code. It is also +longdesc possible that the package's syntax and commands may change in +longdesc an incompatible way. So if you use it in a production +longdesc environment: You have been warned. +containersize 1660 +containerchecksum f871c8ab017335213eff69f8b5afbaad42cc91f1c56628bb3f05de5d5d8f4d970360e8b0ac75165a9add7cb297d15c175f919f87c1d58f832f4399cfc65de7dc +doccontainersize 92336 +doccontainerchecksum 22ef10619b76b60b5a663582fed6cff1d8080017361fba18a222001e2be425d6c14ab0f6d0b734c1ba8c3806db6443cbaa6c21847555831ce3169bd8c0fb2ad5 +docfiles size=29 + RELOC/doc/lualatex/combofont/README.md details="Readme" + RELOC/doc/lualatex/combofont/combofont-test-fira-math.pdf + RELOC/doc/lualatex/combofont/combofont-test-fira-math.tex + RELOC/doc/lualatex/combofont/combofont.pdf details="Package documentation" + RELOC/doc/lualatex/combofont/combofont.tex +runfiles size=1 + RELOC/tex/lualatex/combofont/combofont.sty +catalogue-ctan /macros/luatex/latex/combofont +catalogue-date 2017-07-03 18:05:12 +0200 +catalogue-license lppl1.3c +catalogue-topics luatex font-mgmt +catalogue-version 0.2 name comfortaa category Package revision 27536 -shortdesc Sans serif font, with LaTeX support. +shortdesc Sans serif font, with LaTeX support relocated 1 longdesc Comfortaa is a sans-serif font, comfortable in every aspect, longdesc designed by Johan Aakerlund. The font, which includes three @@ -36575,6 +60944,34 @@ longdesc License version 1.1. This package provides support for this longdesc font in LaTeX, and includes both the TrueType fonts, and longdesc conversions to Adobe Type 1 format. execute addMap comfortaa.map +containersize 516928 +containerchecksum 0645309425f897b2ac8f7c9bcb6ad9c0ee01eb01817cf8ac24e6f7de81c86ceaf63a05048030f78e21cde4e610f494f22373675417f012be246c17c9e59095c5 +doccontainersize 314632 +doccontainerchecksum d34cbce7667b4a0b5ebab47d422aec3289d6d47d805476226050bca3b9ff9d4b3fbeac37af9f53289d430cc666fa479857792c5349eaa6b9f1acf3fd16689785 +docfiles size=103 + RELOC/doc/fonts/comfortaa/CHANGES + RELOC/doc/fonts/comfortaa/README details="Readme" + RELOC/doc/fonts/comfortaa/comfortaa-samples.pdf details="Font samples" + RELOC/doc/fonts/comfortaa/comfortaa-samples.tex + RELOC/doc/fonts/comfortaa/comfortaa.pdf details="Package documentation" + RELOC/doc/fonts/comfortaa/comfortaa.tex + RELOC/doc/fonts/comfortaa/manifest.txt +srccontainersize 6960 +srccontainerchecksum fb74ae658d5e3d9682a39e1102b611f2c430f8f77f0bafacda31ba5c64b93e90eedb69fff8a307bbf097a8cd79c537bd48f05f2dcf14c7cfbcb9b0cc6a62bf89 +srcfiles size=25 + RELOC/source/fonts/comfortaa/Makefile + RELOC/source/fonts/comfortaa/comfortaa-01.etx + RELOC/source/fonts/comfortaa/comfortaa-02.etx + RELOC/source/fonts/comfortaa/comfortaa-03.etx + RELOC/source/fonts/comfortaa/comfortaa-diacritics.mtx + RELOC/source/fonts/comfortaa/comfortaa-dotlessj.etx + RELOC/source/fonts/comfortaa/comfortaa-drv.tex + RELOC/source/fonts/comfortaa/comfortaa-fixcyrillic.mtx + RELOC/source/fonts/comfortaa/comfortaa-fixgreek.mtx + RELOC/source/fonts/comfortaa/comfortaa-fixlatin.mtx + RELOC/source/fonts/comfortaa/comfortaa-fixtextcomp.mtx + RELOC/source/fonts/comfortaa/comfortaa-map.tex + RELOC/source/fonts/comfortaa/ttf2type1.pe runfiles size=696 RELOC/fonts/afm/public/comfortaa/Comfortaa-Bold-LCDFJ.afm RELOC/fonts/afm/public/comfortaa/Comfortaa-Bold.afm @@ -36809,36 +61206,15 @@ runfiles size=696 RELOC/tex/latex/comfortaa/t2cfco.fd RELOC/tex/latex/comfortaa/ts1fco.fd RELOC/tex/latex/comfortaa/x2fco.fd -docfiles size=103 - RELOC/doc/fonts/comfortaa/CHANGES - RELOC/doc/fonts/comfortaa/README - RELOC/doc/fonts/comfortaa/comfortaa-samples.pdf - RELOC/doc/fonts/comfortaa/comfortaa-samples.tex - RELOC/doc/fonts/comfortaa/comfortaa.pdf - RELOC/doc/fonts/comfortaa/comfortaa.tex - RELOC/doc/fonts/comfortaa/manifest.txt -srcfiles size=25 - RELOC/source/fonts/comfortaa/Makefile - RELOC/source/fonts/comfortaa/comfortaa-01.etx - RELOC/source/fonts/comfortaa/comfortaa-02.etx - RELOC/source/fonts/comfortaa/comfortaa-03.etx - RELOC/source/fonts/comfortaa/comfortaa-diacritics.mtx - RELOC/source/fonts/comfortaa/comfortaa-dotlessj.etx - RELOC/source/fonts/comfortaa/comfortaa-drv.tex - RELOC/source/fonts/comfortaa/comfortaa-fixcyrillic.mtx - RELOC/source/fonts/comfortaa/comfortaa-fixgreek.mtx - RELOC/source/fonts/comfortaa/comfortaa-fixlatin.mtx - RELOC/source/fonts/comfortaa/comfortaa-fixtextcomp.mtx - RELOC/source/fonts/comfortaa/comfortaa-map.tex - RELOC/source/fonts/comfortaa/ttf2type1.pe catalogue-ctan /fonts/comfortaa -catalogue-date 2014-04-24 00:33:23 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics font font-sans font-supp catalogue-version 2.3 name comicneue category Package -revision 37744 +revision 42851 shortdesc Use Comic Neue with TeX(-alike) systems relocated 1 longdesc Comic Neue is a well-known redesign of the (in)famous Comic @@ -36848,6 +61224,18 @@ longdesc pdfTeX users. Issues with this package can be reported on longdesc GitHub or emailed to tex@slxh.nl. execute addMap ComicNeue.map execute addMap ComicNeueAngular.map +containersize 758452 +containerchecksum c72d19a0f5219d96da92916ec13fe333703c911b4222b60f825aa5ea2d412df261fbae2227c56844e70fcc057ed8367a4c42f17799c4b8418b02c3171b8d4864 +doccontainersize 83920 +doccontainerchecksum e3d1630dbecc93365e18b496565a5430e0867f3d3a82c0bedcfec8a02168bddf71d9e65b996e4682294c086d1049cf88182a36c5619d8fe6762aa1050fd923a4 +docfiles size=40 + RELOC/doc/latex/comicneue/SIL-License.txt + RELOC/doc/latex/comicneue/comicneue-otf-specimen.pdf + RELOC/doc/latex/comicneue/comicneue-otf-specimen.tex + RELOC/doc/latex/comicneue/comicneue-type1-specimen.pdf + RELOC/doc/latex/comicneue/comicneue-type1-specimen.tex + RELOC/doc/latex/comicneue/comicneue.pdf details="Package documentation" + RELOC/doc/latex/comicneue/comicneue.tex runfiles size=453 RELOC/fonts/enc/dvips/comicneue/a_bs6yxn.enc RELOC/fonts/enc/dvips/comicneue/a_lfux4u.enc @@ -37080,24 +61468,40 @@ runfiles size=453 RELOC/tex/latex/comicneue/TS1ComicNeue-TLF.fd RELOC/tex/latex/comicneue/TS1ComicNeueAngular-TLF.fd RELOC/tex/latex/comicneue/comicneue.sty -docfiles size=40 - RELOC/doc/latex/comicneue/SIL-License.txt - RELOC/doc/latex/comicneue/comicneue-otf-specimen.pdf - RELOC/doc/latex/comicneue/comicneue-otf-specimen.tex - RELOC/doc/latex/comicneue/comicneue-type1-specimen.pdf - RELOC/doc/latex/comicneue/comicneue-type1-specimen.tex - RELOC/doc/latex/comicneue/comicneue.pdf - RELOC/doc/latex/comicneue/comicneue.tex +catalogue-contact-repository https://github.com/silkeh/latex-comicneue/issues catalogue-ctan /fonts/comicneue -catalogue-date 2015-07-03 19:37:11 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license ofl catalogue-topics font font-otf font-supp font-type1 -catalogue-version 1.0 +catalogue-version 1.1 + +name comma +category Package +revision 18259 +shortdesc Formats a number by inserting commas +relocated 1 +longdesc A flexible package that allows commas (or anything else) to be +longdesc inserted every three digits in a number, as in 1,234. +containersize 1696 +containerchecksum 65c21bca8e6a707697847ff96d1cd909cbe0c7d33140b4b175a2e3464c1c67827cea9c9f65e45dfcd31fcf2fd94262daa907358341fddf351241753ab47ac99c +doccontainersize 153428 +doccontainerchecksum b25433b52a32cee71043c1f13d2ca45beff32733ac24259f767b6093f5b5f38e0da3c88569bcd637267397c49d26e546c26454381cf916040c52a2833b02df65 +docfiles size=41 + RELOC/doc/latex/comma/README details="Readme" + RELOC/doc/latex/comma/comma.pdf details="Package documentation" + RELOC/doc/latex/comma/comma.tex +runfiles size=1 + RELOC/tex/latex/comma/comma.sty +catalogue-ctan /macros/latex/contrib/comma +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics numbers +catalogue-version 1.2 name commado category Package -revision 28419 -shortdesc Expandable iteration on comma-separated and filename lists. +revision 38875 +shortdesc Expandable iteration on comma-separated and filename lists relocated 1 longdesc The bundle provides two packages: commado and filesdo. The longdesc package commado provides the command \DoWithCSL: @@ -37106,68 +61510,102 @@ longdesc macro to each item in a list in which terms are longdesc separated by commas. The package filesdo provides the command longdesc \DoWithBasesExts: \DoWithBasesExts{}{}{} longdesc which runs the single parameter command on each file -longdesc whose base and extension are respectively from the comma- -longdesc separated lists and . These 'loop'-like commands -longdesc are (themselves) entirely expandable. The packages rely on -longdesc packages plainpkg, and stacklet +longdesc whose base and extension are respectively from the +longdesc comma-separated lists and . These 'loop'-like +longdesc commands are (themselves) entirely expandable. The packages +longdesc rely on packages plainpkg, and stacklet +containersize 2816 +containerchecksum c5e48910b5e685c792b9dfe191cd8666472e24e7ef6d6c2fdb3bfb05b2f39f4d4ca68cc7b859d07f50e5d596250e36e1664e1ca48666b0e3126eb8c91d27c384 +doccontainersize 596344 +doccontainerchecksum 457d03b34ba53988ff287060d18f993f8e01ca99991505c5373abc05cfdde4cfcdda8fbb6dc3737e91c66ef0b30c083c31e64e326c08d4959ff8ed1a66cd4d33 +docfiles size=148 + RELOC/doc/generic/commado/README details="Readme" + RELOC/doc/generic/commado/SrcFILEs.txt + RELOC/doc/generic/commado/commado.pdf details="Package documentation" +srccontainersize 4420 +srccontainerchecksum e0f280bd901ae306f17ef58686345ca38546fd635dde274456af67f41fc05523a91c1f0c0a2b7f433c992193a6442f870031459071a5d7fd6c12f68728f24809 +srcfiles size=4 + RELOC/source/generic/commado/commado.tex + RELOC/source/generic/commado/srcfiles.tex runfiles size=3 RELOC/tex/generic/commado/commado.RLS RELOC/tex/generic/commado/commado.sty RELOC/tex/generic/commado/filesdo.sty -docfiles size=143 - RELOC/doc/generic/commado/README - RELOC/doc/generic/commado/SrcFILEs.txt - RELOC/doc/generic/commado/commado.pdf -srcfiles size=3 - RELOC/source/generic/commado/commado.tex - RELOC/source/generic/commado/srcfiles.tex +catalogue-also loops +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html catalogue-ctan /macros/generic/commado -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-05-05 20:31:25 +0200 catalogue-license lppl1.3 -catalogue-version 0.11 +catalogue-topics macro-supp +catalogue-version r0.11a name commath category Package revision 15878 -shortdesc Mathematics typesetting support. +shortdesc Mathematics typesetting support relocated 1 longdesc Provides a range of differential, partial differential and longdesc delimiter commands, together with a \fullfunction (function, longdesc with both domain and range, and function operation) and various longdesc reference commands. -runfiles size=3 - RELOC/tex/latex/commath/commath.sty +containersize 2460 +containerchecksum 68c25e035e211107c65eece91bf84d65f2328ebaa3dc81d70186707c081f865abcb1be383cecec7d780bbebf3f565647406d6bcfc2c6bb3e846058d50882a6b0 +doccontainersize 101092 +doccontainerchecksum 5d1d162cf8fd6692788bd15e2d3c2021fa6ed96f289f2c17e9d7e9d2afb428030f0d016f4b4aac62aebec1c8988aa1a978f71bdc7f4873e181f1b2ec7e0f6d0d docfiles size=37 - RELOC/doc/latex/commath/README - RELOC/doc/latex/commath/commath.pdf + RELOC/doc/latex/commath/README details="Readme" + RELOC/doc/latex/commath/commath.pdf details="Package documentation" RELOC/doc/latex/commath/commath.tex +runfiles size=3 + RELOC/tex/latex/commath/commath.sty catalogue-ctan /macros/latex/contrib/commath -catalogue-date 2012-04-10 17:44:48 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics maths catalogue-version 0.3 -name comma -category Package -revision 18259 -shortdesc Formats a number by inserting commas. -relocated 1 -longdesc A flexible package that allows commas (or anything else) to be -longdesc inserted every three digits in a number, as in 1,234. -runfiles size=1 - RELOC/tex/latex/comma/comma.sty -docfiles size=41 - RELOC/doc/latex/comma/README - RELOC/doc/latex/comma/comma.pdf - RELOC/doc/latex/comma/comma.tex -catalogue-ctan /macros/latex/contrib/comma -catalogue-date 2012-06-13 16:38:36 +0200 -catalogue-license lppl -catalogue-version 1.2 +name commedit +category Package +revision 50116 +shortdesc Commented editions with LaTeX +relocated 1 +longdesc The package is intended for commented editions. An example of +longdesc commented edition is a teacher's book based on a student's +longdesc textbook. Each page of a teacher's book is a page from the +longdesc textbook and comments for the teacher. This package was +longdesc commissioned by Instituto de Matematica Pura e Aplicada ( IMPA) +containersize 3436 +containerchecksum 7a2248fc7c3de4755a68dfb769c0862332f41945a5efdac8f0b9911c3479bc45cf72ef0176d8d2ed2abe127aaf388c17c90d1f58cfea4aec8bd9e488f2d96c5f +doccontainersize 600556 +doccontainerchecksum b8c6fbb8c67aeb878fef32bb6e61dacdb3ebf9bb7ac92bcdb685bccfac8129ee3145d40ae579ff77b097fc81ebe0438ee5c50c6bc3df156910a287b368728c6e +docfiles size=173 + RELOC/doc/latex/commedit/README details="Readme" + RELOC/doc/latex/commedit/commedit.pdf details="Package documentation" + RELOC/doc/latex/commedit/commented.pdf + RELOC/doc/latex/commedit/sample.pdf + RELOC/doc/latex/commedit/sample.tex + RELOC/doc/latex/commedit/vitruvian.jpg +srccontainersize 8200 +srccontainerchecksum 19db6434ff564e454ca44fee29d22bb6a930b9f51f54265955565fffd8a7a4a1be89e3475c727a47c3723da99160f4d9ad9899321913d8739821c6491117c843 +srcfiles size=10 + RELOC/source/latex/commedit/Makefile + RELOC/source/latex/commedit/commedit.dtx + RELOC/source/latex/commedit/commedit.ins +runfiles size=4 + RELOC/tex/latex/commedit/commedit.sty +catalogue-contact-bugs https://github.com/borisveytsman/commedit/issues +catalogue-contact-home https://github.com/borisveytsman/commedit +catalogue-contact-repository https://github.com/borisveytsman/commedit +catalogue-ctan /macros/latex/contrib/commedit +catalogue-date 2019-02-26 05:14:40 +0100 +catalogue-license lppl1.3 +catalogue-topics editorial crit-ed +catalogue-version 1.02 name comment category Package -revision 32778 -shortdesc Selectively include/excludes portions of text. +revision 41927 +shortdesc Selectively include/exclude portions of text relocated 1 longdesc Selectively include/exclude pieces of text, allowing the user longdesc to define new, separately controlled, comment versions. All @@ -37182,35 +61620,83 @@ longdesc \excludecoment{versionb} These environments are used as longdesc \versiona ... \endversiona or \begin{versiona} ... longdesc \end{versiona} with the opening and closing commands again on a longdesc line of their own. +containersize 4124 +containerchecksum 36b5b4c4d4345a4fcf706f5040c02c2de52567fae76146a06b7f084d59b12d151e65faba1ee4aeeaebee018d81200c2902feb81ae575de35a68c00fa14ed6ba3 +doccontainersize 535056 +doccontainerchecksum d5a360c6a0c549fee1d46fa0e9c3f9aaaa4b19b30ac48046e736008ddb42393062824950684185175f8ab569cec221bc8f9a798a07623dbe26cc92a3fd6bc72b +docfiles size=145 + RELOC/doc/latex/comment/Makefile + RELOC/doc/latex/comment/README details="Readme" + RELOC/doc/latex/comment/comm_bug.tex + RELOC/doc/latex/comment/comm_test.pdf + RELOC/doc/latex/comment/comm_test.tex + RELOC/doc/latex/comment/comm_test_ivo.tex + RELOC/doc/latex/comment/comm_test_l.tex + RELOC/doc/latex/comment/comment.pdf details="Package documentation" + RELOC/doc/latex/comment/comment.tex + RELOC/doc/latex/comment/comment_plain.tex + RELOC/doc/latex/comment/t1test.pdf + RELOC/doc/latex/comment/t1test.tex + RELOC/doc/latex/comment/writeup.pdf + RELOC/doc/latex/comment/writeup.tex runfiles size=3 RELOC/tex/latex/comment/comment.sty -docfiles size=68 - RELOC/doc/latex/comment/README - RELOC/doc/latex/comment/comm_latest.tex - RELOC/doc/latex/comment/comment.pdf - RELOC/doc/latex/comment/comment.tex catalogue-ctan /macros/latex/contrib/comment -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license gpl -catalogue-version 3.7 +catalogue-date 2016-08-25 07:53:37 +0200 +catalogue-license gpl2 +catalogue-topics cond-comp editorial +catalogue-version 3.8 name compactbib category Package revision 15878 -shortdesc Multiple thebibliography environments. +shortdesc Multiple thebibliography environments relocated 1 longdesc Allows a second bibliography, optionally with a different longdesc title, after the main bibliography. +containersize 1860 +containerchecksum dbc3bb28178a656b400a2a72e48ec813d6e282ddba7c70bb4dd0b5ed7f76e9e0be1dffb0ecf43e4893210453ef420c1b1d859c287663cad6bfe8c7f46dc8d86b runfiles size=2 RELOC/tex/latex/compactbib/compactbib.sty -catalogue-ctan /macros/latex/contrib/compactbib/compactbib.sty -catalogue-date 2012-05-30 13:02:03 +0200 +catalogue-ctan /macros/latex/contrib/compactbib +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics bibtex-supp + +name competences +category Package +revision 47573 +shortdesc Track skills of classroom checks +relocated 1 +longdesc This package is an attempt to track skills assessed during a +longdesc classroom check. Each question can be associated with one or +longdesc more skills and be assigned a number of points to be earned. At +longdesc the end of the text, a table set summarizes the skills +longdesc assessed, and in what proportions. +containersize 2384 +containerchecksum e5b2b3a77418d5bc55e8fbbc68c39b1852ce6081b00bf6115573ac29cb7c2b8fd70392fda9b04edca5c3aa1617424541fef2da4d2f777c433b8ee168e850ad99 +doccontainersize 1304 +doccontainerchecksum 8a0078f2a3c32f03aef58a5d1ba4167ac4c738103d65cad9a5f4bae67aebcce3cb7a16d6aa27fa7b83955c95b28c1f70a0404f5633e3231c3b6d4232265e6c53 +docfiles size=2 + RELOC/doc/latex/competences/README.md details="Readme" + RELOC/doc/latex/competences/example.tex +srccontainersize 4048 +srccontainerchecksum 2fb4c80d75808aca093a664bb2ef152cb4ca6bbf1ba0253c2eeb6ece3cdd2299cf7f183423b65f47655128c3b374eb756cd870cc24034da7aaae206216e79fef +srcfiles size=4 + RELOC/source/latex/competences/competences.dtx + RELOC/source/latex/competences/competences.ins +runfiles size=2 + RELOC/tex/latex/competences/competences.sty +catalogue-ctan /macros/latex/contrib/competences +catalogue-date 2018-05-05 05:37:43 +0200 +catalogue-license lppl1.3 +catalogue-topics exam +catalogue-version 1.0 name complexity category Package -revision 15878 -shortdesc Computational complexity class names. +revision 45322 +shortdesc Computational complexity class names relocated 1 longdesc Complexity is a LaTeX package that defines commands to typeset longdesc Computational Complexity Classes such as $\P$ and $\NP$ (as @@ -37219,79 +61705,126 @@ longdesc including which font classes are typeset in and how many are longdesc defined (all of them or just the basic, most commonly used longdesc ones). The package has no dependencies other than the standard longdesc ifthen package. +containersize 5604 +containerchecksum 352e1a308e159e432c3123afeba8b173b28e164c81b4874273ddd3f8bb8c8866ef33ba7c06e061d52a3845eafb3307b045b82c9da5ea6a812f3808417fa074d6 +doccontainersize 265392 +doccontainerchecksum 2ffc63af2d86b7dc121c6e122ee1d23387c4c73a6ba65b226413671b86644d0cd9e9ec646b3eef49d9c4b2d64575d83ff45f3691337ba1dea6835945ca80de13 +docfiles size=72 + RELOC/doc/latex/complexity/README details="Readme" + RELOC/doc/latex/complexity/complexity.pdf details="Package documentation" + RELOC/doc/latex/complexity/complexity.tex + RELOC/doc/latex/complexity/tableofclasses.tex runfiles size=8 RELOC/tex/latex/complexity/complexity.sty RELOC/tex/latex/complexity/mycomplexity.sty -docfiles size=60 - RELOC/doc/latex/complexity/README - RELOC/doc/latex/complexity/complexity.pdf - RELOC/doc/latex/complexity/complexity.tex - RELOC/doc/latex/complexity/tableofclasses.tex catalogue-ctan /macros/latex/contrib/complexity -catalogue-date 2012-08-26 01:20:08 +0200 -catalogue-license lppl -catalogue-version 0.76 +catalogue-date 2017-09-16 18:13:49 +0200 +catalogue-license lppl1.3c +catalogue-topics graphics-symb +catalogue-version 0.81a name components-of-TeX category Package revision 15878 catalogue components -shortdesc Components of TeX. +shortdesc Components of TeX relocated 1 longdesc An introduction to the components and files users of TeX may longdesc encounter. +containersize 392 +containerchecksum 364836128154056aa5d1e005144a64aa64ee105c78d34127958599c8c0eb82aa70e856017be3d7166d723a0fd7c9656d72cb24e46bd61d8768c1dc82991c5f77 +doccontainersize 11052 +doccontainerchecksum 5da762a898a6cb95d5da95f444e862c8d0ac351ca63eca776fc1a9e35e2fb00389d414a85fa1bef357abc3d68b691a36ddac8c6aba20b7ea6f398c9017ac13fb docfiles size=11 - RELOC/doc/generic/components-of-TeX/README + RELOC/doc/generic/components-of-TeX/README details="Package README" RELOC/doc/generic/components-of-TeX/etexkomp.tex RELOC/doc/generic/components-of-TeX/figkomp.tex RELOC/doc/generic/components-of-TeX/figtotal.tex RELOC/doc/generic/components-of-TeX/names.sty RELOC/doc/generic/components-of-TeX/texrep.sty catalogue-ctan /info/components-of-TeX -catalogue-date 2012-05-30 13:02:03 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license gpl +catalogue-topics documentation name comprehensive category Package -revision 25501 -shortdesc Symbols accessible from LaTeX. -relocated 1 -longdesc Around 5000 symbols are listed as a set of tables. The tables -longdesc of symbols are ordered in a logical way (the document begins -longdesc with a 'frequently requested symbols' list), the aim being to -longdesc make the document a convenient way of looking up symbols. -docfiles size=2316 - RELOC/doc/latex/comprehensive/README - RELOC/doc/latex/comprehensive/SYMLIST +revision 46270 +shortdesc Symbols accessible from LaTeX +relocated 1 +longdesc Over 14000 symbols are listed as a set of tables. The tables of +longdesc symbols are ordered in a logical way (the document begins with +longdesc a 'frequently requested symbols' list), the aim being to make +longdesc the document a convenient way of looking up symbols. +containersize 520 +containerchecksum 8c34a44188cb3dd286f0f841cbfd2d4760bee9be75c814041ea7d2f9ffef39991f018fce276a440f88ca8771eca0c1baa9884d2a7f60afbb788f63220b51c3e7 +doccontainersize 16552280 +doccontainerchecksum e262b3996a745024d2cca39d62ba35e00e9b6a8ead58ae1c89c5d8949744cf8a084021beba8c611ef6b2726447919241e0f2f6cbbb21e6de4d6c15af7c7b5ea4 +docfiles size=4800 + RELOC/doc/latex/comprehensive/README details="Package README" + RELOC/doc/latex/comprehensive/README.TEXLIVE + RELOC/doc/latex/comprehensive/SYMLIST details="Plain text list of symbol commands" + RELOC/doc/latex/comprehensive/rawtables-a4.pdf RELOC/doc/latex/comprehensive/source/Makefile + RELOC/doc/latex/comprehensive/source/fakeallrunes.sty + RELOC/doc/latex/comprehensive/source/fakearcs.sty + RELOC/doc/latex/comprehensive/source/fakearevmath.sty + RELOC/doc/latex/comprehensive/source/fakedozenal.sty + RELOC/doc/latex/comprehensive/source/fakego.sty + RELOC/doc/latex/comprehensive/source/fakelatexsym.sty + RELOC/doc/latex/comprehensive/source/fakemusixtex.sty + RELOC/doc/latex/comprehensive/source/fakeold-arrows.sty RELOC/doc/latex/comprehensive/source/lightbulb.eps RELOC/doc/latex/comprehensive/source/lightbulb.map RELOC/doc/latex/comprehensive/source/lightbulb.mf RELOC/doc/latex/comprehensive/source/lightbulb10.mf RELOC/doc/latex/comprehensive/source/lightbulb10.pfb RELOC/doc/latex/comprehensive/source/makefakeMnSymbol - RELOC/doc/latex/comprehensive/source/response.eps + RELOC/doc/latex/comprehensive/source/makefakeboisik + RELOC/doc/latex/comprehensive/source/makefakefdsymbol + RELOC/doc/latex/comprehensive/source/makefakestarfont + RELOC/doc/latex/comprehensive/source/makefakestix + RELOC/doc/latex/comprehensive/source/makerawtables RELOC/doc/latex/comprehensive/source/symbols.ist RELOC/doc/latex/comprehensive/source/symbols.tex RELOC/doc/latex/comprehensive/source/teubner-subset.sty - RELOC/doc/latex/comprehensive/source/versicle.eps - RELOC/doc/latex/comprehensive/symbols-a4.pdf - RELOC/doc/latex/comprehensive/symbols-letter.pdf + RELOC/doc/latex/comprehensive/source/unicode2eps.pe + RELOC/doc/latex/comprehensive/symbols-a4.pdf details="The document (for A4 paper)" catalogue-ctan /info/symbols/comprehensive -catalogue-date 2012-05-21 15:40:40 +0200 -catalogue-license lppl -catalogue-version 11.0 +catalogue-date 2017-03-07 16:00:12 +0100 +catalogue-license lppl1.3 +catalogue-topics font-index ref-latex +catalogue-version 12.3 name computational-complexity category Package -revision 36899 -shortdesc Class for the journal Computational Complexity. +revision 44847 +shortdesc Class for the journal Computational Complexity relocated 1 longdesc The LaTeX2e class cc was written for the journal Computational longdesc Complexity, and it can also be used for a lot of other longdesc articles. You may like it since it contains a lot of features -longdesc as more intelligent references, a set of theorem definitions, -longdesc an algorithm environment, ... The class requires natbib. +longdesc such as more intelligent references, a set of theorem +longdesc definitions, an algorithm environment, and more. The class +longdesc requires natbib. +containersize 32516 +containerchecksum 639ae984ee1b581260434ace517d8209843127795e674af045ddafe16838946bebbd2dbeded45fddf62ec0a49b1a30492db0cba4ad1e5bf65530d1d5a5df9198 +doccontainersize 799564 +doccontainerchecksum 9daf1691d33bbf00b67b82cc29de0002e1aef968cb1f182bc3d722082582ed7e60945f74675b48a87baf67aa9f5fee4a167bf1548d3312492a8f570feda93ac8 +docfiles size=273 + RELOC/doc/latex/computational-complexity/README details="Readme" + RELOC/doc/latex/computational-complexity/cc-cls-inline.tex + RELOC/doc/latex/computational-complexity/cc-journals.bib + RELOC/doc/latex/computational-complexity/cc-portability-frame.tex + RELOC/doc/latex/computational-complexity/cc.pdf details="Package documentation" + RELOC/doc/latex/computational-complexity/cc2.dbj + RELOC/doc/latex/computational-complexity/ccquickref.tex + RELOC/doc/latex/computational-complexity/cctemplate.tex +srccontainersize 87476 +srccontainerchecksum 37d9b700194fb1ad6cd11fd9008aa1634a6b425133365819b5f76ec349a962e44ef43e8c18572fec16bb4f7b44fea29bcb4f01936016486c3eee4d44ddfc5ba2 +srcfiles size=100 + RELOC/source/latex/computational-complexity/cc.dtx + RELOC/source/latex/computational-complexity/cc.ins runfiles size=57 RELOC/bibtex/bst/computational-complexity/cc.bst RELOC/bibtex/bst/computational-complexity/cc2.bst @@ -37317,26 +61850,16 @@ runfiles size=57 RELOC/tex/latex/computational-complexity/ccthm.sty RELOC/tex/latex/computational-complexity/relabel.sty RELOC/tex/latex/computational-complexity/thcc.sty -docfiles size=270 - RELOC/doc/latex/computational-complexity/cc-cls-inline.tex - RELOC/doc/latex/computational-complexity/cc-portability-frame.tex - RELOC/doc/latex/computational-complexity/cc.pdf - RELOC/doc/latex/computational-complexity/cc2.dbj - RELOC/doc/latex/computational-complexity/ccquickref.tex - RELOC/doc/latex/computational-complexity/cctemplate.tex - RELOC/doc/latex/computational-complexity/journals.bib -srcfiles size=100 - RELOC/source/latex/computational-complexity/cc.dtx - RELOC/source/latex/computational-complexity/cc.ins catalogue-ctan /macros/latex/contrib/computational-complexity -catalogue-date 2013-10-16 17:26:58 +0200 -catalogue-license lppl -catalogue-version v2.25c +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.2 +catalogue-topics journalpub class +catalogue-version 2.25f name concepts category Package revision 29020 -shortdesc Keeping track of formal 'concepts' for a particular field. +shortdesc Keeping track of formal 'concepts' for a particular field relocated 1 longdesc The package helps to keep track of formal 'concepts' for a longdesc specific field or document. This is particularly useful for @@ -37348,29 +61871,81 @@ longdesc ensure consistent use throughout the document. The package longdesc depends on several other packages; while these are fairly longdesc common packages, the user should check the package's README longdesc file for the complete list. -runfiles size=7 - RELOC/tex/latex/concepts/concepts.sty +containersize 7124 +containerchecksum 2fe917ad25df3b14bd3a20566b97a7ece0f87f79ec7ef10bcafdffde1834f6fc4bfa6775a7ec8d044e5f3ad241913b2664a7a5c25893e9406de26c0a1008d25c +doccontainersize 317328 +doccontainerchecksum 5519f645d55e2a3e4e5f9156bdac2ea9e4ad4735ec9104255e75ea254f45b135f0d635322cf46a5536e8600eee1447ab48753763a4c89310e92d51c94c4fde80 docfiles size=89 - RELOC/doc/latex/concepts/README - RELOC/doc/latex/concepts/concepts.pdf + RELOC/doc/latex/concepts/README details="Readme" + RELOC/doc/latex/concepts/concepts.pdf details="Package documentation" RELOC/doc/latex/concepts/concepts.tex RELOC/doc/latex/concepts/dry.sty RELOC/doc/latex/concepts/packagedoc.cls RELOC/doc/latex/concepts/with.sty +runfiles size=7 + RELOC/tex/latex/concepts/concepts.sty catalogue-ctan /macros/latex/contrib/concepts -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics editorial-consistency catalogue-version 0.0.5-r1 +name concmath +category Package +revision 17219 +shortdesc Concrete Math fonts +relocated 1 +longdesc A LaTeX package and font definition files to access the +longdesc Concrete mathematics fonts, which were derived from Computer +longdesc Modern math fonts using parameters from Concrete Roman text +longdesc fonts. +containersize 2176 +containerchecksum 1e2fd3339fd2bf2a48967102ca42c930ff41a5b4a9fa850cbce6aa2ed701ab351a5dfb931ed80de34aa13e18ab2b01fa2893f981fc671d6399f4d55aa9f8ea40 +doccontainersize 266164 +doccontainerchecksum 05dbb0a6d89d3f72f3d77824670afb29e6ea8dbba6d37255f6a36006a6a6b630fb56b12815ae3075c41dd698d6a85c6be7ce1dc2da9b3b69b636fcd8c4855a84 +docfiles size=71 + RELOC/doc/fonts/concmath/CATALOGUE + RELOC/doc/fonts/concmath/README details="Readme" + RELOC/doc/fonts/concmath/concmath.pdf details="Package documentation" +srccontainersize 9604 +srccontainerchecksum 6c4a5a4af907174df5fdeb77f0c4d0f554c2b8ac0d95031fe98f4a748bc4a96c7a526e44229174ffaccdec5bcf086722b355b3c4dcbc4441e1a67c91a71376db +srcfiles size=10 + RELOC/source/latex/concmath/Makefile + RELOC/source/latex/concmath/concmath.dtx + RELOC/source/latex/concmath/concmath.ins +runfiles size=9 + RELOC/tex/latex/concmath/concmath.sty + RELOC/tex/latex/concmath/omlccm.fd + RELOC/tex/latex/concmath/omlccr.fd + RELOC/tex/latex/concmath/omsccr.fd + RELOC/tex/latex/concmath/omsccsy.fd + RELOC/tex/latex/concmath/omxccex.fd + RELOC/tex/latex/concmath/ot1ccr.fd + RELOC/tex/latex/concmath/ucca.fd + RELOC/tex/latex/concmath/uccb.fd +catalogue-also concrete ccfonts +catalogue-ctan /macros/latex/contrib/concmath +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font-supp + name concmath-fonts category Package revision 17218 -shortdesc Concrete mathematics fonts. +shortdesc Concrete mathematics fonts relocated 1 longdesc The fonts are derived from the computer modern mathematics longdesc fonts and from Knuth's Concrete Roman fonts; they are longdesc distributed as Metafont source. LaTeX support is offered by the longdesc concmath package. +containersize 15176 +containerchecksum 65b3f7003b8aaaf6565bea6a65da11f42dca2283f1d53710f4b476a48ab39ae6fffc1d0f9206e23b66047b572c28e793e1a75d047f1c1a892fb4e7c17c854741 +doccontainersize 2640 +doccontainerchecksum 7b2db9b8f2f23816cf413676dfbf6ca3413a39bb20cbc12070b9202bd2e98714a86dcb5f27a746ae197efd2284eb794f06af1b2941667abfddb72773ceb61378 +docfiles size=3 + RELOC/doc/fonts/concmath-fonts/CATALOGUE + RELOC/doc/fonts/concmath-fonts/Makefile + RELOC/doc/fonts/concmath-fonts/README details="Package Readme" runfiles size=78 RELOC/fonts/source/public/concmath-fonts/xccam10.mf RELOC/fonts/source/public/concmath-fonts/xccam5.mf @@ -37428,64 +62003,35 @@ runfiles size=78 RELOC/fonts/tfm/public/concmath-fonts/xccsy7.tfm RELOC/fonts/tfm/public/concmath-fonts/xccsy8.tfm RELOC/fonts/tfm/public/concmath-fonts/xccsy9.tfm -docfiles size=3 - RELOC/doc/fonts/concmath-fonts/CATALOGUE - RELOC/doc/fonts/concmath-fonts/Makefile - RELOC/doc/fonts/concmath-fonts/README catalogue-ctan /fonts/concmath -catalogue-date 2014-04-24 00:33:23 +0200 -catalogue-license lppl - -name concmath -category Package -revision 17219 -shortdesc Concrete Math fonts. -relocated 1 -longdesc A LaTeX package and font definition files to access the -longdesc Concrete mathematics fonts, which were derived from Computer -longdesc Modern math fonts using parameters from Concrete Roman text -longdesc fonts. -runfiles size=9 - RELOC/tex/latex/concmath/concmath.sty - RELOC/tex/latex/concmath/omlccm.fd - RELOC/tex/latex/concmath/omlccr.fd - RELOC/tex/latex/concmath/omsccr.fd - RELOC/tex/latex/concmath/omsccsy.fd - RELOC/tex/latex/concmath/omxccex.fd - RELOC/tex/latex/concmath/ot1ccr.fd - RELOC/tex/latex/concmath/ucca.fd - RELOC/tex/latex/concmath/uccb.fd -docfiles size=71 - RELOC/doc/fonts/concmath/CATALOGUE - RELOC/doc/fonts/concmath/README - RELOC/doc/fonts/concmath/concmath.pdf -srcfiles size=10 - RELOC/source/latex/concmath/Makefile - RELOC/source/latex/concmath/concmath.dtx - RELOC/source/latex/concmath/concmath.ins -catalogue-ctan /macros/latex/contrib/concmath -catalogue-date 2015-02-23 19:57:39 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-mf font-maths name concprog category Package revision 18791 -shortdesc Concert programmes. +shortdesc Concert programmes relocated 1 longdesc A class which provides the necessary macros to prepare a longdesc (classical) concert programme; a sample is provided. -runfiles size=4 - RELOC/tex/latex/concprog/ConcProg.cls +containersize 4280 +containerchecksum f650acafa4ffa424451f338d6432d665ff679396ed367650d360adf699d3b1e7d8d23f5b3fd070440cb4d6578d07978bfd02960c1219eed6c8594f110708e5cc +doccontainersize 1064 +doccontainerchecksum bf4d76362f7a764ae4c7937edf05a575b3faa8d6919c6c857ae350b742f53d6390546263d14958dbdfd423c9b45a7f9eebe862a00378f51c754b5fee65f60bc0 docfiles size=1 RELOC/doc/latex/concprog/program.tex +runfiles size=4 + RELOC/tex/latex/concprog/ConcProg.cls catalogue-ctan /macros/latex/contrib/concprog -catalogue-date 2012-05-30 13:02:03 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics advert name concrete category Package revision 15878 -shortdesc Concrete Roman fonts. +shortdesc Concrete Roman fonts relocated 1 longdesc Concrete Roman fonts, designed by Donald E. Knuth, originally longdesc for use with Euler mathematics fonts. Alternative mathematics @@ -37495,6 +62041,14 @@ longdesc beton, concmath and ccfonts packages. T1- and TS1-encoded longdesc versions of the fonts are available in the ecc bundle, and longdesc Adobe Type 1 versions of the ecc fonts are part of the cm-super longdesc bundle. +containersize 9536 +containerchecksum 465b6d7e427e8bd7b8cfb44551d4f8999ed0e8482f905416ec4ea7db6ea4293e6124f0b69e84a84655d5230cee1555f15030c8dfeac8c7da99c1c8ba20a3d640 +doccontainersize 2352 +doccontainerchecksum 5fb4fd77468dd4d5ba19d43d176588f05345038d58c9b0b2630e6795ed33bdb3db0053d5bb249030a118bf19cddf7c7e4d8f1ae96173b1e1368e468ea2c00727 +docfiles size=3 + RELOC/doc/fonts/concrete/CATALOGUE + RELOC/doc/fonts/concrete/Makefile + RELOC/doc/fonts/concrete/README details="Readme" runfiles size=28 RELOC/fonts/source/public/concrete/cccsc10.mf RELOC/fonts/source/public/concrete/ccmi10.mf @@ -37523,18 +62077,15 @@ runfiles size=28 RELOC/fonts/tfm/public/concrete/ccsl9.tfm RELOC/fonts/tfm/public/concrete/ccslc9.tfm RELOC/fonts/tfm/public/concrete/ccti10.tfm -docfiles size=3 - RELOC/doc/fonts/concrete/CATALOGUE - RELOC/doc/fonts/concrete/Makefile - RELOC/doc/fonts/concrete/README catalogue-ctan /fonts/concrete -catalogue-date 2014-04-24 00:33:23 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license knuth +catalogue-topics font font-mf name confproc category Package revision 29349 -shortdesc A set of tools for generating conference proceedings. +shortdesc A set of tools for generating conference proceedings relocated 1 longdesc The confproc collection comprises a class, a BibTeX style, and longdesc some scripts for generating conference proceedings. It derives @@ -37546,15 +62097,12 @@ longdesc bibliography back-references. Confproc also uses many other longdesc packages for fine tuning of the table of contents, bibliography longdesc and index of authors. The added value of the class resides in longdesc its time-saving aspects when designing conference proceedings. -runfiles size=23 - RELOC/bibtex/bst/confproc/newapave.bst - RELOC/makeindex/confproc/confproc1.ist - RELOC/makeindex/confproc/confproc2.ist - RELOC/tex/latex/confproc/confproc.cfg - RELOC/tex/latex/confproc/confproc.cls - RELOC/tex/latex/confproc/newapave.sty +containersize 16388 +containerchecksum b6e054332f7f6a239a6eb102ae4b022f90d9523628a293517b1d070602290bea8e623379b5c246fcd5b8daae29c9d32d02a8a7637cd704ede5b1b928de4536fd +doccontainersize 1871032 +doccontainerchecksum 0bd697d12f1740257e89cd5853aac7340659350a6374c32c5fc22da4249ea08b7e176dc499712f4c2cac6641c0161394ff0433513f7ce1942d50ac69021c14aa docfiles size=871 - RELOC/doc/latex/confproc/README + RELOC/doc/latex/confproc/README details="Readme" RELOC/doc/latex/confproc/buildcls.sh RELOC/doc/latex/confproc/buildcppdfpapers.sh RELOC/doc/latex/confproc/buildpapers.sh @@ -37562,7 +62110,7 @@ docfiles size=871 RELOC/doc/latex/confproc/buildprocelpb.sh RELOC/doc/latex/confproc/cleancls.sh RELOC/doc/latex/confproc/confproc-short.tex - RELOC/doc/latex/confproc/confproc.pdf + RELOC/doc/latex/confproc/confproc.pdf details="Package documentation" RELOC/doc/latex/confproc/confproc_diag.pdf RELOC/doc/latex/confproc/countnbpages.sh RELOC/doc/latex/confproc/example/IEEEtran.bst @@ -37653,69 +62201,4105 @@ docfiles size=871 RELOC/doc/latex/confproc/paperssplitpreamble.sh RELOC/doc/latex/confproc/prepareexample.sh RELOC/doc/latex/confproc/removeLaTeXcmds.sh +srccontainersize 92900 +srccontainerchecksum f8530a8106931edceb4c5f0b87022092fc85368966e5029ab25e9f2f19cf95a3c97694dcedd5a78d707b4d9e4a9f358a6bc4f92084a49dde7d6100b50e77fd1a srcfiles size=125 RELOC/source/latex/confproc/confproc.drv RELOC/source/latex/confproc/confproc.dtx RELOC/source/latex/confproc/confproc.ins +runfiles size=23 + RELOC/bibtex/bst/confproc/newapave.bst + RELOC/makeindex/confproc/confproc1.ist + RELOC/makeindex/confproc/confproc2.ist + RELOC/tex/latex/confproc/confproc.cfg + RELOC/tex/latex/confproc/confproc.cls + RELOC/tex/latex/confproc/newapave.sty catalogue-ctan /macros/latex/contrib/conferences/confproc -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics confproc catalogue-version 0.8 name constants category Package revision 15878 -shortdesc Automatic numbering of constants. +shortdesc Automatic numbering of constants relocated 1 longdesc The package provides a way to number constants in a longdesc mathematical proof automatically, with a system for longdesc labelling/referencing. In addition, several families of longdesc constants (with different symbols) may be defined. -runfiles size=2 - RELOC/tex/latex/constants/constants.sty +containersize 2196 +containerchecksum c4f807315c7f95fe7945e937e750ea18c346a8ecabb80a39922a9b861e3cce3956db31c55e68a0d3417406284d7187fd3b1d1c336c0a130eabb07e4bb60503ca +doccontainersize 91104 +doccontainerchecksum 2712e46552a8391b0f2a95991368882a393007788cebabe7ed6c5a604eb2085b4bf00749c6fde3c88028904b7117cd4865b964d11eb443c6939e734495d4df2b docfiles size=30 - RELOC/doc/latex/constants/README - RELOC/doc/latex/constants/constants.pdf + RELOC/doc/latex/constants/README details="Readme" + RELOC/doc/latex/constants/constants.pdf details="Package documentation" +srccontainersize 7084 +srccontainerchecksum 6ea97687aa1f8f1772ba82a09b251c557b3cbacd056a27fc45412c9d72161d04814c9478bc495ca78ba2f8796ba44b3c29ff70f94382cf173b3e6ea2eb7dead3 srcfiles size=7 RELOC/source/latex/constants/constants.dtx RELOC/source/latex/constants/constants.ins +runfiles size=2 + RELOC/tex/latex/constants/constants.sty catalogue-ctan /macros/latex/contrib/constants -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics maths catalogue-version 1.0 name conteq category Package revision 37868 -shortdesc Typeset multiline continued equalities. +shortdesc Typeset multiline continued equalities relocated 1 longdesc The package provides an environment conteq, which will lay out longdesc systems of continued equalities (or inequalities). Several longdesc variant layouts of the equalities are provided, and the user longdesc may define their own. The package is written using LaTeX 3 longdesc macros. -runfiles size=2 - RELOC/tex/latex/conteq/conteq.sty +containersize 2268 +containerchecksum ee0f344ed0eab872aca3c54422f83a6f8bbed2462a22cbd54dde075ceae79dc5a01ef13947327ec726d5eeb64eee5519e4074c138f4d172bbf2b4024eb88ceff +doccontainersize 395140 +doccontainerchecksum edf52893cef8c5f8538a64d626a12725b043c5f0106a63f02cad91df9ad632009cfe3da51149750d4c23c12742c00052b951ada957b89641d9a0da59e93396c8 docfiles size=98 RELOC/doc/latex/conteq/README.txt RELOC/doc/latex/conteq/conteq.hd - RELOC/doc/latex/conteq/conteq.pdf + RELOC/doc/latex/conteq/conteq.pdf details="Package documentation" +srccontainersize 4924 +srccontainerchecksum d3796e7bd679bd64c59a8d16e50ee7e190f9fe3c0774ece399486f8d5df7f6f63ec8a0c595572be305532c66b94011a92bde3bb5850f2feb4ec162e3415b5102 srcfiles size=5 RELOC/source/latex/conteq/conteq.dtx RELOC/source/latex/conteq/conteq.ins +runfiles size=2 + RELOC/tex/latex/conteq/conteq.sty +catalogue-contact-repository https://github.com/nomeata/conteq catalogue-ctan /macros/latex/contrib/conteq -catalogue-date 2015-07-17 20:58:21 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 catalogue-topics maths catalogue-version 0.1.1 +name context +category Package +revision 50573 +shortdesc The ConTeXt macro package +longdesc A full featured, parameter driven macro package, which fully +longdesc supports advanced interactive documents. See the ConTeXt garden +longdesc for a wealth of support information. +depend metapost +depend pdftex +depend xetex +depend luatex +depend lm +depend lm-math +depend amsfonts +depend manfnt-font +depend mflogo-font +depend stmaryrd +depend mptopdf +depend context.ARCH +execute AddFormat name=cont-en engine=pdftex patterns=cont-usr.tex options="-8bit *cont-en.mkii" +execute AddFormat name=cont-en engine=xetex patterns=cont-usr.tex options="-8bit *cont-en.mkii" +execute AddFormat name=cont-fr mode=disabled engine=pdftex patterns=cont-usr.tex options="-8bit *cont-fr.mkii" fmttriggers=context +execute AddFormat name=cont-it mode=disabled engine=pdftex patterns=cont-usr.tex options="-8bit *cont-it.mkii" fmttriggers=context +execute AddFormat name=cont-nl mode=disabled engine=pdftex patterns=cont-usr.tex options="-8bit *cont-nl.mkii" fmttriggers=context +execute AddFormat name=cont-ro mode=disabled engine=pdftex patterns=cont-usr.tex options="-8bit *cont-ro.mkii" fmttriggers=context +execute addMap original-context-symbol.map +containersize 8081684 +containerchecksum 1c525a6a7fe325dddb9588d3720e806ac762eefc90848e4457fc4d3cd60c64cf7b6e5c9388a1f22b22c526e84cca512140511bec9ca5ddad99bf7b968ac49c03 +doccontainersize 81638796 +doccontainerchecksum b172eed71f2917ca16b4ce18b24d28e51ea48a1281fa8e34a5e104363656c1492c7a79339f3d0f7475ffc1f7ea13b647513f3af519afa684231dd7df3ea3b488 +docfiles size=25648 + texmf-dist/doc/context/documents/general/fonts/fonts-mkiv.pdf + texmf-dist/doc/context/documents/general/magazines/mag-0000-mkiv.pdf + texmf-dist/doc/context/documents/general/magazines/mag-0002-mkiv.pdf + texmf-dist/doc/context/documents/general/magazines/mag-0006-mkiv.pdf + texmf-dist/doc/context/documents/general/magazines/mag-0007-mkiv.pdf + texmf-dist/doc/context/documents/general/magazines/mag-0010-mkiv.pdf + texmf-dist/doc/context/documents/general/magazines/mag-1101-mkiv.pdf + texmf-dist/doc/context/documents/general/magazines/mag-1102-mkiv.pdf + texmf-dist/doc/context/documents/general/magazines/mag-1103-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/about.pdf + texmf-dist/doc/context/documents/general/manuals/bidi.pdf + texmf-dist/doc/context/documents/general/manuals/charts-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/cld-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/colors-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/columnsets.pdf + texmf-dist/doc/context/documents/general/manuals/details.pdf + texmf-dist/doc/context/documents/general/manuals/epub-mkiv-demo.epub + texmf-dist/doc/context/documents/general/manuals/epub-mkiv-demo.pdf + texmf-dist/doc/context/documents/general/manuals/epub-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/graphics.pdf + texmf-dist/doc/context/documents/general/manuals/hybrid.pdf + texmf-dist/doc/context/documents/general/manuals/interaction.pdf + texmf-dist/doc/context/documents/general/manuals/languages-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/libraries-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/lua-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/luatex.pdf + texmf-dist/doc/context/documents/general/manuals/ma-cb-en.pdf + texmf-dist/doc/context/documents/general/manuals/math-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/metafun-p.pdf + texmf-dist/doc/context/documents/general/manuals/metafun-s.pdf + texmf-dist/doc/context/documents/general/manuals/mk.pdf + texmf-dist/doc/context/documents/general/manuals/mkiv-publications.pdf + texmf-dist/doc/context/documents/general/manuals/mmlexamp.pdf + texmf-dist/doc/context/documents/general/manuals/mmlprime.pdf + texmf-dist/doc/context/documents/general/manuals/mreadme.pdf + texmf-dist/doc/context/documents/general/manuals/musings.pdf + texmf-dist/doc/context/documents/general/manuals/nodes.pdf + texmf-dist/doc/context/documents/general/manuals/notnow.pdf + texmf-dist/doc/context/documents/general/manuals/onandon.pdf + texmf-dist/doc/context/documents/general/manuals/pagecolumns.pdf + texmf-dist/doc/context/documents/general/manuals/rules-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/spacing-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/spreadsheets-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/sql-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/steps-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/still.pdf + texmf-dist/doc/context/documents/general/manuals/swiglib-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/templates-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/texit.pdf + texmf-dist/doc/context/documents/general/manuals/tiptrick.pdf + texmf-dist/doc/context/documents/general/manuals/tools-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/units-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/workflows-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/xml-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/xtables-mkiv.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-cs.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-de.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-en.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-fr.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-it.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-mapping-cs.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-mapping-de.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-mapping-en.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-mapping-fr.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-mapping-it.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-mapping-nl.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-mapping-ro.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-nl.pdf + texmf-dist/doc/context/documents/general/qrcs/setup-ro.pdf + texmf-dist/doc/context/examples/calculator/calculator.pdf + texmf-dist/doc/context/examples/calculator/calculator.tex + texmf-dist/doc/context/examples/clock/clock.pdf + texmf-dist/doc/context/examples/clock/clock.tex + texmf-dist/doc/context/presentations/bachotex/2005/bachotex-2005-fonts.tex + texmf-dist/doc/context/presentations/bachotex/2005/bachotex-2005-hyphenation.tex + texmf-dist/doc/context/presentations/bachotex/2009/bachotex-2009-luatex.tex + texmf-dist/doc/context/presentations/bachotex/2009/bachotex-2009-math.tex + texmf-dist/doc/context/presentations/bachotex/2009/bachotex-2009-opentype.tex + texmf-dist/doc/context/presentations/bachotex/2010/bachotex-2010-clash.pdf + texmf-dist/doc/context/presentations/bachotex/2010/bachotex-2010-clash.tex + texmf-dist/doc/context/presentations/bachotex/2010/bachotex-2010-move.pdf + texmf-dist/doc/context/presentations/bachotex/2010/bachotex-2010-move.tex + texmf-dist/doc/context/presentations/bachotex/2011/bachotex-2011-cld-and-mkvi.pdf + texmf-dist/doc/context/presentations/bachotex/2011/bachotex-2011-cld-and-mkvi.tex + texmf-dist/doc/context/presentations/bachotex/2011/bachotex-2011-ebook.tex + texmf-dist/doc/context/presentations/bachotex/2011/bachotex-2011-math.tex + texmf-dist/doc/context/presentations/bachotex/2011/bachotex-2011-metapost.tex + texmf-dist/doc/context/presentations/bachotex/2012/bachotex-2012-context.tex + texmf-dist/doc/context/presentations/bachotex/2012/bachotex-2012-future.tex + texmf-dist/doc/context/presentations/bachotex/2013/bachotex-2013-bits.pdf + texmf-dist/doc/context/presentations/bachotex/2013/bachotex-2013-bits.tex + texmf-dist/doc/context/presentations/bachotex/2013/bachotex-2013-luatex.pdf + texmf-dist/doc/context/presentations/bachotex/2013/bachotex-2013-luatex.tex + texmf-dist/doc/context/presentations/bachotex/2013/bachotex-2013-sense.pdf + texmf-dist/doc/context/presentations/bachotex/2013/bachotex-2013-sense.tex + texmf-dist/doc/context/presentations/bachotex/2013/bachotex-2013-speed.pdf + texmf-dist/doc/context/presentations/bachotex/2013/bachotex-2013-speed.tex + texmf-dist/doc/context/presentations/bachotex/2014/bachotex-2014-luatex.tex + texmf-dist/doc/context/presentations/bachotex/2014/bachotex-2014-metapost.tex + texmf-dist/doc/context/presentations/bachotex/2015/bachotex-2015-ligatures.pdf + texmf-dist/doc/context/presentations/bachotex/2015/bachotex-2015-ligatures.tex + texmf-dist/doc/context/presentations/bachotex/2016/bachotex-2016-opentype.pdf + texmf-dist/doc/context/presentations/bachotex/2016/bachotex-2016-opentype.tex + texmf-dist/doc/context/presentations/bachotex/2016/bachotex-2016-toolbox.pdf + texmf-dist/doc/context/presentations/bachotex/2016/bachotex-2016-toolbox.tex + texmf-dist/doc/context/presentations/bachotex/2017/bachotex-2017-emoji-demo.pdf + texmf-dist/doc/context/presentations/bachotex/2017/bachotex-2017-emoji-demo.tex + texmf-dist/doc/context/presentations/bachotex/2017/bachotex-2017-emoji.pdf + texmf-dist/doc/context/presentations/bachotex/2017/bachotex-2017-emoji.tex + texmf-dist/doc/context/presentations/bachotex/2017/bachotex-2017-variablefonts-demo.pdf + texmf-dist/doc/context/presentations/bachotex/2017/bachotex-2017-variablefonts-demo.tex + texmf-dist/doc/context/presentations/bachotex/2017/bachotex-2017-variablefonts.pdf + texmf-dist/doc/context/presentations/bachotex/2017/bachotex-2017-variablefonts.tex + texmf-dist/doc/context/presentations/bachotex/2018/bachotex-2018-fonteffects.pdf + texmf-dist/doc/context/presentations/bachotex/2018/bachotex-2018-fonteffects.tex + texmf-dist/doc/context/presentations/bachotex/2018/bachotex-2018-mp.pdf + texmf-dist/doc/context/presentations/bachotex/2018/bachotex-2018-mp.tex + texmf-dist/doc/context/presentations/context/2007/context-2007-luatex.tex + texmf-dist/doc/context/presentations/context/2007/context-2007-mkiv.tex + texmf-dist/doc/context/presentations/context/2010/context-2010-just-in-time-1.tex + texmf-dist/doc/context/presentations/context/2010/context-2010-just-in-time-2.tex + texmf-dist/doc/context/presentations/context/2010/context-2010-requirements.tex + texmf-dist/doc/context/presentations/context/2010/context-2010-structure-matters.tex + texmf-dist/doc/context/presentations/context/2010/context-2010-workflows.tex + texmf-dist/doc/context/presentations/context/2011/context-2011-ebook-export.pdf + texmf-dist/doc/context/presentations/context/2011/context-2011-ebook-export.tex + texmf-dist/doc/context/presentations/context/2011/context-2011-mathml-update.pdf + texmf-dist/doc/context/presentations/context/2011/context-2011-mathml-update.tex + texmf-dist/doc/context/presentations/context/2011/context-2011-metapost-how-we-adapt.pdf + texmf-dist/doc/context/presentations/context/2011/context-2011-metapost-how-we-adapt.tex + texmf-dist/doc/context/presentations/context/2011/context-2011-sorting-registers.pdf + texmf-dist/doc/context/presentations/context/2011/context-2011-sorting-registers.tex + texmf-dist/doc/context/presentations/context/2012/context-2012-after-the-cleanup.pdf + texmf-dist/doc/context/presentations/context/2012/context-2012-after-the-cleanup.tex + texmf-dist/doc/context/presentations/context/2012/context-2012-lexing-sources.pdf + texmf-dist/doc/context/presentations/context/2012/context-2012-lexing-sources.tex + texmf-dist/doc/context/presentations/context/2012/context-2012-mixed-columns.pdf + texmf-dist/doc/context/presentations/context/2012/context-2012-mixed-columns.tex + texmf-dist/doc/context/presentations/context/2012/context-2012-the-script.pdf + texmf-dist/doc/context/presentations/context/2012/context-2012-the-script.tex + texmf-dist/doc/context/presentations/context/2012/context-2012-visual-debugging.pdf + texmf-dist/doc/context/presentations/context/2012/context-2012-visual-debugging.tex + texmf-dist/doc/context/presentations/context/2012/context-2012-xml-news.pdf + texmf-dist/doc/context/presentations/context/2012/context-2012-xml-news.tex + texmf-dist/doc/context/presentations/context/2013/context-2013-math.pdf + texmf-dist/doc/context/presentations/context/2013/context-2013-math.tex + texmf-dist/doc/context/presentations/context/2013/context-2013-speed.pdf + texmf-dist/doc/context/presentations/context/2013/context-2013-speed.tex + texmf-dist/doc/context/presentations/context/2015/context-2015-status.pdf + texmf-dist/doc/context/presentations/context/2015/context-2015-status.tex + texmf-dist/doc/context/presentations/context/2016/context-2016-luatex.pdf + texmf-dist/doc/context/presentations/context/2016/context-2016-luatex.tex + texmf-dist/doc/context/presentations/examples/present-balls-001.pdf + texmf-dist/doc/context/presentations/examples/present-balls-001.tex + texmf-dist/doc/context/presentations/examples/present-colorful-001.pdf + texmf-dist/doc/context/presentations/examples/present-colorful-001.tex + texmf-dist/doc/context/presentations/examples/present-funny-001.pdf + texmf-dist/doc/context/presentations/examples/present-funny-001.tex + texmf-dist/doc/context/presentations/examples/present-fuzzy-001.pdf + texmf-dist/doc/context/presentations/examples/present-fuzzy-001.tex + texmf-dist/doc/context/presentations/examples/present-green-001.pdf + texmf-dist/doc/context/presentations/examples/present-green-001.tex + texmf-dist/doc/context/presentations/examples/present-grow-001.pdf + texmf-dist/doc/context/presentations/examples/present-grow-001.tex + texmf-dist/doc/context/presentations/examples/present-organic-001.pdf + texmf-dist/doc/context/presentations/examples/present-organic-001.tex + texmf-dist/doc/context/presentations/examples/present-original-001.pdf + texmf-dist/doc/context/presentations/examples/present-original-001.tex + texmf-dist/doc/context/presentations/examples/present-punk-001.pdf + texmf-dist/doc/context/presentations/examples/present-punk-001.tex + texmf-dist/doc/context/presentations/examples/present-random-001.pdf + texmf-dist/doc/context/presentations/examples/present-random-001.tex + texmf-dist/doc/context/presentations/examples/present-shaded-001.pdf + texmf-dist/doc/context/presentations/examples/present-shaded-001.tex + texmf-dist/doc/context/presentations/examples/present-split-001.pdf + texmf-dist/doc/context/presentations/examples/present-split-001.tex + texmf-dist/doc/context/presentations/examples/present-stepper-001.pdf + texmf-dist/doc/context/presentations/examples/present-stepper-001.tex + texmf-dist/doc/context/presentations/examples/present-steps-001.pdf + texmf-dist/doc/context/presentations/examples/present-steps-001.tex + texmf-dist/doc/context/presentations/examples/present-tiles-001.pdf + texmf-dist/doc/context/presentations/examples/present-tiles-001.tex + texmf-dist/doc/context/presentations/examples/present-weird-001.pdf + texmf-dist/doc/context/presentations/examples/present-weird-001.tex + texmf-dist/doc/context/presentations/examples/present-windows-001.pdf + texmf-dist/doc/context/presentations/examples/present-windows-001.tex + texmf-dist/doc/context/presentations/present-readme.pdf + texmf-dist/doc/context/presentations/present-readme.tex + texmf-dist/doc/context/presentations/tug/2001/tug-2001-ideas.pdf + texmf-dist/doc/context/presentations/tug/2001/tug-2001-ideas.tex + texmf-dist/doc/context/presentations/tug/2007/tug-2007-fonts.pdf + texmf-dist/doc/context/presentations/tug/2007/tug-2007-fonts.tex + texmf-dist/doc/context/scripts/mkii/ctxtools.html + texmf-dist/doc/context/scripts/mkii/ctxtools.man + texmf-dist/doc/context/scripts/mkii/ctxtools.xml + texmf-dist/doc/context/scripts/mkii/imgtopdf.html + texmf-dist/doc/context/scripts/mkii/imgtopdf.man + texmf-dist/doc/context/scripts/mkii/imgtopdf.xml + texmf-dist/doc/context/scripts/mkii/mptopdf.html + texmf-dist/doc/context/scripts/mkii/mptopdf.xml + texmf-dist/doc/context/scripts/mkii/pdftools.html + texmf-dist/doc/context/scripts/mkii/pdftools.man + texmf-dist/doc/context/scripts/mkii/pdftools.xml + texmf-dist/doc/context/scripts/mkii/pstopdf.html + texmf-dist/doc/context/scripts/mkii/pstopdf.man + texmf-dist/doc/context/scripts/mkii/pstopdf.xml + texmf-dist/doc/context/scripts/mkii/rlxtools.html + texmf-dist/doc/context/scripts/mkii/rlxtools.man + texmf-dist/doc/context/scripts/mkii/rlxtools.xml + texmf-dist/doc/context/scripts/mkii/texexec.html + texmf-dist/doc/context/scripts/mkii/texexec.man + texmf-dist/doc/context/scripts/mkii/texexec.xml + texmf-dist/doc/context/scripts/mkii/texmfstart.html + texmf-dist/doc/context/scripts/mkii/texmfstart.man + texmf-dist/doc/context/scripts/mkii/texmfstart.xml + texmf-dist/doc/context/scripts/mkii/textools.html + texmf-dist/doc/context/scripts/mkii/textools.man + texmf-dist/doc/context/scripts/mkii/textools.xml + texmf-dist/doc/context/scripts/mkii/texutil.html + texmf-dist/doc/context/scripts/mkii/texutil.man + texmf-dist/doc/context/scripts/mkii/texutil.xml + texmf-dist/doc/context/scripts/mkii/tmftools.html + texmf-dist/doc/context/scripts/mkii/tmftools.man + texmf-dist/doc/context/scripts/mkii/tmftools.xml + texmf-dist/doc/context/scripts/mkii/xmltools.html + texmf-dist/doc/context/scripts/mkii/xmltools.man + texmf-dist/doc/context/scripts/mkii/xmltools.xml + texmf-dist/doc/context/scripts/mkiv/context.html + texmf-dist/doc/context/scripts/mkiv/context.man + texmf-dist/doc/context/scripts/mkiv/context.xml + texmf-dist/doc/context/scripts/mkiv/luatools.html + texmf-dist/doc/context/scripts/mkiv/luatools.man + texmf-dist/doc/context/scripts/mkiv/luatools.xml + texmf-dist/doc/context/scripts/mkiv/mtx-babel.html + texmf-dist/doc/context/scripts/mkiv/mtx-babel.man + texmf-dist/doc/context/scripts/mkiv/mtx-babel.xml + texmf-dist/doc/context/scripts/mkiv/mtx-base.html + texmf-dist/doc/context/scripts/mkiv/mtx-base.man + texmf-dist/doc/context/scripts/mkiv/mtx-base.xml + texmf-dist/doc/context/scripts/mkiv/mtx-bibtex.html + texmf-dist/doc/context/scripts/mkiv/mtx-bibtex.man + texmf-dist/doc/context/scripts/mkiv/mtx-bibtex.xml + texmf-dist/doc/context/scripts/mkiv/mtx-cache.html + texmf-dist/doc/context/scripts/mkiv/mtx-cache.man + texmf-dist/doc/context/scripts/mkiv/mtx-cache.xml + texmf-dist/doc/context/scripts/mkiv/mtx-chars.html + texmf-dist/doc/context/scripts/mkiv/mtx-chars.man + texmf-dist/doc/context/scripts/mkiv/mtx-chars.xml + texmf-dist/doc/context/scripts/mkiv/mtx-check.html + texmf-dist/doc/context/scripts/mkiv/mtx-check.man + texmf-dist/doc/context/scripts/mkiv/mtx-check.xml + texmf-dist/doc/context/scripts/mkiv/mtx-colors.html + texmf-dist/doc/context/scripts/mkiv/mtx-colors.man + texmf-dist/doc/context/scripts/mkiv/mtx-colors.xml + texmf-dist/doc/context/scripts/mkiv/mtx-context.html + texmf-dist/doc/context/scripts/mkiv/mtx-context.man + texmf-dist/doc/context/scripts/mkiv/mtx-context.xml + texmf-dist/doc/context/scripts/mkiv/mtx-dvi.html + texmf-dist/doc/context/scripts/mkiv/mtx-dvi.man + texmf-dist/doc/context/scripts/mkiv/mtx-dvi.xml + texmf-dist/doc/context/scripts/mkiv/mtx-epub.html + texmf-dist/doc/context/scripts/mkiv/mtx-epub.man + texmf-dist/doc/context/scripts/mkiv/mtx-epub.xml + texmf-dist/doc/context/scripts/mkiv/mtx-evohome.html + texmf-dist/doc/context/scripts/mkiv/mtx-evohome.man + texmf-dist/doc/context/scripts/mkiv/mtx-evohome.xml + texmf-dist/doc/context/scripts/mkiv/mtx-fcd.html + texmf-dist/doc/context/scripts/mkiv/mtx-fcd.man + texmf-dist/doc/context/scripts/mkiv/mtx-fcd.xml + texmf-dist/doc/context/scripts/mkiv/mtx-flac.html + texmf-dist/doc/context/scripts/mkiv/mtx-flac.man + texmf-dist/doc/context/scripts/mkiv/mtx-flac.xml + texmf-dist/doc/context/scripts/mkiv/mtx-fonts.html + texmf-dist/doc/context/scripts/mkiv/mtx-fonts.man + texmf-dist/doc/context/scripts/mkiv/mtx-fonts.xml + texmf-dist/doc/context/scripts/mkiv/mtx-grep.html + texmf-dist/doc/context/scripts/mkiv/mtx-grep.man + texmf-dist/doc/context/scripts/mkiv/mtx-grep.xml + texmf-dist/doc/context/scripts/mkiv/mtx-interface.html + texmf-dist/doc/context/scripts/mkiv/mtx-interface.man + texmf-dist/doc/context/scripts/mkiv/mtx-interface.xml + texmf-dist/doc/context/scripts/mkiv/mtx-metapost.html + texmf-dist/doc/context/scripts/mkiv/mtx-metapost.man + texmf-dist/doc/context/scripts/mkiv/mtx-metapost.xml + texmf-dist/doc/context/scripts/mkiv/mtx-modules.html + texmf-dist/doc/context/scripts/mkiv/mtx-modules.man + texmf-dist/doc/context/scripts/mkiv/mtx-modules.xml + texmf-dist/doc/context/scripts/mkiv/mtx-package.html + texmf-dist/doc/context/scripts/mkiv/mtx-package.man + texmf-dist/doc/context/scripts/mkiv/mtx-package.xml + texmf-dist/doc/context/scripts/mkiv/mtx-pdf.html + texmf-dist/doc/context/scripts/mkiv/mtx-pdf.man + texmf-dist/doc/context/scripts/mkiv/mtx-pdf.xml + texmf-dist/doc/context/scripts/mkiv/mtx-plain.html + texmf-dist/doc/context/scripts/mkiv/mtx-plain.man + texmf-dist/doc/context/scripts/mkiv/mtx-plain.xml + texmf-dist/doc/context/scripts/mkiv/mtx-profile.html + texmf-dist/doc/context/scripts/mkiv/mtx-profile.man + texmf-dist/doc/context/scripts/mkiv/mtx-profile.xml + texmf-dist/doc/context/scripts/mkiv/mtx-rsync.html + texmf-dist/doc/context/scripts/mkiv/mtx-rsync.man + texmf-dist/doc/context/scripts/mkiv/mtx-rsync.xml + texmf-dist/doc/context/scripts/mkiv/mtx-scite.html + texmf-dist/doc/context/scripts/mkiv/mtx-scite.man + texmf-dist/doc/context/scripts/mkiv/mtx-scite.xml + texmf-dist/doc/context/scripts/mkiv/mtx-server.html + texmf-dist/doc/context/scripts/mkiv/mtx-server.man + texmf-dist/doc/context/scripts/mkiv/mtx-server.xml + texmf-dist/doc/context/scripts/mkiv/mtx-texworks.html + texmf-dist/doc/context/scripts/mkiv/mtx-texworks.man + texmf-dist/doc/context/scripts/mkiv/mtx-texworks.xml + texmf-dist/doc/context/scripts/mkiv/mtx-timing.html + texmf-dist/doc/context/scripts/mkiv/mtx-timing.man + texmf-dist/doc/context/scripts/mkiv/mtx-timing.xml + texmf-dist/doc/context/scripts/mkiv/mtx-tools.html + texmf-dist/doc/context/scripts/mkiv/mtx-tools.man + texmf-dist/doc/context/scripts/mkiv/mtx-tools.xml + texmf-dist/doc/context/scripts/mkiv/mtx-unicode.html + texmf-dist/doc/context/scripts/mkiv/mtx-unicode.man + texmf-dist/doc/context/scripts/mkiv/mtx-unicode.xml + texmf-dist/doc/context/scripts/mkiv/mtx-unzip.html + texmf-dist/doc/context/scripts/mkiv/mtx-unzip.man + texmf-dist/doc/context/scripts/mkiv/mtx-unzip.xml + texmf-dist/doc/context/scripts/mkiv/mtx-update.html + texmf-dist/doc/context/scripts/mkiv/mtx-update.man + texmf-dist/doc/context/scripts/mkiv/mtx-update.xml + texmf-dist/doc/context/scripts/mkiv/mtx-watch.html + texmf-dist/doc/context/scripts/mkiv/mtx-watch.man + texmf-dist/doc/context/scripts/mkiv/mtx-watch.xml + texmf-dist/doc/context/scripts/mkiv/mtx-youless.html + texmf-dist/doc/context/scripts/mkiv/mtx-youless.man + texmf-dist/doc/context/scripts/mkiv/mtx-youless.xml + texmf-dist/doc/context/scripts/mkiv/mtxrun.html + texmf-dist/doc/context/scripts/mkiv/mtxrun.man + texmf-dist/doc/context/scripts/mkiv/mtxrun.xml + texmf-dist/doc/context/sources/general/fonts/fonts/fonts-appendix.tex + texmf-dist/doc/context/sources/general/fonts/fonts/fonts-demo-rule.lua + texmf-dist/doc/context/sources/general/fonts/fonts/fonts-environment.tex + texmf-dist/doc/context/sources/general/fonts/fonts/fonts-extensions.tex + texmf-dist/doc/context/sources/general/fonts/fonts/fonts-features.tex + texmf-dist/doc/context/sources/general/fonts/fonts/fonts-formats.tex + texmf-dist/doc/context/sources/general/fonts/fonts/fonts-hooks.tex + texmf-dist/doc/context/sources/general/fonts/fonts/fonts-introduction.tex + texmf-dist/doc/context/sources/general/fonts/fonts/fonts-lookups.tex + texmf-dist/doc/context/sources/general/fonts/fonts/fonts-math.tex + texmf-dist/doc/context/sources/general/fonts/fonts/fonts-methods.tex + texmf-dist/doc/context/sources/general/fonts/fonts/fonts-mkiv.tex + texmf-dist/doc/context/sources/general/fonts/fonts/fonts-modes.tex + texmf-dist/doc/context/sources/general/fonts/fonts/fonts-scripts.tex + texmf-dist/doc/context/sources/general/fonts/fonts/fonts-tricks.tex + texmf-dist/doc/context/sources/general/fonts/manuals-explaining-contents.tex + texmf-dist/doc/context/sources/general/fonts/manuals-explaining-cover.tex + texmf-dist/doc/context/sources/general/fonts/manuals-explaining-environment.tex + texmf-dist/doc/context/sources/general/magazines/mag-0000-mkiv.tex + texmf-dist/doc/context/sources/general/magazines/mag-0002-mkiv.tex + texmf-dist/doc/context/sources/general/magazines/mag-0006-mkiv.tex + texmf-dist/doc/context/sources/general/magazines/mag-0007-mkiv.tex + texmf-dist/doc/context/sources/general/magazines/mag-0010-mkiv.tex + texmf-dist/doc/context/sources/general/magazines/mag-1101-mkiv.tex + texmf-dist/doc/context/sources/general/magazines/mag-1102-mkiv.tex + texmf-dist/doc/context/sources/general/magazines/mag-1103-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/about/about-calls.tex + texmf-dist/doc/context/sources/general/manuals/about/about-contents.tex + texmf-dist/doc/context/sources/general/manuals/about/about-environment.tex + texmf-dist/doc/context/sources/general/manuals/about/about-expanding.tex + texmf-dist/doc/context/sources/general/manuals/about/about-hashing.tex + texmf-dist/doc/context/sources/general/manuals/about/about-hz.tex + texmf-dist/doc/context/sources/general/manuals/about/about-introduction.tex + texmf-dist/doc/context/sources/general/manuals/about/about-jitting-jit-2013-06-04.lua + texmf-dist/doc/context/sources/general/manuals/about/about-jitting-jit.lua + texmf-dist/doc/context/sources/general/manuals/about/about-jitting.tex + texmf-dist/doc/context/sources/general/manuals/about/about-luafunctions.tex + texmf-dist/doc/context/sources/general/manuals/about/about-mathstackers.tex + texmf-dist/doc/context/sources/general/manuals/about/about-mathstyles.tex + texmf-dist/doc/context/sources/general/manuals/about/about-metafun.tex + texmf-dist/doc/context/sources/general/manuals/about/about-mobility.tex + texmf-dist/doc/context/sources/general/manuals/about/about-nodes.tex + texmf-dist/doc/context/sources/general/manuals/about/about-nuts.tex + texmf-dist/doc/context/sources/general/manuals/about/about-properties.tex + texmf-dist/doc/context/sources/general/manuals/about/about-speed.tex + texmf-dist/doc/context/sources/general/manuals/about/about-threequarters.tex + texmf-dist/doc/context/sources/general/manuals/about/about-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/about/about.tex + texmf-dist/doc/context/sources/general/manuals/about/demo-data.lua + texmf-dist/doc/context/sources/general/manuals/about/luatest-hash-luajittex-073-JIT20.lua + texmf-dist/doc/context/sources/general/manuals/about/luatest-hash-luajittex-073-LUA51-40-6.lua + texmf-dist/doc/context/sources/general/manuals/about/luatest-hash-luajittex-073-LUA51.lua + texmf-dist/doc/context/sources/general/manuals/about/luatest-hash-luatex-073-LUA52-40-6.lua + texmf-dist/doc/context/sources/general/manuals/about/luatest-hash-luatex-073-LUA52.lua + texmf-dist/doc/context/sources/general/manuals/about/pi-speed-1.tex + texmf-dist/doc/context/sources/general/manuals/about/pi-speed-2.tex + texmf-dist/doc/context/sources/general/manuals/about/pi-speed-3.tex + texmf-dist/doc/context/sources/general/manuals/about/pi-speed-4.tex + texmf-dist/doc/context/sources/general/manuals/about/pi-speed-5.tex + texmf-dist/doc/context/sources/general/manuals/about/still-expanding-1.png + texmf-dist/doc/context/sources/general/manuals/about/still-expanding-10.png + texmf-dist/doc/context/sources/general/manuals/about/still-expanding-2.png + texmf-dist/doc/context/sources/general/manuals/about/still-expanding-3.png + texmf-dist/doc/context/sources/general/manuals/about/still-expanding-4.png + texmf-dist/doc/context/sources/general/manuals/about/still-expanding-5.png + texmf-dist/doc/context/sources/general/manuals/about/still-expanding-6.png + texmf-dist/doc/context/sources/general/manuals/about/still-expanding-7.png + texmf-dist/doc/context/sources/general/manuals/about/still-expanding-8.png + texmf-dist/doc/context/sources/general/manuals/about/still-expanding-9.png + texmf-dist/doc/context/sources/general/manuals/bidi/bidi.tex + texmf-dist/doc/context/sources/general/manuals/charts/charts-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-abitoflua.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-afewdetails.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-backendcode.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-callbacks.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-contents.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-ctxfunctions.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-environment.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-files.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-gettingstarted.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-goodies.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-graphics.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-introduction.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-logging.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-luafunctions.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-macros.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-moreonfunctions.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-nicetoknow.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-somemoreexamples.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-specialcommands.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-summary.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/cld/cld-verbatim.tex + texmf-dist/doc/context/sources/general/manuals/colors/colors-basics.tex + texmf-dist/doc/context/sources/general/manuals/colors/colors-environment.tex + texmf-dist/doc/context/sources/general/manuals/colors/colors-graphics.tex + texmf-dist/doc/context/sources/general/manuals/colors/colors-introduction.tex + texmf-dist/doc/context/sources/general/manuals/colors/colors-metafun.tex + texmf-dist/doc/context/sources/general/manuals/colors/colors-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-000.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-001.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-002.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-003.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-004.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-005.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-006.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-007.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-101.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-102.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-103.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-201.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-202.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-203.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-204.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-205.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-206.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-301.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-401.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-402.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-403.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-404.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-405.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-601.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-701.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-702.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-703.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-704.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-801.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-802.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-803.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-804.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-805.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-806.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-901.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-902.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets-903.tex + texmf-dist/doc/context/sources/general/manuals/columnsets/columnsets.tex + texmf-dist/doc/context/sources/general/manuals/details/back-0.tex + texmf-dist/doc/context/sources/general/manuals/details/back-1.tex + texmf-dist/doc/context/sources/general/manuals/details/back-2.tex + texmf-dist/doc/context/sources/general/manuals/details/back-4.tex + texmf-dist/doc/context/sources/general/manuals/details/back-5.tex + texmf-dist/doc/context/sources/general/manuals/details/cow.pdf + texmf-dist/doc/context/sources/general/manuals/details/details-backpage.tex + texmf-dist/doc/context/sources/general/manuals/details/details-captiontrickery.tex + texmf-dist/doc/context/sources/general/manuals/details/details-colofon.tex + texmf-dist/doc/context/sources/general/manuals/details/details-contents.tex + texmf-dist/doc/context/sources/general/manuals/details/details-environment.tex + texmf-dist/doc/context/sources/general/manuals/details/details-finetuningfloats.tex + texmf-dist/doc/context/sources/general/manuals/details/details-floatingaround.tex + texmf-dist/doc/context/sources/general/manuals/details/details-frontpage.tex + texmf-dist/doc/context/sources/general/manuals/details/details-gridtrickery.tex + texmf-dist/doc/context/sources/general/manuals/details/details-index.tex + texmf-dist/doc/context/sources/general/manuals/details/details-introduction.tex + texmf-dist/doc/context/sources/general/manuals/details/details-ornaments.tex + texmf-dist/doc/context/sources/general/manuals/details/details-pseudocolumns.tex + texmf-dist/doc/context/sources/general/manuals/details/details-snappingheads.tex + texmf-dist/doc/context/sources/general/manuals/details/details-textbackgrounds.tex + texmf-dist/doc/context/sources/general/manuals/details/details-tuningformulas.tex + texmf-dist/doc/context/sources/general/manuals/details/details.tex + texmf-dist/doc/context/sources/general/manuals/details/detcow.mp + texmf-dist/doc/context/sources/general/manuals/details/detcow.tex + texmf-dist/doc/context/sources/general/manuals/details/detcowmp.mps + texmf-dist/doc/context/sources/general/manuals/details/hacker.jpg + texmf-dist/doc/context/sources/general/manuals/details/mill.png + texmf-dist/doc/context/sources/general/manuals/epub/epub-mkiv-demo.tex + texmf-dist/doc/context/sources/general/manuals/epub/epub-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/graphics/graphics.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/benchmark-1.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/benchmark-2.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/benchmark-3.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/benchmark-4.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/benchmark-5.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/calibri-fontshop.png + texmf-dist/doc/context/sources/general/manuals/hybrid/ebook-metafun-1.png + texmf-dist/doc/context/sources/general/manuals/hybrid/ebook-metafun-2.png + texmf-dist/doc/context/sources/general/manuals/hybrid/ebook-pdf.png + texmf-dist/doc/context/sources/general/manuals/hybrid/ebook-xhtml.png + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-backend.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-bidi.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-callbacks.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-characters.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-codebase.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-contents.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-ebooks.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-environment.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-export.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-fontnames.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-glocal.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-goodies.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-grouping.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-inserts.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-intermezzo.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-introduction.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-italics.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-jit.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-languages.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-math.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-mathml.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-merge.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-mkvi.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-optimize.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-parbuilder.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-partests.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-tags.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid-weird.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/hybrid.tex + texmf-dist/doc/context/sources/general/manuals/hybrid/luatex-co-acceptablelowres.jpg + texmf-dist/doc/context/sources/general/manuals/hybrid/mtx-server-ctx-fonttest.png + texmf-dist/doc/context/sources/general/manuals/hybrid/tagged-001.png + texmf-dist/doc/context/sources/general/manuals/hybrid/tagged-002.png + texmf-dist/doc/context/sources/general/manuals/hybrid/tagged-003.png + texmf-dist/doc/context/sources/general/manuals/hybrid/tagged-004.png + texmf-dist/doc/context/sources/general/manuals/hybrid/tagged-005.png + texmf-dist/doc/context/sources/general/manuals/hybrid/tagged-006.png + texmf-dist/doc/context/sources/general/manuals/hybrid/tagged-007.png + texmf-dist/doc/context/sources/general/manuals/hybrid/tagged-008.png + texmf-dist/doc/context/sources/general/manuals/hybrid/tagged-009.png + texmf-dist/doc/context/sources/general/manuals/hybrid/tagged-010.png + texmf-dist/doc/context/sources/general/manuals/hybrid/tagged-011.png + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-actions.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-annotations.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-attachments.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-bookmarks.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-buttons.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-comments.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-contents.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-enabling.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-hyperlinks.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-importing.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-introduction.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-javascript.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-menus.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-progress.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-structure.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-style.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-tagging.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-transitions.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction-widgets.tex + texmf-dist/doc/context/sources/general/manuals/interaction/interaction.tex + texmf-dist/doc/context/sources/general/manuals/languages/languages-appendix.tex + texmf-dist/doc/context/sources/general/manuals/languages/languages-basics.tex + texmf-dist/doc/context/sources/general/manuals/languages/languages-environment.tex + texmf-dist/doc/context/sources/general/manuals/languages/languages-goodies.tex + texmf-dist/doc/context/sources/general/manuals/languages/languages-hyphenation.tex + texmf-dist/doc/context/sources/general/manuals/languages/languages-introduction.tex + texmf-dist/doc/context/sources/general/manuals/languages/languages-labels.tex + texmf-dist/doc/context/sources/general/manuals/languages/languages-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/languages/languages-numbering.tex + texmf-dist/doc/context/sources/general/manuals/languages/languages-sorting.tex + texmf-dist/doc/context/sources/general/manuals/libraries/libraries-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/lua/lua-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-contents.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-enhancements.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-firstpage.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-fonts.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-introduction.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-languages.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-logos.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-lua.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-math.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-modifications.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-nodes.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-preamble.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-registers.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-statistics.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-style.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/luatex/luatex.tex + texmf-dist/doc/context/sources/general/manuals/manuals-explaining-contents.tex + texmf-dist/doc/context/sources/general/manuals/manuals-explaining-cover.tex + texmf-dist/doc/context/sources/general/manuals/manuals-explaining-environment.tex + texmf-dist/doc/context/sources/general/manuals/manuals-xml-environment.tex + texmf-dist/doc/context/sources/general/manuals/math/math-alignments.tex + texmf-dist/doc/context/sources/general/manuals/math/math-combining.tex + texmf-dist/doc/context/sources/general/manuals/math/math-contents.tex + texmf-dist/doc/context/sources/general/manuals/math/math-definitions.tex + texmf-dist/doc/context/sources/general/manuals/math/math-features.tex + texmf-dist/doc/context/sources/general/manuals/math/math-framing-001.tex + texmf-dist/doc/context/sources/general/manuals/math/math-framing.tex + texmf-dist/doc/context/sources/general/manuals/math/math-input.tex + texmf-dist/doc/context/sources/general/manuals/math/math-introduction.tex + texmf-dist/doc/context/sources/general/manuals/math/math-layout.tex + texmf-dist/doc/context/sources/general/manuals/math/math-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/math/math-numbering.tex + texmf-dist/doc/context/sources/general/manuals/math/math-oddities.tex + texmf-dist/doc/context/sources/general/manuals/math/math-spacing-001.tex + texmf-dist/doc/context/sources/general/manuals/math/math-spacing.tex + texmf-dist/doc/context/sources/general/manuals/math/math-suboptimal.tex + texmf-dist/doc/context/sources/general/manuals/math/math-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/math/math-tricks.tex + texmf-dist/doc/context/sources/general/manuals/mathml/envexamp.tex + texmf-dist/doc/context/sources/general/manuals/mathml/mmlexamp.tex + texmf-dist/doc/context/sources/general/manuals/mathml/mmlprime.tex + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-001.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-002.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-003.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-004.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-005.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-006.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-007.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-008.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-009.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-010.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-011.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-043.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-d-051.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-i-022.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-i-380.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-s-001.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-s-002.xml + texmf-dist/doc/context/sources/general/manuals/mathml/pc-s-003.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-001.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-002.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-003.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-004.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-005.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-006.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-007.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-008.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-009.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-010.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-011.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-012.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-013.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-014.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-015.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-g-016.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-l-001.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-l-002.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-l-003.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-l-004.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-s-001.xml + texmf-dist/doc/context/sources/general/manuals/mathml/wh-s-002.xml + texmf-dist/doc/context/sources/general/manuals/mcommon.tex + texmf-dist/doc/context/sources/general/manuals/metafun/cow-fun.mps + texmf-dist/doc/context/sources/general/manuals/metafun/hacker.png + texmf-dist/doc/context/sources/general/manuals/metafun/m-1.png + texmf-dist/doc/context/sources/general/manuals/metafun/m-2.png + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-backgrounds.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-backpage.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-basics.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-colofon-paper.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-colofon-screen.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-colofon.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-contents.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-conventions.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-debugging.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-document.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-effects.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-embedding.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-environment-layout.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-environment-samples.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-environment-screen.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-environment.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-examples.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-functions.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-gadgets.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-graphics.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-index.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-introduction.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-layout.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-lua.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-macros.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-positioning.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-reference.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-sneaky.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-styles.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-syntax.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-text.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-titlepage-paper.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-titlepage-screen.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun-welcome.tex + texmf-dist/doc/context/sources/general/manuals/metafun/metafun.tex + texmf-dist/doc/context/sources/general/manuals/metafun/mfun-700.tex + texmf-dist/doc/context/sources/general/manuals/metafun/mfun-771.tex + texmf-dist/doc/context/sources/general/manuals/metafun/mfun-772.tex + texmf-dist/doc/context/sources/general/manuals/metafun/mfun-773.tex + texmf-dist/doc/context/sources/general/manuals/metafun/mfun-774.tex + texmf-dist/doc/context/sources/general/manuals/metafun/mfun-775.tex + texmf-dist/doc/context/sources/general/manuals/metafun/mfun-776.tex + texmf-dist/doc/context/sources/general/manuals/metafun/mfun-800.tex + texmf-dist/doc/context/sources/general/manuals/metafun/mfun-900.tex + texmf-dist/doc/context/sources/general/manuals/metafun/mfun-901.tex + texmf-dist/doc/context/sources/general/manuals/metafun/mfun-902.tex + texmf-dist/doc/context/sources/general/manuals/metafun/mfun-mrun-demo.mp + texmf-dist/doc/context/sources/general/manuals/metafun/mycow.mp + texmf-dist/doc/context/sources/general/manuals/metafun/mycow.pdf + texmf-dist/doc/context/sources/general/manuals/metafun/somecow.pdf + texmf-dist/doc/context/sources/general/manuals/mk/luatexref-t-luatex-progress-intermediate.lut + texmf-dist/doc/context/sources/general/manuals/mk/luatexref-t-luatex-progress-runtime.lut + texmf-dist/doc/context/sources/general/manuals/mk/mk-arabic.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-breakingapart.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-calcmath.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-cjk.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-code.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-colors.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-contents.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-debug.png + texmf-dist/doc/context/sources/general/manuals/mk/mk-dirtytricks.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-environment.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-error.png + texmf-dist/doc/context/sources/general/manuals/mk/mk-fallback.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-fonts.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-goingbeta.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-goingutf.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-halfway.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-iitoiv.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-initialization.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-introduction.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-itworks.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-last-state.pdf + texmf-dist/doc/context/sources/general/manuals/mk/mk-last.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-luafitsin.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-luatex-progress.lut + texmf-dist/doc/context/sources/general/manuals/mk/mk-math.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-memory.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-mix.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-mplib.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-nicetoknow.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-nodes.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-open.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-optimization.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-order.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-performance.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-plain.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-punk.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-reflection.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-structure.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-timing-1-luatex-progress.lut + texmf-dist/doc/context/sources/general/manuals/mk/mk-timing-1.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-timing-2-luatex-progress.lut + texmf-dist/doc/context/sources/general/manuals/mk/mk-timing-2.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-timing-3-luatex-progress.lut + texmf-dist/doc/context/sources/general/manuals/mk/mk-timing-3.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-tokenspeak.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-tracking.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-xml.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk-xml.xml + texmf-dist/doc/context/sources/general/manuals/mk/mk-zapfino.tex + texmf-dist/doc/context/sources/general/manuals/mk/mk.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings-children.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings-contents.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings-introduction.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings-perception.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings-roadmap.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings-stability.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings-staygo.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings-style.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings-whytex.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings.tex + texmf-dist/doc/context/sources/general/manuals/nodes/nodes-sun-pia-03149.jpg + texmf-dist/doc/context/sources/general/manuals/nodes/nodes-sun-pia-03150.jpg + texmf-dist/doc/context/sources/general/manuals/nodes/nodes.tex + texmf-dist/doc/context/sources/general/manuals/notnow/notnow-columns-and-notes.tex + texmf-dist/doc/context/sources/general/manuals/notnow/notnow-sidefloats.tex + texmf-dist/doc/context/sources/general/manuals/notnow/notnow.tex + texmf-dist/doc/context/sources/general/manuals/onandon/m-fonts-plugins-timings-luajittex.lua + texmf-dist/doc/context/sources/general/manuals/onandon/m-fonts-plugins-timings-luatex.lua + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-110.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-53.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-decade.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-editing.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-emoji.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-execute.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-expansion.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-fences.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-ffi.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-media.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-modern.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-performance.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-runtoks.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-seguiemj.pdf + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-seguiemj.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-000.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-001.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-002.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-003.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-005.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-006.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-007.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-008.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-009.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-010.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-011.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-012.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon-variable.tex + texmf-dist/doc/context/sources/general/manuals/onandon/onandon.tex + texmf-dist/doc/context/sources/general/manuals/pagecolumns/pagecolumns-000.tex + texmf-dist/doc/context/sources/general/manuals/pagecolumns/pagecolumns-001.tex + texmf-dist/doc/context/sources/general/manuals/pagecolumns/pagecolumns-002.tex + texmf-dist/doc/context/sources/general/manuals/pagecolumns/pagecolumns-003.tex + texmf-dist/doc/context/sources/general/manuals/pagecolumns/pagecolumns-004.tex + texmf-dist/doc/context/sources/general/manuals/pagecolumns/pagecolumns-005.tex + texmf-dist/doc/context/sources/general/manuals/pagecolumns/pagecolumns-006.tex + texmf-dist/doc/context/sources/general/manuals/pagecolumns/pagecolumns-007.tex + texmf-dist/doc/context/sources/general/manuals/pagecolumns/pagecolumns.tex + texmf-dist/doc/context/sources/general/manuals/publications/122176.pdf + texmf-dist/doc/context/sources/general/manuals/publications/124484.mol + texmf-dist/doc/context/sources/general/manuals/publications/124484.pdf + texmf-dist/doc/context/sources/general/manuals/publications/4953942.mol + texmf-dist/doc/context/sources/general/manuals/publications/4953942.pdf + texmf-dist/doc/context/sources/general/manuals/publications/971.mol + texmf-dist/doc/context/sources/general/manuals/publications/971.pdf + texmf-dist/doc/context/sources/general/manuals/publications/C6H6O.bib + texmf-dist/doc/context/sources/general/manuals/publications/boekplan.bib + texmf-dist/doc/context/sources/general/manuals/publications/duane.bib + texmf-dist/doc/context/sources/general/manuals/publications/manuals.bib + texmf-dist/doc/context/sources/general/manuals/publications/mkiv-publications.bib + texmf-dist/doc/context/sources/general/manuals/publications/mkiv-publications.lua + texmf-dist/doc/context/sources/general/manuals/publications/mkiv-publications.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-citations.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-completeness.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-contents.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-customize.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-database.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-datasets.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-exporting.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-extensions.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-fields.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-introduction.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-journals.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-lua.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-otheruse.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-overviews.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-performance.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-quick-example.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-quick.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-rendering.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-style.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/publications/publications-tracing.tex + texmf-dist/doc/context/sources/general/manuals/publications/template-clean.bib + texmf-dist/doc/context/sources/general/manuals/readme/mreadme.tex + texmf-dist/doc/context/sources/general/manuals/rules/rules-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/spacing/spacing-contents.tex + texmf-dist/doc/context/sources/general/manuals/spacing/spacing-introduction.tex + texmf-dist/doc/context/sources/general/manuals/spacing/spacing-linecorrection.tex + texmf-dist/doc/context/sources/general/manuals/spacing/spacing-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/spacing/spacing-periods.tex + texmf-dist/doc/context/sources/general/manuals/spacing/spacing-spaces.tex + texmf-dist/doc/context/sources/general/manuals/spacing/spacing-style.tex + texmf-dist/doc/context/sources/general/manuals/spacing/spacing-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/spreadsheets/spreadsheets-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/sql/sql-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/start/en/hasseltbook.bib + texmf-dist/doc/context/sources/general/manuals/start/en/hasseltbook.pdf + texmf-dist/doc/context/sources/general/manuals/start/en/hasseltbook.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-alignments.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-backpage.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-bibliography.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-chemical.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-citations.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-color.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-columns.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-commandlist.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-commands.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-composedcharacters.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-descriptions.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-document.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-enumerations.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-errors.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-figures.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-fonts.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-footnotes.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-framedtexts.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-frames.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-gettingstarted.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-headers.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-heads.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-interactivity.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-introduction.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-itemizations.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-layout.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-margintexts.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-math.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-mathcharacters.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-metapost.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-modules.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-pagebackgrounds.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-pages.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-paragraphs.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-presentations.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-processingfiles.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-references.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-registers.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-runtimefiles.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-setupcommands.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-sortedlists.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-specialcharacters.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-structure.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-support.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-synonyms.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-tables.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-tablesofcontent.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-tabulations.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-textbackgrounds.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-texteditor.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-units.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-usersetups.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en-whatever.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en.pdf + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-en.tex + texmf-dist/doc/context/sources/general/manuals/start/en/ma-cb-language.tex + texmf-dist/doc/context/sources/general/manuals/start/en/sounds-001.tex + texmf-dist/doc/context/sources/general/manuals/start/graphics/cow.pdf + texmf-dist/doc/context/sources/general/manuals/start/graphics/fig-page-areas-en.pdf + texmf-dist/doc/context/sources/general/manuals/start/graphics/fig-page-parameters-en.pdf + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-00.eps + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-00.mp + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-00.pdf + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-01.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-03.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-04.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-07.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-08.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-12.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-13.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-15.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-16.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-18.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-19.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-20.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-21.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-22.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-23.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-24.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-25.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/ma-cb-26.png + texmf-dist/doc/context/sources/general/manuals/start/graphics/minibook-en.pdf + texmf-dist/doc/context/sources/general/manuals/start/graphics/minibook-en.tex + texmf-dist/doc/context/sources/general/manuals/start/ma-cb-abbreviations.tex + texmf-dist/doc/context/sources/general/manuals/start/ma-cb-colofon.tex + texmf-dist/doc/context/sources/general/manuals/start/ma-cb-copyright.tex + texmf-dist/doc/context/sources/general/manuals/start/ma-cb-graphics.tex + texmf-dist/doc/context/sources/general/manuals/start/ma-cb-links.tex + texmf-dist/doc/context/sources/general/manuals/start/ma-cb-screen.tex + texmf-dist/doc/context/sources/general/manuals/start/ma-cb-style.tex + texmf-dist/doc/context/sources/general/manuals/start/ma-cb.tex + texmf-dist/doc/context/sources/general/manuals/steps/steps-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/still/still-acrobat-math.png + texmf-dist/doc/context/sources/general/manuals/still/still-acrobat-text.png + texmf-dist/doc/context/sources/general/manuals/still/still-backend.tex + texmf-dist/doc/context/sources/general/manuals/still/still-contents.tex + texmf-dist/doc/context/sources/general/manuals/still/still-environment.tex + texmf-dist/doc/context/sources/general/manuals/still/still-expanding.tex + texmf-dist/doc/context/sources/general/manuals/still/still-introduction.tex + texmf-dist/doc/context/sources/general/manuals/still/still-math-stripe.png + texmf-dist/doc/context/sources/general/manuals/still/still-math.tex + texmf-dist/doc/context/sources/general/manuals/still/still-one.tex + texmf-dist/doc/context/sources/general/manuals/still/still-opentypemath.tex + texmf-dist/doc/context/sources/general/manuals/still/still-profiling.tex + texmf-dist/doc/context/sources/general/manuals/still/still-simple.tex + texmf-dist/doc/context/sources/general/manuals/still/still-sumatra-math.png + texmf-dist/doc/context/sources/general/manuals/still/still-sumatra-text.png + texmf-dist/doc/context/sources/general/manuals/still/still-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/still/still-tokens.tex + texmf-dist/doc/context/sources/general/manuals/still/still.tex + texmf-dist/doc/context/sources/general/manuals/swiglib/swiglib-mkiv-gm-1.jpg + texmf-dist/doc/context/sources/general/manuals/swiglib/swiglib-mkiv-gm-1.pdf + texmf-dist/doc/context/sources/general/manuals/swiglib/swiglib-mkiv-gm-1.png + texmf-dist/doc/context/sources/general/manuals/swiglib/swiglib-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/templates/templates-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/texit/texit-conditions.tex + texmf-dist/doc/context/sources/general/manuals/texit/texit-contents.tex + texmf-dist/doc/context/sources/general/manuals/texit/texit-introduction.tex + texmf-dist/doc/context/sources/general/manuals/texit/texit-leaders.tex + texmf-dist/doc/context/sources/general/manuals/texit/texit-lookahead.tex + texmf-dist/doc/context/sources/general/manuals/texit/texit-style.tex + texmf-dist/doc/context/sources/general/manuals/texit/texit-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/texit/texit.tex + texmf-dist/doc/context/sources/general/manuals/tiptrick/tiptrick.tex + texmf-dist/doc/context/sources/general/manuals/tiptrick/tiptrick.xml + texmf-dist/doc/context/sources/general/manuals/tools/tools-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/units/units-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-contents.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-graphics.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-injectors.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-introduction.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-resources.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-running.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-setups.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-style.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-suspects.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-synctex.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/workflows/workflows-xml.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-01.xml + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-02.xml + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-commands.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-contents.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-converter.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-examples.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-expressions.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-filtering.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-introduction.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-lookups.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-lpath.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-style.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-tricks.tex + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/xtables/xtables-mkiv.tex + texmf-dist/doc/man/man1/context.1 + texmf-dist/doc/man/man1/context.man1.pdf + texmf-dist/doc/man/man1/luatools.1 + texmf-dist/doc/man/man1/luatools.man1.pdf + texmf-dist/doc/man/man1/mtx-babel.1 + texmf-dist/doc/man/man1/mtx-babel.man1.pdf + texmf-dist/doc/man/man1/mtx-base.1 + texmf-dist/doc/man/man1/mtx-base.man1.pdf + texmf-dist/doc/man/man1/mtx-bibtex.1 + texmf-dist/doc/man/man1/mtx-bibtex.man1.pdf + texmf-dist/doc/man/man1/mtx-cache.1 + texmf-dist/doc/man/man1/mtx-cache.man1.pdf + texmf-dist/doc/man/man1/mtx-chars.1 + texmf-dist/doc/man/man1/mtx-chars.man1.pdf + texmf-dist/doc/man/man1/mtx-check.1 + texmf-dist/doc/man/man1/mtx-check.man1.pdf + texmf-dist/doc/man/man1/mtx-colors.1 + texmf-dist/doc/man/man1/mtx-colors.man1.pdf + texmf-dist/doc/man/man1/mtx-context.1 + texmf-dist/doc/man/man1/mtx-context.man1.pdf + texmf-dist/doc/man/man1/mtx-dvi.1 + texmf-dist/doc/man/man1/mtx-dvi.man1.pdf + texmf-dist/doc/man/man1/mtx-epub.1 + texmf-dist/doc/man/man1/mtx-epub.man1.pdf + texmf-dist/doc/man/man1/mtx-evohome.1 + texmf-dist/doc/man/man1/mtx-evohome.man1.pdf + texmf-dist/doc/man/man1/mtx-fcd.1 + texmf-dist/doc/man/man1/mtx-fcd.man1.pdf + texmf-dist/doc/man/man1/mtx-flac.1 + texmf-dist/doc/man/man1/mtx-flac.man1.pdf + texmf-dist/doc/man/man1/mtx-fonts.1 + texmf-dist/doc/man/man1/mtx-fonts.man1.pdf + texmf-dist/doc/man/man1/mtx-grep.1 + texmf-dist/doc/man/man1/mtx-grep.man1.pdf + texmf-dist/doc/man/man1/mtx-interface.1 + texmf-dist/doc/man/man1/mtx-interface.man1.pdf + texmf-dist/doc/man/man1/mtx-metapost.1 + texmf-dist/doc/man/man1/mtx-metapost.man1.pdf + texmf-dist/doc/man/man1/mtx-modules.1 + texmf-dist/doc/man/man1/mtx-modules.man1.pdf + texmf-dist/doc/man/man1/mtx-package.1 + texmf-dist/doc/man/man1/mtx-package.man1.pdf + texmf-dist/doc/man/man1/mtx-pdf.1 + texmf-dist/doc/man/man1/mtx-pdf.man1.pdf + texmf-dist/doc/man/man1/mtx-plain.1 + texmf-dist/doc/man/man1/mtx-plain.man1.pdf + texmf-dist/doc/man/man1/mtx-profile.1 + texmf-dist/doc/man/man1/mtx-profile.man1.pdf + texmf-dist/doc/man/man1/mtx-rsync.1 + texmf-dist/doc/man/man1/mtx-rsync.man1.pdf + texmf-dist/doc/man/man1/mtx-scite.1 + texmf-dist/doc/man/man1/mtx-scite.man1.pdf + texmf-dist/doc/man/man1/mtx-server.1 + texmf-dist/doc/man/man1/mtx-server.man1.pdf + texmf-dist/doc/man/man1/mtx-texworks.1 + texmf-dist/doc/man/man1/mtx-texworks.man1.pdf + texmf-dist/doc/man/man1/mtx-timing.1 + texmf-dist/doc/man/man1/mtx-timing.man1.pdf + texmf-dist/doc/man/man1/mtx-tools.1 + texmf-dist/doc/man/man1/mtx-tools.man1.pdf + texmf-dist/doc/man/man1/mtx-unicode.1 + texmf-dist/doc/man/man1/mtx-unicode.man1.pdf + texmf-dist/doc/man/man1/mtx-unzip.1 + texmf-dist/doc/man/man1/mtx-unzip.man1.pdf + texmf-dist/doc/man/man1/mtx-update.1 + texmf-dist/doc/man/man1/mtx-update.man1.pdf + texmf-dist/doc/man/man1/mtx-watch.1 + texmf-dist/doc/man/man1/mtx-watch.man1.pdf + texmf-dist/doc/man/man1/mtx-youless.1 + texmf-dist/doc/man/man1/mtx-youless.man1.pdf + texmf-dist/doc/man/man1/mtxrun.1 + texmf-dist/doc/man/man1/mtxrun.man1.pdf + texmf-dist/doc/man/man1/texexec.1 + texmf-dist/doc/man/man1/texexec.man1.pdf + texmf-dist/doc/man/man1/texmfstart.1 + texmf-dist/doc/man/man1/texmfstart.man1.pdf +runfiles size=14836 + texmf-dist/bibtex/bst/context/mkii/cont-ab.bst + texmf-dist/bibtex/bst/context/mkii/cont-au.bst + texmf-dist/bibtex/bst/context/mkii/cont-no.bst + texmf-dist/bibtex/bst/context/mkii/cont-ti.bst + texmf-dist/context/data/npp/context/notepad++.ini + texmf-dist/context/data/scite/context/documents/scite-context-readme.pdf + texmf-dist/context/data/scite/context/documents/scite-context-readme.tex + texmf-dist/context/data/scite/context/documents/scite-context-visual.pdf + texmf-dist/context/data/scite/context/documents/scite-context-visual.png + texmf-dist/context/data/scite/context/lexers/data/scite-context-data-bidi.lua + texmf-dist/context/data/scite/context/lexers/data/scite-context-data-context.lua + texmf-dist/context/data/scite/context/lexers/data/scite-context-data-interfaces.lua + texmf-dist/context/data/scite/context/lexers/data/scite-context-data-metafun.lua + texmf-dist/context/data/scite/context/lexers/data/scite-context-data-metapost.lua + texmf-dist/context/data/scite/context/lexers/data/scite-context-data-tex.lua + texmf-dist/context/data/scite/context/lexers/lexer.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-bibtex.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-bnf.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-cld.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-cpp-web.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-cpp.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-dummy.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-json.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-lua-longstring.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-lua.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-mps.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-pdf-object.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-pdf-xref.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-pdf.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-sql.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-tex-web.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-tex.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-txt.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-web-snippets.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-web.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-xml-cdata.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-xml-comment.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-xml-script.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer-xml.lua + texmf-dist/context/data/scite/context/lexers/scite-context-lexer.lua + texmf-dist/context/data/scite/context/lexers/themes/scite-context-theme.lua + texmf-dist/context/data/scite/context/scite-context-data-context.properties + texmf-dist/context/data/scite/context/scite-context-data-interfaces.properties + texmf-dist/context/data/scite/context/scite-context-data-metafun.properties + texmf-dist/context/data/scite/context/scite-context-data-metapost.properties + texmf-dist/context/data/scite/context/scite-context-data-tex.properties + texmf-dist/context/data/scite/context/scite-context-external.properties + texmf-dist/context/data/scite/context/scite-context-internal.properties + texmf-dist/context/data/scite/context/scite-context-user.properties + texmf-dist/context/data/scite/context/scite-context.properties + texmf-dist/context/data/scite/context/scite-ctx-bidi.lua + texmf-dist/context/data/scite/context/scite-ctx-context.properties + texmf-dist/context/data/scite/context/scite-ctx-example.properties + texmf-dist/context/data/scite/context/scite-ctx-templates.lua + texmf-dist/context/data/scite/context/scite-ctx.lua + texmf-dist/context/data/scite/context/scite-ctx.properties + texmf-dist/context/data/scite/context/scite-metapost.properties + texmf-dist/context/data/scite/context/scite-pragma.properties + texmf-dist/context/data/scite/context/scite-tex.properties + texmf-dist/context/data/texfont/type-buy.dat + texmf-dist/context/data/texfont/type-fsf.dat + texmf-dist/context/data/texfont/type-ghz.dat + texmf-dist/context/data/texfont/type-tmf.dat + texmf-dist/context/data/textadept/context/data/scite-context-data-bidi.lua + texmf-dist/context/data/textadept/context/data/scite-context-data-context.lua + texmf-dist/context/data/textadept/context/data/scite-context-data-interfaces.lua + texmf-dist/context/data/textadept/context/data/scite-context-data-metafun.lua + texmf-dist/context/data/textadept/context/data/scite-context-data-metapost.lua + texmf-dist/context/data/textadept/context/data/scite-context-data-tex.lua + texmf-dist/context/data/textadept/context/init.lua + texmf-dist/context/data/textadept/context/lexers/lexer.lua + texmf-dist/context/data/textadept/context/lexers/lexer.rme + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-bibtex.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-bidi.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-bnf.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-cld.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-cpp-web.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-cpp.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-dummy.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-json.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-lua-longstring.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-lua.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-mps.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-pdf-object.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-pdf-xref.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-pdf.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-sql.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-tex-web.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-tex.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-txt.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-web-snippets.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-web.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-xml-cdata.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-xml-comment.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-xml-script.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-xml.lua + texmf-dist/context/data/textadept/context/lexers/scite-context-lexer.lua + texmf-dist/context/data/textadept/context/lexers/text.lua + texmf-dist/context/data/textadept/context/modules/textadept-context-files.lua + texmf-dist/context/data/textadept/context/modules/textadept-context-runner.lua + texmf-dist/context/data/textadept/context/modules/textadept-context-settings.lua + texmf-dist/context/data/textadept/context/modules/textadept-context-types.lua + texmf-dist/context/data/textadept/context/textadept-context.cmd + texmf-dist/context/data/textadept/context/textadept-context.sh + texmf-dist/context/data/textadept/context/themes/scite-context-theme.lua + texmf-dist/context/data/texworks/TUG/TeXworks.ini + texmf-dist/context/data/texworks/completion/tw-context.txt + texmf-dist/context/data/texworks/configuration/auto-indent-patterns.txt + texmf-dist/context/data/texworks/configuration/delimiter-pairs.txt + texmf-dist/context/data/texworks/configuration/smart-quotes-modes.txt + texmf-dist/context/data/texworks/configuration/syntax-patterns.txt + texmf-dist/context/data/texworks/configuration/tag-patterns.txt + texmf-dist/context/data/texworks/configuration/texworks-config.txt + texmf-dist/context/data/texworks/configuration/tools.ini + texmf-dist/context/data/texworks/texworks-context.rme + texmf-dist/context/data/texworks/texworks-setup.ini + texmf-dist/fonts/afm/hoekwater/context/contnav.afm + texmf-dist/fonts/cid/fontforge/Adobe-CNS1-4.cidmap + texmf-dist/fonts/cid/fontforge/Adobe-GB1-4.cidmap + texmf-dist/fonts/cid/fontforge/Adobe-Identity-0.cidmap + texmf-dist/fonts/cid/fontforge/Adobe-Japan1-5.cidmap + texmf-dist/fonts/cid/fontforge/Adobe-Japan1-6.cidmap + texmf-dist/fonts/cid/fontforge/Adobe-Japan2-0.cidmap + texmf-dist/fonts/cid/fontforge/Adobe-Korea1-2.cidmap + texmf-dist/fonts/enc/dvips/context/cmin.enc + texmf-dist/fonts/enc/dvips/context/cmit.enc + texmf-dist/fonts/enc/dvips/context/cmitt.enc + texmf-dist/fonts/enc/dvips/context/cmrm.enc + texmf-dist/fonts/enc/dvips/context/cmsc.enc + texmf-dist/fonts/enc/dvips/context/cmtt.enc + texmf-dist/fonts/enc/dvips/context/ec-2004.enc + texmf-dist/fonts/enc/dvips/context/q-8r.enc + texmf-dist/fonts/enc/dvips/context/teff-trinite.enc + texmf-dist/fonts/map/dvips/context/contnav.map + texmf-dist/fonts/map/luatex/context/demo-font.lum + texmf-dist/fonts/map/pdftex/context/8r-base.map + texmf-dist/fonts/map/pdftex/context/ec-base.map + texmf-dist/fonts/map/pdftex/context/ec-os-public-lm.map + texmf-dist/fonts/map/pdftex/context/mkiv-base.map + texmf-dist/fonts/map/pdftex/context/mkiv-px.map + texmf-dist/fonts/map/pdftex/context/mkiv-tx.map + texmf-dist/fonts/map/pdftex/context/original-adobe-euro.map + texmf-dist/fonts/map/pdftex/context/original-ams-base.map + texmf-dist/fonts/map/pdftex/context/original-ams-cmr.map + texmf-dist/fonts/map/pdftex/context/original-ams-euler.map + texmf-dist/fonts/map/pdftex/context/original-base.map + texmf-dist/fonts/map/pdftex/context/original-context-symbol.map + texmf-dist/fonts/map/pdftex/context/original-dummy.map + texmf-dist/fonts/map/pdftex/context/original-empty.map + texmf-dist/fonts/map/pdftex/context/original-micropress-informal.map + texmf-dist/fonts/map/pdftex/context/original-public-csr.map + texmf-dist/fonts/map/pdftex/context/original-public-lm.map + texmf-dist/fonts/map/pdftex/context/original-public-plr.map + texmf-dist/fonts/map/pdftex/context/original-public-vnr.map + texmf-dist/fonts/map/pdftex/context/original-vogel-symbol.map + texmf-dist/fonts/map/pdftex/context/original-wasy.map + texmf-dist/fonts/map/pdftex/context/original-youngryu-px.map + texmf-dist/fonts/map/pdftex/context/original-youngryu-tx.map + texmf-dist/fonts/map/pdftex/context/qx-base.map + texmf-dist/fonts/map/pdftex/context/qx-os-public-lm.map + texmf-dist/fonts/map/pdftex/context/t5-base.map + texmf-dist/fonts/map/pdftex/context/t5-os-public-lm.map + texmf-dist/fonts/map/pdftex/context/texnansi-base.map + texmf-dist/fonts/map/pdftex/context/texnansi-os-public-lm.map + texmf-dist/fonts/misc/xetex/fontmapping/context/tlig.map + texmf-dist/fonts/misc/xetex/fontmapping/context/tlig.tec + texmf-dist/fonts/tfm/hoekwater/context/contnav.tfm + texmf-dist/fonts/type1/hoekwater/context/contnav.pfb + texmf-dist/fonts/type1/hoekwater/context/contnav.pfm + texmf-dist/metapost/context/base/common/metafun.mp + texmf-dist/metapost/context/base/common/mp-back.mp + texmf-dist/metapost/context/base/common/mp-fobg.mp + texmf-dist/metapost/context/base/common/mp-symb.mp + texmf-dist/metapost/context/base/mpii/metafun.mpii + texmf-dist/metapost/context/base/mpii/mp-back.mpii + texmf-dist/metapost/context/base/mpii/mp-base.mpii + texmf-dist/metapost/context/base/mpii/mp-butt.mpii + texmf-dist/metapost/context/base/mpii/mp-char.mpii + texmf-dist/metapost/context/base/mpii/mp-core.mpii + texmf-dist/metapost/context/base/mpii/mp-figs.mpii + texmf-dist/metapost/context/base/mpii/mp-fobg.mpii + texmf-dist/metapost/context/base/mpii/mp-form.mpii + texmf-dist/metapost/context/base/mpii/mp-func.mpii + texmf-dist/metapost/context/base/mpii/mp-grid.mpii + texmf-dist/metapost/context/base/mpii/mp-grph.mpii + texmf-dist/metapost/context/base/mpii/mp-page.mpii + texmf-dist/metapost/context/base/mpii/mp-shap.mpii + texmf-dist/metapost/context/base/mpii/mp-spec.mpii + texmf-dist/metapost/context/base/mpii/mp-step.mpii + texmf-dist/metapost/context/base/mpii/mp-symb.mpii + texmf-dist/metapost/context/base/mpii/mp-text.mpii + texmf-dist/metapost/context/base/mpii/mp-tool.mpii + texmf-dist/metapost/context/base/mpii/mp-txts.mpii + texmf-dist/metapost/context/base/mpiv/metafun.mpiv + texmf-dist/metapost/context/base/mpiv/minifun.mpiv + texmf-dist/metapost/context/base/mpiv/mp-abck.mpiv + texmf-dist/metapost/context/base/mpiv/mp-apos.mpiv + texmf-dist/metapost/context/base/mpiv/mp-asnc.mpiv + texmf-dist/metapost/context/base/mpiv/mp-back.mpiv + texmf-dist/metapost/context/base/mpiv/mp-bare.mpiv + texmf-dist/metapost/context/base/mpiv/mp-base.mpiv + texmf-dist/metapost/context/base/mpiv/mp-blob.mpiv + texmf-dist/metapost/context/base/mpiv/mp-butt.mpiv + texmf-dist/metapost/context/base/mpiv/mp-char.mpiv + texmf-dist/metapost/context/base/mpiv/mp-chem.mpiv + texmf-dist/metapost/context/base/mpiv/mp-core.mpiv + texmf-dist/metapost/context/base/mpiv/mp-cows.mpiv + texmf-dist/metapost/context/base/mpiv/mp-crop.mpiv + texmf-dist/metapost/context/base/mpiv/mp-figs.mpiv + texmf-dist/metapost/context/base/mpiv/mp-fobg.mpiv + texmf-dist/metapost/context/base/mpiv/mp-form.mpiv + texmf-dist/metapost/context/base/mpiv/mp-func.mpiv + texmf-dist/metapost/context/base/mpiv/mp-grap.mpiv + texmf-dist/metapost/context/base/mpiv/mp-grid.mpiv + texmf-dist/metapost/context/base/mpiv/mp-grph.mpiv + texmf-dist/metapost/context/base/mpiv/mp-idea.mpiv + texmf-dist/metapost/context/base/mpiv/mp-luas.mpiv + texmf-dist/metapost/context/base/mpiv/mp-mlib.mpiv + texmf-dist/metapost/context/base/mpiv/mp-node.mpiv + texmf-dist/metapost/context/base/mpiv/mp-page.mpiv + texmf-dist/metapost/context/base/mpiv/mp-shap.mpiv + texmf-dist/metapost/context/base/mpiv/mp-step.mpiv + texmf-dist/metapost/context/base/mpiv/mp-symb.mpiv + texmf-dist/metapost/context/base/mpiv/mp-text.mpiv + texmf-dist/metapost/context/base/mpiv/mp-tool.mpiv + texmf-dist/metapost/context/base/mpiv/mp-tres.mpiv + texmf-dist/metapost/context/fonts/mpiv/bidi-symbols.mp + texmf-dist/metapost/context/fonts/mpiv/bidi-symbols.tex + texmf-dist/metapost/context/fonts/mpiv/demo-symbols.mp + texmf-dist/metapost/context/fonts/mpiv/demo-symbols.tex + texmf-dist/metapost/context/fonts/mpiv/punkfont-bold.mp + texmf-dist/metapost/context/fonts/mpiv/punkfont-boldslanted.mp + texmf-dist/metapost/context/fonts/mpiv/punkfont-characters.mp + texmf-dist/metapost/context/fonts/mpiv/punkfont-definitions.mp + texmf-dist/metapost/context/fonts/mpiv/punkfont-slanted.mp + texmf-dist/metapost/context/fonts/mpiv/punkfont.mp + texmf-dist/scripts/context/lua/context.lua + texmf-dist/scripts/context/lua/mtx-babel.lua + texmf-dist/scripts/context/lua/mtx-base.lua + texmf-dist/scripts/context/lua/mtx-bibtex.lua + texmf-dist/scripts/context/lua/mtx-cache.lua + texmf-dist/scripts/context/lua/mtx-chars.lua + texmf-dist/scripts/context/lua/mtx-check.lua + texmf-dist/scripts/context/lua/mtx-colors.lua + texmf-dist/scripts/context/lua/mtx-context.lua + texmf-dist/scripts/context/lua/mtx-context.xml + texmf-dist/scripts/context/lua/mtx-convert.lua + texmf-dist/scripts/context/lua/mtx-dvi.lua + texmf-dist/scripts/context/lua/mtx-epub.lua + texmf-dist/scripts/context/lua/mtx-evohome.lua + texmf-dist/scripts/context/lua/mtx-fcd.lua + texmf-dist/scripts/context/lua/mtx-flac.lua + texmf-dist/scripts/context/lua/mtx-fonts.lua + texmf-dist/scripts/context/lua/mtx-grep.lua + texmf-dist/scripts/context/lua/mtx-install.lua + texmf-dist/scripts/context/lua/mtx-interface.lua + texmf-dist/scripts/context/lua/mtx-metapost.lua + texmf-dist/scripts/context/lua/mtx-mk-help.lua + texmf-dist/scripts/context/lua/mtx-modules.lua + texmf-dist/scripts/context/lua/mtx-package.lua + texmf-dist/scripts/context/lua/mtx-patterns.lua + texmf-dist/scripts/context/lua/mtx-pdf.lua + texmf-dist/scripts/context/lua/mtx-plain.lua + texmf-dist/scripts/context/lua/mtx-profile.lua + texmf-dist/scripts/context/lua/mtx-rsync.lua + texmf-dist/scripts/context/lua/mtx-scite.lua + texmf-dist/scripts/context/lua/mtx-server-ctx-fonttest.lua + texmf-dist/scripts/context/lua/mtx-server-ctx-help.lua + texmf-dist/scripts/context/lua/mtx-server-ctx-startup.lua + texmf-dist/scripts/context/lua/mtx-server.lua + texmf-dist/scripts/context/lua/mtx-synctex.lua + texmf-dist/scripts/context/lua/mtx-texworks.lua + texmf-dist/scripts/context/lua/mtx-timing.lua + texmf-dist/scripts/context/lua/mtx-tools.lua + texmf-dist/scripts/context/lua/mtx-unicode.lua + texmf-dist/scripts/context/lua/mtx-unzip.lua + texmf-dist/scripts/context/lua/mtx-update.lua + texmf-dist/scripts/context/lua/mtx-watch.lua + texmf-dist/scripts/context/lua/mtx-youless.lua + texmf-dist/scripts/context/lua/mtxlibs.lua + texmf-dist/scripts/context/lua/mtxrun.lua + texmf-dist/scripts/context/perl/makempy.pl + texmf-dist/scripts/context/perl/path_tre.pm + texmf-dist/scripts/context/perl/pdftrimwhite.pl + texmf-dist/scripts/context/perl/texfind.pl + texmf-dist/scripts/context/perl/texfont.pl + texmf-dist/scripts/context/ruby/base/ctx.rb + texmf-dist/scripts/context/ruby/base/exa.rb + texmf-dist/scripts/context/ruby/base/file.rb + texmf-dist/scripts/context/ruby/base/kpse.rb + texmf-dist/scripts/context/ruby/base/kpse/drb.rb + texmf-dist/scripts/context/ruby/base/kpse/soap.rb + texmf-dist/scripts/context/ruby/base/kpse/trees.rb + texmf-dist/scripts/context/ruby/base/kpsedirect.rb + texmf-dist/scripts/context/ruby/base/kpsefast.rb + texmf-dist/scripts/context/ruby/base/kpseremote.rb + texmf-dist/scripts/context/ruby/base/kpserunner.rb + texmf-dist/scripts/context/ruby/base/logger.rb + texmf-dist/scripts/context/ruby/base/merge.rb + texmf-dist/scripts/context/ruby/base/mp.rb + texmf-dist/scripts/context/ruby/base/pdf.rb + texmf-dist/scripts/context/ruby/base/state.rb + texmf-dist/scripts/context/ruby/base/switch.rb + texmf-dist/scripts/context/ruby/base/system.rb + texmf-dist/scripts/context/ruby/base/tex.rb + texmf-dist/scripts/context/ruby/base/texutil.rb + texmf-dist/scripts/context/ruby/base/tool.rb + texmf-dist/scripts/context/ruby/base/variables.rb + texmf-dist/scripts/context/ruby/concheck.rb + texmf-dist/scripts/context/ruby/ctxtools.rb + texmf-dist/scripts/context/ruby/graphics/gs.rb + texmf-dist/scripts/context/ruby/graphics/inkscape.rb + texmf-dist/scripts/context/ruby/graphics/magick.rb + texmf-dist/scripts/context/ruby/imgtopdf.rb + texmf-dist/scripts/context/ruby/pdftools.rb + texmf-dist/scripts/context/ruby/pstopdf.rb + texmf-dist/scripts/context/ruby/rlxtools.rb + texmf-dist/scripts/context/ruby/rscortool.rb + texmf-dist/scripts/context/ruby/rsfiltool.rb + texmf-dist/scripts/context/ruby/rslb/base.rb + texmf-dist/scripts/context/ruby/rslibtool.rb + texmf-dist/scripts/context/ruby/runtools.rb + texmf-dist/scripts/context/ruby/texexec.rb + texmf-dist/scripts/context/ruby/texmfstart.rb + texmf-dist/scripts/context/ruby/textools.rb + texmf-dist/scripts/context/ruby/texutil.rb + texmf-dist/scripts/context/ruby/tmftools.rb + texmf-dist/scripts/context/ruby/xmltools.rb + texmf-dist/scripts/context/stubs/install/first-setup.bat + texmf-dist/scripts/context/stubs/install/first-setup.sh + texmf-dist/scripts/context/stubs/mswin/context.exe + texmf-dist/scripts/context/stubs/mswin/contextjit.exe + texmf-dist/scripts/context/stubs/mswin/ctxtools.exe + texmf-dist/scripts/context/stubs/mswin/luatools.exe + texmf-dist/scripts/context/stubs/mswin/mtxrun.dll + texmf-dist/scripts/context/stubs/mswin/mtxrun.exe + texmf-dist/scripts/context/stubs/mswin/mtxrun.lua + texmf-dist/scripts/context/stubs/mswin/mtxrunjit.exe + texmf-dist/scripts/context/stubs/mswin/pstopdf.exe + texmf-dist/scripts/context/stubs/mswin/texexec.exe + texmf-dist/scripts/context/stubs/mswin/texmfstart.exe + texmf-dist/scripts/context/stubs/setup/setuptex + texmf-dist/scripts/context/stubs/setup/setuptex.bat + texmf-dist/scripts/context/stubs/setup/setuptex.csh + texmf-dist/scripts/context/stubs/source/mtxrun_dll.c + texmf-dist/scripts/context/stubs/source/mtxrun_exe.c + texmf-dist/scripts/context/stubs/source/readme.txt + texmf-dist/scripts/context/stubs/unix/context + texmf-dist/scripts/context/stubs/unix/contextjit + texmf-dist/scripts/context/stubs/unix/ctxtools + texmf-dist/scripts/context/stubs/unix/luatools + texmf-dist/scripts/context/stubs/unix/mptopdf + texmf-dist/scripts/context/stubs/unix/mtxrun + texmf-dist/scripts/context/stubs/unix/mtxrunjit + texmf-dist/scripts/context/stubs/unix/pstopdf + texmf-dist/scripts/context/stubs/unix/texexec + texmf-dist/scripts/context/stubs/unix/texmfstart + texmf-dist/scripts/context/stubs/win64/context.exe + texmf-dist/scripts/context/stubs/win64/contextjit.exe + texmf-dist/scripts/context/stubs/win64/ctxtools.exe + texmf-dist/scripts/context/stubs/win64/luatools.exe + texmf-dist/scripts/context/stubs/win64/mptopdf.exe + texmf-dist/scripts/context/stubs/win64/mtxrun.dll + texmf-dist/scripts/context/stubs/win64/mtxrun.exe + texmf-dist/scripts/context/stubs/win64/mtxrun.lua + texmf-dist/scripts/context/stubs/win64/mtxrunjit.exe + texmf-dist/scripts/context/stubs/win64/pstopdf.exe + texmf-dist/scripts/context/stubs/win64/texexec.exe + texmf-dist/scripts/context/stubs/win64/texmfstart.exe + texmf-dist/tex/context/base/context-version.pdf + texmf-dist/tex/context/base/context-version.png + texmf-dist/tex/context/base/context.rme + texmf-dist/tex/context/base/mkii/anch-bar.mkii + texmf-dist/tex/context/base/mkii/anch-pgr.mkii + texmf-dist/tex/context/base/mkii/anch-pos.mkii + texmf-dist/tex/context/base/mkii/anch-snc.mkii + texmf-dist/tex/context/base/mkii/bibl-tra.mkii + texmf-dist/tex/context/base/mkii/buff-ini.mkii + texmf-dist/tex/context/base/mkii/buff-ver.mkii + texmf-dist/tex/context/base/mkii/catc-act.mkii + texmf-dist/tex/context/base/mkii/catc-ctx.mkii + texmf-dist/tex/context/base/mkii/catc-def.mkii + texmf-dist/tex/context/base/mkii/catc-ini.mkii + texmf-dist/tex/context/base/mkii/catc-sym.mkii + texmf-dist/tex/context/base/mkii/catc-xml.mkii + texmf-dist/tex/context/base/mkii/colo-ema.mkii + texmf-dist/tex/context/base/mkii/colo-ext.mkii + texmf-dist/tex/context/base/mkii/colo-hex.mkii + texmf-dist/tex/context/base/mkii/colo-ini.mkii + texmf-dist/tex/context/base/mkii/colo-rgb.mkii + texmf-dist/tex/context/base/mkii/colo-run.mkii + texmf-dist/tex/context/base/mkii/colo-x11.mkii + texmf-dist/tex/context/base/mkii/colo-xwi.mkii + texmf-dist/tex/context/base/mkii/cont-cs.mkii + texmf-dist/tex/context/base/mkii/cont-de.mkii + texmf-dist/tex/context/base/mkii/cont-en.mkii + texmf-dist/tex/context/base/mkii/cont-err.mkii + texmf-dist/tex/context/base/mkii/cont-fil.mkii + texmf-dist/tex/context/base/mkii/cont-fr.mkii + texmf-dist/tex/context/base/mkii/cont-gb.mkii + texmf-dist/tex/context/base/mkii/cont-it.mkii + texmf-dist/tex/context/base/mkii/cont-log.mkii + texmf-dist/tex/context/base/mkii/cont-new.mkii + texmf-dist/tex/context/base/mkii/cont-nl.mkii + texmf-dist/tex/context/base/mkii/cont-ro.mkii + texmf-dist/tex/context/base/mkii/cont-sys.ori + texmf-dist/tex/context/base/mkii/context.mkii + texmf-dist/tex/context/base/mkii/core-con.mkii + texmf-dist/tex/context/base/mkii/core-ctx.mkii + texmf-dist/tex/context/base/mkii/core-def.mkii + texmf-dist/tex/context/base/mkii/core-env.mkii + texmf-dist/tex/context/base/mkii/core-fil.mkii + texmf-dist/tex/context/base/mkii/core-fnt.mkii + texmf-dist/tex/context/base/mkii/core-gen.mkii + texmf-dist/tex/context/base/mkii/core-ini.mkii + texmf-dist/tex/context/base/mkii/core-job.mkii + texmf-dist/tex/context/base/mkii/core-mis.mkii + texmf-dist/tex/context/base/mkii/core-par.mkii + texmf-dist/tex/context/base/mkii/core-stg.mkii + texmf-dist/tex/context/base/mkii/core-sys.mkii + texmf-dist/tex/context/base/mkii/core-two.mkii + texmf-dist/tex/context/base/mkii/core-uti.mkii + texmf-dist/tex/context/base/mkii/core-var.mkii + texmf-dist/tex/context/base/mkii/enco-032.mkii + texmf-dist/tex/context/base/mkii/enco-037.mkii + texmf-dist/tex/context/base/mkii/enco-acc.mkii + texmf-dist/tex/context/base/mkii/enco-agr.mkii + texmf-dist/tex/context/base/mkii/enco-ans.mkii + texmf-dist/tex/context/base/mkii/enco-cas.mkii + texmf-dist/tex/context/base/mkii/enco-chi.mkii + texmf-dist/tex/context/base/mkii/enco-com.mkii + texmf-dist/tex/context/base/mkii/enco-cyr.mkii + texmf-dist/tex/context/base/mkii/enco-def.mkii + texmf-dist/tex/context/base/mkii/enco-ec.mkii + texmf-dist/tex/context/base/mkii/enco-ecm.mkii + texmf-dist/tex/context/base/mkii/enco-el.mkii + texmf-dist/tex/context/base/mkii/enco-fde.mkii + texmf-dist/tex/context/base/mkii/enco-ffr.mkii + texmf-dist/tex/context/base/mkii/enco-fpl.mkii + texmf-dist/tex/context/base/mkii/enco-fro.mkii + texmf-dist/tex/context/base/mkii/enco-fsl.mkii + texmf-dist/tex/context/base/mkii/enco-grk.mkii + texmf-dist/tex/context/base/mkii/enco-heb.mkii + texmf-dist/tex/context/base/mkii/enco-ibm.mkii + texmf-dist/tex/context/base/mkii/enco-il2.mkii + texmf-dist/tex/context/base/mkii/enco-ini.mkii + texmf-dist/tex/context/base/mkii/enco-l7x.mkii + texmf-dist/tex/context/base/mkii/enco-lat.mkii + texmf-dist/tex/context/base/mkii/enco-mis.mkii + texmf-dist/tex/context/base/mkii/enco-pdf.mkii + texmf-dist/tex/context/base/mkii/enco-pfr.mkii + texmf-dist/tex/context/base/mkii/enco-pol.mkii + texmf-dist/tex/context/base/mkii/enco-qx.mkii + texmf-dist/tex/context/base/mkii/enco-raw.mkii + texmf-dist/tex/context/base/mkii/enco-run.mkii + texmf-dist/tex/context/base/mkii/enco-t5.mkii + texmf-dist/tex/context/base/mkii/enco-tbo.mkii + texmf-dist/tex/context/base/mkii/enco-uc.mkii + texmf-dist/tex/context/base/mkii/enco-vis.mkii + texmf-dist/tex/context/base/mkii/enco-vna.mkii + texmf-dist/tex/context/base/mkii/enco-win.mkii + texmf-dist/tex/context/base/mkii/enco-x5.mkii + texmf-dist/tex/context/base/mkii/filt-bas.mkii + texmf-dist/tex/context/base/mkii/filt-ini.mkii + texmf-dist/tex/context/base/mkii/font-arb.mkii + texmf-dist/tex/context/base/mkii/font-bfm.mkii + texmf-dist/tex/context/base/mkii/font-chi.mkii + texmf-dist/tex/context/base/mkii/font-heb.mkii + texmf-dist/tex/context/base/mkii/font-ini.mkii + texmf-dist/tex/context/base/mkii/font-jap.mkii + texmf-dist/tex/context/base/mkii/font-run.mkii + texmf-dist/tex/context/base/mkii/font-uni.mkii + texmf-dist/tex/context/base/mkii/font-unk.mkii + texmf-dist/tex/context/base/mkii/font-xtx.mkii + texmf-dist/tex/context/base/mkii/grph-fig.mkii + texmf-dist/tex/context/base/mkii/grph-inc.mkii + texmf-dist/tex/context/base/mkii/grph-trf.mkii + texmf-dist/tex/context/base/mkii/hand-def.mkii + texmf-dist/tex/context/base/mkii/hand-ini.mkii + texmf-dist/tex/context/base/mkii/java-ans.mkii + texmf-dist/tex/context/base/mkii/java-exa.mkii + texmf-dist/tex/context/base/mkii/java-fil.mkii + texmf-dist/tex/context/base/mkii/java-fld.mkii + texmf-dist/tex/context/base/mkii/java-ini.mkii + texmf-dist/tex/context/base/mkii/java-stp.mkii + texmf-dist/tex/context/base/mkii/lang-alt.mkii + texmf-dist/tex/context/base/mkii/lang-ana.mkii + texmf-dist/tex/context/base/mkii/lang-art.mkii + texmf-dist/tex/context/base/mkii/lang-bal.mkii + texmf-dist/tex/context/base/mkii/lang-cel.mkii + texmf-dist/tex/context/base/mkii/lang-chi.mkii + texmf-dist/tex/context/base/mkii/lang-ctx.mkii + texmf-dist/tex/context/base/mkii/lang-cyr.mkii + texmf-dist/tex/context/base/mkii/lang-dis.mkii + texmf-dist/tex/context/base/mkii/lang-frd.mkii + texmf-dist/tex/context/base/mkii/lang-frq.mkii + texmf-dist/tex/context/base/mkii/lang-ger.mkii + texmf-dist/tex/context/base/mkii/lang-grk.mkii + texmf-dist/tex/context/base/mkii/lang-ind.mkii + texmf-dist/tex/context/base/mkii/lang-ini.mkii + texmf-dist/tex/context/base/mkii/lang-ita.mkii + texmf-dist/tex/context/base/mkii/lang-jap.mkii + texmf-dist/tex/context/base/mkii/lang-lab.mkii + texmf-dist/tex/context/base/mkii/lang-mis.mkii + texmf-dist/tex/context/base/mkii/lang-run.mkii + texmf-dist/tex/context/base/mkii/lang-sla.mkii + texmf-dist/tex/context/base/mkii/lang-spa.mkii + texmf-dist/tex/context/base/mkii/lang-spe.mkii + texmf-dist/tex/context/base/mkii/lang-ura.mkii + texmf-dist/tex/context/base/mkii/lang-url.mkii + texmf-dist/tex/context/base/mkii/lang-vn.mkii + texmf-dist/tex/context/base/mkii/math-ams.mkii + texmf-dist/tex/context/base/mkii/math-arr.mkii + texmf-dist/tex/context/base/mkii/math-cow.mkii + texmf-dist/tex/context/base/mkii/math-eul.mkii + texmf-dist/tex/context/base/mkii/math-fou.mkii + texmf-dist/tex/context/base/mkii/math-frc.mkii + texmf-dist/tex/context/base/mkii/math-ini.mkii + texmf-dist/tex/context/base/mkii/math-lbr.mkii + texmf-dist/tex/context/base/mkii/math-pln.mkii + texmf-dist/tex/context/base/mkii/math-run.mkii + texmf-dist/tex/context/base/mkii/math-tex.mkii + texmf-dist/tex/context/base/mkii/math-tim.mkii + texmf-dist/tex/context/base/mkii/math-uni.mkii + texmf-dist/tex/context/base/mkii/meta-clp.mkii + texmf-dist/tex/context/base/mkii/meta-dum.mkii + texmf-dist/tex/context/base/mkii/meta-fig.mkii + texmf-dist/tex/context/base/mkii/meta-ini.mkii + texmf-dist/tex/context/base/mkii/meta-mis.mkii + texmf-dist/tex/context/base/mkii/meta-nav.mkii + texmf-dist/tex/context/base/mkii/meta-pag.mkii + texmf-dist/tex/context/base/mkii/meta-pdf.mkii + texmf-dist/tex/context/base/mkii/meta-pre.mkii + texmf-dist/tex/context/base/mkii/meta-tex.mkii + texmf-dist/tex/context/base/mkii/meta-txt.mkii + texmf-dist/tex/context/base/mkii/meta-xml.mkii + texmf-dist/tex/context/base/mkii/mult-aux.mkii + texmf-dist/tex/context/base/mkii/mult-chk.mkii + texmf-dist/tex/context/base/mkii/mult-com.mkii + texmf-dist/tex/context/base/mkii/mult-con.mkii + texmf-dist/tex/context/base/mkii/mult-cs.mkii + texmf-dist/tex/context/base/mkii/mult-de.mkii + texmf-dist/tex/context/base/mkii/mult-def.mkii + texmf-dist/tex/context/base/mkii/mult-en.mkii + texmf-dist/tex/context/base/mkii/mult-fr.mkii + texmf-dist/tex/context/base/mkii/mult-fst.mkii + texmf-dist/tex/context/base/mkii/mult-ini.mkii + texmf-dist/tex/context/base/mkii/mult-it.mkii + texmf-dist/tex/context/base/mkii/mult-mcs.mkii + texmf-dist/tex/context/base/mkii/mult-mde.mkii + texmf-dist/tex/context/base/mkii/mult-men.mkii + texmf-dist/tex/context/base/mkii/mult-mfr.mkii + texmf-dist/tex/context/base/mkii/mult-mit.mkii + texmf-dist/tex/context/base/mkii/mult-mnl.mkii + texmf-dist/tex/context/base/mkii/mult-mno.mkii + texmf-dist/tex/context/base/mkii/mult-mpe.mkii + texmf-dist/tex/context/base/mkii/mult-mro.mkii + texmf-dist/tex/context/base/mkii/mult-nl.mkii + texmf-dist/tex/context/base/mkii/mult-pe.mkii + texmf-dist/tex/context/base/mkii/mult-ro.mkii + texmf-dist/tex/context/base/mkii/mult-sys.mkii + texmf-dist/tex/context/base/mkii/norm-alo.mkii + texmf-dist/tex/context/base/mkii/norm-ctx.mkii + texmf-dist/tex/context/base/mkii/norm-etx.mkii + texmf-dist/tex/context/base/mkii/norm-ltx.mkii + texmf-dist/tex/context/base/mkii/norm-ptx.mkii + texmf-dist/tex/context/base/mkii/norm-tex.mkii + texmf-dist/tex/context/base/mkii/norm-xtx.mkii + texmf-dist/tex/context/base/mkii/pack-box.mkii + texmf-dist/tex/context/base/mkii/pack-lyr.mkii + texmf-dist/tex/context/base/mkii/pack-obj.mkii + texmf-dist/tex/context/base/mkii/pack-rul.mkii + texmf-dist/tex/context/base/mkii/page-app.mkii + texmf-dist/tex/context/base/mkii/page-bck.mkii + texmf-dist/tex/context/base/mkii/page-flw.mkii + texmf-dist/tex/context/base/mkii/page-imp.mkii + texmf-dist/tex/context/base/mkii/page-ini.mkii + texmf-dist/tex/context/base/mkii/page-ins.mkii + texmf-dist/tex/context/base/mkii/page-lay.mkii + texmf-dist/tex/context/base/mkii/page-lin.mkii + texmf-dist/tex/context/base/mkii/page-log.mkii + texmf-dist/tex/context/base/mkii/page-mak.mkii + texmf-dist/tex/context/base/mkii/page-mar.mkii + texmf-dist/tex/context/base/mkii/page-mis.mkii + texmf-dist/tex/context/base/mkii/page-mul.mkii + texmf-dist/tex/context/base/mkii/page-not.mkii + texmf-dist/tex/context/base/mkii/page-one.mkii + texmf-dist/tex/context/base/mkii/page-par.mkii + texmf-dist/tex/context/base/mkii/page-plg.mkii + texmf-dist/tex/context/base/mkii/page-run.mkii + texmf-dist/tex/context/base/mkii/page-set.mkii + texmf-dist/tex/context/base/mkii/page-sid.mkii + texmf-dist/tex/context/base/mkii/page-spr.mkii + texmf-dist/tex/context/base/mkii/page-str.mkii + texmf-dist/tex/context/base/mkii/page-txt.mkii + texmf-dist/tex/context/base/mkii/pdfr-def.mkii + texmf-dist/tex/context/base/mkii/pdfr-ec.mkii + texmf-dist/tex/context/base/mkii/pdfr-il2.mkii + texmf-dist/tex/context/base/mkii/prop-ini.mkii + texmf-dist/tex/context/base/mkii/prop-lay.mkii + texmf-dist/tex/context/base/mkii/prop-mis.mkii + texmf-dist/tex/context/base/mkii/regi-8859-1.mkii + texmf-dist/tex/context/base/mkii/regi-8859-10.mkii + texmf-dist/tex/context/base/mkii/regi-8859-13.mkii + texmf-dist/tex/context/base/mkii/regi-8859-15.mkii + texmf-dist/tex/context/base/mkii/regi-8859-16.mkii + texmf-dist/tex/context/base/mkii/regi-8859-2.mkii + texmf-dist/tex/context/base/mkii/regi-8859-3.mkii + texmf-dist/tex/context/base/mkii/regi-8859-4.mkii + texmf-dist/tex/context/base/mkii/regi-8859-5.mkii + texmf-dist/tex/context/base/mkii/regi-8859-7.mkii + texmf-dist/tex/context/base/mkii/regi-8859-9.mkii + texmf-dist/tex/context/base/mkii/regi-cp1250.mkii + texmf-dist/tex/context/base/mkii/regi-cp1251.mkii + texmf-dist/tex/context/base/mkii/regi-cp1252.mkii + texmf-dist/tex/context/base/mkii/regi-cp1253.mkii + texmf-dist/tex/context/base/mkii/regi-cp1254.mkii + texmf-dist/tex/context/base/mkii/regi-cp1257.mkii + texmf-dist/tex/context/base/mkii/regi-cyp.mkii + texmf-dist/tex/context/base/mkii/regi-cyr.mkii + texmf-dist/tex/context/base/mkii/regi-def.mkii + texmf-dist/tex/context/base/mkii/regi-ibm.mkii + texmf-dist/tex/context/base/mkii/regi-ini.mkii + texmf-dist/tex/context/base/mkii/regi-mac.mkii + texmf-dist/tex/context/base/mkii/regi-syn.mkii + texmf-dist/tex/context/base/mkii/regi-uni.mkii + texmf-dist/tex/context/base/mkii/regi-utf.mkii + texmf-dist/tex/context/base/mkii/regi-vis.mkii + texmf-dist/tex/context/base/mkii/scrn-fld.mkii + texmf-dist/tex/context/base/mkii/scrn-hlp.mkii + texmf-dist/tex/context/base/mkii/scrn-int.mkii + texmf-dist/tex/context/base/mkii/scrn-nav.mkii + texmf-dist/tex/context/base/mkii/sort-def.mkii + texmf-dist/tex/context/base/mkii/sort-ini.mkii + texmf-dist/tex/context/base/mkii/sort-lan.mkii + texmf-dist/tex/context/base/mkii/spac-gen.mkii + texmf-dist/tex/context/base/mkii/spac-grd.mkii + texmf-dist/tex/context/base/mkii/spec-def.mkii + texmf-dist/tex/context/base/mkii/spec-dpm.mkii + texmf-dist/tex/context/base/mkii/spec-dpx.mkii + texmf-dist/tex/context/base/mkii/spec-dvi.mkii + texmf-dist/tex/context/base/mkii/spec-fdf.mkii + texmf-dist/tex/context/base/mkii/spec-ini.mkii + texmf-dist/tex/context/base/mkii/spec-mis.mkii + texmf-dist/tex/context/base/mkii/spec-pdf.mkii + texmf-dist/tex/context/base/mkii/spec-ps.mkii + texmf-dist/tex/context/base/mkii/spec-tpd.mkii + texmf-dist/tex/context/base/mkii/spec-tr.mkii + texmf-dist/tex/context/base/mkii/spec-tst.mkii + texmf-dist/tex/context/base/mkii/spec-var.mkii + texmf-dist/tex/context/base/mkii/spec-win.mkii + texmf-dist/tex/context/base/mkii/spec-xet.mkii + texmf-dist/tex/context/base/mkii/spec-xtx.mkii + texmf-dist/tex/context/base/mkii/spec-yy.mkii + texmf-dist/tex/context/base/mkii/strc-blk.mkii + texmf-dist/tex/context/base/mkii/strc-des.mkii + texmf-dist/tex/context/base/mkii/strc-flt.mkii + texmf-dist/tex/context/base/mkii/strc-itm.mkii + texmf-dist/tex/context/base/mkii/strc-lnt.mkii + texmf-dist/tex/context/base/mkii/strc-lst.mkii + texmf-dist/tex/context/base/mkii/strc-mar.mkii + texmf-dist/tex/context/base/mkii/strc-mat.mkii + texmf-dist/tex/context/base/mkii/strc-not.mkii + texmf-dist/tex/context/base/mkii/strc-num.mkii + texmf-dist/tex/context/base/mkii/strc-pag.mkii + texmf-dist/tex/context/base/mkii/strc-ref.mkii + texmf-dist/tex/context/base/mkii/strc-reg.mkii + texmf-dist/tex/context/base/mkii/strc-sec.mkii + texmf-dist/tex/context/base/mkii/strc-swd.mkii + texmf-dist/tex/context/base/mkii/strc-syn.mkii + texmf-dist/tex/context/base/mkii/supp-ali.mkii + texmf-dist/tex/context/base/mkii/supp-box.mkii + texmf-dist/tex/context/base/mkii/supp-dir.mkii + texmf-dist/tex/context/base/mkii/supp-emp.mkii + texmf-dist/tex/context/base/mkii/supp-eps.mkii + texmf-dist/tex/context/base/mkii/supp-fil.mkii + texmf-dist/tex/context/base/mkii/supp-fun.mkii + texmf-dist/tex/context/base/mkii/supp-lat.mkii + texmf-dist/tex/context/base/mkii/supp-mat.mkii + texmf-dist/tex/context/base/mkii/supp-mis.tex + texmf-dist/tex/context/base/mkii/supp-mpe.tex + texmf-dist/tex/context/base/mkii/supp-mps.mkii + texmf-dist/tex/context/base/mkii/supp-mrk.mkii + texmf-dist/tex/context/base/mkii/supp-num.mkii + texmf-dist/tex/context/base/mkii/supp-pat.mkii + texmf-dist/tex/context/base/mkii/supp-pdf.tex + texmf-dist/tex/context/base/mkii/supp-ran.mkii + texmf-dist/tex/context/base/mkii/supp-spe.mkii + texmf-dist/tex/context/base/mkii/supp-tpi.mkii + texmf-dist/tex/context/base/mkii/supp-vis.mkii + texmf-dist/tex/context/base/mkii/symb-cow.mkii + texmf-dist/tex/context/base/mkii/symb-eur.mkii + texmf-dist/tex/context/base/mkii/symb-glm.mkii + texmf-dist/tex/context/base/mkii/symb-ini.mkii + texmf-dist/tex/context/base/mkii/symb-jmn.mkii + texmf-dist/tex/context/base/mkii/symb-mis.mkii + texmf-dist/tex/context/base/mkii/symb-mvs.mkii + texmf-dist/tex/context/base/mkii/symb-nav.mkii + texmf-dist/tex/context/base/mkii/symb-run.mkii + texmf-dist/tex/context/base/mkii/symb-uni.mkii + texmf-dist/tex/context/base/mkii/symb-was.mkii + texmf-dist/tex/context/base/mkii/syst-con.mkii + texmf-dist/tex/context/base/mkii/syst-ext.mkii + texmf-dist/tex/context/base/mkii/syst-fnt.mkii + texmf-dist/tex/context/base/mkii/syst-gen.mkii + texmf-dist/tex/context/base/mkii/syst-ini.mkii + texmf-dist/tex/context/base/mkii/syst-new.mkii + texmf-dist/tex/context/base/mkii/syst-pln.mkii + texmf-dist/tex/context/base/mkii/syst-rtp.mkii + texmf-dist/tex/context/base/mkii/syst-str.mkii + texmf-dist/tex/context/base/mkii/tabl-com.mkii + texmf-dist/tex/context/base/mkii/tabl-ltb.mkii + texmf-dist/tex/context/base/mkii/tabl-ntb.mkii + texmf-dist/tex/context/base/mkii/tabl-nte.mkii + texmf-dist/tex/context/base/mkii/tabl-pln.mkii + texmf-dist/tex/context/base/mkii/tabl-tab.mkii + texmf-dist/tex/context/base/mkii/tabl-tbl.mkii + texmf-dist/tex/context/base/mkii/tabl-tsp.mkii + texmf-dist/tex/context/base/mkii/thrd-pic.mkii + texmf-dist/tex/context/base/mkii/thrd-ran.mkii + texmf-dist/tex/context/base/mkii/thrd-tab.mkii + texmf-dist/tex/context/base/mkii/thrd-trg.mkii + texmf-dist/tex/context/base/mkii/trac-vis.mkii + texmf-dist/tex/context/base/mkii/type-def.mkii + texmf-dist/tex/context/base/mkii/type-ini.mkii + texmf-dist/tex/context/base/mkii/type-one.mkii + texmf-dist/tex/context/base/mkii/type-otf.mkii + texmf-dist/tex/context/base/mkii/type-run.mkii + texmf-dist/tex/context/base/mkii/type-set.mkii + texmf-dist/tex/context/base/mkii/type-siz.mkii + texmf-dist/tex/context/base/mkii/type-tmf.mkii + texmf-dist/tex/context/base/mkii/typo-ini.mkii + texmf-dist/tex/context/base/mkii/unic-000.mkii + texmf-dist/tex/context/base/mkii/unic-001.mkii + texmf-dist/tex/context/base/mkii/unic-002.mkii + texmf-dist/tex/context/base/mkii/unic-003.mkii + texmf-dist/tex/context/base/mkii/unic-004.mkii + texmf-dist/tex/context/base/mkii/unic-005.mkii + texmf-dist/tex/context/base/mkii/unic-030.mkii + texmf-dist/tex/context/base/mkii/unic-031.mkii + texmf-dist/tex/context/base/mkii/unic-032.mkii + texmf-dist/tex/context/base/mkii/unic-033.mkii + texmf-dist/tex/context/base/mkii/unic-034.mkii + texmf-dist/tex/context/base/mkii/unic-035.mkii + texmf-dist/tex/context/base/mkii/unic-037.mkii + texmf-dist/tex/context/base/mkii/unic-039.mkii + texmf-dist/tex/context/base/mkii/unic-251.mkii + texmf-dist/tex/context/base/mkii/unic-cjk.mkii + texmf-dist/tex/context/base/mkii/unic-exp.mkii + texmf-dist/tex/context/base/mkii/unic-ini.mkii + texmf-dist/tex/context/base/mkii/unic-run.mkii + texmf-dist/tex/context/base/mkii/verb-c.mkii + texmf-dist/tex/context/base/mkii/verb-eif.mkii + texmf-dist/tex/context/base/mkii/verb-ini.mkii + texmf-dist/tex/context/base/mkii/verb-js.mkii + texmf-dist/tex/context/base/mkii/verb-jv.mkii + texmf-dist/tex/context/base/mkii/verb-mp.mkii + texmf-dist/tex/context/base/mkii/verb-pas.mkii + texmf-dist/tex/context/base/mkii/verb-pl.mkii + texmf-dist/tex/context/base/mkii/verb-raw.mkii + texmf-dist/tex/context/base/mkii/verb-sql.mkii + texmf-dist/tex/context/base/mkii/verb-tex.mkii + texmf-dist/tex/context/base/mkii/verb-xml.mkii + texmf-dist/tex/context/base/mkii/xetx-chr.mkii + texmf-dist/tex/context/base/mkii/xetx-cls.mkii + texmf-dist/tex/context/base/mkii/xetx-ini.mkii + texmf-dist/tex/context/base/mkii/xetx-utf.mkii + texmf-dist/tex/context/base/mkii/xtag-cml.mkii + texmf-dist/tex/context/base/mkii/xtag-ent.mkii + texmf-dist/tex/context/base/mkii/xtag-exp.mkii + texmf-dist/tex/context/base/mkii/xtag-ext.mkii + texmf-dist/tex/context/base/mkii/xtag-hyp.mkii + texmf-dist/tex/context/base/mkii/xtag-ini.mkii + texmf-dist/tex/context/base/mkii/xtag-map.mkii + texmf-dist/tex/context/base/mkii/xtag-mea.mkii + texmf-dist/tex/context/base/mkii/xtag-meb.mkii + texmf-dist/tex/context/base/mkii/xtag-mec.mkii + texmf-dist/tex/context/base/mkii/xtag-meh.mkii + texmf-dist/tex/context/base/mkii/xtag-men.mkii + texmf-dist/tex/context/base/mkii/xtag-meo.mkii + texmf-dist/tex/context/base/mkii/xtag-mer.mkii + texmf-dist/tex/context/base/mkii/xtag-mmc.mkii + texmf-dist/tex/context/base/mkii/xtag-mml.mkii + texmf-dist/tex/context/base/mkii/xtag-mmp.mkii + texmf-dist/tex/context/base/mkii/xtag-mxa.mkii + texmf-dist/tex/context/base/mkii/xtag-mxb.mkii + texmf-dist/tex/context/base/mkii/xtag-mxc.mkii + texmf-dist/tex/context/base/mkii/xtag-mxh.mkii + texmf-dist/tex/context/base/mkii/xtag-mxn.mkii + texmf-dist/tex/context/base/mkii/xtag-mxo.mkii + texmf-dist/tex/context/base/mkii/xtag-mxr.mkii + texmf-dist/tex/context/base/mkii/xtag-pml.mkii + texmf-dist/tex/context/base/mkii/xtag-pmu.mkii + texmf-dist/tex/context/base/mkii/xtag-pre.mkii + texmf-dist/tex/context/base/mkii/xtag-prs.mkii + texmf-dist/tex/context/base/mkii/xtag-raw.mkii + texmf-dist/tex/context/base/mkii/xtag-rng.mkii + texmf-dist/tex/context/base/mkii/xtag-run.mkii + texmf-dist/tex/context/base/mkii/xtag-stk.mkii + texmf-dist/tex/context/base/mkii/xtag-utf.mkii + texmf-dist/tex/context/base/mkii/xtag-xsd.mkii + texmf-dist/tex/context/base/mkii/xtag-xsl.mkii + texmf-dist/tex/context/base/mkiv/anch-bar.mkiv + texmf-dist/tex/context/base/mkiv/anch-bck.mkvi + texmf-dist/tex/context/base/mkiv/anch-pgr.lua + texmf-dist/tex/context/base/mkiv/anch-pgr.mkiv + texmf-dist/tex/context/base/mkiv/anch-pos.lua + texmf-dist/tex/context/base/mkiv/anch-pos.mkiv + texmf-dist/tex/context/base/mkiv/anch-snc.lua + texmf-dist/tex/context/base/mkiv/anch-snc.mkiv + texmf-dist/tex/context/base/mkiv/anch-tab.mkiv + texmf-dist/tex/context/base/mkiv/attr-col.lua + texmf-dist/tex/context/base/mkiv/attr-col.mkiv + texmf-dist/tex/context/base/mkiv/attr-eff.lua + texmf-dist/tex/context/base/mkiv/attr-eff.mkiv + texmf-dist/tex/context/base/mkiv/attr-ini.lua + texmf-dist/tex/context/base/mkiv/attr-ini.mkiv + texmf-dist/tex/context/base/mkiv/attr-lay.lua + texmf-dist/tex/context/base/mkiv/attr-lay.mkiv + texmf-dist/tex/context/base/mkiv/attr-mkr.lua + texmf-dist/tex/context/base/mkiv/attr-mkr.mkiv + texmf-dist/tex/context/base/mkiv/attr-neg.lua + texmf-dist/tex/context/base/mkiv/attr-neg.mkiv + texmf-dist/tex/context/base/mkiv/back-exp.lua + texmf-dist/tex/context/base/mkiv/back-exp.mkiv + texmf-dist/tex/context/base/mkiv/back-ini.lua + texmf-dist/tex/context/base/mkiv/back-ini.mkiv + texmf-dist/tex/context/base/mkiv/back-pdf.lua + texmf-dist/tex/context/base/mkiv/back-pdf.mkiv + texmf-dist/tex/context/base/mkiv/back-pdp.lua + texmf-dist/tex/context/base/mkiv/back-res.lua + texmf-dist/tex/context/base/mkiv/back-swf.mkiv + texmf-dist/tex/context/base/mkiv/back-u3d.mkiv + texmf-dist/tex/context/base/mkiv/bibl-bib.lua + texmf-dist/tex/context/base/mkiv/bibl-bib.mkiv + texmf-dist/tex/context/base/mkiv/bibl-tra.lua + texmf-dist/tex/context/base/mkiv/bibl-tra.mkiv + texmf-dist/tex/context/base/mkiv/bibl-tst.lua + texmf-dist/tex/context/base/mkiv/blob-ini.lua + texmf-dist/tex/context/base/mkiv/blob-ini.mkiv + texmf-dist/tex/context/base/mkiv/buff-imp-default.lua + texmf-dist/tex/context/base/mkiv/buff-imp-default.mkiv + texmf-dist/tex/context/base/mkiv/buff-imp-escaped.lua + texmf-dist/tex/context/base/mkiv/buff-imp-escaped.mkiv + texmf-dist/tex/context/base/mkiv/buff-imp-lua.lua + texmf-dist/tex/context/base/mkiv/buff-imp-lua.mkiv + texmf-dist/tex/context/base/mkiv/buff-imp-mp.lua + texmf-dist/tex/context/base/mkiv/buff-imp-mp.mkiv + texmf-dist/tex/context/base/mkiv/buff-imp-nested.lua + texmf-dist/tex/context/base/mkiv/buff-imp-nested.mkiv + texmf-dist/tex/context/base/mkiv/buff-imp-parsed-xml.lua + texmf-dist/tex/context/base/mkiv/buff-imp-parsed-xml.mkiv + texmf-dist/tex/context/base/mkiv/buff-imp-tex.lua + texmf-dist/tex/context/base/mkiv/buff-imp-tex.mkiv + texmf-dist/tex/context/base/mkiv/buff-imp-xml.lua + texmf-dist/tex/context/base/mkiv/buff-imp-xml.mkiv + texmf-dist/tex/context/base/mkiv/buff-ini.lua + texmf-dist/tex/context/base/mkiv/buff-ini.mkiv + texmf-dist/tex/context/base/mkiv/buff-par.lua + texmf-dist/tex/context/base/mkiv/buff-par.mkvi + texmf-dist/tex/context/base/mkiv/buff-ver.lua + texmf-dist/tex/context/base/mkiv/buff-ver.mkiv + texmf-dist/tex/context/base/mkiv/bxml-apa.mkiv + texmf-dist/tex/context/base/mkiv/catc-act.mkiv + texmf-dist/tex/context/base/mkiv/catc-ctx.mkiv + texmf-dist/tex/context/base/mkiv/catc-def.mkiv + texmf-dist/tex/context/base/mkiv/catc-ini.lua + texmf-dist/tex/context/base/mkiv/catc-ini.mkiv + texmf-dist/tex/context/base/mkiv/catc-sym.mkiv + texmf-dist/tex/context/base/mkiv/catc-xml.mkiv + texmf-dist/tex/context/base/mkiv/char-act.mkiv + texmf-dist/tex/context/base/mkiv/char-cjk.lua + texmf-dist/tex/context/base/mkiv/char-def.lua + texmf-dist/tex/context/base/mkiv/char-emj.lua + texmf-dist/tex/context/base/mkiv/char-enc.lua + texmf-dist/tex/context/base/mkiv/char-enc.mkiv + texmf-dist/tex/context/base/mkiv/char-ent.lua + texmf-dist/tex/context/base/mkiv/char-fio.lua + texmf-dist/tex/context/base/mkiv/char-ini.lua + texmf-dist/tex/context/base/mkiv/char-ini.mkiv + texmf-dist/tex/context/base/mkiv/char-map.lua + texmf-dist/tex/context/base/mkiv/char-prv.lua + texmf-dist/tex/context/base/mkiv/char-tex.lua + texmf-dist/tex/context/base/mkiv/char-utf.lua + texmf-dist/tex/context/base/mkiv/char-utf.mkiv + texmf-dist/tex/context/base/mkiv/chem-ini.lua + texmf-dist/tex/context/base/mkiv/chem-ini.mkiv + texmf-dist/tex/context/base/mkiv/chem-str.lua + texmf-dist/tex/context/base/mkiv/chem-str.mkiv + texmf-dist/tex/context/base/mkiv/cldf-bas.lua + texmf-dist/tex/context/base/mkiv/cldf-bas.mkiv + texmf-dist/tex/context/base/mkiv/cldf-com.lua + texmf-dist/tex/context/base/mkiv/cldf-com.mkiv + texmf-dist/tex/context/base/mkiv/cldf-ini.lua + texmf-dist/tex/context/base/mkiv/cldf-ini.mkiv + texmf-dist/tex/context/base/mkiv/cldf-int.lua + texmf-dist/tex/context/base/mkiv/cldf-int.mkiv + texmf-dist/tex/context/base/mkiv/cldf-prs.lua + texmf-dist/tex/context/base/mkiv/cldf-scn.lua + texmf-dist/tex/context/base/mkiv/cldf-stp.lua + texmf-dist/tex/context/base/mkiv/cldf-ver.lua + texmf-dist/tex/context/base/mkiv/cldf-ver.mkiv + texmf-dist/tex/context/base/mkiv/colo-ext.mkiv + texmf-dist/tex/context/base/mkiv/colo-grp.mkiv + texmf-dist/tex/context/base/mkiv/colo-icc.lua + texmf-dist/tex/context/base/mkiv/colo-imp-crayola.mkiv + texmf-dist/tex/context/base/mkiv/colo-imp-dem.mkiv + texmf-dist/tex/context/base/mkiv/colo-imp-ema.mkiv + texmf-dist/tex/context/base/mkiv/colo-imp-rainbow.mkiv + texmf-dist/tex/context/base/mkiv/colo-imp-ral.mkiv + texmf-dist/tex/context/base/mkiv/colo-imp-rgb.mkiv + texmf-dist/tex/context/base/mkiv/colo-imp-solarized.mkiv + texmf-dist/tex/context/base/mkiv/colo-imp-svg.mkiv + texmf-dist/tex/context/base/mkiv/colo-imp-x11.mkiv + texmf-dist/tex/context/base/mkiv/colo-imp-xwi.mkiv + texmf-dist/tex/context/base/mkiv/colo-ini.lua + texmf-dist/tex/context/base/mkiv/colo-ini.mkiv + texmf-dist/tex/context/base/mkiv/colo-run.lua + texmf-dist/tex/context/base/mkiv/colo-run.mkiv + texmf-dist/tex/context/base/mkiv/cont-cs.mkiv + texmf-dist/tex/context/base/mkiv/cont-de.mkiv + texmf-dist/tex/context/base/mkiv/cont-en.mkiv + texmf-dist/tex/context/base/mkiv/cont-fil.mkiv + texmf-dist/tex/context/base/mkiv/cont-fr.mkiv + texmf-dist/tex/context/base/mkiv/cont-gb.mkiv + texmf-dist/tex/context/base/mkiv/cont-it.mkiv + texmf-dist/tex/context/base/mkiv/cont-log.mkiv + texmf-dist/tex/context/base/mkiv/cont-new.mkiv + texmf-dist/tex/context/base/mkiv/cont-nl.mkiv + texmf-dist/tex/context/base/mkiv/cont-nop.mkiv + texmf-dist/tex/context/base/mkiv/cont-pe.mkiv + texmf-dist/tex/context/base/mkiv/cont-ro.mkiv + texmf-dist/tex/context/base/mkiv/cont-run.lua + texmf-dist/tex/context/base/mkiv/cont-run.mkiv + texmf-dist/tex/context/base/mkiv/cont-yes.mkiv + texmf-dist/tex/context/base/mkiv/context-base.lmx + texmf-dist/tex/context/base/mkiv/context-characters.lmx + texmf-dist/tex/context/base/mkiv/context-debug.lmx + texmf-dist/tex/context/base/mkiv/context-error.lmx + texmf-dist/tex/context/base/mkiv/context-fonttest.lmx + texmf-dist/tex/context/base/mkiv/context-help.lmx + texmf-dist/tex/context/base/mkiv/context-performance.tex + texmf-dist/tex/context/base/mkiv/context-timing.lmx + texmf-dist/tex/context/base/mkiv/context-todo.tex + texmf-dist/tex/context/base/mkiv/context.css + texmf-dist/tex/context/base/mkiv/context.lus + texmf-dist/tex/context/base/mkiv/context.mkiv + texmf-dist/tex/context/base/mkiv/core-con.lua + texmf-dist/tex/context/base/mkiv/core-con.mkiv + texmf-dist/tex/context/base/mkiv/core-ctx.ctx + texmf-dist/tex/context/base/mkiv/core-ctx.lua + texmf-dist/tex/context/base/mkiv/core-ctx.mkiv + texmf-dist/tex/context/base/mkiv/core-dat.lua + texmf-dist/tex/context/base/mkiv/core-dat.mkiv + texmf-dist/tex/context/base/mkiv/core-def.mkiv + texmf-dist/tex/context/base/mkiv/core-env.lua + texmf-dist/tex/context/base/mkiv/core-env.mkiv + texmf-dist/tex/context/base/mkiv/core-ini.mkiv + texmf-dist/tex/context/base/mkiv/core-lmt.lua + texmf-dist/tex/context/base/mkiv/core-lmt.mkiv + texmf-dist/tex/context/base/mkiv/core-sys.lua + texmf-dist/tex/context/base/mkiv/core-sys.mkiv + texmf-dist/tex/context/base/mkiv/core-two.lua + texmf-dist/tex/context/base/mkiv/core-two.mkiv + texmf-dist/tex/context/base/mkiv/core-uti.lua + texmf-dist/tex/context/base/mkiv/core-uti.mkiv + texmf-dist/tex/context/base/mkiv/data-aux.lua + texmf-dist/tex/context/base/mkiv/data-bin.lua + texmf-dist/tex/context/base/mkiv/data-con.lua + texmf-dist/tex/context/base/mkiv/data-crl.lua + texmf-dist/tex/context/base/mkiv/data-ctx.lua + texmf-dist/tex/context/base/mkiv/data-env.lua + texmf-dist/tex/context/base/mkiv/data-exp.lua + texmf-dist/tex/context/base/mkiv/data-fil.lua + texmf-dist/tex/context/base/mkiv/data-gen.lua + texmf-dist/tex/context/base/mkiv/data-ini.lua + texmf-dist/tex/context/base/mkiv/data-inp.lua + texmf-dist/tex/context/base/mkiv/data-lst.lua + texmf-dist/tex/context/base/mkiv/data-lua.lua + texmf-dist/tex/context/base/mkiv/data-met.lua + texmf-dist/tex/context/base/mkiv/data-out.lua + texmf-dist/tex/context/base/mkiv/data-pre.lua + texmf-dist/tex/context/base/mkiv/data-res.lua + texmf-dist/tex/context/base/mkiv/data-sch.lua + texmf-dist/tex/context/base/mkiv/data-tex.lua + texmf-dist/tex/context/base/mkiv/data-tmf.lua + texmf-dist/tex/context/base/mkiv/data-tmp.lua + texmf-dist/tex/context/base/mkiv/data-tre.lua + texmf-dist/tex/context/base/mkiv/data-use.lua + texmf-dist/tex/context/base/mkiv/data-vir.lua + texmf-dist/tex/context/base/mkiv/data-zip.lua + texmf-dist/tex/context/base/mkiv/driv-ini.lua + texmf-dist/tex/context/base/mkiv/driv-ini.mkiv + texmf-dist/tex/context/base/mkiv/enco-ini.mkiv + texmf-dist/tex/context/base/mkiv/example.rng + texmf-dist/tex/context/base/mkiv/export-example.css + texmf-dist/tex/context/base/mkiv/export-example.rng + texmf-dist/tex/context/base/mkiv/export-example.tex + texmf-dist/tex/context/base/mkiv/file-ini.lua + texmf-dist/tex/context/base/mkiv/file-ini.mkvi + texmf-dist/tex/context/base/mkiv/file-job.lua + texmf-dist/tex/context/base/mkiv/file-job.mkvi + texmf-dist/tex/context/base/mkiv/file-lib.lua + texmf-dist/tex/context/base/mkiv/file-lib.mkvi + texmf-dist/tex/context/base/mkiv/file-mod.lua + texmf-dist/tex/context/base/mkiv/file-mod.mkvi + texmf-dist/tex/context/base/mkiv/file-res.lua + texmf-dist/tex/context/base/mkiv/file-res.mkvi + texmf-dist/tex/context/base/mkiv/file-syn.lua + texmf-dist/tex/context/base/mkiv/file-syn.mkvi + texmf-dist/tex/context/base/mkiv/font-afk.lua + texmf-dist/tex/context/base/mkiv/font-age.lua + texmf-dist/tex/context/base/mkiv/font-agl.lua + texmf-dist/tex/context/base/mkiv/font-aux.lua + texmf-dist/tex/context/base/mkiv/font-aux.mkvi + texmf-dist/tex/context/base/mkiv/font-cff.lua + texmf-dist/tex/context/base/mkiv/font-cft.lua + texmf-dist/tex/context/base/mkiv/font-chk.lua + texmf-dist/tex/context/base/mkiv/font-chk.mkiv + texmf-dist/tex/context/base/mkiv/font-cid.lua + texmf-dist/tex/context/base/mkiv/font-col.lua + texmf-dist/tex/context/base/mkiv/font-col.mkvi + texmf-dist/tex/context/base/mkiv/font-con.lua + texmf-dist/tex/context/base/mkiv/font-ctx.lua + texmf-dist/tex/context/base/mkiv/font-def.lua + texmf-dist/tex/context/base/mkiv/font-dsp.lua + texmf-dist/tex/context/base/mkiv/font-emp.mkvi + texmf-dist/tex/context/base/mkiv/font-enc.lua + texmf-dist/tex/context/base/mkiv/font-enh.lua + texmf-dist/tex/context/base/mkiv/font-fbk.lua + texmf-dist/tex/context/base/mkiv/font-fea.mkvi + texmf-dist/tex/context/base/mkiv/font-fil.mkvi + texmf-dist/tex/context/base/mkiv/font-gds.mkvi + texmf-dist/tex/context/base/mkiv/font-hsh.lua + texmf-dist/tex/context/base/mkiv/font-imp-dimensions.lua + texmf-dist/tex/context/base/mkiv/font-imp-effects.lua + texmf-dist/tex/context/base/mkiv/font-imp-italics.lua + texmf-dist/tex/context/base/mkiv/font-imp-ligatures.lua + texmf-dist/tex/context/base/mkiv/font-imp-math.lua + texmf-dist/tex/context/base/mkiv/font-imp-notused.lua + texmf-dist/tex/context/base/mkiv/font-imp-properties.lua + texmf-dist/tex/context/base/mkiv/font-imp-quality.lua + texmf-dist/tex/context/base/mkiv/font-imp-reorder.lua + texmf-dist/tex/context/base/mkiv/font-imp-tex.lua + texmf-dist/tex/context/base/mkiv/font-imp-tracing.lua + texmf-dist/tex/context/base/mkiv/font-imp-unicode.lua + texmf-dist/tex/context/base/mkiv/font-ini.lua + texmf-dist/tex/context/base/mkiv/font-ini.mkvi + texmf-dist/tex/context/base/mkiv/font-lib.mkvi + texmf-dist/tex/context/base/mkiv/font-lig.lua + texmf-dist/tex/context/base/mkiv/font-log.lua + texmf-dist/tex/context/base/mkiv/font-lua.lua + texmf-dist/tex/context/base/mkiv/font-map.lua + texmf-dist/tex/context/base/mkiv/font-mat.mkvi + texmf-dist/tex/context/base/mkiv/font-mis.lua + texmf-dist/tex/context/base/mkiv/font-mps.lua + texmf-dist/tex/context/base/mkiv/font-nod.lua + texmf-dist/tex/context/base/mkiv/font-ocl.lua + texmf-dist/tex/context/base/mkiv/font-off.lua + texmf-dist/tex/context/base/mkiv/font-one.lua + texmf-dist/tex/context/base/mkiv/font-onr.lua + texmf-dist/tex/context/base/mkiv/font-osd.lua + texmf-dist/tex/context/base/mkiv/font-ota.lua + texmf-dist/tex/context/base/mkiv/font-otc.lua + texmf-dist/tex/context/base/mkiv/font-otd.lua + texmf-dist/tex/context/base/mkiv/font-oth.lua + texmf-dist/tex/context/base/mkiv/font-oti.lua + texmf-dist/tex/context/base/mkiv/font-otj.lua + texmf-dist/tex/context/base/mkiv/font-otl.lua + texmf-dist/tex/context/base/mkiv/font-oto.lua + texmf-dist/tex/context/base/mkiv/font-otr.lua + texmf-dist/tex/context/base/mkiv/font-ots.lua + texmf-dist/tex/context/base/mkiv/font-ott.lua + texmf-dist/tex/context/base/mkiv/font-oup.lua + texmf-dist/tex/context/base/mkiv/font-pat.lua + texmf-dist/tex/context/base/mkiv/font-pre.mkiv + texmf-dist/tex/context/base/mkiv/font-prv.lua + texmf-dist/tex/context/base/mkiv/font-run.mkiv + texmf-dist/tex/context/base/mkiv/font-sel.lua + texmf-dist/tex/context/base/mkiv/font-sel.mkvi + texmf-dist/tex/context/base/mkiv/font-set.mkvi + texmf-dist/tex/context/base/mkiv/font-shp.lua + texmf-dist/tex/context/base/mkiv/font-sol.lua + texmf-dist/tex/context/base/mkiv/font-sol.mkvi + texmf-dist/tex/context/base/mkiv/font-sty.mkvi + texmf-dist/tex/context/base/mkiv/font-sym.mkvi + texmf-dist/tex/context/base/mkiv/font-syn.lua + texmf-dist/tex/context/base/mkiv/font-tfm.lua + texmf-dist/tex/context/base/mkiv/font-tra.mkiv + texmf-dist/tex/context/base/mkiv/font-trt.lua + texmf-dist/tex/context/base/mkiv/font-ttf.lua + texmf-dist/tex/context/base/mkiv/font-uni.mkiv + texmf-dist/tex/context/base/mkiv/font-unk.mkiv + texmf-dist/tex/context/base/mkiv/font-var.mkvi + texmf-dist/tex/context/base/mkiv/font-vfc.lua + texmf-dist/tex/context/base/mkiv/font-vir.lua + texmf-dist/tex/context/base/mkiv/font-web.lua + texmf-dist/tex/context/base/mkiv/good-ctx.lua + texmf-dist/tex/context/base/mkiv/good-gen.lua + texmf-dist/tex/context/base/mkiv/good-ini.lua + texmf-dist/tex/context/base/mkiv/good-mth.lua + texmf-dist/tex/context/base/mkiv/grph-con.lua + texmf-dist/tex/context/base/mkiv/grph-epd.lua + texmf-dist/tex/context/base/mkiv/grph-epd.mkiv + texmf-dist/tex/context/base/mkiv/grph-fig.mkiv + texmf-dist/tex/context/base/mkiv/grph-fil.lua + texmf-dist/tex/context/base/mkiv/grph-inc.lua + texmf-dist/tex/context/base/mkiv/grph-inc.mkiv + texmf-dist/tex/context/base/mkiv/grph-mem.lua + texmf-dist/tex/context/base/mkiv/grph-pat.lua + texmf-dist/tex/context/base/mkiv/grph-pat.mkiv + texmf-dist/tex/context/base/mkiv/grph-raw.lua + texmf-dist/tex/context/base/mkiv/grph-raw.mkiv + texmf-dist/tex/context/base/mkiv/grph-rul.lua + texmf-dist/tex/context/base/mkiv/grph-rul.mkiv + texmf-dist/tex/context/base/mkiv/grph-swf.lua + texmf-dist/tex/context/base/mkiv/grph-trf.mkiv + texmf-dist/tex/context/base/mkiv/grph-u3d.lua + texmf-dist/tex/context/base/mkiv/grph-wnd.lua + texmf-dist/tex/context/base/mkiv/hand-ini.mkiv + texmf-dist/tex/context/base/mkiv/java-imp-example.mkiv + texmf-dist/tex/context/base/mkiv/java-imp-fields.mkiv + texmf-dist/tex/context/base/mkiv/java-imp-highlight.mkiv + texmf-dist/tex/context/base/mkiv/java-imp-print.mkiv + texmf-dist/tex/context/base/mkiv/java-imp-steps.mkiv + texmf-dist/tex/context/base/mkiv/java-imp-videoplayer.mkiv + texmf-dist/tex/context/base/mkiv/java-imp-vplayer.mkiv + texmf-dist/tex/context/base/mkiv/java-ini.lua + texmf-dist/tex/context/base/mkiv/java-ini.mkiv + texmf-dist/tex/context/base/mkiv/l-bit32.lua + texmf-dist/tex/context/base/mkiv/l-boolean.lua + texmf-dist/tex/context/base/mkiv/l-dir.lua + texmf-dist/tex/context/base/mkiv/l-file.lua + texmf-dist/tex/context/base/mkiv/l-function.lua + texmf-dist/tex/context/base/mkiv/l-gzip.lua + texmf-dist/tex/context/base/mkiv/l-io.lua + texmf-dist/tex/context/base/mkiv/l-lpeg.lua + texmf-dist/tex/context/base/mkiv/l-lua.lua + texmf-dist/tex/context/base/mkiv/l-macro-imp-optimize.lua + texmf-dist/tex/context/base/mkiv/l-macro.lua + texmf-dist/tex/context/base/mkiv/l-math.lua + texmf-dist/tex/context/base/mkiv/l-md5.lua + texmf-dist/tex/context/base/mkiv/l-number.lua + texmf-dist/tex/context/base/mkiv/l-os.lua + texmf-dist/tex/context/base/mkiv/l-package.lua + texmf-dist/tex/context/base/mkiv/l-pdfview.lua + texmf-dist/tex/context/base/mkiv/l-sandbox.lua + texmf-dist/tex/context/base/mkiv/l-set.lua + texmf-dist/tex/context/base/mkiv/l-sha.lua + texmf-dist/tex/context/base/mkiv/l-string.lua + texmf-dist/tex/context/base/mkiv/l-table.lua + texmf-dist/tex/context/base/mkiv/l-unicode.lua + texmf-dist/tex/context/base/mkiv/l-url.lua + texmf-dist/tex/context/base/mkiv/l-xml.lua + texmf-dist/tex/context/base/mkiv/lang-cnt.lua + texmf-dist/tex/context/base/mkiv/lang-def.lua + texmf-dist/tex/context/base/mkiv/lang-def.mkiv + texmf-dist/tex/context/base/mkiv/lang-dis.lua + texmf-dist/tex/context/base/mkiv/lang-exc.lua + texmf-dist/tex/context/base/mkiv/lang-exp.lua + texmf-dist/tex/context/base/mkiv/lang-frd.mkiv + texmf-dist/tex/context/base/mkiv/lang-frq-de.lua + texmf-dist/tex/context/base/mkiv/lang-frq-en.lua + texmf-dist/tex/context/base/mkiv/lang-frq-nl.lua + texmf-dist/tex/context/base/mkiv/lang-frq-pt.lua + texmf-dist/tex/context/base/mkiv/lang-frq.mkiv + texmf-dist/tex/context/base/mkiv/lang-hyp.lua + texmf-dist/tex/context/base/mkiv/lang-hyp.mkiv + texmf-dist/tex/context/base/mkiv/lang-ini.lua + texmf-dist/tex/context/base/mkiv/lang-ini.mkiv + texmf-dist/tex/context/base/mkiv/lang-lab.lua + texmf-dist/tex/context/base/mkiv/lang-lab.mkiv + texmf-dist/tex/context/base/mkiv/lang-mis.mkiv + texmf-dist/tex/context/base/mkiv/lang-rep.lua + texmf-dist/tex/context/base/mkiv/lang-rep.mkiv + texmf-dist/tex/context/base/mkiv/lang-spa.mkiv + texmf-dist/tex/context/base/mkiv/lang-txt.lua + texmf-dist/tex/context/base/mkiv/lang-url.lua + texmf-dist/tex/context/base/mkiv/lang-url.mkiv + texmf-dist/tex/context/base/mkiv/lang-wrd.lua + texmf-dist/tex/context/base/mkiv/lang-wrd.mkiv + texmf-dist/tex/context/base/mkiv/layo-ini.lua + texmf-dist/tex/context/base/mkiv/layo-ini.mkiv + texmf-dist/tex/context/base/mkiv/lpdf-ano.lua + texmf-dist/tex/context/base/mkiv/lpdf-aux.lua + texmf-dist/tex/context/base/mkiv/lpdf-col.lua + texmf-dist/tex/context/base/mkiv/lpdf-enc.lua + texmf-dist/tex/context/base/mkiv/lpdf-epa.lua + texmf-dist/tex/context/base/mkiv/lpdf-epd.lua + texmf-dist/tex/context/base/mkiv/lpdf-fld.lua + texmf-dist/tex/context/base/mkiv/lpdf-fmt.lua + texmf-dist/tex/context/base/mkiv/lpdf-fnt.lua + texmf-dist/tex/context/base/mkiv/lpdf-grp.lua + texmf-dist/tex/context/base/mkiv/lpdf-ini.lua + texmf-dist/tex/context/base/mkiv/lpdf-mis.lua + texmf-dist/tex/context/base/mkiv/lpdf-mov.lua + texmf-dist/tex/context/base/mkiv/lpdf-nod.lua + texmf-dist/tex/context/base/mkiv/lpdf-pda.xml + texmf-dist/tex/context/base/mkiv/lpdf-pde.lua + texmf-dist/tex/context/base/mkiv/lpdf-pdx.xml + texmf-dist/tex/context/base/mkiv/lpdf-pua.xml + texmf-dist/tex/context/base/mkiv/lpdf-ren.lua + texmf-dist/tex/context/base/mkiv/lpdf-res.lua + texmf-dist/tex/context/base/mkiv/lpdf-swf.lua + texmf-dist/tex/context/base/mkiv/lpdf-tag.lua + texmf-dist/tex/context/base/mkiv/lpdf-u3d.lua + texmf-dist/tex/context/base/mkiv/lpdf-wid.lua + texmf-dist/tex/context/base/mkiv/lpdf-xmp.lua + texmf-dist/tex/context/base/mkiv/luat-bas.mkiv + texmf-dist/tex/context/base/mkiv/luat-bwc.lua + texmf-dist/tex/context/base/mkiv/luat-cbk.lua + texmf-dist/tex/context/base/mkiv/luat-cnf.lua + texmf-dist/tex/context/base/mkiv/luat-cod.lua + texmf-dist/tex/context/base/mkiv/luat-cod.mkiv + texmf-dist/tex/context/base/mkiv/luat-env.lua + texmf-dist/tex/context/base/mkiv/luat-exe.lua + texmf-dist/tex/context/base/mkiv/luat-fio.lua + texmf-dist/tex/context/base/mkiv/luat-fmt.lua + texmf-dist/tex/context/base/mkiv/luat-ini.lua + texmf-dist/tex/context/base/mkiv/luat-ini.mkiv + texmf-dist/tex/context/base/mkiv/luat-iop.lua + texmf-dist/tex/context/base/mkiv/luat-lib.mkiv + texmf-dist/tex/context/base/mkiv/luat-lua.lua + texmf-dist/tex/context/base/mkiv/luat-mac.lua + texmf-dist/tex/context/base/mkiv/luat-run.lua + texmf-dist/tex/context/base/mkiv/luat-soc.mkiv + texmf-dist/tex/context/base/mkiv/luat-sta.lua + texmf-dist/tex/context/base/mkiv/luat-sto.lua + texmf-dist/tex/context/base/mkiv/luat-usr.lua + texmf-dist/tex/context/base/mkiv/luat-usr.mkiv + texmf-dist/tex/context/base/mkiv/lxml-aux.lua + texmf-dist/tex/context/base/mkiv/lxml-css.lua + texmf-dist/tex/context/base/mkiv/lxml-css.mkiv + texmf-dist/tex/context/base/mkiv/lxml-ctx.lua + texmf-dist/tex/context/base/mkiv/lxml-ctx.mkiv + texmf-dist/tex/context/base/mkiv/lxml-dir.lua + texmf-dist/tex/context/base/mkiv/lxml-ent.lua + texmf-dist/tex/context/base/mkiv/lxml-inf.lua + texmf-dist/tex/context/base/mkiv/lxml-ini.lua + texmf-dist/tex/context/base/mkiv/lxml-ini.mkiv + texmf-dist/tex/context/base/mkiv/lxml-lpt.lua + texmf-dist/tex/context/base/mkiv/lxml-mis.lua + texmf-dist/tex/context/base/mkiv/lxml-sor.lua + texmf-dist/tex/context/base/mkiv/lxml-sor.mkiv + texmf-dist/tex/context/base/mkiv/lxml-tab.lua + texmf-dist/tex/context/base/mkiv/lxml-tex.lua + texmf-dist/tex/context/base/mkiv/lxml-xml.lua + texmf-dist/tex/context/base/mkiv/m-fonts-plugins.mkiv + texmf-dist/tex/context/base/mkiv/m-newcolumnsets.mkiv + texmf-dist/tex/context/base/mkiv/m-oldbibtex.mkiv + texmf-dist/tex/context/base/mkiv/math-acc.mkvi + texmf-dist/tex/context/base/mkiv/math-act.lua + texmf-dist/tex/context/base/mkiv/math-ali.mkiv + texmf-dist/tex/context/base/mkiv/math-arr.mkiv + texmf-dist/tex/context/base/mkiv/math-def.mkiv + texmf-dist/tex/context/base/mkiv/math-del.mkiv + texmf-dist/tex/context/base/mkiv/math-dim.lua + texmf-dist/tex/context/base/mkiv/math-dir.lua + texmf-dist/tex/context/base/mkiv/math-dis.mkiv + texmf-dist/tex/context/base/mkiv/math-ext.lua + texmf-dist/tex/context/base/mkiv/math-fbk.lua + texmf-dist/tex/context/base/mkiv/math-fen.mkiv + texmf-dist/tex/context/base/mkiv/math-for.mkiv + texmf-dist/tex/context/base/mkiv/math-frc.lua + texmf-dist/tex/context/base/mkiv/math-frc.mkiv + texmf-dist/tex/context/base/mkiv/math-inc.lua + texmf-dist/tex/context/base/mkiv/math-inc.mkiv + texmf-dist/tex/context/base/mkiv/math-ini.lua + texmf-dist/tex/context/base/mkiv/math-ini.mkiv + texmf-dist/tex/context/base/mkiv/math-inl.mkiv + texmf-dist/tex/context/base/mkiv/math-int.mkiv + texmf-dist/tex/context/base/mkiv/math-map.lua + texmf-dist/tex/context/base/mkiv/math-mis.mkiv + texmf-dist/tex/context/base/mkiv/math-noa.lua + texmf-dist/tex/context/base/mkiv/math-pln.mkiv + texmf-dist/tex/context/base/mkiv/math-rad.mkvi + texmf-dist/tex/context/base/mkiv/math-ren.lua + texmf-dist/tex/context/base/mkiv/math-scr.mkiv + texmf-dist/tex/context/base/mkiv/math-spa.lua + texmf-dist/tex/context/base/mkiv/math-stc.mkvi + texmf-dist/tex/context/base/mkiv/math-tag.lua + texmf-dist/tex/context/base/mkiv/math-ttv.lua + texmf-dist/tex/context/base/mkiv/math-vfu.lua + texmf-dist/tex/context/base/mkiv/meta-blb.lua + texmf-dist/tex/context/base/mkiv/meta-blb.mkiv + texmf-dist/tex/context/base/mkiv/meta-fig.mkiv + texmf-dist/tex/context/base/mkiv/meta-fnt.lua + texmf-dist/tex/context/base/mkiv/meta-fnt.mkiv + texmf-dist/tex/context/base/mkiv/meta-fun.lua + texmf-dist/tex/context/base/mkiv/meta-fun.mkiv + texmf-dist/tex/context/base/mkiv/meta-grd.mkiv + texmf-dist/tex/context/base/mkiv/meta-imp-clp.mkiv + texmf-dist/tex/context/base/mkiv/meta-imp-dum.mkiv + texmf-dist/tex/context/base/mkiv/meta-imp-fen.mkiv + texmf-dist/tex/context/base/mkiv/meta-imp-grid.mkiv + texmf-dist/tex/context/base/mkiv/meta-imp-mat.mkiv + texmf-dist/tex/context/base/mkiv/meta-imp-mis.mkiv + texmf-dist/tex/context/base/mkiv/meta-imp-nav.mkiv + texmf-dist/tex/context/base/mkiv/meta-imp-outlines.mkiv + texmf-dist/tex/context/base/mkiv/meta-imp-pre.mkiv + texmf-dist/tex/context/base/mkiv/meta-imp-tab.mkiv + texmf-dist/tex/context/base/mkiv/meta-imp-txt.mkiv + texmf-dist/tex/context/base/mkiv/meta-ini.lua + texmf-dist/tex/context/base/mkiv/meta-ini.mkiv + texmf-dist/tex/context/base/mkiv/meta-lua.lua + texmf-dist/tex/context/base/mkiv/meta-lua.mkiv + texmf-dist/tex/context/base/mkiv/meta-nod.lua + texmf-dist/tex/context/base/mkiv/meta-nod.mkiv + texmf-dist/tex/context/base/mkiv/meta-pag.mkiv + texmf-dist/tex/context/base/mkiv/meta-pdf.lua + texmf-dist/tex/context/base/mkiv/meta-pdf.mkiv + texmf-dist/tex/context/base/mkiv/meta-pdh.lua + texmf-dist/tex/context/base/mkiv/meta-pdh.mkiv + texmf-dist/tex/context/base/mkiv/meta-tex.lua + texmf-dist/tex/context/base/mkiv/meta-tex.mkiv + texmf-dist/tex/context/base/mkiv/meta-xml.mkiv + texmf-dist/tex/context/base/mkiv/mlib-ctx.lua + texmf-dist/tex/context/base/mkiv/mlib-ctx.mkiv + texmf-dist/tex/context/base/mkiv/mlib-int.lua + texmf-dist/tex/context/base/mkiv/mlib-lua.lua + texmf-dist/tex/context/base/mkiv/mlib-pdf.lua + texmf-dist/tex/context/base/mkiv/mlib-pdf.mkiv + texmf-dist/tex/context/base/mkiv/mlib-pps.lua + texmf-dist/tex/context/base/mkiv/mlib-pps.mkiv + texmf-dist/tex/context/base/mkiv/mlib-run.lua + texmf-dist/tex/context/base/mkiv/mtx-context-arrange.tex + texmf-dist/tex/context/base/mkiv/mtx-context-combine.tex + texmf-dist/tex/context/base/mkiv/mtx-context-common.tex + texmf-dist/tex/context/base/mkiv/mtx-context-compare.tex + texmf-dist/tex/context/base/mkiv/mtx-context-copy.tex + texmf-dist/tex/context/base/mkiv/mtx-context-domotica.tex + texmf-dist/tex/context/base/mkiv/mtx-context-fonts.tex + texmf-dist/tex/context/base/mkiv/mtx-context-ideas.tex + texmf-dist/tex/context/base/mkiv/mtx-context-listing.tex + texmf-dist/tex/context/base/mkiv/mtx-context-markdown.tex + texmf-dist/tex/context/base/mkiv/mtx-context-meaning.tex + texmf-dist/tex/context/base/mkiv/mtx-context-module.tex + texmf-dist/tex/context/base/mkiv/mtx-context-precache.tex + texmf-dist/tex/context/base/mkiv/mtx-context-select.tex + texmf-dist/tex/context/base/mkiv/mtx-context-setups.tex + texmf-dist/tex/context/base/mkiv/mtx-context-sql.tex + texmf-dist/tex/context/base/mkiv/mtx-context-timing.tex + texmf-dist/tex/context/base/mkiv/mtx-context-trim.tex + texmf-dist/tex/context/base/mkiv/mtx-context-xml.tex + texmf-dist/tex/context/base/mkiv/mult-aux.lua + texmf-dist/tex/context/base/mkiv/mult-aux.mkiv + texmf-dist/tex/context/base/mkiv/mult-chk.lua + texmf-dist/tex/context/base/mkiv/mult-chk.mkiv + texmf-dist/tex/context/base/mkiv/mult-def.lua + texmf-dist/tex/context/base/mkiv/mult-def.mkiv + texmf-dist/tex/context/base/mkiv/mult-dim.mkvi + texmf-dist/tex/context/base/mkiv/mult-fun.lua + texmf-dist/tex/context/base/mkiv/mult-ini.lua + texmf-dist/tex/context/base/mkiv/mult-ini.mkiv + texmf-dist/tex/context/base/mkiv/mult-low.lua + texmf-dist/tex/context/base/mkiv/mult-mes.lua + texmf-dist/tex/context/base/mkiv/mult-mps.lua + texmf-dist/tex/context/base/mkiv/mult-prm.lua + texmf-dist/tex/context/base/mkiv/mult-prm.mkiv + texmf-dist/tex/context/base/mkiv/mult-sys.mkiv + texmf-dist/tex/context/base/mkiv/node-acc.lua + texmf-dist/tex/context/base/mkiv/node-aux.lua + texmf-dist/tex/context/base/mkiv/node-bck.lua + texmf-dist/tex/context/base/mkiv/node-bck.mkiv + texmf-dist/tex/context/base/mkiv/node-dir.lua + texmf-dist/tex/context/base/mkiv/node-ext.lua + texmf-dist/tex/context/base/mkiv/node-fin.lua + texmf-dist/tex/context/base/mkiv/node-fin.mkiv + texmf-dist/tex/context/base/mkiv/node-fnt.lua + texmf-dist/tex/context/base/mkiv/node-ini.lua + texmf-dist/tex/context/base/mkiv/node-ini.mkiv + texmf-dist/tex/context/base/mkiv/node-ltp.lua + texmf-dist/tex/context/base/mkiv/node-met.lua + texmf-dist/tex/context/base/mkiv/node-mig.lua + texmf-dist/tex/context/base/mkiv/node-mig.mkiv + texmf-dist/tex/context/base/mkiv/node-nut.lua + texmf-dist/tex/context/base/mkiv/node-pag.lua + texmf-dist/tex/context/base/mkiv/node-pag.mkiv + texmf-dist/tex/context/base/mkiv/node-par.lua + texmf-dist/tex/context/base/mkiv/node-ppt.lua + texmf-dist/tex/context/base/mkiv/node-pro.lua + texmf-dist/tex/context/base/mkiv/node-ref.lua + texmf-dist/tex/context/base/mkiv/node-res.lua + texmf-dist/tex/context/base/mkiv/node-rul.lua + texmf-dist/tex/context/base/mkiv/node-rul.mkiv + texmf-dist/tex/context/base/mkiv/node-scn.lua + texmf-dist/tex/context/base/mkiv/node-ser.lua + texmf-dist/tex/context/base/mkiv/node-shp.lua + texmf-dist/tex/context/base/mkiv/node-snp.lua + texmf-dist/tex/context/base/mkiv/node-syn.lua + texmf-dist/tex/context/base/mkiv/node-tex.lua + texmf-dist/tex/context/base/mkiv/node-tra.lua + texmf-dist/tex/context/base/mkiv/node-tsk.lua + texmf-dist/tex/context/base/mkiv/node-tst.lua + texmf-dist/tex/context/base/mkiv/node-typ.lua + texmf-dist/tex/context/base/mkiv/norm-ctx.mkiv + texmf-dist/tex/context/base/mkiv/pack-bar.mkiv + texmf-dist/tex/context/base/mkiv/pack-bck.mkvi + texmf-dist/tex/context/base/mkiv/pack-box.mkiv + texmf-dist/tex/context/base/mkiv/pack-com.mkiv + texmf-dist/tex/context/base/mkiv/pack-cut.mkiv + texmf-dist/tex/context/base/mkiv/pack-fen.mkiv + texmf-dist/tex/context/base/mkiv/pack-lyr.mkiv + texmf-dist/tex/context/base/mkiv/pack-mis.mkvi + texmf-dist/tex/context/base/mkiv/pack-mrl.mkiv + texmf-dist/tex/context/base/mkiv/pack-obj.lua + texmf-dist/tex/context/base/mkiv/pack-obj.mkiv + texmf-dist/tex/context/base/mkiv/pack-pos.mkiv + texmf-dist/tex/context/base/mkiv/pack-rul.lua + texmf-dist/tex/context/base/mkiv/pack-rul.mkiv + texmf-dist/tex/context/base/mkiv/page-app.mkiv + texmf-dist/tex/context/base/mkiv/page-bck.mkiv + texmf-dist/tex/context/base/mkiv/page-box.mkvi + texmf-dist/tex/context/base/mkiv/page-brk.mkiv + texmf-dist/tex/context/base/mkiv/page-col.mkiv + texmf-dist/tex/context/base/mkiv/page-com.mkiv + texmf-dist/tex/context/base/mkiv/page-cst.lua + texmf-dist/tex/context/base/mkiv/page-cst.mkiv + texmf-dist/tex/context/base/mkiv/page-fac.mkiv + texmf-dist/tex/context/base/mkiv/page-ffl.mkiv + texmf-dist/tex/context/base/mkiv/page-flt.lua + texmf-dist/tex/context/base/mkiv/page-flt.mkiv + texmf-dist/tex/context/base/mkiv/page-flw.mkiv + texmf-dist/tex/context/base/mkiv/page-imp.mkiv + texmf-dist/tex/context/base/mkiv/page-inf.mkiv + texmf-dist/tex/context/base/mkiv/page-ini.lua + texmf-dist/tex/context/base/mkiv/page-ini.mkiv + texmf-dist/tex/context/base/mkiv/page-inj.lua + texmf-dist/tex/context/base/mkiv/page-inj.mkvi + texmf-dist/tex/context/base/mkiv/page-ins.lua + texmf-dist/tex/context/base/mkiv/page-ins.mkiv + texmf-dist/tex/context/base/mkiv/page-lay.mkiv + texmf-dist/tex/context/base/mkiv/page-lin.lua + texmf-dist/tex/context/base/mkiv/page-lin.mkvi + texmf-dist/tex/context/base/mkiv/page-mak.mkvi + texmf-dist/tex/context/base/mkiv/page-mbk.mkvi + texmf-dist/tex/context/base/mkiv/page-mix.lua + texmf-dist/tex/context/base/mkiv/page-mix.mkiv + texmf-dist/tex/context/base/mkiv/page-mrk.mkiv + texmf-dist/tex/context/base/mkiv/page-mul.mkiv + texmf-dist/tex/context/base/mkiv/page-not.mkiv + texmf-dist/tex/context/base/mkiv/page-one.mkiv + texmf-dist/tex/context/base/mkiv/page-otr.lua + texmf-dist/tex/context/base/mkiv/page-otr.mkvi + texmf-dist/tex/context/base/mkiv/page-par.mkiv + texmf-dist/tex/context/base/mkiv/page-pcl.mkiv + texmf-dist/tex/context/base/mkiv/page-plg.mkiv + texmf-dist/tex/context/base/mkiv/page-pst.lua + texmf-dist/tex/context/base/mkiv/page-pst.mkiv + texmf-dist/tex/context/base/mkiv/page-run.lua + texmf-dist/tex/context/base/mkiv/page-run.mkiv + texmf-dist/tex/context/base/mkiv/page-sel.mkvi + texmf-dist/tex/context/base/mkiv/page-set.mkiv + texmf-dist/tex/context/base/mkiv/page-sid.mkiv + texmf-dist/tex/context/base/mkiv/page-smp.mkiv + texmf-dist/tex/context/base/mkiv/page-spr.mkiv + texmf-dist/tex/context/base/mkiv/page-str.lua + texmf-dist/tex/context/base/mkiv/page-str.mkiv + texmf-dist/tex/context/base/mkiv/page-txt.mkvi + texmf-dist/tex/context/base/mkiv/page-var.mkiv + texmf-dist/tex/context/base/mkiv/phys-dim.lua + texmf-dist/tex/context/base/mkiv/phys-dim.mkiv + texmf-dist/tex/context/base/mkiv/prop-ini.mkiv + texmf-dist/tex/context/base/mkiv/publ-aut.lua + texmf-dist/tex/context/base/mkiv/publ-dat.lua + texmf-dist/tex/context/base/mkiv/publ-fnd.lua + texmf-dist/tex/context/base/mkiv/publ-imp-apa.lua + texmf-dist/tex/context/base/mkiv/publ-imp-apa.mkvi + texmf-dist/tex/context/base/mkiv/publ-imp-aps.lua + texmf-dist/tex/context/base/mkiv/publ-imp-aps.mkvi + texmf-dist/tex/context/base/mkiv/publ-imp-author.mkvi + texmf-dist/tex/context/base/mkiv/publ-imp-cite.mkvi + texmf-dist/tex/context/base/mkiv/publ-imp-commands.mkvi + texmf-dist/tex/context/base/mkiv/publ-imp-default.lua + texmf-dist/tex/context/base/mkiv/publ-imp-default.mkvi + texmf-dist/tex/context/base/mkiv/publ-imp-definitions.mkvi + texmf-dist/tex/context/base/mkiv/publ-imp-list.mkvi + texmf-dist/tex/context/base/mkiv/publ-imp-page.mkvi + texmf-dist/tex/context/base/mkiv/publ-imp-replacements.lua + texmf-dist/tex/context/base/mkiv/publ-imp-test.bib + texmf-dist/tex/context/base/mkiv/publ-inc.lua + texmf-dist/tex/context/base/mkiv/publ-inc.mkiv + texmf-dist/tex/context/base/mkiv/publ-ini.lua + texmf-dist/tex/context/base/mkiv/publ-ini.mkiv + texmf-dist/tex/context/base/mkiv/publ-jrn.lua + texmf-dist/tex/context/base/mkiv/publ-old.mkiv + texmf-dist/tex/context/base/mkiv/publ-oth.lua + texmf-dist/tex/context/base/mkiv/publ-reg.lua + texmf-dist/tex/context/base/mkiv/publ-sor.lua + texmf-dist/tex/context/base/mkiv/publ-tra.lua + texmf-dist/tex/context/base/mkiv/publ-tra.mkiv + texmf-dist/tex/context/base/mkiv/publ-usr.lua + texmf-dist/tex/context/base/mkiv/publ-usr.mkiv + texmf-dist/tex/context/base/mkiv/publ-xml.mkiv + texmf-dist/tex/context/base/mkiv/regi-8859-1.lua + texmf-dist/tex/context/base/mkiv/regi-8859-10.lua + texmf-dist/tex/context/base/mkiv/regi-8859-11.lua + texmf-dist/tex/context/base/mkiv/regi-8859-13.lua + texmf-dist/tex/context/base/mkiv/regi-8859-14.lua + texmf-dist/tex/context/base/mkiv/regi-8859-15.lua + texmf-dist/tex/context/base/mkiv/regi-8859-16.lua + texmf-dist/tex/context/base/mkiv/regi-8859-2.lua + texmf-dist/tex/context/base/mkiv/regi-8859-3.lua + texmf-dist/tex/context/base/mkiv/regi-8859-4.lua + texmf-dist/tex/context/base/mkiv/regi-8859-5.lua + texmf-dist/tex/context/base/mkiv/regi-8859-6.lua + texmf-dist/tex/context/base/mkiv/regi-8859-7.lua + texmf-dist/tex/context/base/mkiv/regi-8859-8.lua + texmf-dist/tex/context/base/mkiv/regi-8859-9.lua + texmf-dist/tex/context/base/mkiv/regi-cp1250.lua + texmf-dist/tex/context/base/mkiv/regi-cp1251.lua + texmf-dist/tex/context/base/mkiv/regi-cp1252.lua + texmf-dist/tex/context/base/mkiv/regi-cp1253.lua + texmf-dist/tex/context/base/mkiv/regi-cp1254.lua + texmf-dist/tex/context/base/mkiv/regi-cp1255.lua + texmf-dist/tex/context/base/mkiv/regi-cp1256.lua + texmf-dist/tex/context/base/mkiv/regi-cp1257.lua + texmf-dist/tex/context/base/mkiv/regi-cp1258.lua + texmf-dist/tex/context/base/mkiv/regi-demo.lua + texmf-dist/tex/context/base/mkiv/regi-ibm.lua + texmf-dist/tex/context/base/mkiv/regi-ini.lua + texmf-dist/tex/context/base/mkiv/regi-ini.mkiv + texmf-dist/tex/context/base/mkiv/regi-pdfdoc.lua + texmf-dist/tex/context/base/mkiv/scrn-bar.mkvi + texmf-dist/tex/context/base/mkiv/scrn-but.lua + texmf-dist/tex/context/base/mkiv/scrn-but.mkvi + texmf-dist/tex/context/base/mkiv/scrn-fld.lua + texmf-dist/tex/context/base/mkiv/scrn-fld.mkvi + texmf-dist/tex/context/base/mkiv/scrn-hlp.lua + texmf-dist/tex/context/base/mkiv/scrn-hlp.mkvi + texmf-dist/tex/context/base/mkiv/scrn-ini.lua + texmf-dist/tex/context/base/mkiv/scrn-ini.mkvi + texmf-dist/tex/context/base/mkiv/scrn-pag.lua + texmf-dist/tex/context/base/mkiv/scrn-pag.mkvi + texmf-dist/tex/context/base/mkiv/scrn-ref.lua + texmf-dist/tex/context/base/mkiv/scrn-ref.mkvi + texmf-dist/tex/context/base/mkiv/scrn-wid.lua + texmf-dist/tex/context/base/mkiv/scrn-wid.mkvi + texmf-dist/tex/context/base/mkiv/scrp-cjk.lua + texmf-dist/tex/context/base/mkiv/scrp-eth.lua + texmf-dist/tex/context/base/mkiv/scrp-ini.lua + texmf-dist/tex/context/base/mkiv/scrp-ini.mkiv + texmf-dist/tex/context/base/mkiv/scrp-tha.lua + texmf-dist/tex/context/base/mkiv/scrp-tib.lua + texmf-dist/tex/context/base/mkiv/sort-ini.lua + texmf-dist/tex/context/base/mkiv/sort-ini.mkiv + texmf-dist/tex/context/base/mkiv/sort-lan.lua + texmf-dist/tex/context/base/mkiv/spac-ali.lua + texmf-dist/tex/context/base/mkiv/spac-ali.mkiv + texmf-dist/tex/context/base/mkiv/spac-chr.lua + texmf-dist/tex/context/base/mkiv/spac-chr.mkiv + texmf-dist/tex/context/base/mkiv/spac-def.mkiv + texmf-dist/tex/context/base/mkiv/spac-flr.mkiv + texmf-dist/tex/context/base/mkiv/spac-grd.mkiv + texmf-dist/tex/context/base/mkiv/spac-hor.lua + texmf-dist/tex/context/base/mkiv/spac-hor.mkiv + texmf-dist/tex/context/base/mkiv/spac-lin.mkiv + texmf-dist/tex/context/base/mkiv/spac-pag.mkiv + texmf-dist/tex/context/base/mkiv/spac-par.mkiv + texmf-dist/tex/context/base/mkiv/spac-prf.lua + texmf-dist/tex/context/base/mkiv/spac-prf.mkvi + texmf-dist/tex/context/base/mkiv/spac-ver.lua + texmf-dist/tex/context/base/mkiv/spac-ver.mkiv + texmf-dist/tex/context/base/mkiv/status-files.pdf + texmf-dist/tex/context/base/mkiv/status-lua.pdf + texmf-dist/tex/context/base/mkiv/strc-bkm.lua + texmf-dist/tex/context/base/mkiv/strc-bkm.mkiv + texmf-dist/tex/context/base/mkiv/strc-blk.lua + texmf-dist/tex/context/base/mkiv/strc-blk.mkiv + texmf-dist/tex/context/base/mkiv/strc-con.lua + texmf-dist/tex/context/base/mkiv/strc-con.mkvi + texmf-dist/tex/context/base/mkiv/strc-def.mkiv + texmf-dist/tex/context/base/mkiv/strc-des.mkvi + texmf-dist/tex/context/base/mkiv/strc-doc.lua + texmf-dist/tex/context/base/mkiv/strc-doc.mkiv + texmf-dist/tex/context/base/mkiv/strc-enu.mkvi + texmf-dist/tex/context/base/mkiv/strc-flt.lua + texmf-dist/tex/context/base/mkiv/strc-flt.mkvi + texmf-dist/tex/context/base/mkiv/strc-ind.mkiv + texmf-dist/tex/context/base/mkiv/strc-ini.lua + texmf-dist/tex/context/base/mkiv/strc-ini.mkvi + texmf-dist/tex/context/base/mkiv/strc-itm.lua + texmf-dist/tex/context/base/mkiv/strc-itm.mkvi + texmf-dist/tex/context/base/mkiv/strc-lab.mkiv + texmf-dist/tex/context/base/mkiv/strc-lev.lua + texmf-dist/tex/context/base/mkiv/strc-lev.mkvi + texmf-dist/tex/context/base/mkiv/strc-lnt.mkvi + texmf-dist/tex/context/base/mkiv/strc-lst.lua + texmf-dist/tex/context/base/mkiv/strc-lst.mkvi + texmf-dist/tex/context/base/mkiv/strc-mar.lua + texmf-dist/tex/context/base/mkiv/strc-mar.mkiv + texmf-dist/tex/context/base/mkiv/strc-mat.lua + texmf-dist/tex/context/base/mkiv/strc-mat.mkiv + texmf-dist/tex/context/base/mkiv/strc-not.lua + texmf-dist/tex/context/base/mkiv/strc-not.mkvi + texmf-dist/tex/context/base/mkiv/strc-num.lua + texmf-dist/tex/context/base/mkiv/strc-num.mkiv + texmf-dist/tex/context/base/mkiv/strc-pag.lua + texmf-dist/tex/context/base/mkiv/strc-pag.mkiv + texmf-dist/tex/context/base/mkiv/strc-ref.lua + texmf-dist/tex/context/base/mkiv/strc-ref.mkvi + texmf-dist/tex/context/base/mkiv/strc-reg.lua + texmf-dist/tex/context/base/mkiv/strc-reg.mkiv + texmf-dist/tex/context/base/mkiv/strc-ren.mkiv + texmf-dist/tex/context/base/mkiv/strc-rsc.lua + texmf-dist/tex/context/base/mkiv/strc-sbe.mkiv + texmf-dist/tex/context/base/mkiv/strc-sec.mkiv + texmf-dist/tex/context/base/mkiv/strc-syn.lua + texmf-dist/tex/context/base/mkiv/strc-syn.mkiv + texmf-dist/tex/context/base/mkiv/strc-tag.lua + texmf-dist/tex/context/base/mkiv/strc-tag.mkiv + texmf-dist/tex/context/base/mkiv/strc-usr.lua + texmf-dist/tex/context/base/mkiv/strc-usr.mkiv + texmf-dist/tex/context/base/mkiv/strc-xml.mkiv + texmf-dist/tex/context/base/mkiv/supp-box.lua + texmf-dist/tex/context/base/mkiv/supp-box.mkiv + texmf-dist/tex/context/base/mkiv/supp-dir.mkiv + texmf-dist/tex/context/base/mkiv/supp-mat.mkiv + texmf-dist/tex/context/base/mkiv/supp-ran.lua + texmf-dist/tex/context/base/mkiv/supp-ran.mkiv + texmf-dist/tex/context/base/mkiv/supp-vis.mkiv + texmf-dist/tex/context/base/mkiv/symb-emj.lua + texmf-dist/tex/context/base/mkiv/symb-emj.mkiv + texmf-dist/tex/context/base/mkiv/symb-imp-cc.mkiv + texmf-dist/tex/context/base/mkiv/symb-imp-cow.mkiv + texmf-dist/tex/context/base/mkiv/symb-imp-eur.mkiv + texmf-dist/tex/context/base/mkiv/symb-imp-fontawesome.mkiv + texmf-dist/tex/context/base/mkiv/symb-imp-jmn.mkiv + texmf-dist/tex/context/base/mkiv/symb-imp-mis.mkiv + texmf-dist/tex/context/base/mkiv/symb-imp-mvs.mkiv + texmf-dist/tex/context/base/mkiv/symb-imp-nav.mkiv + texmf-dist/tex/context/base/mkiv/symb-ini.lua + texmf-dist/tex/context/base/mkiv/symb-ini.mkiv + texmf-dist/tex/context/base/mkiv/symb-run.mkiv + texmf-dist/tex/context/base/mkiv/syst-aux.lua + texmf-dist/tex/context/base/mkiv/syst-aux.mkiv + texmf-dist/tex/context/base/mkiv/syst-cmp.lua + texmf-dist/tex/context/base/mkiv/syst-cmp.mkiv + texmf-dist/tex/context/base/mkiv/syst-con.lua + texmf-dist/tex/context/base/mkiv/syst-con.mkiv + texmf-dist/tex/context/base/mkiv/syst-fnt.mkiv + texmf-dist/tex/context/base/mkiv/syst-ini.mkiv + texmf-dist/tex/context/base/mkiv/syst-lua.lua + texmf-dist/tex/context/base/mkiv/syst-lua.mkiv + texmf-dist/tex/context/base/mkiv/syst-mes.mkiv + texmf-dist/tex/context/base/mkiv/syst-pln.mkiv + texmf-dist/tex/context/base/mkiv/syst-rtp.mkiv + texmf-dist/tex/context/base/mkiv/tabl-com.mkiv + texmf-dist/tex/context/base/mkiv/tabl-frm.mkiv + texmf-dist/tex/context/base/mkiv/tabl-ltb.mkiv + texmf-dist/tex/context/base/mkiv/tabl-mis.mkiv + texmf-dist/tex/context/base/mkiv/tabl-ntb.mkiv + texmf-dist/tex/context/base/mkiv/tabl-nte.mkiv + texmf-dist/tex/context/base/mkiv/tabl-pln.mkiv + texmf-dist/tex/context/base/mkiv/tabl-tab.mkiv + texmf-dist/tex/context/base/mkiv/tabl-tbl.lua + texmf-dist/tex/context/base/mkiv/tabl-tbl.mkiv + texmf-dist/tex/context/base/mkiv/tabl-tsp.mkiv + texmf-dist/tex/context/base/mkiv/tabl-xnt.mkvi + texmf-dist/tex/context/base/mkiv/tabl-xtb.lua + texmf-dist/tex/context/base/mkiv/tabl-xtb.mkvi + texmf-dist/tex/context/base/mkiv/task-ini.lua + texmf-dist/tex/context/base/mkiv/task-ini.mkiv + texmf-dist/tex/context/base/mkiv/toks-aux.mkiv + texmf-dist/tex/context/base/mkiv/toks-ini.lua + texmf-dist/tex/context/base/mkiv/toks-ini.mkiv + texmf-dist/tex/context/base/mkiv/toks-map.lua + texmf-dist/tex/context/base/mkiv/toks-map.mkiv + texmf-dist/tex/context/base/mkiv/toks-scn.lua + texmf-dist/tex/context/base/mkiv/toks-scn.mkiv + texmf-dist/tex/context/base/mkiv/toks-tra.lua + texmf-dist/tex/context/base/mkiv/toks-tra.mkiv + texmf-dist/tex/context/base/mkiv/trac-ctx.lua + texmf-dist/tex/context/base/mkiv/trac-ctx.mkiv + texmf-dist/tex/context/base/mkiv/trac-deb.lua + texmf-dist/tex/context/base/mkiv/trac-deb.mkiv + texmf-dist/tex/context/base/mkiv/trac-exp.lua + texmf-dist/tex/context/base/mkiv/trac-fil.lua + texmf-dist/tex/context/base/mkiv/trac-inf.lua + texmf-dist/tex/context/base/mkiv/trac-jus.lua + texmf-dist/tex/context/base/mkiv/trac-jus.mkiv + texmf-dist/tex/context/base/mkiv/trac-lmx.lua + texmf-dist/tex/context/base/mkiv/trac-log.lua + texmf-dist/tex/context/base/mkiv/trac-par.lua + texmf-dist/tex/context/base/mkiv/trac-pro.lua + texmf-dist/tex/context/base/mkiv/trac-set.lua + texmf-dist/tex/context/base/mkiv/trac-tex.lua + texmf-dist/tex/context/base/mkiv/trac-tex.mkiv + texmf-dist/tex/context/base/mkiv/trac-tim.lua + texmf-dist/tex/context/base/mkiv/trac-vis.lua + texmf-dist/tex/context/base/mkiv/trac-vis.mkiv + texmf-dist/tex/context/base/mkiv/trac-xml.lua + texmf-dist/tex/context/base/mkiv/type-def.mkiv + texmf-dist/tex/context/base/mkiv/type-fbk.mkiv + texmf-dist/tex/context/base/mkiv/type-ini.lua + texmf-dist/tex/context/base/mkiv/type-ini.mkvi + texmf-dist/tex/context/base/mkiv/type-lua.mkiv + texmf-dist/tex/context/base/mkiv/type-one.mkiv + texmf-dist/tex/context/base/mkiv/type-otf.mkiv + texmf-dist/tex/context/base/mkiv/type-set.mkiv + texmf-dist/tex/context/base/mkiv/type-siz.mkiv + texmf-dist/tex/context/base/mkiv/type-tmf.mkiv + texmf-dist/tex/context/base/mkiv/typo-bld.lua + texmf-dist/tex/context/base/mkiv/typo-bld.mkiv + texmf-dist/tex/context/base/mkiv/typo-brk.lua + texmf-dist/tex/context/base/mkiv/typo-brk.mkiv + texmf-dist/tex/context/base/mkiv/typo-cap.lua + texmf-dist/tex/context/base/mkiv/typo-cap.mkiv + texmf-dist/tex/context/base/mkiv/typo-chr.lua + texmf-dist/tex/context/base/mkiv/typo-chr.mkiv + texmf-dist/tex/context/base/mkiv/typo-cln.lua + texmf-dist/tex/context/base/mkiv/typo-cln.mkiv + texmf-dist/tex/context/base/mkiv/typo-del.mkiv + texmf-dist/tex/context/base/mkiv/typo-dha.lua + texmf-dist/tex/context/base/mkiv/typo-dig.lua + texmf-dist/tex/context/base/mkiv/typo-dig.mkiv + texmf-dist/tex/context/base/mkiv/typo-dir.lua + texmf-dist/tex/context/base/mkiv/typo-dir.mkiv + texmf-dist/tex/context/base/mkiv/typo-drp.lua + texmf-dist/tex/context/base/mkiv/typo-drp.mkiv + texmf-dist/tex/context/base/mkiv/typo-dua.lua + texmf-dist/tex/context/base/mkiv/typo-dub.lua + texmf-dist/tex/context/base/mkiv/typo-duc.lua + texmf-dist/tex/context/base/mkiv/typo-fkr.lua + texmf-dist/tex/context/base/mkiv/typo-fkr.mkiv + texmf-dist/tex/context/base/mkiv/typo-fln.lua + texmf-dist/tex/context/base/mkiv/typo-fln.mkiv + texmf-dist/tex/context/base/mkiv/typo-ini.lua + texmf-dist/tex/context/base/mkiv/typo-ini.mkiv + texmf-dist/tex/context/base/mkiv/typo-inj.lua + texmf-dist/tex/context/base/mkiv/typo-inj.mkiv + texmf-dist/tex/context/base/mkiv/typo-itc.lua + texmf-dist/tex/context/base/mkiv/typo-itc.mkvi + texmf-dist/tex/context/base/mkiv/typo-itm.mkiv + texmf-dist/tex/context/base/mkiv/typo-krn.lua + texmf-dist/tex/context/base/mkiv/typo-krn.mkiv + texmf-dist/tex/context/base/mkiv/typo-lan.lua + texmf-dist/tex/context/base/mkiv/typo-lan.mkiv + texmf-dist/tex/context/base/mkiv/typo-lig.mkiv + texmf-dist/tex/context/base/mkiv/typo-lin.lua + texmf-dist/tex/context/base/mkiv/typo-lin.mkiv + texmf-dist/tex/context/base/mkiv/typo-man.lua + texmf-dist/tex/context/base/mkiv/typo-mar.lua + texmf-dist/tex/context/base/mkiv/typo-mar.mkiv + texmf-dist/tex/context/base/mkiv/typo-ovl.lua + texmf-dist/tex/context/base/mkiv/typo-ovl.mkiv + texmf-dist/tex/context/base/mkiv/typo-pag.lua + texmf-dist/tex/context/base/mkiv/typo-pag.mkiv + texmf-dist/tex/context/base/mkiv/typo-par.mkiv + texmf-dist/tex/context/base/mkiv/typo-pnc.lua + texmf-dist/tex/context/base/mkiv/typo-pnc.mkiv + texmf-dist/tex/context/base/mkiv/typo-prc.lua + texmf-dist/tex/context/base/mkiv/typo-prc.mkvi + texmf-dist/tex/context/base/mkiv/typo-rep.lua + texmf-dist/tex/context/base/mkiv/typo-rep.mkiv + texmf-dist/tex/context/base/mkiv/typo-rub.lua + texmf-dist/tex/context/base/mkiv/typo-rub.mkiv + texmf-dist/tex/context/base/mkiv/typo-scr.mkiv + texmf-dist/tex/context/base/mkiv/typo-spa.lua + texmf-dist/tex/context/base/mkiv/typo-spa.mkiv + texmf-dist/tex/context/base/mkiv/typo-sus.lua + texmf-dist/tex/context/base/mkiv/typo-sus.mkiv + texmf-dist/tex/context/base/mkiv/typo-tal.lua + texmf-dist/tex/context/base/mkiv/typo-tal.mkiv + texmf-dist/tex/context/base/mkiv/typo-txt.mkvi + texmf-dist/tex/context/base/mkiv/typo-wrp.lua + texmf-dist/tex/context/base/mkiv/typo-wrp.mkiv + texmf-dist/tex/context/base/mkiv/unic-ini.lua + texmf-dist/tex/context/base/mkiv/unic-ini.mkiv + texmf-dist/tex/context/base/mkiv/util-deb.lua + texmf-dist/tex/context/base/mkiv/util-dim.lua + texmf-dist/tex/context/base/mkiv/util-env.lua + texmf-dist/tex/context/base/mkiv/util-evo-imp-server.lua + texmf-dist/tex/context/base/mkiv/util-evo.lua + texmf-dist/tex/context/base/mkiv/util-fil.lua + texmf-dist/tex/context/base/mkiv/util-fmt.lua + texmf-dist/tex/context/base/mkiv/util-jsn.lua + texmf-dist/tex/context/base/mkiv/util-lib-imp-gm.lua + texmf-dist/tex/context/base/mkiv/util-lib-imp-gs.lua + texmf-dist/tex/context/base/mkiv/util-lib.lua + texmf-dist/tex/context/base/mkiv/util-lua.lua + texmf-dist/tex/context/base/mkiv/util-mrg.lua + texmf-dist/tex/context/base/mkiv/util-pck.lua + texmf-dist/tex/context/base/mkiv/util-prs.lua + texmf-dist/tex/context/base/mkiv/util-ran.lua + texmf-dist/tex/context/base/mkiv/util-sac.lua + texmf-dist/tex/context/base/mkiv/util-sbx.lua + texmf-dist/tex/context/base/mkiv/util-sci.lua + texmf-dist/tex/context/base/mkiv/util-seq.lua + texmf-dist/tex/context/base/mkiv/util-sha.lua + texmf-dist/tex/context/base/mkiv/util-soc-imp-copas.lua + texmf-dist/tex/context/base/mkiv/util-soc-imp-ftp.lua + texmf-dist/tex/context/base/mkiv/util-soc-imp-headers.lua + texmf-dist/tex/context/base/mkiv/util-soc-imp-http.lua + texmf-dist/tex/context/base/mkiv/util-soc-imp-ltn12.lua + texmf-dist/tex/context/base/mkiv/util-soc-imp-mime.lua + texmf-dist/tex/context/base/mkiv/util-soc-imp-reset.lua + texmf-dist/tex/context/base/mkiv/util-soc-imp-smtp.lua + texmf-dist/tex/context/base/mkiv/util-soc-imp-socket.lua + texmf-dist/tex/context/base/mkiv/util-soc-imp-tp.lua + texmf-dist/tex/context/base/mkiv/util-soc-imp-url.lua + texmf-dist/tex/context/base/mkiv/util-soc.lua + texmf-dist/tex/context/base/mkiv/util-sql-imp-client.lua + texmf-dist/tex/context/base/mkiv/util-sql-imp-ffi.lua + texmf-dist/tex/context/base/mkiv/util-sql-imp-library.lua + texmf-dist/tex/context/base/mkiv/util-sql-imp-sqlite.lua + texmf-dist/tex/context/base/mkiv/util-sql-imp-swiglib.lua + texmf-dist/tex/context/base/mkiv/util-sql-loggers.lua + texmf-dist/tex/context/base/mkiv/util-sql-logins.lua + texmf-dist/tex/context/base/mkiv/util-sql-sessions.lua + texmf-dist/tex/context/base/mkiv/util-sql-tickets.lua + texmf-dist/tex/context/base/mkiv/util-sql-tracers.lua + texmf-dist/tex/context/base/mkiv/util-sql-users.lua + texmf-dist/tex/context/base/mkiv/util-sql.lua + texmf-dist/tex/context/base/mkiv/util-sta.lua + texmf-dist/tex/context/base/mkiv/util-sto.lua + texmf-dist/tex/context/base/mkiv/util-str.lua + texmf-dist/tex/context/base/mkiv/util-tab.lua + texmf-dist/tex/context/base/mkiv/util-tpl.lua + texmf-dist/tex/context/base/mkiv/util-you.lua + texmf-dist/tex/context/bib/common/sample.bib + texmf-dist/tex/context/bib/mkii/bibl-ams.tex + texmf-dist/tex/context/bib/mkii/bibl-apa-de.tex + texmf-dist/tex/context/bib/mkii/bibl-apa-fr.tex + texmf-dist/tex/context/bib/mkii/bibl-apa-it.tex + texmf-dist/tex/context/bib/mkii/bibl-apa.tex + texmf-dist/tex/context/bib/mkii/bibl-aps.tex + texmf-dist/tex/context/bib/mkii/bibl-num-fr.tex + texmf-dist/tex/context/bib/mkii/bibl-num.tex + texmf-dist/tex/context/bib/mkii/bibl-ssa.tex + texmf-dist/tex/context/colors/icc/context/colorprofiles.lua + texmf-dist/tex/context/colors/icc/context/colorprofiles.xml + texmf-dist/tex/context/fonts/mkii/type-buy.mkii + texmf-dist/tex/context/fonts/mkii/type-cbg.mkii + texmf-dist/tex/context/fonts/mkii/type-cow.mkii + texmf-dist/tex/context/fonts/mkii/type-exp.mkii + texmf-dist/tex/context/fonts/mkii/type-fsf.mkii + texmf-dist/tex/context/fonts/mkii/type-ghz.mkii + texmf-dist/tex/context/fonts/mkii/type-hgz.mkii + texmf-dist/tex/context/fonts/mkii/type-mac.mkii + texmf-dist/tex/context/fonts/mkii/type-msw.mkii + texmf-dist/tex/context/fonts/mkii/type-pre.mkii + texmf-dist/tex/context/fonts/mkii/type-win.mkii + texmf-dist/tex/context/fonts/mkii/type-xtx.mkii + texmf-dist/tex/context/fonts/mkiv/antykwa-math.lfg + texmf-dist/tex/context/fonts/mkiv/antykwapoltawskiego.lfg + texmf-dist/tex/context/fonts/mkiv/asana-math.lfg + texmf-dist/tex/context/fonts/mkiv/bonum-math.lfg + texmf-dist/tex/context/fonts/mkiv/cambria-math.lfg + texmf-dist/tex/context/fonts/mkiv/cambria.lfg + texmf-dist/tex/context/fonts/mkiv/cc-icons.lfg + texmf-dist/tex/context/fonts/mkiv/ccicons.lfg + texmf-dist/tex/context/fonts/mkiv/dejavu-math.lfg + texmf-dist/tex/context/fonts/mkiv/demo.lfg + texmf-dist/tex/context/fonts/mkiv/dingbats.lfg + texmf-dist/tex/context/fonts/mkiv/ebgaramond.lfg + texmf-dist/tex/context/fonts/mkiv/euler-math.lfg + texmf-dist/tex/context/fonts/mkiv/hanbatanglvt.lfg + texmf-dist/tex/context/fonts/mkiv/husayni.lfg + texmf-dist/tex/context/fonts/mkiv/hvmath-math.lfg + texmf-dist/tex/context/fonts/mkiv/informal-math.lfg + texmf-dist/tex/context/fonts/mkiv/iwona-math.lfg + texmf-dist/tex/context/fonts/mkiv/lm-math.lfg + texmf-dist/tex/context/fonts/mkiv/lm.lfg + texmf-dist/tex/context/fonts/mkiv/lucida-opentype-math.lfg + texmf-dist/tex/context/fonts/mkiv/lucida-typeone-math.lfg + texmf-dist/tex/context/fonts/mkiv/mathtimes-math.lfg + texmf-dist/tex/context/fonts/mkiv/mdbch-math.lfg + texmf-dist/tex/context/fonts/mkiv/mdici-math.lfg + texmf-dist/tex/context/fonts/mkiv/mdpgd-math.lfg + texmf-dist/tex/context/fonts/mkiv/mdpus-math.lfg + texmf-dist/tex/context/fonts/mkiv/mdput-math.lfg + texmf-dist/tex/context/fonts/mkiv/mdugm-math.lfg + texmf-dist/tex/context/fonts/mkiv/minion-math.lfg + texmf-dist/tex/context/fonts/mkiv/minion.lfg + texmf-dist/tex/context/fonts/mkiv/pagella-math.lfg + texmf-dist/tex/context/fonts/mkiv/px-math.lfg + texmf-dist/tex/context/fonts/mkiv/schola-math.lfg + texmf-dist/tex/context/fonts/mkiv/stix-two-math.lfg + texmf-dist/tex/context/fonts/mkiv/symbol-math.lfg + texmf-dist/tex/context/fonts/mkiv/termes-math.lfg + texmf-dist/tex/context/fonts/mkiv/texgyre.lfg + texmf-dist/tex/context/fonts/mkiv/treatments.lfg + texmf-dist/tex/context/fonts/mkiv/tx-math.lfg + texmf-dist/tex/context/fonts/mkiv/type-imp-antykwa.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-antykwapoltawskiego.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-asana.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-averia.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-buy.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-cambria.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-charter.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-cleartype.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-computer-modern-unicode.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-cow.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-dejavu.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-ebgaramond.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-euler.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-firacode.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-gentium.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-ghz.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-gofonts.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-hgz.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-husayni.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-hvmath.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-inconsolata.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-informal.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-ipaex.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-iwona.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-koeielettersot.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-kurier.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-latinmodern.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-lato.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-liberation.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-libertine.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-libertinus.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-lmnames.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-lucida-opentype.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-lucida-typeone.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-mathdesign.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-mathdigits.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-mathtimes.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-minion.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-modernlatin.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-mscore.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-opendyslexic.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-osx.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-plex.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-postscript.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-punknova.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-source.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-stix.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-texgyre.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-unfonts.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-xits.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-xitsbidi.mkiv + texmf-dist/tex/context/fonts/mkiv/unifraktur.lfg + texmf-dist/tex/context/fonts/mkiv/xits-math.lfg + texmf-dist/tex/context/interface/mkii/cont-cs.xml + texmf-dist/tex/context/interface/mkii/cont-de.xml + texmf-dist/tex/context/interface/mkii/cont-fr.xml + texmf-dist/tex/context/interface/mkii/cont-it.xml + texmf-dist/tex/context/interface/mkii/cont-nl.xml + texmf-dist/tex/context/interface/mkii/cont-pe.xml + texmf-dist/tex/context/interface/mkii/cont-ro.xml + texmf-dist/tex/context/interface/mkii/keys-cs.xml + texmf-dist/tex/context/interface/mkii/keys-cz.xml + texmf-dist/tex/context/interface/mkii/keys-de.xml + texmf-dist/tex/context/interface/mkii/keys-en.xml + texmf-dist/tex/context/interface/mkii/keys-fr.xml + texmf-dist/tex/context/interface/mkii/keys-it.xml + texmf-dist/tex/context/interface/mkii/keys-nl.xml + texmf-dist/tex/context/interface/mkii/keys-pe.xml + texmf-dist/tex/context/interface/mkii/keys-ro.xml + texmf-dist/tex/context/interface/mkiv/context-en.xml + texmf-dist/tex/context/interface/mkiv/i-accent.xml + texmf-dist/tex/context/interface/mkiv/i-align.xml + texmf-dist/tex/context/interface/mkiv/i-anchor.xml + texmf-dist/tex/context/interface/mkiv/i-attachment.xml + texmf-dist/tex/context/interface/mkiv/i-attribute.xml + texmf-dist/tex/context/interface/mkiv/i-backend.xml + texmf-dist/tex/context/interface/mkiv/i-background.xml + texmf-dist/tex/context/interface/mkiv/i-bar.xml + texmf-dist/tex/context/interface/mkiv/i-blackrule.xml + texmf-dist/tex/context/interface/mkiv/i-bleed.xml + texmf-dist/tex/context/interface/mkiv/i-block.xml + texmf-dist/tex/context/interface/mkiv/i-bookmark.xml + texmf-dist/tex/context/interface/mkiv/i-boxes.xml + texmf-dist/tex/context/interface/mkiv/i-buffer.xml + texmf-dist/tex/context/interface/mkiv/i-button.xml + texmf-dist/tex/context/interface/mkiv/i-capitals.xml + texmf-dist/tex/context/interface/mkiv/i-catcodes.xml + texmf-dist/tex/context/interface/mkiv/i-character.xml + texmf-dist/tex/context/interface/mkiv/i-characteralign.xml + texmf-dist/tex/context/interface/mkiv/i-characterspacing.xml + texmf-dist/tex/context/interface/mkiv/i-characterstripping.xml + texmf-dist/tex/context/interface/mkiv/i-chart.xml + texmf-dist/tex/context/interface/mkiv/i-charwidth.xml + texmf-dist/tex/context/interface/mkiv/i-chemical.xml + texmf-dist/tex/context/interface/mkiv/i-cleaning.xml + texmf-dist/tex/context/interface/mkiv/i-clipping.xml + texmf-dist/tex/context/interface/mkiv/i-collector.xml + texmf-dist/tex/context/interface/mkiv/i-color.xml + texmf-dist/tex/context/interface/mkiv/i-columns.xml + texmf-dist/tex/context/interface/mkiv/i-combination.xml + texmf-dist/tex/context/interface/mkiv/i-commandhandler.xml + texmf-dist/tex/context/interface/mkiv/i-comment.xml + texmf-dist/tex/context/interface/mkiv/i-common-argument.xml + texmf-dist/tex/context/interface/mkiv/i-common-assignment.xml + texmf-dist/tex/context/interface/mkiv/i-common-definitions.xml + texmf-dist/tex/context/interface/mkiv/i-common-instance.xml + texmf-dist/tex/context/interface/mkiv/i-common-keyword.xml + texmf-dist/tex/context/interface/mkiv/i-common-string.xml + texmf-dist/tex/context/interface/mkiv/i-common-value.xml + texmf-dist/tex/context/interface/mkiv/i-context-modules.xml + texmf-dist/tex/context/interface/mkiv/i-context.pdf + texmf-dist/tex/context/interface/mkiv/i-context.xml + texmf-dist/tex/context/interface/mkiv/i-contextname.xml + texmf-dist/tex/context/interface/mkiv/i-conversion.xml + texmf-dist/tex/context/interface/mkiv/i-counter.xml + texmf-dist/tex/context/interface/mkiv/i-database.xml + texmf-dist/tex/context/interface/mkiv/i-dataset.xml + texmf-dist/tex/context/interface/mkiv/i-define.xml + texmf-dist/tex/context/interface/mkiv/i-delimitedtext.xml + texmf-dist/tex/context/interface/mkiv/i-description.xml + texmf-dist/tex/context/interface/mkiv/i-digits.xml + texmf-dist/tex/context/interface/mkiv/i-dimension.xml + texmf-dist/tex/context/interface/mkiv/i-direction.xml + texmf-dist/tex/context/interface/mkiv/i-document.xml + texmf-dist/tex/context/interface/mkiv/i-dummy.xml + texmf-dist/tex/context/interface/mkiv/i-effect.xml + texmf-dist/tex/context/interface/mkiv/i-enumeration.xml + texmf-dist/tex/context/interface/mkiv/i-export.xml + texmf-dist/tex/context/interface/mkiv/i-field.xml + texmf-dist/tex/context/interface/mkiv/i-figure.xml + texmf-dist/tex/context/interface/mkiv/i-file.xml + texmf-dist/tex/context/interface/mkiv/i-filler.xml + texmf-dist/tex/context/interface/mkiv/i-fillinline.xml + texmf-dist/tex/context/interface/mkiv/i-fillinrule.xml + texmf-dist/tex/context/interface/mkiv/i-firstline.xml + texmf-dist/tex/context/interface/mkiv/i-fittingpage.xml + texmf-dist/tex/context/interface/mkiv/i-floats.xml + texmf-dist/tex/context/interface/mkiv/i-fontfamily.xml + texmf-dist/tex/context/interface/mkiv/i-fonts.xml + texmf-dist/tex/context/interface/mkiv/i-form.xml + texmf-dist/tex/context/interface/mkiv/i-formula.xml + texmf-dist/tex/context/interface/mkiv/i-fraction.xml + texmf-dist/tex/context/interface/mkiv/i-framed.xml + texmf-dist/tex/context/interface/mkiv/i-framedtable.xml + texmf-dist/tex/context/interface/mkiv/i-graphics.xml + texmf-dist/tex/context/interface/mkiv/i-grid.xml + texmf-dist/tex/context/interface/mkiv/i-help.xml + texmf-dist/tex/context/interface/mkiv/i-hemistich.xml + texmf-dist/tex/context/interface/mkiv/i-highlight.xml + texmf-dist/tex/context/interface/mkiv/i-hspace.xml + texmf-dist/tex/context/interface/mkiv/i-hyphenation.xml + texmf-dist/tex/context/interface/mkiv/i-imposition.xml + texmf-dist/tex/context/interface/mkiv/i-indent.xml + texmf-dist/tex/context/interface/mkiv/i-indentedtext.xml + texmf-dist/tex/context/interface/mkiv/i-initial.xml + texmf-dist/tex/context/interface/mkiv/i-injector.xml + texmf-dist/tex/context/interface/mkiv/i-insertion.xml + texmf-dist/tex/context/interface/mkiv/i-interaction.xml + texmf-dist/tex/context/interface/mkiv/i-interactionbar.xml + texmf-dist/tex/context/interface/mkiv/i-interactionmenu.xml + texmf-dist/tex/context/interface/mkiv/i-interactionscreen.xml + texmf-dist/tex/context/interface/mkiv/i-interface.xml + texmf-dist/tex/context/interface/mkiv/i-interlinespace.xml + texmf-dist/tex/context/interface/mkiv/i-ipsum.xml + texmf-dist/tex/context/interface/mkiv/i-italiccorrection.xml + texmf-dist/tex/context/interface/mkiv/i-itemgroup.xml + texmf-dist/tex/context/interface/mkiv/i-items.xml + texmf-dist/tex/context/interface/mkiv/i-javascript.xml + texmf-dist/tex/context/interface/mkiv/i-kerning.xml + texmf-dist/tex/context/interface/mkiv/i-label.xml + texmf-dist/tex/context/interface/mkiv/i-labeltext.xml + texmf-dist/tex/context/interface/mkiv/i-language.xml + texmf-dist/tex/context/interface/mkiv/i-layer.xml + texmf-dist/tex/context/interface/mkiv/i-layout.xml + texmf-dist/tex/context/interface/mkiv/i-linefiller.xml + texmf-dist/tex/context/interface/mkiv/i-linenumber.xml + texmf-dist/tex/context/interface/mkiv/i-lines.xml + texmf-dist/tex/context/interface/mkiv/i-linetable.xml + texmf-dist/tex/context/interface/mkiv/i-linewidth.xml + texmf-dist/tex/context/interface/mkiv/i-list.xml + texmf-dist/tex/context/interface/mkiv/i-logo.xml + texmf-dist/tex/context/interface/mkiv/i-lohi.xml + texmf-dist/tex/context/interface/mkiv/i-lua.xml + texmf-dist/tex/context/interface/mkiv/i-makeup.xml + texmf-dist/tex/context/interface/mkiv/i-marginblock.xml + texmf-dist/tex/context/interface/mkiv/i-margindata.xml + texmf-dist/tex/context/interface/mkiv/i-marker.xml + texmf-dist/tex/context/interface/mkiv/i-marking.xml + texmf-dist/tex/context/interface/mkiv/i-math.xml + texmf-dist/tex/context/interface/mkiv/i-mathalignment.xml + texmf-dist/tex/context/interface/mkiv/i-mathcases.xml + texmf-dist/tex/context/interface/mkiv/i-mathfence.xml + texmf-dist/tex/context/interface/mkiv/i-mathmatrix.xml + texmf-dist/tex/context/interface/mkiv/i-mathname.xml + texmf-dist/tex/context/interface/mkiv/i-mathornament.xml + texmf-dist/tex/context/interface/mkiv/i-mathradical.xml + texmf-dist/tex/context/interface/mkiv/i-mathstackers.xml + texmf-dist/tex/context/interface/mkiv/i-metapost.xml + texmf-dist/tex/context/interface/mkiv/i-mixedcolumns.xml + texmf-dist/tex/context/interface/mkiv/i-modes.xml + texmf-dist/tex/context/interface/mkiv/i-modules.xml + texmf-dist/tex/context/interface/mkiv/i-narrow.xml + texmf-dist/tex/context/interface/mkiv/i-naturaltable.xml + texmf-dist/tex/context/interface/mkiv/i-note.xml + texmf-dist/tex/context/interface/mkiv/i-object.xml + texmf-dist/tex/context/interface/mkiv/i-offset.xml + texmf-dist/tex/context/interface/mkiv/i-opposite.xml + texmf-dist/tex/context/interface/mkiv/i-ornament.xml + texmf-dist/tex/context/interface/mkiv/i-output.xml + texmf-dist/tex/context/interface/mkiv/i-overlay.xml + texmf-dist/tex/context/interface/mkiv/i-pagebreak.xml + texmf-dist/tex/context/interface/mkiv/i-pagecolumns.xml + texmf-dist/tex/context/interface/mkiv/i-pagecomment.xml + texmf-dist/tex/context/interface/mkiv/i-pagefigure.xml + texmf-dist/tex/context/interface/mkiv/i-pagegrid.xml + texmf-dist/tex/context/interface/mkiv/i-pageinjection.xml + texmf-dist/tex/context/interface/mkiv/i-pagelayout.xml + texmf-dist/tex/context/interface/mkiv/i-pagemarks.xml + texmf-dist/tex/context/interface/mkiv/i-pagenumber.xml + texmf-dist/tex/context/interface/mkiv/i-pageselection.xml + texmf-dist/tex/context/interface/mkiv/i-pageshift.xml + texmf-dist/tex/context/interface/mkiv/i-pagestate.xml + texmf-dist/tex/context/interface/mkiv/i-pairedbox.xml + texmf-dist/tex/context/interface/mkiv/i-papersize.xml + texmf-dist/tex/context/interface/mkiv/i-paragraph.xml + texmf-dist/tex/context/interface/mkiv/i-paragraphnumber.xml + texmf-dist/tex/context/interface/mkiv/i-paragraphs.xml + texmf-dist/tex/context/interface/mkiv/i-parallel.xml + texmf-dist/tex/context/interface/mkiv/i-parbuilder.xml + texmf-dist/tex/context/interface/mkiv/i-pdf.xml + texmf-dist/tex/context/interface/mkiv/i-penalty.xml + texmf-dist/tex/context/interface/mkiv/i-periods.xml + texmf-dist/tex/context/interface/mkiv/i-phantom.xml + texmf-dist/tex/context/interface/mkiv/i-placement.xml + texmf-dist/tex/context/interface/mkiv/i-position.xml + texmf-dist/tex/context/interface/mkiv/i-positionbar.xml + texmf-dist/tex/context/interface/mkiv/i-positioning.xml + texmf-dist/tex/context/interface/mkiv/i-postponing.xml + texmf-dist/tex/context/interface/mkiv/i-processor.xml + texmf-dist/tex/context/interface/mkiv/i-profile.xml + texmf-dist/tex/context/interface/mkiv/i-publication.xml + texmf-dist/tex/context/interface/mkiv/i-random.xml + texmf-dist/tex/context/interface/mkiv/i-readme.pdf + texmf-dist/tex/context/interface/mkiv/i-readme.tex + texmf-dist/tex/context/interface/mkiv/i-references.xml + texmf-dist/tex/context/interface/mkiv/i-regime.xml + texmf-dist/tex/context/interface/mkiv/i-register.xml + texmf-dist/tex/context/interface/mkiv/i-renderingwindow.xml + texmf-dist/tex/context/interface/mkiv/i-replacement.xml + texmf-dist/tex/context/interface/mkiv/i-rotatation.xml + texmf-dist/tex/context/interface/mkiv/i-ruby.xml + texmf-dist/tex/context/interface/mkiv/i-scale.xml + texmf-dist/tex/context/interface/mkiv/i-scite.xml + texmf-dist/tex/context/interface/mkiv/i-script.xml + texmf-dist/tex/context/interface/mkiv/i-section.xml + texmf-dist/tex/context/interface/mkiv/i-sectionblock.xml + texmf-dist/tex/context/interface/mkiv/i-selector.xml + texmf-dist/tex/context/interface/mkiv/i-setup.xml + texmf-dist/tex/context/interface/mkiv/i-setups.xml + texmf-dist/tex/context/interface/mkiv/i-shift.xml + texmf-dist/tex/context/interface/mkiv/i-sidebar.xml + texmf-dist/tex/context/interface/mkiv/i-smash.xml + texmf-dist/tex/context/interface/mkiv/i-sort.xml + texmf-dist/tex/context/interface/mkiv/i-soundtrack.xml + texmf-dist/tex/context/interface/mkiv/i-spellchecking.xml + texmf-dist/tex/context/interface/mkiv/i-spreadsheet.xml + texmf-dist/tex/context/interface/mkiv/i-startstop.xml + texmf-dist/tex/context/interface/mkiv/i-steps.xml + texmf-dist/tex/context/interface/mkiv/i-stream.xml + texmf-dist/tex/context/interface/mkiv/i-string.xml + texmf-dist/tex/context/interface/mkiv/i-strut.xml + texmf-dist/tex/context/interface/mkiv/i-symbol.xml + texmf-dist/tex/context/interface/mkiv/i-synctex.xml + texmf-dist/tex/context/interface/mkiv/i-synonym.xml + texmf-dist/tex/context/interface/mkiv/i-system.xml + texmf-dist/tex/context/interface/mkiv/i-systemlog.xml + texmf-dist/tex/context/interface/mkiv/i-table.xml + texmf-dist/tex/context/interface/mkiv/i-tabulation.xml + texmf-dist/tex/context/interface/mkiv/i-tagging.xml + texmf-dist/tex/context/interface/mkiv/i-tex.xml + texmf-dist/tex/context/interface/mkiv/i-textbackground.xml + texmf-dist/tex/context/interface/mkiv/i-textflow.xml + texmf-dist/tex/context/interface/mkiv/i-textrule.xml + texmf-dist/tex/context/interface/mkiv/i-texts.xml + texmf-dist/tex/context/interface/mkiv/i-thinrule.xml + texmf-dist/tex/context/interface/mkiv/i-todo.xml + texmf-dist/tex/context/interface/mkiv/i-token.xml + texmf-dist/tex/context/interface/mkiv/i-tolerance.xml + texmf-dist/tex/context/interface/mkiv/i-tooltip.xml + texmf-dist/tex/context/interface/mkiv/i-tracker.xml + texmf-dist/tex/context/interface/mkiv/i-translate.xml + texmf-dist/tex/context/interface/mkiv/i-translation.xml + texmf-dist/tex/context/interface/mkiv/i-twopassdata.xml + texmf-dist/tex/context/interface/mkiv/i-typography.xml + texmf-dist/tex/context/interface/mkiv/i-unit.xml + texmf-dist/tex/context/interface/mkiv/i-userdata.xml + texmf-dist/tex/context/interface/mkiv/i-variables.xml + texmf-dist/tex/context/interface/mkiv/i-verbatim.xml + texmf-dist/tex/context/interface/mkiv/i-version.xml + texmf-dist/tex/context/interface/mkiv/i-viewerlayer.xml + texmf-dist/tex/context/interface/mkiv/i-visual.xml + texmf-dist/tex/context/interface/mkiv/i-visualizer.xml + texmf-dist/tex/context/interface/mkiv/i-vspace.xml + texmf-dist/tex/context/interface/mkiv/i-whitespace.xml + texmf-dist/tex/context/interface/mkiv/i-xml.xml + texmf-dist/tex/context/interface/mkiv/i-xtable.xml + texmf-dist/tex/context/modules/common/s-abbreviations-extras.tex + texmf-dist/tex/context/modules/common/s-abbreviations-logos.tex + texmf-dist/tex/context/modules/common/s-abbreviations-mixed.mkiv + texmf-dist/tex/context/modules/common/s-abbreviations-pseudocaps.mkiv + texmf-dist/tex/context/modules/common/s-abbreviations-smallcaps.mkiv + texmf-dist/tex/context/modules/common/s-abbreviations-words.mkiv + texmf-dist/tex/context/modules/common/s-cdr-01.tex + texmf-dist/tex/context/modules/common/s-faq-00.tex + texmf-dist/tex/context/modules/common/s-faq-01.tex + texmf-dist/tex/context/modules/common/s-faq-02.tex + texmf-dist/tex/context/modules/common/s-faq-03.tex + texmf-dist/tex/context/modules/common/s-mod.ctx + texmf-dist/tex/context/modules/common/s-pre-00.tex + texmf-dist/tex/context/modules/common/s-pre-06.tex + texmf-dist/tex/context/modules/common/s-pre-07.tex + texmf-dist/tex/context/modules/common/s-pre-08.tex + texmf-dist/tex/context/modules/common/s-pre-12.tex + texmf-dist/tex/context/modules/common/s-pre-13.tex + texmf-dist/tex/context/modules/common/s-pre-16.tex + texmf-dist/tex/context/modules/common/s-pre-18.tex + texmf-dist/tex/context/modules/common/s-pre-22.tex + texmf-dist/tex/context/modules/common/s-pre-23.tex + texmf-dist/tex/context/modules/common/s-pre-26.tex + texmf-dist/tex/context/modules/common/s-pre-27.tex + texmf-dist/tex/context/modules/common/s-pre-50.tex + texmf-dist/tex/context/modules/common/s-pre-66.tex + texmf-dist/tex/context/modules/common/s-pre-67.tex + texmf-dist/tex/context/modules/common/s-pre-93.tex + texmf-dist/tex/context/modules/common/s-pre-96.tex + texmf-dist/tex/context/modules/mkii/m-arabtex.mkii + texmf-dist/tex/context/modules/mkii/m-chart.mkii + texmf-dist/tex/context/modules/mkii/m-chemic.mkii + texmf-dist/tex/context/modules/mkii/m-cweb.mkii + texmf-dist/tex/context/modules/mkii/m-database.mkii + texmf-dist/tex/context/modules/mkii/m-dratex.mkii + texmf-dist/tex/context/modules/mkii/m-edtsnc.mkii + texmf-dist/tex/context/modules/mkii/m-educat.mkii + texmf-dist/tex/context/modules/mkii/m-format.mkii + texmf-dist/tex/context/modules/mkii/m-graph.mkii + texmf-dist/tex/context/modules/mkii/m-layout.mkii + texmf-dist/tex/context/modules/mkii/m-level.mkii + texmf-dist/tex/context/modules/mkii/m-narrowtt.mkii + texmf-dist/tex/context/modules/mkii/m-obsolete.mkii + texmf-dist/tex/context/modules/mkii/m-pdfsnc.mkii + texmf-dist/tex/context/modules/mkii/m-pictex.mkii + texmf-dist/tex/context/modules/mkii/m-pstricks.mkii + texmf-dist/tex/context/modules/mkii/m-quest.mkii + texmf-dist/tex/context/modules/mkii/m-r.mkii + texmf-dist/tex/context/modules/mkii/m-steps.mkii + texmf-dist/tex/context/modules/mkii/m-streams.mkii + texmf-dist/tex/context/modules/mkii/m-subsub.mkii + texmf-dist/tex/context/modules/mkii/m-tex4ht.mkii + texmf-dist/tex/context/modules/mkii/m-units.mkii + texmf-dist/tex/context/modules/mkii/m-visual.mkii + texmf-dist/tex/context/modules/mkii/ppchtex.mkii + texmf-dist/tex/context/modules/mkii/rlxcache.rlx + texmf-dist/tex/context/modules/mkii/rlxtools.rlx + texmf-dist/tex/context/modules/mkii/s-abr-01.mkii + texmf-dist/tex/context/modules/mkii/s-abr-02.mkii + texmf-dist/tex/context/modules/mkii/s-chi-00.mkii + texmf-dist/tex/context/modules/mkii/s-fnt-01.mkii + texmf-dist/tex/context/modules/mkii/s-fnt-02.mkii + texmf-dist/tex/context/modules/mkii/s-grk-00.mkii + texmf-dist/tex/context/modules/mkii/s-jap-00.mkii + texmf-dist/tex/context/modules/mkii/s-mag-01.mkii + texmf-dist/tex/context/modules/mkii/s-map-10.mkii + texmf-dist/tex/context/modules/mkii/s-mod-00.mkii + texmf-dist/tex/context/modules/mkii/s-mod-01.mkii + texmf-dist/tex/context/modules/mkii/s-mod-02.mkii + texmf-dist/tex/context/modules/mkii/s-pre-01.mkii + texmf-dist/tex/context/modules/mkii/s-pre-02.mkii + texmf-dist/tex/context/modules/mkii/s-pre-03.mkii + texmf-dist/tex/context/modules/mkii/s-pre-04.mkii + texmf-dist/tex/context/modules/mkii/s-pre-05.mkii + texmf-dist/tex/context/modules/mkii/s-pre-09.mkii + texmf-dist/tex/context/modules/mkii/s-pre-10.mkii + texmf-dist/tex/context/modules/mkii/s-pre-11.mkii + texmf-dist/tex/context/modules/mkii/s-pre-14.mkii + texmf-dist/tex/context/modules/mkii/s-pre-15.mkii + texmf-dist/tex/context/modules/mkii/s-pre-17.mkii + texmf-dist/tex/context/modules/mkii/s-pre-19.mkii + texmf-dist/tex/context/modules/mkii/s-pre-30.mkii + texmf-dist/tex/context/modules/mkii/s-pre-60.mkii + texmf-dist/tex/context/modules/mkii/s-pre-61.mkii + texmf-dist/tex/context/modules/mkii/s-pre-62.mkii + texmf-dist/tex/context/modules/mkii/s-pre-63.mkii + texmf-dist/tex/context/modules/mkii/s-pre-64.mkii + texmf-dist/tex/context/modules/mkii/s-pre-68.mkii + texmf-dist/tex/context/modules/mkii/s-pre-71.mkii + texmf-dist/tex/context/modules/mkii/s-ptj-01.mkii + texmf-dist/tex/context/modules/mkii/s-syntax.mkii + texmf-dist/tex/context/modules/mkii/x-calcmath.mkii + texmf-dist/tex/context/modules/mkii/x-chemml.mkii + texmf-dist/tex/context/modules/mkii/x-chemml.xsd + texmf-dist/tex/context/modules/mkii/x-contml.mkii + texmf-dist/tex/context/modules/mkii/x-contml.xsd + texmf-dist/tex/context/modules/mkii/x-corres.mkii + texmf-dist/tex/context/modules/mkii/x-corres.rng + texmf-dist/tex/context/modules/mkii/x-dir-01.mkii + texmf-dist/tex/context/modules/mkii/x-dir-02.mkii + texmf-dist/tex/context/modules/mkii/x-dir-05.mkii + texmf-dist/tex/context/modules/mkii/x-fdf-00.mkii + texmf-dist/tex/context/modules/mkii/x-fe.mkii + texmf-dist/tex/context/modules/mkii/x-fig-00.dtd + texmf-dist/tex/context/modules/mkii/x-fig-00.mkii + texmf-dist/tex/context/modules/mkii/x-fig-00.xsd + texmf-dist/tex/context/modules/mkii/x-fig-01.mkii + texmf-dist/tex/context/modules/mkii/x-fig-02.mkii + texmf-dist/tex/context/modules/mkii/x-fig-03.mkii + texmf-dist/tex/context/modules/mkii/x-fo.mkii + texmf-dist/tex/context/modules/mkii/x-foxet.mkii + texmf-dist/tex/context/modules/mkii/x-mathml.mkii + texmf-dist/tex/context/modules/mkii/x-mathml.xsd + texmf-dist/tex/context/modules/mkii/x-newcml.mkii + texmf-dist/tex/context/modules/mkii/x-newmme.mkii + texmf-dist/tex/context/modules/mkii/x-newmml.mkii + texmf-dist/tex/context/modules/mkii/x-newmmo.mkii + texmf-dist/tex/context/modules/mkii/x-newpml.mkii + texmf-dist/tex/context/modules/mkii/x-om2cml.xsl + texmf-dist/tex/context/modules/mkii/x-openmath.mkii + texmf-dist/tex/context/modules/mkii/x-openmath.xsl + texmf-dist/tex/context/modules/mkii/x-physml.mkii + texmf-dist/tex/context/modules/mkii/x-physml.xsd + texmf-dist/tex/context/modules/mkii/x-res-00.mkii + texmf-dist/tex/context/modules/mkii/x-res-01.mkii + texmf-dist/tex/context/modules/mkii/x-res-02.mkii + texmf-dist/tex/context/modules/mkii/x-res-03.mkii + texmf-dist/tex/context/modules/mkii/x-res-04.mkii + texmf-dist/tex/context/modules/mkii/x-res-08.mkii + texmf-dist/tex/context/modules/mkii/x-res-09.mkii + texmf-dist/tex/context/modules/mkii/x-res-10.mkii + texmf-dist/tex/context/modules/mkii/x-res-11.mkii + texmf-dist/tex/context/modules/mkii/x-res-12.mkii + texmf-dist/tex/context/modules/mkii/x-res-20.mkii + texmf-dist/tex/context/modules/mkii/x-res-50.mkii + texmf-dist/tex/context/modules/mkii/x-sch-00.mkii + texmf-dist/tex/context/modules/mkii/x-sch-01.mkii + texmf-dist/tex/context/modules/mkii/x-set-01.mkii + texmf-dist/tex/context/modules/mkii/x-set-02.mkii + texmf-dist/tex/context/modules/mkii/x-set-11.mkii + texmf-dist/tex/context/modules/mkii/x-set-12.mkii + texmf-dist/tex/context/modules/mkii/x-sm2om.xsl + texmf-dist/tex/context/modules/mkii/x-steps.mkii + texmf-dist/tex/context/modules/mkii/x-xml-01.mkii + texmf-dist/tex/context/modules/mkii/x-xml-02.mkii + texmf-dist/tex/context/modules/mkii/x-xml-11.mkii + texmf-dist/tex/context/modules/mkiv/m-asymptote.lua + texmf-dist/tex/context/modules/mkiv/m-asymptote.mkiv + texmf-dist/tex/context/modules/mkiv/m-barcodes.mkiv + texmf-dist/tex/context/modules/mkiv/m-chart.lua + texmf-dist/tex/context/modules/mkiv/m-chart.mkvi + texmf-dist/tex/context/modules/mkiv/m-chemic.mkiv + texmf-dist/tex/context/modules/mkiv/m-compatible.mkiv + texmf-dist/tex/context/modules/mkiv/m-cweb.mkiv + texmf-dist/tex/context/modules/mkiv/m-database.lua + texmf-dist/tex/context/modules/mkiv/m-database.mkiv + texmf-dist/tex/context/modules/mkiv/m-directives.mkiv + texmf-dist/tex/context/modules/mkiv/m-educat.mkiv + texmf-dist/tex/context/modules/mkiv/m-escrito.lua + texmf-dist/tex/context/modules/mkiv/m-escrito.mkiv + texmf-dist/tex/context/modules/mkiv/m-fields.mkiv + texmf-dist/tex/context/modules/mkiv/m-format.mkiv + texmf-dist/tex/context/modules/mkiv/m-graph.mkiv + texmf-dist/tex/context/modules/mkiv/m-hemistich.mkiv + texmf-dist/tex/context/modules/mkiv/m-ipsum.mkiv + texmf-dist/tex/context/modules/mkiv/m-json.mkiv + texmf-dist/tex/context/modules/mkiv/m-layout.mkiv + texmf-dist/tex/context/modules/mkiv/m-logcategories.mkiv + texmf-dist/tex/context/modules/mkiv/m-markdown.lua + texmf-dist/tex/context/modules/mkiv/m-markdown.mkiv + texmf-dist/tex/context/modules/mkiv/m-mathcrap.mkiv + texmf-dist/tex/context/modules/mkiv/m-matrix.mkiv + texmf-dist/tex/context/modules/mkiv/m-maybe.mkiv + texmf-dist/tex/context/modules/mkiv/m-media.mkiv + texmf-dist/tex/context/modules/mkiv/m-mkii.mkiv + texmf-dist/tex/context/modules/mkiv/m-mkivhacks.mkiv + texmf-dist/tex/context/modules/mkiv/m-morse.mkvi + texmf-dist/tex/context/modules/mkiv/m-narrowtt.mkiv + texmf-dist/tex/context/modules/mkiv/m-nodechart.lua + texmf-dist/tex/context/modules/mkiv/m-nodechart.mkvi + texmf-dist/tex/context/modules/mkiv/m-ntb-to-xtb.mkiv + texmf-dist/tex/context/modules/mkiv/m-obsolete.mkiv + texmf-dist/tex/context/modules/mkiv/m-old-columnsets.mkiv + texmf-dist/tex/context/modules/mkiv/m-old-multicolumns.mkiv + texmf-dist/tex/context/modules/mkiv/m-oldfun.mkiv + texmf-dist/tex/context/modules/mkiv/m-oldnum.mkiv + texmf-dist/tex/context/modules/mkiv/m-pictex.mkiv + texmf-dist/tex/context/modules/mkiv/m-pipemode.mkiv + texmf-dist/tex/context/modules/mkiv/m-pstricks.lua + texmf-dist/tex/context/modules/mkiv/m-pstricks.mkiv + texmf-dist/tex/context/modules/mkiv/m-punk.mkiv + texmf-dist/tex/context/modules/mkiv/m-scite.mkiv + texmf-dist/tex/context/modules/mkiv/m-spreadsheet.lua + texmf-dist/tex/context/modules/mkiv/m-spreadsheet.mkiv + texmf-dist/tex/context/modules/mkiv/m-sql.mkiv + texmf-dist/tex/context/modules/mkiv/m-steps.lua + texmf-dist/tex/context/modules/mkiv/m-steps.mkvi + texmf-dist/tex/context/modules/mkiv/m-subsub.mkiv + texmf-dist/tex/context/modules/mkiv/m-three.mkiv + texmf-dist/tex/context/modules/mkiv/m-timing.mkiv + texmf-dist/tex/context/modules/mkiv/m-trackers.mkiv + texmf-dist/tex/context/modules/mkiv/m-translate.mkiv + texmf-dist/tex/context/modules/mkiv/m-typesetting.mkiv + texmf-dist/tex/context/modules/mkiv/m-units.mkiv + texmf-dist/tex/context/modules/mkiv/m-visual.mkiv + texmf-dist/tex/context/modules/mkiv/m-zint.mkiv + texmf-dist/tex/context/modules/mkiv/ppchtex.mkiv + texmf-dist/tex/context/modules/mkiv/s-abbreviations-mixed.mkiv + texmf-dist/tex/context/modules/mkiv/s-abbreviations-pseudocaps.mkiv + texmf-dist/tex/context/modules/mkiv/s-abbreviations-smallcaps.mkiv + texmf-dist/tex/context/modules/mkiv/s-abbreviations-words.mkiv + texmf-dist/tex/context/modules/mkiv/s-article-basic.mkiv + texmf-dist/tex/context/modules/mkiv/s-article-titlepage.mkiv + texmf-dist/tex/context/modules/mkiv/s-article-titletop.mkiv + texmf-dist/tex/context/modules/mkiv/s-cgj.mkiv + texmf-dist/tex/context/modules/mkiv/s-characters-properties.lua + texmf-dist/tex/context/modules/mkiv/s-characters-properties.mkiv + texmf-dist/tex/context/modules/mkiv/s-domotica-settings.lua + texmf-dist/tex/context/modules/mkiv/s-domotica-settings.mkiv + texmf-dist/tex/context/modules/mkiv/s-evohome.mkiv + texmf-dist/tex/context/modules/mkiv/s-figures-names.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-basics.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-charts.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-cjk.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-complete.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-coverage.lua + texmf-dist/tex/context/modules/mkiv/s-fonts-coverage.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-effects.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-emoji.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-engines.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-features.lua + texmf-dist/tex/context/modules/mkiv/s-fonts-features.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-goodies.lua + texmf-dist/tex/context/modules/mkiv/s-fonts-goodies.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-kerns.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-ligatures.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-missing.lua + texmf-dist/tex/context/modules/mkiv/s-fonts-missing.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-overlay.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-shapes.lua + texmf-dist/tex/context/modules/mkiv/s-fonts-shapes.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-statistics.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-steps.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-system.lua + texmf-dist/tex/context/modules/mkiv/s-fonts-system.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-tables.lua + texmf-dist/tex/context/modules/mkiv/s-fonts-tables.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-variable.lua + texmf-dist/tex/context/modules/mkiv/s-fonts-variable.mkiv + texmf-dist/tex/context/modules/mkiv/s-fonts-vectors.lua + texmf-dist/tex/context/modules/mkiv/s-fonts-vectors.mkiv + texmf-dist/tex/context/modules/mkiv/s-inf-01.mkvi + texmf-dist/tex/context/modules/mkiv/s-inf-02.mkiv + texmf-dist/tex/context/modules/mkiv/s-inf-03.mkiv + texmf-dist/tex/context/modules/mkiv/s-inf-04.mkiv + texmf-dist/tex/context/modules/mkiv/s-languages-counters.lua + texmf-dist/tex/context/modules/mkiv/s-languages-counters.mkiv + texmf-dist/tex/context/modules/mkiv/s-languages-frequencies.lua + texmf-dist/tex/context/modules/mkiv/s-languages-frequencies.mkiv + texmf-dist/tex/context/modules/mkiv/s-languages-hyphenation.lua + texmf-dist/tex/context/modules/mkiv/s-languages-hyphenation.mkiv + texmf-dist/tex/context/modules/mkiv/s-languages-sorting.lua + texmf-dist/tex/context/modules/mkiv/s-languages-sorting.mkiv + texmf-dist/tex/context/modules/mkiv/s-languages-system.lua + texmf-dist/tex/context/modules/mkiv/s-languages-system.mkiv + texmf-dist/tex/context/modules/mkiv/s-languages-words.lua + texmf-dist/tex/context/modules/mkiv/s-languages-words.mkiv + texmf-dist/tex/context/modules/mkiv/s-lingual-de.mkiv + texmf-dist/tex/context/modules/mkiv/s-magazine-basic.mkiv + texmf-dist/tex/context/modules/mkiv/s-maps.mkiv + texmf-dist/tex/context/modules/mkiv/s-math-characters.lua + texmf-dist/tex/context/modules/mkiv/s-math-characters.mkiv + texmf-dist/tex/context/modules/mkiv/s-math-coverage.lua + texmf-dist/tex/context/modules/mkiv/s-math-coverage.mkiv + texmf-dist/tex/context/modules/mkiv/s-math-extensibles.mkiv + texmf-dist/tex/context/modules/mkiv/s-math-ligatures.lua + texmf-dist/tex/context/modules/mkiv/s-math-ligatures.mkiv + texmf-dist/tex/context/modules/mkiv/s-math-parameters.lua + texmf-dist/tex/context/modules/mkiv/s-math-parameters.mkiv + texmf-dist/tex/context/modules/mkiv/s-math-repertoire.mkiv + texmf-dist/tex/context/modules/mkiv/s-module-basic.mkiv + texmf-dist/tex/context/modules/mkiv/s-pages-statistics.mkiv + texmf-dist/tex/context/modules/mkiv/s-physics-units.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-balls.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-banner.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-bars.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-colorful.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-common.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-dark.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-four.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-funny.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-fuzzy.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-green.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-grow.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-lines.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-organic.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-original.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-ovals.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-overlap.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-phone.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-punk.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-random.lua + texmf-dist/tex/context/modules/mkiv/s-present-random.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-shaded.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-simple.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-slanted.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-split.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-stack.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-stepper.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-steps.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-stepwise.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-tiles.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-weird.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-windows.mkiv + texmf-dist/tex/context/modules/mkiv/s-present-wobbling.mkiv + texmf-dist/tex/context/modules/mkiv/s-references-identify.mkiv + texmf-dist/tex/context/modules/mkiv/s-references-show.mkiv + texmf-dist/tex/context/modules/mkiv/s-regimes-list.mkiv + texmf-dist/tex/context/modules/mkiv/s-setups-macros.mkiv + texmf-dist/tex/context/modules/mkiv/s-setups-missing.mkiv + texmf-dist/tex/context/modules/mkiv/s-sql-tables.lua + texmf-dist/tex/context/modules/mkiv/s-sql-tables.mkiv + texmf-dist/tex/context/modules/mkiv/s-structure-sections.mkiv + texmf-dist/tex/context/modules/mkiv/s-syntax.mkiv + texmf-dist/tex/context/modules/mkiv/s-tugboat-columns.mkiv + texmf-dist/tex/context/modules/mkiv/s-tugboat.mkiv + texmf-dist/tex/context/modules/mkiv/s-typesetting-kerning.mkiv + texmf-dist/tex/context/modules/mkiv/s-xml-analyzers.lua + texmf-dist/tex/context/modules/mkiv/s-xml-analyzers.mkiv + texmf-dist/tex/context/modules/mkiv/s-youless.mkiv + texmf-dist/tex/context/modules/mkiv/x-asciimath.lua + texmf-dist/tex/context/modules/mkiv/x-asciimath.mkiv + texmf-dist/tex/context/modules/mkiv/x-calcmath.lua + texmf-dist/tex/context/modules/mkiv/x-calcmath.mkiv + texmf-dist/tex/context/modules/mkiv/x-cals.lua + texmf-dist/tex/context/modules/mkiv/x-cals.mkiv + texmf-dist/tex/context/modules/mkiv/x-chemml.lua + texmf-dist/tex/context/modules/mkiv/x-chemml.mkiv + texmf-dist/tex/context/modules/mkiv/x-ct.lua + texmf-dist/tex/context/modules/mkiv/x-ct.mkiv + texmf-dist/tex/context/modules/mkiv/x-entities.mkiv + texmf-dist/tex/context/modules/mkiv/x-foxet.mkiv + texmf-dist/tex/context/modules/mkiv/x-html.mkiv + texmf-dist/tex/context/modules/mkiv/x-ldx.ctx + texmf-dist/tex/context/modules/mkiv/x-ldx.lua + texmf-dist/tex/context/modules/mkiv/x-ldx.mkiv + texmf-dist/tex/context/modules/mkiv/x-lmx-demo.mkiv + texmf-dist/tex/context/modules/mkiv/x-lmx-html.mkiv + texmf-dist/tex/context/modules/mkiv/x-math-svg.lua + texmf-dist/tex/context/modules/mkiv/x-math-svg.mkvi + texmf-dist/tex/context/modules/mkiv/x-mathml-basics.mkiv + texmf-dist/tex/context/modules/mkiv/x-mathml-html.mkiv + texmf-dist/tex/context/modules/mkiv/x-mathml.lua + texmf-dist/tex/context/modules/mkiv/x-mathml.mkiv + texmf-dist/tex/context/modules/mkiv/x-newmml.mkiv + texmf-dist/tex/context/modules/mkiv/x-pfs-01.mkiv + texmf-dist/tex/context/modules/mkiv/x-pfsense.ctx + texmf-dist/tex/context/modules/mkiv/x-physml.mkiv + texmf-dist/tex/context/modules/mkiv/x-res-01.mkiv + texmf-dist/tex/context/modules/mkiv/x-res-50.mkiv + texmf-dist/tex/context/modules/mkiv/x-setups-basics.mkiv + texmf-dist/tex/context/modules/mkiv/x-setups-generate.mkiv + texmf-dist/tex/context/modules/mkiv/x-setups-overview.mkiv + texmf-dist/tex/context/modules/mkiv/x-setups-proofing.mkiv + texmf-dist/tex/context/modules/mkiv/x-setups.ctx + texmf-dist/tex/context/modules/mkiv/x-setups.mkiv + texmf-dist/tex/context/modules/mkiv/x-steps.mkiv + texmf-dist/tex/context/modules/mkiv/x-udhr.mkiv + texmf-dist/tex/context/modules/mkiv/x-xfdf.mkiv + texmf-dist/tex/context/patterns/common/lang-af.rme + texmf-dist/tex/context/patterns/common/lang-agr.rme + texmf-dist/tex/context/patterns/common/lang-ala.rme + texmf-dist/tex/context/patterns/common/lang-bg.rme + texmf-dist/tex/context/patterns/common/lang-ca.rme + texmf-dist/tex/context/patterns/common/lang-cs.rme + texmf-dist/tex/context/patterns/common/lang-cy.rme + texmf-dist/tex/context/patterns/common/lang-da.rme + texmf-dist/tex/context/patterns/common/lang-de.rme + texmf-dist/tex/context/patterns/common/lang-deo.rme + texmf-dist/tex/context/patterns/common/lang-es.rme + texmf-dist/tex/context/patterns/common/lang-et.rme + texmf-dist/tex/context/patterns/common/lang-eu.rme + texmf-dist/tex/context/patterns/common/lang-fi.rme + texmf-dist/tex/context/patterns/common/lang-fr.rme + texmf-dist/tex/context/patterns/common/lang-gb.rme + texmf-dist/tex/context/patterns/common/lang-hr.rme + texmf-dist/tex/context/patterns/common/lang-hu.rme + texmf-dist/tex/context/patterns/common/lang-is.rme + texmf-dist/tex/context/patterns/common/lang-it.rme + texmf-dist/tex/context/patterns/common/lang-la.rme + texmf-dist/tex/context/patterns/common/lang-lt.rme + texmf-dist/tex/context/patterns/common/lang-lv.rme + texmf-dist/tex/context/patterns/common/lang-ml.rme + texmf-dist/tex/context/patterns/common/lang-mn.rme + texmf-dist/tex/context/patterns/common/lang-nb.rme + texmf-dist/tex/context/patterns/common/lang-nl.rme + texmf-dist/tex/context/patterns/common/lang-nn.rme + texmf-dist/tex/context/patterns/common/lang-pl.rme + texmf-dist/tex/context/patterns/common/lang-pt.rme + texmf-dist/tex/context/patterns/common/lang-ro.rme + texmf-dist/tex/context/patterns/common/lang-ru.rme + texmf-dist/tex/context/patterns/common/lang-sk.rme + texmf-dist/tex/context/patterns/common/lang-sl.rme + texmf-dist/tex/context/patterns/common/lang-sr.rme + texmf-dist/tex/context/patterns/common/lang-sv.rme + texmf-dist/tex/context/patterns/common/lang-th.rme + texmf-dist/tex/context/patterns/common/lang-tk.rme + texmf-dist/tex/context/patterns/common/lang-tr.rme + texmf-dist/tex/context/patterns/common/lang-uk.rme + texmf-dist/tex/context/patterns/common/lang-us.rme + texmf-dist/tex/context/patterns/common/lang-zh.rme + texmf-dist/tex/context/patterns/mkii/lang-af.hyp + texmf-dist/tex/context/patterns/mkii/lang-af.pat + texmf-dist/tex/context/patterns/mkii/lang-agr.hyp + texmf-dist/tex/context/patterns/mkii/lang-agr.pat + texmf-dist/tex/context/patterns/mkii/lang-ala.hyp + texmf-dist/tex/context/patterns/mkii/lang-ala.pat + texmf-dist/tex/context/patterns/mkii/lang-bg.hyp + texmf-dist/tex/context/patterns/mkii/lang-bg.pat + texmf-dist/tex/context/patterns/mkii/lang-ca.hyp + texmf-dist/tex/context/patterns/mkii/lang-ca.pat + texmf-dist/tex/context/patterns/mkii/lang-cs.hyp + texmf-dist/tex/context/patterns/mkii/lang-cs.pat + texmf-dist/tex/context/patterns/mkii/lang-cy.hyp + texmf-dist/tex/context/patterns/mkii/lang-cy.pat + texmf-dist/tex/context/patterns/mkii/lang-da.hyp + texmf-dist/tex/context/patterns/mkii/lang-da.pat + texmf-dist/tex/context/patterns/mkii/lang-de.hyp + texmf-dist/tex/context/patterns/mkii/lang-de.pat + texmf-dist/tex/context/patterns/mkii/lang-deo.hyp + texmf-dist/tex/context/patterns/mkii/lang-deo.pat + texmf-dist/tex/context/patterns/mkii/lang-es.hyp + texmf-dist/tex/context/patterns/mkii/lang-es.pat + texmf-dist/tex/context/patterns/mkii/lang-et.hyp + texmf-dist/tex/context/patterns/mkii/lang-et.pat + texmf-dist/tex/context/patterns/mkii/lang-eu.hyp + texmf-dist/tex/context/patterns/mkii/lang-eu.pat + texmf-dist/tex/context/patterns/mkii/lang-fi.hyp + texmf-dist/tex/context/patterns/mkii/lang-fi.pat + texmf-dist/tex/context/patterns/mkii/lang-fr.hyp + texmf-dist/tex/context/patterns/mkii/lang-fr.pat + texmf-dist/tex/context/patterns/mkii/lang-gb.hyp + texmf-dist/tex/context/patterns/mkii/lang-gb.pat + texmf-dist/tex/context/patterns/mkii/lang-hr.hyp + texmf-dist/tex/context/patterns/mkii/lang-hr.pat + texmf-dist/tex/context/patterns/mkii/lang-hu.hyp + texmf-dist/tex/context/patterns/mkii/lang-hu.pat + texmf-dist/tex/context/patterns/mkii/lang-is.hyp + texmf-dist/tex/context/patterns/mkii/lang-is.pat + texmf-dist/tex/context/patterns/mkii/lang-it.hyp + texmf-dist/tex/context/patterns/mkii/lang-it.pat + texmf-dist/tex/context/patterns/mkii/lang-la.hyp + texmf-dist/tex/context/patterns/mkii/lang-la.pat + texmf-dist/tex/context/patterns/mkii/lang-lt.hyp + texmf-dist/tex/context/patterns/mkii/lang-lt.pat + texmf-dist/tex/context/patterns/mkii/lang-lv.hyp + texmf-dist/tex/context/patterns/mkii/lang-lv.pat + texmf-dist/tex/context/patterns/mkii/lang-ml.hyp + texmf-dist/tex/context/patterns/mkii/lang-ml.pat + texmf-dist/tex/context/patterns/mkii/lang-mn.hyp + texmf-dist/tex/context/patterns/mkii/lang-mn.pat + texmf-dist/tex/context/patterns/mkii/lang-nb.hyp + texmf-dist/tex/context/patterns/mkii/lang-nb.pat + texmf-dist/tex/context/patterns/mkii/lang-nl.hyp + texmf-dist/tex/context/patterns/mkii/lang-nl.pat + texmf-dist/tex/context/patterns/mkii/lang-nn.hyp + texmf-dist/tex/context/patterns/mkii/lang-nn.pat + texmf-dist/tex/context/patterns/mkii/lang-pl.hyp + texmf-dist/tex/context/patterns/mkii/lang-pl.pat + texmf-dist/tex/context/patterns/mkii/lang-pt.hyp + texmf-dist/tex/context/patterns/mkii/lang-pt.pat + texmf-dist/tex/context/patterns/mkii/lang-ro.hyp + texmf-dist/tex/context/patterns/mkii/lang-ro.pat + texmf-dist/tex/context/patterns/mkii/lang-ru.hyp + texmf-dist/tex/context/patterns/mkii/lang-ru.pat + texmf-dist/tex/context/patterns/mkii/lang-sk.hyp + texmf-dist/tex/context/patterns/mkii/lang-sk.pat + texmf-dist/tex/context/patterns/mkii/lang-sl.hyp + texmf-dist/tex/context/patterns/mkii/lang-sl.pat + texmf-dist/tex/context/patterns/mkii/lang-sr.hyp + texmf-dist/tex/context/patterns/mkii/lang-sr.pat + texmf-dist/tex/context/patterns/mkii/lang-sv.hyp + texmf-dist/tex/context/patterns/mkii/lang-sv.pat + texmf-dist/tex/context/patterns/mkii/lang-th.hyp + texmf-dist/tex/context/patterns/mkii/lang-th.pat + texmf-dist/tex/context/patterns/mkii/lang-tk.hyp + texmf-dist/tex/context/patterns/mkii/lang-tk.pat + texmf-dist/tex/context/patterns/mkii/lang-tr.hyp + texmf-dist/tex/context/patterns/mkii/lang-tr.pat + texmf-dist/tex/context/patterns/mkii/lang-uk.hyp + texmf-dist/tex/context/patterns/mkii/lang-uk.pat + texmf-dist/tex/context/patterns/mkii/lang-us.hyp + texmf-dist/tex/context/patterns/mkii/lang-us.pat + texmf-dist/tex/context/patterns/mkii/lang-zh.hyp + texmf-dist/tex/context/patterns/mkii/lang-zh.pat + texmf-dist/tex/context/patterns/mkiv/lang-af.lua + texmf-dist/tex/context/patterns/mkiv/lang-agr.lua + texmf-dist/tex/context/patterns/mkiv/lang-ala.lua + texmf-dist/tex/context/patterns/mkiv/lang-bg.lua + texmf-dist/tex/context/patterns/mkiv/lang-ca.lua + texmf-dist/tex/context/patterns/mkiv/lang-cs.lua + texmf-dist/tex/context/patterns/mkiv/lang-cy.lua + texmf-dist/tex/context/patterns/mkiv/lang-da.lua + texmf-dist/tex/context/patterns/mkiv/lang-de.lua + texmf-dist/tex/context/patterns/mkiv/lang-deo.lua + texmf-dist/tex/context/patterns/mkiv/lang-es.lua + texmf-dist/tex/context/patterns/mkiv/lang-et.lua + texmf-dist/tex/context/patterns/mkiv/lang-eu.lua + texmf-dist/tex/context/patterns/mkiv/lang-fi.lua + texmf-dist/tex/context/patterns/mkiv/lang-fr.lua + texmf-dist/tex/context/patterns/mkiv/lang-gb.lua + texmf-dist/tex/context/patterns/mkiv/lang-hr.lua + texmf-dist/tex/context/patterns/mkiv/lang-hu.lua + texmf-dist/tex/context/patterns/mkiv/lang-is.lua + texmf-dist/tex/context/patterns/mkiv/lang-it.lua + texmf-dist/tex/context/patterns/mkiv/lang-la.lua + texmf-dist/tex/context/patterns/mkiv/lang-lt.lua + texmf-dist/tex/context/patterns/mkiv/lang-lv.lua + texmf-dist/tex/context/patterns/mkiv/lang-ml.lua + texmf-dist/tex/context/patterns/mkiv/lang-mn.lua + texmf-dist/tex/context/patterns/mkiv/lang-nb.lua + texmf-dist/tex/context/patterns/mkiv/lang-nl.lua + texmf-dist/tex/context/patterns/mkiv/lang-nn.lua + texmf-dist/tex/context/patterns/mkiv/lang-pl.lua + texmf-dist/tex/context/patterns/mkiv/lang-pt.lua + texmf-dist/tex/context/patterns/mkiv/lang-ro.lua + texmf-dist/tex/context/patterns/mkiv/lang-ru.lua + texmf-dist/tex/context/patterns/mkiv/lang-sk.lua + texmf-dist/tex/context/patterns/mkiv/lang-sl.lua + texmf-dist/tex/context/patterns/mkiv/lang-sr.lua + texmf-dist/tex/context/patterns/mkiv/lang-sv.lua + texmf-dist/tex/context/patterns/mkiv/lang-th.lua + texmf-dist/tex/context/patterns/mkiv/lang-tk.lua + texmf-dist/tex/context/patterns/mkiv/lang-tr.lua + texmf-dist/tex/context/patterns/mkiv/lang-uk.lua + texmf-dist/tex/context/patterns/mkiv/lang-us.lua + texmf-dist/tex/context/patterns/mkiv/lang-zh.lua + texmf-dist/tex/context/patterns/mkiv/word-xx.lua + texmf-dist/tex/context/sample/common/bryson.tex + texmf-dist/tex/context/sample/common/carey.tex + texmf-dist/tex/context/sample/common/carrol.tex + texmf-dist/tex/context/sample/common/cow-black.mps + texmf-dist/tex/context/sample/common/cow-black.pdf + texmf-dist/tex/context/sample/common/cow-brown.mps + texmf-dist/tex/context/sample/common/cow-brown.pdf + texmf-dist/tex/context/sample/common/cow.pdf + texmf-dist/tex/context/sample/common/d-res-01.xml + texmf-dist/tex/context/sample/common/darwin.tex + texmf-dist/tex/context/sample/common/davis.tex + texmf-dist/tex/context/sample/common/dawkins.tex + texmf-dist/tex/context/sample/common/demo-mps.tex + texmf-dist/tex/context/sample/common/demo-tex.tex + texmf-dist/tex/context/sample/common/demo-xml.tex + texmf-dist/tex/context/sample/common/douglas.tex + texmf-dist/tex/context/sample/common/greenfield.tex + texmf-dist/tex/context/sample/common/hacker.jpg + texmf-dist/tex/context/sample/common/hawking.tex + texmf-dist/tex/context/sample/common/jojomayer.tex + texmf-dist/tex/context/sample/common/klein.tex + texmf-dist/tex/context/sample/common/knuth.tex + texmf-dist/tex/context/sample/common/linden.tex + texmf-dist/tex/context/sample/common/lorem.tex + texmf-dist/tex/context/sample/common/materie.tex + texmf-dist/tex/context/sample/common/mcnish.tex + texmf-dist/tex/context/sample/common/mill.png + texmf-dist/tex/context/sample/common/montgomery.tex + texmf-dist/tex/context/sample/common/poe.tex + texmf-dist/tex/context/sample/common/reich.tex + texmf-dist/tex/context/sample/common/sample.tex + texmf-dist/tex/context/sample/common/samples.bib + texmf-dist/tex/context/sample/common/samples.tex + texmf-dist/tex/context/sample/common/sapolsky.tex + texmf-dist/tex/context/sample/common/spider.eps + texmf-dist/tex/context/sample/common/thuan.tex + texmf-dist/tex/context/sample/common/tufte.tex + texmf-dist/tex/context/sample/common/waltham.tex + texmf-dist/tex/context/sample/common/ward.tex + texmf-dist/tex/context/sample/common/weisman.tex + texmf-dist/tex/context/sample/common/zapf.tex + texmf-dist/tex/context/sample/third/aesop-de.tex + texmf-dist/tex/context/sample/third/aristotle-grc.tex + texmf-dist/tex/context/sample/third/capek-cz.tex + texmf-dist/tex/context/sample/third/capek-vlnka-cz.tex + texmf-dist/tex/context/sample/third/cervantes-es.tex + texmf-dist/tex/context/sample/third/dequincey.tex + texmf-dist/tex/context/sample/third/dyrynk-cz.tex + texmf-dist/tex/context/sample/third/dyrynk-vlnka-cz.tex + texmf-dist/tex/context/sample/third/khatt-ar.tex + texmf-dist/tex/context/sample/third/khatt-en.tex + texmf-dist/tex/context/sample/third/kollar-cz.tex + texmf-dist/tex/context/sample/third/kollar-vlnka-cz.tex + texmf-dist/tex/context/sample/third/komensky-cz.tex + texmf-dist/tex/context/sample/third/komensky-vlnka-cz.tex + texmf-dist/tex/context/sample/third/krdel-sk.tex + texmf-dist/tex/context/sample/third/kun-cz.tex + texmf-dist/tex/context/sample/third/quevedo-es.tex + texmf-dist/tex/context/test/mkiv/context-test.tex + texmf-dist/tex/context/test/mkiv/pdf-a1a-2005.mkiv + texmf-dist/tex/context/test/mkiv/pdf-a1b-2005.mkiv + texmf-dist/tex/context/test/mkiv/pdf-a2a.mkiv + texmf-dist/tex/context/test/mkiv/pdf-a3a.mkiv + texmf-dist/tex/context/test/mkiv/pdf-ua.mkiv + texmf-dist/tex/context/test/mkiv/pdf-x-common.mkiv + texmf-dist/tex/context/test/mkiv/pdf-x1a-2001.mkiv + texmf-dist/tex/context/test/mkiv/pdf-x1a-2003.mkiv + texmf-dist/tex/context/test/mkiv/pdf-x3-2002.mkiv + texmf-dist/tex/context/test/mkiv/pdf-x3-2003.mkiv + texmf-dist/tex/context/test/mkiv/pdf-x4.mkiv + texmf-dist/tex/context/test/mkiv/pdf-x4p.mkiv + texmf-dist/tex/context/user/mkii/cont-sys.rme + texmf-dist/tex/generic/context/luatex/luatex-basics-chr.lua + texmf-dist/tex/generic/context/luatex/luatex-basics-gen.lua + texmf-dist/tex/generic/context/luatex/luatex-basics-nod.lua + texmf-dist/tex/generic/context/luatex/luatex-basics-prepare.tex + texmf-dist/tex/generic/context/luatex/luatex-basics.tex + texmf-dist/tex/generic/context/luatex/luatex-core.lua + texmf-dist/tex/generic/context/luatex/luatex-core.tex + texmf-dist/tex/generic/context/luatex/luatex-fonts-def.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts-demo-tt.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts-demo-vf-1.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts-demo-vf-4.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts-enc.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts-ext.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts-gbn.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts-lig.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts-merged.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts-mis.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts-syn.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts.lua + texmf-dist/tex/generic/context/luatex/luatex-fonts.tex + texmf-dist/tex/generic/context/luatex/luatex-gadgets.lua + texmf-dist/tex/generic/context/luatex/luatex-gadgets.tex + texmf-dist/tex/generic/context/luatex/luatex-languages.lua + texmf-dist/tex/generic/context/luatex/luatex-languages.tex + texmf-dist/tex/generic/context/luatex/luatex-math.lua + texmf-dist/tex/generic/context/luatex/luatex-math.tex + texmf-dist/tex/generic/context/luatex/luatex-mplib.lua + texmf-dist/tex/generic/context/luatex/luatex-mplib.tex + texmf-dist/tex/generic/context/luatex/luatex-pdf.tex + texmf-dist/tex/generic/context/luatex/luatex-plain.tex + texmf-dist/tex/generic/context/luatex/luatex-preprocessor-test.tex + texmf-dist/tex/generic/context/luatex/luatex-preprocessor.lua + texmf-dist/tex/generic/context/luatex/luatex-preprocessor.tex + texmf-dist/tex/generic/context/luatex/luatex-swiglib-test.lua + texmf-dist/tex/generic/context/luatex/luatex-swiglib-test.tex + texmf-dist/tex/generic/context/luatex/luatex-swiglib.lua + texmf-dist/tex/generic/context/luatex/luatex-swiglib.tex + texmf-dist/tex/generic/context/luatex/luatex-test.tex + texmf-dist/tex/generic/context/ppchtex/m-ch-de.tex + texmf-dist/tex/generic/context/ppchtex/m-ch-en.tex + texmf-dist/tex/generic/context/ppchtex/m-ch-nl.tex + texmf-dist/tex/generic/context/ppchtex/ppchtex.noc + texmf-dist/tex/latex/context/ppchtex/m-ch-de.sty + texmf-dist/tex/latex/context/ppchtex/m-ch-en.sty + texmf-dist/tex/latex/context/ppchtex/m-ch-nl.sty + texmf-dist/tex/latex/context/ppchtex/m-pictex.sty +catalogue-contact-home http://www.pragma-ade.com/ +catalogue-ctan /macros/context/current +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license other-free +catalogue-topics format context + name context-account category ConTeXt -revision 23167 -shortdesc A simple accounting package. +revision 47085 +shortdesc A simple accounting package relocated 1 longdesc The package deals with "accounts" of its own specification. depend context +containersize 6324 +containerchecksum 755ddb4c62a496873d5362df01307163c79d2a6c3fabce6ea01b442c16dad2f23d72909df71dd44eb4fbbf5c57366e20eb49bfce240807c2e2a9a52cbd76680a +doccontainersize 113848 +doccontainerchecksum b19f6d0330e5da99a961304f8c022609dedb2dc3a8cc4607cb9b2ca7eda38f9c8b972316bb9fac92cc36166e1c0822afaebda2c5e2d87db1e1efd2781f51956e +docfiles size=31 + RELOC/doc/context/third/account/README details="Readme" + RELOC/doc/context/third/account/VERSION + RELOC/doc/context/third/account/account-doc.pdf details="Package documented source" runfiles size=11 RELOC/tex/context/interface/third/t-account.xml RELOC/tex/context/third/account/t-account.mkii @@ -37724,174 +66308,282 @@ runfiles size=11 RELOC/tex/context/third/account/t-floatnumber.mkii RELOC/tex/context/third/account/t-floatnumber.mkiv RELOC/tex/context/third/account/t-floatnumber.tex -docfiles size=30 - RELOC/doc/context/third/account/README - RELOC/doc/context/third/account/account-doc.pdf catalogue-ctan /macros/context/contrib/context-account -catalogue-date 2015-02-01 16:49:46 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license pd +catalogue-topics calculation name context-algorithmic category ConTeXt -revision 31026 -shortdesc Algorithm handling in ConTeXt. +revision 47085 +shortdesc Algorithm handling in ConTeXt relocated 1 longdesc Support for typesetting algorithms (a port of the LaTeX package longdesc algorithmic, which was a predecessor of algorithmicx). depend context +containersize 3384 +containerchecksum 72d4bbfe723b4012f8701c2786f96009bbed3c6b4bd2129f7153306f172e72218920e222f97ee6d5ee4b863e9e915fc38dd92b0c42066385fde35c5c3d0cc42a +doccontainersize 352 +doccontainerchecksum 19ba676dc7822bc0a6583d6e9e031f3780977835c10d901e1ae02fca781719a0e015ac79cfc35c908a8de40a19614fcd17a35c604c9311b50972d0706d6f07e1 +docfiles size=1 + RELOC/doc/context/third/algorithmic/VERSION runfiles size=5 RELOC/tex/context/third/algorithmic/t-algorithmic.mkii RELOC/tex/context/third/algorithmic/t-algorithmic.mkiv catalogue-ctan /macros/context/contrib/context-algorithmic -catalogue-date 2015-02-01 17:06:53 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics pseudocode name context-animation category ConTeXt -revision 36188 -shortdesc Generate fieldstack based animation with ConTeXt. +revision 47085 +shortdesc Generate fieldstack based animation with ConTeXt relocated 1 longdesc The package is a port, to Context (mkvi), of the corresponding longdesc LaTeX package. depend context +containersize 4044 +containerchecksum 19691ca3325b3f72154ac8439e616a128b5f3ba8c9447bb1e92979e175daa902cd756853a2b6e6a34a84fbe96e02771a0c6ef27ed5bbb7eac94f62dd72d571f1 +doccontainersize 632 +doccontainerchecksum a06227508c2dc343598fc6878e2b17b56341f5dd86a473957318eb94ecc6e150adaedf7346ffb931eda184651efd00d8f60e36ec6ea50e9ac94e2ed096058293 +docfiles size=2 + RELOC/doc/context/third/animation/README details="Readme" + RELOC/doc/context/third/animation/VERSION runfiles size=5 RELOC/tex/context/interface/third/t-animation.xml RELOC/tex/context/third/animation/t-animation.mkvi -docfiles size=1 - RELOC/doc/context/third/animation/README catalogue-ctan /macros/context/contrib/context-animation -catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-date 2018-08-11 07:01:12 +0200 catalogue-license gpl3 +catalogue-topics graphics-motion name context-annotation category ConTeXt -revision 36188 +revision 47085 +shortdesc Annotate text blocks relocated 1 +longdesc The annotation module lets you create your own commands and +longdesc environments to mark text blocks. depend context +containersize 8476 +containerchecksum bb66132ed1e4f146c407bb3b2852c451b82d3d06de1dc25ddec6e692d17f4d994d1a67cfd7ff711dc2de7a4ce7259b1768d6efcfb58856321d5ea5b15271cd34 +doccontainersize 47140 +doccontainerchecksum 4491012c8172beb64478b2de5557ed8f97701cfcb3996a8a5ff9990048d79ddce8cc2796dbf4c08812bc8963c0d318f9d79d2d4c2d14bc372f06dbc28e012c3d +docfiles size=15 + RELOC/doc/context/third/annotation/README + RELOC/doc/context/third/annotation/VERSION + RELOC/doc/context/third/annotation/annotation-doc.pdf details="Package documentation" runfiles size=13 RELOC/tex/context/interface/third/t-annotation.xml RELOC/tex/context/third/annotation/t-annotation.lua RELOC/tex/context/third/annotation/t-annotation.mkvi -docfiles size=14 - RELOC/doc/context/third/annotation/README - RELOC/doc/context/third/annotation/annotation-doc.pdf +catalogue-ctan /macros/context/contrib/context-annotation +catalogue-date 2018-08-11 15:25:05 +0200 +catalogue-license gpl +catalogue-topics context name context-bnf category ConTeXt -revision 23167 -shortdesc A BNF module for Context. +revision 47085 +shortdesc A BNF module for ConTeXt relocated 1 -longdesc The module provides a simple way to write good-looking BNF- -longdesc style grammars in ConTeXt. Grammars are written using the BNF -longdesc syntax right in your ConTeXt documents, so there is a clear +longdesc The module provides a simple way to write good-looking +longdesc BNF-style grammars in ConTeXt. Grammars are written using the +longdesc BNF syntax right in your ConTeXt documents, so there is a clear longdesc separation between content and layout. This allows the user to longdesc decide exactly how the grammar is to be displayed, while also longdesc allowing the gist of the grammar to be understood from simply longdesc looking at the source ConTeXt document. depend context +containersize 3056 +containerchecksum 53e5d3d7c977aab648bb024942263a8aed5da6314506825ace02556db890ea23400c6de714ddf6380235c942dfc02e127736579b6be1c5b0b0ecc65d25fb0d6b +doccontainersize 269848 +doccontainerchecksum d7ab60c2f8571ce2e2e96b82c1f97b140c5750324efb73275062a8d301d530279a3f9c19f6a6feebd6d7c72727d94f469d9aad05ad67cde5dbd3de9f695dad31 +docfiles size=72 + RELOC/doc/context/third/bnf/NEWS + RELOC/doc/context/third/bnf/README details="Readme" + RELOC/doc/context/third/bnf/VERSION + RELOC/doc/context/third/bnf/t-bnf.pdf details="Package documentation" runfiles size=2 RELOC/tex/context/third/bnf/t-bnf.tex -docfiles size=71 - RELOC/doc/context/third/bnf/NEWS - RELOC/doc/context/third/bnf/README - RELOC/doc/context/third/bnf/t-bnf.pdf catalogue-ctan /macros/context/contrib/context-bnf -catalogue-date 2015-02-02 23:19:11 +0100 +catalogue-date 2018-08-11 15:30:50 +0200 catalogue-license gpl +catalogue-topics formal-spec name context-chromato category ConTeXt -revision 23167 -shortdesc ConTeXt macros for chromatograms. +revision 47085 +shortdesc ConTeXt macros for chromatograms relocated 1 longdesc The module provides macros for drawing chromatograms. depend context +containersize 2156 +containerchecksum 52e11c6953e7c2e2f9a3a20b8885fd12f5abef32d32da5ae5415b0321d37ac5ff8ff5bece3d522e1f785470cef542568cd56abd509d26671da9298c3d0ba27cc +doccontainersize 226428 +doccontainerchecksum 5c7c7f03050b0a17dadf23a09dced356a036c6b95ca76aeb0fda583dbc490d82222de64299c121224efaccc78b62364a1bc56daf020c177865c29e343529f040 +docfiles size=61 + RELOC/doc/context/third/chromato/VERSION + RELOC/doc/context/third/chromato/chromato-demo.pdf details="Package usage demo" + RELOC/doc/context/third/chromato/chromato-doc.pdf details="Package documentation" runfiles size=2 RELOC/tex/context/third/chromato/t-chromato.tex -docfiles size=60 - RELOC/doc/context/third/chromato/chromato-demo.pdf - RELOC/doc/context/third/chromato/chromato-doc.pdf catalogue-ctan /macros/context/contrib/context-chromato -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-08-11 07:01:12 +0200 +catalogue-license gpl +catalogue-topics diagram-lab + +name context-cmscbf +category ConTeXt +revision 47085 +shortdesc Use Computer Modern bold Caps and Small-caps in ConTeXt +relocated 1 +longdesc The module makes provision for bold caps and small caps CM +longdesc fonts, in ConTeXt. Such a font may be found in the Computer +longdesc Modern 'extra bold' font set. +depend context +containersize 1224 +containerchecksum cb0e5849ac3168a4ecdd1545edd029a1622ecf1c46d29eec97b28a66f65305e6b4d3a9c83e24d78e1596c8009ad5c9a0e25fa7e09448c3e0ea492e62bc933ea8 +doccontainersize 162748 +doccontainerchecksum 8f45989c08f09381ccbf2942a08c0b13792917a18d5b2e92fb45c7ac2f4b4538f5ffd633da0348e12835c03a6f79b0ea7044f1ebea5770365a83d2d097a56df4 +docfiles size=45 + RELOC/doc/context/third/cmscbf/VERSION + RELOC/doc/context/third/cmscbf/cmscbf-demo.pdf details="Demo of use" + RELOC/doc/context/third/cmscbf/cmscbf-doc.pdf details="Package documentation" +runfiles size=1 + RELOC/tex/context/third/cmscbf/t-cmscbf.tex +catalogue-ctan /macros/context/contrib/context-cmscbf +catalogue-date 2017-11-12 11:24:51 +0100 +catalogue-license gpl +catalogue-topics font-supp + +name context-cmttbf +category ConTeXt +revision 47085 +shortdesc Use Computer Modern Typewriter bold font in ConTeXt +relocated 1 +longdesc The module makes provision for bold typewriter CM fonts, in +longdesc ConTeXt. Such a font may be found in the Computer Modern 'extra +longdesc bold' font set. +depend context +containersize 1232 +containerchecksum e3bc048c09bfdf114efa25077fa4e6a6c20b4d0e2ba337cefa0a8a82348fd3376f82cae0c85b029b863b7a5db9d9552b4fc5f5487d5ed5f6d88484181ea98ced +doccontainersize 160724 +doccontainerchecksum 2b55367f236330a07120229902405213a495de2ba455f333bc23e1c1abbe0f0a4be16ee95415f613d41572916722e3d023a71698f74e5e37f34a8de4fdca6e47 +docfiles size=45 + RELOC/doc/context/third/cmttbf/VERSION + RELOC/doc/context/third/cmttbf/cmttbf-demo.pdf details="Demo of use" + RELOC/doc/context/third/cmttbf/cmttbf-doc.pdf details="Package documentation" +runfiles size=1 + RELOC/tex/context/third/cmttbf/t-cmttbf.tex +catalogue-ctan /macros/context/contrib/context-cmttbf +catalogue-date 2017-11-12 11:33:59 +0100 catalogue-license gpl +catalogue-topics font-supp name context-construction-plan category ConTeXt -revision 23167 -shortdesc Construction plans in ConTeXt. +revision 47085 +shortdesc Construction plans in ConTeXt relocated 1 longdesc Generate a page with a figure at a well-defined scale. depend context +containersize 2288 +containerchecksum b292f8e271fcac88eaedc376257ae16a401a6c31009eaa3d4faeefba25c33d034f57d30ba4638e85b76ffd0d24ef4d541dfbceb1bc0b5c806a8412d239a32146 +doccontainersize 462200 +doccontainerchecksum 605e09bedb9e2ad1e98a621c0a4842f28592c93507c3da31f8c6437e95e63a47e795b38fa0263d7fa81fa3b8838f21d2426c8705f8e17ac1d827923cf5e88784 +docfiles size=120 + RELOC/doc/context/third/construction-plan/VERSION + RELOC/doc/context/third/construction-plan/construction-plan-demo.pdf details="Example of use" + RELOC/doc/context/third/construction-plan/construction-plan-doc.pdf details="Package documentation" runfiles size=2 RELOC/tex/context/third/construction-plan/t-construction-plan.tex -docfiles size=119 - RELOC/doc/context/third/construction-plan/construction-plan-demo.pdf - RELOC/doc/context/third/construction-plan/construction-plan-doc.pdf catalogue-ctan /macros/context/contrib/context-construction-plan -catalogue-date 2015-02-02 23:35:44 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics graphics-use name context-cyrillicnumbers category ConTeXt -revision 29905 -shortdesc Write numbers as cyrillic glyphs. +revision 47085 +shortdesc Write numbers as cyrillic glyphs relocated 1 -longdesc The package extends Context's system of number conversion, by +longdesc The package extends ConTeXt's system of number conversion, by longdesc adding numeration using cyrillic letters. depend context +containersize 7820 +containerchecksum 14a90656d706d68ce441301aa6bccf2033c36f9c8d8605ec9dedeeedb71a5670dae325a5a198b2ca25373eb2b495e57fff31b85089c6c0fb987738c76ac636b2 +doccontainersize 180836 +doccontainerchecksum d95b1df26033aaff0a9f6759268ac3e68bff02556001e3f9b2bae1db68aa13c839a87047a6ae0a296f8e5817398ba35b7cbacc4f194dd93cf72684904190e7e3 +docfiles size=58 + RELOC/doc/context/third/cyrillicnumbers/COPYING + RELOC/doc/context/third/cyrillicnumbers/README.rst + RELOC/doc/context/third/cyrillicnumbers/VERSION + RELOC/doc/context/third/cyrillicnumbers/cyrillicnumbers.pdf details="Package documentation" + RELOC/doc/context/third/cyrillicnumbers/cyrillicnumbers.tex runfiles size=10 RELOC/tex/context/interface/third/t-cyrillicnumbers.xml RELOC/tex/context/third/cyrillicnumbers/cyrillicnumbers.lua RELOC/tex/context/third/cyrillicnumbers/t-cyrillicnumbers.mkii RELOC/tex/context/third/cyrillicnumbers/t-cyrillicnumbers.mkvi -docfiles size=57 - RELOC/doc/context/third/cyrillicnumbers/COPYING - RELOC/doc/context/third/cyrillicnumbers/README.rst - RELOC/doc/context/third/cyrillicnumbers/cyrillicnumbers.pdf - RELOC/doc/context/third/cyrillicnumbers/cyrillicnumbers.tex catalogue-ctan /macros/context/contrib/context-cyrillicnumbers -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license bsd +catalogue-topics cyrillic numbers name context-degrade category ConTeXt -revision 23167 -shortdesc Degrading JPEG images in ConTeXt. +revision 47085 +shortdesc Degrading JPEG images in ConTeXt relocated 1 depend context +containersize 2340 +containerchecksum b2df5bbee492b7137180bfe7b0b826f4149b8231b78cb839ac9716f02b622e5b3a0eb5964e12625650a224ae463714bb7cafbecae6061a6e3120022d2f545d52 +doccontainersize 180360 +doccontainerchecksum 8f24fd70547ecfcbb163df2e3e4450525f0e56583b6984f61fb04559142bd838287e79c9b9d8cdef2c26a882688074b5010615e6d818a11f2f5812d88e31cd82 +docfiles size=49 + RELOC/doc/context/third/degrade/VERSION + RELOC/doc/context/third/degrade/degrade-demo.pdf details="Example of use" + RELOC/doc/context/third/degrade/degrade-doc.pdf details="Package documentation" runfiles size=2 RELOC/tex/context/third/degrade/t-degrade.tex -docfiles size=48 - RELOC/doc/context/third/degrade/degrade-demo.pdf - RELOC/doc/context/third/degrade/degrade-doc.pdf +catalogue-also degrade catalogue-ctan /macros/context/contrib/context-degrade -catalogue-date 2012-07-23 21:08:55 +0200 +catalogue-date 2016-06-18 16:48:54 +0200 catalogue-license gpl +catalogue-topics graphics-use name context-fancybreak category ConTeXt -revision 36948 +revision 47085 shortdesc Overfull pages with ConTeXt relocated 1 longdesc The (ConTeXt) module allows insertion of thought breaks in longdesc texts. With parameters one can adjust the spacing around the longdesc content and set a default symbol. depend context +containersize 4324 +containerchecksum 1e8e51de47c67a3287dfa4386f9c09b4dfaa494d9b59fe8d117a3a1b65a5041add24c36227f2d2d7fb3bf2ec34d6a5a8b6658d275b63f55793d05dea08722b10 +doccontainersize 187444 +doccontainerchecksum 6082670766d63da902d2a53f2a6ee89fcdce942fd73439fea8326ef3117e6a5483b86d9d4271d2f3d9546a5fe44277721cd15510a9da392db36356b44ae2f36d +docfiles size=50 + RELOC/doc/context/third/fancybreak/README details="README" + RELOC/doc/context/third/fancybreak/VERSION + RELOC/doc/context/third/fancybreak/fancybreak-doc.pdf details="Package documentation" runfiles size=7 RELOC/tex/context/interface/third/t-fancybreak.xml RELOC/tex/context/third/fancybreak/t-fancybreak.mkii RELOC/tex/context/third/fancybreak/t-fancybreak.mkvi -docfiles size=49 - RELOC/doc/context/third/fancybreak/README - RELOC/doc/context/third/fancybreak/fancybreak-doc.pdf catalogue-ctan /macros/context/contrib/context-fancybreak -catalogue-date 2015-04-19 09:17:11 +0200 +catalogue-date 2018-08-11 07:01:12 +0200 catalogue-license gpl +catalogue-topics typesetting name context-filter category ConTeXt -revision 36285 -shortdesc Run external programs on the contents of a start-stop environment. +revision 48390 +shortdesc Run external programs on the contents of a start-stop environment relocated 1 longdesc The filter module provides a simple interface to run external longdesc programs on the contents of a start-stop environment. Options @@ -37901,142 +66593,229 @@ longdesc output should be read back, and to choose the name of the longdesc temporary files that are created. The module is compatible with longdesc both MkII and MkIV. depend context -runfiles size=11 +containersize 6480 +containerchecksum 330e7085ce8d3e284c9e4cff349b351b862cf7e6544f736268b01d623370658de507176d3bf957f5b2bb2da28523a9b5543b091cf1dad0711f0cd38b2da30fb6 +doccontainersize 10312 +doccontainerchecksum f27471636d5fdfeec2d47fe901b87fb56613bed3fbf95c5580c531c5643c919b890c38aa4f33d12252d06c9c3a681c112b052de6dbaf279374c7a87b7b9ce957 +docfiles size=9 + RELOC/doc/context/third/filter/VERSION + RELOC/doc/context/third/filter/filter.txt details="Package notes" +runfiles size=12 RELOC/tex/context/third/filter/t-filter.mkii RELOC/tex/context/third/filter/t-filter.mkiv - RELOC/tex/context/third/filter/t-module-catcodes.tex -docfiles size=8 - RELOC/doc/context/third/filter/filter.txt + RELOC/tex/context/third/filter/t-module-catcodes.mkii + RELOC/tex/context/third/filter/t-module-catcodes.mkiv catalogue-ctan /macros/context/contrib/context-filter -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license other-free - -name context-fixme -category ConTeXt -revision 29341 -shortdesc Make editorial marks on a document. -relocated 1 -longdesc The module will create a variety of marks, and produce -longdesc summaries by mark type. -depend context -runfiles size=5 - RELOC/tex/context/third/fixme/t-fixme.mkii - RELOC/tex/context/third/fixme/t-fixme.mkiv -catalogue-ctan /macros/context/contrib/context-fixme -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license pd +catalogue-date 2018-08-11 06:19:01 +0200 +catalogue-license bsd2 +catalogue-topics ext-code name context-french category ConTeXt -revision 24582 -shortdesc Support for writing French in ConTeXt. +revision 47085 +shortdesc Support for writing French in ConTeXt relocated 1 longdesc Deals with spacing around French punctuation; the package is longdesc distributed for ConTeXt Mark iv only. depend context +containersize 1704 +containerchecksum 0131af9d1c23f612450333c2cca116d2369cb8ecd402bfb9c9abc7e473b4eab44c9962d343d7391d9d9a29bd376012c82bf9e6378a280d41e37d41736b1853a2 +doccontainersize 86204 +doccontainerchecksum 96874c7039d9f252a9322cf84c4f77e8ca6bfbb9740e2b9fc8793dea79bf0d5f002ed1a69eff590c8aad6e43c315cda5af2aab0f9011bafb47a53da63101a9e7 +docfiles size=113 + RELOC/doc/context/third/french/VERSION + RELOC/doc/context/third/french/french-demo.pdf details="Example of use" + RELOC/doc/context/third/french/french-doc.pdf details="Package documentation" runfiles size=1 RELOC/tex/context/third/french/t-french.mkiv -docfiles size=112 - RELOC/doc/context/third/french/french-demo.pdf - RELOC/doc/context/third/french/french-doc.pdf catalogue-ctan /macros/context/contrib/context-french -catalogue-date 2012-07-23 21:08:55 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics french name context-fullpage category ConTeXt -revision 23167 +revision 47085 shortdesc Overfull pages with ConTeXt relocated 1 longdesc The (ConTeXt) module copies the functionality of the fullpage, longdesc and adds a styling parameter, given in the \usemodule command depend context +containersize 2996 +containerchecksum 280a16b47e04f3099a2f960435bf1c22ec623553303e339df4d06135b768cee6565e20a0c4e0c080d8c6f621a32d862ba6203daacdbf9ecd03b62829dd0014fd +doccontainersize 82144 +doccontainerchecksum 1d4ff98bae26e0d6ec1ce1ca58fac82f8592158f8635eeac737546873f1f468b2ad7a82b9f8956b770fdc0c01443a9327c509265cdecb90d83dca15462cfa23b +docfiles size=41 + RELOC/doc/context/third/fullpage/README details="README" + RELOC/doc/context/third/fullpage/VERSION + RELOC/doc/context/third/fullpage/fullpage-doc.pdf details="Package documentation" runfiles size=7 RELOC/tex/context/interface/third/t-fullpage.xml RELOC/tex/context/third/fullpage/t-fullpage.mkii RELOC/tex/context/third/fullpage/t-fullpage.mkiv -docfiles size=40 - RELOC/doc/context/third/fullpage/README - RELOC/doc/context/third/fullpage/fullpage-doc.pdf catalogue-ctan /macros/context/contrib/context-fullpage -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-08-11 15:30:23 +0200 catalogue-license gpl - -name context-games -category ConTeXt -revision 23167 -relocated 1 -depend skaknew -depend context -runfiles size=14 - RELOC/tex/context/third/games/games-go.lua - RELOC/tex/context/third/games/games-go.tex - RELOC/tex/context/third/games/games-hex.lua - RELOC/tex/context/third/games/games-hex.tex - RELOC/tex/context/third/games/holz280.jpg - RELOC/tex/context/third/games/t-games.tex -docfiles size=10 - RELOC/doc/context/third/games/README - RELOC/doc/context/third/games/games-doc.pdf +catalogue-topics geometry name context-gantt category ConTeXt -revision 27472 -shortdesc GANTT module for ConTeXt. +revision 47085 +shortdesc GANTT module for ConTeXt relocated 1 -longdesc Gantt is a module for drawing Gantt charts via metapost or -longdesc pgf/tikz. +longdesc Gantt is a module for drawing Gantt charts via MetaPost or +longdesc PGF/TikZ. depend context depend hatching -runfiles size=8 - RELOC/tex/context/third/gantt/gantt-s-mp.tex - RELOC/tex/context/third/gantt/gantt-s-tikz.tex - RELOC/tex/context/third/gantt/t-gantt.tex -docfiles size=7 - RELOC/doc/context/third/gantt/README +containersize 4180 +containerchecksum e0c61179f4ecdf93c13dbfe19f59487fbce55e1a0dece76ac025a88a452e7168c5e3b84e53c01bcae4cc412993be36eb554dc5f7299fc1205f4070aa07a834cf +doccontainersize 2072 +doccontainerchecksum a5cc76238f8377dc8d06869bf23a1367c880b57ba62ab8c8331886cbed145427e2819ba92965924fc7a78579d28b7c1cf331acf7f199cf72672ccb64962c9367 +docfiles size=8 + RELOC/doc/context/third/gantt/README details="Readme" + RELOC/doc/context/third/gantt/VERSION RELOC/doc/context/third/gantt/examples/gantt-1.tex RELOC/doc/context/third/gantt/examples/gantt-2.tex RELOC/doc/context/third/gantt/examples/gantt-3.tex RELOC/doc/context/third/gantt/examples/gantt-4.tex RELOC/doc/context/third/gantt/examples/gantt-5.tex - RELOC/doc/context/third/gantt/gantt.txt + RELOC/doc/context/third/gantt/gantt.txt details="Package documentation" +runfiles size=8 + RELOC/tex/context/third/gantt/gantt-s-mp.tex + RELOC/tex/context/third/gantt/gantt-s-tikz.tex + RELOC/tex/context/third/gantt/t-gantt.tex catalogue-ctan /macros/context/contrib/context-gantt -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-08-11 07:01:12 +0200 catalogue-license pd +catalogue-topics diagram gantt name context-gnuplot category ConTeXt -revision 30380 -shortdesc Inclusion of Gnuplot graphs in ConTeXt. +revision 47085 +shortdesc Inclusion of Gnuplot graphs in ConTeXt relocated 1 longdesc Enables simple creation and inclusion of graphs with Gnuplot. longdesc The package writes a script into temporary file, runs Gnuplot longdesc and includes the resulting graphic directly into the document. longdesc See the ConTeXt Garden package page for further details. depend context -runfiles size=27 - RELOC/metapost/context/third/gnuplot/mp-gnuplot.mp - RELOC/tex/context/third/gnuplot/t-gnuplot.mkii - RELOC/tex/context/third/gnuplot/t-gnuplot.mkiv -docfiles size=119 +containersize 18500 +containerchecksum d3d7dce105707bd8fd903038e458cae614ec63da7932231e1f659570ec3a7960ea0fab338a8405f2ca8ce8b03946b58db8255333d2a4ab5a659566f4d272b0b0 +doccontainersize 448972 +doccontainerchecksum 40e471b27d53ced33590792ac62992a220357c6db1c78cba901197362a36817bc14b049f2573ee2e5b5adad5182c5bea2880c4f7a2477bcd1a06ee7ccf88b0b9 +docfiles size=120 + RELOC/doc/context/third/gnuplot/VERSION RELOC/doc/context/third/gnuplot/example.plt RELOC/doc/context/third/gnuplot/fullpage-example.pdf RELOC/doc/context/third/gnuplot/fullpage-example.tex - RELOC/doc/context/third/gnuplot/gnuplot-context-doc.pdf + RELOC/doc/context/third/gnuplot/gnuplot-context-doc.pdf details="Package documentation" RELOC/doc/context/third/gnuplot/gnuplot-context-doc.tex +runfiles size=27 + RELOC/metapost/context/third/gnuplot/mp-gnuplot.mp + RELOC/tex/context/third/gnuplot/t-gnuplot.mkii + RELOC/tex/context/third/gnuplot/t-gnuplot.mkiv +catalogue-also gnuplottex +catalogue-contact-home http://wiki.contextgarden.net/Gnuplot catalogue-ctan /macros/context/contrib/context-gnuplot -catalogue-date 2014-04-27 13:42:31 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license gpl +catalogue-topics graphics-inline + +name context-handlecsv +category ConTeXt +revision 50709 +shortdesc Data merging for automatic document creation +relocated 1 +longdesc The package handles csv data merging for automatic document +longdesc creation. +depend context +containersize 15508 +containerchecksum 6eb4d1ebaae1bdace53070d4abb8e010697275d21b4762f29c768044e3718cd0f2e214929cc5909e15f245b22c5377872fad04cfcaf419e07a42f54a6916c054 +doccontainersize 981308 +doccontainerchecksum 2d3fa7841c5e94f828e6def9525f20c86a1040efc2687587ec85ced7032105558ec2a47b088fb07c0ea190ed3d1a3aeddd25c1985fbd87912cc2d93a19a5ccc8 +docfiles size=252 + RELOC/doc/context/third/handlecsv/VERSION + RELOC/doc/context/third/handlecsv/handlecsv.epub + RELOC/doc/context/third/handlecsv/handlecsv.pdf details="Package documentation" +runfiles size=21 + RELOC/tex/context/third/handlecsv/t-handlecsv-extra.lua + RELOC/tex/context/third/handlecsv/t-handlecsv-tools.lua + RELOC/tex/context/third/handlecsv/t-handlecsv.lua + RELOC/tex/context/third/handlecsv/t-handlecsv.tex +catalogue-contact-home http://www.handlecsv.tk +catalogue-contact-repository https://github.com/ousia/handlecsv +catalogue-contact-support https://github.com/ousia/handlecsv/issues +catalogue-ctan /macros/context/contrib/context-handlecsv +catalogue-date 2018-09-25 05:27:36 +0200 +catalogue-license gpl3 +catalogue-topics context csv-support + +name context-inifile +category ConTeXt +revision 47085 +shortdesc An ini-file pretty-printer, using ConTeXt +relocated 1 +longdesc The module parses an ini-file and prints the contents with a +longdesc user-defined layout. The entries of the file may be sorted by +longdesc up to three sort keys. The format of a simple ini-file would +longdesc be: [key1] symbol1 = value1 symbol2 = value2 [key2] symbol1 = +longdesc value3 symbol2 = value4 The module only works with ConTeXt +longdesc MkIV, and uses Lua to help process the input. +depend context +containersize 2756 +containerchecksum 9dd9b61cd2b5700b0e2b6e59bf4040de9431820c659f121c2681e454ddb4b34454270eac6c442836c90f8a1819761ce0d7659684a1f0c8876fec1f947a0b16f7 +doccontainersize 81492 +doccontainerchecksum 9635bc80ae7222c6a38004ad5f985004634b7db9596e03a23123ad71bbf177639bb1b028bdfe79d51b75c1c429c327f65c2b5e0720723d8bcdf63f4939312850 +docfiles size=24 + RELOC/doc/context/third/inifile/VERSION + RELOC/doc/context/third/inifile/inifile-demo.pdf details="Example of use" + RELOC/doc/context/third/inifile/inifile-doc.pdf details="Package documentation" +runfiles size=2 + RELOC/tex/context/third/inifile/t-inifile.tex +catalogue-ctan /macros/context/contrib/context-inifile +catalogue-date 2018-08-11 07:01:12 +0200 +catalogue-license gpl +catalogue-topics data-disp + +name context-layout +category ConTeXt +revision 47085 +shortdesc Show ConTeXt layouts +relocated 1 +longdesc Draws a representation of the layout of the current page and +longdesc displays the sizes of the widths and heights of the margins, +longdesc header, footer and text body. +depend context +containersize 3996 +containerchecksum 6cad00783d0bc91000ca0e0c8350fe2a2e99f7fefccd375d5bb2f1a144fc04a59f83122dcd490fc0596b1dc9fd0c0a779bfa35932362927ed50ed8df39ec359e +doccontainersize 211432 +doccontainerchecksum 4ecf7bfe5fbc78453cc116cf7a657f4b6ac7fc21ca7dd6da5beb0ea1af0c1fd48d6a74ab516213f49d1e29cb8bd47fbcc94145157472e3ea22b291f494fc3d1f +docfiles size=54 + RELOC/doc/context/third/layout/VERSION + RELOC/doc/context/third/layout/t-layout.pdf details="Package documentation" +runfiles size=3 + RELOC/tex/context/third/layout/t-layout.tex +catalogue-ctan /macros/context/contrib/context-layout +catalogue-date 2018-01-07 14:49:11 +0100 catalogue-license gpl +catalogue-topics context name context-letter category ConTeXt -revision 38202 +revision 47085 shortdesc ConTeXt package for writing letters relocated 1 longdesc A means of writing 'vanilla' letters and memos is provided, longdesc with support covering ConTeXt Mkii and Mkiv. The design of longdesc letters may be amended by a wide range of style specifications. depend context +containersize 27208 +containerchecksum 52caf1eaef275b90c883992562b66f837d439f176c0b061836e1fba412b3957502ae9c5b9dd893e89e7ff1274d70e2ed162b75709563874e4ff6a9844044035f +doccontainersize 656 +doccontainerchecksum ef7e344e25095ebfa7376af1fcfd5f4e617e91b5841ed8f8fbd2109bdc645d71174ce7b571f2f3dbce46ea08ccf7c3c73b0075b2cabd3847c239171a7275ef87 +docfiles size=2 + RELOC/doc/context/third/letter/README details="Readme" + RELOC/doc/context/third/letter/VERSION runfiles size=120 RELOC/tex/context/interface/third/t-letter.xml RELOC/tex/context/interface/third/t-memo.xml @@ -38106,78 +66885,76 @@ runfiles size=120 RELOC/tex/context/third/letter/style/resume-imp-classic-red.mkiv RELOC/tex/context/third/letter/style/resume-imp-classic.mkiv RELOC/tex/context/third/letter/style/resume-imp-default.mkiv -docfiles size=1 - RELOC/doc/context/third/letter/README catalogue-ctan /macros/context/contrib/context-letter -catalogue-date 2015-08-08 19:53:23 +0200 +catalogue-date 2018-08-11 15:29:10 +0200 catalogue-license gpl catalogue-topics letter name context-lettrine category ConTeXt -revision 23167 -shortdesc A ConTeXt implementation of lettrines. +revision 47085 +shortdesc A ConTeXt implementation of lettrines relocated 1 longdesc This is a re-implementation of the LaTeX package lettrine. depend context +containersize 2520 +containerchecksum 79e4e246a7bb0a300db53425e2769a3ef61bc0249ce57840c0b9037805e86eadbd1ef4ab8a110fd806584393feef00f498418732cfd53922aed6df67c561e535 +doccontainersize 89760 +doccontainerchecksum ab32697b6c309b1099b809c33182ffc48bb3019c8d520269cbb616b61e8f20678cc2cf4e7e971e06cadb22ffcee0d502deedf21aa95d8d372d1840e4fb4a6591 +docfiles size=32 + RELOC/doc/context/third/lettrine/VERSION + RELOC/doc/context/third/lettrine/W.pdf + RELOC/doc/context/third/lettrine/lettrine-doc.pdf details="MAPS paper about the package" + RELOC/doc/context/third/lettrine/lettrine-doc.tex runfiles size=3 RELOC/tex/context/interface/third/lettrine.xml RELOC/tex/context/third/lettrine/t-lettrine.tex -docfiles size=31 - RELOC/doc/context/third/lettrine/W.pdf - RELOC/doc/context/third/lettrine/lettrine-doc.pdf - RELOC/doc/context/third/lettrine/lettrine-doc.tex catalogue-ctan /macros/context/contrib/context-lettrine -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-08-11 07:01:12 +0200 catalogue-license pd - -name context-lilypond -category ConTeXt -revision 23167 -shortdesc Lilypond code in ConTeXt. -relocated 1 -longdesc Includes lilypond music definitions direct in a ConTeXt -longdesc document. -depend context -runfiles size=4 - RELOC/tex/context/third/lilypond/t-lilypond.tex -docfiles size=50 - RELOC/doc/context/third/lilypond/demo.pdf - RELOC/doc/context/third/lilypond/t-lilypond.pdf -catalogue-ctan /macros/context/contrib/context-lilypond -catalogue-date 2012-06-18 20:00:19 +0200 -catalogue-license gpl +catalogue-topics lettrine name context-mathsets category ConTeXt -revision 23167 -shortdesc Set notation in ConTeXt. +revision 47085 +shortdesc Set notation in ConTeXt relocated 1 longdesc Typeset good-looking set notation (e.g., {x|x \in Y}), as well longdesc as similar things such as Dirac bra-ket notation, conditional longdesc probabilities, etc. The package is at least inspired by braket. depend context +containersize 4896 +containerchecksum e4c689c745d06c61d6f693a9832001aa8c79d51664c2a5d6d0c6148a95b30870063f50eecca31ac0924193c6dab8c12cd5ccaca16eeaf5f83a99cef1a8889ec3 +doccontainersize 399952 +doccontainerchecksum f2c33244814da8e8838483038f507fe6b3e146f37691e55a37bb5355985d2af4c5fc423318133c4f13837a3e66a4fe72d5c14f6721bb5ee0417a59691b86d3f1 +docfiles size=102 + RELOC/doc/context/third/mathsets/VERSION + RELOC/doc/context/third/mathsets/mathsets-doc.pdf details="Package documentation" runfiles size=4 RELOC/tex/context/interface/third/t-mathsets.xml RELOC/tex/context/third/mathsets/t-mathsets.tex -docfiles size=101 - RELOC/doc/context/third/mathsets/mathsets-doc.pdf catalogue-ctan /macros/context/contrib/context-mathsets -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics maths name context-notes-zh-cn category Package revision 23171 -shortdesc Notes on using ConTeXt MkIV. +shortdesc Notes on using ConTeXt MkIV relocated 1 longdesc An introductory tutorial on ConTeXt, in Chinese. The document -longdesc covers ConTeXt installation, fonts, layout design, cross- -longdesc reference, project structure, metafun and presentation design. +longdesc covers ConTeXt installation, fonts, layout design, +longdesc cross-reference, project structure, metafun and presentation +longdesc design. depend context +containersize 492 +containerchecksum a05cd68d609fb9427ca07f64ba1b9ad85762464a3294653c8a790c0a6a41d6af43aab72a1eb7ef0d56a299db2f54af5666dbe974f9fdac014f624350c8bfe50a +doccontainersize 858504 +doccontainerchecksum 4261b8aeb5b3cbebde2890af1b7039c6f557ce36f4979228f40f9e5e99b19aa5c457ed6842f4501f4dc32f51f58d9fcd0764028b9d5c74fd07d41c8c866220a1 docfiles size=252 - RELOC/doc/context/third/context-notes-zh-cn/README - RELOC/doc/context/third/context-notes-zh-cn/ctxnotes.pdf + RELOC/doc/context/third/context-notes-zh-cn/README details="Readme" + RELOC/doc/context/third/context-notes-zh-cn/ctxnotes.pdf details="The document itself" RELOC/doc/context/third/context-notes-zh-cn/src/Makefile RELOC/doc/context/third/context-notes-zh-cn/src/basis.tex RELOC/doc/context/third/context-notes-zh-cn/src/bibl-lyr.tex @@ -38198,31 +66975,28 @@ docfiles size=252 RELOC/doc/context/third/context-notes-zh-cn/src/t-zhfonts.mkiv RELOC/doc/context/third/context-notes-zh-cn/src/t-zhspuncs.lua catalogue-ctan /info/context-notes-zh-cn -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics chinese-doc name context-rst category ConTeXt -revision 33092 -shortdesc Process reStructuredText with ConTeXt. +revision 47085 +shortdesc Process reStructuredText with ConTeXt relocated 1 longdesc The package provides a converter and module for typesetting longdesc reStructuredText with ConTeXt. The module uses several lua longdesc scripts in doing its work. Documentation is supplied in rst, -longdesc which seems to be readable as text, but... +longdesc which seems to be readable as text, but .... depend context -runfiles size=42 - RELOC/scripts/context/lua/third/rst/mtx-t-rst.lua - RELOC/tex/context/interface/third/t-rst.xml - RELOC/tex/context/third/rst/rst_context.lua - RELOC/tex/context/third/rst/rst_directives.lua - RELOC/tex/context/third/rst/rst_helpers.lua - RELOC/tex/context/third/rst/rst_parser.lua - RELOC/tex/context/third/rst/rst_setups.lua - RELOC/tex/context/third/rst/t-rst.mkiv -docfiles size=46 +containersize 31068 +containerchecksum f93173c1b27afe538d670c791048f495fa3f236cf75511d43b33172d140ac47fa3b5f11c674db5d515733b8ef9cfa7ac2d3c46b78b624768ee95a21884dae904 +doccontainersize 126944 +doccontainerchecksum 536f63f9fa02e37c38f445974dab1f75b38abf0769379ee1735001972db71be10d51a1782e850ddd75d73f2a6f1375cf043684c0fae1a88b20a1650248870f9a +docfiles size=47 RELOC/doc/context/third/rst/OMakefile RELOC/doc/context/third/rst/OMakefile.omc + RELOC/doc/context/third/rst/VERSION RELOC/doc/context/third/rst/documentation.rst RELOC/doc/context/third/rst/hybridtest.tex RELOC/doc/context/third/rst/inc-first.rst @@ -38230,18 +67004,27 @@ docfiles size=46 RELOC/doc/context/third/rst/inc-third.rst RELOC/doc/context/third/rst/inc.tex RELOC/doc/context/third/rst/manual.bib - RELOC/doc/context/third/rst/manual.pdf + RELOC/doc/context/third/rst/manual.pdf details="Manual" RELOC/doc/context/third/rst/manual.tex RELOC/doc/context/third/rst/moduletest.tex +runfiles size=42 + RELOC/scripts/context/lua/third/rst/mtx-t-rst.lua + RELOC/tex/context/interface/third/t-rst.xml + RELOC/tex/context/third/rst/rst_context.lua + RELOC/tex/context/third/rst/rst_directives.lua + RELOC/tex/context/third/rst/rst_helpers.lua + RELOC/tex/context/third/rst/rst_parser.lua + RELOC/tex/context/third/rst/rst_setups.lua + RELOC/tex/context/third/rst/t-rst.mkiv catalogue-ctan /macros/context/contrib/context-rst -catalogue-date 2014-03-03 08:58:55 +0100 +catalogue-date 2018-08-11 15:28:39 +0200 catalogue-license other-free -catalogue-version 0.6c +catalogue-topics foreign-import name context-ruby category ConTeXt -revision 28434 -shortdesc Ruby annotations in ConTeXt. +revision 47085 +shortdesc Ruby annotations in ConTeXt relocated 1 longdesc Ruby markup (aka furigana in Japan) are inline annotations longdesc above or below a word to indicate the reading of ideographic @@ -38249,72 +67032,68 @@ longdesc characters. The module implements the W3C specification for longdesc simple ruby in ConTeXt. The position and layout of the base longdesc text and the ruby text can becontrolled by parameters. depend context +containersize 4348 +containerchecksum e219c6da61585d88f8e899278d1c85f0903ed32b6c7368cdb6076697230a0e79f5f88f53dd98514394fa09e7580c1c6b7c167d81c010107f3399dffb18b13d95 +doccontainersize 808 +doccontainerchecksum 179e501b428bd87a49830a68236008ea6e962b80e79ab45a0e75a7b86a7fc11025ac38ad463c459c6d290aa5ac8627da5849d1fd8f7502ea7d97696b53ed2647 +docfiles size=2 + RELOC/doc/context/third/ruby/README details="Readme" + RELOC/doc/context/third/ruby/VERSION runfiles size=9 RELOC/tex/context/third/ruby/t-ruby.mkii RELOC/tex/context/third/ruby/t-ruby.mkiv RELOC/tex/context/third/ruby/t-ruby.mkvi -docfiles size=1 - RELOC/doc/context/third/ruby/README catalogue-ctan /macros/context/contrib/context-ruby -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-08-11 07:01:12 +0200 catalogue-license pd +catalogue-topics notes name context-simplefonts category ConTeXt -revision 29229 -shortdesc Simplified font usage for ConTeXt. +revision 47085 +shortdesc Simplified font usage for ConTeXt relocated 1 longdesc The package defines a set of commands for loading and using longdesc fonts in ConTeXt. depend context +containersize 7688 +containerchecksum 7c817f4a25a8883ce052c9657a3d6117042e8538fadc8d67b4b0194abd69238045c09d365e90e555d5b04d83a1ef82039ca9631aec00eb1f80b56fbefa729cd3 +doccontainersize 828 +doccontainerchecksum 238babc7694bf85c81e3079b5d72feabc9c9eeea4f3b625a57ecb133d70ac745334ca0426097dccfe53e3ffe108ac0859be4da7625bb6b683abec1101367ac06 +docfiles size=2 + RELOC/doc/context/third/simplefonts/README details="Readme" + RELOC/doc/context/third/simplefonts/VERSION runfiles size=16 RELOC/tex/context/third/simplefonts/t-simplefonts.lua RELOC/tex/context/third/simplefonts/t-simplefonts.mkii RELOC/tex/context/third/simplefonts/t-simplefonts.mkiv -docfiles size=1 - RELOC/doc/context/third/simplefonts/README catalogue-ctan /macros/context/contrib/context-simplefonts -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-08-11 07:01:12 +0200 catalogue-license gpl +catalogue-topics font-supp context name context-simpleslides category ConTeXt -revision 34438 -relocated 1 +revision 47085 +shortdesc A module for preparing presentations +relocated 1 +longdesc This ConTeXt module provides an easy-to-use interface for +longdesc creating presentations for use with a digital projector. The +longdesc presentations are not interactive (no buttons, hyperlinks or +longdesc navigational tools such as tables of contents). Graphics may be +longdesc mixed with the text of slides. The module provides several +longdesc predefined styles, designed for academic presentation. Most +longdesc styles are configurable, and it is easy to design new styles. depend context -runfiles size=65 - RELOC/scripts/context/lua/third/simpleslides/mtx-simpleslides.lua - RELOC/tex/context/interface/third/t-simpleslides.xml - RELOC/tex/context/third/simpleslides/s-simpleslides-BigNumber.tex - RELOC/tex/context/third/simpleslides/s-simpleslides-BlackBoard.tex - RELOC/tex/context/third/simpleslides/s-simpleslides-BottomSquares.tex - RELOC/tex/context/third/simpleslides/s-simpleslides-Boxed.tex - RELOC/tex/context/third/simpleslides/s-simpleslides-BoxedTitle.tex - RELOC/tex/context/third/simpleslides/s-simpleslides-Ellipse.tex - RELOC/tex/context/third/simpleslides/s-simpleslides-Embossed.tex - RELOC/tex/context/third/simpleslides/s-simpleslides-Framed.tex - RELOC/tex/context/third/simpleslides/s-simpleslides-FramedTitle.tex - RELOC/tex/context/third/simpleslides/s-simpleslides-FuzzyFrame.tex - RELOC/tex/context/third/simpleslides/s-simpleslides-FuzzyTopic.tex - RELOC/tex/context/third/simpleslides/s-simpleslides-HorizontalStripes.tex - RELOC/tex/context/third/simpleslides/s-simpleslides-NarrowStripes.tex - RELOC/tex/context/third/simpleslides/s-simpleslides-PlainCounter.tex - RELOC/tex/context/third/simpleslides/s-simpleslides-RainbowStripe.tex - RELOC/tex/context/third/simpleslides/s-simpleslides-Rounded.tex - RELOC/tex/context/third/simpleslides/s-simpleslides-Shaded.tex - RELOC/tex/context/third/simpleslides/s-simpleslides-SideSquares.tex - RELOC/tex/context/third/simpleslides/s-simpleslides-SideToc.tex - RELOC/tex/context/third/simpleslides/s-simpleslides-Split.tex - RELOC/tex/context/third/simpleslides/s-simpleslides-Sunrise.tex - RELOC/tex/context/third/simpleslides/s-simpleslides-Swoosh.tex - RELOC/tex/context/third/simpleslides/s-simpleslides-ThickStripes.tex - RELOC/tex/context/third/simpleslides/s-simpleslides-default.tex - RELOC/tex/context/third/simpleslides/s-simpleslides-fontsdefault.mkiv - RELOC/tex/context/third/simpleslides/t-simpleslides.mkiv -docfiles size=2064 +containersize 29208 +containerchecksum 8bc6a0ee37116c200cffdc6595fa4d6b3383dd92da869f2e142d475a5693cc2ff4745144e3b2fd5a3ad0876a5182f1824a2a402aa48b0b02e288990e16056083 +doccontainersize 849592 +doccontainerchecksum 06b57a4d89ad4aebdc08fb002229b822073b36da4096db390ffa3dfc92c32b6a0b138fb31a09406a011d647d260fba9274144f5463a1df3c50ec816d31d2662a +docfiles size=2065 + RELOC/doc/context/third/simpleslides/VERSION RELOC/doc/context/third/simpleslides/example.pdf RELOC/doc/context/third/simpleslides/example.tex - RELOC/doc/context/third/simpleslides/simpleslides.pdf + RELOC/doc/context/third/simpleslides/simpleslides.pdf details="Package documentation" RELOC/doc/context/third/simpleslides/simpleslides.tex RELOC/doc/context/third/simpleslides/solutions/generic-talk-15min-45min.tex RELOC/doc/context/third/simpleslides/solutions/speaker_introduction-2min.tex @@ -38345,2595 +67124,84 @@ docfiles size=2064 RELOC/doc/context/third/simpleslides/styles/Sunrise.pdf RELOC/doc/context/third/simpleslides/styles/Swoosh.pdf RELOC/doc/context/third/simpleslides/styles/ThickStripes.pdf +runfiles size=65 + RELOC/scripts/context/lua/third/simpleslides/mtx-simpleslides.lua + RELOC/tex/context/interface/third/t-simpleslides.xml + RELOC/tex/context/third/simpleslides/s-simpleslides-BigNumber.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-BlackBoard.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-BottomSquares.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-Boxed.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-BoxedTitle.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-Ellipse.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-Embossed.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-Framed.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-FramedTitle.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-FuzzyFrame.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-FuzzyTopic.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-HorizontalStripes.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-NarrowStripes.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-PlainCounter.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-RainbowStripe.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-Rounded.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-Shaded.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-SideSquares.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-SideToc.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-Split.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-Sunrise.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-Swoosh.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-ThickStripes.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-default.tex + RELOC/tex/context/third/simpleslides/s-simpleslides-fontsdefault.mkiv + RELOC/tex/context/third/simpleslides/t-simpleslides.mkiv +catalogue-ctan /macros/context/contrib/context-simpleslides +catalogue-date 2018-08-11 15:28:08 +0200 +catalogue-license gpl +catalogue-topics context name context-title category ConTeXt -revision 36189 +revision 47085 +shortdesc Place document titles relocated 1 +longdesc The title module provides the \placetitle command to put a +longdesc title block into your document. With the command \setuptitle +longdesc values can be set for \placetitle and change the formatting of +longdesc the content. depend context +containersize 2208 +containerchecksum bc7d6cbd373cb6d6214489ed97117929ba381626c854a0a5a950bfa44c06214991d7a90290793c825c96e6d22ba1f6807054d4553d1d3980d9d9bc0e6dabafda +doccontainersize 23088 +doccontainerchecksum 3b910eeca8c8a442939873e082a4025523472b267ed3268e63cbf5fbe0821c9db8d8d183058d139aa02233dfdb6be7e23fb9df360a490f7d551875c59753c7c0 +docfiles size=8 + RELOC/doc/context/third/title/VERSION + RELOC/doc/context/third/title/title-doc.pdf details="Package documentation" runfiles size=2 RELOC/tex/context/interface/third/t-title.xml RELOC/tex/context/third/title/t-title.mkvi -docfiles size=7 - RELOC/doc/context/third/title/README - RELOC/doc/context/third/title/title-doc.pdf - -name context -category Package -revision 37464 -shortdesc The ConTeXt macro package. -longdesc A full featured, parameter driven macro package, which fully -longdesc supports advanced interactive documents. See the ConTeXt garden -longdesc for a wealth of support information. -depend metapost -depend pdftex -depend xetex -depend luatex -depend lm -depend lm-math -depend amsfonts -depend manfnt-font -depend mflogo-font -depend stmaryrd -depend mptopdf -depend context.ARCH -execute AddFormat name=cont-en engine=pdftex patterns=cont-usr.tex options="-8bit *cont-en.mkii" -execute AddFormat name=cont-en engine=xetex patterns=cont-usr.tex options="-8bit *cont-en.mkii" -execute AddFormat name=cont-fr mode=disabled engine=pdftex patterns=cont-usr.tex options="-8bit *cont-fr.mkii" -execute AddFormat name=cont-it mode=disabled engine=pdftex patterns=cont-usr.tex options="-8bit *cont-it.mkii" -execute AddFormat name=cont-nl mode=disabled engine=pdftex patterns=cont-usr.tex options="-8bit *cont-nl.mkii" -execute AddFormat name=cont-ro mode=disabled engine=pdftex patterns=cont-usr.tex options="-8bit *cont-ro.mkii" -execute addMap original-context-symbol.map -runfiles size=11702 - texmf-dist/bibtex/bst/context/cont-ab.bst - texmf-dist/bibtex/bst/context/cont-au.bst - texmf-dist/bibtex/bst/context/cont-no.bst - texmf-dist/bibtex/bst/context/cont-ti.bst - texmf-dist/context/data/scite/context/documents/scite-context-readme.pdf - texmf-dist/context/data/scite/context/documents/scite-context-readme.tex - texmf-dist/context/data/scite/context/documents/scite-context-visual.pdf - texmf-dist/context/data/scite/context/documents/scite-context-visual.png - texmf-dist/context/data/scite/context/lexers/data/scite-context-data-context.lua - texmf-dist/context/data/scite/context/lexers/data/scite-context-data-interfaces.lua - texmf-dist/context/data/scite/context/lexers/data/scite-context-data-metafun.lua - texmf-dist/context/data/scite/context/lexers/data/scite-context-data-metapost.lua - texmf-dist/context/data/scite/context/lexers/data/scite-context-data-tex.lua - texmf-dist/context/data/scite/context/lexers/lexer.lua - texmf-dist/context/data/scite/context/lexers/scite-context-lexer-bibtex.lua - texmf-dist/context/data/scite/context/lexers/scite-context-lexer-cld.lua - texmf-dist/context/data/scite/context/lexers/scite-context-lexer-cpp-web.lua - texmf-dist/context/data/scite/context/lexers/scite-context-lexer-cpp.lua - texmf-dist/context/data/scite/context/lexers/scite-context-lexer-dummy.lua - texmf-dist/context/data/scite/context/lexers/scite-context-lexer-lua-longstring.lua - texmf-dist/context/data/scite/context/lexers/scite-context-lexer-lua.lua - texmf-dist/context/data/scite/context/lexers/scite-context-lexer-mps.lua - texmf-dist/context/data/scite/context/lexers/scite-context-lexer-pdf-object.lua - texmf-dist/context/data/scite/context/lexers/scite-context-lexer-pdf-xref.lua - texmf-dist/context/data/scite/context/lexers/scite-context-lexer-pdf.lua - texmf-dist/context/data/scite/context/lexers/scite-context-lexer-tex-web.lua - texmf-dist/context/data/scite/context/lexers/scite-context-lexer-tex.lua - texmf-dist/context/data/scite/context/lexers/scite-context-lexer-txt.lua - texmf-dist/context/data/scite/context/lexers/scite-context-lexer-web-snippets.lua - texmf-dist/context/data/scite/context/lexers/scite-context-lexer-web.lua - texmf-dist/context/data/scite/context/lexers/scite-context-lexer-xml-cdata.lua - texmf-dist/context/data/scite/context/lexers/scite-context-lexer-xml-comment.lua - texmf-dist/context/data/scite/context/lexers/scite-context-lexer-xml-script.lua - texmf-dist/context/data/scite/context/lexers/scite-context-lexer-xml.lua - texmf-dist/context/data/scite/context/lexers/scite-context-lexer.lua - texmf-dist/context/data/scite/context/lexers/themes/scite-context-theme.lua - texmf-dist/context/data/scite/context/scite-context-data-context.properties - texmf-dist/context/data/scite/context/scite-context-data-interfaces.properties - texmf-dist/context/data/scite/context/scite-context-data-metafun.properties - texmf-dist/context/data/scite/context/scite-context-data-metapost.properties - texmf-dist/context/data/scite/context/scite-context-data-tex.properties - texmf-dist/context/data/scite/context/scite-context-external.properties - texmf-dist/context/data/scite/context/scite-context-internal.properties - texmf-dist/context/data/scite/context/scite-context-user.properties - texmf-dist/context/data/scite/context/scite-context.properties - texmf-dist/context/data/scite/context/scite-ctx-context.properties - texmf-dist/context/data/scite/context/scite-ctx-example.properties - texmf-dist/context/data/scite/context/scite-ctx.lua - texmf-dist/context/data/scite/context/scite-ctx.properties - texmf-dist/context/data/scite/context/scite-metapost.properties - texmf-dist/context/data/scite/context/scite-pragma.properties - texmf-dist/context/data/scite/context/scite-tex.properties - texmf-dist/context/data/texfont/type-buy.dat - texmf-dist/context/data/texfont/type-fsf.dat - texmf-dist/context/data/texfont/type-ghz.dat - texmf-dist/context/data/texfont/type-tmf.dat - texmf-dist/context/data/texworks/TUG/TeXworks.ini - texmf-dist/context/data/texworks/completion/tw-context.txt - texmf-dist/context/data/texworks/configuration/auto-indent-patterns.txt - texmf-dist/context/data/texworks/configuration/delimiter-pairs.txt - texmf-dist/context/data/texworks/configuration/smart-quotes-modes.txt - texmf-dist/context/data/texworks/configuration/syntax-patterns.txt - texmf-dist/context/data/texworks/configuration/tag-patterns.txt - texmf-dist/context/data/texworks/configuration/texworks-config.txt - texmf-dist/context/data/texworks/configuration/tools.ini - texmf-dist/context/data/texworks/texworks-context.rme - texmf-dist/context/data/texworks/texworks-setup.ini - texmf-dist/fonts/afm/hoekwater/context/contnav.afm - texmf-dist/fonts/cid/fontforge/Adobe-CNS1-4.cidmap - texmf-dist/fonts/cid/fontforge/Adobe-GB1-4.cidmap - texmf-dist/fonts/cid/fontforge/Adobe-Identity-0.cidmap - texmf-dist/fonts/cid/fontforge/Adobe-Japan1-5.cidmap - texmf-dist/fonts/cid/fontforge/Adobe-Japan1-6.cidmap - texmf-dist/fonts/cid/fontforge/Adobe-Japan2-0.cidmap - texmf-dist/fonts/cid/fontforge/Adobe-Korea1-2.cidmap - texmf-dist/fonts/enc/dvips/context/cmin.enc - texmf-dist/fonts/enc/dvips/context/cmit.enc - texmf-dist/fonts/enc/dvips/context/cmitt.enc - texmf-dist/fonts/enc/dvips/context/cmrm.enc - texmf-dist/fonts/enc/dvips/context/cmsc.enc - texmf-dist/fonts/enc/dvips/context/cmtt.enc - texmf-dist/fonts/enc/dvips/context/ec-2004.enc - texmf-dist/fonts/enc/dvips/context/q-8r.enc - texmf-dist/fonts/enc/dvips/context/teff-trinite.enc - texmf-dist/fonts/fea/context/greek-babel.fea - texmf-dist/fonts/fea/context/test-features.fea - texmf-dist/fonts/fea/context/texhistoric.fea - texmf-dist/fonts/fea/context/verbose-digits.fea - texmf-dist/fonts/map/dvips/context/contnav.map - texmf-dist/fonts/map/luatex/context/demo-font.lum - texmf-dist/fonts/map/pdftex/context/8r-base.map - texmf-dist/fonts/map/pdftex/context/ec-base.map - texmf-dist/fonts/map/pdftex/context/ec-os-public-lm.map - texmf-dist/fonts/map/pdftex/context/mkiv-base.map - texmf-dist/fonts/map/pdftex/context/mkiv-px.map - texmf-dist/fonts/map/pdftex/context/mkiv-tx.map - texmf-dist/fonts/map/pdftex/context/original-adobe-euro.map - texmf-dist/fonts/map/pdftex/context/original-ams-base.map - texmf-dist/fonts/map/pdftex/context/original-ams-cmr.map - texmf-dist/fonts/map/pdftex/context/original-ams-euler.map - texmf-dist/fonts/map/pdftex/context/original-base.map - texmf-dist/fonts/map/pdftex/context/original-context-symbol.map - texmf-dist/fonts/map/pdftex/context/original-dummy.map - texmf-dist/fonts/map/pdftex/context/original-empty.map - texmf-dist/fonts/map/pdftex/context/original-micropress-informal.map - texmf-dist/fonts/map/pdftex/context/original-public-csr.map - texmf-dist/fonts/map/pdftex/context/original-public-lm.map - texmf-dist/fonts/map/pdftex/context/original-public-plr.map - texmf-dist/fonts/map/pdftex/context/original-public-vnr.map - texmf-dist/fonts/map/pdftex/context/original-vogel-symbol.map - texmf-dist/fonts/map/pdftex/context/original-wasy.map - texmf-dist/fonts/map/pdftex/context/original-youngryu-px.map - texmf-dist/fonts/map/pdftex/context/original-youngryu-tx.map - texmf-dist/fonts/map/pdftex/context/qx-base.map - texmf-dist/fonts/map/pdftex/context/qx-os-public-lm.map - texmf-dist/fonts/map/pdftex/context/t5-base.map - texmf-dist/fonts/map/pdftex/context/t5-os-public-lm.map - texmf-dist/fonts/map/pdftex/context/texnansi-base.map - texmf-dist/fonts/map/pdftex/context/texnansi-os-public-lm.map - texmf-dist/fonts/misc/xetex/fontmapping/context/tlig.map - texmf-dist/fonts/misc/xetex/fontmapping/context/tlig.tec - texmf-dist/fonts/pfm/hoekwater/context/contnav.pfm - texmf-dist/fonts/tfm/hoekwater/context/contnav.tfm - texmf-dist/fonts/type1/hoekwater/context/contnav.pfb - texmf-dist/metapost/context/base/metafun.mp - texmf-dist/metapost/context/base/metafun.mpii - texmf-dist/metapost/context/base/metafun.mpiv - texmf-dist/metapost/context/base/mp-abck.mpiv - texmf-dist/metapost/context/base/mp-apos.mpiv - texmf-dist/metapost/context/base/mp-asnc.mpiv - texmf-dist/metapost/context/base/mp-back.mp - texmf-dist/metapost/context/base/mp-bare.mpiv - texmf-dist/metapost/context/base/mp-base.mpii - texmf-dist/metapost/context/base/mp-base.mpiv - texmf-dist/metapost/context/base/mp-butt.mpii - texmf-dist/metapost/context/base/mp-butt.mpiv - texmf-dist/metapost/context/base/mp-char.mpii - texmf-dist/metapost/context/base/mp-char.mpiv - texmf-dist/metapost/context/base/mp-chem.mpiv - texmf-dist/metapost/context/base/mp-core.mpii - texmf-dist/metapost/context/base/mp-core.mpiv - texmf-dist/metapost/context/base/mp-crop.mpiv - texmf-dist/metapost/context/base/mp-figs.mpii - texmf-dist/metapost/context/base/mp-figs.mpiv - texmf-dist/metapost/context/base/mp-fobg.mp - texmf-dist/metapost/context/base/mp-form.mpii - texmf-dist/metapost/context/base/mp-form.mpiv - texmf-dist/metapost/context/base/mp-func.mpii - texmf-dist/metapost/context/base/mp-func.mpiv - texmf-dist/metapost/context/base/mp-grap.mpiv - texmf-dist/metapost/context/base/mp-grid.mpii - texmf-dist/metapost/context/base/mp-grid.mpiv - texmf-dist/metapost/context/base/mp-grph.mpii - texmf-dist/metapost/context/base/mp-grph.mpiv - texmf-dist/metapost/context/base/mp-idea.mpiv - texmf-dist/metapost/context/base/mp-luas.mpiv - texmf-dist/metapost/context/base/mp-mlib.mpiv - texmf-dist/metapost/context/base/mp-page.mpii - texmf-dist/metapost/context/base/mp-page.mpiv - texmf-dist/metapost/context/base/mp-shap.mpii - texmf-dist/metapost/context/base/mp-shap.mpiv - texmf-dist/metapost/context/base/mp-spec.mpii - texmf-dist/metapost/context/base/mp-step.mpii - texmf-dist/metapost/context/base/mp-step.mpiv - texmf-dist/metapost/context/base/mp-symb.mp - texmf-dist/metapost/context/base/mp-text.mpii - texmf-dist/metapost/context/base/mp-text.mpiv - texmf-dist/metapost/context/base/mp-tool.mpii - texmf-dist/metapost/context/base/mp-tool.mpiv - texmf-dist/metapost/context/base/mp-txts.mpii - texmf-dist/metapost/context/fonts/bidi-symbols.mp - texmf-dist/metapost/context/fonts/bidi-symbols.tex - texmf-dist/metapost/context/fonts/demo-symbols.mp - texmf-dist/metapost/context/fonts/demo-symbols.tex - texmf-dist/metapost/context/fonts/punkfont-bold.mp - texmf-dist/metapost/context/fonts/punkfont-boldslanted.mp - texmf-dist/metapost/context/fonts/punkfont-characters.mp - texmf-dist/metapost/context/fonts/punkfont-definitions.mp - texmf-dist/metapost/context/fonts/punkfont-slanted.mp - texmf-dist/metapost/context/fonts/punkfont.mp - texmf-dist/scripts/context/lua/mtx-babel.lua - texmf-dist/scripts/context/lua/mtx-base.lua - texmf-dist/scripts/context/lua/mtx-bibtex.lua - texmf-dist/scripts/context/lua/mtx-cache.lua - texmf-dist/scripts/context/lua/mtx-chars.lua - texmf-dist/scripts/context/lua/mtx-check.lua - texmf-dist/scripts/context/lua/mtx-colors.lua - texmf-dist/scripts/context/lua/mtx-context.lua - texmf-dist/scripts/context/lua/mtx-context.xml - texmf-dist/scripts/context/lua/mtx-convert.lua - texmf-dist/scripts/context/lua/mtx-epub.lua - texmf-dist/scripts/context/lua/mtx-fcd.lua - texmf-dist/scripts/context/lua/mtx-flac.lua - texmf-dist/scripts/context/lua/mtx-fonts.lua - texmf-dist/scripts/context/lua/mtx-grep.lua - texmf-dist/scripts/context/lua/mtx-interface.lua - texmf-dist/scripts/context/lua/mtx-metapost.lua - texmf-dist/scripts/context/lua/mtx-metatex.lua - texmf-dist/scripts/context/lua/mtx-mk-help.lua - texmf-dist/scripts/context/lua/mtx-modules.lua - texmf-dist/scripts/context/lua/mtx-mtxworks.lua - texmf-dist/scripts/context/lua/mtx-package.lua - texmf-dist/scripts/context/lua/mtx-patterns.lua - texmf-dist/scripts/context/lua/mtx-pdf.lua - texmf-dist/scripts/context/lua/mtx-plain.lua - texmf-dist/scripts/context/lua/mtx-profile.lua - texmf-dist/scripts/context/lua/mtx-rsync.lua - texmf-dist/scripts/context/lua/mtx-scite.lua - texmf-dist/scripts/context/lua/mtx-server-ctx-fonttest.lua - texmf-dist/scripts/context/lua/mtx-server-ctx-help.lua - texmf-dist/scripts/context/lua/mtx-server-ctx-startup.lua - texmf-dist/scripts/context/lua/mtx-server.lua - texmf-dist/scripts/context/lua/mtx-texworks.lua - texmf-dist/scripts/context/lua/mtx-timing.lua - texmf-dist/scripts/context/lua/mtx-tools.lua - texmf-dist/scripts/context/lua/mtx-unzip.lua - texmf-dist/scripts/context/lua/mtx-update.lua - texmf-dist/scripts/context/lua/mtx-watch.lua - texmf-dist/scripts/context/lua/mtx-youless.lua - texmf-dist/scripts/context/lua/mtxlibs.lua - texmf-dist/scripts/context/lua/mtxrun.lua - texmf-dist/scripts/context/perl/makempy.pl - texmf-dist/scripts/context/perl/path_tre.pm - texmf-dist/scripts/context/perl/pdftrimwhite.pl - texmf-dist/scripts/context/perl/texfind.pl - texmf-dist/scripts/context/perl/texfont.pl - texmf-dist/scripts/context/ruby/base/ctx.rb - texmf-dist/scripts/context/ruby/base/exa.rb - texmf-dist/scripts/context/ruby/base/file.rb - texmf-dist/scripts/context/ruby/base/kpse.rb - texmf-dist/scripts/context/ruby/base/kpse/drb.rb - texmf-dist/scripts/context/ruby/base/kpse/soap.rb - texmf-dist/scripts/context/ruby/base/kpse/trees.rb - texmf-dist/scripts/context/ruby/base/kpsedirect.rb - texmf-dist/scripts/context/ruby/base/kpsefast.rb - texmf-dist/scripts/context/ruby/base/kpseremote.rb - texmf-dist/scripts/context/ruby/base/kpserunner.rb - texmf-dist/scripts/context/ruby/base/logger.rb - texmf-dist/scripts/context/ruby/base/merge.rb - texmf-dist/scripts/context/ruby/base/mp.rb - texmf-dist/scripts/context/ruby/base/pdf.rb - texmf-dist/scripts/context/ruby/base/state.rb - texmf-dist/scripts/context/ruby/base/switch.rb - texmf-dist/scripts/context/ruby/base/system.rb - texmf-dist/scripts/context/ruby/base/tex.rb - texmf-dist/scripts/context/ruby/base/texutil.rb - texmf-dist/scripts/context/ruby/base/tool.rb - texmf-dist/scripts/context/ruby/base/variables.rb - texmf-dist/scripts/context/ruby/concheck.rb - texmf-dist/scripts/context/ruby/ctxtools.rb - texmf-dist/scripts/context/ruby/graphics/gs.rb - texmf-dist/scripts/context/ruby/graphics/inkscape.rb - texmf-dist/scripts/context/ruby/graphics/magick.rb - texmf-dist/scripts/context/ruby/imgtopdf.rb - texmf-dist/scripts/context/ruby/pdftools.rb - texmf-dist/scripts/context/ruby/pstopdf.rb - texmf-dist/scripts/context/ruby/rlxtools.rb - texmf-dist/scripts/context/ruby/rscortool.rb - texmf-dist/scripts/context/ruby/rsfiltool.rb - texmf-dist/scripts/context/ruby/rslibtool.rb - texmf-dist/scripts/context/ruby/runtools.rb - texmf-dist/scripts/context/ruby/texexec.rb - texmf-dist/scripts/context/ruby/texmfstart.rb - texmf-dist/scripts/context/ruby/textools.rb - texmf-dist/scripts/context/ruby/texutil.rb - texmf-dist/scripts/context/ruby/tmftools.rb - texmf-dist/scripts/context/ruby/xmltools.rb - texmf-dist/scripts/context/stubs/install/first-setup.bat - texmf-dist/scripts/context/stubs/install/first-setup.sh - texmf-dist/scripts/context/stubs/mswin/context.exe - texmf-dist/scripts/context/stubs/mswin/ctxtools.exe - texmf-dist/scripts/context/stubs/mswin/luatools.exe - texmf-dist/scripts/context/stubs/mswin/metatex.exe - texmf-dist/scripts/context/stubs/mswin/mtxrun.dll - texmf-dist/scripts/context/stubs/mswin/mtxrun.exe - texmf-dist/scripts/context/stubs/mswin/mtxrun.lua - texmf-dist/scripts/context/stubs/mswin/mtxrunjit.exe - texmf-dist/scripts/context/stubs/mswin/mtxworks.exe - texmf-dist/scripts/context/stubs/mswin/pstopdf.exe - texmf-dist/scripts/context/stubs/mswin/texexec.exe - texmf-dist/scripts/context/stubs/mswin/texmfstart.exe - texmf-dist/scripts/context/stubs/setup/setuptex - texmf-dist/scripts/context/stubs/setup/setuptex.bat - texmf-dist/scripts/context/stubs/setup/setuptex.csh - texmf-dist/scripts/context/stubs/source/mtxrun_dll.c - texmf-dist/scripts/context/stubs/source/mtxrun_exe.c - texmf-dist/scripts/context/stubs/source/readme.txt - texmf-dist/scripts/context/stubs/unix/context - texmf-dist/scripts/context/stubs/unix/contextjit - texmf-dist/scripts/context/stubs/unix/luatools - texmf-dist/scripts/context/stubs/unix/metatex - texmf-dist/scripts/context/stubs/unix/mtxrun - texmf-dist/scripts/context/stubs/unix/mtxrunjit - texmf-dist/scripts/context/stubs/unix/mtxworks - texmf-dist/scripts/context/stubs/unix/texexec - texmf-dist/scripts/context/stubs/unix/texmfstart - texmf-dist/scripts/context/stubs/win64/context.exe - texmf-dist/scripts/context/stubs/win64/contextjit.exe - texmf-dist/scripts/context/stubs/win64/ctxtools.exe - texmf-dist/scripts/context/stubs/win64/luatools.exe - texmf-dist/scripts/context/stubs/win64/metatex.exe - texmf-dist/scripts/context/stubs/win64/mptopdf.exe - texmf-dist/scripts/context/stubs/win64/mtxrun.dll - texmf-dist/scripts/context/stubs/win64/mtxrun.exe - texmf-dist/scripts/context/stubs/win64/mtxrun.lua - texmf-dist/scripts/context/stubs/win64/mtxrunjit.exe - texmf-dist/scripts/context/stubs/win64/mtxworks.exe - texmf-dist/scripts/context/stubs/win64/pstopdf.exe - texmf-dist/scripts/context/stubs/win64/texexec.exe - texmf-dist/scripts/context/stubs/win64/texmfstart.exe - texmf-dist/tex/context/base/anch-bar.mkii - texmf-dist/tex/context/base/anch-bar.mkiv - texmf-dist/tex/context/base/anch-bck.mkvi - texmf-dist/tex/context/base/anch-pgr.lua - texmf-dist/tex/context/base/anch-pgr.mkii - texmf-dist/tex/context/base/anch-pgr.mkiv - texmf-dist/tex/context/base/anch-pos.lua - texmf-dist/tex/context/base/anch-pos.mkii - texmf-dist/tex/context/base/anch-pos.mkiv - texmf-dist/tex/context/base/anch-snc.mkii - texmf-dist/tex/context/base/anch-snc.mkiv - texmf-dist/tex/context/base/anch-tab.mkiv - texmf-dist/tex/context/base/attr-col.lua - texmf-dist/tex/context/base/attr-col.mkiv - texmf-dist/tex/context/base/attr-eff.lua - texmf-dist/tex/context/base/attr-eff.mkiv - texmf-dist/tex/context/base/attr-ini.lua - texmf-dist/tex/context/base/attr-ini.mkiv - texmf-dist/tex/context/base/attr-lay.lua - texmf-dist/tex/context/base/attr-lay.mkiv - texmf-dist/tex/context/base/attr-mkr.lua - texmf-dist/tex/context/base/attr-mkr.mkiv - texmf-dist/tex/context/base/attr-neg.lua - texmf-dist/tex/context/base/attr-neg.mkiv - texmf-dist/tex/context/base/back-exp.lua - texmf-dist/tex/context/base/back-exp.mkiv - texmf-dist/tex/context/base/back-ini.lua - texmf-dist/tex/context/base/back-ini.mkiv - texmf-dist/tex/context/base/back-pdf.lua - texmf-dist/tex/context/base/back-pdf.mkiv - texmf-dist/tex/context/base/back-swf.mkiv - texmf-dist/tex/context/base/back-u3d.mkiv - texmf-dist/tex/context/base/bibl-bib.lua - texmf-dist/tex/context/base/bibl-bib.mkiv - texmf-dist/tex/context/base/bibl-tra.lua - texmf-dist/tex/context/base/bibl-tra.mkii - texmf-dist/tex/context/base/bibl-tra.mkiv - texmf-dist/tex/context/base/bibl-tst.lua - texmf-dist/tex/context/base/blob-ini.lua - texmf-dist/tex/context/base/blob-ini.mkiv - texmf-dist/tex/context/base/buff-imp-default.lua - texmf-dist/tex/context/base/buff-imp-default.mkiv - texmf-dist/tex/context/base/buff-imp-escaped.lua - texmf-dist/tex/context/base/buff-imp-escaped.mkiv - texmf-dist/tex/context/base/buff-imp-lua.lua - texmf-dist/tex/context/base/buff-imp-lua.mkiv - texmf-dist/tex/context/base/buff-imp-mp.lua - texmf-dist/tex/context/base/buff-imp-mp.mkiv - texmf-dist/tex/context/base/buff-imp-nested.lua - texmf-dist/tex/context/base/buff-imp-nested.mkiv - texmf-dist/tex/context/base/buff-imp-parsed-xml.lua - texmf-dist/tex/context/base/buff-imp-parsed-xml.mkiv - texmf-dist/tex/context/base/buff-imp-tex.lua - texmf-dist/tex/context/base/buff-imp-tex.mkiv - texmf-dist/tex/context/base/buff-imp-xml.lua - texmf-dist/tex/context/base/buff-imp-xml.mkiv - texmf-dist/tex/context/base/buff-ini.lua - texmf-dist/tex/context/base/buff-ini.mkii - texmf-dist/tex/context/base/buff-ini.mkiv - texmf-dist/tex/context/base/buff-par.lua - texmf-dist/tex/context/base/buff-par.mkvi - texmf-dist/tex/context/base/buff-ver.lua - texmf-dist/tex/context/base/buff-ver.mkii - texmf-dist/tex/context/base/buff-ver.mkiv - texmf-dist/tex/context/base/bxml-apa.mkiv - texmf-dist/tex/context/base/catc-act.mkii - texmf-dist/tex/context/base/catc-act.mkiv - texmf-dist/tex/context/base/catc-ctx.mkii - texmf-dist/tex/context/base/catc-ctx.mkiv - texmf-dist/tex/context/base/catc-def.mkii - texmf-dist/tex/context/base/catc-def.mkiv - texmf-dist/tex/context/base/catc-ini.lua - texmf-dist/tex/context/base/catc-ini.mkii - texmf-dist/tex/context/base/catc-ini.mkiv - texmf-dist/tex/context/base/catc-sym.mkii - texmf-dist/tex/context/base/catc-sym.mkiv - texmf-dist/tex/context/base/catc-xml.mkii - texmf-dist/tex/context/base/catc-xml.mkiv - texmf-dist/tex/context/base/char-act.mkiv - texmf-dist/tex/context/base/char-cjk.lua - texmf-dist/tex/context/base/char-def.lua - texmf-dist/tex/context/base/char-enc.lua - texmf-dist/tex/context/base/char-enc.mkiv - texmf-dist/tex/context/base/char-ent.lua - texmf-dist/tex/context/base/char-fio.lua - texmf-dist/tex/context/base/char-ini.lua - texmf-dist/tex/context/base/char-ini.mkiv - texmf-dist/tex/context/base/char-map.lua - texmf-dist/tex/context/base/char-tex.lua - texmf-dist/tex/context/base/char-utf.lua - texmf-dist/tex/context/base/char-utf.mkiv - texmf-dist/tex/context/base/chem-ini.lua - texmf-dist/tex/context/base/chem-ini.mkiv - texmf-dist/tex/context/base/chem-str.lua - texmf-dist/tex/context/base/chem-str.mkiv - texmf-dist/tex/context/base/cldf-bas.lua - texmf-dist/tex/context/base/cldf-bas.mkiv - texmf-dist/tex/context/base/cldf-com.lua - texmf-dist/tex/context/base/cldf-com.mkiv - texmf-dist/tex/context/base/cldf-ini.lua - texmf-dist/tex/context/base/cldf-ini.mkiv - texmf-dist/tex/context/base/cldf-int.lua - texmf-dist/tex/context/base/cldf-int.mkiv - texmf-dist/tex/context/base/cldf-prs.lua - texmf-dist/tex/context/base/cldf-scn.lua - texmf-dist/tex/context/base/cldf-ver.lua - texmf-dist/tex/context/base/cldf-ver.mkiv - texmf-dist/tex/context/base/colo-ema.mkii - texmf-dist/tex/context/base/colo-ext.mkii - texmf-dist/tex/context/base/colo-ext.mkiv - texmf-dist/tex/context/base/colo-grp.mkiv - texmf-dist/tex/context/base/colo-hex.mkii - texmf-dist/tex/context/base/colo-icc.lua - texmf-dist/tex/context/base/colo-imp-dem.mkiv - texmf-dist/tex/context/base/colo-imp-ema.mkiv - texmf-dist/tex/context/base/colo-imp-rgb.mkiv - texmf-dist/tex/context/base/colo-imp-x11.mkiv - texmf-dist/tex/context/base/colo-imp-xwi.mkiv - texmf-dist/tex/context/base/colo-ini.lua - texmf-dist/tex/context/base/colo-ini.mkii - texmf-dist/tex/context/base/colo-ini.mkiv - texmf-dist/tex/context/base/colo-rgb.mkii - texmf-dist/tex/context/base/colo-run.lua - texmf-dist/tex/context/base/colo-run.mkii - texmf-dist/tex/context/base/colo-run.mkiv - texmf-dist/tex/context/base/colo-x11.mkii - texmf-dist/tex/context/base/colo-xwi.mkii - texmf-dist/tex/context/base/cont-cs.mkii - texmf-dist/tex/context/base/cont-cs.mkiv - texmf-dist/tex/context/base/cont-de.mkii - texmf-dist/tex/context/base/cont-de.mkiv - texmf-dist/tex/context/base/cont-en.mkii - texmf-dist/tex/context/base/cont-en.mkiv - texmf-dist/tex/context/base/cont-err.mkii - texmf-dist/tex/context/base/cont-fil.mkii - texmf-dist/tex/context/base/cont-fil.mkiv - texmf-dist/tex/context/base/cont-fr.mkii - texmf-dist/tex/context/base/cont-fr.mkiv - texmf-dist/tex/context/base/cont-gb.mkii - texmf-dist/tex/context/base/cont-gb.mkiv - texmf-dist/tex/context/base/cont-it.mkii - texmf-dist/tex/context/base/cont-it.mkiv - texmf-dist/tex/context/base/cont-log.mkii - texmf-dist/tex/context/base/cont-log.mkiv - texmf-dist/tex/context/base/cont-new.mkii - texmf-dist/tex/context/base/cont-new.mkiv - texmf-dist/tex/context/base/cont-nl.mkii - texmf-dist/tex/context/base/cont-nl.mkiv - texmf-dist/tex/context/base/cont-nop.mkiv - texmf-dist/tex/context/base/cont-pe.mkiv - texmf-dist/tex/context/base/cont-ro.mkii - texmf-dist/tex/context/base/cont-ro.mkiv - texmf-dist/tex/context/base/cont-run.lua - texmf-dist/tex/context/base/cont-run.mkiv - texmf-dist/tex/context/base/cont-sys.ori - texmf-dist/tex/context/base/cont-yes.mkiv - texmf-dist/tex/context/base/context-base.lmx - texmf-dist/tex/context/base/context-characters.lmx - texmf-dist/tex/context/base/context-debug.lmx - texmf-dist/tex/context/base/context-error.lmx - texmf-dist/tex/context/base/context-fonttest.lmx - texmf-dist/tex/context/base/context-help.lmx - texmf-dist/tex/context/base/context-timing.lmx - texmf-dist/tex/context/base/context-version.pdf - texmf-dist/tex/context/base/context-version.png - texmf-dist/tex/context/base/context.css - texmf-dist/tex/context/base/context.lus - texmf-dist/tex/context/base/context.mkii - texmf-dist/tex/context/base/context.mkiv - texmf-dist/tex/context/base/context.rme - texmf-dist/tex/context/base/core-con.lua - texmf-dist/tex/context/base/core-con.mkii - texmf-dist/tex/context/base/core-con.mkiv - texmf-dist/tex/context/base/core-ctx.ctx - texmf-dist/tex/context/base/core-ctx.lua - texmf-dist/tex/context/base/core-ctx.mkii - texmf-dist/tex/context/base/core-ctx.mkiv - texmf-dist/tex/context/base/core-dat.lua - texmf-dist/tex/context/base/core-dat.mkiv - texmf-dist/tex/context/base/core-def.mkii - texmf-dist/tex/context/base/core-def.mkiv - texmf-dist/tex/context/base/core-env.lua - texmf-dist/tex/context/base/core-env.mkii - texmf-dist/tex/context/base/core-env.mkiv - texmf-dist/tex/context/base/core-fil.mkii - texmf-dist/tex/context/base/core-fnt.mkii - texmf-dist/tex/context/base/core-gen.mkii - texmf-dist/tex/context/base/core-ini.mkii - texmf-dist/tex/context/base/core-ini.mkiv - texmf-dist/tex/context/base/core-job.mkii - texmf-dist/tex/context/base/core-mis.mkii - texmf-dist/tex/context/base/core-par.mkii - texmf-dist/tex/context/base/core-stg.mkii - texmf-dist/tex/context/base/core-sys.lua - texmf-dist/tex/context/base/core-sys.mkii - texmf-dist/tex/context/base/core-sys.mkiv - texmf-dist/tex/context/base/core-two.lua - texmf-dist/tex/context/base/core-two.mkii - texmf-dist/tex/context/base/core-two.mkiv - texmf-dist/tex/context/base/core-uti.lua - texmf-dist/tex/context/base/core-uti.mkii - texmf-dist/tex/context/base/core-uti.mkiv - texmf-dist/tex/context/base/core-var.mkii - texmf-dist/tex/context/base/data-aux.lua - texmf-dist/tex/context/base/data-bin.lua - texmf-dist/tex/context/base/data-con.lua - texmf-dist/tex/context/base/data-crl.lua - texmf-dist/tex/context/base/data-ctx.lua - texmf-dist/tex/context/base/data-env.lua - texmf-dist/tex/context/base/data-exp.lua - texmf-dist/tex/context/base/data-fil.lua - texmf-dist/tex/context/base/data-gen.lua - texmf-dist/tex/context/base/data-ini.lua - texmf-dist/tex/context/base/data-inp.lua - texmf-dist/tex/context/base/data-lst.lua - texmf-dist/tex/context/base/data-lua.lua - texmf-dist/tex/context/base/data-met.lua - texmf-dist/tex/context/base/data-out.lua - texmf-dist/tex/context/base/data-pre.lua - texmf-dist/tex/context/base/data-res.lua - texmf-dist/tex/context/base/data-sch.lua - texmf-dist/tex/context/base/data-tex.lua - texmf-dist/tex/context/base/data-tmf.lua - texmf-dist/tex/context/base/data-tmp.lua - texmf-dist/tex/context/base/data-tre.lua - texmf-dist/tex/context/base/data-use.lua - texmf-dist/tex/context/base/data-vir.lua - texmf-dist/tex/context/base/data-zip.lua - texmf-dist/tex/context/base/enco-032.mkii - texmf-dist/tex/context/base/enco-037.mkii - texmf-dist/tex/context/base/enco-acc.mkii - texmf-dist/tex/context/base/enco-agr.mkii - texmf-dist/tex/context/base/enco-ans.mkii - texmf-dist/tex/context/base/enco-cas.mkii - texmf-dist/tex/context/base/enco-chi.mkii - texmf-dist/tex/context/base/enco-com.mkii - texmf-dist/tex/context/base/enco-cyr.mkii - texmf-dist/tex/context/base/enco-def.mkii - texmf-dist/tex/context/base/enco-ec.mkii - texmf-dist/tex/context/base/enco-ecm.mkii - texmf-dist/tex/context/base/enco-el.mkii - texmf-dist/tex/context/base/enco-fde.mkii - texmf-dist/tex/context/base/enco-ffr.mkii - texmf-dist/tex/context/base/enco-fpl.mkii - texmf-dist/tex/context/base/enco-fro.mkii - texmf-dist/tex/context/base/enco-fsl.mkii - texmf-dist/tex/context/base/enco-grk.mkii - texmf-dist/tex/context/base/enco-heb.mkii - texmf-dist/tex/context/base/enco-ibm.mkii - texmf-dist/tex/context/base/enco-il2.mkii - texmf-dist/tex/context/base/enco-ini.mkii - texmf-dist/tex/context/base/enco-ini.mkiv - texmf-dist/tex/context/base/enco-l7x.mkii - texmf-dist/tex/context/base/enco-lat.mkii - texmf-dist/tex/context/base/enco-mis.mkii - texmf-dist/tex/context/base/enco-pdf.mkii - texmf-dist/tex/context/base/enco-pfr.mkii - texmf-dist/tex/context/base/enco-pol.mkii - texmf-dist/tex/context/base/enco-qx.mkii - texmf-dist/tex/context/base/enco-raw.mkii - texmf-dist/tex/context/base/enco-run.mkii - texmf-dist/tex/context/base/enco-t5.mkii - texmf-dist/tex/context/base/enco-tbo.mkii - texmf-dist/tex/context/base/enco-uc.mkii - texmf-dist/tex/context/base/enco-vis.mkii - texmf-dist/tex/context/base/enco-vna.mkii - texmf-dist/tex/context/base/enco-win.mkii - texmf-dist/tex/context/base/enco-x5.mkii - texmf-dist/tex/context/base/export-example.css - texmf-dist/tex/context/base/export-example.rng - texmf-dist/tex/context/base/export-example.tex - texmf-dist/tex/context/base/file-ini.lua - texmf-dist/tex/context/base/file-ini.mkvi - texmf-dist/tex/context/base/file-job.lua - texmf-dist/tex/context/base/file-job.mkvi - texmf-dist/tex/context/base/file-lib.lua - texmf-dist/tex/context/base/file-lib.mkvi - texmf-dist/tex/context/base/file-mod.lua - texmf-dist/tex/context/base/file-mod.mkvi - texmf-dist/tex/context/base/file-res.lua - texmf-dist/tex/context/base/file-res.mkvi - texmf-dist/tex/context/base/file-syn.lua - texmf-dist/tex/context/base/file-syn.mkvi - texmf-dist/tex/context/base/filt-bas.mkii - texmf-dist/tex/context/base/filt-ini.mkii - texmf-dist/tex/context/base/font-afk.lua - texmf-dist/tex/context/base/font-afm.lua - texmf-dist/tex/context/base/font-age.lua - texmf-dist/tex/context/base/font-agl.lua - texmf-dist/tex/context/base/font-arb.mkii - texmf-dist/tex/context/base/font-aux.lua - texmf-dist/tex/context/base/font-aux.mkvi - texmf-dist/tex/context/base/font-bfm.mkii - texmf-dist/tex/context/base/font-chi.mkii - texmf-dist/tex/context/base/font-chk.lua - texmf-dist/tex/context/base/font-chk.mkiv - texmf-dist/tex/context/base/font-cid.lua - texmf-dist/tex/context/base/font-col.lua - texmf-dist/tex/context/base/font-col.mkvi - texmf-dist/tex/context/base/font-con.lua - texmf-dist/tex/context/base/font-ctx.lua - texmf-dist/tex/context/base/font-def.lua - texmf-dist/tex/context/base/font-emp.mkvi - texmf-dist/tex/context/base/font-enc.lua - texmf-dist/tex/context/base/font-enh.lua - texmf-dist/tex/context/base/font-ext.lua - texmf-dist/tex/context/base/font-fbk.lua - texmf-dist/tex/context/base/font-fea.mkvi - texmf-dist/tex/context/base/font-fil.mkvi - texmf-dist/tex/context/base/font-gds.lua - texmf-dist/tex/context/base/font-gds.mkvi - texmf-dist/tex/context/base/font-heb.mkii - texmf-dist/tex/context/base/font-hsh.lua - texmf-dist/tex/context/base/font-ini.lua - texmf-dist/tex/context/base/font-ini.mkii - texmf-dist/tex/context/base/font-ini.mkvi - texmf-dist/tex/context/base/font-inj.lua - texmf-dist/tex/context/base/font-jap.mkii - texmf-dist/tex/context/base/font-ldr.lua - texmf-dist/tex/context/base/font-lib.mkvi - texmf-dist/tex/context/base/font-log.lua - texmf-dist/tex/context/base/font-lua.lua - texmf-dist/tex/context/base/font-map.lua - texmf-dist/tex/context/base/font-mat.mkvi - texmf-dist/tex/context/base/font-mis.lua - texmf-dist/tex/context/base/font-nod.lua - texmf-dist/tex/context/base/font-odk.lua - texmf-dist/tex/context/base/font-odv.lua - texmf-dist/tex/context/base/font-ota.lua - texmf-dist/tex/context/base/font-otb.lua - texmf-dist/tex/context/base/font-otc.lua - texmf-dist/tex/context/base/font-otd.lua - texmf-dist/tex/context/base/font-otf.lua - texmf-dist/tex/context/base/font-oth.lua - texmf-dist/tex/context/base/font-oti.lua - texmf-dist/tex/context/base/font-otn.lua - texmf-dist/tex/context/base/font-otp.lua - texmf-dist/tex/context/base/font-ott.lua - texmf-dist/tex/context/base/font-pat.lua - texmf-dist/tex/context/base/font-pre.mkiv - texmf-dist/tex/context/base/font-run.mkii - texmf-dist/tex/context/base/font-run.mkiv - texmf-dist/tex/context/base/font-sel.lua - texmf-dist/tex/context/base/font-sel.mkvi - texmf-dist/tex/context/base/font-set.mkvi - texmf-dist/tex/context/base/font-sol.lua - texmf-dist/tex/context/base/font-sol.mkvi - texmf-dist/tex/context/base/font-sty.mkvi - texmf-dist/tex/context/base/font-sym.mkvi - texmf-dist/tex/context/base/font-syn.lua - texmf-dist/tex/context/base/font-tfm.lua - texmf-dist/tex/context/base/font-tra.mkiv - texmf-dist/tex/context/base/font-trt.lua - texmf-dist/tex/context/base/font-uni.mkii - texmf-dist/tex/context/base/font-uni.mkiv - texmf-dist/tex/context/base/font-unk.mkii - texmf-dist/tex/context/base/font-unk.mkiv - texmf-dist/tex/context/base/font-var.mkvi - texmf-dist/tex/context/base/font-vf.lua - texmf-dist/tex/context/base/font-xtx.mkii - texmf-dist/tex/context/base/grph-epd.lua - texmf-dist/tex/context/base/grph-epd.mkiv - texmf-dist/tex/context/base/grph-fig.mkii - texmf-dist/tex/context/base/grph-fig.mkiv - texmf-dist/tex/context/base/grph-fil.lua - texmf-dist/tex/context/base/grph-inc.lua - texmf-dist/tex/context/base/grph-inc.mkii - texmf-dist/tex/context/base/grph-inc.mkiv - texmf-dist/tex/context/base/grph-raw.lua - texmf-dist/tex/context/base/grph-raw.mkiv - texmf-dist/tex/context/base/grph-swf.lua - texmf-dist/tex/context/base/grph-trf.mkii - texmf-dist/tex/context/base/grph-trf.mkiv - texmf-dist/tex/context/base/grph-u3d.lua - texmf-dist/tex/context/base/grph-wnd.lua - texmf-dist/tex/context/base/hand-def.mkii - texmf-dist/tex/context/base/hand-ini.mkii - texmf-dist/tex/context/base/hand-ini.mkiv - texmf-dist/tex/context/base/java-ans.mkii - texmf-dist/tex/context/base/java-exa.mkii - texmf-dist/tex/context/base/java-fil.mkii - texmf-dist/tex/context/base/java-fld.mkii - texmf-dist/tex/context/base/java-imp-exa.mkiv - texmf-dist/tex/context/base/java-imp-fil.mkiv - texmf-dist/tex/context/base/java-imp-fld.mkiv - texmf-dist/tex/context/base/java-imp-rhh.mkiv - texmf-dist/tex/context/base/java-imp-stp.mkiv - texmf-dist/tex/context/base/java-ini.lua - texmf-dist/tex/context/base/java-ini.mkii - texmf-dist/tex/context/base/java-ini.mkiv - texmf-dist/tex/context/base/java-stp.mkii - texmf-dist/tex/context/base/l-boolean.lua - texmf-dist/tex/context/base/l-dir.lua - texmf-dist/tex/context/base/l-file.lua - texmf-dist/tex/context/base/l-function.lua - texmf-dist/tex/context/base/l-gzip.lua - texmf-dist/tex/context/base/l-io.lua - texmf-dist/tex/context/base/l-lpeg.lua - texmf-dist/tex/context/base/l-lua.lua - texmf-dist/tex/context/base/l-math.lua - texmf-dist/tex/context/base/l-md5.lua - texmf-dist/tex/context/base/l-number.lua - texmf-dist/tex/context/base/l-os.lua - texmf-dist/tex/context/base/l-package.lua - texmf-dist/tex/context/base/l-pdfview.lua - texmf-dist/tex/context/base/l-sandbox.lua - texmf-dist/tex/context/base/l-set.lua - texmf-dist/tex/context/base/l-string.lua - texmf-dist/tex/context/base/l-table.lua - texmf-dist/tex/context/base/l-unicode.lua - texmf-dist/tex/context/base/l-url.lua - texmf-dist/tex/context/base/l-xml.lua - texmf-dist/tex/context/base/lang-all.xml - texmf-dist/tex/context/base/lang-alt.mkii - texmf-dist/tex/context/base/lang-ana.mkii - texmf-dist/tex/context/base/lang-art.mkii - texmf-dist/tex/context/base/lang-bal.mkii - texmf-dist/tex/context/base/lang-cel.mkii - texmf-dist/tex/context/base/lang-chi.mkii - texmf-dist/tex/context/base/lang-ctx.mkii - texmf-dist/tex/context/base/lang-cyr.mkii - texmf-dist/tex/context/base/lang-def.lua - texmf-dist/tex/context/base/lang-def.mkiv - texmf-dist/tex/context/base/lang-dis.lua - texmf-dist/tex/context/base/lang-dis.mkii - texmf-dist/tex/context/base/lang-frd.mkii - texmf-dist/tex/context/base/lang-frd.mkiv - texmf-dist/tex/context/base/lang-frq-de.lua - texmf-dist/tex/context/base/lang-frq-en.lua - texmf-dist/tex/context/base/lang-frq-nl.lua - texmf-dist/tex/context/base/lang-frq.mkii - texmf-dist/tex/context/base/lang-frq.mkiv - texmf-dist/tex/context/base/lang-ger.mkii - texmf-dist/tex/context/base/lang-grk.mkii - texmf-dist/tex/context/base/lang-hyp.lua - texmf-dist/tex/context/base/lang-hyp.mkiv - texmf-dist/tex/context/base/lang-ind.mkii - texmf-dist/tex/context/base/lang-ini.lua - texmf-dist/tex/context/base/lang-ini.mkii - texmf-dist/tex/context/base/lang-ini.mkiv - texmf-dist/tex/context/base/lang-ita.mkii - texmf-dist/tex/context/base/lang-jap.mkii - texmf-dist/tex/context/base/lang-lab.lua - texmf-dist/tex/context/base/lang-lab.mkii - texmf-dist/tex/context/base/lang-lab.mkiv - texmf-dist/tex/context/base/lang-mis.mkii - texmf-dist/tex/context/base/lang-mis.mkiv - texmf-dist/tex/context/base/lang-rep.lua - texmf-dist/tex/context/base/lang-rep.mkiv - texmf-dist/tex/context/base/lang-run.mkii - texmf-dist/tex/context/base/lang-sla.mkii - texmf-dist/tex/context/base/lang-spa.mkii - texmf-dist/tex/context/base/lang-spa.mkiv - texmf-dist/tex/context/base/lang-spe.mkii - texmf-dist/tex/context/base/lang-txt.lua - texmf-dist/tex/context/base/lang-ura.mkii - texmf-dist/tex/context/base/lang-url.lua - texmf-dist/tex/context/base/lang-url.mkii - texmf-dist/tex/context/base/lang-url.mkiv - texmf-dist/tex/context/base/lang-vn.mkii - texmf-dist/tex/context/base/lang-wrd.lua - texmf-dist/tex/context/base/lang-wrd.mkiv - texmf-dist/tex/context/base/layo-ini.lua - texmf-dist/tex/context/base/layo-ini.mkiv - texmf-dist/tex/context/base/lpdf-ano.lua - texmf-dist/tex/context/base/lpdf-col.lua - texmf-dist/tex/context/base/lpdf-enc.lua - texmf-dist/tex/context/base/lpdf-epa.lua - texmf-dist/tex/context/base/lpdf-epd.lua - texmf-dist/tex/context/base/lpdf-fld.lua - texmf-dist/tex/context/base/lpdf-fmt.lua - texmf-dist/tex/context/base/lpdf-grp.lua - texmf-dist/tex/context/base/lpdf-ini.lua - texmf-dist/tex/context/base/lpdf-mis.lua - texmf-dist/tex/context/base/lpdf-mov.lua - texmf-dist/tex/context/base/lpdf-nod.lua - texmf-dist/tex/context/base/lpdf-pda.xml - texmf-dist/tex/context/base/lpdf-pdx.xml - texmf-dist/tex/context/base/lpdf-ren.lua - texmf-dist/tex/context/base/lpdf-swf.lua - texmf-dist/tex/context/base/lpdf-tag.lua - texmf-dist/tex/context/base/lpdf-u3d.lua - texmf-dist/tex/context/base/lpdf-wid.lua - texmf-dist/tex/context/base/lpdf-xmp.lua - texmf-dist/tex/context/base/luat-bas.mkiv - texmf-dist/tex/context/base/luat-bwc.lua - texmf-dist/tex/context/base/luat-cbk.lua - texmf-dist/tex/context/base/luat-cnf.lua - texmf-dist/tex/context/base/luat-cod.lua - texmf-dist/tex/context/base/luat-cod.mkiv - texmf-dist/tex/context/base/luat-env.lua - texmf-dist/tex/context/base/luat-exe.lua - texmf-dist/tex/context/base/luat-fio.lua - texmf-dist/tex/context/base/luat-fmt.lua - texmf-dist/tex/context/base/luat-ini.lua - texmf-dist/tex/context/base/luat-ini.mkiv - texmf-dist/tex/context/base/luat-iop.lua - texmf-dist/tex/context/base/luat-lib.mkiv - texmf-dist/tex/context/base/luat-lua.lua - texmf-dist/tex/context/base/luat-mac.lua - texmf-dist/tex/context/base/luat-run.lua - texmf-dist/tex/context/base/luat-soc.lua - texmf-dist/tex/context/base/luat-sta.lua - texmf-dist/tex/context/base/luat-sto.lua - texmf-dist/tex/context/base/luat-usr.lua - texmf-dist/tex/context/base/luat-usr.mkiv - texmf-dist/tex/context/base/lxml-aux.lua - texmf-dist/tex/context/base/lxml-css.lua - texmf-dist/tex/context/base/lxml-css.mkiv - texmf-dist/tex/context/base/lxml-ctx.lua - texmf-dist/tex/context/base/lxml-ctx.mkiv - texmf-dist/tex/context/base/lxml-dir.lua - texmf-dist/tex/context/base/lxml-ent.lua - texmf-dist/tex/context/base/lxml-inf.lua - texmf-dist/tex/context/base/lxml-ini.lua - texmf-dist/tex/context/base/lxml-ini.mkiv - texmf-dist/tex/context/base/lxml-lpt.lua - texmf-dist/tex/context/base/lxml-mis.lua - texmf-dist/tex/context/base/lxml-sor.lua - texmf-dist/tex/context/base/lxml-sor.mkiv - texmf-dist/tex/context/base/lxml-tab.lua - texmf-dist/tex/context/base/lxml-tex.lua - texmf-dist/tex/context/base/lxml-xml.lua - texmf-dist/tex/context/base/m-arabtex.mkii - texmf-dist/tex/context/base/m-barcodes.mkiv - texmf-dist/tex/context/base/m-chart.lua - texmf-dist/tex/context/base/m-chart.mkii - texmf-dist/tex/context/base/m-chart.mkvi - texmf-dist/tex/context/base/m-chemic.mkii - texmf-dist/tex/context/base/m-chemic.mkiv - texmf-dist/tex/context/base/m-cweb.tex - texmf-dist/tex/context/base/m-database.lua - texmf-dist/tex/context/base/m-database.mkii - texmf-dist/tex/context/base/m-database.mkiv - texmf-dist/tex/context/base/m-datastrc.tex - texmf-dist/tex/context/base/m-directives.mkiv - texmf-dist/tex/context/base/m-dratex.mkii - texmf-dist/tex/context/base/m-edtsnc.mkii - texmf-dist/tex/context/base/m-educat.tex - texmf-dist/tex/context/base/m-fields.mkiv - texmf-dist/tex/context/base/m-format.tex - texmf-dist/tex/context/base/m-graph.mkii - texmf-dist/tex/context/base/m-graph.mkiv - texmf-dist/tex/context/base/m-hemistich.mkiv - texmf-dist/tex/context/base/m-ipsum.mkiv - texmf-dist/tex/context/base/m-json.mkiv - texmf-dist/tex/context/base/m-layout.tex - texmf-dist/tex/context/base/m-level.mkii - texmf-dist/tex/context/base/m-logcategories.mkiv - texmf-dist/tex/context/base/m-markdown.lua - texmf-dist/tex/context/base/m-markdown.mkiv - texmf-dist/tex/context/base/m-mathcrap.mkiv - texmf-dist/tex/context/base/m-matrix.mkiv - texmf-dist/tex/context/base/m-mkii.mkiv - texmf-dist/tex/context/base/m-mkivhacks.mkiv - texmf-dist/tex/context/base/m-narrowtt.tex - texmf-dist/tex/context/base/m-newmat.tex - texmf-dist/tex/context/base/m-nodechart.lua - texmf-dist/tex/context/base/m-nodechart.mkvi - texmf-dist/tex/context/base/m-ntb-to-xtb.mkiv - texmf-dist/tex/context/base/m-obsolete.mkii - texmf-dist/tex/context/base/m-obsolete.mkiv - texmf-dist/tex/context/base/m-oldbibtex.mkiv - texmf-dist/tex/context/base/m-oldfun.mkiv - texmf-dist/tex/context/base/m-oldnum.mkiv - texmf-dist/tex/context/base/m-pdfsnc.mkii - texmf-dist/tex/context/base/m-pictex.tex - texmf-dist/tex/context/base/m-pipemode.mkiv - texmf-dist/tex/context/base/m-pstricks.lua - texmf-dist/tex/context/base/m-pstricks.mkii - texmf-dist/tex/context/base/m-pstricks.mkiv - texmf-dist/tex/context/base/m-punk.mkiv - texmf-dist/tex/context/base/m-r.mkii - texmf-dist/tex/context/base/m-scite.mkiv - texmf-dist/tex/context/base/m-spreadsheet.lua - texmf-dist/tex/context/base/m-spreadsheet.mkiv - texmf-dist/tex/context/base/m-sql.mkiv - texmf-dist/tex/context/base/m-steps.lua - texmf-dist/tex/context/base/m-steps.mkii - texmf-dist/tex/context/base/m-steps.mkvi - texmf-dist/tex/context/base/m-streams.tex - texmf-dist/tex/context/base/m-subsub.tex - texmf-dist/tex/context/base/m-tex4ht.mkii - texmf-dist/tex/context/base/m-timing.mkiv - texmf-dist/tex/context/base/m-trackers.mkiv - texmf-dist/tex/context/base/m-translate.mkiv - texmf-dist/tex/context/base/m-units.mkii - texmf-dist/tex/context/base/m-units.mkiv - texmf-dist/tex/context/base/m-visual.mkii - texmf-dist/tex/context/base/m-visual.mkiv - texmf-dist/tex/context/base/m-zint.mkiv - texmf-dist/tex/context/base/math-acc.mkvi - texmf-dist/tex/context/base/math-act.lua - texmf-dist/tex/context/base/math-ali.mkiv - texmf-dist/tex/context/base/math-ams.mkii - texmf-dist/tex/context/base/math-arr.mkii - texmf-dist/tex/context/base/math-arr.mkiv - texmf-dist/tex/context/base/math-cow.mkii - texmf-dist/tex/context/base/math-def.mkiv - texmf-dist/tex/context/base/math-del.mkiv - texmf-dist/tex/context/base/math-dim.lua - texmf-dist/tex/context/base/math-dir.lua - texmf-dist/tex/context/base/math-dis.mkiv - texmf-dist/tex/context/base/math-eul.mkii - texmf-dist/tex/context/base/math-ext.lua - texmf-dist/tex/context/base/math-fbk.lua - texmf-dist/tex/context/base/math-fen.mkiv - texmf-dist/tex/context/base/math-for.mkiv - texmf-dist/tex/context/base/math-fou.mkii - texmf-dist/tex/context/base/math-frc.lua - texmf-dist/tex/context/base/math-frc.mkii - texmf-dist/tex/context/base/math-frc.mkiv - texmf-dist/tex/context/base/math-ini.lua - texmf-dist/tex/context/base/math-ini.mkii - texmf-dist/tex/context/base/math-ini.mkiv - texmf-dist/tex/context/base/math-inl.mkiv - texmf-dist/tex/context/base/math-int.mkiv - texmf-dist/tex/context/base/math-lbr.mkii - texmf-dist/tex/context/base/math-map.lua - texmf-dist/tex/context/base/math-mis.mkiv - texmf-dist/tex/context/base/math-noa.lua - texmf-dist/tex/context/base/math-pln.mkii - texmf-dist/tex/context/base/math-pln.mkiv - texmf-dist/tex/context/base/math-rad.mkvi - texmf-dist/tex/context/base/math-ren.lua - texmf-dist/tex/context/base/math-run.mkii - texmf-dist/tex/context/base/math-scr.mkiv - texmf-dist/tex/context/base/math-stc.mkvi - texmf-dist/tex/context/base/math-tag.lua - texmf-dist/tex/context/base/math-tex.mkii - texmf-dist/tex/context/base/math-tim.mkii - texmf-dist/tex/context/base/math-ttv.lua - texmf-dist/tex/context/base/math-uni.mkii - texmf-dist/tex/context/base/math-vfu.lua - texmf-dist/tex/context/base/meta-clp.mkii - texmf-dist/tex/context/base/meta-dum.mkii - texmf-dist/tex/context/base/meta-fig.mkii - texmf-dist/tex/context/base/meta-fig.mkiv - texmf-dist/tex/context/base/meta-fnt.lua - texmf-dist/tex/context/base/meta-fnt.mkiv - texmf-dist/tex/context/base/meta-fun.lua - texmf-dist/tex/context/base/meta-fun.mkiv - texmf-dist/tex/context/base/meta-grd.mkiv - texmf-dist/tex/context/base/meta-imp-clp.mkiv - texmf-dist/tex/context/base/meta-imp-dum.mkiv - texmf-dist/tex/context/base/meta-imp-fen.mkiv - texmf-dist/tex/context/base/meta-imp-mis.mkiv - texmf-dist/tex/context/base/meta-imp-nav.mkiv - texmf-dist/tex/context/base/meta-imp-pre.mkiv - texmf-dist/tex/context/base/meta-imp-tab.mkiv - texmf-dist/tex/context/base/meta-imp-txt.mkiv - texmf-dist/tex/context/base/meta-ini.lua - texmf-dist/tex/context/base/meta-ini.mkii - texmf-dist/tex/context/base/meta-ini.mkiv - texmf-dist/tex/context/base/meta-mis.mkii - texmf-dist/tex/context/base/meta-nav.mkii - texmf-dist/tex/context/base/meta-pag.mkii - texmf-dist/tex/context/base/meta-pag.mkiv - texmf-dist/tex/context/base/meta-pdf.lua - texmf-dist/tex/context/base/meta-pdf.mkii - texmf-dist/tex/context/base/meta-pdf.mkiv - texmf-dist/tex/context/base/meta-pdh.lua - texmf-dist/tex/context/base/meta-pdh.mkiv - texmf-dist/tex/context/base/meta-pre.mkii - texmf-dist/tex/context/base/meta-tex.lua - texmf-dist/tex/context/base/meta-tex.mkii - texmf-dist/tex/context/base/meta-tex.mkiv - texmf-dist/tex/context/base/meta-txt.mkii - texmf-dist/tex/context/base/meta-xml.mkii - texmf-dist/tex/context/base/meta-xml.mkiv - texmf-dist/tex/context/base/metatex.lus - texmf-dist/tex/context/base/metatex.tex - texmf-dist/tex/context/base/mlib-ctx.lua - texmf-dist/tex/context/base/mlib-ctx.mkiv - texmf-dist/tex/context/base/mlib-int.lua - texmf-dist/tex/context/base/mlib-lua.lua - texmf-dist/tex/context/base/mlib-pdf.lua - texmf-dist/tex/context/base/mlib-pdf.mkiv - texmf-dist/tex/context/base/mlib-pps.lua - texmf-dist/tex/context/base/mlib-pps.mkiv - texmf-dist/tex/context/base/mlib-run.lua - texmf-dist/tex/context/base/mtx-context-arrange.tex - texmf-dist/tex/context/base/mtx-context-combine.tex - texmf-dist/tex/context/base/mtx-context-common.tex - texmf-dist/tex/context/base/mtx-context-copy.tex - texmf-dist/tex/context/base/mtx-context-ideas.tex - texmf-dist/tex/context/base/mtx-context-listing.tex - texmf-dist/tex/context/base/mtx-context-markdown.tex - texmf-dist/tex/context/base/mtx-context-precache.tex - texmf-dist/tex/context/base/mtx-context-select.tex - texmf-dist/tex/context/base/mtx-context-sql.tex - texmf-dist/tex/context/base/mtx-context-timing.tex - texmf-dist/tex/context/base/mtx-context-xml.tex - texmf-dist/tex/context/base/mult-aux.lua - texmf-dist/tex/context/base/mult-aux.mkii - texmf-dist/tex/context/base/mult-aux.mkiv - texmf-dist/tex/context/base/mult-chk.lua - texmf-dist/tex/context/base/mult-chk.mkii - texmf-dist/tex/context/base/mult-chk.mkiv - texmf-dist/tex/context/base/mult-com.mkii - texmf-dist/tex/context/base/mult-con.mkii - texmf-dist/tex/context/base/mult-de.mkii - texmf-dist/tex/context/base/mult-def.lua - texmf-dist/tex/context/base/mult-def.mkii - texmf-dist/tex/context/base/mult-def.mkiv - texmf-dist/tex/context/base/mult-dim.mkvi - texmf-dist/tex/context/base/mult-en.mkii - texmf-dist/tex/context/base/mult-fr.mkii - texmf-dist/tex/context/base/mult-fst.mkii - texmf-dist/tex/context/base/mult-fun.lua - texmf-dist/tex/context/base/mult-ini.lua - texmf-dist/tex/context/base/mult-ini.mkii - texmf-dist/tex/context/base/mult-ini.mkiv - texmf-dist/tex/context/base/mult-it.mkii - texmf-dist/tex/context/base/mult-low.lua - texmf-dist/tex/context/base/mult-mcs.mkii - texmf-dist/tex/context/base/mult-mde.mkii - texmf-dist/tex/context/base/mult-men.mkii - texmf-dist/tex/context/base/mult-mes.lua - texmf-dist/tex/context/base/mult-mfr.mkii - texmf-dist/tex/context/base/mult-mit.mkii - texmf-dist/tex/context/base/mult-mnl.mkii - texmf-dist/tex/context/base/mult-mno.mkii - texmf-dist/tex/context/base/mult-mpe.mkii - texmf-dist/tex/context/base/mult-mps.lua - texmf-dist/tex/context/base/mult-mro.mkii - texmf-dist/tex/context/base/mult-nl.mkii - texmf-dist/tex/context/base/mult-pe.mkii - texmf-dist/tex/context/base/mult-prm.lua - texmf-dist/tex/context/base/mult-prm.mkiv - texmf-dist/tex/context/base/mult-ro.mkii - texmf-dist/tex/context/base/mult-sys.mkii - texmf-dist/tex/context/base/mult-sys.mkiv - texmf-dist/tex/context/base/node-acc.lua - texmf-dist/tex/context/base/node-aux.lua - texmf-dist/tex/context/base/node-bck.lua - texmf-dist/tex/context/base/node-bck.mkiv - texmf-dist/tex/context/base/node-dir.lua - texmf-dist/tex/context/base/node-ext.lua - texmf-dist/tex/context/base/node-fin.lua - texmf-dist/tex/context/base/node-fin.mkiv - texmf-dist/tex/context/base/node-fnt.lua - texmf-dist/tex/context/base/node-ini.lua - texmf-dist/tex/context/base/node-ini.mkiv - texmf-dist/tex/context/base/node-inj.lua - texmf-dist/tex/context/base/node-ltp.lua - texmf-dist/tex/context/base/node-met.lua - texmf-dist/tex/context/base/node-mig.lua - texmf-dist/tex/context/base/node-mig.mkiv - texmf-dist/tex/context/base/node-nut.lua - texmf-dist/tex/context/base/node-pag.lua - texmf-dist/tex/context/base/node-pag.mkiv - texmf-dist/tex/context/base/node-ppt.lua - texmf-dist/tex/context/base/node-pro.lua - texmf-dist/tex/context/base/node-ref.lua - texmf-dist/tex/context/base/node-res.lua - texmf-dist/tex/context/base/node-rul.lua - texmf-dist/tex/context/base/node-rul.mkiv - texmf-dist/tex/context/base/node-ser.lua - texmf-dist/tex/context/base/node-shp.lua - texmf-dist/tex/context/base/node-snp.lua - texmf-dist/tex/context/base/node-tex.lua - texmf-dist/tex/context/base/node-tra.lua - texmf-dist/tex/context/base/node-tsk.lua - texmf-dist/tex/context/base/node-tst.lua - texmf-dist/tex/context/base/node-typ.lua - texmf-dist/tex/context/base/norm-alo.mkii - texmf-dist/tex/context/base/norm-ctx.mkii - texmf-dist/tex/context/base/norm-ctx.mkiv - texmf-dist/tex/context/base/norm-etx.mkii - texmf-dist/tex/context/base/norm-ltx.mkii - texmf-dist/tex/context/base/norm-ptx.mkii - texmf-dist/tex/context/base/norm-tex.mkii - texmf-dist/tex/context/base/norm-xtx.mkii - texmf-dist/tex/context/base/pack-bar.mkiv - texmf-dist/tex/context/base/pack-bck.mkvi - texmf-dist/tex/context/base/pack-box.mkii - texmf-dist/tex/context/base/pack-box.mkiv - texmf-dist/tex/context/base/pack-com.mkiv - texmf-dist/tex/context/base/pack-cut.mkiv - texmf-dist/tex/context/base/pack-fen.mkiv - texmf-dist/tex/context/base/pack-lyr.mkii - texmf-dist/tex/context/base/pack-lyr.mkiv - texmf-dist/tex/context/base/pack-mis.mkvi - texmf-dist/tex/context/base/pack-mrl.mkiv - texmf-dist/tex/context/base/pack-obj.lua - texmf-dist/tex/context/base/pack-obj.mkii - texmf-dist/tex/context/base/pack-obj.mkiv - texmf-dist/tex/context/base/pack-pos.mkiv - texmf-dist/tex/context/base/pack-rul.lua - texmf-dist/tex/context/base/pack-rul.mkii - texmf-dist/tex/context/base/pack-rul.mkiv - texmf-dist/tex/context/base/page-app.mkii - texmf-dist/tex/context/base/page-app.mkiv - texmf-dist/tex/context/base/page-bck.mkii - texmf-dist/tex/context/base/page-bck.mkiv - texmf-dist/tex/context/base/page-box.mkvi - texmf-dist/tex/context/base/page-brk.mkiv - texmf-dist/tex/context/base/page-col.mkiv - texmf-dist/tex/context/base/page-com.mkiv - texmf-dist/tex/context/base/page-fac.mkiv - texmf-dist/tex/context/base/page-flt.lua - texmf-dist/tex/context/base/page-flt.mkiv - texmf-dist/tex/context/base/page-flw.mkii - texmf-dist/tex/context/base/page-flw.mkiv - texmf-dist/tex/context/base/page-grd.mkiv - texmf-dist/tex/context/base/page-imp.mkii - texmf-dist/tex/context/base/page-imp.mkiv - texmf-dist/tex/context/base/page-inf.mkiv - texmf-dist/tex/context/base/page-ini.mkii - texmf-dist/tex/context/base/page-ini.mkiv - texmf-dist/tex/context/base/page-inj.lua - texmf-dist/tex/context/base/page-inj.mkvi - texmf-dist/tex/context/base/page-ins.lua - texmf-dist/tex/context/base/page-ins.mkii - texmf-dist/tex/context/base/page-ins.mkiv - texmf-dist/tex/context/base/page-lay.mkii - texmf-dist/tex/context/base/page-lay.mkiv - texmf-dist/tex/context/base/page-lin.lua - texmf-dist/tex/context/base/page-lin.mkii - texmf-dist/tex/context/base/page-lin.mkvi - texmf-dist/tex/context/base/page-log.mkii - texmf-dist/tex/context/base/page-mak.mkii - texmf-dist/tex/context/base/page-mak.mkvi - texmf-dist/tex/context/base/page-mar.mkii - texmf-dist/tex/context/base/page-mbk.mkvi - texmf-dist/tex/context/base/page-mis.mkii - texmf-dist/tex/context/base/page-mix.lua - texmf-dist/tex/context/base/page-mix.mkiv - texmf-dist/tex/context/base/page-mrk.mkiv - texmf-dist/tex/context/base/page-mul.mkii - texmf-dist/tex/context/base/page-mul.mkiv - texmf-dist/tex/context/base/page-not.mkii - texmf-dist/tex/context/base/page-not.mkiv - texmf-dist/tex/context/base/page-one.mkii - texmf-dist/tex/context/base/page-one.mkiv - texmf-dist/tex/context/base/page-otr.mkvi - texmf-dist/tex/context/base/page-par.mkii - texmf-dist/tex/context/base/page-par.mkiv - texmf-dist/tex/context/base/page-plg.mkii - texmf-dist/tex/context/base/page-plg.mkiv - texmf-dist/tex/context/base/page-pst.lua - texmf-dist/tex/context/base/page-pst.mkiv - texmf-dist/tex/context/base/page-run.mkii - texmf-dist/tex/context/base/page-run.mkiv - texmf-dist/tex/context/base/page-sel.mkvi - texmf-dist/tex/context/base/page-set.mkii - texmf-dist/tex/context/base/page-set.mkiv - texmf-dist/tex/context/base/page-sid.mkii - texmf-dist/tex/context/base/page-sid.mkiv - texmf-dist/tex/context/base/page-spr.mkii - texmf-dist/tex/context/base/page-spr.mkiv - texmf-dist/tex/context/base/page-str.lua - texmf-dist/tex/context/base/page-str.mkii - texmf-dist/tex/context/base/page-str.mkiv - texmf-dist/tex/context/base/page-txt.mkii - texmf-dist/tex/context/base/page-txt.mkvi - texmf-dist/tex/context/base/page-var.mkiv - texmf-dist/tex/context/base/pdfr-def.mkii - texmf-dist/tex/context/base/pdfr-ec.mkii - texmf-dist/tex/context/base/pdfr-il2.mkii - texmf-dist/tex/context/base/phys-dim.lua - texmf-dist/tex/context/base/phys-dim.mkiv - texmf-dist/tex/context/base/ppchtex.mkii - texmf-dist/tex/context/base/ppchtex.mkiv - texmf-dist/tex/context/base/prop-ini.mkii - texmf-dist/tex/context/base/prop-ini.mkiv - texmf-dist/tex/context/base/prop-lay.mkii - texmf-dist/tex/context/base/prop-mis.mkii - texmf-dist/tex/context/base/publ-aut.lua - texmf-dist/tex/context/base/publ-dat.lua - texmf-dist/tex/context/base/publ-fnd.lua - texmf-dist/tex/context/base/publ-imp-apa.lua - texmf-dist/tex/context/base/publ-imp-apa.mkvi - texmf-dist/tex/context/base/publ-imp-aps.lua - texmf-dist/tex/context/base/publ-imp-aps.mkvi - texmf-dist/tex/context/base/publ-imp-author.mkvi - texmf-dist/tex/context/base/publ-imp-cite.mkvi - texmf-dist/tex/context/base/publ-imp-commands.mkvi - texmf-dist/tex/context/base/publ-imp-default.lua - texmf-dist/tex/context/base/publ-imp-default.mkvi - texmf-dist/tex/context/base/publ-imp-definitions.mkvi - texmf-dist/tex/context/base/publ-imp-list.mkvi - texmf-dist/tex/context/base/publ-imp-page.mkvi - texmf-dist/tex/context/base/publ-imp-replacements.lua - texmf-dist/tex/context/base/publ-imp-test.bib - texmf-dist/tex/context/base/publ-ini.lua - texmf-dist/tex/context/base/publ-ini.mkiv - texmf-dist/tex/context/base/publ-jrn.lua - texmf-dist/tex/context/base/publ-old.mkiv - texmf-dist/tex/context/base/publ-oth.lua - texmf-dist/tex/context/base/publ-reg.lua - texmf-dist/tex/context/base/publ-sor.lua - texmf-dist/tex/context/base/publ-tra.lua - texmf-dist/tex/context/base/publ-tra.mkiv - texmf-dist/tex/context/base/publ-usr.lua - texmf-dist/tex/context/base/publ-usr.mkiv - texmf-dist/tex/context/base/publ-xml.mkiv - texmf-dist/tex/context/base/regi-8859-1.lua - texmf-dist/tex/context/base/regi-8859-1.mkii - texmf-dist/tex/context/base/regi-8859-10.lua - texmf-dist/tex/context/base/regi-8859-10.mkii - texmf-dist/tex/context/base/regi-8859-11.lua - texmf-dist/tex/context/base/regi-8859-13.lua - texmf-dist/tex/context/base/regi-8859-13.mkii - texmf-dist/tex/context/base/regi-8859-14.lua - texmf-dist/tex/context/base/regi-8859-15.lua - texmf-dist/tex/context/base/regi-8859-15.mkii - texmf-dist/tex/context/base/regi-8859-16.lua - texmf-dist/tex/context/base/regi-8859-16.mkii - texmf-dist/tex/context/base/regi-8859-2.lua - texmf-dist/tex/context/base/regi-8859-2.mkii - texmf-dist/tex/context/base/regi-8859-3.lua - texmf-dist/tex/context/base/regi-8859-3.mkii - texmf-dist/tex/context/base/regi-8859-4.lua - texmf-dist/tex/context/base/regi-8859-4.mkii - texmf-dist/tex/context/base/regi-8859-5.lua - texmf-dist/tex/context/base/regi-8859-5.mkii - texmf-dist/tex/context/base/regi-8859-6.lua - texmf-dist/tex/context/base/regi-8859-7.lua - texmf-dist/tex/context/base/regi-8859-7.mkii - texmf-dist/tex/context/base/regi-8859-8.lua - texmf-dist/tex/context/base/regi-8859-9.lua - texmf-dist/tex/context/base/regi-8859-9.mkii - texmf-dist/tex/context/base/regi-cp1250.lua - texmf-dist/tex/context/base/regi-cp1250.mkii - texmf-dist/tex/context/base/regi-cp1251.lua - texmf-dist/tex/context/base/regi-cp1251.mkii - texmf-dist/tex/context/base/regi-cp1252.lua - texmf-dist/tex/context/base/regi-cp1252.mkii - texmf-dist/tex/context/base/regi-cp1253.lua - texmf-dist/tex/context/base/regi-cp1253.mkii - texmf-dist/tex/context/base/regi-cp1254.lua - texmf-dist/tex/context/base/regi-cp1254.mkii - texmf-dist/tex/context/base/regi-cp1255.lua - texmf-dist/tex/context/base/regi-cp1256.lua - texmf-dist/tex/context/base/regi-cp1257.lua - texmf-dist/tex/context/base/regi-cp1257.mkii - texmf-dist/tex/context/base/regi-cp1258.lua - texmf-dist/tex/context/base/regi-cyp.mkii - texmf-dist/tex/context/base/regi-cyr.mkii - texmf-dist/tex/context/base/regi-def.mkii - texmf-dist/tex/context/base/regi-demo.lua - texmf-dist/tex/context/base/regi-ibm.mkii - texmf-dist/tex/context/base/regi-ini.lua - texmf-dist/tex/context/base/regi-ini.mkii - texmf-dist/tex/context/base/regi-ini.mkiv - texmf-dist/tex/context/base/regi-mac.mkii - texmf-dist/tex/context/base/regi-pdfdoc.lua - texmf-dist/tex/context/base/regi-syn.mkii - texmf-dist/tex/context/base/regi-uni.mkii - texmf-dist/tex/context/base/regi-utf.mkii - texmf-dist/tex/context/base/regi-vis.mkii - texmf-dist/tex/context/base/rlxcache.rlx - texmf-dist/tex/context/base/rlxtools.rlx - texmf-dist/tex/context/base/s-abr-01.tex - texmf-dist/tex/context/base/s-abr-02.tex - texmf-dist/tex/context/base/s-abr-03.tex - texmf-dist/tex/context/base/s-abr-04.tex - texmf-dist/tex/context/base/s-art-01.mkiv - texmf-dist/tex/context/base/s-cdr-01.tex - texmf-dist/tex/context/base/s-chi-00.mkii - texmf-dist/tex/context/base/s-def-01.mkiv - texmf-dist/tex/context/base/s-faq-00.tex - texmf-dist/tex/context/base/s-faq-01.tex - texmf-dist/tex/context/base/s-faq-02.tex - texmf-dist/tex/context/base/s-faq-03.tex - texmf-dist/tex/context/base/s-figures-names.mkiv - texmf-dist/tex/context/base/s-fnt-01.mkii - texmf-dist/tex/context/base/s-fnt-02.mkii - texmf-dist/tex/context/base/s-fnt-10.mkiv - texmf-dist/tex/context/base/s-fnt-20.mkiv - texmf-dist/tex/context/base/s-fnt-21.mkiv - texmf-dist/tex/context/base/s-fnt-24.mkiv - texmf-dist/tex/context/base/s-fonts-coverage.lua - texmf-dist/tex/context/base/s-fonts-coverage.mkiv - texmf-dist/tex/context/base/s-fonts-features.lua - texmf-dist/tex/context/base/s-fonts-features.mkiv - texmf-dist/tex/context/base/s-fonts-goodies.lua - texmf-dist/tex/context/base/s-fonts-goodies.mkiv - texmf-dist/tex/context/base/s-fonts-ligatures.mkiv - texmf-dist/tex/context/base/s-fonts-missing.lua - texmf-dist/tex/context/base/s-fonts-missing.mkiv - texmf-dist/tex/context/base/s-fonts-shapes.lua - texmf-dist/tex/context/base/s-fonts-shapes.mkiv - texmf-dist/tex/context/base/s-fonts-system.lua - texmf-dist/tex/context/base/s-fonts-system.mkiv - texmf-dist/tex/context/base/s-fonts-tables.lua - texmf-dist/tex/context/base/s-fonts-tables.mkiv - texmf-dist/tex/context/base/s-fonts-vectors.lua - texmf-dist/tex/context/base/s-fonts-vectors.mkiv - texmf-dist/tex/context/base/s-grk-00.mkii - texmf-dist/tex/context/base/s-inf-01.mkvi - texmf-dist/tex/context/base/s-inf-02.mkiv - texmf-dist/tex/context/base/s-inf-03.mkiv - texmf-dist/tex/context/base/s-inf-04.mkiv - texmf-dist/tex/context/base/s-jap-00.mkii - texmf-dist/tex/context/base/s-languages-counters.lua - texmf-dist/tex/context/base/s-languages-counters.mkiv - texmf-dist/tex/context/base/s-languages-frequencies.lua - texmf-dist/tex/context/base/s-languages-frequencies.mkiv - texmf-dist/tex/context/base/s-languages-hyphenation.lua - texmf-dist/tex/context/base/s-languages-hyphenation.mkiv - texmf-dist/tex/context/base/s-languages-sorting.lua - texmf-dist/tex/context/base/s-languages-sorting.mkiv - texmf-dist/tex/context/base/s-languages-system.lua - texmf-dist/tex/context/base/s-languages-system.mkiv - texmf-dist/tex/context/base/s-languages-words.lua - texmf-dist/tex/context/base/s-languages-words.mkiv - texmf-dist/tex/context/base/s-mag-01.tex - texmf-dist/tex/context/base/s-map-10.mkii - texmf-dist/tex/context/base/s-map-10.mkiv - texmf-dist/tex/context/base/s-math-characters.lua - texmf-dist/tex/context/base/s-math-characters.mkiv - texmf-dist/tex/context/base/s-math-coverage.lua - texmf-dist/tex/context/base/s-math-coverage.mkiv - texmf-dist/tex/context/base/s-math-extensibles.mkiv - texmf-dist/tex/context/base/s-math-parameters.lua - texmf-dist/tex/context/base/s-math-parameters.mkiv - texmf-dist/tex/context/base/s-math-repertoire.mkiv - texmf-dist/tex/context/base/s-mod-00.mkii - texmf-dist/tex/context/base/s-mod-00.mkiv - texmf-dist/tex/context/base/s-mod-01.mkii - texmf-dist/tex/context/base/s-mod-01.mkiv - texmf-dist/tex/context/base/s-mod-02.mkii - texmf-dist/tex/context/base/s-mod-02.mkiv - texmf-dist/tex/context/base/s-mod.ctx - texmf-dist/tex/context/base/s-pages-statistics.mkiv - texmf-dist/tex/context/base/s-physics-units.mkiv - texmf-dist/tex/context/base/s-pre-00.tex - texmf-dist/tex/context/base/s-pre-01.tex - texmf-dist/tex/context/base/s-pre-02.tex - texmf-dist/tex/context/base/s-pre-03.tex - texmf-dist/tex/context/base/s-pre-04.tex - texmf-dist/tex/context/base/s-pre-05.tex - texmf-dist/tex/context/base/s-pre-06.tex - texmf-dist/tex/context/base/s-pre-07.tex - texmf-dist/tex/context/base/s-pre-08.tex - texmf-dist/tex/context/base/s-pre-09.tex - texmf-dist/tex/context/base/s-pre-10.tex - texmf-dist/tex/context/base/s-pre-11.tex - texmf-dist/tex/context/base/s-pre-12.tex - texmf-dist/tex/context/base/s-pre-13.tex - texmf-dist/tex/context/base/s-pre-14.tex - texmf-dist/tex/context/base/s-pre-15.tex - texmf-dist/tex/context/base/s-pre-16.tex - texmf-dist/tex/context/base/s-pre-17.mkii - texmf-dist/tex/context/base/s-pre-17.mkiv - texmf-dist/tex/context/base/s-pre-18.tex - texmf-dist/tex/context/base/s-pre-19.tex - texmf-dist/tex/context/base/s-pre-22.tex - texmf-dist/tex/context/base/s-pre-23.tex - texmf-dist/tex/context/base/s-pre-26.tex - texmf-dist/tex/context/base/s-pre-27.tex - texmf-dist/tex/context/base/s-pre-30.mkii - texmf-dist/tex/context/base/s-pre-30.mkiv - texmf-dist/tex/context/base/s-pre-50.tex - texmf-dist/tex/context/base/s-pre-60.mkii - texmf-dist/tex/context/base/s-pre-60.mkiv - texmf-dist/tex/context/base/s-pre-61.tex - texmf-dist/tex/context/base/s-pre-62.tex - texmf-dist/tex/context/base/s-pre-63.tex - texmf-dist/tex/context/base/s-pre-64.tex - texmf-dist/tex/context/base/s-pre-66.tex - texmf-dist/tex/context/base/s-pre-67.tex - texmf-dist/tex/context/base/s-pre-68.tex - texmf-dist/tex/context/base/s-pre-69.mkiv - texmf-dist/tex/context/base/s-pre-70.mkiv - texmf-dist/tex/context/base/s-pre-71.lua - texmf-dist/tex/context/base/s-pre-71.mkii - texmf-dist/tex/context/base/s-pre-71.mkiv - texmf-dist/tex/context/base/s-pre-93.tex - texmf-dist/tex/context/base/s-pre-96.tex - texmf-dist/tex/context/base/s-present-tiles.mkiv - texmf-dist/tex/context/base/s-ptj-01.tex - texmf-dist/tex/context/base/s-references-show.mkiv - texmf-dist/tex/context/base/s-reg-01.mkiv - texmf-dist/tex/context/base/s-set-31.mkiv - texmf-dist/tex/context/base/s-sql-tables.lua - texmf-dist/tex/context/base/s-sql-tables.mkiv - texmf-dist/tex/context/base/s-structure-sections.mkiv - texmf-dist/tex/context/base/s-syntax.mkii - texmf-dist/tex/context/base/s-syntax.mkiv - texmf-dist/tex/context/base/s-typesetting-kerning.mkiv - texmf-dist/tex/context/base/s-youless.mkiv - texmf-dist/tex/context/base/scrn-bar.mkvi - texmf-dist/tex/context/base/scrn-but.lua - texmf-dist/tex/context/base/scrn-but.mkvi - texmf-dist/tex/context/base/scrn-fld.lua - texmf-dist/tex/context/base/scrn-fld.mkii - texmf-dist/tex/context/base/scrn-fld.mkvi - texmf-dist/tex/context/base/scrn-hlp.lua - texmf-dist/tex/context/base/scrn-hlp.mkii - texmf-dist/tex/context/base/scrn-hlp.mkvi - texmf-dist/tex/context/base/scrn-ini.lua - texmf-dist/tex/context/base/scrn-ini.mkvi - texmf-dist/tex/context/base/scrn-int.mkii - texmf-dist/tex/context/base/scrn-nav.mkii - texmf-dist/tex/context/base/scrn-pag.lua - texmf-dist/tex/context/base/scrn-pag.mkvi - texmf-dist/tex/context/base/scrn-ref.lua - texmf-dist/tex/context/base/scrn-ref.mkvi - texmf-dist/tex/context/base/scrn-wid.lua - texmf-dist/tex/context/base/scrn-wid.mkvi - texmf-dist/tex/context/base/scrp-cjk.lua - texmf-dist/tex/context/base/scrp-eth.lua - texmf-dist/tex/context/base/scrp-ini.lua - texmf-dist/tex/context/base/scrp-ini.mkiv - texmf-dist/tex/context/base/scrp-tha.lua - texmf-dist/tex/context/base/sort-def.mkii - texmf-dist/tex/context/base/sort-ini.lua - texmf-dist/tex/context/base/sort-ini.mkii - texmf-dist/tex/context/base/sort-ini.mkiv - texmf-dist/tex/context/base/sort-lan.lua - texmf-dist/tex/context/base/sort-lan.mkii - texmf-dist/tex/context/base/spac-adj.lua - texmf-dist/tex/context/base/spac-adj.mkiv - texmf-dist/tex/context/base/spac-ali.lua - texmf-dist/tex/context/base/spac-ali.mkiv - texmf-dist/tex/context/base/spac-chr.lua - texmf-dist/tex/context/base/spac-chr.mkiv - texmf-dist/tex/context/base/spac-def.mkiv - texmf-dist/tex/context/base/spac-flr.mkiv - texmf-dist/tex/context/base/spac-gen.mkii - texmf-dist/tex/context/base/spac-grd.mkii - texmf-dist/tex/context/base/spac-grd.mkiv - texmf-dist/tex/context/base/spac-hor.lua - texmf-dist/tex/context/base/spac-hor.mkiv - texmf-dist/tex/context/base/spac-lin.mkiv - texmf-dist/tex/context/base/spac-pag.mkiv - texmf-dist/tex/context/base/spac-par.mkiv - texmf-dist/tex/context/base/spac-prf.mkiv - texmf-dist/tex/context/base/spac-ver.lua - texmf-dist/tex/context/base/spac-ver.mkiv - texmf-dist/tex/context/base/spec-def.mkii - texmf-dist/tex/context/base/spec-dpm.mkii - texmf-dist/tex/context/base/spec-dpx.mkii - texmf-dist/tex/context/base/spec-dvi.mkii - texmf-dist/tex/context/base/spec-fdf.mkii - texmf-dist/tex/context/base/spec-ini.mkii - texmf-dist/tex/context/base/spec-mis.mkii - texmf-dist/tex/context/base/spec-pdf.mkii - texmf-dist/tex/context/base/spec-ps.mkii - texmf-dist/tex/context/base/spec-tpd.mkii - texmf-dist/tex/context/base/spec-tr.mkii - texmf-dist/tex/context/base/spec-tst.mkii - texmf-dist/tex/context/base/spec-var.mkii - texmf-dist/tex/context/base/spec-win.mkii - texmf-dist/tex/context/base/spec-xet.mkii - texmf-dist/tex/context/base/spec-xtx.mkii - texmf-dist/tex/context/base/spec-yy.mkii - texmf-dist/tex/context/base/status-files.pdf - texmf-dist/tex/context/base/status-lua.pdf - texmf-dist/tex/context/base/status-mkiv.lua - texmf-dist/tex/context/base/status-mkiv.tex - texmf-dist/tex/context/base/strc-bkm.lua - texmf-dist/tex/context/base/strc-bkm.mkiv - texmf-dist/tex/context/base/strc-blk.lua - texmf-dist/tex/context/base/strc-blk.mkii - texmf-dist/tex/context/base/strc-blk.mkiv - texmf-dist/tex/context/base/strc-con.lua - texmf-dist/tex/context/base/strc-con.mkvi - texmf-dist/tex/context/base/strc-def.mkiv - texmf-dist/tex/context/base/strc-des.mkii - texmf-dist/tex/context/base/strc-des.mkvi - texmf-dist/tex/context/base/strc-doc.lua - texmf-dist/tex/context/base/strc-doc.mkiv - texmf-dist/tex/context/base/strc-enu.mkvi - texmf-dist/tex/context/base/strc-flt.lua - texmf-dist/tex/context/base/strc-flt.mkii - texmf-dist/tex/context/base/strc-flt.mkvi - texmf-dist/tex/context/base/strc-ind.mkiv - texmf-dist/tex/context/base/strc-ini.lua - texmf-dist/tex/context/base/strc-ini.mkvi - texmf-dist/tex/context/base/strc-itm.lua - texmf-dist/tex/context/base/strc-itm.mkii - texmf-dist/tex/context/base/strc-itm.mkvi - texmf-dist/tex/context/base/strc-lab.mkiv - texmf-dist/tex/context/base/strc-lev.lua - texmf-dist/tex/context/base/strc-lev.mkvi - texmf-dist/tex/context/base/strc-lnt.mkii - texmf-dist/tex/context/base/strc-lnt.mkvi - texmf-dist/tex/context/base/strc-lst.lua - texmf-dist/tex/context/base/strc-lst.mkii - texmf-dist/tex/context/base/strc-lst.mkvi - texmf-dist/tex/context/base/strc-mar.lua - texmf-dist/tex/context/base/strc-mar.mkii - texmf-dist/tex/context/base/strc-mar.mkiv - texmf-dist/tex/context/base/strc-mat.lua - texmf-dist/tex/context/base/strc-mat.mkii - texmf-dist/tex/context/base/strc-mat.mkiv - texmf-dist/tex/context/base/strc-not.lua - texmf-dist/tex/context/base/strc-not.mkii - texmf-dist/tex/context/base/strc-not.mkvi - texmf-dist/tex/context/base/strc-num.lua - texmf-dist/tex/context/base/strc-num.mkii - texmf-dist/tex/context/base/strc-num.mkiv - texmf-dist/tex/context/base/strc-pag.lua - texmf-dist/tex/context/base/strc-pag.mkii - texmf-dist/tex/context/base/strc-pag.mkiv - texmf-dist/tex/context/base/strc-ref.lua - texmf-dist/tex/context/base/strc-ref.mkii - texmf-dist/tex/context/base/strc-ref.mkvi - texmf-dist/tex/context/base/strc-reg.lua - texmf-dist/tex/context/base/strc-reg.mkii - texmf-dist/tex/context/base/strc-reg.mkiv - texmf-dist/tex/context/base/strc-ren.mkiv - texmf-dist/tex/context/base/strc-rsc.lua - texmf-dist/tex/context/base/strc-sbe.mkiv - texmf-dist/tex/context/base/strc-sec.mkii - texmf-dist/tex/context/base/strc-sec.mkiv - texmf-dist/tex/context/base/strc-swd.mkii - texmf-dist/tex/context/base/strc-syn.lua - texmf-dist/tex/context/base/strc-syn.mkii - texmf-dist/tex/context/base/strc-syn.mkiv - texmf-dist/tex/context/base/strc-tag.lua - texmf-dist/tex/context/base/strc-tag.mkiv - texmf-dist/tex/context/base/strc-xml.mkiv - texmf-dist/tex/context/base/supp-ali.mkii - texmf-dist/tex/context/base/supp-box.lua - texmf-dist/tex/context/base/supp-box.mkii - texmf-dist/tex/context/base/supp-box.mkiv - texmf-dist/tex/context/base/supp-dir.mkii - texmf-dist/tex/context/base/supp-dir.mkiv - texmf-dist/tex/context/base/supp-emp.mkii - texmf-dist/tex/context/base/supp-eps.mkii - texmf-dist/tex/context/base/supp-fil.mkii - texmf-dist/tex/context/base/supp-fun.mkii - texmf-dist/tex/context/base/supp-lat.mkii - texmf-dist/tex/context/base/supp-mat.mkii - texmf-dist/tex/context/base/supp-mat.mkiv - texmf-dist/tex/context/base/supp-mis.tex - texmf-dist/tex/context/base/supp-mpe.tex - texmf-dist/tex/context/base/supp-mps.mkii - texmf-dist/tex/context/base/supp-mrk.mkii - texmf-dist/tex/context/base/supp-num.mkii - texmf-dist/tex/context/base/supp-pat.mkii - texmf-dist/tex/context/base/supp-pdf.tex - texmf-dist/tex/context/base/supp-ran.lua - texmf-dist/tex/context/base/supp-ran.mkii - texmf-dist/tex/context/base/supp-ran.mkiv - texmf-dist/tex/context/base/supp-spe.mkii - texmf-dist/tex/context/base/supp-tpi.mkii - texmf-dist/tex/context/base/supp-vis.mkii - texmf-dist/tex/context/base/supp-vis.mkiv - texmf-dist/tex/context/base/symb-cow.mkii - texmf-dist/tex/context/base/symb-eur.mkii - texmf-dist/tex/context/base/symb-glm.mkii - texmf-dist/tex/context/base/symb-imp-cc.mkiv - texmf-dist/tex/context/base/symb-imp-cow.mkiv - texmf-dist/tex/context/base/symb-imp-eur.mkiv - texmf-dist/tex/context/base/symb-imp-jmn.mkiv - texmf-dist/tex/context/base/symb-imp-mis.mkiv - texmf-dist/tex/context/base/symb-imp-mvs.mkiv - texmf-dist/tex/context/base/symb-imp-nav.mkiv - texmf-dist/tex/context/base/symb-ini.lua - texmf-dist/tex/context/base/symb-ini.mkii - texmf-dist/tex/context/base/symb-ini.mkiv - texmf-dist/tex/context/base/symb-jmn.mkii - texmf-dist/tex/context/base/symb-mis.mkii - texmf-dist/tex/context/base/symb-mvs.mkii - texmf-dist/tex/context/base/symb-nav.mkii - texmf-dist/tex/context/base/symb-run.mkii - texmf-dist/tex/context/base/symb-run.mkiv - texmf-dist/tex/context/base/symb-uni.mkii - texmf-dist/tex/context/base/symb-was.mkii - texmf-dist/tex/context/base/syst-aux.lua - texmf-dist/tex/context/base/syst-aux.mkiv - texmf-dist/tex/context/base/syst-con.lua - texmf-dist/tex/context/base/syst-con.mkii - texmf-dist/tex/context/base/syst-con.mkiv - texmf-dist/tex/context/base/syst-ext.mkii - texmf-dist/tex/context/base/syst-fnt.mkii - texmf-dist/tex/context/base/syst-fnt.mkiv - texmf-dist/tex/context/base/syst-gen.mkii - texmf-dist/tex/context/base/syst-ini.mkii - texmf-dist/tex/context/base/syst-ini.mkiv - texmf-dist/tex/context/base/syst-lua.lua - texmf-dist/tex/context/base/syst-lua.mkiv - texmf-dist/tex/context/base/syst-mes.mkiv - texmf-dist/tex/context/base/syst-new.mkii - texmf-dist/tex/context/base/syst-pln.mkii - texmf-dist/tex/context/base/syst-pln.mkiv - texmf-dist/tex/context/base/syst-rtp.mkii - texmf-dist/tex/context/base/syst-rtp.mkiv - texmf-dist/tex/context/base/syst-str.mkii - texmf-dist/tex/context/base/tabl-com.mkii - texmf-dist/tex/context/base/tabl-com.mkiv - texmf-dist/tex/context/base/tabl-ltb.mkii - texmf-dist/tex/context/base/tabl-ltb.mkiv - texmf-dist/tex/context/base/tabl-mis.mkiv - texmf-dist/tex/context/base/tabl-ntb.mkii - texmf-dist/tex/context/base/tabl-ntb.mkiv - texmf-dist/tex/context/base/tabl-nte.mkii - texmf-dist/tex/context/base/tabl-nte.mkiv - texmf-dist/tex/context/base/tabl-pln.mkii - texmf-dist/tex/context/base/tabl-pln.mkiv - texmf-dist/tex/context/base/tabl-tab.mkii - texmf-dist/tex/context/base/tabl-tab.mkiv - texmf-dist/tex/context/base/tabl-tbl.lua - texmf-dist/tex/context/base/tabl-tbl.mkii - texmf-dist/tex/context/base/tabl-tbl.mkiv - texmf-dist/tex/context/base/tabl-tsp.mkii - texmf-dist/tex/context/base/tabl-tsp.mkiv - texmf-dist/tex/context/base/tabl-xnt.mkvi - texmf-dist/tex/context/base/tabl-xtb.lua - texmf-dist/tex/context/base/tabl-xtb.mkvi - texmf-dist/tex/context/base/task-ini.lua - texmf-dist/tex/context/base/task-ini.mkiv - texmf-dist/tex/context/base/thrd-pic.mkii - texmf-dist/tex/context/base/thrd-ran.mkii - texmf-dist/tex/context/base/thrd-tab.mkii - texmf-dist/tex/context/base/thrd-trg.mkii - texmf-dist/tex/context/base/toks-ini.lua - texmf-dist/tex/context/base/toks-ini.mkiv - texmf-dist/tex/context/base/toks-map.lua - texmf-dist/tex/context/base/toks-map.mkiv - texmf-dist/tex/context/base/toks-scn.lua - texmf-dist/tex/context/base/toks-tra.lua - texmf-dist/tex/context/base/toks-tra.mkiv - texmf-dist/tex/context/base/trac-ctx.lua - texmf-dist/tex/context/base/trac-ctx.mkiv - texmf-dist/tex/context/base/trac-deb.lua - texmf-dist/tex/context/base/trac-deb.mkiv - texmf-dist/tex/context/base/trac-exp.lua - texmf-dist/tex/context/base/trac-fil.lua - texmf-dist/tex/context/base/trac-inf.lua - texmf-dist/tex/context/base/trac-jus.lua - texmf-dist/tex/context/base/trac-jus.mkiv - texmf-dist/tex/context/base/trac-lmx.lua - texmf-dist/tex/context/base/trac-log.lua - texmf-dist/tex/context/base/trac-par.lua - texmf-dist/tex/context/base/trac-pro.lua - texmf-dist/tex/context/base/trac-set.lua - texmf-dist/tex/context/base/trac-tex.lua - texmf-dist/tex/context/base/trac-tex.mkiv - texmf-dist/tex/context/base/trac-tim.lua - texmf-dist/tex/context/base/trac-vis.lua - texmf-dist/tex/context/base/trac-vis.mkii - texmf-dist/tex/context/base/trac-vis.mkiv - texmf-dist/tex/context/base/trac-xml.lua - texmf-dist/tex/context/base/type-buy.mkii - texmf-dist/tex/context/base/type-cbg.mkii - texmf-dist/tex/context/base/type-cow.mkii - texmf-dist/tex/context/base/type-def.mkii - texmf-dist/tex/context/base/type-def.mkiv - texmf-dist/tex/context/base/type-exp.mkii - texmf-dist/tex/context/base/type-fbk.mkiv - texmf-dist/tex/context/base/type-fsf.mkii - texmf-dist/tex/context/base/type-ghz.mkii - texmf-dist/tex/context/base/type-hgz.mkii - texmf-dist/tex/context/base/type-imp-antykwa.mkiv - texmf-dist/tex/context/base/type-imp-antykwapoltawskiego.mkiv - texmf-dist/tex/context/base/type-imp-asana.mkiv - texmf-dist/tex/context/base/type-imp-averia.mkiv - texmf-dist/tex/context/base/type-imp-buy.mkiv - texmf-dist/tex/context/base/type-imp-cambria.mkiv - texmf-dist/tex/context/base/type-imp-charter.mkiv - texmf-dist/tex/context/base/type-imp-cleartype.mkiv - texmf-dist/tex/context/base/type-imp-computer-modern-unicode.mkiv - texmf-dist/tex/context/base/type-imp-cow.mkiv - texmf-dist/tex/context/base/type-imp-dejavu.mkiv - texmf-dist/tex/context/base/type-imp-ebgaramond.mkiv - texmf-dist/tex/context/base/type-imp-euler.mkiv - texmf-dist/tex/context/base/type-imp-ghz.mkiv - texmf-dist/tex/context/base/type-imp-hgz.mkiv - texmf-dist/tex/context/base/type-imp-husayni.mkiv - texmf-dist/tex/context/base/type-imp-hvmath.mkiv - texmf-dist/tex/context/base/type-imp-inconsolata.mkiv - texmf-dist/tex/context/base/type-imp-informal.mkiv - texmf-dist/tex/context/base/type-imp-ipaex.mkiv - texmf-dist/tex/context/base/type-imp-iwona.mkiv - texmf-dist/tex/context/base/type-imp-kurier.mkiv - texmf-dist/tex/context/base/type-imp-latinmodern.mkiv - texmf-dist/tex/context/base/type-imp-lato.mkiv - texmf-dist/tex/context/base/type-imp-liberation.mkiv - texmf-dist/tex/context/base/type-imp-libertine.mkiv - texmf-dist/tex/context/base/type-imp-lmnames.mkiv - texmf-dist/tex/context/base/type-imp-lucida-opentype.mkiv - texmf-dist/tex/context/base/type-imp-lucida-typeone.mkiv - texmf-dist/tex/context/base/type-imp-mathdesign.mkiv - texmf-dist/tex/context/base/type-imp-mathdigits.mkiv - texmf-dist/tex/context/base/type-imp-mathtimes.mkiv - texmf-dist/tex/context/base/type-imp-mscore.mkiv - texmf-dist/tex/context/base/type-imp-opendyslexic.mkiv - texmf-dist/tex/context/base/type-imp-osx.mkiv - texmf-dist/tex/context/base/type-imp-postscript.mkiv - texmf-dist/tex/context/base/type-imp-punknova.mkiv - texmf-dist/tex/context/base/type-imp-texgyre.mkiv - texmf-dist/tex/context/base/type-imp-unfonts.mkiv - texmf-dist/tex/context/base/type-imp-xits.mkiv - texmf-dist/tex/context/base/type-imp-xitsbidi.mkiv - texmf-dist/tex/context/base/type-ini.lua - texmf-dist/tex/context/base/type-ini.mkii - texmf-dist/tex/context/base/type-ini.mkvi - texmf-dist/tex/context/base/type-lua.mkiv - texmf-dist/tex/context/base/type-mac.mkii - texmf-dist/tex/context/base/type-msw.mkii - texmf-dist/tex/context/base/type-one.mkii - texmf-dist/tex/context/base/type-one.mkiv - texmf-dist/tex/context/base/type-otf.mkii - texmf-dist/tex/context/base/type-otf.mkiv - texmf-dist/tex/context/base/type-pre.mkii - texmf-dist/tex/context/base/type-run.mkii - texmf-dist/tex/context/base/type-run.mkiv - texmf-dist/tex/context/base/type-set.mkii - texmf-dist/tex/context/base/type-set.mkiv - texmf-dist/tex/context/base/type-siz.mkii - texmf-dist/tex/context/base/type-siz.mkiv - texmf-dist/tex/context/base/type-tmf.mkii - texmf-dist/tex/context/base/type-tmf.mkiv - texmf-dist/tex/context/base/type-win.mkii - texmf-dist/tex/context/base/type-xtx.mkii - texmf-dist/tex/context/base/typo-bld.lua - texmf-dist/tex/context/base/typo-bld.mkiv - texmf-dist/tex/context/base/typo-brk.lua - texmf-dist/tex/context/base/typo-brk.mkiv - texmf-dist/tex/context/base/typo-cap.lua - texmf-dist/tex/context/base/typo-cap.mkiv - texmf-dist/tex/context/base/typo-chr.lua - texmf-dist/tex/context/base/typo-chr.mkiv - texmf-dist/tex/context/base/typo-cln.lua - texmf-dist/tex/context/base/typo-cln.mkiv - texmf-dist/tex/context/base/typo-del.mkiv - texmf-dist/tex/context/base/typo-dha.lua - texmf-dist/tex/context/base/typo-dig.lua - texmf-dist/tex/context/base/typo-dig.mkiv - texmf-dist/tex/context/base/typo-dir.lua - texmf-dist/tex/context/base/typo-dir.mkiv - texmf-dist/tex/context/base/typo-drp.lua - texmf-dist/tex/context/base/typo-drp.mkiv - texmf-dist/tex/context/base/typo-dua.lua - texmf-dist/tex/context/base/typo-dub.lua - texmf-dist/tex/context/base/typo-fln.lua - texmf-dist/tex/context/base/typo-fln.mkiv - texmf-dist/tex/context/base/typo-ini.lua - texmf-dist/tex/context/base/typo-ini.mkii - texmf-dist/tex/context/base/typo-ini.mkiv - texmf-dist/tex/context/base/typo-inj.lua - texmf-dist/tex/context/base/typo-inj.mkiv - texmf-dist/tex/context/base/typo-itc.lua - texmf-dist/tex/context/base/typo-itc.mkvi - texmf-dist/tex/context/base/typo-itm.mkiv - texmf-dist/tex/context/base/typo-krn.lua - texmf-dist/tex/context/base/typo-krn.mkiv - texmf-dist/tex/context/base/typo-lan.lua - texmf-dist/tex/context/base/typo-lan.mkiv - texmf-dist/tex/context/base/typo-lig.mkiv - texmf-dist/tex/context/base/typo-man.lua - texmf-dist/tex/context/base/typo-mar.lua - texmf-dist/tex/context/base/typo-mar.mkiv - texmf-dist/tex/context/base/typo-pag.lua - texmf-dist/tex/context/base/typo-pag.mkiv - texmf-dist/tex/context/base/typo-par.mkiv - texmf-dist/tex/context/base/typo-prc.lua - texmf-dist/tex/context/base/typo-prc.mkvi - texmf-dist/tex/context/base/typo-rep.lua - texmf-dist/tex/context/base/typo-rep.mkiv - texmf-dist/tex/context/base/typo-scr.mkiv - texmf-dist/tex/context/base/typo-spa.lua - texmf-dist/tex/context/base/typo-spa.mkiv - texmf-dist/tex/context/base/typo-sus.lua - texmf-dist/tex/context/base/typo-sus.mkiv - texmf-dist/tex/context/base/typo-tal.lua - texmf-dist/tex/context/base/typo-tal.mkiv - texmf-dist/tex/context/base/typo-txt.mkvi - texmf-dist/tex/context/base/typo-wrp.lua - texmf-dist/tex/context/base/typo-wrp.mkiv - texmf-dist/tex/context/base/unic-000.mkii - texmf-dist/tex/context/base/unic-001.mkii - texmf-dist/tex/context/base/unic-002.mkii - texmf-dist/tex/context/base/unic-003.mkii - texmf-dist/tex/context/base/unic-004.mkii - texmf-dist/tex/context/base/unic-005.mkii - texmf-dist/tex/context/base/unic-030.mkii - texmf-dist/tex/context/base/unic-031.mkii - texmf-dist/tex/context/base/unic-032.mkii - texmf-dist/tex/context/base/unic-033.mkii - texmf-dist/tex/context/base/unic-034.mkii - texmf-dist/tex/context/base/unic-035.mkii - texmf-dist/tex/context/base/unic-037.mkii - texmf-dist/tex/context/base/unic-039.mkii - texmf-dist/tex/context/base/unic-251.mkii - texmf-dist/tex/context/base/unic-cjk.mkii - texmf-dist/tex/context/base/unic-exp.mkii - texmf-dist/tex/context/base/unic-ini.lua - texmf-dist/tex/context/base/unic-ini.mkii - texmf-dist/tex/context/base/unic-ini.mkiv - texmf-dist/tex/context/base/unic-run.mkii - texmf-dist/tex/context/base/util-deb.lua - texmf-dist/tex/context/base/util-dim.lua - texmf-dist/tex/context/base/util-env.lua - texmf-dist/tex/context/base/util-fmt.lua - texmf-dist/tex/context/base/util-jsn.lua - texmf-dist/tex/context/base/util-lib.lua - texmf-dist/tex/context/base/util-lua.lua - texmf-dist/tex/context/base/util-mrg.lua - texmf-dist/tex/context/base/util-pck.lua - texmf-dist/tex/context/base/util-prs.lua - texmf-dist/tex/context/base/util-ran.lua - texmf-dist/tex/context/base/util-sbx.lua - texmf-dist/tex/context/base/util-sci.lua - texmf-dist/tex/context/base/util-seq.lua - texmf-dist/tex/context/base/util-soc.lua - texmf-dist/tex/context/base/util-sql-imp-client.lua - texmf-dist/tex/context/base/util-sql-imp-library.lua - texmf-dist/tex/context/base/util-sql-imp-swiglib.lua - texmf-dist/tex/context/base/util-sql-loggers.lua - texmf-dist/tex/context/base/util-sql-sessions.lua - texmf-dist/tex/context/base/util-sql-tickets.lua - texmf-dist/tex/context/base/util-sql-tracers.lua - texmf-dist/tex/context/base/util-sql-users.lua - texmf-dist/tex/context/base/util-sql.lua - texmf-dist/tex/context/base/util-sta.lua - texmf-dist/tex/context/base/util-sto.lua - texmf-dist/tex/context/base/util-str.lua - texmf-dist/tex/context/base/util-tab.lua - texmf-dist/tex/context/base/util-tpl.lua - texmf-dist/tex/context/base/util-you.lua - texmf-dist/tex/context/base/verb-c.mkii - texmf-dist/tex/context/base/verb-eif.mkii - texmf-dist/tex/context/base/verb-ini.mkii - texmf-dist/tex/context/base/verb-js.mkii - texmf-dist/tex/context/base/verb-jv.mkii - texmf-dist/tex/context/base/verb-mp.mkii - texmf-dist/tex/context/base/verb-pas.mkii - texmf-dist/tex/context/base/verb-pl.mkii - texmf-dist/tex/context/base/verb-raw.mkii - texmf-dist/tex/context/base/verb-sql.mkii - texmf-dist/tex/context/base/verb-tex.mkii - texmf-dist/tex/context/base/verb-xml.mkii - texmf-dist/tex/context/base/x-asciimath.lua - texmf-dist/tex/context/base/x-asciimath.mkiv - texmf-dist/tex/context/base/x-calcmath.lua - texmf-dist/tex/context/base/x-calcmath.mkii - texmf-dist/tex/context/base/x-calcmath.mkiv - texmf-dist/tex/context/base/x-cals.lua - texmf-dist/tex/context/base/x-cals.mkiv - texmf-dist/tex/context/base/x-chemml.lua - texmf-dist/tex/context/base/x-chemml.mkii - texmf-dist/tex/context/base/x-chemml.mkiv - texmf-dist/tex/context/base/x-chemml.xsd - texmf-dist/tex/context/base/x-contml.mkii - texmf-dist/tex/context/base/x-contml.xsd - texmf-dist/tex/context/base/x-corres.mkii - texmf-dist/tex/context/base/x-corres.rng - texmf-dist/tex/context/base/x-ct.lua - texmf-dist/tex/context/base/x-ct.mkiv - texmf-dist/tex/context/base/x-dir-01.tex - texmf-dist/tex/context/base/x-dir-05.mkii - texmf-dist/tex/context/base/x-dir-05.mkiv - texmf-dist/tex/context/base/x-entities.mkiv - texmf-dist/tex/context/base/x-fdf-00.mkii - texmf-dist/tex/context/base/x-fe.mkii - texmf-dist/tex/context/base/x-fig-00.dtd - texmf-dist/tex/context/base/x-fig-00.mkii - texmf-dist/tex/context/base/x-fig-00.xsd - texmf-dist/tex/context/base/x-fig-01.mkii - texmf-dist/tex/context/base/x-fig-02.mkii - texmf-dist/tex/context/base/x-fig-03.mkii - texmf-dist/tex/context/base/x-fo.mkii - texmf-dist/tex/context/base/x-foxet.mkii - texmf-dist/tex/context/base/x-foxet.mkiv - texmf-dist/tex/context/base/x-html.mkiv - texmf-dist/tex/context/base/x-ldx.ctx - texmf-dist/tex/context/base/x-ldx.lua - texmf-dist/tex/context/base/x-ldx.mkiv - texmf-dist/tex/context/base/x-math-svg.lua - texmf-dist/tex/context/base/x-mathml-basics.mkiv - texmf-dist/tex/context/base/x-mathml-html.mkiv - texmf-dist/tex/context/base/x-mathml.lua - texmf-dist/tex/context/base/x-mathml.mkii - texmf-dist/tex/context/base/x-mathml.mkiv - texmf-dist/tex/context/base/x-mathml.xsd - texmf-dist/tex/context/base/x-newcml.mkii - texmf-dist/tex/context/base/x-newmme.mkii - texmf-dist/tex/context/base/x-newmml.mkii - texmf-dist/tex/context/base/x-newmml.mkiv - texmf-dist/tex/context/base/x-newmmo.mkii - texmf-dist/tex/context/base/x-newpml.mkii - texmf-dist/tex/context/base/x-om2cml.xsl - texmf-dist/tex/context/base/x-openmath.mkii - texmf-dist/tex/context/base/x-openmath.xsl - texmf-dist/tex/context/base/x-pfs-01.mkiv - texmf-dist/tex/context/base/x-pfsense.ctx - texmf-dist/tex/context/base/x-physml.mkii - texmf-dist/tex/context/base/x-physml.mkiv - texmf-dist/tex/context/base/x-physml.xsd - texmf-dist/tex/context/base/x-res-00.mkii - texmf-dist/tex/context/base/x-res-01.mkii - texmf-dist/tex/context/base/x-res-01.mkiv - texmf-dist/tex/context/base/x-res-02.mkii - texmf-dist/tex/context/base/x-res-03.mkii - texmf-dist/tex/context/base/x-res-04.mkii - texmf-dist/tex/context/base/x-res-08.mkii - texmf-dist/tex/context/base/x-res-09.mkii - texmf-dist/tex/context/base/x-res-10.mkii - texmf-dist/tex/context/base/x-res-11.mkii - texmf-dist/tex/context/base/x-res-12.mkii - texmf-dist/tex/context/base/x-res-20.mkii - texmf-dist/tex/context/base/x-res-50.mkii - texmf-dist/tex/context/base/x-res-50.mkiv - texmf-dist/tex/context/base/x-sch-00.mkii - texmf-dist/tex/context/base/x-sch-01.mkii - texmf-dist/tex/context/base/x-set-01.mkii - texmf-dist/tex/context/base/x-set-02.mkii - texmf-dist/tex/context/base/x-set-11.mkii - texmf-dist/tex/context/base/x-set-11.mkiv - texmf-dist/tex/context/base/x-set-12.mkii - texmf-dist/tex/context/base/x-set-12.mkiv - texmf-dist/tex/context/base/x-sm2om.xsl - texmf-dist/tex/context/base/x-steps.mkii - texmf-dist/tex/context/base/x-steps.mkiv - texmf-dist/tex/context/base/x-udhr.mkiv - texmf-dist/tex/context/base/x-xfdf.mkiv - texmf-dist/tex/context/base/x-xml-01.mkii - texmf-dist/tex/context/base/x-xml-02.mkii - texmf-dist/tex/context/base/x-xml-11.mkii - texmf-dist/tex/context/base/x-xtag.mkiv - texmf-dist/tex/context/base/xetx-chr.mkii - texmf-dist/tex/context/base/xetx-cls.mkii - texmf-dist/tex/context/base/xetx-ini.mkii - texmf-dist/tex/context/base/xetx-utf.mkii - texmf-dist/tex/context/base/xtag-cml.mkii - texmf-dist/tex/context/base/xtag-ent.mkii - texmf-dist/tex/context/base/xtag-exp.mkii - texmf-dist/tex/context/base/xtag-ext.mkii - texmf-dist/tex/context/base/xtag-hyp.mkii - texmf-dist/tex/context/base/xtag-ini.mkii - texmf-dist/tex/context/base/xtag-map.mkii - texmf-dist/tex/context/base/xtag-mea.mkii - texmf-dist/tex/context/base/xtag-meb.mkii - texmf-dist/tex/context/base/xtag-mec.mkii - texmf-dist/tex/context/base/xtag-meh.mkii - texmf-dist/tex/context/base/xtag-men.mkii - texmf-dist/tex/context/base/xtag-meo.mkii - texmf-dist/tex/context/base/xtag-mer.mkii - texmf-dist/tex/context/base/xtag-mmc.mkii - texmf-dist/tex/context/base/xtag-mml.mkii - texmf-dist/tex/context/base/xtag-mmp.mkii - texmf-dist/tex/context/base/xtag-mxa.mkii - texmf-dist/tex/context/base/xtag-mxb.mkii - texmf-dist/tex/context/base/xtag-mxc.mkii - texmf-dist/tex/context/base/xtag-mxh.mkii - texmf-dist/tex/context/base/xtag-mxn.mkii - texmf-dist/tex/context/base/xtag-mxo.mkii - texmf-dist/tex/context/base/xtag-mxr.mkii - texmf-dist/tex/context/base/xtag-pml.mkii - texmf-dist/tex/context/base/xtag-pmu.mkii - texmf-dist/tex/context/base/xtag-pre.mkii - texmf-dist/tex/context/base/xtag-prs.mkii - texmf-dist/tex/context/base/xtag-raw.mkii - texmf-dist/tex/context/base/xtag-rng.mkii - texmf-dist/tex/context/base/xtag-run.mkii - texmf-dist/tex/context/base/xtag-stk.mkii - texmf-dist/tex/context/base/xtag-utf.mkii - texmf-dist/tex/context/base/xtag-xsd.mkii - texmf-dist/tex/context/base/xtag-xsl.mkii - texmf-dist/tex/context/bib/bibl-ams.tex - texmf-dist/tex/context/bib/bibl-apa-de.tex - texmf-dist/tex/context/bib/bibl-apa-fr.tex - texmf-dist/tex/context/bib/bibl-apa-it.tex - texmf-dist/tex/context/bib/bibl-apa.tex - texmf-dist/tex/context/bib/bibl-aps.tex - texmf-dist/tex/context/bib/bibl-num-fr.tex - texmf-dist/tex/context/bib/bibl-num.tex - texmf-dist/tex/context/bib/bibl-ssa.tex - texmf-dist/tex/context/bib/sample.bib - texmf-dist/tex/context/colors/icc/context/colorprofiles.lua - texmf-dist/tex/context/colors/icc/context/colorprofiles.xml - texmf-dist/tex/context/extra/mag-0000.tex - texmf-dist/tex/context/extra/setup-qr.tex - texmf-dist/tex/context/fonts/antykwa-math.lfg - texmf-dist/tex/context/fonts/antykwapoltawskiego.lfg - texmf-dist/tex/context/fonts/asana-math.lfg - texmf-dist/tex/context/fonts/cambria-math.lfg - texmf-dist/tex/context/fonts/cc-icons.lfg - texmf-dist/tex/context/fonts/ccicons.lfg - texmf-dist/tex/context/fonts/demo.lfg - texmf-dist/tex/context/fonts/dingbats.lfg - texmf-dist/tex/context/fonts/ebgaramond.lfg - texmf-dist/tex/context/fonts/euler-math.lfg - texmf-dist/tex/context/fonts/hanbatanglvt.lfg - texmf-dist/tex/context/fonts/husayni.lfg - texmf-dist/tex/context/fonts/hvmath-math.lfg - texmf-dist/tex/context/fonts/informal-math.lfg - texmf-dist/tex/context/fonts/iwona-math.lfg - texmf-dist/tex/context/fonts/lm-math.lfg - texmf-dist/tex/context/fonts/lm.lfg - texmf-dist/tex/context/fonts/lucida-opentype-math.lfg - texmf-dist/tex/context/fonts/lucida-typeone-math.lfg - texmf-dist/tex/context/fonts/mathtimes-math.lfg - texmf-dist/tex/context/fonts/mdbch-math.lfg - texmf-dist/tex/context/fonts/mdici-math.lfg - texmf-dist/tex/context/fonts/mdpgd-math.lfg - texmf-dist/tex/context/fonts/mdpus-math.lfg - texmf-dist/tex/context/fonts/mdput-math.lfg - texmf-dist/tex/context/fonts/mdugm-math.lfg - texmf-dist/tex/context/fonts/px-math.lfg - texmf-dist/tex/context/fonts/symbol-math.lfg - texmf-dist/tex/context/fonts/texgyre.lfg - texmf-dist/tex/context/fonts/treatments.lfg - texmf-dist/tex/context/fonts/tx-math.lfg - texmf-dist/tex/context/fonts/unifraktur.lfg - texmf-dist/tex/context/fonts/xits-math.lfg - texmf-dist/tex/context/interface/cont-cs.xml - texmf-dist/tex/context/interface/cont-de.xml - texmf-dist/tex/context/interface/cont-en.xml - texmf-dist/tex/context/interface/cont-fr.xml - texmf-dist/tex/context/interface/cont-it.xml - texmf-dist/tex/context/interface/cont-nl.xml - texmf-dist/tex/context/interface/cont-pe.xml - texmf-dist/tex/context/interface/cont-ro.xml - texmf-dist/tex/context/interface/keys-cs.xml - texmf-dist/tex/context/interface/keys-cz.xml - texmf-dist/tex/context/interface/keys-de.xml - texmf-dist/tex/context/interface/keys-en.xml - texmf-dist/tex/context/interface/keys-fr.xml - texmf-dist/tex/context/interface/keys-it.xml - texmf-dist/tex/context/interface/keys-nl.xml - texmf-dist/tex/context/interface/keys-pe.xml - texmf-dist/tex/context/interface/keys-ro.xml - texmf-dist/tex/context/patterns/lang-af.hyp - texmf-dist/tex/context/patterns/lang-af.lua - texmf-dist/tex/context/patterns/lang-af.pat - texmf-dist/tex/context/patterns/lang-af.rme - texmf-dist/tex/context/patterns/lang-agr.hyp - texmf-dist/tex/context/patterns/lang-agr.lua - texmf-dist/tex/context/patterns/lang-agr.pat - texmf-dist/tex/context/patterns/lang-agr.rme - texmf-dist/tex/context/patterns/lang-bg.hyp - texmf-dist/tex/context/patterns/lang-bg.lua - texmf-dist/tex/context/patterns/lang-bg.pat - texmf-dist/tex/context/patterns/lang-bg.rme - texmf-dist/tex/context/patterns/lang-ca.hyp - texmf-dist/tex/context/patterns/lang-ca.lua - texmf-dist/tex/context/patterns/lang-ca.pat - texmf-dist/tex/context/patterns/lang-ca.rme - texmf-dist/tex/context/patterns/lang-cs.hyp - texmf-dist/tex/context/patterns/lang-cs.lua - texmf-dist/tex/context/patterns/lang-cs.pat - texmf-dist/tex/context/patterns/lang-cs.rme - texmf-dist/tex/context/patterns/lang-cy.hyp - texmf-dist/tex/context/patterns/lang-cy.lua - texmf-dist/tex/context/patterns/lang-cy.pat - texmf-dist/tex/context/patterns/lang-cy.rme - texmf-dist/tex/context/patterns/lang-da.hyp - texmf-dist/tex/context/patterns/lang-da.lua - texmf-dist/tex/context/patterns/lang-da.pat - texmf-dist/tex/context/patterns/lang-da.rme - texmf-dist/tex/context/patterns/lang-de.hyp - texmf-dist/tex/context/patterns/lang-de.lua - texmf-dist/tex/context/patterns/lang-de.pat - texmf-dist/tex/context/patterns/lang-de.rme - texmf-dist/tex/context/patterns/lang-deo.hyp - texmf-dist/tex/context/patterns/lang-deo.lua - texmf-dist/tex/context/patterns/lang-deo.pat - texmf-dist/tex/context/patterns/lang-deo.rme - texmf-dist/tex/context/patterns/lang-es.hyp - texmf-dist/tex/context/patterns/lang-es.lua - texmf-dist/tex/context/patterns/lang-es.pat - texmf-dist/tex/context/patterns/lang-es.rme - texmf-dist/tex/context/patterns/lang-et.hyp - texmf-dist/tex/context/patterns/lang-et.lua - texmf-dist/tex/context/patterns/lang-et.pat - texmf-dist/tex/context/patterns/lang-et.rme - texmf-dist/tex/context/patterns/lang-eu.hyp - texmf-dist/tex/context/patterns/lang-eu.lua - texmf-dist/tex/context/patterns/lang-eu.pat - texmf-dist/tex/context/patterns/lang-eu.rme - texmf-dist/tex/context/patterns/lang-fi.hyp - texmf-dist/tex/context/patterns/lang-fi.lua - texmf-dist/tex/context/patterns/lang-fi.pat - texmf-dist/tex/context/patterns/lang-fi.rme - texmf-dist/tex/context/patterns/lang-fr.hyp - texmf-dist/tex/context/patterns/lang-fr.lua - texmf-dist/tex/context/patterns/lang-fr.pat - texmf-dist/tex/context/patterns/lang-fr.rme - texmf-dist/tex/context/patterns/lang-gb.hyp - texmf-dist/tex/context/patterns/lang-gb.lua - texmf-dist/tex/context/patterns/lang-gb.pat - texmf-dist/tex/context/patterns/lang-gb.rme - texmf-dist/tex/context/patterns/lang-hr.hyp - texmf-dist/tex/context/patterns/lang-hr.lua - texmf-dist/tex/context/patterns/lang-hr.pat - texmf-dist/tex/context/patterns/lang-hr.rme - texmf-dist/tex/context/patterns/lang-hu.hyp - texmf-dist/tex/context/patterns/lang-hu.lua - texmf-dist/tex/context/patterns/lang-hu.pat - texmf-dist/tex/context/patterns/lang-hu.rme - texmf-dist/tex/context/patterns/lang-is.hyp - texmf-dist/tex/context/patterns/lang-is.lua - texmf-dist/tex/context/patterns/lang-is.pat - texmf-dist/tex/context/patterns/lang-is.rme - texmf-dist/tex/context/patterns/lang-it.hyp - texmf-dist/tex/context/patterns/lang-it.lua - texmf-dist/tex/context/patterns/lang-it.pat - texmf-dist/tex/context/patterns/lang-it.rme - texmf-dist/tex/context/patterns/lang-la.hyp - texmf-dist/tex/context/patterns/lang-la.lua - texmf-dist/tex/context/patterns/lang-la.pat - texmf-dist/tex/context/patterns/lang-la.rme - texmf-dist/tex/context/patterns/lang-lt.hyp - texmf-dist/tex/context/patterns/lang-lt.lua - texmf-dist/tex/context/patterns/lang-lt.pat - texmf-dist/tex/context/patterns/lang-lt.rme - texmf-dist/tex/context/patterns/lang-lv.hyp - texmf-dist/tex/context/patterns/lang-lv.lua - texmf-dist/tex/context/patterns/lang-lv.pat - texmf-dist/tex/context/patterns/lang-lv.rme - texmf-dist/tex/context/patterns/lang-ml.hyp - texmf-dist/tex/context/patterns/lang-ml.lua - texmf-dist/tex/context/patterns/lang-ml.pat - texmf-dist/tex/context/patterns/lang-ml.rme - texmf-dist/tex/context/patterns/lang-mn.hyp - texmf-dist/tex/context/patterns/lang-mn.lua - texmf-dist/tex/context/patterns/lang-mn.pat - texmf-dist/tex/context/patterns/lang-mn.rme - texmf-dist/tex/context/patterns/lang-nb.hyp - texmf-dist/tex/context/patterns/lang-nb.lua - texmf-dist/tex/context/patterns/lang-nb.pat - texmf-dist/tex/context/patterns/lang-nb.rme - texmf-dist/tex/context/patterns/lang-nl.hyp - texmf-dist/tex/context/patterns/lang-nl.lua - texmf-dist/tex/context/patterns/lang-nl.pat - texmf-dist/tex/context/patterns/lang-nl.rme - texmf-dist/tex/context/patterns/lang-nn.hyp - texmf-dist/tex/context/patterns/lang-nn.lua - texmf-dist/tex/context/patterns/lang-nn.pat - texmf-dist/tex/context/patterns/lang-nn.rme - texmf-dist/tex/context/patterns/lang-pl.hyp - texmf-dist/tex/context/patterns/lang-pl.lua - texmf-dist/tex/context/patterns/lang-pl.pat - texmf-dist/tex/context/patterns/lang-pl.rme - texmf-dist/tex/context/patterns/lang-pt.hyp - texmf-dist/tex/context/patterns/lang-pt.lua - texmf-dist/tex/context/patterns/lang-pt.pat - texmf-dist/tex/context/patterns/lang-pt.rme - texmf-dist/tex/context/patterns/lang-ro.hyp - texmf-dist/tex/context/patterns/lang-ro.lua - texmf-dist/tex/context/patterns/lang-ro.pat - texmf-dist/tex/context/patterns/lang-ro.rme - texmf-dist/tex/context/patterns/lang-ru.hyp - texmf-dist/tex/context/patterns/lang-ru.lua - texmf-dist/tex/context/patterns/lang-ru.pat - texmf-dist/tex/context/patterns/lang-ru.rme - texmf-dist/tex/context/patterns/lang-sk.hyp - texmf-dist/tex/context/patterns/lang-sk.lua - texmf-dist/tex/context/patterns/lang-sk.pat - texmf-dist/tex/context/patterns/lang-sk.rme - texmf-dist/tex/context/patterns/lang-sl.hyp - texmf-dist/tex/context/patterns/lang-sl.lua - texmf-dist/tex/context/patterns/lang-sl.pat - texmf-dist/tex/context/patterns/lang-sl.rme - texmf-dist/tex/context/patterns/lang-sr.hyp - texmf-dist/tex/context/patterns/lang-sr.lua - texmf-dist/tex/context/patterns/lang-sr.pat - texmf-dist/tex/context/patterns/lang-sr.rme - texmf-dist/tex/context/patterns/lang-sv.hyp - texmf-dist/tex/context/patterns/lang-sv.lua - texmf-dist/tex/context/patterns/lang-sv.pat - texmf-dist/tex/context/patterns/lang-sv.rme - texmf-dist/tex/context/patterns/lang-th.hyp - texmf-dist/tex/context/patterns/lang-th.lua - texmf-dist/tex/context/patterns/lang-th.pat - texmf-dist/tex/context/patterns/lang-th.rme - texmf-dist/tex/context/patterns/lang-tk.hyp - texmf-dist/tex/context/patterns/lang-tk.lua - texmf-dist/tex/context/patterns/lang-tk.pat - texmf-dist/tex/context/patterns/lang-tk.rme - texmf-dist/tex/context/patterns/lang-tr.hyp - texmf-dist/tex/context/patterns/lang-tr.lua - texmf-dist/tex/context/patterns/lang-tr.pat - texmf-dist/tex/context/patterns/lang-tr.rme - texmf-dist/tex/context/patterns/lang-uk.hyp - texmf-dist/tex/context/patterns/lang-uk.lua - texmf-dist/tex/context/patterns/lang-uk.pat - texmf-dist/tex/context/patterns/lang-uk.rme - texmf-dist/tex/context/patterns/lang-us.hyp - texmf-dist/tex/context/patterns/lang-us.lua - texmf-dist/tex/context/patterns/lang-us.pat - texmf-dist/tex/context/patterns/lang-us.rme - texmf-dist/tex/context/patterns/lang-zh.hyp - texmf-dist/tex/context/patterns/lang-zh.lua - texmf-dist/tex/context/patterns/lang-zh.pat - texmf-dist/tex/context/patterns/lang-zh.rme - texmf-dist/tex/context/patterns/word-xx.lua - texmf-dist/tex/context/sample/aesop-de.tex - texmf-dist/tex/context/sample/bryson.tex - texmf-dist/tex/context/sample/cervantes-es.tex - texmf-dist/tex/context/sample/cow.pdf - texmf-dist/tex/context/sample/d-res-01.xml - texmf-dist/tex/context/sample/darwin.tex - texmf-dist/tex/context/sample/davis.tex - texmf-dist/tex/context/sample/dawkins.tex - texmf-dist/tex/context/sample/demo-mps.tex - texmf-dist/tex/context/sample/demo-tex.tex - texmf-dist/tex/context/sample/demo-xml.tex - texmf-dist/tex/context/sample/douglas.tex - texmf-dist/tex/context/sample/hacker.jpg - texmf-dist/tex/context/sample/hawking.tex - texmf-dist/tex/context/sample/khatt-ar.tex - texmf-dist/tex/context/sample/khatt-en.tex - texmf-dist/tex/context/sample/knuth.tex - texmf-dist/tex/context/sample/linden.tex - texmf-dist/tex/context/sample/lorem.tex - texmf-dist/tex/context/sample/materie.tex - texmf-dist/tex/context/sample/mill.png - texmf-dist/tex/context/sample/montgomery.tex - texmf-dist/tex/context/sample/quevedo-es.tex - texmf-dist/tex/context/sample/reich.tex - texmf-dist/tex/context/sample/sample.tex - texmf-dist/tex/context/sample/samples.bib - texmf-dist/tex/context/sample/samples.tex - texmf-dist/tex/context/sample/spider.eps - texmf-dist/tex/context/sample/thuan.tex - texmf-dist/tex/context/sample/tufte.tex - texmf-dist/tex/context/sample/ward.tex - texmf-dist/tex/context/sample/weisman.tex - texmf-dist/tex/context/sample/zapf.tex - texmf-dist/tex/context/test/context-test.tex - texmf-dist/tex/context/test/pdf-a1a-2005.mkiv - texmf-dist/tex/context/test/pdf-a1b-2005.mkiv - texmf-dist/tex/context/test/pdf-x-common.mkiv - texmf-dist/tex/context/test/pdf-x1a-2001.mkiv - texmf-dist/tex/context/test/pdf-x1a-2003.mkiv - texmf-dist/tex/context/test/pdf-x3-2002.mkiv - texmf-dist/tex/context/test/pdf-x3-2003.mkiv - texmf-dist/tex/context/test/pdf-x4.mkiv - texmf-dist/tex/context/test/pdf-x4p.mkiv - texmf-dist/tex/context/user/cont-sys.rme - texmf-dist/tex/generic/context/luatex/luatex-basics-gen.lua - texmf-dist/tex/generic/context/luatex/luatex-basics-nod.lua - texmf-dist/tex/generic/context/luatex/luatex-basics.tex - texmf-dist/tex/generic/context/luatex/luatex-fonts-cbk.lua - texmf-dist/tex/generic/context/luatex/luatex-fonts-def.lua - texmf-dist/tex/generic/context/luatex/luatex-fonts-demo-vf-1.lua - texmf-dist/tex/generic/context/luatex/luatex-fonts-enc.lua - texmf-dist/tex/generic/context/luatex/luatex-fonts-ext.lua - texmf-dist/tex/generic/context/luatex/luatex-fonts-inj.lua - texmf-dist/tex/generic/context/luatex/luatex-fonts-lua.lua - texmf-dist/tex/generic/context/luatex/luatex-fonts-merged.lua - texmf-dist/tex/generic/context/luatex/luatex-fonts-ota.lua - texmf-dist/tex/generic/context/luatex/luatex-fonts-otn.lua - texmf-dist/tex/generic/context/luatex/luatex-fonts-syn.lua - texmf-dist/tex/generic/context/luatex/luatex-fonts-tfm.lua - texmf-dist/tex/generic/context/luatex/luatex-fonts.lua - texmf-dist/tex/generic/context/luatex/luatex-fonts.tex - texmf-dist/tex/generic/context/luatex/luatex-languages.lua - texmf-dist/tex/generic/context/luatex/luatex-languages.tex - texmf-dist/tex/generic/context/luatex/luatex-math.lua - texmf-dist/tex/generic/context/luatex/luatex-math.tex - texmf-dist/tex/generic/context/luatex/luatex-mplib.lua - texmf-dist/tex/generic/context/luatex/luatex-mplib.tex - texmf-dist/tex/generic/context/luatex/luatex-plain.tex - texmf-dist/tex/generic/context/luatex/luatex-preprocessor-test.tex - texmf-dist/tex/generic/context/luatex/luatex-preprocessor.lua - texmf-dist/tex/generic/context/luatex/luatex-preprocessor.tex - texmf-dist/tex/generic/context/luatex/luatex-swiglib-test.lua - texmf-dist/tex/generic/context/luatex/luatex-swiglib-test.tex - texmf-dist/tex/generic/context/luatex/luatex-swiglib.lua - texmf-dist/tex/generic/context/luatex/luatex-swiglib.tex - texmf-dist/tex/generic/context/luatex/luatex-test.tex - texmf-dist/tex/generic/context/ppchtex/m-ch-de.tex - texmf-dist/tex/generic/context/ppchtex/m-ch-en.tex - texmf-dist/tex/generic/context/ppchtex/m-ch-nl.tex - texmf-dist/tex/generic/context/ppchtex/ppchtex.noc - texmf-dist/tex/latex/context/ppchtex/m-ch-de.sty - texmf-dist/tex/latex/context/ppchtex/m-ch-en.sty - texmf-dist/tex/latex/context/ppchtex/m-ch-nl.sty - texmf-dist/tex/latex/context/ppchtex/m-pictex.sty -docfiles size=610 - texmf-dist/doc/context/documents/general/manuals/epub-mkiv-demo.epub - texmf-dist/doc/context/documents/general/manuals/epub-mkiv-demo.pdf - texmf-dist/doc/context/documents/general/manuals/epub-mkiv.pdf - texmf-dist/doc/context/documents/general/manuals/mreadme.pdf - texmf-dist/doc/context/documents/general/manuals/swiglib-mkiv.pdf - texmf-dist/doc/context/documents/general/manuals/tiptrick.pdf - texmf-dist/doc/context/documents/general/manuals/tools-mkiv.pdf - texmf-dist/doc/context/documents/general/manuals/units-mkiv.pdf - texmf-dist/doc/context/documents/general/manuals/workflows-mkiv.pdf - texmf-dist/doc/context/documents/general/manuals/xtables-mkiv.pdf - texmf-dist/doc/context/scripts/mkii/ctxtools.html - texmf-dist/doc/context/scripts/mkii/ctxtools.man - texmf-dist/doc/context/scripts/mkii/ctxtools.xml - texmf-dist/doc/context/scripts/mkii/imgtopdf.html - texmf-dist/doc/context/scripts/mkii/imgtopdf.man - texmf-dist/doc/context/scripts/mkii/imgtopdf.xml - texmf-dist/doc/context/scripts/mkii/mptopdf.html - texmf-dist/doc/context/scripts/mkii/mptopdf.xml - texmf-dist/doc/context/scripts/mkii/pdftools.html - texmf-dist/doc/context/scripts/mkii/pdftools.man - texmf-dist/doc/context/scripts/mkii/pdftools.xml - texmf-dist/doc/context/scripts/mkii/pstopdf.html - texmf-dist/doc/context/scripts/mkii/pstopdf.man - texmf-dist/doc/context/scripts/mkii/pstopdf.xml - texmf-dist/doc/context/scripts/mkii/rlxtools.html - texmf-dist/doc/context/scripts/mkii/rlxtools.man - texmf-dist/doc/context/scripts/mkii/rlxtools.xml - texmf-dist/doc/context/scripts/mkii/texexec.html - texmf-dist/doc/context/scripts/mkii/texexec.man - texmf-dist/doc/context/scripts/mkii/texexec.xml - texmf-dist/doc/context/scripts/mkii/texmfstart.html - texmf-dist/doc/context/scripts/mkii/texmfstart.man - texmf-dist/doc/context/scripts/mkii/texmfstart.xml - texmf-dist/doc/context/scripts/mkii/textools.html - texmf-dist/doc/context/scripts/mkii/textools.man - texmf-dist/doc/context/scripts/mkii/textools.xml - texmf-dist/doc/context/scripts/mkii/texutil.html - texmf-dist/doc/context/scripts/mkii/texutil.man - texmf-dist/doc/context/scripts/mkii/texutil.xml - texmf-dist/doc/context/scripts/mkii/tmftools.html - texmf-dist/doc/context/scripts/mkii/tmftools.man - texmf-dist/doc/context/scripts/mkii/tmftools.xml - texmf-dist/doc/context/scripts/mkii/xmltools.html - texmf-dist/doc/context/scripts/mkii/xmltools.man - texmf-dist/doc/context/scripts/mkii/xmltools.xml - texmf-dist/doc/context/scripts/mkiv/context.html - texmf-dist/doc/context/scripts/mkiv/context.man - texmf-dist/doc/context/scripts/mkiv/context.xml - texmf-dist/doc/context/scripts/mkiv/luatools.html - texmf-dist/doc/context/scripts/mkiv/luatools.man - texmf-dist/doc/context/scripts/mkiv/luatools.xml - texmf-dist/doc/context/scripts/mkiv/mtx-babel.html - texmf-dist/doc/context/scripts/mkiv/mtx-babel.man - texmf-dist/doc/context/scripts/mkiv/mtx-babel.xml - texmf-dist/doc/context/scripts/mkiv/mtx-base.html - texmf-dist/doc/context/scripts/mkiv/mtx-base.man - texmf-dist/doc/context/scripts/mkiv/mtx-base.xml - texmf-dist/doc/context/scripts/mkiv/mtx-cache.html - texmf-dist/doc/context/scripts/mkiv/mtx-cache.man - texmf-dist/doc/context/scripts/mkiv/mtx-cache.xml - texmf-dist/doc/context/scripts/mkiv/mtx-chars.html - texmf-dist/doc/context/scripts/mkiv/mtx-chars.man - texmf-dist/doc/context/scripts/mkiv/mtx-chars.xml - texmf-dist/doc/context/scripts/mkiv/mtx-check.html - texmf-dist/doc/context/scripts/mkiv/mtx-check.man - texmf-dist/doc/context/scripts/mkiv/mtx-check.xml - texmf-dist/doc/context/scripts/mkiv/mtx-colors.html - texmf-dist/doc/context/scripts/mkiv/mtx-colors.man - texmf-dist/doc/context/scripts/mkiv/mtx-colors.xml - texmf-dist/doc/context/scripts/mkiv/mtx-context.html - texmf-dist/doc/context/scripts/mkiv/mtx-context.man - texmf-dist/doc/context/scripts/mkiv/mtx-context.xml - texmf-dist/doc/context/scripts/mkiv/mtx-epub.html - texmf-dist/doc/context/scripts/mkiv/mtx-epub.man - texmf-dist/doc/context/scripts/mkiv/mtx-epub.xml - texmf-dist/doc/context/scripts/mkiv/mtx-fcd.html - texmf-dist/doc/context/scripts/mkiv/mtx-fcd.man - texmf-dist/doc/context/scripts/mkiv/mtx-fcd.xml - texmf-dist/doc/context/scripts/mkiv/mtx-flac.html - texmf-dist/doc/context/scripts/mkiv/mtx-flac.man - texmf-dist/doc/context/scripts/mkiv/mtx-flac.xml - texmf-dist/doc/context/scripts/mkiv/mtx-fonts.html - texmf-dist/doc/context/scripts/mkiv/mtx-fonts.man - texmf-dist/doc/context/scripts/mkiv/mtx-fonts.xml - texmf-dist/doc/context/scripts/mkiv/mtx-grep.html - texmf-dist/doc/context/scripts/mkiv/mtx-grep.man - texmf-dist/doc/context/scripts/mkiv/mtx-grep.xml - texmf-dist/doc/context/scripts/mkiv/mtx-interface.html - texmf-dist/doc/context/scripts/mkiv/mtx-interface.man - texmf-dist/doc/context/scripts/mkiv/mtx-interface.xml - texmf-dist/doc/context/scripts/mkiv/mtx-metapost.html - texmf-dist/doc/context/scripts/mkiv/mtx-metapost.man - texmf-dist/doc/context/scripts/mkiv/mtx-metapost.xml - texmf-dist/doc/context/scripts/mkiv/mtx-metatex.html - texmf-dist/doc/context/scripts/mkiv/mtx-metatex.man - texmf-dist/doc/context/scripts/mkiv/mtx-metatex.xml - texmf-dist/doc/context/scripts/mkiv/mtx-modules.html - texmf-dist/doc/context/scripts/mkiv/mtx-modules.man - texmf-dist/doc/context/scripts/mkiv/mtx-modules.xml - texmf-dist/doc/context/scripts/mkiv/mtx-package.html - texmf-dist/doc/context/scripts/mkiv/mtx-package.man - texmf-dist/doc/context/scripts/mkiv/mtx-package.xml - texmf-dist/doc/context/scripts/mkiv/mtx-patterns.html - texmf-dist/doc/context/scripts/mkiv/mtx-patterns.man - texmf-dist/doc/context/scripts/mkiv/mtx-patterns.xml - texmf-dist/doc/context/scripts/mkiv/mtx-pdf.html - texmf-dist/doc/context/scripts/mkiv/mtx-pdf.man - texmf-dist/doc/context/scripts/mkiv/mtx-pdf.xml - texmf-dist/doc/context/scripts/mkiv/mtx-plain.html - texmf-dist/doc/context/scripts/mkiv/mtx-plain.man - texmf-dist/doc/context/scripts/mkiv/mtx-plain.xml - texmf-dist/doc/context/scripts/mkiv/mtx-profile.html - texmf-dist/doc/context/scripts/mkiv/mtx-profile.man - texmf-dist/doc/context/scripts/mkiv/mtx-profile.xml - texmf-dist/doc/context/scripts/mkiv/mtx-rsync.html - texmf-dist/doc/context/scripts/mkiv/mtx-rsync.man - texmf-dist/doc/context/scripts/mkiv/mtx-rsync.xml - texmf-dist/doc/context/scripts/mkiv/mtx-scite.html - texmf-dist/doc/context/scripts/mkiv/mtx-scite.man - texmf-dist/doc/context/scripts/mkiv/mtx-scite.xml - texmf-dist/doc/context/scripts/mkiv/mtx-server.html - texmf-dist/doc/context/scripts/mkiv/mtx-server.man - texmf-dist/doc/context/scripts/mkiv/mtx-server.xml - texmf-dist/doc/context/scripts/mkiv/mtx-texworks.html - texmf-dist/doc/context/scripts/mkiv/mtx-texworks.man - texmf-dist/doc/context/scripts/mkiv/mtx-texworks.xml - texmf-dist/doc/context/scripts/mkiv/mtx-timing.html - texmf-dist/doc/context/scripts/mkiv/mtx-timing.man - texmf-dist/doc/context/scripts/mkiv/mtx-timing.xml - texmf-dist/doc/context/scripts/mkiv/mtx-tools.html - texmf-dist/doc/context/scripts/mkiv/mtx-tools.man - texmf-dist/doc/context/scripts/mkiv/mtx-tools.xml - texmf-dist/doc/context/scripts/mkiv/mtx-unzip.html - texmf-dist/doc/context/scripts/mkiv/mtx-unzip.man - texmf-dist/doc/context/scripts/mkiv/mtx-unzip.xml - texmf-dist/doc/context/scripts/mkiv/mtx-update.html - texmf-dist/doc/context/scripts/mkiv/mtx-update.man - texmf-dist/doc/context/scripts/mkiv/mtx-update.xml - texmf-dist/doc/context/scripts/mkiv/mtx-watch.html - texmf-dist/doc/context/scripts/mkiv/mtx-watch.man - texmf-dist/doc/context/scripts/mkiv/mtx-watch.xml - texmf-dist/doc/context/scripts/mkiv/mtx-youless.html - texmf-dist/doc/context/scripts/mkiv/mtx-youless.man - texmf-dist/doc/context/scripts/mkiv/mtx-youless.xml - texmf-dist/doc/context/scripts/mkiv/mtxrun.html - texmf-dist/doc/context/scripts/mkiv/mtxrun.man - texmf-dist/doc/context/scripts/mkiv/mtxrun.xml - texmf-dist/doc/context/sources/general/manuals/epub/epub-mkiv-demo.tex - texmf-dist/doc/context/sources/general/manuals/epub/epub-mkiv.tex - texmf-dist/doc/context/sources/general/manuals/mcommon.tex - texmf-dist/doc/context/sources/general/manuals/readme/mreadme.tex - texmf-dist/doc/context/sources/general/manuals/swiglib/swiglib-mkiv.tex - texmf-dist/doc/context/sources/general/manuals/tiptrick/tiptrick.tex - texmf-dist/doc/context/sources/general/manuals/tiptrick/tiptrick.xml - texmf-dist/doc/context/sources/general/manuals/tools/tools-mkiv.tex - texmf-dist/doc/context/sources/general/manuals/units/units-mkiv.tex - texmf-dist/doc/context/sources/general/manuals/workflows/workflows-contents.tex - texmf-dist/doc/context/sources/general/manuals/workflows/workflows-graphics.tex - texmf-dist/doc/context/sources/general/manuals/workflows/workflows-injectors.tex - texmf-dist/doc/context/sources/general/manuals/workflows/workflows-introduction.tex - texmf-dist/doc/context/sources/general/manuals/workflows/workflows-mkiv.tex - texmf-dist/doc/context/sources/general/manuals/workflows/workflows-resources.tex - texmf-dist/doc/context/sources/general/manuals/workflows/workflows-setups.tex - texmf-dist/doc/context/sources/general/manuals/workflows/workflows-style.tex - texmf-dist/doc/context/sources/general/manuals/workflows/workflows-suspects.tex - texmf-dist/doc/context/sources/general/manuals/workflows/workflows-titlepage.tex - texmf-dist/doc/context/sources/general/manuals/workflows/workflows-xml.tex - texmf-dist/doc/context/sources/general/manuals/xtables/xtables-mkiv.tex - texmf-dist/doc/man/man1/context.1 - texmf-dist/doc/man/man1/context.man1.pdf - texmf-dist/doc/man/man1/luatools.1 - texmf-dist/doc/man/man1/luatools.man1.pdf - texmf-dist/doc/man/man1/mtx-babel.1 - texmf-dist/doc/man/man1/mtx-babel.man1.pdf - texmf-dist/doc/man/man1/mtx-base.1 - texmf-dist/doc/man/man1/mtx-base.man1.pdf - texmf-dist/doc/man/man1/mtx-cache.1 - texmf-dist/doc/man/man1/mtx-cache.man1.pdf - texmf-dist/doc/man/man1/mtx-chars.1 - texmf-dist/doc/man/man1/mtx-chars.man1.pdf - texmf-dist/doc/man/man1/mtx-check.1 - texmf-dist/doc/man/man1/mtx-check.man1.pdf - texmf-dist/doc/man/man1/mtx-colors.1 - texmf-dist/doc/man/man1/mtx-colors.man1.pdf - texmf-dist/doc/man/man1/mtx-context.1 - texmf-dist/doc/man/man1/mtx-context.man1.pdf - texmf-dist/doc/man/man1/mtx-epub.1 - texmf-dist/doc/man/man1/mtx-epub.man1.pdf - texmf-dist/doc/man/man1/mtx-fcd.1 - texmf-dist/doc/man/man1/mtx-fcd.man1.pdf - texmf-dist/doc/man/man1/mtx-flac.1 - texmf-dist/doc/man/man1/mtx-flac.man1.pdf - texmf-dist/doc/man/man1/mtx-fonts.1 - texmf-dist/doc/man/man1/mtx-fonts.man1.pdf - texmf-dist/doc/man/man1/mtx-grep.1 - texmf-dist/doc/man/man1/mtx-grep.man1.pdf - texmf-dist/doc/man/man1/mtx-interface.1 - texmf-dist/doc/man/man1/mtx-interface.man1.pdf - texmf-dist/doc/man/man1/mtx-metapost.1 - texmf-dist/doc/man/man1/mtx-metapost.man1.pdf - texmf-dist/doc/man/man1/mtx-metatex.1 - texmf-dist/doc/man/man1/mtx-metatex.man1.pdf - texmf-dist/doc/man/man1/mtx-modules.1 - texmf-dist/doc/man/man1/mtx-modules.man1.pdf - texmf-dist/doc/man/man1/mtx-package.1 - texmf-dist/doc/man/man1/mtx-package.man1.pdf - texmf-dist/doc/man/man1/mtx-patterns.1 - texmf-dist/doc/man/man1/mtx-patterns.man1.pdf - texmf-dist/doc/man/man1/mtx-pdf.1 - texmf-dist/doc/man/man1/mtx-pdf.man1.pdf - texmf-dist/doc/man/man1/mtx-plain.1 - texmf-dist/doc/man/man1/mtx-plain.man1.pdf - texmf-dist/doc/man/man1/mtx-profile.1 - texmf-dist/doc/man/man1/mtx-profile.man1.pdf - texmf-dist/doc/man/man1/mtx-rsync.1 - texmf-dist/doc/man/man1/mtx-rsync.man1.pdf - texmf-dist/doc/man/man1/mtx-scite.1 - texmf-dist/doc/man/man1/mtx-scite.man1.pdf - texmf-dist/doc/man/man1/mtx-server.1 - texmf-dist/doc/man/man1/mtx-server.man1.pdf - texmf-dist/doc/man/man1/mtx-texworks.1 - texmf-dist/doc/man/man1/mtx-texworks.man1.pdf - texmf-dist/doc/man/man1/mtx-timing.1 - texmf-dist/doc/man/man1/mtx-timing.man1.pdf - texmf-dist/doc/man/man1/mtx-tools.1 - texmf-dist/doc/man/man1/mtx-tools.man1.pdf - texmf-dist/doc/man/man1/mtx-unzip.1 - texmf-dist/doc/man/man1/mtx-unzip.man1.pdf - texmf-dist/doc/man/man1/mtx-update.1 - texmf-dist/doc/man/man1/mtx-update.man1.pdf - texmf-dist/doc/man/man1/mtx-watch.1 - texmf-dist/doc/man/man1/mtx-watch.man1.pdf - texmf-dist/doc/man/man1/mtx-youless.1 - texmf-dist/doc/man/man1/mtx-youless.man1.pdf - texmf-dist/doc/man/man1/mtxrun.1 - texmf-dist/doc/man/man1/mtxrun.man1.pdf - texmf-dist/doc/man/man1/texexec.1 - texmf-dist/doc/man/man1/texexec.man1.pdf - texmf-dist/doc/man/man1/texmfstart.1 - texmf-dist/doc/man/man1/texmfstart.man1.pdf -catalogue-ctan /macros/context/current -catalogue-date 2013-04-26 00:38:23 +0200 -catalogue-license other-free - -name context.i386-linux -category Package -revision 34112 -shortdesc i386-linux files of context -binfiles arch=i386-linux size=7 - bin/i386-linux/context - bin/i386-linux/contextjit - bin/i386-linux/luatools - bin/i386-linux/mtxrun - bin/i386-linux/mtxrunjit - bin/i386-linux/texexec - bin/i386-linux/texmfstart +catalogue-ctan /macros/context/contrib/context-title +catalogue-date 2018-08-11 15:27:37 +0200 +catalogue-license gpl +catalogue-topics context name context-transliterator category ConTeXt -revision 29801 -shortdesc Transliterate text from 'other' alphabets. +revision 47085 +shortdesc Transliterate text from 'other' alphabets relocated 1 longdesc The package will read text in one alphabet, and provide a longdesc transliterated version in another; this is useful for readers longdesc who cannot read the original alphabet. The package can make longdesc allowance for hyphenation. depend context +containersize 70668 +containerchecksum d41cd0ebcb99670bd48f8becde633c21401dd9044bbf93618a031da10c59bb8f6d4d6bbc68eecac75965b26f5052f797609d67d791cd7a281f72cd062d3d7388 +doccontainersize 186784 +doccontainerchecksum 4dd501af23511dc81853ddd48ace2aa572c553aea0ba09cf2895b8bd05c4bdf08a6f5e254eab88d4098d441f1d410c0161b1e8b24e3ebf88a38bf364e90b8539 +docfiles size=55 + RELOC/doc/context/third/transliterator/COPYING + RELOC/doc/context/third/transliterator/VERSION + RELOC/doc/context/third/transliterator/transliterator.pdf details="Package documentation" + RELOC/doc/context/third/transliterator/transliterator.tex runfiles size=112 RELOC/tex/context/interface/third/t-transliterator.xml RELOC/tex/context/third/transliterator/t-transliterator.ctl @@ -40957,40 +67225,50 @@ runfiles size=112 RELOC/tex/context/third/transliterator/transliterator.lua RELOC/tex/context/third/transliterator/transliterator.run RELOC/tex/context/third/transliterator/transliterator.tuc -docfiles size=54 - RELOC/doc/context/third/transliterator/COPYING - RELOC/doc/context/third/transliterator/transliterator.pdf - RELOC/doc/context/third/transliterator/transliterator.tex catalogue-ctan /macros/context/contrib/context-transliterator -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license bsd +catalogue-topics enc-juggle name context-typearea category ConTeXt -revision 23167 -shortdesc Something like Koma-Script typearea. +revision 47085 +shortdesc Something like Koma-Script typearea relocated 1 longdesc The module provides a command that calculates the page layout longdesc as the LaTeX package typearea does. depend context +containersize 1796 +containerchecksum c4a2f2317b146b31102273e9b616d403d4ee836a61fae96bd9315670b0bdd5f9d94ecde00b53d2ea5f7073773bd8af5c322b07c3b05bf7ad5262a9f0e0b623a1 +doccontainersize 77364 +doccontainerchecksum 7171bc5c5e82b3897f75421e745e876c2aea84e9e9cb74badd6dedc75666b8f9ddb8b6d11c523ea64be6b57dca4f84555827afa32a0c90f6df1c31b68b1f6395 +docfiles size=22 + RELOC/doc/context/third/typearea/VERSION + RELOC/doc/context/third/typearea/typearea-demo.pdf details="Package demo" + RELOC/doc/context/third/typearea/typearea-doc.pdf details="Package documentation" runfiles size=1 RELOC/tex/context/third/typearea/t-typearea.tex -docfiles size=21 - RELOC/doc/context/third/typearea/typearea-demo.pdf - RELOC/doc/context/third/typearea/typearea-doc.pdf catalogue-ctan /macros/context/contrib/context-typearea -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-08-11 07:01:12 +0200 catalogue-license gpl +catalogue-topics geometry context name context-typescripts category ConTeXt -revision 25411 -shortdesc Small modules to load various fonts for use in ConTeXt. +revision 47085 +shortdesc Small modules to load various fonts for use in ConTeXt relocated 1 longdesc The package provides files offering interfaces to 33 publicly longdesc available fonts (or collections of fonts from the same longdesc foundry); each is available in a .mkii and a .mkiv version. depend context +containersize 9224 +containerchecksum f2d43256997cfba2ab2fe0fc8ebe90a3798bb42e6d455fbe84540654a95fb06a170aa19cf11e4f3477517473b21fc05426247b1f1d39c9132e703c0f1a9a5d0c +doccontainersize 648 +doccontainerchecksum de15432472678cd9c7bdc0e2597f1fe02275fa986767f269fb4237e8d0095a1100908e0b46429741c8ffebfa84fcc27272045314cfc185ccaadf5ffbbe030f69 +docfiles size=2 + RELOC/doc/context/third/typescripts/README details="Readme" + RELOC/doc/context/third/typescripts/VERSION runfiles size=71 RELOC/tex/context/third/typescripts/type-adobe.mkii RELOC/tex/context/third/typescripts/type-adobe.mkiv @@ -41058,16 +67336,15 @@ runfiles size=71 RELOC/tex/context/third/typescripts/type-verajja.mkiv RELOC/tex/context/third/typescripts/type-vollkorn.mkii RELOC/tex/context/third/typescripts/type-vollkorn.mkiv -docfiles size=1 - RELOC/doc/context/third/typescripts/README catalogue-ctan /macros/context/contrib/context-typescripts -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-08-11 07:01:12 +0200 catalogue-license gpl2 +catalogue-topics font-use context name context-vim category ConTeXt -revision 37413 -shortdesc Generate Context syntax highlighting code from vim. +revision 48391 +shortdesc Generate ConTeXt syntax highlighting code from vim relocated 1 longdesc ConTeXt has excellent pretty printing capabilities for many longdesc languages. The code for pretty printing is written in TeX, and @@ -41080,158 +67357,726 @@ longdesc generate the syntax highlighting. There is a helper longdesc 2context.vim script to do the syntax parsing in ViM. depend context-filter depend context +containersize 8104 +containerchecksum 3e32d0132997f21c6cb5d4c5740cd2ef4db3894343196f3cfaa8e046a289082b0b16e811582124e974a93df1606ed4a5b6a1284663eff7524048eef098227593 +doccontainersize 6676 +doccontainerchecksum 01cce32879386b537a83c203c3327dfd0798f75e781c631e24357d290534a657280b009549adac29ebc237ab1bf228a7cc6f513197c5fe8a2f6867c798f44949 +docfiles size=6 + RELOC/doc/context/third/vim/VERSION + RELOC/doc/context/third/vim/vim.txt details="Package usage notes" runfiles size=11 RELOC/tex/context/third/vim/2context.vim RELOC/tex/context/third/vim/t-syntax-groups.tex RELOC/tex/context/third/vim/t-syntax-highlight.mkii RELOC/tex/context/third/vim/t-syntax-highlight.mkiv RELOC/tex/context/third/vim/t-vim.tex -docfiles size=5 - RELOC/doc/context/third/vim/vim.txt +catalogue-also context-filter catalogue-ctan /macros/context/contrib/context-vim -catalogue-date 2014-08-14 15:19:33 +0200 +catalogue-date 2018-08-11 06:19:01 +0200 catalogue-license bsd +catalogue-topics synt-hlt ext-code context name context-visualcounter category ConTeXt -revision 36190 +revision 47085 +shortdesc Visual display of ConTeXt counters relocated 1 +longdesc A typical document usually contains many counters: page +longdesc numbers, section numbers, itemizations, enumerations, theorems, +longdesc and so on. This module provides a visual display for such +longdesc counters. depend context -runfiles size=4 - RELOC/tex/context/third/visualcounter/t-visualcounter.mkvi -docfiles size=67 - RELOC/doc/context/third/visualcounter/visualcounter.pdf +containersize 3992 +containerchecksum da7799ee31a4298f8e8cb02cb4e480fa49fb4188b776df877648c663c93523636bdd7fa6ca5eb403fc8f3483064bf223fed042c1d27eb0817c224ddf8e21c673 +doccontainersize 263536 +doccontainerchecksum 1788355ea4109e7e2bbaa9bbc3798f60a814d549d082638a59a453cc5fb39b54ff8a00471a28a96a5501e91899874ae19981ae0f8a09b6353d19275b851b9f80 +docfiles size=68 + RELOC/doc/context/third/visualcounter/VERSION + RELOC/doc/context/third/visualcounter/visualcounter.pdf details="Package documentation" +srccontainersize 6744 +srccontainerchecksum 39bba551e9f0bb8d70c0b60a2b0fba3d7cad30555d4052fc6ae722bfd9cb79d5cca784474a9f1847faccccb1618662bc4dd2fadd1fdacaf2f4cc9c035b5501ec srcfiles size=7 RELOC/source/context/third/visualcounter/p-documentation.tex RELOC/source/context/third/visualcounter/visualcounter.tex +runfiles size=4 + RELOC/tex/context/third/visualcounter/t-visualcounter.mkvi +catalogue-contact-repository https://github.com/adityam/visualcounter +catalogue-ctan /macros/context/contrib/context-visualcounter +catalogue-date 2018-08-11 15:25:56 +0200 +catalogue-license bsd2 +catalogue-topics context + +name context.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of context +containersize 468 +containerchecksum e9cee1a9fea82e473ee814778942308b955b5e75e892cd464fc317b6012f698a3130aa5a05a227e1dd21ef9cc5a2391b7fb8a4f2cef4ca2b1cd6c53aaed69067 +binfiles arch=aarch64-linux size=7 + bin/aarch64-linux/context + bin/aarch64-linux/contextjit + bin/aarch64-linux/luatools + bin/aarch64-linux/mtxrun + bin/aarch64-linux/mtxrunjit + bin/aarch64-linux/texexec + bin/aarch64-linux/texmfstart + +name context.amd64-freebsd +category Package +revision 34112 +shortdesc amd64-freebsd files of context +containersize 460 +containerchecksum 2f63ad94028aceb15c8da68e64660b555ad16b46c9366605982d1723c1a713bdc505963401f340898abb96eda41fc66e812dede665d374c7f1818adfc5aeeeff +binfiles arch=amd64-freebsd size=7 + bin/amd64-freebsd/context + bin/amd64-freebsd/contextjit + bin/amd64-freebsd/luatools + bin/amd64-freebsd/mtxrun + bin/amd64-freebsd/mtxrunjit + bin/amd64-freebsd/texexec + bin/amd64-freebsd/texmfstart + +name context.amd64-netbsd +category Package +revision 34112 +shortdesc amd64-netbsd files of context +containersize 464 +containerchecksum 6333829aa66af572ca46dbeb7194baa819b61bdee92c459f44a0bccf41ced1073533a48634b8d7b510113fb1d22383ef5b9b388ff44f6be40a03c529b4effc89 +binfiles arch=amd64-netbsd size=7 + bin/amd64-netbsd/context + bin/amd64-netbsd/contextjit + bin/amd64-netbsd/luatools + bin/amd64-netbsd/mtxrun + bin/amd64-netbsd/mtxrunjit + bin/amd64-netbsd/texexec + bin/amd64-netbsd/texmfstart + +name context.armhf-linux +category Package +revision 34112 +shortdesc armhf-linux files of context +containersize 468 +containerchecksum fecdb490311e357fe1e70b5f7cf24534331aa13ae559ab876835bf620cc24aebace0116b182d5af0dfc264c5940223da59f54c9c4b6f49041865b004e5247ecb +binfiles arch=armhf-linux size=7 + bin/armhf-linux/context + bin/armhf-linux/contextjit + bin/armhf-linux/luatools + bin/armhf-linux/mtxrun + bin/armhf-linux/mtxrunjit + bin/armhf-linux/texexec + bin/armhf-linux/texmfstart + +name context.i386-cygwin +category Package +revision 34112 +shortdesc i386-cygwin files of context +containersize 464 +containerchecksum 92e9be45e80960767c1840cdec387a4ea01794a26ece70ded484dea095aa3057a22af3e4b47da55a9298a6bffc18120559822439462c9683bdc8e1926c73d9f3 +binfiles arch=i386-cygwin size=7 + bin/i386-cygwin/context + bin/i386-cygwin/contextjit + bin/i386-cygwin/luatools + bin/i386-cygwin/mtxrun + bin/i386-cygwin/mtxrunjit + bin/i386-cygwin/texexec + bin/i386-cygwin/texmfstart + +name context.i386-freebsd +category Package +revision 34112 +shortdesc i386-freebsd files of context +containersize 472 +containerchecksum cf56ad167df69984888ff5c2ed3e9a7d2b8385432f5242a596b5cd9e52bcbf52fd7872f1762cb0c6d1f8354a1b9df4102c911aea52bce89fc2403fa61cbe7d4c +binfiles arch=i386-freebsd size=7 + bin/i386-freebsd/context + bin/i386-freebsd/contextjit + bin/i386-freebsd/luatools + bin/i386-freebsd/mtxrun + bin/i386-freebsd/mtxrunjit + bin/i386-freebsd/texexec + bin/i386-freebsd/texmfstart + +name context.i386-linux +category Package +revision 34112 +shortdesc i386-linux files of context +containersize 460 +containerchecksum 134f4bf731ee801fd7018100c8453180f339a2180781c85f1e5cd8a9c3d5e6f35b450cc99b77a73e2a9f90ea9027bf6145c429ebf70e59712248940f04c45b9a +binfiles arch=i386-linux size=7 + bin/i386-linux/context + bin/i386-linux/contextjit + bin/i386-linux/luatools + bin/i386-linux/mtxrun + bin/i386-linux/mtxrunjit + bin/i386-linux/texexec + bin/i386-linux/texmfstart + +name context.i386-netbsd +category Package +revision 34112 +shortdesc i386-netbsd files of context +containersize 460 +containerchecksum b046a1f317f91c5a567c5180436147a8221206d0b8364a8a91ba6d19c80b23222b9a2ab379a7715307a9599090905cea8a64bcef24580e240d1d4517d8179acb +binfiles arch=i386-netbsd size=7 + bin/i386-netbsd/context + bin/i386-netbsd/contextjit + bin/i386-netbsd/luatools + bin/i386-netbsd/mtxrun + bin/i386-netbsd/mtxrunjit + bin/i386-netbsd/texexec + bin/i386-netbsd/texmfstart + +name context.i386-solaris +category Package +revision 34112 +shortdesc i386-solaris files of context +containersize 472 +containerchecksum cd261832da8e7c0ad10e9e36d40f7eee5bf55a3f8dfd76a5643efa98dfb70bd668fcd9acdbf6809575a18a8ccf367df4fb87310d7bef61682ea7ebea442057cf +binfiles arch=i386-solaris size=7 + bin/i386-solaris/context + bin/i386-solaris/contextjit + bin/i386-solaris/luatools + bin/i386-solaris/mtxrun + bin/i386-solaris/mtxrunjit + bin/i386-solaris/texexec + bin/i386-solaris/texmfstart + +name context.win32 +category Package +revision 50573 +shortdesc win32 files of context +containersize 133424 +containerchecksum 17e61335ab75e1a97ae9f618e09059ba603bcffc557c59d146bf812649118040d981925891c6ea96b173df8052e1e05e3108cdb3267a0e360aae8a70d43bbc8a +binfiles arch=win32 size=184 + bin/win32/context.exe + bin/win32/contextjit.exe + bin/win32/luatools.exe + bin/win32/mtxrun.dll + bin/win32/mtxrun.exe + bin/win32/mtxrun.lua + bin/win32/mtxrunjit.exe + bin/win32/texexec.exe + bin/win32/texmfstart.exe + +name context.x86_64-cygwin +category Package +revision 34112 +shortdesc x86_64-cygwin files of context +containersize 472 +containerchecksum aeff6ffb44d74d8beabfbc309777fb78c8f2adb38274c9f774ebc42b47ebd90454b7849060665ebc63999811a2011509a1a219f6e7ad0a00364b69e7d8694ed4 +binfiles arch=x86_64-cygwin size=7 + bin/x86_64-cygwin/context + bin/x86_64-cygwin/contextjit + bin/x86_64-cygwin/luatools + bin/x86_64-cygwin/mtxrun + bin/x86_64-cygwin/mtxrunjit + bin/x86_64-cygwin/texexec + bin/x86_64-cygwin/texmfstart + +name context.x86_64-darwin +category Package +revision 34112 +shortdesc x86_64-darwin files of context +containersize 472 +containerchecksum 5fafb5e639ed961cf1d65a5f2f07e42170c7a43f4d03e065cffc211901070f2dc1e91df7606d60c99d45b40d201ccfd27e1867e62266fe9b795b3d023fe0fb3c +binfiles arch=x86_64-darwin size=7 + bin/x86_64-darwin/context + bin/x86_64-darwin/contextjit + bin/x86_64-darwin/luatools + bin/x86_64-darwin/mtxrun + bin/x86_64-darwin/mtxrunjit + bin/x86_64-darwin/texexec + bin/x86_64-darwin/texmfstart + +name context.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of context +containersize 476 +containerchecksum cb79e020b5de95a97ce69fa4170f1efea0fd13212f1dc54a33caff5d9abdd3804d824c0f0adbd3934a17bb5f2ddd0a1a86b839b9b37f11467bb1723bfab5864d +binfiles arch=x86_64-darwinlegacy size=7 + bin/x86_64-darwinlegacy/context + bin/x86_64-darwinlegacy/contextjit + bin/x86_64-darwinlegacy/luatools + bin/x86_64-darwinlegacy/mtxrun + bin/x86_64-darwinlegacy/mtxrunjit + bin/x86_64-darwinlegacy/texexec + bin/x86_64-darwinlegacy/texmfstart + +name context.x86_64-linux +category Package +revision 34112 +shortdesc x86_64-linux files of context +containersize 464 +containerchecksum eeea45be144fd63c2f07615cddf2b52eb8c34160fc0f1fdc27c3697e4cff1f5a72ad6dc1c2a48363067e15fddb00ad7dc7daffde53e60a0d84bd6887d83f4c07 +binfiles arch=x86_64-linux size=7 + bin/x86_64-linux/context + bin/x86_64-linux/contextjit + bin/x86_64-linux/luatools + bin/x86_64-linux/mtxrun + bin/x86_64-linux/mtxrunjit + bin/x86_64-linux/texexec + bin/x86_64-linux/texmfstart + +name context.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of context +containersize 476 +containerchecksum cd6d6eb0c40adabc8faacfd27b159606f9961c8b769cb6969a00df33d2b088e8d611fd54dad140f2aa21cf7a79fb17841776753280f9f45d91cac336a1c79e18 +binfiles arch=x86_64-linuxmusl size=7 + bin/x86_64-linuxmusl/context + bin/x86_64-linuxmusl/contextjit + bin/x86_64-linuxmusl/luatools + bin/x86_64-linuxmusl/mtxrun + bin/x86_64-linuxmusl/mtxrunjit + bin/x86_64-linuxmusl/texexec + bin/x86_64-linuxmusl/texmfstart + +name context.x86_64-solaris +category Package +revision 34112 +shortdesc x86_64-solaris files of context +containersize 460 +containerchecksum d099aae5eb3831e619a2094ec5aac94e03499f68a471f2087e3c7a9c02cf5c8890c71e9a898d11dc814ef7fd4858cd414d75f94492276d9754eaa2bcf926ce7b +binfiles arch=x86_64-solaris size=7 + bin/x86_64-solaris/context + bin/x86_64-solaris/contextjit + bin/x86_64-solaris/luatools + bin/x86_64-solaris/mtxrun + bin/x86_64-solaris/mtxrunjit + bin/x86_64-solaris/texexec + bin/x86_64-solaris/texmfstart + +name continue +category Package +revision 49449 +shortdesc Prints 'continuation' marks on pages of multipage documents +relocated 1 +longdesc This package provides for a variety of continuation indicators +longdesc on pages when the text continues on the following page. The +longdesc default is to only mark odd pages, but all pages can be marked +longdesc and the marking can be stopped or started at any point. +containersize 2960 +containerchecksum 42cda9a2796e9006263320163777df7046a79e38cb2c0ffb53f23c27cc03c686e00e39b066228b09ca99a6e5c2bf4a6cb32d5d7c49b40cf614c542e258968ab9 +doccontainersize 366292 +doccontainerchecksum 0b6bbf7c3123b7e741255bd3ff9e020ec61bcb81a236ddec41e709f14de514057d9b902ad783f48e5c04ba1ca6daee31a38f130649cb0e5b2d548ca9689d5dca +docfiles size=92 + RELOC/doc/latex/continue/README details="Readme" + RELOC/doc/latex/continue/continue.pdf details="Package documentation" + RELOC/doc/latex/continue/trycontinue.pdf + RELOC/doc/latex/continue/trycontinue.tex +srccontainersize 8652 +srccontainerchecksum 790671ec666983e4ff5ff594b7df54cdf7c9d136d57f9004f5400857c3001ffbd3a13a5fc559f3ab75a168c66fc5aa2ee3b5702e5ec417c9a31a1e65d18b801f +srcfiles size=8 + RELOC/source/latex/continue/continue.dtx + RELOC/source/latex/continue/continue.ins +runfiles size=2 + RELOC/tex/latex/continue/continue.sty +catalogue-also fwlw turnthepage +catalogue-ctan /macros/latex/contrib/continue +catalogue-date 2019-01-11 20:04:18 +0100 +catalogue-license lppl1.3 +catalogue-topics layout page-hf +catalogue-version 0.2 name contour category Package revision 18950 -shortdesc Print a coloured contour around text. +shortdesc Print a coloured contour around text relocated 1 longdesc This package generates a coloured contour around a given text longdesc in order to enable printing text over a background without the longdesc need of a coloured box around the text. -runfiles size=7 - RELOC/tex/latex/contour/contour.cfg - RELOC/tex/latex/contour/contour.sty - RELOC/tex/latex/contour/dvips.cnt - RELOC/tex/latex/contour/dvipsone.cnt - RELOC/tex/latex/contour/pdftex.cnt - RELOC/tex/latex/contour/vtex.cnt +containersize 2672 +containerchecksum 0dd4a28f97efcfd0459595776cbab019168fca48984d78f9ec17e0f3af9dbebd378adc6649bce6a9a999651c75316f3ff44e0f10e208465dda2d904d080c41d3 +doccontainersize 153180 +doccontainerchecksum af1c649d2e5666ee3973395babce4802da2154ba95fa7fc08e378c261a8ea1c5be44053c40c5cc1bd0c74e2c54b659470c3d45063fbbd4330cdc5e664f19bff0 docfiles size=49 RELOC/doc/latex/contour/ChangeLog RELOC/doc/latex/contour/Makefile - RELOC/doc/latex/contour/README - RELOC/doc/latex/contour/contour.pdf + RELOC/doc/latex/contour/README details="Package Readme" + RELOC/doc/latex/contour/contour.pdf details="Package documentation" RELOC/doc/latex/contour/contourtest.tex +srccontainersize 6840 +srccontainerchecksum 377b4a92031cd957b15d232cda9e4c2e7488a4c71624eed06dc2edf9dca37afc11e18691650ea377da2dd78b5f636272eeb6d94bebd99ad5ec1ec477f7b65784 srcfiles size=8 RELOC/source/latex/contour/contour.dtx RELOC/source/latex/contour/contour.ins +runfiles size=7 + RELOC/tex/latex/contour/contour.cfg + RELOC/tex/latex/contour/contour.sty + RELOC/tex/latex/contour/dvips.cnt + RELOC/tex/latex/contour/dvipsone.cnt + RELOC/tex/latex/contour/pdftex.cnt + RELOC/tex/latex/contour/vtex.cnt catalogue-ctan /macros/latex/contrib/contour -catalogue-date 2014-07-13 18:58:21 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics decoration colour catalogue-version 2.14 name contracard category Package -revision 31745 -shortdesc Generate calling cards for dances. +revision 50217 +shortdesc Generate calling cards for dances relocated 1 longdesc A package and a class used to typeset traditional country longdesc dances, such as contra and square dances, and to create calling longdesc cards for the same. -runfiles size=1 - RELOC/tex/latex/contracard/contracard.cls -docfiles size=57 +containersize 5288 +containerchecksum 07c77a1e864c012a88be95a98ef662f5642fd63e84801a994be702f5ae2d62100b02e109ba6c775f2c8d11d75627fdef48acdbd55bdb4735896fd945edc4fdc6 +doccontainersize 182428 +doccontainerchecksum 984acf51897209c3bc3fe4760088a6b9cbae613acf51c5f8c848dae3a3d13e5e8171fc62db25dcea267cadaf9f2ba81d221085ae90a7da1fb5e6d0dd8e243f10 +docfiles size=49 RELOC/doc/latex/contracard/LICENSE - RELOC/doc/latex/contracard/Makefile - RELOC/doc/latex/contracard/README - RELOC/doc/latex/contracard/README.md - RELOC/doc/latex/contracard/contracard.lod - RELOC/doc/latex/contracard/contracard.pdf - RELOC/doc/latex/contracard/contracard.sty -srcfiles size=20 + RELOC/doc/latex/contracard/README details="Readme" + RELOC/doc/latex/contracard/contracard.pdf details="Package documentation" +srccontainersize 18312 +srccontainerchecksum 6a0f0536861da9f012b5600fc1c635a9f9124c25b4a5d9544ca00fbc3770760c0d1de77587452d33c254abec3bee6fd923e31f2bd34581c467f15d1d658a9cae +srcfiles size=23 + RELOC/source/latex/contracard/Makefile RELOC/source/latex/contracard/contracard.dtx + RELOC/source/latex/contracard/contracard.ins +runfiles size=8 + RELOC/tex/latex/contracard/contracard.cls + RELOC/tex/latex/contracard/contracard.sty +catalogue-contact-bugs https://github.com/samwhited/contracard/issues +catalogue-contact-repository https://github.com/SamWhited/contracard.git catalogue-ctan /macros/latex/contrib/contracard -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0.1 +catalogue-date 2019-03-03 19:22:34 +0100 +catalogue-license lppl1.3c +catalogue-topics music class +catalogue-version 2.0.0 + +name conv-xkv +category Package +revision 43558 +shortdesc Create new key-value syntax +relocated 1 +longdesc This small package supports key-value syntax other than the +longdesc standard LaTeX syntax of =. Using this package, +longdesc create key-values of the form : or ->, +longdesc for example. The package converts the new notation to xkeyval +longdesc notation and passes it on to xkeyval. +containersize 2408 +containerchecksum 7bbbcfd71a32704f2383289d91fcc1b5993aa9e184f5d974f6dd5592312e85848a926ad9e6f412bef801daa20cc2b9c999ba137b9b24e31facfd6931309630df +doccontainersize 79532 +doccontainerchecksum c1c923008185db09b3e7cfd90bfd9b33ca2a61ccc706b0f9cefb238e0860120da517fdc7166e4fe476a1cc02cb4a7a3fe4c9b81c87c8de25ddd1c0c417dcfca3 +docfiles size=24 + RELOC/doc/latex/conv-xkv/README.md details="Readme" + RELOC/doc/latex/conv-xkv/doc/conv-xkv.pdf details="Package documentation" + RELOC/doc/latex/conv-xkv/examples/convert2xkeyval.tex +srccontainersize 5336 +srccontainerchecksum edd5feac4453010dd996edbb3741339904b0380c021f9429933f6b27df6d9c002d593d617467043ae6087de3c5842fb7a4e8ccfcc95c7763e124ab5f5c9dc024 +srcfiles size=5 + RELOC/source/latex/conv-xkv/conv-xkv.dtx + RELOC/source/latex/conv-xkv/conv-xkv.ins +runfiles size=2 + RELOC/tex/latex/conv-xkv/conv-xkv.sty +catalogue-ctan /macros/latex/contrib/conv-xkv +catalogue-date 2017-03-20 15:11:14 +0100 +catalogue-license lppl1.2 +catalogue-topics macro-supp name convbkmk category Package -revision 35923 -shortdesc Correct platex/uplatex bookmarks in PDF created with hyperref. +revision 49252 +shortdesc Correct platex/uplatex bookmarks in PDF created with hyperref longdesc The package provides a small Ruby script that corrects longdesc bookmarks in PDF files created by platex/uplatex, using longdesc hyperref. depend convbkmk.ARCH +containersize 5812 +containerchecksum 01bb9621459bac7eecc99b1d9aa59de420ba805b2e0ecdb2a89f5c86fa4a3021d957b4ddc69617ea406e77865d68e40c657979c488fc51f4676d084cfe6181cd +doccontainersize 960 +doccontainerchecksum 937d436cb9387eac601883ced516fa40f60e606bb4bae0be62e1ded2a31754a1d00461a34ad533cce1cc48f4d11e880233eaac128d80841e0b22f18801e86506 +docfiles size=1 + texmf-dist/doc/support/convbkmk/README.md details="Readme" runfiles size=4 texmf-dist/scripts/convbkmk/convbkmk.rb -docfiles size=1 - texmf-dist/doc/support/convbkmk/README +catalogue-contact-repository https://github.com/t-tk/convbkmk catalogue-ctan /support/convbkmk -catalogue-date 2014-12-30 10:41:23 +0100 -catalogue-license other-free -catalogue-version 0.10a +catalogue-date 2018-11-25 13:02:44 +0100 +catalogue-license mit +catalogue-topics pdfprocess +catalogue-version 0.30 + +name convbkmk.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of convbkmk +containersize 344 +containerchecksum d771e486462aa7e67b75bfb38f24510091bd03b3721c9812fceef4fd4dc6fa927cf6eac7f23507c115bef93839cc9934fd4f131c2edb0e431b84fc33af7da6b6 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/convbkmk + +name convbkmk.amd64-freebsd +category Package +revision 30408 +shortdesc amd64-freebsd files of convbkmk +containersize 344 +containerchecksum 30e3e0d1b222c9920efe370a53e3adc451449c74c04e7c4a2448e9755dac34ac806b5790dc7013a60d9f946e46886ed30d7d8fa827a6c22322e7ddf9d7facd04 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/convbkmk + +name convbkmk.amd64-netbsd +category Package +revision 30408 +shortdesc amd64-netbsd files of convbkmk +containersize 340 +containerchecksum 38fab2919f05df73da0ba2deb71129d5aa2019c15ee4c2f125e144b5b0e2f8ca7969da11872c509c3636dcfdc530948102461ac69913cbb0b7b0ac4672c96a9e +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/convbkmk + +name convbkmk.armhf-linux +category Package +revision 30476 +shortdesc armhf-linux files of convbkmk +containersize 340 +containerchecksum eb1c2ec03fbd320b2999efe2b0eea3af8ee41b5956130122022444e7bf70efc9cc790297815d97867b66797517fd4b9cae35851c3e5f299d8ee7b61d09249882 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/convbkmk + +name convbkmk.i386-cygwin +category Package +revision 30408 +shortdesc i386-cygwin files of convbkmk +containersize 340 +containerchecksum 5e37da7699c7fc77d81a7eb62b773e8f8dc34640f413dc4db2c720ac7134305009eece97a672f387b154442e59b66726f155264dd54530053d7f68f1c466010a +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/convbkmk + +name convbkmk.i386-freebsd +category Package +revision 30408 +shortdesc i386-freebsd files of convbkmk +containersize 344 +containerchecksum 85f359297544c1d6fcffefeff99eb68391e652da59c9951f3fd52edf3670697a3fdf6e7d10f8c09b2f18ea934506f65fb5b5b700d7ede690675700ec74f0afdb +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/convbkmk name convbkmk.i386-linux category Package revision 30408 shortdesc i386-linux files of convbkmk +containersize 344 +containerchecksum 75a6c3863916a30ff03cbc8a25842a0887718b50b551706047627e4fc3e9bca9eafd1ae165c06171fdaf412dff376aa003edbe87f9711a77f15cb114cd03c1a6 binfiles arch=i386-linux size=1 bin/i386-linux/convbkmk +name convbkmk.i386-netbsd +category Package +revision 30408 +shortdesc i386-netbsd files of convbkmk +containersize 340 +containerchecksum 1a042f1842f59ed7da6ecd6d0dcbaff45a5b858c53e553f29aef2af574c719b581739742eaf66fa19b4b47d7718908763b5e42ef286d0924b72663322a4ac391 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/convbkmk + +name convbkmk.i386-solaris +category Package +revision 30408 +shortdesc i386-solaris files of convbkmk +containersize 340 +containerchecksum b0ecc511b9cf56b76ac82efae21337696b2ffda2bde8d043d36412d1e1cebe4d072e99963941437e9ddb7974c5e12a22b8b9bc791cfa1082f22a6b4a813634e2 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/convbkmk + +name convbkmk.win32 +category Package +revision 26326 +shortdesc win32 files of convbkmk +containersize 684 +containerchecksum 96b29060ff1ee66700757c5acf9015c33099c3ce62c3e1a4e6f45702b4ef235a53a33e4dbb044e1688a8117b90fe38a68d0260a043d806b3c5c70aede403d20c +binfiles arch=win32 size=1 + bin/win32/convbkmk.exe + +name convbkmk.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of convbkmk +containersize 344 +containerchecksum 517dc3424bdd6acd11aadc8eca56f7e7de38bac360f9b7a350be9ccc5f445f93e424d1e35c27cda33579981531dd7ffb37f31a3dcf9a98b9d913571196ec0b60 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/convbkmk + +name convbkmk.x86_64-darwin +category Package +revision 30408 +shortdesc x86_64-darwin files of convbkmk +containersize 344 +containerchecksum 85edd45d415f16c54c9cb648f02ed1140a5f40afd7fcddca43923c19b16f1ae2377cb7be30f0a53fe377adc133ea1ce3eb25844ba8f10c72c3547765f4957fcd +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/convbkmk + +name convbkmk.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of convbkmk +containersize 352 +containerchecksum 11558cc934d677eddc84b4cf8b16ff3deb47cfdcc4088bb986308cc2e92e212132512444b6f44c817b8610a37b3134d74605067676c43cb463a061e506b0ac91 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/convbkmk + +name convbkmk.x86_64-linux +category Package +revision 30408 +shortdesc x86_64-linux files of convbkmk +containersize 340 +containerchecksum 34b6d4a0f85c6683a2ec0f999c82504de73e5499af3135104f6fc9fa796134c2d59ace8cd8672322d16f8542f40c3224b0de3670d920a1631354aff9b206bc67 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/convbkmk + +name convbkmk.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of convbkmk +containersize 348 +containerchecksum 7ae257d42ea015696838747b4a787b703fa8e7b27d211a1987b908a11e5f3441ed9be2e235d2297af764ad0504a6baa929525d1927d2872b428aa668356829dc +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/convbkmk + +name convbkmk.x86_64-solaris +category Package +revision 30408 +shortdesc x86_64-solaris files of convbkmk +containersize 340 +containerchecksum 62905850a2e21d445296fd8d1f2ec9d7168e64468c90c906131b26344e0f97ad69291bb95b41e0960c35e6b7b1c8d99e8fcb705bb8cd53dd7d5ed9973e7ed75b +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/convbkmk + +name cooking +category Package +revision 15878 +shortdesc Typeset recipes +relocated 1 +longdesc The package typesets recipes according to the style used in a +longdesc well-respected German cookery book. +containersize 1744 +containerchecksum 6c2fb1adf244dafa9689844e1283dce19786e2c1df170d4172d3567514555d90adcb82414f79b5d9dcd59cfdd3af5d6893fff57972d6e4fb32196add0ed5b1eb +doccontainersize 59896 +doccontainerchecksum 30cc2a5b4679126cad1b13785081d924f9d455a5f392e5047c14c8ce1dd3efca102bafb74e1a339dd938680f3a95111a7025a31508ea63108eb33cf32b03c9c5 +docfiles size=25 + RELOC/doc/latex/cooking/COPYING + RELOC/doc/latex/cooking/README details="Package Readme" + RELOC/doc/latex/cooking/cooking.pdf details="Package documentation" + RELOC/doc/latex/cooking/kraut.tex +srccontainersize 7608 +srccontainerchecksum 7b935bbf1a7e7dfeed2db1c4725e38a3bf847822dee7da8d6098e7df82b5b5035b47ce3f0b9403dcf35028b319c2661b0bd8288b8a1e80395944532777451bd9 +srcfiles size=7 + RELOC/source/latex/cooking/cooking.dtx + RELOC/source/latex/cooking/cooking.ins +runfiles size=1 + RELOC/tex/latex/cooking/cooking.sty +catalogue-also cuisine +catalogue-ctan /macros/latex/contrib/cooking +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics cooking +catalogue-version 0.9b + +name cooking-units +category Package +revision 48748 +shortdesc Typeset and convert units for cookery books and recipes +relocated 1 +longdesc The package provides commands to typeset amounts and units +longdesc consistently and offers an easy-to-use key-value syntax to +longdesc convert one unit into another (for example 'dag' to 'g'; see +longdesc the documentation for more examples). This packages requires +longdesc expl3 and xparse, translations, xfrac, l3keys2e, and, +longdesc optionally, fmtcount. +containersize 16068 +containerchecksum d37a80797b11767dca8494626e7c7fb7b6a64ef216f2f278935d5d1078547239e05b1d5945d03c1d91e902cf979d492d5586a6d1419df1a17192ce77d4c20d22 +doccontainersize 656020 +doccontainerchecksum 06cfb266d9676148b305bb4e2a6b49c802752195abb4ef7510aa226e10b6d9f804b7e9bf45e8c0ecff19071c1aacd6dbafc9ff89adc55830609ec158a3ef2468 +docfiles size=162 + RELOC/doc/latex/cooking-units/README.md details="Readme" + RELOC/doc/latex/cooking-units/cooking-units.pdf details="Package documentation" +srccontainersize 50748 +srccontainerchecksum 2a3ee2c632a544708b192b260809403bf6a9124c2207babf9dcce20d6b8869d01adb5a37a2644f6263c59d4c67eab11461484d454be67744a8243f6a08f9a4ea +srcfiles size=65 + RELOC/source/latex/cooking-units/cooking-units.dtx + RELOC/source/latex/cooking-units/cooking-units.ins +runfiles size=29 + RELOC/tex/latex/cooking-units/cooking-units.sty +catalogue-contact-repository https://github.com/Vidabe/cooking-units +catalogue-ctan /macros/latex/contrib/cooking-units +catalogue-date 2018-09-24 15:23:01 +0200 +catalogue-license lppl +catalogue-topics cooking units +catalogue-version 1.45 + name cookingsymbols category Package revision 35929 -shortdesc Symbols for recipes. +shortdesc Symbols for recipes relocated 1 longdesc The package provides 11 symbols for typesetting recipes: oven, longdesc gasstove, topheat, fanoven, gloves and dish symbol (among longdesc others). The symbols are defined using Metafont. -runfiles size=5 - RELOC/fonts/source/public/cookingsymbols/cookingsymbols.mf - RELOC/fonts/tfm/public/cookingsymbols/cookingsymbols.tfm - RELOC/tex/latex/cookingsymbols/cookingsymbols.sty +containersize 3584 +containerchecksum 9b43ffdce038ebb001c0ab6198fa2d92ad6f1ec6040f1c315a53fbfd29367e5c851f4015c36b0cdb2eea84f4a8dc90aa3d5126a09f93766d614931bbf555f982 +doccontainersize 378876 +doccontainerchecksum fb6794942d016d12f527b86947c7fae9947a7cf9122a7b26d39bfeb6d5f55a7cccc11b666101b0c80a92c7385ae8305bcb4d792baa0974b738af80697ad12891 docfiles size=101 - RELOC/doc/latex/cookingsymbols/README - RELOC/doc/latex/cookingsymbols/cookingsymbols.pdf + RELOC/doc/latex/cookingsymbols/README details="Readme" + RELOC/doc/latex/cookingsymbols/cookingsymbols.pdf details="Package documentation" +srccontainersize 5616 +srccontainerchecksum b2e8ff3274ffaff3a3f5b3de1ab95a534247878f163cba8cac9af0cb49c59c54f9ac7b362c75dbc394a3c942864b3255ed28310ac5ba842b5b63ea0d0d80f7d5 srcfiles size=5 RELOC/source/latex/cookingsymbols/cookingsymbols.dtx RELOC/source/latex/cookingsymbols/cookingsymbols.ins +runfiles size=5 + RELOC/fonts/source/public/cookingsymbols/cookingsymbols.mf + RELOC/fonts/tfm/public/cookingsymbols/cookingsymbols.tfm + RELOC/tex/latex/cookingsymbols/cookingsymbols.sty catalogue-ctan /macros/latex/contrib/cookingsymbols -catalogue-date 2014-12-28 20:57:45 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-mf font-symbol cooking catalogue-version 1.1 -name cooking +name cool category Package revision 15878 -shortdesc Typeset recipes. +shortdesc COntent-Oriented LaTeX relocated 1 -longdesc The package typesets recipes according to the style used in a -longdesc well-respected German cookery book. -runfiles size=1 - RELOC/tex/latex/cooking/cooking.sty -docfiles size=25 - RELOC/doc/latex/cooking/COPYING - RELOC/doc/latex/cooking/README - RELOC/doc/latex/cooking/cooking.pdf - RELOC/doc/latex/cooking/kraut.tex -srcfiles size=7 - RELOC/source/latex/cooking/cooking.dtx - RELOC/source/latex/cooking/cooking.ins -catalogue-ctan /macros/latex/contrib/cooking -catalogue-date 2011-11-07 08:36:45 +0100 -catalogue-license gpl -catalogue-version 0.9b +longdesc The package (COntent Oriented LaTeX) gives LaTeX the power to +longdesc retain mathematical meaning of its expressions in addition to +longdesc the typsetting instructions; essentially separating style from +longdesc the content of the math. One advantage of keeping mathematical +longdesc meaning is that conversion of LaTeX documents to other +longdesc executable formats (such as Content MathML or Mathematica code) +longdesc is greatly simplified. The package requires the coolstr, +longdesc coollist and forloop packages. +containersize 10204 +containerchecksum ec5b1612484852897856b58bde90aabc3e8c051f6a14674f2bf3a121993ce074214c3d61c7d074dae54e227c759630cff71793ac1ff433b048f3a15f90038c0f +doccontainersize 412164 +doccontainerchecksum bf27e08a04f02f58ffb04ae0fa7b26860ab4129d3de3e2ab20d244a99c96b112a7a3dc10d064a364e38a80c1087ea8c693e7e7538a36975b6914f75418a82547 +docfiles size=143 + RELOC/doc/latex/cool/Content_LaTeX_Package_Demo.pdf details="Tables of macros functions" + RELOC/doc/latex/cool/Content_LaTeX_Package_Demo.tex + RELOC/doc/latex/cool/README details="Package README" + RELOC/doc/latex/cool/cool.pdf details="Implementation details" +srccontainersize 22524 +srccontainerchecksum 1f5b16c0e1d4598ec4f4c5981e079537b0142f92b514d1f3dad567b2a71b02f9be0b3441087d7a973750f308f691270e750d75f669784fa3c787e6bc919d7e68 +srcfiles size=46 + RELOC/source/latex/cool/cool.dtx + RELOC/source/latex/cool/cool.ins +runfiles size=19 + RELOC/tex/latex/cool/cool.sty +catalogue-ctan /macros/latex/contrib/cool +catalogue-date 2018-10-09 06:17:38 +0200 +catalogue-license lgpl +catalogue-topics maths struc-mkup +catalogue-version 1.35 name coollist category Package revision 15878 -shortdesc Manipulate COntent Oriented LaTeX Lists. +shortdesc Manipulate COntent Oriented LaTeX Lists relocated 1 longdesc Lists are defined as a sequence of tokens separated by a comma. longdesc The coollist package allows the user to access certain elements @@ -41239,119 +68084,119 @@ longdesc of the list while neglecting others--essentially turning lists longdesc into a sort of array. List elements are accessed by specifying longdesc the position of the object within the list (the index of the longdesc item). -runfiles size=3 - RELOC/tex/latex/coollist/coollist.sty +containersize 2360 +containerchecksum e7568164dc7d7aa9395cd79e52e4f58b1087d1203d7ad73dca6aefab9222af6875cbacd3270d3ef193416c1b2d893877118c74a206fdc813b3fbd52935ac9d7c +doccontainersize 110360 +doccontainerchecksum 6e183739d0dea5e0da341381c06a671879caf6fc666a74c87b8c3e9df425d3a99cc4ca2f2acb32969cce869a496f0a50bbfbf1351bd71e177b63829bd11aa6ec docfiles size=33 RELOC/doc/latex/coollist/README - RELOC/doc/latex/coollist/coollist.pdf + RELOC/doc/latex/coollist/coollist.pdf details="Package documentation" +srccontainersize 7020 +srccontainerchecksum 5c49e978c7d2ecb73de8a1b5284bbc81c10ed311f67fc2c435d27ebcf048562e2329be02d92cb829ebd497e5cdd11660ec1372bd3256bbce0037766ee8fb647a srcfiles size=9 RELOC/source/latex/coollist/coollist.dtx RELOC/source/latex/coollist/coollist.ins +runfiles size=3 + RELOC/tex/latex/coollist/coollist.sty catalogue-ctan /macros/latex/contrib/coollist -catalogue-date 2012-06-18 20:29:00 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lgpl +catalogue-topics data-manip catalogue-version 1.4 name coolstr category Package revision 15878 -shortdesc String manipulation in LaTeX. +shortdesc String manipulation in LaTeX relocated 1 longdesc Coolstr is a subpackage of the cool bundle that deals with the longdesc manipulation of strings. A string is defined as a sequence of longdesc characters (not tokens). The package provides the ability to longdesc access a specific character of a string, as well as determine longdesc if the string contains numeric or integer data. -runfiles size=3 - RELOC/tex/latex/coolstr/coolstr.sty +containersize 2396 +containerchecksum d4fe8de308d6dd9711f1d877fd1d5ad32f36a4d6cb17480571d88f4b63f9441fb1db217629ddafb25e774bb6d43d148742f9e823e1d43f497a9799b869f90b62 +doccontainersize 116380 +doccontainerchecksum 63c833be3ab646ce509e5082af3d135d81224c7b586f6998e5fc7410f2ed0e52abb05adfb49d78bae721889fc522395b53810e3ee627184de83dddb198cd3083 docfiles size=35 - RELOC/doc/latex/coolstr/README - RELOC/doc/latex/coolstr/coolstr.pdf + RELOC/doc/latex/coolstr/README details="Readme" + RELOC/doc/latex/coolstr/coolstr.pdf details="Package documentation" +srccontainersize 6468 +srccontainerchecksum 69ba696387583767b4c4d0b196c2b37000da16198242ea1ba4e2208fce6dab8eddb2bd40093eb092fe62b3be82aacab4b11ee35e2f94422eb07e0ad489709930 srcfiles size=10 RELOC/source/latex/coolstr/coolstr.dtx RELOC/source/latex/coolstr/coolstr.ins +runfiles size=3 + RELOC/tex/latex/coolstr/coolstr.sty catalogue-ctan /macros/latex/contrib/coolstr -catalogue-date 2012-06-18 20:29:00 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lgpl +catalogue-topics string catalogue-version 2.2 name coolthms category Package revision 29062 -shortdesc Reference items in a theorem environment. +shortdesc Reference items in a theorem environment relocated 1 longdesc The package provides the means to directly reference items of longdesc lists nested in theorem-like environments (e.g., as 'Theorem 1 longdesc a'). The package extends the ntheorem and cleveref packages. longdesc The package also provides other theorem markup commands. -runfiles size=2 - RELOC/tex/latex/coolthms/coolthms.sty +containersize 2624 +containerchecksum 7a9d8f4605a0ff108ef5cb32ef4b6f455d16898248fee534e6557d8323c4378c8299fc1a6d58dd491020090ed4fdd3e41a90de99d18a9d114b72bd57b27b5e7d +doccontainersize 108508 +doccontainerchecksum 2f5ff3ead76bc83138e41ee881713829de7b8b0ecdda353fcbdd9ebdb7851139eb9022fb4eec1a1c03d125f4106ce748123a9d9fcd76859e82158a541aa20aba docfiles size=28 - RELOC/doc/latex/coolthms/README - RELOC/doc/latex/coolthms/coolthms.pdf + RELOC/doc/latex/coolthms/README details="Readme" + RELOC/doc/latex/coolthms/coolthms.pdf details="Package documentation" +srccontainersize 8968 +srccontainerchecksum 088f76522c4576925af08d387ecfd18b4906aa91fa741c4848eed49addb9a9334b3f27de30c516e7a85583a450fcfd0c7054b071bb926eb8f1f9ab54b5791ed0 srcfiles size=9 RELOC/source/latex/coolthms/coolthms.dtx RELOC/source/latex/coolthms/coolthms.ins +runfiles size=2 + RELOC/tex/latex/coolthms/coolthms.sty catalogue-ctan /macros/latex/contrib/coolthms -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics maths-theorem label-ref catalogue-version 1.2 -name cool -category Package -revision 15878 -shortdesc COntent-Oriented LaTeX. -relocated 1 -longdesc The package (COntent Oriented LaTeX) gives LaTeX the power to -longdesc retain mathematical meaning of its expressions in addition to -longdesc the typsetting instructions; essentially separating style from -longdesc the content of the math. One advantage of keeping mathematical -longdesc meaning is that conversion of LaTeX documents to other -longdesc executable formats (such as Content MathML or Mathematica code) -longdesc is greatly simplified. The package requires the coolstr, -longdesc coollist and forloop packages. -runfiles size=19 - RELOC/tex/latex/cool/cool.sty -docfiles size=143 - RELOC/doc/latex/cool/Content_LaTeX_Package_Demo.pdf - RELOC/doc/latex/cool/Content_LaTeX_Package_Demo.tex - RELOC/doc/latex/cool/README - RELOC/doc/latex/cool/cool.pdf -srcfiles size=46 - RELOC/source/latex/cool/cool.dtx - RELOC/source/latex/cool/cool.ins -catalogue-ctan /macros/latex/contrib/cool -catalogue-date 2012-09-07 21:31:32 +0200 -catalogue-license lgpl -catalogue-version 1.35 - name cooltooltips category Package revision 15878 -shortdesc Associate a pop-up window and tooltip with PDF hyperlinks. +shortdesc Associate a pop-up window and tooltip with PDF hyperlinks relocated 1 longdesc The cooltooltips package enables a document to contain longdesc hyperlinks that pop up a brief tooltip when the mouse moves longdesc over them and also open a small window containing additional longdesc text. cooltooltips provides the mechanism used by the Visual longdesc LaTeX FAQ to indicate the question that each hyperlink answers. -runfiles size=2 - RELOC/tex/latex/cooltooltips/cooltooltips.sty +containersize 2432 +containerchecksum c17cb15979b575ece2c16dac8d56991c7cb32d99e165205c099b5058b658c60b393696fee5f7178611d5ccdf1d812522640dee56c1c4c881a73a11edc2ec8799 +doccontainersize 189604 +doccontainerchecksum 6a091ed9c41f4cf31d9db7cb2c1c76a342583f9d568ed89380bb624fba35cb3b788abde47f746b0e8a0402da19171fce72c7f356da2a2e4cb8264452f727eff7 docfiles size=57 - RELOC/doc/latex/cooltooltips/README - RELOC/doc/latex/cooltooltips/cooltooltips.pdf + RELOC/doc/latex/cooltooltips/README details="Readme" + RELOC/doc/latex/cooltooltips/cooltooltips.pdf details="Package documentation" +srccontainersize 9564 +srccontainerchecksum 8aad4d9623d41caee76932db0a9436760ee5aef346c68e393e39fbc1ebdebb643b7b5215c232ef04f7968c34e3d0b73e0f4a23d2e060930d97b3a047d1bce149 srcfiles size=9 RELOC/source/latex/cooltooltips/cooltooltips.dtx RELOC/source/latex/cooltooltips/cooltooltips.ins +runfiles size=2 + RELOC/tex/latex/cooltooltips/cooltooltips.sty catalogue-ctan /macros/latex/contrib/cooltooltips -catalogue-date 2012-11-14 17:49:35 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics pdf-feat catalogue-version 1.0 name coordsys category Package revision 15878 -shortdesc Draw cartesian coordinate systems. +shortdesc Draw cartesian coordinate systems relocated 1 longdesc The package provides commands for typesetting number lines longdesc (coordinate axes), coordinate systems and grids in the picture @@ -41359,25 +68204,33 @@ longdesc environment. The package may be integrated with other drawing longdesc mechanisms: the documentation shows examples of drawing graphs longdesc (coordinate tables created by Maple), using the eepic package's longdesc drawing capabilities. -runfiles size=9 - RELOC/tex/latex/coordsys/coordsys.sty - RELOC/tex/latex/coordsys/logsys.sty +containersize 4560 +containerchecksum 83a57df64b3386b7e927ca30b4b2ea031bd656121dda79dba0f96779e77d733d2293b80a3b08081678bea9b31a31a586123e9866c6aa595561843af3de0cc4f6 +doccontainersize 251112 +doccontainerchecksum bb89a04e5889c39c23ee65c38232cc0be931dff383d52614e290b6bd8ab23e7c9063fd7ea656dde896c08830b8c7c85e1da7f56728fd43a1bedf31bef6ca2e83 docfiles size=87 - RELOC/doc/latex/coordsys/README - RELOC/doc/latex/coordsys/coordsys.pdf + RELOC/doc/latex/coordsys/README details="Bundle Readme" + RELOC/doc/latex/coordsys/coordsys.pdf details="Bundle documentation" RELOC/doc/latex/coordsys/putfile.maple +srccontainersize 24480 +srccontainerchecksum dd03bf08143a43b3486524d4aadac592e3e2264d23aa45fbb499ec7e709edcabd87f66fa38349edd856a09fb6d55ef466d565714045559b9b7f418a7d3eb5acf srcfiles size=29 RELOC/source/latex/coordsys/coordsys.dtx RELOC/source/latex/coordsys/coordsys.ins +runfiles size=9 + RELOC/tex/latex/coordsys/coordsys.sty + RELOC/tex/latex/coordsys/logsys.sty +catalogue-also logsys catalogue-ctan /macros/latex/contrib/coordsys -catalogue-date 2012-06-18 20:29:00 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics graphics-in-tex catalogue-version 1.4 name copyedit category Package revision 37928 -shortdesc Copyediting support for LaTeX documents. +shortdesc Copyediting support for LaTeX documents relocated 1 longdesc This package implements copyediting support for LaTeX longdesc documents. Authors can enjoy the freedom of using, for example, @@ -41391,19 +68244,25 @@ longdesc Hyphenation, and Spaced words Latin abbreviations Acronyms and longdesc Abbreviations Itemization, nonlocal lists and labels longdesc Parenthetical and serial commas Non-local tokenization in longdesc language through Abbreviations and pronouns. -runfiles size=3 - RELOC/tex/latex/copyedit/copyedit.sty +containersize 3560 +containerchecksum 27f48ff201c66d61ed7702b4d11f0d39b0c74974ea3a90506dace0f3cb4ac3c4ee5cac28f9669574184620b3e64a4b9ef3fa5564213e3d200754bbab791e52ea +doccontainersize 309008 +doccontainerchecksum 60fde840ac3c6876f031daf09e852ddf79276d2f841dea2ee5299678bd116df31b2ec2dfa6d6175e45a42fd781be6935cbfa2aab8621af641985e3df2c665fc1 docfiles size=80 - RELOC/doc/latex/copyedit/README - RELOC/doc/latex/copyedit/copyedit.pdf + RELOC/doc/latex/copyedit/README details="Readme" + RELOC/doc/latex/copyedit/copyedit.pdf details="Package documentation" RELOC/doc/latex/copyedit/example/test-copy.pdf RELOC/doc/latex/copyedit/example/test-copy.tex RELOC/doc/latex/copyedit/manifest.txt +srccontainersize 7372 +srccontainerchecksum 7d2bb6e2e8c036345e301d45c03665b6c8ae9dfe91668f354e77e30e2d8a47d1b6db2e7032717c4b04e8e122952b916459b991fc5b566a020262835bcdf6a6fe srcfiles size=7 RELOC/source/latex/copyedit/copyedit.dtx RELOC/source/latex/copyedit/copyedit.ins +runfiles size=3 + RELOC/tex/latex/copyedit/copyedit.sty catalogue-ctan /macros/latex/contrib/copyedit -catalogue-date 2015-07-21 13:44:29 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 catalogue-topics english catalogue-version 1.6 @@ -41411,23 +68270,769 @@ catalogue-version 1.6 name copyrightbox category Package revision 24829 -shortdesc Provide copyright notices for images in a document. +shortdesc Provide copyright notices for images in a document relocated 1 longdesc The package command \copyrightbox[]{}{}, which places the text as a copyright notice longdesc relating to the matter created by the image command. -runfiles size=1 - RELOC/tex/latex/copyrightbox/copyrightbox.sty +containersize 1480 +containerchecksum 2ae2afc738cc906d24fca0a6319c98dc1e9382bbde6db3d0c3a371d3de8b92c30b3bf05be04797bc0ed6d905933a50e74809eed52f06cdba5fc5088be033d4a9 +doccontainersize 1691464 +doccontainerchecksum 9b817f2874a35f3e023774d3be32e0f8bf53a26f9daf553525c95ce0c21a64a22c3a716fb20cdc76921ec90b7b5305f305bf44853cf87d13ac38ce853ca00ea4 docfiles size=765 - RELOC/doc/latex/copyrightbox/README + RELOC/doc/latex/copyrightbox/README details="Readme" RELOC/doc/latex/copyrightbox/coin.jpg - RELOC/doc/latex/copyrightbox/copyrightbox.pdf + RELOC/doc/latex/copyrightbox/copyrightbox.pdf details="Package documentation" RELOC/doc/latex/copyrightbox/copyrightbox.tex +runfiles size=1 + RELOC/tex/latex/copyrightbox/copyrightbox.sty catalogue-ctan /macros/latex/contrib/copyrightbox -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics typesetting catalogue-version 0.1 +name cormorantgaramond +category Package +revision 41865 +shortdesc Cormorant Garamond family of fonts +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Cormorant Garamond family of fonts, designed by +longdesc Christian Thalman of Catharsis Fonts. The family includes +longdesc light, regular, medium, semi-bold and bold weights, with +longdesc italics. +execute addMap CormorantGaramond.map +containersize 5360624 +containerchecksum 52fe57de649743ecbee23bb4ee5cd5402adac950c563006a4f9e5705c7e1ba471d049afa34cf8bc50d2ca95dd765e1244b1d0cf1cf4a84000950d2ef2be1463e +doccontainersize 49164 +doccontainerchecksum 6eca1e0b5f1c5ea83796b9fe23e3c7221e41306f46f201032ddde6206e31881d924211cda0c7ebc16e8a4b93200a528cbe64b2bc2eedb7f0424bf81cfec8f46a +docfiles size=15 + RELOC/doc/fonts/cormorantgaramond/OFL.txt + RELOC/doc/fonts/cormorantgaramond/cormorantgaramond.pdf details="Package documentation" + RELOC/doc/fonts/cormorantgaramond/cormorantgaramond.tex +runfiles size=4370 + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_26xgja.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_3urj7q.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_5bvaob.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_5dp753.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_5eibsx.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_5fi625.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_5iz3qq.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_7cbfyt.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_baamnb.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_bay3j6.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_beooxx.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_bvfij3.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_bya7bs.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_cfmksg.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_d4lowr.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_d5lut3.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_fgdmu7.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_fwfywj.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_g6ttj3.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_g7anru.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_govhzk.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_hku26s.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_hrazmi.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_iergss.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_igtdz2.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_isz43y.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_jzrauo.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_ktrj5x.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_od3ly4.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_pcjf72.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_pgha5c.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_qbhsri.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_qes6gh.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_qnrqqg.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_rdmvvp.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_rqn3dj.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_sowbon.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_tiy3fr.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_tj5gps.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_vh2m2v.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_vuc6nl.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_vvuep5.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_x4eod7.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_xg77ac.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_xj3e4i.enc + RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_zcfdr3.enc + RELOC/fonts/map/dvips/cormorantgaramond/CormorantGaramond.map + RELOC/fonts/opentype/catharsis/cormorantgaramond/CormorantGaramond-Bold.otf + RELOC/fonts/opentype/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic.otf + RELOC/fonts/opentype/catharsis/cormorantgaramond/CormorantGaramond-Light.otf + RELOC/fonts/opentype/catharsis/cormorantgaramond/CormorantGaramond-LightItalic.otf + RELOC/fonts/opentype/catharsis/cormorantgaramond/CormorantGaramond-Medium.otf + RELOC/fonts/opentype/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic.otf + RELOC/fonts/opentype/catharsis/cormorantgaramond/CormorantGaramond-Regular.otf + RELOC/fonts/opentype/catharsis/cormorantgaramond/CormorantGaramond-RegularItalic.otf + RELOC/fonts/opentype/catharsis/cormorantgaramond/CormorantGaramond-SemiBold.otf + RELOC/fonts/opentype/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic.otf + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-inf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-inf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-inf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-sup-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-sup-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-sup-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-inf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-inf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-inf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-lf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-lf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-lf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-lf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-osf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-osf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-osf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-osf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-sup-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-sup-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-sup-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tlf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tosf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-inf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-inf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-inf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-inf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-sup-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-sup-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-sup-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-sup-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-inf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-inf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-inf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-inf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-inf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-inf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-inf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-inf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-sup-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-sup-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-sup-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-inf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-inf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-inf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-inf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-inf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-inf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-inf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-sup-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-sup-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-sup-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-inf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-inf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-inf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-inf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/type1/catharsis/cormorantgaramond/CormorantGaramond-Bold.pfb + RELOC/fonts/type1/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic.pfb + RELOC/fonts/type1/catharsis/cormorantgaramond/CormorantGaramond-Italic.pfb + RELOC/fonts/type1/catharsis/cormorantgaramond/CormorantGaramond-Light.pfb + RELOC/fonts/type1/catharsis/cormorantgaramond/CormorantGaramond-LightItalic.pfb + RELOC/fonts/type1/catharsis/cormorantgaramond/CormorantGaramond-Medium.pfb + RELOC/fonts/type1/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic.pfb + RELOC/fonts/type1/catharsis/cormorantgaramond/CormorantGaramond-Regular.pfb + RELOC/fonts/type1/catharsis/cormorantgaramond/CormorantGaramond-SemiBold.pfb + RELOC/fonts/type1/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic.pfb + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-inf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-lf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-osf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-sup-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-tlf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Bold-tosf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-inf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-lf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-osf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-sup-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Italic-inf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Italic-lf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Italic-lf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Italic-osf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Italic-osf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Italic-sup-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Italic-tlf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Italic-tlf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Italic-tosf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Italic-tosf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-inf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-lf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-osf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-sup-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-tlf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Light-tosf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-inf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-lf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-lf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-osf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-osf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-sup-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tlf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tosf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-inf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-lf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-osf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-sup-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-tlf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Medium-tosf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-inf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-lf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-osf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-sup-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-inf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-lf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-osf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-sup-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-tlf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-Regular-tosf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-inf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-lf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-osf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-sup-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-inf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/catharsis/cormorantgaramond/CormorantGaramond-SemiBoldItalic-tosf-ts1.vf + RELOC/tex/latex/cormorantgaramond/CormorantGaramond.sty + RELOC/tex/latex/cormorantgaramond/LY1CormorantGaramond-Inf.fd + RELOC/tex/latex/cormorantgaramond/LY1CormorantGaramond-LF.fd + RELOC/tex/latex/cormorantgaramond/LY1CormorantGaramond-OsF.fd + RELOC/tex/latex/cormorantgaramond/LY1CormorantGaramond-Sup.fd + RELOC/tex/latex/cormorantgaramond/LY1CormorantGaramond-TLF.fd + RELOC/tex/latex/cormorantgaramond/LY1CormorantGaramond-TOsF.fd + RELOC/tex/latex/cormorantgaramond/OT1CormorantGaramond-Inf.fd + RELOC/tex/latex/cormorantgaramond/OT1CormorantGaramond-LF.fd + RELOC/tex/latex/cormorantgaramond/OT1CormorantGaramond-OsF.fd + RELOC/tex/latex/cormorantgaramond/OT1CormorantGaramond-Sup.fd + RELOC/tex/latex/cormorantgaramond/OT1CormorantGaramond-TLF.fd + RELOC/tex/latex/cormorantgaramond/OT1CormorantGaramond-TOsF.fd + RELOC/tex/latex/cormorantgaramond/T1CormorantGaramond-Inf.fd + RELOC/tex/latex/cormorantgaramond/T1CormorantGaramond-LF.fd + RELOC/tex/latex/cormorantgaramond/T1CormorantGaramond-OsF.fd + RELOC/tex/latex/cormorantgaramond/T1CormorantGaramond-Sup.fd + RELOC/tex/latex/cormorantgaramond/T1CormorantGaramond-TLF.fd + RELOC/tex/latex/cormorantgaramond/T1CormorantGaramond-TOsF.fd + RELOC/tex/latex/cormorantgaramond/TS1CormorantGaramond-LF.fd + RELOC/tex/latex/cormorantgaramond/TS1CormorantGaramond-OsF.fd + RELOC/tex/latex/cormorantgaramond/TS1CormorantGaramond-TLF.fd + RELOC/tex/latex/cormorantgaramond/TS1CormorantGaramond-TOsF.fd +catalogue-ctan /fonts/cormorantgaramond +catalogue-date 2016-08-18 05:23:34 +0200 +catalogue-license ofl +catalogue-topics font font-otf font-serif font-type1 +catalogue-version 3.00 + +name correctmathalign +category Package +revision 44131 +shortdesc Correct spacing of the alignment in expressions +relocated 1 +longdesc This package realigns the horizontal spacing of the alignments +longdesc in some mathematical environments. +containersize 1508 +containerchecksum 5a7e9b3b51ae82980cc1ab9d4ae74aa0b65afa533d21230b1f5e6867bb6464f910a07bb1c38621eb18d8bccd8bc50260b8741752936c310012590706726ed6f2 +doccontainersize 478128 +doccontainerchecksum bc6c9f24a4107d28120e6934f6966b2560ca4c34169b0074023e941746240879bc0572840d3967effd3a1358ef288ac412946f79fd3b40151c1507cba8828be0 +docfiles size=204 + RELOC/doc/latex/correctmathalign/README.md details="Readme" + RELOC/doc/latex/correctmathalign/aligned-org.pdf + RELOC/doc/latex/correctmathalign/correctmathalign.pdf details="Package documentation" + RELOC/doc/latex/correctmathalign/correctmathalign.tex + RELOC/doc/latex/correctmathalign/eqnarray-org.pdf +runfiles size=1 + RELOC/tex/latex/correctmathalign/correctmathalign.sty +catalogue-ctan /macros/latex/contrib/correctmathalign +catalogue-date 2018-01-07 11:56:15 +0100 +catalogue-license bsd +catalogue-topics maths +catalogue-version 1.1 + name coseoul category Package revision 23862 @@ -41437,101 +69042,92 @@ longdesc The package provides "relative" commands that may be used in longdesc place of \chapter, \section, etc. The documentation shows a longdesc number of document-management scenarios in which such commands longdesc are valuable. -runfiles size=1 - RELOC/tex/latex/coseoul/coseoul.sty +containersize 968 +containerchecksum 21524a0721fa26d85b383879cc75600bcd55ee05220eac245171eadc30dea7296731e4d6d2d3d82d10b32f1d674d444bf1df41dd82b92d5cfa7ea06d53f56147 +doccontainersize 155852 +doccontainerchecksum 6e950d1f5129b39de2cfdbf7cc46b101f81336f29325a5e74f58dbb4378dd79189d1e29dd88a9e828fe4e758b6de93e76f70884c9fc582cc8a69f6db1e1f2617 docfiles size=56 - RELOC/doc/latex/coseoul/README - RELOC/doc/latex/coseoul/coseoul.pdf + RELOC/doc/latex/coseoul/README details="Readme" + RELOC/doc/latex/coseoul/coseoul.pdf details="Package documentation" RELOC/doc/latex/coseoul/coseoul.tex RELOC/doc/latex/coseoul/cosexamp.pdf RELOC/doc/latex/coseoul/cosexamp.tex +runfiles size=1 + RELOC/tex/latex/coseoul/coseoul.sty +catalogue-also modular catalogue-ctan /macros/latex/contrib/coseoul -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-05-01 08:28:39 +0200 catalogue-license lppl1.3 +catalogue-topics headings catalogue-version 1.1 name countriesofeurope category Package -revision 26042 -shortdesc A font with the images of the countries of Europe. +revision 49525 +shortdesc A font with the images of the countries of Europe relocated 1 longdesc The bundle provides a font "CountriesOfEurope" (in Adobe Type 1 longdesc format) and the necessary metrics, together with LaTeX macros longdesc for its use. The font provides glyphs with a filled outline of longdesc the shape of each country; each glyph is at the same longdesc cartographic scale. -execute addMap CountriesOfEurope.map -runfiles size=32 - RELOC/dvips/countriesofeurope/config.CountriesOfEurope - RELOC/fonts/afm/public/countriesofeurope/CountriesOfEurope.afm - RELOC/fonts/enc/dvips/countriesofeurope/CountriesOfEurope.enc - RELOC/fonts/map/dvips/countriesofeurope/CountriesOfEurope.map - RELOC/fonts/tfm/public/countriesofeurope/CountriesOfEurope.tfm - RELOC/fonts/type1/public/countriesofeurope/CountriesOfEurope.pfb - RELOC/tex/latex/countriesofeurope/CountriesOfEurope.sty -docfiles size=63 - RELOC/doc/fonts/countriesofeurope/CountriesOfEurope.pdf - RELOC/doc/fonts/countriesofeurope/CountriesOfEurope.tex - RELOC/doc/fonts/countriesofeurope/README +execute addMap CountriesofEurope.map +containersize 219268 +containerchecksum 93e0657d81a7bdebb37a1992a92ba07f369a2d1167155691298edda22187b2d08c018c8e343cbf9467d620f490142056161d0af948bb4a3dcf0d7ef7f1fbfc9f +doccontainersize 78420 +doccontainerchecksum e25d238d37eddb87526d231559ee99fb779ae28b86d03b36cc463f73db3be512377cd36dbc1c9edfbeec86cc5bc5b834f688b0666a3200f039b797b478dda4a3 +docfiles size=23 + RELOC/doc/fonts/countriesofeurope/Changes + RELOC/doc/fonts/countriesofeurope/CountriesofEurope.pdf details="Package documentation" + RELOC/doc/fonts/countriesofeurope/CountriesofEurope.tex + RELOC/doc/fonts/countriesofeurope/README details="Readme" +runfiles size=72 + RELOC/fonts/afm/public/countriesofeurope/CountriesofEurope.afm + RELOC/fonts/enc/dvips/countriesofeurope/CountriesofEurope.enc + RELOC/fonts/map/dvips/countriesofeurope/CountriesofEurope.map + RELOC/fonts/opentype/public/countriesofeurope/CountriesofEurope.otf + RELOC/fonts/tfm/public/countriesofeurope/CountriesofEurope.tfm + RELOC/fonts/type1/public/countriesofeurope/CountriesofEurope.pfb + RELOC/tex/latex/countriesofeurope/CountriesofEurope.sty catalogue-ctan /fonts/countriesofeurope -catalogue-date 2014-04-25 21:03:35 +0200 +catalogue-date 2018-12-28 07:23:42 +0100 catalogue-license lppl -catalogue-version 0.21 +catalogue-topics font font-type1 font-novelty +catalogue-version 0.22 name counttexruns category Package revision 27576 -shortdesc Count compilations of a document. +shortdesc Count compilations of a document relocated 1 longdesc The package counts how often a LaTeX document is compiled, longdesc keeping the data in an external file. To print the count, can longdesc use the macro \thecounttexruns. -runfiles size=1 - RELOC/tex/latex/counttexruns/counttexruns.sty +containersize 908 +containerchecksum 569393d76512308751bff3c5cb22bc11ecee420bb16b5f7d35d6b10beaa02f9c99a4d440e7f3a35bda4e6821405e5f8d621af5af176821549a0e0f0660f998bd +doccontainersize 232164 +doccontainerchecksum 4a67cac01589ae5d3eb61c5c6c66bb38ede138c9c2b56fcb6359c8f851bf55ce3cf2e5662cd7751d6708c86644cb5f607318612b01b60f769858d594c2b24218 docfiles size=58 - RELOC/doc/latex/counttexruns/README - RELOC/doc/latex/counttexruns/counttexruns.pdf + RELOC/doc/latex/counttexruns/README details="Readme" + RELOC/doc/latex/counttexruns/counttexruns.pdf details="Package documentation" +srccontainersize 3280 +srccontainerchecksum ed482becf766081e5cb05affc10c64979e43f9f655074366063b95943229dc9043943422e1063ecf69e5d44659566fb1d0ffddcc27d33eebff9de69f4aa8c7f5 srcfiles size=3 RELOC/source/latex/counttexruns/counttexruns.dtx RELOC/source/latex/counttexruns/counttexruns.ins +runfiles size=1 + RELOC/tex/latex/counttexruns/counttexruns.sty catalogue-ctan /macros/latex/contrib/counttexruns -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics compilation catalogue-version 1.00a -name courier-scaled -category Package -revision 24940 -shortdesc Provides a scaled Courier font. -relocated 1 -longdesc This package sets the default typewriter font to Courier with a -longdesc possible scale factor (in the same way as the helvet package -longdesc for Helvetica works for sans serif). -runfiles size=11 - RELOC/tex/latex/courier-scaled/8rpcrs.fd - RELOC/tex/latex/courier-scaled/couriers.sty - RELOC/tex/latex/courier-scaled/il2pcrs.fd - RELOC/tex/latex/courier-scaled/ly1pcrs.fd - RELOC/tex/latex/courier-scaled/omlpcrs.fd - RELOC/tex/latex/courier-scaled/omspcrs.fd - RELOC/tex/latex/courier-scaled/ot1pcrs.fd - RELOC/tex/latex/courier-scaled/t1pcrs.fd - RELOC/tex/latex/courier-scaled/t5pcrs.fd - RELOC/tex/latex/courier-scaled/ts1pcrs.fd - RELOC/tex/latex/courier-scaled/xl2pcrs.fd -docfiles size=39 - RELOC/doc/fonts/courier-scaled/Couriers.pdf - RELOC/doc/fonts/courier-scaled/Couriers.tex - RELOC/doc/fonts/courier-scaled/README -catalogue-ctan /fonts/psfonts/courier-scaled -catalogue-date 2012-04-27 17:08:26 +0200 -catalogue-license lppl1.2 - name courier category Package revision 35058 catalogue urw-base35 -shortdesc URW "Base 35" font pack for LaTeX. +shortdesc URW "Base 35" font pack for LaTeX relocated 1 longdesc A set of fonts for use as "drop-in" replacements for Adobe's longdesc basic set, comprising: Century Schoolbook (substituting for @@ -41544,6 +69140,8 @@ longdesc Chancery L Medium Italic (substituting for Adobe's Zapf longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). execute addMap ucr.map +containersize 481100 +containerchecksum a7a7350f23921254b9a37e498c2360aeb67d4aa8161072dafa38c941eca35388eaa5d8a341e8b490e783f346ed6b0f4a4d356dd914f70a858c92c76ff1808440 runfiles size=291 RELOC/dvips/courier/config.ucr RELOC/fonts/afm/adobe/courier/pcrb8a.afm @@ -41659,46 +69257,91 @@ runfiles size=291 RELOC/tex/latex/courier/ot1ucr.fd RELOC/tex/latex/courier/t1ucr.fd RELOC/tex/latex/courier/ts1ucr.fd +catalogue-also tex-gyre catalogue-ctan /fonts/urw/base35 -catalogue-date 2014-06-07 20:47:53 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics font font-type1 font-collection + +name courier-scaled +category Package +revision 24940 +shortdesc Provides a scaled Courier font +relocated 1 +longdesc This package sets the default typewriter font to Courier with a +longdesc possible scale factor (in the same way as the helvet package +longdesc for Helvetica works for sans serif). +containersize 2080 +containerchecksum 570256a4353163cba169ac5d649458d363edc5c2836efccff1e7df83c12d9b552978b3531f2ab026430b3222b3dfc00be0e4700031e6bc50bdb60a739a68c9aa +doccontainersize 151604 +doccontainerchecksum 59c5cec8491e678b084afb4c6e63ed07ca179b5f17be8fe581ff341c80b3cee8016601799ada090e1fcde9eeb72197986f3d4aeffa7c7a9d10a014e34282f52a +docfiles size=39 + RELOC/doc/fonts/courier-scaled/Couriers.pdf details="Package documentation" + RELOC/doc/fonts/courier-scaled/Couriers.tex + RELOC/doc/fonts/courier-scaled/README details="Readme" +runfiles size=11 + RELOC/tex/latex/courier-scaled/8rpcrs.fd + RELOC/tex/latex/courier-scaled/couriers.sty + RELOC/tex/latex/courier-scaled/il2pcrs.fd + RELOC/tex/latex/courier-scaled/ly1pcrs.fd + RELOC/tex/latex/courier-scaled/omlpcrs.fd + RELOC/tex/latex/courier-scaled/omspcrs.fd + RELOC/tex/latex/courier-scaled/ot1pcrs.fd + RELOC/tex/latex/courier-scaled/t1pcrs.fd + RELOC/tex/latex/courier-scaled/t5pcrs.fd + RELOC/tex/latex/courier-scaled/ts1pcrs.fd + RELOC/tex/latex/courier-scaled/xl2pcrs.fd +catalogue-ctan /fonts/psfonts/courier-scaled +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.2 +catalogue-topics font-use name courseoutline category Package revision 15878 -shortdesc Prepare university course outlines. +shortdesc Prepare university course outlines relocated 1 longdesc Courseoutline is a class designed to minimise markup in a longdesc tedious task that needs to be repeated often. -runfiles size=3 - RELOC/tex/latex/courseoutline/courseoutline.cls +containersize 3444 +containerchecksum fd3bbcd90570aa1cbfae49fca247d761ac0b886d795fd8097754706b21ab1d6954eb8d8a6c1fb4e69d550e7ec89294fa006f50bab0c7b806c545666eac4915f1 +doccontainersize 2564 +doccontainerchecksum 5a52cabfbc28fe27aa6f85b3653de3ace51b65011ca2e33b56be59854b364319ed8adf95576f8211d9494a367fb637b47fd2805a2663df87103b2d67a168dc13 docfiles size=2 RELOC/doc/latex/courseoutline/Outline.tex +runfiles size=3 + RELOC/tex/latex/courseoutline/courseoutline.cls catalogue-ctan /macros/latex/contrib/courseoutline -catalogue-date 2012-08-26 22:47:29 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics teaching catalogue-version 1.0 name coursepaper category Package revision 15878 -shortdesc Prepare university course papers. +shortdesc Prepare university course papers relocated 1 longdesc Coursepaper is a class with which students can provide simple longdesc course papers, in a uniform design to ease the task of marking. -runfiles size=4 - RELOC/tex/latex/coursepaper/coursepaper.cls +containersize 4532 +containerchecksum bae9e3188a3312f970434b21f23436251dcf8d7b5b2049decf1f95903f5e58ddf9dd328ffc6908c70bec436c9edc3ae62b05d110f42a8ab322eb3f464733ba96 +doccontainersize 1924 +doccontainerchecksum 359ee3956a6da4eb41947db9b5f8dbaac7c13c18ea91afd6d63f738ab43af4c77fd93e9123ecda28b4e2211387c910b7a46b2ccd97edeba70fd6d2852b228094 docfiles size=2 RELOC/doc/latex/coursepaper/coursepaper.tex +runfiles size=4 + RELOC/tex/latex/coursepaper/coursepaper.cls catalogue-ctan /macros/latex/contrib/coursepaper -catalogue-date 2012-08-26 22:47:18 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics essay catalogue-version 2.0 name coverpage category Package revision 15878 -shortdesc Automatic cover page creation for scientific papers. +shortdesc Automatic cover page creation for scientific papers relocated 1 longdesc The package CoverPage was created to supplement scientific longdesc papers with a cover page containing bibliographical @@ -41716,74 +69359,63 @@ longdesc the main document and its page layout. This package requires longdesc four other packages (keyval, url, textcomp, and verbatim), but longdesc all of them are standard packages and should be part of every longdesc LaTeX installation. -runfiles size=3 - RELOC/tex/latex/coverpage/CoverPage.cfg - RELOC/tex/latex/coverpage/CoverPage.sty +containersize 3676 +containerchecksum 6ba22fe89f292ef65ec41a958a93a8ab729954fab33f10677954791bb2be8bcbca71ba4953b6ec47066d3b92e444ebbef9b5f465952076ff0c679706f0ba406a +doccontainersize 280964 +doccontainerchecksum 01346bc57d5742be2196c8768106fc06534ce03571dc1e3e9d48957ba6d0e1a3aab1a4ac070d4e545f058d1b3833e908398fff62d3ce6bd462b927646ff1e60e docfiles size=86 - RELOC/doc/latex/coverpage/CoverPage.pdf - RELOC/doc/latex/coverpage/ECCV06Sample.pdf - RELOC/doc/latex/coverpage/README + RELOC/doc/latex/coverpage/CoverPage.pdf details="Package documentation" + RELOC/doc/latex/coverpage/ECCV06Sample.pdf details="Another sample" + RELOC/doc/latex/coverpage/README details="README file" RELOC/doc/latex/coverpage/SimpleSample.BibTeX.txt - RELOC/doc/latex/coverpage/SimpleSample.pdf + RELOC/doc/latex/coverpage/SimpleSample.pdf details="Simple sample" RELOC/doc/latex/coverpage/SimpleSample.tex +srccontainersize 10320 +srccontainerchecksum cd47f6d17ab585e84244164bed3b905163157e911dec81ddcd630f23f0b520763b9972b3430f25ff4039e27310eac21e6257727aa4544b7a0e40e7020fc72b42 srcfiles size=9 RELOC/source/latex/coverpage/CoverPage.dtx RELOC/source/latex/coverpage/CoverPage.ins +runfiles size=3 + RELOC/tex/latex/coverpage/CoverPage.cfg + RELOC/tex/latex/coverpage/CoverPage.sty catalogue-ctan /macros/latex/contrib/coverpage -catalogue-date 2012-06-18 22:39:13 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics journalpub catalogue-version 1.01 name covington category Package -revision 34064 -shortdesc Linguistic support. +revision 51104 +shortdesc Linguistic support relocated 1 longdesc Numerous minor LaTeX enhancements for linguistics, including -longdesc multiple accents on the same letter, interline glosses (word-by- -longdesc word translations), Discourse Representation Structures, and -longdesc example numbering. -runfiles size=4 - RELOC/tex/latex/covington/covington.sty -docfiles size=119 - RELOC/doc/latex/covington/covington.pdf +longdesc multiple accents on the same letter, interline glosses +longdesc (word-by-word translations), Discourse Representation +longdesc Structures, and example numbering. +containersize 8116 +containerchecksum da4146e3a627e285da4fa2abe19519fb09c99ba56bc7c69f138488b25df63fbd920d8018b60c6394f61f9b8cd2a2533046841ae912e35953fa8603385c1dfa6a +doccontainersize 565932 +doccontainerchecksum eab00ce996f66bbab8a86476537bbf3daa8703257891160492e06f461cb119689b74b7be148e522325a9695e171a0a2ab7430f98cf083ad3ffef4edfd5bb372a +docfiles size=150 + RELOC/doc/latex/covington/README details="Readme" + RELOC/doc/latex/covington/covington.pdf details="Package documentation" language="en" RELOC/doc/latex/covington/covington.tex - RELOC/doc/latex/covington/covingtonGerm.pdf - RELOC/doc/latex/covington/covingtonGerm.tex +runfiles size=8 + RELOC/tex/latex/covington/covington.sty +catalogue-also gb4e +catalogue-contact-bugs https://github.com/jspitz/covington/issues +catalogue-contact-repository https://github.com/jspitz/covington catalogue-ctan /macros/latex/contrib/covington -catalogue-date 2014-05-16 17:18:37 +0200 -catalogue-license pd - -name c-pascal -category Package -revision 18337 -shortdesc Typeset Python, C and Pascal programs. -relocated 1 -longdesc A TeX macro package for easy typesetting programs in Python, C -longdesc and Pascal. Program source files may also be input. -runfiles size=9 - RELOC/tex/generic/c-pascal/cap.tex - RELOC/tex/generic/c-pascal/cap_c.tex - RELOC/tex/generic/c-pascal/cap_comm.tex - RELOC/tex/generic/c-pascal/cap_pas.tex - RELOC/tex/generic/c-pascal/cap_pyt.tex -docfiles size=8 - RELOC/doc/generic/c-pascal/README.eng - RELOC/doc/generic/c-pascal/README.pol - RELOC/doc/generic/c-pascal/demo1.tex - RELOC/doc/generic/c-pascal/demo2.tex - RELOC/doc/generic/c-pascal/prog/fib.py - RELOC/doc/generic/c-pascal/prog/guess.pas - RELOC/doc/generic/c-pascal/prog/sun.c -catalogue-ctan /macros/generic/c_pascal -catalogue-date 2012-05-05 01:04:58 +0200 -catalogue-license pd -catalogue-version 1.2 +catalogue-date 2019-05-12 12:20:27 +0200 +catalogue-license lppl1.3 +catalogue-topics linguistic +catalogue-version 2.1 name cprotect category Package revision 21209 -shortdesc Allow verbatim, etc., in macro arguments. +shortdesc Allow verbatim, etc., in macro arguments relocated 1 longdesc The package defines the macro \cprotect that makes a following longdesc macro proof against verbatim in its argument; as, for example, @@ -41791,42 +69423,1928 @@ longdesc \cprotect\section{\verb"foo"} A similar macro \cprotEnv longdesc (applied to the \begin of an environment) sanitises the longdesc behavior of fragile environments. Moving arguments, and longdesc corresponding "tables of ..." work happily. -runfiles size=3 - RELOC/tex/latex/cprotect/cprotect.sty +containersize 2864 +containerchecksum f4795674aa97744b0d6ed70bcae83a1ce3b41670a1bff2e67d12825154bcfd7eac2a740996bcb4aa0445697a3e4c17ef3d8606b308b7db3aea263269a7e2eb51 +doccontainersize 584752 +doccontainerchecksum e8a5000eb9a538f95bf6df4e2d68ecd8769974192e8181b6eb40e5f48b2cc3a9b9d405d1c7b611e35c41dac5ca5165a503efb7584ee94289ed3255a9482b2b2e docfiles size=155 - RELOC/doc/latex/cprotect/README + RELOC/doc/latex/cprotect/README details="Readme" RELOC/doc/latex/cprotect/README.txt - RELOC/doc/latex/cprotect/cprotect.pdf + RELOC/doc/latex/cprotect/cprotect.pdf details="Package documentation" +srccontainersize 12100 +srccontainerchecksum a9c10d5437f4a9f55680fc3a9841e9dc665b7b642e2831c0bb6239d73ea08312eeae372cf95591d002fa7dd51ae45e7413d9651ea5d60e5837903adf565364e0 srcfiles size=11 RELOC/source/latex/cprotect/cprotect.dtx RELOC/source/latex/cprotect/cprotect.ins +runfiles size=3 + RELOC/tex/latex/cprotect/cprotect.sty catalogue-ctan /macros/latex/contrib/cprotect -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics verbatim catalogue-version 1.0e +name cqubeamer +category Package +revision 47630 +shortdesc LaTeX Beamer Template for Chongqing University +relocated 1 +longdesc This package provides a LaTeX beamer template designed for +longdesc researchers of Chongqing University. It can be used for +longdesc academic reports, conferences, or thesis defense, and can be +longdesc helpful for delivering a speech. It should be used with the +longdesc XeTeX engine. +containersize 3104 +containerchecksum 6dd13c29855533c100146e712431d64e4d55bfe9c49b2199a63f292933e6666c0fcd15e17e56b534e648a64b5117b8bf211a1f0f595d83db54e587977590a2ce +doccontainersize 2510176 +doccontainerchecksum 38cbdd297bf4ff67d0404b75c497416eddaf18d4430ea49af8413ef504e8463a3127e3d42aa12f2920a12d13c03935d6aab5b036d398322428659918b5058444 +docfiles size=787 + RELOC/doc/xelatex/cqubeamer/LICENSE + RELOC/doc/xelatex/cqubeamer/README.md details="Readme" + RELOC/doc/xelatex/cqubeamer/cqubeamer.pdf details="Package documentation" language="zh" + RELOC/doc/xelatex/cqubeamer/cqubeamer.tex + RELOC/doc/xelatex/cqubeamer/demo_code/demo_fontsetting.tex + RELOC/doc/xelatex/cqubeamer/demo_code/demo_format.tex + RELOC/doc/xelatex/cqubeamer/demo_code/demo_layout.tex + RELOC/doc/xelatex/cqubeamer/demo_code/demo_titlepage.tex + RELOC/doc/xelatex/cqubeamer/figure/CQU_Campus_D.jpg + RELOC/doc/xelatex/cqubeamer/figure/Wechat.png + RELOC/doc/xelatex/cqubeamer/figure/go.png + RELOC/doc/xelatex/cqubeamer/logo/cqulogo.pdf + RELOC/doc/xelatex/cqubeamer/logo/cquname.pdf +runfiles size=3 + RELOC/tex/xelatex/cqubeamer/cqubeamer.sty +catalogue-also cquthesis +catalogue-contact-bugs https://github.com/CQUtug/CQUBeamer +catalogue-contact-repository https://github.com/Godblesswz/CQUBeamerTemplate +catalogue-ctan /macros/xetex/latex/cqubeamer +catalogue-date 2018-05-12 04:59:36 +0200 +catalogue-license mitcc-by-4 +catalogue-topics presentation xetex doc-templ chinese +catalogue-version 1.0 + +name cquthesis +category Package +revision 46863 +shortdesc LaTeX Thesis Template for Chongqing University +relocated 1 +longdesc CQUThesis stands for Chongqing University Thesis Template for +longdesc LaTeX, bearing the ability to support bachelor, master, doctor +longdesc dissertations with grace and speed. +containersize 16112 +containerchecksum 25ef18dcaf17fdab6708bc9cb66b13aac4bd62bda6ff571814a2d72ab957f12b24823d6931c81aa7100bbfd88b870da0d483ba1552b75886363fadb068cb887c +doccontainersize 1091424 +doccontainerchecksum e6e1789d8f60b3ae13be99d44d7c74af8c5d16a442ebcccaa17ff40f088e32834b810a986e35283b027e697d036ce68840965fe420bc7d5e894abe7979a20664 +docfiles size=304 + RELOC/doc/latex/cquthesis/CONTRIBUTORS.md + RELOC/doc/latex/cquthesis/Makefile + RELOC/doc/latex/cquthesis/README details="Readme" + RELOC/doc/latex/cquthesis/README-Chinese.md details="Readme (Chinese)" language="zh" + RELOC/doc/latex/cquthesis/contents/ack.tex + RELOC/doc/latex/cquthesis/contents/analysis.tex + RELOC/doc/latex/cquthesis/contents/appendix.tex + RELOC/doc/latex/cquthesis/contents/conclusion.tex + RELOC/doc/latex/cquthesis/contents/cover.tex + RELOC/doc/latex/cquthesis/contents/denotation.tex + RELOC/doc/latex/cquthesis/contents/experiment.tex + RELOC/doc/latex/cquthesis/contents/introduction.tex + RELOC/doc/latex/cquthesis/cquthesis.cwl + RELOC/doc/latex/cquthesis/cquthesis.pdf details="Package documentation" language="zh" + RELOC/doc/latex/cquthesis/dtx-style.sty + RELOC/doc/latex/cquthesis/figures/CQUbadge.pdf + RELOC/doc/latex/cquthesis/figures/README details="Readme" + RELOC/doc/latex/cquthesis/main.tex + RELOC/doc/latex/cquthesis/ref/refs.bib +srccontainersize 30292 +srccontainerchecksum be97186b73fca976b38a4d05a3542bc8db9a36bb587851057a13b8d9bd6cf79b9d2017ce03b1b5afe1a5db61c795b36cb2e419b9ca6cd0e532e6450c2449bbfb +srcfiles size=27 + RELOC/source/latex/cquthesis/cquthesis.dtx + RELOC/source/latex/cquthesis/cquthesis.ins + RELOC/source/latex/cquthesis/makewin-en.bat + RELOC/source/latex/cquthesis/makewin.bat +runfiles size=18 + RELOC/bibtex/bst/cquthesis/cqunumerical.bst + RELOC/tex/latex/cquthesis/cquthesis.cfg + RELOC/tex/latex/cquthesis/cquthesis.cls + RELOC/tex/latex/cquthesis/cquthesis.sty +catalogue-also cqubeamer +catalogue-contact-announce https://github.com/nanmu42/CQUThesis/releases +catalogue-contact-bugs https://github.com/nanmu42/CQUThesis/issues +catalogue-contact-development https://github.com/nanmu42/CQUThesis/blob/master/CONTRIBUTORS.md +catalogue-contact-repository https://github.com/nanmu42/CQUThesis +catalogue-ctan /macros/latex/contrib/cquthesis +catalogue-date 2018-05-06 17:51:43 +0200 +catalogue-license lppl1.3 +catalogue-topics dissertation class chinese +catalogue-version 1.30 + name crbox category Package revision 29803 -shortdesc Boxes with crossed corners. +shortdesc Boxes with crossed corners relocated 1 longdesc The package implements a \crbox command which produces boxes longdesc with crossing lines at the corners. -runfiles size=1 - RELOC/tex/latex/crbox/crbox.sty +containersize 1544 +containerchecksum 087ae9406fd8f6916e355b51d2f4dc7383228813716ab9f6c37714794c931a9b5defa4678a4471523c5fda2c6b0b7784d11dfb488a8d9c60f0244d9d2d64ab2b +doccontainersize 29448 +doccontainerchecksum 8927d6f60a3a895685c679e565632ee2ca68c1f2e8dfd795a481767463d88ec37579bfbd55858ce1e6e433a981de4b5140cf75489221243716cd8035a2967a90 docfiles size=11 - RELOC/doc/latex/crbox/README - RELOC/doc/latex/crbox/crbox-doc.pdf + RELOC/doc/latex/crbox/README details="Readme" + RELOC/doc/latex/crbox/crbox-doc.pdf details="Package documentation" RELOC/doc/latex/crbox/crbox-doc.tex +runfiles size=1 + RELOC/tex/latex/crbox/crbox.sty +catalogue-contact-bugs https://github.com/bidi-tex/crbox/issues +catalogue-contact-repository https://github.com/bidi-tex/crbox catalogue-ctan /macros/latex/contrib/crbox -catalogue-date 2014-09-06 11:10:53 +0200 +catalogue-date 2018-11-28 19:11:53 +0100 catalogue-license lppl +catalogue-topics boxing typesetting decoration catalogue-version 0.1 +name crimson +category Package +revision 43525 +shortdesc Crimson fonts with LaTeX support +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX, and LuaLaTeX +longdesc support for the Crimson family of fonts, designed by Sebastian +longdesc Kosch. The Crimson family is for book production in the +longdesc tradition of beautiful oldstyle typefaces, inspired +longdesc particularly by the work of people like Jan Tschichold (Sabon), +longdesc Robert Slimbach (Arno, Minion), and Jonathan Hoefler (Hoefler +longdesc Text). Support for small caps and old-style numerals is still +longdesc "under construction"; these features are not supported by this +longdesc version of the package. +execute addMap crimson.map +containersize 1383528 +containerchecksum 58708970173456998d07a7953d86b3124a0b97a918910229c0d20a300de688283bdb85b63a7596d2bbf2a6cf5f1069a596e43b29d6fa0c5866ef9b0cc1d01b3e +doccontainersize 34248 +doccontainerchecksum 2fac264b2986a52a739496c907930b6182e56dc24c8b13356d4d564113d6aa019734fb450168122aff2b0f14ecea3d962b4097638277b805d3a13cff5493fa9b +docfiles size=12 + RELOC/doc/fonts/crimson/OFL.txt + RELOC/doc/fonts/crimson/README details="Readme" + RELOC/doc/fonts/crimson/crimson-samples.pdf details="Font samples" + RELOC/doc/fonts/crimson/crimson-samples.tex +runfiles size=655 + RELOC/fonts/enc/dvips/crimson/crm_3bejww.enc + RELOC/fonts/enc/dvips/crimson/crm_axwm4k.enc + RELOC/fonts/enc/dvips/crimson/crm_ayvnmf.enc + RELOC/fonts/enc/dvips/crimson/crm_bchha2.enc + RELOC/fonts/enc/dvips/crimson/crm_fllea6.enc + RELOC/fonts/enc/dvips/crimson/crm_g4bzis.enc + RELOC/fonts/enc/dvips/crimson/crm_izufyi.enc + RELOC/fonts/enc/dvips/crimson/crm_jdlmpi.enc + RELOC/fonts/enc/dvips/crimson/crm_kwsa5r.enc + RELOC/fonts/enc/dvips/crimson/crm_myjoho.enc + RELOC/fonts/enc/dvips/crimson/crm_n3gbj7.enc + RELOC/fonts/enc/dvips/crimson/crm_odbuza.enc + RELOC/fonts/enc/dvips/crimson/crm_ory2k7.enc + RELOC/fonts/enc/dvips/crimson/crm_qrsm2e.enc + RELOC/fonts/enc/dvips/crimson/crm_qst7o4.enc + RELOC/fonts/enc/dvips/crimson/crm_tyw3ea.enc + RELOC/fonts/enc/dvips/crimson/crm_uafi7a.enc + RELOC/fonts/enc/dvips/crimson/crm_ue2axx.enc + RELOC/fonts/enc/dvips/crimson/crm_vcz7kx.enc + RELOC/fonts/enc/dvips/crimson/crm_wef5am.enc + RELOC/fonts/enc/dvips/crimson/crm_wsbs26.enc + RELOC/fonts/enc/dvips/crimson/crm_wttfgh.enc + RELOC/fonts/map/dvips/crimson/crimson.map + RELOC/fonts/opentype/kosch/crimson/Crimson-Bold.otf + RELOC/fonts/opentype/kosch/crimson/Crimson-BoldItalic.otf + RELOC/fonts/opentype/kosch/crimson/Crimson-Italic.otf + RELOC/fonts/opentype/kosch/crimson/Crimson-Roman.otf + RELOC/fonts/opentype/kosch/crimson/Crimson-Semibold.otf + RELOC/fonts/opentype/kosch/crimson/Crimson-SemiboldItalic.otf + RELOC/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-t1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-t1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Roman-tlf-ly1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Roman-tlf-ot1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Roman-tlf-t1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Roman-tlf-t1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Roman-tlf-ts1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Roman-tlf-ts1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Semibold-tlf-ly1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Semibold-tlf-ly1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Semibold-tlf-ot1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Semibold-tlf-t1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Semibold-tlf-t1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Semibold-tlf-ts1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-Semibold-tlf-ts1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-SemiboldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-SemiboldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-SemiboldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-SemiboldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-SemiboldItalic-tlf-t1.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-SemiboldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/kosch/crimson/Crimson-SemiboldItalic-tlf-ts1.tfm + RELOC/fonts/type1/kosch/crimson/Crimson-Bold.pfb + RELOC/fonts/type1/kosch/crimson/Crimson-BoldItalic.pfb + RELOC/fonts/type1/kosch/crimson/Crimson-Italic.pfb + RELOC/fonts/type1/kosch/crimson/Crimson-Roman.pfb + RELOC/fonts/type1/kosch/crimson/Crimson-Semibold.pfb + RELOC/fonts/type1/kosch/crimson/Crimson-SemiboldItalic.pfb + RELOC/fonts/vf/kosch/crimson/Crimson-Bold-tlf-ly1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-Bold-tlf-t1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-Bold-tlf-ts1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-Italic-tlf-ly1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-Italic-tlf-t1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-Italic-tlf-ts1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-Roman-tlf-t1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-Roman-tlf-ts1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-Semibold-tlf-ly1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-Semibold-tlf-t1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-Semibold-tlf-ts1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-SemiboldItalic-tlf-ly1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-SemiboldItalic-tlf-t1.vf + RELOC/fonts/vf/kosch/crimson/Crimson-SemiboldItalic-tlf-ts1.vf + RELOC/tex/latex/crimson/LY1Crimson-TLF.fd + RELOC/tex/latex/crimson/OT1Crimson-TLF.fd + RELOC/tex/latex/crimson/T1Crimson-TLF.fd + RELOC/tex/latex/crimson/TS1Crimson-TLF.fd + RELOC/tex/latex/crimson/crimson.sty +catalogue-also crimsonpro +catalogue-ctan /fonts/crimson +catalogue-date 2018-12-22 13:05:48 +0100 +catalogue-license ofllppl +catalogue-topics font font-serif font-t1enc font-proportional font-otf font-type1 + +name crimsonpro +category Package +revision 49568 +shortdesc CrimsonPro fonts with LaTeX support +relocated 1 +longdesc The CrimsonPro fonts are designed by Jacques Le Bailly and +longdesc derived from the Crimson Text fonts designed by Sebastian +longdesc Kosch. The family includes eight weights and italics for each +longdesc weight. +execute addMap CrimsonPro.map +containersize 2986148 +containerchecksum 641da2816ee065ecb2aeec328f6c2c34099b59ad4c776b16d069ef6a41823a390538c79bd6ea5da5ce5d814afbf54e16b6be13ba150903b1b98879085b3afcab +doccontainersize 35008 +doccontainerchecksum cd3af05a5e25cb9be39b7a482e516d2195fa688f9af9fceb2bd8092b05fb9759fbdb0ce506a16d8f06792a14875a765c6f276e386034a34bad1258dbb703afd2 +docfiles size=12 + RELOC/doc/fonts/crimsonpro/OFL.txt + RELOC/doc/fonts/crimsonpro/README details="Readme" + RELOC/doc/fonts/crimsonpro/crimsonpro-samples.pdf details="Font samples" + RELOC/doc/fonts/crimsonpro/crimsonpro-samples.tex +runfiles size=6517 + RELOC/fonts/enc/dvips/crimsonpro/crp_26fdub.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_27ir52.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_36e4fm.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_3qcve5.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_3wykti.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_4klt2j.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_4netob.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_635enj.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_adnmjt.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_c5x2ld.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_cxrnwq.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_ekytnr.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_fshbks.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_g4frwu.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_hau3x5.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_jps62n.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_lvynmn.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_m2hvgx.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_n7rrsx.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_onibjc.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_owqrxg.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_oxm4ax.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_q32vei.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_tckgju.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_tdvvlu.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_tkiwxq.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_vlqc7k.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_vqpkf5.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_w6wfcd.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_xv7ze7.enc + RELOC/fonts/enc/dvips/crimsonpro/crp_zv5bnh.enc + RELOC/fonts/map/dvips/crimsonpro/CrimsonPro.map + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-lf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-lf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-osf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Black-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-lf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-lf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-osf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-lf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-lf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-osf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-lf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-lf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-osf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-lf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-lf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-osf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Light-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-lf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-lf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-osf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-lf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-lf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-osf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-lf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-lf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-osf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-Black.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-BlackItalic.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-Bold.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-BoldItalic.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-ExtraBold.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-ExtraBoldItalic.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-ExtraLight.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-ExtraLightItalic.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-Italic.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-Light.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-LightItalic.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-Medium.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-MediumItalic.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-Regular.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-SemiBold.ttf + RELOC/fonts/truetype/public/crimsonpro/CrimsonPro-SemiBoldItalic.ttf + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-Black.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-BlackItalic.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-Bold.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-BoldItalic.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-ExtraBold.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-ExtraBoldItalic.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-ExtraLight.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-ExtraLightItalic.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-Italic.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-Light.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-LightItalic.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-Medium.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-MediumItalic.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-Regular.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-SemiBold.pfb + RELOC/fonts/type1/public/crimsonpro/CrimsonPro-SemiBoldItalic.pfb + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-lf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-lf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-lf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-lf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-osf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-osf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-tlf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-tlf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-tlf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-tlf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-tosf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-tosf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Black-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-lf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-lf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-lf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-osf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-osf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-tlf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-tosf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-tosf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BlackItalic-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-lf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-lf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-lf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-lf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-osf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-osf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-tlf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-tlf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-tlf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-tlf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-tosf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-tosf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-lf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-lf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-lf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-osf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-osf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-tlf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-tosf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-tosf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-lf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-lf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-lf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-lf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-osf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-osf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-tlf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-tlf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-tlf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-tlf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-tosf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-tosf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-lf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-lf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-lf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-lf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-osf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-osf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-tlf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-tlf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-tlf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-tlf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-tosf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-tosf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-ExtraLightItalic-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-lf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-lf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-lf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-lf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-osf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-osf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-tlf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-tlf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-tosf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-tosf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-lf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-lf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-lf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-lf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-osf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-osf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-tlf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-tlf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-tlf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-tlf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-tosf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-tosf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Light-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-lf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-lf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-lf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-osf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-osf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-tlf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-tosf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-tosf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-lf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-lf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-lf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-lf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-osf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-osf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-tlf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-tlf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-tlf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-tlf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-tosf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-tosf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Medium-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-lf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-lf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-lf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-osf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-osf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-tlf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-tosf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-tosf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-lf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-lf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-lf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-lf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-osf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-osf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-tlf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-tlf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-tlf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-tlf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-tosf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-tosf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-lf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-lf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-lf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-lf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-osf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-osf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-tlf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-tlf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-tlf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-tlf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-tosf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-tosf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-inf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-titling-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-swash-ly1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-swash-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/crimsonpro/CrimsonPro-SemiBoldItalic-tosf-ts1.vf + RELOC/tex/latex/crimsonpro/CrimsonPro.sty + RELOC/tex/latex/crimsonpro/LY1CrimsonPro-Inf.fd + RELOC/tex/latex/crimsonpro/LY1CrimsonPro-LF.fd + RELOC/tex/latex/crimsonpro/LY1CrimsonPro-OsF.fd + RELOC/tex/latex/crimsonpro/LY1CrimsonPro-Sup.fd + RELOC/tex/latex/crimsonpro/LY1CrimsonPro-TLF.fd + RELOC/tex/latex/crimsonpro/LY1CrimsonPro-TOsF.fd + RELOC/tex/latex/crimsonpro/OT1CrimsonPro-Inf.fd + RELOC/tex/latex/crimsonpro/OT1CrimsonPro-LF.fd + RELOC/tex/latex/crimsonpro/OT1CrimsonPro-OsF.fd + RELOC/tex/latex/crimsonpro/OT1CrimsonPro-Sup.fd + RELOC/tex/latex/crimsonpro/OT1CrimsonPro-TLF.fd + RELOC/tex/latex/crimsonpro/OT1CrimsonPro-TOsF.fd + RELOC/tex/latex/crimsonpro/T1CrimsonPro-Inf.fd + RELOC/tex/latex/crimsonpro/T1CrimsonPro-LF.fd + RELOC/tex/latex/crimsonpro/T1CrimsonPro-OsF.fd + RELOC/tex/latex/crimsonpro/T1CrimsonPro-Sup.fd + RELOC/tex/latex/crimsonpro/T1CrimsonPro-TLF.fd + RELOC/tex/latex/crimsonpro/T1CrimsonPro-TOsF.fd + RELOC/tex/latex/crimsonpro/TS1CrimsonPro-LF.fd + RELOC/tex/latex/crimsonpro/TS1CrimsonPro-OsF.fd + RELOC/tex/latex/crimsonpro/TS1CrimsonPro-TLF.fd + RELOC/tex/latex/crimsonpro/TS1CrimsonPro-TOsF.fd +catalogue-also crimson +catalogue-ctan /fonts/crimsonpro +catalogue-date 2018-12-31 05:48:30 +0100 +catalogue-license ofllppl +catalogue-topics font font-serif font-t1enc font-proportional font-ttf font-type1 + name crop category Package revision 15878 -shortdesc Support for cropmarks. +shortdesc Support for cropmarks relocated 1 longdesc A package providing corner marks for camera alignment as well longdesc as for trimming paper stacks, and additional page information @@ -41837,92 +71355,367 @@ longdesc just colour graphics on a colour laser printer and the rest on longdesc a cheap mono laser printer. A page info line contains the time longdesc and a new cropmarks index and is printed at the top of the longdesc page. A configuration command is provided for the info line -longdesc font. Options for better collaboration with dvips, pdftex and +longdesc font. Options for better collaboration with dvips, pdfTeX and longdesc vtex are provided. -runfiles size=5 - RELOC/tex/latex/crop/crop.sty +containersize 4628 +containerchecksum 6909ec6d94362aca7b0c0a00accba6015f5b30c06bce01acd22b87b2d1550ebb7747013d008b7cc82c4cf0b3f5fe6a6575fcca4ee50707214fcb0e19ed796989 +doccontainersize 195340 +doccontainerchecksum b68db452aca35a90dc77e500df8db574c321c693490abdf9c7135c7457b34b5a42dc32213c5917a2e4ee37252d909315c4e68ff76f3185a9c321eee3bee10a04 docfiles size=61 - RELOC/doc/latex/crop/crop.pdf + RELOC/doc/latex/crop/crop.pdf details="Package documentation" RELOC/doc/latex/crop/crop.txt +srccontainersize 17868 +srccontainerchecksum dde8987ead8158440334e35ce04b10051a3ff2c12ab61f9a3522c0c6d6bf93351e2b9ddfd17d03b8c2c42c0b7204dc3a54b46ad2f486a32374fb6d7a50e60ebc srcfiles size=19 RELOC/source/latex/crop/Makefile RELOC/source/latex/crop/crop.dtx RELOC/source/latex/crop/crop.ins +runfiles size=5 + RELOC/tex/latex/crop/crop.sty +catalogue-also zwpagelayout catalogue-ctan /macros/latex/contrib/crop -catalogue-date 2012-05-05 01:04:58 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics layout-page catalogue-version 1.5 name crossreference category Package revision 15878 -shortdesc Crossreferences within documents. +shortdesc Crossreferences within documents relocated 1 longdesc The package defines cross-references (essentially 'grand' label -longdesc references), which may be listed in a table of cross- -longdesc references. -runfiles size=1 - RELOC/tex/latex/crossreference/crossreference.sty +longdesc references), which may be listed in a table of +longdesc cross-references. +containersize 1580 +containerchecksum e34b4d383b8398880b962cdddf248c95f2bc7187b5ed4f0caf84655a94f92b915906b150ef904c696f49f22ef23c039ee66427a03b1430f7a3d5f619f2a80d01 +doccontainersize 38828 +doccontainerchecksum e21b294ac2b3489cc81ccc99c54bc60985d8769e297f137180a9373ad289248b5d90acf3dd9800d0690907543cf52f0532f6317ef55a43a5b55541805e2be68b docfiles size=17 - RELOC/doc/latex/crossreference/README - RELOC/doc/latex/crossreference/crossreference.pdf + RELOC/doc/latex/crossreference/README details="Readme" + RELOC/doc/latex/crossreference/crossreference.pdf details="Package documentation" RELOC/doc/latex/crossreference/xrefexample.tex +srccontainersize 2748 +srccontainerchecksum ebf66eeddeccc32574b0f6285d655d5e9a00e4c4c6a50c232ecbc438b51e4ac45876e925b41b71717b23004a24680b3302b8a0afb9ba124e279094d705676b2c srcfiles size=4 RELOC/source/latex/crossreference/crossreference.drv RELOC/source/latex/crossreference/crossreference.dtx RELOC/source/latex/crossreference/crossreference.ins +runfiles size=1 + RELOC/tex/latex/crossreference/crossreference.sty catalogue-ctan /macros/latex/contrib/crossreference -catalogue-date 2012-03-07 12:52:16 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics label-ref + +name crossreftools +category Package +revision 49589 +shortdesc Expandable extraction of cleveref data +relocated 1 +longdesc This package extracts information from cross-referencing +longdesc labels, especially those from cleveref, in an expandable +longdesc manner. +containersize 3272 +containerchecksum 9f5426951f7062ac3a850d141aff2031ea2197a97d5e4bf2c2b93fcd2719d5b1d6587b66d51fb258f514423bcb43cc8699b58a74c411824ffe7057cc27d03702 +doccontainersize 356080 +doccontainerchecksum 66597598d04218394abe1762aca2e9ecb25ab25328e9b203bb789459d053ec575f2a7adcc9460b1356d5488b32f2fb8335e8a7554074fb5ab2df810fde2be586 +docfiles size=100 + RELOC/doc/latex/crossreftools/README details="Readme" + RELOC/doc/latex/crossreftools/crossreftools_doc.pdf details="Package documentation" + RELOC/doc/latex/crossreftools/crossreftools_doc.tex + RELOC/doc/latex/crossreftools/crossreftools_driver.pdf + RELOC/doc/latex/crossreftools/crossreftools_driver.tex +runfiles size=4 + RELOC/tex/latex/crossreftools/crossreftools.sty +catalogue-also cleveref +catalogue-contact-home http://www.ich-rede-mich-um-kopf-und-kragen.de +catalogue-ctan /macros/latex/contrib/crossreftools +catalogue-date 2019-01-03 16:16:07 +0100 +catalogue-license lppl1.3 +catalogue-topics label-ref +catalogue-version 0.9 name crossrefware category Package -revision 38181 +revision 47861 shortdesc Scripts for working with crossref.org longdesc This bundle contains the following scripts: bibdoiadd.pl: add longdesc DOI numbers to papers in a given bib file, bibzbladd.pl: add -longdesc Zbl numbers to papers in a given bib file, ltx2crossrefxml.pl: -longdesc a tool for the creation of XML files for submitting to the -longdesc parent site +longdesc Zbl numbers to papers in a given bib file, bibmradd.pl: add MR +longdesc numbers to papers in a given bib file, bbl2bib.pl: convert +longdesc thebibliography environment to a bib file, biburl2doi.pl: +longdesc convert urls pointing to doi.org to dois ltx2crossrefxml.pl: a +longdesc tool for the creation of XML files for submitting to +longdesc crossref.org. The scripts use bibtexperllibs. depend crossrefware.ARCH -runfiles size=9 - texmf-dist/scripts/crossrefware/bibdoiadd.pl - texmf-dist/scripts/crossrefware/bibzbladd.pl - texmf-dist/scripts/crossrefware/ltx2crossrefxml.pl - texmf-dist/tex/latex/crossrefware/bibdoiadd.cfg - texmf-dist/tex/latex/crossrefware/ltx2crossrefxml.cfg -docfiles size=56 +containersize 8984 +containerchecksum 351f123bab2b83614b660959e86573845e32b6ac894ddabf24484cc3bbb68d71fef1e543b4d14a3684804f8b4b8e4a5123c8acc46fd813048320ab50f245475a +doccontainersize 231232 +doccontainerchecksum cef9694f4e984ee077902852143e2c88bb533739c6b53c010eae74c32b486faf7806010beecee49bfce07d5f35270bd312852f6d5701860073854a5fec949125 +docfiles size=88 + texmf-dist/doc/man/man1/bbl2bib.1 + texmf-dist/doc/man/man1/bbl2bib.man1.pdf texmf-dist/doc/man/man1/bibdoiadd.1 texmf-dist/doc/man/man1/bibdoiadd.man1.pdf + texmf-dist/doc/man/man1/bibmradd.1 + texmf-dist/doc/man/man1/bibmradd.man1.pdf + texmf-dist/doc/man/man1/biburl2doi.1 + texmf-dist/doc/man/man1/biburl2doi.man1.pdf texmf-dist/doc/man/man1/bibzbladd.1 texmf-dist/doc/man/man1/bibzbladd.man1.pdf texmf-dist/doc/man/man1/ltx2crossrefxml.1 texmf-dist/doc/man/man1/ltx2crossrefxml.man1.pdf texmf-dist/doc/support/crossrefware/Makefile - texmf-dist/doc/support/crossrefware/README - texmf-dist/doc/support/crossrefware/aomsample.bib + texmf-dist/doc/support/crossrefware/README details="Readme" texmf-dist/doc/support/crossrefware/citations.bib - texmf-dist/doc/support/crossrefware/crossrefware.pdf + texmf-dist/doc/support/crossrefware/crossrefware.pdf details="Package documentation" texmf-dist/doc/support/crossrefware/head.ltx +runfiles size=14 + texmf-dist/scripts/crossrefware/bbl2bib.pl + texmf-dist/scripts/crossrefware/bibdoiadd.pl + texmf-dist/scripts/crossrefware/bibmradd.pl + texmf-dist/scripts/crossrefware/biburl2doi.pl + texmf-dist/scripts/crossrefware/bibzbladd.pl + texmf-dist/scripts/crossrefware/ltx2crossrefxml.pl + texmf-dist/tex/latex/crossrefware/bibdoiadd.cfg + texmf-dist/tex/latex/crossrefware/ltx2crossrefxml.cfg +catalogue-contact-bugs https://github.com/borisveytsman/crossrefware/issues +catalogue-contact-development https://github.com/borisveytsman/crossrefware/pulls +catalogue-contact-repository https://github.com/borisveytsman/crossrefware catalogue-ctan /support/crossrefware -catalogue-date 2015-08-22 05:44:09 +0200 +catalogue-date 2018-05-28 08:15:25 +0200 catalogue-license gpl catalogue-topics bibtex-util -catalogue-version 1.1 + +name crossrefware.aarch64-linux +category Package +revision 46228 +shortdesc aarch64-linux files of crossrefware +containersize 460 +containerchecksum 05a3de4a88472b4b95e7596fccbf314944beb008103e0519b25dbadb2a88817ecd5dfc4dc5069e415dad53e50fe74ef8691c5ab6fd52b2302fd4912045b030f5 +binfiles arch=aarch64-linux size=6 + bin/aarch64-linux/bbl2bib + bin/aarch64-linux/bibdoiadd + bin/aarch64-linux/bibmradd + bin/aarch64-linux/biburl2doi + bin/aarch64-linux/bibzbladd + bin/aarch64-linux/ltx2crossrefxml + +name crossrefware.amd64-freebsd +category Package +revision 45927 +shortdesc amd64-freebsd files of crossrefware +containersize 464 +containerchecksum d6e9cf8e669f8009a15308fd95c58006a1365773f7437362e7ca92e28e00068c0db45e0ec1ee60eaa3bd377e92dd952f21eabc8d9604830d0d871a3212676778 +binfiles arch=amd64-freebsd size=6 + bin/amd64-freebsd/bbl2bib + bin/amd64-freebsd/bibdoiadd + bin/amd64-freebsd/bibmradd + bin/amd64-freebsd/biburl2doi + bin/amd64-freebsd/bibzbladd + bin/amd64-freebsd/ltx2crossrefxml + +name crossrefware.amd64-netbsd +category Package +revision 45927 +shortdesc amd64-netbsd files of crossrefware +containersize 464 +containerchecksum 98b73aeba37d652ddad5f6b46bec910b38023068ec5851f7d746935c65bbbb0059723cf1fa072e0a2147efe528d7146ab5233984ffb921cb3ecc1864d8510adc +binfiles arch=amd64-netbsd size=6 + bin/amd64-netbsd/bbl2bib + bin/amd64-netbsd/bibdoiadd + bin/amd64-netbsd/bibmradd + bin/amd64-netbsd/biburl2doi + bin/amd64-netbsd/bibzbladd + bin/amd64-netbsd/ltx2crossrefxml + +name crossrefware.armhf-linux +category Package +revision 45927 +shortdesc armhf-linux files of crossrefware +containersize 460 +containerchecksum 542e8dbee21ef771eb9cafa2644d395ae7271067f97adeddbb7f50bee15ad050ef86e4d1559157421407c243fa2a33368182ed26d437efb49e46184484169746 +binfiles arch=armhf-linux size=6 + bin/armhf-linux/bbl2bib + bin/armhf-linux/bibdoiadd + bin/armhf-linux/bibmradd + bin/armhf-linux/biburl2doi + bin/armhf-linux/bibzbladd + bin/armhf-linux/ltx2crossrefxml + +name crossrefware.i386-cygwin +category Package +revision 45927 +shortdesc i386-cygwin files of crossrefware +containersize 460 +containerchecksum 52aa1a45cd5606717e86b48513db01043a566de2f95b897d2aa783d475e66cba876d47930dd747759d462e0c8c3f6be9482242fd9558e00274a05ac61de00f07 +binfiles arch=i386-cygwin size=6 + bin/i386-cygwin/bbl2bib + bin/i386-cygwin/bibdoiadd + bin/i386-cygwin/bibmradd + bin/i386-cygwin/biburl2doi + bin/i386-cygwin/bibzbladd + bin/i386-cygwin/ltx2crossrefxml + +name crossrefware.i386-freebsd +category Package +revision 45927 +shortdesc i386-freebsd files of crossrefware +containersize 460 +containerchecksum d9ae309c6cef1521ef112134d639bb14763a1876b27ecde0450edf9a2558dd485cb864f7b0dd17bcae709b381ec60515b34df05ba926ea127af6563306d786cc +binfiles arch=i386-freebsd size=6 + bin/i386-freebsd/bbl2bib + bin/i386-freebsd/bibdoiadd + bin/i386-freebsd/bibmradd + bin/i386-freebsd/biburl2doi + bin/i386-freebsd/bibzbladd + bin/i386-freebsd/ltx2crossrefxml name crossrefware.i386-linux category Package -revision 35401 +revision 45927 shortdesc i386-linux files of crossrefware -binfiles arch=i386-linux size=3 +containersize 460 +containerchecksum 7207b93fbfa32dc3ca49fe21dbaf425f1bccea6a3854e093aedb9d0e94f93d126681ee70512112041d0ca1e234d92a6fef115f37e97c779cecf6a3d800422a53 +binfiles arch=i386-linux size=6 + bin/i386-linux/bbl2bib bin/i386-linux/bibdoiadd + bin/i386-linux/bibmradd + bin/i386-linux/biburl2doi bin/i386-linux/bibzbladd bin/i386-linux/ltx2crossrefxml +name crossrefware.i386-netbsd +category Package +revision 45927 +shortdesc i386-netbsd files of crossrefware +containersize 460 +containerchecksum 8fd42c9e5e2f09d1e0c4101fff6636715e1bdda5d35a7705050949e47721a941c42d673c392c3054d8e7255639ff1ffc059596e06ea94a0389af156be7dced02 +binfiles arch=i386-netbsd size=6 + bin/i386-netbsd/bbl2bib + bin/i386-netbsd/bibdoiadd + bin/i386-netbsd/bibmradd + bin/i386-netbsd/biburl2doi + bin/i386-netbsd/bibzbladd + bin/i386-netbsd/ltx2crossrefxml + +name crossrefware.i386-solaris +category Package +revision 45927 +shortdesc i386-solaris files of crossrefware +containersize 460 +containerchecksum e81e75f423879a94b0e2fe782923686bac25e91e5d79bade566cd86a88a29e0b4f2623b135a1e3ecb594ec099efd98adbef23ab66715921e3c5a0ec59c1a699b +binfiles arch=i386-solaris size=6 + bin/i386-solaris/bbl2bib + bin/i386-solaris/bibdoiadd + bin/i386-solaris/bibmradd + bin/i386-solaris/biburl2doi + bin/i386-solaris/bibzbladd + bin/i386-solaris/ltx2crossrefxml + +name crossrefware.win32 +category Package +revision 45927 +shortdesc win32 files of crossrefware +containersize 824 +containerchecksum 4be206409af49e572a90e2ebd86c3597537bf5d32c841cdb8456713619cf2bcd9eb7c482cf84531da30c9dd9a595fdea0db129e524b9dbfa6ea06d766456ebcd +binfiles arch=win32 size=6 + bin/win32/bbl2bib.exe + bin/win32/bibdoiadd.exe + bin/win32/bibmradd.exe + bin/win32/biburl2doi.exe + bin/win32/bibzbladd.exe + bin/win32/ltx2crossrefxml.exe + +name crossrefware.x86_64-cygwin +category Package +revision 45927 +shortdesc x86_64-cygwin files of crossrefware +containersize 468 +containerchecksum 64bc2cd919ade5a17b07691d733ddf6af6819c9dab24c0a716a5194f68aae11d72db951440ed8f3285d71a6707850962da8736a5d1ec27db854ba98ef7782558 +binfiles arch=x86_64-cygwin size=6 + bin/x86_64-cygwin/bbl2bib + bin/x86_64-cygwin/bibdoiadd + bin/x86_64-cygwin/bibmradd + bin/x86_64-cygwin/biburl2doi + bin/x86_64-cygwin/bibzbladd + bin/x86_64-cygwin/ltx2crossrefxml + +name crossrefware.x86_64-darwin +category Package +revision 45927 +shortdesc x86_64-darwin files of crossrefware +containersize 468 +containerchecksum eedfec8bfa6cbd8a852f166e6fb8d111852e15c44bd250eac51a3c74007c0df452685f44e23c2843fdff375de4afed5a209dc5c0c83e2aa053c48f23da232bd8 +binfiles arch=x86_64-darwin size=6 + bin/x86_64-darwin/bbl2bib + bin/x86_64-darwin/bibdoiadd + bin/x86_64-darwin/bibmradd + bin/x86_64-darwin/biburl2doi + bin/x86_64-darwin/bibzbladd + bin/x86_64-darwin/ltx2crossrefxml + +name crossrefware.x86_64-darwinlegacy +category Package +revision 45927 +shortdesc x86_64-darwinlegacy files of crossrefware +containersize 472 +containerchecksum 1ae714c0654ce8eff46921941d80c6bac27cb527821b2b380d5ffd5c8421f0d61165d339d2cba44ba5b181919d1654b635b17d0f29e4976965da22ab84c1275f +binfiles arch=x86_64-darwinlegacy size=6 + bin/x86_64-darwinlegacy/bbl2bib + bin/x86_64-darwinlegacy/bibdoiadd + bin/x86_64-darwinlegacy/bibmradd + bin/x86_64-darwinlegacy/biburl2doi + bin/x86_64-darwinlegacy/bibzbladd + bin/x86_64-darwinlegacy/ltx2crossrefxml + +name crossrefware.x86_64-linux +category Package +revision 45927 +shortdesc x86_64-linux files of crossrefware +containersize 460 +containerchecksum a45231ddb8da5ac3fa9b40a80e758311b19effb9eb1cffc2443dcad8e26f995c94950868fc130f1e230be0b218b2e3a08fa67bab161b857231d13ec6764231c5 +binfiles arch=x86_64-linux size=6 + bin/x86_64-linux/bbl2bib + bin/x86_64-linux/bibdoiadd + bin/x86_64-linux/bibmradd + bin/x86_64-linux/biburl2doi + bin/x86_64-linux/bibzbladd + bin/x86_64-linux/ltx2crossrefxml + +name crossrefware.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of crossrefware +containersize 468 +containerchecksum bbcb2b6c68df0b5d5b4c9b5282432287722b9cd379f1657a4b95c980de37439394db235d1f7145c896ea90dd774c29361a9c0091c8ce41a677a8719da20d59fc +binfiles arch=x86_64-linuxmusl size=6 + bin/x86_64-linuxmusl/bbl2bib + bin/x86_64-linuxmusl/bibdoiadd + bin/x86_64-linuxmusl/bibmradd + bin/x86_64-linuxmusl/biburl2doi + bin/x86_64-linuxmusl/bibzbladd + bin/x86_64-linuxmusl/ltx2crossrefxml + +name crossrefware.x86_64-solaris +category Package +revision 45927 +shortdesc x86_64-solaris files of crossrefware +containersize 468 +containerchecksum 0c870349083477fbb1201b718c4c7eaef0bce37e3beb280dfe1bbf9b0089b87360be1c195da25aae12ea0d354c3bd5b28967d739e7e42ae74f172f752fbc6e14 +binfiles arch=x86_64-solaris size=6 + bin/x86_64-solaris/bbl2bib + bin/x86_64-solaris/bibdoiadd + bin/x86_64-solaris/bibmradd + bin/x86_64-solaris/biburl2doi + bin/x86_64-solaris/bibzbladd + bin/x86_64-solaris/ltx2crossrefxml + name crossword category Package revision 32657 -shortdesc Typeset crossword puzzles. +shortdesc Typeset crossword puzzles relocated 1 longdesc An extended grid-based puzzle package, designed to take all longdesc input (both grid and clues) from the same file. The package can @@ -41940,33 +71733,43 @@ longdesc separated by thick lines. Input to the package is somewhat longdesc redundant: specification of the grid is separate from longdesc specification of the clues (if they're necessary). The author longdesc considers this style both 'natural' and robust. -runfiles size=3 - RELOC/tex/latex/crossword/cwpuzzle.sty +containersize 4232 +containerchecksum e55390ea7eb83686bc49e1f33fd4df2e7b977e031fa6d42e3d18d2cb5b9f34905aa4c43f173ad6745e98683376eb5ad4fae1a8344355b272f0b4b8096b1521ce +doccontainersize 338260 +doccontainerchecksum 121e26265895e99dd00dc84ef8b1ba9f4b6917ccbfafa6a35d1f6b81b42c70153bed17790eb6e2d4a5a4fcd8c5cf2e03f5b6e458a2b125a2b7a0f0292bb24947 docfiles size=91 RELOC/doc/latex/crossword/Makefile - RELOC/doc/latex/crossword/README - RELOC/doc/latex/crossword/cwpuzzle.pdf + RELOC/doc/latex/crossword/README details="Package Readme" + RELOC/doc/latex/crossword/cwpuzzle.pdf details="Package documentation" +srccontainersize 15664 +srccontainerchecksum 91f7fc2a78a83eb404aa11a95f941f81f10da9a908a8ca4f554b5ed496435cca615ce69d9e608c59a025b51243e6c1bf14ea69c896d944a757e1c1cb470e831e srcfiles size=20 RELOC/source/latex/crossword/cwpuzzle.dtx RELOC/source/latex/crossword/cwpuzzle.ins +runfiles size=3 + RELOC/tex/latex/crossword/cwpuzzle.sty +catalogue-also crosswrd catalogue-ctan /macros/latex/contrib/gene/crossword -catalogue-date 2014-10-16 15:17:19 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics games cwpuzzle catalogue-version 1.9 name crosswrd category Package revision 16896 -shortdesc Macros for typesetting crossword puzzles. +shortdesc Macros for typesetting crossword puzzles relocated 1 longdesc The package provides a LaTeX method of typesetting crosswords, longdesc and assists the composer ensure that the grid all goes together longdesc properly. Brian Hamilton Kelly's original was written for LaTeX longdesc 2.09, and needed to be updated to run with current LaTeX. -runfiles size=3 - RELOC/tex/latex/crosswrd/crosswrd.sty +containersize 3616 +containerchecksum 889334e046aa6371df566c814faa98fdf4931c85be3d49e04d932f02bb71bffaa929614398469be04bf6426ec05ccbfcdbe0ad9798017f9504fba5f3781521e6 +doccontainersize 215628 +doccontainerchecksum 0d4d1e8c1577ee23f7fc60ab8c106121978e986945b8dd399faef4ca55e60a7ed3ba65220ef56ad11b7a100690f89692f0c1ad80c845e2aa04d81c8664a6cd27 docfiles size=66 - RELOC/doc/latex/crosswrd/README + RELOC/doc/latex/crosswrd/README details="Readme" RELOC/doc/latex/crosswrd/crosswrd.pdf RELOC/doc/latex/crosswrd/grid0.tex RELOC/doc/latex/crosswrd/grid1.tex @@ -41974,354 +71777,87 @@ docfiles size=66 RELOC/doc/latex/crosswrd/test0.tex RELOC/doc/latex/crosswrd/test1.tex RELOC/doc/latex/crosswrd/test2.tex +srccontainersize 19500 +srccontainerchecksum edb2825137c510f1ed32b9380b3e59ac492a76ed35d2a1b16ef486a8287338c1afd8b26cee9d1ae447eff3dd12de14cd7f75d97db74ef5f084286c7f5cd8478c srcfiles size=17 RELOC/source/latex/crosswrd/crosswrd.dtx RELOC/source/latex/crosswrd/crosswrd.ins +runfiles size=3 + RELOC/tex/latex/crosswrd/crosswrd.sty catalogue-ctan /macros/latex/contrib/crosswrd -catalogue-date 2014-01-13 10:33:20 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics games cwpuzzle catalogue-version 3.0 name cryptocode category Package -revision 37019 -shortdesc Typesetting pseudocode, protocols, game-based proofs and black-box reductions in cryptography. -relocated 1 -longdesc The cryptocode bundle provides commands for easily typesetting -longdesc pseudocode and simple protocols as well as environments for -longdesc visualizing game-based proofs and black-box reductions as often -longdesc used within the cryptographic community. -runfiles size=17 - RELOC/tex/latex/cryptocode/cryptocode.sty -docfiles size=250 - RELOC/doc/latex/cryptocode/README - RELOC/doc/latex/cryptocode/cryptocode.pdf +revision 49131 +shortdesc Typesetting pseudocode, protocols, game-based proofs and black-box reductions in cryptography +relocated 1 +longdesc The cryptocode package provides a set of macros to ease the +longdesc typesetting of pseudocode, algorithms and protocols. In +longdesc addition it comes with a wide range of tools to typeset +longdesc cryptographic papers. This includes simple predefined commands +longdesc for concepts such as a security parameter or advantage terms +longdesc but also flexible and powerful environments to layout +longdesc game-based proofs or black-box reductions. +containersize 14516 +containerchecksum b15b76169656d91a366e17fc832f0b661e0bd31e2d8f61e2431d3e7adab66b24c145c2e84e4c9f9aa8dfbe27655b37c657765e549e04f9de447c5c6cefe38480 +doccontainersize 662880 +doccontainerchecksum 0245804ad3761368a634d7b062a02e5a073ed91499c3792f82670ea6ed18f6790f74d23e5ff4770c1c3af64b3a90d9f3d59ebe88828496ae19fb517dfca1e0f4 +docfiles size=272 + RELOC/doc/latex/cryptocode/README details="Readme" + RELOC/doc/latex/cryptocode/cryptocode.pdf details="Package documentation" RELOC/doc/latex/cryptocode/cryptocode.tex +runfiles size=19 + RELOC/tex/latex/cryptocode/cryptocode.sty catalogue-ctan /macros/latex/contrib/cryptocode -catalogue-date 2015-04-23 07:14:29 +0200 +catalogue-date 2018-11-11 20:45:37 +0100 catalogue-license lppl1.3 -catalogue-version 0.1 +catalogue-topics pseudocode +catalogue-version 0.3.0 name cryst category Package revision 15878 -shortdesc Font for graphical symbols used in crystallography. +shortdesc Font for graphical symbols used in crystallography relocated 1 longdesc The font is provided as an Adobe Type 1 font, and as Metafont longdesc source. Instructions for use are available both in the README longdesc file and (with a font diagram) in the documentation. +containersize 35496 +containerchecksum 49e1c9d0cb6909e421446230bf71123fa71b4aad1d90b1c7614fc465651f701d91f576c2edd8b6840d1c78dfa5557cd604e61a5e745e1ccb2f60bde9e66117ed +doccontainersize 31468 +doccontainerchecksum 55c765a9a4799f719383473700a0ef5627ec8873fc9fbd4ffd191d205d24b29d57255d90687176789240a3c4a547a3a57ed341a0558d99aa01dbcff0fc7dffc1 +docfiles size=13 + RELOC/doc/latex/cryst/README details="Readme" + RELOC/doc/latex/cryst/cryst1.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/cryst/cryst1.tex runfiles size=23 RELOC/fonts/afm/public/cryst/cryst.afm RELOC/fonts/source/public/cryst/cryst.mf RELOC/fonts/tfm/public/cryst/cryst.tfm RELOC/fonts/type1/public/cryst/cryst.pfb -docfiles size=13 - RELOC/doc/latex/cryst/README - RELOC/doc/latex/cryst/cryst1.pdf - RELOC/doc/latex/cryst/cryst1.tex catalogue-ctan /fonts/cryst -catalogue-date 2014-04-24 00:33:23 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-type1 font-mf font-symbol -name csbulletin +name cs category Package -revision 15878 -shortdesc LaTeX class for articles submitted to the CSTUG Bulletin (Zpravodaj). -relocated 1 -longdesc The package provides the class for articles for the CSTUG -longdesc Bulletin (Zpravodaj Ceskoslovenskeho sdruzeni uzivatelu TeXu). -longdesc You can see the structure of a document by looking to the -longdesc source file of the manual. -runfiles size=5 - RELOC/tex/latex/csbulletin/csbulacronym.sty - RELOC/tex/latex/csbulletin/csbulletin.cls -docfiles size=70 - RELOC/doc/latex/csbulletin/LICENSE.txt - RELOC/doc/latex/csbulletin/README - RELOC/doc/latex/csbulletin/csbulletin.pdf - RELOC/doc/latex/csbulletin/csbulletin.tex -catalogue-ctan /macros/latex/contrib/csbulletin -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 - -name cslatex -category Package -revision 28596 -shortdesc LaTeX support for Czech/Slovak typesetting. -depend latex -depend cslatex.ARCH -execute AddFormat name=cslatex engine=pdftex options="-etex cslatex.ini" -execute AddFormat name=pdfcslatex engine=pdftex options="-etex cslatex.ini" -runfiles size=46 - texmf-dist/tex/cslatex/base/cslatex.ini - texmf-dist/tex/cslatex/base/czech.sty - texmf-dist/tex/cslatex/base/fonttext.cfg - texmf-dist/tex/cslatex/base/hyphen.cfg - texmf-dist/tex/cslatex/base/il2cmdh.fd - texmf-dist/tex/cslatex/base/il2cmfib.fd - texmf-dist/tex/cslatex/base/il2cmfr.fd - texmf-dist/tex/cslatex/base/il2cmr.fd - texmf-dist/tex/cslatex/base/il2cmss.fd - texmf-dist/tex/cslatex/base/il2cmtt.fd - texmf-dist/tex/cslatex/base/il2cmvtt.fd - texmf-dist/tex/cslatex/base/il2enc.def - texmf-dist/tex/cslatex/base/il2lcmss.fd - texmf-dist/tex/cslatex/base/il2lcmtt.fd - texmf-dist/tex/cslatex/base/slovak.sty - texmf-dist/tex/cslatex/cspsfonts/cspsfont.il2 - texmf-dist/tex/cslatex/cspsfonts/cspsfont.tex - texmf-dist/tex/cslatex/cspsfonts/cspsfont.xl2 - texmf-dist/tex/cslatex/cspsfonts/il2pag.fd - texmf-dist/tex/cslatex/cspsfonts/il2pbk.fd - texmf-dist/tex/cslatex/cspsfonts/il2pcr.fd - texmf-dist/tex/cslatex/cspsfonts/il2phv.fd - texmf-dist/tex/cslatex/cspsfonts/il2phvn.fd - texmf-dist/tex/cslatex/cspsfonts/il2pnc.fd - texmf-dist/tex/cslatex/cspsfonts/il2ppl.fd - texmf-dist/tex/cslatex/cspsfonts/il2ptm.fd - texmf-dist/tex/cslatex/cspsfonts/il2pzc.fd - texmf-dist/tex/cslatex/cspsfonts/nhelvet.sty - texmf-dist/tex/cslatex/cspsfonts/ntimes.sty - texmf-dist/tex/cslatex/cspsfonts/xl2pag.fd - texmf-dist/tex/cslatex/cspsfonts/xl2pbk.fd - texmf-dist/tex/cslatex/cspsfonts/xl2pcr.fd - texmf-dist/tex/cslatex/cspsfonts/xl2phv.fd - texmf-dist/tex/cslatex/cspsfonts/xl2phvn.fd - texmf-dist/tex/cslatex/cspsfonts/xl2pnc.fd - texmf-dist/tex/cslatex/cspsfonts/xl2ppl.fd - texmf-dist/tex/cslatex/cspsfonts/xl2ptm.fd - texmf-dist/tex/cslatex/cspsfonts/xl2pzc.fd -srcfiles size=26 - texmf-dist/source/cslatex/base/cslatex.dtx - texmf-dist/source/cslatex/base/cslatex.ins - texmf-dist/source/cslatex/cspsfonts/cspsfont.doc - texmf-dist/source/cslatex/cspsfonts/cspsfont.drv -catalogue-ctan /macros/cstex/base/cslatex.tar.gz -catalogue-date 2012-04-25 13:09:32 +0200 -catalogue-license gpl - -name cslatex.i386-linux -category Package -revision 3006 -shortdesc i386-linux files of cslatex -binfiles arch=i386-linux size=2 - bin/i386-linux/cslatex - bin/i386-linux/pdfcslatex - -name csplain -category Package -revision 38351 -shortdesc Plain TeX multilanguage support -longdesc CSplain is a small extension of basic Plain TeX macros, the -longdesc formats csplain and pdfcsplain can be generated. It supports: -longdesc hyphenation of words for 50+ languages, simple and powerfull -longdesc font loading system (various sizes of fonts), tex, pdftex, -longdesc xetex and luatex engines, math fonts simply loaded with full -longdesc amstex-like features, three internal encodings (IL2 for -longdesc Czech/Slovak languages, T1 for many languages with latin -longdesc alphabet and Unicode in new TeX engines), natural UTF-8 input -longdesc in pdfTeX using encTeX without any active characters, Czech and -longdesc Slovak special typesetting features. An important part of the -longdesc package is OPmac, which implements most of LaTeX's features -longdesc (sectioning, font selection, color, hyper reference and urls, -longdesc bibliography, index, toc, tables,etc.) by Plain TeX macros. The -longdesc OPmac macros can generate and bibliography without any external -longdesc program. -depend tex -depend csplain.ARCH -execute AddFormat name=csplain engine=pdftex options="-etex -enc csplain-utf8.ini" -execute AddFormat name=pdfcsplain engine=pdftex options="-etex -enc csplain-utf8.ini" -execute AddFormat name=pdfcsplain engine=xetex options="-etex csplain.ini" -execute AddFormat name=pdfcsplain engine=luatex options="-etex csplain.ini" -runfiles size=170 - texmf-dist/tex/csplain/base/csenc-k.tex - texmf-dist/tex/csplain/base/csenc-p.tex - texmf-dist/tex/csplain/base/csenc-u.tex - texmf-dist/tex/csplain/base/csenc-w.tex - texmf-dist/tex/csplain/base/cseplain.ini - texmf-dist/tex/csplain/base/csfonts.tex - texmf-dist/tex/csplain/base/csfontsm.tex - texmf-dist/tex/csplain/base/csplain-utf8.ini - texmf-dist/tex/csplain/base/csplain.ini - texmf-dist/tex/csplain/base/czhyphen.ex - texmf-dist/tex/csplain/base/czhyphen.tex - texmf-dist/tex/csplain/base/extcode.tex - texmf-dist/tex/csplain/base/fonttabs.tex - texmf-dist/tex/csplain/base/hyphen.ex - texmf-dist/tex/csplain/base/hyphen.lan - texmf-dist/tex/csplain/base/il2code.tex - texmf-dist/tex/csplain/base/luaplain.ini - texmf-dist/tex/csplain/base/plaina4.tex - texmf-dist/tex/csplain/base/skhyphen.ex - texmf-dist/tex/csplain/base/skhyphen.tex - texmf-dist/tex/csplain/base/t1code.tex - texmf-dist/tex/csplain/base/t1enc-u.tex - texmf-dist/tex/csplain/base/ucode.tex - texmf-dist/tex/csplain/base/uni-lcuc.tex - texmf-dist/tex/csplain/base/xeplain.ini - texmf-dist/tex/csplain/fonts/ams-math.tex - texmf-dist/tex/csplain/fonts/cavantga.tex - texmf-dist/tex/csplain/fonts/cbookman.tex - texmf-dist/tex/csplain/fonts/chars-8z.tex - texmf-dist/tex/csplain/fonts/chelvet.tex - texmf-dist/tex/csplain/fonts/cncent.tex - texmf-dist/tex/csplain/fonts/cpalatin.tex - texmf-dist/tex/csplain/fonts/cs-adventor.tex - texmf-dist/tex/csplain/fonts/cs-all.tex - texmf-dist/tex/csplain/fonts/cs-antt.tex - texmf-dist/tex/csplain/fonts/cs-arev.tex - texmf-dist/tex/csplain/fonts/cs-bera.tex - texmf-dist/tex/csplain/fonts/cs-bonum.tex - texmf-dist/tex/csplain/fonts/cs-charter.tex - texmf-dist/tex/csplain/fonts/cs-cursor.tex - texmf-dist/tex/csplain/fonts/cs-heros.tex - texmf-dist/tex/csplain/fonts/cs-pagella.tex - texmf-dist/tex/csplain/fonts/cs-polta.tex - texmf-dist/tex/csplain/fonts/cs-schola.tex - texmf-dist/tex/csplain/fonts/cs-termes.tex - texmf-dist/tex/csplain/fonts/ctimes.tex - texmf-dist/tex/csplain/fonts/cyrchars.tex - texmf-dist/tex/csplain/fonts/dcfonts.tex - texmf-dist/tex/csplain/fonts/ecfonts.tex - texmf-dist/tex/csplain/fonts/exchars.tex - texmf-dist/tex/csplain/fonts/lmfonts.tex - texmf-dist/tex/csplain/fonts/luafonts.tex - texmf-dist/tex/csplain/fonts/ntx-math.tex - texmf-dist/tex/csplain/fonts/tx-math.tex - texmf-dist/tex/csplain/fonts/unifam.tex - texmf-dist/tex/csplain/opmac/op-example.bib - texmf-dist/tex/csplain/opmac/opmac-bib-iso690.tex - texmf-dist/tex/csplain/opmac/opmac-bib-simple.tex - texmf-dist/tex/csplain/opmac/opmac-bib.tex - texmf-dist/tex/csplain/opmac/opmac-xetex.tex - texmf-dist/tex/csplain/opmac/opmac.tex - texmf-dist/tex/csplain/opmac/pdfuni.tex -catalogue-ctan /macros/cstex/base/csplain.tar.gz -catalogue-date 2015-08-03 05:43:12 +0200 -catalogue-license other-free -catalogue-topics czech slovak format - -name csplain.i386-linux -category Package -revision 33902 -shortdesc i386-linux files of csplain -binfiles arch=i386-linux size=2 - bin/i386-linux/csplain - bin/i386-linux/pdfcsplain - -name csquotes-de -category Package -revision 23371 -shortdesc German translation of csquotes documentation. -relocated 1 -longdesc This is a translation of the documentation of csquotes version -longdesc 5.1. -docfiles size=143 - RELOC/doc/latex/csquotes-de/LIESMICH - RELOC/doc/latex/csquotes-de/csquotes-DE.pdf - RELOC/doc/latex/csquotes-de/csquotes-DE.tex -catalogue-ctan /info/translations/csquotes/de -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.01 - -name csquotes -category Package -revision 37891 -shortdesc Context sensitive quotation facilities. -relocated 1 -longdesc This package provides advanced facilities for inline and -longdesc display quotations. It is designed for a wide range of tasks -longdesc ranging from the most simple applications to the more complex -longdesc demands of formal quotations. The facilities include commands, -longdesc environments, and user-definable 'smart quotes' which -longdesc dynamically adjust to their context. Quotation marks are -longdesc switched automatically if quotations are nested and they can be -longdesc adjusted to the current language if the babel package is -longdesc available. There are additional facilities designed to cope -longdesc with the more specific demands of academic writing, especially -longdesc in the humanities and the social sciences. All quote styles as -longdesc well as the optional active quotes are freely configurable. The -longdesc package is dependent on e-TeX, and requires the author's -longdesc etoolbox package. -runfiles size=24 - RELOC/tex/latex/csquotes/csq-compat.def - RELOC/tex/latex/csquotes/csquotes.cfg - RELOC/tex/latex/csquotes/csquotes.def - RELOC/tex/latex/csquotes/csquotes.sty -docfiles size=102 - RELOC/doc/latex/csquotes/README - RELOC/doc/latex/csquotes/RELEASE - RELOC/doc/latex/csquotes/csquotes.pdf - RELOC/doc/latex/csquotes/csquotes.tex -catalogue-ctan /macros/latex/contrib/csquotes -catalogue-date 2015-07-18 08:29:15 +0200 -catalogue-license lppl1.3 -catalogue-topics quote-marks -catalogue-version 5.1f - -name cstex -category Package -revision 36259 -shortdesc Support for Czech/Slovak languages. -relocated 1 -longdesc This package mirrors the macros part of the home site's -longdesc distribution of CSTeX. The licence (modified GPL) applies to -longdesc some of the additions that make it a Czech/Slovak language -longdesc distribution, rather than the distribution of a basic -longdesc Plain/LaTeX distribution. -docfiles size=1134 - RELOC/doc/cstex/00-README-cslatex - RELOC/doc/cstex/INSTALL.cslatex - RELOC/doc/cstex/README-csplain - RELOC/doc/cstex/README-cspsfont - RELOC/doc/cstex/README-doc - RELOC/doc/cstex/README-opmac - RELOC/doc/cstex/README.cslatex - RELOC/doc/cstex/cspsfonts-gen/README - RELOC/doc/cstex/cspsfonts-gen/fontgen - RELOC/doc/cstex/cspsfonts-gen/kernoff.c - RELOC/doc/cstex/cspsfonts-gen/mkf - RELOC/doc/cstex/cspsfonts-gen/mkfc - RELOC/doc/cstex/cspsfonts-gen/xl2.enc - RELOC/doc/cstex/cspsfonts-gen/xt2.enc - RELOC/doc/cstex/cstexman.pdf - RELOC/doc/cstex/cstexman.tex - RELOC/doc/cstex/jemny.errata - RELOC/doc/cstex/jemny.pdf - RELOC/doc/cstex/jemny.tar.gz - RELOC/doc/cstex/lic-gpl.eng - RELOC/doc/cstex/opmac-d.tex - RELOC/doc/cstex/opmac-u-en.pdf - RELOC/doc/cstex/opmac-u-en.tex - RELOC/doc/cstex/opmac-u.pdf - RELOC/doc/cstex/opmac-u.tex - RELOC/doc/cstex/pdfuni-article.pdf - RELOC/doc/cstex/pdfuni-article.tex - RELOC/doc/cstex/prvni.pdf - RELOC/doc/cstex/prvni.tex - RELOC/doc/cstex/test8z.pdf - RELOC/doc/cstex/test8z.tex - RELOC/doc/cstex/testgyre8z.pdf - RELOC/doc/cstex/testgyre8z.tex - RELOC/doc/cstex/testlat.tex - RELOC/doc/cstex/zmeny.txt -catalogue-ctan /macros/cstex -catalogue-date 2013-11-21 20:02:41 +0100 -catalogue-license other-free - -name cs -category Package -revision 33941 -catalogue csfonts -shortdesc Czech/Slovak-tuned Computer Modern fonts. +revision 41553 +catalogue csfonts +shortdesc Czech/Slovak-tuned Computer Modern fonts relocated 1 longdesc The fonts are provided as Metafont source; Type 1 format longdesc versions (csfonts-t1) are also available. +depend cmexb execute addMap cs-charter.map execute addMap csfonts.map -runfiles size=918 +containersize 1798840 +containerchecksum bc956c595d4460f35c64c92e7730a7cc9cd3af95301afba56c49bcf8415666863de926733409ce1afd99ba767fe3a3fa45c68f2dcc912b69c6f72b618289fb30 +runfiles size=919 RELOC/fonts/enc/dvips/cs/xl2.enc RELOC/fonts/enc/dvips/cs/xl2f.enc RELOC/fonts/enc/dvips/cs/xt2.enc @@ -42722,44 +72258,788 @@ runfiles size=918 RELOC/fonts/vf/cs/cs-charter/bchbi8z.vf RELOC/fonts/vf/cs/cs-charter/bchr8z.vf RELOC/fonts/vf/cs/cs-charter/bchri8z.vf +catalogue-contact-home http://petr.olsak.net/cstex/ catalogue-ctan /macros/cstex/base/csfonts.tar.gz -catalogue-date 2014-04-24 13:39:23 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license gpl +catalogue-topics czech slovak font font-mf + +name csbulletin +category Package +revision 49681 +shortdesc LaTeX class for articles submitted to the CSTUG Bulletin (Zpravodaj) +relocated 1 +longdesc The package provides the class for articles for the CSTUG +longdesc Bulletin (Zpravodaj Ceskoslovenskeho sdruzeni uzivatelu TeXu). +longdesc You can see the structure of a document by looking at the +longdesc source file of the manual. +containersize 12956 +containerchecksum 730ca61f0678ab2dfe4aca6be57b64cf6944ec018a7154f25c565687c29cc746b9cbd508ea01600a1d17f31850dd2bd047ebd47788997cd244e8f74199a96d68 +doccontainersize 271880 +doccontainerchecksum b9581a3d257647ddbdb583c5327e1e6dbbb52c8bc3153e115dcbcc6047fc2146ee0b62271727826f608d70f9d1a1b25e844c6f772c12ce6b8c38e1cf32015303 +docfiles size=72 + RELOC/doc/latex/csbulletin/LICENSE.txt + RELOC/doc/latex/csbulletin/README details="Readme" + RELOC/doc/latex/csbulletin/csbulletin.pdf details="Package manual" + RELOC/doc/latex/csbulletin/csbulletin.tex +runfiles size=13 + RELOC/tex/latex/csbulletin/csbulacronym.sty + RELOC/tex/latex/csbulletin/csbulletin.cls + RELOC/tex/latex/csbulletin/csbulobalka.cls + RELOC/tex/latex/csbulletin/csbulobalka.sty + RELOC/tex/latex/csbulletin/csbulv1.cls +catalogue-ctan /macros/latex/contrib/csbulletin +catalogue-date 2019-01-12 11:49:08 +0100 +catalogue-license lppl1.3 +catalogue-topics journalpub class +catalogue-version 1.2 + +name cslatex +category Package +revision 50602 +shortdesc LaTeX support for Czech/Slovak typesetting +depend latex +depend cm +depend csplain +depend hyphen-base +depend latex-fonts +depend tex-ini-files +depend cslatex.ARCH +execute AddFormat name=cslatex engine=pdftex options="-etex cslatex.ini" fmttriggers=cm,csplain,hyphen-base,latex-fonts,latex +execute AddFormat name=pdfcslatex engine=pdftex options="-etex cslatex.ini" fmttriggers=cm,csplain,hyphen-base,latex-fonts,latex,tex-ini-files +containersize 12696 +containerchecksum d0a3ebaea7659e4f1b53aef42b9a8361e215083fd7d669b0a119ba744ddfb1afc79d5b25d7fa94082085dadf1d7d7da5981e485246c28c4708b82c40e0ad00dd +doccontainersize 18948 +doccontainerchecksum 9a8bab74f51651b732bd155b386f69ea8b0aededb0ac29226d6aee2bc3547c5157d0150a854987dd5f9f8a001a7191509340c9dbffdc02bd7c01de47fa80f7c1 +docfiles size=14 + texmf-dist/doc/man/man1/cslatex.1 + texmf-dist/doc/man/man1/cslatex.man1.pdf + texmf-dist/doc/man/man1/pdfcslatex.1 + texmf-dist/doc/man/man1/pdfcslatex.man1.pdf +srccontainersize 24036 +srccontainerchecksum c982e771c3db5b91806faf9976dde51499af9ab6c7afa81cbbaad04dd8808ba07e8c1dd683af77fe112237fe2868f73520a464bbe72fa1762ab6ccc0e8e4cdb5 +srcfiles size=26 + texmf-dist/source/cslatex/base/cslatex.dtx + texmf-dist/source/cslatex/base/cslatex.ins + texmf-dist/source/cslatex/cspsfonts/cspsfont.doc + texmf-dist/source/cslatex/cspsfonts/cspsfont.drv +runfiles size=46 + texmf-dist/tex/cslatex/base/cslatex.ini + texmf-dist/tex/cslatex/base/czech.sty + texmf-dist/tex/cslatex/base/fonttext.cfg + texmf-dist/tex/cslatex/base/hyphen.cfg + texmf-dist/tex/cslatex/base/il2cmdh.fd + texmf-dist/tex/cslatex/base/il2cmfib.fd + texmf-dist/tex/cslatex/base/il2cmfr.fd + texmf-dist/tex/cslatex/base/il2cmr.fd + texmf-dist/tex/cslatex/base/il2cmss.fd + texmf-dist/tex/cslatex/base/il2cmtt.fd + texmf-dist/tex/cslatex/base/il2cmvtt.fd + texmf-dist/tex/cslatex/base/il2enc.def + texmf-dist/tex/cslatex/base/il2lcmss.fd + texmf-dist/tex/cslatex/base/il2lcmtt.fd + texmf-dist/tex/cslatex/base/slovak.sty + texmf-dist/tex/cslatex/cspsfonts/cspsfont.il2 + texmf-dist/tex/cslatex/cspsfonts/cspsfont.tex + texmf-dist/tex/cslatex/cspsfonts/cspsfont.xl2 + texmf-dist/tex/cslatex/cspsfonts/il2pag.fd + texmf-dist/tex/cslatex/cspsfonts/il2pbk.fd + texmf-dist/tex/cslatex/cspsfonts/il2pcr.fd + texmf-dist/tex/cslatex/cspsfonts/il2phv.fd + texmf-dist/tex/cslatex/cspsfonts/il2phvn.fd + texmf-dist/tex/cslatex/cspsfonts/il2pnc.fd + texmf-dist/tex/cslatex/cspsfonts/il2ppl.fd + texmf-dist/tex/cslatex/cspsfonts/il2ptm.fd + texmf-dist/tex/cslatex/cspsfonts/il2pzc.fd + texmf-dist/tex/cslatex/cspsfonts/nhelvet.sty + texmf-dist/tex/cslatex/cspsfonts/ntimes.sty + texmf-dist/tex/cslatex/cspsfonts/xl2pag.fd + texmf-dist/tex/cslatex/cspsfonts/xl2pbk.fd + texmf-dist/tex/cslatex/cspsfonts/xl2pcr.fd + texmf-dist/tex/cslatex/cspsfonts/xl2phv.fd + texmf-dist/tex/cslatex/cspsfonts/xl2phvn.fd + texmf-dist/tex/cslatex/cspsfonts/xl2pnc.fd + texmf-dist/tex/cslatex/cspsfonts/xl2ppl.fd + texmf-dist/tex/cslatex/cspsfonts/xl2ptm.fd + texmf-dist/tex/cslatex/cspsfonts/xl2pzc.fd +catalogue-contact-home http://petr.olsak.net/cstex/ +catalogue-ctan /macros/cstex/base/cslatex.tar.gz +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license gpl +catalogue-topics czech slovak format + +name cslatex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of cslatex +containersize 340 +containerchecksum 9459e008368fe10c646015c4bd54521e66458b7a5270ae1e326618443f8bda5a4ac5ce383805cf946cc47f0c6956b03cfdec914f04d91675ef1b80f15a590cfe +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/cslatex + bin/aarch64-linux/pdfcslatex + +name cslatex.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of cslatex +containersize 340 +containerchecksum feee76385d4cacb8ad98a3e3ee49faa9f5b3aa5a31305f356c0c3e396aa734dce7f0951d1faffb4e0e1b16d78bec6a564854c8ece8aa904cad3345f839b6fb27 +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/cslatex + bin/amd64-freebsd/pdfcslatex + +name cslatex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of cslatex +containersize 340 +containerchecksum 574649e51748132a055a43a44935bf14608110055afd17ed396ca4beea06951e1cafc0b7a57b47f6080b82721b3e6ffcb3acdb711f63e455d77a44c15b6c1b3f +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/cslatex + bin/amd64-netbsd/pdfcslatex + +name cslatex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of cslatex +containersize 340 +containerchecksum 32fbba47e9b6ae308b0e35c8497ebc369aa8a73fe611b2697260ed640193ea06cc6c3d79aff0d90552b822aff55e6c10a5e9d5cb92c457d55ffd5116afb0114a +binfiles arch=armhf-linux size=2 + bin/armhf-linux/cslatex + bin/armhf-linux/pdfcslatex + +name cslatex.i386-cygwin +category Package +revision 13930 +shortdesc i386-cygwin files of cslatex +containersize 344 +containerchecksum f5c060fd52e58b88915b7d3e041cc987753bf13a415d6943899b58eafb53b6e5b3682d663894c3e0edab9e7957e371555f70b68c3a626988cd631efa9c061e51 +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/cslatex + bin/i386-cygwin/pdfcslatex + +name cslatex.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of cslatex +containersize 340 +containerchecksum 4b7dc56299cb2da05ed2707818741cb06a1d85b78d58b1394bad7ed7df473a93c148c6a55f89d10239fe114ca24eaa55a9e6f65db39a2138e719574c183202e3 +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/cslatex + bin/i386-freebsd/pdfcslatex + +name cslatex.i386-linux +category Package +revision 3006 +shortdesc i386-linux files of cslatex +containersize 340 +containerchecksum a5a4d6725473a1f5c8ab1e196bc994210b03770244ffd61d83843702a06973255510184f86debd9fa6d575a0f3db5282b958e09531acf2d73de801cc6f0dd1ef +binfiles arch=i386-linux size=2 + bin/i386-linux/cslatex + bin/i386-linux/pdfcslatex + +name cslatex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of cslatex +containersize 340 +containerchecksum 411e95966d70e35837e222bb7a0eb0787e2cfe5c28d9e6fd88ce9777df534c09b88a4a664c0a90c5546ffa9baf985ec837d4eac6d164f93bcc62d85ca66bf481 +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/cslatex + bin/i386-netbsd/pdfcslatex + +name cslatex.i386-solaris +category Package +revision 8102 +shortdesc i386-solaris files of cslatex +containersize 340 +containerchecksum 237f4c281634666023a4cd2147083b1d436c182cbe7562ac0be111b717ce4146a4dd2de5dafe7739b65c74a10bacd623cc0e1c8fb3b16b8f5686881f08efbb1c +binfiles arch=i386-solaris size=2 + bin/i386-solaris/cslatex + bin/i386-solaris/pdfcslatex + +name cslatex.win32 +category Package +revision 36810 +shortdesc win32 files of cslatex +containersize 888 +containerchecksum 1850814ded5605382ae2503fc67297d6ec122331d33f620f355a38a84b0617fd98409d1454f9e6a415b32d392233528cf4fc6cbb794186f5250db0b6a0e8bf75 +binfiles arch=win32 size=2 + bin/win32/cslatex.exe + bin/win32/pdfcslatex.exe + +name cslatex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of cslatex +containersize 344 +containerchecksum 070023745759951e5c8938ed7c4fae24eb0e6ee585181e45de57073b3d84bac6401a6270ee836f6aa6a3ebac75dd46b12a601d0c3c5ff3f14037062d98727dde +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/cslatex + bin/x86_64-cygwin/pdfcslatex + +name cslatex.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of cslatex +containersize 344 +containerchecksum badbe8985e0b347b4d13c0a54e7a3c64656eeef1e51170e0e7d7775dd9ab510d2c08d76cc3cebc45bc2c7a96ddcf0fbc866178ed0277f895708e8d94e049cdbc +binfiles arch=x86_64-darwin size=2 + bin/x86_64-darwin/cslatex + bin/x86_64-darwin/pdfcslatex + +name cslatex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of cslatex +containersize 348 +containerchecksum 6022b313974e068b944aee185ce1b408e7d4cbbe1028786ef1b47700a04c6ae851d9ffe8c68863c2acdc57418f6e3a915ec1cddbb51d2635aee73a029fe1ca3c +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/cslatex + bin/x86_64-darwinlegacy/pdfcslatex + +name cslatex.x86_64-linux +category Package +revision 3185 +shortdesc x86_64-linux files of cslatex +containersize 340 +containerchecksum 421620207df5bb34cbf14280889fd0bf999a2ed59bc324b96adc87d37aa2bb1c03ee58fc06c5a58de99171ac102ddd01759520425d8a22727b02660c4ed6861b +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/cslatex + bin/x86_64-linux/pdfcslatex + +name cslatex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of cslatex +containersize 348 +containerchecksum 9f9595e8ecd2a26180a34decce0bd35f2237cbf4de3fbf1390aceeee7214fda81ef0e66a587a265b10a9a84d4e3a25a1eed6cc60bbe4da57d7891c0bc9f69390 +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/cslatex + bin/x86_64-linuxmusl/pdfcslatex + +name cslatex.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of cslatex +containersize 344 +containerchecksum a45c40f926208faa837405d46f035519c4094e4f958a7f603fd2189db192b6834a7fd0be6069c9f3915e3ea0dff35612ab941656b936ca635c85aa80b47a6a66 +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/cslatex + bin/x86_64-solaris/pdfcslatex + +name csplain +category Package +revision 50907 +shortdesc Plain TeX multilanguage support +longdesc CSplain is a small extension of basic Plain TeX macros, the +longdesc formats csplain and pdfcsplain can be generated. It supports: +longdesc hyphenation of words for 50+ languages, simple and powerfull +longdesc font loading system (various sizes of fonts), TeX, pdfTeX, +longdesc XeTeX and LuaTeX engines, math fonts simply loaded with full +longdesc amstex-like features, three internal encodings (IL2 for +longdesc Czech/Slovak languages, T1 for many languages with latin +longdesc alphabet and Unicode in new TeX engines), natural UTF-8 input +longdesc in pdfTeX using encTeX without any active characters, Czech and +longdesc Slovak special typesetting features. An important part of the +longdesc package is OPmac, which implements most of LaTeX's features +longdesc (sectioning, font selection, color, hyper reference and urls, +longdesc bibliography, index, toc, tables,etc.) by Plain TeX macros. The +longdesc OPmac macros can generate and bibliography without any external +longdesc program. +depend tex +depend cm +depend cs +depend hyphen-base +depend plain +depend enctex +depend tex-ini-files +depend luatex +depend luatex85 +depend csplain.ARCH +execute AddFormat name=csplain engine=pdftex options="-etex -enc csplain-utf8.ini" fmttriggers=cm,cs,hyphen-base,plain,enctex +execute AddFormat name=pdfcsplain engine=pdftex options="-etex -enc csplain-utf8.ini" fmttriggers=cm,cs,hyphen-base,plain,enctex,tex-ini-files +execute AddFormat name=luacsplain engine=luatex options="-etex csplain.ini" fmttriggers=cm,cs,hyphen-base,plain,tex-ini-files,luatex,luatex85 +execute AddFormat name=pdfcsplain engine=xetex options="-etex csplain.ini" fmttriggers=cm,cs,hyphen-base,plain +execute AddFormat name=pdfcsplain engine=luatex options="-etex csplain.ini" fmttriggers=cm,cs,hyphen-base,plain,tex-ini-files,luatex,luatex85 +containersize 122028 +containerchecksum 90023501aa0187ae8701d9b8ee27e5990ba00685b68acef563d9c605293f1664a7ec6be6d9e88c14e264d9d5c808e7f9be10890180d1f08599c4cd7a75128487 +runfiles size=216 + texmf-dist/tex/csplain/base/csenc-k.tex + texmf-dist/tex/csplain/base/csenc-p.tex + texmf-dist/tex/csplain/base/csenc-u.tex + texmf-dist/tex/csplain/base/csenc-w.tex + texmf-dist/tex/csplain/base/cseplain.ini + texmf-dist/tex/csplain/base/csfonts.tex + texmf-dist/tex/csplain/base/csfontsm.tex + texmf-dist/tex/csplain/base/csplain-utf8.ini + texmf-dist/tex/csplain/base/csplain.ini + texmf-dist/tex/csplain/base/czhyphen.ex + texmf-dist/tex/csplain/base/czhyphen.tex + texmf-dist/tex/csplain/base/etex-mac.tex + texmf-dist/tex/csplain/base/extcode.tex + texmf-dist/tex/csplain/base/fonttabs.tex + texmf-dist/tex/csplain/base/hyphen.ex + texmf-dist/tex/csplain/base/hyphen.lan + texmf-dist/tex/csplain/base/il2code.tex + texmf-dist/tex/csplain/base/lua-hyphen.lan + texmf-dist/tex/csplain/base/luaplain.ini + texmf-dist/tex/csplain/base/plaina4.tex + texmf-dist/tex/csplain/base/skhyphen.ex + texmf-dist/tex/csplain/base/skhyphen.tex + texmf-dist/tex/csplain/base/t1code.tex + texmf-dist/tex/csplain/base/t1enc-u.tex + texmf-dist/tex/csplain/base/ucode.tex + texmf-dist/tex/csplain/base/uni-lcuc.tex + texmf-dist/tex/csplain/base/xeplain.ini + texmf-dist/tex/csplain/fonts/ams-math.tex + texmf-dist/tex/csplain/fonts/cavantga.tex + texmf-dist/tex/csplain/fonts/cbookman.tex + texmf-dist/tex/csplain/fonts/chars-8z.tex + texmf-dist/tex/csplain/fonts/chelvet.tex + texmf-dist/tex/csplain/fonts/cncent.tex + texmf-dist/tex/csplain/fonts/cpalatin.tex + texmf-dist/tex/csplain/fonts/cs-adventor.tex + texmf-dist/tex/csplain/fonts/cs-all.tex + texmf-dist/tex/csplain/fonts/cs-antt.tex + texmf-dist/tex/csplain/fonts/cs-arev.tex + texmf-dist/tex/csplain/fonts/cs-baskerx.tex + texmf-dist/tex/csplain/fonts/cs-bera.tex + texmf-dist/tex/csplain/fonts/cs-bonum.tex + texmf-dist/tex/csplain/fonts/cs-charter.tex + texmf-dist/tex/csplain/fonts/cs-cursor.tex + texmf-dist/tex/csplain/fonts/cs-ebgaramond.tex + texmf-dist/tex/csplain/fonts/cs-heros.tex + texmf-dist/tex/csplain/fonts/cs-heuristica.tex + texmf-dist/tex/csplain/fonts/cs-iwona.tex + texmf-dist/tex/csplain/fonts/cs-kurier.tex + texmf-dist/tex/csplain/fonts/cs-libertine.tex + texmf-dist/tex/csplain/fonts/cs-pagella.tex + texmf-dist/tex/csplain/fonts/cs-polta.tex + texmf-dist/tex/csplain/fonts/cs-schola.tex + texmf-dist/tex/csplain/fonts/cs-termes.tex + texmf-dist/tex/csplain/fonts/ctimes.tex + texmf-dist/tex/csplain/fonts/cyrchars.tex + texmf-dist/tex/csplain/fonts/dcfonts.tex + texmf-dist/tex/csplain/fonts/ecfonts.tex + texmf-dist/tex/csplain/fonts/exchars.tex + texmf-dist/tex/csplain/fonts/ff-mac.tex + texmf-dist/tex/csplain/fonts/glyphtounicode-cs.tex + texmf-dist/tex/csplain/fonts/ki-math.tex + texmf-dist/tex/csplain/fonts/kp-fonts.tex + texmf-dist/tex/csplain/fonts/kp-math.tex + texmf-dist/tex/csplain/fonts/lmfonts.tex + texmf-dist/tex/csplain/fonts/luafonts.tex + texmf-dist/tex/csplain/fonts/ntx-math.tex + texmf-dist/tex/csplain/fonts/pazo-math.tex + texmf-dist/tex/csplain/fonts/tx-math.tex + texmf-dist/tex/csplain/fonts/uni-math.tex + texmf-dist/tex/csplain/fonts/unifam.tex + texmf-dist/tex/csplain/opmac/fontfam-catalog.tex + texmf-dist/tex/csplain/opmac/fontfam-global.tex + texmf-dist/tex/csplain/opmac/fontfam.tex + texmf-dist/tex/csplain/opmac/op-example.bib + texmf-dist/tex/csplain/opmac/opmac-bib-iso690.tex + texmf-dist/tex/csplain/opmac/opmac-bib-simple.tex + texmf-dist/tex/csplain/opmac/opmac-bib.tex + texmf-dist/tex/csplain/opmac/opmac-luatex.tex + texmf-dist/tex/csplain/opmac/opmac-xetex.tex + texmf-dist/tex/csplain/opmac/opmac.tex + texmf-dist/tex/csplain/opmac/pdfuni.tex +catalogue-contact-home http://petr.olsak.net/csplain-e.html +catalogue-ctan /macros/cstex/base/csplain.tar.gz +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license other-free +catalogue-topics czech slovak format + +name csplain.aarch64-linux +category Package +revision 50528 +shortdesc aarch64-linux files of csplain +containersize 372 +containerchecksum af0a8b0df2f73806fd766027a09b2d9db81bc54878b3c61c67e2031645af42128382c2fde6271cfab1313d33fe115f8253e1c896330ffcb1078068bb8f41c0b1 +binfiles arch=aarch64-linux size=3 + bin/aarch64-linux/csplain + bin/aarch64-linux/luacsplain + bin/aarch64-linux/pdfcsplain + +name csplain.amd64-freebsd +category Package +revision 50528 +shortdesc amd64-freebsd files of csplain +containersize 372 +containerchecksum 9fc7c078c79769f1f939bdfbe3ff7a42bcaf97edd29faa1f4e75396e0bef57f120e256de03ebb06de83c0c8652c60313c41eaa9d4b41372d381512d6e6a84a72 +binfiles arch=amd64-freebsd size=3 + bin/amd64-freebsd/csplain + bin/amd64-freebsd/luacsplain + bin/amd64-freebsd/pdfcsplain + +name csplain.amd64-netbsd +category Package +revision 50607 +shortdesc amd64-netbsd files of csplain +containersize 368 +containerchecksum 358dc81819e36b96b56abc1a8872b0822c7ccb90d5a477a31734272a745d8127d69dab89d9c19ffe9a251244ac49e187ec5e67d16731cd08adce221757410d13 +binfiles arch=amd64-netbsd size=3 + bin/amd64-netbsd/csplain + bin/amd64-netbsd/luacsplain + bin/amd64-netbsd/pdfcsplain + +name csplain.armhf-linux +category Package +revision 50528 +shortdesc armhf-linux files of csplain +containersize 368 +containerchecksum 50c470491cb217d8a38429c07033c33343686c6491f69b8ef65b1b164248032e705a2001968689e613b2a43cd314dd6e95d9bbcec0dcc393b33f2e9718423434 +binfiles arch=armhf-linux size=3 + bin/armhf-linux/csplain + bin/armhf-linux/luacsplain + bin/armhf-linux/pdfcsplain + +name csplain.i386-cygwin +category Package +revision 50544 +shortdesc i386-cygwin files of csplain +containersize 368 +containerchecksum 80b9025839b28e3f1b6d6d39ab8a8206227cb7523bf1bc215e70e0298bad71932891021adc6051f255a81dd75ce7fe1a10c9c36a4df54c841f0a9bd13c7e1c9a +binfiles arch=i386-cygwin size=3 + bin/i386-cygwin/csplain + bin/i386-cygwin/luacsplain + bin/i386-cygwin/pdfcsplain + +name csplain.i386-freebsd +category Package +revision 50528 +shortdesc i386-freebsd files of csplain +containersize 368 +containerchecksum 024cad98cabd462c02cb5e5cb88fa65ffe062a54162572812398d1349fcc74a30558bc45437e0f6003a567053e6a34eaa4002c0cf6bb8824315e3dae6eb28117 +binfiles arch=i386-freebsd size=3 + bin/i386-freebsd/csplain + bin/i386-freebsd/luacsplain + bin/i386-freebsd/pdfcsplain + +name csplain.i386-linux +category Package +revision 50528 +shortdesc i386-linux files of csplain +containersize 368 +containerchecksum 0438b1d0418dc1a0d62f348a9b94419a6445e2ac8c6f0e4a92d7f9e7d5cc8bb534e080b57fa2cd8451e2833c7f93eb65b3f1dee47ed785de45805d9d1f4d421c +binfiles arch=i386-linux size=3 + bin/i386-linux/csplain + bin/i386-linux/luacsplain + bin/i386-linux/pdfcsplain + +name csplain.i386-netbsd +category Package +revision 50607 +shortdesc i386-netbsd files of csplain +containersize 368 +containerchecksum c3a1a581d6a3485086b2c7dbd5974e49dd57f675ce51e0aeb64600b624421bbc36f6a61ff9869a201d2394adb96d669cd17f42a9b6e1e635af9225aa0b93451d +binfiles arch=i386-netbsd size=3 + bin/i386-netbsd/csplain + bin/i386-netbsd/luacsplain + bin/i386-netbsd/pdfcsplain + +name csplain.i386-solaris +category Package +revision 50528 +shortdesc i386-solaris files of csplain +containersize 368 +containerchecksum 6806d78fdf76bd57d800d9f1701bf1c4fa8b303256d7175627b05f3169b127e9690ec12d3389efa8ea7968431def9301977825292d960e697f7b61f6f0291fbe +binfiles arch=i386-solaris size=3 + bin/i386-solaris/csplain + bin/i386-solaris/luacsplain + bin/i386-solaris/pdfcsplain + +name csplain.win32 +category Package +revision 50528 +shortdesc win32 files of csplain +containersize 920 +containerchecksum 15ec099ebb1b34c864656d942b759a8240595f867a060fcab992e2226bf8fb555181db4d522cf58835d402e4480c442cb4c9112d6bf628969bd0f4d3e7d24791 +binfiles arch=win32 size=3 + bin/win32/csplain.exe + bin/win32/luacsplain.exe + bin/win32/pdfcsplain.exe + +name csplain.x86_64-cygwin +category Package +revision 50544 +shortdesc x86_64-cygwin files of csplain +containersize 372 +containerchecksum dbad5ed40510cfa748013cbee3fea2ed8d2db1ae6f2429043914a3f741530ab45e197f6f6d8811d54f501786a7634417c89e19e0c82be6d7d5c4c08d5ff28162 +binfiles arch=x86_64-cygwin size=3 + bin/x86_64-cygwin/csplain + bin/x86_64-cygwin/luacsplain + bin/x86_64-cygwin/pdfcsplain + +name csplain.x86_64-darwin +category Package +revision 50528 +shortdesc x86_64-darwin files of csplain +containersize 372 +containerchecksum 282b7e31f19c87cabddf9d88307a4e2e8197bad06de47cb82d0abc5b77cb332db95e11dc244c13130c1fc04ef070112b11b72fc68c17e10cb349f92792136a04 +binfiles arch=x86_64-darwin size=3 + bin/x86_64-darwin/csplain + bin/x86_64-darwin/luacsplain + bin/x86_64-darwin/pdfcsplain + +name csplain.x86_64-darwinlegacy +category Package +revision 50528 +shortdesc x86_64-darwinlegacy files of csplain +containersize 376 +containerchecksum 9d326b5283bf685369c78a7c02d1d86ed2df2c2fd4e57ae014fea4bb28cc629ae7e45cf85a39f3658f45f5c26f193e36c5d30f2bd0d14fe8578262d961688f4e +binfiles arch=x86_64-darwinlegacy size=3 + bin/x86_64-darwinlegacy/csplain + bin/x86_64-darwinlegacy/luacsplain + bin/x86_64-darwinlegacy/pdfcsplain + +name csplain.x86_64-linux +category Package +revision 50528 +shortdesc x86_64-linux files of csplain +containersize 368 +containerchecksum f9e53fb2818a1d8f265f6ae66223d5c4f336c765bad1b1a264897ca792c90d75f85a8a268ea664cf8004c436d744023c52e05003ed51b69d8a4735be0521ab41 +binfiles arch=x86_64-linux size=3 + bin/x86_64-linux/csplain + bin/x86_64-linux/luacsplain + bin/x86_64-linux/pdfcsplain + +name csplain.x86_64-linuxmusl +category Package +revision 50528 +shortdesc x86_64-linuxmusl files of csplain +containersize 376 +containerchecksum e8974faab59cabc016de57e46561f5f4396ffad000709c6e7865dd1c3799c9989634a22d6d638ffcf2a86dce778b5536590d19e6ee46a4c022fc3687c3d3622f +binfiles arch=x86_64-linuxmusl size=3 + bin/x86_64-linuxmusl/csplain + bin/x86_64-linuxmusl/luacsplain + bin/x86_64-linuxmusl/pdfcsplain + +name csplain.x86_64-solaris +category Package +revision 50528 +shortdesc x86_64-solaris files of csplain +containersize 372 +containerchecksum 5bb6878f3f49996b690524beaccd2ad39546171b926801515612bae9f5f00b8b069879f5be2b384a24194d216614a61f4a943c2370ed30820e437f4dc6927d23 +binfiles arch=x86_64-solaris size=3 + bin/x86_64-solaris/csplain + bin/x86_64-solaris/luacsplain + bin/x86_64-solaris/pdfcsplain + +name csquotes +category Package +revision 51091 +shortdesc Context sensitive quotation facilities +relocated 1 +longdesc This package provides advanced facilities for inline and +longdesc display quotations. It is designed for a wide range of tasks +longdesc ranging from the most simple applications to the more complex +longdesc demands of formal quotations. The facilities include commands, +longdesc environments, and user-definable 'smart quotes' which +longdesc dynamically adjust to their context. Quotation marks are +longdesc switched automatically if quotations are nested and they can be +longdesc adjusted to the current language if the babel package is +longdesc available. There are additional facilities designed to cope +longdesc with the more specific demands of academic writing, especially +longdesc in the humanities and the social sciences. All quote styles as +longdesc well as the optional active quotes are freely configurable. The +longdesc package is dependent on e-TeX, and requires the author's +longdesc etoolbox package. +containersize 17612 +containerchecksum c3c8bb734145ab42ff388c08263af3b16e21dcb1995f05f91ea6fc6028d9c3c5f4c268aa9c2902e95dbe15e3bb5e01defe2d2360a8aedcf0c8ef5163ea400067 +doccontainersize 314004 +doccontainerchecksum 0110c7d89008ff857076cc7a3c41870329d3421f10e6cd5d8ab0237562b01ddc238850e677cd0e4f3d1be4b4b3948c08f831807e37564c7075503969f993310c +docfiles size=103 + RELOC/doc/latex/csquotes/README.md details="Package README" + RELOC/doc/latex/csquotes/csquotes.pdf details="Tutorial on use of the package" + RELOC/doc/latex/csquotes/csquotes.tex +runfiles size=23 + RELOC/tex/latex/csquotes/csq-compat.def + RELOC/tex/latex/csquotes/csquotes.cfg + RELOC/tex/latex/csquotes/csquotes.def + RELOC/tex/latex/csquotes/csquotes.sty +catalogue-ctan /macros/latex/contrib/csquotes +catalogue-date 2019-05-10 23:49:50 +0200 +catalogue-license lppl1.3c +catalogue-topics quote-marks etex +catalogue-version 5.2e + +name csquotes-de +category Package +revision 23371 +shortdesc German translation of csquotes documentation +relocated 1 +longdesc This is a translation of the documentation of csquotes version +longdesc 5.1. +containersize 400 +containerchecksum 7d4667b77f1e27acb1d3c8becaad4889910edaab4b9da6b0fe821db262f3a31672050f5985a56533003178fbf1d579d170be3fcd22c31bbf41af9bcb68fb7c40 +doccontainersize 321176 +doccontainerchecksum 1e8829faf2cb23b2e565a4b5daa5a09ef01d590d920444ee4659964bee042148ea19e9fbcb63e4c4ea1e2698697554e0bc532fa0fb7610bbf9bb4bca234d33d5 +docfiles size=143 + RELOC/doc/latex/csquotes-de/LIESMICH details="Readme" language="de" + RELOC/doc/latex/csquotes-de/csquotes-DE.pdf details="The document itself" + RELOC/doc/latex/csquotes-de/csquotes-DE.tex +catalogue-ctan /info/translations/csquotes/de +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics quote-marks translation +catalogue-version 1.01 + +name css-colors +category Package +revision 43961 +shortdesc Named colors for web-safe design +relocated 1 +longdesc This package defines web-safe colors for use with D.P. +longdesc Carlisle's color package. It is intended for both authors and +longdesc package writers (e.g. to create Beamer color themes). +containersize 2296 +containerchecksum b5e000180b583470bc6721601321f81a2f11e70388f05fd85a482b491e1d3ea536db0fbb96a6715fcca81e5bcbaf289af9540c82a2201befac1d2254fbc4cfb0 +doccontainersize 2090184 +doccontainerchecksum d08c0212f4c36eb114b25128ac8516cb7181ac73a2ea61ee4ed1eafdfa7fed15a2b928d6d0f63bdbf2b4beb93a843fc8dd16b959297a4fccff89c428647f4ddd +docfiles size=521 + RELOC/doc/latex/css-colors/README.txt details="Readme" + RELOC/doc/latex/css-colors/css-colors.pdf details="List of colours" + RELOC/doc/latex/css-colors/css-colors.xlsx +runfiles size=2 + RELOC/tex/latex/css-colors/css-colors.sty +catalogue-ctan /macros/latex/contrib/css-colors +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lpplgpl +catalogue-topics colour +catalogue-version 1.02 + +name cstex +category Package +revision 50527 +shortdesc Support for Czech/Slovak languages +relocated 1 +longdesc This package mirrors the macros part of the home site's +longdesc distribution of CSTeX. The licence (modified GPL) applies to +longdesc some of the additions that make it a Czech/Slovak language +longdesc distribution, rather than the distribution of a basic +longdesc Plain/LaTeX distribution. +containersize 544 +containerchecksum 66c2c2ef33d5b184a644981c3e2b23adbb4b37d8a30c46c8218751e418b0fbd8e2edd57ed8774983ad7710a68d9ffd314c701894121a75583be9eab24e1195e1 +doccontainersize 3962540 +doccontainerchecksum 8b900d0c05317df71fff6f11f0fcaf090ddb40f03fd7dd5ba96fdefb76beee478c1b10695ac15dbb2871101cf279af59719125d88ca86af458c731d98aa73eb6 +docfiles size=1156 + RELOC/doc/cstex/00-README-cslatex + RELOC/doc/cstex/INSTALL.cslatex + RELOC/doc/cstex/README-csplain + RELOC/doc/cstex/README-cspsfont + RELOC/doc/cstex/README-doc + RELOC/doc/cstex/README-opmac + RELOC/doc/cstex/README.cslatex + RELOC/doc/cstex/cspsfonts-gen/README details="Readme" language="cs" + RELOC/doc/cstex/cspsfonts-gen/fontgen + RELOC/doc/cstex/cspsfonts-gen/kernoff.c + RELOC/doc/cstex/cspsfonts-gen/mkf + RELOC/doc/cstex/cspsfonts-gen/mkfc + RELOC/doc/cstex/cspsfonts-gen/xl2.enc + RELOC/doc/cstex/cspsfonts-gen/xt2.enc + RELOC/doc/cstex/cstexman.pdf details="User manual" language="cs" + RELOC/doc/cstex/cstexman.tex + RELOC/doc/cstex/jemny.errata + RELOC/doc/cstex/jemny.pdf + RELOC/doc/cstex/jemny.tar.gz + RELOC/doc/cstex/kpfonts-plain.tex + RELOC/doc/cstex/lic-gpl.eng + RELOC/doc/cstex/opmac-d.tex + RELOC/doc/cstex/opmac-u-en.pdf + RELOC/doc/cstex/opmac-u-en.tex + RELOC/doc/cstex/opmac-u.pdf + RELOC/doc/cstex/opmac-u.tex + RELOC/doc/cstex/pdfuni-article.pdf + RELOC/doc/cstex/pdfuni-article.tex + RELOC/doc/cstex/prvni.pdf + RELOC/doc/cstex/prvni.tex + RELOC/doc/cstex/test8z.pdf + RELOC/doc/cstex/test8z.tex + RELOC/doc/cstex/testgyre8z.pdf + RELOC/doc/cstex/testgyre8z.tex + RELOC/doc/cstex/testlat.tex + RELOC/doc/cstex/zmeny.txt +catalogue-also cslatex +catalogue-contact-home http://math.feld.cvut.cz/olsak/cstex/ +catalogue-ctan /macros/cstex +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license other-free +catalogue-topics distribution + +name cstypo +category Package +revision 41986 +shortdesc Czech typography rules enforced through LuaTeX hooks +relocated 1 +longdesc This package provides macros that enforce basic Czech +longdesc typography rules through Lua hooks available in LuaTeX. +containersize 2064 +containerchecksum ecc9054a0866e4926277bf5f52faf97b0b07f0ea660b7c4d089a552ab57d3a900cd1d688981770df9b3a4285c3d451fb23f1b69757381f3cbdf88cf0c88cf61c +doccontainersize 104240 +doccontainerchecksum 1ac42bcd1cadde9165f8edceadb438c4c2e91d6a89486e56e31623cf1ffdd5f38ec800d836dc90a5a6a0bc48dfac4a8ec90192319f8f046665c77e91fc51b91d +docfiles size=33 + RELOC/doc/lualatex/cstypo/LICENSE + RELOC/doc/lualatex/cstypo/README.md details="Readme" + RELOC/doc/lualatex/cstypo/cstypo.pdf details="User Manual" + RELOC/doc/lualatex/cstypo/cstypo.tex + RELOC/doc/lualatex/cstypo/cstypotest.pdf details="Example of use" + RELOC/doc/lualatex/cstypo/cstypotest.tex +runfiles size=4 + RELOC/tex/lualatex/cstypo/cstypo.sty + RELOC/tex/luatex/cstypo/cstypo-tex.tex + RELOC/tex/luatex/cstypo/cstypo.lua +catalogue-contact-repository https://github.com/wilx/cstypo +catalogue-ctan /macros/luatex/generic/cstypo +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license mit +catalogue-topics luatex czech +catalogue-version 0.03 name csvsimple category Package -revision 34610 -shortdesc Simple CSV file processing. +revision 51010 +shortdesc Simple CSV file processing relocated 1 longdesc The package provides a simple LaTeX interface for the longdesc processing of files with comma separated values (CSV); it longdesc relies on the key value syntax supported by pgfkeys to simplify -longdesc usage. Filtering and table generation is especially supported; +longdesc usage. Filtering and table generation are especially supported; longdesc however, this lightweight tool offers no support for data -longdesc sorting or data base storage. -runfiles size=6 - RELOC/tex/latex/csvsimple/csvsimple.sty -docfiles size=250 +longdesc sorting or data base storage. The package depends on etoolbox, +longdesc ifthen, pgfrcs, pgfkeys, and shellesc. +containersize 5568 +containerchecksum c071fb93d269e27c7059919213a858d82bb5fc381d8a9a0faf82ad0b05eaac808dbfc19c30c8530a98582f3179a01774de78b0f290a15d4ef79e06eef0a9aba8 +doccontainersize 752344 +doccontainerchecksum da691d9d44e1624ccab48e5979ae9ecb8697387a19280602c28467c8f2aefbafc494067217836a09a6ba1a653c8fd3a7903e3607ca56922ebf47870bea49c583 +docfiles size=246 RELOC/doc/latex/csvsimple/CHANGES - RELOC/doc/latex/csvsimple/README + RELOC/doc/latex/csvsimple/README details="Readme" language="en" RELOC/doc/latex/csvsimple/amountsort.xml RELOC/doc/latex/csvsimple/catsort.xml - RELOC/doc/latex/csvsimple/csvsimple-example.pdf + RELOC/doc/latex/csvsimple/csvsimple-example.pdf details="example of use" language="en" RELOC/doc/latex/csvsimple/csvsimple-example.tex - RELOC/doc/latex/csvsimple/csvsimple.pdf + RELOC/doc/latex/csvsimple/csvsimple.pdf details="Package documentation" language="en" RELOC/doc/latex/csvsimple/csvsimple.tex + RELOC/doc/latex/csvsimple/encoding.xml RELOC/doc/latex/csvsimple/gradesort.xml RELOC/doc/latex/csvsimple/matriculationsort.xml RELOC/doc/latex/csvsimple/namesort.xml RELOC/doc/latex/csvsimple/transform.xml +runfiles size=7 + RELOC/tex/latex/csvsimple/csvsimple.sty +catalogue-also csvtools datatool catalogue-ctan /macros/latex/contrib/csvsimple -catalogue-date 2014-09-23 18:36:08 +0200 +catalogue-date 2019-04-28 12:45:29 +0200 catalogue-license lppl1.3 -catalogue-version 1.12 +catalogue-topics data-import data-disp csv-support +catalogue-version 1.21 name ctable category Package -revision 38241 +revision 38672 shortdesc Flexible typesetting of table and figure floats using key/value directives relocated 1 longdesc Provides commands to typeset centered, left- or right-aligned @@ -42768,8 +73048,10 @@ longdesc an environment, a command with 4 arguments is used; the first longdesc is optional and is used for key,value pairs generating longdesc variations on the defaults and offering a route for future longdesc extensions. -runfiles size=3 - RELOC/tex/latex/ctable/ctable.sty +containersize 3620 +containerchecksum 3192df463eb4d307ba886b82d586580a741da8d901dc560c06d293e04c5d5af9efff56a1482bc41b03aeaade2cc25cdf6f4dda3e1baa26da1f7d4d138f44bebc +doccontainersize 698160 +doccontainerchecksum a32bc9c82a87f1f9327d5cbf4c15052124608f970ecda1909aa67abcc2fb4f10bdfcbb5568d8af9332687817f6f5bd6aaa0ce4843490e8ffac22526bbe123fdd docfiles size=243 RELOC/doc/latex/ctable/01a RELOC/doc/latex/ctable/01b @@ -42798,130 +73080,815 @@ docfiles size=243 RELOC/doc/latex/ctable/13b RELOC/doc/latex/ctable/13c RELOC/doc/latex/ctable/14a - RELOC/doc/latex/ctable/README - RELOC/doc/latex/ctable/ctable.pdf + RELOC/doc/latex/ctable/README details="Readme" + RELOC/doc/latex/ctable/ctable.pdf details="Package documentation" RELOC/doc/latex/ctable/doit RELOC/doc/latex/ctable/inst RELOC/doc/latex/ctable/lion.png RELOC/doc/latex/ctable/penguin.jpg +srccontainersize 14844 +srccontainerchecksum 9886347fdf0a1a7105ab33bba00877ce22df66b1d82a60b8818af063da371d8c0c6d8f60252342dfe44bbaa65ba9a93ac8f972c64439bea7296b9e98e1be4b41 srcfiles size=14 RELOC/source/latex/ctable/ctable.dtx RELOC/source/latex/ctable/ctable.ins +runfiles size=3 + RELOC/tex/latex/ctable/ctable.sty catalogue-ctan /macros/latex/contrib/ctable -catalogue-date 2015-08-29 16:36:51 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl catalogue-topics table float -catalogue-version 1.30 +catalogue-version 1.31 + +name ctablestack +category Package +revision 38514 +shortdesc Catcode table stable support +relocated 1 +longdesc This package provides a method for defining category code table +longdesc stacks in LuaTeX. It builds on code provided by the 2015/10/01 +longdesc release of LaTeX2e (also available as ltluatex.sty for plain +longdesc users). It is required by the luatexbase package (v1.0 onward) +longdesc which uses ctablestack to provide a back-compatibility form of +longdesc this concept. +containersize 1128 +containerchecksum 3485fbd1bebf80814645c1be3e7358a959637439fa17cbbf7c2478ca73c4312cab82eed2aedb5403dfe94b0cfc09ee3e9c8182c08d3708608a267da235ab30a0 +doccontainersize 151908 +doccontainerchecksum 2c74b9d2aa44b25952307e4593b4a792cb5d98b78619efef82ddfb134ee3da64de87973db30f3e5d5788ce5e6ef138fca2cabc4ed412c97cfa7b3dc6c3ed1060 +docfiles size=38 + RELOC/doc/luatex/ctablestack/README.md details="Readme" + RELOC/doc/luatex/ctablestack/ctablestack.pdf details="Package documentation" +srccontainersize 2524 +srccontainerchecksum c39356d4d78cc8121b20e572fe59879541ab533ceab64e68f17a346723aad4f73103df79b1711feb12337e5e2dcb56222b00a9b36ddcbc04fb5e946831340d6d +srcfiles size=3 + RELOC/source/luatex/ctablestack/ctablestack.dtx + RELOC/source/luatex/ctablestack/ctablestack.ins +runfiles size=1 + RELOC/tex/luatex/ctablestack/ctablestack.sty +catalogue-ctan /macros/luatex/generic/ctablestack +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics luatex +catalogue-version 1.0 + +name ctan-o-mat +category Package +revision 46938 +shortdesc Upload or validate a package for CTAN +longdesc This program can be used to automate the upload of a package to +longdesc CTAN. The description of the package is contained in a +longdesc configuration file. The provided information is validated in +longdesc any case. If the validation succeeds and not only the +longdesc validation is requested, then the provided archive file will be +longdesc placed in the incoming area of the CTAN for further processing +longdesc by the CTAN team. In any case any finding during the validation +longdesc is reported at the end of the processing. Note that the +longdesc validation is the default and an official submission has to be +longdesc requested by an appropriate command line option. ctan-o-mat +longdesc requires an Internet connection to the CTAN server. Even the +longdesc validation retrieves the known attributes and the basic +longdesc constraints from the server. +depend ctan-o-mat.ARCH +containersize 6052 +containerchecksum b15624363438e7d2ab0c060a99dd95cad7b062df03a3efc5f270071d19ed3cd32bc3ce27ceb5b98fdf5b96d956f44225aa53e6ad59e984635b18ea410a807d10 +doccontainersize 25752 +doccontainerchecksum 256db0c0908710b1aaaaa8b78506503e8ff1f6e12d039c6604540d1c11c69a1cd2451c59e1797693b024fbedacd5c5de46013eb738ec3e873d6579b4ecee558f +docfiles size=16 + texmf-dist/doc/man/man1/ctan-o-mat.1 + texmf-dist/doc/man/man1/ctan-o-mat.man1.pdf + texmf-dist/doc/support/ctan-o-mat/LICENSE + texmf-dist/doc/support/ctan-o-mat/README.md details="Readme" + texmf-dist/doc/support/ctan-o-mat/ctan-o-mat.pkg + texmf-dist/doc/support/ctan-o-mat/lib/md2ltx.pl + texmf-dist/doc/support/ctan-o-mat/makefile +runfiles size=6 + texmf-dist/scripts/ctan-o-mat/ctan-o-mat + texmf-dist/scripts/ctan-o-mat/ctan-o-mat.pl +catalogue-contact-bugs https://github.com/ge-ne/ctan-o-mat/issues +catalogue-contact-home https://github.com/ge-ne/ctan-o-mat +catalogue-contact-repository https://github.com/ge-ne/ctan-o-mat +catalogue-ctan /support/ctan-o-mat +catalogue-date 2017-11-25 09:56:55 +0100 +catalogue-license bsd3 +catalogue-topics ctan +catalogue-version 1.2 + +name ctan-o-mat.aarch64-linux +category Package +revision 47001 +shortdesc aarch64-linux files of ctan-o-mat +containersize 344 +containerchecksum 44b73a9c193c2f39d9938b69477b95de53b9bc9be299e9dcb07f3586ce2a3f6f0b5d6da706828e3673c59571a99ebf9fd17164e8e1af975148caf0a8069d002a +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/ctan-o-mat + +name ctan-o-mat.amd64-freebsd +category Package +revision 47009 +shortdesc amd64-freebsd files of ctan-o-mat +containersize 344 +containerchecksum 120fc79e1795b9655bd8f20fcebbefcfe99bfb4e5a6d1a5142ccf81e339cecd36fc854dcc7aef5987f14e2ebd6fb42a978348129f19566e48e2f08458965821a +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/ctan-o-mat + +name ctan-o-mat.amd64-netbsd +category Package +revision 46999 +shortdesc amd64-netbsd files of ctan-o-mat +containersize 344 +containerchecksum 78085091452e4437a291063841134bb4294a14f497fcaf919903ba2e3659e86a0584b5705e14f24d9f0e4b315e4ed34e95a3d7472ed35cd1721ce9f83b7a6f83 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/ctan-o-mat + +name ctan-o-mat.armhf-linux +category Package +revision 47013 +shortdesc armhf-linux files of ctan-o-mat +containersize 344 +containerchecksum d1c396253433e3ab213864b88800be27ab06f9ece53eab980d5ba38dce9013897c80d352b50ff163bec6d3a3a6ffc1b6547026c528741db37f921a5636548365 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/ctan-o-mat + +name ctan-o-mat.i386-cygwin +category Package +revision 47461 +shortdesc i386-cygwin files of ctan-o-mat +containersize 340 +containerchecksum 299afb1a64801e0abadbbed353e428624b69cdf777f36b1aca99f792f3fb0cedc1aa27f1b59b95718607649218028ca6d0c5c82601f762ac16177cfd0904a3f4 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/ctan-o-mat + +name ctan-o-mat.i386-freebsd +category Package +revision 47009 +shortdesc i386-freebsd files of ctan-o-mat +containersize 344 +containerchecksum 570d40f38f19325c430d7e6a7f9fe9e00283f8dc9824c07ad163cc9a842141348c451c6cdd7395dcab89914e2c483e9cb4b31ba0e19ca081096b0d961fcd57df +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/ctan-o-mat + +name ctan-o-mat.i386-linux +category Package +revision 46996 +shortdesc i386-linux files of ctan-o-mat +containersize 344 +containerchecksum 306470ec7e9970d75952cb42d1c79b89aa496d4aa43b0be20e0cba0f72b2fd9ccd21bb8ccce7da3c7535c03ab43579495890acd18589403aa83526be12e76aab +binfiles arch=i386-linux size=1 + bin/i386-linux/ctan-o-mat + +name ctan-o-mat.i386-netbsd +category Package +revision 46999 +shortdesc i386-netbsd files of ctan-o-mat +containersize 344 +containerchecksum 7fc61d6f98c1fa9f5c3dc7dc88b7e8fa821a0d4bb9e04e392db4a5f2401a3a7b6c0b44766540739d422a43776c03c34fb6caaa453e895639a70215faacf9748c +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/ctan-o-mat + +name ctan-o-mat.i386-solaris +category Package +revision 46997 +shortdesc i386-solaris files of ctan-o-mat +containersize 344 +containerchecksum cbb98c0cf5917094d3f71666c25883e248f4208502da267f71098f38fbdce952b12b108b1b73f8342cec7aab4c414c762ef31434614dab3de0d169422688eeac +binfiles arch=i386-solaris size=1 + bin/i386-solaris/ctan-o-mat + +name ctan-o-mat.win32 +category Package +revision 46938 +shortdesc win32 files of ctan-o-mat +containersize 644 +containerchecksum b9b244c996581ac0f585c386b354be74589b75f0fb6bdd0600fcb93d1e3da3711e825b7daca4f6591b78bedc2ad558d317929da15652629d1530f169c07f0b4a +binfiles arch=win32 size=1 + bin/win32/ctan-o-mat.bat + +name ctan-o-mat.x86_64-cygwin +category Package +revision 47461 +shortdesc x86_64-cygwin files of ctan-o-mat +containersize 344 +containerchecksum 6d12b14568afd8751736e1e7451714932f07a2223923cf28aa5c4ee084538dd7ea05807962ab5cd330f4243ffadfd1b2691492cd14f8b2f48100f7d46d0605c1 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/ctan-o-mat + +name ctan-o-mat.x86_64-darwin +category Package +revision 46989 +shortdesc x86_64-darwin files of ctan-o-mat +containersize 344 +containerchecksum 42a9c2f673a21a6cba2c6b35c7f99d6118dce9d67d7ac93f2e9788c918fd0c414d599ecbff62ec9c5614bfdd0f49cc3b13c5e85a5bd01935a9ea4e1046171a61 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/ctan-o-mat + +name ctan-o-mat.x86_64-darwinlegacy +category Package +revision 46995 +shortdesc x86_64-darwinlegacy files of ctan-o-mat +containersize 352 +containerchecksum 52bc779e6220c25e9081acd0919d504fcdae9f0ce44d063fc5ff2b45e3d23f1a3de98e93d47725fca75b70e5f17b578ab05fd86d016f54cb4c0f1c4908ac32bb +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/ctan-o-mat + +name ctan-o-mat.x86_64-linux +category Package +revision 47020 +shortdesc x86_64-linux files of ctan-o-mat +containersize 344 +containerchecksum 2d4e2232f2cb1d1c2be84210f81565afaccb311669a537c78d6e4f3432df6d9d1c49cf367777c0676ec2a68ceb62200bfad6df0bdfdad4d6aa64f118d4e7276a +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/ctan-o-mat + +name ctan-o-mat.x86_64-linuxmusl +category Package +revision 47036 +shortdesc x86_64-linuxmusl files of ctan-o-mat +containersize 348 +containerchecksum cec4ef4c8c2396ca20a9c5747dd4c141a11af7433fcfed22a8dd96dd4661c05e43d2358ce722bec3088748f9f252918ba90465351ea00a9758b5880fb9d8bafb +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/ctan-o-mat + +name ctan-o-mat.x86_64-solaris +category Package +revision 46997 +shortdesc x86_64-solaris files of ctan-o-mat +containersize 344 +containerchecksum 3eccbafea9b327bfa2b368691be79867ebd09e7d119e0c9b01a5a75019f4cba5b03b53d8002e57f5422eda5338436d1bd8121127ee24cd752fcd575ba7cdec91 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/ctan-o-mat name ctan_chk category Package revision 36304 -shortdesc Ctan guidelines verifier and corrector for uploading projects. +shortdesc CTAN guidelines verifier and corrector for uploading projects relocated 1 -longdesc Basic gawk program that uses Ctan's published guidelines for +longdesc Basic gawk program that uses CTAN's published guidelines for longdesc authors to help eliminate sloppiness in uploaded longdesc files/projects. It is completely open for users to program -longdesc additional guidelines as well as Ctan's future adjustments. +longdesc additional guidelines as well as CTAN's future adjustments. +containersize 512 +containerchecksum 6eabd7281d79ff0ad19080350dfcca8ee3a33ddfa6d17827a7851cc53f09f627729c8d715a1dfe50e0c079add44331a07d543cb8b6a57000efa6d73c30f2ffe0 +doccontainersize 221996 +doccontainerchecksum c61bc0d70cadcc4382dae55cdc1af076882801321a2de16f164223267732e476e41f949f566808c928f446d69aa22bd9965adb155c97905e32b93808810c76c0 docfiles size=64 - RELOC/doc/support/ctan_chk/README + RELOC/doc/support/ctan_chk/README details="Readme" RELOC/doc/support/ctan_chk/ctan_chk.gawk - RELOC/doc/support/ctan_chk/ctan_chk.pdf + RELOC/doc/support/ctan_chk/ctan_chk.pdf details="Package documentation" RELOC/doc/support/ctan_chk/ctan_chk.w RELOC/doc/support/ctan_chk/ctan_chk_bash catalogue-ctan /support/ctan_chk -catalogue-date 2015-02-17 12:27:23 +0100 +catalogue-date 2017-02-11 20:31:30 +0100 catalogue-license gpl3 +catalogue-topics ctan catalogue-version 1.0 +name ctanbib +category Package +revision 51014 +shortdesc Export CTAN entries to bib format +longdesc This package provides a Lua script which can be used for +longdesc retrieving bibliographic information in BibLaTeX format for +longdesc packages hosted on CTAN. The ctanbib script depends only on +longdesc LuaXML. +depend ctanbib.ARCH +containersize 2264 +containerchecksum 2c1d7db662cf674cc2a3554550857c05294fe1bf6fa772b9be185ee2780cbee3f6369c0c8b5041a5fd2247c4e73e44732044e62e8a9ffe814c7d50683ba9ad59 +doccontainersize 52496 +doccontainerchecksum f6295d3ab3a466e911878c7d44b4d2dee532fdd735297ad6142704f9d094826d80f0184827e2e4a459a82d6197a434175d4f6b49661503edf183cf9ede3061c6 +docfiles size=17 + texmf-dist/doc/man/man1/ctanbib.1 + texmf-dist/doc/man/man1/ctanbib.man1.pdf + texmf-dist/doc/support/ctanbib/README.md details="Readme" + texmf-dist/doc/support/ctanbib/ctanbib-doc.pdf details="Package documentation" + texmf-dist/doc/support/ctanbib/ctanbib-doc.tex +runfiles size=2 + texmf-dist/scripts/ctanbib/ctanbib +catalogue-contact-bugs https://github.com/michal-h21/ctanbib/issues +catalogue-contact-repository https://github.com/michal-h21/ctanbib +catalogue-ctan /support/ctanbib +catalogue-date 2019-05-04 23:01:11 +0200 +catalogue-license lppl1.3 +catalogue-topics bibtex-gen ctan luatex use-lua +catalogue-version 0.1c + +name ctanbib.aarch64-linux +category Package +revision 48478 +shortdesc aarch64-linux files of ctanbib +containersize 340 +containerchecksum 05ef7165542ad4e9004c3a99fff25c5f40296d44fdfd6cb2876959f6dccfa68a546f1533cc7cfbf0640518b60210aa22e7a61fb2259721823ea90ddac55d1c5f +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/ctanbib + +name ctanbib.amd64-freebsd +category Package +revision 48478 +shortdesc amd64-freebsd files of ctanbib +containersize 340 +containerchecksum 374201e1a6a3906685446bd3402f639ae375a5ca3cf3de1c5aaeb8fb676eb33cc106f87357e93a4dab89740747c699c8d3a35f0bc35df5b2a79bd342edebac67 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/ctanbib + +name ctanbib.amd64-netbsd +category Package +revision 48715 +shortdesc amd64-netbsd files of ctanbib +containersize 340 +containerchecksum bc8021a98300955ecafd133226e53d8a7405d5b1376f5f4495a139c35e6f02f4da022c9334166447b0bc42292abbf90dc4beb06eb03054b0773e7f743fb1d0b8 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/ctanbib + +name ctanbib.armhf-linux +category Package +revision 48478 +shortdesc armhf-linux files of ctanbib +containersize 340 +containerchecksum 8997fa78caf16ae39030385931772a4408f53276a2eab30a10e1596a7db1f2a81afbcdedfaaff3c55bb71a4615ad2dc7e4a6a75eebd9fc3de050f7647edc9906 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/ctanbib + +name ctanbib.i386-cygwin +category Package +revision 48478 +shortdesc i386-cygwin files of ctanbib +containersize 336 +containerchecksum 6c6e231c7dc313ef50d09a8293ccf113a2bb7ec381c44a705cb073e6d7f4b72f46b28a0bf648f6eee44366e77134fa5d92685a310a6d40cc5ff30a74f8d20351 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/ctanbib + +name ctanbib.i386-freebsd +category Package +revision 48478 +shortdesc i386-freebsd files of ctanbib +containersize 340 +containerchecksum 187e90aedfcfcc5a1b9000bef0589ca3debd4498cff08d017c46784c24ff85dc6334b4af34bb5a9fffd7b619e682387ff4d730e1e036bc6f5e08578d041df34f +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/ctanbib + +name ctanbib.i386-linux +category Package +revision 48478 +shortdesc i386-linux files of ctanbib +containersize 340 +containerchecksum e02b9685ef99961f3fa32ab16f8d8f69c9b37858135b7b1b8dbb6462d1d6d3bfa0e0281b037a682120e60442661ae801b579c3e5c49981caa39702ec6c94ff19 +binfiles arch=i386-linux size=1 + bin/i386-linux/ctanbib + +name ctanbib.i386-netbsd +category Package +revision 48478 +shortdesc i386-netbsd files of ctanbib +containersize 340 +containerchecksum 79544bea3b5d62185d0d7d5d387062018ca6e90f4edb184a5ae7cd0710516a6722be477ffe9412608055dd92a10a3ca7cf26804c4b609e0ab8d36e6b6eeae879 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/ctanbib + +name ctanbib.i386-solaris +category Package +revision 48478 +shortdesc i386-solaris files of ctanbib +containersize 336 +containerchecksum 0719b3449a76d6ea8ed7bd41f16d927031bcf3b28a5843160415c30e44583c18d950efbb4249b80619b2f7088052e056d7818f6df2f0d679debe0f2da5d020ac +binfiles arch=i386-solaris size=1 + bin/i386-solaris/ctanbib + +name ctanbib.win32 +category Package +revision 48478 +shortdesc win32 files of ctanbib +containersize 680 +containerchecksum 54b57b4cccf3348f30718784bc4dafcea7c97ea10755d2ce1b6b46ae1a32a51b1f5c13cb1e891ee7227614cbe7d331403cee3ed4dbf10e501981796ced974ce9 +binfiles arch=win32 size=1 + bin/win32/ctanbib.exe + +name ctanbib.x86_64-cygwin +category Package +revision 48478 +shortdesc x86_64-cygwin files of ctanbib +containersize 340 +containerchecksum 3cc5caf8a27717ba9c96702708299cb8a4460331838701f8b56e400322b73b70a462b93cc371deeb9c2b214a117e3944b2d584275349e43546ba39ddf3de20f3 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/ctanbib + +name ctanbib.x86_64-darwin +category Package +revision 48478 +shortdesc x86_64-darwin files of ctanbib +containersize 340 +containerchecksum 8ad9560fe273251d90bd9bd33667751e3e6ac2462d2cd20217a6da52b39f679a6a1bda55b48962d69ef39e11d4802620bcaed4aea1b80ef1b586efb70faa029c +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/ctanbib + +name ctanbib.x86_64-darwinlegacy +category Package +revision 48478 +shortdesc x86_64-darwinlegacy files of ctanbib +containersize 348 +containerchecksum 85c983396ba09d7dad38a813356068219b7af42089412f7e48e6ba95fbf5117ee83d4b3ccd1734de2d6b2608287f1f823bcd29a4c304a5f7a5ddd8f9328aac78 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/ctanbib + +name ctanbib.x86_64-linux +category Package +revision 48478 +shortdesc x86_64-linux files of ctanbib +containersize 340 +containerchecksum 14d3ba75f31bfdff2351051bcd75d1f0ae23f8df93e667de6deab7270b61110449be4284b3ba5f0f9949b332caf0e30b85dbec96cf335ab68c9a3d770c3973b9 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/ctanbib + +name ctanbib.x86_64-linuxmusl +category Package +revision 48478 +shortdesc x86_64-linuxmusl files of ctanbib +containersize 344 +containerchecksum 637bdee09f0a0c7a6beaa7af78c82ca4b0fdb47f24642b5324315476a4602fbeb97626e0a824854c40556860a93dadccf092ffce166f02f1836cfc4959fe7c13 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/ctanbib + +name ctanbib.x86_64-solaris +category Package +revision 48478 +shortdesc x86_64-solaris files of ctanbib +containersize 340 +containerchecksum ed3e7884247975e168a9470515954f879fcab8356ac01637d0aecbc033282f624a8dcfa5349c66b42da9bbca4d86e5f8977e2bc96b064c208dc835ba84f62563 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/ctanbib + name ctanify category Package -revision 38373 +revision 44129 shortdesc Prepare a package for upload to CTAN longdesc Given a list of filenames, ctanify creates a tarball (a .tar.gz -longdesc file) with the files laid out in CTAN's preferred structure. -longdesc The tarball additionally contains a ZIP (.zip) file with copies -longdesc of all files laid out in the standard TeX Directory Structure -longdesc (TDS), which may be used by those intending to install the -longdesc package, or by those who need to incorporate it in a -longdesc distribution. (The TDS ZIP file will be installed in the CTAN -longdesc install/ tree.) +longdesc file) with the files laid out in CTAN's preferred structure. By +longdesc default this tarball additionally contains a ZIP (.zip) file +longdesc with copies of all files laid out in the standard TeX Directory +longdesc Structure (TDS), which may be used by those intending to +longdesc install the package, or by those who need to incorporate it in +longdesc a distribution. (The TDS ZIP file will be installed in the CTAN +longdesc install/ tree.) Given that CTAN and TeX Live are not fond of +longdesc .tds.zip files for small and/or otherwise straightforward +longdesc packages, ctanify has now been provided with an option that +longdesc prevents the creation and inclusion of such a .tds.zip file. depend ctanify.ARCH -runfiles size=6 - texmf-dist/scripts/ctanify/ctanify -docfiles size=14 - texmf-dist/doc/latex/ctanify/README - texmf-dist/doc/latex/ctanify/ctanify.pdf +containersize 8236 +containerchecksum 6774b151bb0fb052d41d8447c7e8d378d7f31b0a5aea5f2f00b93669b8c2f629f479ae21d40480fd62f468d866cbe0c6f0dedd8a0248f8d83cd1039131849439 +doccontainersize 57960 +doccontainerchecksum f9b636cb41b126809d808c167410a37052b1c6c385fe4eb8df3b819c0cf2cac2c7c1c74d7ea15d2916c1cbc563e078845e451000e3a08cd9a8e0696a342b22ac +docfiles size=23 + texmf-dist/doc/latex/ctanify/README details="Readme" + texmf-dist/doc/latex/ctanify/ctanify.pdf details="Package documentation" texmf-dist/doc/man/man1/ctanify.1 texmf-dist/doc/man/man1/ctanify.man1.pdf +runfiles size=6 + texmf-dist/scripts/ctanify/ctanify catalogue-also ctanupload catalogue-ctan /support/ctanify -catalogue-date 2015-09-11 19:04:11 +0200 -catalogue-license lppl1.3 +catalogue-date 2017-04-23 06:09:52 +0200 +catalogue-license lppl1.3c catalogue-topics ctan -catalogue-version 1.7 +catalogue-version 1.9.1 + +name ctanify.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of ctanify +containersize 340 +containerchecksum 8803651edc9ea59f6fc9c56aa8034fd765e11ff61bdc933a8a9d21f1bbdddef2d27aeea843d2cf12e8b28feb1195306d2b7c34b257f44e5bb39d6136c10ef036 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/ctanify + +name ctanify.amd64-freebsd +category Package +revision 24061 +shortdesc amd64-freebsd files of ctanify +containersize 340 +containerchecksum f27a6c25526b90364584c159018aaca6ddf14bfd6aa556dcf3acb5841c62240c191879da37f2caa4ad5ed871e431ec56c1cd7b557034504d8ffbef1e8a2a82e5 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/ctanify + +name ctanify.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of ctanify +containersize 340 +containerchecksum 8afbcad2230e49877b7cebb2ab1c429e3cbdcdfaa824cdbbefab2482248a4a2e1484faa27ef8552c1f23781ab002c59ff6af6b382aba8bdb517acc04c614f9f8 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/ctanify + +name ctanify.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of ctanify +containersize 340 +containerchecksum 8fe55551b1eda0082bf436242ba352d31b70dd2501a4cd1032b05e514b70f1009c65b29f3f399a2d7f8a8ffde9ce41a7b0f050ce3409153e62052c86b0e71a02 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/ctanify + +name ctanify.i386-cygwin +category Package +revision 24061 +shortdesc i386-cygwin files of ctanify +containersize 336 +containerchecksum 5e3ca783b0ea550b1b7d889ffd840a75b58a33114d53edf1f8cfa48f64c40d87ae5a6c618d751b40a21b34f379d27bd061ddfb92d9d511d47abe91db0f183a8d +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/ctanify + +name ctanify.i386-freebsd +category Package +revision 24061 +shortdesc i386-freebsd files of ctanify +containersize 340 +containerchecksum eb5cb9eb1511046a759303f2b30936e8a4159011bc9031b4163dbcb890df3ee95239551df6326802af4114e845baa51a5485b757ed0fdcf2830b50399182fd74 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/ctanify name ctanify.i386-linux category Package revision 24061 shortdesc i386-linux files of ctanify +containersize 340 +containerchecksum 6a0fcea64287ad918b03990b64e7a6d73ae5ee1406d857f54a2b9c712b26402b3c778c87d6e30dd83534871f9c15b49e71bc014f22cecc5f7ce77bce6b8d0a54 binfiles arch=i386-linux size=1 bin/i386-linux/ctanify +name ctanify.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of ctanify +containersize 340 +containerchecksum 163b5c5568ae3bb0334e33eace49288808d9f803d4af7bd82eac8eebefbdafa46c043d62ab221b7d3e5f93c873bd33856f9a02e2204c616fc686a71d5e2e755b +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/ctanify + +name ctanify.i386-solaris +category Package +revision 24061 +shortdesc i386-solaris files of ctanify +containersize 336 +containerchecksum 4cd39007a490592483b7267196fa20bc828b7c71ea22a4b27680edb42970d17954173f3a6b44df895719b1a12f0fc81ab083cf38218b0ef09da426f19bef2977 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/ctanify + +name ctanify.win32 +category Package +revision 24061 +shortdesc win32 files of ctanify +containersize 684 +containerchecksum c07df95ddc560a64cd77f7aae10073fbed090d6ea5e94d163aad07db5c98f9db2a64e56d7a9cd74698a7b0b153c20855ec96107e3867953d829c6efae3b8b49a +binfiles arch=win32 size=1 + bin/win32/ctanify.exe + +name ctanify.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of ctanify +containersize 340 +containerchecksum ea2b61bb228b0f353b9712bcb5cd5b5c4eb4e3d8b454f6596b6a9c57837b2648d2d5ad800f08069d556782e83b3b623f1d04ce4cec984a1a9484e46eed0176e1 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/ctanify + +name ctanify.x86_64-darwin +category Package +revision 24061 +shortdesc x86_64-darwin files of ctanify +containersize 340 +containerchecksum 7469b93220acfe80aa44deba7f65bcb02b0a5ce54c001c4ae0fae5bd1500f12dc13fa5f5a3b8369fec8693dbb4a419f446c79acd3ab620a1d86084b9d8f9d869 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/ctanify + +name ctanify.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of ctanify +containersize 348 +containerchecksum 71f9055c833a7b284c47a1faa409fd7ac8087b126389c611253e6aa87b352ee29628731169f09eac801114c1a64831cf5d6e386e6fe76f75b02f96d8b76e2a5d +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/ctanify + +name ctanify.x86_64-linux +category Package +revision 24061 +shortdesc x86_64-linux files of ctanify +containersize 340 +containerchecksum 31edd084842362c213462a14fb344975f287791addbc02db1b0ad4ffe381e461a134b44bc6f15e0fb1e749f73aa2f96cfd6ecd0528e1de3d38aa342df115aaca +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/ctanify + +name ctanify.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of ctanify +containersize 340 +containerchecksum c4b9276b9ee7956d187d885c7d80c7109b35be4f2637eaee4432ad8ec88d05127ccbbe98e9977ddf095e9110b3be9273bad1bd5f533ccd6f9e92cb6c31359d4f +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/ctanify + +name ctanify.x86_64-solaris +category Package +revision 24061 +shortdesc x86_64-solaris files of ctanify +containersize 340 +containerchecksum a88ca9b4b8f9ea62ee6d34d55c1aa44d9bd28334b8ce7454b88a60a2fdee3682333d650e49cddbc6d62b87847e1e16d4cb727225258e19fc849bf4800f3e8002 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/ctanify + name ctanupload category Package revision 26313 -shortdesc Support for users uploading to CTAN. +shortdesc Support for users uploading to CTAN longdesc The package provides a Perl script that allows the uploads of a longdesc contribution to CTAN from the command line. The aim is to longdesc simplify the release process for LaTeX package authors. Note by longdesc the CTAN team (2015-02-05): It seems that this script is longdesc currently not working. depend ctanupload.ARCH -runfiles size=5 - texmf-dist/scripts/ctanupload/ctanupload.pl +containersize 5104 +containerchecksum 4464bdfbf72318b24abcd88e1c25dae5925a96e867c694f3f02a594ed7b8b24cffdcdb345f0054e200a6af63f88b591ff84058af0adfb4a1b3feff2a057d9d72 +doccontainersize 174964 +doccontainerchecksum 9e027f7ce08041be7668a7a404fad6b6c7cfc71e581ad1216956d0b53c379d204bd84d2d55d186c74f784df8911770b96f934775f44f7141a5f1b9b5e773cb7a docfiles size=47 texmf-dist/doc/support/ctanupload/Makefile.example - texmf-dist/doc/support/ctanupload/README - texmf-dist/doc/support/ctanupload/ctanupload.pdf + texmf-dist/doc/support/ctanupload/README details="Readme" + texmf-dist/doc/support/ctanupload/ctanupload.pdf details="Package documentation" texmf-dist/doc/support/ctanupload/ctanupload.tex +runfiles size=5 + texmf-dist/scripts/ctanupload/ctanupload.pl +catalogue-also ctanify catalogue-ctan /support/ctanupload -catalogue-date 2015-02-05 18:04:56 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl3 +catalogue-topics ctan catalogue-version 1.2c +name ctanupload.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of ctanupload +containersize 344 +containerchecksum cd0060c5366c3c7e47c73fa58edd1b3dadd5c56974d139fec43994c974ec2cce3ce5c1a165e061789d3e1d7d0e8db76d754c485807ec13ac74ebf806b5afbd18 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/ctanupload + +name ctanupload.amd64-freebsd +category Package +revision 23866 +shortdesc amd64-freebsd files of ctanupload +containersize 344 +containerchecksum ea310aae05eb94c3119207b6b976492ffa6a56a3ff68d5da02cb4e8c1f3e09cb47118f0fbd2574d8e5d81eb008d36d19187c04ad1783cc73175e3d93a0294b30 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/ctanupload + +name ctanupload.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of ctanupload +containersize 344 +containerchecksum 0e428eed00d8d9a2167611d46cc70b0f84739f175098706ab91f666d98f4b7f27cbcb55078c45cf9b4df16b45bbe7e0052bc1245555c99ea2c373bba7cfc4b79 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/ctanupload + +name ctanupload.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of ctanupload +containersize 344 +containerchecksum 3b8fe6255a0c356ecc81c69deb91de18b9c0ac22a0870053541d617f978fc8090e810f174c0e9812a7ae0fa23ebd1492f92d4fa2a9795fa9052b0dec536a4623 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/ctanupload + +name ctanupload.i386-cygwin +category Package +revision 23866 +shortdesc i386-cygwin files of ctanupload +containersize 344 +containerchecksum 864ca9831ffc53262542213aa4be9f556086db6474299dd5889e74d818f0e037b67aab4510277b4a74f12f31ea7fd41fcb108bda91c83f045d2e464052b47856 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/ctanupload + +name ctanupload.i386-freebsd +category Package +revision 23866 +shortdesc i386-freebsd files of ctanupload +containersize 344 +containerchecksum cb3da08d7911d84344e5cdba8a0fcb2d3dbe4c0d923022d58a9d20a26d1e125eb90d9baa9798ab58bef7a46a29852cb0b15de7acf4c039c76122c55e96ab7547 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/ctanupload + name ctanupload.i386-linux category Package revision 23866 shortdesc i386-linux files of ctanupload +containersize 344 +containerchecksum 0eadc6e4cf42e8e24a2314e8b5110587c48be7bae33d9017a41b1f758eb740b0c776d1beacd2bcc80d9b647cc5c0edc756b460127b1df0585c11d9d4080fcb32 binfiles arch=i386-linux size=1 bin/i386-linux/ctanupload -name ctex-faq +name ctanupload.i386-netbsd category Package -revision 15878 -shortdesc LaTeX FAQ by the Chinese TeX Society (ctex.org). -relocated 1 -longdesc Most questions were collected on the bbs.ctex.org forum, and -longdesc were answered in detail by the author. -docfiles size=180 - RELOC/doc/latex/ctex-faq/README - RELOC/doc/latex/ctex-faq/ctex-faq.pdf - RELOC/doc/latex/ctex-faq/src/ctex-faq.sty - RELOC/doc/latex/ctex-faq/src/ctex-faq.tex - RELOC/doc/latex/ctex-faq/src/make.bat -catalogue-ctan /info/ctex-faq -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license fdl +revision 30191 +shortdesc i386-netbsd files of ctanupload +containersize 344 +containerchecksum 49320f66cf63a00a876f00aabd300bcc01b319812f5e34057673302580776aee50b93fa92e7a7e474d5aae078e5771ba8cb2ecf48100357628104bcf2d59b71a +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/ctanupload + +name ctanupload.i386-solaris +category Package +revision 23866 +shortdesc i386-solaris files of ctanupload +containersize 340 +containerchecksum b08c7208da607f951a4ba1c2eaac0969f904891d46ca014c7e44f2620ba52e2b9de69fd924ae0fd37c6e1e60772afe2a12f1ec02a6a94e794d7f61c1657bf6c8 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/ctanupload + +name ctanupload.win32 +category Package +revision 23866 +shortdesc win32 files of ctanupload +containersize 684 +containerchecksum c2c20dbd0750a555f745b2472ccf919439f55bba1704037dd7678b3f67fac495167772a5cabf9b557dfd7dcdc406e6e77e60661d932e98bc6e2bf5de9480e324 +binfiles arch=win32 size=1 + bin/win32/ctanupload.exe + +name ctanupload.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of ctanupload +containersize 344 +containerchecksum 989fcb749920d18bb685827664eb6aadc2e0fb0e4ae893d2cc2e53e0f0b6bec8f76cafff60a7660c3661936b068dba0749796ce0050006468f37660dd24dcfb8 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/ctanupload + +name ctanupload.x86_64-darwin +category Package +revision 23866 +shortdesc x86_64-darwin files of ctanupload +containersize 344 +containerchecksum a73c504e354b769f2d1b22ffc328e553c13386a2e358029f4f22b18fd0dfe25f6cc6bd42c0c307c2028c714e3cc8564cc6f15fd1a1d3c53162784bd84ca87b37 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/ctanupload + +name ctanupload.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of ctanupload +containersize 352 +containerchecksum 271a6bc77fee6a885a6b6f0742e6956b75bbef2b924e51f11199d97dec3e7473c0b7e3fb541294fda13f75670c68f1c3ca72265c7a30d36abc8d540c03d140a6 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/ctanupload + +name ctanupload.x86_64-linux +category Package +revision 23866 +shortdesc x86_64-linux files of ctanupload +containersize 344 +containerchecksum cdcf5af60c46155ee3c7bfab6547845250d5e1fae1ed6af59f1ebe76c2013e1d717c9b0962f68d57752a23dfb0dc12c8a1b8fc7708a096896e91653bc1e51dd1 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/ctanupload + +name ctanupload.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of ctanupload +containersize 348 +containerchecksum 828ba61c1c9864fa3889ce29cb12faca3ec593915878c95fe61507f4455060c5ca7c14d161764cfc2be4f6a542ef10e186d0a9f7a3b1d58c2e2ba563f1bc6602 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/ctanupload + +name ctanupload.x86_64-solaris +category Package +revision 23866 +shortdesc x86_64-solaris files of ctanupload +containersize 344 +containerchecksum f7e4b0faadbb299062024159b90f191e4f590b074834f40e95339df105d4c76ce07158c404395a587adbfaf355a5eac7eeaba31933d84beb0f71320be165fff9 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/ctanupload name ctex category Package -revision 37720 -shortdesc LaTeX classes and packages for Chinese typesetting. +revision 50843 +shortdesc LaTeX classes and packages for Chinese typesetting relocated 1 +longdesc ctex is a collection of macro packages and document classes for +longdesc LaTeX Chinese typesetting. depend ttfutils -runfiles size=131 +containersize 41204 +containerchecksum e47cf179c4bb08848c67af61170f9e38f1e242df51942c7cf681a4f2b5110a4a3f3e8aeda9ccccc00b9bb1def66daab6da259274e13241f87828ba6a97afb6b4 +doccontainersize 1026872 +doccontainerchecksum a93a48574e7742e0e9d1ad5a45d65efbff1625dd65298303083af7003d6726c2a4984661efdb17a8be5fe98587ffe9a2ac6de064c007ab6abdff3e97c582e070 +docfiles size=261 + RELOC/doc/latex/ctex/README.md details="Readme" + RELOC/doc/latex/ctex/ctex.pdf details="Package documentation" language="zh" +srccontainersize 85808 +srccontainerchecksum 79289a5cce4e76f8f4392e73f264084d5c4e9eb4ca26868d0a05ea91401ff151a0fdfd6b1a8e84e0c5cc703aa1afdcecdc54b0a75132c85e983bf69b299920f6 +srcfiles size=114 + RELOC/source/latex/ctex/ctex.dtx + RELOC/source/latex/ctex/ctex.ins + RELOC/source/latex/ctex/ctexpunct.spa +runfiles size=188 RELOC/tex/generic/ctex/ctexmakespa.tex RELOC/tex/generic/ctex/ctexspamacro.tex + RELOC/tex/generic/ctex/ctxdocstrip.tex RELOC/tex/generic/ctex/zhadobefonts.tex RELOC/tex/generic/ctex/zhfandolfonts.tex RELOC/tex/generic/ctex/zhfounderfonts.tex @@ -42932,12 +73899,14 @@ runfiles size=131 RELOC/tex/latex/ctex/config/ctex.cfg RELOC/tex/latex/ctex/config/ctexopts.cfg RELOC/tex/latex/ctex/ctex-article.def + RELOC/tex/latex/ctex/ctex-beamer.def RELOC/tex/latex/ctex/ctex-book.def RELOC/tex/latex/ctex/ctex-c5size.clo RELOC/tex/latex/ctex/ctex-cs4size.clo RELOC/tex/latex/ctex/ctex-report.def RELOC/tex/latex/ctex/ctex.sty RELOC/tex/latex/ctex/ctexart.cls + RELOC/tex/latex/ctex/ctexbeamer.cls RELOC/tex/latex/ctex/ctexbook.cls RELOC/tex/latex/ctex/ctexcap.sty RELOC/tex/latex/ctex/ctexheading.sty @@ -42946,8 +73915,13 @@ runfiles size=131 RELOC/tex/latex/ctex/ctexrep.cls RELOC/tex/latex/ctex/ctexsize.sty RELOC/tex/latex/ctex/ctexspa.def + RELOC/tex/latex/ctex/ctxdoc.cls + RELOC/tex/latex/ctex/dictionary/translator-theorem-dictionary-ChineseGBK.dict + RELOC/tex/latex/ctex/dictionary/translator-theorem-dictionary-ChineseUTF8.dict + RELOC/tex/latex/ctex/engine/ctex-engine-aptex.def RELOC/tex/latex/ctex/engine/ctex-engine-luatex.def RELOC/tex/latex/ctex/engine/ctex-engine-pdftex.def + RELOC/tex/latex/ctex/engine/ctex-engine-uptex.def RELOC/tex/latex/ctex/engine/ctex-engine-xetex.def RELOC/tex/latex/ctex/fd/c19rm.fd RELOC/tex/latex/ctex/fd/c19sf.fd @@ -42955,44 +73929,90 @@ runfiles size=131 RELOC/tex/latex/ctex/fd/c70rm.fd RELOC/tex/latex/ctex/fd/c70sf.fd RELOC/tex/latex/ctex/fd/c70tt.fd + RELOC/tex/latex/ctex/fd/jt2zhrm.fd + RELOC/tex/latex/ctex/fd/jt2zhsf.fd + RELOC/tex/latex/ctex/fd/jt2zhtt.fd + RELOC/tex/latex/ctex/fd/jy2zhrm.fd + RELOC/tex/latex/ctex/fd/jy2zhsf.fd + RELOC/tex/latex/ctex/fd/jy2zhtt.fd RELOC/tex/latex/ctex/fontset/ctex-fontset-adobe.def RELOC/tex/latex/ctex/fontset/ctex-fontset-fandol.def RELOC/tex/latex/ctex/fontset/ctex-fontset-founder.def RELOC/tex/latex/ctex/fontset/ctex-fontset-mac.def + RELOC/tex/latex/ctex/fontset/ctex-fontset-macnew.def + RELOC/tex/latex/ctex/fontset/ctex-fontset-macold.def RELOC/tex/latex/ctex/fontset/ctex-fontset-ubuntu.def RELOC/tex/latex/ctex/fontset/ctex-fontset-windows.def RELOC/tex/latex/ctex/fontset/ctex-fontset-windowsnew.def RELOC/tex/latex/ctex/fontset/ctex-fontset-windowsold.def RELOC/tex/latex/ctex/scheme/ctex-scheme-chinese-article.def + RELOC/tex/latex/ctex/scheme/ctex-scheme-chinese-beamer.def RELOC/tex/latex/ctex/scheme/ctex-scheme-chinese-book.def RELOC/tex/latex/ctex/scheme/ctex-scheme-chinese-report.def RELOC/tex/latex/ctex/scheme/ctex-scheme-chinese.def RELOC/tex/latex/ctex/scheme/ctex-scheme-plain-article.def + RELOC/tex/latex/ctex/scheme/ctex-scheme-plain-beamer.def RELOC/tex/latex/ctex/scheme/ctex-scheme-plain-book.def RELOC/tex/latex/ctex/scheme/ctex-scheme-plain-report.def RELOC/tex/latex/ctex/scheme/ctex-scheme-plain.def -docfiles size=232 - RELOC/doc/latex/ctex/README - RELOC/doc/latex/ctex/ctex.pdf -srcfiles size=88 - RELOC/source/latex/ctex/ctex.dtx - RELOC/source/latex/ctex/ctexpunct.spa +catalogue-contact-bugs https://github.com/CTeX-org/ctex-kit/issues +catalogue-contact-home http://www.ctex.org/HomePage +catalogue-contact-repository https://github.com/CTeX-org/ctex-kit +catalogue-contact-support https://github.com/CTeX-org/ctex-kit/issues catalogue-ctan /language/chinese/ctex -catalogue-date 2015-06-30 19:55:40 +0200 -catalogue-license lppl1.3 +catalogue-date 2019-04-07 20:03:16 +0200 +catalogue-license lppl1.3c catalogue-topics chinese book-pub class -catalogue-version 2.2 +catalogue-version 2.4.15 + +name ctex-faq +category Package +revision 15878 +shortdesc LaTeX FAQ by the Chinese TeX Society (ctex.org) +relocated 1 +longdesc Most questions were collected on the bbs.ctex.org forum, and +longdesc were answered in detail by the author. +containersize 432 +containerchecksum 39ff8931e0007a78e4fa0788d7c7fcd8f25dd4cf4fa3f34b694e681e10dfb3d804842daf45a6e56b5ff450bb965bc322dcf593bdce176ffec27f4696c1c99fc0 +doccontainersize 474648 +doccontainerchecksum 0942a249a30f97d56bf5cbac2eb4de285a63406620b825a36d9ff8d46fbccd614af488f89e2af7472f1a9075a0e2b7228bb65a5804451df6945ce6bf4287b0a2 +docfiles size=180 + RELOC/doc/latex/ctex-faq/README details="Readme (English)" language="en" + RELOC/doc/latex/ctex-faq/ctex-faq.pdf details="The FAQ (Chinese)" language="zh" + RELOC/doc/latex/ctex-faq/src/ctex-faq.sty + RELOC/doc/latex/ctex-faq/src/ctex-faq.tex + RELOC/doc/latex/ctex-faq/src/make.bat +catalogue-ctan /info/ctex-faq +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license fdl +catalogue-topics chinese-doc faq name ctib category Package revision 15878 catalogue ctib4tex -shortdesc Tibetan for TeX and LATeX2e. +shortdesc Tibetan for TeX and LaTeX2e relocated 1 longdesc A package using a modified version of Sirlin's Tibetan font. An longdesc advantage of this Tibetan implementation is that all consonant longdesc clusters are formed by TeX and Metafont. No external longdesc preprocessor is needed. +containersize 116552 +containerchecksum 8999ea42b82e56cbb06e2485060b829a0781550834ea421607b4621199692976488f4031266eee1a6b1443b12828e2fb5148ff43eff137c01ee9db8770bb1565 +doccontainersize 217796 +doccontainerchecksum 65d8f613ddb651cef4c345791a4a849e3f672930fb94d1ba789e827b466c459bc321762c71675cb4c5fdec8fc456520bb7013d5b737b4ff2bd049bb5917a98ef +docfiles size=100 + RELOC/doc/latex/ctib/README details="Readme" + RELOC/doc/latex/ctib/ctib4tex.pdf details="Package documentation" + RELOC/doc/latex/ctib/ctib4tex.tex +srccontainersize 8532 +srccontainerchecksum b387b2cc636f98bf7bf43fc3be04cbb62dfd6597c419b7791605011f59981cd9e90737f9d2f0f668f63bf9abff854219a75a7527d881c991190188f307f3642d +srcfiles size=9 + RELOC/source/latex/ctib/COPYING + RELOC/source/latex/ctib/EMTEX + RELOC/source/latex/ctib/HISTORY + RELOC/source/latex/ctib/INSTALL + RELOC/source/latex/ctib/MIKTEX runfiles size=206 RELOC/fonts/source/public/ctib/bzrsetup.mf RELOC/fonts/source/public/ctib/ctib.mf @@ -43008,66 +74028,273 @@ runfiles size=206 RELOC/tex/latex/ctib/ctib.tex RELOC/tex/latex/ctib/lctctib.fd RELOC/tex/latex/ctib/lctenc.def -docfiles size=100 - RELOC/doc/latex/ctib/README - RELOC/doc/latex/ctib/ctib4tex.pdf - RELOC/doc/latex/ctib/ctib4tex.tex -srcfiles size=9 - RELOC/source/latex/ctib/COPYING - RELOC/source/latex/ctib/EMTEX - RELOC/source/latex/ctib/HISTORY - RELOC/source/latex/ctib/INSTALL - RELOC/source/latex/ctib/MIKTEX catalogue-ctan /language/tibetan/ctib -catalogue-date 2012-04-30 16:43:33 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics tibetan name ctie category TLCore -revision 37078 -shortdesc C version of tie (merging Web change files). +revision 50602 +shortdesc C version of tie (merging Web change files) longdesc This is a version of tie converted for use with cweb. depend kpathsea depend ctie.ARCH -docfiles size=3 +containersize 408 +containerchecksum 05fd794d4437c662b77b0662dd0c9169aef35a10140abad2519702577c087177d0a02ee5b6163873fe5b3c83c3f77c342c4774af168ebca2ed875717c7d0c5b0 +doccontainersize 16456 +doccontainerchecksum 83bb53248ce262bc8310faa8c0e057dac72c7c682e295fb9888acff237249a66a69d66b99d79033f5a1d8611ef582dd2121f8c28be9800ebcce775bf3adecf63 +docfiles size=6 texmf-dist/doc/man/man1/ctie.1 texmf-dist/doc/man/man1/ctie.man1.pdf catalogue-ctan /web/c_cpp/ctie -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license gpl +catalogue-topics litprog catalogue-version 1.1 +name ctie.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of ctie +containersize 30124 +containerchecksum 99c55aa0204757ee994188a681be334a6cdcdd303b6414f8d2acad9172974e62ea0feac92bc05a3523c8aec31d08ba79f207a015533fb25d51b7f2348c0af667 +binfiles arch=aarch64-linux size=20 + bin/aarch64-linux/ctie + +name ctie.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of ctie +containersize 35068 +containerchecksum b76eb7aff30dc393b7d31b5d299e33d8d56c4d29fae12d333e4251295ad7d5dad2a997d0f1e8a0e327fe522f8fb8c5afdedb242579345663d48da33e2bf6b91d +binfiles arch=amd64-freebsd size=21 + bin/amd64-freebsd/ctie + +name ctie.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of ctie +containersize 31756 +containerchecksum fa34c69463cd11b8b9e5a46977fd60dbcfdd9fd187ea91fbe4cbf5576016024b7bbb9517363d19ef233ff185530698bcf421c50654d150f00e272441e11fdbe6 +binfiles arch=amd64-netbsd size=25 + bin/amd64-netbsd/ctie + +name ctie.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of ctie +containersize 28692 +containerchecksum f733ef70908a2dbab273fa064220c55eeb714a6c4f4db9f97d3113b42543d654a9142c447b123dbdff69e03309bbc6ba435c65c5f9c0bdef3aad74d0264d9fae +binfiles arch=armhf-linux size=18 + bin/armhf-linux/ctie + +name ctie.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of ctie +containersize 6648 +containerchecksum 63d57f0fc5fac8b4fd79351889b793db3f7a8df434f66a92a6a6224ac14818720d1ac7caadabfa3bf659428b1150ec46fa0ccba1eb564d760002dd137c26f792 +binfiles arch=i386-cygwin size=5 + bin/i386-cygwin/ctie.exe + +name ctie.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of ctie +containersize 30296 +containerchecksum 56e8116e39272ccb7fa5f20e306927da51e5d7bdf78f64d0a39daa67eb13936b84c8b3540e8ed6cbfd702ffb299d8cd6195020ca1bd88d32fd461649baf6d7db +binfiles arch=i386-freebsd size=17 + bin/i386-freebsd/ctie + name ctie.i386-linux category TLCore -revision 36790 +revision 50281 shortdesc i386-linux files of ctie -binfiles arch=i386-linux size=28 +containersize 37976 +containerchecksum 260e4c8f771f3099008485f5d65d4a60adb6c92a4c5c5d5ce3ffa1d4e8a2be02cc4c82b6b8c61eade45f9ce4b7a6dff78363d7d398a32e8fee15c3bc16b1e3c5 +binfiles arch=i386-linux size=24 bin/i386-linux/ctie +name ctie.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of ctie +containersize 29228 +containerchecksum f9aa5a68205b5ca0f2dd4601206346446a10ae1dbff7f7e0c900c3df45d9bb78e1b4350a926b754960e8488cde45d2e33e9b74b6c16e15613336948f8a7fdb7a +binfiles arch=i386-netbsd size=23 + bin/i386-netbsd/ctie + +name ctie.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of ctie +containersize 34068 +containerchecksum 20739f2c5a4016e2641f635fbe98377d163281f842520f5202cc0272f0e4c5576c0279a681a5448c2301b02f69985abb54cb453e73bd917d43f527fbd2a3de9e +binfiles arch=i386-solaris size=19 + bin/i386-solaris/ctie + +name ctie.win32 +category TLCore +revision 50155 +shortdesc win32 files of ctie +containersize 6848 +containerchecksum 6c30a5641707e50e6060ddb9dd45acfebd03f7886ab5c7c86243d28eac01edaf67f5cac68ea979a131893ced22a8a9bb50c1e28e228ec207d239e8a4e0b107d5 +binfiles arch=win32 size=4 + bin/win32/ctie.exe + +name ctie.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of ctie +containersize 6768 +containerchecksum 4ce3a1100c159df34612ebb34c9db953551e17c3487f81a1a089952ae35e8cbab2e8624037016c091c86fdd6b4796ef227a93ad3bd80edd50daf82e32954a6ed +binfiles arch=x86_64-cygwin size=5 + bin/x86_64-cygwin/ctie.exe + +name ctie.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of ctie +containersize 33944 +containerchecksum 1b8929fcd17cc582234540c36c6548a1627edb68f292d1aaa37ac8267e6b2288df37cb497fb97a69acece82ca21505fb544c3ae82154d271016add9fcffc2746 +binfiles arch=x86_64-darwin size=20 + bin/x86_64-darwin/ctie + +name ctie.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of ctie +containersize 33804 +containerchecksum e874f911b6bc2e3354c083d9a0d26f8795b469e399831e9a7d18dc1ccfec8ca4de221dfef8ceeea10626ceb499c2eda3f0c1fbec560a3218f90361ee2bf18106 +binfiles arch=x86_64-darwinlegacy size=22 + bin/x86_64-darwinlegacy/ctie + +name ctie.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of ctie +containersize 35764 +containerchecksum 90b7a408cddfaa1f397af9054fa4d5a3ced83a54a21eaf6de51bf5ba5215c43f530f6d0b446b406775f86cfaa615790fc889f9228189c90e4d40b1ae4ab7c859 +binfiles arch=x86_64-linux size=21 + bin/x86_64-linux/ctie + +name ctie.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of ctie +containersize 37328 +containerchecksum 29a5c1cc735b82a44aa5f579232653c57a1a3b77bcc05310abae2704a398b14b42a63ccbaba63d1e7258a1205eb6169f6629e769d60010137bb2f1295e37670c +binfiles arch=x86_64-linuxmusl size=23 + bin/x86_64-linuxmusl/ctie + +name ctie.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of ctie +containersize 36896 +containerchecksum 6c2756c1675801ced33f67186be39c3d0ab07254b2643c2769a55949da57abfe7c3c74dc80573c6b5c5df147e6057064ed78b61c02bc523d8f2f4e159562e0fe +binfiles arch=x86_64-solaris size=23 + bin/x86_64-solaris/ctie + name cuisine category Package revision 34453 -shortdesc Typeset recipes. +shortdesc Typeset recipes relocated 1 longdesc Typeset recipes with the ingredients lined up with their method longdesc step (somewhat similarly to the layout used in cooking). -runfiles size=4 - RELOC/tex/latex/cuisine/cuisine.sty +containersize 3000 +containerchecksum cb594c2ef79a1d1614ad2b7bedff3b5bd9853bf36947751c880c36c73a458152eb7036861d0292614992623192841c28a3f4010bc0c4107fd8a4277154a1baf5 +doccontainersize 256720 +doccontainerchecksum 9e4f55bf8199b4bd06847dd39e67e91a8a6885b3903c9ea772199d9b9fd9d7cade173dff6f785d143b4e7c3b154477622a4c2cad14576b22068a6729693a8227 docfiles size=64 - RELOC/doc/latex/cuisine/README - RELOC/doc/latex/cuisine/cuisine.pdf + RELOC/doc/latex/cuisine/README details="Package Readme" + RELOC/doc/latex/cuisine/cuisine.pdf details="Package documentation" +srccontainersize 11764 +srccontainerchecksum 1df5e248af42513b212d4c18cd95c8c9f2155598604624cf3b5e5e5b020643bdbb9c3addf03d8ff111c14185234d42f0db8a06a9de040fa0b58cec3895f32731 srcfiles size=13 RELOC/source/latex/cuisine/cuisine.dtx RELOC/source/latex/cuisine/cuisine.ins +runfiles size=4 + RELOC/tex/latex/cuisine/cuisine.sty +catalogue-also recipe catalogue-ctan /macros/latex/contrib/cuisine -catalogue-date 2014-06-27 19:08:04 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics cooking catalogue-version 0.7 +name cuprum +category Package +revision 49909 +shortdesc Cuprum font family support for LaTeX +relocated 1 +longdesc This package provides support for the Cuprum font family (see +longdesc http://jovanny.ru). +execute addMap cuprum.map +containersize 87020 +containerchecksum 578ce2e5af01e81ba80c0cfcc0225985722c1515e8f98460a1cb5d71d8ee4630d400f28dee04bb505c429b13f5cb604364d26503af0b5d9bf98164b218b09413 +doccontainersize 42724 +doccontainerchecksum b9a9bda8eab6087a134b3b0660282998c7c3fa7fda8890e61ba107b9f7576d85ca01b59664c1c198679151e01cef6ebce5b8de29644a2e249a6ca2100f526fe2 +docfiles size=16 + RELOC/doc/fonts/cuprum/LICENSE.txt + RELOC/doc/fonts/cuprum/README.md details="Readme" + RELOC/doc/fonts/cuprum/cuprum.pdf details="Package documentation" + RELOC/doc/fonts/cuprum/cuprum.tex +runfiles size=113 + RELOC/fonts/map/dvips/cuprum/cuprum.map + RELOC/fonts/tfm/public/cuprum/cprbit8t.tfm + RELOC/fonts/tfm/public/cuprum/cprbn8t.tfm + RELOC/fonts/tfm/public/cuprum/cprmit8t.tfm + RELOC/fonts/tfm/public/cuprum/cprmn8t.tfm + RELOC/fonts/truetype/public/cuprum/Cuprum-Bold.ttf + RELOC/fonts/truetype/public/cuprum/Cuprum-BoldItalic.ttf + RELOC/fonts/truetype/public/cuprum/Cuprum-Italic.ttf + RELOC/fonts/truetype/public/cuprum/Cuprum-Regular.ttf + RELOC/tex/latex/cuprum/cuprum.sty + RELOC/tex/latex/cuprum/t1cpr.fd +catalogue-ctan /fonts/cuprum +catalogue-date 2019-02-05 05:26:48 +0100 +catalogue-license ofl +catalogue-topics font font-body font-sans font-ttf font-t1enc font-proportional + +name currency +category Package +revision 48990 +shortdesc Format currencies in a consistent way +relocated 1 +longdesc The package facilitates the formatting of currencies (amounts +longdesc and units) with various formatting capabilities. +containersize 1896 +containerchecksum d975cbe846ad5708a3558252094f4568c3ea4c5bc840dea7ade74eb8f6d90f4527b417a875a7bc286010473078d895cf510560f1287013e70498c983c896750b +doccontainersize 710120 +doccontainerchecksum 1f32fed0bf778b3460e094239afd76b4be9915be8a3e8ea20b7e48b02f1ffdcffdd1e588a507b8145ed232a38cee43db1bac0e232c472d5b5dd85f1cf3954c8c +docfiles size=179 + RELOC/doc/latex/currency/README.md details="Readme" + RELOC/doc/latex/currency/currency.pdf + RELOC/doc/latex/currency/currency_doc.pdf details="Package documentation" + RELOC/doc/latex/currency/currency_doc.tex +srccontainersize 4164 +srccontainerchecksum c7a99bf685283b415c7cf71a6700bcf2928d2342f5db8a3b78e96148fc01ad028b0921a7c048f345dd5d5fbcb3f47618390fd580b02fb4ab1594e7bf5def9904 +srcfiles size=4 + RELOC/source/latex/currency/currency.dtx + RELOC/source/latex/currency/currency.ins +runfiles size=2 + RELOC/tex/latex/currency/currency.sty +catalogue-also siunitx +catalogue-contact-bugs https://github.com/antoinelejay/currency/issues +catalogue-contact-repository https://github.com/antoinelejay/currency +catalogue-ctan /macros/latex/contrib/currency +catalogue-date 2018-10-24 21:28:00 +0200 +catalogue-license lppl1.3 +catalogue-topics units scientific-docs +catalogue-version 0.4 + name currfile category Package -revision 29012 -shortdesc Provide file name and path of input files. +revision 40725 +shortdesc Provide file name and path of input files relocated 1 longdesc The package provides macros holding file name information longdesc (directory, base name, extension, full name and full path) for @@ -43080,48 +74307,67 @@ longdesc of such a file. The depth of inclusion is made available, longdesc together with the "parent" (including file) and "parents" (all longdesc including files to the root of the tree). The package longdesc supersedes FiNK. +containersize 3704 +containerchecksum 5e67b659df7048a2f3e0d99f7e7da753fcabc4cc94d284d88b6b6922dffe2823eff3c07e96d0d4689d2c430a1cd66ef4693d0ceb344609c6aeeb919aa378a297 +doccontainersize 170640 +doccontainerchecksum d45abaaab826dd9dc8a7d5cccdeece29b26d8f56c0c74c2047f5ae7d43ffc3c0596f009536fca744fa9bede2e8d87a13b68b8ebf4a0ced31afc6bbab5b76ad72 +docfiles size=43 + RELOC/doc/latex/currfile/README details="Readme" + RELOC/doc/latex/currfile/currfile.pdf details="Package documentation" +srccontainersize 11428 +srccontainerchecksum 0374496112e380b2c8cce8b00e3dd97d992dbe194f660118c3441fd9b0ba536f476b5e330bd363a624f71d5b3004f50d2ee315534929093ebf9f63f47e91c1fc +srcfiles size=13 + RELOC/source/latex/currfile/currfile.dtx + RELOC/source/latex/currfile/currfile.ins runfiles size=5 RELOC/tex/latex/currfile/currfile-abspath.sty RELOC/tex/latex/currfile/currfile.sty -docfiles size=42 - RELOC/doc/latex/currfile/README - RELOC/doc/latex/currfile/currfile.pdf -srcfiles size=12 - RELOC/source/latex/currfile/currfile.dtx - RELOC/source/latex/currfile/currfile.ins catalogue-ctan /macros/latex/contrib/currfile -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 -catalogue-version 0.7b +catalogue-topics doc-tool +catalogue-version 0.7c name currvita category Package revision 15878 -shortdesc Typeset a curriculum vitae. +shortdesc Typeset a curriculum vitae relocated 1 longdesc Currvita is a package rather than a class (like most other longdesc curriculum vitae offerings). The author considers that a longdesc curriculum vitae can quite reasonably form part of another longdesc document (such as a letter, or a dissertation). -runfiles size=2 - RELOC/tex/latex/currvita/currvita.sty +containersize 2340 +containerchecksum c555b0e9c7a500e086f0435a2dc6cde8da8b02df4d27be14534d28c77c1f546aafecb863bc652922e07191d0441a77db647f8d1d11e33ec9bc6014f73a5822c2 +doccontainersize 89020 +doccontainerchecksum b3de1ad371cead2829225015d60a4defe604e63890ef06da65fa9223cce4e748707f0b6f4f0b0dcdf22c3096e381adc3432a7b21b36f834c18ae4eb32bfba024 docfiles size=30 - RELOC/doc/latex/currvita/README - RELOC/doc/latex/currvita/currvita.pdf + RELOC/doc/latex/currvita/README details="Package Readme" + RELOC/doc/latex/currvita/currvita.pdf details="Package documentation" RELOC/doc/latex/currvita/cvtest.tex +srccontainersize 16148 +srccontainerchecksum a1dc7d983ac6badf9ced1492c712373205d5b0a91934f0a76eb1ac546470292e6c9dda4cd5f5d721e06c90d6237eb39236f1417d1c6992a774f7a9f7df9213bb srcfiles size=15 RELOC/source/latex/currvita/currvita.dtx RELOC/source/latex/currvita/currvita.ins +runfiles size=2 + RELOC/tex/latex/currvita/currvita.sty +catalogue-also curve cv esieecv europecv vita catalogue-ctan /macros/latex/contrib/currvita -catalogue-date 2011-09-24 17:57:01 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics cv name cursolatex category Package revision 24139 -shortdesc A LaTeX tutorial. +shortdesc A LaTeX tutorial relocated 1 longdesc The tutorial is presented as a set of slides (in Portuguese). +containersize 392 +containerchecksum 6c58f5a0f6fb8f129e202b786c258ba088efa44639f162b9e0109182072c16bfc6ba928953d6e9b31b2b1c2f693fe064476095c232dcb9e0c6bfcf18bfb7994e +doccontainersize 5407688 +doccontainerchecksum a0f726330a5b2d8da94cbf25fb1b1a2b22e5e9010e0cafdfdee3781bf518f0cb48adb27dce0fe2e46572460f8c1749c0db1c16e06343cabb8cb94227e3da58b6 docfiles size=1908 RELOC/doc/latex/cursolatex/MiKTeX-Basic.png RELOC/doc/latex/cursolatex/MiKTeX-Complete.png @@ -43131,7 +74377,7 @@ docfiles size=1908 RELOC/doc/latex/cursolatex/TeXworksPDF.pdf RELOC/doc/latex/cursolatex/WinEdt.pdf RELOC/doc/latex/cursolatex/cursolatex.nav - RELOC/doc/latex/cursolatex/cursolatex.pdf + RELOC/doc/latex/cursolatex/cursolatex.pdf details="Package documentation" language="pt" RELOC/doc/latex/cursolatex/cursolatex.snm RELOC/doc/latex/cursolatex/cursolatex.tex RELOC/doc/latex/cursolatex/cursolatex.vrb @@ -43144,68 +74390,14 @@ docfiles size=1908 RELOC/doc/latex/cursolatex/tipografia.pdf RELOC/doc/latex/cursolatex/ubuntu.pdf catalogue-ctan /info/portuguese/cursolatex -catalogue-date 2012-04-30 16:43:33 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl - -name curve2e -category Package -revision 37839 -shortdesc Extensions for package pict2e. -relocated 1 -longdesc The package extends the drawing capacities of the pict2e that -longdesc serves as a LaTeX 2e replacement for picture mode. In -longdesc particular, curve2e introduces new macros for lines and -longdesc vectors, new specifications for line terminations and joins, -longdesc arcs with any angular aperture, arcs with arrows at one or both -longdesc ends, generic curves specified with their nodes and the tangent -longdesc direction at these nodes. -runfiles size=8 - RELOC/tex/latex/curve2e/curve2e.sty -docfiles size=159 - RELOC/doc/latex/curve2e/README - RELOC/doc/latex/curve2e/README.txt - RELOC/doc/latex/curve2e/curve2e.pdf - RELOC/doc/latex/curve2e/manifest.txt -srcfiles size=40 - RELOC/source/latex/curve2e/curve2e.dtx -catalogue-ctan /macros/latex/contrib/curve2e -catalogue-date 2015-07-11 19:55:22 +0200 -catalogue-license lppl1.3 -catalogue-topics graphics-in-tex graphics-curve -catalogue-version 1.60 - -name curves -category Package -revision 15878 -shortdesc Curves for LaTeX picture environment -relocated 1 -longdesc The draws curves in the standard LaTeX picture environment -longdesc using parabolas between data points with continuous slope at -longdesc joins; for circles and arcs, it uses up to 16 parabolas. The -longdesc package also draws symbols or dash patterns along curves. The -longdesc package provides facilities equivalent to technical pens with -longdesc compasses and French curves. Curves consist of short secants -longdesc drawn by overlapping disks or line-drawing \special commands -longdesc selected by package options. -runfiles size=5 - RELOC/tex/latex/curves/curves.sty - RELOC/tex/latex/curves/curvesls.sty -docfiles size=41 - RELOC/doc/latex/curves/README - RELOC/doc/latex/curves/curves.pdf - RELOC/doc/latex/curves/latex2pdf -srcfiles size=20 - RELOC/source/latex/curves/curves.dtx - RELOC/source/latex/curves/curves.ins -catalogue-ctan /macros/latex/contrib/curves -catalogue-date 2012-06-07 15:01:30 +0200 -catalogue-license lppl -catalogue-version 1.53 +catalogue-topics tut-latex portuguese-doc name curve category Package revision 20745 -shortdesc A class for making curriculum vitae. +shortdesc A class for making curriculum vitae relocated 1 longdesc CurVe is a class for writing a CV, with configuration for the longdesc language in which you write. The class provides a set of @@ -43218,37 +74410,129 @@ longdesc often the case that you want to maintain slightly divergent longdesc versions of your CV at the same time, in order to emphasize on longdesc different aspects of your background. CurVe also comes with longdesc support for use with AUC-TeX. -runfiles size=7 - RELOC/tex/latex/curve/curve.cls +containersize 6868 +containerchecksum 9d318d35ef04d171da1c36ab4646465d4aa0feebd90fd3e97db5f1cf09c28c174d0c3be288c369215812f51ca83b341abbfdf3fa44458d1994cf68dfaeef0615 +doccontainersize 249672 +doccontainerchecksum 7a56d7c3bd8b9b13ee675b99a2f5a8a27fb3dfd81dc5225f3a880f338d5390c893ca887cbbcd9ad8deae2a1d6b6620ef664ea64384f93fd93a75a5c886641a2d docfiles size=80 RELOC/doc/latex/curve/NEWS - RELOC/doc/latex/curve/README + RELOC/doc/latex/curve/README details="Readme" RELOC/doc/latex/curve/THANKS RELOC/doc/latex/curve/curve.el - RELOC/doc/latex/curve/curve.pdf + RELOC/doc/latex/curve/curve.pdf details="Package documentation" RELOC/doc/latex/curve/examples/Makefile RELOC/doc/latex/curve/examples/bib.bib RELOC/doc/latex/curve/examples/bib.tex RELOC/doc/latex/curve/examples/raw.tex RELOC/doc/latex/curve/examples/rubric.tex RELOC/doc/latex/curve/header.inc +srccontainersize 22616 +srccontainerchecksum 8e5026da24dddda0f266b8431fb28c27037ad920e37010fd97fdbfb5dae8024cb687b681356a6e27244dd4812bbd043e12c91508978dbe796a119e3e8633566e srcfiles size=23 RELOC/source/latex/curve/curve.dtx RELOC/source/latex/curve/curve.ins +runfiles size=7 + RELOC/tex/latex/curve/curve.cls +catalogue-also currvita cv esieecv europecv vita catalogue-ctan /macros/latex/contrib/curve -catalogue-date 2014-09-21 12:34:36 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics cv class catalogue-version 1.16 +name curve2e +category Package +revision 50663 +shortdesc Extensions for package pict2e +relocated 1 +longdesc The package extends the drawing capacities of the pict2e that +longdesc serves as a LaTeX2e replacement for picture mode. In +longdesc particular, curve2e introduces new macros for lines and +longdesc vectors, new specifications for line terminations and joins, +longdesc arcs with any angular aperture, arcs with arrows at one or both +longdesc ends, generic curves specified with their nodes and the tangent +longdesc direction at these nodes. +containersize 8276 +containerchecksum 3a3338e1fc29c7526291a5f6814ed8ba5bda7f96162bd96945cbb8e81c60a51071c178a7a0158f12cab162fcce37bbd9abc33cb2bd9b1a4ba64996b085800505 +doccontainersize 514236 +doccontainerchecksum 677ec58576b1c5559127b3effd921461eef24be62053d4f74f2f86950a9f7ead20686ff1e15157c989d84df3eca138855c4cef91bd0f592641503068c1de458e +docfiles size=128 + RELOC/doc/latex/curve2e/README.txt details="Readme" + RELOC/doc/latex/curve2e/curve2e.pdf details="Package documentation" +srccontainersize 46492 +srccontainerchecksum 854aa083e353e53407fd456bcf5175a3ef691035a5c47e3704becaa839b7a13576d1b5cb59157111e26bf6dfb6f5c730c82a6a45be73d77a2656bf32e31649bc +srcfiles size=50 + RELOC/source/latex/curve2e/curve2e.dtx + RELOC/source/latex/curve2e/ltxdoc.cfg +runfiles size=15 + RELOC/tex/latex/curve2e/curve2e-v161.sty + RELOC/tex/latex/curve2e/curve2e.sty +catalogue-ctan /macros/latex/contrib/curve2e +catalogue-date 2019-03-30 09:54:39 +0100 +catalogue-license lppl1.3c +catalogue-topics graphics graphics-in-tex graphics-curve +catalogue-version 2.0.1 + +name curves +category Package +revision 45255 +shortdesc Curves for LaTeX picture environment +relocated 1 +longdesc This package draws curves in the standard LaTeX picture +longdesc environment using parabolas between data points with continuous +longdesc slope at joins; for circles and arcs, it uses up to 16 +longdesc parabolas. The package can also draw symbols or dash patterns +longdesc along curves. The package provides facilities equivalent to +longdesc technical pens with compasses and French curves. Curves consist +longdesc of short secants drawn by overlapping disks or line-drawing +longdesc \special commands selected by package options. +containersize 5256 +containerchecksum b2ac96620bdcae2263e0ff37ef0975fc705efd2ec30fa53a5cc50d54378cb29c6ef44543cc321e6cb37dfca0ea9a6cdf85777825703b866bcbad9729235c9722 +doccontainersize 320428 +doccontainerchecksum afd68373952dbf2a97944bcd7b36dcb62d5b65727c660af56dd8da97137ef4845037988e211996289fb54efa435833fa4a503ae4bba70ab38cd6e55f1966db1e +docfiles size=81 + RELOC/doc/latex/curves/README details="Readme" + RELOC/doc/latex/curves/curves.pdf details="Package documentation" + RELOC/doc/latex/curves/latex2pdf +srccontainersize 22308 +srccontainerchecksum cdef0242776f9976f72d953ac743a4771ac5d5aaaabf6988ef37d695c78e206f43d546bf21621c5a9f91e191c95c02ecbe9fc9d7e3f1eb23372a755856d61d2b +srcfiles size=20 + RELOC/source/latex/curves/curves.dtx + RELOC/source/latex/curves/curves.ins +runfiles size=5 + RELOC/tex/latex/curves/curves.sty + RELOC/tex/latex/curves/curvesls.sty +catalogue-ctan /macros/latex/contrib/curves +catalogue-date 2017-09-09 11:04:30 +0200 +catalogue-license lppl1.3 +catalogue-topics graphics-in-tex graphics-curve +catalogue-version 1.55 + name custom-bib category Package revision 24729 -shortdesc Customised BibTeX styles. +shortdesc Customised BibTeX styles relocated 1 longdesc Package generating customized BibTeX bibliography styles from a longdesc generic file using docstrip driven by parameters generated by a longdesc menu application. Includes support for the Harvard style of longdesc citations. +containersize 84528 +containerchecksum 95b485e330c97242bbea4b989ea9e70882d796f7ff8fdbb10b0627d102ef6177c8cdfca976a89853170a9171a69499c58711d1deeb0e420f9cb268e336d4f663 +doccontainersize 667864 +doccontainerchecksum 3d5fe696f095ef5661418e3066f2f98768968eddbeb24ce9ec84647b78452f97482ae1dd17cd9c84cfb81fc4a43052b05ef6aa4080e32a464d2ba4e8ce33869b +docfiles size=190 + RELOC/doc/latex/custom-bib/README details="Readme" + RELOC/doc/latex/custom-bib/makebst.pdf details="Package documentation" + RELOC/doc/latex/custom-bib/merlin.pdf details="Master style file documentation" + RELOC/doc/latex/custom-bib/readme.mkb +srccontainersize 17224 +srccontainerchecksum e17d437ae7fb0c1328c2fa333f1f7d286a517bb536f7cf2d66ced327d1ddc78b97791852cac8fc9de4994b41f1433da17fa1e41838ddf90f1fe387eaa9e477c6 +srcfiles size=16 + RELOC/source/latex/custom-bib/makebst.drv + RELOC/source/latex/custom-bib/makebst.dtx + RELOC/source/latex/custom-bib/makebst.ins + RELOC/source/latex/custom-bib/shorthnd.ins runfiles size=140 RELOC/tex/latex/custom-bib/catalan.mbs RELOC/tex/latex/custom-bib/dansk.mbs @@ -43273,51 +74557,86 @@ runfiles size=140 RELOC/tex/latex/custom-bib/spanish.mbs RELOC/tex/latex/custom-bib/suppjour.mbs RELOC/tex/latex/custom-bib/svenska.mbs -docfiles size=190 - RELOC/doc/latex/custom-bib/README - RELOC/doc/latex/custom-bib/makebst.pdf - RELOC/doc/latex/custom-bib/merlin.pdf - RELOC/doc/latex/custom-bib/readme.mkb -srcfiles size=16 - RELOC/source/latex/custom-bib/makebst.drv - RELOC/source/latex/custom-bib/makebst.dtx - RELOC/source/latex/custom-bib/makebst.ins - RELOC/source/latex/custom-bib/shorthnd.ins catalogue-ctan /macros/latex/contrib/custom-bib -catalogue-date 2011-11-18 13:01:42 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics bibtex-sty catalogue-version 4.33 name cutwin category Package revision 29803 -shortdesc Cut a window in a paragraph, typeset material in it. +shortdesc Cut a window in a paragraph, typeset material in it relocated 1 longdesc The package provides facilities to cut windows out of longdesc paragraphs, and to typeset text or other material in the longdesc window. The window may be rectangular, or may have other sorts longdesc of shape. -runfiles size=3 - RELOC/tex/latex/cutwin/cutwin.sty +containersize 2784 +containerchecksum 484c995cd3b18f723899fc04e3af7b49bc7ac90a02448c4b49643b8ebe09c445bab122bc2ca0f2cab872323438fb02af3e5a053977ae8ff6146cb4af96f08ba1 +doccontainersize 304448 +doccontainerchecksum 89b4fb68d949b86eb3b5d90f7d8c828e10df591cf734f5e6908a221aa9e2d50820841e6095dc912619d4461c37b735907504e63fffbfd95c3371602144f87429 docfiles size=81 - RELOC/doc/latex/cutwin/README - RELOC/doc/latex/cutwin/cutwin.pdf + RELOC/doc/latex/cutwin/README details="Readme" + RELOC/doc/latex/cutwin/cutwin.pdf details="Package documentation" +srccontainersize 9748 +srccontainerchecksum 0e6fbb5bdf3cc9b1d270979f379e2f50b356353533278495526275bab3211b1e6ef670a5269e412ae87c3fe4ca0ee8411dadfb42e4e2cce6dc200c863532b997 srcfiles size=10 RELOC/source/latex/cutwin/cutwin.dtx RELOC/source/latex/cutwin/cutwin.ins +runfiles size=3 + RELOC/tex/latex/cutwin/cutwin.sty catalogue-ctan /macros/latex/contrib/cutwin -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics text-flow catalogue-version 0.1 +name cv +category Package +revision 15878 +shortdesc A package for creating a curriculum vitae +relocated 1 +longdesc The package is distributed with two example files; they (and +longdesc their formatted output) constitute the only real documentation. +longdesc Note that cv is just a package: you choose the overall +longdesc formatting by deciding which class to use, while the package +longdesc provides the detailed formatting. +containersize 832 +containerchecksum 624d9bd1578e0d2e40e2ca76cd97d7f44d9da5c71daf737e06e6b6b15c64911af17f0da197afa17b5ff3b145461cf7efb058a5cbcd02e7c21642e660cfa3ca4d +doccontainersize 52576 +doccontainerchecksum c04b207a635f1b6f76e316284da987b45fd4387961c59b7b1f1b947284937f91f4d95ade824195d1f0db00766fec870e6859a6dd27cf3b6b426d095866f17d6a +docfiles size=20 + RELOC/doc/latex/cv/ApplicationLetter.pdf details="Example application letter" + RELOC/doc/latex/cv/ApplicationLetter.tex + RELOC/doc/latex/cv/CVCTAN.pdf details="Example CV" + RELOC/doc/latex/cv/CVCTAN.tex + RELOC/doc/latex/cv/README details="Readme" +runfiles size=1 + RELOC/tex/latex/cv/CV.sty +catalogue-also moderncv curve +catalogue-ctan /macros/latex/contrib/cv +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics cv class + name cv4tw category Package revision 34577 -shortdesc LaTeX CV class, with extended details. +shortdesc LaTeX CV class, with extended details relocated 1 longdesc The class offers entries for assets and social networks; longdesc customizable styles are provided. The class comes with no longdesc documentation, but a worked example offers some guidance. +containersize 5132 +containerchecksum 607745abedd1325c59bc8ae360a1c5d00834ec7bd050b057ba5427c135f17046027da3fb6130a0718e8d33bcab74eaf235f2de7a1ace483da1af87be5e559867 +doccontainersize 98724 +doccontainerchecksum d9166421ab15d7569a4db66970486c78af43ddbda9d7f9c9488dbc46eed91ab5079c0f9b7851835afeed6045ee4c65c888e1be93a95cda14623405847267880b +docfiles size=33 + RELOC/doc/latex/cv4tw/README details="Readme" + RELOC/doc/latex/cv4tw/sample-jules-verne-compact.pdf + RELOC/doc/latex/cv4tw/sample-jules-verne-sharp.pdf + RELOC/doc/latex/cv4tw/sample-jules-verne-simple.pdf runfiles size=9 RELOC/tex/latex/cv4tw/cv4tw-scheme.sty RELOC/tex/latex/cv4tw/cv4tw-theme-compact.sty @@ -43325,52 +74644,64 @@ runfiles size=9 RELOC/tex/latex/cv4tw/cv4tw-theme-sharp.sty RELOC/tex/latex/cv4tw/cv4tw-theme-simple.sty RELOC/tex/latex/cv4tw/cv4tw.cls -docfiles size=33 - RELOC/doc/latex/cv4tw/README - RELOC/doc/latex/cv4tw/sample-jules-verne-compact.pdf - RELOC/doc/latex/cv4tw/sample-jules-verne-sharp.pdf - RELOC/doc/latex/cv4tw/sample-jules-verne-simple.pdf +catalogue-also moderncv curve +catalogue-contact-repository https://github.com/Cicatrice/cv4tw catalogue-ctan /macros/latex/contrib/cv4tw -catalogue-date 2014-09-21 12:34:36 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license other-free +catalogue-topics cv class catalogue-version 0.2 -name cv +name cweb category Package -revision 15878 -shortdesc A package for creating a curriculum vitae. -relocated 1 -longdesc The package is distributed with two example files; they (and -longdesc their formatted output) constitute the only real documentation. -longdesc Note that cv is just a package: you choose the overall -longdesc formatting by deciding which class to use, while the package -longdesc provides the detailed formatting. -runfiles size=1 - RELOC/tex/latex/cv/CV.sty -docfiles size=20 - RELOC/doc/latex/cv/ApplicationLetter.pdf - RELOC/doc/latex/cv/ApplicationLetter.tex - RELOC/doc/latex/cv/CVCTAN.pdf - RELOC/doc/latex/cv/CVCTAN.tex - RELOC/doc/latex/cv/README -catalogue-ctan /macros/latex/contrib/cv -catalogue-date 2014-11-07 14:37:14 +0100 -catalogue-license gpl +revision 50602 +shortdesc A Web system in C +longdesc The CWEB system is a system for literate programming, also +longdesc known as structured software documentation, with code written +longdesc in the C and C++ languages. DEK takes no responsibility for the +longdesc changefiles, they should be maintained independently -- his job +longdesc is to correct errors in ctangle.w, cweave.w, common.w, +longdesc cwebmac.tex, cwebman.tex, and the files of examples/*.w, +longdesc nothing more. +depend cweb.ARCH +containersize 9364 +containerchecksum 274b81a9a12de63e62c72878971c517427fe3dbd9a5ab10d89676326ecf23caefaa961504cb0e9a609224c519a3a6983346212fa67e759dbbf18c2c74de4c61e +doccontainersize 388288 +doccontainerchecksum 1acb8eb3dfa5d563369baccf3615c06c61f03ae70e18988fe4d4637bc97290f04288a9d15c548d48c65aba0dd3b0b23faa9c1a7f7aa093ed37035fab569c8d4f +docfiles size=136 + texmf-dist/doc/man/man1/ctangle.1 + texmf-dist/doc/man/man1/ctangle.man1.pdf + texmf-dist/doc/man/man1/ctwill-refsort.1 + texmf-dist/doc/man/man1/ctwill-refsort.man1.pdf + texmf-dist/doc/man/man1/ctwill-twinx.1 + texmf-dist/doc/man/man1/ctwill-twinx.man1.pdf + texmf-dist/doc/man/man1/ctwill.1 + texmf-dist/doc/man/man1/ctwill.man1.pdf + texmf-dist/doc/man/man1/cweave.1 + texmf-dist/doc/man/man1/cweave.man1.pdf + texmf-dist/doc/man/man1/cweb.1 + texmf-dist/doc/man/man1/cweb.man1.pdf + texmf-dist/doc/plain/cweb/cwebman.pdf details="Package documentation" +runfiles size=7 + texmf-dist/tex/plain/cweb/cwebmac.tex +catalogue-ctan /web/c_cpp/cweb +catalogue-date 2017-08-19 23:22:57 +0200 +catalogue-license knuth +catalogue-topics litprog +catalogue-version 3.64b name cweb-latex category Package revision 28878 -shortdesc A LaTeX version of CWEB. +shortdesc A LaTeX version of CWEB relocated 1 longdesc This bundle allows marking-up of CWEB code in LaTeX. The longdesc distribution includes the "Counting Words" program distributed longdesc with CWEB, edited to run with LaTeX. -runfiles size=33 - RELOC/tex/latex/cweb-latex/cwbl-german.sty - RELOC/tex/latex/cweb-latex/cweb.cls - RELOC/tex/latex/cweb-latex/cwebarray.sty - RELOC/tex/latex/cweb-latex/cwebbase.tex - RELOC/tex/latex/cweb-latex/keyvald.sty +containersize 36236 +containerchecksum 5d94dd53bf3212967ae38c094115c4ae581ec15a49e3d0f64be311cd1aa190eb9efdfec2cd83bbc3bd89250efef9470a6a6af342247fb9670992546a976a5886 +doccontainersize 240884 +doccontainerchecksum 16c8cd2681e216084564cec718401b9e8d98228e6597d38c42f8ef4cc4775e8e606fa11c84d21f0450d85ee18c7ed1e5fd9e1f54bcd0e8c2927b1147ecd4591b docfiles size=211 RELOC/doc/latex/cweb-latex/CATALOG RELOC/doc/latex/cweb-latex/History @@ -43378,7 +74709,7 @@ docfiles size=211 RELOC/doc/latex/cweb-latex/License RELOC/doc/latex/cweb-latex/MANIFEST RELOC/doc/latex/cweb-latex/Makefile - RELOC/doc/latex/cweb-latex/README + RELOC/doc/latex/cweb-latex/README details="Readme" RELOC/doc/latex/cweb-latex/contrib/Index RELOC/doc/latex/cweb-latex/contrib/cwbl-deutsch.sty RELOC/doc/latex/cweb-latex/contrib/cwbl-french.sty @@ -43388,8 +74719,8 @@ docfiles size=211 RELOC/doc/latex/cweb-latex/contrib/cweb-hy/cweb-hy.cls RELOC/doc/latex/cweb-latex/contrib/cweb-hy/nodoc.tex RELOC/doc/latex/cweb-latex/contrib/wagner/cwebzw.sty - RELOC/doc/latex/cweb-latex/cweb-conf.pdf - RELOC/doc/latex/cweb-latex/cweb-user.pdf + RELOC/doc/latex/cweb-latex/cweb-conf.pdf details="Internal interfaces" + RELOC/doc/latex/cweb-latex/cweb-user.pdf details="User manual" RELOC/doc/latex/cweb-latex/examples/Makefile RELOC/doc/latex/cweb-latex/examples/compare/wcltx.aux RELOC/doc/latex/cweb-latex/examples/compare/wcltx.bbl @@ -43403,7 +74734,7 @@ docfiles size=211 RELOC/doc/latex/cweb-latex/examples/wcltx.bib RELOC/doc/latex/cweb-latex/examples/wcltx.w RELOC/doc/latex/cweb-latex/src/Imakefile - RELOC/doc/latex/cweb-latex/src/README + RELOC/doc/latex/cweb-latex/src/README details="Readme" RELOC/doc/latex/cweb-latex/src/TODO RELOC/doc/latex/cweb-latex/src/cwbl-german.sty RELOC/doc/latex/cweb-latex/src/cweave-spec.tex @@ -43446,51 +74777,276 @@ docfiles size=211 RELOC/doc/latex/cweb-latex/src/test/titlepage.w RELOC/doc/latex/cweb-latex/src/test/token.w RELOC/doc/latex/cweb-latex/src/test/vbar.w +runfiles size=33 + RELOC/tex/latex/cweb-latex/cwbl-german.sty + RELOC/tex/latex/cweb-latex/cweb.cls + RELOC/tex/latex/cweb-latex/cwebarray.sty + RELOC/tex/latex/cweb-latex/cwebbase.tex + RELOC/tex/latex/cweb-latex/keyvald.sty catalogue-ctan /macros/latex/contrib/cweb -catalogue-date 2013-01-19 01:25:39 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics litprog -name cweb +name cweb-old category Package -revision 37078 -shortdesc A Web system in C. -longdesc The Cweb system is a system for Structured Software -longdesc Documentation (also known as Literate Programming) in the -longdesc programming language C. -depend cweb.ARCH -runfiles size=22 - texmf-dist/tex/plain/cweb/cwebmac.tex - texmf-dist/tex/plain/cweb/pdfXcwebmac.tex - texmf-dist/tex/plain/cweb/pdfcwebmac.tex - texmf-dist/tex/plain/cweb/pdfdcwebmac.tex - texmf-dist/tex/plain/cweb/pdffcwebmac.tex - texmf-dist/tex/plain/cweb/pdficwebmac.tex - texmf-dist/tex/plain/cweb/pdfwebmac.tex -docfiles size=47 - texmf-dist/doc/man/man1/ctangle.1 - texmf-dist/doc/man/man1/ctangle.man1.pdf - texmf-dist/doc/man/man1/cweave.1 - texmf-dist/doc/man/man1/cweave.man1.pdf - texmf-dist/doc/man/man1/cweb.1 - texmf-dist/doc/man/man1/cweb.man1.pdf - texmf-dist/doc/plain/cweb/cwebman.dvi -catalogue-ctan /web/c_cpp/cweb -catalogue-date 2012-04-30 16:43:33 +0200 -catalogue-license knuth -catalogue-version 3.64ad +revision 49271 +relocated 1 +containersize 9720 +containerchecksum efb1c9b65f7c628905d2dac1373da96346b6b6c78f15e8c0c8055e86c1a52b09bdb5f78fb06106e350d10a8daa378eb45f5fe788c6c3d8b23f0b47c3db6f256a +runfiles size=16 + RELOC/tex/plain/cweb-old/README + RELOC/tex/plain/cweb-old/pdfXcwebmac.tex + RELOC/tex/plain/cweb-old/pdfcwebmac.tex + RELOC/tex/plain/cweb-old/pdfdcwebmac.tex + RELOC/tex/plain/cweb-old/pdffcwebmac.tex + RELOC/tex/plain/cweb-old/pdficwebmac.tex + RELOC/tex/plain/cweb-old/pdfwebmac.tex + +name cweb.aarch64-linux +category Package +revision 50150 +shortdesc aarch64-linux files of cweb +containersize 105052 +containerchecksum a79bc59df4fbd18a21faf342595031c80c24f5aee7183b55bc75d5ec1525c90a09cb23281640f05975046cdd4e42782c185a8ab6de3c174ca9ec24985e7036ca +binfiles arch=aarch64-linux size=112 + bin/aarch64-linux/ctangle + bin/aarch64-linux/ctwill + bin/aarch64-linux/ctwill-refsort + bin/aarch64-linux/ctwill-twinx + bin/aarch64-linux/cweave + +name cweb.amd64-freebsd +category Package +revision 50445 +shortdesc amd64-freebsd files of cweb +containersize 133476 +containerchecksum 1c71ed031b06aac018e22946c4e162b4bdf31314b47bff917e88d33e3d5181eb257ba11d61b771d61d4e0b8146f35d639c5af27497ea2dfc6be99050efb815a9 +binfiles arch=amd64-freebsd size=131 + bin/amd64-freebsd/ctangle + bin/amd64-freebsd/ctwill + bin/amd64-freebsd/ctwill-refsort + bin/amd64-freebsd/ctwill-twinx + bin/amd64-freebsd/cweave + +name cweb.amd64-netbsd +category Package +revision 50171 +shortdesc amd64-netbsd files of cweb +containersize 107404 +containerchecksum 389361f57759168c4902bbcdf016674c119c66a1fc4664b43cc0024411d7f284170d3f4243f8173e375a99ed0369223ed4d3f6305fa917d5e2d29ebf2031e051 +binfiles arch=amd64-netbsd size=130 + bin/amd64-netbsd/ctangle + bin/amd64-netbsd/ctwill + bin/amd64-netbsd/ctwill-refsort + bin/amd64-netbsd/ctwill-twinx + bin/amd64-netbsd/cweave + +name cweb.armhf-linux +category Package +revision 50150 +shortdesc armhf-linux files of cweb +containersize 85812 +containerchecksum b37c84e26db8d59aed4fd2e125ae07dd117afca3ce0e1b5911a4f94b4055532ca4736279f4c6bdba0e78ce602e211dec7d462ea8d7e171224af136193682b709 +binfiles arch=armhf-linux size=94 + bin/armhf-linux/ctangle + bin/armhf-linux/ctwill + bin/armhf-linux/ctwill-refsort + bin/armhf-linux/ctwill-twinx + bin/armhf-linux/cweave + +name cweb.i386-cygwin +category Package +revision 50455 +shortdesc i386-cygwin files of cweb +containersize 63924 +containerchecksum 2d42f7d0128a14d57ba75da697b44a5924ee784fbadc23d8404905b811f318558c7dcb77f8b864a1a6d6ee0f80e39dfd755dbde0e67ad64753f70801ed238c04 +binfiles arch=i386-cygwin size=58 + bin/i386-cygwin/ctangle.exe + bin/i386-cygwin/ctwill-refsort.exe + bin/i386-cygwin/ctwill-twinx.exe + bin/i386-cygwin/ctwill.exe + bin/i386-cygwin/cweave.exe + +name cweb.i386-freebsd +category Package +revision 50473 +shortdesc i386-freebsd files of cweb +containersize 100432 +containerchecksum aac9e5235abe380d37253f74faa334decb04fc38f3f668024bf63d42546f5935994a2e28b49fec5f13c0d95f2a634729527188b3bf83adf7e939b7cc8905fb75 +binfiles arch=i386-freebsd size=106 + bin/i386-freebsd/ctangle + bin/i386-freebsd/ctwill + bin/i386-freebsd/ctwill-refsort + bin/i386-freebsd/ctwill-twinx + bin/i386-freebsd/cweave name cweb.i386-linux category Package -revision 36790 +revision 50281 shortdesc i386-linux files of cweb -binfiles arch=i386-linux size=79 +containersize 110084 +containerchecksum b55214cd20ad0690fe1fc46cf5913aa019f4a4dbee9785ba8319947a8d787516baf9c318ddbf8f91c09d2cc81b8bbfb4a7366f648b3cd6ea4a4a6cc51c62a017 +binfiles arch=i386-linux size=112 bin/i386-linux/ctangle + bin/i386-linux/ctwill + bin/i386-linux/ctwill-refsort + bin/i386-linux/ctwill-twinx bin/i386-linux/cweave +name cweb.i386-netbsd +category Package +revision 50171 +shortdesc i386-netbsd files of cweb +containersize 89156 +containerchecksum a29798969cd08e74f7bb04f9a203f628fe84c1bc39ba2c98462cd6905ead234d572e0fd078bf255fbc884761980e2c7d5330e8ed772f3eea9f555dedbb58bfe9 +binfiles arch=i386-netbsd size=117 + bin/i386-netbsd/ctangle + bin/i386-netbsd/ctwill + bin/i386-netbsd/ctwill-refsort + bin/i386-netbsd/ctwill-twinx + bin/i386-netbsd/cweave + +name cweb.i386-solaris +category Package +revision 50150 +shortdesc i386-solaris files of cweb +containersize 110288 +containerchecksum 1c4148e78bc11334d3149818882266015e12539f4df68310ecd455a5fe04932755a6e5b6673e2d490d13d2ca0b5f0864932fe601ee97ff4ea2f542381b3e0517 +binfiles arch=i386-solaris size=101 + bin/i386-solaris/ctangle + bin/i386-solaris/ctwill + bin/i386-solaris/ctwill-refsort + bin/i386-solaris/ctwill-twinx + bin/i386-solaris/cweave + +name cweb.win32 +category Package +revision 50155 +shortdesc win32 files of cweb +containersize 70872 +containerchecksum 49d94808189c96db45bdd404df2e5cbbf107cf127799c7863606d7223e292fc714d5a69a5b4aded4769ead46d32a3be3cec32194403aee198ac12b3771b6f312 +binfiles arch=win32 size=56 + bin/win32/ctangle.exe + bin/win32/ctwill-refsort.exe + bin/win32/ctwill-twinx.exe + bin/win32/ctwill.exe + bin/win32/cweave.exe + +name cweb.x86_64-cygwin +category Package +revision 50889 +shortdesc x86_64-cygwin files of cweb +containersize 72700 +containerchecksum 95c97d05f2a9c79e9834a16d61118bc7108b38dfa05c41231e665f0a8f28a14e30b3ca079c9adee6ce8152fbf0f1ebf98a694488c270948514be8f1334cd7c41 +binfiles arch=x86_64-cygwin size=58 + bin/x86_64-cygwin/ctangle.exe + bin/x86_64-cygwin/ctwill-refsort.exe + bin/x86_64-cygwin/ctwill-twinx.exe + bin/x86_64-cygwin/ctwill.exe + bin/x86_64-cygwin/cweave.exe + +name cweb.x86_64-darwin +category Package +revision 50150 +shortdesc x86_64-darwin files of cweb +containersize 114172 +containerchecksum 7b708134e9f56077d52f790654ca225e0c086697ba6d512eed5cf11a25aece6e3c78d25fa70d7b3f0b1369306c81fc0ef45b4af2bc16bd8c57e4821e39003ad5 +binfiles arch=x86_64-darwin size=113 + bin/x86_64-darwin/ctangle + bin/x86_64-darwin/ctwill + bin/x86_64-darwin/ctwill-refsort + bin/x86_64-darwin/ctwill-twinx + bin/x86_64-darwin/cweave + +name cweb.x86_64-darwinlegacy +category Package +revision 50282 +shortdesc x86_64-darwinlegacy files of cweb +containersize 103972 +containerchecksum d0a468d0037d097151c7990bd1b58acc672b9a59f708662cffef8fefc43fa18a7003ea46b3016c9a9f7dbc3f37cf7178abea53bf85b374781f3d5069407e50c4 +binfiles arch=x86_64-darwinlegacy size=105 + bin/x86_64-darwinlegacy/ctangle + bin/x86_64-darwinlegacy/ctwill + bin/x86_64-darwinlegacy/ctwill-refsort + bin/x86_64-darwinlegacy/ctwill-twinx + bin/x86_64-darwinlegacy/cweave + +name cweb.x86_64-linux +category Package +revision 50281 +shortdesc x86_64-linux files of cweb +containersize 114232 +containerchecksum b2db6ec574dd84b64793d43c0b15fd397ee6d2b730833d7265d93dd23251ad2e043bf9649afe12d64a5ad2f755db722534b8c839fd35e2bd85c9bcf0d81adf0d +binfiles arch=x86_64-linux size=106 + bin/x86_64-linux/ctangle + bin/x86_64-linux/ctwill + bin/x86_64-linux/ctwill-refsort + bin/x86_64-linux/ctwill-twinx + bin/x86_64-linux/cweave + +name cweb.x86_64-linuxmusl +category Package +revision 50176 +shortdesc x86_64-linuxmusl files of cweb +containersize 115704 +containerchecksum 8234a659c2dff15cddea81763fd5f0ed148fafe6f3b444021e76d2d110db4e0733f45e679f7ce3fdf42a6f3eae89939d1ecc9d8f96549a40be8066aef6daa901 +binfiles arch=x86_64-linuxmusl size=116 + bin/x86_64-linuxmusl/ctangle + bin/x86_64-linuxmusl/ctwill + bin/x86_64-linuxmusl/ctwill-refsort + bin/x86_64-linuxmusl/ctwill-twinx + bin/x86_64-linuxmusl/cweave + +name cweb.x86_64-solaris +category Package +revision 50150 +shortdesc x86_64-solaris files of cweb +containersize 126528 +containerchecksum cbba91a8d2b4942d3f5f0aaaa81eb20a5ac1822f2cf6df32af1bf8933659b03f5c69ab4f85eae38949b1183d048937a554406344ca3c96246ba17d74f43080be +binfiles arch=x86_64-solaris size=117 + bin/x86_64-solaris/ctangle + bin/x86_64-solaris/ctwill + bin/x86_64-solaris/ctwill-refsort + bin/x86_64-solaris/ctwill-twinx + bin/x86_64-solaris/cweave + +name cyber +category Package +revision 46776 +shortdesc Annotate compliance with cybersecurity requirements +relocated 1 +longdesc This LaTeX package helps you write documents indicating your +longdesc compliance with cybersecurity requirements. It also helps you +longdesc format your document in a form suitable inside the U.S. +longdesc Department of Defense, by attaching distribution statements, +longdesc destruction notices, organization logos, and security labels to +longdesc it. +containersize 3508 +containerchecksum f79e9ce92036c8a106de0a5da06f5c2b833683527f1225f5b69298b6d886cb967f9d1eb459b7a0543d89b0943a8425dc802619fadb9d69aa4f57a5ccc71a593b +doccontainersize 247024 +doccontainerchecksum 4dfc2289e92552dde5cd1703e5644e6a19f4281dd16cb80d86caa35cfbc07eaf0f5cd57686e185adafce3883433fc87b1fcb590cd65087571115dd4b98023d02 +docfiles size=63 + RELOC/doc/latex/cyber/LICENSE + RELOC/doc/latex/cyber/README details="Readme" + RELOC/doc/latex/cyber/cyber.pdf details="Package documentation" +srccontainersize 12624 +srccontainerchecksum cf9beb92528c860a3ec39041c0436d40d113bb0cfaf89ae9c5b76dd44ca18b846b14739c1a2b447ea1ff84042dbecd48ac2cc118615ebd30013da305e822c81d +srcfiles size=11 + RELOC/source/latex/cyber/cyber.dtx + RELOC/source/latex/cyber/cyber.ins +runfiles size=3 + RELOC/tex/latex/cyber/cyber.sty +catalogue-ctan /macros/latex/contrib/cyber +catalogue-date 2018-03-01 06:15:11 +0100 +catalogue-license mit +catalogue-topics doc-supp +catalogue-version 2.2 + name cybercic category Package revision 37659 -shortdesc "Controls in Contents" for the cyber package. +shortdesc "Controls in Contents" for the cyber package relocated 1 longdesc This package is used in concert with the cyber package to make longdesc documents with annotations of compliance with cybersecurity @@ -43501,51 +75057,31 @@ longdesc final document. It also makes your document more brittle in longdesc unexpected ways: for example, when you use cybercic in the same longdesc document as hyperref, you cannot use any formatting in your longdesc section titles. So don't use cybercic unless you need to. -runfiles size=2 - RELOC/tex/latex/cybercic/cybercic.sty +containersize 2392 +containerchecksum f3bfbece973cb3b9a3077c160b0212561056cbf7733e1c011b39fa1dbf94395937f4858964acd0874f1cd3ba283df9797cdf19e8e71e7363a7619c5ae653881c +doccontainersize 191164 +doccontainerchecksum dc72453f55c6a72913865f584b026baf287a35885548ee5c2c8d29cefd60595f4aa9f7c456f59ebf3ed3e3b72711beaf90cf85f24c2ce6773146fd2a4724767f docfiles size=49 RELOC/doc/latex/cybercic/LICENSE - RELOC/doc/latex/cybercic/README - RELOC/doc/latex/cybercic/cybercic.pdf + RELOC/doc/latex/cybercic/README details="Readme" + RELOC/doc/latex/cybercic/cybercic.pdf details="Package documentation" +srccontainersize 7480 +srccontainerchecksum 55223353fadf2986f777b4a61b2f34662f493d2c70e29cba8712625c16dfa49ba50644d406f49a908afb0e4b6816666c1cf5f060685d5428eb2787b6b4ef233b srcfiles size=6 RELOC/source/latex/cybercic/cybercic.dtx RELOC/source/latex/cybercic/cybercic.ins +runfiles size=2 + RELOC/tex/latex/cybercic/cybercic.sty catalogue-ctan /macros/latex/contrib/cybercic -catalogue-date 2015-06-24 08:24:32 +0200 -catalogue-license other-free +catalogue-date 2016-12-18 08:45:22 +0100 +catalogue-license mit catalogue-topics doc-supp toc-etc catalogue-version 2.1 -name cyber -category Package -revision 37658 -shortdesc Annotate compliance with cybersecurity requirements. -relocated 1 -longdesc This LaTeX package helps you write documents indicating your -longdesc compliance with cybersecurity requirements. It also helps you -longdesc format your document in a form suitable inside the U.S. -longdesc Department of Defense, by attaching distribution statements, -longdesc destruction notices, organization logos, and security labels to -longdesc it. -runfiles size=3 - RELOC/tex/latex/cyber/cyber.sty -docfiles size=63 - RELOC/doc/latex/cyber/LICENSE - RELOC/doc/latex/cyber/README - RELOC/doc/latex/cyber/cyber.pdf -srcfiles size=11 - RELOC/source/latex/cyber/cyber.dtx - RELOC/source/latex/cyber/cyber.ins -catalogue-ctan /macros/latex/contrib/cyber -catalogue-date 2015-06-24 09:17:59 +0200 -catalogue-license other-free -catalogue-topics doc-supp -catalogue-version 2.1 - name cyklop category Package revision 18651 -shortdesc The Cyclop typeface. +shortdesc The Cyclop typeface relocated 1 longdesc The Cyclop typeface was designed in the 1920s at the workshop longdesc of Warsaw type foundry "Odlewnia Czcionek J. Idzkowski i S-ka". @@ -43575,6 +75111,16 @@ longdesc TeX and LaTeX including encoding definition files: T1 (ec), T5 longdesc (Vietnamese), OT4, QX, texnansi and nonstandard ones (IL2 for longdesc Czech fonts). execute addMap cyklop.map +containersize 314684 +containerchecksum dd6584831fae3eb388f66e42f289f9bdeff401412c7df471752c4aa56bc67c16c56f6f271d11c289a1389faae138ac15abc41bb716bf344bc2f49fa087ecd380 +doccontainersize 405780 +doccontainerchecksum 4d81a01eea30a4f86b2f0a7c9c21923196dbd28c7d5ba5c1639068318ef227720550b3052cf0ead6f3194450d50dce9acaa325a0dace0e6fd230e0ed11d9b106 +docfiles size=119 + RELOC/doc/fonts/cyklop/00readme + RELOC/doc/fonts/cyklop/00readme-pl + RELOC/doc/fonts/cyklop/GUST-FONT-LICENSE.txt + RELOC/doc/fonts/cyklop/MANIFEST.txt + RELOC/doc/fonts/cyklop/cyklop-info.pdf details="Package documentation" runfiles size=364 RELOC/fonts/afm/public/cyklop/cyklopi.afm RELOC/fonts/afm/public/cyklop/cyklopr.afm @@ -43634,43 +75180,17 @@ runfiles size=364 RELOC/tex/latex/cyklop/qxcyklop.fd RELOC/tex/latex/cyklop/t1cyklop.fd RELOC/tex/latex/cyklop/t5cyklop.fd -docfiles size=119 - RELOC/doc/fonts/cyklop/00readme - RELOC/doc/fonts/cyklop/00readme-pl - RELOC/doc/fonts/cyklop/GUST-FONT-LICENSE.txt - RELOC/doc/fonts/cyklop/MANIFEST.txt - RELOC/doc/fonts/cyklop/cyklop-info.pdf catalogue-ctan /fonts/cyklop -catalogue-date 2014-04-24 13:39:23 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gfl +catalogue-topics font font-sans font-otf font-type1 catalogue-version 0.915 -name cyrillic-bin -category TLCore -revision 37078 -shortdesc Cyrillic bibtex and makeindex. -depend cyrillic-bin.ARCH -runfiles size=2 - texmf-dist/scripts/texlive/rubibtex.sh - texmf-dist/scripts/texlive/rumakeindex.sh -docfiles size=6 - texmf-dist/doc/man/man1/rubibtex.1 - texmf-dist/doc/man/man1/rubibtex.man1.pdf - texmf-dist/doc/man/man1/rumakeindex.1 - texmf-dist/doc/man/man1/rumakeindex.man1.pdf - -name cyrillic-bin.i386-linux -category TLCore -revision 29741 -shortdesc i386-linux files of cyrillic-bin -binfiles arch=i386-linux size=2 - bin/i386-linux/rubibtex - bin/i386-linux/rumakeindex - name cyrillic category Package -revision 36834 -shortdesc Support for Cyrillic fonts in LaTeX. +revision 47350 +catalogue latex-cyrillic +shortdesc Support for Cyrillic fonts in LaTeX relocated 1 longdesc This bundle of macros files provides macro support (including longdesc font encoding macros) for the use of Cyrillic characters in @@ -43679,6 +75199,34 @@ longdesc cover (between them) pretty much every language that is written longdesc in a Cyrillic alphabet. This directory is part of the LaTeX longdesc "required" distribution. depend cyrillic-bin +containersize 15820 +containerchecksum 447f8628641df193b258559435567e5e7f912de6a87688e68676ab683512f09661b2098707fa6ff9544972bdf3a58d81caf946811d3ff8516782062b1a10545c +doccontainersize 924900 +doccontainerchecksum fa2a5ca9c0952b80150e0d2b37f9472981ba3ce45e8ea5cba399551c6cf5a309d8329702494eefa759ca6423fc7df523cdce47eb9e9ecd12a5b15c1ba322ac48 +docfiles size=291 + RELOC/doc/latex/cyrillic/README.md details="Readme" + RELOC/doc/latex/cyrillic/changes.txt + RELOC/doc/latex/cyrillic/cyinpenc.pdf + RELOC/doc/latex/cyrillic/cyoutenc.pdf + RELOC/doc/latex/cyrillic/lcy.pdf + RELOC/doc/latex/cyrillic/lcycmlh.pdf + RELOC/doc/latex/cyrillic/manifest.txt + RELOC/doc/latex/cyrillic/ot2.pdf + RELOC/doc/latex/cyrillic/ot2cmams.pdf + RELOC/doc/latex/cyrillic/ot2cmlh.pdf + RELOC/doc/latex/cyrillic/t2lhfnt.pdf +srccontainersize 21448 +srccontainerchecksum 5f19310aa96200cd97eede4308ee7e0de75c06905880879b8fe83c614b63588717e2cff476e4dfa6e32a1a83c5925eeda0bc915d3b1bdf42250ac8523f61c215 +srcfiles size=46 + RELOC/source/latex/cyrillic/cyinpenc.dtx + RELOC/source/latex/cyrillic/cyoutenc.dtx + RELOC/source/latex/cyrillic/cyrlatex.ins + RELOC/source/latex/cyrillic/lcy.dtx + RELOC/source/latex/cyrillic/lcycmlh.fdd + RELOC/source/latex/cyrillic/ot2.dtx + RELOC/source/latex/cyrillic/ot2cmams.fdd + RELOC/source/latex/cyrillic/ot2cmlh.fdd + RELOC/source/latex/cyrillic/t2lhfnt.fdd runfiles size=133 RELOC/tex/latex/cyrillic/cp1251.def RELOC/tex/latex/cyrillic/cp855.def @@ -43787,36 +75335,194 @@ runfiles size=133 RELOC/tex/latex/cyrillic/x2enc.def RELOC/tex/latex/cyrillic/x2lcmss.fd RELOC/tex/latex/cyrillic/x2lcmtt.fd -docfiles size=291 - RELOC/doc/latex/cyrillic/README - RELOC/doc/latex/cyrillic/changes.txt - RELOC/doc/latex/cyrillic/cyinpenc.pdf - RELOC/doc/latex/cyrillic/cyoutenc.pdf - RELOC/doc/latex/cyrillic/lcy.pdf - RELOC/doc/latex/cyrillic/lcycmlh.pdf - RELOC/doc/latex/cyrillic/manifest.txt - RELOC/doc/latex/cyrillic/ot2.pdf - RELOC/doc/latex/cyrillic/ot2cmams.pdf - RELOC/doc/latex/cyrillic/ot2cmlh.pdf - RELOC/doc/latex/cyrillic/t2lhfnt.pdf -srcfiles size=46 - RELOC/source/latex/cyrillic/cyinpenc.dtx - RELOC/source/latex/cyrillic/cyoutenc.dtx - RELOC/source/latex/cyrillic/cyrlatex.ins - RELOC/source/latex/cyrillic/lcy.dtx - RELOC/source/latex/cyrillic/lcycmlh.fdd - RELOC/source/latex/cyrillic/ot2.dtx - RELOC/source/latex/cyrillic/ot2cmams.fdd - RELOC/source/latex/cyrillic/ot2cmlh.fdd - RELOC/source/latex/cyrillic/t2lhfnt.fdd catalogue-ctan /macros/latex/required/cyrillic -catalogue-date 2015-04-13 07:07:32 +0200 +catalogue-date 2018-04-07 06:08:02 +0200 catalogue-license lppl1.3 +catalogue-topics cyrillic + +name cyrillic-bin +category TLCore +revision 50602 +shortdesc Cyrillic bibtex and makeindex +depend cyrillic-bin.ARCH +containersize 1500 +containerchecksum f218abc7a05b5247ac3e7c6488c94ad775f7d238d4caa96d7537156052acf8c51cdd2131f55411050f7f8d725e163aa37e16a6af7147e0522be3db7115dcd207 +doccontainersize 25600 +doccontainerchecksum bfd4da4e4ba7c0d47e929a31b0fb52f5690b54fda797dd0df71864d411baffee9eb8c99b83942129802799ad95fbaf710b0f4da6be2e8fe003fc24fe97d9322d +docfiles size=12 + texmf-dist/doc/man/man1/rubibtex.1 + texmf-dist/doc/man/man1/rubibtex.man1.pdf + texmf-dist/doc/man/man1/rumakeindex.1 + texmf-dist/doc/man/man1/rumakeindex.man1.pdf +runfiles size=2 + texmf-dist/scripts/texlive/rubibtex.sh + texmf-dist/scripts/texlive/rumakeindex.sh + +name cyrillic-bin.aarch64-linux +category TLCore +revision 46208 +shortdesc aarch64-linux files of cyrillic-bin +containersize 384 +containerchecksum 0485e66a88bd279fc86a374a7cf905d44b17e1b2c865443571682db47f2c4d26140e3362ab8ecc462743108c235e040b5869649dc4a91124433f857056cf80c3 +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/rubibtex + bin/aarch64-linux/rumakeindex + +name cyrillic-bin.amd64-freebsd +category TLCore +revision 29785 +shortdesc amd64-freebsd files of cyrillic-bin +containersize 384 +containerchecksum 083c7bed61f452c84aad8245deffa73f07affcb353d6bf87e10203295f042c9ac32a7cfa6e1e47de3290bc07dd14e0c4de3b69f81beaabdda4028ba8a4d1433a +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/rubibtex + bin/amd64-freebsd/rumakeindex + +name cyrillic-bin.amd64-netbsd +category TLCore +revision 30191 +shortdesc amd64-netbsd files of cyrillic-bin +containersize 380 +containerchecksum 03d00f57bb3d9afeb63c15bb62c95acb4e21a4107b9f6089f140dbf86988beeebcd43df7d75d87fbc7ec1139551a5d5f0d7e59da97c221ffb8ba604db7cc9429 +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/rubibtex + bin/amd64-netbsd/rumakeindex + +name cyrillic-bin.armhf-linux +category TLCore +revision 30015 +shortdesc armhf-linux files of cyrillic-bin +containersize 380 +containerchecksum 08993675a454024898d5788779c5e48fbc8b2e10871151e54ab43583d35cdc76756f9769d32bc719aa1bc7a8d4c3868246bb8f9ef252d4eb32e51820abbf11d1 +binfiles arch=armhf-linux size=2 + bin/armhf-linux/rubibtex + bin/armhf-linux/rumakeindex + +name cyrillic-bin.i386-cygwin +category TLCore +revision 29836 +shortdesc i386-cygwin files of cyrillic-bin +containersize 380 +containerchecksum 8db91da062eb1803255692d58ea1524584324ec9607cc2a4aafa66b078d751196b0138795717449b87134d6e1cceac904dad1e0d48ba2b24c951aa5e13fe280a +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/rubibtex + bin/i386-cygwin/rumakeindex + +name cyrillic-bin.i386-freebsd +category TLCore +revision 29785 +shortdesc i386-freebsd files of cyrillic-bin +containersize 380 +containerchecksum e86e3e821d9014a2e26ae88cc8aad767d3628723a9db121f3e29b4144db6eed286c0d506a4b18f580564c88e7085406366942a43bc6750a50f75024fe739d88c +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/rubibtex + bin/i386-freebsd/rumakeindex + +name cyrillic-bin.i386-linux +category TLCore +revision 29741 +shortdesc i386-linux files of cyrillic-bin +containersize 384 +containerchecksum dbe22d8f1ee9dee0b15c5201b99c076b1917887660674c20c143089af7e027f400f925f83be9f19fbb8db55817e441278217fce486bdd66d1b73dcc03396e268 +binfiles arch=i386-linux size=2 + bin/i386-linux/rubibtex + bin/i386-linux/rumakeindex + +name cyrillic-bin.i386-netbsd +category TLCore +revision 30191 +shortdesc i386-netbsd files of cyrillic-bin +containersize 384 +containerchecksum 07c12defcd8dda1c73ce122313d9de9641badc39b047bacb89ca597528e8148d4cd0231b8f0f3c95e79d9af6f703616ae4719007abe8f5dc0533aabf9beb8cf3 +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/rubibtex + bin/i386-netbsd/rumakeindex + +name cyrillic-bin.i386-solaris +category TLCore +revision 29806 +shortdesc i386-solaris files of cyrillic-bin +containersize 376 +containerchecksum 811dc638820061d9705aae77d40e1878cfedd0558fdb4c0beb4fc63f5141ec349c137ee180317e5cebb6e10713454ce62b6b504fa078f01a0b1f3daf989438f8 +binfiles arch=i386-solaris size=2 + bin/i386-solaris/rubibtex + bin/i386-solaris/rumakeindex + +name cyrillic-bin.x86_64-cygwin +category TLCore +revision 33557 +shortdesc x86_64-cygwin files of cyrillic-bin +containersize 384 +containerchecksum 45ecb5838093767de85fe7e86dbaddd2492ea4a5dcfceb9b542268dee17942a1e8e9edc19f5ce58d90e3e6a9a11ca1d3161320b5ae93e2c9540e925b1cf6ddb3 +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/rubibtex + bin/x86_64-cygwin/rumakeindex + +name cyrillic-bin.x86_64-darwin +category TLCore +revision 29809 +shortdesc x86_64-darwin files of cyrillic-bin +containersize 384 +containerchecksum a16287bd17656a8de0d353d1bd472edd951cfc7ddee7419274c8df7aff0ea776672a6ccc7c807d63a427ec437fde2900846832b358ca1e45acabe856f39fe6f8 +binfiles arch=x86_64-darwin size=2 + bin/x86_64-darwin/rubibtex + bin/x86_64-darwin/rumakeindex + +name cyrillic-bin.x86_64-darwinlegacy +category TLCore +revision 43871 +shortdesc x86_64-darwinlegacy files of cyrillic-bin +containersize 388 +containerchecksum 4d7eb9ef8ee4c02a11f51622c167b4452aa2650c3b4f17ea4686c24ac5f25fb79a10e691a05688b5a8cc0c9d374b70105bb3e58379c145fb1ee412e1b158e4c7 +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/rubibtex + bin/x86_64-darwinlegacy/rumakeindex + +name cyrillic-bin.x86_64-linux +category TLCore +revision 29820 +shortdesc x86_64-linux files of cyrillic-bin +containersize 376 +containerchecksum 71af40d25999c6683d31b48eea601cf4505dafd92e4ead6f87a9456313f8172479a2f58e63df37d585e36bfa4e783d45fb91f429fbe30f007a7133b4837ffdb3 +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/rubibtex + bin/x86_64-linux/rumakeindex + +name cyrillic-bin.x86_64-linuxmusl +category TLCore +revision 46840 +shortdesc x86_64-linuxmusl files of cyrillic-bin +containersize 384 +containerchecksum 20460c28deb493828186ca59a42c2a3ae68c949705c0f8d573b397daf7f5e0bd966c4e2658b505a709ac83ba72508539416da37d22c71e4acf53b89f188d1ac2 +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/rubibtex + bin/x86_64-linuxmusl/rumakeindex + +name cyrillic-bin.x86_64-solaris +category TLCore +revision 29807 +shortdesc x86_64-solaris files of cyrillic-bin +containersize 380 +containerchecksum 85ad29fb90d35af58d1acaad9f059a91ff96890eef921666699f2691f8a5b4a942a1c6bf7ef16825eb433c44042955752c8e860731a24c1459db0b57cb9b095d +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/rubibtex + bin/x86_64-solaris/rumakeindex name cyrplain category Package -revision 29349 +revision 45692 +catalogue t2 +shortdesc Support for using T2 encoding relocated 1 +longdesc The T2 bundle provides a variety of separate support functions +longdesc for using Cyrillic characters in LaTeX: the mathtext package, +longdesc for using Cyrillic letters 'transparently' in formulae; the +longdesc citehack package, for using Cyrillic (or indeed any non-ascii) +longdesc characters in citation keys; support for Cyrillic in BibTeX; +longdesc support for Cyrillic in Makeindex; and various items of font +longdesc support. +containersize 8724 +containerchecksum 84651aeb63d3e47f208732f3c0d54ba86862d0ff7da7c56b3d8b8d1b49b6b88ed4c5f9abfb4c1c9d8a1ef8a455632aaa69408651e238bdc4aeb4eb7709f62096 runfiles size=17 RELOC/tex/plain/cyrplain/README RELOC/tex/plain/cyrplain/cyramstx.ini @@ -43832,11 +75538,15 @@ runfiles size=17 RELOC/tex/plain/cyrplain/plainenc.tex RELOC/tex/plain/cyrplain/txxdefs.tex RELOC/tex/plain/cyrplain/txxextra.tex +catalogue-ctan /macros/latex/contrib/t2 +catalogue-date 2018-05-08 17:14:58 +0200 +catalogue-license lppl +catalogue-topics fontenc cyrillic name dad category Package -revision 35362 -shortdesc Simple typesetting system for mixed Arabic/Latin documents. +revision 47027 +shortdesc Simple typesetting system for mixed Arabic/Latin documents relocated 1 longdesc This package allows simple typesetting in Arabic script, longdesc intended for mixed Arabic/Latin script usage in situations @@ -43845,13 +75555,28 @@ longdesc operates with both Unicode and transliterated input, allowing longdesc the user to choose the most appropriate approach for every longdesc situation. execute addMap dad.map -runfiles size=2588 - RELOC/fonts/afm/public/dad/Dad-bold.afm - RELOC/fonts/afm/public/dad/Dad-mono.afm - RELOC/fonts/afm/public/dad/Dad.afm - RELOC/fonts/map/dvips/dad/dad.map - RELOC/fonts/ofm/public/dad/dad.ofm - RELOC/fonts/ofm/public/dad/dadbold.ofm +containersize 241672 +containerchecksum 3a4a039e8407ea7b8ebb9b2fa500a634930161f6e824e0d090fb00c233cc29bc110e5fd802ee11768569612df1c18cd03137ea086dab86e19bd3cb54dc806045 +doccontainersize 199972 +doccontainerchecksum 5715bb8219f9800a89c660b2dc581b5be7fd86d9dc085417f3d8e3342dba2f27c16952d9427af64212d6e60359be551b8ddf4eb01f89be93a9c714024c82eeb8 +docfiles size=76 + RELOC/doc/fonts/dad/README details="Readme" + RELOC/doc/fonts/dad/dad-to-utf8.pl + RELOC/doc/fonts/dad/dad-user-guide.bib + RELOC/doc/fonts/dad/dad-user-guide.pdf details="Package documentation" + RELOC/doc/fonts/dad/dad-user-guide.tex + RELOC/doc/fonts/dad/dad.adjust + RELOC/doc/fonts/dad/dadbold.adjust + RELOC/doc/fonts/dad/dadmono.adjust + RELOC/doc/fonts/dad/make-dad-font.pl + RELOC/doc/fonts/dad/utf8-to-dad.pl +runfiles size=2588 + RELOC/fonts/afm/public/dad/Dad-bold.afm + RELOC/fonts/afm/public/dad/Dad-mono.afm + RELOC/fonts/afm/public/dad/Dad.afm + RELOC/fonts/map/dvips/dad/dad.map + RELOC/fonts/ofm/public/dad/dad.ofm + RELOC/fonts/ofm/public/dad/dadbold.ofm RELOC/fonts/ofm/public/dad/dadmono.ofm RELOC/fonts/ovf/public/dad/dad.ovf RELOC/fonts/ovf/public/dad/dadbold.ovf @@ -43865,26 +75590,16 @@ runfiles size=2588 RELOC/tex/lualatex/dad/OT1dad.fd RELOC/tex/lualatex/dad/T1dad.fd RELOC/tex/lualatex/dad/dad.sty -docfiles size=84 - RELOC/doc/fonts/dad/README - RELOC/doc/fonts/dad/dad-to-utf8.pl - RELOC/doc/fonts/dad/dad-user-guide.bib - RELOC/doc/fonts/dad/dad-user-guide.pdf - RELOC/doc/fonts/dad/dad-user-guide.tex - RELOC/doc/fonts/dad/dad.adjust - RELOC/doc/fonts/dad/dadbold.adjust - RELOC/doc/fonts/dad/dadmono.adjust - RELOC/doc/fonts/dad/make-dad-font.pl - RELOC/doc/fonts/dad/utf8-to-dad.pl catalogue-ctan /language/arabic/dad -catalogue-date 2014-10-11 21:18:18 +0200 +catalogue-date 2018-03-19 16:37:57 +0100 catalogue-license lppl -catalogue-version 1.1 +catalogue-topics arabic luatex font-type1 +catalogue-version 1.2 name dancers category Package revision 13293 -shortdesc Font for Conan Doyle'ss "The Dancing Men". +shortdesc Font for Conan Doyle's "The Dancing Men" relocated 1 longdesc The (Sherlock Holmes) book contains a code which uses dancing longdesc men as glyphs. The alphabet as given is not complete, lacking @@ -43899,16 +75614,19 @@ longdesc 'character'. The font is distributed as Metafont source; it longdesc works poorly in modern environments, and could do with expert longdesc attention (if you are interested, please contact the CTAN team longdesc for details). +containersize 3852 +containerchecksum f570e4c775a7e4cdbeaf2ad764ee147a685b5332369aea29175a76fdc9fb37f052da295d20a177eda8e4b8352d733034eba36882c2507fe804d7b996c0e0537a runfiles size=9 RELOC/fonts/source/public/dancers/dancers.mf RELOC/fonts/tfm/public/dancers/dancers.tfm -catalogue-ctan /fonts/dancers/dancers.mf -catalogue-date 2014-04-24 17:14:31 +0200 +catalogue-ctan /fonts/dancers +catalogue-date 2016-06-30 21:37:14 +0200 catalogue-license other-free +catalogue-topics font font-mf font-novelty name dantelogo category Package -revision 38105 +revision 38599 shortdesc A font for DANTE's logo relocated 1 longdesc The DANTE font for the logo of DANTE (http://www.dante.de), the @@ -43916,6 +75634,15 @@ longdesc German speaking TeX users group. The font includes only the longdesc five characters d, a, n, t, and e. dantelogo.sty provides an longdesc interface for LuaLaTeX/XeLaTeX/pdfLaTeX. execute addMap dante.map +containersize 17044 +containerchecksum 883c5d6f8368bed41002eae123329954fe38cc23a5e6db7feecd57c16540b6b9277cf7d13af6ce8f63994c11148708e1d3dd10ddd9d17457b015d40477f91eac +doccontainersize 203152 +doccontainerchecksum 4612de774c6a39c7f09dfc99aa182fd37d9f3e32dece37726f1e87e48e5faae246f2959992267f5b2cb685c26177e47c5112fbe42b8f1ac3a60da92e6276a681 +docfiles size=53 + RELOC/doc/fonts/dantelogo/Changes + RELOC/doc/fonts/dantelogo/README details="Readme" + RELOC/doc/fonts/dantelogo/dantelogo-doc.pdf details="Package documentation" + RELOC/doc/fonts/dantelogo/dantelogo-doc.tex runfiles size=37 RELOC/fonts/enc/dvips/dantelogo/dante.enc RELOC/fonts/map/dvips/dantelogo/dante.map @@ -43938,44 +75665,46 @@ runfiles size=37 RELOC/fonts/vf/public/dantelogo/DANTE-Bold--texnansx.vf RELOC/fonts/vf/public/dantelogo/DANTE-Bold-Italic--texnansx.vf RELOC/fonts/vf/public/dantelogo/DANTE-Italic--texnansx.vf + RELOC/tex/latex/dantelogo/OT1DANTE.fd + RELOC/tex/latex/dantelogo/T1DANTE.fd RELOC/tex/latex/dantelogo/dantelogo.sty - RELOC/tex/latex/dantelogo/ot1dante.fd - RELOC/tex/latex/dantelogo/t1dante.fd -docfiles size=21 - RELOC/doc/fonts/dantelogo/Changes - RELOC/doc/fonts/dantelogo/README - RELOC/doc/fonts/dantelogo/dantelogo-doc.pdf - RELOC/doc/fonts/dantelogo/dantelogo-doc.tex catalogue-ctan /fonts/dantelogo -catalogue-date 2015-08-12 20:01:39 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl catalogue-topics font font-otf font-type1 -catalogue-version 0.02a +catalogue-version 0.03 name dashbox category Package revision 23425 -shortdesc Draw dashed boxes. +shortdesc Draw dashed boxes relocated 1 longdesc The package can draw boxes that perform like \framebox or longdesc \fbox, but use dashed lines. The package can also draw (an longdesc illusion of) vertical stacks of boxes. -runfiles size=2 - RELOC/tex/latex/dashbox/dashbox.sty +containersize 1624 +containerchecksum a52bac248fa26031db34686e57cd3c9be90bc18b41339d7e2dc85a68de1de23a627648599e5fdb207d3364b2b4e3651aaf9c2d90e6c3bd0f0fdcaa30fbc8932d +doccontainersize 159404 +doccontainerchecksum 26672278ffdbdaee64b82f4e7554b5664ca3410ce8009454cfc229e3590439b4a4e212b77568605adda885761f5ad456bca022f198e259ff9a33b8e0abc1ea6d docfiles size=39 - RELOC/doc/latex/dashbox/dashbox.pdf + RELOC/doc/latex/dashbox/dashbox.pdf details="Package documentation" +srccontainersize 3964 +srccontainerchecksum 833bcc8f98e6fbf3e205b54311dddb9377026234132e5f988abd25e3ace36b9f3b54a95e98a5c4cc40ef1f049536093b0f779517c6f5a63a08459bf0a7ace741 srcfiles size=5 RELOC/source/latex/dashbox/dashbox.dtx RELOC/source/latex/dashbox/dashbox.ins +runfiles size=2 + RELOC/tex/latex/dashbox/dashbox.sty catalogue-ctan /macros/latex/contrib/dashbox -catalogue-date 2013-11-21 20:02:41 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics boxing catalogue-version 1.14 name dashrule category Package revision 29579 -shortdesc Draw dashed rules. +shortdesc Draw dashed rules relocated 1 longdesc The dashrule package makes it easy to draw a huge variety of longdesc dashed rules (i.e., lines) in LaTeX. dashrule provides a @@ -43987,70 +75716,94 @@ longdesc of dash segments and the space between those segments. Because longdesc dashrule's rules are constructed internally using \rule (as longdesc opposed to, e.g., PostScript \specials) they are fully longdesc compatible with every LaTeX back-end processor. -runfiles size=1 - RELOC/tex/latex/dashrule/dashrule.sty +containersize 1488 +containerchecksum 4b1b993e9044eb2ed4bf6bde0c114b0cd1fe7daed38f8bc5d3e25a2705d55cb41b8a372cce84b0d61093044d970003a4317de98cb468978c8cb1a8315f980940 +doccontainersize 230940 +doccontainerchecksum f45e0785d7c6522683e724ca27f7505e3da6bf5923d5a8c71a75ef8c67ffba8a4e4711b91b64f25dca95566448cbf74b5937dcecc73f5ec0aeff7ace8d0e4c1f docfiles size=64 - RELOC/doc/latex/dashrule/README + RELOC/doc/latex/dashrule/README details="Readme" RELOC/doc/latex/dashrule/dashrule.pdf +srccontainersize 6080 +srccontainerchecksum 0cf95a6d5fe3e80e9f77266033d64186300676d74a7cc39dd6f907784d1a6f7c9f83ff5a50198eec8bfc075ef5adecf58d226063f3f0e02f55dd7cc0daf691a4 srcfiles size=6 RELOC/source/latex/dashrule/dashrule.dtx RELOC/source/latex/dashrule/dashrule.ins +runfiles size=1 + RELOC/tex/latex/dashrule/dashrule.sty catalogue-ctan /macros/latex/contrib/dashrule -catalogue-date 2013-03-31 13:01:15 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics line-patt catalogue-version 1.3 name dashundergaps category Package -revision 23373 -shortdesc Underline with dotted or dashed lines. +revision 49198 +shortdesc Produce gaps that are underlined, dotted or dashed relocated 1 longdesc The package provides commands (\underline, \dotuline and longdesc \dashuline) each of which underlines its argument with one of longdesc the styles the package is capable of. A phantom mode is longdesc provided, where the underline (of whatever form) can serve for longdesc a 'fill-in block' for student evaluation sheets. -runfiles size=1 +containersize 3340 +containerchecksum 190b4559e568ac1b5281314dc17d8e2b143af0b1f3e0812c02b70eaddb6ece2a33843585dfbf21f10af0112e2f6611338df3708d396997bc63f8f1ca5e9884d7 +doccontainersize 855168 +doccontainerchecksum 262ac83918e07be8fc0d57c416a6d3fc342c75160cc603186147b81c00af2edec662c1822b01d486bc4dc871733dcb235f3f7edcf9f4cfac6688d412cef54744 +docfiles size=270 + RELOC/doc/latex/dashundergaps/README.md details="Readme" + RELOC/doc/latex/dashundergaps/changes.txt + RELOC/doc/latex/dashundergaps/dashundergaps-code.pdf + RELOC/doc/latex/dashundergaps/dashundergaps-code.tex + RELOC/doc/latex/dashundergaps/dashundergaps-doc.pdf details="Package documentation" + RELOC/doc/latex/dashundergaps/dashundergaps-doc.tex + RELOC/doc/latex/dashundergaps/l3doc-TUB.cls +srccontainersize 12696 +srccontainerchecksum 22b6d3821c2b9ee3d8fb1ec40a0d5825e98c957028935706d2ec52e8608d413af6a14ebddf02d140882a79b480193b940197afb12d94f4af3daf6c8e67b69c82 +srcfiles size=11 + RELOC/source/latex/dashundergaps/dashundergaps.dtx + RELOC/source/latex/dashundergaps/dashundergaps.ins +runfiles size=3 RELOC/tex/latex/dashundergaps/dashundergaps.sty -docfiles size=65 - RELOC/doc/latex/dashundergaps/README - RELOC/doc/latex/dashundergaps/doc/pdf/dashundergaps.pdf - RELOC/doc/latex/dashundergaps/doc/tex/Makefile - RELOC/doc/latex/dashundergaps/doc/tex/dashundergaps-bib.bib - RELOC/doc/latex/dashundergaps/doc/tex/dashundergaps.forlisting - RELOC/doc/latex/dashundergaps/doc/tex/dashundergaps.tex - RELOC/doc/latex/dashundergaps/doc/tex/perso.ist +catalogue-contact-bugs https://github.com/FrankMittelbach/fmitex/issues +catalogue-contact-home https://www.latex-project.org +catalogue-contact-repository https://github.com/FrankMittelbach/fmitex catalogue-ctan /macros/latex/contrib/dashundergaps -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-11-18 22:46:59 +0100 catalogue-license lppl -catalogue-version 1.2 +catalogue-topics underline line-patt +catalogue-version 2.0d name dataref category Package -revision 36991 -shortdesc Manage references to experimental data. +revision 42883 +shortdesc Manage references to experimental data relocated 1 longdesc The package provides a mechanism that maintains a fixed longdesc symbolic reference to numerical results; such results may vary longdesc as the project proceeds (and hence the project report longdesc develops). -runfiles size=5 +containersize 6868 +containerchecksum 8b76861673fe05785582abbfb50d46ee6beea2cd63bd7f622e2640acce9c88a39e4fbf57b6db7872dc3f3b473d3e33581bb6c93f305e036148efb1c3ad4b6d8f +doccontainersize 247204 +doccontainerchecksum 2d1bb12245c071b8282db3d0aaf198206fe2b8509527ef6e56950464b6f13d20be8381015fa62a1b0c7469e004664182170ba400c7650b38bc597e269f1d173d +docfiles size=68 + RELOC/doc/latex/dataref/README.md details="Readme" + RELOC/doc/latex/dataref/dataref-doc.pdf details="Package documentation" + RELOC/doc/latex/dataref/dataref-doc.tex +runfiles size=7 RELOC/tex/latex/dataref/dataref.sty -docfiles size=62 - RELOC/doc/latex/dataref/README - RELOC/doc/latex/dataref/dataref.pdf -srcfiles size=12 - RELOC/source/latex/dataref/dataref.dtx - RELOC/source/latex/dataref/dataref.ins +catalogue-contact-repository https://github.com/stettberger/dataref catalogue-ctan /macros/latex/contrib/dataref -catalogue-date 2015-04-21 19:45:23 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 -catalogue-version 0.4 +catalogue-topics label-ref data-manip +catalogue-version 0.6 name datatool category Package -revision 37837 -shortdesc Tools to load and manipulate data. +revision 49344 +shortdesc Tools to load and manipulate data relocated 1 longdesc The tools comprise six packages: datatool.sty: databases may be longdesc created using LaTeX commands or by importing external files; @@ -44062,8 +75815,8 @@ longdesc to convert formats (for example, to convert a numeric element longdesc to a format compatible with the fp package; datapie.sty: a longdesc database may be represented as a pie chart; flexible options longdesc allow colouring of the chart, and annotation hooks are -longdesc available; dataplot.sty: a database may be represented as a 2- -longdesc dimensional scatter or line plot; flexible options control of +longdesc available; dataplot.sty: a database may be represented as a +longdesc 2-dimensional scatter or line plot; flexible options control of longdesc the plot's overall appearance, and of legends and other extra longdesc information; databar.sty: a database may be represented as a longdesc bar chart; overall appearance, colouring and annotation are @@ -44072,31 +75825,23 @@ longdesc creating glossaries/lists of acronyms that uses TeX to do the longdesc sorting and collating instead of using an external indexing longdesc application, such as xindy or makeindex; databib.sty: a longdesc bibliography may be loaded into a datatool database, and -longdesc manipulated there before being printed (this permits a LaTeX- -longdesc based route to printing bibliographies in formats for which no -longdesc BibTeX style is available); and person.sty: provides support -longdesc for displaying a person's name and pronoun in a document, thus -longdesc avoiding cumbersome use of "he/she", etc. The drawing packages -longdesc make use of PGF/TikZ for their output. The bundle supersedes -longdesc and replaces the author's csvtools bundle. -runfiles size=114 - RELOC/bibtex/bst/datatool/databib.bst - RELOC/tex/latex/datatool/databar.sty - RELOC/tex/latex/datatool/databib.sty - RELOC/tex/latex/datatool/datagidx.sty - RELOC/tex/latex/datatool/datapie.sty - RELOC/tex/latex/datatool/dataplot.sty - RELOC/tex/latex/datatool/datatool-base.sty - RELOC/tex/latex/datatool/datatool-fp.sty - RELOC/tex/latex/datatool/datatool-pgfmath.sty - RELOC/tex/latex/datatool/datatool.sty - RELOC/tex/latex/datatool/person.sty -docfiles size=724 +longdesc manipulated there before being printed (this permits a +longdesc LaTeX-based route to printing bibliographies in formats for +longdesc which no BibTeX style is available); and person.sty: provides +longdesc support for displaying a person's name and pronoun in a +longdesc document, thus avoiding cumbersome use of "he/she", etc. The +longdesc drawing packages make use of PGF/TikZ for their output. The +longdesc bundle supersedes and replaces the author's csvtools bundle. +containersize 55332 +containerchecksum a6a5108a56b8eb267e67027998e4ad2ccb4fdf0c2932ec12f9099aba119da1da91ecc9575d9977edd9db492e0bd0a6396da58804526f500b6b580c9e60c37806 +doccontainersize 2678888 +doccontainerchecksum cc2722f5e4dc383b34db84efc83c9c2ecddac49ed1b42c8601bff87ca33c9015044d6898552cab468494cbae00004fcaa07489965df3fe3e281367b157fd1e87 +docfiles size=812 RELOC/doc/latex/datatool/CHANGES RELOC/doc/latex/datatool/INSTALL - RELOC/doc/latex/datatool/README - RELOC/doc/latex/datatool/datatool-code.pdf - RELOC/doc/latex/datatool/datatool-user.pdf + RELOC/doc/latex/datatool/README details="Readme" + RELOC/doc/latex/datatool/datatool-code.pdf details="Documented code of the package" + RELOC/doc/latex/datatool/datatool-user.pdf details="User guide" RELOC/doc/latex/datatool/datatool-user.tex RELOC/doc/latex/datatool/samples/data-raw.dbtex RELOC/doc/latex/datatool/samples/sample-autokeys-data.csv @@ -44127,49 +75872,85 @@ docfiles size=724 RELOC/doc/latex/datatool/samples/sample-student-scores.tex RELOC/doc/latex/datatool/samples/sample-two-per-row.pdf RELOC/doc/latex/datatool/samples/sample-two-per-row.tex -srcfiles size=196 +srccontainersize 103196 +srccontainerchecksum 76514530e093a76c4b2f9c67c3eac886c0844c9631b845e6cc360ffcc4b02e567e1d1cc317fb2dcff03b7a584014acd61eb17853cc4424a14ca5b77dea932ebc +srcfiles size=205 RELOC/source/latex/datatool/datatool.dtx RELOC/source/latex/datatool/datatool.ins +runfiles size=119 + RELOC/bibtex/bst/datatool/databib.bst + RELOC/tex/latex/datatool/databar.sty + RELOC/tex/latex/datatool/databib.sty + RELOC/tex/latex/datatool/datagidx.sty + RELOC/tex/latex/datatool/datapie.sty + RELOC/tex/latex/datatool/dataplot.sty + RELOC/tex/latex/datatool/datatool-base.sty + RELOC/tex/latex/datatool/datatool-fp.sty + RELOC/tex/latex/datatool/datatool-pgfmath.sty + RELOC/tex/latex/datatool/datatool.sty + RELOC/tex/latex/datatool/person.sty catalogue-ctan /macros/latex/contrib/datatool -catalogue-date 2015-07-11 18:06:36 +0200 +catalogue-date 2018-12-07 19:56:10 +0100 catalogue-license lppl1.3 catalogue-topics data-import data-disp data-manip -catalogue-version 2.23 +catalogue-version 2.31 name dateiliste category Package revision 27974 -shortdesc Extensions of the \listfiles concept. +shortdesc Extensions of the \listfiles concept relocated 1 longdesc The package provides a file list (similar to that offered by longdesc \listfiles), neatly laid out as a table. The main document can longdesc be included in the list, and a command is available for longdesc providing RCS-maintained data for printing in the file list. -runfiles size=4 - RELOC/tex/latex/dateiliste/dateiliste.sty +containersize 4264 +containerchecksum 6da6a802994a06e040d43ac7fc9db0515d9273ba9d4cac061e04b05922f9eb9fecaf138eb641b3149be7b98f9139c428084b6470bc177a020386e0dc053427b6 +doccontainersize 233644 +doccontainerchecksum 53ca32cabd7e3a32d02c77beb076b08ccaa782b6a2ae249b932242987741f0e255bdc83a2b6ccc7ed2e0efbec66923798026040745152f7244984a0843c8c23d docfiles size=71 - RELOC/doc/latex/dateiliste/README - RELOC/doc/latex/dateiliste/README-de - RELOC/doc/latex/dateiliste/README-en - RELOC/doc/latex/dateiliste/README-eo - RELOC/doc/latex/dateiliste/dateiliste.pdf + RELOC/doc/latex/dateiliste/README details="Readme" + RELOC/doc/latex/dateiliste/README-de details="Readme" language="de" + RELOC/doc/latex/dateiliste/README-en details="Readme" language="en" + RELOC/doc/latex/dateiliste/README-eo details="Readme" language="eo" + RELOC/doc/latex/dateiliste/dateiliste.pdf details="Benutzerdoku" language="de" +srccontainersize 22632 +srccontainerchecksum 563840e069cd1e1c1e9b1774c5c3ee8b1703305fac3fd5f58a0afe76f154210150be05f779a94717c227978d2a1317a10f5b6232f51dc7b3e422638b84b2ce95 srcfiles size=19 RELOC/source/latex/dateiliste/dateiliste.dtx RELOC/source/latex/dateiliste/dateiliste.ins +runfiles size=4 + RELOC/tex/latex/dateiliste/dateiliste.sty catalogue-ctan /macros/latex/contrib/dateiliste -catalogue-date 2012-10-15 00:17:21 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics doc-mgmt catalogue-version 0.6 name datenumber category Package revision 18951 -shortdesc Convert a date into a number and vice versa. +shortdesc Convert a date into a number and vice versa relocated 1 longdesc This package provides commands to convert a date into a number longdesc and vice versa. Additionally there are commands for longdesc incrementing and decrementing a date. Leap years and the longdesc Gregorian calendar reform are considered. +containersize 3328 +containerchecksum f87518683c9820e816f33e535bc8e5d7e31fcda124178593f9635b040151d1f43f6eeb4d69ca974b847c97efcf19fa94f571d5534dfdc8ac0e40d711d26190b3 +doccontainersize 94372 +doccontainerchecksum b9c156b19bd6abbb3f996495dcda633172f8e559add744ebe25bb58070ba06bc233c2dda54c93415da14aecc30d2888241bf9b80c0dc5922b46cd3ee05865701 +docfiles size=42 + RELOC/doc/latex/datenumber/README.txt details="Package README" language="en" + RELOC/doc/latex/datenumber/doc.pdf details="Package documentation" language="en" + RELOC/doc/latex/datenumber/doc.tex + RELOC/doc/latex/datenumber/docgerman.pdf details="Package documentation" language="de" + RELOC/doc/latex/datenumber/docgerman.tex +srccontainersize 5664 +srccontainerchecksum ffeea9042501496e815db5c90cf8a99931fe96bb8dbae6e2551994242336892567c140ed352ddf962d1f144844960eaf03187aec6869780a2c3e218446940174 +srcfiles size=6 + RELOC/source/latex/datenumber/datenumber.dtx + RELOC/source/latex/datenumber/datenumber.ins runfiles size=8 RELOC/tex/latex/datenumber/datenumber.sty RELOC/tex/latex/datenumber/datenumberUSenglish.ldf @@ -44178,234 +75959,434 @@ runfiles size=8 RELOC/tex/latex/datenumber/datenumberfrench.ldf RELOC/tex/latex/datenumber/datenumbergerman.ldf RELOC/tex/latex/datenumber/datenumberspanish.ldf -docfiles size=42 - RELOC/doc/latex/datenumber/README.txt - RELOC/doc/latex/datenumber/doc.pdf - RELOC/doc/latex/datenumber/doc.tex - RELOC/doc/latex/datenumber/docgerman.pdf - RELOC/doc/latex/datenumber/docgerman.tex -srcfiles size=6 - RELOC/source/latex/datenumber/datenumber.dtx - RELOC/source/latex/datenumber/datenumber.ins catalogue-ctan /macros/latex/contrib/datenumber -catalogue-date 2012-06-19 08:44:54 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics date-time catalogue-version 0.02 +name datetime +category Package +revision 36650 +shortdesc Change format of \today with commands for current time +relocated 1 +longdesc Provides various different formats for the text created by the +longdesc command \today, and also provides commands for displaying the +longdesc current time (or any given time), in 12-hour, 24-hour or text +longdesc format. The package overrides babel's date format, having its +longdesc own library of date formats in different languages. The package +longdesc requires the fmtcount package. This package is now obsolete and +longdesc has been replaced by datetime2. +containersize 13604 +containerchecksum 3d033ee164d52f7085bffdc12f2062be7e94a644d9ed731b4d1b97a3a46838dabadcf6687063e165c65fc938a51a4adf8078339b720a305175d6cd6a3b889f07 +doccontainersize 427368 +doccontainerchecksum 510449d17b09d9207b76e732b5d426121888cf653f29bb3be8872b74a243596ac339f09d11a14a4a3007f8818171aab28727cd1713ee35c8908d2d168a57d9b0 +docfiles size=154 + RELOC/doc/latex/datetime/CHANGES + RELOC/doc/latex/datetime/README details="Package README" + RELOC/doc/latex/datetime/datetime-manual.css + RELOC/doc/latex/datetime/datetime-manual.html + RELOC/doc/latex/datetime/datetime-manual.tex + RELOC/doc/latex/datetime/datetime.pdf details="Package documentation (PDF)" + RELOC/doc/latex/datetime/datetime.perl + RELOC/doc/latex/datetime/dt-lang.tex + RELOC/doc/latex/datetime/dt-sampl.tex + RELOC/doc/latex/datetime/samples/dt-lang.pdf + RELOC/doc/latex/datetime/samples/dt-lang.tex + RELOC/doc/latex/datetime/samples/dt-sampl.pdf + RELOC/doc/latex/datetime/samples/dt-sampl.tex +srccontainersize 29100 +srccontainerchecksum 3e03ba12952ad5dafa701c7ddd5d79097890d13d3510d420cc399b30b1c60c2b6f72bc5caa2a6d2f53ec50430d13582c5c6fb549dcb3566f827af0d4abeaa011 +srcfiles size=51 + RELOC/source/latex/datetime/datetime.dtx + RELOC/source/latex/datetime/datetime.ins +runfiles size=66 + RELOC/tex/latex/datetime/datetime-defaults.sty + RELOC/tex/latex/datetime/datetime.sty + RELOC/tex/latex/datetime/dt-UKenglish.def + RELOC/tex/latex/datetime/dt-USenglish.def + RELOC/tex/latex/datetime/dt-american.def + RELOC/tex/latex/datetime/dt-australian.def + RELOC/tex/latex/datetime/dt-austrian.def + RELOC/tex/latex/datetime/dt-bahasa.def + RELOC/tex/latex/datetime/dt-basque.def + RELOC/tex/latex/datetime/dt-breton.def + RELOC/tex/latex/datetime/dt-british.def + RELOC/tex/latex/datetime/dt-bulgarian.def + RELOC/tex/latex/datetime/dt-canadian.def + RELOC/tex/latex/datetime/dt-catalan.def + RELOC/tex/latex/datetime/dt-croatian.def + RELOC/tex/latex/datetime/dt-czech.def + RELOC/tex/latex/datetime/dt-danish.def + RELOC/tex/latex/datetime/dt-dutch.def + RELOC/tex/latex/datetime/dt-esperanto.def + RELOC/tex/latex/datetime/dt-estonian.def + RELOC/tex/latex/datetime/dt-finnish.def + RELOC/tex/latex/datetime/dt-french.def + RELOC/tex/latex/datetime/dt-galician.def + RELOC/tex/latex/datetime/dt-german.def + RELOC/tex/latex/datetime/dt-greek.def + RELOC/tex/latex/datetime/dt-hebrew.def + RELOC/tex/latex/datetime/dt-icelandic.def + RELOC/tex/latex/datetime/dt-irish.def + RELOC/tex/latex/datetime/dt-italian.def + RELOC/tex/latex/datetime/dt-latin.def + RELOC/tex/latex/datetime/dt-lsorbian.def + RELOC/tex/latex/datetime/dt-magyar.def + RELOC/tex/latex/datetime/dt-naustrian.def + RELOC/tex/latex/datetime/dt-newzealand.def + RELOC/tex/latex/datetime/dt-ngerman.def + RELOC/tex/latex/datetime/dt-norsk.def + RELOC/tex/latex/datetime/dt-polish.def + RELOC/tex/latex/datetime/dt-portuges.def + RELOC/tex/latex/datetime/dt-romanian.def + RELOC/tex/latex/datetime/dt-russian.def + RELOC/tex/latex/datetime/dt-samin.def + RELOC/tex/latex/datetime/dt-scottish.def + RELOC/tex/latex/datetime/dt-serbian.def + RELOC/tex/latex/datetime/dt-slovak.def + RELOC/tex/latex/datetime/dt-slovene.def + RELOC/tex/latex/datetime/dt-spanish.def + RELOC/tex/latex/datetime/dt-swedish.def + RELOC/tex/latex/datetime/dt-turkish.def + RELOC/tex/latex/datetime/dt-ukraineb.def + RELOC/tex/latex/datetime/dt-usorbian.def + RELOC/tex/latex/datetime/dt-welsh.def +catalogue-ctan /obsolete/macros/latex/contrib/datetime +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics date-time multilingual obsolete +catalogue-version 2.60 + +name datetime2 +category Package +revision 48236 +shortdesc Formats for dates, times and time zones +relocated 1 +longdesc This package provides commands for formatting dates, times and +longdesc time zones and redefines \today to use the same formatting +longdesc style. In addition to \today, you can also use \DTMcurrenttime +longdesc (current time) or \DTMnow (current date and time). Dates and +longdesc times can be saved for later use. The accompanying +longdesc datetime2-calc package can be used to convert date-times to +longdesc UTC+00:00. Language and regional support is provided by +longdesc independently maintained and installed modules. The +longdesc datetime2-calc package uses the pgfcalendar package (part of +longdesc the PGF/TikZ bundle). This package replaces datetime.sty which +longdesc is now obsolete. +containersize 8660 +containerchecksum 876b16d0fe08584c02804e93bdce6029376e1c37b3c8a3a0a5ae4ce93cebed615b077d042cff0a658f0f2c65745fd22b40f18c4db87ae73ecf3844a699f09e81 +doccontainersize 1013464 +doccontainerchecksum 37fb08d1d23645a53a6d0c76aaeaf8df34de9ee148aac23723adc892e026a5daf74c446f1ef747a62175984dd601560a1338fc37ec6600d9d0772237e60b1d21 +docfiles size=265 + RELOC/doc/latex/datetime2/CHANGES + RELOC/doc/latex/datetime2/README details="Readme" + RELOC/doc/latex/datetime2/datetime2.pdf details="Package documentation" + RELOC/doc/latex/datetime2/samples/datetime2-sample-babel.pdf + RELOC/doc/latex/datetime2/samples/datetime2-sample-babel.tex + RELOC/doc/latex/datetime2/samples/datetime2-sample-calc.pdf + RELOC/doc/latex/datetime2/samples/datetime2-sample-calc.tex + RELOC/doc/latex/datetime2/samples/datetime2-sample-filedate.pdf + RELOC/doc/latex/datetime2/samples/datetime2-sample-filedate.tex + RELOC/doc/latex/datetime2/samples/datetime2-sample-hyperref.pdf + RELOC/doc/latex/datetime2/samples/datetime2-sample-hyperref.tex + RELOC/doc/latex/datetime2/samples/datetime2-sample-journal.pdf + RELOC/doc/latex/datetime2/samples/datetime2-sample-journal.tex + RELOC/doc/latex/datetime2/samples/datetime2-sample-styles.pdf + RELOC/doc/latex/datetime2/samples/datetime2-sample-styles.tex + RELOC/doc/latex/datetime2/samples/datetime2-sample-xe.pdf + RELOC/doc/latex/datetime2/samples/datetime2-sample-xe.tex +srccontainersize 50740 +srccontainerchecksum 42f6ef0eb78480c10ea1dfa1ba3733f48fb5f4a639ffc11c11d264ebb46845823224604b7c43b4120da6ec0534c2d8eb63c327825c074c7ffe01ee1bad3137c2 +srcfiles size=78 + RELOC/source/latex/datetime2/datetime2.dtx + RELOC/source/latex/datetime2/datetime2.ins +runfiles size=17 + RELOC/tex/latex/datetime2/datetime2-calc.sty + RELOC/tex/latex/datetime2/datetime2.sty +catalogue-contact-home http://www.dickimaw-books.com/faqs/datetime2faq.html +catalogue-ctan /macros/latex/contrib/datetime2 +catalogue-date 2018-07-20 14:37:08 +0200 +catalogue-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.5.3 + name datetime2-bahasai category Package -revision 36682 -shortdesc Bahasai language module for the datetime2 package. +revision 46287 +shortdesc Bahasai language module for the datetime2 package relocated 1 longdesc This module provides the "bahasai" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=2 - RELOC/tex/latex/datetime2-bahasai/datetime2-bahasai.ldf +containersize 2208 +containerchecksum 6bc05fa0f1cfbf05008de715f9b278948272cf7894e8c29b52b6ee4ba436e01e5588356fa020fd5453ed2e9bee185cb46c54ee3e808417782587c9509bab17fc +doccontainersize 272028 +doccontainerchecksum d9542fe7057b9972c6e0b9ebc1360c2fde8f9b3538e70efd7249f0bb344f2d5c2845acac9ce39fec6f9f7197b47e65496ffc662b9f3a3044829e4709d6202995 docfiles size=68 - RELOC/doc/latex/datetime2-bahasai/README - RELOC/doc/latex/datetime2-bahasai/datetime2-bahasai.pdf + RELOC/doc/latex/datetime2-bahasai/README details="Readme" + RELOC/doc/latex/datetime2-bahasai/datetime2-bahasai.pdf details="Package documentation" +srccontainersize 4124 +srccontainerchecksum 7edf39f7e2c5b44923e66cf3dee57e7681c549b7ae944ba2f4593e4643e9d50b686b8c1cb6905326899b6974ec5c0587ec7a5f4f880b5b1e81c94667240c601c srcfiles size=4 RELOC/source/latex/datetime2-bahasai/datetime2-bahasai.dtx RELOC/source/latex/datetime2-bahasai/datetime2-bahasai.ins +runfiles size=2 + RELOC/tex/latex/datetime2-bahasai/datetime2-bahasai.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-bahasai -catalogue-date 2015-04-01 05:50:16 +0200 +catalogue-date 2018-01-10 22:14:01 +0100 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time multilingual +catalogue-version 1.01 name datetime2-basque category Package -revision 38287 +revision 47064 shortdesc Basque language module for the datetime2 package relocated 1 longdesc This module provides the "basque" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. -runfiles size=3 - RELOC/tex/latex/datetime2-basque/datetime2-basque.ldf -docfiles size=90 +containersize 2428 +containerchecksum 73d7dcb4a2d13d4ad4747d4d2a19b839bd9a1bd55793657315832178091357f61d9b748d5aaefd317baa7f52df2a4926dad6196d11d11cbce0df78168b2ad380 +doccontainersize 1804 +doccontainerchecksum ce083f982f95f5e4beb33a706144d26f6f09de8ede946ac89d28ad5e5c75f9a475e4e9bca5fbc7773ee90a91ca095f0b1a9908fc0f74fcbb4117ec7511d603b2 +docfiles size=5 RELOC/doc/latex/datetime2-basque/CHANGES - RELOC/doc/latex/datetime2-basque/README.txt - RELOC/doc/latex/datetime2-basque/datetime2-basque.pdf + RELOC/doc/latex/datetime2-basque/Makefile + RELOC/doc/latex/datetime2-basque/README.txt details="Readme" + RELOC/doc/latex/datetime2-basque/datetime2-basque-small-test.tex + RELOC/doc/latex/datetime2-basque/datetime2-basque-test.tex +srccontainersize 4672 +srccontainerchecksum a2bab4c1956a0471571221a57f85e9f4260e349a9b775540638255d8313f5db2c9922120e045b8c769b7b7fe1698c7fcfae1e1aa101e858e84aac32673f6fb86 srcfiles size=5 RELOC/source/latex/datetime2-basque/datetime2-basque.dtx RELOC/source/latex/datetime2-basque/datetime2-basque.ins +runfiles size=3 + RELOC/tex/latex/datetime2-basque/datetime2-basque.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-basque -catalogue-date 2015-09-03 13:51:49 +0200 +catalogue-date 2018-03-21 20:14:45 +0100 catalogue-license lppl1.3 -catalogue-topics date-time multilingual -catalogue-version 1.2 +catalogue-topics date-time multilingual basque +catalogue-version 1.2a name datetime2-breton category Package -revision 36682 -shortdesc breton language module for the datetime2 package. +revision 47030 +shortdesc Breton language module for the datetime2 package relocated 1 longdesc This module provides the "breton" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=4 - RELOC/tex/latex/datetime2-breton/datetime2-breton-ascii.ldf - RELOC/tex/latex/datetime2-breton/datetime2-breton-utf8.ldf - RELOC/tex/latex/datetime2-breton/datetime2-breton.ldf +containersize 2568 +containerchecksum b212e5cbae4f1b61c3455f2ed2f05b9b61f34d65079d5f9fbb0be716c9d06f14ce915efc1059cccc828b52b3c0fae3a5e08680195c4ca20bcfc8c6378798229c +doccontainersize 281684 +doccontainerchecksum 4b6d0592e5fa100b3a68cdefaee29a089827fc2f86d5dcc1aee79aa6348b7cf4165319433714914337239220d01e8a3d93fbad1448cd3ff4790c817215a1cbce docfiles size=70 - RELOC/doc/latex/datetime2-breton/README - RELOC/doc/latex/datetime2-breton/datetime2-breton.pdf + RELOC/doc/latex/datetime2-breton/README details="Readme" + RELOC/doc/latex/datetime2-breton/datetime2-breton.pdf details="Package documentation" +srccontainersize 4740 +srccontainerchecksum e4a7240799195b9be7a9a755c181268082076218e1e49c4a81e5ac2c32bbe1537e3965bc5e6791a62a3a502c27059292bfcd985f3fae31e961bf129ef166dbf0 srcfiles size=5 RELOC/source/latex/datetime2-breton/datetime2-breton.dtx RELOC/source/latex/datetime2-breton/datetime2-breton.ins +runfiles size=4 + RELOC/tex/latex/datetime2-breton/datetime2-breton-ascii.ldf + RELOC/tex/latex/datetime2-breton/datetime2-breton-utf8.ldf + RELOC/tex/latex/datetime2-breton/datetime2-breton.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-breton -catalogue-date 2015-04-01 05:50:16 +0200 +catalogue-date 2018-03-19 17:33:02 +0100 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time multilingual +catalogue-version 1.1 name datetime2-bulgarian category Package -revision 36682 -shortdesc Bulgarian language module for the datetime2 package. +revision 47031 +shortdesc Bulgarian language module for the datetime2 package relocated 1 longdesc This module provides the "bulgarian" style that can be set longdesc using \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=5 - RELOC/tex/latex/datetime2-bulgarian/datetime2-bulgarian-ascii.ldf - RELOC/tex/latex/datetime2-bulgarian/datetime2-bulgarian-utf8.ldf - RELOC/tex/latex/datetime2-bulgarian/datetime2-bulgarian.ldf +containersize 2716 +containerchecksum fe0cf5eb73c5253467a8d2b972cc20825b5179ccd3964f64656ee8f4fa5d7fb7bf1660a7e79d58c491fe74e8c9421b75c177d4c8bf7309782c81ddeb69ff1203 +doccontainersize 80628 +doccontainerchecksum f07df79af157b8ed471f5c8021719d8ac4dea9075885cc42ed0d64405692efc5ea59b6a77448225aee477b8fb05d564ce9155b7e1efb3d9cd7b7baa794783cb7 docfiles size=22 - RELOC/doc/latex/datetime2-bulgarian/README - RELOC/doc/latex/datetime2-bulgarian/datetime2-bulgarian.pdf + RELOC/doc/latex/datetime2-bulgarian/README details="Readme" + RELOC/doc/latex/datetime2-bulgarian/datetime2-bulgarian.pdf details="Package documentation" +srccontainersize 4988 +srccontainerchecksum 9692b6932f74a7e15a625612dfefd975a948f8a2111401c44b156702fad868d7d34381191b5cf675f0c17aaa6234071e10722f6b912e80f8afc4af69353dbc6d srcfiles size=6 RELOC/source/latex/datetime2-bulgarian/datetime2-bulgarian.dtx RELOC/source/latex/datetime2-bulgarian/datetime2-bulgarian.ins +runfiles size=5 + RELOC/tex/latex/datetime2-bulgarian/datetime2-bulgarian-ascii.ldf + RELOC/tex/latex/datetime2-bulgarian/datetime2-bulgarian-utf8.ldf + RELOC/tex/latex/datetime2-bulgarian/datetime2-bulgarian.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-bulgarian -catalogue-date 2015-04-01 05:50:16 +0200 +catalogue-date 2018-03-19 17:38:12 +0100 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time multilingual +catalogue-version 1.1 name datetime2-catalan category Package -revision 36682 -shortdesc catalan language module for the datetime2 package. +revision 47032 +shortdesc Catalan language module for the datetime2 package relocated 1 longdesc This module provides the "catalan" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=4 - RELOC/tex/latex/datetime2-catalan/datetime2-catalan-ascii.ldf - RELOC/tex/latex/datetime2-catalan/datetime2-catalan-utf8.ldf - RELOC/tex/latex/datetime2-catalan/datetime2-catalan.ldf +containersize 2488 +containerchecksum 7a414761760e3fb61ed12c656a88b6ae4d36b8268998f10ffc85a9cd362a6ee60b73b37c0994aa47603e805d785a3a0faa7266efa46c3e017535b864f2282e5d +doccontainersize 280420 +doccontainerchecksum d1613bf5d8a35f69bf3dde127a764434b8527f0e627cecbdda43490642cb8d0a10ae629bf5f1359b7a87c12b3845bd468fb2c00b508be1d2cd80b6ad98904ebe docfiles size=70 - RELOC/doc/latex/datetime2-catalan/README - RELOC/doc/latex/datetime2-catalan/datetime2-catalan.pdf + RELOC/doc/latex/datetime2-catalan/README details="Readme" + RELOC/doc/latex/datetime2-catalan/datetime2-catalan.pdf details="Package documentation" +srccontainersize 4672 +srccontainerchecksum 35fbd618c48265f4cd6bdccca100396f54b6379111189f8fad705e93f69026fbbba21f246074a3d154855b0a04e83c4a310b99c78e2105f821d109cfdadff6a3 srcfiles size=5 RELOC/source/latex/datetime2-catalan/datetime2-catalan.dtx RELOC/source/latex/datetime2-catalan/datetime2-catalan.ins +runfiles size=4 + RELOC/tex/latex/datetime2-catalan/datetime2-catalan-ascii.ldf + RELOC/tex/latex/datetime2-catalan/datetime2-catalan-utf8.ldf + RELOC/tex/latex/datetime2-catalan/datetime2-catalan.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-catalan -catalogue-date 2015-04-01 05:50:16 +0200 +catalogue-date 2018-03-19 17:52:59 +0100 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time multilingual +catalogue-version 1.1 name datetime2-croatian category Package revision 36682 -shortdesc croatian language module for the datetime2 package. +shortdesc Croatian language module for the datetime2 package relocated 1 longdesc This module provides the "croatian" style that can be set using -longdesc \DTMsetstyle provided by datetime2.sty. This package is -longdesc currently unmaintained. Please see the README for the procedure -longdesc to follow if you want to take over the maintenance. -runfiles size=4 - RELOC/tex/latex/datetime2-croatian/datetime2-croatian-ascii.ldf - RELOC/tex/latex/datetime2-croatian/datetime2-croatian-utf8.ldf - RELOC/tex/latex/datetime2-croatian/datetime2-croatian.ldf +longdesc \DTMsetstyle provided by datetime2.sty. +containersize 2584 +containerchecksum 603052fb5cff6ea8fa5b951623efb1fc72aa6583fa1ed560b4c5266ce96cdd209423773ee0d3a592465247343f3fff966d7a9cd9698e02e339d5a1c579591f37 +doccontainersize 83956 +doccontainerchecksum a56060b84fc6d2917fd0cf160f0405104a3413e02456ce91cbd97aebd746b0e91c730d2e2e4bbbb46f39521b5c6cbc45558bb4327c7260719ce21e8226fe5910 docfiles size=22 - RELOC/doc/latex/datetime2-croatian/README - RELOC/doc/latex/datetime2-croatian/datetime2-croatian.pdf + RELOC/doc/latex/datetime2-croatian/README details="Readme" + RELOC/doc/latex/datetime2-croatian/datetime2-croatian.pdf details="Package documentation" +srccontainersize 4940 +srccontainerchecksum 5eca1a663801a65b79e0cc069bfa8840e04e08e589445713ea0646f104f5acba51d6f925d2d4ea1c36a83b8f4e095693767a3ca71a33af1015fff5f396c51bc4 srcfiles size=6 RELOC/source/latex/datetime2-croatian/datetime2-croatian.dtx RELOC/source/latex/datetime2-croatian/datetime2-croatian.ins +runfiles size=4 + RELOC/tex/latex/datetime2-croatian/datetime2-croatian-ascii.ldf + RELOC/tex/latex/datetime2-croatian/datetime2-croatian-utf8.ldf + RELOC/tex/latex/datetime2-croatian/datetime2-croatian.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-croatian -catalogue-date 2015-04-01 05:50:16 +0200 +catalogue-date 2018-01-07 11:22:54 +0100 catalogue-license lppl1.3 +catalogue-topics date-time multilingual catalogue-version 1.0 name datetime2-czech category Package -revision 36682 -shortdesc czech language module for the datetime2 package. +revision 47033 +shortdesc Czech language module for the datetime2 package relocated 1 longdesc This module provides the "czech" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. +containersize 2568 +containerchecksum 048ffe6258ce1d4bf9d098e7623d3c5e25ef8215a538e33806c4d35d6368fda81941ff9adbb394085c9b4f058fe9a3b02cbeeaae8cb1f7b2bb55aaa35c743d61 +doccontainersize 81720 +doccontainerchecksum 976e98000a80e15a4ea5204f15a5288781ab35089bcd9427b62fb445f28a25ba0c03af4e64a3de688a51c5c94788732fa199705a68de3e9925f1db4ec7dcead7 +docfiles size=22 + RELOC/doc/latex/datetime2-czech/README details="Readme" + RELOC/doc/latex/datetime2-czech/datetime2-czech.pdf details="Package documentation" +srccontainersize 4748 +srccontainerchecksum 9ef924462b97d29d6102cb691d1845f68ec50054a71d93222b61af91f510211016fdaa4861433a65c589263af11a62cb23d64a79f5bb26624395589dfa812515 +srcfiles size=5 + RELOC/source/latex/datetime2-czech/datetime2-czech.dtx + RELOC/source/latex/datetime2-czech/datetime2-czech.ins runfiles size=4 RELOC/tex/latex/datetime2-czech/datetime2-czech-ascii.ldf RELOC/tex/latex/datetime2-czech/datetime2-czech-utf8.ldf RELOC/tex/latex/datetime2-czech/datetime2-czech.ldf -docfiles size=21 - RELOC/doc/latex/datetime2-czech/README - RELOC/doc/latex/datetime2-czech/datetime2-czech.pdf -srcfiles size=5 - RELOC/source/latex/datetime2-czech/datetime2-czech.dtx - RELOC/source/latex/datetime2-czech/datetime2-czech.ins catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-czech -catalogue-date 2015-04-01 05:50:16 +0200 +catalogue-date 2018-03-19 17:42:42 +0100 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time multilingual +catalogue-version 1.1 name datetime2-danish category Package -revision 36682 -shortdesc danish language module for the datetime2 package. +revision 47034 +shortdesc Danish language module for the datetime2 package relocated 1 longdesc This module provides the "danish" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=4 - RELOC/tex/latex/datetime2-danish/datetime2-danish-ascii.ldf - RELOC/tex/latex/datetime2-danish/datetime2-danish-utf8.ldf - RELOC/tex/latex/datetime2-danish/datetime2-danish.ldf +containersize 2536 +containerchecksum b9e5b442282fcebfc114a772af8317d8888cdf24cd5cafebd5d3c79e3ea8790a4fd082c2facc1a466e7e5b4266b0d93ea5fb6cae64f96f3d131fd4869a465a4c +doccontainersize 83108 +doccontainerchecksum 1d933d9d48ad6ef3dd0716fce0b2da6de6700bcd8c1d729d8216145dc5f243ea83323b0fefb6adeaf10a9fb264343e1b429044aaf86e6a77a121b0c951c2c77a docfiles size=22 - RELOC/doc/latex/datetime2-danish/README - RELOC/doc/latex/datetime2-danish/datetime2-danish.pdf + RELOC/doc/latex/datetime2-danish/README details="Readme" + RELOC/doc/latex/datetime2-danish/datetime2-danish.pdf details="Package documentation" +srccontainersize 4804 +srccontainerchecksum dbccc381f173d7204eeaeb8b8a4fcf59e6f0750213986207afbef3754554e4524e1ceb3620135a93ed43d786210583b3f931b41a1c645bfb22e33dcaa45a6c85 srcfiles size=6 RELOC/source/latex/datetime2-danish/datetime2-danish.dtx RELOC/source/latex/datetime2-danish/datetime2-danish.ins +runfiles size=4 + RELOC/tex/latex/datetime2-danish/datetime2-danish-ascii.ldf + RELOC/tex/latex/datetime2-danish/datetime2-danish-utf8.ldf + RELOC/tex/latex/datetime2-danish/datetime2-danish.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-danish -catalogue-date 2015-04-01 05:50:16 +0200 +catalogue-date 2018-03-19 18:12:26 +0100 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time multilingual +catalogue-version 1.1 name datetime2-dutch category Package -revision 36682 -shortdesc dutch language module for the datetime2 package. +revision 47355 +shortdesc Dutch language module for the datetime2 package relocated 1 longdesc This module provides the "dutch" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=2 - RELOC/tex/latex/datetime2-dutch/datetime2-dutch.ldf +containersize 2396 +containerchecksum c14fcbb882183095c60f0e881ad1668f90855b90cce352922a562371bf2cdd556bd196ec85068775b9aec590f098c956c784b98da283ee1117bec68ee585f5fa +doccontainersize 278696 +doccontainerchecksum e5f2fe126eaf87ef34dce686db6e9b9c3c322a2266293517e803435dfa67b55da6a771f6c7253203dcae0dd1237096093a6463f6bbbc096c108b73bac4a641d8 docfiles size=69 - RELOC/doc/latex/datetime2-dutch/README - RELOC/doc/latex/datetime2-dutch/datetime2-dutch.pdf + RELOC/doc/latex/datetime2-dutch/README details="Readme" + RELOC/doc/latex/datetime2-dutch/datetime2-dutch.pdf details="Package documentation" +srccontainersize 4352 +srccontainerchecksum 32036be5e4e8643da1cd0a2a291db4875328c5e8685f711e247eb7fc38b6b25b92db2f98bfa3769a02c982ea09cbedc75bb963d3f39c36860f9c335e73e331c9 srcfiles size=5 RELOC/source/latex/datetime2-dutch/datetime2-dutch.dtx RELOC/source/latex/datetime2-dutch/datetime2-dutch.ins +runfiles size=2 + RELOC/tex/latex/datetime2-dutch/datetime2-dutch.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-dutch -catalogue-date 2015-04-01 05:50:16 +0200 +catalogue-date 2018-04-07 06:36:05 +0200 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time multilingual +catalogue-version 1.1 name datetime2-en-fulltext category Package revision 36705 -shortdesc English Full Text styles for the datetime2 package. +shortdesc English Full Text styles for the datetime2 package relocated 1 longdesc English date and time styles that use words for the numbers and longdesc ordinals. This package provides the following date and time @@ -44416,25 +76397,32 @@ longdesc styles provided by datetime2.sty, these styles aren't longdesc expandable styles. This means that you can't use the date or longdesc time in PDF bookmarks or in the argument of certain commands, longdesc such as \MakeUppercase, while these styles are in use. -runfiles size=4 - RELOC/tex/latex/datetime2-en-fulltext/datetime2-en-fulltext.sty +containersize 2696 +containerchecksum 19f08e264921b8b12def2b20bb1d904f90dae712bcbe579a9697d1f657f148ad8311c6d7a8621f336dc82518ec64438640b49776fdab62f302b0919cc7de8e4a +doccontainersize 278384 +doccontainerchecksum a6ed1e804d8229d735aaf1874458dda3206ecb5e648c35af82a1d3fe524e65aeb7669088dc4bd9fd83919263d59035fd539a8318a24b2bc2470f14670e28eced docfiles size=71 - RELOC/doc/latex/datetime2-en-fulltext/README - RELOC/doc/latex/datetime2-en-fulltext/datetime2-en-fulltext.pdf + RELOC/doc/latex/datetime2-en-fulltext/README details="Readme" + RELOC/doc/latex/datetime2-en-fulltext/datetime2-en-fulltext.pdf details="Package documentation" RELOC/doc/latex/datetime2-en-fulltext/sample-en-fulltext.pdf RELOC/doc/latex/datetime2-en-fulltext/sample-en-fulltext.tex +srccontainersize 4060 +srccontainerchecksum 9bf741dced10ac57d7c4fbc3a8a26b49b35d07a221f4d7ecf56ddfdea6500edeb39ef75ed0234d6e510ea07da5da06cf29691a36545dc4367b3682e879d92b10 srcfiles size=7 RELOC/source/latex/datetime2-en-fulltext/datetime2-en-fulltext.dtx RELOC/source/latex/datetime2-en-fulltext/datetime2-en-fulltext.ins +runfiles size=4 + RELOC/tex/latex/datetime2-en-fulltext/datetime2-en-fulltext.sty catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-en-fulltext -catalogue-date 2015-04-04 09:32:01 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics date-time multilingual catalogue-version 1.0 name datetime2-english category Package -revision 36760 -shortdesc English language module for the datetime2 package. +revision 39991 +shortdesc English language module for the datetime2 package relocated 1 longdesc This module provides the following styles that can be set using longdesc \DTMsetstyle provided by datetime2.sty. The region not only @@ -44444,10 +76432,25 @@ longdesc (English - no region) en-GB (English - United Kingdom of Great longdesc Britain and Northern Ireland) en-US (English - United States of longdesc America) en-CA (English - Canada) en-AU (English - Commonwealth longdesc of Australia) en-NZ (English - New Zealand) en-GG (English - -longdesc Bailiwick of Guernsey) en-JE (English - Bailiwick of Jersey) en- -longdesc IM (English - Isle of Man) en-MT (English - Republic of Malta) -longdesc en-IE (English - Republic of Ireland) -runfiles size=23 +longdesc Bailiwick of Guernsey) en-JE (English - Bailiwick of Jersey) +longdesc en-IM (English - Isle of Man) en-MT (English - Republic of +longdesc Malta) en-IE (English - Republic of Ireland) +containersize 5820 +containerchecksum 1385ea09d797877ea45dcc37e864c5e695d8eb2e210fabe33e6c13ab221cfeb5c55bb2d95ddd9db5c07653ac882375426c7694dd8d3da6bf77ac8f3fb798e02e +doccontainersize 639120 +doccontainerchecksum 21fa34d1dc4fc5e082bec3c6a82a29683c0ae6515cc8ee3f07c4cdb3c01639fb05e033e40c9aa4e8489789eefeb904e5b3c2e5cbf4501db26477db34f5e39219 +docfiles size=161 + RELOC/doc/latex/datetime2-english/CHANGES + RELOC/doc/latex/datetime2-english/README details="Readme" + RELOC/doc/latex/datetime2-english/datetime2-english-sample.pdf details="Sample article" + RELOC/doc/latex/datetime2-english/datetime2-english-sample.tex + RELOC/doc/latex/datetime2-english/datetime2-english.pdf details="Package documentation" +srccontainersize 13384 +srccontainerchecksum 20cfbd776fc91c547fef6dddad5c87b6abd49273607fe854b6dd453602833e7bcacd138e92c3c567c80cc8a45b1176160cd1cb0334bd6dbc55ff8477156cfcc9 +srcfiles size=36 + RELOC/source/latex/datetime2-english/datetime2-english.dtx + RELOC/source/latex/datetime2-english/datetime2-english.ins +runfiles size=26 RELOC/tex/latex/datetime2-english/datetime2-en-AU.ldf RELOC/tex/latex/datetime2-english/datetime2-en-CA.ldf RELOC/tex/latex/datetime2-english/datetime2-en-GB.ldf @@ -44460,271 +76463,386 @@ runfiles size=23 RELOC/tex/latex/datetime2-english/datetime2-en-US.ldf RELOC/tex/latex/datetime2-english/datetime2-english-base.ldf RELOC/tex/latex/datetime2-english/datetime2-english.ldf -docfiles size=128 - RELOC/doc/latex/datetime2-english/CHANGES - RELOC/doc/latex/datetime2-english/README - RELOC/doc/latex/datetime2-english/datetime2-english.pdf -srcfiles size=30 - RELOC/source/latex/datetime2-english/datetime2-english.dtx - RELOC/source/latex/datetime2-english/datetime2-english.ins catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-english -catalogue-date 2015-04-09 21:25:08 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 -catalogue-version 1.01 +catalogue-topics date-time multilingual +catalogue-version 1.04 name datetime2-esperanto category Package -revision 36682 -shortdesc Esperanto language module for the datetime2 package. +revision 47356 +shortdesc Esperanto language module for the datetime2 package relocated 1 longdesc This module provides the "esperanto" style that can be set longdesc using \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. +containersize 2484 +containerchecksum 6406e5a6708c1c97da6e0f8460ba70d61c403875497c57008013a3d1a8a9100b344b3d7267ed869f777566aa403110e17d778e2a47b3970846324bf08e8ae046 +doccontainersize 81488 +doccontainerchecksum c200c3f39ed756765876ca5655b99025a898719f9723a996bd4772974643e0421edd8d36a8eeb00d29dc75ae715fb55927e31f067b1159bbb1f4dd218de780a7 +docfiles size=22 + RELOC/doc/latex/datetime2-esperanto/README details="Readme" + RELOC/doc/latex/datetime2-esperanto/datetime2-esperanto.pdf details="Package documentation" +srccontainersize 4732 +srccontainerchecksum 799b2197ce9f0950889a933952dcc33dc0ad2cb97d906baa61bdcf8d32bbf341d65aa2c2f1509fa59f366cb570e9ba6b4946d4d5785c5022c55117297192a32a +srcfiles size=5 + RELOC/source/latex/datetime2-esperanto/datetime2-esperanto.dtx + RELOC/source/latex/datetime2-esperanto/datetime2-esperanto.ins runfiles size=4 RELOC/tex/latex/datetime2-esperanto/datetime2-esperanto-ascii.ldf RELOC/tex/latex/datetime2-esperanto/datetime2-esperanto-utf8.ldf RELOC/tex/latex/datetime2-esperanto/datetime2-esperanto.ldf -docfiles size=21 - RELOC/doc/latex/datetime2-esperanto/README - RELOC/doc/latex/datetime2-esperanto/datetime2-esperanto.pdf -srcfiles size=5 - RELOC/source/latex/datetime2-esperanto/datetime2-esperanto.dtx - RELOC/source/latex/datetime2-esperanto/datetime2-esperanto.ins catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-esperanto -catalogue-date 2015-04-01 05:50:16 +0200 +catalogue-date 2018-04-07 06:41:21 +0200 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time multilingual +catalogue-version 1.1 name datetime2-estonian category Package -revision 36682 -shortdesc Estonian language module for the datetime2 package. +revision 47565 +shortdesc Estonian language module for the datetime2 package relocated 1 longdesc This module provides the "estonian" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=4 - RELOC/tex/latex/datetime2-estonian/datetime2-estonian-ascii.ldf - RELOC/tex/latex/datetime2-estonian/datetime2-estonian-utf8.ldf - RELOC/tex/latex/datetime2-estonian/datetime2-estonian.ldf +containersize 2492 +containerchecksum 93e8ebc62b48da8f5c159822f53c35aaa2cbd2fb6bc701108cf6452db7eca3df39de3c1ba9b84136683d22d65a975dc138aace0a81960d1c9382309a4cee5f3f +doccontainersize 81032 +doccontainerchecksum 268b873d870ff19a3151d4244b0329994e559ab61198ab3d76d830b1bdd6a05e8b5a7a7df2fd6eec8d57b9e28626f80af755b1866f4ee90eb0c7e94b85f3c087 docfiles size=21 - RELOC/doc/latex/datetime2-estonian/README - RELOC/doc/latex/datetime2-estonian/datetime2-estonian.pdf + RELOC/doc/latex/datetime2-estonian/README details="Readme" + RELOC/doc/latex/datetime2-estonian/datetime2-estonian.pdf details="Package documentation" +srccontainersize 4740 +srccontainerchecksum 2cccbea84fc47da4668a06154b97116b39e1aa51e31196c7c9a41d517aa5f24924c86474fa8f7f1252e356a85392977553b6a28ad154d246bd5192a7e7f07b4d srcfiles size=5 RELOC/source/latex/datetime2-estonian/datetime2-estonian.dtx RELOC/source/latex/datetime2-estonian/datetime2-estonian.ins +runfiles size=4 + RELOC/tex/latex/datetime2-estonian/datetime2-estonian-ascii.ldf + RELOC/tex/latex/datetime2-estonian/datetime2-estonian-utf8.ldf + RELOC/tex/latex/datetime2-estonian/datetime2-estonian.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-estonian -catalogue-date 2015-04-01 05:50:16 +0200 +catalogue-date 2018-04-13 13:59:22 +0200 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time multilingual +catalogue-version 1.1 name datetime2-finnish category Package -revision 36682 -shortdesc Finnish language module for the datetime2 package. +revision 47047 +shortdesc Finnish language module for the datetime2 package relocated 1 longdesc This module provides the "finnish" style that can be set using -longdesc \DTMsetstyle provided by datetime2.sty. This package is -longdesc currently unmaintained. Please see the README for the procedure -longdesc to follow if you want to take over the maintenance. -runfiles size=4 +longdesc \DTMsetstyle provided by datetime2.sty. +containersize 2732 +containerchecksum 45f971bd3711d1424b002f32e0535465658e50cd9abd9758faa3685aad6a6e74747e7b3cc840a38968ef49ecb91b3007ec678f63f0c0ad3b77ae0c39bdab2457 +doccontainersize 85496 +doccontainerchecksum 01470814a87a5c87bb54b17a763011872864aad8d1f78f82c2325defb7f135daf34aa2b721bb4cbe7ec80efcf839372de07c29245ecc477708fe60f3d501a258 +docfiles size=24 + RELOC/doc/latex/datetime2-finnish/CHANGES + RELOC/doc/latex/datetime2-finnish/README details="Readme" + RELOC/doc/latex/datetime2-finnish/datetime2-finnish.pdf details="Package documentation" +srccontainersize 5484 +srccontainerchecksum 56f4b99f506673c89115e37dfd9458f5e3e55b62dc9dedca98747bcbc7e6e27306dc2711c05b0c8e2844aa03a4c8f7835bf6643ff082b7d1ed246a68b2af37d3 +srcfiles size=8 + RELOC/source/latex/datetime2-finnish/datetime2-finnish.dtx + RELOC/source/latex/datetime2-finnish/datetime2-finnish.ins +runfiles size=5 RELOC/tex/latex/datetime2-finnish/datetime2-finnish-ascii.ldf RELOC/tex/latex/datetime2-finnish/datetime2-finnish-utf8.ldf RELOC/tex/latex/datetime2-finnish/datetime2-finnish.ldf -docfiles size=21 - RELOC/doc/latex/datetime2-finnish/README - RELOC/doc/latex/datetime2-finnish/datetime2-finnish.pdf -srcfiles size=5 - RELOC/source/latex/datetime2-finnish/datetime2-finnish.dtx - RELOC/source/latex/datetime2-finnish/datetime2-finnish.ins catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-finnish -catalogue-date 2015-04-01 05:50:16 +0200 +catalogue-date 2018-03-21 05:28:56 +0100 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time multilingual +catalogue-version 1.2 name datetime2-french category Package -revision 36648 -shortdesc French language module for the datetime2 package. +revision 43742 +shortdesc French language module for the datetime2 package relocated 1 longdesc This module provides the "french" style that can be set using -longdesc \DTMsetstyle provided by datetime2.sty. This package is -longdesc currently unmaintained. Please see the README for the procedure -longdesc to follow if you want to take over the maintenance. -runfiles size=4 +longdesc \DTMsetstyle provided by datetime2.sty. +containersize 3040 +containerchecksum 90a5f2e7c7570c88cfd10ea78cab34affd0483916a867c425cee593a080dd41f85c1db9eee22f1c5d1b27899c0d8afbfae2169e0b4fbc5951f0580437f735a86 +doccontainersize 113840 +doccontainerchecksum d86846e741d2c4f07efee33c1bb15b1de205d0ceb2f6c2c5930c3f224e350e53d3817b7ca96b47073ea8510389d2cb36b49f853812fd98c6a3d1b2484fb3a80d +docfiles size=45 + RELOC/doc/latex/datetime2-french/README details="Readme" + RELOC/doc/latex/datetime2-french/datetime2-french-test-luatex.pdf + RELOC/doc/latex/datetime2-french/datetime2-french-test-luatex.tex + RELOC/doc/latex/datetime2-french/datetime2-french-test-pdftex.pdf + RELOC/doc/latex/datetime2-french/datetime2-french-test-pdftex.tex + RELOC/doc/latex/datetime2-french/datetime2-french-test-xetex.pdf + RELOC/doc/latex/datetime2-french/datetime2-french-test-xetex.tex + RELOC/doc/latex/datetime2-french/datetime2-french-test.tex + RELOC/doc/latex/datetime2-french/datetime2-french.pdf details="Package documentation" +srccontainersize 5000 +srccontainerchecksum 277586cba75c6356674f763679c2d84d46aabeea1cf95211c61e967e413a61324d2e1ecd8ebcda756d5a0406f189f239d547b9b2879ef8ea854722832401939c +srcfiles size=7 + RELOC/source/latex/datetime2-french/datetime2-french.dtx + RELOC/source/latex/datetime2-french/datetime2-french.ins +runfiles size=7 RELOC/tex/latex/datetime2-french/datetime2-french-ascii.ldf RELOC/tex/latex/datetime2-french/datetime2-french-utf8.ldf RELOC/tex/latex/datetime2-french/datetime2-french.ldf -docfiles size=72 - RELOC/doc/latex/datetime2-french/README - RELOC/doc/latex/datetime2-french/datetime2-french.pdf -srcfiles size=6 - RELOC/source/latex/datetime2-french/datetime2-french.dtx - RELOC/source/latex/datetime2-french/datetime2-french.ins catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-french -catalogue-date 2015-03-29 07:33:30 +0200 +catalogue-date 2017-04-08 19:22:56 +0200 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time multilingual +catalogue-version 1.02 name datetime2-galician category Package -revision 36692 -shortdesc galician language module for the datetime2 package. +revision 47631 +shortdesc Galician language module for the datetime2 package relocated 1 longdesc This module provides the "galician" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=4 - RELOC/tex/latex/datetime2-galician/datetime2-galician-ascii.ldf - RELOC/tex/latex/datetime2-galician/datetime2-galician-utf8.ldf - RELOC/tex/latex/datetime2-galician/datetime2-galician.ldf +containersize 2508 +containerchecksum 050dd3e5db5aaae106804a315e679cdee0a4e9fc2d10481f21059c410a73492d6e41d9db070bbe5112377a4f1dbec3345bc5f87efba998130cb20e31a443bf34 +doccontainersize 81096 +doccontainerchecksum 881250aaf53eba33ee223e5d87f0d8d4081785ea723d5f2e605d04767aed63b2fd8a592eabddd4343c489f1abd809218c600aa5df2447b24bf0465e7a31c8ff5 docfiles size=21 - RELOC/doc/latex/datetime2-galician/README - RELOC/doc/latex/datetime2-galician/datetime2-galician.pdf + RELOC/doc/latex/datetime2-galician/README details="Readme" + RELOC/doc/latex/datetime2-galician/datetime2-galician.pdf details="Package documentation" +srccontainersize 4700 +srccontainerchecksum 671230a9b4da0cfec5c1afd50db2ec103c1712006c70be0c9d6d1eec637461005673c73dd1c457561e54af1409072fab111e7d93e785a91ccc6dd0cbbb497127 srcfiles size=5 RELOC/source/latex/datetime2-galician/datetime2-galician.dtx RELOC/source/latex/datetime2-galician/datetime2-galician.ins +runfiles size=4 + RELOC/tex/latex/datetime2-galician/datetime2-galician-ascii.ldf + RELOC/tex/latex/datetime2-galician/datetime2-galician-utf8.ldf + RELOC/tex/latex/datetime2-galician/datetime2-galician.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-galician -catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-date 2018-01-07 11:37:20 +0100 catalogue-license lppl1.3 +catalogue-topics date-time multilingual catalogue-version 1.0 name datetime2-german category Package -revision 36649 -shortdesc German language module for the datetime2 package. +revision 45800 +shortdesc German language module for the datetime2 package relocated 1 longdesc This module provides the "german" style that can be set using -longdesc \DTMsetstyle provided by datetime2.sty. This package is -longdesc currently unmaintained. Please see the README for the procedure -longdesc to follow if you want to take over the maintenance. -runfiles size=4 +longdesc \DTMsetstyle provided by datetime2.sty. +containersize 3744 +containerchecksum 596fe3086d2bf16922f0219815474eea872950b1f31bb6777f375107571e70e5756bcd8c3930aefdfbbb6e1ab931a2a9d7976b537aeebedb98c1a541c178dc6d +doccontainersize 322004 +doccontainerchecksum 5fccb91afde9d59f6c26ee4bc5d7a5a90cc6c727d32effc328755e292477659feeb9eaadca85ef4351a104f9811426d7324616ca639a9c0bbc061ce32f10e778 +docfiles size=80 + RELOC/doc/latex/datetime2-german/README.md details="Readme" + RELOC/doc/latex/datetime2-german/datetime2-german.pdf details="Package documentation" +srccontainersize 7904 +srccontainerchecksum 35d7fd9a3f164503861980ee78b16c8784bcab76d46806a64e21c400cfc24900dddfdcab7cd8538b9071f69137eb746797e9555658540605950ea4081fa515d1 +srcfiles size=15 + RELOC/source/latex/datetime2-german/datetime2-german.dtx + RELOC/source/latex/datetime2-german/datetime2-german.ins +runfiles size=10 + RELOC/tex/latex/datetime2-german/datetime2-de-AT.ldf + RELOC/tex/latex/datetime2-german/datetime2-de-CH.ldf + RELOC/tex/latex/datetime2-german/datetime2-de-DE.ldf RELOC/tex/latex/datetime2-german/datetime2-german-ascii.ldf RELOC/tex/latex/datetime2-german/datetime2-german-utf8.ldf RELOC/tex/latex/datetime2-german/datetime2-german.ldf -docfiles size=71 - RELOC/doc/latex/datetime2-german/README - RELOC/doc/latex/datetime2-german/datetime2-german.pdf -srcfiles size=5 - RELOC/source/latex/datetime2-german/datetime2-german.dtx - RELOC/source/latex/datetime2-german/datetime2-german.ins +catalogue-contact-bugs https://github.com/SFr682k/datetime2-german/issues +catalogue-contact-repository https://github.com/SFr682k/datetime2-german catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-german -catalogue-date 2015-03-29 07:33:30 +0200 -catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-date 2017-11-13 22:45:08 +0100 +catalogue-license lppl1.3c +catalogue-topics date-time multilingual +catalogue-version 2.1 name datetime2-greek category Package -revision 36692 -shortdesc Greek language module for the datetime2 package. +revision 47533 +shortdesc Greek language module for the datetime2 package relocated 1 longdesc This module provides the "greek" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=4 - RELOC/tex/latex/datetime2-greek/datetime2-greek-ascii.ldf - RELOC/tex/latex/datetime2-greek/datetime2-greek-utf8.ldf - RELOC/tex/latex/datetime2-greek/datetime2-greek.ldf +containersize 2524 +containerchecksum d067dc579e739c8ebfee602d667042c4727e73595fc199197d58d0c6caad4460401bc9d08965292b36811e38be5424c22d6dc4f49c4a9682da3ef34d46e35cdd +doccontainersize 78172 +doccontainerchecksum 5025cf0113e24efaa2bc413da5d2c14c58ead82ceb07fedad299783c5e445a40295d54e0d5ef3a5937586c484ccaf80e40fcb95e5592266fc82e5e52966af6dd docfiles size=21 - RELOC/doc/latex/datetime2-greek/README - RELOC/doc/latex/datetime2-greek/datetime2-greek.pdf + RELOC/doc/latex/datetime2-greek/README details="Readme" + RELOC/doc/latex/datetime2-greek/datetime2-greek.pdf details="Package documentation" +srccontainersize 4716 +srccontainerchecksum b0cc23d43a600f72a13234938b2d1e26d011e416b5f979f86003b4ba4cf53f3fe76db4eb5301db23263490b59735d0226f0b27e10a8f521febe52758a3f63ade srcfiles size=5 RELOC/source/latex/datetime2-greek/datetime2-greek.dtx RELOC/source/latex/datetime2-greek/datetime2-greek.ins +runfiles size=4 + RELOC/tex/latex/datetime2-greek/datetime2-greek-ascii.ldf + RELOC/tex/latex/datetime2-greek/datetime2-greek-utf8.ldf + RELOC/tex/latex/datetime2-greek/datetime2-greek.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-greek -catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-date 2018-04-18 15:02:50 +0200 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time multilingual +catalogue-version 1.1 name datetime2-hebrew category Package -revision 36692 -shortdesc Hebrew language module for the datetime2 package. +revision 47534 +shortdesc Hebrew language module for the datetime2 package relocated 1 longdesc This module provides the "hebrew" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=2 - RELOC/tex/latex/datetime2-hebrew/datetime2-hebrew.ldf +containersize 2164 +containerchecksum c9bfe10e1cda7e3890cd79fac15a8f629ece47971caa43229fe73236e80e1f476411aa4d05be61f7f03bc34324b114ccac2585b83cced2d38a28f279639523d1 +doccontainersize 270888 +doccontainerchecksum 636dd01321842cd0ae1c3a1ed8ef41e1704d720aeb830f03a93c921c4735c1913211a1d987a1b430e312c57440a11cf8cb80f4336b4770a13fddbd9d6a5c3cbe docfiles size=67 - RELOC/doc/latex/datetime2-hebrew/README - RELOC/doc/latex/datetime2-hebrew/datetime2-hebrew.pdf + RELOC/doc/latex/datetime2-hebrew/README details="Readme" + RELOC/doc/latex/datetime2-hebrew/datetime2-hebrew.pdf details="Package documentation" +srccontainersize 3884 +srccontainerchecksum 9d1cd5f81a144ebe0efed5773ccc480fa2a14fca7411ac621a489884873dc7fcc6d877c66c7e70ec6736f4e2f6a90b57c9db0516baec961230f14dc6fb55d404 srcfiles size=4 RELOC/source/latex/datetime2-hebrew/datetime2-hebrew.dtx RELOC/source/latex/datetime2-hebrew/datetime2-hebrew.ins +runfiles size=2 + RELOC/tex/latex/datetime2-hebrew/datetime2-hebrew.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-hebrew -catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-date 2018-04-18 18:21:23 +0200 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time hebrew multilingual +catalogue-version 1.1 name datetime2-icelandic category Package -revision 36692 -shortdesc Icelandic language module for the datetime2 package. +revision 47501 +shortdesc Icelandic language module for the datetime2 package relocated 1 longdesc This module provides the "icelandic" style that can be set longdesc using \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=4 - RELOC/tex/latex/datetime2-icelandic/datetime2-icelandic-ascii.ldf - RELOC/tex/latex/datetime2-icelandic/datetime2-icelandic-utf8.ldf - RELOC/tex/latex/datetime2-icelandic/datetime2-icelandic.ldf +containersize 2552 +containerchecksum 50b5b4a4dbe38b669929637c9b22517b960ac0eab3486705efbd92e57e50c7c3a7f46c0d2ab0048a1c382f052589f091724828e2139d8796408edb899cac2e50 +doccontainersize 80808 +doccontainerchecksum 148963ad2651a79371d8f218c763c90c96d28d18d84c2f57e76ad64b456418a44d15983fd1b1622e33c6ef256f6457b6b33090b7c57fd3c37b8dbc8a0754c09b docfiles size=21 - RELOC/doc/latex/datetime2-icelandic/README - RELOC/doc/latex/datetime2-icelandic/datetime2-icelandic.pdf + RELOC/doc/latex/datetime2-icelandic/README details="Readme" + RELOC/doc/latex/datetime2-icelandic/datetime2-icelandic.pdf details="Package documentation" +srccontainersize 4784 +srccontainerchecksum 83cc155aa3cba3aff874762490d6cb9f85c0218c7209ff6ce304c16f04ef28a0b30a5978d08ed2e1ff24a2a81359387185e2ba16d45d8f83fdc8c81bdf5b5df4 srcfiles size=5 RELOC/source/latex/datetime2-icelandic/datetime2-icelandic.dtx RELOC/source/latex/datetime2-icelandic/datetime2-icelandic.ins +runfiles size=4 + RELOC/tex/latex/datetime2-icelandic/datetime2-icelandic-ascii.ldf + RELOC/tex/latex/datetime2-icelandic/datetime2-icelandic-utf8.ldf + RELOC/tex/latex/datetime2-icelandic/datetime2-icelandic.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-icelandic -catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-date 2018-04-24 15:17:28 +0200 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time multilingual +catalogue-version 1.1 name datetime2-irish category Package -revision 36635 -shortdesc Irish Gaelic Language Module for the datetime2 Package. +revision 47632 +shortdesc Irish Gaelic Language Module for the datetime2 Package relocated 1 longdesc This module provides the "irish" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. +containersize 2908 +containerchecksum 8c1d54d5fc80b2f7dd8faabc31df20253c9ee48987c268ae685144b02acccb5c3ec6bdaaa5bc420e90ecf4ec7d421afc96d82aef1a76ec7e01fb8e5f81d0a036 +doccontainersize 321096 +doccontainerchecksum 692acb7c50c30e6790344b37e9fe3cb07f2a0e10b9d63b47c78df1b2d1bd1f8f186107acf4d75dabc14a99db57cb32810989bf7af817bfdd16fa694bfee5f17f +docfiles size=80 + RELOC/doc/latex/datetime2-irish/README details="Readme" + RELOC/doc/latex/datetime2-irish/datetime2-irish.pdf details="Package documentation" +srccontainersize 5444 +srccontainerchecksum 1e829006f0182374511addef820ef08868eb1c00b5e82d0da82efadb4df377531755a4212fb0e2f4a5df0d06aaed39863094524b351c29dd88dfd5ee71c84860 +srcfiles size=9 + RELOC/source/latex/datetime2-irish/datetime2-irish.dtx + RELOC/source/latex/datetime2-irish/datetime2-irish.ins runfiles size=8 RELOC/tex/latex/datetime2-irish/datetime2-ga-GB.ldf RELOC/tex/latex/datetime2-irish/datetime2-ga-IE.ldf RELOC/tex/latex/datetime2-irish/datetime2-irish-ascii.ldf RELOC/tex/latex/datetime2-irish/datetime2-irish-utf8.ldf RELOC/tex/latex/datetime2-irish/datetime2-irish.ldf -docfiles size=80 - RELOC/doc/latex/datetime2-irish/README - RELOC/doc/latex/datetime2-irish/datetime2-irish.pdf -srcfiles size=9 - RELOC/source/latex/datetime2-irish/datetime2-irish.dtx - RELOC/source/latex/datetime2-irish/datetime2-irish.ins catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-irish -catalogue-date 2015-03-28 05:55:48 +0100 +catalogue-date 2018-04-24 15:30:19 +0200 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time multilingual +catalogue-version 1.1 + +name datetime2-it-fulltext +category Package +revision 38093 +shortdesc Italian full text styles for the datetime2 package +relocated 1 +longdesc Italian date and time styles that use words for the numbers and +longdesc ordinals. This package provides the following date and time +longdesc styles: "it-fulltext" and "it-fulltext-twenty-four". The first +longdesc style uses a format "am pm", the second a format "24 hours". +longdesc The necessary packages are datetime2, itnumpar, ifxetex, and +longdesc ifluatex. This package is the translation and adaptation of +longdesc datetime2-en-fulltext. +containersize 3752 +containerchecksum 389840e273ea5b9e8e8c66e77578d9908349589b11a599308acfde9ab8dd972ec855011fc4d3302ad2ae16dfad05812ae75d6eece275761587242099fa907d67 +doccontainersize 123908 +doccontainerchecksum a5a56a912b1b618999cec4b37fccaefe6f1e00f3b84f6aff8dd6b9b3ffa1855d25e8af8b49d04112829d7cef82f21b757772876b75cfc910a4dd5c89920ce131 +docfiles size=44 + RELOC/doc/latex/datetime2-it-fulltext/README details="Readme" + RELOC/doc/latex/datetime2-it-fulltext/datetime2-it-fulltext.pdf details="Package documentation" + RELOC/doc/latex/datetime2-it-fulltext/samples/BatTest.tex + RELOC/doc/latex/datetime2-it-fulltext/samples/BatTestDate.tex + RELOC/doc/latex/datetime2-it-fulltext/samples/it-fulltext-en-fulltext.tex + RELOC/doc/latex/datetime2-it-fulltext/samples/sample-it-fulltext-second.tex + RELOC/doc/latex/datetime2-it-fulltext/samples/sample-it-fulltext-semplice.tex + RELOC/doc/latex/datetime2-it-fulltext/samples/sample-it-fulltext-twenty-four-second.tex + RELOC/doc/latex/datetime2-it-fulltext/samples/sample-it-fulltext-twenty-four.tex + RELOC/doc/latex/datetime2-it-fulltext/samples/sample-it-fulltext.tex + RELOC/doc/latex/datetime2-it-fulltext/samples/sample-it-timedatestyle1.tex + RELOC/doc/latex/datetime2-it-fulltext/samples/sample-it-timedatestyle2.tex +srccontainersize 4488 +srccontainerchecksum ddffefcb640de660f1f9258d7bad92c40d3ce73017c53534389ce1d3e772214bdfcdf7a4dd927201aaba096533d7000a84871000772762c2edbfda9d1d11d9bb +srcfiles size=9 + RELOC/source/latex/datetime2-it-fulltext/datetime2-it-fulltext.dtx + RELOC/source/latex/datetime2-it-fulltext/datetime2-it-fulltext.ins +runfiles size=10 + RELOC/tex/latex/datetime2-it-fulltext/datetime2-it-fulltext-ascii.ldf + RELOC/tex/latex/datetime2-it-fulltext/datetime2-it-fulltext-utf8.ldf + RELOC/tex/latex/datetime2-it-fulltext/datetime2-it-fulltext.sty +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-it-fulltext +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.6 name datetime2-italian category Package revision 37146 -shortdesc Italian language module for the datetime2 package. +shortdesc Italian language module for the datetime2 package relocated 1 longdesc This module provides the "italian" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. -runfiles size=5 - RELOC/tex/latex/datetime2-italian/datetime2-italian-ascii.ldf - RELOC/tex/latex/datetime2-italian/datetime2-italian-utf8.ldf - RELOC/tex/latex/datetime2-italian/datetime2-italian.ldf +containersize 2904 +containerchecksum d099d05904e416d44e9a9ffb337b23e2c1f908dfddbb41cfd7629c4abaa7769c76f50ef687751224ab4ae94a0df4d1962adbad602ed3a7473566e16c5c4bea48 +doccontainersize 3312 +doccontainerchecksum 963759f5e07e01315b827d4c67364d9367d114a09d518154524ba4496aee69f1ef08acbdeb67522d3b350a6f8abf8bf571171d4c380bc3f093d59ea3207beea1 docfiles size=21 - RELOC/doc/latex/datetime2-italian/README + RELOC/doc/latex/datetime2-italian/README details="Readme" RELOC/doc/latex/datetime2-italian/sample/datetime1.tex RELOC/doc/latex/datetime2-italian/sample/datetime2-sample-babel.tex RELOC/doc/latex/datetime2-italian/sample/datetime2-sample-calc.tex @@ -44745,654 +76863,638 @@ docfiles size=21 RELOC/doc/latex/datetime2-italian/sample/esempio8.tex RELOC/doc/latex/datetime2-italian/sample/esempio9.tex RELOC/doc/latex/datetime2-italian/sample/tomorrow.tex +srccontainersize 4860 +srccontainerchecksum 4036338ded2298c97e49173758317706452c254bbf07dcbe83080e28b6d59415d0ff14657cd11b9a5981ca893a4033db338518e251d59d0c4eaddaa9498189f0 srcfiles size=6 RELOC/source/latex/datetime2-italian/datetime2-italian.dtx RELOC/source/latex/datetime2-italian/datetime2-italian.ins +runfiles size=5 + RELOC/tex/latex/datetime2-italian/datetime2-italian-ascii.ldf + RELOC/tex/latex/datetime2-italian/datetime2-italian-utf8.ldf + RELOC/tex/latex/datetime2-italian/datetime2-italian.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-italian -catalogue-date 2015-05-01 14:49:29 +0200 -catalogue-license lppl1.3 -catalogue-version 1.3 - -name datetime2-it-fulltext -category Package -revision 38093 -shortdesc Italian full text styles for the datetime2 package -relocated 1 -longdesc Italian date and time styles that use words for the numbers and -longdesc ordinals. This package provides the following date and time -longdesc styles: "it-fulltext" and "it-fulltext-twenty-four". The first -longdesc style uses a format "am pm", the second a format "24 hours". -longdesc The necessary packages are datetime2, itnumpar, ifxetex, and -longdesc ifluatex. This package is the translation and adaptation of -longdesc datetime2-en-fulltext. -runfiles size=10 - RELOC/tex/latex/datetime2-it-fulltext/datetime2-it-fulltext-ascii.ldf - RELOC/tex/latex/datetime2-it-fulltext/datetime2-it-fulltext-utf8.ldf - RELOC/tex/latex/datetime2-it-fulltext/datetime2-it-fulltext.sty -docfiles size=44 - RELOC/doc/latex/datetime2-it-fulltext/README - RELOC/doc/latex/datetime2-it-fulltext/datetime2-it-fulltext.pdf - RELOC/doc/latex/datetime2-it-fulltext/samples/BatTest.tex - RELOC/doc/latex/datetime2-it-fulltext/samples/BatTestDate.tex - RELOC/doc/latex/datetime2-it-fulltext/samples/it-fulltext-en-fulltext.tex - RELOC/doc/latex/datetime2-it-fulltext/samples/sample-it-fulltext-second.tex - RELOC/doc/latex/datetime2-it-fulltext/samples/sample-it-fulltext-semplice.tex - RELOC/doc/latex/datetime2-it-fulltext/samples/sample-it-fulltext-twenty-four-second.tex - RELOC/doc/latex/datetime2-it-fulltext/samples/sample-it-fulltext-twenty-four.tex - RELOC/doc/latex/datetime2-it-fulltext/samples/sample-it-fulltext.tex - RELOC/doc/latex/datetime2-it-fulltext/samples/sample-it-timedatestyle1.tex - RELOC/doc/latex/datetime2-it-fulltext/samples/sample-it-timedatestyle2.tex -srcfiles size=9 - RELOC/source/latex/datetime2-it-fulltext/datetime2-it-fulltext.dtx - RELOC/source/latex/datetime2-it-fulltext/datetime2-it-fulltext.ins -catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-it-fulltext -catalogue-date 2015-08-10 11:32:47 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 catalogue-topics date-time multilingual -catalogue-version 1.6 +catalogue-version 1.3 name datetime2-latin category Package -revision 36692 -shortdesc Latin language module for the datetime2 package. +revision 47748 +shortdesc Latin language module for the datetime2 package relocated 1 longdesc This module provides the "latin" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=2 - RELOC/tex/latex/datetime2-latin/datetime2-latin.ldf +containersize 2344 +containerchecksum 25f4e92c72abe14db9340aae354e0f598aadf88ec109b6dbe6b48e12f55926f63fc80ca420ccbbbf8fcc8dac066520d69b653981ccdd41b2e8588d85d4f11a99 +doccontainersize 272468 +doccontainerchecksum f683c8764e99edcd9d9a449eecd3f1e4a10a2803a20bff7be22568a69ee1b06c5d054d6664a051b0eef8cdac5bc2387175cb582d005e1af31a5be8bbac4a0de4 docfiles size=68 - RELOC/doc/latex/datetime2-latin/README - RELOC/doc/latex/datetime2-latin/datetime2-latin.pdf + RELOC/doc/latex/datetime2-latin/README details="Readme" + RELOC/doc/latex/datetime2-latin/datetime2-latin.pdf details="Package documentation" +srccontainersize 4268 +srccontainerchecksum 9270951371b2595f59a5dd8f8214603d9a72856caeb7902488fd7e7068b16c09b7ebd8f94cf10b99d31fa95777b475d403d49429944bc79f20faf37ae9192f8a srcfiles size=5 RELOC/source/latex/datetime2-latin/datetime2-latin.dtx RELOC/source/latex/datetime2-latin/datetime2-latin.ins +runfiles size=2 + RELOC/tex/latex/datetime2-latin/datetime2-latin.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-latin -catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics date-time multilingual catalogue-version 1.0 name datetime2-lsorbian category Package -revision 36692 -shortdesc Lower Sorbian language module for the datetime2 package. +revision 47749 +shortdesc Lower Sorbian language module for the datetime2 package relocated 1 longdesc This module provides the "lsorbian" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=4 - RELOC/tex/latex/datetime2-lsorbian/datetime2-lsorbian-ascii.ldf - RELOC/tex/latex/datetime2-lsorbian/datetime2-lsorbian-utf8.ldf - RELOC/tex/latex/datetime2-lsorbian/datetime2-lsorbian.ldf +containersize 2772 +containerchecksum 04fcebad65bee525697ba96cba9d66d6acfe9bc602b6cfb207103a2bfba0d3cbbef948d614930c1a2bc785a6ae2ad6c4e0b06db58d562681225d67b7a5f2f8a6 +doccontainersize 85956 +doccontainerchecksum 7bee606e0c48dcfa676835e3a313ec8c3b79f566fba6d6b65cb34c4f939e7a7df34d73e24f0f03d569e0f6a01cb244a90b9023e2846c597eb589e984ad9d1f18 docfiles size=23 - RELOC/doc/latex/datetime2-lsorbian/README - RELOC/doc/latex/datetime2-lsorbian/datetime2-lsorbian.pdf + RELOC/doc/latex/datetime2-lsorbian/README details="Readme" + RELOC/doc/latex/datetime2-lsorbian/datetime2-lsorbian.pdf details="Package documentation" +srccontainersize 5060 +srccontainerchecksum 9dee46b9c2290e00c1a9f9d7e63b3872ec206f7afe9ff0ca592824319b035da1295f566a8934d7d4e87f47b8061311682d2a6ace9a9ea15180433279759d847a srcfiles size=6 RELOC/source/latex/datetime2-lsorbian/datetime2-lsorbian.dtx RELOC/source/latex/datetime2-lsorbian/datetime2-lsorbian.ins +runfiles size=4 + RELOC/tex/latex/datetime2-lsorbian/datetime2-lsorbian-ascii.ldf + RELOC/tex/latex/datetime2-lsorbian/datetime2-lsorbian-utf8.ldf + RELOC/tex/latex/datetime2-lsorbian/datetime2-lsorbian.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-lsorbian -catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-date 2018-05-18 15:18:08 +0200 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time multilingual +catalogue-version 1.1 name datetime2-magyar category Package -revision 36692 -shortdesc magyar language module for the datetime2 package. +revision 48266 +shortdesc Magyar language module for the datetime2 package relocated 1 longdesc This module provides the "magyar" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=4 - RELOC/tex/latex/datetime2-magyar/datetime2-magyar-ascii.ldf - RELOC/tex/latex/datetime2-magyar/datetime2-magyar-utf8.ldf - RELOC/tex/latex/datetime2-magyar/datetime2-magyar.ldf +containersize 2536 +containerchecksum 4d3b27b0409d26431cc06a1ac83485b6d4d63b9bba30a862ac043cc27c25a77805d5c3aeff3a329e1348a32ca4ceaea917f2f840ce1696a58f00325775ae5009 +doccontainersize 81372 +doccontainerchecksum 1eff11bc2c7cdae101331521f08d3a9eb878e8d1695b35724475eb5b99e0a537bf16a00bd3c13760cb36306e84b72f15e5ec294ed958ab5d67e75ad8571ac9a2 docfiles size=21 - RELOC/doc/latex/datetime2-magyar/README - RELOC/doc/latex/datetime2-magyar/datetime2-magyar.pdf + RELOC/doc/latex/datetime2-magyar/README details="Readme" + RELOC/doc/latex/datetime2-magyar/datetime2-magyar.pdf details="Package documentation" +srccontainersize 4776 +srccontainerchecksum 674e795a5b3d49665bba89c7f01abdf4c366a72f9968ea008455179319f66061ef2f73e21c6ae736e6dd960aba1184b7e374eecff8429d1b533078202f294ad7 srcfiles size=5 RELOC/source/latex/datetime2-magyar/datetime2-magyar.dtx RELOC/source/latex/datetime2-magyar/datetime2-magyar.ins +runfiles size=4 + RELOC/tex/latex/datetime2-magyar/datetime2-magyar-ascii.ldf + RELOC/tex/latex/datetime2-magyar/datetime2-magyar-utf8.ldf + RELOC/tex/latex/datetime2-magyar/datetime2-magyar.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-magyar -catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-date 2018-07-24 14:47:49 +0200 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time multilingual +catalogue-version 1.1 name datetime2-norsk category Package -revision 36692 -shortdesc Norsk language module for the datetime2 package. +revision 48267 +shortdesc Norsk language module for the datetime2 package relocated 1 longdesc This module provides the "norsk" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=4 - RELOC/tex/latex/datetime2-norsk/datetime2-norsk-ascii.ldf - RELOC/tex/latex/datetime2-norsk/datetime2-norsk-utf8.ldf - RELOC/tex/latex/datetime2-norsk/datetime2-norsk.ldf +containersize 2540 +containerchecksum 9ebcd994305b3b3aad61383b9ece13425b4c34432dae0aac2ce38c0219b2f19871f89cb30bd774a7db9be45cc8a21f7856f1f568c32941502b18f6089b787066 +doccontainersize 84152 +doccontainerchecksum 3d834d8572cb8f1237b4b9e69bcbcf1a5eb0a1e5c001e8610a00ec377204c570218f6d97765c3efbad9130cb2ad9ced3cb80b32bcdfccfd62d7069ece93ab1da docfiles size=22 - RELOC/doc/latex/datetime2-norsk/README - RELOC/doc/latex/datetime2-norsk/datetime2-norsk.pdf + RELOC/doc/latex/datetime2-norsk/README details="Readme" + RELOC/doc/latex/datetime2-norsk/datetime2-norsk.pdf details="Package documentation" +srccontainersize 4792 +srccontainerchecksum 7dbb4161731dceac735ce39e042713a07d3d63dabac0a4dec870a022ba79c2637d7fbde4715936908d39f3475746f243dbe2e39d88040f35822503f59c0f87d0 srcfiles size=6 RELOC/source/latex/datetime2-norsk/datetime2-norsk.dtx RELOC/source/latex/datetime2-norsk/datetime2-norsk.ins +runfiles size=4 + RELOC/tex/latex/datetime2-norsk/datetime2-norsk-ascii.ldf + RELOC/tex/latex/datetime2-norsk/datetime2-norsk-utf8.ldf + RELOC/tex/latex/datetime2-norsk/datetime2-norsk.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-norsk -catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-date 2018-07-24 14:57:16 +0200 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time multilingual +catalogue-version 1.1 name datetime2-polish category Package -revision 36692 -shortdesc polish language module for the datetime2 package. +revision 48456 +shortdesc Polish language module for the datetime2 package relocated 1 longdesc This module provides the "polish" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=4 - RELOC/tex/latex/datetime2-polish/datetime2-polish-ascii.ldf - RELOC/tex/latex/datetime2-polish/datetime2-polish-utf8.ldf - RELOC/tex/latex/datetime2-polish/datetime2-polish.ldf +containersize 2600 +containerchecksum 3b63541325de4082a828af5131a639c11f2562b8e2951f50199f7281e7c59e2a2deaf8cba124cc8679a4de5da3e95d988bb3533eed6cdbc9471a95476ec59bc4 +doccontainersize 83772 +doccontainerchecksum 6bcccc320063567e2527ca6acce6180c9d19a3ec8a1e922e640e82d3ad2a244cd455741e059e385fa26ee6479ddd5086b9dcf73a705988adec96a311cfc5e40b docfiles size=22 - RELOC/doc/latex/datetime2-polish/README - RELOC/doc/latex/datetime2-polish/datetime2-polish.pdf + RELOC/doc/latex/datetime2-polish/README details="Readme" + RELOC/doc/latex/datetime2-polish/datetime2-polish.pdf details="Package documentation" +srccontainersize 4872 +srccontainerchecksum 0adc45a662620826c90aac5f0372d83462eb571b7dc0751465ea246602ffe4f7b43f6a5b3153cd04681ee8baa23703784e15b79e5ae2c15cc9e6db5808265b8e srcfiles size=6 RELOC/source/latex/datetime2-polish/datetime2-polish.dtx RELOC/source/latex/datetime2-polish/datetime2-polish.ins +runfiles size=4 + RELOC/tex/latex/datetime2-polish/datetime2-polish-ascii.ldf + RELOC/tex/latex/datetime2-polish/datetime2-polish-utf8.ldf + RELOC/tex/latex/datetime2-polish/datetime2-polish.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-polish -catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-date 2018-08-21 21:59:42 +0200 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time multilingual +catalogue-version 1.1 name datetime2-portuges category Package -revision 36670 -shortdesc Portuguese language module for the datetime2 package. +revision 48457 +shortdesc Portuguese language module for the datetime2 package relocated 1 longdesc This module provides the "portuges" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. +containersize 2516 +containerchecksum 976ad1440f05bd166659b5b950691b4d0ce988a3d71bb91525e4448b1520a6ead37bbb3ef9a899bac08c7dfe8cc7b9b7e15174c8ef143891133bc00e5c39e9fe +doccontainersize 286568 +doccontainerchecksum 3cd176813f3b0bb16341ddeee4d0a848b4eee9bacfb90734d97fd9ddc3e88285057dd0bf4f0f3ebb5641ebee48b15161feb3e4e75032e32368a51bfb9ca4a8f0 +docfiles size=71 + RELOC/doc/latex/datetime2-portuges/README details="Readme" + RELOC/doc/latex/datetime2-portuges/datetime2-portuges.pdf details="Package documentation" +srccontainersize 4772 +srccontainerchecksum 71b769e4a63cf02cf6c2794d3fb876a33d9c8b150059a2bc0960b8cd1b355e5ebde3d02b48ea47653cf781721fcec118d78301021e8b95543d32215e690a3c12 +srcfiles size=6 + RELOC/source/latex/datetime2-portuges/datetime2-portuges.dtx + RELOC/source/latex/datetime2-portuges/datetime2-portuges.ins runfiles size=4 RELOC/tex/latex/datetime2-portuges/datetime2-portuges-ascii.ldf RELOC/tex/latex/datetime2-portuges/datetime2-portuges-utf8.ldf RELOC/tex/latex/datetime2-portuges/datetime2-portuges.ldf -docfiles size=71 - RELOC/doc/latex/datetime2-portuges/README - RELOC/doc/latex/datetime2-portuges/datetime2-portuges.pdf -srcfiles size=5 - RELOC/source/latex/datetime2-portuges/datetime2-portuges.dtx - RELOC/source/latex/datetime2-portuges/datetime2-portuges.ins catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-portuges -catalogue-date 2015-03-31 11:36:22 +0200 +catalogue-date 2018-08-21 21:51:52 +0200 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time multilingual +catalogue-version 1.1 name datetime2-romanian category Package -revision 36692 -shortdesc Romanian language module for the datetime2 package. +revision 43743 +shortdesc Romanian language module for the datetime2 package relocated 1 longdesc This module provides the "romanian" style that can be set using -longdesc \DTMsetstyle provided by datetime2.sty. This package is -longdesc currently unmaintained. Please see the README for the procedure -longdesc to follow if you want to take over the maintenance. -runfiles size=4 +longdesc \DTMsetstyle provided by datetime2.sty. +containersize 2860 +containerchecksum 9167976dca51779669fbd91cc54ceced2f0dd6a97610faf9e55bd51a9e5c0ca3c8096c143a71180f0d572d1f1fdca5c72feccdebb58c7caed6e3e33a21c4b4a1 +doccontainersize 114828 +doccontainerchecksum 62514ec016e7913b74e8c19624aceda5b258d1e1972da97b04bed2565f1c4ac0c694e695e6eefa528963f0375c3866ea4e475747e6141f0612dad2db8e7a1b7a +docfiles size=37 + RELOC/doc/latex/datetime2-romanian/README details="Readme" + RELOC/doc/latex/datetime2-romanian/datetime2-romanian-test-luatex.pdf + RELOC/doc/latex/datetime2-romanian/datetime2-romanian-test-luatex.tex + RELOC/doc/latex/datetime2-romanian/datetime2-romanian-test-pdftex.pdf + RELOC/doc/latex/datetime2-romanian/datetime2-romanian-test-pdftex.tex + RELOC/doc/latex/datetime2-romanian/datetime2-romanian-test-xetex.pdf + RELOC/doc/latex/datetime2-romanian/datetime2-romanian-test-xetex.tex + RELOC/doc/latex/datetime2-romanian/datetime2-romanian-test.tex + RELOC/doc/latex/datetime2-romanian/datetime2-romanian.pdf details="Package documentation" +srccontainersize 4852 +srccontainerchecksum 617a1cad46eeb6c2c0cf434fec3d436e471d4cc25224c99cb3272bfd14eaecdf3f63862ae61a83126c222f9215b244fdccf101896469e64480991187878eb71c +srcfiles size=7 + RELOC/source/latex/datetime2-romanian/datetime2-romanian.dtx + RELOC/source/latex/datetime2-romanian/datetime2-romanian.ins +runfiles size=5 RELOC/tex/latex/datetime2-romanian/datetime2-romanian-ascii.ldf RELOC/tex/latex/datetime2-romanian/datetime2-romanian-utf8.ldf RELOC/tex/latex/datetime2-romanian/datetime2-romanian.ldf -docfiles size=22 - RELOC/doc/latex/datetime2-romanian/README - RELOC/doc/latex/datetime2-romanian/datetime2-romanian.pdf -srcfiles size=6 - RELOC/source/latex/datetime2-romanian/datetime2-romanian.dtx - RELOC/source/latex/datetime2-romanian/datetime2-romanian.ins catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-romanian -catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-date 2017-04-08 18:57:01 +0200 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time multilingual +catalogue-version 1.01 name datetime2-russian category Package -revision 36692 -shortdesc russian language module for the datetime2 package. +revision 49345 +shortdesc Russian language module for the datetime2 package relocated 1 longdesc This module provides the "russian" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. +containersize 2704 +containerchecksum 2821680ce189aacf8b0303d5698d9359f240ab4e470c0e2b052235e6aaeeffc882ea4b9c9c4f91d52b1402ef7486c7115bab8058e2223b7ebd3186fbd4c4c34f +doccontainersize 76424 +doccontainerchecksum 97c1b02377328ff75775194baeb2c3e15f2dafee303dbb85c47a0baf7f6edb4323f754578a9caf9db609477204c1310dade3b87d5a768a16fa940be2fe320081 +docfiles size=21 + RELOC/doc/latex/datetime2-russian/README details="Readme" + RELOC/doc/latex/datetime2-russian/datetime2-russian.pdf details="Package documentation" +srccontainersize 5056 +srccontainerchecksum f9055eefe76d9844e8764ec766c0e1da7d3c61db65c754115cdc47419ab68d84685688e59939f219cc5ab87f79570cd4c28011ca597ee4f89fcdc38c42e82a75 +srcfiles size=6 + RELOC/source/latex/datetime2-russian/datetime2-russian.dtx + RELOC/source/latex/datetime2-russian/datetime2-russian.ins runfiles size=4 RELOC/tex/latex/datetime2-russian/datetime2-russian-ascii.ldf RELOC/tex/latex/datetime2-russian/datetime2-russian-utf8.ldf RELOC/tex/latex/datetime2-russian/datetime2-russian.ldf -docfiles size=22 - RELOC/doc/latex/datetime2-russian/README - RELOC/doc/latex/datetime2-russian/datetime2-russian.pdf -srcfiles size=6 - RELOC/source/latex/datetime2-russian/datetime2-russian.dtx - RELOC/source/latex/datetime2-russian/datetime2-russian.ins catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-russian -catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-date 2018-12-07 18:03:48 +0100 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time multilingual +catalogue-version 1.1 name datetime2-samin category Package -revision 36692 -shortdesc Northern Sami language module for the datetime2 package. +revision 49346 +shortdesc Northern Sami language module for the datetime2 package relocated 1 longdesc This module provides the "samin" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. +containersize 2588 +containerchecksum fc4e6401ce02b1aa7be5fd78e5d5e74aff6ac35cbb6864cbce6d93fe0b2716510f6ccdd290c82286b8e51f37abe8460c0f8340ce0f9135838ecace7502f72784 +doccontainersize 73200 +doccontainerchecksum e5879faedd4d4fa5ac40575e0ccd1d0db94a80d78c3d01f8d36bb37875e2b9025537c876087b85626ccaed5c90f505a98fd3e5adee64ac1bc72f48ff66114438 +docfiles size=20 + RELOC/doc/latex/datetime2-samin/README details="Readme" + RELOC/doc/latex/datetime2-samin/datetime2-samin.pdf details="Package documentation" +srccontainersize 4860 +srccontainerchecksum 4aa4d272188a8a2b6e40792b97df9b205857870f3787153502c12fbaaf81ed61d9d823a7966e147fbc1d94f761c40f179d4025166a48f358821134559a7bee3b +srcfiles size=5 + RELOC/source/latex/datetime2-samin/datetime2-samin.dtx + RELOC/source/latex/datetime2-samin/datetime2-samin.ins runfiles size=4 RELOC/tex/latex/datetime2-samin/datetime2-samin-ascii.ldf RELOC/tex/latex/datetime2-samin/datetime2-samin-utf8.ldf RELOC/tex/latex/datetime2-samin/datetime2-samin.ldf -docfiles size=22 - RELOC/doc/latex/datetime2-samin/README - RELOC/doc/latex/datetime2-samin/datetime2-samin.pdf -srcfiles size=5 - RELOC/source/latex/datetime2-samin/datetime2-samin.dtx - RELOC/source/latex/datetime2-samin/datetime2-samin.ins catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-samin -catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-date 2018-12-07 19:11:58 +0100 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time multilingual +catalogue-version 1.1 name datetime2-scottish category Package revision 36625 -shortdesc Scottish Gaelic Language Module for the datetime2 Package. +shortdesc Scottish Gaelic Language Module for the datetime2 Package relocated 1 longdesc This module provides the "scottish" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=4 - RELOC/tex/latex/datetime2-scottish/datetime2-scottish-ascii.ldf - RELOC/tex/latex/datetime2-scottish/datetime2-scottish-utf8.ldf - RELOC/tex/latex/datetime2-scottish/datetime2-scottish.ldf +containersize 2556 +containerchecksum 0256669e69cdaeea6c12f10840dab685e81333e614cb5a729a28956eec73015b85e628c517896a7cc51d4b70f0db460f8031d3b529c28f4d7226f2d6e66d4e93 +doccontainersize 287144 +doccontainerchecksum a43988391ba626b1ae81a16f61475fe90316345d179f9fec860e57cf314bb230b3e4cfe4bf3ded18e5759a23409699e73a3e02a5b5cdd13dcb6ef01a4e4b8a9c docfiles size=71 - RELOC/doc/latex/datetime2-scottish/README - RELOC/doc/latex/datetime2-scottish/datetime2-scottish.pdf + RELOC/doc/latex/datetime2-scottish/README details="Readme" + RELOC/doc/latex/datetime2-scottish/datetime2-scottish.pdf details="Package documentation" +srccontainersize 4844 +srccontainerchecksum b73f7ab3c666fc60eda44ab9950bf0cea2e3f2b1b2992ac23a0e7d83229a85f258802868fd72fe10a96fe5093ba9a960441cf325f418f404c053d9175f49b2f3 srcfiles size=6 RELOC/source/latex/datetime2-scottish/datetime2-scottish.dtx RELOC/source/latex/datetime2-scottish/datetime2-scottish.ins +runfiles size=4 + RELOC/tex/latex/datetime2-scottish/datetime2-scottish-ascii.ldf + RELOC/tex/latex/datetime2-scottish/datetime2-scottish-utf8.ldf + RELOC/tex/latex/datetime2-scottish/datetime2-scottish.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-scottish -catalogue-date 2015-03-27 14:27:46 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics date-time multilingual catalogue-version 1.0 name datetime2-serbian category Package revision 36699 -shortdesc serbian language module for the datetime2 package. +shortdesc Serbian language module for the datetime2 package relocated 1 longdesc This module provides the "serbian" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=5 - RELOC/tex/latex/datetime2-serbian/datetime2-serbian-ascii.ldf - RELOC/tex/latex/datetime2-serbian/datetime2-serbian-utf8.ldf - RELOC/tex/latex/datetime2-serbian/datetime2-serbian.ldf +containersize 2876 +containerchecksum 43455c514a151f1da9492f3df0228d0158ca710c330863f0662376796ea4a17b9cc5465f1c816af62e20804c5d340a6aef9a0db3118d9c8216c440b6dd88c062 +doccontainersize 86156 +doccontainerchecksum 3eb6577bd5b257c650631c004db8850265d31306b2dc39912bdc6a128893323e7fd4591d732a74f5cf0a16ed6856ebee84401c29c9c29627b346a247006eca63 docfiles size=23 - RELOC/doc/latex/datetime2-serbian/README - RELOC/doc/latex/datetime2-serbian/datetime2-serbian.pdf + RELOC/doc/latex/datetime2-serbian/README details="Readme" + RELOC/doc/latex/datetime2-serbian/datetime2-serbian.pdf details="Package documentation" +srccontainersize 5176 +srccontainerchecksum 221fa98c249a61782eb49cbae0787149b2fce9ffb6b828d1eaaa5d227baa4ff591dc5cc971271c83bcc987d68609ea8816d2f5385142c6cd29b60b88381923b2 srcfiles size=6 RELOC/source/latex/datetime2-serbian/datetime2-serbian.dtx RELOC/source/latex/datetime2-serbian/datetime2-serbian.ins +runfiles size=5 + RELOC/tex/latex/datetime2-serbian/datetime2-serbian-ascii.ldf + RELOC/tex/latex/datetime2-serbian/datetime2-serbian-utf8.ldf + RELOC/tex/latex/datetime2-serbian/datetime2-serbian.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-serbian -catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-date 2018-01-07 12:04:09 +0100 catalogue-license lppl1.3 +catalogue-topics date-time multilingual catalogue-version 1.0 name datetime2-slovak category Package revision 36700 -shortdesc slovak language module for the datetime2 package. +shortdesc Slovak language module for the datetime2 package relocated 1 longdesc This module provides the "slovak" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=4 - RELOC/tex/latex/datetime2-slovak/datetime2-slovak-ascii.ldf - RELOC/tex/latex/datetime2-slovak/datetime2-slovak-utf8.ldf - RELOC/tex/latex/datetime2-slovak/datetime2-slovak.ldf +containersize 2544 +containerchecksum 7a0faf7342f616a4ef681ccbf961a5647802ddaf2edbed622e7a9eb8a648a579b48efadd98c5e4fc24501c1eb45aa262ecc6f16b8d62fd11326d90d5d39121d0 +doccontainersize 81520 +doccontainerchecksum ae18dc94f2bcbcc35e24cd01567c837e64ee84067a70ed7a7367be1d4e47faeba923233586b3ea8e818a6f15d4f63fabec657285ec9a543394138519c71ee1d5 docfiles size=22 - RELOC/doc/latex/datetime2-slovak/README - RELOC/doc/latex/datetime2-slovak/datetime2-slovak.pdf + RELOC/doc/latex/datetime2-slovak/README details="Readme" + RELOC/doc/latex/datetime2-slovak/datetime2-slovak.pdf details="Package documentation" +srccontainersize 4704 +srccontainerchecksum a9ff5e7ca92f80d6552a6dd8393a18cdcfdc10d92ce751ac04b7c0fce36038357eb187419417be385b35fe9b588a89795de9a440d475f5fe1ad4776beaea3237 srcfiles size=5 RELOC/source/latex/datetime2-slovak/datetime2-slovak.dtx RELOC/source/latex/datetime2-slovak/datetime2-slovak.ins +runfiles size=4 + RELOC/tex/latex/datetime2-slovak/datetime2-slovak-ascii.ldf + RELOC/tex/latex/datetime2-slovak/datetime2-slovak-utf8.ldf + RELOC/tex/latex/datetime2-slovak/datetime2-slovak.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-slovak -catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-date 2018-01-07 11:26:57 +0100 catalogue-license lppl1.3 +catalogue-topics date-time multilingual catalogue-version 1.0 name datetime2-slovene category Package revision 36700 -shortdesc slovene language module for the datetime2 package. +shortdesc Slovene language module for the datetime2 package relocated 1 longdesc This module provides the "slovene" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=4 - RELOC/tex/latex/datetime2-slovene/datetime2-slovene-ascii.ldf - RELOC/tex/latex/datetime2-slovene/datetime2-slovene-utf8.ldf - RELOC/tex/latex/datetime2-slovene/datetime2-slovene.ldf +containersize 2476 +containerchecksum aa1adfc3b81a198e69ca2fbc29e93a2e3d36710cf29f7d77d0f31eae65e22d9dcc897e585e04bbb7a5324890a8e2145454c4f09648feec67a1c5ab5ea0df77bc +doccontainersize 80684 +doccontainerchecksum c3307d393e21e1eab8d9f642dff0735160b3aec83f48cefe1288a9e116c008fc79ba178ad5ffa5af2801c22fe1f6c17d262a0fe6d14fb12550808536eec90801 docfiles size=21 - RELOC/doc/latex/datetime2-slovene/README - RELOC/doc/latex/datetime2-slovene/datetime2-slovene.pdf + RELOC/doc/latex/datetime2-slovene/README details="Readme" + RELOC/doc/latex/datetime2-slovene/datetime2-slovene.pdf details="Package documentation" +srccontainersize 4700 +srccontainerchecksum 6191a34bef01d8726d78b8f26c7c29509577d06318ddcba614d3c871db9776693bd4c0ede30e30e1cb638dfbe721059374f1e500af94103dad4f378f57caa3f1 srcfiles size=5 RELOC/source/latex/datetime2-slovene/datetime2-slovene.dtx RELOC/source/latex/datetime2-slovene/datetime2-slovene.ins +runfiles size=4 + RELOC/tex/latex/datetime2-slovene/datetime2-slovene-ascii.ldf + RELOC/tex/latex/datetime2-slovene/datetime2-slovene-utf8.ldf + RELOC/tex/latex/datetime2-slovene/datetime2-slovene.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-slovene -catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-date 2018-01-07 11:25:01 +0100 catalogue-license lppl1.3 +catalogue-topics date-time multilingual catalogue-version 1.0 name datetime2-spanish category Package -revision 36661 -shortdesc Spanish language module for the datetime2 package. +revision 45785 +shortdesc Spanish language module for the datetime2 package relocated 1 longdesc This module provides the "spanish" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=4 - RELOC/tex/latex/datetime2-spanish/datetime2-spanish-ascii.ldf - RELOC/tex/latex/datetime2-spanish/datetime2-spanish-utf8.ldf - RELOC/tex/latex/datetime2-spanish/datetime2-spanish.ldf +containersize 2568 +containerchecksum 07c321a300d779e39de46628b8e1b95d383e2a1a0af882cc607929d894f11b2e8329cb256014193d428182e78f2cbd5e3e277bc7821d3ad7a2740fedacf14e28 +doccontainersize 287836 +doccontainerchecksum 629b4a2771fe68715978afcb202d984e1032d2e0f1af95d4971a980e14baf4b0705187f4a7ef9748c024eb27780f7720d8d5010ebfb23026ad8605a42730293f docfiles size=72 - RELOC/doc/latex/datetime2-spanish/README - RELOC/doc/latex/datetime2-spanish/datetime2-spanish.pdf + RELOC/doc/latex/datetime2-spanish/README details="Readme" + RELOC/doc/latex/datetime2-spanish/datetime2-spanish.pdf details="Package documentation" +srccontainersize 4824 +srccontainerchecksum 78565125794ec1f5cf762cc27fd24c96eef5a1792941d4ce88c85bbecbec777da239db94118260feed6502e55f81b45f105a170e4b6207ec5e4201f043fa67e4 srcfiles size=6 RELOC/source/latex/datetime2-spanish/datetime2-spanish.dtx RELOC/source/latex/datetime2-spanish/datetime2-spanish.ins +runfiles size=4 + RELOC/tex/latex/datetime2-spanish/datetime2-spanish-ascii.ldf + RELOC/tex/latex/datetime2-spanish/datetime2-spanish-utf8.ldf + RELOC/tex/latex/datetime2-spanish/datetime2-spanish.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-spanish -catalogue-date 2015-03-31 11:36:22 +0200 +catalogue-date 2017-11-13 15:03:30 +0100 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time multilingual +catalogue-version 1.1 name datetime2-swedish category Package revision 36700 -shortdesc swedish language module for the datetime2 package. +shortdesc Swedish language module for the datetime2 package relocated 1 longdesc This module provides the "swedish" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=4 - RELOC/tex/latex/datetime2-swedish/datetime2-swedish-ascii.ldf - RELOC/tex/latex/datetime2-swedish/datetime2-swedish-utf8.ldf - RELOC/tex/latex/datetime2-swedish/datetime2-swedish.ldf +containersize 2564 +containerchecksum b904b21b593e529ffb714f3762ca5b8de37e87fe25df593873defa43de3995d1c72b0500217182728eaee6030cacaca969376a5623bc0baf48fe33aafafc0a66 +doccontainersize 83536 +doccontainerchecksum 7d6f2468aaa20da4e086201c0ffa6e6ae031e2a23db7fcccbb9ee8776c59b56a51cda9a03dfcce9fbf81b618f2e7543272f4ae88871f2b5380d1b98ff89e451f docfiles size=22 - RELOC/doc/latex/datetime2-swedish/README - RELOC/doc/latex/datetime2-swedish/datetime2-swedish.pdf + RELOC/doc/latex/datetime2-swedish/README details="Readme" + RELOC/doc/latex/datetime2-swedish/datetime2-swedish.pdf details="Package documentation" +srccontainersize 4812 +srccontainerchecksum bcdb2b0eb40b7acad86b37e215cf4bd3c5376cad8fbd10d7f1af32a5983243aa28d950116d40abf4ae10bd28e32c10022297b77ca40daeab15b6f88ed33758d0 srcfiles size=6 RELOC/source/latex/datetime2-swedish/datetime2-swedish.dtx RELOC/source/latex/datetime2-swedish/datetime2-swedish.ins +runfiles size=4 + RELOC/tex/latex/datetime2-swedish/datetime2-swedish-ascii.ldf + RELOC/tex/latex/datetime2-swedish/datetime2-swedish-utf8.ldf + RELOC/tex/latex/datetime2-swedish/datetime2-swedish.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-swedish -catalogue-date 2015-04-03 05:49:18 +0200 -catalogue-license lppl1.3 -catalogue-version 1.0 - -name datetime2 -category Package -revision 36615 -shortdesc Formats for dates, times and time zones. -relocated 1 -longdesc This package provides commands for formatting dates, times and -longdesc time zones and redefines \today to use the same formatting -longdesc style. In addition to \today, you can also use \DTMcurrenttime -longdesc (current time) or \DTMnow (current date and time). Dates and -longdesc times can be saved for later use. The accompanying datetime2- -longdesc calc package can be used to convert date-times to UTC+00:00. -longdesc Language and regional support is provided by independently -longdesc maintained and installed modules. The datetime2-calc package -longdesc uses the pgfcalendar package (part of the PGF/TikZ bundle). -longdesc This package replaces datetime.sty which is now obsolete. -runfiles size=12 - RELOC/tex/latex/datetime2/datetime2-calc.sty - RELOC/tex/latex/datetime2/datetime2.sty -docfiles size=177 - RELOC/doc/latex/datetime2/CHANGES - RELOC/doc/latex/datetime2/README - RELOC/doc/latex/datetime2/datetime2.pdf - RELOC/doc/latex/datetime2/samples/datetime2-sample-babel.pdf - RELOC/doc/latex/datetime2/samples/datetime2-sample-babel.tex - RELOC/doc/latex/datetime2/samples/datetime2-sample-calc.pdf - RELOC/doc/latex/datetime2/samples/datetime2-sample-calc.tex - RELOC/doc/latex/datetime2/samples/datetime2-sample-filedate.pdf - RELOC/doc/latex/datetime2/samples/datetime2-sample-filedate.tex - RELOC/doc/latex/datetime2/samples/datetime2-sample-hyperref.pdf - RELOC/doc/latex/datetime2/samples/datetime2-sample-hyperref.tex - RELOC/doc/latex/datetime2/samples/datetime2-sample-styles.pdf - RELOC/doc/latex/datetime2/samples/datetime2-sample-styles.tex -srcfiles size=39 - RELOC/source/latex/datetime2/datetime2.dtx - RELOC/source/latex/datetime2/datetime2.ins -catalogue-ctan /macros/latex/contrib/datetime2 -catalogue-date 2015-04-02 10:37:55 +0200 +catalogue-date 2018-01-07 11:39:41 +0100 catalogue-license lppl1.3 +catalogue-topics date-time multilingual catalogue-version 1.0 name datetime2-turkish category Package revision 36700 -shortdesc turkish language module for the datetime2 package. +shortdesc Turkish language module for the datetime2 package relocated 1 longdesc This module provides the "turkish" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=4 - RELOC/tex/latex/datetime2-turkish/datetime2-turkish-ascii.ldf - RELOC/tex/latex/datetime2-turkish/datetime2-turkish-utf8.ldf - RELOC/tex/latex/datetime2-turkish/datetime2-turkish.ldf +containersize 2488 +containerchecksum 8fd20d165e70f886f08cf221f8a0c62eac8755e6a803be56c52d64590817ac3c02cb9a95de7226c95bd9a62c8811ac945e9437ef7fae940c63cf5634de73dd59 +doccontainersize 80524 +doccontainerchecksum 24b07586b79542cd445ca79700ff6637c47ac26037740138b63925583a742cf0abb3816a8f4e526399840f8180f546eb12c4af505f60db79f561bfc0cd99b234 docfiles size=21 - RELOC/doc/latex/datetime2-turkish/README - RELOC/doc/latex/datetime2-turkish/datetime2-turkish.pdf + RELOC/doc/latex/datetime2-turkish/README details="Readme" + RELOC/doc/latex/datetime2-turkish/datetime2-turkish.pdf details="Package documentation" +srccontainersize 4624 +srccontainerchecksum 4ef151604cdd03e12386baafa5041369248137fb35736546b0412a1bb885d712697505a6c9b36d8faa80999dfbf1f0d08794b5ecf78b72d80a116370cdc5ef5f srcfiles size=5 RELOC/source/latex/datetime2-turkish/datetime2-turkish.dtx RELOC/source/latex/datetime2-turkish/datetime2-turkish.ins +runfiles size=4 + RELOC/tex/latex/datetime2-turkish/datetime2-turkish-ascii.ldf + RELOC/tex/latex/datetime2-turkish/datetime2-turkish-utf8.ldf + RELOC/tex/latex/datetime2-turkish/datetime2-turkish.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-turkish -catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-date 2018-01-07 12:06:25 +0100 catalogue-license lppl1.3 +catalogue-topics date-time multilingual catalogue-version 1.0 name datetime2-ukrainian category Package -revision 36700 -shortdesc Ukrainian language module for the datetime2 package. +revision 47552 +shortdesc Ukrainian language module for the datetime2 package relocated 1 longdesc This module provides the "ukrainian" style that can be set -longdesc using \DTMsetstyle provided by datetime2.sty. This package is -longdesc currently unmaintained. Please see the README for the procedure -longdesc to follow if you want to take over the maintenance. -runfiles size=5 +longdesc using \DTMsetstyle provided by datetime2.sty. +containersize 3340 +containerchecksum 5e3d412b8a5b73bb6bd2ee176305806d9b41c5a67196ddd28640e958a7019b3e73f961964b7510be4cd69833c4599db1fed05c6a6f66d4d0b3bc5ad73b5d6dbc +doccontainersize 62424 +doccontainerchecksum df40b4e156164a1c05a94c926d691b887a56ef8f42baee26e684383871edff05e5c6e87eba95994783cac2fcea1a5c72347c8eb86f0cca360faa8dd4829349b5 +docfiles size=17 + RELOC/doc/latex/datetime2-ukrainian/README.md details="Readme" + RELOC/doc/latex/datetime2-ukrainian/datetime2-ukrainian.pdf details="Package documentation" +srccontainersize 8016 +srccontainerchecksum 36c7db71bd063a87e8b9f2958217c71c7e6820b4e5536a5cc46db35ef69e83dd5e7b0ddd57038b66f8405d5a24afd21253ca34f7a8d174a26b4a67607048caf4 +srcfiles size=12 + RELOC/source/latex/datetime2-ukrainian/datetime2-ukrainian.dtx + RELOC/source/latex/datetime2-ukrainian/datetime2-ukrainian.ins +runfiles size=8 RELOC/tex/latex/datetime2-ukrainian/datetime2-ukrainian-ascii.ldf RELOC/tex/latex/datetime2-ukrainian/datetime2-ukrainian-utf8.ldf RELOC/tex/latex/datetime2-ukrainian/datetime2-ukrainian.ldf -docfiles size=22 - RELOC/doc/latex/datetime2-ukrainian/README - RELOC/doc/latex/datetime2-ukrainian/datetime2-ukrainian.pdf -srcfiles size=6 - RELOC/source/latex/datetime2-ukrainian/datetime2-ukrainian.dtx - RELOC/source/latex/datetime2-ukrainian/datetime2-ukrainian.ins catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-ukrainian -catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-date 2018-04-15 19:39:57 +0200 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics date-time multilingual +catalogue-version 1.2a name datetime2-usorbian category Package revision 36700 -shortdesc Upper Sorbian language module for the datetime2 package. +shortdesc Upper Sorbian language module for the datetime2 package relocated 1 longdesc This module provides the "usorbian" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=4 - RELOC/tex/latex/datetime2-usorbian/datetime2-usorbian-ascii.ldf - RELOC/tex/latex/datetime2-usorbian/datetime2-usorbian-utf8.ldf - RELOC/tex/latex/datetime2-usorbian/datetime2-usorbian.ldf +containersize 2764 +containerchecksum 83c30e65f19e53706a6ce46e8118c0b862ccfb0d99721f3f9a24bb2a83ece07570742ce6158e6d0592e643acc4fb9ee9e28227ae322cde4da006d5b04c2354f8 +doccontainersize 84884 +doccontainerchecksum e4ffb7b7dbab64ff7ea53a5c7b1797010ee1f93eb26aa4eb6fa78fdd2a621c9cdcebe461a731810d66026b43cf79b065b82ac4923bf96426d354175153497aa6 docfiles size=22 - RELOC/doc/latex/datetime2-usorbian/README - RELOC/doc/latex/datetime2-usorbian/datetime2-usorbian.pdf + RELOC/doc/latex/datetime2-usorbian/README details="Readme" + RELOC/doc/latex/datetime2-usorbian/datetime2-usorbian.pdf details="Package documentation" +srccontainersize 5024 +srccontainerchecksum c4b32e6e6b03b0d194abac79b08186119fb03e52ba9e9f19d4c724a48fc5054427724b822e852fc20d3b1e2baacae001dca4d8531689767ea7e54baa49cb2926 srcfiles size=6 RELOC/source/latex/datetime2-usorbian/datetime2-usorbian.dtx RELOC/source/latex/datetime2-usorbian/datetime2-usorbian.ins +runfiles size=4 + RELOC/tex/latex/datetime2-usorbian/datetime2-usorbian-ascii.ldf + RELOC/tex/latex/datetime2-usorbian/datetime2-usorbian-utf8.ldf + RELOC/tex/latex/datetime2-usorbian/datetime2-usorbian.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-usorbian -catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics date-time multilingual catalogue-version 1.0 name datetime2-welsh category Package revision 36636 -shortdesc Welsh language module for the datetime2 package. +shortdesc Welsh language module for the datetime2 package relocated 1 longdesc This module provides the "welsh" style that can be set using longdesc \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -runfiles size=4 - RELOC/tex/latex/datetime2-welsh/datetime2-welsh-ascii.ldf - RELOC/tex/latex/datetime2-welsh/datetime2-welsh-utf8.ldf - RELOC/tex/latex/datetime2-welsh/datetime2-welsh.ldf +containersize 2576 +containerchecksum 6590e6facec1539e60f9abf746f6359be87983f9c637cc7c571ad08c279d719bd4b820507feee1a18cfb4d97e8710d430ba4fe959e422b583b215aad9f059a8b +doccontainersize 286372 +doccontainerchecksum 5d61392e7563d87e5f18723aa309ccbd7c42b3ab19cccd0eda6a714c925c49b259c2202f90d3fc7e75158dfc0f2a34b5104e60300e5d736f655f98d9fe72f9a7 docfiles size=71 - RELOC/doc/latex/datetime2-welsh/README - RELOC/doc/latex/datetime2-welsh/datetime2-welsh.pdf + RELOC/doc/latex/datetime2-welsh/README details="Readme" + RELOC/doc/latex/datetime2-welsh/datetime2-welsh.pdf details="Package documentation" +srccontainersize 4812 +srccontainerchecksum d285938163f81ae02873bcb55ce37d0ea1f416ddd42ff5dcacac3e8ec82e9d89ea53b2363dbe5b5f3ae93301af7f46b0fdf1d975a5e1179b528323eaa94fcea2 srcfiles size=5 RELOC/source/latex/datetime2-welsh/datetime2-welsh.dtx RELOC/source/latex/datetime2-welsh/datetime2-welsh.ins +runfiles size=4 + RELOC/tex/latex/datetime2-welsh/datetime2-welsh-ascii.ldf + RELOC/tex/latex/datetime2-welsh/datetime2-welsh-utf8.ldf + RELOC/tex/latex/datetime2-welsh/datetime2-welsh.ldf catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-welsh -catalogue-date 2015-03-28 05:55:48 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics date-time multilingual catalogue-version 1.0 -name datetime -category Package -revision 36650 -shortdesc Change format of \today with commands for current time. -relocated 1 -longdesc Provides various different formats for the text created by the -longdesc command \today, and also provides commands for displaying the -longdesc current time (or any given time), in 12-hour, 24-hour or text -longdesc format. The package overrides babel's date format, having its -longdesc own library of date formats in different languages. The package -longdesc requires the fmtcount package. This package is now obsolete and -longdesc has been replaced by datetime2. -runfiles size=66 - RELOC/tex/latex/datetime/datetime-defaults.sty - RELOC/tex/latex/datetime/datetime.sty - RELOC/tex/latex/datetime/dt-UKenglish.def - RELOC/tex/latex/datetime/dt-USenglish.def - RELOC/tex/latex/datetime/dt-american.def - RELOC/tex/latex/datetime/dt-australian.def - RELOC/tex/latex/datetime/dt-austrian.def - RELOC/tex/latex/datetime/dt-bahasa.def - RELOC/tex/latex/datetime/dt-basque.def - RELOC/tex/latex/datetime/dt-breton.def - RELOC/tex/latex/datetime/dt-british.def - RELOC/tex/latex/datetime/dt-bulgarian.def - RELOC/tex/latex/datetime/dt-canadian.def - RELOC/tex/latex/datetime/dt-catalan.def - RELOC/tex/latex/datetime/dt-croatian.def - RELOC/tex/latex/datetime/dt-czech.def - RELOC/tex/latex/datetime/dt-danish.def - RELOC/tex/latex/datetime/dt-dutch.def - RELOC/tex/latex/datetime/dt-esperanto.def - RELOC/tex/latex/datetime/dt-estonian.def - RELOC/tex/latex/datetime/dt-finnish.def - RELOC/tex/latex/datetime/dt-french.def - RELOC/tex/latex/datetime/dt-galician.def - RELOC/tex/latex/datetime/dt-german.def - RELOC/tex/latex/datetime/dt-greek.def - RELOC/tex/latex/datetime/dt-hebrew.def - RELOC/tex/latex/datetime/dt-icelandic.def - RELOC/tex/latex/datetime/dt-irish.def - RELOC/tex/latex/datetime/dt-italian.def - RELOC/tex/latex/datetime/dt-latin.def - RELOC/tex/latex/datetime/dt-lsorbian.def - RELOC/tex/latex/datetime/dt-magyar.def - RELOC/tex/latex/datetime/dt-naustrian.def - RELOC/tex/latex/datetime/dt-newzealand.def - RELOC/tex/latex/datetime/dt-ngerman.def - RELOC/tex/latex/datetime/dt-norsk.def - RELOC/tex/latex/datetime/dt-polish.def - RELOC/tex/latex/datetime/dt-portuges.def - RELOC/tex/latex/datetime/dt-romanian.def - RELOC/tex/latex/datetime/dt-russian.def - RELOC/tex/latex/datetime/dt-samin.def - RELOC/tex/latex/datetime/dt-scottish.def - RELOC/tex/latex/datetime/dt-serbian.def - RELOC/tex/latex/datetime/dt-slovak.def - RELOC/tex/latex/datetime/dt-slovene.def - RELOC/tex/latex/datetime/dt-spanish.def - RELOC/tex/latex/datetime/dt-swedish.def - RELOC/tex/latex/datetime/dt-turkish.def - RELOC/tex/latex/datetime/dt-ukraineb.def - RELOC/tex/latex/datetime/dt-usorbian.def - RELOC/tex/latex/datetime/dt-welsh.def -docfiles size=154 - RELOC/doc/latex/datetime/CHANGES - RELOC/doc/latex/datetime/README - RELOC/doc/latex/datetime/datetime-manual.css - RELOC/doc/latex/datetime/datetime-manual.html - RELOC/doc/latex/datetime/datetime-manual.tex - RELOC/doc/latex/datetime/datetime.pdf - RELOC/doc/latex/datetime/datetime.perl - RELOC/doc/latex/datetime/dt-lang.tex - RELOC/doc/latex/datetime/dt-sampl.tex - RELOC/doc/latex/datetime/samples/dt-lang.pdf - RELOC/doc/latex/datetime/samples/dt-lang.tex - RELOC/doc/latex/datetime/samples/dt-sampl.pdf - RELOC/doc/latex/datetime/samples/dt-sampl.tex -srcfiles size=51 - RELOC/source/latex/datetime/datetime.dtx - RELOC/source/latex/datetime/datetime.ins -catalogue-ctan /obsolete/macros/latex/contrib/datetime -catalogue-date 2015-03-29 07:33:53 +0200 -catalogue-license lppl1.3 -catalogue-version 2.60 - name dblfloatfix category Package revision 28983 -shortdesc Fixes for twocolumn floats. +shortdesc Fixes for twocolumn floats relocated 1 longdesc The package solves two problems: floats in a twocolumn document longdesc come out in the right order and allowed float positions are now longdesc [tbp]. The package actually merges facilities from fixltx2e and longdesc stfloats. -runfiles size=2 - RELOC/tex/latex/dblfloatfix/dblfloatfix.sty +containersize 2664 +containerchecksum 05931528012077b92702926856b1e0d1aa6472188f9b1fbff74e5534a41a3260e53b82bcdd0684ff045aafaf4b427dab6d8e06fc7a5d11cb42a545949bc6bfc8 +doccontainersize 219612 +doccontainerchecksum 5790850d01d9f3734cb89146c23077bc852d84242352718ee655f1410ee84b77366bef133d8df49fd46ad976aa007fe2c4039a08035122f93e719c5f0f7563f7 docfiles size=55 - RELOC/doc/latex/dblfloatfix/dblfloatfix.pdf + RELOC/doc/latex/dblfloatfix/dblfloatfix.pdf details="Package documentation" RELOC/doc/latex/dblfloatfix/dblfloatfix.tex +runfiles size=2 + RELOC/tex/latex/dblfloatfix/dblfloatfix.sty catalogue-ctan /macros/latex/contrib/dblfloatfix -catalogue-date 2013-01-29 13:50:02 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics float catalogue-version 1.0a name dccpaper category Package -revision 37647 +revision 50294 shortdesc Typeset papers for the International Journal of Digital Curation relocated 1 longdesc The LaTeX class ijdc-v9 produces camera-ready papers and @@ -45401,35 +77503,39 @@ longdesc Digital Curation, with applicability from volume 9 onwards. The longdesc similar idcc class can be used for submissions to the longdesc International Digital Curation Conference, beginning with the longdesc 2015 conference. -runfiles size=29 - RELOC/tex/latex/dccpaper/dccpaper-base.tex - RELOC/tex/latex/dccpaper/dccpaper-by.eps - RELOC/tex/latex/dccpaper/dccpaper-by.pdf - RELOC/tex/latex/dccpaper/idcc.cls - RELOC/tex/latex/dccpaper/ijdc-v9.cls -docfiles size=116 - RELOC/doc/latex/dccpaper/README - RELOC/doc/latex/dccpaper/README.txt +containersize 24736 +containerchecksum a58fc01b1e0e02adb2fded14fb5200507ea208a3f3bc084d6701ba9127d187435b2b4470e7b28a5ead6ba50d931526d46f606a02e83b55a2c42985a07cdcd959 +doccontainersize 253532 +doccontainerchecksum d06a1ad6310b31955a478c3e66ce643117cb771e255474975fb39c34574cda4382953656315ae4f177e62714c0df7807e234e4b7a4e31f04a3dc5aa08d0ae378 +docfiles size=68 + RELOC/doc/latex/dccpaper/README.md details="Readme" RELOC/doc/latex/dccpaper/dccpaper-apacite.bib - RELOC/doc/latex/dccpaper/dccpaper-base.doc RELOC/doc/latex/dccpaper/dccpaper-biblatex.bib - RELOC/doc/latex/dccpaper/dccpaper.pdf - RELOC/doc/latex/dccpaper/idcc.doc - RELOC/doc/latex/dccpaper/ijdc-v9.doc -srcfiles size=22 + RELOC/doc/latex/dccpaper/dccpaper.pdf details="Package documentation" +srccontainersize 26660 +srccontainerchecksum 7515a2a3e3b9e1f9c684a6c35184b2698c87f87f55501c5d5a5aade96ef71ad8f5c7bd66e9680ffdb0db5c46b1081e3b134e8baaadeebc6295501635292d7730 +srcfiles size=26 RELOC/source/latex/dccpaper/Makefile RELOC/source/latex/dccpaper/dccpaper.dtx RELOC/source/latex/dccpaper/dccpaper.ins +runfiles size=25 + RELOC/tex/latex/dccpaper/dccpaper-base.sty + RELOC/tex/latex/dccpaper/dccpaper-by.eps + RELOC/tex/latex/dccpaper/dccpaper-by.pdf + RELOC/tex/latex/dccpaper/idcc.cls + RELOC/tex/latex/dccpaper/ijdc-v9.cls +catalogue-contact-bugs https://github.com/DigitalCurationCentre/dccpaper/issues +catalogue-contact-repository https://github.com/DigitalCurationCentre/dccpaper catalogue-ctan /macros/latex/contrib/dccpaper -catalogue-date 2015-06-22 12:39:22 +0200 -catalogue-license lppl1.3 +catalogue-date 2019-03-08 18:49:03 +0100 +catalogue-license lppl1.3ccc-by-4 catalogue-topics journalpub confproc class -catalogue-version 1.4.1 +catalogue-version 1.8 name dcpic category Package revision 30206 -shortdesc Commutative diagrams in a LaTeX and TeX documents. +shortdesc Commutative diagrams in a LaTeX and TeX documents relocated 1 longdesc DCpic is a package for typesetting Commutative Diagrams within longdesc a LaTeX and TeX documents. Its distinguishing features are: a @@ -45437,47 +77543,231 @@ longdesc powerful graphical engine, the PiCTeX package; an easy longdesc specification syntax in which a commutative diagram is longdesc described in terms of its objects and its arrows (morphism), longdesc positioned in a Cartesian coordinate system. -runfiles size=14 - RELOC/tex/generic/dcpic/dcpic.sty - RELOC/tex/generic/dcpic/europroc.cls +containersize 13996 +containerchecksum 6cfae1fe50baa81ba778ee1b8cc76dd2d0e66e3cd4a868364857f2338b1078ac81178dbcea81d4edbe013726b7cb14700506f38e49eb528701bf784280ca7de8 +doccontainersize 927712 +doccontainerchecksum 25f768812f31cfc3e4d00717ed8d77392272f2480efe3311ecf5e922b18e1f5b6fa36892c7eb69cc077e350d5d7e55b7201673fc653c188ec8a76205f90b681c docfiles size=275 RELOC/doc/generic/dcpic/README - RELOC/doc/generic/dcpic/eurotex2001.pdf + RELOC/doc/generic/dcpic/eurotex2001.pdf details="EuroTeX2001 paper" language="en" RELOC/doc/generic/dcpic/eurotex2001.tex RELOC/doc/generic/dcpic/examples.pdf RELOC/doc/generic/dcpic/examples.tex - RELOC/doc/generic/dcpic/manDCPiC.pdf + RELOC/doc/generic/dcpic/manDCPiC.pdf details="Package documentation (English)" language="en" RELOC/doc/generic/dcpic/manDCPiC.tex - RELOC/doc/generic/dcpic/manDCPiCpt.pdf + RELOC/doc/generic/dcpic/manDCPiCpt.pdf details="Package documentation (Portuguese)" language="pt" RELOC/doc/generic/dcpic/manDCPiCpt.tex +runfiles size=14 + RELOC/tex/generic/dcpic/dcpic.sty + RELOC/tex/generic/dcpic/europroc.cls catalogue-ctan /macros/generic/diagrams/dcpic -catalogue-date 2013-05-02 01:06:38 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics diagram-comm catalogue-version 5.0.0 +name de-macro +category Package +revision 26355 +shortdesc Expand private macros in a document +longdesc De-macro is a Python script that helps authors who like to use +longdesc private LaTeX macros (for example, as abbreviations). A +longdesc technical editor or a cooperating author may balk at such a +longdesc manuscript; you can avoid manuscript rejection misery by +longdesc running de-macro on it. De-macro will expand macros defined in +longdesc \(re)newcommand or \(re)newenvironment commands, within the +longdesc document, or in the document's "private" package file. +depend de-macro.ARCH +containersize 7848 +containerchecksum 5ce9beff85d65654173557af668ff15af6989d9fa6d341fe9c26149d0715ed7cf57bf5b2a59b6cf99e8ec14e4ebb6816e9972268516a0b2a78ee13c6423b3599 +doccontainersize 49764 +doccontainerchecksum 05793930357ad58a57e221696d836895f02dec82cc93b9aa7ea302978bee24410d4b382ff72407faa67f4133c75a84fb2454957de446beca05606776c6581ade +docfiles size=15 + texmf-dist/doc/support/de-macro/README details="Readme" + texmf-dist/doc/support/de-macro/user-guide.pdf details="Package documentation" + texmf-dist/doc/support/de-macro/user-guide.tex +runfiles size=9 + texmf-dist/scripts/de-macro/de-macro +catalogue-ctan /support/de-macro +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics macro-supp +catalogue-version 1.3 + +name de-macro.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of de-macro +containersize 340 +containerchecksum cbe1c840ff576e6fb04c0f4eb47d5eb495f7f45181c01f54a930fe6cdf821a5fc56e222d00b63e2380dd206ea0ec6244e42e6a767c7b346f81c59d9ad331deb4 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/de-macro + +name de-macro.amd64-freebsd +category Package +revision 17399 +shortdesc amd64-freebsd files of de-macro +containersize 340 +containerchecksum a106fda7f99b93f24537f0680ec5d969feeb04278aa135fd1304d3bf1493db5fc777cca08c3a3ac9f7c564dd8320d61f8f854a216c6ee5fa3b335767341f0ead +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/de-macro + +name de-macro.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of de-macro +containersize 340 +containerchecksum 1394c164d3e4ce41013e856266c4ef8eba1d42a21ca686a441892083f0676c2e876a179e8c0346c1cc19be159dcc5034b4a28f2a304db0c292c7bd6f22772d17 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/de-macro + +name de-macro.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of de-macro +containersize 340 +containerchecksum 6dc4b814f0617704425967d9fccc0c113ca0a8d33fd6b20dcd90c51d3944c6bae152b3d4eec24e52864e100f7111441bae751ed68099cc228728bd5c016ffc0c +binfiles arch=armhf-linux size=1 + bin/armhf-linux/de-macro + +name de-macro.i386-cygwin +category Package +revision 17399 +shortdesc i386-cygwin files of de-macro +containersize 340 +containerchecksum 2144b76c876c56e78a830be05a0edc721a286547e53d9c8063b5e57711dbfe00246d86143ee2b57d4bbba808e12d06c34cd09bbc54336ac5c5871f3d606b1cd1 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/de-macro + +name de-macro.i386-freebsd +category Package +revision 17399 +shortdesc i386-freebsd files of de-macro +containersize 340 +containerchecksum a3f45aac9441265b419d11c86347f39315cfacb771cdd4dbd07b0939f471eacd65d2963f77da6660e7e6b3de331963900237a070f78b51331cbf8546262b8ca8 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/de-macro + +name de-macro.i386-linux +category Package +revision 17399 +shortdesc i386-linux files of de-macro +containersize 340 +containerchecksum fa6222987d18f030de17f21899df1c73ca4f3bef8adc116f8c811d41a7863c43284c75fc451809bd258bb7a6c8c7c2f20bb0f4d73f062531c0686dc6bdc446f9 +binfiles arch=i386-linux size=1 + bin/i386-linux/de-macro + +name de-macro.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of de-macro +containersize 340 +containerchecksum f611625c5fb41985656e9a36d71171cf9338430f9e78545a0a37526646aeeff5ba9a5df11c47aec72736ef1be2c8dfed67aac114713105de6e38d2302d0edbc5 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/de-macro + +name de-macro.i386-solaris +category Package +revision 17399 +shortdesc i386-solaris files of de-macro +containersize 340 +containerchecksum 98bb281c2db4392a6aa1d2ac8f29610ec85e0f3fddea2b139730a0ce0f9f6d4b3ccc559157444105eea1c50b4f8e0e18fcf7c2f208dbb45818b1b04e249be7b4 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/de-macro + +name de-macro.win32 +category Package +revision 17428 +shortdesc win32 files of de-macro +containersize 684 +containerchecksum e521155458db58da2127c2e42408e8568c739ea2b09f6dba3f55f71a0282d84b55bcc1fe91cae73f71cc25f17e3ffb6ff25c16f3b21767daada9e13126fc52db +binfiles arch=win32 size=1 + bin/win32/de-macro.exe + +name de-macro.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of de-macro +containersize 340 +containerchecksum a3bddc2bb30495b6eca0a287bc48e3434643c6eb14506052c45878c47c80602aee9fa1ed75eb18a1e01ee750d9e937614cb080a91aa3df5fa3dd360cfbc6e83d +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/de-macro + +name de-macro.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of de-macro +containersize 340 +containerchecksum 89192412f5d14cf60519f585d49b52f69bcc8b91a0975150ccbc09e738526f74717dda12937bea837df1b4f9839a19c13645218aedc74f83065b08b4dafabd19 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/de-macro + +name de-macro.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of de-macro +containersize 348 +containerchecksum 34dea8dc9727a4699b363b4f1a5b5af42109d96c55d6d0af78645183a6c43b72fbf38d7a656ead15e0614bf0879bb8a0cc02b849a68c41430553c7d262200f0f +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/de-macro + +name de-macro.x86_64-linux +category Package +revision 17399 +shortdesc x86_64-linux files of de-macro +containersize 340 +containerchecksum 7409efad4bb76ef4c60095a9264e0720f3d77f67b988eceff8c0231cb3da5d6a4e54655f1563df10799c43daf3f9575fc0ae4bcc308b03cc8bff6b0f56ccc2c9 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/de-macro + +name de-macro.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of de-macro +containersize 344 +containerchecksum f906151d43051bfe1684a84248759f3146241e3cf8f016ebd264eb8e365ca82d48b372911e54588ce471f902bea8be37dd9acc21480e28f50decde03366661ec +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/de-macro + +name de-macro.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of de-macro +containersize 340 +containerchecksum 6ce5e65bfe98003873240413f3dda96a87d553d16b68324ee379689cf5132ecf0c6b828d3fb031d4c5aa1a781c8bd4c29eb70d6151ecf1f62b0d3b5bb96c1953 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/de-macro + name decimal category Package revision 23374 -shortdesc LaTeX package for the English raised decimal point. +shortdesc LaTeX package for the English raised decimal point relocated 1 longdesc This LaTeX package should be used by people who need the longdesc traditional English raised decimal point, instead of the longdesc American-style period. -runfiles size=1 - RELOC/tex/latex/decimal/decimal.sty +containersize 1420 +containerchecksum 9a0d0947eacd52800b3b2cbc36d6e866c1876bd5f929896825dc604d9d633cfb169d93de0f86b0e78e3274936bb47834c222ee54b3571bfcdc0fe81bb2821776 +doccontainersize 155764 +doccontainerchecksum 977fc97627bbdbf4d65844dcb7ce267cb2291b102b718ca36ba2fee881d5fcf359d6d0dae839d4e640200d3b8a31cba301d20560f5002344b8ea256266efc9e4 docfiles size=46 - RELOC/doc/latex/decimal/decimal.pdf + RELOC/doc/latex/decimal/decimal.pdf details="Package documentation" +srccontainersize 6576 +srccontainerchecksum a880091295229345290acf605feb833489976ed3b661b403c8effaabd07c48730ac958a4b48dd48d429a3f031413c1392f4006b820f04e3dde6b2035a948747e srcfiles size=5 RELOC/source/latex/decimal/decimal.dtx RELOC/source/latex/decimal/decimal.ins +runfiles size=1 + RELOC/tex/latex/decimal/decimal.sty catalogue-ctan /macros/latex/contrib/decimal -catalogue-date 2012-06-20 16:56:39 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1 +catalogue-topics typesetting name decorule category Package revision 23487 -shortdesc Decorative swelled rule using font character. +shortdesc Decorative swelled rule using font character relocated 1 longdesc The package implements a decorative swelled rule using only a longdesc symbol from a font installed with all distributions of TeX, so @@ -45485,24 +77775,59 @@ longdesc it works independently, without the need to install any longdesc additional software or fonts. This is the packaged version of longdesc the macro which was originally published in the "Typographers' longdesc Inn" column in TUGboat 31:1 (2010). -runfiles size=1 - RELOC/tex/latex/decorule/decorule.sty +containersize 1652 +containerchecksum e5a962002f66d4d3a5c48d93930ea2e14a68226a1beb9f9aee5b7936ef51a49b4d9a249b7a3038d5ade41aef8388ad78f254973e7ef3558e42848409427e5cd7 +doccontainersize 404940 +doccontainerchecksum 533ca67eabadea3125dc359a839d5b45b5e1efee88fe74b4a2b911014b599930419a49e7e0b5967e5f89d29e1b452d223faae3d31fc3f94c64cb613907cc2255 docfiles size=106 RELOC/doc/latex/decorule/MANIFEST - RELOC/doc/latex/decorule/README - RELOC/doc/latex/decorule/decorule.pdf + RELOC/doc/latex/decorule/README details="Readme" + RELOC/doc/latex/decorule/decorule.pdf details="Package documentation" +srccontainersize 12480 +srccontainerchecksum 1d612d121367ec69f578479001602aa2a25251edbb35c495a13b636e23831e8dca5f7a2715ad6fc5f3b5e3fbf3769d0b90c88949f5fafcd8d778e8489a80892f srcfiles size=11 RELOC/source/latex/decorule/decorule.dtx RELOC/source/latex/decorule/decorule.ins +runfiles size=1 + RELOC/tex/latex/decorule/decorule.sty +catalogue-also swrule catalogue-ctan /macros/latex/contrib/decorule -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics line-weight decoration catalogue-version 0.6 +name dehyph +category Package +revision 48599 +shortdesc German hyphenation patterns for traditional orthography +relocated 1 +longdesc The package provides older hyphenation patterns for the German +longdesc language. Please note that by default only pdfLaTeX uses these +longdesc patterns (mainly for backwards compatibility). The older +longdesc packages ghyphen and gnhyph are now bundled together with +longdesc dehyph, and are no longer be updated. Both XeLaTeX and LuaLaTeX +longdesc use the current German hyphenation patterns taken from +longdesc Hyphenation patterns in UTF-8, and using the Experimental +longdesc hyphenation patterns for the German language package it is +longdesc possible to make pdfLaTeX use the new German patterns as well. +containersize 46556 +containerchecksum 2dc4ee5b4389549c032f3a4d87740ab3c5e296a1ef109a6b673656a82ca4c317ca774f39f61417568b8ccbeac787c4058184fc893d53799bbf0b042ba5aca9a2 +runfiles size=57 + RELOC/tex/generic/dehyph/README + RELOC/tex/generic/dehyph/dehyphn.tex + RELOC/tex/generic/dehyph/dehypht.tex + RELOC/tex/generic/dehyph/dehyphtex.tex +catalogue-alias ghyphen gnhyph +catalogue-ctan /language/hyphenation/dehyph +catalogue-date 2018-09-01 15:39:22 +0200 +catalogue-license lppl1 +catalogue-topics german hyphenation + name dehyph-exptl category Package -revision 34459 -shortdesc Experimental hyphenation patterns for the German language. +revision 50772 +shortdesc Experimental hyphenation patterns for the German language relocated 1 longdesc The package provides experimental hyphenation patterns for the longdesc German language, covering both traditional and reformed @@ -45515,32 +77840,39 @@ 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-2014-05-21 synonyms=german-x-latest lefthyphenmin=2 righthyphenmin=2 file=dehypht-x-2014-05-21.tex file_patterns=hyph-de-1901.pat.txt file_exceptions=hyph-de-1901.hyp.txt -execute AddHyphen name=ngerman-x-2014-05-21 synonyms=ngerman-x-latest lefthyphenmin=2 righthyphenmin=2 file=dehyphn-x-2014-05-21.tex file_patterns=hyph-de-1996.pat.txt file_exceptions=hyph-de-1996.hyp.txt -runfiles size=84 - RELOC/tex/generic/dehyph-exptl/dehyphn-x-2014-05-21.pat - RELOC/tex/generic/dehyph-exptl/dehyphn-x-2014-05-21.tex - RELOC/tex/generic/dehyph-exptl/dehypht-x-2014-05-21.pat - RELOC/tex/generic/dehyph-exptl/dehypht-x-2014-05-21.tex - RELOC/tex/generic/dehyph-exptl/dehyphts-x-2014-05-21.pat - RELOC/tex/generic/dehyph-exptl/dehyphts-x-2014-05-21.tex -docfiles size=76 +execute AddHyphen name=german-x-2019-04-04 synonyms=german-x-latest lefthyphenmin=2 righthyphenmin=2 file=dehypht-x-2019-04-04.tex file_patterns=hyph-de-1901.pat.txt file_exceptions=hyph-de-1901.hyp.txt +execute AddHyphen name=ngerman-x-2019-04-04 synonyms=ngerman-x-latest lefthyphenmin=2 righthyphenmin=2 file=dehyphn-x-2019-04-04.tex file_patterns=hyph-de-1996.pat.txt file_exceptions=hyph-de-1996.hyp.txt +containersize 95836 +containerchecksum df64c7988e8194564716a0abef4949bad9b34b8571a579148cad5eeaa3676a6e066c9eeb183f69d49e5089ce92ef45b4c7747bb4d23334c6812c900c91069ef3 +doccontainersize 138100 +doccontainerchecksum 0199cf3ca0a7fc36fd3b2b736be56c3baa1430422ec97a3bdf86e740c4117ca73cc0b7d057ebf40d1d48def4d5156bf51e9023604794ac3cdab19f0716d8f6a9 +docfiles size=54 RELOC/doc/generic/dehyph-exptl/CHANGES RELOC/doc/generic/dehyph-exptl/INSTALL - RELOC/doc/generic/dehyph-exptl/LICENSE - RELOC/doc/generic/dehyph-exptl/README + RELOC/doc/generic/dehyph-exptl/LICENSE.data + RELOC/doc/generic/dehyph-exptl/LICENSE.documentation + RELOC/doc/generic/dehyph-exptl/README details="Readme" RELOC/doc/generic/dehyph-exptl/dehyph-exptl.bib - RELOC/doc/generic/dehyph-exptl/dehyph-exptl.pdf + RELOC/doc/generic/dehyph-exptl/dehyph-exptl.pdf details="Package documentation" language="de" RELOC/doc/generic/dehyph-exptl/dehyph-exptl.tex +runfiles size=143 + RELOC/tex/generic/dehyph-exptl/dehyphn-x-2019-04-04.pat + RELOC/tex/generic/dehyph-exptl/dehyphn-x-2019-04-04.tex + RELOC/tex/generic/dehyph-exptl/dehypht-x-2019-04-04.pat + RELOC/tex/generic/dehyph-exptl/dehypht-x-2019-04-04.tex + RELOC/tex/generic/dehyph-exptl/dehyphts-x-2019-04-04.pat + RELOC/tex/generic/dehyph-exptl/dehyphts-x-2019-04-04.tex +catalogue-contact-home http://projekte.dante.de/Trennmuster/WebHome catalogue-ctan /language/hyphenation/dehyph-exptl -catalogue-date 2014-06-30 01:12:06 +0200 -catalogue-license lppl -catalogue-version 0.40 +catalogue-date 2019-04-04 14:10:17 +0200 +catalogue-license mitlppl +catalogue-topics hyphenation german +catalogue-version 0.6 name dejavu category Package revision 31771 -shortdesc LaTeX support for the DejaVu fonts. +shortdesc LaTeX support for the DejaVu fonts relocated 1 longdesc The package contains LaTeX support for the DejaVu fonts, which longdesc are derived from the Vera fonts but contain more characters and @@ -45550,6 +77882,27 @@ longdesc encodings are: OT1, T1, IL2, TS1, T2*, X2, QX, and LGR. The longdesc package doesn't (currently) support mathematics. More encodings longdesc and/or features are expected. execute addMap dejavu-type1.map +containersize 10725240 +containerchecksum a26a57bd02b14c6e67d328c2c00174730b819f7da37ac147ec7f34f37195b6aa17e3223ac4d03617f5239700b1dfa45ca1741eed7b4488d2e604f02ac34ef2a3 +doccontainersize 1085072 +doccontainerchecksum 7e3364a3e0863c63f2a66057780fa922cb53f4da2f81e42ce9e200d5a034854216f4d4b833756a6d4d6837385e48aa8d03f608846f2f95caa84a7ebffe3257b0 +docfiles size=656 + RELOC/doc/fonts/dejavu/AUTHORS + RELOC/doc/fonts/dejavu/BUGS + RELOC/doc/fonts/dejavu/CHANGELOG + RELOC/doc/fonts/dejavu/LICENSE + RELOC/doc/fonts/dejavu/NEWS + RELOC/doc/fonts/dejavu/README-font + RELOC/doc/fonts/dejavu/README.doc + RELOC/doc/fonts/dejavu/dejavu-sample.pdf details="Font samples" + RELOC/doc/fonts/dejavu/dejavu-sample.tex + RELOC/doc/fonts/dejavu/dejavu.pdf details="Package documentation" + RELOC/doc/fonts/dejavu/dejavu.tex + RELOC/doc/fonts/dejavu/extrakerns.zip + RELOC/doc/fonts/dejavu/langcover.txt + RELOC/doc/fonts/dejavu/manifest.txt + RELOC/doc/fonts/dejavu/status.txt + RELOC/doc/fonts/dejavu/unicover.txt runfiles size=6222 RELOC/fonts/afm/public/dejavu/DejaVuSans-Bold.afm RELOC/fonts/afm/public/dejavu/DejaVuSans-BoldOblique.afm @@ -46121,195 +78474,369 @@ runfiles size=6222 RELOC/tex/latex/dejavu/X2DejaVuSerif-TLF.fd RELOC/tex/latex/dejavu/X2DejaVuSerifCondensed-TLF.fd RELOC/tex/latex/dejavu/dejavu.sty -docfiles size=656 - RELOC/doc/fonts/dejavu/AUTHORS - RELOC/doc/fonts/dejavu/BUGS - RELOC/doc/fonts/dejavu/CHANGELOG - RELOC/doc/fonts/dejavu/LICENSE - RELOC/doc/fonts/dejavu/NEWS - RELOC/doc/fonts/dejavu/README-font - RELOC/doc/fonts/dejavu/README.doc - RELOC/doc/fonts/dejavu/dejavu-sample.pdf - RELOC/doc/fonts/dejavu/dejavu-sample.tex - RELOC/doc/fonts/dejavu/dejavu.pdf - RELOC/doc/fonts/dejavu/dejavu.tex - RELOC/doc/fonts/dejavu/extrakerns.zip - RELOC/doc/fonts/dejavu/langcover.txt - RELOC/doc/fonts/dejavu/manifest.txt - RELOC/doc/fonts/dejavu/status.txt - RELOC/doc/fonts/dejavu/unicover.txt catalogue-ctan /fonts/dejavu -catalogue-date 2013-09-26 21:03:19 +0200 +catalogue-date 2017-10-02 08:25:07 +0200 catalogue-license lppl +catalogue-topics font font-greek font-cyrillic font-ttf font-type1 font-sans font-serif font-mono font-t1enc catalogue-version 2.34 +name dejavu-otf +category Package +revision 45991 +shortdesc Support for the ttf and otf DejaVu fonts +relocated 1 +longdesc Package dejavu-otf supports the free ttf-fonts from the DejaVu +longdesc project which are available from GitHub or already part of your +longdesc system (Windows/Linux/...) and the OpenType version of the +longdesc TeXGyre Math, which is part of any TeX distribution.. Following +longdesc font files are supported: DejaVuSans-BoldOblique.ttf +longdesc DejaVuSans-Bold.ttf DejaVuSansCondensed-BoldOblique.ttf +longdesc DejaVuSansCondensed-Bold.ttf DejaVuSansCondensed-Oblique.ttf +longdesc DejaVuSansCondensed.ttf DejaVuSans-ExtraLight.ttf +longdesc DejaVuSansMono-BoldOblique.ttf DejaVuSansMono-Bold.ttf +longdesc DejaVuSansMono-Oblique.ttf DejaVuSansMono.ttf +longdesc DejaVuSans-Oblique.ttf DejaVuSans.ttf +longdesc DejaVuSerif-BoldItalic.ttf DejaVuSerif-Bold.ttf +longdesc DejaVuSerifCondensed-BoldItalic.ttf +longdesc DejaVuSerifCondensed-Bold.ttf DejaVuSerifCondensed-Italic.ttf +longdesc DejaVuSerifCondensed.ttf DejaVuSerif-Italic.ttf DejaVuSerif.ttf +longdesc texgyredejavu-math.otf +containersize 2036 +containerchecksum d0d32f3c9d53a1a61e6e717a6275f3fc934c0815fddc3b36fe2afbf7702e5128d4cf15e8cdfe8b02009a6fb7c203ea42b134eeeb080b9765ff99c4143f887744 +doccontainersize 334020 +doccontainerchecksum 212663371f747b03694327a40de3bec0be8efd5cda15c0cc343284f3a427890e8d16c4223098fc16a260b837a9d522c9cd35876a4c1004e09ee9ee29c05ec7b3 +docfiles size=89 + RELOC/doc/fonts/dejavu-otf/Changes + RELOC/doc/fonts/dejavu-otf/README.md details="Readme" + RELOC/doc/fonts/dejavu-otf/dejavu-otf-doc.bib + RELOC/doc/fonts/dejavu-otf/dejavu-otf-doc.fonts + RELOC/doc/fonts/dejavu-otf/dejavu-otf-doc.pdf details="Package documentation" + RELOC/doc/fonts/dejavu-otf/dejavu-otf-doc.tex +runfiles size=2 + RELOC/tex/latex/dejavu-otf/dejavu-otf.sty +catalogue-ctan /fonts/dejavu-otf +catalogue-date 2018-01-07 14:49:11 +0100 +catalogue-license lppl1.3 +catalogue-topics font-absent font-otf font-ttf font-sans font-serif font-mono +catalogue-version 0.04 + name delim category Package revision 23974 -shortdesc Simplify typesetting mathematical delimiters. +shortdesc Simplify typesetting mathematical delimiters relocated 1 longdesc The package permits simpler control of delimiters without longdesc excessive use of \big... commands (and the like). -runfiles size=1 - RELOC/tex/latex/delim/delim.sty +containersize 1100 +containerchecksum c18dc230c5bac8db3d66f062402392761467ad18f48a65930a960c0772be30a7ed729a50657b12f533d72086563a67a98e8f5ce7afdc9947b52146e76e22b157 +doccontainersize 299600 +doccontainerchecksum c343842bcc03981c1814f5cffa2ba3eacc2e6abb5673ba700859406869a2398518e9abf02e159f4d92bf91383c3a6cdaa9f5720adaec81715fa30f4b8f36ff9d docfiles size=74 - RELOC/doc/latex/delim/README - RELOC/doc/latex/delim/delim.pdf + RELOC/doc/latex/delim/README details="Readme" + RELOC/doc/latex/delim/delim.pdf details="Package documentation" +srccontainersize 3548 +srccontainerchecksum 8ff42847f918ab8d65eca86ee8daadd14ee138f984e06e1c4d66704ab4b6c53c1271b23aeb33003f9a7489e22e29850711efce99459f10764150742854570034 srcfiles size=4 RELOC/source/latex/delim/delim.dtx RELOC/source/latex/delim/delim.ins +runfiles size=1 + RELOC/tex/latex/delim/delim.sty +catalogue-also delimseasy catalogue-ctan /macros/latex/contrib/delim -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics maths catalogue-version 1.0 +name delimseasy +category Package +revision 39589 +shortdesc Delimiter commands that are easy to use and resize +relocated 1 +longdesc This package provides commands to give a consistent, +longdesc easy-to-remember, easy to edit way to control the size and +longdesc blackness of delimiters: append 1-4 "b"s to command for larger +longdesc sizes; prepend "B" for for boldface. These commands reduce the +longdesc likelihood of incomplete delimeter pairs and typically use +longdesc fewer characters than the LaTeX default. +containersize 4816 +containerchecksum 7f9b1d77e9b9bdc6e5c45ed3c38606fb0d65113f7303e03f591c1b84aa83748d72fb8ecde0cd0c7b19d1bc9fcb454834e156429fd9080660aec77ddfd7b53e42 +doccontainersize 233368 +doccontainerchecksum bc9c1ff757a9d98ff9b84993cedb62ee024d0f4aafee301db0d862be3d45c76d8d164d2d3099ae37d41017316282db1e7882330dd10de43a9539ba0b10e86b08 +docfiles size=61 + RELOC/doc/latex/delimseasy/README.txt details="Readme" + RELOC/doc/latex/delimseasy/delimseasyMan.pdf details="Package documentation" + RELOC/doc/latex/delimseasy/delimseasyMan.tex +runfiles size=7 + RELOC/tex/latex/delimseasy/delimseasy.sty +catalogue-also delim +catalogue-ctan /macros/latex/contrib/delimseasy +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 2.0 + +name delimset +category Package +revision 49544 +shortdesc Typeset and declare sets of delimiters with convenient size control +relocated 1 +longdesc delimset is a LaTeX2e package to typeset and declare sets of +longdesc delimiters in math mode whose size can be adjusted +longdesc conveniently. +containersize 2016 +containerchecksum 5c19bda2a87de91ac1d32981198ce7718d490184d4d65dade231b66c3f46621af91dbeb89bb79ba1370fd82a0527d01d0aa7cd9dddeea818e8c4b4380a7b63ed +doccontainersize 319324 +doccontainerchecksum 9e671fa601b878187b5b3ae1a47feffb6c451fd42f202f948a87b02f35385b47239947a3e91260e699c64c453df161d9ae734fa3a8e241b0e47056181fefc46c +docfiles size=83 + RELOC/doc/latex/delimset/README.txt details="Readme" + RELOC/doc/latex/delimset/delimset.pdf details="Package documentation" + RELOC/doc/latex/delimset/dlmssamp.tex +srccontainersize 11440 +srccontainerchecksum d5618af6db29684ddd58164c9f55fbee73417d6968550361d7277558de98e621e2d1233b593c87860ccd8f7beb66a3c2369518736e14c86472d77425d6499869 +srcfiles size=12 + RELOC/source/latex/delimset/delimset.dtx + RELOC/source/latex/delimset/delimset.ins +runfiles size=2 + RELOC/tex/latex/delimset/delimset.sty +catalogue-also delim delimseasy +catalogue-ctan /macros/latex/contrib/delimset +catalogue-date 2018-12-30 15:38:52 +0100 +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 1.1 + name delimtxt category Package revision 16549 -shortdesc Read and parse text tables. +shortdesc Read and parse text tables relocated 1 longdesc This experimental package can read and parse text tables longdesc delimited by user-defined tokens (e.g., tab). It can be used longdesc for serial letters and the like, making it easier to export the longdesc data file from MS-Excel/MS-Word -runfiles size=2 - RELOC/tex/latex/delimtxt/delimtxt.sty +containersize 2040 +containerchecksum 25332ff7d2602047938630668c849829844fcbd622f911542bccd59d2eb1293e406cc79aca08ac3acaa98828b4a6fa4da98feb08fdf678ad3863c70cc2fc1817 +doccontainersize 44696 +doccontainerchecksum cd9363d8d44309c2ca51431bae067d87c790180eb884888144cd089cc9c14f83e1e7ea2389650d547e47d4575755a5b6b369e82b76cc19150b1dc973e99109fe docfiles size=20 - RELOC/doc/latex/delimtxt/delimtxt.pdf + RELOC/doc/latex/delimtxt/delimtxt.pdf details="Package documentation" RELOC/doc/latex/delimtxt/resulta.dat RELOC/doc/latex/delimtxt/resultb.dat RELOC/doc/latex/delimtxt/resultc.dat RELOC/doc/latex/delimtxt/test1.tex RELOC/doc/latex/delimtxt/test2.tex RELOC/doc/latex/delimtxt/test3.tex +srccontainersize 3764 +srccontainerchecksum 487557d866b99ec0fed6d9bf18c4bdaffa4ad6a8294cd2e9c681a4f65fbba051a97577b82e7170464daf4eb9f154e66478f46512331e1f4f41b48e61d65a86a3 srcfiles size=4 RELOC/source/latex/delimtxt/delimtxt.dtx RELOC/source/latex/delimtxt/delimtxt.ins +runfiles size=2 + RELOC/tex/latex/delimtxt/delimtxt.sty catalogue-ctan /macros/latex/exptl/delimtxt -catalogue-date 2012-11-14 11:01:29 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl - -name de-macro -category Package -revision 26355 -shortdesc Expand private macros in a document. -longdesc De-macro is a Python script that helps authors who like to use -longdesc private LaTeX macros (for example, as abbreviations). A -longdesc technical editor or a cooperating author may balk at such a -longdesc manuscript; you can avoid manuscript rejection misery by -longdesc running de-macro on it. De-macro will expand macros defined in -longdesc \(re)newcommand or \(re)newenvironment commands, within the -longdesc document, or in the document's "private" package file. -depend de-macro.ARCH -runfiles size=9 - texmf-dist/scripts/de-macro/de-macro -docfiles size=15 - texmf-dist/doc/support/de-macro/README - texmf-dist/doc/support/de-macro/user-guide.pdf - texmf-dist/doc/support/de-macro/user-guide.tex -catalogue-ctan /support/de-macro -catalogue-date 2012-06-19 16:44:25 +0200 -catalogue-license other-free -catalogue-version 1.3 - -name de-macro.i386-linux -category Package -revision 17399 -shortdesc i386-linux files of de-macro -binfiles arch=i386-linux size=1 - bin/i386-linux/de-macro +catalogue-topics foreign-import name denisbdoc category Package -revision 37170 +revision 42829 shortdesc A personal dirty package for documenting packages relocated 1 longdesc A personal dirty package for documenting packages. -runfiles size=8 - RELOC/tex/latex/denisbdoc/denisbdoc.sty -docfiles size=2 - RELOC/doc/latex/denisbdoc/README - RELOC/doc/latex/denisbdoc/README.txt -srcfiles size=13 +containersize 13056 +containerchecksum c713ac155e390d3fc75549fb7ff6e3ba13ebf3b3b1a0c001dd39f6300fe2b55ec232221d5aa07b84c87ab7daa971504c20e5f08f033ef5d36dcf9af097128b74 +doccontainersize 1148 +doccontainerchecksum 561342a0807ca00550410463755c0a348c97e2ededdfe7e6b55c99e34b8a93928167b33e1ec0a7529de6280ee5cdc4001f051234b9c4eec9c41bc2c560bad62c +docfiles size=3 + RELOC/doc/latex/denisbdoc/README.md details="Readme" + RELOC/doc/latex/denisbdoc/denisbdoc-chng.xdy + RELOC/doc/latex/denisbdoc/denisbdoc.xdy +srccontainersize 19100 +srccontainerchecksum e6c27403b1b6603aeea35582f91348a65a5466679a51da2926be278947415f7bb16104220891c3322423115aa973f66ef820462eec7b8680d6020c8364080c52 +srcfiles size=19 RELOC/source/latex/denisbdoc/denisbdoc.dtx RELOC/source/latex/denisbdoc/denisbdoc.ins +runfiles size=13 + RELOC/tex/latex/denisbdoc/denisbdoc.sty catalogue-ctan /macros/latex/contrib/denisbdoc -catalogue-date 2015-05-03 15:13:07 +0200 +catalogue-date 2017-01-01 22:02:36 +0100 catalogue-license lppl1.3 -catalogue-version 0.1 +catalogue-topics doc-supp +catalogue-version 0.7 name detex category TLCore -revision 37078 -shortdesc Strip TeX from a source file. +revision 50602 +shortdesc Strip TeX from a source file longdesc Detex is a program to remove TeX constructs from a text file. longdesc It recognizes the \input command. The program assumes it is longdesc dealing with LaTeX input if it sees the string \begin{document} longdesc in the text. In this case, it also recognizes the \include and longdesc \includeonly commands. depend detex.ARCH -docfiles size=4 +containersize 560 +containerchecksum cd2e97f09a80642c52b2ea02b8bc9f81651de23ede8c5425a6f37400191d68a6f1c25ef451d4048a2b2cb4b263fb8bab91ef5649d8102396c98a5d4761db1d7e +doccontainersize 21816 +doccontainerchecksum 60a69f4447b51dc7c2b8a15d2027a30dfb47fea82713617f0d4699109711fdf507ed6d2b7dd950ae8afd89b838903db4f94ea5b91755cb1f53feeb433939f5b4 +docfiles size=8 texmf-dist/doc/man/man1/detex.1 texmf-dist/doc/man/man1/detex.man1.pdf +catalogue-contact-home http://www.cs.purdue.edu/homes/trinkle/detex/ catalogue-ctan /support/detex -catalogue-date 2012-05-07 22:13:48 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license other-free +catalogue-topics plain-text + +name detex.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of detex +containersize 41844 +containerchecksum 70921e0361952d887762b6ba9319e5556a8efc41b7c16cdc0ed863025ea259efd4bcef7b29e529ddd9f5ce1c4d7b5afcbeaecf8b5636953f4c86389d7b49a80f +binfiles arch=aarch64-linux size=29 + bin/aarch64-linux/detex + +name detex.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of detex +containersize 47428 +containerchecksum d0cfea6ee42e075210a8ab0faefe3ee207245650b8a379b6a93a7f0f52ae5be0fe56f12dca3dc59383d55297897bb4e25f2da34cf2ad17e1d4d608f3a91f7066 +binfiles arch=amd64-freebsd size=29 + bin/amd64-freebsd/detex + +name detex.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of detex +containersize 43828 +containerchecksum 0bc8d0946da869c93efc26729faff468118394db01bef27914bafa7f989d16b1cba7f759a453bd4c841079b3cb9a2e237f9725ffaeea24729cb5ff41db1a285d +binfiles arch=amd64-netbsd size=34 + bin/amd64-netbsd/detex + +name detex.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of detex +containersize 40860 +containerchecksum b3f731cf631f2ad9c996b164e241a6c720224ebdb7f583b66e5c38a017f26151911ba051d6fb7d3ee40fb8557d018587f09b9775b3c1195beb2beeb90df08b3f +binfiles arch=armhf-linux size=27 + bin/armhf-linux/detex + +name detex.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of detex +containersize 19132 +containerchecksum 4a8c8e28293acba4e2731ef574e81070ead749ea60bd16573554125b6a2800f041669b0b217b53167d7c1c05fbbbc35d6df857c457e476a31d90b7505708c482 +binfiles arch=i386-cygwin size=15 + bin/i386-cygwin/detex.exe + +name detex.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of detex +containersize 40912 +containerchecksum efe3f649e5ae59bf9c95ed3edfe61ce82a8a2c0fabb6401ab235dabb3dbd4264e5541c7a78f99513a104524bff2a7645e730baad26fc776b0b1af0c3a8adb757 +binfiles arch=i386-freebsd size=24 + bin/i386-freebsd/detex name detex.i386-linux category TLCore -revision 36790 +revision 50281 shortdesc i386-linux files of detex -binfiles arch=i386-linux size=36 +containersize 49820 +containerchecksum 17c27ea1eb326efb2fc292a5ed30aa9a3a75bb4408ef301365354999c181c3d0a424716fd6ad3f1e0574ea6f137b9f5759c704b77ea36e48f7f88aac86687a5f +binfiles arch=i386-linux size=32 bin/i386-linux/detex -name detlev-cm -category Package -revision 38288 -relocated 1 -runfiles size=5 - RELOC/tex/latex/detlev-cm/beamercolorthemeETII.sty - RELOC/tex/latex/detlev-cm/beamerfontthemeDetlevCM.sty - RELOC/tex/latex/detlev-cm/beamerouterthemeDetlevCM.sty - RELOC/tex/latex/detlev-cm/beamerthemeDetlevCM.sty -docfiles size=360 - RELOC/doc/latex/detlev-cm/LogoTop.png - RELOC/doc/latex/detlev-cm/README.txt - RELOC/doc/latex/detlev-cm/SAS-CRJ900.png - RELOC/doc/latex/detlev-cm/Wing.png - RELOC/doc/latex/detlev-cm/WingSunrise.png - RELOC/doc/latex/detlev-cm/beamer-theme-detlevcm.pdf - RELOC/doc/latex/detlev-cm/beamer-theme-detlevcm.tex - -name devnag +name detex.i386-netbsd category TLCore -revision 26313 -catalogue devanagari -shortdesc Typeset Devanagari. -longdesc Frans Velthuis' preprocessor for Devanagari text, and fonts and -longdesc macros to use when typesetting the processed text. The macros -longdesc provide features that support Sanskrit, Hindi, Marathi, Nepali, -longdesc and other languages typically printed in the Devanagari script. -longdesc The package provides fonts, in both Metafont and Type 1 -longdesc formats. Users of modern TeX distributions may care to try the -longdesc XeTeX based package, which is far preferable for users who can -longdesc type Unicode text. -depend devnag.ARCH -catalogue-ctan /language/devanagari/velthuis -catalogue-date 2013-12-13 11:15:58 +0100 -catalogue-license gpl -catalogue-version 2.15.1 - -name devnag.i386-linux +revision 50171 +shortdesc i386-netbsd files of detex +containersize 40072 +containerchecksum 854828dd5438ef8afa94027cdb20948b5897e74c0a7d8148b6af1e6bcc371f9ee54448a55a06a0abc8692c713aed8fae1e2a629ef80ea118e6819e413d0858da +binfiles arch=i386-netbsd size=31 + bin/i386-netbsd/detex + +name detex.i386-solaris category TLCore -revision 36790 -shortdesc i386-linux files of devnag -binfiles arch=i386-linux size=8 - bin/i386-linux/devnag +revision 50150 +shortdesc i386-solaris files of detex +containersize 47412 +containerchecksum c3deec18ab8541fa1fcb6563226baa1ddcb55323ac4472d94c6a7a844ebd1e9229963b36af14dbd853c410c6eb5df377bd545e73c54828c25b62d440cbe43326 +binfiles arch=i386-solaris size=31 + bin/i386-solaris/detex + +name detex.win32 +category TLCore +revision 50155 +shortdesc win32 files of detex +containersize 17224 +containerchecksum dbe3b716eadbea7a6bbc666d621a4142eba83341c06862d5b14ebef9078e27c3c60f92bf3dd9e9374a2423150e3eaafdd16e60a12548df9237300c8ec20b3781 +binfiles arch=win32 size=10 + bin/win32/detex.exe + +name detex.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of detex +containersize 21628 +containerchecksum 3fde18d355b6311ffedde79953f81ef19b022bea22e7ae7f386d29ca074c4c52fe167e0c612f9ed7981d0df51d5245ec7c3ffcbe2d7a8ffb5e6476abbca3b375 +binfiles arch=x86_64-cygwin size=15 + bin/x86_64-cygwin/detex.exe + +name detex.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of detex +containersize 46876 +containerchecksum 2e846d894c2197b9c985794356e791c2888879c42eb7f4dd89fa0d3d412bb94dd41541c1a90bc6dac74e94004cdef106f7f4367a13fdb84d13fd95050535ae96 +binfiles arch=x86_64-darwin size=28 + bin/x86_64-darwin/detex + +name detex.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of detex +containersize 45320 +containerchecksum 7ecac5893a61ab2befaa0eb7df4cf09cebfba8f4f49b619d3709b3c17b822d4f64d44bfb6bc2bd7ad3c9fa8842f04eeab7a40e56e98fb12bc308e17a01b9c144 +binfiles arch=x86_64-darwinlegacy size=27 + bin/x86_64-darwinlegacy/detex + +name detex.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of detex +containersize 49484 +containerchecksum 50940edfef07d7f519582d737820c624803f7caa538d7445316a064d3851fe2f9e461515ec5897afe584fdfad96f271a14097f94d5c95a17b1ce2d4fb15f838c +binfiles arch=x86_64-linux size=30 + bin/x86_64-linux/detex + +name detex.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of detex +containersize 51268 +containerchecksum 20806aa20b0a41c7f1864a180245db2df72042d511724ba90cf2c74afdfaf7f882e834eb78eb8af616051caaa42502a1d25ea9d8f49a68811c898e4d422b473d +binfiles arch=x86_64-linuxmusl size=32 + bin/x86_64-linuxmusl/detex + +name detex.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of detex +containersize 52880 +containerchecksum f54946faf3f03a800f0a1b746dd664d92b16058e7e6130d4963cec0bba35d043c57debae3464dc32a53b60ca4b15fe936f98268ade46b7fe658c083f52ac8d2a +binfiles arch=x86_64-solaris size=34 + bin/x86_64-solaris/detex name dhua category Package revision 24035 -shortdesc German abbreviations using thin space. +shortdesc German abbreviations using thin space relocated 1 longdesc The package provides commands for those abbreviations of German longdesc phrases for which the use of thin space is recommended. Setup @@ -46322,27 +78849,35 @@ longdesc mehrgliedrige Abkurzungen bereit, fur die schmale Leerzeichen longdesc (Festabstande) empfohlen werden (Duden, Wikipedia). In die longdesc englische Paketdokumentation sind deutsche Erlauterungen longdesc eingestreut. -runfiles size=4 - RELOC/tex/latex/dhua/dhua.cfg - RELOC/tex/latex/dhua/dhua.sty +containersize 4708 +containerchecksum c6e6187bdfc80cec3ce092a4dd3605055f3ad67ff49777bf0948af128c8b48118247ed9ca6f5feb1a69d32719f81968d8259794082a28277796eb6beccf9cedb +doccontainersize 323640 +doccontainerchecksum a2f9f61ed61c5476d5f70fdfe59a451e7b3cafd3412336c5767b53b0157416149ee9ae924834f8a05beaedabb9e4a8dd3e4dbcb2f17b733af113c0a8085e363c docfiles size=90 - RELOC/doc/latex/dhua/README + RELOC/doc/latex/dhua/README details="Readme" RELOC/doc/latex/dhua/README.pdf RELOC/doc/latex/dhua/SrcFILEs.txt - RELOC/doc/latex/dhua/dhua.pdf + RELOC/doc/latex/dhua/dhua.pdf details="Package documentation" +srccontainersize 3096 +srccontainerchecksum ff72f267dcbd05830664f9ebc328fa1b6b80eb579627c5ae78965b47b8b8605ddf33c6b6a9b343774b2944d985afc9a9816924f23e8e7ec9fbc807f00bddb143 srcfiles size=4 RELOC/source/latex/dhua/README.tex RELOC/source/latex/dhua/dhua.tex RELOC/source/latex/dhua/srcfiles.tex +runfiles size=4 + RELOC/tex/latex/dhua/dhua.cfg + RELOC/tex/latex/dhua/dhua.sty +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html catalogue-ctan /macros/latex/contrib/dhua -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-05-05 20:35:46 +0200 catalogue-license lppl1.3 +catalogue-topics shortcut german catalogue-version 0.11 name diadia category Package revision 37656 -shortdesc Package to keep a diabetes diary. +shortdesc Package to keep a diabetes diary longdesc The diadia package allows you to keep a diabetes diary. longdesc Usually, this means keeping record of certain medical values longdesc like blood sugar, blood pressure, pulse or weight. It might @@ -46354,199 +78889,385 @@ longdesc typesets formatted tables and derived plots. Furthermore, it longdesc supports medication charts and info boxes. Supported languages: longdesc English, German. Feel free to provide other translation files! depend diadia.ARCH -runfiles size=10 - texmf-dist/scripts/diadia/diadia.lua - texmf-dist/tex/latex/diadia/diadia-english.trsl - texmf-dist/tex/latex/diadia/diadia-fallback.trsl - texmf-dist/tex/latex/diadia/diadia-german.trsl - texmf-dist/tex/latex/diadia/diadia.cfg - texmf-dist/tex/latex/diadia/diadia.sty +containersize 6364 +containerchecksum 55a246d4e3ab86d6300210d830ce464a935bb83c9ffd29b5387f0a56f5c82d4c5a71cf107f78ffe0cde07f17897e2f949acf1fe70da9da7c7992b330a07b1c68 +doccontainersize 452484 +doccontainerchecksum e7487bb47fbe8aee714304150c00866780782a9ad32bf6ccbb02799aeb251345ce1cf042e8b4d7b4011083a3be2fe3b16b78f25a4a4206d173ac1384716592ab docfiles size=143 texmf-dist/doc/latex/diadia/201502.dat texmf-dist/doc/latex/diadia/201503.dat texmf-dist/doc/latex/diadia/201504.dat - texmf-dist/doc/latex/diadia/README + texmf-dist/doc/latex/diadia/README details="Readme" texmf-dist/doc/latex/diadia/ddbsl1avg.dat - texmf-dist/doc/latex/diadia/diadia-example.pdf + texmf-dist/doc/latex/diadia/diadia-example.pdf details="Example of use" texmf-dist/doc/latex/diadia/diadia-example.tex texmf-dist/doc/latex/diadia/diadia.dat texmf-dist/doc/latex/diadia/diadia.dtx - texmf-dist/doc/latex/diadia/diadia.pdf + texmf-dist/doc/latex/diadia/diadia.pdf details="PDF file" texmf-dist/doc/latex/diadia/hba1c.dat texmf-dist/doc/latex/diadia/makefile texmf-dist/doc/latex/diadia/manifest.txt +runfiles size=10 + texmf-dist/scripts/diadia/diadia.lua + texmf-dist/tex/latex/diadia/diadia-english.trsl + texmf-dist/tex/latex/diadia/diadia-fallback.trsl + texmf-dist/tex/latex/diadia/diadia-german.trsl + texmf-dist/tex/latex/diadia/diadia.cfg + texmf-dist/tex/latex/diadia/diadia.sty +catalogue-contact-repository https://bitbucket.org/kleberj/diadia/ catalogue-ctan /macros/latex/contrib/diadia -catalogue-date 2015-06-12 07:44:45 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl catalogue-topics data-disp catalogue-version 1.1 +name diadia.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of diadia +containersize 340 +containerchecksum 7ca7e37befad77795a78ed9491bc8e2250dab52dcb61bf45559809884a80b249cb380f6343dfcf0d68b42fc9dcb214afc3cec84bd98700622387edf9586f7da0 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/diadia + +name diadia.amd64-freebsd +category Package +revision 37645 +shortdesc amd64-freebsd files of diadia +containersize 340 +containerchecksum 9e7e6cf2faf4071dce95107463506d944c37aafcab534ea73aa4e7c390d75dace6bb815329ed408c7fa49325e05778fb997309b81207c91b6f448d9bc5468384 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/diadia + +name diadia.amd64-netbsd +category Package +revision 37645 +shortdesc amd64-netbsd files of diadia +containersize 340 +containerchecksum ad32f62ba00d18f1423b22fb3d097336684b380cff59465d89d7662d8fa123e51bf0dda9b914ef5371a19ea09211e96203f21c004ab1c04912652c005d8f3fce +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/diadia + +name diadia.armhf-linux +category Package +revision 37645 +shortdesc armhf-linux files of diadia +containersize 336 +containerchecksum 99917459e2b88adf62d351b023085da2998f9ed42e1e4b3bc6747b79c043ba9300a6cda8e3c68f4a5c6b6d198b2b3df0d990dcca162e996b52c45e67ddb24b4a +binfiles arch=armhf-linux size=1 + bin/armhf-linux/diadia + +name diadia.i386-cygwin +category Package +revision 37645 +shortdesc i386-cygwin files of diadia +containersize 336 +containerchecksum c2dc12c140591b988047199e0d1ee3c0afb64b65b94741465f4915d1a14fffae5d87264255bebe6fa11d9c65d5b7fa01438aef1a0e4badcd7c7709c42023b8ad +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/diadia + +name diadia.i386-freebsd +category Package +revision 37645 +shortdesc i386-freebsd files of diadia +containersize 340 +containerchecksum 1b6415f0333f9c21e421f2eee66e774540276e7a6d9fe9f972b21889382c3c419af0c49500a7e867a1efae58c6d91022021b5f2aa78b8a192985a474adddf032 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/diadia + name diadia.i386-linux category Package revision 37645 shortdesc i386-linux files of diadia +containersize 340 +containerchecksum ee202753f8d73110ed0aaa333b3fa20d21023def204e052042e6494b4697bb261f59702da9ac9ec28a0c9a6732317de0d2b200c36e3406148281c9e2e3185f1c binfiles arch=i386-linux size=1 bin/i386-linux/diadia +name diadia.i386-netbsd +category Package +revision 37645 +shortdesc i386-netbsd files of diadia +containersize 340 +containerchecksum 41a3e529f869751bef819ed78c59f2847cda0b60dec36b416a214f478b038b885a24094ff7e644689b189f7d8521ff70aefc617475e72c2a2d9b0f444cdb87ee +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/diadia + +name diadia.i386-solaris +category Package +revision 37645 +shortdesc i386-solaris files of diadia +containersize 340 +containerchecksum 3e6a9ca11a89df8fa5a7f119b2f67eb6f961e18bb2594531c34090a948a611dcdf1dc876f39b6134576933b3093ac3d3b0d6c0ce7da571b278e9bb54ec6dc619 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/diadia + +name diadia.win32 +category Package +revision 37645 +shortdesc win32 files of diadia +containersize 680 +containerchecksum 6b7bf08087ff7450879d0bb7373cfb4753dcedf9f2c6af0c046ae29dacbbb13973260c585cd6721e007510b6f37c6a9b0921451aaf146ca6ceae18f2cebd9ecc +binfiles arch=win32 size=1 + bin/win32/diadia.exe + +name diadia.x86_64-cygwin +category Package +revision 37645 +shortdesc x86_64-cygwin files of diadia +containersize 340 +containerchecksum 3c59703da4a2b7901558c23687d7ce24c13fecea08ab0f17d9b1e2095ab8022b06f4c75cfc6d3aea0625c87d9d56ba577765721532ccaa7a0067c0d2481650ea +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/diadia + +name diadia.x86_64-darwin +category Package +revision 37645 +shortdesc x86_64-darwin files of diadia +containersize 340 +containerchecksum e1e796de0645f495841f91ef033d338bcec3778c6ccc494d3c9ab9c654670bee9f378bbd4f8a00571d37965f35f2d593a3d5a6bc087da73e1c7589d8827dd632 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/diadia + +name diadia.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of diadia +containersize 348 +containerchecksum 45ab9db5153bbdc32aad99c07ef6c414bd78b7538bce74280b1430696828308a39214f80d4ff8b88955cb2b8a4888c0236d23becea6b9a3b83f0311f259c5644 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/diadia + +name diadia.x86_64-linux +category Package +revision 37645 +shortdesc x86_64-linux files of diadia +containersize 340 +containerchecksum a0b06858ace3358a1869cc83306e745e3b9b1f6a44918f83217046441f6b98fc6ee12e6323bb791c3c06dbcb5a3b6c87826f9d97b0a71507831b69e0fc601ac2 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/diadia + +name diadia.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of diadia +containersize 344 +containerchecksum f8073c1331fecc8718fb45889ab4f6c77b19e29843f84a4cceafcce19bc75e6de215efb4d25f4e9c7f121bec4970d29851d6e38df4276d161ac3943037eba00d +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/diadia + +name diadia.x86_64-solaris +category Package +revision 37645 +shortdesc x86_64-solaris files of diadia +containersize 340 +containerchecksum 56c8abc55ec61f223f4fe089602ec6f09d71fe0a89fa9749737203fcfbed6ac81e0f19905c73c7ba5266e7244bd22f4752b5b75705926bceffa3dc9fcba0be45 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/diadia + name diagbox category Package -revision 24646 -shortdesc Table heads with diagonal lines. +revision 42843 +shortdesc Table heads with diagonal lines relocated 1 longdesc The package's principal command, \diagbox, takes two arguments longdesc (texts for the slash-separated parts of the box), and an longdesc optional argument with which the direction the slash will go, -longdesc and the box dimensions, etc., may vbe controlled. The package -longdesc also provides \slashbox and \backslashbox commands for -longdesc compatibility with the slashbox package, which it supersedes. -runfiles size=2 - RELOC/tex/latex/diagbox/diagbox.sty -docfiles size=39 - RELOC/doc/latex/diagbox/diagbox.pdf -srcfiles size=8 +longdesc the box dimensions, etc., may be controlled. The package also +longdesc provides \slashbox and \backslashbox commands for compatibility +longdesc with the slashbox package, which it supersedes. diagbox depends +longdesc on e-TeX as well as the packages array, calc, fp, keyval, and +longdesc pict2e. +containersize 2748 +containerchecksum d1a45837a94efb7361d7f0df518170263d9ade42110c95554531e3e877e328f2918e63679220125c6803e2338c9095ace5143a1f56fa154b75fdf7e0b539dbc1 +doccontainersize 274456 +doccontainerchecksum e986ab45e44315739a02a48489076be1ecc4d19bce3f3f7689a58c78fa1d63b4375955f82ca4e6f9cce51b10c14a14068ef88171dcba9bcef4e962fee1a153ce +docfiles size=70 + RELOC/doc/latex/diagbox/README details="Readme" + RELOC/doc/latex/diagbox/diagbox.pdf details="Package documentation (English and Chinese)" +srccontainersize 10188 +srccontainerchecksum 946f732d453692d9e16aaa8a48c862bd8f904d7ec23a1c51a419582feef30b57f3e864aae344598a9ce610ced52034a1034bc8542f35881b642a284001c330ae +srcfiles size=11 RELOC/source/latex/diagbox/diagbox.dtx RELOC/source/latex/diagbox/diagbox.ins +runfiles size=3 + RELOC/tex/latex/diagbox/diagbox.sty +catalogue-contact-repository https://github.com/leo-liu/tex-pkg catalogue-ctan /macros/latex/contrib/diagbox -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics table +catalogue-version 2.2 name diagmac2 category Package revision 15878 -shortdesc Diagram macros, using pict2e. +shortdesc Diagram macros, using pict2e relocated 1 longdesc This is a development of the long-established diagmac package, longdesc using pict2e so that the restrictions on line direction are longdesc removed. -runfiles size=11 - RELOC/tex/latex/diagmac2/diagmac2.sty +containersize 11188 +containerchecksum 553d3610ef7bba5bf669040cfe6b51b26718b9f04835413d43c3f8a018a8a37274b445bbdbaa4a512aaefc8327f6a2c7abd8d754b3d8cbd4687c9c518265ad09 +doccontainersize 208604 +doccontainerchecksum 37952cbaa4c20180a2d09455c748b245927245c40093510a79fa0461e5836197d8bc05bdc3cf5c7bafa72c54cb503fa9722d7a8ff9a0630ad1b5e8382b4029d2 docfiles size=75 - RELOC/doc/latex/diagmac2/README - RELOC/doc/latex/diagmac2/doc/diagmac2.pdf + RELOC/doc/latex/diagmac2/README details="Readme" + RELOC/doc/latex/diagmac2/doc/diagmac2.pdf details="Package documentation" RELOC/doc/latex/diagmac2/doc/diagmac2.tex - RELOC/doc/latex/diagmac2/doc/diagmactest.pdf + RELOC/doc/latex/diagmac2/doc/diagmactest.pdf details="Example output" RELOC/doc/latex/diagmac2/doc/diagmactest.tex +runfiles size=11 + RELOC/tex/latex/diagmac2/diagmac2.sty catalogue-ctan /macros/latex/contrib/diagmac2 -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics diagram-comm graphics-in-tex catalogue-version 2.1 name diagnose category Package revision 19387 -shortdesc A diagnostic tool for a TeX installation. +shortdesc A diagnostic tool for a TeX installation relocated 1 longdesc Provides macros to assist evaluation of the capabilities of a longdesc TeX installation (i.e., what extensions it supports). An longdesc example document that examines the installation is available. -runfiles size=1 - RELOC/tex/latex/diagnose/diagnose.sty +containersize 1008 +containerchecksum 91fd8eb4b7d896f27c15c2b3b2a0a9bc839bb736a1fa053d47896c6b989729c3dc3a644ad59f6b3bd4164c150034f6ede5d52b680fb1c8cea6838dc70713f654 +doccontainersize 66784 +doccontainerchecksum f3e7152e656ee4c5f6ac28205b1dd5e9c0cf19c3d9400e2c40c8d8e9fecbcbc01cb1f7a36534849b6ba26f222f9547e3d669114a7d8923645528b7150cd10de4 docfiles size=29 RELOC/doc/latex/diagnose/INSTALL - RELOC/doc/latex/diagnose/README - RELOC/doc/latex/diagnose/diagnose.pdf + RELOC/doc/latex/diagnose/README details="Package Readme" + RELOC/doc/latex/diagnose/diagnose.pdf details="Package documentation" RELOC/doc/latex/diagnose/diagnose.tex RELOC/doc/latex/diagnose/mls-diag.tex +runfiles size=1 + RELOC/tex/latex/diagnose/diagnose.sty catalogue-ctan /macros/latex/contrib/diagnose -catalogue-date 2012-06-19 16:44:25 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics install-mgmt catalogue-version 0.2 name dialogl category Package revision 28946 -shortdesc Macros for constructing interactive LaTeX scripts. +shortdesc Macros for constructing interactive LaTeX scripts relocated 1 longdesc Gathers together a bunch of code and examples about how to longdesc write macros to carry on a dialogue with the user. -runfiles size=29 - RELOC/tex/latex/dialogl/dialog.sty - RELOC/tex/latex/dialogl/grabhedr.sty - RELOC/tex/latex/dialogl/listout.tex - RELOC/tex/latex/dialogl/menus.sty +containersize 21920 +containerchecksum 68fb25b66499e289c7615fda04fec859d2a3a6105ecb3bc69ecd0e5af8f87027e74170495fa587f21767028d9f423cf04e3d11768ea0581a7474e9a66d62882a +doccontainersize 721964 +doccontainerchecksum cc1fa10345fa089cd86ea4b0a638334c55c6a57cac3a9c549469cd52cff27b8eb3d349ce14d49de14fbb65f41d1887bf98e9c69081688703d8eef06e6324f684 docfiles size=192 RELOC/doc/latex/dialogl/Makefile - RELOC/doc/latex/dialogl/README + RELOC/doc/latex/dialogl/README details="Readme" RELOC/doc/latex/dialogl/cnvunits.tex - RELOC/doc/latex/dialogl/codialog.pdf + RELOC/doc/latex/dialogl/codialog.pdf details="Tugboat article, overhauled" RELOC/doc/latex/dialogl/default.los - RELOC/doc/latex/dialogl/dia-driv.pdf + RELOC/doc/latex/dialogl/dia-driv.pdf details="Package documentation" RELOC/doc/latex/dialogl/dia-driv.tex RELOC/doc/latex/dialogl/dialogl-doc.sty RELOC/doc/latex/dialogl/diatest.tex RELOC/doc/latex/dialogl/fontmenu.lg RELOC/doc/latex/dialogl/fontmenu.tex RELOC/doc/latex/dialogl/manifest.txt +srccontainersize 59740 +srccontainerchecksum 0a39faa751021dbfe7638f139e50689201f93d4490339af70b4ddd42a77cec252cffe7a18a5ddce43ce8dde7f9645dd088fbe9c6cbdc4efefa65280f70c54d23 srcfiles size=65 RELOC/source/latex/dialogl/dialogl.dtx RELOC/source/latex/dialogl/dialogl.ins RELOC/source/latex/dialogl/grabhedr.dtx RELOC/source/latex/dialogl/listout.dtx RELOC/source/latex/dialogl/menus.dtx +runfiles size=29 + RELOC/tex/latex/dialogl/dialog.sty + RELOC/tex/latex/dialogl/grabhedr.sty + RELOC/tex/latex/dialogl/listout.tex + RELOC/tex/latex/dialogl/menus.sty catalogue-ctan /macros/latex/contrib/dialogl -catalogue-date 2013-11-21 21:20:37 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics macro-supp name dice category Package revision 28501 -shortdesc A font for die faces. +shortdesc A font for die faces relocated 1 longdesc A Metafont font that can produce die faces in 2D or with longdesc various 3D effects. +containersize 3256 +containerchecksum 7ec762fccc174a13f2a84ee43aa49319548aa970f017cd17bca73add506ca270a6ac621f51ff96d47a4f5eadeafc89ecc44f1c99b31a2e76722e648519e1fd69 +doccontainersize 1236 +doccontainerchecksum 9c09c47b70e28e4c8ccffd4c75f8cac7942767279d0e01e543538ddf0ee70fe60cd15d1e3ddce27b56e1a9f865d5ad9b1794a875e41d131d763c11a3e0fb96ef +docfiles size=1 + RELOC/doc/fonts/dice/dice3d.tex runfiles size=6 RELOC/fonts/source/public/dice/dice3d.mf RELOC/fonts/tfm/public/dice/dice3d.tfm -docfiles size=1 - RELOC/doc/fonts/dice/dice3d.tex +catalogue-also epsdice catalogue-ctan /fonts/dice -catalogue-date 2013-11-21 21:20:37 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics graphics-use font font-mf name dichokey category Package revision 17192 -shortdesc Construct dichotomous identification keys. +shortdesc Construct dichotomous identification keys relocated 1 longdesc The package can be used to construct dichotomous identification longdesc keys (used especially in biology for species identification), longdesc taking care of numbering and indentation of successive key longdesc steps automatically. An example file is provided, which longdesc demonstrates usage. -runfiles size=2 - RELOC/tex/latex/dichokey/dichokey.sty +containersize 1956 +containerchecksum 8ed4f0010546af68390f93642cab4495226387fd7461383e32fd3dfa72867050d0da05ba90cb768c6893afeac9bfe55d23b7299ef4a76432e8d11252012b47a4 +doccontainersize 210124 +doccontainerchecksum 16a75d20463a0b0b508c2d50aa67a77999cab525e003704ab34663d1f0212c39432caab0e4df1c69b540be014bc86901031c7c8f647ff18ceda77dcef7239233 docfiles size=57 - RELOC/doc/latex/dichokey/dichokey.pdf + RELOC/doc/latex/dichokey/dichokey.pdf details="Package documentation" RELOC/doc/latex/dichokey/dichokey.tex - RELOC/doc/latex/dichokey/rhodocyb.pdf + RELOC/doc/latex/dichokey/rhodocyb.pdf details="Example of use" RELOC/doc/latex/dichokey/rhodocyb.tex +runfiles size=2 + RELOC/tex/latex/dichokey/dichokey.sty +catalogue-also identkey catalogue-ctan /macros/latex/contrib/dichokey -catalogue-date 2012-06-19 18:43:32 +0200 +catalogue-date 2018-10-29 07:40:45 +0100 catalogue-license pd +catalogue-topics biology name dickimaw category Package revision 32925 -shortdesc Books and tutorials from the "Dickimaw LaTeX Series". +shortdesc Books and tutorials from the "Dickimaw LaTeX Series" relocated 1 longdesc The package provides some of the books and tutorials that form longdesc part of the "Dickimaw LaTeX Series". Only the A4 PDF of each longdesc book is detailed here. Other formats, such as HTML or screen longdesc optimized PDF, are available from the package home page. Books longdesc included are: "LaTeX for Complete Novices": an introductory -longdesc guide to LaTeX. "Using LaTeX to Write a PhD Thesis": a follow- -longdesc on from "LaTeX for Complete Novices" geared towards students -longdesc who want to use LaTeX to write their PhD thesis. "Creating a -longdesc LaTeX minimal example": describes how to create a minimal -longdesc example, which can be used as a debugging aid when you +longdesc guide to LaTeX. "Using LaTeX to Write a PhD Thesis": a +longdesc follow-on from "LaTeX for Complete Novices" geared towards +longdesc students who want to use LaTeX to write their PhD thesis. +longdesc "Creating a LaTeX minimal example": describes how to create a +longdesc minimal example, which can be used as a debugging aid when you longdesc encounter errors in your LaTeX documents. +containersize 768 +containerchecksum 8e478160699ca5dd9c52ea7e6b0a7be491d0af44b3022c22797b02b9e6ba6ef67ce9dc35649d9a2ebb9b123e3fbcc02c0602271bd8049a12c4520a32a15d4ef3 +doccontainersize 6684412 +doccontainerchecksum 5ebe8605d1a4ebeb11896919c39aa736220e9ca247912b5655dbcadf03bfa45b4cdfe44ee6555bf8d5ecdaf63b0d2527d3d58ee6d7056a194a6a42f88ab0aa41 docfiles size=2142 RELOC/doc/latex/dickimaw/ERRATA - RELOC/doc/latex/dickimaw/README - RELOC/doc/latex/dickimaw/dickimaw-minexample.pdf - RELOC/doc/latex/dickimaw/dickimaw-novices.pdf - RELOC/doc/latex/dickimaw/dickimaw-thesis.pdf + RELOC/doc/latex/dickimaw/README details="Readme" + RELOC/doc/latex/dickimaw/dickimaw-minexample.pdf details="Creating a LaTeX minimal example" + RELOC/doc/latex/dickimaw/dickimaw-novices.pdf details="LaTeX for Complete Novices" + RELOC/doc/latex/dickimaw/dickimaw-thesis.pdf details="Using LaTeX to Write a PhD Thesis" RELOC/doc/latex/dickimaw/src/fdl.tex RELOC/doc/latex/dickimaw/src/minexample/dickimaw-minexample.tex RELOC/doc/latex/dickimaw/src/minexample/minexample.sty @@ -46703,9 +79424,11 @@ docfiles size=2142 RELOC/doc/latex/dickimaw/src/thesis/thesis-a4paper.sty RELOC/doc/latex/dickimaw/src/thesis/thesis-index.ist RELOC/doc/latex/dickimaw/src/thesis/thesis.bib +catalogue-contact-home http://www.dickimaw-books.com/latex/ catalogue-ctan /info/dickimaw -catalogue-date 2014-12-06 22:51:28 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license fdl +catalogue-topics tut-latex doc-debug name dictsym category Package @@ -46718,6 +79441,14 @@ longdesc the Unix or PC platforms. The font provides a number of symbols longdesc commonly used in dictionaries. The accompanying macro package longdesc makes the symbols accessible as LaTeX commands. execute addMap dictsym.map +containersize 31568 +containerchecksum 6195ea914b422d5bb1c098e3a8f103d91aaa94520bdff1f5a04d7c952f84f16b1aa96287dac4a309d8d72eabac65a5dbaca275abc211d9290266cfb8f5fcce3a +doccontainersize 19784 +doccontainerchecksum 935e67c0be73969b572146ccfc92ca42c15b3b5cf2cdfb596cf3ecb9368463b793d530221d2a7e90df18edd54b7938dd27d1ee00757b580c543ea59ddce5d277 +docfiles size=9 + RELOC/doc/fonts/dictsym/README details="Readme" + RELOC/doc/fonts/dictsym/dictsym.pdf details="Package documentation" + RELOC/doc/fonts/dictsym/dictsym.tex runfiles size=20 RELOC/fonts/afm/public/dictsym/dictsym.afm RELOC/fonts/map/dvips/dictsym/dictsym.map @@ -46725,13 +79456,45 @@ runfiles size=20 RELOC/fonts/type1/public/dictsym/dictsym.pfb RELOC/fonts/type1/public/dictsym/dictsym.pfm RELOC/tex/latex/dictsym/dictsym.sty -docfiles size=9 - RELOC/doc/fonts/dictsym/README - RELOC/doc/fonts/dictsym/dictsym.pdf - RELOC/doc/fonts/dictsym/dictsym.tex catalogue-ctan /fonts/dictsym -catalogue-date 2014-04-24 17:14:31 +0200 -catalogue-license lppl +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font font-symbol font-type1 linguistic + +name diffcoeff +category Package +revision 50320 +shortdesc Write differential coefficients easily and consistently +relocated 1 +longdesc diffcoeff.sty allows the easy and consistent writing of +longdesc ordinary, partial and other derivatives of arbitrary (algebraic +longdesc or numeric) order. For mixed partial derivatives, the total +longdesc order of differentiation is calculated by the package. Optional +longdesc arguments allow specification of points of evaluation (ordinary +longdesc derivatives), or variables held constant (partial derivatives), +longdesc and the placement of the differentiand (numerator or appended). +longdesc The package is built on xtemplate, allowing systematic +longdesc fine-tuning of the display and generation and use of variant +longdesc forms (like derivatives built from D, \Delta or \delta). A +longdesc command for differentials ensures the dx used in e.g. integrals +longdesc is consistent with the form used in derivatives. The package +longdesc requires the LaTeX3 bundles l3kernel and l3packages. +containersize 5996 +containerchecksum 5677888e02bba39b32d6b2e421adf69e7777e76552bc8a4a30e157a0a2f20d040a9638a382cc1df1542e6d62e1cbbbce015c864ac54ab5b1e98a092525900a1d +doccontainersize 615700 +doccontainerchecksum 66bf438f6a88309c58dc22df80992afcbbba5a25a23bd6726aff777e2d628bc11c423c24cc142569ec1c713af97c8575e409af96fb85e3ed1c04748ef407dfba +docfiles size=186 + RELOC/doc/latex/diffcoeff/README.txt details="Readme" + RELOC/doc/latex/diffcoeff/diffcoeff.pdf details="Package documentation" + RELOC/doc/latex/diffcoeff/diffcoeff.tex +runfiles size=7 + RELOC/tex/latex/diffcoeff/diffcoeff-doc.def + RELOC/tex/latex/diffcoeff/diffcoeff.sty +catalogue-ctan /macros/latex/contrib/diffcoeff +catalogue-date 2019-03-10 08:30:44 +0100 +catalogue-license lppl1.3c +catalogue-topics maths +catalogue-version 3.1 name digiconfigs category Package @@ -46743,61 +79506,104 @@ longdesc can be solved in terms of so-called "configurations". A longdesc configuration is basically a square matrix of \circ and \bullet longdesc symbols. This package provides a convenient and compact longdesc mechanism for displaying these configurations. -runfiles size=2 - RELOC/tex/latex/digiconfigs/digiconfigs.sty +containersize 2096 +containerchecksum a1d5cf0e93aa2722087a491d49c87c1b6c1dc863a39807f28dca198d4c52d8add42706f992ee91b6a42fdbf379293a2aaf3a21199094526c545f41002e8992d3 +doccontainersize 120640 +doccontainerchecksum 95e948491a51321671b15aab55dddd7c6b8bad78bc67bcc25db0970dc478d1bba898fc2efe44537a18d46f3fcc73bd2af600c4a74af4982e8de8a5fc0345a134 docfiles size=34 - RELOC/doc/latex/digiconfigs/README - RELOC/doc/latex/digiconfigs/digiconfigs.pdf + RELOC/doc/latex/digiconfigs/README details="Readme" + RELOC/doc/latex/digiconfigs/digiconfigs.pdf details="Package documentation" RELOC/doc/latex/digiconfigs/digiconfigs.tex +runfiles size=2 + RELOC/tex/latex/digiconfigs/digiconfigs.sty catalogue-ctan /macros/latex/contrib/digiconfigs -catalogue-date 2012-06-19 18:43:32 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics diagram catalogue-version 0.5 +name dijkstra +category Package +revision 45256 +shortdesc Dijkstra algorithm for LaTeX +relocated 1 +longdesc This small package uses the Dijkstra algorithm for weighted +longdesc graphs,directed or not: the search table of the shortest path +longdesc can be displayed, the minimum distance between two vertices and +longdesc the corresponding path are stored in macros. This packages +longdesc depends on simplekv. +containersize 4736 +containerchecksum 2b3d6d68c6e3eafd1c88eb44c8ab68f27dc77326ef43a34119679b0dc1c1c584db8568584956617354f359a52792c6a2c0104dddaa1ec389004dd673ca749136 +doccontainersize 376208 +doccontainerchecksum 96ed892f5c910421eb5cabe54c4a7c6caf4d9cc139ae7dfe454fac9e3275d3dab4690db877bbe8fa303523f38cc563611ee5270949a6d2fa8d7d2593c1bff06a +docfiles size=96 + RELOC/doc/latex/dijkstra/README details="Readme" + RELOC/doc/latex/dijkstra/dijkstra-fr.pdf details="Package documentation" language="fr" + RELOC/doc/latex/dijkstra/dijkstra-fr.tex +runfiles size=5 + RELOC/tex/latex/dijkstra/dijkstra.sty +catalogue-ctan /macros/latex/contrib/dijkstra +catalogue-date 2017-09-10 09:41:01 +0200 +catalogue-license lppl1.3c +catalogue-topics maths automata +catalogue-version 0.11 + name din1505 category Package revision 19441 -shortdesc Bibliography styles for German texts. +shortdesc Bibliography styles for German texts relocated 1 longdesc A set of bibliography styles that conformt to DIN 1505, and longdesc match the original BibTeX standard set (plain, unsrt, alpha and longdesc abbrv), together with a style natdin to work with natbib. +containersize 16420 +containerchecksum cb9b819eb69ce4870dd36da844b1d24e4f678ad05f43eabbe861e9de5b53258e45e70530ca76c0aa9fcf54232e8f33dc55623f94c1d9e5fc3dfc48481093c3cc +doccontainersize 2380 +doccontainerchecksum 4479f5ea1e1ade4bc7951d5722e397a688e75293da55ec57dd0f3d32add2bd551844da81336be0a77cc783e4c9af958be46501c4b78adbbf8a5463770b5cbb2c +docfiles size=4 + RELOC/doc/latex/din1505/README.TEXLIVE + RELOC/doc/latex/din1505/leitbild.bib + RELOC/doc/latex/din1505/natbib.cfg runfiles size=67 RELOC/bibtex/bst/din1505/abbrvdin.bst RELOC/bibtex/bst/din1505/alphadin.bst RELOC/bibtex/bst/din1505/natdin.bst RELOC/bibtex/bst/din1505/plaindin.bst RELOC/bibtex/bst/din1505/unsrtdin.bst -docfiles size=4 - RELOC/doc/latex/din1505/README.TEXLIVE - RELOC/doc/latex/din1505/leitbild.bib - RELOC/doc/latex/din1505/natbib.cfg +catalogue-also dinat catalogue-ctan /biblio/bibtex/contrib/german/din1505 -catalogue-date 2012-06-19 18:43:32 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics bibtex-sty name dinat category Package revision 15878 -shortdesc Bibliography style for German texts. +shortdesc Bibliography style for German texts relocated 1 longdesc Bibliography style files intended for texts in german. They longdesc draw up bibliographies in accordance with the german DIN 1505, longdesc parts 2 and 3. -runfiles size=11 - RELOC/bibtex/bst/dinat/dinat.bst +containersize 8828 +containerchecksum 0b22f43a5088f669820674b46af72e66f3f2714a36052bc7d18c334b202d0060fd07b1a608626adf183314d2380fad672baf58307ed83aaa888231e75c63b1c8 +doccontainersize 11468 +doccontainerchecksum f4491ab35e2ae8003faa8220e88c0abd2d970cc6b985d2baf993effd2ebe94a964ae8ece6db70a55f922abc83c91cce5f598ac2e722b5eb7e1584aee436e4393 docfiles size=9 - RELOC/doc/bibtex/dinat/dinat-index.html + RELOC/doc/bibtex/dinat/dinat-index.html details="Package documentation" language="de" RELOC/doc/bibtex/dinat/history.html +runfiles size=11 + RELOC/bibtex/bst/dinat/dinat.bst +catalogue-also din1505 catalogue-ctan /biblio/bibtex/contrib/german/dinat -catalogue-date 2012-06-19 18:43:32 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics bibtex-sty catalogue-version 2.5 name dinbrief category Package revision 15878 -shortdesc German letter DIN style. +shortdesc German letter DIN style relocated 1 longdesc Implements a document layout for writing letters according to longdesc the rules of DIN (Deutsches Institut fur Normung, German @@ -46809,41 +79615,62 @@ longdesc which the user can recognize what they are used for. In longdesc addition there are example files showing how letters may be longdesc created with the package. A graphical interface for use of the longdesc dinbrief is provided in the dinbrief-GUI bundle. -runfiles size=17 - RELOC/tex/latex/dinbrief/dinbrief.cfg - RELOC/tex/latex/dinbrief/dinbrief.cls - RELOC/tex/latex/dinbrief/dinbrief.sty +containersize 12616 +containerchecksum 0c2679265417acb042f81300895be7dc7d6b8d8f0bfa2ff8853b9c1adbb6bae78598c7eb4b7c2c91a9f95959ff7a7945f846e1f262f923d741e6fc77458be9f0 +doccontainersize 436584 +doccontainerchecksum 5182bf0761a484e89331ced44d05f82da097cb7be010333ad3eea1b987119af3f3e2a3cd8ac2c4b2b6149a09a5789325edee49205fdfe52d2960c12edacad0af docfiles size=151 RELOC/doc/latex/dinbrief/brfbody.tex RELOC/doc/latex/dinbrief/brfkopf.tex RELOC/doc/latex/dinbrief/dbold.tex - RELOC/doc/latex/dinbrief/dinbrief.pdf + RELOC/doc/latex/dinbrief/dinbrief.pdf details="User Guide and Implementation" RELOC/doc/latex/dinbrief/dinbrief.tex RELOC/doc/latex/dinbrief/dintab.tex RELOC/doc/latex/dinbrief/example.tex - RELOC/doc/latex/dinbrief/liesmich - RELOC/doc/latex/dinbrief/readme + RELOC/doc/latex/dinbrief/liesmich details="Package Readme" language="de" + RELOC/doc/latex/dinbrief/readme details="Package Readme" language="en" RELOC/doc/latex/dinbrief/test10.tex RELOC/doc/latex/dinbrief/test11.tex RELOC/doc/latex/dinbrief/test12.tex RELOC/doc/latex/dinbrief/testnorm.tex +srccontainersize 56276 +srccontainerchecksum 0f81c2cea6799ccd39039b3fc9c45ab38b2041d0eef6efad245cae9fdfc17a7f967c24509b241fd19870170b4028ebed40db25884556bdf74e0ce2fef1a6e1ec srcfiles size=63 RELOC/source/latex/dinbrief/dinbrief.drv RELOC/source/latex/dinbrief/dinbrief.dtx RELOC/source/latex/dinbrief/dinbrief.ins +runfiles size=17 + RELOC/tex/latex/dinbrief/dinbrief.cfg + RELOC/tex/latex/dinbrief/dinbrief.cls + RELOC/tex/latex/dinbrief/dinbrief.sty +catalogue-also akletter envlab formlett g-brief catalogue-ctan /macros/latex/contrib/dinbrief -catalogue-date 2014-09-25 17:27:57 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics std-conform letter class name dingbat category Package revision 27918 -shortdesc Two dingbat symbol fonts. +shortdesc Two dingbat symbol fonts relocated 1 longdesc The fonts (ark10 and dingbat) are specified in Metafont; longdesc support macros are provided for use in LaTeX. An Adobe Type 1 longdesc version of the fonts is available in the niceframe fonts longdesc bundle. +containersize 9248 +containerchecksum d6bdfc62eff8816e03eaea41ffbabf2d3af7194edbb2f9073c8d8b3d333c75f0b587a74556b916efb40afe41c88a8029f0dd764d7dc5894aa50e66e06fccb77a +doccontainersize 105752 +doccontainerchecksum 993ef5169759d86641e2a3185064f94df858d81d9b7ba4b0516b22abc51eab887b5d02ca487ad85b007e7ee3117563a257d80b803a361ea1d32857921e794b9f +docfiles size=34 + RELOC/doc/fonts/dingbat/README details="Readme" + RELOC/doc/fonts/dingbat/dingbat.pdf details="Package details including symbol table" + RELOC/doc/fonts/dingbat/dingbat.tex +srccontainersize 3772 +srccontainerchecksum 01e935a99ff83496cd1e5c9e297d316f879fa8e54808c33a2daa54c78e1afc5048d3fabbf93450d15d6fed09eb59389348da266c751782cf017f383a97214d2a +srcfiles size=4 + RELOC/source/latex/dingbat/dingbat.dtx + RELOC/source/latex/dingbat/dingbat.ins runfiles size=14 RELOC/fonts/source/public/dingbat/ark10.mf RELOC/fonts/source/public/dingbat/dingbat.mf @@ -46852,26 +79679,28 @@ runfiles size=14 RELOC/tex/latex/dingbat/dingbat.sty RELOC/tex/latex/dingbat/uark.fd RELOC/tex/latex/dingbat/udingbat.fd -docfiles size=34 - RELOC/doc/fonts/dingbat/README - RELOC/doc/fonts/dingbat/dingbat.pdf - RELOC/doc/fonts/dingbat/dingbat.tex -srcfiles size=4 - RELOC/source/latex/dingbat/dingbat.dtx - RELOC/source/latex/dingbat/dingbat.ins catalogue-ctan /fonts/dingbat -catalogue-date 2014-04-24 17:14:31 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-mf font-symbol catalogue-version 1.0 name directory category Package revision 15878 -shortdesc An address book using BibTeX. +shortdesc An address book using BibTeX relocated 1 longdesc A package for LaTeX and BibTeX that facilitates the -longdesc construction, maintenance and exploitation of an address book- -longdesc like database. +longdesc construction, maintenance and exploitation of an address +longdesc book-like database. +containersize 11760 +containerchecksum c07947f06fb08da461391cf6101a7a2e55875179c5d19b41007b0d11ff1881623e353b813dcca1da1f09e55beb80bf412f85ea6c9f7e3dd6e52a875770a5ffdd +doccontainersize 167348 +doccontainerchecksum 24bf3fe447363c20e4ace4fb326c329a244aaeaafbf6f596ec91a3975e7cba86a2d711f9a5f10c2a70d72d74bc08dd2540e5139b4c4b525103e867a9d8e62bf9 +docfiles size=56 + RELOC/doc/latex/directory/README details="Package Readme" + RELOC/doc/latex/directory/directory.pdf details="Package documentation" + RELOC/doc/latex/directory/directory.tex runfiles size=33 RELOC/bibtex/bib/directory/business.bib RELOC/bibtex/bib/directory/family.bib @@ -46885,62 +79714,74 @@ runfiles size=33 RELOC/bibtex/bst/directory/letter.bst RELOC/bibtex/bst/directory/phone.bst RELOC/tex/latex/directory/directory.sty -docfiles size=56 - RELOC/doc/latex/directory/README - RELOC/doc/latex/directory/directory.pdf - RELOC/doc/latex/directory/directory.tex +catalogue-contact-home http://geuz.org/directory catalogue-ctan /biblio/bibtex/contrib/directory -catalogue-date 2012-12-19 20:26:21 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl +catalogue-topics addr-list catalogue-version 1.20 name dirtree category Package -revision 28524 -shortdesc Display trees in the style of windows explorer. +revision 42428 +shortdesc Display trees in the style of windows explorer relocated 1 longdesc This package is designed to emulate the way windows explorer longdesc displays directory and file trees, with the root at top left, longdesc and each level of subtree displaying one step in to the right. longdesc The macros work equally well with Plain TeX and with LaTeX. -runfiles size=3 - RELOC/tex/generic/dirtree/dirtree.sty - RELOC/tex/generic/dirtree/dirtree.tex +containersize 2484 +containerchecksum 5faecc2a6d79ae79929481c283b01e69df482267635957c5eb11c264d924ce299021d95baaf8cf6f9cb10e57f5fe14820c6b3506021b4d0213494bdeff5746a2 +doccontainersize 100148 +doccontainerchecksum 9edfb6fbcf4278c2b24599b58e10f64918d901bdd19dc0e9e8c8bd77756f2f3ba5dc13e31fefd2bd5f1467a0fb0dc0e765fe4e0515781103bdb1b81f687def7b docfiles size=37 - RELOC/doc/generic/dirtree/README - RELOC/doc/generic/dirtree/dirtree.pdf + RELOC/doc/generic/dirtree/README details="Readme" + RELOC/doc/generic/dirtree/dirtree.pdf details="Package documentation" +srccontainersize 7780 +srccontainerchecksum 4939918ace772a76142674410f9a1e91c698e02c113517385814346399cc94e031384905dc2719d717ac1dc65ff04d1d5a7049408ec55e20b4c0000f4b8a7049 srcfiles size=8 RELOC/source/generic/dirtree/dirtree.dtx RELOC/source/generic/dirtree/dirtree.ins +runfiles size=3 + RELOC/tex/generic/dirtree/dirtree.sty + RELOC/tex/generic/dirtree/dirtree.tex catalogue-ctan /macros/generic/dirtree -catalogue-date 2012-12-13 10:43:21 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics tree catalogue-version 0.32 name dirtytalk category Package revision 20520 -shortdesc A package to typeset quotations easier. +shortdesc A package to typeset quotations easier relocated 1 longdesc The package provides a macro to typeset quotations, using the longdesc command \say{stuff}. The quotation mark glyphs are inserted by longdesc the macro; nested quotations are detected. -runfiles size=1 - RELOC/tex/latex/dirtytalk/dirtytalk.sty +containersize 1168 +containerchecksum d5cf28f17a68cd064a290769aff11e656debe87ff0c04e61d4dd4fe87d285daab6dab9516b80b33b03680d50c420a4f3a9858ed5d2d3d5c96fa7fbf9989d29d6 +doccontainersize 393132 +doccontainerchecksum 8cdbdbfca4bdc58a560703b6406c98334ea0b5d9920cbc98ea0fdb7b56c9f1d48844167201829cef83fa84f0e21530baf2fcf4a3f8f8b5e44c5e792864ebf94f docfiles size=102 - RELOC/doc/latex/dirtytalk/README - RELOC/doc/latex/dirtytalk/dirtytalk.pdf + RELOC/doc/latex/dirtytalk/README details="Readme" + RELOC/doc/latex/dirtytalk/dirtytalk.pdf details="Package documentation" +srccontainersize 3564 +srccontainerchecksum 448c9b5765cb054981e306b795f7747e6e5a9219f00a4698d6f5ee36ebc56c80a1adc857212b3baa1a065b9a8f585f9938e2d20d8f6d30f8d17aff9fc80b11c4 srcfiles size=4 RELOC/source/latex/dirtytalk/dirtytalk.dtx RELOC/source/latex/dirtytalk/dirtytalk.ins +runfiles size=1 + RELOC/tex/latex/dirtytalk/dirtytalk.sty catalogue-ctan /macros/latex/contrib/dirtytalk -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics quote-marks catalogue-version 1.0 name disser category Package -revision 38162 +revision 43417 shortdesc Class and templates for typesetting dissertations in Russian relocated 1 longdesc Disser comprises a document class and set of templates for @@ -46950,36 +79791,91 @@ longdesc titlepage, headers and elements of automatically generated longdesc lists (table of contents, list of figures, etc). Bibliography longdesc styles, that conform to the requirements of the Russian longdesc standard GOST R 7.0.11-2011, are provided. -runfiles size=43 - RELOC/bibtex/bst/disser/gost705.bst - RELOC/bibtex/bst/disser/gost705s.bst - RELOC/bibtex/csf/disser/cp1251lc.csf - RELOC/makeindex/disser/dtx.ist - RELOC/tex/latex/disser/autoref.rtx - RELOC/tex/latex/disser/bachelor.rtx - RELOC/tex/latex/disser/candidate.rtx - RELOC/tex/latex/disser/disser.cls - RELOC/tex/latex/disser/doctor.rtx - RELOC/tex/latex/disser/gost732.cls - RELOC/tex/latex/disser/master.rtx - RELOC/tex/latex/disser/specialist.rtx - RELOC/tex/latex/disser/titledefs.rtx -docfiles size=105 +containersize 13032 +containerchecksum 98c497bd8d422cacf639cb38ff3a489b5fcda3f92cb5a734287fc930666867eb0e9e6f6014ad42df527d3999eb5a87da28d7178b47cc53eb44a338567f952ca4 +doccontainersize 41680 +doccontainerchecksum ed0c04c0afccd7f9f68bb8f65a6497b9cbfb2bbcb5333852da7b790083e71ceec8348f6893f1e0f16bef7e4b5ca0b9d1a58ca46898dc58a02f0324a62971b916 +docfiles size=197 RELOC/doc/latex/disser/ChangeLog RELOC/doc/latex/disser/Makefile - RELOC/doc/latex/disser/README - RELOC/doc/latex/disser/README.ru - RELOC/doc/latex/disser/cp1251.csf + RELOC/doc/latex/disser/README-ru.md details="Readme (Russian)" language="ru" + RELOC/doc/latex/disser/README.md details="Readme (English)" language="en" RELOC/doc/latex/disser/include/latex.fig.mk RELOC/doc/latex/disser/include/latex.fig.nmk.cmd RELOC/doc/latex/disser/include/latex.mk RELOC/doc/latex/disser/include/latex.nmk.cmd RELOC/doc/latex/disser/manual.tex RELOC/doc/latex/disser/nomake.cmd + RELOC/doc/latex/disser/templates-utf8/Makefile + RELOC/doc/latex/disser/templates-utf8/bachelor/1.tex + RELOC/doc/latex/disser/templates-utf8/bachelor/Makefile + RELOC/doc/latex/disser/templates-utf8/bachelor/a.tex + RELOC/doc/latex/disser/templates-utf8/bachelor/concl.tex + RELOC/doc/latex/disser/templates-utf8/bachelor/fig/Makefile + RELOC/doc/latex/disser/templates-utf8/bachelor/fig/fig.eps + RELOC/doc/latex/disser/templates-utf8/bachelor/fig/nomake.cmd + RELOC/doc/latex/disser/templates-utf8/bachelor/intro.tex + RELOC/doc/latex/disser/templates-utf8/bachelor/nomake.cmd + RELOC/doc/latex/disser/templates-utf8/bachelor/thesis.bib + RELOC/doc/latex/disser/templates-utf8/bachelor/thesis.tex + RELOC/doc/latex/disser/templates-utf8/candidate/1.tex + RELOC/doc/latex/disser/templates-utf8/candidate/Makefile + RELOC/doc/latex/disser/templates-utf8/candidate/a.tex + RELOC/doc/latex/disser/templates-utf8/candidate/autoref.tex + RELOC/doc/latex/disser/templates-utf8/candidate/common.tex + RELOC/doc/latex/disser/templates-utf8/candidate/concl.tex + RELOC/doc/latex/disser/templates-utf8/candidate/dict.tex + RELOC/doc/latex/disser/templates-utf8/candidate/fig/Makefile + RELOC/doc/latex/disser/templates-utf8/candidate/fig/facsimile.eps + RELOC/doc/latex/disser/templates-utf8/candidate/fig/nomake.cmd + RELOC/doc/latex/disser/templates-utf8/candidate/fig/sec-facsimile.eps + RELOC/doc/latex/disser/templates-utf8/candidate/intro.tex + RELOC/doc/latex/disser/templates-utf8/candidate/nomake.cmd + RELOC/doc/latex/disser/templates-utf8/candidate/review.tex + RELOC/doc/latex/disser/templates-utf8/candidate/thesis.bib + RELOC/doc/latex/disser/templates-utf8/candidate/thesis.tex + RELOC/doc/latex/disser/templates-utf8/doctor/1.tex + RELOC/doc/latex/disser/templates-utf8/doctor/Makefile + RELOC/doc/latex/disser/templates-utf8/doctor/a.tex + RELOC/doc/latex/disser/templates-utf8/doctor/autoref.tex + RELOC/doc/latex/disser/templates-utf8/doctor/common.tex + RELOC/doc/latex/disser/templates-utf8/doctor/concl.tex + RELOC/doc/latex/disser/templates-utf8/doctor/dict.tex + RELOC/doc/latex/disser/templates-utf8/doctor/fig/Makefile + RELOC/doc/latex/disser/templates-utf8/doctor/fig/facsimile.eps + RELOC/doc/latex/disser/templates-utf8/doctor/fig/nomake.cmd + RELOC/doc/latex/disser/templates-utf8/doctor/fig/sec-facsimile.eps + RELOC/doc/latex/disser/templates-utf8/doctor/intro.tex + RELOC/doc/latex/disser/templates-utf8/doctor/nomake.cmd + RELOC/doc/latex/disser/templates-utf8/doctor/review.tex + RELOC/doc/latex/disser/templates-utf8/doctor/thesis.bib + RELOC/doc/latex/disser/templates-utf8/doctor/thesis.tex + RELOC/doc/latex/disser/templates-utf8/master/1.tex + RELOC/doc/latex/disser/templates-utf8/master/Makefile + RELOC/doc/latex/disser/templates-utf8/master/a.tex + RELOC/doc/latex/disser/templates-utf8/master/concl.tex + RELOC/doc/latex/disser/templates-utf8/master/fig/Makefile + RELOC/doc/latex/disser/templates-utf8/master/fig/nomake.cmd + RELOC/doc/latex/disser/templates-utf8/master/intro.tex + RELOC/doc/latex/disser/templates-utf8/master/nomake.cmd + RELOC/doc/latex/disser/templates-utf8/master/thesis.bib + RELOC/doc/latex/disser/templates-utf8/master/thesis.tex + RELOC/doc/latex/disser/templates-utf8/nomake.cmd + RELOC/doc/latex/disser/templates-utf8/specialist/1.tex + RELOC/doc/latex/disser/templates-utf8/specialist/Makefile + RELOC/doc/latex/disser/templates-utf8/specialist/a.tex + RELOC/doc/latex/disser/templates-utf8/specialist/concl.tex + RELOC/doc/latex/disser/templates-utf8/specialist/fig/Makefile + RELOC/doc/latex/disser/templates-utf8/specialist/fig/fig.eps + RELOC/doc/latex/disser/templates-utf8/specialist/fig/nomake.cmd + RELOC/doc/latex/disser/templates-utf8/specialist/intro.tex + RELOC/doc/latex/disser/templates-utf8/specialist/nomake.cmd + RELOC/doc/latex/disser/templates-utf8/specialist/thesis.bib + RELOC/doc/latex/disser/templates-utf8/specialist/thesis.tex RELOC/doc/latex/disser/templates/Makefile RELOC/doc/latex/disser/templates/bachelor/1.tex RELOC/doc/latex/disser/templates/bachelor/Makefile - RELOC/doc/latex/disser/templates/bachelor/app-a.tex + RELOC/doc/latex/disser/templates/bachelor/a.tex RELOC/doc/latex/disser/templates/bachelor/concl.tex RELOC/doc/latex/disser/templates/bachelor/fig/Makefile RELOC/doc/latex/disser/templates/bachelor/fig/fig.eps @@ -46990,11 +79886,10 @@ docfiles size=105 RELOC/doc/latex/disser/templates/bachelor/thesis.tex RELOC/doc/latex/disser/templates/candidate/1.tex RELOC/doc/latex/disser/templates/candidate/Makefile - RELOC/doc/latex/disser/templates/candidate/app-a.tex + RELOC/doc/latex/disser/templates/candidate/a.tex RELOC/doc/latex/disser/templates/candidate/autoref.tex RELOC/doc/latex/disser/templates/candidate/common.tex RELOC/doc/latex/disser/templates/candidate/concl.tex - RELOC/doc/latex/disser/templates/candidate/defs.tex RELOC/doc/latex/disser/templates/candidate/dict.tex RELOC/doc/latex/disser/templates/candidate/fig/Makefile RELOC/doc/latex/disser/templates/candidate/fig/facsimile.eps @@ -47007,11 +79902,10 @@ docfiles size=105 RELOC/doc/latex/disser/templates/candidate/thesis.tex RELOC/doc/latex/disser/templates/doctor/1.tex RELOC/doc/latex/disser/templates/doctor/Makefile - RELOC/doc/latex/disser/templates/doctor/app-a.tex + RELOC/doc/latex/disser/templates/doctor/a.tex RELOC/doc/latex/disser/templates/doctor/autoref.tex RELOC/doc/latex/disser/templates/doctor/common.tex RELOC/doc/latex/disser/templates/doctor/concl.tex - RELOC/doc/latex/disser/templates/doctor/defs.tex RELOC/doc/latex/disser/templates/doctor/dict.tex RELOC/doc/latex/disser/templates/doctor/fig/Makefile RELOC/doc/latex/disser/templates/doctor/fig/facsimile.eps @@ -47024,7 +79918,7 @@ docfiles size=105 RELOC/doc/latex/disser/templates/doctor/thesis.tex RELOC/doc/latex/disser/templates/master/1.tex RELOC/doc/latex/disser/templates/master/Makefile - RELOC/doc/latex/disser/templates/master/app-a.tex + RELOC/doc/latex/disser/templates/master/a.tex RELOC/doc/latex/disser/templates/master/concl.tex RELOC/doc/latex/disser/templates/master/fig/Makefile RELOC/doc/latex/disser/templates/master/fig/nomake.cmd @@ -47035,7 +79929,7 @@ docfiles size=105 RELOC/doc/latex/disser/templates/nomake.cmd RELOC/doc/latex/disser/templates/specialist/1.tex RELOC/doc/latex/disser/templates/specialist/Makefile - RELOC/doc/latex/disser/templates/specialist/app-a.tex + RELOC/doc/latex/disser/templates/specialist/a.tex RELOC/doc/latex/disser/templates/specialist/concl.tex RELOC/doc/latex/disser/templates/specialist/fig/Makefile RELOC/doc/latex/disser/templates/specialist/fig/fig.eps @@ -47044,7 +79938,9 @@ docfiles size=105 RELOC/doc/latex/disser/templates/specialist/nomake.cmd RELOC/doc/latex/disser/templates/specialist/thesis.bib RELOC/doc/latex/disser/templates/specialist/thesis.tex -srcfiles size=61 +srccontainersize 25344 +srccontainerchecksum 9a9770eea5ab44b2265cb191bd113be4e98038a0ba8f3c92ffb837791cf59447c82caf63d50af6bace698a3b5b8a2bc25f427add6cefb436a6377df4816524b2 +srcfiles size=46 RELOC/source/latex/disser/autoref.dtx RELOC/source/latex/disser/bachelor.dtx RELOC/source/latex/disser/candidate.dtx @@ -47057,7 +79953,6 @@ srcfiles size=61 RELOC/source/latex/disser/env.dtx RELOC/source/latex/disser/floats.dtx RELOC/source/latex/disser/footnote.dtx - RELOC/source/latex/disser/gost705.dtx RELOC/source/latex/disser/gost732.dtx RELOC/source/latex/disser/lists.dtx RELOC/source/latex/disser/master.dtx @@ -47068,16 +79963,60 @@ srcfiles size=61 RELOC/source/latex/disser/titledefs.dtx RELOC/source/latex/disser/titlepage.dtx RELOC/source/latex/disser/toc.dtx +runfiles size=21 + RELOC/makeindex/disser/dtx.ist + RELOC/tex/latex/disser/autoref.rtx + RELOC/tex/latex/disser/bachelor.rtx + RELOC/tex/latex/disser/candidate.rtx + RELOC/tex/latex/disser/disser.cls + RELOC/tex/latex/disser/doctor.rtx + RELOC/tex/latex/disser/gost732.cls + RELOC/tex/latex/disser/master.rtx + RELOC/tex/latex/disser/specialist.rtx + RELOC/tex/latex/disser/titledefs.rtx catalogue-ctan /macros/latex/contrib/disser -catalogue-date 2015-08-18 21:03:15 +0200 +catalogue-date 2017-03-06 17:15:59 +0100 catalogue-license lppl1.3 catalogue-topics dissertation class -catalogue-version 1.3.2 +catalogue-version 1.5.0 + +name ditaa +category Package +revision 48932 +shortdesc Use ditaa diagrams within LaTeX documents +relocated 1 +longdesc With this package ditaa (DIagrams Through Ascii Art) diagrams +longdesc can be embedded directly into LaTeX files. +containersize 1184 +containerchecksum 1aa2fab8150212ae8dbda9d0138a4c396f47256f93582ed38d9449f9440daba9e07dc0be397c49981e2d1813b7e41d2002fb7ff914382606f417f2738a8d2735 +doccontainersize 105808 +doccontainerchecksum 345d6d7d3f21d2dc728b93e2cbfeb4fc1f589797e852604809b1ff3e7bca53414d684571faf8245c740a50205e7d8787afd5304beb89efd3545a389ec4a74331 +docfiles size=34 + RELOC/doc/latex/ditaa/README details="Readme" + RELOC/doc/latex/ditaa/ditaa.pdf details="Package documentation" + RELOC/doc/latex/ditaa/ditaa.tex + RELOC/doc/latex/ditaa/example.tex + RELOC/doc/latex/ditaa/resources/ditaa/ditaaexample.ditaa + RELOC/doc/latex/ditaa/resources/ditaa/ditaaexample.png + RELOC/doc/latex/ditaa/resources/ditaa/ditaaexample2.ditaa + RELOC/doc/latex/ditaa/resources/ditaa/ditaaexample2.png +runfiles size=1 + RELOC/tex/latex/ditaa/ditaa.sty +catalogue-contact-announce https://github.com/dakusui/latex-ditaa/wiki/Announcements +catalogue-contact-bugs https://github.com/dakusui/latex-ditaa/issues +catalogue-contact-development https://github.com/dakusui/latex-ditaa/issues/1 +catalogue-contact-home https://github.com/dakusui/latex-ditaa +catalogue-contact-repository https://github.com/dakusui/latex-ditaa.git +catalogue-ctan /macros/latex/contrib/ditaa +catalogue-date 2018-10-20 05:13:28 +0200 +catalogue-license lppl +catalogue-topics diagram +catalogue-version 0.9 name dithesis category Package revision 34295 -shortdesc Thesis class for undergraduate theses at the University of Athens. +shortdesc A class for undergraduate theses at the University of Athens relocated 1 longdesc The class conforms to the requirements of the Department of longdesc Informatics and Telecommunications at the University of Athens @@ -47085,24 +80024,29 @@ longdesc regarding the preparation of undergraduate theses, as of Sep 1, longdesc 2011. The class is designed for use with XeLaTeX; by default longdesc (on a Windows platform), the font Arial is used, but provision longdesc is made for use under Linux (with a different sans-serif font). -runfiles size=5 - RELOC/tex/latex/dithesis/dithesis.cls +containersize 5580 +containerchecksum b11165408ccd30427390e9f409e8f561122d1a2dbe821ce90687df9feb2faef692d8ccd75fd8372b975a06e3f11bca0ba6e873d59b30aabfa95015ca35e557a8 +doccontainersize 184556 +doccontainerchecksum 25058b262f803fbbf3c41fa62ae8983ade351fc7bb65be7d886a4300390f836ef5d1240e59571839b407afa2ddb363e6c31e76e36c160ed3fe0c6d0e0ef71fbf docfiles size=78 - RELOC/doc/latex/dithesis/README + RELOC/doc/latex/dithesis/README details="Readme" RELOC/doc/latex/dithesis/athena.jpg - RELOC/doc/latex/dithesis/sample.pdf + RELOC/doc/latex/dithesis/sample.pdf details="Package sample, serving as documentation" RELOC/doc/latex/dithesis/sample.tex RELOC/doc/latex/dithesis/sampleNoArial.pdf RELOC/doc/latex/dithesis/sampleNoArial.tex +runfiles size=5 + RELOC/tex/latex/dithesis/dithesis.cls catalogue-ctan /macros/latex/contrib/dithesis -catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-date 2017-10-06 19:54:19 +0200 catalogue-license lppl +catalogue-topics dissertation greek catalogue-version 0.2 name dk-bib category Package revision 15878 -shortdesc Danish variants of standard BibTeX styles. +shortdesc Danish variants of standard BibTeX styles relocated 1 longdesc Dk-bib is a translation of the four standard BibTeX style files longdesc (abbrv, alpha, plain and unsrt) and the apalike style file into @@ -47110,6 +80054,19 @@ longdesc Danish. The files have been extended with URL, ISBN, ISSN, longdesc annote and printing fields which can be enabled through a LaTeX longdesc style file. Dk-bib also comes with a couple of Danish sorting longdesc order files for BibTeX8. +containersize 13636 +containerchecksum 9de9e026b9e3de53b297d7925bd0e4e9ab08562e798a8f1b9e6988ecb891067534a741aefbbb81f1c53d7ae6b6cd0e0796d8c0690c5af661e76a5c6d9ea876df +doccontainersize 404476 +doccontainerchecksum 258d8413d860f6a30c597c10b8c25f352166f8bc39cf23714a137e46f4748ba716dcae8eb8b6e17378f6a850ae64a68a9f331c8301c938f0a8042d967b3e62b3 +docfiles size=115 + RELOC/doc/latex/dk-bib/COPYRIGHT + RELOC/doc/latex/dk-bib/README details="Readme" + RELOC/doc/latex/dk-bib/dk-bib.ltx + RELOC/doc/latex/dk-bib/dk-bib.pdf details="Package documentation" +srccontainersize 1300 +srccontainerchecksum ddb3927504b35d025c339bfd1c072e9ef770a159f046bf86220ea675df481e5b781026ed6395a776f27518ffedef83b7c5f95be30f1be49747a76bb2e2280817 +srcfiles size=1 + RELOC/source/latex/dk-bib/Makefile runfiles size=42 RELOC/bibtex/bib/dk-bib/litteratur.bib RELOC/bibtex/bst/dk-bib/dk-abbrv.bst @@ -47123,92 +80080,121 @@ runfiles size=42 RELOC/bibtex/csf/dk-bib/utf8-dk.csf RELOC/tex/latex/dk-bib/dk-apali.sty RELOC/tex/latex/dk-bib/dk-bib.sty -docfiles size=115 - RELOC/doc/latex/dk-bib/COPYRIGHT - RELOC/doc/latex/dk-bib/README - RELOC/doc/latex/dk-bib/dk-bib.ltx - RELOC/doc/latex/dk-bib/dk-bib.pdf -srcfiles size=1 - RELOC/source/latex/dk-bib/Makefile catalogue-ctan /biblio/bibtex/contrib/dk-bib -catalogue-date 2012-06-28 23:28:54 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics bibtex-sty danish catalogue-version 0.6 name dlfltxb category Package revision 17337 -shortdesc Macros related to "Introdktion til LaTeX". +shortdesc Macros related to "Introdktion til LaTeX" relocated 1 longdesc The bundle contains various macros either used for creating the longdesc author's book "Introduktion til LaTeX" (in Danish), or longdesc presented in the book as code tips. The bundle comprises: longdesc dlfltxbcodetips: various macros helpful in typesetting -longdesc mathematics; dlfltxbmarkup: provides a macros used throughout -longdesc the book, for registering macro names, packages etc. in the -longdesc text, in the margin and in the index, all by using categorised -longdesc keys (note, a configuration file may be used; a sample is -longdesc included in the distribution); dlfltxbtocconfig: macros for the -longdesc two tables of contents that the book has; dlfltxbmisc: various -longdesc macros for typesetting LaTeX arguments, and the macro used in -longdesc the bibliography that can wrap a URL up into a bibtex entry. +longdesc mathematics; dlfltxbmarkup: provides macros used throughout, +longdesc for registering macro names, packages etc. in the text, in the +longdesc margin and in the index, all by using categorised keys (note, a +longdesc configuration file may be used; a sample is included in the +longdesc distribution); dlfltxbtocconfig: macros for the two tables of +longdesc contents that the book has; dlfltxbmisc: various macros for +longdesc typesetting LaTeX arguments, and the macro used in the +longdesc bibliography that can wrap a URL up into a BibTeX entry. longdesc Interested parties may review the book itself on the web at the longdesc author's institution (it is written in Danish). -runfiles size=26 - RELOC/bibtex/bst/dlfltxb/dlfltxbbibtex.bst - RELOC/tex/latex/dlfltxb/dlfltxbcodetips.sty - RELOC/tex/latex/dlfltxb/dlfltxbmarkup.sty - RELOC/tex/latex/dlfltxb/dlfltxbmarkupbookkeys.sty - RELOC/tex/latex/dlfltxb/dlfltxbmisc.sty - RELOC/tex/latex/dlfltxb/dlfltxbtocconfig.sty +containersize 21700 +containerchecksum d1d7bd6a855d131324fee30bcb920e0dfa6ba733a1d52f94c59e8f328b533d63444b5ce7e5fca9dcc7f21833a9cef84460106aab0a578fd17974c0e348f1ee07 +doccontainersize 694612 +doccontainerchecksum 171d6661ca71533fb869832be2bf6f7d26244bb5735fb884b5b1ce7c27d291b3e9518a902d6c7565d94d2c55c37b00564184bc5851824a00b5a71963a577128f docfiles size=205 - RELOC/doc/latex/dlfltxb/README + RELOC/doc/latex/dlfltxb/README details="Readme" RELOC/doc/latex/dlfltxb/dlfltxbbibtex.dbj - RELOC/doc/latex/dlfltxb/dlfltxbcodetips.pdf + RELOC/doc/latex/dlfltxb/dlfltxbcodetips.pdf details="dlfltxbcodetips package documentation" RELOC/doc/latex/dlfltxb/dlfltxbcodetips.tex - RELOC/doc/latex/dlfltxb/dlfltxbmarkup-showkeys.pdf + RELOC/doc/latex/dlfltxb/dlfltxbmarkup-showkeys.pdf details="dlfltxbmarkup key description summary" RELOC/doc/latex/dlfltxb/dlfltxbmarkup-showkeys.tex - RELOC/doc/latex/dlfltxb/dlfltxbmarkup.pdf + RELOC/doc/latex/dlfltxb/dlfltxbmarkup.pdf details="dlfltxbmarkup package documentation" RELOC/doc/latex/dlfltxb/dlfltxbmarkup.tex - RELOC/doc/latex/dlfltxb/dlfltxbmisc.pdf + RELOC/doc/latex/dlfltxb/dlfltxbmisc.pdf details="dlfltxbmisc package documentation" RELOC/doc/latex/dlfltxb/dlfltxbmisc.tex RELOC/doc/latex/dlfltxb/dlfltxbtocconfig.pdf RELOC/doc/latex/dlfltxb/dlfltxbtocconfig.tex RELOC/doc/latex/dlfltxb/package_doc.bib +runfiles size=26 + RELOC/bibtex/bst/dlfltxb/dlfltxbbibtex.bst + RELOC/tex/latex/dlfltxb/dlfltxbcodetips.sty + RELOC/tex/latex/dlfltxb/dlfltxbmarkup.sty + RELOC/tex/latex/dlfltxb/dlfltxbmarkupbookkeys.sty + RELOC/tex/latex/dlfltxb/dlfltxbmisc.sty + RELOC/tex/latex/dlfltxb/dlfltxbtocconfig.sty catalogue-ctan /macros/latex/contrib/dlfltxb -catalogue-date 2014-09-25 17:33:29 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics book-ex danish name dnaseq category Package revision 17194 -shortdesc Format DNA base sequences. +shortdesc Format DNA base sequences relocated 1 longdesc Defines a means of specifying sequences of bases. The bases may longdesc be numbered (per line) and you may specify that subsequences be longdesc coloured. For a more 'vanilla-flavoured' way of typesetting longdesc base sequences, the user might consider the seqsplit package. -runfiles size=1 - RELOC/tex/latex/dnaseq/dnaseq.sty +containersize 1780 +containerchecksum b4a83c42e16aa734611dd8295aa033904828ac1825ccdd41f297586c0667ebec4a43606740fde56bd01f58ffee1b1f4afa647ce196ed042a5dfdb641f0ee2d7d +doccontainersize 209036 +doccontainerchecksum 089352ea3210231ad158ecb0bc17d5ba0a9efe49ee4c609554f08dceff9ef534185a7f9f17526910d3b602c4c6c358f211fec4cfe27bd6df61555bce4f9d795f docfiles size=56 RELOC/doc/latex/dnaseq/DNAtest.tex - RELOC/doc/latex/dnaseq/README - RELOC/doc/latex/dnaseq/dnaseq.pdf + RELOC/doc/latex/dnaseq/README details="Readme" + RELOC/doc/latex/dnaseq/dnaseq.pdf details="Package documentation" +srccontainersize 2500 +srccontainerchecksum f4357ef3a23d8b1c7ca3168441ddda57fe725c4c17022807464e61035b89a8a8334684144d86f3d6ff0f3955c1c928903b80a61e6b1792cab633d6dab51d44df srcfiles size=3 RELOC/source/latex/dnaseq/dnaseq.dtx RELOC/source/latex/dnaseq/dnaseq.ins +runfiles size=1 + RELOC/tex/latex/dnaseq/dnaseq.sty catalogue-ctan /macros/latex/contrib/dnaseq -catalogue-date 2012-07-03 17:35:36 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics molbio catalogue-version 0.01 name dnp category Package -revision 15878 +revision 45701 +shortdesc subfont numbers for DNP font encoding relocated 1 +longdesc part of the CJK package, ctan.org/pkg/cjk +containersize 856 +containerchecksum 9cccb6befd2059b13571e083664e4c85215cc12c96b41afdd9efdeb758b444a95edd4c2586ee1b44dca70fe31f38c4eea821cf08cc1237a82d67e0e567d65d8a runfiles size=1 RELOC/fonts/sfd/dnp/DNP.sfd +name doc-pictex +category Package +revision 24927 +shortdesc A summary list of PicTeX documentation +relocated 1 +longdesc A summary of available resources providing (or merely +longdesc discussing) documentation of PicTeX. +containersize 468 +containerchecksum c866f0855f701917fa81966c16a7f1c869320ddaf38e2c1c2a71844fa7b224fe2216f267b7b700ef6e36a13f97fa6f33a1d05342d5a7a8dd47ccda761fc577f4 +doccontainersize 1508 +doccontainerchecksum 3440fd4d0e2117594d6b350dcfed891506ce7fc0500ecdd4f156431363a38e399061469f5def9082d59c39b14b65ebc19ccb3204fef71ade300825cf35659158 +docfiles size=1 + RELOC/doc/generic/doc-pictex/Doc-PiCTeX.txt +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html +catalogue-ctan /info/pictex/Doc-PiCTeX.txt +catalogue-date 2017-05-05 20:39:25 +0200 +catalogue-license other-free +catalogue-topics doc-mgmt + name docbytex category Package revision 34294 @@ -47216,10 +80202,12 @@ shortdesc Creating documentation from source code relocated 1 longdesc The package creates documentation from C source code, or other longdesc programming languages. -runfiles size=10 - RELOC/tex/generic/docbytex/docby.tex +containersize 11140 +containerchecksum 0b212fe2131eb4070e08efad7f1e0745d0538b2173b274a41c113ae6dfce46d7d1fc8ebd22f16b3a956570865df9cad668866fc2038687ad6c0b7b72e76a79d8 +doccontainersize 1318672 +doccontainerchecksum 0daa32aa23ca248dce228b8029cb19c6d4509114094d46efdcc45b52d6593176c44da88040b37d83054ec286c4b79727ea4ab2cf07c4522e5f597750d85118fd docfiles size=387 - RELOC/doc/generic/docbytex/README + RELOC/doc/generic/docbytex/README details="Readme" RELOC/doc/generic/docbytex/annonce RELOC/doc/generic/docbytex/base.c RELOC/doc/generic/docbytex/base.d @@ -47227,20 +80215,24 @@ docfiles size=387 RELOC/doc/generic/docbytex/docby-e.d RELOC/doc/generic/docbytex/docby-e.pdf RELOC/doc/generic/docbytex/docby.d - RELOC/doc/generic/docbytex/docby.pdf + RELOC/doc/generic/docbytex/docby.pdf details="Package documentation" language="cs" RELOC/doc/generic/docbytex/lup.pdf RELOC/doc/generic/docbytex/lup.tex RELOC/doc/generic/docbytex/main.c RELOC/doc/generic/docbytex/main.d RELOC/doc/generic/docbytex/win.c RELOC/doc/generic/docbytex/win.d +runfiles size=10 + RELOC/tex/generic/docbytex/docby.tex +catalogue-contact-home http://www.olsak.net/docbytex.html catalogue-ctan /macros/generic/docbytex -catalogue-date 2014-06-16 13:14:48 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license other-free +catalogue-topics program-doc name doclicense category Package -revision 38264 +revision 50871 shortdesc Support for putting documents under a license relocated 1 longdesc This package allows you to put your document under a license @@ -47248,7 +80240,19 @@ longdesc and include a link to read about the license or include an icon longdesc or image of the license. Currently, only Creative Commons is longdesc supported, but this package is designed to handle all kinds of longdesc licenses. -runfiles size=39 +containersize 74976 +containerchecksum d3d8b812d6a229f1d31a40d82651f067843448d64f1fb33d0117490eacd31183417e3346008a5ce6aa6696e4d5626e22241a5e1b3cfa322812a9724e6c13f554 +doccontainersize 427644 +doccontainerchecksum 8745814b7440d81f80888bdb0e97696fa4530ea91ab2763459d3e35d1208dd2daf0bf1dacd50df7d3ac47a5c764d382a1b559c18b82bb87f4df49fd8849608ce +docfiles size=107 + RELOC/doc/latex/doclicense/README details="Readme" + RELOC/doc/latex/doclicense/doclicense.pdf details="Package documentation" +srccontainersize 8768 +srccontainerchecksum 7dabd8c0aa67e218bc2f9226f377213fc8d846a3f49da6bb1fa5af49a0c9c31dd22b40ed80b54f2c83541b759fb5022a8cd1e9f74997f028ab7eef2e6837f191 +srcfiles size=9 + RELOC/source/latex/doclicense/doclicense.dtx + RELOC/source/latex/doclicense/doclicense.ins +runfiles size=178 RELOC/tex/latex/doclicense/doclicense-UKenglish.ldf RELOC/tex/latex/doclicense/doclicense-USenglish.ldf RELOC/tex/latex/doclicense/doclicense-acadian.ldf @@ -47257,15 +80261,23 @@ runfiles size=39 RELOC/tex/latex/doclicense/doclicense-british.ldf RELOC/tex/latex/doclicense/doclicense-canadian.ldf RELOC/tex/latex/doclicense/doclicense-canadien.ldf + RELOC/tex/latex/doclicense/doclicense-catalan.ldf + RELOC/tex/latex/doclicense/doclicense-chinese.ldf RELOC/tex/latex/doclicense/doclicense-english.ldf RELOC/tex/latex/doclicense/doclicense-french.ldf + RELOC/tex/latex/doclicense/doclicense-galician.ldf RELOC/tex/latex/doclicense/doclicense-german.ldf + RELOC/tex/latex/doclicense/doclicense-italian.ldf RELOC/tex/latex/doclicense/doclicense-newzealand.ldf RELOC/tex/latex/doclicense/doclicense-ngerman.ldf + RELOC/tex/latex/doclicense/doclicense-polish.ldf + RELOC/tex/latex/doclicense/doclicense-portuguese.ldf + RELOC/tex/latex/doclicense/doclicense-russian.ldf RELOC/tex/latex/doclicense/doclicense-spanish.ldf RELOC/tex/latex/doclicense/doclicense.sty RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-eu.pdf RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-nd-eu.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-nd.pdf RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-sa-eu.pdf RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-sa.pdf RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc.pdf @@ -47274,175 +80286,255 @@ runfiles size=39 RELOC/tex/latex/doclicense/images/doclicense-CC-by.pdf RELOC/tex/latex/doclicense/images/doclicense-CC-pd.pdf RELOC/tex/latex/doclicense/images/doclicense-CC-zero.pdf -docfiles size=75 - RELOC/doc/latex/doclicense/README - RELOC/doc/latex/doclicense/doclicense.pdf -srcfiles size=7 - RELOC/source/latex/doclicense/doclicense.dtx - RELOC/source/latex/doclicense/doclicense.ins + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-3.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-3.0-plaintext.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-4.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-4.0-plaintext.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-3.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-3.0-plaintext.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-4.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-4.0-plaintext.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-nd-3.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-nd-3.0-plaintext.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-nd-4.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-nd-4.0-plaintext.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-sa-3.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-sa-3.0-plaintext.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-sa-4.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nc-sa-4.0-plaintext.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nd-3.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nd-3.0-plaintext.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nd-4.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-nd-4.0-plaintext.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-sa-3.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-sa-3.0-plaintext.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-sa-4.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-by-sa-4.0-plaintext.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-zero-1.0-latex.tex + RELOC/tex/latex/doclicense/license-texts/doclicense-CC-zero-1.0-plaintext.tex +catalogue-contact-bugs https://github.com/ypid/latex-packages/issues +catalogue-contact-repository https://github.com/ypid/latex-packages/tree/master/doclicense catalogue-ctan /macros/latex/contrib/doclicense -catalogue-date 2015-08-04 21:13:10 +0200 +catalogue-date 2019-04-07 21:52:28 +0200 catalogue-license lppl1.3 catalogue-topics licence-mgmt -catalogue-version 1.3 +catalogue-version 1.9.0 name docmfp category Package revision 15878 -shortdesc Document non-LaTeX code. +shortdesc Document non-LaTeX code relocated 1 longdesc Extends the doc package to cater for documenting non-LaTeX -longdesc code, such as Metafont or Metapost, or other programming +longdesc code, such as Metafont or MetaPost, or other programming longdesc languages. -runfiles size=2 - RELOC/tex/latex/docmfp/docmfp.sty +containersize 1956 +containerchecksum 55f68d7affd8d82631eb0e67c6232330bdff97ea908259a5e14255058d88f9f745afe55bd4a15eb91bff959b7cfc31835fa22196d3d0edcafa40da521b3105b6 +doccontainersize 148172 +doccontainerchecksum fc3721046105ae78b19b61a45fd01570873842c6786a096575efae282e4fc884f5f5dfd5ea6888a25ddc82077340bf0ede4a36977cd33d2b555ccfc3d0ff2c02 docfiles size=44 - RELOC/doc/latex/docmfp/README - RELOC/doc/latex/docmfp/docmfp.pdf + RELOC/doc/latex/docmfp/README details="Package Readme" + RELOC/doc/latex/docmfp/docmfp.pdf details="Package documentation" +srccontainersize 7932 +srccontainerchecksum 90c38a698f428980635ab3a826f35adb65a1f9b2a2dd385da8ff41ffba01870c071b7ce100dea1142d85ca216a68a0170aa8fdf92feb80a8ae055899f6b05633 srcfiles size=8 RELOC/source/latex/docmfp/docmfp.dtx RELOC/source/latex/docmfp/docmfp.ins +runfiles size=2 + RELOC/tex/latex/docmfp/docmfp.sty catalogue-ctan /macros/latex/contrib/docmfp -catalogue-date 2012-07-03 17:36:19 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics doc-supp catalogue-version 1.2d name docmute category Package revision 25741 -shortdesc Input files ignoring LaTeX preamble, etc. +shortdesc Input files ignoring LaTeX preamble, etc relocated 1 longdesc Input or include stand-alone LaTeX documents, ignoring longdesc everything but the material between \begin{document} and longdesc \end{document}. -runfiles size=1 - RELOC/tex/latex/docmute/docmute.sty +containersize 892 +containerchecksum 5c01f4e6922b7a23e753edf9110ae7f1386a4d6ca719ac898b058068a754a6c3bb123f918bdb1087baf5efd1176545f543ab8b93bcb6c9529c9000ad6a3b1e97 +doccontainersize 148464 +doccontainerchecksum 8207eade8841747201656a7e6edc789926a9dd411946a860e4d865fed618392bb9159245f7162adb4a58c88d00191d83f2daef49f610c3d8e5e231ad7f1fcb7e docfiles size=38 - RELOC/doc/latex/docmute/README - RELOC/doc/latex/docmute/docmute.pdf + RELOC/doc/latex/docmute/README details="Readme" + RELOC/doc/latex/docmute/docmute.pdf details="Package documentation" +srccontainersize 3156 +srccontainerchecksum 1809026635be9610b39f5f428dfeb2c323b4588dbc6306a50e00f092910fd449921a2cd797fdbf3408442b9f24cfeaf7c69e75db9bd217dce975eee2f1a4b930 srcfiles size=3 RELOC/source/latex/docmute/docmute.dtx RELOC/source/latex/docmute/docmute.ins +runfiles size=1 + RELOC/tex/latex/docmute/docmute.sty +catalogue-also combine includex newclude standalone catalogue-ctan /macros/latex/contrib/docmute -catalogue-date 2012-03-22 16:41:56 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics subdocs catalogue-version 1.4 -name doc-pictex +name docsurvey category Package -revision 24927 -shortdesc A summary list of PicTeX documentation. +revision 48931 +shortdesc A survey of LaTeX documentation relocated 1 -longdesc A summary of available resources providing (or merely -longdesc discussing) documentation of PicTeX. -docfiles size=1 - RELOC/doc/generic/doc-pictex/Doc-PiCTeX.txt -catalogue-ctan /info/pictex/Doc-PiCTeX.txt -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license other-free +longdesc A survey of programming-related documentation for LaTeX. +longdesc Included are references to printed and electronic books and +longdesc manuals, symbol lists, FAQs, the LaTeX source code, CTAN and +longdesc distributions, programming-related packages, users groups and +longdesc online communities, and information on creating packages and +longdesc documentation. +containersize 572 +containerchecksum e51d73b0dc7267b0564119b6836398a939676d8929e850201900eacb49e701e873661ec897e8c0523a094d82e736014e0ef61d07e2ffb5311924d2fdcaf1d5c4 +doccontainersize 360024 +doccontainerchecksum 3231dbb4c28a03b754817f50f930f1a6eec33ca9ef6e29a1c4b1edd025315ee9f9e7a371b8733d6624cf9b02dbb705dfcc82d6f98a99aa1ca05b4f277e083304 +docfiles size=96 + RELOC/doc/latex/docsurvey/README.txt details="Readme" + RELOC/doc/latex/docsurvey/docsurvey.pdf details="The document itself" + RELOC/doc/latex/docsurvey/docsurvey.tex +catalogue-contact-home http://bdtechconcepts.com/ +catalogue-ctan /info/docsurvey +catalogue-date 2018-10-18 09:43:59 +0200 +catalogue-license lppl1.3 +catalogue-topics ref-latex review-document tut-latex tut-latex-prg name doctools category Package revision 34474 -shortdesc Tools for the documentation of LaTeX code. +shortdesc Tools for the documentation of LaTeX code relocated 1 longdesc The package provides a collection of tools for use either in an longdesc "ordinary" LaTeX document, or within a .dtx file. -runfiles size=5 - RELOC/tex/latex/doctools/doctools.sty +containersize 5852 +containerchecksum 5c621b063d752fbcce773f2b209d358de1588e7c4edec017eb45a74c350e86932ac9c4e0662415ba7ad5bca8ca86d1255b15f4e5572ea949a5d6404b28f14025 +doccontainersize 603152 +doccontainerchecksum a78cec3ce74e4689c848b49af7da035cc7c684730f78acd7a7f8d8f78194492e53880e7884eb00dd22d4bbca4f370aabe8175048503959f88023a12ee4f26598 docfiles size=149 - RELOC/doc/latex/doctools/README - RELOC/doc/latex/doctools/doctools.pdf + RELOC/doc/latex/doctools/README details="Readme" + RELOC/doc/latex/doctools/doctools.pdf details="Package documentation" +srccontainersize 11196 +srccontainerchecksum bf61b5c519ad73fa8187797367355c195ed2048d83cb4842862edca740f51d60bc421881da10c474d950485faf701631af6299033d2005f0d2aa8c6561625864 srcfiles size=11 RELOC/source/latex/doctools/doctools.dtx RELOC/source/latex/doctools/doctools.ins +runfiles size=5 + RELOC/tex/latex/doctools/doctools.sty catalogue-ctan /macros/latex/contrib/doctools -catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics doc-supp catalogue-version 0.1 name documentation category Package revision 34521 -shortdesc Documentation support for C, Java and assembler code. +shortdesc Documentation support for C, Java and assembler code relocated 1 longdesc The package provides a simple means of typesetting computer longdesc programs such that the result is acceptable for inclusion in longdesc reports, etc. -runfiles size=2 - RELOC/tex/latex/documentation/documentation.sty +containersize 1944 +containerchecksum 330534f15cafffa56dc35e5b4de8caac66a87ccb0b834df5419a68a7cb136136263af14ef14ee7ecaf01fedb2803c2653dab7570ec2535ad1ca3033e1afd64e2 +doccontainersize 87916 +doccontainerchecksum 09854b00d86dd902c26c1b4f8cda942ea09796911939a20014b6d50d01b052e04007b55fe814877cb4515a6aa1f4ca1a7ebb39a6a6ac1bfc89b98d1f910329ee docfiles size=28 - RELOC/doc/latex/documentation/README - RELOC/doc/latex/documentation/documentation.pdf + RELOC/doc/latex/documentation/README details="Readme" + RELOC/doc/latex/documentation/documentation.pdf details="Package documentation" +srccontainersize 6436 +srccontainerchecksum 7e32523123407b913662fd7bbdedf5d3058e1e7e3592649b7afdd4d4df6bb704c7b1c3153fb0fdf3b8bea183259a64b8ab6ec17d74ee74ea086a56ef1dc90bc2 srcfiles size=6 RELOC/source/latex/documentation/documentation.dtx RELOC/source/latex/documentation/documentation.ins +runfiles size=2 + RELOC/tex/latex/documentation/documentation.sty catalogue-ctan /macros/latex/contrib/documentation -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics listing catalogue-version 0.1 +name doi +category Package +revision 48634 +shortdesc Create correct hyperlinks for DOI numbers +relocated 1 +longdesc You can hyperlink DOI numbers to doi.org. However, some +longdesc publishers have elected to use nasty characters in their DOI +longdesc numbering scheme ('<', '>', '_' and ';' have all been spotted). +longdesc This will either upset (La)TeX, or your PDF reader. This +longdesc package contains a single user-level command \doi{}, which +longdesc takes a DOI number, and creates a correct hyperlink to the +longdesc target of the DOI. +containersize 2152 +containerchecksum 7a041a56ecc0f88d5200d39d7611c74f955e79e5f5f887d26a70c76624c334b6229f7b937426cbbabfd7de7ae0f9cd2aee70c502981c46fcc3f18fddd62261bc +doccontainersize 1024 +doccontainerchecksum 3dd77559fbcb32d8bee7121f62bc37ca14c14c8e62f8d2ba44978438920dcdd54605a543135a6294e2ea9742f5fde4862a2efe3eeb6bf22b6d7418b4b01a2ebd +docfiles size=1 + RELOC/doc/latex/doi/README.md details="Readme" +runfiles size=1 + RELOC/tex/latex/doi/doi.sty +catalogue-contact-bugs https://github.com/ho-tex/doi/issues +catalogue-contact-home https://github.com/ho-tex +catalogue-contact-repository https://github.com/ho-tex/doi +catalogue-ctan /macros/latex/contrib/doi +catalogue-date 2018-09-09 21:40:17 +0200 +catalogue-license lppl +catalogue-topics hyper + name doipubmed category Package revision 15878 -shortdesc Special commands for use in bibliographies. +shortdesc Special commands for use in bibliographies relocated 1 longdesc The package provides the commands \doi, \pubmed and \citeurl. longdesc These commands are primarily designed for use in longdesc bibliographies. A LaTeX2HTML style file is also provided. -runfiles size=1 - RELOC/tex/latex/doipubmed/doipubmed.sty +containersize 1932 +containerchecksum 3f313afd9cee76d11b5f957a3e9f7cc0d5d2d04003c285df7cd872adc0cdd26d0248c03f0642d62af53f23c4399e7e5ac3ffcde38da782f64ab265e5879a7f60 +doccontainersize 74000 +doccontainerchecksum 0298b7f4a408f2092bb7ecd8d5b0cee745f442bdcc2bae463d922ae4511d5b0fd79b8f78d1de49f77b4fb158937fcb752d919239efc25829228c1f75185454ae docfiles size=25 RELOC/doc/latex/doipubmed/CHANGES - RELOC/doc/latex/doipubmed/README - RELOC/doc/latex/doipubmed/doipubmed-manual.html - RELOC/doc/latex/doipubmed/doipubmed.pdf + RELOC/doc/latex/doipubmed/README details="Readme" + RELOC/doc/latex/doipubmed/doipubmed-manual.html details="Package documentation (HTML)" + RELOC/doc/latex/doipubmed/doipubmed.pdf details="Package documentation (PDF)" RELOC/doc/latex/doipubmed/doipubmed.perl +srccontainersize 4020 +srccontainerchecksum ce8a2d5300a2a3555cef789064047d49810f1f7d9d00429eea8122cde3e4cf75b41d5cec901a3d6cb3596e83bfb43e8ccb2558c64ac3d0574970e9980ceceacf srcfiles size=4 RELOC/source/latex/doipubmed/doipubmed.dtx RELOC/source/latex/doipubmed/doipubmed.ins +runfiles size=1 + RELOC/tex/latex/doipubmed/doipubmed.sty catalogue-ctan /macros/latex/contrib/doipubmed -catalogue-date 2012-06-20 18:12:53 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics cite-supp catalogue-version 1.01 -name doi -category Package -revision 15878 -shortdesc Create correct hyperlinks for DOI numbers. -relocated 1 -longdesc You can hyperlink DOI numbers to dx.doi.org. However, some -longdesc publishers have elected to use nasty characters in their DOI -longdesc numbering scheme ('<', '>', '_' and ';' have all been spotted). -longdesc This will either upset (La)TeX, or your PDF reader. This -longdesc package contains a single user-level command \doi{}, which -longdesc takes a DOI number, and creates a correct hyperlink to the -longdesc target of the DOI. -runfiles size=1 - RELOC/tex/latex/doi/doi.sty -docfiles size=1 - RELOC/doc/latex/doi/README -catalogue-ctan /macros/latex/contrib/doi -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl - name dosepsbin category Package revision 29752 -shortdesc Deal with DOS binary EPS files. +shortdesc Deal with DOS binary EPS files longdesc A Encapsulated PostScript (EPS) file may given in a special longdesc binary format to support the inclusion of a thumbnail. This longdesc file format, commonly known as DOS EPS format starts with a longdesc binary header that contains the positions of the possible -longdesc sections: Postscript (PS); Windows Metafile Format (WMF); and +longdesc sections: PostScript (PS); Windows Metafile Format (WMF); and longdesc Tag Image File Format (TIFF). The PS section must be present longdesc and either the WMF file or the TIFF file should be given. The longdesc package provides a Perl program that will extract any of the longdesc sections of such a file, in particular providing a 'text'-form longdesc EPS file for use with (La)TeX. depend dosepsbin.ARCH -runfiles size=3 - texmf-dist/scripts/dosepsbin/dosepsbin.pl +containersize 4136 +containerchecksum 7f31d47d60b0bf151cd6e6516e29a8414c6344657c133e726e6e8dfe23818995b10b9a2898b1801c4bcb9219969a8af1d2725b75df514ffb119730b3e49008f1 +doccontainersize 57052 +doccontainerchecksum b9edce9984698db8e50f9183f89b025cfa89dca8a8725054af80f379c88ff1d2b02cef8f3d5f37ee5b8585a59d1a4d0f0ee0e541a7784f3f3f4e382d78e6a47e docfiles size=26 texmf-dist/doc/man/man1/dosepsbin.1 texmf-dist/doc/man/man1/dosepsbin.man1.pdf @@ -47451,29 +80543,171 @@ docfiles size=26 texmf-dist/doc/support/dosepsbin/clean-case.pl texmf-dist/doc/support/dosepsbin/dosepsbin.html texmf-dist/doc/support/dosepsbin/dosepsbin.ltx - texmf-dist/doc/support/dosepsbin/dosepsbin.pdf - texmf-dist/doc/support/dosepsbin/dosepsbin.txt + texmf-dist/doc/support/dosepsbin/dosepsbin.pdf details="Package documentation (PDF format)" + texmf-dist/doc/support/dosepsbin/dosepsbin.txt details="Package documentation (text format)" texmf-dist/doc/support/dosepsbin/version.pl +srccontainersize 19036 +srccontainerchecksum d5739533a9d10e584ed7de4ec033b4a31be5681fd06fd9a2268f924d4434df902fc1f346ac2636f4ba7b7dcc6b5804a80b5431f7055fe8eccfeeea09915ad2e7 srcfiles size=20 texmf-dist/source/support/dosepsbin/configure texmf-dist/source/support/dosepsbin/configure.ac texmf-dist/source/support/dosepsbin/install-sh +runfiles size=3 + texmf-dist/scripts/dosepsbin/dosepsbin.pl catalogue-ctan /support/dosepsbin -catalogue-date 2014-10-16 20:09:26 +0200 -catalogue-license gpl +catalogue-date 2016-07-05 18:29:32 +0200 +catalogue-license artistic +catalogue-topics image-supp catalogue-version 1.2 +name dosepsbin.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of dosepsbin +containersize 340 +containerchecksum d9a6af193f574ee6b0b8f4745641c67016ac514ee9439357f175616e114f0e02aaac24811ad381fb8ed884926c30aa78029c38d910f205db0e306cbe3a87fdc1 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/dosepsbin + +name dosepsbin.amd64-freebsd +category Package +revision 24759 +shortdesc amd64-freebsd files of dosepsbin +containersize 340 +containerchecksum df724f68b1a780246128666b54f2254565c5d03adf9d2b502420764838787b57769c309244b2ac06af297a91e3915e01ddfd520af3ad90dccde65215acb0496b +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/dosepsbin + +name dosepsbin.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of dosepsbin +containersize 340 +containerchecksum f1262559f58ed2103506a90bd61161676221dd54ad12d3730eabee03561eefaf39986952fceee542b98903d4bf7316b373670d19f449ef23a1c14d8012f05782 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/dosepsbin + +name dosepsbin.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of dosepsbin +containersize 340 +containerchecksum bcdc2a4e1ba4f63e5558b8c19d8a2fdf0ba434c7b690052704d099dc2167a16f33cc4418219b596007b0ab6cf67b0811ed5c095ee5d9660264929e6cf343527c +binfiles arch=armhf-linux size=1 + bin/armhf-linux/dosepsbin + +name dosepsbin.i386-cygwin +category Package +revision 24759 +shortdesc i386-cygwin files of dosepsbin +containersize 340 +containerchecksum 5ac4d35ac5e394251bfe0b8096eda1eb6c76e74aeb75e029c3dacce5162043fd720832eb689f9e85264884f9be377373bb1937f0640368eff33ffd960add8517 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/dosepsbin + +name dosepsbin.i386-freebsd +category Package +revision 24759 +shortdesc i386-freebsd files of dosepsbin +containersize 344 +containerchecksum 68bfd2c4c27bdb9596abebec35fddb936e26f6ffbc81d87637ca5a466a475e7878814a4e8f41f8887b5887f48df57cf3b9948cf98bc8d1bcf47691b270b76703 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/dosepsbin + name dosepsbin.i386-linux category Package revision 24759 shortdesc i386-linux files of dosepsbin +containersize 340 +containerchecksum 913b50a0d19a979c8b717e15b320b3b14029cf6a66929851b579a03fc2e030c72840d83178cac631d8ffc5366a4fedf893bb35dc743804b7ead3643adb8d9cc7 binfiles arch=i386-linux size=1 bin/i386-linux/dosepsbin +name dosepsbin.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of dosepsbin +containersize 340 +containerchecksum 6c514aed89e854c0093dd5918a360f4bc3eef79e865901fe575626e48e016acf62b1059fa4d7c70721f471ac4d0d1b59634c22570baec990ca373cf6c4228f83 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/dosepsbin + +name dosepsbin.i386-solaris +category Package +revision 24759 +shortdesc i386-solaris files of dosepsbin +containersize 340 +containerchecksum 2473e3ab98daa1121151d3ccbd85a57dfc6804a81733b136ccb78acadc2c7019ff4f9fe5004e1d64264179cd481fbac40f38ba344ff5d02196ab841cdb1d6f58 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/dosepsbin + +name dosepsbin.win32 +category Package +revision 24759 +shortdesc win32 files of dosepsbin +containersize 684 +containerchecksum 880854e12823c3789df87ae2991fd2d1efd0f7a470cce497a20863e01b03b10ba1fea03359ce112d2912da0e691360d10edf58d9aaa610dd70a24fcba2b9ca41 +binfiles arch=win32 size=1 + bin/win32/dosepsbin.exe + +name dosepsbin.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of dosepsbin +containersize 340 +containerchecksum 6b0993789e1b2304efbe274adeb5fc89dc89dd11ae934e59f859826ac832326d5c1883a0f4585cf283ef2bbc35704c3a2a1ea687ba22e2e20b22f4387ceec04e +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/dosepsbin + +name dosepsbin.x86_64-darwin +category Package +revision 24759 +shortdesc x86_64-darwin files of dosepsbin +containersize 340 +containerchecksum a299b5e967c86aa27bacd0562557bc1d5c4ecd9087f53231c5b276b96d02eaf9dd39fd96392212f83231e0c7d09accba1c4dc45168dafe0a6b0cf32f5320b6c4 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/dosepsbin + +name dosepsbin.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of dosepsbin +containersize 348 +containerchecksum 6d2e39030cf384fe341807ee6e9de9b7527f9a2041827c70b43da061bc299dfacdcb6108a74af353c1fd2349ef982d03118214ce3f2c75c970e73301665d04fe +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/dosepsbin + +name dosepsbin.x86_64-linux +category Package +revision 24759 +shortdesc x86_64-linux files of dosepsbin +containersize 340 +containerchecksum e1fe367ff6dd1d9ed9c35bd3b809766dcfbd3c5a603ff98be117053c3fb2c6376c385c5f5455e94f5d07f75e7493abe7ee4cb6102eb8b789e2c9e072429e1453 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/dosepsbin + +name dosepsbin.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of dosepsbin +containersize 344 +containerchecksum 93aa85da86c1341616d04d05a5cc806ae4a3d1a7a4f490e0395ca886ac82ee83242f1879ec12a1c0983981dd20efa0881ed896229b608aa61e7e27dea39542f1 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/dosepsbin + +name dosepsbin.x86_64-solaris +category Package +revision 24759 +shortdesc x86_64-solaris files of dosepsbin +containersize 340 +containerchecksum bf443a0d46e32c9328db3dfca863f5709d2fba8f2612aab152e841b6789e0f4ba46dc83362c50c077821051a17a05b7b2b03fce5858c1369082da26ad4befb01 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/dosepsbin + name dot2texi category Package revision 26237 -shortdesc Create graphs within LaTeX using the dot2tex tool. +shortdesc Create graphs within LaTeX using the dot2tex tool relocated 1 longdesc The dot2texi package allows you to embed graphs in the DOT longdesc graph description language in your LaTeX documents. The dot2tex @@ -47481,11 +80715,13 @@ longdesc tool is used to invoke Graphviz for graph layout, and to longdesc transform the output from Graphviz to LaTeX code. The generated longdesc code relies on the TikZ and PGF package or the PSTricks longdesc package. The process is automated if shell escape is enabled. -runfiles size=3 - RELOC/tex/latex/dot2texi/dot2texi.sty +containersize 3740 +containerchecksum 20cc54f907b00e2eb14e4641d5098dd4886ce8d4627f391421bc5e819614dec97e0ec42c92794bacb8ffcb03737cb8736c308fad6984abf13c127f6d1174ee0f +doccontainersize 216576 +doccontainerchecksum 9e8461946582e0c99ee35437522e25769e2afe5d7051f072937a57c5d4e1a0c8e144509c751f9ddb7ef576f43ca408ffca663f81c8b5e69fb176a4233ff45ea3 docfiles size=95 - RELOC/doc/latex/dot2texi/README - RELOC/doc/latex/dot2texi/dot2texi.pdf + RELOC/doc/latex/dot2texi/README details="Readme" + RELOC/doc/latex/dot2texi/dot2texi.pdf details="Package documentation" RELOC/doc/latex/dot2texi/dot2texi.tex RELOC/doc/latex/dot2texi/examples/d2tpstexamples.pdf RELOC/doc/latex/dot2texi/examples/d2tpstexamples.tex @@ -47495,59 +80731,76 @@ docfiles size=95 RELOC/doc/latex/dot2texi/examples/docgraphs.tex RELOC/doc/latex/dot2texi/examples/docgraphsorig.pdf RELOC/doc/latex/dot2texi/gpl.txt +runfiles size=3 + RELOC/tex/latex/dot2texi/dot2texi.sty catalogue-ctan /macros/latex/contrib/dot2texi -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-09-15 11:27:31 +0200 catalogue-license gpl +catalogue-topics foreign-import graphics catalogue-version 3.0 name dotarrow category Package revision 15878 -shortdesc Extendable dotted arrows. +shortdesc Extendable dotted arrows relocated 1 longdesc The package can draw dotted arrows that are extendable, in the longdesc same was as \xrightarrow. -runfiles size=2 - RELOC/tex/latex/dotarrow/DotArrow.sty +containersize 1592 +containerchecksum 43ff7e4e163764e703673312a1213c50f0a77da98f3f36b726e87042d082f3d2433e35156e1c963d1c6287aa4cea5ccc64f140f89b82569b0552f406b29813c9 +doccontainersize 75524 +doccontainerchecksum 7b5a4d0b2b31f55e657eed5b7cc0185a8895df77895bbe40f27c4d29d1086c9fef1779f7c4c726faae25821972fac418c379e9e68ad4cd059b1c6f5b0420e9fc docfiles size=25 - RELOC/doc/latex/dotarrow/DotArrow.pdf + RELOC/doc/latex/dotarrow/DotArrow.pdf details="Package documentation" RELOC/doc/latex/dotarrow/DotArrow.tex - RELOC/doc/latex/dotarrow/README + RELOC/doc/latex/dotarrow/README details="Readme" +srccontainersize 2828 +srccontainerchecksum 3d756e93ba60153727d1719f3eb77d278ecae65c08f18529a6352707b655bf39f01152f13b60490ce21ba358e2021681a64de8e9fa6f46f9f4bae5b3a754f1a9 srcfiles size=4 RELOC/source/latex/dotarrow/DotArrow.dtx RELOC/source/latex/dotarrow/DotArrow.ins +runfiles size=2 + RELOC/tex/latex/dotarrow/DotArrow.sty catalogue-ctan /macros/latex/contrib/dotarrow -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics maths-symbol catalogue-version 0.01a name dotseqn category Package revision 17195 -shortdesc Flush left equations with dotted leaders to the numbers. +shortdesc Flush left equations with dotted leaders to the numbers relocated 1 longdesc The package provides a different format for typesetting longdesc equations, one reportedly used in 'old style Britsh books': longdesc equations aligned on the left, with dots on the right leading longdesc to the equation number. In default of an equation number, the longdesc package operates much like the fleqn class option (no leaders). -runfiles size=1 - RELOC/tex/latex/dotseqn/dotseqn.sty +containersize 1856 +containerchecksum 794be5110d50ff9134471aedec8adaf7267f112012d962ee6e1cd7ddaa36cc37d993517cf4663686c90df891fe2e912d260cc9c9945aaee25925c2915afcc45f +doccontainersize 131816 +doccontainerchecksum aeb026d83497b78725d623b52223877d4d5a0a745312511f007d69395b87ba5362904cfa26bb24f2f2c7d0e0ae14bb82699d6108533260d736c0e85bc29ceff2 docfiles size=36 - RELOC/doc/latex/dotseqn/dotseqn.pdf - RELOC/doc/latex/dotseqn/readme + RELOC/doc/latex/dotseqn/dotseqn.pdf details="Package documentation" + RELOC/doc/latex/dotseqn/readme details="Readme" +srccontainersize 5480 +srccontainerchecksum 7cd2a4a2001a38e999e0632222116f32b559d8f004c9e378493d84486028e5c1cd5268f63a0eb93f9d1402b2c2e11b2db2429547f300809cca3d9f39efd6b17e srcfiles size=5 RELOC/source/latex/dotseqn/dotseqn.dtx RELOC/source/latex/dotseqn/dotseqn.ins +runfiles size=1 + RELOC/tex/latex/dotseqn/dotseqn.sty catalogue-ctan /macros/latex/contrib/dotseqn -catalogue-date 2012-06-20 18:12:53 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics maths catalogue-version 1.1 name dottex category Package revision 15878 -shortdesc Use dot code in LaTeX. +shortdesc Use dot code in LaTeX relocated 1 longdesc The dottex package allows you to encapsulate 'dot' and 'neato' longdesc files in your document (dot and neato are both part of @@ -47556,25 +80809,32 @@ longdesc graphs). If you have shell-escape enabled, the package will longdesc arrange for your files to be processed at LaTeX time; longdesc otherwise, the conversion must be done manually as an longdesc intermediate process before a second LaTeX run. -runfiles size=2 - RELOC/tex/latex/dottex/dottex.sty +containersize 2596 +containerchecksum 037586577425d8a38a2170bc4bb9a7fa28a7886ad852d1c85483f7c3b625321c41a204b613479382ff5fb9e8cc3f8f9d8ff6e0a07c14b71ce6fdc68280515e33 +doccontainersize 88372 +doccontainerchecksum 3708e08c630e27d744c3a865cc02e91868a32b1648b4d390cea0f20ea6340c56ea1720348f6b82796df6cc3f4d5b7feaf59ffe7e24c32e34535a4e5763318df6 docfiles size=30 RELOC/doc/latex/dottex/README - RELOC/doc/latex/dottex/dottex.pdf + RELOC/doc/latex/dottex/dottex.pdf details="Package documentation" RELOC/doc/latex/dottex/example.tex RELOC/doc/latex/dottex/gpl.txt +srccontainersize 4668 +srccontainerchecksum adf26c722ad1e2fa26d10488125267516923db87c1185068a33a082c6f51bf5ec644ace69aefa0630eab9a604bfc28032cb5d10db15ef0c80ab28fc93839a13b srcfiles size=5 RELOC/source/latex/dottex/dottex.dtx RELOC/source/latex/dottex/dottex.ins +runfiles size=2 + RELOC/tex/latex/dottex/dottex.sty catalogue-ctan /macros/latex/contrib/dottex -catalogue-date 2012-05-07 22:13:48 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics graphics-inline catalogue-version 0.6 name doublestroke category Package revision 15878 -shortdesc Typeset mathematical double stroke symbols. +shortdesc Typeset mathematical double stroke symbols relocated 1 longdesc A font based on Computer Modern Roman useful for typesetting longdesc the mathematical symbols for the natural numbers (N), whole @@ -47584,6 +80844,14 @@ longdesc 'h' and 'k'. The font is available both as Metafont source and longdesc in Adobe Type 1 format, and LaTeX macros for its use are longdesc provided. The fonts appear in the blackboard bold sampler. execute addMap dstroke.map +containersize 67024 +containerchecksum ff1be47939d9a2e8ec4fe8e6852d9fa31c2776511de158611ef8b853ac73291d1aa4ffe81985bed60c75a16e3cfc963a3a8ce3fb9494dcf6664cd6d92a549e73 +doccontainersize 94088 +doccontainerchecksum 2cf0cc8936393be2b01ed06158b250a43514098aeec4007bf493bd9232fda911f4a59f45716fba5837e475bdc39a86cf6e1180d4220e6aef26ff9e0315389200 +docfiles size=31 + RELOC/doc/fonts/doublestroke/README details="Package Readme" + RELOC/doc/fonts/doublestroke/dsdoc.pdf details="Package documentation" + RELOC/doc/fonts/doublestroke/dsdoc.tex runfiles size=58 RELOC/fonts/map/dvips/doublestroke/dstroke.map RELOC/fonts/source/public/doublestroke/dsrom.mf @@ -47610,19 +80878,17 @@ runfiles size=58 RELOC/tex/latex/doublestroke/Udsrom.fd RELOC/tex/latex/doublestroke/Udsss.fd RELOC/tex/latex/doublestroke/dsfont.sty -docfiles size=31 - RELOC/doc/fonts/doublestroke/README - RELOC/doc/fonts/doublestroke/dsdoc.pdf - RELOC/doc/fonts/doublestroke/dsdoc.tex +catalogue-also bbm bbold mbboard catalogue-ctan /fonts/doublestroke -catalogue-date 2014-04-24 21:17:57 +0200 +catalogue-date 2016-07-29 06:41:49 +0200 catalogue-license other-free +catalogue-topics font font-maths font-type1 font-mf font-bbd catalogue-version 1.111 name dowith category Package -revision 29501 -shortdesc Apply a command to a list of items. +revision 38860 +shortdesc Apply a command to a list of items relocated 1 longdesc The package provides macros for applying a command to all longdesc elements of a list without separators, such as @@ -47632,30 +80898,38 @@ longdesc belonged to LaTeX, but the package should work with other longdesc formats as well. Loop and list macros in other packages are longdesc discussed. A further package, domore, is also provided, which longdesc enhances the functionality of dowith. -runfiles size=6 - RELOC/tex/generic/dowith/domore.sty - RELOC/tex/generic/dowith/dowith.RLS - RELOC/tex/generic/dowith/dowith.sty -docfiles size=326 +containersize 6600 +containerchecksum 7c9bc25d94364ea13326ebc010d15c92b27ffad08b68fa5c3b5034e6bbd6a96370d159727270adf76e6edca15d08de86c13ca7ede009a445b500ac22b151c05c +doccontainersize 1179736 +doccontainerchecksum 2fb2234cdf6b42bd3f9f991b3d2d76473c45c51ffb67e7c12e7976310e0fa562cb8d1f01b347e9b8140c854e1ede865cfed17f5748ded909dc8d983d4f246961 +docfiles size=302 RELOC/doc/generic/dowith/Announce.txt - RELOC/doc/generic/dowith/README + RELOC/doc/generic/dowith/README details="Readme" RELOC/doc/generic/dowith/SrcFILEs.txt - RELOC/doc/generic/dowith/domore.pdf - RELOC/doc/generic/dowith/dowith.pdf + RELOC/doc/generic/dowith/domore.pdf details="Domore documentation" + RELOC/doc/generic/dowith/dowith.pdf details="Dowith documentation" +srccontainersize 21140 +srccontainerchecksum 44d331b8f99533a6bb3b150748245787f686a807b22dcea3dd9bef311000881fcf0870d19d6718574d56adae79451ef05aca1bddf1904a76d50dd4e74529fd47 srcfiles size=18 RELOC/source/generic/dowith/domore.tex RELOC/source/generic/dowith/dowith.tex RELOC/source/generic/dowith/fdatechk.tex RELOC/source/generic/dowith/srcfiles.tex +runfiles size=6 + RELOC/tex/generic/dowith/domore.sty + RELOC/tex/generic/dowith/dowith.RLS + RELOC/tex/generic/dowith/dowith.sty +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html catalogue-ctan /macros/generic/dowith -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-05-05 20:43:02 +0200 catalogue-license lppl1.3 -catalogue-version 0.31a +catalogue-topics macro-supp +catalogue-version r0.32 name download category Package revision 30695 -shortdesc Allow LaTeX to download files using an external process. +shortdesc Allow LaTeX to download files using an external process relocated 1 longdesc The package allows the user to download files (using cURL or longdesc wget), from within a document. To run the external commands, @@ -47663,22 +80937,29 @@ longdesc LaTeX (or whatever) needs to be run with the --shell-escape longdesc flag; this creates a tension between your needs and the longdesc security implications of the flag; users should exercise due longdesc caution. -runfiles size=2 - RELOC/tex/latex/download/download.sty +containersize 1992 +containerchecksum 57c40307dc3e96576599b595549b01af8c51e8806e2672686d0811c455b1c48490d1c3400d506a8ba7ca0f32a9d56bdb2dcfe4e21190e2d0d6f2ae0860c726a9 +doccontainersize 144848 +doccontainerchecksum 517a9382bf8547bd9a9a74e18b339c99febbcdd34d7192bbb73a6d69bf898600340aca609aeb07cde7f4bc194858ca280d02df6bc1c895678d6d0405e7a4086f docfiles size=37 RELOC/doc/latex/download/README - RELOC/doc/latex/download/download.pdf + RELOC/doc/latex/download/download.pdf details="Package documentation" +srccontainersize 5452 +srccontainerchecksum ef5b3e9db3aece34e97dd05ea0c592ac7cafb1e5f725b194521f198e6894d665a4b9ca7e4992e90257d1cc6b998660624a29b22757b9ca67a0355cd4e63d557e srcfiles size=5 RELOC/source/latex/download/download.tex +runfiles size=2 + RELOC/tex/latex/download/download.sty catalogue-ctan /macros/latex/contrib/download -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics ext-code catalogue-version 1.1 name dox category Package -revision 20768 -shortdesc Extend the doc package. +revision 46011 +shortdesc Extend the doc package relocated 1 longdesc The doc package provides LaTeX developers with means to longdesc describe the usage and the definition of new macros and @@ -47686,25 +80967,35 @@ longdesc environments. However, there is no simple way to extend this longdesc functionality to other items (options or counters, for longdesc instance). The DoX package is designed to circumvent this longdesc limitation. -runfiles size=2 - RELOC/tex/latex/dox/dox.sty -docfiles size=42 +containersize 2764 +containerchecksum dc37733e7253d457b2fe09b72b808c5198f222dcde12e0d36ae546a8ad0537419fe7f27945625bb3cd3efd2b5b63991e89dede1199e89c67fe7d6917370cab67 +doccontainersize 131676 +doccontainerchecksum 4474e38d3dd35dd14b281f7d2e5ad1d6104d95579901a50b3575e846532c279111c81f813b78c4d16ca6c78ac627a30e51515ee7b178602b7338c1c799c62609 +docfiles size=44 RELOC/doc/latex/dox/NEWS - RELOC/doc/latex/dox/README + RELOC/doc/latex/dox/README.md details="Readme" + RELOC/doc/latex/dox/THANKS RELOC/doc/latex/dox/dox.el - RELOC/doc/latex/dox/dox.pdf + RELOC/doc/latex/dox/dox.pdf details="Package documentation" RELOC/doc/latex/dox/header.inc +srccontainersize 8456 +srccontainerchecksum 08cbe72a2af77f3cd34a78d0743ede6f0017e7edc275e56c66defd51b1550990cf00d9327ee9cca5c44b7c73870ead063346754c4dc1f1aafc00614a5d5c0707 srcfiles size=8 RELOC/source/latex/dox/dox.dtx RELOC/source/latex/dox/dox.ins +runfiles size=2 + RELOC/tex/latex/dox/dox.sty +catalogue-contact-home http://www.lrde.epita.fr/~didier/software/latex.php#dox +catalogue-contact-repository https://github.com/didierverna/dox catalogue-ctan /macros/latex/contrib/dox -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 2.2 +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl1.3 +catalogue-topics doc-supp +catalogue-version 2.4 name dozenal category Package -revision 37698 +revision 47680 shortdesc Typeset documents using base twelve numbering (also called "dozenal") relocated 1 longdesc The package supports typesetting documents whose counters are @@ -47718,7 +81009,22 @@ longdesc Pitman characters preferred by the Dozenal Society of Great longdesc Britain). The fonts were designed to blend well with the longdesc Computer Modern fonts, and are available both as Metafont longdesc source and in Adobe Type 1 format. -runfiles size=168 +containersize 101908 +containerchecksum ca4171da87126231a791f432a6015cc069f0eb0d540f8b79b3b5028f3f3e30d9202622886b582f2e351049603d0323a458fbce3d6b2565af5391a4aa94b734c0 +doccontainersize 311064 +doccontainerchecksum e7c180bed185135cfba31acbf4488ff0991066be7456a7c54625df458a24819ef8b41bc19eec955967f22fc156ad6efc9e194489178e2cffb806bf066ea42520 +docfiles size=84 + RELOC/doc/fonts/dozenal/CHANGES + RELOC/doc/fonts/dozenal/README details="Readme" + RELOC/doc/fonts/dozenal/dozenal.pdf details="Package documentation" + RELOC/doc/fonts/dozenal/dozenalfilelist.txt + RELOC/doc/fonts/dozenal/lppl.txt +srccontainersize 11940 +srccontainerchecksum 4e8c3cc35fc2d429fa286fc68eb92d2d290bbbbeabcb714d849f9132ff71bf99edfc5b08a0ae596f98e900e1b49d658af2b2b9daf1fbacf57e2b3aeefa15f6ad +srcfiles size=12 + RELOC/source/fonts/dozenal/dozenal.dtx + RELOC/source/fonts/dozenal/dozenal.ins +runfiles size=170 RELOC/fonts/afm/public/dozenal/dozchars10.afm RELOC/fonts/afm/public/dozenal/dozchars12.afm RELOC/fonts/afm/public/dozenal/dozchars17.afm @@ -47803,6 +81109,7 @@ runfiles size=168 RELOC/fonts/tfm/public/dozenal/dozchsl12.tfm RELOC/fonts/tfm/public/dozenal/dozchsl8.tfm RELOC/fonts/tfm/public/dozenal/dozchsl9.tfm + RELOC/fonts/tfm/public/dozenal/gray.tfm RELOC/fonts/type1/public/dozenal/dozchars10.pfb RELOC/fonts/type1/public/dozenal/dozchars12.pfb RELOC/fonts/type1/public/dozenal/dozchars17.pfb @@ -47830,45 +81137,41 @@ runfiles size=168 RELOC/fonts/type1/public/dozenal/dozchsl8.pfb RELOC/fonts/type1/public/dozenal/dozchsl9.pfb RELOC/tex/latex/dozenal/dozenal.sty -docfiles size=83 - RELOC/doc/fonts/dozenal/CHANGES - RELOC/doc/fonts/dozenal/README - RELOC/doc/fonts/dozenal/dozenal.pdf - RELOC/doc/fonts/dozenal/dozenalfilelist.txt - RELOC/doc/fonts/dozenal/lppl.txt -srcfiles size=10 - RELOC/source/fonts/dozenal/dozenal.dtx - RELOC/source/fonts/dozenal/dozenal.ins catalogue-ctan /fonts/dozenal -catalogue-date 2015-06-28 06:32:22 +0200 +catalogue-date 2018-05-11 21:00:13 +0200 catalogue-license lppl1.3 -catalogue-topics font font-specialist font-mf font-type1 -catalogue-version 6.0 +catalogue-topics font font-specialist font-mf font-type1 numbers +catalogue-version 7.2 name dpfloat category Package revision 17196 -shortdesc Support for double-page floats. +shortdesc Support for double-page floats relocated 1 longdesc Provides fullpage and leftfullpage environments, that may be longdesc used inside a figure, table, or other float environment. If the longdesc first of a 2-page spread uses a "leftfullpage" environment, the longdesc float will only be typeset on an even-numbered page, and the longdesc two floats will appear side-by-side in a two-sided document. -runfiles size=1 - RELOC/tex/latex/dpfloat/dpfloat.sty +containersize 1888 +containerchecksum df136498f7ba41b1335ac109667d07dd9584e6682e1d75fc82a80839bf0f6d7a4de1f5750aa738eefb96d14d2adea20a3ec9fbc92130481d9bce0abb6c6f175e +doccontainersize 194820 +doccontainerchecksum 2cbdb8711556580d14a01b9daf03b1a1095387c077413b2815bfaef1af2781fc8bc56fa7a6a36abee60d6ce6928f920c9d9c3deecc2e071e8e99d51c1421508c docfiles size=51 - RELOC/doc/latex/dpfloat/README - RELOC/doc/latex/dpfloat/dpfloat.pdf + RELOC/doc/latex/dpfloat/README details="Readme" + RELOC/doc/latex/dpfloat/dpfloat.pdf details="Package documentation" RELOC/doc/latex/dpfloat/dpfloat.tex +runfiles size=1 + RELOC/tex/latex/dpfloat/dpfloat.sty catalogue-ctan /macros/latex/contrib/dpfloat -catalogue-date 2012-05-15 16:59:15 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics float name dprogress category Package revision 15878 -shortdesc LaTeX-relevant log information for debugging. +shortdesc LaTeX-relevant log information for debugging relocated 1 longdesc The package logs LaTeX's progress through the file, making the longdesc LaTeX output more verbose. This helps to make LaTeX debugging @@ -47876,23 +81179,30 @@ longdesc easier, as it is simpler to find where exactly LaTeX failed. longdesc The package outputs the typesetting of section, subsection and longdesc subsubsection headers and (if amsmath is loaded) details of the longdesc align environment. -runfiles size=2 - RELOC/tex/latex/dprogress/dprogress.sty +containersize 1568 +containerchecksum 4f56a2d6e345cb98eba3ffddfa977bd48661d90bd10712387141b3398c9a85e8b9d7b0f33e75635b7a98e91176f1e866ecf0b14ef0197fc488bf976dd4889673 +doccontainersize 63844 +doccontainerchecksum 455451396b22b3d38288a5c51f6c2413c56ffd07ac1331c3727c4f382eaa07f0a128373ba033ae58e53411e69a4ec0eca67609fc3c111c91f24f2adb2536a2e1 docfiles size=20 - RELOC/doc/latex/dprogress/README - RELOC/doc/latex/dprogress/dprogress.pdf + RELOC/doc/latex/dprogress/README details="Readme" + RELOC/doc/latex/dprogress/dprogress.pdf details="Package documentation" +srccontainersize 2744 +srccontainerchecksum de6166c9c79f62c0f3eb973b6383f2bb486a8f7673628862d54af8e00a5ddcdf78419ea819c95e750f47fa3e65cd58b598e3a3510d43ec3d4d3fa9538a846a79 srcfiles size=3 RELOC/source/latex/dprogress/dprogress.dtx RELOC/source/latex/dprogress/dprogress.ins +runfiles size=2 + RELOC/tex/latex/dprogress/dprogress.sty catalogue-ctan /macros/latex/contrib/dprogress -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics doc-debug catalogue-version 0.1 name drac category Package revision 15878 -shortdesc Declare active character substitution, robustly. +shortdesc Declare active character substitution, robustly relocated 1 longdesc The package provides macros \DeclareRobustActChar and longdesc \ReDeclareRobActChar. One uses \DeclareRobustActChar in the @@ -47901,11 +81211,15 @@ longdesc \protects the active character when it appears in a moving longdesc argument. \ReDeclareRobActChar redefines an active character longdesc previously defined with \DeclareRobustActChar, in the same way longdesc that \renewcommand works for ordinary commands. -runfiles size=1 - RELOC/tex/latex/drac/drac.sty +containersize 1368 +containerchecksum f45c94e222a6bcae0d87ab5aebf0f594f1674a49787391dfb9cce32f9b36a0aa6a81e84ea4ca345e0918ff2166e36738ae9969e4d9e4653bbb99ac6a7f0cc63f +doccontainersize 588784 +doccontainerchecksum 7e6debf9580d7c145d8f95329aeadd63012bcfe3ac04fb9c4a3e815391757051ce021e4e2659c96fd7ff5066e3e324ac947cfaca16e52bf5895fd5724f81f552 docfiles size=183 - RELOC/doc/latex/drac/drac-fr.pdf - RELOC/doc/latex/drac/drac.pdf + RELOC/doc/latex/drac/drac-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/drac/drac.pdf details="Package documentation (English)" language="en" +srccontainersize 10284 +srccontainerchecksum a56b3648bc75174179ac74eda67d84226985d18863270cdf6b6c1688ff1405389ad27f20abdc6a41f68520e1d95890fe021d1896d00a5c44a6a4ec2b9c380944 srcfiles size=12 RELOC/source/latex/drac/LISEZMOI RELOC/source/latex/drac/Makefile @@ -47913,26 +81227,30 @@ srcfiles size=12 RELOC/source/latex/drac/drac-en.dtx RELOC/source/latex/drac/drac-fr.dtx RELOC/source/latex/drac/drac.ins +runfiles size=1 + RELOC/tex/latex/drac/drac.sty catalogue-ctan /macros/latex/contrib/drac -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics macro-supp catalogue-version 1 name draftcopy category Package revision 15878 -shortdesc Identify draft copies. +shortdesc Identify draft copies relocated 1 longdesc Places the word DRAFT (or other words) in light grey diagonally longdesc across the background (or at the bottom) of each (or selected) longdesc pages of the document. The package uses PostScript \special -longdesc commands, and may not therefore be used with PDFLaTeX. For that +longdesc commands, and may not therefore be used with pdfLaTeX. For that longdesc usage, consider the wallpaper or draftwatermark packages. -runfiles size=5 - RELOC/tex/latex/draftcopy/draftcopy.cfg - RELOC/tex/latex/draftcopy/draftcopy.sty +containersize 4252 +containerchecksum f1f2ac803e1858ffab880c7427ed2dfeaeb435255e83ed795e0d5b4262fce1fbf7593653035af2e45d4731107c8f886938015ee1a7fd0018001c0e39e9f1018d +doccontainersize 122724 +doccontainerchecksum f7a4941c26c92223a9dde51e288380efe3b701d847051c13345e97f5a082cb3cd9e5d5421dfb2b1f1cdc12214df1ce6970a8ca6fe7463faad73af1a12c3542e7 docfiles size=64 - RELOC/doc/latex/draftcopy/README + RELOC/doc/latex/draftcopy/README details="Readme" RELOC/doc/latex/draftcopy/THIS-IS-VERSION-2.16 RELOC/doc/latex/draftcopy/draftcopy-test-1.tex RELOC/doc/latex/draftcopy/draftcopy-test-10.tex @@ -47951,20 +81269,55 @@ docfiles size=64 RELOC/doc/latex/draftcopy/draftcopy-test-8.tex RELOC/doc/latex/draftcopy/draftcopy-test-9.tex RELOC/doc/latex/draftcopy/draftcopy.doc - RELOC/doc/latex/draftcopy/draftcopy.pdf + RELOC/doc/latex/draftcopy/draftcopy.pdf details="Package documentation" +srccontainersize 3072 +srccontainerchecksum 9320e076a200fa5d7fa297c7d3228ce77ad9a9a56f57e4ef250a21320e9f2e429004ab716747499a264108ece97ae03388df084c24e2a370f57ee22b80628cba srcfiles size=3 RELOC/source/latex/draftcopy/Makefile RELOC/source/latex/draftcopy/draftcopy.dtx RELOC/source/latex/draftcopy/draftcopy.ins +runfiles size=5 + RELOC/tex/latex/draftcopy/draftcopy.cfg + RELOC/tex/latex/draftcopy/draftcopy.sty catalogue-ctan /macros/latex/contrib/draftcopy -catalogue-date 2011-09-30 20:51:09 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics editorial catalogue-version 2.16 +name draftfigure +category Package +revision 44854 +shortdesc Replace figures with a white box and additional features +relocated 1 +longdesc With this package you can control the outcome of a figure which +longdesc is set to draft and modify the display with various options. +containersize 1828 +containerchecksum e8ced947e69803243543657185e8fb28e67776dc9eee5e095126ec712fa368c32903f53243aaabb7308c895cf8e0c10a6d89c33e6b6c5d109f0300dab5213e60 +doccontainersize 163348 +doccontainerchecksum f0a9a59ee326746802fb33412c44148ed8c836a24653df6685ecb69bc76870cae63ac8955274705639e658491566da0d0633ee8d57cf57d58fe43a971252ee05 +docfiles size=48 + RELOC/doc/latex/draftfigure/README.md details="Readme" + RELOC/doc/latex/draftfigure/draftfigure.pdf details="Package documentation" + RELOC/doc/latex/draftfigure/draftfigure.tex +runfiles size=1 + RELOC/tex/latex/draftfigure/draftfigure.sty +catalogue-contact-announce https://github.com/LukasCBossert/draftfigure +catalogue-contact-bugs https://github.com/LukasCBossert/draftfigure/issues +catalogue-contact-development https://github.com/LukasCBossert/draftfigure +catalogue-contact-home https://github.com/LukasCBossert/draftfigure/ +catalogue-contact-repository https://github.com/LukasCBossert/draftfigure +catalogue-contact-support https://github.com/LukasCBossert/draftfigure +catalogue-ctan /macros/latex/contrib/draftfigure +catalogue-date 2018-01-07 14:52:23 +0100 +catalogue-license lppl1.3 +catalogue-topics comp-supp editorial layout +catalogue-version 0.2 + name draftwatermark category Package revision 37498 -shortdesc Put a grey textual watermark on document pages. +shortdesc Put a grey textual watermark on document pages relocated 1 longdesc The package provides a means to add a textual, light grey longdesc watermark on every page or on the first page of a document. @@ -47973,24 +81326,33 @@ longdesc CONFIDENTIAL across document pages. The package performs a longdesc similar function to that of draftcopy, but its implementation longdesc is output device independent, and made very simple by relying longdesc on everypage. -runfiles size=1 - RELOC/tex/latex/draftwatermark/draftwatermark.sty +containersize 1800 +containerchecksum 10cc5a9f6ba21ce87022e0f45d4f4cb92c4aaf8e1a4edfb5e78d24f8cfa1d283745db0d04f32ba2943963677bb3fa934a1f410e9148baceeec23b70436682a1e +doccontainersize 92784 +doccontainerchecksum 5d7d9d4dbb18f452e917f91a5e67f46bae4f0ac2b8088279832e32d9e7a7fca1230a666ea1031c258ea3882e7a00d3a071864a20a75b523bbbfb12e7a3da0a4f docfiles size=25 - RELOC/doc/latex/draftwatermark/README - RELOC/doc/latex/draftwatermark/draftwatermark.pdf + RELOC/doc/latex/draftwatermark/README details="Readme" + RELOC/doc/latex/draftwatermark/draftwatermark.pdf details="Package documentation" RELOC/doc/latex/draftwatermark/test_draftwatermark.tex +srccontainersize 6828 +srccontainerchecksum 01de29c18e5ca16c0cadfb171c938fc444feb7e3dc558f9283cf4f9260a94c02b6ddb007eed1a296d60c9aceac3cf370ee2e9c3fb63f6c16b25397b837fe4993 srcfiles size=6 RELOC/source/latex/draftwatermark/draftwatermark.dtx RELOC/source/latex/draftwatermark/draftwatermark.ins +runfiles size=1 + RELOC/tex/latex/draftwatermark/draftwatermark.sty +catalogue-also eso-pic +catalogue-contact-repository https://github.com/callegar/LaTeX-draftwatermark catalogue-ctan /macros/latex/contrib/draftwatermark -catalogue-date 2015-06-10 19:37:21 +0200 +catalogue-date 2017-05-22 12:38:58 +0200 catalogue-license lppl1.3 +catalogue-topics editorial watermark catalogue-version 1.2 name dramatist category Package revision 35866 -shortdesc Typeset dramas, both in verse and in prose. +shortdesc Typeset dramas, both in verse and in prose relocated 1 longdesc This package is intended for typesetting drama of any length. longdesc It provides two environments for typesetting dialogues in prose @@ -47998,56 +81360,104 @@ longdesc or in verse; new document divisions corresponding to acts and longdesc scenes; macros that control the appearance of characters and longdesc stage directions; and automatic generation of a `dramatis longdesc personae' list. -runfiles size=4 - RELOC/tex/latex/dramatist/dramatist.sty +containersize 3968 +containerchecksum d61da72538a7d83ee902081aefc23f3addf2fd6e5fa7ebb207fdac16546d13602c50419682e842df8f36a899c2c0aba0aaf615bf64202135dd9f470f5391838d +doccontainersize 416040 +doccontainerchecksum fc28e1dc8614d836637350a20478a0e8a03121909cb42bfd1cf4caf8e7adc01a4ac3eba08e82c389c41a567cd00f191ecd8938ac40a0a226e2fbdac047ecb733 docfiles size=103 - RELOC/doc/latex/dramatist/README - RELOC/doc/latex/dramatist/dramatist.pdf + RELOC/doc/latex/dramatist/README details="Package Readme" + RELOC/doc/latex/dramatist/dramatist.pdf details="Package documentation" +srccontainersize 34464 +srccontainerchecksum a364353dbbb9540a9f43c26fbfe6be8f814452a23e9f25c5a4c4f45a65534e0696dee993bddea4eb20eed284b892d258f6947fb0f96af63a0516f9f0fae01651 srcfiles size=32 RELOC/source/latex/dramatist/dramatist.dtx RELOC/source/latex/dramatist/dramatist.ins +runfiles size=4 + RELOC/tex/latex/dramatist/dramatist.sty +catalogue-also sides catalogue-ctan /macros/latex/contrib/dramatist -catalogue-date 2014-12-19 05:44:52 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics drama-script catalogue-version 1.2e name dratex category Package revision 15878 -shortdesc General drawing macros. +shortdesc General drawing macros relocated 1 longdesc A low level (DraTex.sty) and a high-level (AlDraTex.sty) longdesc drawing package written entirely in TeX. +containersize 45280 +containerchecksum 1a18f8866d1cffb0ac3c277bf27e1585c7596eab60ed51756077abe3154b6d67ea95205f60b5a244e9acabb05e8dc95a792d48f0a2fc492f90d224f85895fdd8 +doccontainersize 12052 +doccontainerchecksum 0ff34bd23dd8718f4f8b0dc3e84068ca2b38a9758849d98230f1a8d4561705d6db7be3b0fcb34621054993f27df7a9215267b3ebbd7fb3d77b8cd9cfefa0ad60 +docfiles size=12 + RELOC/doc/generic/dratex/Examples.tex + RELOC/doc/generic/dratex/README runfiles size=54 RELOC/tex/generic/dratex/AlDraTex.sty RELOC/tex/generic/dratex/DraTex.sty RELOC/tex/generic/dratex/TeXProject.sty RELOC/tex/generic/dratex/wotree.sty -docfiles size=12 - RELOC/doc/generic/dratex/Examples.tex - RELOC/doc/generic/dratex/README catalogue-ctan /graphics/dratex -catalogue-date 2012-05-07 22:13:48 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics graphics-in-tex + +name drawmatrix +category Package +revision 44471 +shortdesc Draw visual representations of matrices in LaTeX +relocated 1 +longdesc The package provides macros to visually represent matrices. +longdesc Various options allow to change the visualizations, e.g., +longdesc drawing rectangular, triangular, or banded matrices. +containersize 2456 +containerchecksum 6be4d4ee6970956dd2f3b31d31ca0cfbad268e2f98ae64fd87a49de9ab26765447531121aa0edc157779f3f9c0dd76ab2ec3f747912f4204aab9e2e7181368f6 +doccontainersize 313708 +doccontainerchecksum 07eec69024d4daff597f2a937178f66413e6dc4974a2044f983e809b046f09140db7eaf3cfd68833bd95be0d56b4a564dfc9ad4d771fa124f55ea3783eafca1b +docfiles size=78 + RELOC/doc/latex/drawmatrix/README.md details="Readme" + RELOC/doc/latex/drawmatrix/drawmatrix.pdf details="Package documentation" +srccontainersize 5136 +srccontainerchecksum 8125f7c3b0867df9d8f21e45d89a03e6ff0f946d946646c26b0ca825a30c62051264f45e5c2da5bbd45b35afbc2f7f7120e9ea3d2d289f6a228385860d25f523 +srcfiles size=6 + RELOC/source/latex/drawmatrix/drawmatrix.dtx + RELOC/source/latex/drawmatrix/drawmatrix.ins +runfiles size=3 + RELOC/tex/latex/drawmatrix/drawmatrix.sty +catalogue-contact-bugs https://github.com/elmar-peise/drawmatrix/issues +catalogue-contact-repository https://github.com/elmar-peise/drawmatrix +catalogue-ctan /macros/latex/contrib/drawmatrix +catalogue-date 2017-06-05 22:45:20 +0200 +catalogue-license mit +catalogue-topics matrix +catalogue-version 1.5.0 name drawstack category Package revision 28582 -shortdesc Draw execution stacks. +shortdesc Draw execution stacks relocated 1 longdesc This simple LaTeX package provides support for drawing longdesc execution stack (typically to illustrate assembly language longdesc notions). The code is written on top of TikZ. -runfiles size=2 - RELOC/tex/latex/drawstack/drawstack.sty +containersize 2256 +containerchecksum 383eab0b77675ae418a775a413c37720d6f74d51d1a31bdb2923b45ced53afa576f10304e372171298ddbd566a8418526d291f74a1871eaba36ea3793d7d0173 +doccontainersize 104944 +doccontainerchecksum d435447ec29bc26262886b3dc4c41cefae81d24e0704857a9ea61f1fc08ff8e4bfb4ead7686a9f49808dff30da47fc5638e2c0dbea4c6a551800a373f68df0e6 docfiles size=31 RELOC/doc/latex/drawstack/Makefile - RELOC/doc/latex/drawstack/README - RELOC/doc/latex/drawstack/stack-example.pdf + RELOC/doc/latex/drawstack/README details="Readme" + RELOC/doc/latex/drawstack/stack-example.pdf details="Usage example" RELOC/doc/latex/drawstack/stack-example.tex +runfiles size=2 + RELOC/tex/latex/drawstack/drawstack.sty catalogue-ctan /macros/latex/contrib/drawstack -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics comp-sci graphics-use name drm category Package @@ -48061,10 +81471,38 @@ longdesc shapes, along with a set of symbols and ornaments. It is longdesc intended to be a full-body text font, but its larger sizes can longdesc also be used for simple display purposes, and its significant longdesc body of symbols can stand on its own. It comes complete with -longdesc textual ("old-style") and lining figures, and even has small- -longdesc caps figures. It also comes with extensible decorative rules to -longdesc be used with ornaments from itself or other fonts, along with -longdesc an extremely flexible ellipsis package. +longdesc textual ("old-style") and lining figures, and even has +longdesc small-caps figures. It also comes with extensible decorative +longdesc rules to be used with ornaments from itself or other fonts, +longdesc along with an extremely flexible ellipsis package. +containersize 13063116 +containerchecksum 662a2593713dc02debd4702b5184586736f12200aba4079154e6890b49d581810e1a7a94f0d3b6750ecd241dc03cd5a638a3ea5bd4792f13829e7812f5620b36 +doccontainersize 2979440 +doccontainerchecksum 7821503ea6548fa200221d2c2234389a252ddc61498d66389f0afd13b6c36536b744f060f42bf26c4e2be722a7cbca8841b1b76510391da4960dcfbfb9956177 +docfiles size=1005 + RELOC/doc/fonts/drm/CHANGES + RELOC/doc/fonts/drm/OFL.txt + RELOC/doc/fonts/drm/README details="Readme" + RELOC/doc/fonts/drm/allcomp.sh + RELOC/doc/fonts/drm/allfonts.sh + RELOC/doc/fonts/drm/chartscript.sh + RELOC/doc/fonts/drm/convert.sh + RELOC/doc/fonts/drm/drm.pdf details="Package documentation" + RELOC/doc/fonts/drm/drm_font_tables.pdf + RELOC/doc/fonts/drm/drmfilelist.txt + RELOC/doc/fonts/drm/fontconvert.sh + RELOC/doc/fonts/drm/gpl-3.0.txt + RELOC/doc/fonts/drm/lppl-1-3c.tex + RELOC/doc/fonts/drm/ofl_v1-1.tex + RELOC/doc/fonts/drm/small_specimen.pdf details="Font samples (1)" + RELOC/doc/fonts/drm/small_specimen.tex + RELOC/doc/fonts/drm/specimen.pdf details="Font samples (2)" + RELOC/doc/fonts/drm/specimen.tex +srccontainersize 37304 +srccontainerchecksum a505f89568d63bc36799a3802fdd4e5a4903a10226b565c58b1b6d0900f0efeb699838ef17f84d9720558c7e1959e33d97c387b371862366726c6b99e30e838c +srcfiles size=39 + RELOC/source/fonts/drm/drm.dtx + RELOC/source/fonts/drm/drm.ins runfiles size=8144 RELOC/fonts/afm/public/drm/drm10.afm RELOC/fonts/afm/public/drm/drm11.afm @@ -49794,30 +83232,8 @@ runfiles size=8144 RELOC/fonts/type1/public/drm/drmuibx8.pfb RELOC/fonts/type1/public/drm/drmuibx9.pfb RELOC/tex/latex/drm/drm.sty -docfiles size=1005 - RELOC/doc/fonts/drm/CHANGES - RELOC/doc/fonts/drm/OFL.txt - RELOC/doc/fonts/drm/README - RELOC/doc/fonts/drm/allcomp.sh - RELOC/doc/fonts/drm/allfonts.sh - RELOC/doc/fonts/drm/chartscript.sh - RELOC/doc/fonts/drm/convert.sh - RELOC/doc/fonts/drm/drm.pdf - RELOC/doc/fonts/drm/drm_font_tables.pdf - RELOC/doc/fonts/drm/drmfilelist.txt - RELOC/doc/fonts/drm/fontconvert.sh - RELOC/doc/fonts/drm/gpl-3.0.txt - RELOC/doc/fonts/drm/lppl-1-3c.tex - RELOC/doc/fonts/drm/ofl_v1-1.tex - RELOC/doc/fonts/drm/small_specimen.pdf - RELOC/doc/fonts/drm/small_specimen.tex - RELOC/doc/fonts/drm/specimen.pdf - RELOC/doc/fonts/drm/specimen.tex -srcfiles size=39 - RELOC/source/fonts/drm/drm.dtx - RELOC/source/fonts/drm/drm.ins catalogue-ctan /fonts/drm -catalogue-date 2015-08-18 22:47:45 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 catalogue-topics font font-otf font-type1 font-mf catalogue-version 4.4 @@ -49825,7 +83241,7 @@ catalogue-version 4.4 name droid category Package revision 23912 -shortdesc LaTeX support for the Droid font families. +shortdesc LaTeX support for the Droid font families relocated 1 longdesc The Droid typeface family was designed in the fall of 2006 by longdesc Steve Matteson, as a commission from Google to create a set of @@ -49838,6 +83254,40 @@ longdesc The bundle includes the fonts in both TrueType and Adobe Type 1 longdesc formats. The package does not support the Droid Pro family of longdesc fonts, available for purchase from the Ascender foundry. execute addMap droid.map +containersize 1658676 +containerchecksum 1c5a8bdad071daff10faad378d2c727f8bcb4658bf93a9903524761dbe9a2f30b8838a764f52b6b75c6ee29175a26cd25bab410babf2ddac8b72eea384d1a97f +doccontainersize 541012 +doccontainerchecksum b94eee9d0de8dc6e11e32e66dab6100da69a54f81b194d0e82686b445bb89fef44bf36d8afc42cdd9e1de98f869c1dfbffcf2be2e8cb8ec5a0ce61505252b81d +docfiles size=205 + RELOC/doc/fonts/droid/CHANGES + RELOC/doc/fonts/droid/README details="Readme" + RELOC/doc/fonts/droid/droid.pdf details="Package documentation" + RELOC/doc/fonts/droid/droid.tex + RELOC/doc/fonts/droid/droidsans-samples.pdf details="Font samples (sans)" + RELOC/doc/fonts/droid/droidsans-samples.tex + RELOC/doc/fonts/droid/droidsansmono-samples.pdf + RELOC/doc/fonts/droid/droidsansmono-samples.tex + RELOC/doc/fonts/droid/droidserif-samples.pdf details="Font samples (serif)" + RELOC/doc/fonts/droid/droidserif-samples.tex + RELOC/doc/fonts/droid/manifest.txt +srccontainersize 8776 +srccontainerchecksum 7a40624c3e32081d0f5608f4338cb131482b82b345ba15ece3e4063366748e3439726b72b6e43b72f9d11ac1f9fbffb4c3141222e7e0c4b70f2bf4a4ccd2e50a +srcfiles size=37 + RELOC/source/fonts/droid/Makefile + RELOC/source/fonts/droid/droid-01.etx + RELOC/source/fonts/droid/droid-02.etx + RELOC/source/fonts/droid/droid-03.etx + RELOC/source/fonts/droid/droid-04.etx + RELOC/source/fonts/droid/droid-drv.tex + RELOC/source/fonts/droid/droid-fixcyrillic.mtx + RELOC/source/fonts/droid/droid-fixgreek.mtx + RELOC/source/fonts/droid/droid-fixlatin.mtx + RELOC/source/fonts/droid/droid-fixtextcomp.mtx + RELOC/source/fonts/droid/droid-map.tex + RELOC/source/fonts/droid/droidsans-drv.tex + RELOC/source/fonts/droid/droidsansmono-drv.tex + RELOC/source/fonts/droid/droidserif-drv.tex + RELOC/source/fonts/droid/ttf2type1.pe runfiles size=2093 RELOC/fonts/afm/public/droid/DroidSans-Bold.afm RELOC/fonts/afm/public/droid/DroidSans.afm @@ -50369,60 +83819,29 @@ runfiles size=2093 RELOC/tex/latex/droid/x2fdm.fd RELOC/tex/latex/droid/x2fdr.fd RELOC/tex/latex/droid/x2fds.fd -docfiles size=205 - RELOC/doc/fonts/droid/CHANGES - RELOC/doc/fonts/droid/README - RELOC/doc/fonts/droid/droid.pdf - RELOC/doc/fonts/droid/droid.tex - RELOC/doc/fonts/droid/droidsans-samples.pdf - RELOC/doc/fonts/droid/droidsans-samples.tex - RELOC/doc/fonts/droid/droidsansmono-samples.pdf - RELOC/doc/fonts/droid/droidsansmono-samples.tex - RELOC/doc/fonts/droid/droidserif-samples.pdf - RELOC/doc/fonts/droid/droidserif-samples.tex - RELOC/doc/fonts/droid/manifest.txt -srcfiles size=37 - RELOC/source/fonts/droid/Makefile - RELOC/source/fonts/droid/droid-01.etx - RELOC/source/fonts/droid/droid-02.etx - RELOC/source/fonts/droid/droid-03.etx - RELOC/source/fonts/droid/droid-04.etx - RELOC/source/fonts/droid/droid-drv.tex - RELOC/source/fonts/droid/droid-fixcyrillic.mtx - RELOC/source/fonts/droid/droid-fixgreek.mtx - RELOC/source/fonts/droid/droid-fixlatin.mtx - RELOC/source/fonts/droid/droid-fixtextcomp.mtx - RELOC/source/fonts/droid/droid-map.tex - RELOC/source/fonts/droid/droidsans-drv.tex - RELOC/source/fonts/droid/droidsansmono-drv.tex - RELOC/source/fonts/droid/droidserif-drv.tex - RELOC/source/fonts/droid/ttf2type1.pe catalogue-ctan /fonts/droid -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics font font-sans font-mono font-supp font-ttf font-type1 catalogue-version 2.1 name droit-fr category Package -revision 32918 -shortdesc Document class and bibliographic style for French law. +revision 39802 +shortdesc Document class and bibliographic style for French law relocated 1 longdesc The bundle provides a toolkit intended for students writing a longdesc thesis in French law. It features: a LaTeX document class; a -longdesc bibliographic style for Biblatex package; a practical example +longdesc bibliographic style for BibLaTeX package; a practical example longdesc of french thesis document; and documentation. The class assumes -longdesc use of biber and biblatex. -runfiles size=9 - RELOC/tex/latex/droit-fr/droit-fr.bbx - RELOC/tex/latex/droit-fr/droit-fr.cbx - RELOC/tex/latex/droit-fr/droit-fr.cls -docfiles size=99 - RELOC/doc/latex/droit-fr/.latexmkrc - RELOC/doc/latex/droit-fr/CHANGELOG - RELOC/doc/latex/droit-fr/README - RELOC/doc/latex/droit-fr/droit-fr.pdf +longdesc use of biber and BibLaTeX. +containersize 9772 +containerchecksum 76c928be0648ae7bddc76f654b65a99ae6670cb17b0ae9a54596599ff655636d4520b31d4e802a15af65637c5bf956d41a2095762a3c4bb77052c9f74da5e7af +doccontainersize 279420 +doccontainerchecksum 6129658aad2fae20dd12252941ee774393e262d9322ec2163ebc964ec27c4ffb63f2ce0faf9b74a90717c137065e9af238d45c623cc58d52b1e4776da221e231 +docfiles size=103 + RELOC/doc/latex/droit-fr/droit-fr.pdf details="Package documentation" language="fr" RELOC/doc/latex/droit-fr/droit-fr.tex - RELOC/doc/latex/droit-fr/example/.latexmkrc RELOC/doc/latex/droit-fr/example/annexes.tex RELOC/doc/latex/droit-fr/example/bibliographie.bib RELOC/doc/latex/droit-fr/example/bibliographie.tex @@ -50431,22 +83850,30 @@ docfiles size=99 RELOC/doc/latex/droit-fr/example/index.tex RELOC/doc/latex/droit-fr/example/introduction.tex RELOC/doc/latex/droit-fr/example/journaux.bib + RELOC/doc/latex/droit-fr/example/latexmkrc RELOC/doc/latex/droit-fr/example/main.tex RELOC/doc/latex/droit-fr/example/misc.tex RELOC/doc/latex/droit-fr/example/partie1.tex RELOC/doc/latex/droit-fr/example/partie2.tex + RELOC/doc/latex/droit-fr/example/resume.tex RELOC/doc/latex/droit-fr/example/sommaire.tex RELOC/doc/latex/droit-fr/example/titre.tex RELOC/doc/latex/droit-fr/example/toc.tex + RELOC/doc/latex/droit-fr/latexmkrc +runfiles size=10 + RELOC/tex/latex/droit-fr/droit-fr.bbx + RELOC/tex/latex/droit-fr/droit-fr.cbx + RELOC/tex/latex/droit-fr/droit-fr.cls catalogue-ctan /macros/latex/contrib/droit-fr -catalogue-date 2014-09-25 18:18:46 +0200 +catalogue-date 2016-07-05 18:29:32 +0200 catalogue-license lppl1.3 -catalogue-version 0.4 +catalogue-topics dissertation legal biblatex french class +catalogue-version 1.2 name drs category Package revision 19232 -shortdesc Typeset Discourse Representation Structures (DRS). +shortdesc Typeset Discourse Representation Structures (DRS) relocated 1 longdesc The package draws Discourse Representation Structures (DRSs). longdesc It can draw embedded DRSs, if-then conditions and @@ -50455,36 +83882,43 @@ longdesc connecting diamond). Formatting parameters allow the user to longdesc control the appearance and placement of DRSs, and of DRS longdesc variables and conditions. The package is based on DRS macros in longdesc the covington package. -runfiles size=3 - RELOC/tex/latex/drs/drs.sty +containersize 4560 +containerchecksum 5054b389c79b6895e648d3d4fcd1a3f7b06b213963245702e5bc4c0e8b6e3a87c6a2d3f72509998216e25553148008e597c6dd3015ef0b94724e84f3fade5936 +doccontainersize 99960 +doccontainerchecksum c265c462094e50872fc2748167226319a5723aabe54ca057661b95c7cff897afd08f42ce6d520b7ab35f259b760800e79ac6deae0f1ca0c776c2c2aa7839cf80 docfiles size=30 - RELOC/doc/latex/drs/README - RELOC/doc/latex/drs/drsdoc.pdf + RELOC/doc/latex/drs/README details="Readme" + RELOC/doc/latex/drs/drsdoc.pdf details="Package documentation" RELOC/doc/latex/drs/drsdoc.tex +runfiles size=3 + RELOC/tex/latex/drs/drs.sty catalogue-ctan /macros/latex/contrib/drs -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics linguistic catalogue-version 1.1b name drv category Package revision 29349 -shortdesc Derivation trees with MetaPost. +shortdesc Derivation trees with MetaPost relocated 1 longdesc A set of MetaPost macros for typesetting derivation trees (such longdesc as used in sequent calculus, type inference, programming longdesc language semantics...). No MetaPost knowledge is needed to use longdesc these macros. -runfiles size=21 - RELOC/metapost/drv/drv.mp +containersize 16468 +containerchecksum b7f2b56f305d552bd857a5950fad2dadbf800857d4c8ee411fd2f5786697385404fce3956e59b5928ed5f0a688117dd740c0f56806674d08cd8cb1d52b79a9d8 +doccontainersize 202676 +doccontainerchecksum a79d9883615568bd6c0d5aac44cc2ce28e0bd08e96f802d500515428ffb5400beadea94347abab7752904ae01342049b8d6687f6047aa9d8b27f5fe3a647bd02 docfiles size=160 - RELOC/doc/metapost/drv/README + RELOC/doc/metapost/drv/README details="Readme" RELOC/doc/metapost/drv/doc/drv-guide.mp RELOC/doc/metapost/drv/doc/drv-guide.tex RELOC/doc/metapost/drv/doc/drv.mp RELOC/doc/metapost/drv/doc/makefile RELOC/doc/metapost/drv/doc/readme.sh - RELOC/doc/metapost/drv/drv-guide.pdf + RELOC/doc/metapost/drv/drv-guide.pdf details="User guide" RELOC/doc/metapost/drv/sample/coq-sample.mp RELOC/doc/metapost/drv/sample/coq-sample.tex RELOC/doc/metapost/drv/sample/drv.mp @@ -50495,15 +83929,18 @@ docfiles size=160 RELOC/doc/metapost/drv/template/readme.sh RELOC/doc/metapost/drv/template/template.mp RELOC/doc/metapost/drv/template/template.tex +runfiles size=21 + RELOC/metapost/drv/drv.mp catalogue-ctan /graphics/metapost/contrib/macros/drv -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics tree catalogue-version 0.97 name dsptricks category Package revision 34724 -shortdesc Macros for Digital Signal Processing plots. +shortdesc Macros for Digital Signal Processing plots relocated 1 longdesc The package provides a set of LaTeX macros (based on PSTricks) longdesc for plotting the kind of graphs and figures that are usually @@ -50514,80 +83951,122 @@ longdesc plots. The companion package DSPFunctions (dspfunctions.sty) longdesc provides macros for computing frequency responses and DFTs, longdesc while the package DSPBlocks (dspblocks.sty) supports DSP block longdesc diagrams. +containersize 11588 +containerchecksum 282c1c1aa51c70a77b0b63190ee875668dab9fc2303e2a84ff0d79a7c9f78a2534e4752a32c093e72eda7e98aea220923f9d1703b5c94214f9590962187de194 +doccontainersize 170156 +doccontainerchecksum c45da3740ed14540cada0c75a98c19f5e3cd2b32811a4f1906e11c45a40e0e8d31bd706ff4afb18073690e4e285b7b44b858f53f33f050702526dbe0fc88f8b8 +docfiles size=63 + RELOC/doc/latex/dsptricks/README details="Readme" + RELOC/doc/latex/dsptricks/dspTricksManual.pdf details="Package documentation" + RELOC/doc/latex/dsptricks/dspTricksManual.tex runfiles size=13 RELOC/tex/latex/dsptricks/dspblocks.sty RELOC/tex/latex/dsptricks/dspfunctions.sty RELOC/tex/latex/dsptricks/dsptricks.sty -docfiles size=63 - RELOC/doc/latex/dsptricks/README - RELOC/doc/latex/dsptricks/dspTricksManual.pdf - RELOC/doc/latex/dsptricks/dspTricksManual.tex catalogue-ctan /graphics/pstricks/contrib/dsptricks -catalogue-date 2014-08-02 20:10:01 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics pstricks catalogue-version 1.0 +name dsserif +category Package +revision 47570 +shortdesc A double-struck serifed font for mathematical use +relocated 1 +longdesc DSSerif is a mathematical font package with double struck +longdesc serifed digits, upper and lower case letters, in regular and +longdesc bold weights. The design was inspired by the STIX double struck +longdesc fonts, which are sans serif, but starting from a Courier-like +longdesc base. +execute addMap DSSerif.map +containersize 78412 +containerchecksum 346d9192803712c47d8905920b6c86244759635e7929e1a2c049a558a7e50eb36dc6574dae59f17bda21e6c95d1a661c9857514eb7f5f60d008f293beb758da8 +doccontainersize 247164 +doccontainerchecksum 87e5ede487017ac47d7502d5983d5d158deb4d709f033ca34855f01f4b93fe7e3001c6287277f4f830b79c2ff1cf41caacccf2942769f8b2b848524ba4fa6696 +docfiles size=72 + RELOC/doc/fonts/dsserif/OFL-FAQ.txt + RELOC/doc/fonts/dsserif/OFL.txt + RELOC/doc/fonts/dsserif/README details="Readme" + RELOC/doc/fonts/dsserif/dsserif-doc.pdf details="Package documentation" + RELOC/doc/fonts/dsserif/dsserif-doc.tex +srccontainersize 1716 +srccontainerchecksum 31ad24b5b7667c1763dc36a475ce13b70bdc38c239a5c38a09acc3d4e66c95b1abf82d60ca240e7bf121f9dc93b17a17f420ab863a8f2052ed363c5adc46ec22 +srcfiles size=5 + RELOC/source/dsserif/DSSerif-drv.tex + RELOC/source/dsserif/adjustments.mtx + RELOC/source/dsserif/mathalfij.etx + RELOC/source/dsserif/mathalfijB.etx + RELOC/source/dsserif/notes.txt +runfiles size=33 + RELOC/fonts/afm/public/dsserif/DSSerif-Bold.afm + RELOC/fonts/afm/public/dsserif/DSSerif.afm + RELOC/fonts/afm/public/dsserif/DSSerifUni-Bold.afm + RELOC/fonts/afm/public/dsserif/DSSerifUni.afm + RELOC/fonts/map/dvips/dsserif/DSSerif.map + RELOC/fonts/tfm/public/dsserif/DSSerif-Bold.tfm + RELOC/fonts/tfm/public/dsserif/DSSerif.tfm + RELOC/fonts/tfm/public/dsserif/DSSerifUni-Bold.tfm + RELOC/fonts/tfm/public/dsserif/DSSerifUni.tfm + RELOC/fonts/type1/public/dsserif/DSSerif-Bold.pfb + RELOC/fonts/type1/public/dsserif/DSSerif.pfb + RELOC/fonts/type1/public/dsserif/DSSerifUni-Bold.pfb + RELOC/fonts/type1/public/dsserif/DSSerifUni.pfb + RELOC/tex/latex/dsserif/dsserif.sty + RELOC/tex/latex/dsserif/udsserif.fd +catalogue-ctan /fonts/dsserif +catalogue-date 2018-05-05 05:37:43 +0200 +catalogue-license ofllppllppl1.3 +catalogue-topics font font-serif font-maths font-bbd font-type1 +catalogue-version 1.00 + name dtk category Package -revision 36372 -shortdesc Document class for the journal of DANTE. +revision 50789 +shortdesc Document class for the journal of DANTE relocated 1 longdesc The bundle provides a class and style file for typesetting "Die longdesc TeXnische Komodie" -- the communications of the German TeX longdesc Users Group DANTE e.V. The arrangement means that the class may -longdesc be used by article writers to typeset a single article as well +longdesc be used by article writers to typeset a single article, as well longdesc as to produce the complete journal. -runfiles size=26 - RELOC/bibtex/bst/dtk/dtk.bst - RELOC/makeindex/dtk/dtk-adr.ist - RELOC/makeindex/dtk/dtk-idx.ist - RELOC/tex/latex/dtk/dtk-pdf.sty - RELOC/tex/latex/dtk/dtk-url.sty - RELOC/tex/latex/dtk/dtk.clo - RELOC/tex/latex/dtk/dtk.cls - RELOC/tex/latex/dtk/dtklogos.sty -docfiles size=100 - RELOC/doc/latex/dtk/Changes - RELOC/doc/latex/dtk/doc/beispiel-lua.pdf - RELOC/doc/latex/dtk/doc/beispiel-lua.tex +containersize 16960 +containerchecksum d5139563e12fc29529d5573cf613fed3c22c2415223e40d7b698adabaa1e3c2cbda9620630bf91410edef712fd941915155ca8efbf19d28cdc939151ff1da8b4 +doccontainersize 90228 +doccontainerchecksum da39c84e340c68b34b0c2e8fc39cef6d1ed7d37937655a69781f05fdfc1fff985e644211e0a7b5469b8ec1af32fb2d104e3e6d3ff97cfc76b8a41c953150a337 +docfiles size=31 + RELOC/doc/latex/dtk/README.md details="Readme" RELOC/doc/latex/dtk/doc/beispiel.bib - RELOC/doc/latex/dtk/doc/beispiel.pdf + RELOC/doc/latex/dtk/doc/beispiel.pdf details="Example of use" language="de" RELOC/doc/latex/dtk/doc/beispiel.tex - RELOC/doc/latex/dtk/historical/dtk00.clo - RELOC/doc/latex/dtk/historical/dtk01.clo - RELOC/doc/latex/dtk/historical/dtk02.clo - RELOC/doc/latex/dtk/historical/dtk03.clo - RELOC/doc/latex/dtk/historical/dtk05.clo - RELOC/doc/latex/dtk/historical/dtk06.clo - RELOC/doc/latex/dtk/historical/dtk10.clo - RELOC/doc/latex/dtk/historical/dtk11.clo - RELOC/doc/latex/dtk/historical/dtk12.clo - RELOC/doc/latex/dtk/historical/dtk95.clo - RELOC/doc/latex/dtk/historical/dtk96.clo - RELOC/doc/latex/dtk/historical/dtk97.clo - RELOC/doc/latex/dtk/historical/dtk98.clo - RELOC/doc/latex/dtk/historical/dtk99.clo - RELOC/doc/latex/dtk/historical/textlist.sty - RELOC/doc/latex/dtk/komoedie/Makefile - RELOC/doc/latex/dtk/komoedie/Makefile.in - RELOC/doc/latex/dtk/komoedie/adressen.tex - RELOC/doc/latex/dtk/komoedie/editorial.tex - RELOC/doc/latex/dtk/komoedie/grusswort.tex - RELOC/doc/latex/dtk/komoedie/impressum.tex - RELOC/doc/latex/dtk/komoedie/komoedie.tex - RELOC/doc/latex/dtk/komoedie/ruecken.tex - RELOC/doc/latex/dtk/komoedie/rueckenNeu.tex - RELOC/doc/latex/dtk/komoedie/stammtische.tex - RELOC/doc/latex/dtk/komoedie/termine.tex + RELOC/doc/latex/dtk/doc/dtk-extern-test.tex + RELOC/doc/latex/dtk/dtk-ruecken.tex + RELOC/doc/latex/dtk/dtk.nolig + RELOC/doc/latex/dtk/dtk.xdy + RELOC/doc/latex/dtk/dtk0.tex +runfiles size=23 + RELOC/tex/latex/dtk/dtk-author.clo + RELOC/tex/latex/dtk/dtk-extern.sty + RELOC/tex/latex/dtk/dtk-full.clo + RELOC/tex/latex/dtk/dtk-logos.sty + RELOC/tex/latex/dtk/dtk-new-engines.clo + RELOC/tex/latex/dtk/dtk-old-engines.clo + RELOC/tex/latex/dtk/dtk-url.sty + RELOC/tex/latex/dtk/dtk.bbx + RELOC/tex/latex/dtk/dtk.cbx + RELOC/tex/latex/dtk/dtk.cls +catalogue-contact-bugs https://github.com/rolfn/dtk/issues +catalogue-contact-repository https://github.com/rolfn/dtk catalogue-ctan /usergrps/dante/dtk -catalogue-date 2015-02-24 14:09:09 +0100 +catalogue-date 2019-04-05 18:58:50 +0200 catalogue-license lppl1.3 -catalogue-version 1.32 +catalogue-topics journalpub class +catalogue-version 2.08a name dtl category TLCore -revision 37078 -shortdesc Tools to dis-assemble and re-assemble DVI files. +revision 50602 +shortdesc Tools to dis-assemble and re-assemble DVI files longdesc DTL (DVI Text Language) is a means of expressing the content of longdesc a DVI file, which is readily readable by humans. The DTL bundle longdesc contains an assembler dt2dv (which produces DVI files from DTL @@ -50595,28 +84074,230 @@ longdesc files) and a disassembler dv2dt (which produces DTL files from longdesc DVI files). The DTL bundle was developed so as to avoid some longdesc infelicities of dvitype (among other pressing reasons). depend dtl.ARCH -docfiles size=12 +containersize 580 +containerchecksum 796f01b568969124edc40662db5d8699a815b72d9eafea640c9499b7cd907e4cd36ab42c87ade466c51fcb18a47de3363f5c6068f4c678243c7633343705f35d +doccontainersize 52488 +doccontainerchecksum b0e1d2c3728b859bc010efc5d31c50b10c7f9a045530f99278228fd4a4bae5563d58852dc995e9f4430d64512f7b0ec0c868c6f86259127bdf524c6f66bbec86 +docfiles size=21 texmf-dist/doc/man/man1/dt2dv.1 texmf-dist/doc/man/man1/dt2dv.man1.pdf texmf-dist/doc/man/man1/dv2dt.1 texmf-dist/doc/man/man1/dv2dt.man1.pdf catalogue-ctan /dviware/dtl -catalogue-date 2012-04-09 22:37:34 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics dvi-struc catalogue-version 0.6.1 +name dtl.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of dtl +containersize 18052 +containerchecksum a76e04dcf478bbd835e0e65fd71f6048472ca72f5baa55ed5afc9dfb344053fa93e72cd748dbefead3bdf96d93f7d96ec3399c22429e0230a625bb6bf8ed9c4e +binfiles arch=aarch64-linux size=19 + bin/aarch64-linux/dt2dv + bin/aarch64-linux/dv2dt + +name dtl.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of dtl +containersize 21212 +containerchecksum 9457f9d7a761e73bc3834a0dac14eeff25f0fee97cc3525b58d660ef73d77dcb094bb91821ba1dd8ac967bd0c285f23ebbf3bf659c237912cd628eb610a14d79 +binfiles arch=amd64-freebsd size=19 + bin/amd64-freebsd/dt2dv + bin/amd64-freebsd/dv2dt + +name dtl.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of dtl +containersize 18816 +containerchecksum 6ec652d916311fccee6f31a14371fee4c12a81ad2bb08243ff6f80b0907e6043ac2bad3991f298c5e4b408a648a529b84c102b29a93f317d8ad30b2b7ce906d3 +binfiles arch=amd64-netbsd size=19 + bin/amd64-netbsd/dt2dv + bin/amd64-netbsd/dv2dt + +name dtl.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of dtl +containersize 15896 +containerchecksum 10fd1065654a5c16df938a1ca706f8799fc65d401c0435ced9e2c202125a677a4c4376667828df226ee8fd1dddb5c576f2e53ef5abf5cf9ea3c718cba3bcd520 +binfiles arch=armhf-linux size=14 + bin/armhf-linux/dt2dv + bin/armhf-linux/dv2dt + +name dtl.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of dtl +containersize 15504 +containerchecksum 67ab4504f3de24ffc14761354e03f18b8979286ad4925f77e962909835abf052ffd6c72353b794732e615403ea89ac8c81579bf2976259eb4140007cee17802b +binfiles arch=i386-cygwin size=15 + bin/i386-cygwin/dt2dv.exe + bin/i386-cygwin/dv2dt.exe + +name dtl.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of dtl +containersize 17360 +containerchecksum ba1d7303e3633be88225f9e3d7ebd748273a4d2d8bf957c335144e3acac09eed7c6b84b7aa518e17583d085c82682456805f5cd737be472b6dc9e4bfc98ba0d5 +binfiles arch=i386-freebsd size=14 + bin/i386-freebsd/dt2dv + bin/i386-freebsd/dv2dt + name dtl.i386-linux category TLCore -revision 36790 +revision 50281 shortdesc i386-linux files of dtl -binfiles arch=i386-linux size=22 +containersize 21172 +containerchecksum 3f8af9fa9109c6f27f4c14156b6f4623b8db48da06aebad8641081bcfa3b122889f631de8eda5ea7fc1cbbcac991dcfa6646af1e1d6efcfe593cb0029bf7b968 +binfiles arch=i386-linux size=17 bin/i386-linux/dt2dv bin/i386-linux/dv2dt +name dtl.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of dtl +containersize 17520 +containerchecksum af64658ce0f87e2815c606450ac39d8ebb0328567945e9c0aa51b729059bc4e77b4d95149de1427b3a3d287021a8925647daf577e03410f34c8f19ea2a2484c3 +binfiles arch=i386-netbsd size=17 + bin/i386-netbsd/dt2dv + bin/i386-netbsd/dv2dt + +name dtl.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of dtl +containersize 20356 +containerchecksum 6703328dccd7032fbf683c474cb0644968acbcd8ada0d7ad2e6507697a57efe09db8efed437e53be46438d0a3682344162e5b4c06b01107dfdae05087acc84b6 +binfiles arch=i386-solaris size=16 + bin/i386-solaris/dt2dv + bin/i386-solaris/dv2dt + +name dtl.win32 +category TLCore +revision 50155 +shortdesc win32 files of dtl +containersize 15868 +containerchecksum 52a632abda8c4dd282ddbae313edd8a8196d72d9e1aa87819e3aac6cddaa3ff5e609895d4000eaaf41a017c5d6e71e3e95d350f462e78796e82b66b69bc2e22f +binfiles arch=win32 size=12 + bin/win32/dt2dv.exe + bin/win32/dv2dt.exe + +name dtl.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of dtl +containersize 15816 +containerchecksum 285812f5c8482e9e379fb54fcbaf010327a85ed4f93ea0e4b37d0cc49a55acd7524d008a93044e202c5c8f8243e3431a0c097b747e1100aa4c617be8432692a9 +binfiles arch=x86_64-cygwin size=13 + bin/x86_64-cygwin/dt2dv.exe + bin/x86_64-cygwin/dv2dt.exe + +name dtl.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of dtl +containersize 20448 +containerchecksum c278c79bcf95cb81ec5053160ac965d84e0351bb20ba31306526f94328f5fb10d061d561c45e067815ee58c790f2f0c2527c08c9e2e4d36f20b8fa7da6a29e62 +binfiles arch=x86_64-darwin size=17 + bin/x86_64-darwin/dt2dv + bin/x86_64-darwin/dv2dt + +name dtl.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of dtl +containersize 20540 +containerchecksum a3d33d73070e8d6c3ee0b15cd6fba8910372274ac0836d478e5eeeac38f781670bab4a17db59ed8d8ef72d68555d624826e6a05cf93d5aec7f307fb9344d492e +binfiles arch=x86_64-darwinlegacy size=19 + bin/x86_64-darwinlegacy/dt2dv + bin/x86_64-darwinlegacy/dv2dt + +name dtl.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of dtl +containersize 20736 +containerchecksum 9d9992be6d01d8a4f0f7548debf11f052280c8f965fcc6384b96e1d4f5dcb0369a6aab22796f332e079ec532f391c12cb481aa76c4497060add5f2b9d2333979 +binfiles arch=x86_64-linux size=17 + bin/x86_64-linux/dt2dv + bin/x86_64-linux/dv2dt + +name dtl.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of dtl +containersize 22648 +containerchecksum be4012e3e77899039632e3f4cc3d75f77e823d3f038745e457a00fec2ac54f0cc4b57726f3dc8d759ee5ee64d3d4334b7803dc585947097df7ce51c4f8e3c578 +binfiles arch=x86_64-linuxmusl size=21 + bin/x86_64-linuxmusl/dt2dv + bin/x86_64-linuxmusl/dv2dt + +name dtl.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of dtl +containersize 22868 +containerchecksum 6fd7aa7c4c4f9822c7dca96668535811968715cfe55d67c887faaa1d39bcd4252448f31c8860a64cf6a16bf8796c2375ad420d9a371cd6ae33e26b530ab56111 +binfiles arch=x86_64-solaris size=20 + bin/x86_64-solaris/dt2dv + bin/x86_64-solaris/dv2dt + +name dtxdescribe +category Package +revision 50532 +shortdesc Describe additional object types in dtx source files +relocated 1 +longdesc The doc package includes tools for describing macros and +longdesc environments in LaTeX source dtx format. The package adds +longdesc additional tools for describing booleans, lengths, counters, +longdesc keys, packages, classes, options, files, commands, arguments, +longdesc and other objects. Each item is given a margin tag similar to +longdesc \DescribeEnv, and is listed in the index by itself and also by +longdesc category. Each item may be sorted further by an optional class. +longdesc All index entries except code lines are hyperlinked. The +longdesc dtxexample environment is provided for typesetting example code +longdesc and its results. Contents are displayed verbatim along with a +longdesc caption and cross-referencing. They are then input and +longdesc executed, and the result is shown. Environments are also +longdesc provided for displaying verbatim or formatted source code, +longdesc user-interface displays, and sidebars with titles. Macros are +longdesc provided for formatting the names of inline LaTeX objects such +longdesc as packages and booleans, as well as program and file names, +longdesc file types, internet objects, the names of certain programs, a +longdesc number of logos, and inline dashes and slashes. +containersize 4800 +containerchecksum 4c414ad7156e47d249f65002b37bdf92341b8928b80fcff9f94fdd0222816299423bc1f1e25ee6bc41959881cd91a09d65b246c30761ee382378542728f90512 +doccontainersize 346004 +doccontainerchecksum 98460a6f5a22505a7534bb4e77526fb786e18d1f0742496fd7118b6b386252bcb2fdcde3e724e184836c28d74a546f6c9b688595594f2575ea5f26e7905da618 +docfiles size=87 + RELOC/doc/latex/dtxdescribe/README.txt details="Readme" + RELOC/doc/latex/dtxdescribe/dtxdescribe.pdf details="Package documentation" +srccontainersize 17596 +srccontainerchecksum 52ee1a8c5fba3420577b6da6c0a3c1411a9b7746f7df40856b65aaaf815c673a21fcaf6609a9d4d5d3ccbf65c570096f4743cbd21a1c21c99e6195559d670c56 +srcfiles size=21 + RELOC/source/latex/dtxdescribe/dtxdescribe.dtx + RELOC/source/latex/dtxdescribe/dtxdescribe.ins +runfiles size=5 + RELOC/tex/latex/dtxdescribe/dtxdescribe.sty +catalogue-also doc +catalogue-contact-home http://bdtechconcepts.com +catalogue-ctan /macros/latex/contrib/dtxdescribe +catalogue-date 2019-03-22 19:35:49 +0100 +catalogue-license lppl1.3 +catalogue-topics doc-supp +catalogue-version 1.01 + name dtxgallery category Package -revision 15878 -shortdesc A small collection of minimal DTX examples. +revision 49504 +shortdesc A small collection of minimal DTX examples relocated 1 longdesc A collection of files that demonstrate simple things that are longdesc possible with the flexible and under-appreciated docstrip file @@ -50624,48 +84305,184 @@ longdesc format. Each file of the collection is provided as a .dtx file longdesc and as the corresponding .pdf. The set is intended as a longdesc companion to Scott Pakin's excellent and influential dtxtut longdesc example of producing LaTeX packages in this way. -docfiles size=95 - RELOC/doc/latex/dtxgallery/README +containersize 580 +containerchecksum c4b164fc1fe9230aa92bd38689ffa67391aea511af59e74b93c9379f1d027f07091f98734af837a1af90b35b0e2e5245f78f0198f4a09465a8c59c18077a2457 +doccontainersize 352664 +doccontainerchecksum ea56d62e0fb8b168461f8d01a08a9829ed00db4e2d6a460791de3018be21b4b446ad8ebf4a1c4a69e99a0989b85b55cbaa8aed171a53479df0501ea36cf03bdc +docfiles size=100 + RELOC/doc/latex/dtxgallery/README details="Readme" + RELOC/doc/latex/dtxgallery/conditional-code.dtx RELOC/doc/latex/dtxgallery/conditional-code.pdf + RELOC/doc/latex/dtxgallery/dtxgallery.dtx RELOC/doc/latex/dtxgallery/dtxgallery.pdf + RELOC/doc/latex/dtxgallery/rearrange.dtx RELOC/doc/latex/dtxgallery/rearrange.pdf + RELOC/doc/latex/dtxgallery/single-source.dtx RELOC/doc/latex/dtxgallery/single-source.pdf -srcfiles size=5 - RELOC/source/latex/dtxgallery/conditional-code.dtx - RELOC/source/latex/dtxgallery/dtxgallery.dtx - RELOC/source/latex/dtxgallery/rearrange.dtx - RELOC/source/latex/dtxgallery/single-source.dtx catalogue-ctan /info/dtxgallery -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics demo-code catalogue-version 1 name dtxgen category Package -revision 38325 +revision 38419 shortdesc Creates a template for a self-extracting .dtx file longdesc The bash script dtxgen creates a template for a self-extracting longdesc .dtx file. It is useful for those who plan to create a new longdesc Documented LaTeX Source (.dtx) file. depend dtxgen.ARCH +containersize 5696 +containerchecksum e4d1bf82d1a64eafb67f3f0ff570b1b7eb8b45e869891482ba5e37ebb33312e2aabd22f433d1401e3f02e12b1ba9814c543899c52f7fbf8d191ac78d4856f2a3 +doccontainersize 46204 +doccontainerchecksum a6f57e26b579a34aa61a76ac3e3539c53ee47427a02e39bb39ab4ead1e28135106c0b7a88a9de2211fefc6f5df84a0f1b5b797e3efdcf54d73426eef23cd0a3a +docfiles size=13 + texmf-dist/doc/support/dtxgen/README details="README" + texmf-dist/doc/support/dtxgen/dtxgen.pdf details="Package documentation" runfiles size=4 texmf-dist/scripts/dtxgen/dtxgen -docfiles size=13 - texmf-dist/doc/support/dtxgen/README - texmf-dist/doc/support/dtxgen/dtxgen.pdf catalogue-ctan /support/dtxgen -catalogue-date 2015-09-07 22:44:43 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl catalogue-topics file-mgmt -catalogue-version 1.06 +catalogue-version 1.07 + +name dtxgen.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of dtxgen +containersize 340 +containerchecksum 0f7d1c2b0edaeb5d9aea64a3b6e7616614e6a28b7f53782d1672f7e07154f9d4cdb91fb96a016187b4c6d6d91ff0a3a1a8d693be4f99f4a2a16a3c80e495354b +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/dtxgen + +name dtxgen.amd64-freebsd +category Package +revision 29031 +shortdesc amd64-freebsd files of dtxgen +containersize 340 +containerchecksum 548b80f6b4d7c8a3671f99786208e82bd0d531e0fa3fa94a7eccc91a0f090ebad700cca0f91f6ddf1837a2960992b5d718a96eab3611358a3cb43f8c1723fd4a +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/dtxgen + +name dtxgen.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of dtxgen +containersize 336 +containerchecksum 4c215bb55693532f71c1093ed091778d8aa6716a993880cb597bb9de01135ad59b89690a2497168381b443abc0b326cf732f5f45a087ad131f369bec7b818a32 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/dtxgen + +name dtxgen.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of dtxgen +containersize 336 +containerchecksum f6cc5b4ab066adbaf225fecdbd798d32ed70721f494c1dd2e4a19e3849884f659efc7135d99a5ced168b37672717b9195f94b31f3a31a5bbabbfcbcc488e1445 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/dtxgen + +name dtxgen.i386-cygwin +category Package +revision 29031 +shortdesc i386-cygwin files of dtxgen +containersize 336 +containerchecksum 675c37d3b33af94599222c252c50338956d41008aefe06eb6e69c44508b2e70df7ad77d4de62751a6c88e03d215619afabc579e97617de89b9ebd229a2ec1b29 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/dtxgen + +name dtxgen.i386-freebsd +category Package +revision 29031 +shortdesc i386-freebsd files of dtxgen +containersize 340 +containerchecksum 570dcf9e3a189d0cd2ab1c6a0c82b1e4fc347143acd9e9bd72b5849369c5e0fd433827adfbd4eef4d71aab20c62b80b032b0becad724865b87adc0ecdec01b65 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/dtxgen name dtxgen.i386-linux category Package revision 29031 shortdesc i386-linux files of dtxgen +containersize 336 +containerchecksum 451d65fb8e8f258f5382489233f0b5f52a9eb4168b307ade4a9da77e5c1d74feef632699f4608ed1ac9eeab727dd63f565ea7db430b5e37ceb1fa25ef89108cd binfiles arch=i386-linux size=1 bin/i386-linux/dtxgen +name dtxgen.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of dtxgen +containersize 336 +containerchecksum 61c5b40af5f221219a38cb91dd856db36341d39d2e94e14ebd4994e03482dd7774bc3c4d5e838aebd3f1c32ffc0b6f0de408b9869a2a53f52c28f3d7fd7aeb0f +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/dtxgen + +name dtxgen.i386-solaris +category Package +revision 29031 +shortdesc i386-solaris files of dtxgen +containersize 336 +containerchecksum 75c88898651b2f85dd9af023f43c8bd875929b5c471867769587c4a5a375b6faa312b453e0d431c4ed1a36b48dce1e85a7672c86eaf30163a11ccf596bca6606 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/dtxgen + +name dtxgen.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of dtxgen +containersize 340 +containerchecksum 3e93c61ff4ac0d0b3fbedffb06024d0da3b90b38740c65b09cd429105c8d2170e61f88b2d689327f1b74720c809b6603389dd9f955bd9f11797abd8c8e060c67 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/dtxgen + +name dtxgen.x86_64-darwin +category Package +revision 29031 +shortdesc x86_64-darwin files of dtxgen +containersize 340 +containerchecksum 98f8c3354124b122e07a9fa56de05fec26d13ab9279ef37a7412166a1d0e59ce4221f61fadbb4fa6b1acf59ca06fab75064eb15b56701895fe9dc76eacab43f4 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/dtxgen + +name dtxgen.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of dtxgen +containersize 348 +containerchecksum 6a6d103af2b301daee6a683972f621f8a974f7b4afc5407a4de9e0d1b28671411be192b13ed7b389e31971f03928e0600a69682ecb96853a572c85f360474d81 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/dtxgen + +name dtxgen.x86_64-linux +category Package +revision 29031 +shortdesc x86_64-linux files of dtxgen +containersize 336 +containerchecksum 7b36ae067898cdc73dc73241afd18f0eb121f9d9cb4e084d4ecf04e96d7b01585994159f7334b9cb40faf4010cf7a2646de7565117c5e2cf48a5063cc5d8edf0 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/dtxgen + +name dtxgen.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of dtxgen +containersize 340 +containerchecksum 25a3da27d1e702b91faa3f8b6f9f77b0b0c77d6fddc87e22c08ce33820f275e7871ac3eea21c8cfb419d486a1fb27badd70068b1d5685fee2f22671e8b6ca4c9 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/dtxgen + +name dtxgen.x86_64-solaris +category Package +revision 29031 +shortdesc x86_64-solaris files of dtxgen +containersize 340 +containerchecksum 5efbfc581b3f473ee4669d7af1e85740f85c655c94220e83fa5964e4c587cc72d430f377520d8ec1dc342eae2f91f298174134329094bf1b3fbee0faf692081a +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/dtxgen + name dtxtut category Package revision 38375 @@ -50674,53 +84491,116 @@ relocated 1 longdesc This tutorial is intended for advanced LaTeX2e users who want longdesc to learn how to create .ins and .dtx files for distributing longdesc their homebrewed classes and package files. +containersize 488 +containerchecksum cc28ede4898b583a89df3efbfed45318be9034b3c2a92bff083e79007326d4d680177f1884aa506dbc9574a924687eb463f2d69c297906fcbddaa584ef9e52bf +doccontainersize 313116 +doccontainerchecksum 2c8a2ec4fc38aefa720bee29f24149837f985a54cc1b9cc9325887f5b7738d89ef38d8b60acbb4b5adf0e6c13e1677003e58adaaaf50e8949c33377ca29679a7 docfiles size=98 - RELOC/doc/latex/dtxtut/README + RELOC/doc/latex/dtxtut/README details="Readme" RELOC/doc/latex/dtxtut/cskeleton.dtx RELOC/doc/latex/dtxtut/cskeleton.ins - RELOC/doc/latex/dtxtut/dtxtut.pdf + RELOC/doc/latex/dtxtut/dtxtut.pdf details="Package documentation" RELOC/doc/latex/dtxtut/dtxtut.tex RELOC/doc/latex/dtxtut/skeleton.dtx RELOC/doc/latex/dtxtut/skeleton.ins catalogue-also makedtx sty2dtx catalogue-ctan /info/dtxtut -catalogue-date 2015-09-14 17:57:19 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 catalogue-topics tut-latex-prg catalogue-version 2.1 -name duerer-latex +name ducksay category Package -revision 15878 -shortdesc LaTeX support for the Duerer fonts. +revision 49691 +shortdesc Draw ASCII art of animals saying a specified message relocated 1 -longdesc LaTeX support for Hoenig's Computer Duerer fonts, using their -longdesc standard fontname names. -runfiles size=5 - RELOC/tex/latex/duerer-latex/duerer.sty - RELOC/tex/latex/duerer-latex/ot1cdin.fd - RELOC/tex/latex/duerer-latex/ot1cdr.fd - RELOC/tex/latex/duerer-latex/ot1cdss.fd - RELOC/tex/latex/duerer-latex/ot1cdtt.fd -docfiles size=41 - RELOC/doc/latex/duerer-latex/README - RELOC/doc/latex/duerer-latex/duerer.pdf - RELOC/doc/latex/duerer-latex/duerer.tex -catalogue-ctan /macros/latex/contrib/duerer-latex -catalogue-date 2012-05-07 22:13:48 +0200 -catalogue-license gpl -catalogue-version 1.1 +longdesc The package draws ASCII art of animals saying a specified +longdesc message. The following macros are available: \ducksay +longdesc \duckthink \DefaultAnimal \AddAnimal \DucksayOptions Multi-line +longdesc messages are now fully supported. The package comes with two +longdesc versions, choosable with the version key. +containersize 8240 +containerchecksum b2aff18778968c0b422e5e1c6bd606c7487c99664507790178eaed320c6eb7c48d1796581361a4473abc51c92c5b1d1d536868f12edca96924b4b6211be8302e +doccontainersize 512596 +doccontainerchecksum 70ea75234cacca983e795a54191044851d6eeef87e0b54288bb4fb6b4b4c99239f0a0e6d608cb054991f66bacfd15bd082f94ab4f5fececd9b6bd8870f524e2d +docfiles size=127 + RELOC/doc/latex/ducksay/README.md details="Readme" + RELOC/doc/latex/ducksay/ducksay.pdf details="Package documentation" +srccontainersize 17984 +srccontainerchecksum a133431b8797c34a21da308f72f7dd27b11bfd87c44d32c8cf7bc53ebcf33fd4dc5b14a6f3dcb660c4525d797baa972b33bc521a5c9a4f2e5ea8dcbcffad6bbf +srcfiles size=21 + RELOC/source/latex/ducksay/ducksay.dtx +runfiles size=13 + RELOC/tex/latex/ducksay/ducksay.animals.tex + RELOC/tex/latex/ducksay/ducksay.code.v1.tex + RELOC/tex/latex/ducksay/ducksay.code.v2.tex + RELOC/tex/latex/ducksay/ducksay.sty +catalogue-contact-bugs https://github.com/Skillmon/ltx_ducksay/issues +catalogue-contact-repository https://github.com/Skillmon/ltx_ducksay +catalogue-ctan /macros/latex/contrib/ducksay +catalogue-date 2019-01-13 14:34:53 +0100 +catalogue-license lppl1.3c +catalogue-topics games graphics +catalogue-version 2.3 + +name duckuments +category Package +revision 49936 +shortdesc Create duckified dummy content +relocated 1 +longdesc The package provides facilities to create duckified dummy +longdesc contents. It was inspired by the question "Getting ducks in +longdesc example images" on TeX-LaTeX Stack Exchange. The following +longdesc macros are available: \duckument[key=val] - print a short +longdesc duckument \blindduck[key=val] - print a paragraph +longdesc \ducklist(*){environment} - create a list of type environment +longdesc \ducklistlist(*){environment} - create nested lists +longdesc \duckitemize - ducklist{itemize} \duckenumerate - +longdesc ducklist{enumerate} \duckdescription - ducklist{description} +longdesc \duckumentsCreateExampleFile \duckumentsDrawRandomDucks The +longdesc package works with pdfTeX, LuaTeX, and XeTeX. +containersize 468748 +containerchecksum 75a2fc57b1f85bf36bb7ee9634517e32b62ba67e75cabdda3017f8c27b0aafb147e97c84f0945a498b2a71ba640c772fb5ec34afaeab542954b1337fcdbff64b +doccontainersize 516928 +doccontainerchecksum f7fff4e22250e564737a91f2185949bb260ce9c678578e2403331ffed8642d51fe26528cdcce4be62b5c616c1ce9860e56e16cc1286562c41438435629ff356a +docfiles size=130 + RELOC/doc/latex/duckuments/README.md details="Readme" + RELOC/doc/latex/duckuments/duckuments.pdf details="Package documentation" + RELOC/doc/latex/duckuments/example-image-duck-portrait.tex + RELOC/doc/latex/duckuments/example-image-duck.tex +srccontainersize 9704 +srccontainerchecksum ce2e9b0305ff4a0a117aba6a852ecaa1d0fdb68eaa1adca35f6c4b901af22e004f9372a75e9f353406095249a62101229573f9102057a46922e2f88a2b4958a8 +srcfiles size=12 + RELOC/source/latex/duckuments/duckuments.dtx +runfiles size=145 + RELOC/tex/latex/duckuments/duckuments.sty + RELOC/tex/latex/duckuments/example-image-duck-portrait.pdf + RELOC/tex/latex/duckuments/example-image-duck.pdf +catalogue-also lipsum tikzducks +catalogue-contact-repository https://github.com/Skillmon/ltx_duckuments +catalogue-ctan /macros/latex/contrib/duckuments +catalogue-date 2019-02-03 22:30:55 +0100 +catalogue-license lppl1.3c +catalogue-topics macro-supp dummy-gen +catalogue-version 0.4c name duerer category Package revision 20741 -shortdesc Computer Duerer fonts. +shortdesc Computer Duerer fonts relocated 1 longdesc These fonts are designed for titling use, and consist of longdesc capital roman letters only. Together with the normal set of longdesc base shapes, the family also offers an informal shape. The longdesc distribution is as Metafont source. LaTeX support is available longdesc in the duerer-latex bundle. +containersize 15040 +containerchecksum 15f39b70d6b595a1c4d6594a2908fc07e3597bf1bf88ba25b24ee545d473c709a15b52ad0bd367b0cb1a47ff9548a110c6dce6c2a2b2402f655c21f6dac5a393 +doccontainersize 940 +doccontainerchecksum babbe18510ab7acc910639e2993858b2cf27c4414772d2a03fd2d3576f7dd64f4c7b1aa05d9a7913b4eb8d4eddc942137b41b87816631b34cf35e0120dd3ea40 +docfiles size=1 + RELOC/doc/fonts/duerer/README details="Readme" runfiles size=30 RELOC/fonts/source/public/duerer/cdb10.mf RELOC/fonts/source/public/duerer/cdi10.mf @@ -50737,35 +84617,67 @@ runfiles size=30 RELOC/fonts/tfm/public/duerer/cdsl10.tfm RELOC/fonts/tfm/public/duerer/cdss10.tfm RELOC/fonts/tfm/public/duerer/cdtt10.tfm -docfiles size=1 - RELOC/doc/fonts/duerer/README +catalogue-also duerer-latex catalogue-ctan /fonts/duerer -catalogue-date 2014-04-25 21:03:35 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics font font-mf + +name duerer-latex +category Package +revision 15878 +shortdesc LaTeX support for the Duerer fonts +relocated 1 +longdesc LaTeX support for Hoenig's Computer Duerer fonts, using their +longdesc standard fontname names. +containersize 1136 +containerchecksum e474634e00b86878bc0c09ff247a930e102621d3606079d72e7c284a8ec61d2a2b36f1d09c171b7a4953981dea65df49da1962f01df272fa80354281a3209bc6 +doccontainersize 150404 +doccontainerchecksum d1ea1a023e9f2f1ea4e0fa045d8831f764dbef34d1ef2ec96090f7f7a49aa1f4ed2df63bb611ee354a1e816a204841fbd7f4059a14ed06d758a31ca9f460d50a +docfiles size=41 + RELOC/doc/latex/duerer-latex/README + RELOC/doc/latex/duerer-latex/duerer.pdf details="Package documentation" + RELOC/doc/latex/duerer-latex/duerer.tex +runfiles size=5 + RELOC/tex/latex/duerer-latex/duerer.sty + RELOC/tex/latex/duerer-latex/ot1cdin.fd + RELOC/tex/latex/duerer-latex/ot1cdr.fd + RELOC/tex/latex/duerer-latex/ot1cdss.fd + RELOC/tex/latex/duerer-latex/ot1cdtt.fd +catalogue-ctan /macros/latex/contrib/duerer-latex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics font-supp +catalogue-version 1.1 name duotenzor category Package revision 18728 -shortdesc Drawing package for circuit and duotensor diagrams. +shortdesc Drawing package for circuit and duotensor diagrams relocated 1 longdesc This is a drawing package for circuit and duotensor diagrams longdesc within LaTeX documents. It consists of about eighty commands, longdesc calling on TikZ for support. -runfiles size=10 - RELOC/tex/latex/duotenzor/duotenzor.sty +containersize 5304 +containerchecksum 33990302586baf5731976a27a8268986db6917137219248e559900fc2e64e5ef443bfd14a0472194a962f6fa59a8ed8bb1caadd46badf157fbe39f36815eacd7 +doccontainersize 155936 +doccontainerchecksum 83a811a37004975e4b3fca67bfed83d8fc85fe97a07a20f624d321c62efddf2ce188f1748a5cea47185675e8d5226433b48327d8d7daf87465471b89b652f2fe docfiles size=45 - RELOC/doc/latex/duotenzor/README - RELOC/doc/latex/duotenzor/duotenzormanual.pdf + RELOC/doc/latex/duotenzor/README details="Readme" + RELOC/doc/latex/duotenzor/duotenzormanual.pdf details="Package documentation" RELOC/doc/latex/duotenzor/duotenzormanual.tex +runfiles size=10 + RELOC/tex/latex/duotenzor/duotenzor.sty catalogue-ctan /graphics/duotenzor -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics diagram diagram-circ catalogue-version 1.00 name dutchcal category Package revision 23448 -shortdesc A reworking of ESSTIX13, adding a bold version. +shortdesc A reworking of ESSTIX13, adding a bold version relocated 1 longdesc This package reworks the mathematical calligraphic font longdesc ESSTIX13, adding a bold version. LaTeX support files are @@ -50773,6 +84685,12 @@ longdesc included. The new fonts may also be accessed from the most longdesc recent version of mathalfa. The fonts themselves are subject to longdesc the SIL OPEN FONT LICENSE, version 1.1. execute addMap dutchcal.map +containersize 36200 +containerchecksum 46b90d505661424bcc96d40bae09303193baf5c681338b5b2d526e51ba59cd56fd64a81a01710fb4911727a3cc4263e731754d82a9a2c021bdf73b6ffb15f5b6 +doccontainersize 1044 +doccontainerchecksum adbd2c44d3b2de4149dc647d4e88e46fdb968e6c6898c4de3395d51665bb147d0abb474ab462e75da028265d0cc6935f930f4397558d057171dd56a4999dcb25 +docfiles size=1 + RELOC/doc/fonts/dutchcal/README details="Readme" runfiles size=20 RELOC/fonts/afm/public/dutchcal/DutchCalBold.afm RELOC/fonts/afm/public/dutchcal/DutchCalReg.afm @@ -50787,11 +84705,10 @@ runfiles size=20 RELOC/fonts/vf/public/dutchcal/dutchcal-r.vf RELOC/tex/latex/dutchcal/dutchcal.sty RELOC/tex/latex/dutchcal/udutchcal.fd -docfiles size=1 - RELOC/doc/fonts/dutchcal/README catalogue-ctan /fonts/dutchcal -catalogue-date 2014-04-25 21:03:35 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-calligraphic font-type1 catalogue-version 1.0 name dvdcoll @@ -50812,6 +84729,19 @@ longdesc class is not limited to DVDs--you can of course typeset longdesc archives of CD-ROMs, Audio-CDs and so on. Supported languages longdesc at the moment: English, French, German, Italian, Polish, longdesc Portuguese, Spanish. Some help is needed for other languages! +containersize 15952 +containerchecksum e6b553b2e13e87e105ba1c64422e5269e2f285754f12db1d43f475e0f94dbd32253620c1e71ef08de106d5a050c531e058e529264478e7f4545ed83dfffdd233 +doccontainersize 199176 +doccontainerchecksum 59b152b1922bc79ec3a132902547e8ffebce8cc05e2933b3b54292b507d1ac1810cd0aa2c974045b9b996fd14445126e3eebe6ae3d6ec45e1fdccea9a6ca35e1 +docfiles size=138 + RELOC/doc/latex/dvdcoll/CHANGES + RELOC/doc/latex/dvdcoll/INSTALL details="Installation instructions" + RELOC/doc/latex/dvdcoll/README details="README file" + RELOC/doc/latex/dvdcoll/dcexample.pdf details="Example output" + RELOC/doc/latex/dvdcoll/dcexample.tex + RELOC/doc/latex/dvdcoll/dvdcoll.pdf details="Class documentation" language="en" + RELOC/doc/latex/dvdcoll/dvdcoll_de.pdf details="Class documentation" language="de" + RELOC/doc/latex/dvdcoll/manifest.txt runfiles size=42 RELOC/bibtex/bst/dvdcoll/dcbib.bst RELOC/tex/latex/dvdcoll/dcl/UKenglish.dcl @@ -50842,178 +84772,949 @@ runfiles size=42 RELOC/tex/latex/dvdcoll/dcwrtbib.sty RELOC/tex/latex/dvdcoll/dvdcoll.cls RELOC/tex/latex/dvdcoll/pdfnotiz.sty -docfiles size=138 - RELOC/doc/latex/dvdcoll/CHANGES - RELOC/doc/latex/dvdcoll/INSTALL - RELOC/doc/latex/dvdcoll/README - RELOC/doc/latex/dvdcoll/dcexample.pdf - RELOC/doc/latex/dvdcoll/dcexample.tex - RELOC/doc/latex/dvdcoll/dvdcoll.pdf - RELOC/doc/latex/dvdcoll/dvdcoll_de.pdf - RELOC/doc/latex/dvdcoll/manifest.txt catalogue-ctan /macros/latex/contrib/dvdcoll -catalogue-date 2014-09-25 20:46:00 +0200 +catalogue-date 2016-08-23 21:10:12 +0200 catalogue-license lppl -catalogue-version v1.1a +catalogue-topics catalogue class +catalogue-version 1.1a name dvgloss category Package revision 29103 -shortdesc Facilities for setting interlinear glossed text. +shortdesc Facilities for setting interlinear glossed text relocated 1 longdesc The package provides extensible macros for setting interlinear longdesc glossed text -- useful, for instance, for typing linguistics longdesc papers. The operative word here is "extensible": few features longdesc are built in, but some flexible and powerful facilities are longdesc included for adding your own. -runfiles size=1 - RELOC/tex/latex/dvgloss/dvgloss.sty +containersize 2012 +containerchecksum 51227cd1323c6ef94f8e0c537289abd3812f39109ce178793347d6615a718109f120bf9e6a4dac1ea801effb6f2b9425c376fdcfd5db6a5409887a8b9b49dff8 +doccontainersize 205460 +doccontainerchecksum 4e59a568e0230e5e5dab7968eb27a8bda4680ed31b23d21fe3dfc15d0e3d8b3d6599535f91a092e2f9dea69402ba8ef07291d2cadc1e1cce28aea927fbb84341 docfiles size=52 - RELOC/doc/latex/dvgloss/README - RELOC/doc/latex/dvgloss/dvgloss.pdf + RELOC/doc/latex/dvgloss/README details="Readme" + RELOC/doc/latex/dvgloss/dvgloss.pdf details="Package documentation" +srccontainersize 8748 +srccontainerchecksum a4df82b4ea3e57de02e61e28cf4b9e8fa91e385534d7676fe3e287c49148849dc736003b867f1b481d56466847f9f62f020bb2e826ec81dc31be3d2b6f6a47d4 srcfiles size=8 RELOC/source/latex/dvgloss/dvgloss.dtx RELOC/source/latex/dvgloss/dvgloss.ins +runfiles size=1 + RELOC/tex/latex/dvgloss/dvgloss.sty +catalogue-also gb4e tree-dvips catalogue-ctan /macros/latex/contrib/dvgloss -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics linguistic catalogue-version 0.1 name dvi2tty category TLCore -revision 37078 -shortdesc Produce ASCII from DVI. +revision 50602 +shortdesc Produce ASCII from DVI longdesc A DVI driver to produce an ASCII representation of the longdesc document. The original version was written in Pascal, and the longdesc present author translated the program to C. depend dvi2tty.ARCH -docfiles size=7 +containersize 504 +containerchecksum 41399ea5ec5d9e32cd032caf70009181bef98b28e29ffee84414914ca436a49bb59caa7e5523ae3c76cb8ede89d89ab74af79dd6ecc89cdf9f0d65605668e9c2 +doccontainersize 35892 +doccontainerchecksum 31cd9e13e873269f27e7e40b681a56022e7c0d776179fedb3c9396bcd9743b9e2b5f3043d6d2858858593aac49e40c16bb27d676f77ded984f4b803dfd9b07eb +docfiles size=14 texmf-dist/doc/man/man1/disdvi.1 texmf-dist/doc/man/man1/disdvi.man1.pdf texmf-dist/doc/man/man1/dvi2tty.1 texmf-dist/doc/man/man1/dvi2tty.man1.pdf +catalogue-contact-repository https://github.com/t-tk/dvi2tty catalogue-ctan /dviware/dvi2tty -catalogue-date 2012-04-09 22:37:34 +0200 -catalogue-license gpl -catalogue-version 3.5.1 +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license gpl2 +catalogue-topics plain-text dvi-proc +catalogue-version 6.0.0 + +name dvi2tty.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of dvi2tty +containersize 63752 +containerchecksum 27f24c1b3228ad56d2225eb2375a60047412b432e3740b6b6ab9d7bf62e92605da452778beae5c93e53ab515e39fcc7882c4b87cf5c839716b59c34074c882e3 +binfiles arch=aarch64-linux size=40 + bin/aarch64-linux/disdvi + bin/aarch64-linux/dvi2tty + +name dvi2tty.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of dvi2tty +containersize 74444 +containerchecksum 8c447c92760d246121c373a18937e9ef743cd11f2563ea9c3642995561404414aa7416a5f7c888a0ca04f53054c6d6edf8a30fc665c1eea030de315f47e8e090 +binfiles arch=amd64-freebsd size=48 + bin/amd64-freebsd/disdvi + bin/amd64-freebsd/dvi2tty + +name dvi2tty.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of dvi2tty +containersize 63308 +containerchecksum 7509dde59d59bf94f2f2bd8ce8c2a3bf97d422dafad8229c5570a11b992fe57664b16e5e9ddbbcbd018ad233cefddcbe95e32285c30a27ee36733c85b5eef307 +binfiles arch=amd64-netbsd size=47 + bin/amd64-netbsd/disdvi + bin/amd64-netbsd/dvi2tty + +name dvi2tty.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of dvi2tty +containersize 58628 +containerchecksum 22d6d128b31b1c7974ead48a69aefc48ae6f2cec560918b08c5ce9437ef3e2ad7232549e9d6b1839ea38ebbd31d8b3d0b289d10cb9d6a2e9b6f9773b0319cce1 +binfiles arch=armhf-linux size=37 + bin/armhf-linux/disdvi + bin/armhf-linux/dvi2tty + +name dvi2tty.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of dvi2tty +containersize 22848 +containerchecksum 81a3178df3ba8e915b314dd3ae4d6abfdcb5f3498ad8e4f340bef288decd8680d0e4265b85beeb1a5bb279665d91b2281699804ba393a448bfb8d962702b223d +binfiles arch=i386-cygwin size=19 + bin/i386-cygwin/disdvi.exe + bin/i386-cygwin/dvi2tty.exe + +name dvi2tty.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of dvi2tty +containersize 65408 +containerchecksum 943118801e786e438b401353d60d80687e8c25707bbc903419a97660563188c9a063b3b9e8535ea888ea76b520d59ec09cfc1ade29ef20043c9bd6b94fb0aaa0 +binfiles arch=i386-freebsd size=39 + bin/i386-freebsd/disdvi + bin/i386-freebsd/dvi2tty name dvi2tty.i386-linux category TLCore -revision 36790 +revision 50281 shortdesc i386-linux files of dvi2tty -binfiles arch=i386-linux size=45 +containersize 71416 +containerchecksum 0694650b6ced5fd2550e96735f11a2908d44f75269ccdd6db8aacaf2b80532dc0d9e5c3864356e430462ecce1ae33b7d58498030bfc4e3bf0e0753542e8f2170 +binfiles arch=i386-linux size=44 bin/i386-linux/disdvi bin/i386-linux/dvi2tty +name dvi2tty.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of dvi2tty +containersize 58824 +containerchecksum 62ba9024a799b9b482b194338862998771d63801cdd4936749d10ed761935b600f5f636efeb130cf0cf8bb6ecb26e76d5d8be5d6168be8962c74e9eea3019a78 +binfiles arch=i386-netbsd size=43 + bin/i386-netbsd/disdvi + bin/i386-netbsd/dvi2tty + +name dvi2tty.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of dvi2tty +containersize 67840 +containerchecksum 183f144b9f4fc43097e6f8069cdf57a46a2520846745ea9f11eeb92da6ceb6860ba83f790eb46eba7e3461c583991ea7b8d1406a479f042680c269f56559854e +binfiles arch=i386-solaris size=40 + bin/i386-solaris/disdvi + bin/i386-solaris/dvi2tty + +name dvi2tty.win32 +category TLCore +revision 50155 +shortdesc win32 files of dvi2tty +containersize 88096 +containerchecksum 1df64ffd15a7b310d9ad971238a898721284adafe02391f63d0fe3d8eef74b9d0319e15e4ffa730e3aee81262da3491f72101d6105975463a961d456d623ac26 +binfiles arch=win32 size=53 + bin/win32/disdvi.exe + bin/win32/dvi2tty.exe + +name dvi2tty.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of dvi2tty +containersize 23760 +containerchecksum 47fc4b4456819d8df3ead667a9dfdd411e7356e988747b7add425a2fbc0e65b623e32ab74d448a86275b842d33086e23a49523e3391cf417a703522cb29db552 +binfiles arch=x86_64-cygwin size=19 + bin/x86_64-cygwin/disdvi.exe + bin/x86_64-cygwin/dvi2tty.exe + +name dvi2tty.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of dvi2tty +containersize 72000 +containerchecksum ff16b08747b9869522c6afe83a119cf3d307f5887491307f323b6b0929351011099cafab7896464efce0d058f4e07e1411843edb7e0b5845f700e99b5f45bbe3 +binfiles arch=x86_64-darwin size=42 + bin/x86_64-darwin/disdvi + bin/x86_64-darwin/dvi2tty + +name dvi2tty.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of dvi2tty +containersize 68820 +containerchecksum 28d432860843491c7bbd3e62394252ddde2b1ed59c37485b28c979e13365c8ee564caa799c36d70b822bdf5eb76f2735ed72b1df1f9ad96b3c0cd8b6537946d1 +binfiles arch=x86_64-darwinlegacy size=42 + bin/x86_64-darwinlegacy/disdvi + bin/x86_64-darwinlegacy/dvi2tty + +name dvi2tty.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of dvi2tty +containersize 69280 +containerchecksum 17c0c7c2c0170013b1aef2cdeef45c2829a17d355d2fc7259c170d99200a792d12a8e6c875b8932e47042e72c34523f200548c51de50d131149575e87c78dead +binfiles arch=x86_64-linux size=43 + bin/x86_64-linux/disdvi + bin/x86_64-linux/dvi2tty + +name dvi2tty.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of dvi2tty +containersize 72648 +containerchecksum ae67f4b306827a2cff886f7aeca0d7fddbb9ffea1c557f0fd1bf7b8070adca03c1d4c51abf7d1e38244ff0c8f499cc7ba69d2c6dbc20ed0f36d641252711296e +binfiles arch=x86_64-linuxmusl size=45 + bin/x86_64-linuxmusl/disdvi + bin/x86_64-linuxmusl/dvi2tty + +name dvi2tty.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of dvi2tty +containersize 73584 +containerchecksum e2851b783916cf1bbc0340b29a22069b5c99f808f07224d68bddca79d93f9125de3424d1b8a27fb21da7002f40a47bdbca21c251887034a7e672c1f14dd506e5 +binfiles arch=x86_64-solaris size=47 + bin/x86_64-solaris/disdvi + bin/x86_64-solaris/dvi2tty + name dviasm category Package -revision 36814 -shortdesc A utility for editing DVI files. +revision 49945 +shortdesc A utility for editing DVI files longdesc A Python script to support changing or creating DVI files via longdesc disassembling into text, editing, and then reassembling into longdesc binary format. It supports advanced features such as adding a longdesc preprint number or watermarks. depend dviasm.ARCH -runfiles size=10 - texmf-dist/scripts/dviasm/dviasm.py +containersize 9776 +containerchecksum f8f24627f416053ed4a53008eb6f4b83a6f7114793e361956c3a968efdfe06c11c233e24e14568ccffec612d1ef63daf8f6644333f68d202b816cafee1da98b2 +doccontainersize 664 +doccontainerchecksum 49d49f53bbba34659a96d587d899af7a1d4eb4841d3b5132ca8647efeb27bf6590f7bbac42bc5d5becca356f7bfcd4fb244f6ce9282539fc9aae4bc99a633ecc docfiles size=1 - texmf-dist/doc/latex/dviasm/README + texmf-dist/doc/latex/dviasm/README details="Readme" +runfiles size=11 + texmf-dist/scripts/dviasm/dviasm.py +catalogue-also dtl +catalogue-contact-bugs https://github.com/khaledhosny/dviasm/issues +catalogue-contact-development https://github.com/khaledhosny/dviasm +catalogue-contact-repository https://github.com/khaledhosny/dviasm catalogue-ctan /dviware/dviasm -catalogue-date 2015-04-12 13:34:40 +0200 +catalogue-date 2019-02-05 14:03:53 +0100 catalogue-license gpl3 +catalogue-topics dvi-struc + +name dviasm.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of dviasm +containersize 340 +containerchecksum 1227a970401da87cc17bf43b733ea69429a13bb7e673c01059201c30a72ba899fdb4a5e51a2cfc259f3670c69a6cc2b22cfd1c7e67853083fa8682c2cf125660 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/dviasm + +name dviasm.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of dviasm +containersize 340 +containerchecksum 70b623f81b22b23b854fa60fa7f6fdc81a4fb328b2e3f6b6401c9b630c97e794a5a699ffbde20eed5965d044c98b1c968992cd871b91b899f0a5aa667be48049 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/dviasm + +name dviasm.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of dviasm +containersize 340 +containerchecksum 1731bd188c1bcea4bacc765569067a8cabb2caf56e424ac307eda57d21e91d99e4538a02826218d8b93fedab2b746b1678022fa0e894a38929e14489dfcf18e9 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/dviasm + +name dviasm.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of dviasm +containersize 340 +containerchecksum b7e29a574ed550c45df2092338462f6d5be671bfd5dc9fb2e5a41693087070bd8f563e6a51d5933d185a4fa4ba050e75264b36468d66433708166fae78837e13 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/dviasm + +name dviasm.i386-cygwin +category Package +revision 25941 +shortdesc i386-cygwin files of dviasm +containersize 340 +containerchecksum df249d3e4471b3c65b0fbca2003b1a19b83a82b2495e4d1b5927d010c5cf393fc4e53e3112cfea4f4523e431f5158337b2d0d02e9a706a8c1f640a21685feba0 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/dviasm + +name dviasm.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of dviasm +containersize 340 +containerchecksum bb98991d687972aa4520626e8b7895f47243ea9cace93c5ba3e0d508dc75c7d714c5f57853161f49b1ceec6c3b876fc3122c6ed913aa53a3ad360cf00d2ec3dd +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/dviasm name dviasm.i386-linux category Package revision 8329 shortdesc i386-linux files of dviasm +containersize 336 +containerchecksum 415d2fd995dda403926b44fc83ed0bf8bba9452ee61ca389b24c89fe1a293212d3611f91ec10e0d60930e99b887881ea3955ce3a6a380e961021c08e3316f374 binfiles arch=i386-linux size=1 bin/i386-linux/dviasm +name dviasm.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of dviasm +containersize 340 +containerchecksum 83ff348191568f17b933b8ff90f44e2445898af2545e1b7ec57a29373f3f6db7b5b04d49ba9272e9fee3c70db8f99164a806e388bf69c91ffb518e4417ff898a +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/dviasm + +name dviasm.i386-solaris +category Package +revision 8563 +shortdesc i386-solaris files of dviasm +containersize 340 +containerchecksum f4e29019079df54cad4fb01cba127fec5a767f6e781290f48bfd2f54558943353a3851218012a2ccbcc01d40bfd94f846f632753f4fd12faaca25890a9d55313 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/dviasm + +name dviasm.win32 +category Package +revision 15404 +shortdesc win32 files of dviasm +containersize 684 +containerchecksum 5b1931d996b64fe0b82f6085114ae39a09b48a724cae619b65e561e820737ae42863573361afc78eba878260538d240bdced3d42643eeafcad2bec8aa3347abf +binfiles arch=win32 size=1 + bin/win32/dviasm.exe + +name dviasm.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of dviasm +containersize 344 +containerchecksum 23dfc79561f9002461e700f21c90e07d0b7725a5eb002744edf32ec1dc3e27032320db2dea4817bc54841bac7cfa8162a4a1519cff2f35214365bd1d9340c2f0 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/dviasm + +name dviasm.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of dviasm +containersize 340 +containerchecksum c095ba26ea07f916986d7083e8139d0979839d06c02537dc723236357ce38dc1edec5aeb103ecd013703eb69d0b1b73eea9e12b9ee13a54c6b65f67331f7dc7a +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/dviasm + +name dviasm.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of dviasm +containersize 348 +containerchecksum c4e7c98c4e6d98acd77fb5788571f1c955e9690c6c510a91d61f033d5afc1af1fc3ce67f0370a678ff0dec5cd6318dc74aa005848ace4d919f39653f17defb88 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/dviasm + +name dviasm.x86_64-linux +category Package +revision 8601 +shortdesc x86_64-linux files of dviasm +containersize 340 +containerchecksum 0c26f92fa0196d39883e3f2dfc5a54cace8eb521403ace614a8049fd6c2969548c2b4c2baaa4b1dbd50cbce4e3d731ec5522cb324eac01ac88b4bae6b62c7c4c +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/dviasm + +name dviasm.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of dviasm +containersize 344 +containerchecksum 5b0c12a4e4ad2806f6f2e63b11293d496d3e382b896e5b40d3b677ef9ec60e2e9bb7d4e85ff44fb030363295e6f73a05abc915b55f8cd2d7b2e5d33e7c73611c +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/dviasm + +name dviasm.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of dviasm +containersize 340 +containerchecksum 59b6c8317ac8f20b72b6c1114710fb23e55a2c028579acfe1cf411f479ffd773cb1668c3d1811a3d921dff2f7013f88383439b3e3e2f3dda57b0e5e94baa3b5e +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/dviasm + name dvicopy category TLCore -revision 37078 -shortdesc Copy DVI files, flattening VFs. +revision 50602 +shortdesc Copy DVI files, flattening VFs longdesc DVICOPY is a utility program that allows one to take a DVI file longdesc that references composite fonts (VF) and convert it into a DVI longdesc file that does not contain such references. It also serves as a longdesc basis for writing DVI drivers (much like DVItype). depend dvicopy.ARCH -docfiles size=3 +containersize 608 +containerchecksum 34e16ff93daa924658b433affc70fdab01bd8d6c1d537cf1787389b8de34e7348aaa91a39ba3f3671d25d216420421a5ca73cff5de254fbf25a8433e20fda322 +doccontainersize 18264 +doccontainerchecksum a85e3cf8ee5e500264ffaffddf8ebe6642373f29fcca42c346654f304f34b9389f2e190014eacd215ca0d78debe44859e05696789b9f703fd6eaefc9bebd4ff7 +docfiles size=7 texmf-dist/doc/man/man1/dvicopy.1 texmf-dist/doc/man/man1/dvicopy.man1.pdf -catalogue-ctan /dviware/dvicopy/dvicopy.web -catalogue-date 2012-04-10 15:00:16 +0200 +catalogue-contact-bugs http://lists.tug.org/tex-k +catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-contact-support http://lists.tug.org/tex-k +catalogue-ctan /obsolete/dviware/dvicopy +catalogue-date 2019-01-02 05:45:25 +0100 catalogue-license gpl +catalogue-topics dvi-proc catalogue-version 1.5 +name dvicopy.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of dvicopy +containersize 49776 +containerchecksum 055408cb445fbfc43eafabe69a8b09418de7ed6cec00a0608168c7c0a200c14b7b6e89b61030c825acb13b4f7412c3337a2455cdb78bc72da7b1ae14365d2af4 +binfiles arch=aarch64-linux size=33 + bin/aarch64-linux/dvicopy + +name dvicopy.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of dvicopy +containersize 58800 +containerchecksum 37b49aeab3d1c91b4cb354e972a13da07228891d7bc56ee833e3187a53980fc1af377a6bdba7db9f01bfaa62641e50ca7c66b5e473f234899ddaf68e440d1116 +binfiles arch=amd64-freebsd size=35 + bin/amd64-freebsd/dvicopy + +name dvicopy.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of dvicopy +containersize 50740 +containerchecksum 63fd15d9c2b275d9be4981e85cd0e5be65ded464247b2694337a8e637a745022ef40000660bee6735d5245b478f4ab3d94dbc01ac86b469d5336b52cfd18f170 +binfiles arch=amd64-netbsd size=39 + bin/amd64-netbsd/dvicopy + +name dvicopy.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of dvicopy +containersize 43816 +containerchecksum b336619e659059ba07a1395752db3e265a5ce3367b6d8b62a3b45b38bdd50b698c8b81ef42b49a1f3f5e0bf28d559e598537365df5972d880f5e0fd43dad625d +binfiles arch=armhf-linux size=27 + bin/armhf-linux/dvicopy + +name dvicopy.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of dvicopy +containersize 21716 +containerchecksum 5e29733ab9c31c3088269bbc28bfc23476d36c652d2bb2e8a8fe7768003fb0ecce41d32d2e6236626f860535777f9f3159f1d1f3bb198f812dff1dc4c0ecfe90 +binfiles arch=i386-cygwin size=14 + bin/i386-cygwin/dvicopy.exe + +name dvicopy.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of dvicopy +containersize 47332 +containerchecksum 305e4ee5c2747fbe98ad46c29435186c6319f6788b7e010f9d9bd7e2c4796a65405cb80cffbec9ec111d9e43c00d68d29d804a8a3a506ecc632097b24feb29e0 +binfiles arch=i386-freebsd size=28 + bin/i386-freebsd/dvicopy + name dvicopy.i386-linux category TLCore -revision 36790 +revision 50281 shortdesc i386-linux files of dvicopy -binfiles arch=i386-linux size=40 +containersize 53780 +containerchecksum 177c17b9f5582a108edf0004748f0e33a8876a78ea2a9e01245897438a40fa4007a632ef7350ad6da9ead806283f8eb290e0863e0d7588e5ebbf3bb370f607a7 +binfiles arch=i386-linux size=33 bin/i386-linux/dvicopy +name dvicopy.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of dvicopy +containersize 43088 +containerchecksum 525fe423103a97f0a80a8403a17689910c1165e01b8c1994e58b24e7469f34da71b4542506cc2f9dac84044b574082b08f2b826c30e18ad946c91972be6104b6 +binfiles arch=i386-netbsd size=36 + bin/i386-netbsd/dvicopy + +name dvicopy.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of dvicopy +containersize 53208 +containerchecksum 33599e1af416228563bea1e6ec63901fccab9cff0388a7951c11e92deec695a02ba46e827a628aa2dd7875a88d24ee4aa0a5aa311011ad1171f11ddbc8b88f90 +binfiles arch=i386-solaris size=31 + bin/i386-solaris/dvicopy + +name dvicopy.win32 +category TLCore +revision 50155 +shortdesc win32 files of dvicopy +containersize 24396 +containerchecksum 8d03fe37749b1f80122204d4f33c089552b124577ad11236e685df3ece5aaf91e2809376b96a5b5bb2ed726ad666ac6b17b60e92a7783d910e4bd7f9a257118f +binfiles arch=win32 size=18 + bin/win32/dvicopy.exe + +name dvicopy.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of dvicopy +containersize 26072 +containerchecksum aa32c9ad487b1c5439ce9cf9ea2dfdaa856172f21151939a92d3dd40962196d9a0886b97fae1ccc0a3ec1ad64caa879195cd6c0b46a0574f8bcc769fc019ede7 +binfiles arch=x86_64-cygwin size=14 + bin/x86_64-cygwin/dvicopy.exe + +name dvicopy.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of dvicopy +containersize 57836 +containerchecksum a0d5e2947fb8768c23d347e9aa5734b759e64c94ee7920326677fab0faa58ec0ab0f2b192eb838cbc3a856eef4964d1b9b68c88fafa3346b47c5c58868c26a37 +binfiles arch=x86_64-darwin size=31 + bin/x86_64-darwin/dvicopy + +name dvicopy.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of dvicopy +containersize 55276 +containerchecksum 0b05bd2dd0759b59ecb8da42b6fc8792185f364a6001c186e72f636e0a3cdaf7c18b0175d2210dd44efa0aacfe0e807aed433438e038e3ccb32abd6789b778a3 +binfiles arch=x86_64-darwinlegacy size=31 + bin/x86_64-darwinlegacy/dvicopy + +name dvicopy.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of dvicopy +containersize 53472 +containerchecksum 4ca885a080fc8270207c88110ad4ada39da31fcbcc32a3b95ee099d4cc91fbda0547490a1e9c256721b43bb19e89242a39c690380571032278fec265aab32ab1 +binfiles arch=x86_64-linux size=30 + bin/x86_64-linux/dvicopy + +name dvicopy.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of dvicopy +containersize 59944 +containerchecksum a7bebf7442aa6865d2b800bf484563f30fb5f5f1d9ece4e53112ece1c3da66ae7af87cb6d9c74957235d990098b0e2eff0fe645d9b602f196f471ff8a8319bfb +binfiles arch=x86_64-linuxmusl size=36 + bin/x86_64-linuxmusl/dvicopy + +name dvicopy.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of dvicopy +containersize 59940 +containerchecksum fbd72c34d8fdaf7cc6f0c897b87a26e938ec7a5c0891e510dac6a6347bd360f9082273251ed279caa9f7ee6ebe0c01858c25e4be6ae3485f4ff36f1259e8e63c +binfiles arch=x86_64-solaris size=36 + bin/x86_64-solaris/dvicopy + name dvidvi category TLCore -revision 37078 -shortdesc Convert one DVI file into another. +revision 50602 +shortdesc Convert one DVI file into another longdesc The output DVI file's contents are specified by page selection longdesc commands; series of pages and page number ranges may be longdesc specified, as well as inclusions and exclusions. depend dvidvi.ARCH -runfiles size=4 +containersize 464 +containerchecksum 0b21ec8ae0741fe0b9cbe53fd97c4ef20cd4330bae769424b2fbd2998293b05419008ebcc7ab74bc17f166a30a66cad980f5692ab32aa1621ad4a771d20d720a +doccontainersize 19336 +doccontainerchecksum 831daec5b770f866c15440a384d1352824ead05faaacb8ae991e2d9bc1b115d599e5260cc9d7db6f0752ca7a16f21b0c52b5fff58ed1b23f30ffbfae59387c13 +docfiles size=7 texmf-dist/doc/man/man1/dvidvi.1 texmf-dist/doc/man/man1/dvidvi.man1.pdf catalogue-ctan /dviware/dvidvi -catalogue-date 2015-03-27 20:46:41 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics dvi-proc + +name dvidvi.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of dvidvi +containersize 8660 +containerchecksum 6a41ed08fa7fa7defc8d52181d47600bbc6818b3c1c580e5118cc24945eba38b5cf41b630745e605c807c20679285f69c8bd35f920b649948e93133444a3859f +binfiles arch=aarch64-linux size=6 + bin/aarch64-linux/dvidvi + +name dvidvi.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of dvidvi +containersize 9572 +containerchecksum f3db263e1b009c2a074e2509e29f3d2c1628959d094728c4f4766c6cf85fdf0ee884e89872a54ee025df744a3a87db124a43947a9768a6a381d934cb736cfb18 +binfiles arch=amd64-freebsd size=6 + bin/amd64-freebsd/dvidvi + +name dvidvi.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of dvidvi +containersize 8340 +containerchecksum 25c46d6bd21722bf5cfbad23dbd865f04186dd310c81a2ce5ddacff5e51c104343daae20d8a094132d031bb938aaf85bc56431e0e59f1fdfedff1ebcc42c3a65 +binfiles arch=amd64-netbsd size=6 + bin/amd64-netbsd/dvidvi + +name dvidvi.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of dvidvi +containersize 7636 +containerchecksum 1e033bd3069a33757a3bae7f3e24255610d1b0e22c34691d5d5651c3f4469ea173c188cd792b88002c4a9f995c9b1d6f5f03070b3b3d9227365ea3e24ffdb87d +binfiles arch=armhf-linux size=5 + bin/armhf-linux/dvidvi + +name dvidvi.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of dvidvi +containersize 8384 +containerchecksum 953ed1d88be5a3782164c52731e60d50de425833c758a477e2eb14333f5f4fdf22a46d10879dc31e8425fe5dd2385e220715fdc21ac910fa42198a8c31481bad +binfiles arch=i386-cygwin size=6 + bin/i386-cygwin/dvidvi.exe + +name dvidvi.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of dvidvi +containersize 8260 +containerchecksum a6dca9d5ab150fa96fdcec8a94ba9f7c6dbd270fa4b6975a32b9487dc5d49801fbe24cbb0e5e3ae0c996eb5c16a618389423d7ad28d7e65b2010a46c5fce0741 +binfiles arch=i386-freebsd size=6 + bin/i386-freebsd/dvidvi name dvidvi.i386-linux category TLCore -revision 36790 +revision 50281 shortdesc i386-linux files of dvidvi +containersize 8000 +containerchecksum 6f2d16c747e7a78f4ceff622ddad38d169e2de72efd975ef5309166cb1b87d6109b13072af942d4cd625046a6bf5347e9b9f2d94e32321a8c4186bc86cedfc1e binfiles arch=i386-linux size=5 bin/i386-linux/dvidvi +name dvidvi.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of dvidvi +containersize 7580 +containerchecksum eae6a1fd5280b4babc64193e33e020a5dfcb1eddee15052dd8f7fc10cb5e4f13d8871d5b7a823f61695b092faad8b15c7480f0b74d7f652b1e9f807926b5cfbf +binfiles arch=i386-netbsd size=5 + bin/i386-netbsd/dvidvi + +name dvidvi.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of dvidvi +containersize 8840 +containerchecksum f2fe916142896a8ca04a9ceefef9a1ee486582057a484f91faf88de4ec92e1b7df2f0c0918892c5d44ff3d85774a2fb0f1d5a60e63bb1c59489f30d77a03e865 +binfiles arch=i386-solaris size=5 + bin/i386-solaris/dvidvi + +name dvidvi.win32 +category TLCore +revision 50155 +shortdesc win32 files of dvidvi +containersize 10712 +containerchecksum 40ab59ff54334bc464a1a648e4c441ea3df2573770a560464157ce2f364df5b51fed45c8270f98bbc15281e0200b28435ce0a5622db90c08eea8e4fe93b950e1 +binfiles arch=win32 size=9 + bin/win32/a5bookle.bat + bin/win32/a5bookle.exe + bin/win32/doubside.bat + bin/win32/doubside.exe + bin/win32/dvidvi.exe + +name dvidvi.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of dvidvi +containersize 8564 +containerchecksum 542db9abbd4460ed1de0046a8e0a4312c2b08f0349baca5bfb32bb9e5a4c2e90c17ce9b79a2b900c74f15b58de8fb8f290c7178fbeec83b2ee6108adac10ee6a +binfiles arch=x86_64-cygwin size=6 + bin/x86_64-cygwin/dvidvi.exe + +name dvidvi.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of dvidvi +containersize 8840 +containerchecksum e0629fbc6dbb9bbc08939f0b1e94cbf64dd86554e2fa7dca0bf331ab9e3d26bc092ee01b7fa769b0164705b03b813f30ccb7dc7d5bb044dbeadcff858deabb6f +binfiles arch=x86_64-darwin size=7 + bin/x86_64-darwin/dvidvi + +name dvidvi.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of dvidvi +containersize 7964 +containerchecksum 898488a0498b3627dfbe6d3d7a79084965218699e6f0cb2914fb52bd04d9063460dba28154140b8a008006649077a0fcc6588352b7a453e7001b9103511363c0 +binfiles arch=x86_64-darwinlegacy size=6 + bin/x86_64-darwinlegacy/dvidvi + +name dvidvi.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of dvidvi +containersize 8272 +containerchecksum d190c1c647018c9a4b3020ca503e5e13918c60f2c3940e843803016da2498c96b761d39a36876e74c10b5e85e3e1a88a01e74d712148b5e6e416c2e52c6b5eab +binfiles arch=x86_64-linux size=5 + bin/x86_64-linux/dvidvi + +name dvidvi.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of dvidvi +containersize 8772 +containerchecksum fdd7b48c67b84af44cd56016ea6e83b8dffb49592ccb54163e93b2b63c1cbdaeb4489a839314271c98efab0f28f16275c47b6c296f07f637d8fdeb030632f28a +binfiles arch=x86_64-linuxmusl size=6 + bin/x86_64-linuxmusl/dvidvi + +name dvidvi.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of dvidvi +containersize 9332 +containerchecksum 52717b68ff7c8553f3c15c96470a599b40333741e845b1159ddea21dd75ce5e02e8ee93644d6d0fd6007da503babe92ce37ef805851290197a8f8724fb0b72a8 +binfiles arch=x86_64-solaris size=6 + bin/x86_64-solaris/dvidvi + name dviincl category Package revision 29349 -shortdesc Include a DVI page into MetaPost output. +shortdesc Include a DVI page into MetaPost output relocated 1 longdesc DVItoMP is one of the auxiliary programs available to any longdesc MetaPost package; it converts a DVI file into a MetaPost file. longdesc Using it, one can envisage including a DVI page into an EPS longdesc files generated by MetaPost. Such files allow pages to include longdesc other pages. -runfiles size=2 - RELOC/metapost/dviincl/fix_brks.mp - RELOC/metapost/dviincl/fix_page.mp +containersize 1084 +containerchecksum dc09380d453b2c83359fa1862f6d289162ed4ec12e7f1b2842789db26e780713981261369dee0d03561a6864bb8bb25e071ca73c3d85e6218667587fa78f55bd +doccontainersize 3636 +doccontainerchecksum 3418aa91ac8daf98f2ccbe67c2ca13bcf8fc5adb380f7c56e133f4487bc3ab701be1925d7a5878fc02ab7b8607e70991887a3d875d25b777b5489b7ae904aa7b docfiles size=9 RELOC/doc/metapost/dviincl/0czytaj.sla RELOC/doc/metapost/dviincl/0dviincl.inf - RELOC/doc/metapost/dviincl/README - RELOC/doc/metapost/dviincl/README.pl + RELOC/doc/metapost/dviincl/README details="Readme (English)" language="en" + RELOC/doc/metapost/dviincl/README.pl details="Readme (Polish)" language="pl" RELOC/doc/metapost/dviincl/storyx.tex RELOC/doc/metapost/dviincl/test-bop.mp RELOC/doc/metapost/dviincl/test-bop.tex RELOC/doc/metapost/dviincl/testit.bat RELOC/doc/metapost/dviincl/testit.sh +runfiles size=2 + RELOC/metapost/dviincl/fix_brks.mp + RELOC/metapost/dviincl/fix_page.mp catalogue-ctan /graphics/metapost/contrib/macros/dviincl -catalogue-date 2012-04-10 15:00:16 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics dvi-proc catalogue-version 1.00 +name dviinfox +category Package +revision 44515 +shortdesc Perl script to print DVI meta information +longdesc The package provides a perl script which prints information +longdesc about a DVI file. It also supports XeTeX XDV format. +depend dviinfox.ARCH +containersize 3540 +containerchecksum 33b37192832362c170575d1770b0e8da105ab0f9197ee52ff86a9dedfdac718fd7f3ca87d6f3f2075803fcffbc2f3739b806b1088bd7e2a21beca53292d918f0 +doccontainersize 2168 +doccontainerchecksum f5f84a2df36ee93ccc0a8acb687fa4fdc6441ee6b0c76fe4330cb28ff2e5106014df5f367d5f2821c10864ff16988837099114ce331afe8a303e0f9102d92193 +docfiles size=2 + texmf-dist/doc/latex/dviinfox/LICENSE + texmf-dist/doc/latex/dviinfox/README.md details="Readme" +runfiles size=3 + texmf-dist/scripts/dviinfox/dviinfox.pl +catalogue-contact-repository https://github.com/aminophen/tex-assort +catalogue-ctan /dviware/dviinfox +catalogue-date 2017-08-08 22:51:51 +0200 +catalogue-license mit +catalogue-topics metadata dvi-struc +catalogue-version 1.04 + +name dviinfox.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of dviinfox +containersize 340 +containerchecksum 93f54aed0370f4059be1f1d6fe9bd952d7b29995ece73054e5cd6b36c0014fdebdb17b486aedefbbef6167b5adf09e4ce98d25d0d93c1496bb9251bbc988f644 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/dviinfox + +name dviinfox.amd64-freebsd +category Package +revision 44515 +shortdesc amd64-freebsd files of dviinfox +containersize 344 +containerchecksum d2f8123c00714cef525770af05ffa67586a2c6af2e01ecece3f875de677782a6c8d0613aaa13069825e4239343ada5bbcdcd010b2d34f648dd91ba29d7bd2401 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/dviinfox + +name dviinfox.amd64-netbsd +category Package +revision 44515 +shortdesc amd64-netbsd files of dviinfox +containersize 340 +containerchecksum 5ce91e8b0a9aeab607713351d1f023a2350f22b03706977bdbfeab932f489880fbdd85ce73bddd17dc02e80fcdab1482af5737297feb7c93de310b343c5f6150 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/dviinfox + +name dviinfox.armhf-linux +category Package +revision 44515 +shortdesc armhf-linux files of dviinfox +containersize 340 +containerchecksum 13182f96d2c7f45a1cb0d059f71764e948bf14a481cf31bfa1c3aac9704c3d807661db2f5b216ba652ab2636ca028e65dd7300679a90757340a70d30ad3af864 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/dviinfox + +name dviinfox.i386-cygwin +category Package +revision 44515 +shortdesc i386-cygwin files of dviinfox +containersize 340 +containerchecksum 6e27de0136cd979c5b11b05a59c7383d709f86b808bd7ad343ffe300a3743d60ffdb6533ba39587335e26dd451f6db983102044fd0fade57e15fd817accd3528 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/dviinfox + +name dviinfox.i386-freebsd +category Package +revision 44515 +shortdesc i386-freebsd files of dviinfox +containersize 340 +containerchecksum 8cb9451a83f9c5bc13c5ee1fb587ca269dcc9b8a0301f7364129c2e76e8c3b49d2831862271093d3d9a050b8e2d38e1ec4e7da076a790b802834409a56023e0a +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/dviinfox + +name dviinfox.i386-linux +category Package +revision 44515 +shortdesc i386-linux files of dviinfox +containersize 340 +containerchecksum 58ab6bf7acdf51ba3260d22b8d8975dd786f8d617973594e6b15c71656f229f298e233c8ccc9cec43c0976676782aae5df564404798e8d765061104eac841376 +binfiles arch=i386-linux size=1 + bin/i386-linux/dviinfox + +name dviinfox.i386-netbsd +category Package +revision 44515 +shortdesc i386-netbsd files of dviinfox +containersize 340 +containerchecksum 30d11221564ec84d389c264104cd352b1ba115460cdecbc25341c29ff96fa75840894c9c60a92a2e4034399879ebd92cbaf0089b607fc07721dee486c92e872d +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/dviinfox + +name dviinfox.i386-solaris +category Package +revision 44515 +shortdesc i386-solaris files of dviinfox +containersize 340 +containerchecksum b3f023c93fa302e575b82b771eddd5093c7f60d4afeb5e9b792330afd3fb8094e3ee8d310fc521ce95fc9d74819eb19d077e6b495ca9018ac226a2aaa98c0774 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/dviinfox + +name dviinfox.win32 +category Package +revision 44515 +shortdesc win32 files of dviinfox +containersize 684 +containerchecksum a68fdc8f84608d8850cc57b1dfa68ad2013f90aed1a6f1f397745acb216f291cca5fe0643faf94f8e3b2ed40520cc2fe462069fb5d11008f534d7601fc528616 +binfiles arch=win32 size=1 + bin/win32/dviinfox.exe + +name dviinfox.x86_64-cygwin +category Package +revision 44515 +shortdesc x86_64-cygwin files of dviinfox +containersize 344 +containerchecksum bf3a2a9849414513dcfce586313e830aaa5c20fe78872290e41383d21619c73bb4dcc3b07de80ca2d423c8a73c7770fa846092ffe489b8fd37868dba04ecaa41 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/dviinfox + +name dviinfox.x86_64-darwin +category Package +revision 44515 +shortdesc x86_64-darwin files of dviinfox +containersize 344 +containerchecksum 9790c41a569390169b5491555fb34fa2c997cb45153761dd9dff5132d27c6ca80536d4b8a01484b95282f1dc90e3234e9bc27945e7770725a92dfe8119d9b006 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/dviinfox + +name dviinfox.x86_64-darwinlegacy +category Package +revision 44515 +shortdesc x86_64-darwinlegacy files of dviinfox +containersize 352 +containerchecksum 9bbc85be51f76c1f55886d994588be39c478fbf7fb8284aec02cb91b79cceff91ef07c5062321568a3093876a03ab8f349a5444fbaa89e047cbf4422d4485371 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/dviinfox + +name dviinfox.x86_64-linux +category Package +revision 44515 +shortdesc x86_64-linux files of dviinfox +containersize 340 +containerchecksum 780ac5b93b4fa79f5154b24a38b044aa57f7a3f508796485cd60be2055bf111cd76caca9c1e6506ec85214ea919e812953531ee92f2765d8bb725707cc4f9833 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/dviinfox + +name dviinfox.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of dviinfox +containersize 348 +containerchecksum e4e94efa9bed3428414490dcf124a8587fb8e6a9cf8dae700d70634fb3651f14eadf70f7c6a551b58eca4b61025952c857e015f48a2f3796f56287d51efc7085 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/dviinfox + +name dviinfox.x86_64-solaris +category Package +revision 44515 +shortdesc x86_64-solaris files of dviinfox +containersize 340 +containerchecksum de3145d145c02af5894b166e142287bd36cd920e24f9c99053d42b26984e234214cedda22c171145e0637d4b928e3df2221b6ac677c2d546979f8d99e574ed8a +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/dviinfox + name dviljk category TLCore -revision 37078 -shortdesc DVI to Laserjet output. +revision 50602 +shortdesc DVI to Laserjet output longdesc A dvi driver for the LaserJet printers, using kpathsea longdesc recursive file searching. Note: this program will not compile longdesc simply with the sources in this distribution; it needs a full longdesc (current) kpathsea distribution environment, such as is -longdesc available from the TeX-Live source tree. +longdesc available from the TeX Live source tree. depend dviljk.ARCH -docfiles size=54 +containersize 532 +containerchecksum 9c94578a0e4a43663cf1d3e05447d51ee84b892bb78ac105321b471e21417dd636bf8746d04c0decce06293f8ae8d8f60e0127b52796310a9c9dfc512158ab4c +doccontainersize 74944 +doccontainerchecksum fa77f151e69f8baccbd01f8beb29c0143283892d42f5b0213909c7d434688a4e4c5e121ef9b8b73d93ebb211ca03a454ce309efd447a7d351968cbe9066b5ae8 +docfiles size=92 texmf-dist/doc/man/man1/dvihp.1 texmf-dist/doc/man/man1/dvihp.man1.pdf texmf-dist/doc/man/man1/dvilj.1 @@ -51027,14 +85728,101 @@ docfiles size=54 texmf-dist/doc/man/man1/dvilj6.1 texmf-dist/doc/man/man1/dvilj6.man1.pdf catalogue-ctan /dviware/dviljk -catalogue-date 2015-03-27 20:47:10 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics dvi-print + +name dviljk.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of dviljk +containersize 69332 +containerchecksum 320322a17430ed266aef5920f99a7c878b1b60200d74a16835f314879c95dba3706f06b8b1fa19cc78890e7a3bcd2727099b9ca5d99c44af64e13b5ddb140ee3 +binfiles arch=aarch64-linux size=119 + bin/aarch64-linux/dvihp + bin/aarch64-linux/dvilj + bin/aarch64-linux/dvilj2p + bin/aarch64-linux/dvilj4 + bin/aarch64-linux/dvilj4l + bin/aarch64-linux/dvilj6 + +name dviljk.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of dviljk +containersize 90988 +containerchecksum 671c7a897ce4f52545960bb91295f384fbd5277d7ee443869ed537979b4f5e30147dda2705683938bb70c072ed9a5a68d543a76f8706e156e1c7a1621c927d12 +binfiles arch=amd64-freebsd size=139 + bin/amd64-freebsd/dvihp + bin/amd64-freebsd/dvilj + bin/amd64-freebsd/dvilj2p + bin/amd64-freebsd/dvilj4 + bin/amd64-freebsd/dvilj4l + bin/amd64-freebsd/dvilj6 + +name dviljk.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of dviljk +containersize 74936 +containerchecksum 4c66273617adcfc75ab62243a57e0f9c3c961995bb0ba5f29c3577df26e5fa472e924bc07278c8ec10326514e4c955bb3b83ae02b48f1229a24a95e1746f600e +binfiles arch=amd64-netbsd size=151 + bin/amd64-netbsd/dvihp + bin/amd64-netbsd/dvilj + bin/amd64-netbsd/dvilj2p + bin/amd64-netbsd/dvilj4 + bin/amd64-netbsd/dvilj4l + bin/amd64-netbsd/dvilj6 + +name dviljk.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of dviljk +containersize 63596 +containerchecksum bb8d5eae0b9f38f59900f2cad6fe5cfadf8b48ba2e166b0d0f4f7dc92722aca681ad7a38e271e23cc6a13dee67df0e228717e72825ed54ad5fc9d02905f07ba5 +binfiles arch=armhf-linux size=109 + bin/armhf-linux/dvihp + bin/armhf-linux/dvilj + bin/armhf-linux/dvilj2p + bin/armhf-linux/dvilj4 + bin/armhf-linux/dvilj4l + bin/armhf-linux/dvilj6 + +name dviljk.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of dviljk +containersize 38604 +containerchecksum 4ea0b2327cb5197d8fb974b3cf00516872d1b9942450c79a20709681268c80ed76d5d86730977b078bb8c371ec7890e1ca2f55e54febd505e002aa7e56490688 +binfiles arch=i386-cygwin size=59 + bin/i386-cygwin/dvihp + bin/i386-cygwin/dvilj.exe + bin/i386-cygwin/dvilj2p.exe + bin/i386-cygwin/dvilj4.exe + bin/i386-cygwin/dvilj4l.exe + bin/i386-cygwin/dvilj6 + +name dviljk.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of dviljk +containersize 77312 +containerchecksum 654723a59194705858889b907a5016536c34ce27e09212d795c7f33ba4b89f27721097230fc7305483bed64ff088e04ba4ca88672bb468556bb6e38bf80b99e7 +binfiles arch=i386-freebsd size=109 + bin/i386-freebsd/dvihp + bin/i386-freebsd/dvilj + bin/i386-freebsd/dvilj2p + bin/i386-freebsd/dvilj4 + bin/i386-freebsd/dvilj4l + bin/i386-freebsd/dvilj6 name dviljk.i386-linux category TLCore -revision 36790 +revision 50281 shortdesc i386-linux files of dviljk -binfiles arch=i386-linux size=167 +containersize 89428 +containerchecksum 3edfdedd80672adafac746714b74abdf5c2d35480fd0b53cb47491d05a8fec94e88ad14560d0b13c5b292c85839d3424fb49f2ea7e117916d2e65ff446ab798f +binfiles arch=i386-linux size=139 bin/i386-linux/dvihp bin/i386-linux/dvilj bin/i386-linux/dvilj2p @@ -51042,49 +85830,547 @@ binfiles arch=i386-linux size=167 bin/i386-linux/dvilj4l bin/i386-linux/dvilj6 -name dvipdfmx-def -category Package -revision 38150 -shortdesc Configuration file for dvipdfmx graphics -relocated 1 -longdesc This is the graphics driver for use when output is to be -longdesc processed by dvipdfmx. -runfiles size=3 - RELOC/tex/latex/dvipdfmx-def/dvipdfmx.def -catalogue-also xetex-def -catalogue-ctan /macros/latex/contrib/dvipdfmx-def -catalogue-date 2015-08-18 08:18:11 +0200 -catalogue-license lppl1 -catalogue-topics graphics-drv -catalogue-version 4.05 +name dviljk.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of dviljk +containersize 71684 +containerchecksum a0531b70f638ceb3cf5bdcb0eb0bc61cbd17e0e8a1f19805e1b3d033887134c61aab77990d241939f0949edf7f080eb1c4b71237b0f365a313670b1e3c23e5c4 +binfiles arch=i386-netbsd size=139 + bin/i386-netbsd/dvihp + bin/i386-netbsd/dvilj + bin/i386-netbsd/dvilj2p + bin/i386-netbsd/dvilj4 + bin/i386-netbsd/dvilj4l + bin/i386-netbsd/dvilj6 + +name dviljk.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of dviljk +containersize 84416 +containerchecksum fdf2bae6837d01a5abcc59c4460610b65194364a2869d66a283f5508fe2a314735f7b79b183eb93642b4d936a322e3dbf66f3509593656cb91b129120ac0bb7f +binfiles arch=i386-solaris size=119 + bin/i386-solaris/dvihp + bin/i386-solaris/dvilj + bin/i386-solaris/dvilj2p + bin/i386-solaris/dvilj4 + bin/i386-solaris/dvilj4l + bin/i386-solaris/dvilj6 + +name dviljk.win32 +category TLCore +revision 50155 +shortdesc win32 files of dviljk +containersize 45564 +containerchecksum 16473fef0b0ed38673a28fb42004dadb71b166849f29a52869f009559719f5101d9f7cd8a93d748da67d7bac1d48b0cacf2964c0c8dae9a3f74cd358b423f63a +binfiles arch=win32 size=54 + bin/win32/dvihp.exe + bin/win32/dvilj.exe + bin/win32/dvilj2p.exe + bin/win32/dvilj4.exe + bin/win32/dvilj4l.exe + bin/win32/dvilj6.exe + +name dviljk.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of dviljk +containersize 41248 +containerchecksum 3a3d0793645b9f3fadf3137f7a49f1435f2f15016d7f191d7f81925511939d302b49d2e3dc9b59f87c6721a0c4eba5e7dc55631be7e8cf29fe669579b3612022 +binfiles arch=x86_64-cygwin size=55 + bin/x86_64-cygwin/dvihp + bin/x86_64-cygwin/dvilj.exe + bin/x86_64-cygwin/dvilj2p.exe + bin/x86_64-cygwin/dvilj4.exe + bin/x86_64-cygwin/dvilj4l.exe + bin/x86_64-cygwin/dvilj6 + +name dviljk.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of dviljk +containersize 89664 +containerchecksum 4adeaaa3ef185b55aa4240a0e01d3ebe45672cfa68284f0fc73cf25ab71bf92aac172208dda4e7bd05947997cc24857860c051154c8df6482490e0250c924952 +binfiles arch=x86_64-darwin size=133 + bin/x86_64-darwin/dvihp + bin/x86_64-darwin/dvilj + bin/x86_64-darwin/dvilj2p + bin/x86_64-darwin/dvilj4 + bin/x86_64-darwin/dvilj4l + bin/x86_64-darwin/dvilj6 + +name dviljk.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of dviljk +containersize 80740 +containerchecksum e753c096ae3b5907da440c91ac099015e18dd2aa8553ac75e3d11ee77a65611705709d2d1120c0ae4c496ece8b5014537f47fefb1125050591e4215d6f6a75cc +binfiles arch=x86_64-darwinlegacy size=123 + bin/x86_64-darwinlegacy/dvihp + bin/x86_64-darwinlegacy/dvilj + bin/x86_64-darwinlegacy/dvilj2p + bin/x86_64-darwinlegacy/dvilj4 + bin/x86_64-darwinlegacy/dvilj4l + bin/x86_64-darwinlegacy/dvilj6 + +name dviljk.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of dviljk +containersize 87640 +containerchecksum aa60f982565509d631fb8d24fd9057e3983a9558df7d71f956007e4846757985b88f6a2046fd85696cc1f1ddb80bbd0696c1ccb4382909e7fc5f9e2dea99d97b +binfiles arch=x86_64-linux size=127 + bin/x86_64-linux/dvihp + bin/x86_64-linux/dvilj + bin/x86_64-linux/dvilj2p + bin/x86_64-linux/dvilj4 + bin/x86_64-linux/dvilj4l + bin/x86_64-linux/dvilj6 + +name dviljk.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of dviljk +containersize 87396 +containerchecksum cd4fdfe6f8f5fb73b0a04b71f3643e0a5b5956294842cf2eaad528ab43e5f247c1c294dd6c9b2dc12e7753fb6c257b491b159d2af5a6b8b302fd33ac1cb94c80 +binfiles arch=x86_64-linuxmusl size=136 + bin/x86_64-linuxmusl/dvihp + bin/x86_64-linuxmusl/dvilj + bin/x86_64-linuxmusl/dvilj2p + bin/x86_64-linuxmusl/dvilj4 + bin/x86_64-linuxmusl/dvilj4l + bin/x86_64-linuxmusl/dvilj6 + +name dviljk.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of dviljk +containersize 94224 +containerchecksum 89f720ea78079c3fe051e62c8bb82fe0b6472cbd232a069dbdbd13804a3bb46450e591666fb3b73efc97ad86292907fd9ccbd64cb9ee01cef4bb8b4d7d51426a +binfiles arch=x86_64-solaris size=139 + bin/x86_64-solaris/dvihp + bin/x86_64-solaris/dvilj + bin/x86_64-solaris/dvilj2p + bin/x86_64-solaris/dvilj4 + bin/x86_64-solaris/dvilj4l + bin/x86_64-solaris/dvilj6 + +name dviout-util +category Package +revision 50602 +depend dviout-util.ARCH +containersize 248 +containerchecksum bc4ebab6476e9023c4c6e130082ec1ace7f068f9d0b2835f1bfb40db892baa7db4a5f0ffee0e49e4368f2b34ca044f2de31c9905c244157d9238daa8939cd56c +doccontainersize 38808 +doccontainerchecksum 916faf1b17e02ec011a6ace727f17807ae72b64126c3a29337b06554aeac3fb86bb5bc0ea36c5f82523843be1f051e56cf9cde9370b40170295d911cd91eb6da +docfiles size=14 + texmf-dist/doc/man/man1/chkdvifont.1 + texmf-dist/doc/man/man1/chkdvifont.man1.pdf + texmf-dist/doc/man/man1/dvispc.1 + texmf-dist/doc/man/man1/dvispc.man1.pdf + +name dviout-util.aarch64-linux +category Package +revision 50150 +shortdesc aarch64-linux files of dviout-util +containersize 64968 +containerchecksum 1fa7c24bdddd28d965d9275825be936efd01f49868e293820e2e6e9b0d521cdc979cc3024b5d9c8255cf8cd16a7d68bd69095f44efd5c883b966ae9e0f61fe63 +binfiles arch=aarch64-linux size=40 + bin/aarch64-linux/chkdvifont + bin/aarch64-linux/dvispc + +name dviout-util.amd64-freebsd +category Package +revision 50445 +shortdesc amd64-freebsd files of dviout-util +containersize 75896 +containerchecksum a857e80a38f6186100cf0494022944d1a451037972cd97ebe33f4ed933ede5694442371e32bb7047ad684b97b830512b8450d6c80e75c10a0930cabb5ed9c1d7 +binfiles arch=amd64-freebsd size=44 + bin/amd64-freebsd/chkdvifont + bin/amd64-freebsd/dvispc + +name dviout-util.amd64-netbsd +category Package +revision 50171 +shortdesc amd64-netbsd files of dviout-util +containersize 65168 +containerchecksum fe3ccb8b28e9c04648b3102371c08706071fbb67988ddd5da175709e8b40f2b87f74d08e0037c888b666858bf41e2769ceaa25708f75126232d1f4de65bf1d4e +binfiles arch=amd64-netbsd size=47 + bin/amd64-netbsd/chkdvifont + bin/amd64-netbsd/dvispc + +name dviout-util.armhf-linux +category Package +revision 50150 +shortdesc armhf-linux files of dviout-util +containersize 60548 +containerchecksum 5db39ee38fc2fa074434adf0b448fc57d5da56f39d177705e85a63a5f27e287a2e3bc05e734c88822da3cc71bf9d9e397d0bc414807f9169a87bd9f86271ce86 +binfiles arch=armhf-linux size=35 + bin/armhf-linux/chkdvifont + bin/armhf-linux/dvispc + +name dviout-util.i386-cygwin +category Package +revision 50455 +shortdesc i386-cygwin files of dviout-util +containersize 24540 +containerchecksum 2faecb0fbcb32fb4a2f7738fcf0b4b7965a5b64a3dbef1b2da96c847f89b3d5bf8aa28156379c70cd1768559512e7a97507c6b6b277866f9c024cf0327b58172 +binfiles arch=i386-cygwin size=17 + bin/i386-cygwin/chkdvifont.exe + bin/i386-cygwin/dvispc.exe + +name dviout-util.i386-freebsd +category Package +revision 50473 +shortdesc i386-freebsd files of dviout-util +containersize 66692 +containerchecksum 572736b19ede9b84f4c5ec6899a0cb60132305d1c58e659a5c9d00d0484d1d159c8ac0a9ecd7d70e8dca209f228e1ead80468428eed68ecbb70f20f5642b9ea9 +binfiles arch=i386-freebsd size=36 + bin/i386-freebsd/chkdvifont + bin/i386-freebsd/dvispc + +name dviout-util.i386-linux +category Package +revision 50281 +shortdesc i386-linux files of dviout-util +containersize 75008 +containerchecksum a21331a9ffef1ddf4cc5b89ace002560b7a85e684d900ef3bdd9569e7584dc8fd6132f7128c97072dbc4797bbaf501ee6f62a75ca9e3158448ea2bc2950f565c +binfiles arch=i386-linux size=43 + bin/i386-linux/chkdvifont + bin/i386-linux/dvispc + +name dviout-util.i386-netbsd +category Package +revision 50171 +shortdesc i386-netbsd files of dviout-util +containersize 60332 +containerchecksum e014fe3ac0037a75503d0bdbcece792ddaba43dde0a3a2b6d5b5cd173aaf6c9d77464d7160b7e0c35aa3e6f5fe3d2b9b27faffc8578c8b7ecd64d2ce36a867fe +binfiles arch=i386-netbsd size=43 + bin/i386-netbsd/chkdvifont + bin/i386-netbsd/dvispc + +name dviout-util.i386-solaris +category Package +revision 50150 +shortdesc i386-solaris files of dviout-util +containersize 72528 +containerchecksum f9517e778282f2eb5da049107dff7b636eb00177aa2245ed0ad5ca24e2351654ec58d8af2a439d07829c1806c9844ee7bfcdc969ceee758e81a8c8cf4adb7746 +binfiles arch=i386-solaris size=39 + bin/i386-solaris/chkdvifont + bin/i386-solaris/dvispc + +name dviout-util.win32 +category Package +revision 50155 +shortdesc win32 files of dviout-util +containersize 89592 +containerchecksum b21aced38a2602f104a50262169f3ab49ee58fa07b63cc879db947eaddb2e573fb347f9d9e83f64e6b06614ebfc5d7da060506126371bafd9c4707867beaf7fd +binfiles arch=win32 size=53 + bin/win32/chkdvifont.exe + bin/win32/dvispc.exe + +name dviout-util.x86_64-cygwin +category Package +revision 50889 +shortdesc x86_64-cygwin files of dviout-util +containersize 25828 +containerchecksum fd350fb3626a2ef5fd6374588a8b6f9561ca3c23d599ca04778f1e4faa350fb3fd278dc72f8e76ed718aa9ae2f15444bb1bd4c1aecfaae912baca588afc6907f +binfiles arch=x86_64-cygwin size=16 + bin/x86_64-cygwin/chkdvifont.exe + bin/x86_64-cygwin/dvispc.exe + +name dviout-util.x86_64-darwin +category Package +revision 50150 +shortdesc x86_64-darwin files of dviout-util +containersize 75516 +containerchecksum b08e4c02238f090f03bf1ad1d0f417178fd5d4d767dabd2d8f4308d2fe93976fcebd5f33facc939f49de550ab280fe9d39ecd5b6be09ac5c5b629eee65b555c6 +binfiles arch=x86_64-darwin size=42 + bin/x86_64-darwin/chkdvifont + bin/x86_64-darwin/dvispc + +name dviout-util.x86_64-darwinlegacy +category Package +revision 50282 +shortdesc x86_64-darwinlegacy files of dviout-util +containersize 70596 +containerchecksum 20ff9a85531378d71385670c2c5da042f6b733f944e53a801400b2a05232049c23247983af742c949dfb3e40ac3310ab035a99cf32e9435b8f135e0700c1a50a +binfiles arch=x86_64-darwinlegacy size=41 + bin/x86_64-darwinlegacy/chkdvifont + bin/x86_64-darwinlegacy/dvispc + +name dviout-util.x86_64-linux +category Package +revision 50281 +shortdesc x86_64-linux files of dviout-util +containersize 72572 +containerchecksum 0add1135a7460fdf770f189a2acdc2be22c35c35cdc546f25dcfa8052a7696a5083250283713b687f1b0e17bd616740e4dd026168fcc433557c8261f54dd23fb +binfiles arch=x86_64-linux size=40 + bin/x86_64-linux/chkdvifont + bin/x86_64-linux/dvispc + +name dviout-util.x86_64-linuxmusl +category Package +revision 50176 +shortdesc x86_64-linuxmusl files of dviout-util +containersize 76544 +containerchecksum d7d930871b86944279142545310d83a58531a3f4d53bfc3affeffc29f9998d3c77cd6d9333d3a92787f2e99cd2e25cc7d7a5176f68a7fd5fab6fd512180ad216 +binfiles arch=x86_64-linuxmusl size=45 + bin/x86_64-linuxmusl/chkdvifont + bin/x86_64-linuxmusl/dvispc + +name dviout-util.x86_64-solaris +category Package +revision 50150 +shortdesc x86_64-solaris files of dviout-util +containersize 76600 +containerchecksum d2d84480637e6ea8929241bdb7ddc4ea8d2ceb70d369f03d6303b52a14c556ce5e7e2823c88395d4f739fc1aa10478355d3001b4934056877b0ff6869504cdf3 +binfiles arch=x86_64-solaris size=44 + bin/x86_64-solaris/chkdvifont + bin/x86_64-solaris/dvispc + +name dviout.win32 +category TLCore +revision 31539 +catalogue dviout +shortdesc TeX previewer and printer driver for MS-Windows +longdesc The program supports a variety of printing mechanisms +longdesc (including PDF output via dvipdfmx), and can use most extant +longdesc font formats (including the long-outdated TeX PXL format). The +longdesc program will use output from Omega as well as from TeX, and +longdesc understands a wide variety of \special commands. +postaction shortcut type=menu name="DVIOUT DVI viewer" cmd=TEXDIR/bin/win32/dviout.exe +postaction filetype name=TL.DVIOUT.view cmd='"TEXDIR/bin/win32/dviout.exe" "%1"' +postaction fileassoc extension=.dvi filetype=TL.DVIOUT.view +containersize 2235328 +containerchecksum ad86fc73acfbed287399efa1e0571a9975f04d02c01240618263b0a09c3be13bd7ce4c0b2343ea293287bd9064e3afaf6a8d2d6791c9f2088ff4704b5d39b0f6 +binfiles arch=win32 size=1201 + bin/win32/dviout.exe + tlpkg/dviout/00readme.txt + tlpkg/dviout/CFG/newcfg.txt + tlpkg/dviout/CFG/prtcfg.zip + tlpkg/dviout/CFG/prtsrc.zip + tlpkg/dviout/CreateBB.exe + tlpkg/dviout/DOC/bpage.bmp + tlpkg/dviout/DOC/cmode.html + tlpkg/dviout/DOC/cmode1.png + tlpkg/dviout/DOC/cmode2.png + tlpkg/dviout/DOC/cmode3.png + tlpkg/dviout/DOC/cmode6.png + tlpkg/dviout/DOC/dvi.html + tlpkg/dviout/DOC/dvi2.bmp + tlpkg/dviout/DOC/dvioutQA.html + tlpkg/dviout/DOC/dviouttips.html + tlpkg/dviout/DOC/dviouttipse.html + tlpkg/dviout/DOC/fpage.bmp + tlpkg/dviout/DOC/hung.png + tlpkg/dviout/DOC/hyper.bmp + tlpkg/dviout/DOC/kappa.bmp + tlpkg/dviout/DOC/le.bmp + tlpkg/dviout/DOC/lminus.bmp + tlpkg/dviout/DOC/lplus.bmp + tlpkg/dviout/DOC/mspmin.png + tlpkg/dviout/DOC/newmin.png + tlpkg/dviout/DOC/niko.bmp + tlpkg/dviout/DOC/option.bmp + tlpkg/dviout/DOC/present.html + tlpkg/dviout/DOC/print.bmp + tlpkg/dviout/DOC/search.bmp + tlpkg/dviout/DOC/serd.bmp + tlpkg/dviout/DOC/seru.bmp + tlpkg/dviout/DOC/testtex.bat + tlpkg/dviout/DOC/tex_dvioutw.html + tlpkg/dviout/DOC/tex_instchk.html + tlpkg/dviout/FONT/ReadMe.txt + tlpkg/dviout/FONT/exjfonts.zip + tlpkg/dviout/FONT/winttf.zip + tlpkg/dviout/GRAPHIC/COLOR/color.tex + tlpkg/dviout/GRAPHIC/LATEX2E/color.cfg + tlpkg/dviout/GRAPHIC/LATEX2E/dviout.def + tlpkg/dviout/GRAPHIC/LATEX2E/dviout.dtx + tlpkg/dviout/GRAPHIC/LATEX2E/dviout.ins + tlpkg/dviout/GRAPHIC/LATEX2E/graphics.cfg + tlpkg/dviout/GRAPHIC/LATEX2E/readme + tlpkg/dviout/GRAPHIC/LATEX2E/readme.eng + tlpkg/dviout/GRAPHIC/PBM/pbmf.doc + tlpkg/dviout/GRAPHIC/PBM/pbmf.sty + tlpkg/dviout/GRAPHIC/PDL/file241b.p98 + tlpkg/dviout/GRAPHIC/PDL/lasersys.lp3 + tlpkg/dviout/GRAPHIC/PDL/lasersys.tex + tlpkg/dviout/GRAPHIC/PDL/lips3.gpd + tlpkg/dviout/GRAPHIC/PDL/pdldoc.tex + tlpkg/dviout/GRAPHIC/PDL/picbox.tex + tlpkg/dviout/GRAPHIC/PDL/spec.lp3 + tlpkg/dviout/GRAPHIC/PDL/spec.tex + tlpkg/dviout/GRAPHIC/PS/epsfdoc.tex + tlpkg/dviout/GRAPHIC/PS/gssub.exe + tlpkg/dviout/GRAPHIC/PS/pssample.tex + tlpkg/dviout/GRAPHIC/PS/sample0.ps + tlpkg/dviout/GRAPHIC/PS/sample1.ps + tlpkg/dviout/GRAPHIC/PS/sample2.ps + tlpkg/dviout/GRAPHIC/PS/sample3.ps + tlpkg/dviout/GRAPHIC/PS/starbrst.ps + tlpkg/dviout/GRAPHIC/TPIC/linetest.tex + tlpkg/dviout/GRAPHIC/TPIC/rtexampl.tex + tlpkg/dviout/GRAPHIC/TPIC/tpic_ext.doc + tlpkg/dviout/GRAPHIC/TPIC/tpicdoc.tex + tlpkg/dviout/GRAPHIC/bmc/bmc.txt + tlpkg/dviout/GRAPHIC/bmc/createbb.pdf + tlpkg/dviout/GRAPHIC/bmc/exbmc.xpi + tlpkg/dviout/GRAPHIC/bmc/ifbmc.spi + tlpkg/dviout/GRAPHIC/bmc/ifbmc.txt + tlpkg/dviout/HYPERTEX/hyper2.tex + tlpkg/dviout/HYPERTEX/hyperdvi.tex + tlpkg/dviout/HYPERTEX/input.tex + tlpkg/dviout/HYPERTEX/input7.tex + tlpkg/dviout/HYPERTEX/input8.tex + tlpkg/dviout/HYPERTEX/input9.tex + tlpkg/dviout/HYPERTEX/inputxy.tex + tlpkg/dviout/HYPERTEX/keyin.sty + tlpkg/dviout/HYPERTEX/myhyper.sty + tlpkg/dviout/PTEX/naochan!.tex + tlpkg/dviout/SAMPLE/sample.tex + tlpkg/dviout/SAMPLE/sample.txt + tlpkg/dviout/SAMPLE/slisamp2.tex + tlpkg/dviout/SAMPLE/slisamp3.tex + tlpkg/dviout/SAMPLE/slisamp4.tex + tlpkg/dviout/SAMPLE/slisampl.tex + tlpkg/dviout/SPECIAL/demo.tex + tlpkg/dviout/SPECIAL/dviout.sty + tlpkg/dviout/SPECIAL/ophook.sty + tlpkg/dviout/SPECIAL/presen.sty + tlpkg/dviout/SPECIAL/presen.txt + tlpkg/dviout/SPECIAL/src.mac + tlpkg/dviout/SPECIAL/srcspecial.mac + tlpkg/dviout/SPECIAL/srctex.cfg + tlpkg/dviout/UTILITY/dvi$pdf.bat + tlpkg/dviout/UTILITY/dviout0.par + tlpkg/dviout/UTILITY/dviout0.vfn + tlpkg/dviout/UTILITY/dviout1.vfn + tlpkg/dviout/UTILITY/dvioute.vfn + tlpkg/dviout/UTILITY/null.vfn + tlpkg/dviout/UTILITY/template + tlpkg/dviout/UTILITY/template.pk0 + tlpkg/dviout/UTILITY/template.pks + tlpkg/dviout/UTILITY/test_a4.tex + tlpkg/dviout/UTILITY/test_b5.tex + tlpkg/dviout/UTILITY/test_b5e.tex + tlpkg/dviout/UTILITY/test_org.tex + tlpkg/dviout/bmc.exe + tlpkg/dviout/chkfont.exe + tlpkg/dviout/chkfont.txt + tlpkg/dviout/convedit.exe + tlpkg/dviout/dviadd.exe + tlpkg/dviout/dviout.chm + tlpkg/dviout/dviout.cnt + tlpkg/dviout/dviout.exe + tlpkg/dviout/dvioute.chm + tlpkg/dviout/dvioute.cnt + tlpkg/dviout/dvispc.exe + tlpkg/dviout/dvispc.txt + tlpkg/dviout/dvispce.txt + tlpkg/dviout/etfdump.exe + tlpkg/dviout/files.txt + tlpkg/dviout/gen_pk + tlpkg/dviout/history.txt + tlpkg/dviout/install.par + tlpkg/dviout/install.txt + tlpkg/dviout/map/gtfonts.map + tlpkg/dviout/map/japanese.map + tlpkg/dviout/map/mojikyo.map + tlpkg/dviout/map/morisawa.map + tlpkg/dviout/map/pttfonts.map + tlpkg/dviout/map/ttfexp.map + tlpkg/dviout/map/ttfonts.map + tlpkg/dviout/optcfg.exe + tlpkg/dviout/par/DF-GyouSho.par + tlpkg/dviout/par/E-Embed.par + tlpkg/dviout/par/E-TT.par + tlpkg/dviout/par/E-noTT.par + tlpkg/dviout/par/EJ-Embed.par + tlpkg/dviout/par/HG-GyouSho.par + tlpkg/dviout/par/HG-KaiSho-PRO.par + tlpkg/dviout/par/Hidemaru.par + tlpkg/dviout/par/J-Embed.par + tlpkg/dviout/par/Macro0.par + tlpkg/dviout/par/PKfont.par + tlpkg/dviout/par/TTfont.par + tlpkg/dviout/par/WinJFont.par + tlpkg/dviout/par/WinShell.par + tlpkg/dviout/par/bakoma.par + tlpkg/dviout/par/default.par + tlpkg/dviout/par/dvicut.par + tlpkg/dviout/par/dvipdfm.par + tlpkg/dviout/par/dvipdfmr.par + tlpkg/dviout/par/dvipdfms.par + tlpkg/dviout/par/dvipdfmxv.par + tlpkg/dviout/par/dvipsk.par + tlpkg/dviout/par/dvipskdis.par + tlpkg/dviout/par/dvipskdl.par + tlpkg/dviout/par/dvipskeps.par + tlpkg/dviout/par/dvipskpdf.par + tlpkg/dviout/par/dvipskprn.par + tlpkg/dviout/par/dvispcal.par + tlpkg/dviout/par/dvispcap.par + tlpkg/dviout/par/dvispcat.par + tlpkg/dviout/par/dvispcs.par + tlpkg/dviout/par/fontpath.par + tlpkg/dviout/par/hiragino.par + tlpkg/dviout/par/jvar.par + tlpkg/dviout/par/p12wait.pgm + tlpkg/dviout/par/p24wait.pgm + tlpkg/dviout/par/p4n.pgm + tlpkg/dviout/par/p4n0.pgm + tlpkg/dviout/par/p4to1.pgm + tlpkg/dviout/par/p4to10.pgm + tlpkg/dviout/par/p4to1e.pgm + tlpkg/dviout/par/p4to1e0.pgm + tlpkg/dviout/par/p4to1o.pgm + tlpkg/dviout/par/p4to1o0.pgm + tlpkg/dviout/par/p4to1v.pgm + tlpkg/dviout/par/presen.par + tlpkg/dviout/par/quit.par + tlpkg/dviout/par/quitpresen.par + tlpkg/dviout/par/texhelp.par + tlpkg/dviout/par/wintex.par + tlpkg/dviout/propw.exe + tlpkg/dviout/propw0.txt + tlpkg/dviout/rawprt.exe + tlpkg/dviout/rawprt.txt + tlpkg/dviout/readme.txt + tlpkg/dviout/srctex.exe + tlpkg/dviout/ttindex.exe +catalogue-contact-home http://akagi.ms.u-tokyo.ac.jp/dviout-ftp.html +catalogue-ctan /dviware/dviout +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license other-free +catalogue-topics dvi-prev dvi-print omega +catalogue-version 3.18.4 name dvipdfmx category TLCore -revision 37159 -shortdesc An extended version of dvipdfm. +revision 50602 +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. +longdesc features as does pdfTeX. The current version of the package is +longdesc no longer maintained on CTAN as a separate entity; development +longdesc now takes place within the TeX Live framework, and it is no +longdesc longer available as a separate package. For download, support, +longdesc and other information, please see TeX Live. depend glyphlist -depend dvipdfmx-def depend dvipdfmx.ARCH postaction script file=tlpkg/tlpostcode/dvipdfmx.pl -runfiles size=42 - 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/fonts/map/dvipdfmx/updmap/kanjix.map - tlpkg/tlpostcode/dvipdfmx.pl -docfiles size=146 +containersize 26760 +containerchecksum eded65e852efd5caa8cad6227894b5d76b190baed17678a0a89a90ec14ad0853abe0b8bf09d2b989af05b05c47dd1167ccacfb18aacbfd70915a483152904fc0 +doccontainersize 3123584 +doccontainerchecksum 332955e7a57969de8647845f0d7a36bae6bb2fe8bc431533198c7225d5bf67ea18228a2c71bc88581fc3e72fcaef366002ea58b4ab54f3f8591ff7a3d4888f1a +docfiles size=992 texmf-dist/doc/dvipdfm/Makefile texmf-dist/doc/dvipdfm/dvipdfm.pdf texmf-dist/doc/dvipdfm/dvipdfm.tex @@ -51099,8 +86385,15 @@ docfiles size=146 texmf-dist/doc/dvipdfm/transistor.eps texmf-dist/doc/dvipdfm/transistor.fig texmf-dist/doc/dvipdfm/transistor.pdf + texmf-dist/doc/dvipdfmx/README details="Readme" texmf-dist/doc/dvipdfmx/dvipdfmx-special.pdf texmf-dist/doc/dvipdfmx/dvipdfmx-special.tex + texmf-dist/doc/dvipdfmx/dvipdfmx.pdf details="Documentation" + texmf-dist/doc/dvipdfmx/dvipdfmx.tex + texmf-dist/doc/dvipdfmx/fdl-1.3.txt + texmf-dist/doc/dvipdfmx/tug2003-slides-src.zip + texmf-dist/doc/dvipdfmx/tug2003-slides.pdf + texmf-dist/doc/dvipdfmx/tug2005.pdf texmf-dist/doc/man/man1/dvipdfm.1 texmf-dist/doc/man/man1/dvipdfm.man1.pdf texmf-dist/doc/man/man1/dvipdfmx.1 @@ -51113,25 +86406,251 @@ docfiles size=146 texmf-dist/doc/man/man1/extractbb.man1.pdf texmf-dist/doc/man/man1/xdvipdfmx.1 texmf-dist/doc/man/man1/xdvipdfmx.man1.pdf -catalogue-ctan /dviware/dvipdfmx/dvipdfmx.tar.gz -catalogue-date 2013-09-22 09:06:20 +0200 +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-alias xdvipdfmx +catalogue-contact-bugs http://lists.tug.org/tex-k +catalogue-contact-home http://project.ktug.or.kr/dvipdfmx/ +catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/dvipdfm-x/ +catalogue-contact-support http://lists.tug.org/tex-k +catalogue-date 2019-02-03 12:23:27 +0100 catalogue-license gpl +catalogue-topics dvi-pdf + +name dvipdfmx.aarch64-linux +category TLCore +revision 51093 +shortdesc aarch64-linux files of dvipdfmx +containersize 354556 +containerchecksum 2ef1d303f9f9bcb6cf446f27f0808198ec2452de654f0b38142533741369f362adcab3b355809c2043c03440b9e62588e7f5ce745523dd1242b0a4d7e67ae567 +binfiles arch=aarch64-linux size=233 + bin/aarch64-linux/dvipdfm + bin/aarch64-linux/dvipdfmx + bin/aarch64-linux/dvipdft + bin/aarch64-linux/ebb + bin/aarch64-linux/extractbb + bin/aarch64-linux/xdvipdfmx + +name dvipdfmx.amd64-freebsd +category TLCore +revision 51109 +shortdesc amd64-freebsd files of dvipdfmx +containersize 437680 +containerchecksum adc2a086482a6af9a0fa25c371594ff34135aa34090c85ed9b2448fc3859cebc652e5172a313b0e5859ac62bb8afc8d9dcf855bd12bcb8042af49116ff02e5f3 +binfiles arch=amd64-freebsd size=266 + bin/amd64-freebsd/dvipdfm + bin/amd64-freebsd/dvipdfmx + bin/amd64-freebsd/dvipdft + bin/amd64-freebsd/ebb + bin/amd64-freebsd/extractbb + bin/amd64-freebsd/xdvipdfmx + +name dvipdfmx.amd64-netbsd +category TLCore +revision 51082 +shortdesc amd64-netbsd files of dvipdfmx +containersize 367324 +containerchecksum 0cb925b1b7cbae40693a304d4e259fefbba6e5052a4e8a9635b28f9598797fdff2b4975e6bff7e0de331c9a07d6d0dfd8de7670ee4ae2e74b85b0a81879d5486 +binfiles arch=amd64-netbsd size=322 + bin/amd64-netbsd/dvipdfm + bin/amd64-netbsd/dvipdfmx + bin/amd64-netbsd/dvipdft + bin/amd64-netbsd/ebb + bin/amd64-netbsd/extractbb + bin/amd64-netbsd/xdvipdfmx + +name dvipdfmx.armhf-linux +category TLCore +revision 51129 +shortdesc armhf-linux files of dvipdfmx +containersize 341900 +containerchecksum d5a509da9f6745514ef32f1d4b53af0fe5386b89745f631bf8e5ef401de2cc5e027c82927cb7d96882922940f5b46f4ab04f140d39f57f269cfad4bc37cc6f80 +binfiles arch=armhf-linux size=208 + bin/armhf-linux/dvipdfm + bin/armhf-linux/dvipdfmx + bin/armhf-linux/dvipdft + bin/armhf-linux/ebb + bin/armhf-linux/extractbb + bin/armhf-linux/xdvipdfmx + +name dvipdfmx.i386-cygwin +category TLCore +revision 51097 +shortdesc i386-cygwin files of dvipdfmx +containersize 379336 +containerchecksum 7a482bcc9c76326607f1f77d7b865de2c5d7feb791970e4efe3d8cc537188a7d6e88c602175c160f14f2953bf9b6e784f8bac773bac753ad932f6d6c9990ee4d +binfiles arch=i386-cygwin size=233 + bin/i386-cygwin/dvipdfm + bin/i386-cygwin/dvipdfmx + bin/i386-cygwin/dvipdft + bin/i386-cygwin/ebb + bin/i386-cygwin/extractbb + bin/i386-cygwin/xdvipdfmx.exe + +name dvipdfmx.i386-freebsd +category TLCore +revision 51109 +shortdesc i386-freebsd files of dvipdfmx +containersize 377916 +containerchecksum de1c24f556bb3261c2cf5a78361d2dddc644a3f409314c7a01d761a8e0d015c6856e348388b9f0f3cb8ffa712774b4c0042d4c31a45595693e8e30586fa5720d +binfiles arch=i386-freebsd size=234 + bin/i386-freebsd/dvipdfm + bin/i386-freebsd/dvipdfmx + bin/i386-freebsd/dvipdft + bin/i386-freebsd/ebb + bin/i386-freebsd/extractbb + bin/i386-freebsd/xdvipdfmx name dvipdfmx.i386-linux category TLCore -revision 37207 +revision 51093 shortdesc i386-linux files of dvipdfmx -binfiles arch=i386-linux size=311 +containersize 449448 +containerchecksum 7a9ad12648b186f8ba52a39f473fb3c1788a4beab8e81eddcf5325911cb7bbb21aff6718ce98372629d332fb185025ebbfaa923c4e694a3365b022e09e837ea4 +binfiles arch=i386-linux size=281 bin/i386-linux/dvipdfm bin/i386-linux/dvipdfmx bin/i386-linux/dvipdft bin/i386-linux/ebb bin/i386-linux/extractbb + bin/i386-linux/xdvipdfmx + +name dvipdfmx.i386-netbsd +category TLCore +revision 51082 +shortdesc i386-netbsd files of dvipdfmx +containersize 348668 +containerchecksum 9c9bdf34d6033319ca4a19401deaf7d43c98760203ad7b7cbd32fcb702d97266cbcffccfd0e3ca7140392dcc0ba02958ab409eca324a7a04d83d44bd0311baf6 +binfiles arch=i386-netbsd size=300 + bin/i386-netbsd/dvipdfm + bin/i386-netbsd/dvipdfmx + bin/i386-netbsd/dvipdft + bin/i386-netbsd/ebb + bin/i386-netbsd/extractbb + bin/i386-netbsd/xdvipdfmx + +name dvipdfmx.i386-solaris +category TLCore +revision 51114 +shortdesc i386-solaris files of dvipdfmx +containersize 403020 +containerchecksum 86f2d3cbab64783e24df4b5a2667c8b56f02462e0f947bd1825ca1713f633d693ee4e2e4e09f1dfdeca94e9687958c3f530a7c90a510c05857627e47e60ff480 +binfiles arch=i386-solaris size=230 + bin/i386-solaris/dvipdfm + bin/i386-solaris/dvipdfmx + bin/i386-solaris/dvipdft + bin/i386-solaris/ebb + bin/i386-solaris/extractbb + bin/i386-solaris/xdvipdfmx + +name dvipdfmx.win32 +category TLCore +revision 51046 +shortdesc win32 files of dvipdfmx +containersize 320664 +containerchecksum b4d0925d164d55f73028e9c73985f5b46a25c6db7b72afc73e1592533c65c6251139ef5b62712b823f2ff4cb10adcf90bb6c3bd9ef9304531b65e48907585a03 +binfiles arch=win32 size=226 + bin/win32/dvipdfm.exe + bin/win32/dvipdfmx.dll + bin/win32/dvipdfmx.exe + bin/win32/ebb.exe + bin/win32/extractbb.exe + bin/win32/xdvipdfmx.exe + +name dvipdfmx.x86_64-cygwin +category TLCore +revision 51097 +shortdesc x86_64-cygwin files of dvipdfmx +containersize 382060 +containerchecksum 450ae0f6baa464526cc1a5f82d82a8544e1eb8f300ff92443f340c35d01961b6ee6fff386c7c20e869c9be1da54373d83b3179a1014304cc7377932dadc73b70 +binfiles arch=x86_64-cygwin size=223 + bin/x86_64-cygwin/dvipdfm + bin/x86_64-cygwin/dvipdfmx + bin/x86_64-cygwin/dvipdft + bin/x86_64-cygwin/ebb + bin/x86_64-cygwin/extractbb + bin/x86_64-cygwin/xdvipdfmx.exe + +name dvipdfmx.x86_64-darwin +category TLCore +revision 51093 +shortdesc x86_64-darwin files of dvipdfmx +containersize 435916 +containerchecksum 4038aa135cef99384fc5d12463eeb155dcc72065a9773ea1fc1f9b267d4b20c6cc6e8c0e1567b056f3fe2b716e8e8c5f835ff302a06998ca14d7a109a076ef54 +binfiles arch=x86_64-darwin size=252 + bin/x86_64-darwin/dvipdfm + bin/x86_64-darwin/dvipdfmx + bin/x86_64-darwin/dvipdft + bin/x86_64-darwin/ebb + bin/x86_64-darwin/extractbb + bin/x86_64-darwin/xdvipdfmx + +name dvipdfmx.x86_64-darwinlegacy +category TLCore +revision 51109 +shortdesc x86_64-darwinlegacy files of dvipdfmx +containersize 397824 +containerchecksum f795784eae829de2ef31ba1dc08132ebcb428523929a58e3129b1f50066b8694fb6a15810320c0076ec0bc8e2c1d6b41ff5b859edf9cc15122533aa2decc5b6b +binfiles arch=x86_64-darwinlegacy size=231 + bin/x86_64-darwinlegacy/dvipdfm + bin/x86_64-darwinlegacy/dvipdfmx + bin/x86_64-darwinlegacy/dvipdft + bin/x86_64-darwinlegacy/ebb + bin/x86_64-darwinlegacy/extractbb + bin/x86_64-darwinlegacy/xdvipdfmx + +name dvipdfmx.x86_64-linux +category TLCore +revision 51093 +shortdesc x86_64-linux files of dvipdfmx +containersize 416776 +containerchecksum 89e7c793c3e4e7b2a07eb7fe1441fe1d3eab64b4eb8f8017a5e7cd68f153f4337c7adb68eda54e8ffb0a227f4b4c36973d6bb1b85edff2943cb13a0c1f4c7b05 +binfiles arch=x86_64-linux size=247 + bin/x86_64-linux/dvipdfm + bin/x86_64-linux/dvipdfmx + bin/x86_64-linux/dvipdft + bin/x86_64-linux/ebb + bin/x86_64-linux/extractbb + bin/x86_64-linux/xdvipdfmx + +name dvipdfmx.x86_64-linuxmusl +category TLCore +revision 51093 +shortdesc x86_64-linuxmusl files of dvipdfmx +containersize 449228 +containerchecksum 827c1e911ca85fcfb7502be25c58f9440fbe20fd1772cbe623069921eb1262a02dc91853fd9efaddd91ab8fc8c65f557f6f9ad80bf2caf06b688b47bd45bfb67 +binfiles arch=x86_64-linuxmusl size=288 + bin/x86_64-linuxmusl/dvipdfm + bin/x86_64-linuxmusl/dvipdfmx + bin/x86_64-linuxmusl/dvipdft + bin/x86_64-linuxmusl/ebb + bin/x86_64-linuxmusl/extractbb + bin/x86_64-linuxmusl/xdvipdfmx + +name dvipdfmx.x86_64-solaris +category TLCore +revision 51109 +shortdesc x86_64-solaris files of dvipdfmx +containersize 434308 +containerchecksum c7400e8e7e47ab753b269d47cedc7a3c8a7c7412f528ed1644512628a17dced6e6871f63e3eeb326f2b1a555a12f488539683b6e198cb610325d5c5d228dc6ee +binfiles arch=x86_64-solaris size=261 + bin/x86_64-solaris/dvipdfm + bin/x86_64-solaris/dvipdfmx + bin/x86_64-solaris/dvipdft + bin/x86_64-solaris/ebb + bin/x86_64-solaris/extractbb + bin/x86_64-solaris/xdvipdfmx name dvipng category TLCore -revision 37166 -shortdesc A fast DVI to PNG/GIF converter. +revision 50863 +shortdesc A fast DVI to PNG/GIF converter longdesc This program makes PNG and/or GIF graphics from DVI files as longdesc obtained from TeX and its relatives. Its benefits include: longdesc Speed. It offers very fast rendering of DVI as bitmap files, @@ -51147,107 +86666,370 @@ longdesc input file through this interface. Support for PK, VF, longdesc PostScript Type1, and TrueType fonts, colour specials, and longdesc inclusion of PostScript, PNG, JPEG or GIF images. depend dvipng.ARCH -docfiles size=107 +containersize 944 +containerchecksum 3716cc269d2f869527f6f4d5cc9ea92844c6d67e8eb56d80874540f37b89d6f8a391fb5c3fe0c194088f4ee7301396605c22d2990322ff441e1d1872a58eca78 +doccontainersize 288280 +doccontainerchecksum 752961d28935c2399badb3e31af65c76eeb5a9cddb0de44f5d9907b8800567bf9fd8019fe8c39cc335dc9a60487aacd4de196611fe1f289cd0c424fd1d6c180e +docfiles size=119 texmf-dist/doc/dvipng/dvipng.html - texmf-dist/doc/dvipng/dvipng.pdf + texmf-dist/doc/dvipng/dvipng.pdf details="Package documentation" texmf-dist/doc/info/dvipng.info texmf-dist/doc/man/man1/dvigif.1 texmf-dist/doc/man/man1/dvigif.man1.pdf texmf-dist/doc/man/man1/dvipng.1 texmf-dist/doc/man/man1/dvipng.man1.pdf +catalogue-also dvi2bitmap +catalogue-contact-repository http://savannah.nongnu.org/projects/dvipng/ catalogue-ctan /dviware/dvipng -catalogue-date 2015-03-03 18:03:00 +0100 -catalogue-license lgpl +catalogue-date 2019-01-06 07:24:08 +0100 +catalogue-license lgpl3 +catalogue-topics dvi-bit catalogue-version 1.15 +name dvipng.aarch64-linux +category TLCore +revision 50853 +shortdesc aarch64-linux files of dvipng +containersize 400776 +containerchecksum 4df19cc49f3f478754a91e1611a34c3fd6dd988c5954a0613a61b8a1fb8bd0d22555e5d4e179d61cce30a7c72158f59fe593dd37e164fd744f6e421bed8f58c3 +binfiles arch=aarch64-linux size=231 + bin/aarch64-linux/dvigif + bin/aarch64-linux/dvipng + +name dvipng.amd64-freebsd +category TLCore +revision 50853 +shortdesc amd64-freebsd files of dvipng +containersize 494392 +containerchecksum 8f521278bb09ebda1f9c9973c34a0c061ee05d6ae38bf84d12a7fddb852f0b6d3f698b39735333255b7bc32599420f711152ba776532881e20eafca06c4cf3ac +binfiles arch=amd64-freebsd size=285 + bin/amd64-freebsd/dvigif + bin/amd64-freebsd/dvipng + +name dvipng.amd64-netbsd +category TLCore +revision 50860 +shortdesc amd64-netbsd files of dvipng +containersize 409584 +containerchecksum c4268a8a6e9d8281b450ed79ff21255a22ce4789c666241963aea15b3e2983ff9aff9faadea279a620cd4aaf3924c396a1de7e4b5f0a5fc0c530446f6f79565c +binfiles arch=amd64-netbsd size=354 + bin/amd64-netbsd/dvigif + bin/amd64-netbsd/dvipng + +name dvipng.armhf-linux +category TLCore +revision 50874 +shortdesc armhf-linux files of dvipng +containersize 381204 +containerchecksum 68ffbf9769ff121894a927d4eaf367a683b02c9db5ed6247355207e9565e3818e03409a27a2970afb76217d8896868e4d40c8e459ced5198564f2901a15b5e41 +binfiles arch=armhf-linux size=215 + bin/armhf-linux/dvigif + bin/armhf-linux/dvipng + +name dvipng.i386-cygwin +category TLCore +revision 50855 +shortdesc i386-cygwin files of dvipng +containersize 425680 +containerchecksum eb2779748747b5dc2c350a21a29261e19431f5b3633bab4b631c90f83264e589006b7b5ec3b02840d6cf81cbbbbd61563b9402ce831dd86f1ee1a2edbb068e95 +binfiles arch=i386-cygwin size=240 + bin/i386-cygwin/dvigif + bin/i386-cygwin/dvipng.exe + +name dvipng.i386-freebsd +category TLCore +revision 50853 +shortdesc i386-freebsd files of dvipng +containersize 431000 +containerchecksum bea9503e0555bb391d5bf2e0dce6e9735e83dbad8100164240c823ba387da45f74ca6f60cfdcec7a32295c8376166c63220efc2e73d2dc7b76d755775b544e64 +binfiles arch=i386-freebsd size=230 + bin/i386-freebsd/dvigif + bin/i386-freebsd/dvipng + name dvipng.i386-linux category TLCore -revision 37100 +revision 50853 shortdesc i386-linux files of dvipng -binfiles arch=i386-linux size=296 +containersize 487612 +containerchecksum 43b1939647c1eae9bf0b59e056bd2585d07a0137117cc1b5e3b272b4635962ee3a420b12b695be33cdb812cd94201328d8b4974cf92afb81fc3aadc04b353feb +binfiles arch=i386-linux size=281 bin/i386-linux/dvigif bin/i386-linux/dvipng +name dvipng.i386-netbsd +category TLCore +revision 50860 +shortdesc i386-netbsd files of dvipng +containersize 376312 +containerchecksum 983748ab3091b53e9c129fd75c0814b83ec347d887989d586bbfa37023e25de8e1c30c9ce8393f040ccf76d5d953d842bd8d0383f059654e3cefb4d2585815d9 +binfiles arch=i386-netbsd size=311 + bin/i386-netbsd/dvigif + bin/i386-netbsd/dvipng + +name dvipng.i386-solaris +category TLCore +revision 50853 +shortdesc i386-solaris files of dvipng +containersize 439540 +containerchecksum 75f839fc00a69abf5725b77037c5130742268bb7356798c2bdf9fd5a254eb71a144e6172abe8788a78e7008ddf99cc33594f483e13b165192d5a7933bb872f7a +binfiles arch=i386-solaris size=228 + bin/i386-solaris/dvigif + bin/i386-solaris/dvipng + +name dvipng.win32 +category TLCore +revision 50854 +shortdesc win32 files of dvipng +containersize 389804 +containerchecksum cb181224d0b402299173d940994f8c9c618ccd18e324caa712fad101ce424854cd50ac0ff1795fcd4a958e5e2cd74e8b2fa80a656a5f6c300d329f3251cda2b5 +binfiles arch=win32 size=209 + bin/win32/dvigif.exe + bin/win32/dvipng.exe + +name dvipng.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of dvipng +containersize 426556 +containerchecksum 2a9b6ad3857df1700ac15319d57bea76068c57a00de1885c17b8debe36d02c1f6d620d960f79e1097012b27d4bebd993f3fcd1dc99275a93d0e98047d6aa590b +binfiles arch=x86_64-cygwin size=232 + bin/x86_64-cygwin/dvigif + bin/x86_64-cygwin/dvipng.exe + +name dvipng.x86_64-darwin +category TLCore +revision 50853 +shortdesc x86_64-darwin files of dvipng +containersize 492636 +containerchecksum 0b271842b6b33ddbedc1e38783dc04d804440f22160103a8f67f05817e65feb219f35db6a162f1dd951794cc02d2d51ac3dbaf3e27d77f2a8b7af5e6b904cd3d +binfiles arch=x86_64-darwin size=271 + bin/x86_64-darwin/dvigif + bin/x86_64-darwin/dvipng + +name dvipng.x86_64-darwinlegacy +category TLCore +revision 50853 +shortdesc x86_64-darwinlegacy files of dvipng +containersize 437144 +containerchecksum 15fe95c94a5ee6237dff363578b90b50ab317acd18730422734064c9a4e1ccf19dc7f0b6093c2fd6d807b89f218b8e95683f245ceff70ee4f32b2faff11eeff8 +binfiles arch=x86_64-darwinlegacy size=241 + bin/x86_64-darwinlegacy/dvigif + bin/x86_64-darwinlegacy/dvipng + +name dvipng.x86_64-linux +category TLCore +revision 50853 +shortdesc x86_64-linux files of dvipng +containersize 470984 +containerchecksum ccd0a8f544e0626f3dc5fa5d6d94cb1151e4489ec15741aa7001b0d6fa023c118d1ea3f2c70389cef4db4b2e6007ab065caaa6bf73e4a4534c182e8b12b57fe8 +binfiles arch=x86_64-linux size=263 + bin/x86_64-linux/dvigif + bin/x86_64-linux/dvipng + +name dvipng.x86_64-linuxmusl +category TLCore +revision 50853 +shortdesc x86_64-linuxmusl files of dvipng +containersize 494308 +containerchecksum 71124b0e6623d0d9bba77b0c17f669e360746c2de0885625e7208dd61389407f70c9b73db9086e90135caa68ae12f782cbd460fbed876db47727283050571f33 +binfiles arch=x86_64-linuxmusl size=295 + bin/x86_64-linuxmusl/dvigif + bin/x86_64-linuxmusl/dvipng + +name dvipng.x86_64-solaris +category TLCore +revision 50853 +shortdesc x86_64-solaris files of dvipng +containersize 480060 +containerchecksum b23db689acf9ef4f8a14b45217485853e469382e93abdb260cf21ea4716c600a3c5cdcd8884449e83ca204ca94c84aa041c0e2136e9a5d9757bcc54159e110c2 +binfiles arch=x86_64-solaris size=267 + bin/x86_64-solaris/dvigif + bin/x86_64-solaris/dvipng + name dvipos category TLCore -revision 37078 +revision 50602 +shortdesc support DVI pos: specials used by ConTeXt DVI output depend dvipos.ARCH -docfiles size=3 +containersize 296 +containerchecksum ea771c689b519ab7167a0e363af501db771e7883c0b82fe0ded3661b57fcf31b932cb268b08b7e1f2f4ea3a7f85a7bc1efca83272f7eaf163354166a0b9a5a93 +doccontainersize 28512 +doccontainerchecksum 0e4548fc7abe4aa8f54a1b1a17d4582e1cb6e9f0aecd9812a1e2337ab1aa9995b4f3c4e2417f3eed248a9d40a5ba2c314aab273fda3ff5dafda3d9ca23307b77 +docfiles size=9 texmf-dist/doc/man/man1/dvipos.1 texmf-dist/doc/man/man1/dvipos.man1.pdf +name dvipos.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of dvipos +containersize 38740 +containerchecksum ba6993d920351b690ea2158f5c2ba2084cbe83ce844310e072447d912916f918fa27b325c8c1a0ff4bc5f22ef71fff24e6e12024987019b92f01b46c759a7c54 +binfiles arch=aarch64-linux size=25 + bin/aarch64-linux/dvipos + +name dvipos.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of dvipos +containersize 47980 +containerchecksum d576fe87a16b13686f4999721e2858f78c8aef2c66c104c527b1d49a69a42105ff4b38fe7a2cd829d08376d93bcde4ac263a439eb1e9d6c1b1eaec0f9a1186e5 +binfiles arch=amd64-freebsd size=30 + bin/amd64-freebsd/dvipos + +name dvipos.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of dvipos +containersize 44136 +containerchecksum ac5f9a946e8f33a33971da3d33fb87583d62e7de0e5398d73fe02c475891a25f6d2aac98dadd864c5606f8bccf471e77d40870b3060f4ef803bbad00c9f775d5 +binfiles arch=amd64-netbsd size=37 + bin/amd64-netbsd/dvipos + +name dvipos.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of dvipos +containersize 37084 +containerchecksum 5cb251ff8aa89e9d488a426e85f294374bde5c0c2ec29d3185dd8b817e8fc263db7decc3e759fecd384de384547cedd4d6b65ba8529af8808e0c072852abd61c +binfiles arch=armhf-linux size=23 + bin/armhf-linux/dvipos + +name dvipos.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of dvipos +containersize 16244 +containerchecksum 5646cb3e6c6c49c5c077c1f6ea94835942d09aedd8e9054457483be7d303e5e8a78f5b741f9f07d2fee1634a48e355eecc753431c44670259846cd52ee3b6d6a +binfiles arch=i386-cygwin size=11 + bin/i386-cygwin/dvipos.exe + +name dvipos.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of dvipos +containersize 39972 +containerchecksum 214c2723a21c7ab4b8623784d79d3499add9ba01337ede6d5992eb0129b1f99c7309c4275d2cbebc7123082de8dc5a38512bce40145f2e9720fa6451bd6cb7cd +binfiles arch=i386-freebsd size=23 + bin/i386-freebsd/dvipos + name dvipos.i386-linux category TLCore -revision 36790 +revision 50281 shortdesc i386-linux files of dvipos -binfiles arch=i386-linux size=38 +containersize 48584 +containerchecksum f7658dd63f5febd1f4a0a235a7a2a08cd75c4db5355d2ec27b1b77e73c2af0a0e8396c106198aa8c66423f2c63d9a0195b595529e16da1bb4dea0b79028fd939 +binfiles arch=i386-linux size=31 bin/i386-linux/dvipos -name dvipsconfig -category Package -revision 13293 -shortdesc Collection of dvips PostScript headers. -relocated 1 -longdesc This is a collection of dvips PostScript header and dvips -longdesc config files. They control certain features of the printer, -longdesc including: A4, A3, usletter, simplex, duplex / long edge, -longdesc duplex / short edge, screen frequencies of images, black/white -longdesc invers, select transparency / paper for tektronix 550/560, -longdesc manual feeder, envelope feeder, and tray 1, 2 and 3, and -longdesc printing a PostScript grid underneath the page material--very -longdesc useful for measuring and eliminating paper feed errors! -runfiles size=39 - RELOC/dvips/dvipsconfig/README - RELOC/dvips/dvipsconfig/addpsctrl - RELOC/dvips/dvipsconfig/config.a3 - RELOC/dvips/dvipsconfig/config.a4 - RELOC/dvips/dvipsconfig/config.a4grid - RELOC/dvips/dvipsconfig/config.duplong - RELOC/dvips/dvipsconfig/config.dupshort - RELOC/dvips/dvipsconfig/config.envelope - RELOC/dvips/dvipsconfig/config.inv - RELOC/dvips/dvipsconfig/config.manualfeed - RELOC/dvips/dvipsconfig/config.mmgrid - RELOC/dvips/dvipsconfig/config.psgrid - RELOC/dvips/dvipsconfig/config.screen100 - RELOC/dvips/dvipsconfig/config.screen100_0 - RELOC/dvips/dvipsconfig/config.screen110 - RELOC/dvips/dvipsconfig/config.screen120 - RELOC/dvips/dvipsconfig/config.screen130 - RELOC/dvips/dvipsconfig/config.screen140 - RELOC/dvips/dvipsconfig/config.screen150 - RELOC/dvips/dvipsconfig/config.screen35 - RELOC/dvips/dvipsconfig/config.screen50 - RELOC/dvips/dvipsconfig/config.screen70 - RELOC/dvips/dvipsconfig/config.screen80 - RELOC/dvips/dvipsconfig/config.screen85 - RELOC/dvips/dvipsconfig/config.screen90 - RELOC/dvips/dvipsconfig/config.simplex - RELOC/dvips/dvipsconfig/config.tek550paper - RELOC/dvips/dvipsconfig/config.tek550transparency - RELOC/dvips/dvipsconfig/config.tray1 - RELOC/dvips/dvipsconfig/config.tray2 - RELOC/dvips/dvipsconfig/config.tray3 - RELOC/dvips/dvipsconfig/config.usledger - RELOC/dvips/dvipsconfig/config.usletter -catalogue-ctan /dviware/dvipsconfig -catalogue-date 2012-05-07 22:19:12 +0200 -catalogue-license gpl -catalogue-version 1.6 +name dvipos.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of dvipos +containersize 39452 +containerchecksum e8019026211123dbd9a8464deb3147f08cfa4a9c52b146f79e6c9d68c4185f0fefc80873ac3ae191c3ecafcec55b0b6d028d5fbc24b86ae7d7c6ae68324dfe2a +binfiles arch=i386-netbsd size=32 + bin/i386-netbsd/dvipos + +name dvipos.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of dvipos +containersize 45256 +containerchecksum d491173ec8f7ff3f9fc1871c54cb3418b5e592bcf2f1aaf8e9c29be56e6c2c5fb2bbb3d417dc4f385dff8d446600318a5774094f0cc074e8fcb3e7244828cbc1 +binfiles arch=i386-solaris size=26 + bin/i386-solaris/dvipos + +name dvipos.win32 +category TLCore +revision 50155 +shortdesc win32 files of dvipos +containersize 16832 +containerchecksum 705f996c26f15c6b6b193a96543c8d983f70c63775be9ab37540a4d259a577d771d314478edb58cc19ee23cad8bebb7fc9407a852bae3b46c6adfbadcabfef6d +binfiles arch=win32 size=9 + bin/win32/dvipos.exe + +name dvipos.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of dvipos +containersize 17772 +containerchecksum 27906c55e2de0f7d919fbe9cc323dfba3d014b31b9bbc8a1cacf2460fad8a4bab7ea852b60155f7f4eb24f43ea5163f36d7a008e7d8650eb305703f6b17ed3ac +binfiles arch=x86_64-cygwin size=11 + bin/x86_64-cygwin/dvipos.exe + +name dvipos.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of dvipos +containersize 46972 +containerchecksum fa53c180de280b4601505b5fa2d839ad7a2b7a5935e53c9a7c18fc358d450de7a35bb3d0c1edf974821e2f4b9b1b5403b9ec67ddcd221a5e02d9f81ad95dc62b +binfiles arch=x86_64-darwin size=27 + bin/x86_64-darwin/dvipos + +name dvipos.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of dvipos +containersize 45972 +containerchecksum 58cebc17ba84e9d2856e638e7077c2775a2715354a21a7380124047a54c260ef5269d5544ecf20c5ada96d158540c4d40a2a9fab7fdf04f17253e3b7014300c5 +binfiles arch=x86_64-darwinlegacy size=28 + bin/x86_64-darwinlegacy/dvipos + +name dvipos.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of dvipos +containersize 46624 +containerchecksum f854cd14614cb8b4129f5218818b9a809123c52a18fc9c092d707247cd50d82fb249ef7e939fd086684a92e6e8e121b31743c41649024dca2d1bd14642773687 +binfiles arch=x86_64-linux size=28 + bin/x86_64-linux/dvipos + +name dvipos.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of dvipos +containersize 51244 +containerchecksum c5050c4558652301f1d759459f52239a9d36b7af07dbb9d7da17690f4d8333af1b37062f23df122b7e1f75869fb8170b6fd9bd96a8ac83240a0a4fcdf4a76fbb +binfiles arch=x86_64-linuxmusl size=32 + bin/x86_64-linuxmusl/dvipos + +name dvipos.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of dvipos +containersize 50808 +containerchecksum 55b5e01d180f200eaf60a88b4074e1d1b326f951030c30faaaccda3687d5b391d0e8d6e6cda2ae6e2aa5c5b68de4b6f201c033eb01c36215779234ef340436aa +binfiles arch=x86_64-solaris size=31 + bin/x86_64-solaris/dvipos name dvips -category Package -revision 38208 +category TLCore +revision 50602 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. +longdesc distributions' package sets. Development now takes place within +longdesc the TeX Live framework, and it is no longer available as a +longdesc separate package. For download, support, and other information, +longdesc please see TeX Live. depend dvips.ARCH -runfiles size=1786 +containersize 34492 +containerchecksum ee10b8c1b67997d1c781fe2c3e5ce7826c111a2b6f4078330b566bf5525ad2a1cb2b89c4efa8d877ae1557fb319941ed09db30b229a62b6d3ff6f6a784e48df5 +doccontainersize 514068 +doccontainerchecksum fcc91e88fd3536244d878458a90d31ad3b9ec9efbc08d09d8b23f13d3887ca575e17663b2e21451abf88de389f7fc3937ce3ab49bc9e6ea94ab77c66ba179a00 +docfiles size=285 + texmf-dist/doc/dvips/NEWS + texmf-dist/doc/dvips/README details="Readme" + texmf-dist/doc/dvips/dvips.html + texmf-dist/doc/dvips/dvips.pdf details="Package documentation" + texmf-dist/doc/info/dvips.info + texmf-dist/doc/man/man1/afm2tfm.1 + texmf-dist/doc/man/man1/afm2tfm.man1.pdf + texmf-dist/doc/man/man1/dvips.1 + texmf-dist/doc/man/man1/dvips.man1.pdf +runfiles size=93 texmf-dist/dvips/base/color.pro texmf-dist/dvips/base/crop.pro - texmf-dist/dvips/base/ehandler.ps texmf-dist/dvips/base/finclude.pro texmf-dist/dvips/base/hps.pro texmf-dist/dvips/base/resolution400.ps @@ -51316,82 +87098,464 @@ runfiles size=1786 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/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/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 -docfiles size=272 - texmf-dist/doc/dvips/dvips.html - texmf-dist/doc/dvips/dvips.pdf - texmf-dist/doc/info/dvips.info - texmf-dist/doc/man/man1/afm2tfm.1 - texmf-dist/doc/man/man1/afm2tfm.man1.pdf - texmf-dist/doc/man/man1/dvips.1 - texmf-dist/doc/man/man1/dvips.man1.pdf -catalogue-date 2015-08-03 05:43:12 +0200 -catalogue-license gpl +catalogue-contact-bugs http://lists.tug.org/tex-k +catalogue-contact-home http://tug.org/dvips +catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/dvipsk/ +catalogue-contact-support http://lists.tug.org/tex-k +catalogue-date 2019-01-07 05:25:05 +0100 +catalogue-license other-free catalogue-topics dvi-print +name dvips.aarch64-linux +category TLCore +revision 50919 +shortdesc aarch64-linux files of dvips +containersize 131232 +containerchecksum bbcce9d6595e4bb46f962f117fc967a3170c0e2094b6b844a90bf59dcaccad74771ec92edbba04b8f3f9e5ddbb6c91b4d904860fdff6562b9212f11239b797ae +binfiles arch=aarch64-linux size=99 + bin/aarch64-linux/afm2tfm + bin/aarch64-linux/dvips + +name dvips.amd64-freebsd +category TLCore +revision 50905 +shortdesc amd64-freebsd files of dvips +containersize 154812 +containerchecksum 83efe7c49f2c8f63b58d16c4fc4c3e08256103deb395d26cdfe08ebe7aa87a33377ec56cbfc1db1c19b52a3c227ffbb41d9914dc1bac9538db0f886641bb079d +binfiles arch=amd64-freebsd size=106 + bin/amd64-freebsd/afm2tfm + bin/amd64-freebsd/dvips + +name dvips.amd64-netbsd +category TLCore +revision 50904 +shortdesc amd64-netbsd files of dvips +containersize 130520 +containerchecksum cc3f3208d979aec3107f3c2e7b1dfa8e9edf50b099d722712598cd916738c4eddcae0b25898185ae055c1aa821bb52ec9f79c2f0a361b03ef3806beb3ddbf8ab +binfiles arch=amd64-netbsd size=111 + bin/amd64-netbsd/afm2tfm + bin/amd64-netbsd/dvips + +name dvips.armhf-linux +category TLCore +revision 50918 +shortdesc armhf-linux files of dvips +containersize 117288 +containerchecksum 3ff641b5d6b54b9c08d1ff70f700520e8cef5745fdda4621755fbf278c4696d1d15018e4fdb8ad84319bdc95af3ea376c1ab4a0ba68bee6bb3b9b01c82d49db0 +binfiles arch=armhf-linux size=81 + bin/armhf-linux/afm2tfm + bin/armhf-linux/dvips + +name dvips.i386-cygwin +category TLCore +revision 50903 +shortdesc i386-cygwin files of dvips +containersize 96792 +containerchecksum 856c1a031ca2dbab55357de4940be1a32fc1015c2c3f7d10d40f8a4f1be7e2b97c2a654e5cd413b7dc97df839a5bf1f281ee2327cddc96abca55cdd6581326a4 +binfiles arch=i386-cygwin size=57 + bin/i386-cygwin/afm2tfm.exe + bin/i386-cygwin/dvips.exe + +name dvips.i386-freebsd +category TLCore +revision 50905 +shortdesc i386-freebsd files of dvips +containersize 129260 +containerchecksum bd2ffd7b43b6ad43c1f97828a19658d7a2175730544a3bb06b83175dffa4b9b8e2867a1b8e52b03d1c29363ad2b75e9433e09dbcaaa26b93532887c665cea463 +binfiles arch=i386-freebsd size=86 + bin/i386-freebsd/afm2tfm + bin/i386-freebsd/dvips + name dvips.i386-linux -category Package -revision 36790 +category TLCore +revision 50905 shortdesc i386-linux files of dvips -binfiles arch=i386-linux size=116 +containersize 143484 +containerchecksum c73277db0c86e8b27c18d9a6e7add3cc99d5ce478f8096648cfad10176f57855b16089ed57d2ead8fcb9a7264af8b7a50cca9188a55dff1bcb9b4de3113837d4 +binfiles arch=i386-linux size=99 bin/i386-linux/afm2tfm bin/i386-linux/dvips +name dvips.i386-netbsd +category TLCore +revision 50904 +shortdesc i386-netbsd files of dvips +containersize 115192 +containerchecksum 7271a28d4bbee3d4e49ff90fbe5e1fae1913dec2d42798103d641cf5404583d14798d2b07880a79b1ec8ad139fc37a08e829b523f5d4ff4ef291961d31272e36 +binfiles arch=i386-netbsd size=101 + bin/i386-netbsd/afm2tfm + bin/i386-netbsd/dvips + +name dvips.i386-solaris +category TLCore +revision 50905 +shortdesc i386-solaris files of dvips +containersize 136636 +containerchecksum dd9de4edec9ed72b3e0ac653b1108860e31bea638abccce5aee15fe2ff466b28fdd7c0aa06fedb3fb4cae5521722e2582461d29e17d63f62ae110dcab8f67a3e +binfiles arch=i386-solaris size=87 + bin/i386-solaris/afm2tfm + bin/i386-solaris/dvips + +name dvips.win32 +category TLCore +revision 50955 +shortdesc win32 files of dvips +containersize 90924 +containerchecksum c2efbe15a83b89bed3f0db0c22f548e94f3431507c20e1826af22c705a8791d85644237b48bc1aa5c59dd493542dcbabd2fb53306e788a232484d846b388af58 +binfiles arch=win32 size=51 + bin/win32/afm2tfm.exe + bin/win32/dvips.exe + +name dvips.x86_64-cygwin +category TLCore +revision 50903 +shortdesc x86_64-cygwin files of dvips +containersize 107772 +containerchecksum b5ac2be4c782f5390d81820c2f30857d9db4736e90171b9b606384273148f6f70884527e32f5655ec11e5995765057719146a8bd862bd69a3c2d588e14633a1b +binfiles arch=x86_64-cygwin size=59 + bin/x86_64-cygwin/afm2tfm.exe + bin/x86_64-cygwin/dvips.exe + +name dvips.x86_64-darwin +category TLCore +revision 50905 +shortdesc x86_64-darwin files of dvips +containersize 151600 +containerchecksum c73f59d39b78a2eb4dc92bf8e00ff54e793c846ae0fed866eab6d10731ff1ffcc9d75b52f5c084068f205549d3f9ea807ee15faca59f12f3699ed36e104675d6 +binfiles arch=x86_64-darwin size=96 + bin/x86_64-darwin/afm2tfm + bin/x86_64-darwin/dvips + +name dvips.x86_64-darwinlegacy +category TLCore +revision 50905 +shortdesc x86_64-darwinlegacy files of dvips +containersize 140540 +containerchecksum be46ab43ca16085625b3d94e9f07cfcdee1df29cd145640f43bab0fd4e56e8c80dd0ed139c1c3af4ff627796eb28f759733f7b7ab8996a1e9d9e9f4cdb021350 +binfiles arch=x86_64-darwinlegacy size=89 + bin/x86_64-darwinlegacy/afm2tfm + bin/x86_64-darwinlegacy/dvips + +name dvips.x86_64-linux +category TLCore +revision 50905 +shortdesc x86_64-linux files of dvips +containersize 144520 +containerchecksum 11a41ca8560a51e5095c55deeb5ad7c177d22334856fefb785135b20b0df9a71c273d99849627180e39df7756ba8c162c543f162479a6305cd1f42d83e2fd402 +binfiles arch=x86_64-linux size=92 + bin/x86_64-linux/afm2tfm + bin/x86_64-linux/dvips + +name dvips.x86_64-linuxmusl +category TLCore +revision 50905 +shortdesc x86_64-linuxmusl files of dvips +containersize 153216 +containerchecksum 9770a7a0db726f448d24c73504a36ae8924ba52f072a308d60798b1ca3a5442c5f38678c4c533772b72a78bf04f80c28948d37e3ab56567c75d2d7ad53624e63 +binfiles arch=x86_64-linuxmusl size=104 + bin/x86_64-linuxmusl/afm2tfm + bin/x86_64-linuxmusl/dvips + +name dvips.x86_64-solaris +category TLCore +revision 50905 +shortdesc x86_64-solaris files of dvips +containersize 153020 +containerchecksum 874527f0bdfe52431883eca2ac1811ef0de0948c1bd1a802a26e3722640c6f28d08ad5e94c6b678d9c58b47092d60238a011b2039ab55cf8ce236cd9ac3b89f4 +binfiles arch=x86_64-solaris size=100 + bin/x86_64-solaris/afm2tfm + bin/x86_64-solaris/dvips + +name dvipsconfig +category Package +revision 13293 +shortdesc Collection of dvips PostScript headers +relocated 1 +longdesc This is a collection of dvips PostScript header and dvips +longdesc config files. They control certain features of the printer, +longdesc including: A4, A3, usletter, simplex, duplex / long edge, +longdesc duplex / short edge, screen frequencies of images, black/white +longdesc invers, select transparency / paper for tektronix 550/560, +longdesc manual feeder, envelope feeder, and tray 1, 2 and 3, and +longdesc printing a PostScript grid underneath the page material--very +longdesc useful for measuring and eliminating paper feed errors! +containersize 11640 +containerchecksum ff7ad395329dd1cc5d21d5459916d0f10a8c03399d733048bce0a8aaa4e3a955f3ad3dbb228319d4bfb96e0694069002507bc294ed81fda5a48ad93f8cd82589 +runfiles size=39 + RELOC/dvips/dvipsconfig/README + RELOC/dvips/dvipsconfig/addpsctrl + RELOC/dvips/dvipsconfig/config.a3 + RELOC/dvips/dvipsconfig/config.a4 + RELOC/dvips/dvipsconfig/config.a4grid + RELOC/dvips/dvipsconfig/config.duplong + RELOC/dvips/dvipsconfig/config.dupshort + RELOC/dvips/dvipsconfig/config.envelope + RELOC/dvips/dvipsconfig/config.inv + RELOC/dvips/dvipsconfig/config.manualfeed + RELOC/dvips/dvipsconfig/config.mmgrid + RELOC/dvips/dvipsconfig/config.psgrid + RELOC/dvips/dvipsconfig/config.screen100 + RELOC/dvips/dvipsconfig/config.screen100_0 + RELOC/dvips/dvipsconfig/config.screen110 + RELOC/dvips/dvipsconfig/config.screen120 + RELOC/dvips/dvipsconfig/config.screen130 + RELOC/dvips/dvipsconfig/config.screen140 + RELOC/dvips/dvipsconfig/config.screen150 + RELOC/dvips/dvipsconfig/config.screen35 + RELOC/dvips/dvipsconfig/config.screen50 + RELOC/dvips/dvipsconfig/config.screen70 + RELOC/dvips/dvipsconfig/config.screen80 + RELOC/dvips/dvipsconfig/config.screen85 + RELOC/dvips/dvipsconfig/config.screen90 + RELOC/dvips/dvipsconfig/config.simplex + RELOC/dvips/dvipsconfig/config.tek550paper + RELOC/dvips/dvipsconfig/config.tek550transparency + RELOC/dvips/dvipsconfig/config.tray1 + RELOC/dvips/dvipsconfig/config.tray2 + RELOC/dvips/dvipsconfig/config.tray3 + RELOC/dvips/dvipsconfig/config.usledger + RELOC/dvips/dvipsconfig/config.usletter +catalogue-ctan /dviware/dvipsconfig +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics dvi-print +catalogue-version 1.6 + name dvisvgm category TLCore -revision 37078 -shortdesc Convert DVI files to Scalable Vector Graphics format (SVG). -longdesc Dvisvgm is a command line utility that converts TeX DVI files -longdesc to the XML-based Scalable Vector Graphics (SVG) format. It -longdesc provides full font support including virtual fonts, font maps, -longdesc and sub-fonts. If necessary, dvisvgm vectorizes Metafont's -longdesc bitmap output in order to always create lossless scalable -longdesc output. The embedded SVG fonts can optionally be replaced with -longdesc graphics paths so that applications that don't support SVG -longdesc fonts are enabled to render the graphics properly. Besides many -longdesc other features, dvisvgm also supports color, emTeX, tpic, PDF -longdesc mapfile and PostScript specials. Users will need a working TeX -longdesc installation including the kpathsea library. For more detailed -longdesc information, see the project page. +revision 50602 +shortdesc Convert DVI, EPS, and PDF files to Scalable Vector Graphics format (SVG) +longdesc Dvisvgm is a command line utility that converts TeX DVI as well +longdesc as EPS and PDF files to the XML-based Scalable Vector Graphics +longdesc (SVG) format. It provides full font support including virtual +longdesc fonts, font maps, and sub-fonts. If necessary, dvisvgm +longdesc vectorizes Metafont's bitmap output in order to always create +longdesc lossless scalable output. The embedded SVG fonts can optionally +longdesc be replaced with graphics paths so that applications that do +longdesc not support SVG fonts are enabled to render the graphics +longdesc properly. Besides many other features, dvisvgm also supports +longdesc color, emTeX, tpic, papersize, PDF mapfile and PostScript +longdesc specials. Users will need a working TeX installation including +longdesc the kpathsea library. For more detailed information, see the +longdesc project page. depend dvisvgm.ARCH -docfiles size=25 +containersize 908 +containerchecksum 9497809c9788b1bec8afe64d67828b7035545eafa92fc6e3be62e9ced5a2428db6ff169d0919fd929a30872d0c70359d679d0d32b3a741dd9070bf6bc2901556 +doccontainersize 92424 +doccontainerchecksum 2e44abd6925358d1dc594296ac2c13f146b4c8bd9b5d7dfd3dce92f5bf00e88712cc0f3a0da915578d39a8e1243c84b936cd624aec424f7d1661e9a7fe2b5635 +docfiles size=37 texmf-dist/doc/man/man1/dvisvgm.1 texmf-dist/doc/man/man1/dvisvgm.man1.pdf +catalogue-contact-announce https://dvisvgm.de/News +catalogue-contact-bugs https://github.com/mgieseki/dvisvgm/issues +catalogue-contact-home https://dvisvgm.de +catalogue-contact-repository https://github.com/mgieseki/dvisvgm catalogue-ctan /dviware/dvisvgm -catalogue-date 2014-06-20 06:48:16 +0200 -catalogue-license gpl -catalogue-version 1.7 +catalogue-date 2018-11-01 12:44:23 +0100 +catalogue-license gpl3+ +catalogue-topics dvi-proc +catalogue-version 2.6.1 + +name dvisvgm.aarch64-linux +category TLCore +revision 50361 +shortdesc aarch64-linux files of dvisvgm +containersize 1605884 +containerchecksum 014912df8d937753ceba53e1e78bb620d44c624dd50eb81e7f6165cd43cdadad101aec242b5cd5d35f1bc5277b5812aa85fca4b6a45179d31c0a606c99a91eac +binfiles arch=aarch64-linux size=1500 + bin/aarch64-linux/dvisvgm + +name dvisvgm.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of dvisvgm +containersize 1527176 +containerchecksum 9403906b0b6c6e834c70dc895dc57c4f98237d2670b3a568aadcdeb12b8109786c4121d3cdeadfc6ed95bf908177314ce87a30a716d4b4e799fd1bc715a8e37c +binfiles arch=amd64-freebsd size=1265 + bin/amd64-freebsd/dvisvgm + +name dvisvgm.amd64-netbsd +category TLCore +revision 50353 +shortdesc amd64-netbsd files of dvisvgm +containersize 1632288 +containerchecksum c97f21f7f2172e2dc26615f18c768acec9b84a8b74eebc052b7ff51c98dd1a8ff0eb2e6247cddd8d2f2121878f4c2ae2f30d6f5fce71786fd10ea62f49bf0330 +binfiles arch=amd64-netbsd size=2447 + bin/amd64-netbsd/dvisvgm + +name dvisvgm.armhf-linux +category TLCore +revision 50389 +shortdesc armhf-linux files of dvisvgm +containersize 1472788 +containerchecksum 0d2211f492461c88302cf1fb568b05fac66fc4da9eb44a5d34effc01ab07db79d512dc8bf4c189396d1b74989faaaf31c671ce8e5b21b289536f1a78a7df669f +binfiles arch=armhf-linux size=1238 + bin/armhf-linux/dvisvgm + +name dvisvgm.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of dvisvgm +containersize 1625352 +containerchecksum b5650d6a7fa820feb78269836bbdfd8f53e3881b5cf34a148bdc7f663d4f0bf365cbb15285732190e8db0a434d3addfcc3708e60088e052d1175521cebcf1b98 +binfiles arch=i386-cygwin size=1373 + bin/i386-cygwin/dvisvgm.exe + +name dvisvgm.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of dvisvgm +containersize 1465752 +containerchecksum 709ebee43c5c203ed31db4d9706fe8ed20c14e3f808710e17ee40e82ebd89dcc087881635ceb225f0d9c1db1b94e906a7fc4cca8f4e03bd23e0c8c4371f961da +binfiles arch=i386-freebsd size=1152 + bin/i386-freebsd/dvisvgm name dvisvgm.i386-linux category TLCore -revision 37257 +revision 50358 shortdesc i386-linux files of dvisvgm -binfiles arch=i386-linux size=515 +containersize 1693728 +containerchecksum 7d07468d08035ba1235079e0c0f96f049b150d26dd8ae4b67b97baa75484f508007e13be882d0ba89bffbe8bb3d173d54c80a49b8cf473088ff77ff53d975f07 +binfiles arch=i386-linux size=1352 bin/i386-linux/dvisvgm +name dvisvgm.i386-netbsd +category TLCore +revision 50353 +shortdesc i386-netbsd files of dvisvgm +containersize 1601192 +containerchecksum ad237f9f3764bdf508dcd64385cbcbc1d5368b62293e2e527bcc8042c8534c76de5271dfa4b7ac079f2998282659ef835aa39ca4d6e406f429ee4ce9bdbd1050 +binfiles arch=i386-netbsd size=2272 + bin/i386-netbsd/dvisvgm + +name dvisvgm.i386-solaris +category TLCore +revision 50392 +shortdesc i386-solaris files of dvisvgm +containersize 1854432 +containerchecksum aff6f83d25ec7cfe2102b70b325e3c90d47b5c69a228a42d0813ff57b0c458f319f20107998b1088c5379bbdde693ffe7bf9aba8c74963405c50a54865b51525 +binfiles arch=i386-solaris size=1573 + bin/i386-solaris/dvisvgm + +name dvisvgm.win32 +category TLCore +revision 50327 +shortdesc win32 files of dvisvgm +containersize 1422952 +containerchecksum 2b7c109b73d204dc2f8f14770b29eb495d147b5a0ddbdfe04ac8092e1aa42e2c380113c9b0241dd6e402f5fc8e6a7da3905d0b0807a2604fcfd9dbf4cb35b804 +binfiles arch=win32 size=1656 + bin/win32/dvisvgm.exe + +name dvisvgm.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of dvisvgm +containersize 1644752 +containerchecksum 4fe6ab69e4d61055ff2acd9c0863d845c4fb5d811f6280b31497dbd32aac94d2bc1e991bc44b1395e47e0920dbd594b54376e86e717ff9d0f86e0d36fc0169a2 +binfiles arch=x86_64-cygwin size=1377 + bin/x86_64-cygwin/dvisvgm.exe + +name dvisvgm.x86_64-darwin +category TLCore +revision 50360 +shortdesc x86_64-darwin files of dvisvgm +containersize 1559420 +containerchecksum 30d73d1d95c61331cb92ea20c672be648b7ab13236600c4287b13029f8c2cb87c7de3124b811cbe2acda68530fbad0d66a936377c31c8e28a32043fe32cfad2d +binfiles arch=x86_64-darwin size=1265 + bin/x86_64-darwin/dvisvgm + +name dvisvgm.x86_64-darwinlegacy +category TLCore +revision 50360 +shortdesc x86_64-darwinlegacy files of dvisvgm +containersize 1445176 +containerchecksum 6a7d6abb0ab3ad4069f86e3bd7ce1331c7f4a1f8ab34e65be6809b681f73f5abd583e987c09d7d2927b995d8e7acd76dd9aecebebc2e43159c6686ad0af19f12 +binfiles arch=x86_64-darwinlegacy size=1170 + bin/x86_64-darwinlegacy/dvisvgm + +name dvisvgm.x86_64-linux +category TLCore +revision 50358 +shortdesc x86_64-linux files of dvisvgm +containersize 1651460 +containerchecksum 16cbc91267486ec99275210f3093f2c0e074b53a82a3f4a77ec6179abdfe0932dcd5b7624d962b223d87279f10b45c255f9ab1aab1822f36f342ac69f73efe89 +binfiles arch=x86_64-linux size=1355 + bin/x86_64-linux/dvisvgm + +name dvisvgm.x86_64-linuxmusl +category TLCore +revision 50358 +shortdesc x86_64-linuxmusl files of dvisvgm +containersize 1722848 +containerchecksum a28efc35c5046075e0a4443aa0399b684ef7c8dda732fba3ee34539c03d77419d3076b6b7ec77a818b95bd2d444b521c9668a392e5e118cfe254404e7c074d13 +binfiles arch=x86_64-linuxmusl size=1514 + bin/x86_64-linuxmusl/dvisvgm + +name dvisvgm.x86_64-solaris +category TLCore +revision 50392 +shortdesc x86_64-solaris files of dvisvgm +containersize 1878672 +containerchecksum bd9ff21081c8d29ab4f5a00cfe0225ea738ac9adb0160b4283585209782fbf9de93e83947559a726315ab7dfa37b48e34fa55fc596de00a620c59dfcfd811717 +binfiles arch=x86_64-solaris size=1691 + bin/x86_64-solaris/dvisvgm + +name dynamicnumber +category Package +revision 38726 +shortdesc Dynamically typeset numbers and values in LaTeX through "symbolic links" +relocated 1 +longdesc This package dynamically typesets values generated by different +longdesc kinds of scripts in LaTeX through the use of "symbolic links" +longdesc (which are not in any way related to the "symbolic links" used +longdesc in UNIX systems!). The aim is to reduce errors resulting from +longdesc out-of-date numbers by directly setting them in the number +longdesc generating file and importing a "symbolic link" into the LaTeX +longdesc source file. It can be used to import not only numerical +longdesc values, but strings and pieces of code are also possible. +longdesc Currently only MATLAB and Python are supported to produce +longdesc Dynamic Number list files. +containersize 1500 +containerchecksum 802df3848c8ace40e1eef5c1d30c07a6a5f30fc902a9bb18581b79ff322921e7235ab05981625eb289f093f4486f0aec2e9c83bf669a9afa993a86146317b619 +doccontainersize 159240 +doccontainerchecksum 3eeb8617b33d45c1f97756f58bb87fa1244cd3089e0ed64f363f2909480459ce17e30d54bfbf948642856984618081d0fd15c0721d0190c187b375fbdfcfcebd +docfiles size=40 + RELOC/doc/latex/dynamicnumber/LICENSE.txt + RELOC/doc/latex/dynamicnumber/dynamicnumber.pdf details="Package documentation" +srccontainersize 3268 +srccontainerchecksum 8a4ed9566201af2835190f574c3316f5eff4258ef0e9b25b62b146b483c14e9fcf66abc2e1c4b3512f12969bcee1a8102ba020ea78874e0c7f3e68c0a64232ea +srcfiles size=3 + RELOC/source/latex/dynamicnumber/dynamicnumber.dtx + RELOC/source/latex/dynamicnumber/dynamicnumber.ins +runfiles size=1 + RELOC/tex/latex/dynamicnumber/dynamicnumber.sty +catalogue-contact-repository https://github.com/opieters/DynamicNumber +catalogue-ctan /macros/latex/contrib/dynamicnumber +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license mit +catalogue-topics data-import +catalogue-version 0.1.3 + name dynblocks category Package revision 35193 -shortdesc A simple way to create dynamic blocks for Beamer. +shortdesc A simple way to create dynamic blocks for Beamer relocated 1 longdesc The package provides full customisation of the aspect and longdesc dimensions of blocks inside a presentation. -runfiles size=2 - RELOC/tex/latex/dynblocks/dynblocks.sty +containersize 2084 +containerchecksum bda4ad43754e7d4fa87cc4ac5bdb772cd24a4e613bcf7993e3d448a9c884aad5ad484c6dd7739f4c6edb983560181717319dc26376a6025f3847afb588fa47a1 +doccontainersize 377732 +doccontainerchecksum 4f4084cc4dd913bcff3e71286fa4e881c7d577afd8e0669396de2ab18ccbdbc8649117bb931e365fa5999c5c842a71cab18da5573e83c1d721c87256e614c321 docfiles size=216 - RELOC/doc/latex/dynblocks/README - RELOC/doc/latex/dynblocks/dynblocks.pdf + RELOC/doc/latex/dynblocks/README details="Readme" + RELOC/doc/latex/dynblocks/dynblocks.pdf details="Package documentation" RELOC/doc/latex/dynblocks/dynblocks.tex RELOC/doc/latex/dynblocks/images/alert_1.pdf RELOC/doc/latex/dynblocks/images/alert_2.pdf @@ -51411,15 +87575,44 @@ docfiles size=216 RELOC/doc/latex/dynblocks/images/shdrndc_2.pdf RELOC/doc/latex/dynblocks/images/szeg_1.pdf RELOC/doc/latex/dynblocks/images/szeg_2.pdf +runfiles size=2 + RELOC/tex/latex/dynblocks/dynblocks.sty catalogue-ctan /macros/latex/contrib/beamer-contrib/dynblocks -catalogue-date 2014-09-18 13:59:25 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics presentation catalogue-version 0.2b +name dynkin-diagrams +category Package +revision 49808 +shortdesc Draw Dynkin, Coxeter, and Satake diagrams using TikZ +relocated 1 +longdesc Draws Dynkin, Coxeter, and Satake diagrams in LaTeX documents, +longdesc using the TikZ package. The package requires etoolbox, expl3, +longdesc pgfkeys, pgfopts, TikZ, xparse, and xstring. +containersize 16548 +containerchecksum 077268d796ca7e45df408fec24dbdeaa8d2192097f99880edefc12b7773359ef78ee243c0e479b6259c11b928908e8cbfead96b1ef0470831a65d1c58ebc4dfc +doccontainersize 752860 +doccontainerchecksum c188c4e237439e6f38e062a89428413f94951c747e3c0cd122ea3ad8b0ca4d516f545dc2c6ac5fe5221d8a6d86b8754acc1981986d0eb53498f00a3b56809cf5 +docfiles size=202 + RELOC/doc/latex/dynkin-diagrams/README details="Readme" + RELOC/doc/latex/dynkin-diagrams/dynkin-diagrams.bib + RELOC/doc/latex/dynkin-diagrams/dynkin-diagrams.pdf details="Package documentation" + RELOC/doc/latex/dynkin-diagrams/dynkin-diagrams.tex +runfiles size=30 + RELOC/tex/latex/dynkin-diagrams/dynkin-diagrams.sty +catalogue-contact-home http://euclid.ucc.ie/Mckay/ +catalogue-ctan /graphics/pgf/contrib/dynkin-diagrams +catalogue-date 2019-01-24 13:42:02 +0100 +catalogue-license lppl1.3c +catalogue-topics diagram pgf-tikz expl3 +catalogue-version 3.141592 + name dyntree category Package revision 15878 -shortdesc Construct Dynkin tree diagrams. +shortdesc Construct Dynkin tree diagrams relocated 1 longdesc The package is intended for users needing to typeset a Dynkin longdesc Tree Diagram--a group theoretical construct consisting of @@ -51427,60 +87620,264 @@ longdesc cartan coefficients in boxes connected by a series of lines. longdesc Such a diagram is a tool for working out the states and their longdesc weights in terms of the fundamental weights and the simple longdesc roots. The package makes use of the author's coollist package. -runfiles size=3 - RELOC/tex/latex/dyntree/dyntree.sty +containersize 3120 +containerchecksum 8f8d568cc708e62ae1217188acf3deef05d7bbacf1da04f38c1f5b08d4b2bd0ee465021c923ed314ed284dd2234dce5079b7918c12d3bab72ad5f91749bdfe4c +doccontainersize 127664 +doccontainerchecksum fde82bf8b97840014737734fb57eec7c37b34ca0d5eeb1a66c27dab16d4a5f1c4a7f7c10fb9c8bb98f3ef56a15645da0ab66cdcb658f69ea32eb84625b25023a docfiles size=38 - RELOC/doc/latex/dyntree/README - RELOC/doc/latex/dyntree/dyntree.pdf + RELOC/doc/latex/dyntree/README details="Readme" + RELOC/doc/latex/dyntree/dyntree.pdf details="Package documentation" +srccontainersize 8784 +srccontainerchecksum 57d76ba3ff2e85a18fad69126a87b02fecf6f994de63af530831d63a0405abbcfad5ff7b33ff0f13c257b85bea73788e72a4347337c7355a25b85c5e762c25dd srcfiles size=12 RELOC/source/latex/dyntree/dyntree.dtx RELOC/source/latex/dyntree/dyntree.ins +runfiles size=3 + RELOC/tex/latex/dyntree/dyntree.sty catalogue-ctan /macros/latex/contrib/dyntree -catalogue-date 2012-04-10 17:44:48 +0200 +catalogue-date 2018-10-09 06:11:35 +0200 catalogue-license lgpl +catalogue-topics tree maths catalogue-version 1.0 -name ean13isbn +name e-french category Package -revision 15878 -shortdesc Print EAN13 for ISBN. +revision 50292 +shortdesc Comprehensive LaTeX support for French-language typesetting relocated 1 -longdesc The package provides the means to typeset ISBN codes with EAN- -longdesc 13; it uses the (generic) package ean13.tex to typeset the -longdesc actual barcode. -runfiles size=1 - RELOC/tex/latex/ean13isbn/ean13isbn.sty -docfiles size=87 - RELOC/doc/latex/ean13isbn/License.txt - RELOC/doc/latex/ean13isbn/README - RELOC/doc/latex/ean13isbn/ean13isbn.pdf - RELOC/doc/latex/ean13isbn/ean13isbn.tex -catalogue-ctan /macros/latex/contrib/ean13isbn -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl +longdesc E-french is a distribution that keeps alive the work of Bernard +longdesc Gaulle (now deceased), under a free licence. It replaces the +longdesc old "full" frenchpro (the "professional" distribution) and the +longdesc light-weight frenchle packages. +containersize 50148 +containerchecksum a60602d8013a6b0510b4289f926daaa7bdbc90e39420e3c97d2e0be675a3f6cf4125ac482d8875037d6879a4fb943e681af00b0f8cbb6ff8b4024f700df36a07 +doccontainersize 2730936 +doccontainerchecksum a03b05e9db7be54d93c87d1ce03211c57ac8557dd103a940497ef93c1628b5dcf46bc50e929badd9cd5149fc36071dabe8732811c7bf7228b0214d300cfd8a52 +docfiles size=1215 + RELOC/doc/generic/e-french/Probl_Msg.pdf + RELOC/doc/generic/e-french/Probl_Msg.txt + RELOC/doc/generic/e-french/README details="Readme" language="en" + RELOC/doc/generic/e-french/README-TDS + RELOC/doc/generic/e-french/bin/linux/makefrindex + RELOC/doc/generic/e-french/bin/windows/makefrindex.cmd + RELOC/doc/generic/e-french/changements.html + RELOC/doc/generic/e-french/histoire.html + RELOC/doc/generic/e-french/install/MiniDocEf_Lnx.pdf + RELOC/doc/generic/e-french/install/MiniDocEf_Win.pdf + RELOC/doc/generic/e-french/install/MiniDocMkfr.pdf + RELOC/doc/generic/e-french/install/MiniDoc_Unx.txt + RELOC/doc/generic/e-french/install/MiniDoc_Win.txt + RELOC/doc/generic/e-french/install/Probl_Msg.pdf + RELOC/doc/generic/e-french/install/Probl_Msg.txt + RELOC/doc/generic/e-french/licence.html + RELOC/doc/generic/e-french/lisez-moi.html + RELOC/doc/generic/e-french/manuels/FrenchLe.html + RELOC/doc/generic/e-french/manuels/FrenchPro.html + RELOC/doc/generic/e-french/manuels/efrench.pdf + RELOC/doc/generic/e-french/manuels/faq.pdf details="Foire aux Questions" language="fr" + RELOC/doc/generic/e-french/manuels/french_doc.pdf details="Package documentation (full version)" + RELOC/doc/generic/e-french/manuels/frenchle.pdf details="Package documentation (lightweight version)" + RELOC/doc/generic/e-french/src/MiniDocEf_Lnx.tex + RELOC/doc/generic/e-french/src/MiniDocEf_Win.tex + RELOC/doc/generic/e-french/src/Probl_Msg.tex + RELOC/doc/generic/e-french/src/efrench.tex + RELOC/doc/generic/e-french/src/faq.tex + RELOC/doc/generic/e-french/src/frabbrevlat9.tex + RELOC/doc/generic/e-french/src/frabbrevutf8.tex + RELOC/doc/generic/e-french/src/french_doc.tex + RELOC/doc/generic/e-french/src/french_doc.txt + RELOC/doc/generic/e-french/src/frenchle.tex + RELOC/doc/generic/e-french/src/myfroptn.sty + RELOC/doc/generic/e-french/src/mymaj.sty + RELOC/doc/generic/e-french/test/README details="Readme" language="en" + RELOC/doc/generic/e-french/test/XeLaTeX/frenT1xe.pdf + RELOC/doc/generic/e-french/test/XeLaTeX/frenT1xe.tex + RELOC/doc/generic/e-french/test/XeLaTeX/french.tst + RELOC/doc/generic/e-french/test/XeLaTeX/lisez-moi.txt + RELOC/doc/generic/e-french/test/french.tst + RELOC/doc/generic/e-french/test/frenchab.tex + RELOC/doc/generic/e-french/test/frenchla.tex + RELOC/doc/generic/e-french/test/frenchlb.tex + RELOC/doc/generic/e-french/test/frenchll.tex + RELOC/doc/generic/e-french/test/frenchln.tex + RELOC/doc/generic/e-french/test/frenchlr.tex + RELOC/doc/generic/e-french/test/frenchrf.pdf + RELOC/doc/generic/e-french/test/fxench.tst + RELOC/doc/generic/e-french/test/mya4.sty + RELOC/doc/generic/e-french/test/myfigure.eps + RELOC/doc/generic/e-french/test/mygglo.ist + RELOC/doc/generic/e-french/test/mylist.sty + RELOC/doc/generic/e-french/test/mysmall.sty + RELOC/doc/generic/e-french/test/tests-formats/EC.def + RELOC/doc/generic/e-french/test/tests-formats/README details="Readme" language="en" + RELOC/doc/generic/e-french/test/tests-formats/TSIv5n4.tex + RELOC/doc/generic/e-french/test/tests-formats/TSIv5n48.tex + RELOC/doc/generic/e-french/test/tests-formats/gencoup.tex + RELOC/doc/generic/e-french/test/tests-formats/lgencoup.tex + RELOC/doc/generic/e-french/test/tests-formats/ltesthyp + RELOC/doc/generic/e-french/test/tests-formats/ltstcoup.tex + RELOC/doc/generic/e-french/test/tests-formats/testhyp + RELOC/doc/generic/e-french/test/tests-formats/tstcoup.tex + RELOC/doc/generic/e-french/test/texxetlb.tex +runfiles size=102 + RELOC/makeindex/e-french/fridx1.ist + RELOC/makeindex/e-french/fridx2.ist + RELOC/makeindex/e-french/fridx3.ist + RELOC/makeindex/e-french/fridx4.ist + RELOC/tex/generic/e-french/deutschx.mlp + RELOC/tex/generic/e-french/efrench.sty + RELOC/tex/generic/e-french/efrenchu.tex + RELOC/tex/generic/e-french/epreuve.sty + RELOC/tex/generic/e-french/fenglish.sty + RELOC/tex/generic/e-french/frabbrev-u8.tex + RELOC/tex/generic/e-french/frabbrev.tex + RELOC/tex/generic/e-french/francais.mlp + RELOC/tex/generic/e-french/french-msg.tex + RELOC/tex/generic/e-french/french.all + RELOC/tex/generic/e-french/french.cfg + RELOC/tex/generic/e-french/french.chk + RELOC/tex/generic/e-french/french.cmd + RELOC/tex/generic/e-french/french.dmy + RELOC/tex/generic/e-french/french.sty + RELOC/tex/generic/e-french/french_french-msg.tex + RELOC/tex/generic/e-french/frenchle.cfg + RELOC/tex/generic/e-french/frenchle.sty + RELOC/tex/generic/e-french/frenchpro.sty + RELOC/tex/generic/e-french/frhyphex.tex + RELOC/tex/generic/e-french/fxabbrev.tex + RELOC/tex/generic/e-french/german_french-msg.tex + RELOC/tex/generic/e-french/internat.mlp + RELOC/tex/generic/e-french/mlp-01.sty + RELOC/tex/generic/e-french/mlp-33.sty + RELOC/tex/generic/e-french/mlp-49.sty + RELOC/tex/generic/e-french/mlp-49n.sty + RELOC/tex/generic/e-french/mlp-opts.sty + RELOC/tex/generic/e-french/mlp.sty + RELOC/tex/generic/e-french/ndeutsch.mlp + RELOC/tex/generic/e-french/noesterr.mlp + RELOC/tex/generic/e-french/oesterre.mlp + RELOC/tex/generic/e-french/pmfrench.sty +catalogue-contact-home http://www.efrench.org/ +catalogue-contact-repository https://svn.tuxfamily.org/viewvc.cgi/efrench_efrenchsources/trunk/ +catalogue-ctan /language/french/e-french +catalogue-date 2019-03-08 11:23:56 +0100 +catalogue-license lppl1.3 +catalogue-topics french +catalogue-version 6.1 name ean category Package revision 20851 -shortdesc Macros for making EAN barcodes. +shortdesc Macros for making EAN barcodes relocated 1 longdesc Provides EAN-8 and EAN-13 forms. The package needs the ocr-b longdesc fonts; note that the fonts are not available under a free longdesc licence, as the macros are. +containersize 3148 +containerchecksum 8a44b134d612ad4908a3ec025b0934feb56a8a8d7c7dce91f7ff152fda91c99c0c557ecacf7b22d8e9abf8e99d28b09b21abc8658e598baf37bfbbaa885b86d4 +doccontainersize 948 +doccontainerchecksum 35c7d054236569b03082af07412f00dd08d760547433ec8da1876a83546c7432c4cdbffb617ff34b4e48b86873d699d41749bd838e12ffe32980b3d6e92865b0 +docfiles size=2 + RELOC/doc/generic/ean/README details="Readme" + RELOC/doc/generic/ean/eantest.tex runfiles size=4 RELOC/tex/generic/ean/ean13.tex RELOC/tex/generic/ean/ean8.tex -docfiles size=2 - RELOC/doc/generic/ean/README - RELOC/doc/generic/ean/eantest.tex +catalogue-also barcodes code128 catalogue-ctan /macros/generic/ean -catalogue-date 2012-04-03 18:09:05 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics barcode + +name ean13isbn +category Package +revision 15878 +shortdesc Print EAN13 for ISBN +relocated 1 +longdesc The package provides the means to typeset ISBN codes with +longdesc EAN-13; it uses the (generic) package ean13.tex to typeset the +longdesc actual barcode. +containersize 1788 +containerchecksum 39d124c59b8c35c0ce103530d30943bd0c17060981f2be4412cad2a38bdaf0a3f4332105e07248718d835169d33fc50ccaa07d462d494e3d74ab02d7de344653 +doccontainersize 313148 +doccontainerchecksum b4f5f0f2e3e8316c61129a6b9662cfb0e23aacbe58bc3e111d94ab7a51d01eaee6354395bbdb91a944a261a794362ed719fc6e515285f55ea901acc5e6653d75 +docfiles size=87 + RELOC/doc/latex/ean13isbn/License.txt + RELOC/doc/latex/ean13isbn/README details="Readme" + RELOC/doc/latex/ean13isbn/ean13isbn.pdf details="Package documentation" + RELOC/doc/latex/ean13isbn/ean13isbn.tex +runfiles size=1 + RELOC/tex/latex/ean13isbn/ean13isbn.sty +catalogue-ctan /macros/latex/contrib/ean13isbn +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics barcode + +name easy +category Package +revision 19440 +shortdesc A collection of easy-to-use macros +relocated 1 +longdesc The collection comprises: easybib, support for customising +longdesc bibliographies; easybmat, support for composing block matrices; +longdesc easyeqn, support for various aspects of equations; easymat, +longdesc support for composing matrices; easytable, support for writing +longdesc tables; easyvector, a C-like syntax for writing vectors. +containersize 12416 +containerchecksum fbc84351fe02c560ffa1c6b1713e762810123e7abee47bb31899d4baed353928350422e7d237abca758753ad306f927466919ce6b160a3820d1d5101c0b71ee9 +doccontainersize 4540 +doccontainerchecksum 27bfb9792f0c8261cd2de9bc95dc4023c69a37e12037855e31c606f0dc18d47e45f8299d385fa1dfcabaf6df298bb529e9da41f6d9d36f38f8d7fb5ef7930886 +docfiles size=11 + RELOC/doc/latex/easy/README details="Readme" + RELOC/doc/latex/easy/README.TEXLIVE + RELOC/doc/latex/easy/for-latex2html/easybib.perl + RELOC/doc/latex/easy/for-latex2html/easybmat.perl + RELOC/doc/latex/easy/for-latex2html/easyeqn.perl + RELOC/doc/latex/easy/for-latex2html/easymat.perl + RELOC/doc/latex/easy/for-latex2html/easytable.perl + RELOC/doc/latex/easy/for-latex2html/easyvector.perl + RELOC/doc/latex/easy/mydoc.sty +runfiles size=20 + RELOC/tex/latex/easy/easy.sty + RELOC/tex/latex/easy/easybib.sty + RELOC/tex/latex/easy/easybmat.sty + RELOC/tex/latex/easy/easyeqn.sty + RELOC/tex/latex/easy/easymat.sty + RELOC/tex/latex/easy/easytable.sty + RELOC/tex/latex/easy/easyvector.sty +catalogue-ctan /macros/latex/contrib/easy +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics collection +catalogue-version 0.99 + +name easy-todo +category Package +revision 32677 +shortdesc To-do notes in a document +relocated 1 +longdesc The package provides to-do notes throughout a document, and +longdesc will provide an index of things to do. +containersize 1352 +containerchecksum 88b496c1f4f56d26ac2fcc6d82e28d71bf11418368d82d3dcb193f8299672bf41d6c15938f3f6af5ac28141f2a52d132844fd178ebb9694de7f7a22fe8f13eaa +doccontainersize 140064 +doccontainerchecksum b2c49273445084f94083ed11f43492ed8ca32582fd9ffe9d12ccb7afe316b06b1924a507c5a12ab5880cae40ef4ee196c6d3e5d05f916356fdc026acc0a9acf1 +docfiles size=38 + RELOC/doc/latex/easy-todo/LICENSE + RELOC/doc/latex/easy-todo/README details="Readme" + RELOC/doc/latex/easy-todo/easy-todo.pdf details="Package documentation" + RELOC/doc/latex/easy-todo/easy-todo.tex +runfiles size=1 + RELOC/tex/latex/easy-todo/easy-todo.sty +catalogue-ctan /macros/latex/contrib/easy-todo +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license apache2 +catalogue-topics notes editorial name easyfig category Package -revision 26424 -shortdesc Simplifying the use of common figures. +revision 47193 +shortdesc Simplifying the use of common figures relocated 1 longdesc The package provides the command \Figure[...]{} to simplify the business of including an image as @@ -51490,39 +87887,85 @@ longdesc keys; the label fig: is used if none is given. longdesc If the here key is given, the figure is not 'floated', and the longdesc user is responsible for placement. The package uses the longdesc author's package adjustbox to centre an image and to simplify -longdesc further modifications. -runfiles size=2 - RELOC/tex/latex/easyfig/easyfig.sty -docfiles size=61 - RELOC/doc/latex/easyfig/README - RELOC/doc/latex/easyfig/easyfig.pdf +longdesc further modifications. As adjustbox now provides keys to turn +longdesc images or other material into floats or non-floats, including +longdesc captions, easyfig has become quite redundant. +containersize 1948 +containerchecksum 4c84122d2989fa90533ced69f6eb9d2536e6de9fbecb096412b6459bdd45225bbf48a512ffdf4fd3f8ffa8a582b47692661b3f4197fe76f911682582b038bf06 +doccontainersize 175976 +doccontainerchecksum 9544e9d4bb98f78915669d8ed7f314e1de92a0fc5c57b6163a1aa91afa7c97bc0a0726fe57fb1f3b03d981f9d9b320f211316e0d1babeb3d2900f7f49e9a2fdd +docfiles size=44 + RELOC/doc/latex/easyfig/README details="Readme" + RELOC/doc/latex/easyfig/easyfig.pdf details="Package documentation" +srccontainersize 5228 +srccontainerchecksum 56cb02838c8ba147b56fcae623f86566f9885c67bbc43ab0ff40fae18afa8c9a23674fe4923c8cf4de2b62ab268dab0fe6845fecf2af227c8cce9891e68bd626 srcfiles size=5 RELOC/source/latex/easyfig/easyfig.dtx RELOC/source/latex/easyfig/easyfig.ins +runfiles size=2 + RELOC/tex/latex/easyfig/easyfig.sty +catalogue-contact-bugs https://bitbucket.org/martin_scharrer/easyfig/issues +catalogue-contact-home https://bitbucket.org/martin_scharrer/easyfig/ +catalogue-contact-repository https://bitbucket.org/martin_scharrer/easyfig/src catalogue-ctan /macros/latex/contrib/easyfig -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-03-30 20:57:32 +0200 catalogue-license lppl1.3 -catalogue-version 1.2 +catalogue-topics float graphics-use +catalogue-version 1.2a + +name easyformat +category Package +revision 44543 +shortdesc Easily add boldface, italics and smallcaps +relocated 1 +longdesc This package allows the use of underscores and circumflexes to +longdesc begin resp. end italic, bold or SMALLCAPS formatting, as an +longdesc alternative to the standard LaTeX \textit{...}, \textbf{...} +longdesc and/or \textsc{...}. The meaning of underscore and circumflex +longdesc in mathmode remain the same. +containersize 2432 +containerchecksum f952227a7b0e579d2bf432b3a72e80a45e8adc22ddd9e7af380de54c12f04acf6c4a88dde5a8e7027d11fb820448fdbcc6a343500ae493fa20341634fc64aed5 +doccontainersize 49816 +doccontainerchecksum 99b5f56c6004b72bfc7289905d2808b5e3c743449896e2af88a7b5c23bae3c62aaf2da9bee43192c662be28372bd856dec1b78a56626d5b1eb91b5e21a759356 +docfiles size=16 + RELOC/doc/latex/easyformat/README details="Readme" + RELOC/doc/latex/easyformat/easyformat.pdf details="Package documentation" + RELOC/doc/latex/easyformat/easyformat.tex +runfiles size=2 + RELOC/tex/latex/easyformat/easyformat.sty +catalogue-contact-bugs https://github.com/ElecProg/easyformat/issues +catalogue-contact-repository https://github.com/ElecProg/easyformat +catalogue-ctan /macros/latex/contrib/easyformat +catalogue-date 2017-06-10 09:03:50 +0200 +catalogue-license gpl3+ +catalogue-topics markup +catalogue-version 1.4.0 name easylist category Package revision 32661 -shortdesc Lists using a single active character. +shortdesc Lists using a single active character relocated 1 longdesc This package allows you to create lists of numbered items (as longdesc in Wittgenstein's 'Tractatus') with a single active character longdesc as the only command. A variety of parameters are available to longdesc configure the appearance of the list; lists may be nested longdesc (effectively to unlimited depth). -runfiles size=8 - RELOC/tex/latex/easylist/easylist.sty +containersize 5868 +containerchecksum b1ddb6242b9ad2e40785602f942d4381a5d72a7d35784bbc2a1732ead1fbd9d730b580226452e9f56fda873b174c56f9b433f1193e0e3424efba4821f7b714ad +doccontainersize 607196 +doccontainerchecksum 518258b7d24763477376657e128ef3504d2c8e0f71187edf9edd34825d567f9cdcdb09d61a37d99655959d7c76edfbe550bd08ebd7760735e46fff33bddfbf0a docfiles size=163 - RELOC/doc/latex/easylist/README - RELOC/doc/latex/easylist/easylist-doc.pdf + RELOC/doc/latex/easylist/README details="Bundle readme" + RELOC/doc/latex/easylist/easylist-doc.pdf details="Package documentation" RELOC/doc/latex/easylist/easylist-doc.tex +runfiles size=8 + RELOC/tex/latex/easylist/easylist.sty +catalogue-contact-home http://paulisambert.free.fr/ catalogue-ctan /macros/latex/contrib/easylist -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl +catalogue-topics list catalogue-version 1.3 name easyreview @@ -51535,445 +87978,1335 @@ longdesc editorial process) in LaTeX. You can use the provided commands longdesc to claim attention in different ways to part of the text, or longdesc even to indicate that a text was added, needs to be removed, longdesc needs to be replaced and add comments to the text. -runfiles size=1 - RELOC/tex/latex/easyreview/easyReview.sty +containersize 1468 +containerchecksum 4efa69b2e6280333a89022f93a95c8af4d22cc9b82c4e8692291470af83696e7ed524c77cfe9d9c397c4136c0ebd8399a8ca4ab47d42b84da35bb79189ff1b6f +doccontainersize 330600 +doccontainerchecksum 4f71891df0b1dfbf32be06a427f34e5c45f73543b3acb9117487d2bffa46f5b61b74f795249cf3d806705beab710c5a7934a59a8e215c87678e778db517a0832 docfiles size=86 - RELOC/doc/latex/easyreview/README.txt - RELOC/doc/latex/easyreview/doc/easyReview.pdf + RELOC/doc/latex/easyreview/README.txt details="readme" + RELOC/doc/latex/easyreview/doc/easyReview.pdf details="Package documentation" RELOC/doc/latex/easyreview/doc/easyReview.tex +srccontainersize 2472 +srccontainerchecksum 8e4375d0711a1fd8ffb3c43a53b62e5e9b84ea90217c21a7155e514a4a42b8b34c36a0f0a839766d7e9b4eee05a6cb36ffd1da98f1c9f756d67fc8ba0acd4807 srcfiles size=3 RELOC/source/latex/easyreview/easyReview.dtx RELOC/source/latex/easyreview/easyReview.ins +runfiles size=1 + RELOC/tex/latex/easyreview/easyReview.sty +catalogue-contact-repository https://github.com/jmamatos/easyReview catalogue-ctan /macros/latex/contrib/easyreview -catalogue-date 2015-09-11 21:22:23 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl catalogue-topics notes editorial catalogue-version 1.0 -name easy -category Package -revision 19440 -shortdesc A collection of easy-to-use macros. -relocated 1 -longdesc The collection comprises: easybib, support for customising -longdesc bibliographies; easybmat, support for composing block matrices; -longdesc easyeqn, support for various aspects of equations; easymat, -longdesc support for composing matrices; easytable, support for writing -longdesc tables; easyvector, a C-like syntax for writing vectors. -runfiles size=20 - RELOC/tex/latex/easy/easy.sty - RELOC/tex/latex/easy/easybib.sty - RELOC/tex/latex/easy/easybmat.sty - RELOC/tex/latex/easy/easyeqn.sty - RELOC/tex/latex/easy/easymat.sty - RELOC/tex/latex/easy/easytable.sty - RELOC/tex/latex/easy/easyvector.sty -docfiles size=11 - RELOC/doc/latex/easy/README - RELOC/doc/latex/easy/README.TEXLIVE - RELOC/doc/latex/easy/for-latex2html/easybib.perl - RELOC/doc/latex/easy/for-latex2html/easybmat.perl - RELOC/doc/latex/easy/for-latex2html/easyeqn.perl - RELOC/doc/latex/easy/for-latex2html/easymat.perl - RELOC/doc/latex/easy/for-latex2html/easytable.perl - RELOC/doc/latex/easy/for-latex2html/easyvector.perl - RELOC/doc/latex/easy/mydoc.sty -catalogue-ctan /macros/latex/contrib/easy -catalogue-date 2014-10-16 20:18:43 +0200 -catalogue-license lppl -catalogue-version 0.99 - -name easy-todo -category Package -revision 32677 -shortdesc To-do notes in a document. -relocated 1 -longdesc The package provides to-do notes throughout a document, and -longdesc will provide an index of things to do. -runfiles size=1 - RELOC/tex/latex/easy-todo/easy-todo.sty -docfiles size=38 - RELOC/doc/latex/easy-todo/LICENSE - RELOC/doc/latex/easy-todo/README - RELOC/doc/latex/easy-todo/easy-todo.pdf - RELOC/doc/latex/easy-todo/easy-todo.tex -catalogue-ctan /macros/latex/contrib/easy-todo -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license apache2 - name ebezier category Package revision 15878 -shortdesc Device independent picture environment enhancement. +shortdesc Device independent picture environment enhancement relocated 1 longdesc Ebezier is a device independent extension for the standard longdesc picture environment. Linear, quadratic, and cubic bezier curves longdesc are supplied in connection with higher level circle drawing longdesc commands. Additionally some macros for the calculation of curve longdesc lenghts are part of this package. -runfiles size=5 - RELOC/tex/latex/ebezier/ebezier.sty +containersize 4060 +containerchecksum ccd80579b8c7e7e3500ad644f8a418bbd48ad1f2e1cb2aaa82836477553332b43092bb760c01cd7412393ee5b8bf23c055361f111467c71bd7061459781557ac +doccontainersize 288216 +doccontainerchecksum b81d28abf5c8b4a3dbed9219e6519e23fa5b94428baa8aef0ff32dd4893b24524e49cbb8ae08327a7ee59eba93cb0fa2950883d22296451c1f7949225f42b1f1 docfiles size=82 - RELOC/doc/latex/ebezier/ebezier.pdf + RELOC/doc/latex/ebezier/ebezier.pdf details="Package documentation" +srccontainersize 18192 +srccontainerchecksum ee742d7061a7891ad2b9cebabe827a408750f00ce2012bee8ae787bfd7b6d7ce8e968614d3d3f9eee72072560d47d871fc0022bac8ca8231643f85adf31218db srcfiles size=18 RELOC/source/latex/ebezier/ebezier.dtx RELOC/source/latex/ebezier/ebezier.ins +runfiles size=5 + RELOC/tex/latex/ebezier/ebezier.sty +catalogue-also pst-bezier catalogue-ctan /macros/latex/contrib/ebezier -catalogue-date 2012-06-07 15:01:30 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics graphics-curve graphics-in-tex catalogue-version 4 -name ebgaramond-maths -category Package -revision 35701 -shortdesc LaTeX support for EBGaramond fonts in mathematics -relocated 1 -longdesc This package provides some LaTeX support for the use of -longdesc EBGaramond12 in mathematics. It is based on, and requires, -longdesc ebgaramond. The package was created in response to a question -longdesc at TeX-stackexchange. and tested in the form of an answer in -longdesc the same forum. -execute addMap EBGaramond-Maths.map -runfiles size=5 - RELOC/fonts/enc/dvips/ebgaramond-maths/a_42pejf.enc - RELOC/fonts/map/dvips/ebgaramond-maths/EBGaramond-Maths.map - RELOC/fonts/tfm/public/ebgaramond-maths/EBGaramond12-Italic--oml-ebgaramond.tfm - RELOC/tex/latex/ebgaramond-maths/OMLEBGaramond-Maths.fd - RELOC/tex/latex/ebgaramond-maths/ebgaramond-maths.sty -docfiles size=52 - RELOC/doc/fonts/ebgaramond-maths/README - RELOC/doc/fonts/ebgaramond-maths/ebgaramond-maths.pdf - RELOC/doc/fonts/ebgaramond-maths/ebgaramond-maths.tex - RELOC/doc/fonts/ebgaramond-maths/manifest.txt -catalogue-ctan /fonts/ebgaramond-maths -catalogue-date 2014-11-30 06:08:41 +0100 -catalogue-license lppl1.3 -catalogue-version 1.1 - name ebgaramond category Package -revision 35662 -shortdesc LaTeX support for EBGaramond fonts. +revision 51134 +shortdesc LaTeX support for EBGaramond fonts relocated 1 longdesc EB Garamond is a revival by Georg Duffner of the 16th century longdesc fonts designed by Claude Garamond. The LaTeX support package -longdesc works for (pdf)LaTeX, xeLaTeX and luaLaTeX users; configuration +longdesc works for (pdf)LaTeX, XeLaTeX and LuaLaTeX users; configuration longdesc files for use with microtype are provided. execute addMap EBGaramond.map -runfiles size=868 - RELOC/fonts/enc/dvips/ebgaramond/ebgm_2ahwji.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_2cg6vv.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_2jdbaj.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_2qji24.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_2s43qf.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_2z5l6v.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_3rwz74.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_4bz7gr.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_4o5twj.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_6qsdbg.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_73unsq.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_73usqg.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_7qoeji.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_7vyzed.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_afjqor.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_anxopp.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_apg365.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_bm4jeu.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_cx2on6.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_dx53yq.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_e7e6uz.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_evsh4b.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_fn43k6.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_g7yatv.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_gk35hz.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_gmvmrc.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_gsqhuu.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_gzwq56.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_hbc3re.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_hjfzcx.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_i7zvqf.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_iymieh.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_j3s3oh.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_jf2v6g.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_jwyujo.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_kmvlni.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_ku4qmh.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_kzajuf.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_l5duak.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_l6jy5u.enc +containersize 11866392 +containerchecksum 62f678cc395883315756361f26abcba6027e71cfb67a42f5e2e342734dd60b329ce6fc3527cf13f15c6e29ff8b7996cbb28e35eab7bf675e22ad560f6208bcc9 +doccontainersize 510184 +doccontainerchecksum 3572018938e2d0e490ef1ace5e3811a2c6292e08c8056322232880bc0db2e6e01febc072384ffded7545c22a6d9893f1c5f2c7308a91af7dbd9a9a7257aab19c +docfiles size=142 + RELOC/doc/fonts/ebgaramond/AUTHORS.txt + RELOC/doc/fonts/ebgaramond/CONTRIBUTORS.txt + RELOC/doc/fonts/ebgaramond/EBGaramond-Initials-Glyphs.pdf + RELOC/doc/fonts/ebgaramond/EBGaramond-Regular-Glyphs.pdf + RELOC/doc/fonts/ebgaramond/OFL.txt + RELOC/doc/fonts/ebgaramond/README details="Readme" + RELOC/doc/fonts/ebgaramond/ebgaramond-samples.pdf details="Font samples" + RELOC/doc/fonts/ebgaramond/ebgaramond-samples.tex +runfiles size=6050 + RELOC/fonts/enc/dvips/ebgaramond/ebgm_23xtno.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_2xdej5.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_3e4qg2.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_4dov45.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_54ujiw.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_57ulwi.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_5tyv6c.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_5vgwa5.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_6napgq.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_7o6wgg.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_7tc6ve.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_7zbjeb.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_7zgzer.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_a23bap.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_a253pk.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_a37mnv.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_abyljl.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_ao6kf7.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_bszlvl.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_byuyni.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_c4ggco.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_c6t5bp.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_cjjoj4.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_d2h6lj.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_dmjlse.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_dto4r5.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_e3brkz.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_egoty6.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_fjpe6p.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_g63n4u.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_gf4ecr.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_h2c7fw.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_h5djnb.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_hfyizy.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_hlpoev.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_ioh3dp.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_izfhxe.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_j2crie.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_j2gtbm.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_j2xr5d.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_j4bgam.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_j66zy6.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_jedt67.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_joewos.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_jyhls2.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_kfeykp.enc RELOC/fonts/enc/dvips/ebgaramond/ebgm_liamow.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_lz6s54.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_m4xdvf.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_mqmdo5.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_mvmxzb.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_n5uvbv.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_n6g2jk.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_ny6sxo.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_o6elnt.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_q57nnl.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_qgwbgp.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_qjlp7p.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_qrhapd.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_r7l7q7.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_rcjgcc.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_suwt22.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_twdjbv.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_uroaj5.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_vhiyif.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_voynk7.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_w43j3l.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_wqntdr.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_xbjzpk.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_xfziqt.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_xkuggc.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_y3lrq6.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_yhoxvo.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_zf3ijx.enc - RELOC/fonts/enc/dvips/ebgaramond/ebgm_zu3eah.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_lvcw6s.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_m26xaf.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_mj3jkq.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_mnvma6.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_muwakt.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_mvrjgh.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_nhfy4v.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_noegxq.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_nxqm35.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_oahxim.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_ob4q4u.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_oge4ze.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_ontdi6.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_pdqo3a.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_pnjcqf.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_ptk5md.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_qckgoz.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_qip76a.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_qnljit.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_qnvfe4.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_rbkzlu.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_rs3zoq.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_s7tpqt.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_slocg6.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_sqqqn7.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_t4t3wm.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_tbwoon.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_u7qtot.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_uj47dd.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_uxrhpx.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_vqv3w3.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_wsnb7l.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_wxmaa6.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_xoskhe.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_xxcxg5.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_yjkoc2.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_ylzvsz.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_yow7vo.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_yqpahr.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_yyibz2.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_z6dm7r.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_zgunbq.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_zjrm7o.enc + RELOC/fonts/enc/dvips/ebgaramond/ebgm_zor4nh.enc RELOC/fonts/map/dvips/ebgaramond/EBGaramond.map - RELOC/fonts/opentype/public/ebgaramond/EBGaramond12-Italic.otf - RELOC/fonts/opentype/public/ebgaramond/EBGaramond12-Regular.otf - RELOC/fonts/opentype/public/ebgaramond/EBGaramondInitials.otf - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-inf-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-inf-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-inf-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-inf-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-lf-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-lf-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-lf-sc-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-lf-sc-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-lf-sc-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-lf-swash-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-lf-swash-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-lf-swash-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-lf-swash-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-lf-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-lf-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-lf-ts1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-lf-ts1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-osf-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-osf-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-osf-sc-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-osf-sc-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-osf-sc-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-osf-swash-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-osf-swash-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-osf-swash-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-osf-swash-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-osf-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-osf-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-osf-ts1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-osf-ts1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-sup-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-sup-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-sup-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-sup-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tlf-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tlf-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tlf-sc-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tlf-swash-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tlf-swash-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tlf-swash-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tlf-swash-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tlf-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tlf-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tlf-ts1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tlf-ts1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tosf-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tosf-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tosf-sc-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tosf-swash-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tosf-swash-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tosf-swash-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tosf-swash-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tosf-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tosf-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tosf-ts1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Italic-tosf-ts1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-inf-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-inf-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-inf-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-inf-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-lf-ly1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-lf-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-lf-ot1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-lf-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-lf-sc-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-lf-sc-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-lf-sc-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-lf-sc-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-lf-swash-ly1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-lf-swash-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-lf-swash-ot1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-lf-swash-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-lf-swash-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-lf-swash-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-lf-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-lf-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-lf-ts1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-lf-ts1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-osf-ly1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-osf-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-osf-ot1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-osf-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-osf-sc-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-osf-sc-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-osf-sc-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-osf-sc-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-osf-swash-ly1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-osf-swash-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-osf-swash-ot1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-osf-swash-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-osf-swash-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-osf-swash-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-osf-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-osf-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-osf-ts1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-osf-ts1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-sup-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-sup-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-sup-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-sup-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tlf-ly1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tlf-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tlf-ot1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tlf-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tlf-sc-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tlf-sc-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tlf-sc-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tlf-swash-ly1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tlf-swash-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tlf-swash-ot1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tlf-swash-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tlf-swash-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tlf-swash-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tlf-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tlf-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tlf-ts1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tlf-ts1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tosf-ly1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tosf-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tosf-ot1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tosf-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tosf-sc-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tosf-sc-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tosf-sc-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tosf-swash-ly1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tosf-swash-ly1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tosf-swash-ot1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tosf-swash-ot1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tosf-swash-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tosf-swash-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tosf-t1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tosf-t1.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tosf-ts1--base.tfm - RELOC/fonts/tfm/public/ebgaramond/EBGaramond12-Regular-tosf-ts1.tfm + RELOC/fonts/opentype/public/ebgaramond/EBGaramond-Bold.otf + RELOC/fonts/opentype/public/ebgaramond/EBGaramond-BoldItalic.otf + RELOC/fonts/opentype/public/ebgaramond/EBGaramond-ExtraBold.otf + RELOC/fonts/opentype/public/ebgaramond/EBGaramond-ExtraBoldItalic.otf + RELOC/fonts/opentype/public/ebgaramond/EBGaramond-Initials.otf + RELOC/fonts/opentype/public/ebgaramond/EBGaramond-Italic.otf + RELOC/fonts/opentype/public/ebgaramond/EBGaramond-Medium.otf + RELOC/fonts/opentype/public/ebgaramond/EBGaramond-MediumItalic.otf + RELOC/fonts/opentype/public/ebgaramond/EBGaramond-Regular.otf + RELOC/fonts/opentype/public/ebgaramond/EBGaramond-SemiBold.otf + RELOC/fonts/opentype/public/ebgaramond/EBGaramond-SemiBoldItalic.otf + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-inf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-inf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-sup-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-inf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-inf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-inf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-inf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-inf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-inf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-inf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-inf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-inf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-sup-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-inf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-inf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-inf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-inf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-inf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-lf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-osf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-sup-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-sup-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-sup-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-sup-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-inf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-inf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-inf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-inf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-inf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-inf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-sup-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-inf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-inf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-inf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-inf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-inf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-osf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-sup-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-inf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-swash-lgr.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/ebgaramond/EBGaramondInitials-tlf-lgr.tfm RELOC/fonts/tfm/public/ebgaramond/EBGaramondInitials-tlf-ly1--base.tfm RELOC/fonts/tfm/public/ebgaramond/EBGaramondInitials-tlf-ly1.tfm RELOC/fonts/tfm/public/ebgaramond/EBGaramondInitials-tlf-ot1.tfm RELOC/fonts/tfm/public/ebgaramond/EBGaramondInitials-tlf-t1--base.tfm RELOC/fonts/tfm/public/ebgaramond/EBGaramondInitials-tlf-t1.tfm RELOC/fonts/tfm/public/ebgaramond/EBGaramondInitials-tlf-ts1.tfm + RELOC/fonts/type1/public/ebgaramond/EBGaramond-Bold.pfb + RELOC/fonts/type1/public/ebgaramond/EBGaramond-BoldItalic.pfb + RELOC/fonts/type1/public/ebgaramond/EBGaramond-ExtraBold.pfb + RELOC/fonts/type1/public/ebgaramond/EBGaramond-ExtraBoldItalic.pfb + RELOC/fonts/type1/public/ebgaramond/EBGaramond-Italic.pfb + RELOC/fonts/type1/public/ebgaramond/EBGaramond-Medium.pfb + RELOC/fonts/type1/public/ebgaramond/EBGaramond-MediumItalic.pfb + RELOC/fonts/type1/public/ebgaramond/EBGaramond-Regular.pfb + RELOC/fonts/type1/public/ebgaramond/EBGaramond-SemiBold.pfb + RELOC/fonts/type1/public/ebgaramond/EBGaramond-SemiBoldItalic.pfb RELOC/fonts/type1/public/ebgaramond/EBGaramond12-Italic.pfb - RELOC/fonts/type1/public/ebgaramond/EBGaramond12-Regular.pfb RELOC/fonts/type1/public/ebgaramond/EBGaramondInitials.pfb - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-inf-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-lf-sc-ly1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-lf-sc-ot1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-lf-sc-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-lf-swash-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-lf-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-lf-ts1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-osf-sc-ly1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-osf-sc-ot1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-osf-sc-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-osf-swash-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-osf-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-osf-ts1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-sup-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-tlf-sc-ly1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-tlf-sc-ot1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-tlf-sc-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-tlf-swash-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-tlf-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-tlf-ts1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-tosf-sc-ly1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-tosf-sc-ot1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-tosf-sc-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-tosf-swash-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-tosf-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Italic-tosf-ts1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-inf-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-lf-ly1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-lf-ot1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-lf-sc-ly1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-lf-sc-ot1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-lf-sc-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-lf-swash-ly1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-lf-swash-ot1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-lf-swash-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-lf-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-lf-ts1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-osf-ly1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-osf-ot1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-osf-sc-ly1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-osf-sc-ot1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-osf-sc-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-osf-swash-ly1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-osf-swash-ot1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-osf-swash-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-osf-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-osf-ts1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-sup-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-tlf-ly1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-tlf-ot1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-tlf-sc-ly1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-tlf-sc-ot1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-tlf-sc-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-tlf-swash-ly1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-tlf-swash-ot1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-tlf-swash-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-tlf-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-tlf-ts1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-tosf-ly1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-tosf-ot1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-tosf-sc-ly1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-tosf-sc-ot1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-tosf-sc-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-tosf-swash-ly1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-tosf-swash-ot1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-tosf-swash-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-tosf-t1.vf - RELOC/fonts/vf/public/ebgaramond/EBGaramond12-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-inf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-lf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-lf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-lf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-osf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-osf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-osf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-sup-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-tlf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-tlf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-tosf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-tosf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-osf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-tosf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-inf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-lf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-lf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-lf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-lf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-osf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-osf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-osf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-osf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-sup-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-tlf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-tosf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-inf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-inf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-lf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-lf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-lf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-osf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-osf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-osf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-sup-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-tlf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-tlf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-tosf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-tosf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-inf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-lf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-lf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-lf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-lf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-lf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-lf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-osf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-osf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-osf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-osf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-osf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-osf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-sup-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-tlf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-tlf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-tlf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-tosf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-tosf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Medium-tosf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-inf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-lf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-osf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-osf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-sup-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-tosf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-inf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-lf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-lf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-lf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-osf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-osf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-osf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-sup-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-tlf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-tlf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-tosf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-tosf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-inf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-lf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-lf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-lf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-lf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-lf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-lf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-osf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-osf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-osf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-osf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-osf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-osf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-sup-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-tlf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-tlf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-tosf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-tosf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-inf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-swash-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramond-SemiBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/ebgaramond/EBGaramondInitials-tlf-lgr.vf RELOC/fonts/vf/public/ebgaramond/EBGaramondInitials-tlf-ly1.vf RELOC/fonts/vf/public/ebgaramond/EBGaramondInitials-tlf-t1.vf RELOC/fonts/vf/public/ebgaramond/EBGaramondInitials-tlf-ts1.vf + RELOC/tex/latex/ebgaramond/LGREBGaramond-Inf.fd + RELOC/tex/latex/ebgaramond/LGREBGaramond-LF.fd + RELOC/tex/latex/ebgaramond/LGREBGaramond-OsF.fd + RELOC/tex/latex/ebgaramond/LGREBGaramond-Sup.fd + RELOC/tex/latex/ebgaramond/LGREBGaramond-TLF.fd + RELOC/tex/latex/ebgaramond/LGREBGaramond-TOsF.fd + RELOC/tex/latex/ebgaramond/LGREBGaramondInitials-TLF.fd RELOC/tex/latex/ebgaramond/LY1EBGaramond-Inf.fd RELOC/tex/latex/ebgaramond/LY1EBGaramond-LF.fd RELOC/tex/latex/ebgaramond/LY1EBGaramond-OsF.fd @@ -52001,73 +89334,240 @@ runfiles size=868 RELOC/tex/latex/ebgaramond/TS1EBGaramond-TOsF.fd RELOC/tex/latex/ebgaramond/TS1EBGaramondInitials-TLF.fd RELOC/tex/latex/ebgaramond/ebgaramond.sty - RELOC/tex/latex/ebgaramond/mt-EBGaramond.cfg -docfiles size=256 - RELOC/doc/fonts/ebgaramond/COPYING - RELOC/doc/fonts/ebgaramond/Changes - RELOC/doc/fonts/ebgaramond/EBGaramond-Initials-Glyphs.pdf - RELOC/doc/fonts/ebgaramond/EBGaramond12-Italic-Glyphs.pdf - RELOC/doc/fonts/ebgaramond/EBGaramond12-Regular-Glyphs.pdf - RELOC/doc/fonts/ebgaramond/README - RELOC/doc/fonts/ebgaramond/README.xelualatex - RELOC/doc/fonts/ebgaramond/Specimen.pdf - RELOC/doc/fonts/ebgaramond/Specimen.tex - RELOC/doc/fonts/ebgaramond/samples.pdf - RELOC/doc/fonts/ebgaramond/samples.tex catalogue-ctan /fonts/ebgaramond -catalogue-date 2014-11-25 19:32:06 +0100 -catalogue-license ofl -catalogue-version 0.16 +catalogue-date 2019-05-15 08:12:45 +0200 +catalogue-license ofllppl +catalogue-topics font font-body font-proportional font-t1enc font-serif font-otf font-type1 + +name ebgaramond-maths +category Package +revision 35701 +shortdesc LaTeX support for EBGaramond fonts in mathematics +relocated 1 +longdesc This package provides some LaTeX support for the use of +longdesc EBGaramond12 in mathematics. It is based on, and requires, +longdesc ebgaramond. The package was created in response to a question +longdesc at TeX-stackexchange. and tested in the form of an answer in +longdesc the same forum. +execute addMap EBGaramond-Maths.map +containersize 3412 +containerchecksum d07aa996f6ceaa8f5a3594fdbb2986e2993a2731b96de4457b8a41b7a21eff295d66774ec0a14e74d97fd5b19816330cbdb7e2ff103b81ab9cda37d76eeb6951 +doccontainersize 196372 +doccontainerchecksum 33599ab4850abe6fa070c1bc7a819e4caf2bbcbfb673626629c34b8c0d329d2c16d1fe75592b9da1981e4524cf3b5385ca6c13d343f528ab3ef363f5caa6fe51 +docfiles size=52 + RELOC/doc/fonts/ebgaramond-maths/README details="Readme" + RELOC/doc/fonts/ebgaramond-maths/ebgaramond-maths.pdf details="Package documentation" + RELOC/doc/fonts/ebgaramond-maths/ebgaramond-maths.tex + RELOC/doc/fonts/ebgaramond-maths/manifest.txt +runfiles size=5 + RELOC/fonts/enc/dvips/ebgaramond-maths/a_42pejf.enc + RELOC/fonts/map/dvips/ebgaramond-maths/EBGaramond-Maths.map + RELOC/fonts/tfm/public/ebgaramond-maths/EBGaramond12-Italic--oml-ebgaramond.tfm + RELOC/tex/latex/ebgaramond-maths/OMLEBGaramond-Maths.fd + RELOC/tex/latex/ebgaramond-maths/ebgaramond-maths.sty +catalogue-also ebgaramond +catalogue-ctan /fonts/ebgaramond-maths +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics font font-maths font-virtual +catalogue-version 1.1 name ebong category Package revision 26313 -shortdesc Utility for writing Bengali in Rapid Roman Format. +shortdesc Utility for writing Bengali in Rapid Roman Format longdesc A tool (preprocessor) for writing your pRaa-ne-r ka-thaa in the longdesc bengali langauage. It allows one to write the text in Rapid longdesc Roman Bangla and convert it to the bangtex format by a python longdesc program. All LaTeX markups are preserved in the target file. depend ebong.ARCH -runfiles size=2 - texmf-dist/scripts/ebong/ebong.py +containersize 2620 +containerchecksum c16699e17aec0c6b8148b8ea224a3b2a0dc4fe1982e0b8dc5105f3a07075d99a07e743b55cb3ee23451a80d84e9887ca10c810c639b36a30c8ff275a27d9dcbc +doccontainersize 50100 +doccontainerchecksum 82fd3ee7c02b22bd42c38349a50fc61e78050040877f28b4f9e88f89ead962732b7e20f1999133074488b26d9609a36afc563d8e6cc5958829af22d2e3e44008 docfiles size=27 texmf-dist/doc/latex/ebong/ANNOUNCE.txt - texmf-dist/doc/latex/ebong/README + texmf-dist/doc/latex/ebong/README details="Readme" texmf-dist/doc/latex/ebong/eb.b - texmf-dist/doc/latex/ebong/eb.pdf + texmf-dist/doc/latex/ebong/eb.pdf details="Package documentation" language="bn" texmf-dist/doc/latex/ebong/eb_tex.tex +runfiles size=2 + texmf-dist/scripts/ebong/ebong.py catalogue-ctan /language/ebong -catalogue-date 2012-05-25 22:30:43 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics indic + +name ebong.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of ebong +containersize 340 +containerchecksum 35b79331cc060a53d4ecbbb3a2b33ec9a54d2efad164e67d11446f2f67a217c301eb217ffca0486ba4f20581d21e4de873ea8a8d2b8f87080447833076ae3cc0 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/ebong + +name ebong.amd64-freebsd +category Package +revision 21000 +shortdesc amd64-freebsd files of ebong +containersize 340 +containerchecksum c8e06c04bced798df28efb9f42d67e4891b3df08f5d8b8326ded92dfd1ec5ac51de8c72e5bdfc629987d1e87de1eb1698405b025c64f9229a7dcdcf9f9d69ead +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/ebong + +name ebong.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of ebong +containersize 340 +containerchecksum 187f199d34ea3f2f9c98665c82442016e83984260b1b6ebf9339fecfe19161b60bf57140e105230c4090b98f34ebf9a432e0ea6da0b5163b9566392103558131 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/ebong + +name ebong.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of ebong +containersize 340 +containerchecksum 3bb3f08766987848f819d56cfde83ee963a97b611cf0ed9e1e1f930a99b4e7c03aa73840f098d67aa3a4ae352f9f52348fa4ced4674f92756bcea22d106c5203 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/ebong + +name ebong.i386-cygwin +category Package +revision 21000 +shortdesc i386-cygwin files of ebong +containersize 336 +containerchecksum 8ee75310c5eaa478a62dde84fc841587a59b4aca81effd6aab529a9651303b93da56ddb4daad4af7440398fddc85ececbe5479e7dbf1b79fdf79a0cbed034414 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/ebong + +name ebong.i386-freebsd +category Package +revision 21000 +shortdesc i386-freebsd files of ebong +containersize 340 +containerchecksum f5ce9ca6e59dff0f3cc015e8ba14c51111eb21ca627bd5cd1318dd83d5344d9c55b852b2650c1664b774109c59466338143eafa7db075209168809be0b4da247 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/ebong name ebong.i386-linux category Package revision 21000 shortdesc i386-linux files of ebong +containersize 340 +containerchecksum 49e804753ab762c7d23add6ab7198f9c97ed2f09a6c94c664e21c72694a2049244882bdf19f57e5db501d9b4f25522985064e18e16185ec0830fd6eecc6835ef binfiles arch=i386-linux size=1 bin/i386-linux/ebong +name ebong.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of ebong +containersize 340 +containerchecksum fd028bb3c0dc585839fb7714998791d581dbd70180ded68f4ef5aa52d3f85dfc10495e2a67560ac54d4c2ef6bae87f42d8a5c4c3c978d91f5a6f56d7d2a7bde6 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/ebong + +name ebong.i386-solaris +category Package +revision 21000 +shortdesc i386-solaris files of ebong +containersize 340 +containerchecksum aea3513441c7c309c583cd3ab3de62eb7b2d84d32a23cd8eb55e47e7997feabff721b68dcaaf7ef42240a4246c5811ccd6d4aa98fad795a70bb349567f20209d +binfiles arch=i386-solaris size=1 + bin/i386-solaris/ebong + +name ebong.win32 +category Package +revision 15404 +shortdesc win32 files of ebong +containersize 680 +containerchecksum 5765870dc13145465869f91f89664b728ad48f8c55c0cc8aad0c3c35423471550f51d381da344fd729688b3c85e986f97df06bcd5e5bd4506eeeb45dac23efee +binfiles arch=win32 size=1 + bin/win32/ebong.exe + +name ebong.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of ebong +containersize 340 +containerchecksum ad685da0a7e202f2a944b2ef2fe58b1aff8c4eb1c6917066c8dc9e7e606442be274fb259ddbb97423bcefdd38c0d9ae0850abd7bf1b79c85f5fc6f7ab1538be6 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/ebong + +name ebong.x86_64-darwin +category Package +revision 21000 +shortdesc x86_64-darwin files of ebong +containersize 340 +containerchecksum 52d700e2eca48f2bc4b9b58f18708d4e3886874dac7c9be8ba23fa741ecf3fcba5d0fbdb5b5a64fd096703235b6966ea349e4dee27f533522c2956504d326db0 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/ebong + +name ebong.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of ebong +containersize 348 +containerchecksum 1a7aec1f5a5743bb24bb1f161cba13dd9fbe877e4374b1befd992865193eb57217102f7baa4a7da3dc34ccafc4ed08f83b70a9b249d47775add1af6e6f3a9145 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/ebong + +name ebong.x86_64-linux +category Package +revision 21000 +shortdesc x86_64-linux files of ebong +containersize 336 +containerchecksum 38767cc4936dd49fb22d7c8843938ab275eeb7c0c27e3a7d14a17f748bc7118f4bce5e1222ed355e09f3a2dc6cac6eb91e0371013e46c483d6ab6b98a776776c +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/ebong + +name ebong.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of ebong +containersize 344 +containerchecksum 7ce0a443b98a8a69e3bb7506be606d3761ee187ec10803f41edd35bd1b0c36467eca9f17c365446f2493633d6ac35cca25dbe3ca40049981933539b5e329b266 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/ebong + +name ebong.x86_64-solaris +category Package +revision 21000 +shortdesc x86_64-solaris files of ebong +containersize 340 +containerchecksum 0ef40dc395ede211112d15421aee4792d7230180c1f15c23496115ec2407ee25ea7481055221ed1c2c2477bc0074f37894cdbb2868bc079d4fbc0be0fec13dda +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/ebong + name ebook category Package revision 29466 -shortdesc ebook +shortdesc Helps creating an ebook by providing an ebook class relocated 1 longdesc The package defines a command \ebook that defines page layout, -longdesc fonts, and font-sizes for documents to be rendered as PDF- -longdesc ebooks on small ebook-readers. The package has been tested with -longdesc Kindle e-ink and iPad mini. +longdesc fonts, and font-sizes for documents to be rendered as +longdesc PDF-ebooks on small ebook-readers. The package has been tested +longdesc with Kindle e-ink and iPad mini. +containersize 1596 +containerchecksum 3345ec303d77965800fb78a1a6b0645c206534bdf84e5b5287d23fb273a720025ec770527d662a5a535e98fb6cb9a6d37d50569963ca24225af8d626ea7d4dfd +doccontainersize 824 +doccontainerchecksum 0aba8d5010ece8e6e3c155d05a87eea960d8ec1b4deb1cd7ba948b4106eb8e20d752d3032696bb98c1d23b1927317d3d53a79fdf0b62e9053245aa86ef6e79e5 +docfiles size=1 + RELOC/doc/latex/ebook/README details="Readme" runfiles size=1 RELOC/tex/latex/ebook/ebook.sty -docfiles size=1 - RELOC/doc/latex/ebook/README catalogue-ctan /macros/latex/contrib/ebook -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-01-07 14:32:13 +0100 catalogue-license pd +catalogue-topics geometry font-use ebook name ebproof category Package -revision 36595 -shortdesc Formal proofs in the style of sequent calculus. +revision 44392 +shortdesc Formal proofs in the style of sequent calculus relocated 1 longdesc This package provides commands to typeset proof trees in the longdesc style of sequent calculus and related systems. The commands @@ -52075,17 +89575,24 @@ longdesc allow for writing inferences with any number of premises and longdesc alignment of successive formulas on an arbitrary point. Various longdesc options allow complete control over spacing, styles of longdesc inference rules, placement of labels, etc. The package requires -longdesc pgfkeys (from the PGF/TikZ bundle) for the option system. -runfiles size=4 - RELOC/tex/latex/ebproof/ebproof.sty -docfiles size=55 - RELOC/doc/latex/ebproof/README - RELOC/doc/latex/ebproof/ebproof.pdf +longdesc expl3 and xparse. +containersize 6356 +containerchecksum 1b8ba3dc47ba03fdb14af5e98ffddab51ba4ea2c423b959ea6b88f00e7b3c837daad5f43d4963de1f6a4b2f55527a45645783b0edf62dc30118f51ed71379a9d +doccontainersize 234548 +doccontainerchecksum 33eb4e25b0083b9c3844d4786c1f483d37e7a00f716ceec92c4e5a5e57cf1c8f1a5eb474d7f3c9e98a688174a16caab170a1853a6757ebc5ce0be837811a32f6 +docfiles size=63 + RELOC/doc/latex/ebproof/README.md details="Readme" + RELOC/doc/latex/ebproof/ebproof.pdf details="Package documentation" RELOC/doc/latex/ebproof/ebproof.tex +runfiles size=6 + RELOC/tex/latex/ebproof/ebproof.sty +catalogue-also bussproofs +catalogue-contact-repository https://framagit.org/manu/ebproof catalogue-ctan /macros/latex/contrib/ebproof -catalogue-date 2015-03-22 12:33:09 +0100 +catalogue-date 2017-05-17 18:37:56 +0200 catalogue-license lppl1.3 -catalogue-version 1.1 +catalogue-topics maths proof +catalogue-version 2.0 name ebsthesis category Package @@ -52096,760 +89603,30 @@ longdesc The ebsthesis class and ebstools package facilitate the longdesc production of camera-ready manuscripts in conformance with the longdesc guidelines of Gabler Verlag and typographical rules established longdesc by the European Business School. -runfiles size=6 - RELOC/tex/latex/ebsthesis/ebsthesis.cls +containersize 6092 +containerchecksum 37df2bd7749bf91c2e2a6e27e92a9222ed9b9d499b3a9bdb63f7751008bf7a4bea20d62bd59e8672b7fbc7bf0caa1ca77ef797c42224fc4167e5212f21cafbd3 +doccontainersize 251260 +doccontainerchecksum 5c508fdf7304668a371966d1be0198d71cce4ec762aa1b5b480dc495f47dd13d88f678d8613ed266e1d8e1353811e3058c31aaa5ae9f181c34c6bcf40adf5ae9 docfiles size=67 RELOC/doc/latex/ebsthesis/README - RELOC/doc/latex/ebsthesis/ebsthesis.pdf + RELOC/doc/latex/ebsthesis/ebsthesis.pdf details="Package documentation" +srccontainersize 7240 +srccontainerchecksum 0e35721d759fac3af82d3c627c5520ed60c36a83e50f10a717db990f2bcf5a3b22a0b28cce5f3926ec0a9859d5b08124efbe24ffe9a64f9ddd15f45f3246f596 srcfiles size=8 RELOC/source/latex/ebsthesis/ebsthesis.dtx RELOC/source/latex/ebsthesis/ebsthesis.ins +runfiles size=6 + RELOC/tex/latex/ebsthesis/ebsthesis.cls catalogue-ctan /macros/latex/contrib/ebsthesis -catalogue-date 2014-09-27 23:52:31 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics dissertation class catalogue-version 1.0 -name ecclesiastic -category Package -revision 38172 -shortdesc Typesetting Ecclesiastic Latin -relocated 1 -longdesc The package modifies the way the latin option to babel operates -longdesc when typesetting Latin. The style is somewhat 'frenchified' in -longdesc respect of punctuation spacings and footnote style; shortcuts -longdesc are available in order to set accents on all vowels, including -longdesc y and the diphthongs ae and oe. -runfiles size=2 - RELOC/tex/latex/ecclesiastic/ecclesiastic.sty -docfiles size=93 - RELOC/doc/latex/ecclesiastic/README - RELOC/doc/latex/ecclesiastic/ecclesiastic.pdf - RELOC/doc/latex/ecclesiastic/manifest.txt -srcfiles size=7 - RELOC/source/latex/ecclesiastic/ecclesiastic.dtx -catalogue-ctan /macros/latex/contrib/ecclesiastic -catalogue-date 2015-08-21 17:57:17 +0200 -catalogue-license lppl1.3 -catalogue-topics multilingual-addon -catalogue-version 0.3 - -name ecc -category Package -revision 15878 -shortdesc Sources for the European Concrete fonts. -relocated 1 -longdesc The Metafont sources and TFM files of the European Concrete -longdesc Fonts. This is the T1-encoded extension of Knuth's Concrete -longdesc fonts, including also the corresponding text companion fonts. -longdesc Adobe Type 1 versions of the fonts are available as part of the -longdesc cm-super font bundle. -runfiles size=71 - RELOC/fonts/source/public/ecc/conc10pt.mf - RELOC/fonts/source/public/ecc/conc5pt.mf - RELOC/fonts/source/public/ecc/conc6pt.mf - RELOC/fonts/source/public/ecc/conc7pt.mf - RELOC/fonts/source/public/ecc/conc8pt.mf - RELOC/fonts/source/public/ecc/conc9pt.mf - RELOC/fonts/source/public/ecc/coni10pt.mf - RELOC/fonts/source/public/ecc/eocc10.mf - RELOC/fonts/source/public/ecc/eorm10.mf - RELOC/fonts/source/public/ecc/eorm5.mf - RELOC/fonts/source/public/ecc/eorm6.mf - RELOC/fonts/source/public/ecc/eorm7.mf - RELOC/fonts/source/public/ecc/eorm8.mf - RELOC/fonts/source/public/ecc/eorm9.mf - RELOC/fonts/source/public/ecc/eosl10.mf - RELOC/fonts/source/public/ecc/eosl5.mf - RELOC/fonts/source/public/ecc/eosl6.mf - RELOC/fonts/source/public/ecc/eosl7.mf - RELOC/fonts/source/public/ecc/eosl8.mf - RELOC/fonts/source/public/ecc/eosl9.mf - RELOC/fonts/source/public/ecc/eoti10.mf - RELOC/fonts/source/public/ecc/tcssdc10.mf - RELOC/fonts/source/public/ecc/torm10.mf - RELOC/fonts/source/public/ecc/torm5.mf - RELOC/fonts/source/public/ecc/torm6.mf - RELOC/fonts/source/public/ecc/torm7.mf - RELOC/fonts/source/public/ecc/torm8.mf - RELOC/fonts/source/public/ecc/torm9.mf - RELOC/fonts/source/public/ecc/tosl10.mf - RELOC/fonts/source/public/ecc/tosl5.mf - RELOC/fonts/source/public/ecc/tosl6.mf - RELOC/fonts/source/public/ecc/tosl7.mf - RELOC/fonts/source/public/ecc/tosl8.mf - RELOC/fonts/source/public/ecc/tosl9.mf - RELOC/fonts/source/public/ecc/toti10.mf - RELOC/fonts/tfm/public/ecc/eocc10.tfm - RELOC/fonts/tfm/public/ecc/eorm10.tfm - RELOC/fonts/tfm/public/ecc/eorm5.tfm - RELOC/fonts/tfm/public/ecc/eorm6.tfm - RELOC/fonts/tfm/public/ecc/eorm7.tfm - RELOC/fonts/tfm/public/ecc/eorm8.tfm - RELOC/fonts/tfm/public/ecc/eorm9.tfm - RELOC/fonts/tfm/public/ecc/eosl10.tfm - RELOC/fonts/tfm/public/ecc/eosl5.tfm - RELOC/fonts/tfm/public/ecc/eosl6.tfm - RELOC/fonts/tfm/public/ecc/eosl7.tfm - RELOC/fonts/tfm/public/ecc/eosl8.tfm - RELOC/fonts/tfm/public/ecc/eosl9.tfm - RELOC/fonts/tfm/public/ecc/eoti10.tfm - RELOC/fonts/tfm/public/ecc/tcssdc10.tfm - RELOC/fonts/tfm/public/ecc/torm10.tfm - RELOC/fonts/tfm/public/ecc/torm5.tfm - RELOC/fonts/tfm/public/ecc/torm6.tfm - RELOC/fonts/tfm/public/ecc/torm7.tfm - RELOC/fonts/tfm/public/ecc/torm8.tfm - RELOC/fonts/tfm/public/ecc/torm9.tfm - RELOC/fonts/tfm/public/ecc/tosl10.tfm - RELOC/fonts/tfm/public/ecc/tosl5.tfm - RELOC/fonts/tfm/public/ecc/tosl6.tfm - RELOC/fonts/tfm/public/ecc/tosl7.tfm - RELOC/fonts/tfm/public/ecc/tosl8.tfm - RELOC/fonts/tfm/public/ecc/tosl9.tfm - RELOC/fonts/tfm/public/ecc/toti10.tfm -docfiles size=3 - RELOC/doc/fonts/ecc/copyrite - RELOC/doc/fonts/ecc/liesmich - RELOC/doc/fonts/ecc/readme -catalogue-ctan /fonts/ecc -catalogue-date 2014-04-25 21:09:06 +0200 -catalogue-license lppl - -name ecltree -category Package -revision 15878 -shortdesc Trees using epic and eepic macros. -relocated 1 -longdesc The package recursively draws trees: each subtree is defined in -longdesc a 'bundle' environment, with a set of leaves described by -longdesc \chunk macros. A chunk may have a bundle environment inside it. -runfiles size=2 - RELOC/tex/latex/ecltree/ecltree.sty -docfiles size=12 - RELOC/doc/latex/ecltree/ecltreesample.pdf - RELOC/doc/latex/ecltree/ecltreesample.tex -catalogue-ctan /macros/latex/contrib/eclbip -catalogue-date 2012-02-10 18:22:03 +0100 -catalogue-license lppl -catalogue-version 1.1a - -name economic -category Package -revision 32639 -shortdesc BibTeX support for submitting to Economics journals. -relocated 1 -longdesc The bundle offers macros and BibTeX styles for the American -longdesc Economic Review (AER), the American Journal of Agricultural -longdesc Economics (AJAE), the Canadian Journal of Economics (CJE), the -longdesc European Review of Agricultural Economics (ERAE), the -longdesc International Economic Review (IER) and Economica. The macro -longdesc sets are based on (and require) the harvard package, and all -longdesc provide variations of author-date styles of presentation. -runfiles size=171 - RELOC/bibtex/bst/economic/aer.bst - RELOC/bibtex/bst/economic/aertt.bst - RELOC/bibtex/bst/economic/agecon.bst - RELOC/bibtex/bst/economic/ajae.bst - RELOC/bibtex/bst/economic/apecon.bst - RELOC/bibtex/bst/economic/cje.bst - RELOC/bibtex/bst/economic/ecca.bst - RELOC/bibtex/bst/economic/ecta.bst - RELOC/bibtex/bst/economic/erae.bst - RELOC/bibtex/bst/economic/ier.bst - RELOC/bibtex/bst/economic/itaxpf.bst - RELOC/bibtex/bst/economic/jae.bst - RELOC/bibtex/bst/economic/jpe.bst - RELOC/bibtex/bst/economic/jss2.bst - RELOC/bibtex/bst/economic/oega.bst - RELOC/bibtex/bst/economic/regstud.bst - RELOC/bibtex/bst/economic/tandfx.bst - RELOC/bibtex/bst/economic/worlddev.bst - RELOC/tex/latex/economic/aer.sty - RELOC/tex/latex/economic/aertt.sty - RELOC/tex/latex/economic/agecon.cls - RELOC/tex/latex/economic/ajae.cls - RELOC/tex/latex/economic/apecon.cls - RELOC/tex/latex/economic/cje.sty - RELOC/tex/latex/economic/ecca.cls - RELOC/tex/latex/economic/erae.cls - RELOC/tex/latex/economic/itaxpf.cls - RELOC/tex/latex/economic/jrurstud.cls - RELOC/tex/latex/economic/njf.cls - RELOC/tex/latex/economic/oegatb.cls - RELOC/tex/latex/economic/pocoec.cls - RELOC/tex/latex/economic/regstud.cls - RELOC/tex/latex/economic/worlddev.cls -docfiles size=268 - RELOC/doc/bibtex/economic/CHANGELOG - RELOC/doc/bibtex/economic/NEWS - RELOC/doc/bibtex/economic/README - RELOC/doc/bibtex/economic/aer-cje-ex.bib - RELOC/doc/bibtex/economic/aer-cje-ex.tex - RELOC/doc/bibtex/economic/aer-natbib-ex.tex - RELOC/doc/bibtex/economic/ajae-ex.bib - RELOC/doc/bibtex/economic/ajae-ex.pdf - RELOC/doc/bibtex/economic/ajae-ex.tex - RELOC/doc/bibtex/economic/apecon-ex.bib - RELOC/doc/bibtex/economic/apecon-ex.pdf - RELOC/doc/bibtex/economic/apecon-ex.tex - RELOC/doc/bibtex/economic/ecca-ex.bib - RELOC/doc/bibtex/economic/ecca-ex.pdf - RELOC/doc/bibtex/economic/ecca-ex.tex - RELOC/doc/bibtex/economic/erae-ex.bib - RELOC/doc/bibtex/economic/erae-ex.pdf - RELOC/doc/bibtex/economic/erae-ex.tex - RELOC/doc/bibtex/economic/ier-bib-test.pdf - RELOC/doc/bibtex/economic/ier-bib-test.tex - RELOC/doc/bibtex/economic/ier-ex.bib - RELOC/doc/bibtex/economic/itaxpf-ex-title.pdf - RELOC/doc/bibtex/economic/itaxpf-ex-title.tex - RELOC/doc/bibtex/economic/itaxpf-ex.bib - RELOC/doc/bibtex/economic/itaxpf-ex.pdf - RELOC/doc/bibtex/economic/itaxpf-ex.tex - RELOC/doc/bibtex/economic/oegatb-ex.bib - RELOC/doc/bibtex/economic/oegatb-ex.pdf - RELOC/doc/bibtex/economic/oegatb-ex.png - RELOC/doc/bibtex/economic/oegatb-ex.tex -catalogue-ctan /biblio/bibtex/contrib/economic -catalogue-date 2014-01-13 11:14:58 +0100 -catalogue-license lppl - -name eco +name ec category Package -revision 29349 -shortdesc Oldstyle numerals using EC fonts. -relocated 1 -longdesc A set of font metric files and virtual fonts for using the EC -longdesc fonts with oldstyle numerals. These files can only be used -longdesc together with the standard ec fonts. The style file eco.sty is -longdesc sufficient to use the eco fonts but if you intend to use other -longdesc font families as well, e.g., PostScript fonts, try altfont. -runfiles size=916 - RELOC/fonts/tfm/public/eco/ecobi0500.tfm - RELOC/fonts/tfm/public/eco/ecobi0600.tfm - RELOC/fonts/tfm/public/eco/ecobi0700.tfm - RELOC/fonts/tfm/public/eco/ecobi0800.tfm - RELOC/fonts/tfm/public/eco/ecobi0900.tfm - RELOC/fonts/tfm/public/eco/ecobi1000.tfm - RELOC/fonts/tfm/public/eco/ecobi1095.tfm - RELOC/fonts/tfm/public/eco/ecobi1200.tfm - RELOC/fonts/tfm/public/eco/ecobi1440.tfm - RELOC/fonts/tfm/public/eco/ecobi1728.tfm - RELOC/fonts/tfm/public/eco/ecobi2074.tfm - RELOC/fonts/tfm/public/eco/ecobi2488.tfm - RELOC/fonts/tfm/public/eco/ecobi2986.tfm - RELOC/fonts/tfm/public/eco/ecobi3583.tfm - RELOC/fonts/tfm/public/eco/ecobl0500.tfm - RELOC/fonts/tfm/public/eco/ecobl0600.tfm - RELOC/fonts/tfm/public/eco/ecobl0700.tfm - RELOC/fonts/tfm/public/eco/ecobl0800.tfm - RELOC/fonts/tfm/public/eco/ecobl0900.tfm - RELOC/fonts/tfm/public/eco/ecobl1000.tfm - RELOC/fonts/tfm/public/eco/ecobl1095.tfm - RELOC/fonts/tfm/public/eco/ecobl1200.tfm - RELOC/fonts/tfm/public/eco/ecobl1440.tfm - RELOC/fonts/tfm/public/eco/ecobl1728.tfm - RELOC/fonts/tfm/public/eco/ecobl2074.tfm - RELOC/fonts/tfm/public/eco/ecobl2488.tfm - RELOC/fonts/tfm/public/eco/ecobl2986.tfm - RELOC/fonts/tfm/public/eco/ecobl3583.tfm - RELOC/fonts/tfm/public/eco/ecobx0500.tfm - RELOC/fonts/tfm/public/eco/ecobx0600.tfm - RELOC/fonts/tfm/public/eco/ecobx0700.tfm - RELOC/fonts/tfm/public/eco/ecobx0800.tfm - RELOC/fonts/tfm/public/eco/ecobx0900.tfm - RELOC/fonts/tfm/public/eco/ecobx1000.tfm - RELOC/fonts/tfm/public/eco/ecobx1095.tfm - RELOC/fonts/tfm/public/eco/ecobx1200.tfm - RELOC/fonts/tfm/public/eco/ecobx1440.tfm - RELOC/fonts/tfm/public/eco/ecobx1728.tfm - RELOC/fonts/tfm/public/eco/ecobx2074.tfm - RELOC/fonts/tfm/public/eco/ecobx2488.tfm - RELOC/fonts/tfm/public/eco/ecobx2986.tfm - RELOC/fonts/tfm/public/eco/ecobx3583.tfm - RELOC/fonts/tfm/public/eco/ecodh0500.tfm - RELOC/fonts/tfm/public/eco/ecodh0600.tfm - RELOC/fonts/tfm/public/eco/ecodh0700.tfm - RELOC/fonts/tfm/public/eco/ecodh0800.tfm - RELOC/fonts/tfm/public/eco/ecodh0900.tfm - RELOC/fonts/tfm/public/eco/ecodh1000.tfm - RELOC/fonts/tfm/public/eco/ecodh1095.tfm - RELOC/fonts/tfm/public/eco/ecodh1200.tfm - RELOC/fonts/tfm/public/eco/ecodh1440.tfm - RELOC/fonts/tfm/public/eco/ecodh1728.tfm - RELOC/fonts/tfm/public/eco/ecodh2074.tfm - RELOC/fonts/tfm/public/eco/ecodh2488.tfm - RELOC/fonts/tfm/public/eco/ecodh2986.tfm - RELOC/fonts/tfm/public/eco/ecodh3583.tfm - RELOC/fonts/tfm/public/eco/ecoit0600.tfm - RELOC/fonts/tfm/public/eco/ecoit0700.tfm - RELOC/fonts/tfm/public/eco/ecoit0800.tfm - RELOC/fonts/tfm/public/eco/ecoit0900.tfm - RELOC/fonts/tfm/public/eco/ecoit1000.tfm - RELOC/fonts/tfm/public/eco/ecoit1095.tfm - RELOC/fonts/tfm/public/eco/ecoit1200.tfm - RELOC/fonts/tfm/public/eco/ecoit1440.tfm - RELOC/fonts/tfm/public/eco/ecoit1728.tfm - RELOC/fonts/tfm/public/eco/ecoit2074.tfm - RELOC/fonts/tfm/public/eco/ecoit2488.tfm - RELOC/fonts/tfm/public/eco/ecoit2986.tfm - RELOC/fonts/tfm/public/eco/ecoit3583.tfm - RELOC/fonts/tfm/public/eco/ecorb0500.tfm - RELOC/fonts/tfm/public/eco/ecorb0600.tfm - RELOC/fonts/tfm/public/eco/ecorb0700.tfm - RELOC/fonts/tfm/public/eco/ecorb0800.tfm - RELOC/fonts/tfm/public/eco/ecorb0900.tfm - RELOC/fonts/tfm/public/eco/ecorb1000.tfm - RELOC/fonts/tfm/public/eco/ecorb1095.tfm - RELOC/fonts/tfm/public/eco/ecorb1200.tfm - RELOC/fonts/tfm/public/eco/ecorb1440.tfm - RELOC/fonts/tfm/public/eco/ecorb1728.tfm - RELOC/fonts/tfm/public/eco/ecorb2074.tfm - RELOC/fonts/tfm/public/eco/ecorb2488.tfm - RELOC/fonts/tfm/public/eco/ecorb2986.tfm - RELOC/fonts/tfm/public/eco/ecorb3583.tfm - RELOC/fonts/tfm/public/eco/ecorm0500.tfm - RELOC/fonts/tfm/public/eco/ecorm0600.tfm - RELOC/fonts/tfm/public/eco/ecorm0700.tfm - RELOC/fonts/tfm/public/eco/ecorm0800.tfm - RELOC/fonts/tfm/public/eco/ecorm0900.tfm - RELOC/fonts/tfm/public/eco/ecorm1000.tfm - RELOC/fonts/tfm/public/eco/ecorm1095.tfm - RELOC/fonts/tfm/public/eco/ecorm1200.tfm - RELOC/fonts/tfm/public/eco/ecorm1440.tfm - RELOC/fonts/tfm/public/eco/ecorm1728.tfm - RELOC/fonts/tfm/public/eco/ecorm2074.tfm - RELOC/fonts/tfm/public/eco/ecorm2488.tfm - RELOC/fonts/tfm/public/eco/ecorm2986.tfm - RELOC/fonts/tfm/public/eco/ecorm3583.tfm - RELOC/fonts/tfm/public/eco/ecosi0500.tfm - RELOC/fonts/tfm/public/eco/ecosi0600.tfm - RELOC/fonts/tfm/public/eco/ecosi0700.tfm - RELOC/fonts/tfm/public/eco/ecosi0800.tfm - RELOC/fonts/tfm/public/eco/ecosi0900.tfm - RELOC/fonts/tfm/public/eco/ecosi1000.tfm - RELOC/fonts/tfm/public/eco/ecosi1095.tfm - RELOC/fonts/tfm/public/eco/ecosi1200.tfm - RELOC/fonts/tfm/public/eco/ecosi1440.tfm - RELOC/fonts/tfm/public/eco/ecosi1728.tfm - RELOC/fonts/tfm/public/eco/ecosi2074.tfm - RELOC/fonts/tfm/public/eco/ecosi2488.tfm - RELOC/fonts/tfm/public/eco/ecosi2986.tfm - RELOC/fonts/tfm/public/eco/ecosi3583.tfm - RELOC/fonts/tfm/public/eco/ecosl0500.tfm - RELOC/fonts/tfm/public/eco/ecosl0600.tfm - RELOC/fonts/tfm/public/eco/ecosl0700.tfm - RELOC/fonts/tfm/public/eco/ecosl0800.tfm - RELOC/fonts/tfm/public/eco/ecosl0900.tfm - RELOC/fonts/tfm/public/eco/ecosl1000.tfm - RELOC/fonts/tfm/public/eco/ecosl1095.tfm - RELOC/fonts/tfm/public/eco/ecosl1200.tfm - RELOC/fonts/tfm/public/eco/ecosl1440.tfm - RELOC/fonts/tfm/public/eco/ecosl1728.tfm - RELOC/fonts/tfm/public/eco/ecosl2074.tfm - RELOC/fonts/tfm/public/eco/ecosl2488.tfm - RELOC/fonts/tfm/public/eco/ecosl2986.tfm - RELOC/fonts/tfm/public/eco/ecosl3583.tfm - RELOC/fonts/tfm/public/eco/ecoso0500.tfm - RELOC/fonts/tfm/public/eco/ecoso0600.tfm - RELOC/fonts/tfm/public/eco/ecoso0700.tfm - RELOC/fonts/tfm/public/eco/ecoso0800.tfm - RELOC/fonts/tfm/public/eco/ecoso0900.tfm - RELOC/fonts/tfm/public/eco/ecoso1000.tfm - RELOC/fonts/tfm/public/eco/ecoso1095.tfm - RELOC/fonts/tfm/public/eco/ecoso1200.tfm - RELOC/fonts/tfm/public/eco/ecoso1440.tfm - RELOC/fonts/tfm/public/eco/ecoso1728.tfm - RELOC/fonts/tfm/public/eco/ecoso2074.tfm - RELOC/fonts/tfm/public/eco/ecoso2488.tfm - RELOC/fonts/tfm/public/eco/ecoso2986.tfm - RELOC/fonts/tfm/public/eco/ecoso3583.tfm - RELOC/fonts/tfm/public/eco/ecoss0500.tfm - RELOC/fonts/tfm/public/eco/ecoss0600.tfm - RELOC/fonts/tfm/public/eco/ecoss0700.tfm - RELOC/fonts/tfm/public/eco/ecoss0800.tfm - RELOC/fonts/tfm/public/eco/ecoss0900.tfm - RELOC/fonts/tfm/public/eco/ecoss1000.tfm - RELOC/fonts/tfm/public/eco/ecoss1095.tfm - RELOC/fonts/tfm/public/eco/ecoss1200.tfm - RELOC/fonts/tfm/public/eco/ecoss1440.tfm - RELOC/fonts/tfm/public/eco/ecoss1728.tfm - RELOC/fonts/tfm/public/eco/ecoss2074.tfm - RELOC/fonts/tfm/public/eco/ecoss2488.tfm - RELOC/fonts/tfm/public/eco/ecoss2986.tfm - RELOC/fonts/tfm/public/eco/ecoss3583.tfm - RELOC/fonts/tfm/public/eco/ecost0600.tfm - RELOC/fonts/tfm/public/eco/ecost0700.tfm - RELOC/fonts/tfm/public/eco/ecost0800.tfm - RELOC/fonts/tfm/public/eco/ecost0900.tfm - RELOC/fonts/tfm/public/eco/ecost1000.tfm - RELOC/fonts/tfm/public/eco/ecost1095.tfm - RELOC/fonts/tfm/public/eco/ecost1200.tfm - RELOC/fonts/tfm/public/eco/ecost1440.tfm - RELOC/fonts/tfm/public/eco/ecost1728.tfm - RELOC/fonts/tfm/public/eco/ecost2074.tfm - RELOC/fonts/tfm/public/eco/ecost2488.tfm - RELOC/fonts/tfm/public/eco/ecost2986.tfm - RELOC/fonts/tfm/public/eco/ecost3583.tfm - RELOC/fonts/tfm/public/eco/ecosx0500.tfm - RELOC/fonts/tfm/public/eco/ecosx0600.tfm - RELOC/fonts/tfm/public/eco/ecosx0700.tfm - RELOC/fonts/tfm/public/eco/ecosx0800.tfm - RELOC/fonts/tfm/public/eco/ecosx0900.tfm - RELOC/fonts/tfm/public/eco/ecosx1000.tfm - RELOC/fonts/tfm/public/eco/ecosx1095.tfm - RELOC/fonts/tfm/public/eco/ecosx1200.tfm - RELOC/fonts/tfm/public/eco/ecosx1440.tfm - RELOC/fonts/tfm/public/eco/ecosx1728.tfm - RELOC/fonts/tfm/public/eco/ecosx2074.tfm - RELOC/fonts/tfm/public/eco/ecosx2488.tfm - RELOC/fonts/tfm/public/eco/ecosx2986.tfm - RELOC/fonts/tfm/public/eco/ecosx3583.tfm - RELOC/fonts/tfm/public/eco/ecoti0500.tfm - RELOC/fonts/tfm/public/eco/ecoti0600.tfm - RELOC/fonts/tfm/public/eco/ecoti0700.tfm - RELOC/fonts/tfm/public/eco/ecoti0800.tfm - RELOC/fonts/tfm/public/eco/ecoti0900.tfm - RELOC/fonts/tfm/public/eco/ecoti1000.tfm - RELOC/fonts/tfm/public/eco/ecoti1095.tfm - RELOC/fonts/tfm/public/eco/ecoti1200.tfm - RELOC/fonts/tfm/public/eco/ecoti1440.tfm - RELOC/fonts/tfm/public/eco/ecoti1728.tfm - RELOC/fonts/tfm/public/eco/ecoti2074.tfm - RELOC/fonts/tfm/public/eco/ecoti2488.tfm - RELOC/fonts/tfm/public/eco/ecoti2986.tfm - RELOC/fonts/tfm/public/eco/ecoti3583.tfm - RELOC/fonts/tfm/public/eco/ecott0600.tfm - RELOC/fonts/tfm/public/eco/ecott0700.tfm - RELOC/fonts/tfm/public/eco/ecott0800.tfm - RELOC/fonts/tfm/public/eco/ecott0900.tfm - RELOC/fonts/tfm/public/eco/ecott1000.tfm - RELOC/fonts/tfm/public/eco/ecott1095.tfm - RELOC/fonts/tfm/public/eco/ecott1200.tfm - RELOC/fonts/tfm/public/eco/ecott1440.tfm - RELOC/fonts/tfm/public/eco/ecott1728.tfm - RELOC/fonts/tfm/public/eco/ecott2074.tfm - RELOC/fonts/tfm/public/eco/ecott2488.tfm - RELOC/fonts/tfm/public/eco/ecott2986.tfm - RELOC/fonts/tfm/public/eco/ecott3583.tfm - RELOC/fonts/tfm/public/eco/ecoui0500.tfm - RELOC/fonts/tfm/public/eco/ecoui0600.tfm - RELOC/fonts/tfm/public/eco/ecoui0700.tfm - RELOC/fonts/tfm/public/eco/ecoui0800.tfm - RELOC/fonts/tfm/public/eco/ecoui0900.tfm - RELOC/fonts/tfm/public/eco/ecoui1000.tfm - RELOC/fonts/tfm/public/eco/ecoui1095.tfm - RELOC/fonts/tfm/public/eco/ecoui1200.tfm - RELOC/fonts/tfm/public/eco/ecoui1440.tfm - RELOC/fonts/tfm/public/eco/ecoui1728.tfm - RELOC/fonts/tfm/public/eco/ecoui2074.tfm - RELOC/fonts/tfm/public/eco/ecoui2488.tfm - RELOC/fonts/tfm/public/eco/ecoui2986.tfm - RELOC/fonts/tfm/public/eco/ecoui3583.tfm - RELOC/fonts/tfm/public/eco/ecovi0600.tfm - RELOC/fonts/tfm/public/eco/ecovi0700.tfm - RELOC/fonts/tfm/public/eco/ecovi0800.tfm - RELOC/fonts/tfm/public/eco/ecovi0900.tfm - RELOC/fonts/tfm/public/eco/ecovi1000.tfm - RELOC/fonts/tfm/public/eco/ecovi1095.tfm - RELOC/fonts/tfm/public/eco/ecovi1200.tfm - RELOC/fonts/tfm/public/eco/ecovi1440.tfm - RELOC/fonts/tfm/public/eco/ecovi1728.tfm - RELOC/fonts/tfm/public/eco/ecovi2074.tfm - RELOC/fonts/tfm/public/eco/ecovi2488.tfm - RELOC/fonts/tfm/public/eco/ecovi2986.tfm - RELOC/fonts/tfm/public/eco/ecovi3583.tfm - RELOC/fonts/tfm/public/eco/ecovt0600.tfm - RELOC/fonts/tfm/public/eco/ecovt0700.tfm - RELOC/fonts/tfm/public/eco/ecovt0800.tfm - RELOC/fonts/tfm/public/eco/ecovt0900.tfm - RELOC/fonts/tfm/public/eco/ecovt1000.tfm - RELOC/fonts/tfm/public/eco/ecovt1095.tfm - RELOC/fonts/tfm/public/eco/ecovt1200.tfm - RELOC/fonts/tfm/public/eco/ecovt1440.tfm - RELOC/fonts/tfm/public/eco/ecovt1728.tfm - RELOC/fonts/tfm/public/eco/ecovt2074.tfm - RELOC/fonts/tfm/public/eco/ecovt2488.tfm - RELOC/fonts/tfm/public/eco/ecovt2986.tfm - RELOC/fonts/tfm/public/eco/ecovt3583.tfm - RELOC/fonts/vf/public/eco/ecobi0500.vf - RELOC/fonts/vf/public/eco/ecobi0600.vf - RELOC/fonts/vf/public/eco/ecobi0700.vf - RELOC/fonts/vf/public/eco/ecobi0800.vf - RELOC/fonts/vf/public/eco/ecobi0900.vf - RELOC/fonts/vf/public/eco/ecobi1000.vf - RELOC/fonts/vf/public/eco/ecobi1095.vf - RELOC/fonts/vf/public/eco/ecobi1200.vf - RELOC/fonts/vf/public/eco/ecobi1440.vf - RELOC/fonts/vf/public/eco/ecobi1728.vf - RELOC/fonts/vf/public/eco/ecobi2074.vf - RELOC/fonts/vf/public/eco/ecobi2488.vf - RELOC/fonts/vf/public/eco/ecobi2986.vf - RELOC/fonts/vf/public/eco/ecobi3583.vf - RELOC/fonts/vf/public/eco/ecobl0500.vf - RELOC/fonts/vf/public/eco/ecobl0600.vf - RELOC/fonts/vf/public/eco/ecobl0700.vf - RELOC/fonts/vf/public/eco/ecobl0800.vf - RELOC/fonts/vf/public/eco/ecobl0900.vf - RELOC/fonts/vf/public/eco/ecobl1000.vf - RELOC/fonts/vf/public/eco/ecobl1095.vf - RELOC/fonts/vf/public/eco/ecobl1200.vf - RELOC/fonts/vf/public/eco/ecobl1440.vf - RELOC/fonts/vf/public/eco/ecobl1728.vf - RELOC/fonts/vf/public/eco/ecobl2074.vf - RELOC/fonts/vf/public/eco/ecobl2488.vf - RELOC/fonts/vf/public/eco/ecobl2986.vf - RELOC/fonts/vf/public/eco/ecobl3583.vf - RELOC/fonts/vf/public/eco/ecobx0500.vf - RELOC/fonts/vf/public/eco/ecobx0600.vf - RELOC/fonts/vf/public/eco/ecobx0700.vf - RELOC/fonts/vf/public/eco/ecobx0800.vf - RELOC/fonts/vf/public/eco/ecobx0900.vf - RELOC/fonts/vf/public/eco/ecobx1000.vf - RELOC/fonts/vf/public/eco/ecobx1095.vf - RELOC/fonts/vf/public/eco/ecobx1200.vf - RELOC/fonts/vf/public/eco/ecobx1440.vf - RELOC/fonts/vf/public/eco/ecobx1728.vf - RELOC/fonts/vf/public/eco/ecobx2074.vf - RELOC/fonts/vf/public/eco/ecobx2488.vf - RELOC/fonts/vf/public/eco/ecobx2986.vf - RELOC/fonts/vf/public/eco/ecobx3583.vf - RELOC/fonts/vf/public/eco/ecodh0500.vf - RELOC/fonts/vf/public/eco/ecodh0600.vf - RELOC/fonts/vf/public/eco/ecodh0700.vf - RELOC/fonts/vf/public/eco/ecodh0800.vf - RELOC/fonts/vf/public/eco/ecodh0900.vf - RELOC/fonts/vf/public/eco/ecodh1000.vf - RELOC/fonts/vf/public/eco/ecodh1095.vf - RELOC/fonts/vf/public/eco/ecodh1200.vf - RELOC/fonts/vf/public/eco/ecodh1440.vf - RELOC/fonts/vf/public/eco/ecodh1728.vf - RELOC/fonts/vf/public/eco/ecodh2074.vf - RELOC/fonts/vf/public/eco/ecodh2488.vf - RELOC/fonts/vf/public/eco/ecodh2986.vf - RELOC/fonts/vf/public/eco/ecodh3583.vf - RELOC/fonts/vf/public/eco/ecoit0600.vf - RELOC/fonts/vf/public/eco/ecoit0700.vf - RELOC/fonts/vf/public/eco/ecoit0800.vf - RELOC/fonts/vf/public/eco/ecoit0900.vf - RELOC/fonts/vf/public/eco/ecoit1000.vf - RELOC/fonts/vf/public/eco/ecoit1095.vf - RELOC/fonts/vf/public/eco/ecoit1200.vf - RELOC/fonts/vf/public/eco/ecoit1440.vf - RELOC/fonts/vf/public/eco/ecoit1728.vf - RELOC/fonts/vf/public/eco/ecoit2074.vf - RELOC/fonts/vf/public/eco/ecoit2488.vf - RELOC/fonts/vf/public/eco/ecoit2986.vf - RELOC/fonts/vf/public/eco/ecoit3583.vf - RELOC/fonts/vf/public/eco/ecorb0500.vf - RELOC/fonts/vf/public/eco/ecorb0600.vf - RELOC/fonts/vf/public/eco/ecorb0700.vf - RELOC/fonts/vf/public/eco/ecorb0800.vf - RELOC/fonts/vf/public/eco/ecorb0900.vf - RELOC/fonts/vf/public/eco/ecorb1000.vf - RELOC/fonts/vf/public/eco/ecorb1095.vf - RELOC/fonts/vf/public/eco/ecorb1200.vf - RELOC/fonts/vf/public/eco/ecorb1440.vf - RELOC/fonts/vf/public/eco/ecorb1728.vf - RELOC/fonts/vf/public/eco/ecorb2074.vf - RELOC/fonts/vf/public/eco/ecorb2488.vf - RELOC/fonts/vf/public/eco/ecorb2986.vf - RELOC/fonts/vf/public/eco/ecorb3583.vf - RELOC/fonts/vf/public/eco/ecorm0500.vf - RELOC/fonts/vf/public/eco/ecorm0600.vf - RELOC/fonts/vf/public/eco/ecorm0700.vf - RELOC/fonts/vf/public/eco/ecorm0800.vf - RELOC/fonts/vf/public/eco/ecorm0900.vf - RELOC/fonts/vf/public/eco/ecorm1000.vf - RELOC/fonts/vf/public/eco/ecorm1095.vf - RELOC/fonts/vf/public/eco/ecorm1200.vf - RELOC/fonts/vf/public/eco/ecorm1440.vf - RELOC/fonts/vf/public/eco/ecorm1728.vf - RELOC/fonts/vf/public/eco/ecorm2074.vf - RELOC/fonts/vf/public/eco/ecorm2488.vf - RELOC/fonts/vf/public/eco/ecorm2986.vf - RELOC/fonts/vf/public/eco/ecorm3583.vf - RELOC/fonts/vf/public/eco/ecosi0500.vf - RELOC/fonts/vf/public/eco/ecosi0600.vf - RELOC/fonts/vf/public/eco/ecosi0700.vf - RELOC/fonts/vf/public/eco/ecosi0800.vf - RELOC/fonts/vf/public/eco/ecosi0900.vf - RELOC/fonts/vf/public/eco/ecosi1000.vf - RELOC/fonts/vf/public/eco/ecosi1095.vf - RELOC/fonts/vf/public/eco/ecosi1200.vf - RELOC/fonts/vf/public/eco/ecosi1440.vf - RELOC/fonts/vf/public/eco/ecosi1728.vf - RELOC/fonts/vf/public/eco/ecosi2074.vf - RELOC/fonts/vf/public/eco/ecosi2488.vf - RELOC/fonts/vf/public/eco/ecosi2986.vf - RELOC/fonts/vf/public/eco/ecosi3583.vf - RELOC/fonts/vf/public/eco/ecosl0500.vf - RELOC/fonts/vf/public/eco/ecosl0600.vf - RELOC/fonts/vf/public/eco/ecosl0700.vf - RELOC/fonts/vf/public/eco/ecosl0800.vf - RELOC/fonts/vf/public/eco/ecosl0900.vf - RELOC/fonts/vf/public/eco/ecosl1000.vf - RELOC/fonts/vf/public/eco/ecosl1095.vf - RELOC/fonts/vf/public/eco/ecosl1200.vf - RELOC/fonts/vf/public/eco/ecosl1440.vf - RELOC/fonts/vf/public/eco/ecosl1728.vf - RELOC/fonts/vf/public/eco/ecosl2074.vf - RELOC/fonts/vf/public/eco/ecosl2488.vf - RELOC/fonts/vf/public/eco/ecosl2986.vf - RELOC/fonts/vf/public/eco/ecosl3583.vf - RELOC/fonts/vf/public/eco/ecoso0500.vf - RELOC/fonts/vf/public/eco/ecoso0600.vf - RELOC/fonts/vf/public/eco/ecoso0700.vf - RELOC/fonts/vf/public/eco/ecoso0800.vf - RELOC/fonts/vf/public/eco/ecoso0900.vf - RELOC/fonts/vf/public/eco/ecoso1000.vf - RELOC/fonts/vf/public/eco/ecoso1095.vf - RELOC/fonts/vf/public/eco/ecoso1200.vf - RELOC/fonts/vf/public/eco/ecoso1440.vf - RELOC/fonts/vf/public/eco/ecoso1728.vf - RELOC/fonts/vf/public/eco/ecoso2074.vf - RELOC/fonts/vf/public/eco/ecoso2488.vf - RELOC/fonts/vf/public/eco/ecoso2986.vf - RELOC/fonts/vf/public/eco/ecoso3583.vf - RELOC/fonts/vf/public/eco/ecoss0500.vf - RELOC/fonts/vf/public/eco/ecoss0600.vf - RELOC/fonts/vf/public/eco/ecoss0700.vf - RELOC/fonts/vf/public/eco/ecoss0800.vf - RELOC/fonts/vf/public/eco/ecoss0900.vf - RELOC/fonts/vf/public/eco/ecoss1000.vf - RELOC/fonts/vf/public/eco/ecoss1095.vf - RELOC/fonts/vf/public/eco/ecoss1200.vf - RELOC/fonts/vf/public/eco/ecoss1440.vf - RELOC/fonts/vf/public/eco/ecoss1728.vf - RELOC/fonts/vf/public/eco/ecoss2074.vf - RELOC/fonts/vf/public/eco/ecoss2488.vf - RELOC/fonts/vf/public/eco/ecoss2986.vf - RELOC/fonts/vf/public/eco/ecoss3583.vf - RELOC/fonts/vf/public/eco/ecost0600.vf - RELOC/fonts/vf/public/eco/ecost0700.vf - RELOC/fonts/vf/public/eco/ecost0800.vf - RELOC/fonts/vf/public/eco/ecost0900.vf - RELOC/fonts/vf/public/eco/ecost1000.vf - RELOC/fonts/vf/public/eco/ecost1095.vf - RELOC/fonts/vf/public/eco/ecost1200.vf - RELOC/fonts/vf/public/eco/ecost1440.vf - RELOC/fonts/vf/public/eco/ecost1728.vf - RELOC/fonts/vf/public/eco/ecost2074.vf - RELOC/fonts/vf/public/eco/ecost2488.vf - RELOC/fonts/vf/public/eco/ecost2986.vf - RELOC/fonts/vf/public/eco/ecost3583.vf - RELOC/fonts/vf/public/eco/ecosx0500.vf - RELOC/fonts/vf/public/eco/ecosx0600.vf - RELOC/fonts/vf/public/eco/ecosx0700.vf - RELOC/fonts/vf/public/eco/ecosx0800.vf - RELOC/fonts/vf/public/eco/ecosx0900.vf - RELOC/fonts/vf/public/eco/ecosx1000.vf - RELOC/fonts/vf/public/eco/ecosx1095.vf - RELOC/fonts/vf/public/eco/ecosx1200.vf - RELOC/fonts/vf/public/eco/ecosx1440.vf - RELOC/fonts/vf/public/eco/ecosx1728.vf - RELOC/fonts/vf/public/eco/ecosx2074.vf - RELOC/fonts/vf/public/eco/ecosx2488.vf - RELOC/fonts/vf/public/eco/ecosx2986.vf - RELOC/fonts/vf/public/eco/ecosx3583.vf - RELOC/fonts/vf/public/eco/ecoti0500.vf - RELOC/fonts/vf/public/eco/ecoti0600.vf - RELOC/fonts/vf/public/eco/ecoti0700.vf - RELOC/fonts/vf/public/eco/ecoti0800.vf - RELOC/fonts/vf/public/eco/ecoti0900.vf - RELOC/fonts/vf/public/eco/ecoti1000.vf - RELOC/fonts/vf/public/eco/ecoti1095.vf - RELOC/fonts/vf/public/eco/ecoti1200.vf - RELOC/fonts/vf/public/eco/ecoti1440.vf - RELOC/fonts/vf/public/eco/ecoti1728.vf - RELOC/fonts/vf/public/eco/ecoti2074.vf - RELOC/fonts/vf/public/eco/ecoti2488.vf - RELOC/fonts/vf/public/eco/ecoti2986.vf - RELOC/fonts/vf/public/eco/ecoti3583.vf - RELOC/fonts/vf/public/eco/ecott0600.vf - RELOC/fonts/vf/public/eco/ecott0700.vf - RELOC/fonts/vf/public/eco/ecott0800.vf - RELOC/fonts/vf/public/eco/ecott0900.vf - RELOC/fonts/vf/public/eco/ecott1000.vf - RELOC/fonts/vf/public/eco/ecott1095.vf - RELOC/fonts/vf/public/eco/ecott1200.vf - RELOC/fonts/vf/public/eco/ecott1440.vf - RELOC/fonts/vf/public/eco/ecott1728.vf - RELOC/fonts/vf/public/eco/ecott2074.vf - RELOC/fonts/vf/public/eco/ecott2488.vf - RELOC/fonts/vf/public/eco/ecott2986.vf - RELOC/fonts/vf/public/eco/ecott3583.vf - RELOC/fonts/vf/public/eco/ecoui0500.vf - RELOC/fonts/vf/public/eco/ecoui0600.vf - RELOC/fonts/vf/public/eco/ecoui0700.vf - RELOC/fonts/vf/public/eco/ecoui0800.vf - RELOC/fonts/vf/public/eco/ecoui0900.vf - RELOC/fonts/vf/public/eco/ecoui1000.vf - RELOC/fonts/vf/public/eco/ecoui1095.vf - RELOC/fonts/vf/public/eco/ecoui1200.vf - RELOC/fonts/vf/public/eco/ecoui1440.vf - RELOC/fonts/vf/public/eco/ecoui1728.vf - RELOC/fonts/vf/public/eco/ecoui2074.vf - RELOC/fonts/vf/public/eco/ecoui2488.vf - RELOC/fonts/vf/public/eco/ecoui2986.vf - RELOC/fonts/vf/public/eco/ecoui3583.vf - RELOC/fonts/vf/public/eco/ecovi0600.vf - RELOC/fonts/vf/public/eco/ecovi0700.vf - RELOC/fonts/vf/public/eco/ecovi0800.vf - RELOC/fonts/vf/public/eco/ecovi0900.vf - RELOC/fonts/vf/public/eco/ecovi1000.vf - RELOC/fonts/vf/public/eco/ecovi1095.vf - RELOC/fonts/vf/public/eco/ecovi1200.vf - RELOC/fonts/vf/public/eco/ecovi1440.vf - RELOC/fonts/vf/public/eco/ecovi1728.vf - RELOC/fonts/vf/public/eco/ecovi2074.vf - RELOC/fonts/vf/public/eco/ecovi2488.vf - RELOC/fonts/vf/public/eco/ecovi2986.vf - RELOC/fonts/vf/public/eco/ecovi3583.vf - RELOC/fonts/vf/public/eco/ecovt0600.vf - RELOC/fonts/vf/public/eco/ecovt0700.vf - RELOC/fonts/vf/public/eco/ecovt0800.vf - RELOC/fonts/vf/public/eco/ecovt0900.vf - RELOC/fonts/vf/public/eco/ecovt1000.vf - RELOC/fonts/vf/public/eco/ecovt1095.vf - RELOC/fonts/vf/public/eco/ecovt1200.vf - RELOC/fonts/vf/public/eco/ecovt1440.vf - RELOC/fonts/vf/public/eco/ecovt1728.vf - RELOC/fonts/vf/public/eco/ecovt2074.vf - RELOC/fonts/vf/public/eco/ecovt2488.vf - RELOC/fonts/vf/public/eco/ecovt2986.vf - RELOC/fonts/vf/public/eco/ecovt3583.vf - RELOC/tex/latex/eco/T1cmodh.fd - RELOC/tex/latex/eco/T1cmor.fd - RELOC/tex/latex/eco/T1cmoss.fd - RELOC/tex/latex/eco/T1cmott.fd - RELOC/tex/latex/eco/T1cmovt.fd - RELOC/tex/latex/eco/eco.sty -docfiles size=9 - RELOC/doc/fonts/eco/CHANGES - RELOC/doc/fonts/eco/COPYING - RELOC/doc/fonts/eco/INSTALL - RELOC/doc/fonts/eco/README - RELOC/doc/fonts/eco/VERSION -srcfiles size=14 - RELOC/source/fonts/eco/TS1.etx - RELOC/source/fonts/eco/create.sh - RELOC/source/fonts/eco/dostretch.mtx - RELOC/source/fonts/eco/ecodh.tex - RELOC/source/fonts/eco/ecor.tex - RELOC/source/fonts/eco/ecori.tex - RELOC/source/fonts/eco/ecoss.tex - RELOC/source/fonts/eco/ecott.tex - RELOC/source/fonts/eco/ecovt.tex -catalogue-ctan /fonts/eco -catalogue-date 2014-04-25 21:16:06 +0200 -catalogue-license gpl -catalogue-version 1.3 - -name ec -category Package -revision 25033 -shortdesc Computer modern fonts in T1 and TS1 encodings. +revision 25033 +shortdesc Computer modern fonts in T1 and TS1 encodings relocated 1 longdesc The EC fonts are European Computer Modern Fonts, supporting the longdesc complete LaTeX T1 encoding defined at the 1990 TUG conference @@ -52867,6 +89644,23 @@ longdesc the cm-super bundle. The other Computer Modern-style T1-encoded longdesc Type 1 set, Latin Modern, is not actually a direct development longdesc of the EC set, and differs from the EC in a number of longdesc particulars. +containersize 263716 +containerchecksum a967804b42bcc11e766d5b74de28c54d167625d2b108a34bc5e49351533ddcfe3334e4a7a34966f8d159bbde6a80f84b4d216553ce03fbcfb7a4b6267574538f +doccontainersize 22856 +doccontainerchecksum bcf6617cf66af91312aea98f6c4a034f3af4ada14687414e7c3572e319fa4bd957dd25ebf557078297950d8ba8fd02229c5ad53464077feda462263b52536f29 +docfiles size=29 + RELOC/doc/fonts/ec/00bugs.txt + RELOC/doc/fonts/ec/00error.txt + RELOC/doc/fonts/ec/00files.txt + RELOC/doc/fonts/ec/00inst.txt + RELOC/doc/fonts/ec/00readme.txt details="Readme" + RELOC/doc/fonts/ec/copyrite.txt + RELOC/doc/fonts/ec/dc-chg.txt + RELOC/doc/fonts/ec/dcdoc.tex + RELOC/doc/fonts/ec/ec-chg.txt + RELOC/doc/fonts/ec/ecstdedt.tex + RELOC/doc/fonts/ec/tc-chg.txt + RELOC/doc/fonts/ec/tcstdedt.tex runfiles size=1445 RELOC/fonts/source/jknappen/ec/ecbi.mf RELOC/fonts/source/jknappen/ec/ecbi0500.mf @@ -54097,95 +90891,1085 @@ runfiles size=1445 RELOC/fonts/tfm/jknappen/ec/tcvt2488.tfm RELOC/fonts/tfm/jknappen/ec/tcvt2986.tfm RELOC/fonts/tfm/jknappen/ec/tcvt3583.tfm -docfiles size=29 - RELOC/doc/fonts/ec/00bugs.txt - RELOC/doc/fonts/ec/00error.txt - RELOC/doc/fonts/ec/00files.txt - RELOC/doc/fonts/ec/00inst.txt - RELOC/doc/fonts/ec/00readme.txt - RELOC/doc/fonts/ec/copyrite.txt - RELOC/doc/fonts/ec/dc-chg.txt - RELOC/doc/fonts/ec/dcdoc.tex - RELOC/doc/fonts/ec/ec-chg.txt - RELOC/doc/fonts/ec/ecstdedt.tex - RELOC/doc/fonts/ec/tc-chg.txt - RELOC/doc/fonts/ec/tcstdedt.tex +catalogue-also eco catalogue-ctan /fonts/ec -catalogue-date 2014-07-11 15:31:42 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics font font-mf font-serif font-sans font-proportional font-mono font-cm +catalogue-version 1.0 + +name ecc +category Package +revision 15878 +shortdesc Sources for the European Concrete fonts +relocated 1 +longdesc The Metafont sources and TFM files of the European Concrete +longdesc Fonts. This is the T1-encoded extension of Knuth's Concrete +longdesc fonts, including also the corresponding text companion fonts. +longdesc Adobe Type 1 versions of the fonts are available as part of the +longdesc cm-super font bundle. +containersize 16928 +containerchecksum 0f91383595d8606d0a118f8111af0531e0c53fe383511b6424f7cbbf70ace9c4d94dd379813bfceafcea11f6be361bf7d8df2088fad98a42a5e5d31476581f11 +doccontainersize 2944 +doccontainerchecksum e3263aab5c8ac9985c579d4fba121085419d5c28e4813798402ad67213f96575dac0776d18918edaa18d42d458937a1e60ad666b2a01dea445675eea7e32b2c2 +docfiles size=3 + RELOC/doc/fonts/ecc/copyrite + RELOC/doc/fonts/ecc/liesmich + RELOC/doc/fonts/ecc/readme details="Readme" +runfiles size=71 + RELOC/fonts/source/public/ecc/conc10pt.mf + RELOC/fonts/source/public/ecc/conc5pt.mf + RELOC/fonts/source/public/ecc/conc6pt.mf + RELOC/fonts/source/public/ecc/conc7pt.mf + RELOC/fonts/source/public/ecc/conc8pt.mf + RELOC/fonts/source/public/ecc/conc9pt.mf + RELOC/fonts/source/public/ecc/coni10pt.mf + RELOC/fonts/source/public/ecc/eocc10.mf + RELOC/fonts/source/public/ecc/eorm10.mf + RELOC/fonts/source/public/ecc/eorm5.mf + RELOC/fonts/source/public/ecc/eorm6.mf + RELOC/fonts/source/public/ecc/eorm7.mf + RELOC/fonts/source/public/ecc/eorm8.mf + RELOC/fonts/source/public/ecc/eorm9.mf + RELOC/fonts/source/public/ecc/eosl10.mf + RELOC/fonts/source/public/ecc/eosl5.mf + RELOC/fonts/source/public/ecc/eosl6.mf + RELOC/fonts/source/public/ecc/eosl7.mf + RELOC/fonts/source/public/ecc/eosl8.mf + RELOC/fonts/source/public/ecc/eosl9.mf + RELOC/fonts/source/public/ecc/eoti10.mf + RELOC/fonts/source/public/ecc/tcssdc10.mf + RELOC/fonts/source/public/ecc/torm10.mf + RELOC/fonts/source/public/ecc/torm5.mf + RELOC/fonts/source/public/ecc/torm6.mf + RELOC/fonts/source/public/ecc/torm7.mf + RELOC/fonts/source/public/ecc/torm8.mf + RELOC/fonts/source/public/ecc/torm9.mf + RELOC/fonts/source/public/ecc/tosl10.mf + RELOC/fonts/source/public/ecc/tosl5.mf + RELOC/fonts/source/public/ecc/tosl6.mf + RELOC/fonts/source/public/ecc/tosl7.mf + RELOC/fonts/source/public/ecc/tosl8.mf + RELOC/fonts/source/public/ecc/tosl9.mf + RELOC/fonts/source/public/ecc/toti10.mf + RELOC/fonts/tfm/public/ecc/eocc10.tfm + RELOC/fonts/tfm/public/ecc/eorm10.tfm + RELOC/fonts/tfm/public/ecc/eorm5.tfm + RELOC/fonts/tfm/public/ecc/eorm6.tfm + RELOC/fonts/tfm/public/ecc/eorm7.tfm + RELOC/fonts/tfm/public/ecc/eorm8.tfm + RELOC/fonts/tfm/public/ecc/eorm9.tfm + RELOC/fonts/tfm/public/ecc/eosl10.tfm + RELOC/fonts/tfm/public/ecc/eosl5.tfm + RELOC/fonts/tfm/public/ecc/eosl6.tfm + RELOC/fonts/tfm/public/ecc/eosl7.tfm + RELOC/fonts/tfm/public/ecc/eosl8.tfm + RELOC/fonts/tfm/public/ecc/eosl9.tfm + RELOC/fonts/tfm/public/ecc/eoti10.tfm + RELOC/fonts/tfm/public/ecc/tcssdc10.tfm + RELOC/fonts/tfm/public/ecc/torm10.tfm + RELOC/fonts/tfm/public/ecc/torm5.tfm + RELOC/fonts/tfm/public/ecc/torm6.tfm + RELOC/fonts/tfm/public/ecc/torm7.tfm + RELOC/fonts/tfm/public/ecc/torm8.tfm + RELOC/fonts/tfm/public/ecc/torm9.tfm + RELOC/fonts/tfm/public/ecc/tosl10.tfm + RELOC/fonts/tfm/public/ecc/tosl5.tfm + RELOC/fonts/tfm/public/ecc/tosl6.tfm + RELOC/fonts/tfm/public/ecc/tosl7.tfm + RELOC/fonts/tfm/public/ecc/tosl8.tfm + RELOC/fonts/tfm/public/ecc/tosl9.tfm + RELOC/fonts/tfm/public/ecc/toti10.tfm +catalogue-also ccfonts +catalogue-ctan /fonts/ecc +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font font-mf font-t1enc + +name ecclesiastic +category Package +revision 38172 +shortdesc Typesetting Ecclesiastic Latin +relocated 1 +longdesc The package modifies the way the latin option to babel operates +longdesc when typesetting Latin. The style is somewhat 'frenchified' in +longdesc respect of punctuation spacings and footnote style; shortcuts +longdesc are available in order to set accents on all vowels, including +longdesc y and the diphthongs ae and oe. +containersize 2744 +containerchecksum f2518f8f25bf4b7c7fd34ee5fc271d08c3262ca2d90e271e02db96ef4826bdee53565f004fddd89e886258716874b101e7fb63b46a6124ed13b67facded6ddcc +doccontainersize 370392 +doccontainerchecksum 35902f78af7c9acc42e23ae1d5c39ead5d92f0cf73f9c27b3f15d025555ed08502709638dec3788305fa776bb2924eb43e691c6e69424b23c21110de3160b60d +docfiles size=93 + RELOC/doc/latex/ecclesiastic/README details="Readme" + RELOC/doc/latex/ecclesiastic/ecclesiastic.pdf details="Package documentation" + RELOC/doc/latex/ecclesiastic/manifest.txt +srccontainersize 8456 +srccontainerchecksum 9661b16b8d3af5e205e99a7b8da8ce1913ac1ef495f3e02202ce7cbe1fe786692c64b4a82913190db42f922f33d939069cf423b55af53792808900ebbe728b8a +srcfiles size=7 + RELOC/source/latex/ecclesiastic/ecclesiastic.dtx +runfiles size=2 + RELOC/tex/latex/ecclesiastic/ecclesiastic.sty +catalogue-ctan /macros/latex/contrib/ecclesiastic +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics multilingual-addon +catalogue-version 0.3 + +name ecgdraw +category Package +revision 41617 +shortdesc Draws electrocardiograms (ECG) +relocated 1 +longdesc This package provides the \ECG{} command which draws +longdesc electrocardiograms (ECG). The represents a series of +longdesc abbreviations which allow to draw different types of wave. +containersize 3236 +containerchecksum 419650d8ad24b9e08523953596a79c318740b2dcb7fd18a7c7a17019fe17cc66439c0acf56a7a7f8176349df0d80b44640511269d498cfa19aba6fb1f353923f +doccontainersize 725824 +doccontainerchecksum 24968ada8568861eb973967b33827642e1201d002f73d40de5183a38d5f447a2fb93feb1db32807829c071d1a1147039e34ed4c287886260453b9c9737693986 +docfiles size=204 + RELOC/doc/latex/ecgdraw/README details="Readme" + RELOC/doc/latex/ecgdraw/archivio.tex + RELOC/doc/latex/ecgdraw/ecgdraw.pdf details="Package documentation" + RELOC/doc/latex/ecgdraw/ecgdraw_ita.pdf details="Package documentation" language="it" +srccontainersize 12636 +srccontainerchecksum 27ea4e0f4d184883eb0515cc95b7b797ea215626fb5c4003fc02bb490b6f3edf1d9422a7f764df28372d9ded429dbe47645bdaa8fa57c4517ef438096ac68801 +srcfiles size=13 + RELOC/source/latex/ecgdraw/ecgdraw.dtx +runfiles size=3 + RELOC/tex/latex/ecgdraw/ecgdraw.sty +catalogue-ctan /graphics/ecgdraw +catalogue-date 2018-01-07 12:02:30 +0100 +catalogue-license lppl1.3 +catalogue-topics medical +catalogue-version 0.1 + +name ecltree +category Package +revision 15878 +shortdesc Trees using epic and eepic macros +relocated 1 +longdesc The package recursively draws trees: each subtree is defined in +longdesc a 'bundle' environment, with a set of leaves described by +longdesc \chunk macros. A chunk may have a bundle environment inside it. +containersize 2136 +containerchecksum 7461fe472dbd2ecb4e692cdbd58d5b801960d160bd7e18fa7d5ebe3e42defd11faba318d5d9134fd17275a4271f4c7761fa2d65fc1f202b4eb7b0fe3968a9fbc +doccontainersize 32504 +doccontainerchecksum 3dc607ff60f9e738476b1f5c801801e3dc10713d7f5dc4b790b92f454fec1e68e9abe8efa7e4b0464ed6ad854d7971e241987fd63d406ba9deec9c99f8bf229a +docfiles size=12 + RELOC/doc/latex/ecltree/ecltreesample.pdf details="Package examples" + RELOC/doc/latex/ecltree/ecltreesample.tex +runfiles size=2 + RELOC/tex/latex/ecltree/ecltree.sty +catalogue-also epic eepic +catalogue-ctan /macros/latex/contrib/eclbip +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics tree linguistic +catalogue-version 1.1a + +name eco +category Package +revision 29349 +shortdesc Oldstyle numerals using EC fonts +relocated 1 +longdesc A set of font metric files and virtual fonts for using the EC +longdesc fonts with oldstyle numerals. These files can only be used +longdesc together with the standard ec fonts. The style file eco.sty is +longdesc sufficient to use the eco fonts but if you intend to use other +longdesc font families as well, e.g., PostScript fonts, try altfont. +containersize 143540 +containerchecksum 7bed893bb3f379d61dc874280ccc26db037511ea69faf37076f3cfbf01cf3d747706d40086eb99c502f215f026b2e357e44e8940a859559c3a5d9876bfd70c00 +doccontainersize 8380 +doccontainerchecksum 3c2042779dd30c8ff0e8f09580b3173f3dd43659ff2ca94c52500f989a338a29799c22eb08c493dfa82496117d7fd7548f903f71fe488727acf4e517dc6c0377 +docfiles size=9 + RELOC/doc/fonts/eco/CHANGES + RELOC/doc/fonts/eco/COPYING + RELOC/doc/fonts/eco/INSTALL + RELOC/doc/fonts/eco/README details="Readme" + RELOC/doc/fonts/eco/VERSION +srccontainersize 6104 +srccontainerchecksum 355f1a47eddba5eedf9933d0a137045d9cb06e3918814754079e7dca0852d2fb10969f0c48a030ef9dad923e7131b6e77af8e1e8b2954b3d70409fad400ebe05 +srcfiles size=14 + RELOC/source/fonts/eco/TS1.etx + RELOC/source/fonts/eco/create.sh + RELOC/source/fonts/eco/dostretch.mtx + RELOC/source/fonts/eco/ecodh.tex + RELOC/source/fonts/eco/ecor.tex + RELOC/source/fonts/eco/ecori.tex + RELOC/source/fonts/eco/ecoss.tex + RELOC/source/fonts/eco/ecott.tex + RELOC/source/fonts/eco/ecovt.tex +runfiles size=916 + RELOC/fonts/tfm/public/eco/ecobi0500.tfm + RELOC/fonts/tfm/public/eco/ecobi0600.tfm + RELOC/fonts/tfm/public/eco/ecobi0700.tfm + RELOC/fonts/tfm/public/eco/ecobi0800.tfm + RELOC/fonts/tfm/public/eco/ecobi0900.tfm + RELOC/fonts/tfm/public/eco/ecobi1000.tfm + RELOC/fonts/tfm/public/eco/ecobi1095.tfm + RELOC/fonts/tfm/public/eco/ecobi1200.tfm + RELOC/fonts/tfm/public/eco/ecobi1440.tfm + RELOC/fonts/tfm/public/eco/ecobi1728.tfm + RELOC/fonts/tfm/public/eco/ecobi2074.tfm + RELOC/fonts/tfm/public/eco/ecobi2488.tfm + RELOC/fonts/tfm/public/eco/ecobi2986.tfm + RELOC/fonts/tfm/public/eco/ecobi3583.tfm + RELOC/fonts/tfm/public/eco/ecobl0500.tfm + RELOC/fonts/tfm/public/eco/ecobl0600.tfm + RELOC/fonts/tfm/public/eco/ecobl0700.tfm + RELOC/fonts/tfm/public/eco/ecobl0800.tfm + RELOC/fonts/tfm/public/eco/ecobl0900.tfm + RELOC/fonts/tfm/public/eco/ecobl1000.tfm + RELOC/fonts/tfm/public/eco/ecobl1095.tfm + RELOC/fonts/tfm/public/eco/ecobl1200.tfm + RELOC/fonts/tfm/public/eco/ecobl1440.tfm + RELOC/fonts/tfm/public/eco/ecobl1728.tfm + RELOC/fonts/tfm/public/eco/ecobl2074.tfm + RELOC/fonts/tfm/public/eco/ecobl2488.tfm + RELOC/fonts/tfm/public/eco/ecobl2986.tfm + RELOC/fonts/tfm/public/eco/ecobl3583.tfm + RELOC/fonts/tfm/public/eco/ecobx0500.tfm + RELOC/fonts/tfm/public/eco/ecobx0600.tfm + RELOC/fonts/tfm/public/eco/ecobx0700.tfm + RELOC/fonts/tfm/public/eco/ecobx0800.tfm + RELOC/fonts/tfm/public/eco/ecobx0900.tfm + RELOC/fonts/tfm/public/eco/ecobx1000.tfm + RELOC/fonts/tfm/public/eco/ecobx1095.tfm + RELOC/fonts/tfm/public/eco/ecobx1200.tfm + RELOC/fonts/tfm/public/eco/ecobx1440.tfm + RELOC/fonts/tfm/public/eco/ecobx1728.tfm + RELOC/fonts/tfm/public/eco/ecobx2074.tfm + RELOC/fonts/tfm/public/eco/ecobx2488.tfm + RELOC/fonts/tfm/public/eco/ecobx2986.tfm + RELOC/fonts/tfm/public/eco/ecobx3583.tfm + RELOC/fonts/tfm/public/eco/ecodh0500.tfm + RELOC/fonts/tfm/public/eco/ecodh0600.tfm + RELOC/fonts/tfm/public/eco/ecodh0700.tfm + RELOC/fonts/tfm/public/eco/ecodh0800.tfm + RELOC/fonts/tfm/public/eco/ecodh0900.tfm + RELOC/fonts/tfm/public/eco/ecodh1000.tfm + RELOC/fonts/tfm/public/eco/ecodh1095.tfm + RELOC/fonts/tfm/public/eco/ecodh1200.tfm + RELOC/fonts/tfm/public/eco/ecodh1440.tfm + RELOC/fonts/tfm/public/eco/ecodh1728.tfm + RELOC/fonts/tfm/public/eco/ecodh2074.tfm + RELOC/fonts/tfm/public/eco/ecodh2488.tfm + RELOC/fonts/tfm/public/eco/ecodh2986.tfm + RELOC/fonts/tfm/public/eco/ecodh3583.tfm + RELOC/fonts/tfm/public/eco/ecoit0600.tfm + RELOC/fonts/tfm/public/eco/ecoit0700.tfm + RELOC/fonts/tfm/public/eco/ecoit0800.tfm + RELOC/fonts/tfm/public/eco/ecoit0900.tfm + RELOC/fonts/tfm/public/eco/ecoit1000.tfm + RELOC/fonts/tfm/public/eco/ecoit1095.tfm + RELOC/fonts/tfm/public/eco/ecoit1200.tfm + RELOC/fonts/tfm/public/eco/ecoit1440.tfm + RELOC/fonts/tfm/public/eco/ecoit1728.tfm + RELOC/fonts/tfm/public/eco/ecoit2074.tfm + RELOC/fonts/tfm/public/eco/ecoit2488.tfm + RELOC/fonts/tfm/public/eco/ecoit2986.tfm + RELOC/fonts/tfm/public/eco/ecoit3583.tfm + RELOC/fonts/tfm/public/eco/ecorb0500.tfm + RELOC/fonts/tfm/public/eco/ecorb0600.tfm + RELOC/fonts/tfm/public/eco/ecorb0700.tfm + RELOC/fonts/tfm/public/eco/ecorb0800.tfm + RELOC/fonts/tfm/public/eco/ecorb0900.tfm + RELOC/fonts/tfm/public/eco/ecorb1000.tfm + RELOC/fonts/tfm/public/eco/ecorb1095.tfm + RELOC/fonts/tfm/public/eco/ecorb1200.tfm + RELOC/fonts/tfm/public/eco/ecorb1440.tfm + RELOC/fonts/tfm/public/eco/ecorb1728.tfm + RELOC/fonts/tfm/public/eco/ecorb2074.tfm + RELOC/fonts/tfm/public/eco/ecorb2488.tfm + RELOC/fonts/tfm/public/eco/ecorb2986.tfm + RELOC/fonts/tfm/public/eco/ecorb3583.tfm + RELOC/fonts/tfm/public/eco/ecorm0500.tfm + RELOC/fonts/tfm/public/eco/ecorm0600.tfm + RELOC/fonts/tfm/public/eco/ecorm0700.tfm + RELOC/fonts/tfm/public/eco/ecorm0800.tfm + RELOC/fonts/tfm/public/eco/ecorm0900.tfm + RELOC/fonts/tfm/public/eco/ecorm1000.tfm + RELOC/fonts/tfm/public/eco/ecorm1095.tfm + RELOC/fonts/tfm/public/eco/ecorm1200.tfm + RELOC/fonts/tfm/public/eco/ecorm1440.tfm + RELOC/fonts/tfm/public/eco/ecorm1728.tfm + RELOC/fonts/tfm/public/eco/ecorm2074.tfm + RELOC/fonts/tfm/public/eco/ecorm2488.tfm + RELOC/fonts/tfm/public/eco/ecorm2986.tfm + RELOC/fonts/tfm/public/eco/ecorm3583.tfm + RELOC/fonts/tfm/public/eco/ecosi0500.tfm + RELOC/fonts/tfm/public/eco/ecosi0600.tfm + RELOC/fonts/tfm/public/eco/ecosi0700.tfm + RELOC/fonts/tfm/public/eco/ecosi0800.tfm + RELOC/fonts/tfm/public/eco/ecosi0900.tfm + RELOC/fonts/tfm/public/eco/ecosi1000.tfm + RELOC/fonts/tfm/public/eco/ecosi1095.tfm + RELOC/fonts/tfm/public/eco/ecosi1200.tfm + RELOC/fonts/tfm/public/eco/ecosi1440.tfm + RELOC/fonts/tfm/public/eco/ecosi1728.tfm + RELOC/fonts/tfm/public/eco/ecosi2074.tfm + RELOC/fonts/tfm/public/eco/ecosi2488.tfm + RELOC/fonts/tfm/public/eco/ecosi2986.tfm + RELOC/fonts/tfm/public/eco/ecosi3583.tfm + RELOC/fonts/tfm/public/eco/ecosl0500.tfm + RELOC/fonts/tfm/public/eco/ecosl0600.tfm + RELOC/fonts/tfm/public/eco/ecosl0700.tfm + RELOC/fonts/tfm/public/eco/ecosl0800.tfm + RELOC/fonts/tfm/public/eco/ecosl0900.tfm + RELOC/fonts/tfm/public/eco/ecosl1000.tfm + RELOC/fonts/tfm/public/eco/ecosl1095.tfm + RELOC/fonts/tfm/public/eco/ecosl1200.tfm + RELOC/fonts/tfm/public/eco/ecosl1440.tfm + RELOC/fonts/tfm/public/eco/ecosl1728.tfm + RELOC/fonts/tfm/public/eco/ecosl2074.tfm + RELOC/fonts/tfm/public/eco/ecosl2488.tfm + RELOC/fonts/tfm/public/eco/ecosl2986.tfm + RELOC/fonts/tfm/public/eco/ecosl3583.tfm + RELOC/fonts/tfm/public/eco/ecoso0500.tfm + RELOC/fonts/tfm/public/eco/ecoso0600.tfm + RELOC/fonts/tfm/public/eco/ecoso0700.tfm + RELOC/fonts/tfm/public/eco/ecoso0800.tfm + RELOC/fonts/tfm/public/eco/ecoso0900.tfm + RELOC/fonts/tfm/public/eco/ecoso1000.tfm + RELOC/fonts/tfm/public/eco/ecoso1095.tfm + RELOC/fonts/tfm/public/eco/ecoso1200.tfm + RELOC/fonts/tfm/public/eco/ecoso1440.tfm + RELOC/fonts/tfm/public/eco/ecoso1728.tfm + RELOC/fonts/tfm/public/eco/ecoso2074.tfm + RELOC/fonts/tfm/public/eco/ecoso2488.tfm + RELOC/fonts/tfm/public/eco/ecoso2986.tfm + RELOC/fonts/tfm/public/eco/ecoso3583.tfm + RELOC/fonts/tfm/public/eco/ecoss0500.tfm + RELOC/fonts/tfm/public/eco/ecoss0600.tfm + RELOC/fonts/tfm/public/eco/ecoss0700.tfm + RELOC/fonts/tfm/public/eco/ecoss0800.tfm + RELOC/fonts/tfm/public/eco/ecoss0900.tfm + RELOC/fonts/tfm/public/eco/ecoss1000.tfm + RELOC/fonts/tfm/public/eco/ecoss1095.tfm + RELOC/fonts/tfm/public/eco/ecoss1200.tfm + RELOC/fonts/tfm/public/eco/ecoss1440.tfm + RELOC/fonts/tfm/public/eco/ecoss1728.tfm + RELOC/fonts/tfm/public/eco/ecoss2074.tfm + RELOC/fonts/tfm/public/eco/ecoss2488.tfm + RELOC/fonts/tfm/public/eco/ecoss2986.tfm + RELOC/fonts/tfm/public/eco/ecoss3583.tfm + RELOC/fonts/tfm/public/eco/ecost0600.tfm + RELOC/fonts/tfm/public/eco/ecost0700.tfm + RELOC/fonts/tfm/public/eco/ecost0800.tfm + RELOC/fonts/tfm/public/eco/ecost0900.tfm + RELOC/fonts/tfm/public/eco/ecost1000.tfm + RELOC/fonts/tfm/public/eco/ecost1095.tfm + RELOC/fonts/tfm/public/eco/ecost1200.tfm + RELOC/fonts/tfm/public/eco/ecost1440.tfm + RELOC/fonts/tfm/public/eco/ecost1728.tfm + RELOC/fonts/tfm/public/eco/ecost2074.tfm + RELOC/fonts/tfm/public/eco/ecost2488.tfm + RELOC/fonts/tfm/public/eco/ecost2986.tfm + RELOC/fonts/tfm/public/eco/ecost3583.tfm + RELOC/fonts/tfm/public/eco/ecosx0500.tfm + RELOC/fonts/tfm/public/eco/ecosx0600.tfm + RELOC/fonts/tfm/public/eco/ecosx0700.tfm + RELOC/fonts/tfm/public/eco/ecosx0800.tfm + RELOC/fonts/tfm/public/eco/ecosx0900.tfm + RELOC/fonts/tfm/public/eco/ecosx1000.tfm + RELOC/fonts/tfm/public/eco/ecosx1095.tfm + RELOC/fonts/tfm/public/eco/ecosx1200.tfm + RELOC/fonts/tfm/public/eco/ecosx1440.tfm + RELOC/fonts/tfm/public/eco/ecosx1728.tfm + RELOC/fonts/tfm/public/eco/ecosx2074.tfm + RELOC/fonts/tfm/public/eco/ecosx2488.tfm + RELOC/fonts/tfm/public/eco/ecosx2986.tfm + RELOC/fonts/tfm/public/eco/ecosx3583.tfm + RELOC/fonts/tfm/public/eco/ecoti0500.tfm + RELOC/fonts/tfm/public/eco/ecoti0600.tfm + RELOC/fonts/tfm/public/eco/ecoti0700.tfm + RELOC/fonts/tfm/public/eco/ecoti0800.tfm + RELOC/fonts/tfm/public/eco/ecoti0900.tfm + RELOC/fonts/tfm/public/eco/ecoti1000.tfm + RELOC/fonts/tfm/public/eco/ecoti1095.tfm + RELOC/fonts/tfm/public/eco/ecoti1200.tfm + RELOC/fonts/tfm/public/eco/ecoti1440.tfm + RELOC/fonts/tfm/public/eco/ecoti1728.tfm + RELOC/fonts/tfm/public/eco/ecoti2074.tfm + RELOC/fonts/tfm/public/eco/ecoti2488.tfm + RELOC/fonts/tfm/public/eco/ecoti2986.tfm + RELOC/fonts/tfm/public/eco/ecoti3583.tfm + RELOC/fonts/tfm/public/eco/ecott0600.tfm + RELOC/fonts/tfm/public/eco/ecott0700.tfm + RELOC/fonts/tfm/public/eco/ecott0800.tfm + RELOC/fonts/tfm/public/eco/ecott0900.tfm + RELOC/fonts/tfm/public/eco/ecott1000.tfm + RELOC/fonts/tfm/public/eco/ecott1095.tfm + RELOC/fonts/tfm/public/eco/ecott1200.tfm + RELOC/fonts/tfm/public/eco/ecott1440.tfm + RELOC/fonts/tfm/public/eco/ecott1728.tfm + RELOC/fonts/tfm/public/eco/ecott2074.tfm + RELOC/fonts/tfm/public/eco/ecott2488.tfm + RELOC/fonts/tfm/public/eco/ecott2986.tfm + RELOC/fonts/tfm/public/eco/ecott3583.tfm + RELOC/fonts/tfm/public/eco/ecoui0500.tfm + RELOC/fonts/tfm/public/eco/ecoui0600.tfm + RELOC/fonts/tfm/public/eco/ecoui0700.tfm + RELOC/fonts/tfm/public/eco/ecoui0800.tfm + RELOC/fonts/tfm/public/eco/ecoui0900.tfm + RELOC/fonts/tfm/public/eco/ecoui1000.tfm + RELOC/fonts/tfm/public/eco/ecoui1095.tfm + RELOC/fonts/tfm/public/eco/ecoui1200.tfm + RELOC/fonts/tfm/public/eco/ecoui1440.tfm + RELOC/fonts/tfm/public/eco/ecoui1728.tfm + RELOC/fonts/tfm/public/eco/ecoui2074.tfm + RELOC/fonts/tfm/public/eco/ecoui2488.tfm + RELOC/fonts/tfm/public/eco/ecoui2986.tfm + RELOC/fonts/tfm/public/eco/ecoui3583.tfm + RELOC/fonts/tfm/public/eco/ecovi0600.tfm + RELOC/fonts/tfm/public/eco/ecovi0700.tfm + RELOC/fonts/tfm/public/eco/ecovi0800.tfm + RELOC/fonts/tfm/public/eco/ecovi0900.tfm + RELOC/fonts/tfm/public/eco/ecovi1000.tfm + RELOC/fonts/tfm/public/eco/ecovi1095.tfm + RELOC/fonts/tfm/public/eco/ecovi1200.tfm + RELOC/fonts/tfm/public/eco/ecovi1440.tfm + RELOC/fonts/tfm/public/eco/ecovi1728.tfm + RELOC/fonts/tfm/public/eco/ecovi2074.tfm + RELOC/fonts/tfm/public/eco/ecovi2488.tfm + RELOC/fonts/tfm/public/eco/ecovi2986.tfm + RELOC/fonts/tfm/public/eco/ecovi3583.tfm + RELOC/fonts/tfm/public/eco/ecovt0600.tfm + RELOC/fonts/tfm/public/eco/ecovt0700.tfm + RELOC/fonts/tfm/public/eco/ecovt0800.tfm + RELOC/fonts/tfm/public/eco/ecovt0900.tfm + RELOC/fonts/tfm/public/eco/ecovt1000.tfm + RELOC/fonts/tfm/public/eco/ecovt1095.tfm + RELOC/fonts/tfm/public/eco/ecovt1200.tfm + RELOC/fonts/tfm/public/eco/ecovt1440.tfm + RELOC/fonts/tfm/public/eco/ecovt1728.tfm + RELOC/fonts/tfm/public/eco/ecovt2074.tfm + RELOC/fonts/tfm/public/eco/ecovt2488.tfm + RELOC/fonts/tfm/public/eco/ecovt2986.tfm + RELOC/fonts/tfm/public/eco/ecovt3583.tfm + RELOC/fonts/vf/public/eco/ecobi0500.vf + RELOC/fonts/vf/public/eco/ecobi0600.vf + RELOC/fonts/vf/public/eco/ecobi0700.vf + RELOC/fonts/vf/public/eco/ecobi0800.vf + RELOC/fonts/vf/public/eco/ecobi0900.vf + RELOC/fonts/vf/public/eco/ecobi1000.vf + RELOC/fonts/vf/public/eco/ecobi1095.vf + RELOC/fonts/vf/public/eco/ecobi1200.vf + RELOC/fonts/vf/public/eco/ecobi1440.vf + RELOC/fonts/vf/public/eco/ecobi1728.vf + RELOC/fonts/vf/public/eco/ecobi2074.vf + RELOC/fonts/vf/public/eco/ecobi2488.vf + RELOC/fonts/vf/public/eco/ecobi2986.vf + RELOC/fonts/vf/public/eco/ecobi3583.vf + RELOC/fonts/vf/public/eco/ecobl0500.vf + RELOC/fonts/vf/public/eco/ecobl0600.vf + RELOC/fonts/vf/public/eco/ecobl0700.vf + RELOC/fonts/vf/public/eco/ecobl0800.vf + RELOC/fonts/vf/public/eco/ecobl0900.vf + RELOC/fonts/vf/public/eco/ecobl1000.vf + RELOC/fonts/vf/public/eco/ecobl1095.vf + RELOC/fonts/vf/public/eco/ecobl1200.vf + RELOC/fonts/vf/public/eco/ecobl1440.vf + RELOC/fonts/vf/public/eco/ecobl1728.vf + RELOC/fonts/vf/public/eco/ecobl2074.vf + RELOC/fonts/vf/public/eco/ecobl2488.vf + RELOC/fonts/vf/public/eco/ecobl2986.vf + RELOC/fonts/vf/public/eco/ecobl3583.vf + RELOC/fonts/vf/public/eco/ecobx0500.vf + RELOC/fonts/vf/public/eco/ecobx0600.vf + RELOC/fonts/vf/public/eco/ecobx0700.vf + RELOC/fonts/vf/public/eco/ecobx0800.vf + RELOC/fonts/vf/public/eco/ecobx0900.vf + RELOC/fonts/vf/public/eco/ecobx1000.vf + RELOC/fonts/vf/public/eco/ecobx1095.vf + RELOC/fonts/vf/public/eco/ecobx1200.vf + RELOC/fonts/vf/public/eco/ecobx1440.vf + RELOC/fonts/vf/public/eco/ecobx1728.vf + RELOC/fonts/vf/public/eco/ecobx2074.vf + RELOC/fonts/vf/public/eco/ecobx2488.vf + RELOC/fonts/vf/public/eco/ecobx2986.vf + RELOC/fonts/vf/public/eco/ecobx3583.vf + RELOC/fonts/vf/public/eco/ecodh0500.vf + RELOC/fonts/vf/public/eco/ecodh0600.vf + RELOC/fonts/vf/public/eco/ecodh0700.vf + RELOC/fonts/vf/public/eco/ecodh0800.vf + RELOC/fonts/vf/public/eco/ecodh0900.vf + RELOC/fonts/vf/public/eco/ecodh1000.vf + RELOC/fonts/vf/public/eco/ecodh1095.vf + RELOC/fonts/vf/public/eco/ecodh1200.vf + RELOC/fonts/vf/public/eco/ecodh1440.vf + RELOC/fonts/vf/public/eco/ecodh1728.vf + RELOC/fonts/vf/public/eco/ecodh2074.vf + RELOC/fonts/vf/public/eco/ecodh2488.vf + RELOC/fonts/vf/public/eco/ecodh2986.vf + RELOC/fonts/vf/public/eco/ecodh3583.vf + RELOC/fonts/vf/public/eco/ecoit0600.vf + RELOC/fonts/vf/public/eco/ecoit0700.vf + RELOC/fonts/vf/public/eco/ecoit0800.vf + RELOC/fonts/vf/public/eco/ecoit0900.vf + RELOC/fonts/vf/public/eco/ecoit1000.vf + RELOC/fonts/vf/public/eco/ecoit1095.vf + RELOC/fonts/vf/public/eco/ecoit1200.vf + RELOC/fonts/vf/public/eco/ecoit1440.vf + RELOC/fonts/vf/public/eco/ecoit1728.vf + RELOC/fonts/vf/public/eco/ecoit2074.vf + RELOC/fonts/vf/public/eco/ecoit2488.vf + RELOC/fonts/vf/public/eco/ecoit2986.vf + RELOC/fonts/vf/public/eco/ecoit3583.vf + RELOC/fonts/vf/public/eco/ecorb0500.vf + RELOC/fonts/vf/public/eco/ecorb0600.vf + RELOC/fonts/vf/public/eco/ecorb0700.vf + RELOC/fonts/vf/public/eco/ecorb0800.vf + RELOC/fonts/vf/public/eco/ecorb0900.vf + RELOC/fonts/vf/public/eco/ecorb1000.vf + RELOC/fonts/vf/public/eco/ecorb1095.vf + RELOC/fonts/vf/public/eco/ecorb1200.vf + RELOC/fonts/vf/public/eco/ecorb1440.vf + RELOC/fonts/vf/public/eco/ecorb1728.vf + RELOC/fonts/vf/public/eco/ecorb2074.vf + RELOC/fonts/vf/public/eco/ecorb2488.vf + RELOC/fonts/vf/public/eco/ecorb2986.vf + RELOC/fonts/vf/public/eco/ecorb3583.vf + RELOC/fonts/vf/public/eco/ecorm0500.vf + RELOC/fonts/vf/public/eco/ecorm0600.vf + RELOC/fonts/vf/public/eco/ecorm0700.vf + RELOC/fonts/vf/public/eco/ecorm0800.vf + RELOC/fonts/vf/public/eco/ecorm0900.vf + RELOC/fonts/vf/public/eco/ecorm1000.vf + RELOC/fonts/vf/public/eco/ecorm1095.vf + RELOC/fonts/vf/public/eco/ecorm1200.vf + RELOC/fonts/vf/public/eco/ecorm1440.vf + RELOC/fonts/vf/public/eco/ecorm1728.vf + RELOC/fonts/vf/public/eco/ecorm2074.vf + RELOC/fonts/vf/public/eco/ecorm2488.vf + RELOC/fonts/vf/public/eco/ecorm2986.vf + RELOC/fonts/vf/public/eco/ecorm3583.vf + RELOC/fonts/vf/public/eco/ecosi0500.vf + RELOC/fonts/vf/public/eco/ecosi0600.vf + RELOC/fonts/vf/public/eco/ecosi0700.vf + RELOC/fonts/vf/public/eco/ecosi0800.vf + RELOC/fonts/vf/public/eco/ecosi0900.vf + RELOC/fonts/vf/public/eco/ecosi1000.vf + RELOC/fonts/vf/public/eco/ecosi1095.vf + RELOC/fonts/vf/public/eco/ecosi1200.vf + RELOC/fonts/vf/public/eco/ecosi1440.vf + RELOC/fonts/vf/public/eco/ecosi1728.vf + RELOC/fonts/vf/public/eco/ecosi2074.vf + RELOC/fonts/vf/public/eco/ecosi2488.vf + RELOC/fonts/vf/public/eco/ecosi2986.vf + RELOC/fonts/vf/public/eco/ecosi3583.vf + RELOC/fonts/vf/public/eco/ecosl0500.vf + RELOC/fonts/vf/public/eco/ecosl0600.vf + RELOC/fonts/vf/public/eco/ecosl0700.vf + RELOC/fonts/vf/public/eco/ecosl0800.vf + RELOC/fonts/vf/public/eco/ecosl0900.vf + RELOC/fonts/vf/public/eco/ecosl1000.vf + RELOC/fonts/vf/public/eco/ecosl1095.vf + RELOC/fonts/vf/public/eco/ecosl1200.vf + RELOC/fonts/vf/public/eco/ecosl1440.vf + RELOC/fonts/vf/public/eco/ecosl1728.vf + RELOC/fonts/vf/public/eco/ecosl2074.vf + RELOC/fonts/vf/public/eco/ecosl2488.vf + RELOC/fonts/vf/public/eco/ecosl2986.vf + RELOC/fonts/vf/public/eco/ecosl3583.vf + RELOC/fonts/vf/public/eco/ecoso0500.vf + RELOC/fonts/vf/public/eco/ecoso0600.vf + RELOC/fonts/vf/public/eco/ecoso0700.vf + RELOC/fonts/vf/public/eco/ecoso0800.vf + RELOC/fonts/vf/public/eco/ecoso0900.vf + RELOC/fonts/vf/public/eco/ecoso1000.vf + RELOC/fonts/vf/public/eco/ecoso1095.vf + RELOC/fonts/vf/public/eco/ecoso1200.vf + RELOC/fonts/vf/public/eco/ecoso1440.vf + RELOC/fonts/vf/public/eco/ecoso1728.vf + RELOC/fonts/vf/public/eco/ecoso2074.vf + RELOC/fonts/vf/public/eco/ecoso2488.vf + RELOC/fonts/vf/public/eco/ecoso2986.vf + RELOC/fonts/vf/public/eco/ecoso3583.vf + RELOC/fonts/vf/public/eco/ecoss0500.vf + RELOC/fonts/vf/public/eco/ecoss0600.vf + RELOC/fonts/vf/public/eco/ecoss0700.vf + RELOC/fonts/vf/public/eco/ecoss0800.vf + RELOC/fonts/vf/public/eco/ecoss0900.vf + RELOC/fonts/vf/public/eco/ecoss1000.vf + RELOC/fonts/vf/public/eco/ecoss1095.vf + RELOC/fonts/vf/public/eco/ecoss1200.vf + RELOC/fonts/vf/public/eco/ecoss1440.vf + RELOC/fonts/vf/public/eco/ecoss1728.vf + RELOC/fonts/vf/public/eco/ecoss2074.vf + RELOC/fonts/vf/public/eco/ecoss2488.vf + RELOC/fonts/vf/public/eco/ecoss2986.vf + RELOC/fonts/vf/public/eco/ecoss3583.vf + RELOC/fonts/vf/public/eco/ecost0600.vf + RELOC/fonts/vf/public/eco/ecost0700.vf + RELOC/fonts/vf/public/eco/ecost0800.vf + RELOC/fonts/vf/public/eco/ecost0900.vf + RELOC/fonts/vf/public/eco/ecost1000.vf + RELOC/fonts/vf/public/eco/ecost1095.vf + RELOC/fonts/vf/public/eco/ecost1200.vf + RELOC/fonts/vf/public/eco/ecost1440.vf + RELOC/fonts/vf/public/eco/ecost1728.vf + RELOC/fonts/vf/public/eco/ecost2074.vf + RELOC/fonts/vf/public/eco/ecost2488.vf + RELOC/fonts/vf/public/eco/ecost2986.vf + RELOC/fonts/vf/public/eco/ecost3583.vf + RELOC/fonts/vf/public/eco/ecosx0500.vf + RELOC/fonts/vf/public/eco/ecosx0600.vf + RELOC/fonts/vf/public/eco/ecosx0700.vf + RELOC/fonts/vf/public/eco/ecosx0800.vf + RELOC/fonts/vf/public/eco/ecosx0900.vf + RELOC/fonts/vf/public/eco/ecosx1000.vf + RELOC/fonts/vf/public/eco/ecosx1095.vf + RELOC/fonts/vf/public/eco/ecosx1200.vf + RELOC/fonts/vf/public/eco/ecosx1440.vf + RELOC/fonts/vf/public/eco/ecosx1728.vf + RELOC/fonts/vf/public/eco/ecosx2074.vf + RELOC/fonts/vf/public/eco/ecosx2488.vf + RELOC/fonts/vf/public/eco/ecosx2986.vf + RELOC/fonts/vf/public/eco/ecosx3583.vf + RELOC/fonts/vf/public/eco/ecoti0500.vf + RELOC/fonts/vf/public/eco/ecoti0600.vf + RELOC/fonts/vf/public/eco/ecoti0700.vf + RELOC/fonts/vf/public/eco/ecoti0800.vf + RELOC/fonts/vf/public/eco/ecoti0900.vf + RELOC/fonts/vf/public/eco/ecoti1000.vf + RELOC/fonts/vf/public/eco/ecoti1095.vf + RELOC/fonts/vf/public/eco/ecoti1200.vf + RELOC/fonts/vf/public/eco/ecoti1440.vf + RELOC/fonts/vf/public/eco/ecoti1728.vf + RELOC/fonts/vf/public/eco/ecoti2074.vf + RELOC/fonts/vf/public/eco/ecoti2488.vf + RELOC/fonts/vf/public/eco/ecoti2986.vf + RELOC/fonts/vf/public/eco/ecoti3583.vf + RELOC/fonts/vf/public/eco/ecott0600.vf + RELOC/fonts/vf/public/eco/ecott0700.vf + RELOC/fonts/vf/public/eco/ecott0800.vf + RELOC/fonts/vf/public/eco/ecott0900.vf + RELOC/fonts/vf/public/eco/ecott1000.vf + RELOC/fonts/vf/public/eco/ecott1095.vf + RELOC/fonts/vf/public/eco/ecott1200.vf + RELOC/fonts/vf/public/eco/ecott1440.vf + RELOC/fonts/vf/public/eco/ecott1728.vf + RELOC/fonts/vf/public/eco/ecott2074.vf + RELOC/fonts/vf/public/eco/ecott2488.vf + RELOC/fonts/vf/public/eco/ecott2986.vf + RELOC/fonts/vf/public/eco/ecott3583.vf + RELOC/fonts/vf/public/eco/ecoui0500.vf + RELOC/fonts/vf/public/eco/ecoui0600.vf + RELOC/fonts/vf/public/eco/ecoui0700.vf + RELOC/fonts/vf/public/eco/ecoui0800.vf + RELOC/fonts/vf/public/eco/ecoui0900.vf + RELOC/fonts/vf/public/eco/ecoui1000.vf + RELOC/fonts/vf/public/eco/ecoui1095.vf + RELOC/fonts/vf/public/eco/ecoui1200.vf + RELOC/fonts/vf/public/eco/ecoui1440.vf + RELOC/fonts/vf/public/eco/ecoui1728.vf + RELOC/fonts/vf/public/eco/ecoui2074.vf + RELOC/fonts/vf/public/eco/ecoui2488.vf + RELOC/fonts/vf/public/eco/ecoui2986.vf + RELOC/fonts/vf/public/eco/ecoui3583.vf + RELOC/fonts/vf/public/eco/ecovi0600.vf + RELOC/fonts/vf/public/eco/ecovi0700.vf + RELOC/fonts/vf/public/eco/ecovi0800.vf + RELOC/fonts/vf/public/eco/ecovi0900.vf + RELOC/fonts/vf/public/eco/ecovi1000.vf + RELOC/fonts/vf/public/eco/ecovi1095.vf + RELOC/fonts/vf/public/eco/ecovi1200.vf + RELOC/fonts/vf/public/eco/ecovi1440.vf + RELOC/fonts/vf/public/eco/ecovi1728.vf + RELOC/fonts/vf/public/eco/ecovi2074.vf + RELOC/fonts/vf/public/eco/ecovi2488.vf + RELOC/fonts/vf/public/eco/ecovi2986.vf + RELOC/fonts/vf/public/eco/ecovi3583.vf + RELOC/fonts/vf/public/eco/ecovt0600.vf + RELOC/fonts/vf/public/eco/ecovt0700.vf + RELOC/fonts/vf/public/eco/ecovt0800.vf + RELOC/fonts/vf/public/eco/ecovt0900.vf + RELOC/fonts/vf/public/eco/ecovt1000.vf + RELOC/fonts/vf/public/eco/ecovt1095.vf + RELOC/fonts/vf/public/eco/ecovt1200.vf + RELOC/fonts/vf/public/eco/ecovt1440.vf + RELOC/fonts/vf/public/eco/ecovt1728.vf + RELOC/fonts/vf/public/eco/ecovt2074.vf + RELOC/fonts/vf/public/eco/ecovt2488.vf + RELOC/fonts/vf/public/eco/ecovt2986.vf + RELOC/fonts/vf/public/eco/ecovt3583.vf + RELOC/tex/latex/eco/T1cmodh.fd + RELOC/tex/latex/eco/T1cmor.fd + RELOC/tex/latex/eco/T1cmoss.fd + RELOC/tex/latex/eco/T1cmott.fd + RELOC/tex/latex/eco/T1cmovt.fd + RELOC/tex/latex/eco/eco.sty +catalogue-ctan /fonts/eco +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics font font-virtual +catalogue-version 1.3 + +name ecobiblatex +category Package +revision 39233 +shortdesc Global Ecology and Biogeography BibLaTeX styles for the Biber backend +relocated 1 +longdesc This bundle provides a set of styles for creating +longdesc bibliographies using BibLaTeX in the style of the Global +longdesc Ecology and Biogeography journal. It comprises styles based on +longdesc the conventions of John Wiley & Sons Ltd and Global Ecology and +longdesc Biogeography Conventions (c). +containersize 1676 +containerchecksum bfa49fbd340223db68ae6d0906b617c06605a41aa141ce7863d5ab85b4da44eaba554b93bf163f7e4b7cd2c5131e22ba30161082663588ce85240fe2147433a5 +doccontainersize 436624 +doccontainerchecksum e12bf5be5028e848baf10fed969a5ea94e2246153b481fc1b8ab55a6fbb5c356391ec4ccdb37ae7c71d76885000d9d74e46271402ed83ed08d1d67a94cf372d9 +docfiles size=115 + RELOC/doc/latex/ecobiblatex/README.txt details="Readme" + RELOC/doc/latex/ecobiblatex/ecobiblatex.bib + RELOC/doc/latex/ecobiblatex/ecobiblatex.pdf details="Package documentation" + RELOC/doc/latex/ecobiblatex/ecobiblatex.tex +runfiles size=2 + RELOC/tex/latex/ecobiblatex/ecobiblatex.bbx + RELOC/tex/latex/ecobiblatex/ecobiblatex.cbx +catalogue-ctan /macros/latex/contrib/biblatex-contrib/ecobiblatex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics biblatex +catalogue-version 1.0 + +name econ-bst +category Package +revision 49351 +shortdesc BibTeX style for economics papers +relocated 1 +longdesc This is a BibTeX style file for papers in economics. It +longdesc provides the following features: author-year type citation +longdesc reference style used in economics papers highly customizable +longdesc use of "certified random order" as proposed by Ray Robson +longdesc (2018) +containersize 13168 +containerchecksum 8d54d44602d10d09ffa23b289763e439e0613a753039acfce5c6b2ddb3801886bc4c621a3749730488b2ae22cf41f5d0b887dbaf2fb0050afcddee2b32d02eec +doccontainersize 659812 +doccontainerchecksum fbbb25b129e477d89263e5bdfd9e998378496ed0be0b77ae580cdd3a6bd539827321fc966d08ee7f71babd3911ec4e3aa1eba9f0e0b7b41dbbbd87c61187a891 +docfiles size=410 + RELOC/doc/bibtex/econ-bst/CHANGES.md + RELOC/doc/bibtex/econ-bst/README.md details="Readme" + RELOC/doc/bibtex/econ-bst/customization/README.md details="Readme" + RELOC/doc/bibtex/econ-bst/customization/cited-part.tex + RELOC/doc/bibtex/econ-bst/customization/econ-a.bst + RELOC/doc/bibtex/econ-bst/customization/econ-a.pdf + RELOC/doc/bibtex/econ-bst/customization/econ-a.tex + RELOC/doc/bibtex/econ-bst/customization/econ-aer.bst + RELOC/doc/bibtex/econ-bst/customization/econ-aer.pdf + RELOC/doc/bibtex/econ-bst/customization/econ-aer.tex + RELOC/doc/bibtex/econ-bst/customization/econ-b.bst + RELOC/doc/bibtex/econ-bst/customization/econ-b.pdf + RELOC/doc/bibtex/econ-bst/customization/econ-b.tex + RELOC/doc/bibtex/econ-bst/customization/econ-default.pdf + RELOC/doc/bibtex/econ-bst/customization/econ-default.tex + RELOC/doc/bibtex/econ-bst/customization/econ-econometrica.bst + RELOC/doc/bibtex/econ-bst/customization/econ-econometrica.pdf + RELOC/doc/bibtex/econ-bst/customization/econ-econometrica.tex + RELOC/doc/bibtex/econ-bst/customization/econ-jet.bst + RELOC/doc/bibtex/econ-bst/customization/econ-jet.pdf + RELOC/doc/bibtex/econ-bst/customization/econ-jet.tex + RELOC/doc/bibtex/econ-bst/customization/econ-jie.bst + RELOC/doc/bibtex/econ-bst/customization/econ-jie.pdf + RELOC/doc/bibtex/econ-bst/customization/econ-jie.tex + RELOC/doc/bibtex/econ-bst/customization/econ-no-sort.bst + RELOC/doc/bibtex/econ-bst/customization/econ-no-sort.pdf + RELOC/doc/bibtex/econ-bst/customization/econ-no-sort.tex + RELOC/doc/bibtex/econ-bst/customization/econ-numbers.pdf + RELOC/doc/bibtex/econ-bst/customization/econ-numbers.tex + RELOC/doc/bibtex/econ-bst/econ-example.bib + RELOC/doc/bibtex/econ-bst/econ-example.pdf details="Example of use" + RELOC/doc/bibtex/econ-bst/econ-example.tex +runfiles size=20 + RELOC/bibtex/bst/econ-bst/econ.bst +catalogue-also economic +catalogue-contact-home https://github.com/ShiroTakeda/econ-bst +catalogue-ctan /biblio/bibtex/contrib/econ-bst +catalogue-date 2018-12-19 05:04:41 +0100 +catalogue-license lppl1.3 +catalogue-topics bibtex-sty +catalogue-version 2.5 + +name econometrics +category Package +revision 39396 +shortdesc Defines some commands that simplify mathematic notation in economic and econometric writing +relocated 1 +longdesc Econometrics is a package that defines some commands that +longdesc simplify mathematic notation in economic and econometrics +longdesc writing. The commands are related to the notation of vectors, +longdesc matrices, sets, calligraphic and roman letters statistical +longdesc distributions constants and symbols matrix operators and +longdesc statistical operators. The package is based on "Notation in +longdesc Econometrics: a proposal for a standard" by Karim Abadir and +longdesc Jan R. Magnus, The Econometrics Journal (2002), 5, 76-90. +containersize 2520 +containerchecksum 40c205421ca11111d2aeae9f84b4e418e6b4f260858805c03029753af03def61221b81eabc18dea5fd4cf5722e3dca1ff9f575264257db3a8431b061177530dd +doccontainersize 190740 +doccontainerchecksum b5992f38536f0e4ec1c570d78523530b53e428d922517d0ad380ec76dcd2ee21243b9979e876a7f809b1581f4c4b6907bcd3f581dff97c13a0fea2a0fca1d790 +docfiles size=53 + RELOC/doc/latex/econometrics/README.txt details="Readme" + RELOC/doc/latex/econometrics/econometrics.pdf details="Package documentation" + RELOC/doc/latex/econometrics/econometrics.tex +runfiles size=2 + RELOC/tex/latex/econometrics/econometrics.sty +catalogue-ctan /macros/latex/contrib/econometrics +catalogue-date 2018-01-07 12:02:30 +0100 +catalogue-license lppl1.3 +catalogue-topics statistics catalogue-version 1.0 +name economic +category Package +revision 32639 +shortdesc BibTeX support for submitting to Economics journals +relocated 1 +longdesc The bundle offers macros and BibTeX styles for the American +longdesc Economic Review (AER), the American Journal of Agricultural +longdesc Economics (AJAE), the Canadian Journal of Economics (CJE), the +longdesc European Review of Agricultural Economics (ERAE), the +longdesc International Economic Review (IER) and Economica. The macro +longdesc sets are based on (and require) the harvard package, and all +longdesc provide variations of author-date styles of presentation. +containersize 31200 +containerchecksum d8bad4a76eefc8729ea06e93a63adadfeed57de5694775bc44f1dfe03217101609ada6d12b7a2382b9d80d068f0c51fb2ef45c2cf289fe294efe23fcf0bd028a +doccontainersize 815976 +doccontainerchecksum 39c319f14ee3d6fb10fa3c4f5d3a873322d332bc181a33a70020a9fa787383b72809b3b9aea5fcf4a3cff9930543e0d0269f74146c12f2b0d77a4f77c159eeb7 +docfiles size=268 + RELOC/doc/bibtex/economic/CHANGELOG + RELOC/doc/bibtex/economic/NEWS + RELOC/doc/bibtex/economic/README details="Readme" + RELOC/doc/bibtex/economic/aer-cje-ex.bib + RELOC/doc/bibtex/economic/aer-cje-ex.tex + RELOC/doc/bibtex/economic/aer-natbib-ex.tex + RELOC/doc/bibtex/economic/ajae-ex.bib + RELOC/doc/bibtex/economic/ajae-ex.pdf + RELOC/doc/bibtex/economic/ajae-ex.tex + RELOC/doc/bibtex/economic/apecon-ex.bib + RELOC/doc/bibtex/economic/apecon-ex.pdf + RELOC/doc/bibtex/economic/apecon-ex.tex + RELOC/doc/bibtex/economic/ecca-ex.bib + RELOC/doc/bibtex/economic/ecca-ex.pdf + RELOC/doc/bibtex/economic/ecca-ex.tex + RELOC/doc/bibtex/economic/erae-ex.bib + RELOC/doc/bibtex/economic/erae-ex.pdf + RELOC/doc/bibtex/economic/erae-ex.tex + RELOC/doc/bibtex/economic/ier-bib-test.pdf + RELOC/doc/bibtex/economic/ier-bib-test.tex + RELOC/doc/bibtex/economic/ier-ex.bib + RELOC/doc/bibtex/economic/itaxpf-ex-title.pdf + RELOC/doc/bibtex/economic/itaxpf-ex-title.tex + RELOC/doc/bibtex/economic/itaxpf-ex.bib + RELOC/doc/bibtex/economic/itaxpf-ex.pdf + RELOC/doc/bibtex/economic/itaxpf-ex.tex + RELOC/doc/bibtex/economic/oegatb-ex.bib + RELOC/doc/bibtex/economic/oegatb-ex.pdf + RELOC/doc/bibtex/economic/oegatb-ex.png + RELOC/doc/bibtex/economic/oegatb-ex.tex +runfiles size=171 + RELOC/bibtex/bst/economic/aer.bst + RELOC/bibtex/bst/economic/aertt.bst + RELOC/bibtex/bst/economic/agecon.bst + RELOC/bibtex/bst/economic/ajae.bst + RELOC/bibtex/bst/economic/apecon.bst + RELOC/bibtex/bst/economic/cje.bst + RELOC/bibtex/bst/economic/ecca.bst + RELOC/bibtex/bst/economic/ecta.bst + RELOC/bibtex/bst/economic/erae.bst + RELOC/bibtex/bst/economic/ier.bst + RELOC/bibtex/bst/economic/itaxpf.bst + RELOC/bibtex/bst/economic/jae.bst + RELOC/bibtex/bst/economic/jpe.bst + RELOC/bibtex/bst/economic/jss2.bst + RELOC/bibtex/bst/economic/oega.bst + RELOC/bibtex/bst/economic/regstud.bst + RELOC/bibtex/bst/economic/tandfx.bst + RELOC/bibtex/bst/economic/worlddev.bst + RELOC/tex/latex/economic/aer.sty + RELOC/tex/latex/economic/aertt.sty + RELOC/tex/latex/economic/agecon.cls + RELOC/tex/latex/economic/ajae.cls + RELOC/tex/latex/economic/apecon.cls + RELOC/tex/latex/economic/cje.sty + RELOC/tex/latex/economic/ecca.cls + RELOC/tex/latex/economic/erae.cls + RELOC/tex/latex/economic/itaxpf.cls + RELOC/tex/latex/economic/jrurstud.cls + RELOC/tex/latex/economic/njf.cls + RELOC/tex/latex/economic/oegatb.cls + RELOC/tex/latex/economic/pocoec.cls + RELOC/tex/latex/economic/regstud.cls + RELOC/tex/latex/economic/worlddev.cls +catalogue-contact-repository http://sourceforge.net/projects/economtex/ +catalogue-ctan /biblio/bibtex/contrib/economic +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl +catalogue-topics bibtex-sty + +name ecothesis +category Package +revision 48007 +shortdesc LaTeX thesis template for the Universidade Federal de Vicosa (UFV), Brazil +relocated 1 +longdesc The package provides a LaTeX thesis template for the +longdesc Universidade Federal de Vicosa (UFV), Brazil. +containersize 484 +containerchecksum bed57bb0ea79c74517b26e51d88966f9a05943c4df6464200ffe36f486e9cabccaef2fced0a231b40b40410ef32c44a3ebaa984e6def30bde5d426dc68e42309 +doccontainersize 341312 +doccontainerchecksum 7e1e3716de1eb964142a85ab31e28fc807ca1433f964e44cc8a7103b9ed023457bcdb01af2797a5e22fcf75a2e851d9c534f17937fdc44e4ebb6b5a670c6c115 +docfiles size=104 + RELOC/doc/latex/ecothesis/README.txt details="Readme" + RELOC/doc/latex/ecothesis/capitulos/cap01/introduction.pdf + RELOC/doc/latex/ecothesis/capitulos/cap01/introduction.tex + RELOC/doc/latex/ecothesis/capitulos/cap01/referencias.bib + RELOC/doc/latex/ecothesis/capitulos/cap02/cap02.pdf + RELOC/doc/latex/ecothesis/capitulos/cap02/cap02.tex + RELOC/doc/latex/ecothesis/capitulos/cap02/referencias.bib + RELOC/doc/latex/ecothesis/capitulos/cap03/cap03.pdf + RELOC/doc/latex/ecothesis/capitulos/cap03/cap03.tex + RELOC/doc/latex/ecothesis/capitulos/cap03/referencias.bib + RELOC/doc/latex/ecothesis/dados.tex + RELOC/doc/latex/ecothesis/ecothesis.pdf details="Package documentation" language="pt-br" + RELOC/doc/latex/ecothesis/ecothesis.tex + RELOC/doc/latex/ecothesis/main.pdf + RELOC/doc/latex/ecothesis/main.tex + RELOC/doc/latex/ecothesis/preambulo/abstract.tex + RELOC/doc/latex/ecothesis/preambulo/agradecimentos.tex + RELOC/doc/latex/ecothesis/preambulo/aprovacao.tex + RELOC/doc/latex/ecothesis/preambulo/capa.tex + RELOC/doc/latex/ecothesis/preambulo/dedicatoria.tex + RELOC/doc/latex/ecothesis/preambulo/epigrafe.tex + RELOC/doc/latex/ecothesis/preambulo/resumo.tex + RELOC/doc/latex/ecothesis/res_abs.tex +catalogue-contact-repository https://github.com/ViniciusBRodrigues/TeseUFVLatex +catalogue-ctan /macros/latex/contrib/ecothesis +catalogue-date 2018-06-20 05:09:58 +0200 +catalogue-license lppl1.3c +catalogue-topics dissertation +catalogue-version 1.2 + name ecv category Package revision 24928 -shortdesc A fancy Curriculum Vitae class. +shortdesc A fancy Curriculum Vitae class relocated 1 longdesc The class provides an environment for creating a fancily laid longdesc out tabular curriculum vitae inspired by the european longdesc curriculum vitae. The distribution comes with a German and an longdesc English template. -runfiles size=6 - RELOC/tex/latex/ecv/ecv.cls - RELOC/tex/latex/ecv/ecvEnglish.ldf - RELOC/tex/latex/ecv/ecvGerman.ldf - RELOC/tex/latex/ecv/ecvNLS.sty +containersize 3792 +containerchecksum 0ff0a352516aa90a19eb1a0a9bdc651601edc63f03c5cce9face4bd45b359734d954e2b7859a0244015e3933eaa2d3803d5579ab9260dde51a0ec89db8034910 +doccontainersize 252048 +doccontainerchecksum 1cb8871b552a3d91fb59c644ea98373742ba9bfea64a92911f67f2795afaf01babe82a691fb3344f236e42b92860b754d7e92132b266713948cd1a6af13c58d7 docfiles size=104 RELOC/doc/latex/ecv/COPYING - RELOC/doc/latex/ecv/README + RELOC/doc/latex/ecv/README details="Readme" RELOC/doc/latex/ecv/docstrip.cfg - RELOC/doc/latex/ecv/ecv.pdf - RELOC/doc/latex/ecv/template/CV-template_de.pdf + RELOC/doc/latex/ecv/ecv.pdf details="Package documentation" + RELOC/doc/latex/ecv/template/CV-template_de.pdf details="Template (German)" language="de" RELOC/doc/latex/ecv/template/CV-template_de.tex - RELOC/doc/latex/ecv/template/CV-template_en.pdf + RELOC/doc/latex/ecv/template/CV-template_en.pdf details="Template (English)" language="en" RELOC/doc/latex/ecv/template/CV-template_en.tex RELOC/doc/latex/ecv/template/Makefile RELOC/doc/latex/ecv/template/portrait.eps +srccontainersize 10184 +srccontainerchecksum e17e9d577cb3a562a381c8ee8a09e7b3bbdd236812fd9e647b72fa18d6f7b11c9a44f70376d5dfdf2a3b81d1480b055d23e8889661b557e88c03f02eed033946 srcfiles size=11 RELOC/source/latex/ecv/ecv.dtx RELOC/source/latex/ecv/ecv.ins +runfiles size=6 + RELOC/tex/latex/ecv/ecv.cls + RELOC/tex/latex/ecv/ecvEnglish.ldf + RELOC/tex/latex/ecv/ecvGerman.ldf + RELOC/tex/latex/ecv/ecvNLS.sty +catalogue-also curve europecv catalogue-ctan /macros/latex/contrib/ecv -catalogue-date 2014-11-07 14:37:14 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics cv class catalogue-version 0.3 +name ed +category Package +revision 25231 +shortdesc Editorial Notes for LaTeX documents +relocated 1 +longdesc This package defines a couple of editorial notes that simplify +longdesc collaboration on a LaTeX text. These allow authors to annotate +longdesc status information in the source. In draft mode, the +longdesc annotations are shown for communication, and in publication +longdesc mode these are suppressed. +containersize 2824 +containerchecksum a6999fbe2a9a44f961ef60d3da65ea306809d1ee5c39d2fc605982083d69c3c723a0e18f4042cbd441103421cb569008925279871ea8ceeb0af4c4a21b746943 +doccontainersize 292204 +doccontainerchecksum cd7bac245c14e969b5162b86cfc76e0673da357fb1492ba311930ea7e20a6db61e3a13be2069f4f589ab57cba9fdfb0fcc8779ec8607a624437d1b2bd746825b +docfiles size=75 + RELOC/doc/latex/ed/Makefile + RELOC/doc/latex/ed/README details="Readme" + RELOC/doc/latex/ed/ed.pdf details="Package documentation" + RELOC/doc/latex/ed/ed.sty.ltxml +srccontainersize 7676 +srccontainerchecksum 7736dd9bef8c265437675d87a6b70bf0bb67ad736b668210b7187ddfde899b145050e18a9d54629b966cabc8b46028dc982b107c0f869e581669b663d3267ba7 +srcfiles size=7 + RELOC/source/latex/ed/ed.dtx + RELOC/source/latex/ed/ed.ins +runfiles size=2 + RELOC/tex/latex/ed/ed.sty +catalogue-contact-home https://gl.kwarc.info/kwarc/macros/tree/master/ed +catalogue-ctan /macros/latex/contrib/ed +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1 +catalogue-topics editorial +catalogue-version 1.8 + name edfnotes category Package revision 21540 -shortdesc Critical annotations to footnotes with ednotes. +shortdesc Critical annotations to footnotes with ednotes relocated 1 longdesc The package modifies the annotation commands and label-test longdesc mechanism of the ednotes package so that critical notes appear longdesc on the pages and in the order that one would expect. -runfiles size=11 - RELOC/tex/latex/edfnotes/edfnotes.sty +containersize 14048 +containerchecksum 3ffca21a97b1e54045129a8894db25d677a54c791e3453f53285741bceff0eb4c7cc00e81706ef77ac475a0f54a7868f2e9b444df0c4e4ba6b161fdfa954dc07 +doccontainersize 281120 +doccontainerchecksum 144e2e22c4ceb6ea46235ed51b9a1ad4b20aa524af7b6eff617194aaec4f1606d857a8575e95816b4ef089e5c7d3fc1e2fc8e622486bafe9e5a9ace22bb44105 docfiles size=95 RELOC/doc/latex/edfnotes/PdUsample.pdf - RELOC/doc/latex/edfnotes/README + RELOC/doc/latex/edfnotes/README details="Readme" RELOC/doc/latex/edfnotes/README.pdf RELOC/doc/latex/edfnotes/README.txt RELOC/doc/latex/edfnotes/SRCFILEs.txt - RELOC/doc/latex/edfnotes/edfnotes.pdf + RELOC/doc/latex/edfnotes/edfnotes.pdf details="Package documentation" +srccontainersize 2680 +srccontainerchecksum 9fb306c9b77f0988fcc2dde74336687e8678364e2d53167bff8053a5888de1cf51240778281a7c864a7b8a66738d2c894e7e4b7a88871f0f7ce0e40c61b706be srcfiles size=4 RELOC/source/latex/edfnotes/README.tex RELOC/source/latex/edfnotes/edfnotes.tex RELOC/source/latex/edfnotes/srcfiles.tex +runfiles size=11 + RELOC/tex/latex/edfnotes/edfnotes.sty +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html catalogue-ctan /macros/latex/contrib/edfnotes -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl1.3 +catalogue-topics crit-ed footnote catalogue-version 0.6b name edmac category Package revision 15878 -shortdesc Typeset critical editions. +shortdesc Typeset critical editions relocated 1 longdesc This is the type example package for typesetting scholarly longdesc critical editions. -runfiles size=17 - RELOC/tex/generic/edmac/edmac.tex - RELOC/tex/generic/edmac/edmacfss.sty - RELOC/tex/generic/edmac/edstanza.tex - RELOC/tex/generic/edmac/tabmac.tex +containersize 13196 +containerchecksum a9f12f0745305ce261b142f96ed496341997098461df749715723fb09d978ebb037976c7fd7176eae2475d24c71df201a0123b1651749b2b96c9ed9429746f6e +doccontainersize 89884 +doccontainerchecksum a54f4b1171f8f6edd6e655f49adec69f21a8293af03a02228056ca700feb7b656cbf715047a20f45127695fa851af45fb5e4852ccbf7d28374a02d14f6e55acc docfiles size=89 RELOC/doc/latex/edmac/COPYRIGHT RELOC/doc/latex/edmac/braonain.tex @@ -54196,17 +91980,27 @@ docfiles size=89 RELOC/doc/latex/edmac/edszadoc.tex RELOC/doc/latex/edmac/features.tex RELOC/doc/latex/edmac/readme +srccontainersize 952 +srccontainerchecksum b32626fb4acd41e9d853131d1c32e43d2cf10ee021ada41b06b8cee5c88b1f8ec8511057f83865c9237d8a96a9648edf8696d9fb6166e4c9f072e8dfc10808a2 srcfiles size=1 RELOC/source/latex/edmac/edmac.drv +runfiles size=17 + RELOC/tex/generic/edmac/edmac.tex + RELOC/tex/generic/edmac/edmacfss.sty + RELOC/tex/generic/edmac/edstanza.tex + RELOC/tex/generic/edmac/tabmac.tex +catalogue-also ledmac ednotes manyfoot lineno poemscol +catalogue-contact-home http://tug.org/edmac catalogue-ctan /macros/plain/contrib/edmac -catalogue-date 2012-01-26 15:57:28 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license gpl2 +catalogue-topics crit-ed catalogue-version 3.17 name edmargin category Package revision 27599 -shortdesc Multiple series of endnotes for critical editions. +shortdesc Multiple series of endnotes for critical editions relocated 1 longdesc Edmargin provides a very simple scheme for endnote sections for longdesc critical editions. Endnotes can either be marked in the text, @@ -54217,81 +92011,71 @@ longdesc short notes). Note sections will have running headers of the longdesc form "Textual notes to pp. xx--yy". New note sections can be longdesc created on the fly. There are predefined endnote sections for longdesc textual notes, emendations, and explanatory notes. -runfiles size=6 - RELOC/tex/latex/edmargin/edmargin.sty +containersize 4676 +containerchecksum 242e7eff25ffb539353b73c18d31a268efaebe4fb51d9ba1cf376346e559ea2fb380743b29056aeb8e4db2065a660bf59e7c8dcf5469f91c39135be2b8c9527c +doccontainersize 300996 +doccontainerchecksum da77df03b3eb89daa0a544d61c88956a7105073110dd9e1f4d1a753805bdf722a63f5a9674897f4f09a92f689d6bbafc190c870cf5784e02df7efed781dbbcee docfiles size=75 - RELOC/doc/latex/edmargin/README - RELOC/doc/latex/edmargin/edmargin.pdf + RELOC/doc/latex/edmargin/README details="Readme" + RELOC/doc/latex/edmargin/edmargin.pdf details="Package documentation" +srccontainersize 14440 +srccontainerchecksum 6f3b848e12b92f773ed23f51bcfcd52fbb8209906b937486c87ee34cbe29d40739cb6c20799ce64bfbe7b0e3dfb96d604aaccd005ecc1dbb7126bf5302d3c814 srcfiles size=16 RELOC/source/latex/edmargin/edmargin.dtx RELOC/source/latex/edmargin/edmargin.ins +runfiles size=6 + RELOC/tex/latex/edmargin/edmargin.sty catalogue-ctan /macros/latex/contrib/edmargin -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics crit-ed notes catalogue-version 1.2 name ednotes category Package revision 35829 -shortdesc Typeset scholarly editions. +shortdesc Typeset scholarly editions relocated 1 longdesc A macro package for typesetting scholarly critical editions. longdesc Provides macros for critical edition typesetting with LaTeX, longdesc including support for line numbers and layers of footnotes. depend ncctools -runfiles size=30 - RELOC/tex/latex/ednotes/edcntwd0.sty - RELOC/tex/latex/ednotes/ednotes.sty - RELOC/tex/latex/ednotes/lblchng1.sty - RELOC/tex/latex/ednotes/mfparptc.sty - RELOC/tex/latex/ednotes/mfparxsp.sty +containersize 31976 +containerchecksum be181a2665a8dbd44d98f75a0bc718b460d85c4fb66e412e18f12b542d65a870660597ece71588e9410214a61d6e2d9883089ab1439eeefd63a5cea95fca5d6b +doccontainersize 375072 +doccontainerchecksum 242ee2a951a61be7dc0133b0a156611bc574c4c54b879701960f312c58613221acad1c83132658d622962ac24b13b4cb5c91e46c77f774dc3865db57e126e0b7 docfiles size=145 RELOC/doc/latex/ednotes/CHANGES.txt RELOC/doc/latex/ednotes/CHANGING.txt - RELOC/doc/latex/ednotes/README + RELOC/doc/latex/ednotes/README details="Readme" RELOC/doc/latex/ednotes/README.TEXLIVE RELOC/doc/latex/ednotes/README4U.txt RELOC/doc/latex/ednotes/READMORE.txt - RELOC/doc/latex/ednotes/ednotes.pdf + RELOC/doc/latex/ednotes/ednotes.pdf details="All plain text files, as pdf" language="en" RELOC/doc/latex/ednotes/ednotes.tex - RELOC/doc/latex/ednotes/ednotugb.pdf + RELOC/doc/latex/ednotes/ednotugb.pdf details="TUGboat paper" language="en" RELOC/doc/latex/ednotes/emathtst.tex RELOC/doc/latex/ednotes/varnrule.tex RELOC/doc/latex/ednotes/visible.txt +runfiles size=30 + RELOC/tex/latex/ednotes/edcntwd0.sty + RELOC/tex/latex/ednotes/ednotes.sty + RELOC/tex/latex/ednotes/lblchng1.sty + RELOC/tex/latex/ednotes/mfparptc.sty + RELOC/tex/latex/ednotes/mfparxsp.sty +catalogue-also edmac ledmac manyfoot lineno poemscol +catalogue-contact-home http://www.webdesign-bu.de/uwe_lueck/critedltx.html +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html catalogue-ctan /macros/latex/contrib/ednotes -catalogue-date 2012-05-25 14:20:18 +0200 +catalogue-date 2017-05-05 22:15:23 +0200 catalogue-license lppl +catalogue-topics crit-ed catalogue-version 1.3a -name ed -category Package -revision 25231 -shortdesc Editorial Notes for LaTeX documents. -relocated 1 -longdesc This package defines a couple of editorial notes that simplify -longdesc collaboration on a LaTeX text. These allow authors to annotate -longdesc status information in the source. In draft mode, the -longdesc annotations are shown for communication, and in publication -longdesc mode these are suppressed. -runfiles size=2 - RELOC/tex/latex/ed/ed.sty -docfiles size=75 - RELOC/doc/latex/ed/Makefile - RELOC/doc/latex/ed/README - RELOC/doc/latex/ed/ed.pdf - RELOC/doc/latex/ed/ed.sty.ltxml -srcfiles size=7 - RELOC/source/latex/ed/ed.dtx - RELOC/source/latex/ed/ed.ins -catalogue-ctan /macros/latex/contrib/ed -catalogue-date 2012-01-29 16:01:54 +0100 -catalogue-license lppl1 -catalogue-version 1.8 - name eemeir category Package revision 15878 -shortdesc Adjust the gender of words in a document. +shortdesc Adjust the gender of words in a document relocated 1 longdesc Defines macros for third-person singular pronouns (\E, \Em, longdesc \Eir, \Eirs), which expand differently according to a @@ -54302,23 +92086,31 @@ longdesc the pronouns, one can define 'word pairs', such as longdesc mother/father, daughter/son, and so on. Gender may be defined longdesc once per document, as an environment, or may be flipped on the longdesc fly. -runfiles size=1 - RELOC/tex/latex/eemeir/eemeir.sty +containersize 1908 +containerchecksum 81679a08a320275221058cf0a73d71489621bfa4322a4b90759f67253df06e5c98c1325846966924c145092d9f63d9ba51544d0640c7f0827c7ebc42fddf9f3a +doccontainersize 135680 +doccontainerchecksum 4f7a67d76504c4fa8de1f7f4e5db19c1ed1509a3ee68d93811c84e3ca523b8ff040d61e14881ccf75d20edc7c6b52550b3b3fdfa58a9a73bf21ec7f8b0b719aa docfiles size=41 RELOC/doc/latex/eemeir/README RELOC/doc/latex/eemeir/eemeir.pdf +srccontainersize 7028 +srccontainerchecksum a75e1bc385293e5e418af04a1c03ab606c5c77fa95bc6830a029e53e4298edd853c0bdb92ec0b97994fb8d2b7af293c3ef60f3d14974b87e079f15f904436d4b srcfiles size=6 RELOC/source/latex/eemeir/eemeir.dtx RELOC/source/latex/eemeir/eemeir.ins +runfiles size=1 + RELOC/tex/latex/eemeir/eemeir.sty +catalogue-also he-she gender catalogue-ctan /macros/latex/contrib/eemeir -catalogue-date 2015-03-08 08:25:35 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics linguistic typesetting catalogue-version 1.1b name eepic category Package revision 15878 -shortdesc Extensions to epic and the LaTeX drawing tools. +shortdesc Extensions to epic and the LaTeX drawing tools relocated 1 longdesc Extensions to epic and the LaTeX picture drawing environment, longdesc include the drawing of lines at any slope, the drawing of @@ -54327,12 +92119,12 @@ longdesc lines much faster with much less TeX memory, and providing longdesc several new commands for drawing ellipses, arcs, splines, and longdesc filled circles and ellipses. The package uses tpic \special longdesc commands. -runfiles size=13 - RELOC/tex/latex/eepic/eepic.sty - RELOC/tex/latex/eepic/eepicemu.sty - RELOC/tex/latex/eepic/epic.sty +containersize 11752 +containerchecksum 37930ecdebd43ac8ac1dcb42da4d4eb4b5ff371605b9bfe4675ea861f4edff7cb19703669c8356c3d69e7ccc09789bc536714114397c3bca74fcb4a22b6f4d9b +doccontainersize 96304 +doccontainerchecksum 02efd8775f6d0db35fa4682c6bc715fe619037a6531de60a2955fbd7fca01d97a8e6dee0109a8cd7cc8237bd694c64797392991e5c203baab49dd9857b0ccb4c docfiles size=46 - RELOC/doc/latex/eepic/eepic.pdf + RELOC/doc/latex/eepic/eepic.pdf details="Package documentation" RELOC/doc/latex/eepic/eepic.tex RELOC/doc/latex/eepic/epic-eg3.fig RELOC/doc/latex/eepic/epic-eg3.tex @@ -54345,121 +92137,49 @@ docfiles size=46 RELOC/doc/latex/eepic/fig2eepic/readme RELOC/doc/latex/eepic/grafig.shar RELOC/doc/latex/eepic/readme +runfiles size=13 + RELOC/tex/latex/eepic/eepic.sty + RELOC/tex/latex/eepic/eepicemu.sty + RELOC/tex/latex/eepic/epic.sty catalogue-ctan /macros/latex/contrib/eepic -catalogue-date 2012-05-25 14:20:18 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics graphics-in-tex catalogue-version 1.1e name efbox category Package revision 33236 -shortdesc Extension of \fbox, with controllable frames and colours. +shortdesc Extension of \fbox, with controllable frames and colours relocated 1 longdesc The package defines the \efbox command, which creates a box longdesc just wide enough to hold the text created by its argument. The longdesc command optionally puts a (possibly partial) frame around the longdesc box, and allows setting the box background colour. -runfiles size=2 - RELOC/tex/latex/efbox/efbox.sty +containersize 1824 +containerchecksum 5091324e7f5c05385296d570027a8546db4220a24da330ab85ef5d1185772f51b4f200f63eaad0cfa3eaeafd3d055509f4ffbdf798c1139a60c5e572ea46926e +doccontainersize 146144 +doccontainerchecksum 394387e09ecb0d497014a62fc1caedcb3e00148f6e0a9a16ae1b53efbb4d5cf749e154e4c905d197280e4ecd9bc88ea07ab7e0c004b8c30eadbe7f9f414c1345 docfiles size=37 - RELOC/doc/latex/efbox/README - RELOC/doc/latex/efbox/efbox.pdf + RELOC/doc/latex/efbox/README details="Readme" + RELOC/doc/latex/efbox/efbox.pdf details="Package documentation" +srccontainersize 4220 +srccontainerchecksum 4739cf6bbe23b69605079bdd8c39eddd6b44e192c5c335001c9612598f2a005e98b853bc02ff67996b63a971b200996f35de2331f230d9c43ed73ad9a8a98a7a srcfiles size=4 RELOC/source/latex/efbox/efbox.dtx RELOC/source/latex/efbox/efbox.ins +runfiles size=2 + RELOC/tex/latex/efbox/efbox.sty catalogue-ctan /macros/latex/contrib/efbox -catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics boxing catalogue-version 1.0 -name e-french -category Package -revision 38141 -shortdesc Comprehensive LaTeX support for French-language typesetting -relocated 1 -longdesc E-french is a distribution that keeps alive the work of Bernard -longdesc Gaulle (now deceased), under a free licence. It replaces the -longdesc the old "full" frenchpro (the "professional" distribution) and -longdesc the light-weight frenchle packages. -runfiles size=105 - RELOC/makeindex/e-french/fridx1.ist - RELOC/tex/generic/e-french/deutschx.mlp - RELOC/tex/generic/e-french/efrench.ldf - RELOC/tex/generic/e-french/efrench.sty - RELOC/tex/generic/e-french/enbib.ldf - RELOC/tex/generic/e-french/epreuve.sty - RELOC/tex/generic/e-french/fenglish.sty - RELOC/tex/generic/e-french/frabbrev.tex - RELOC/tex/generic/e-french/francais.mlp - RELOC/tex/generic/e-french/frbabel.sty - RELOC/tex/generic/e-french/frbib.ldf - RELOC/tex/generic/e-french/french-msg.tex - RELOC/tex/generic/e-french/french.all - RELOC/tex/generic/e-french/french.cfg - RELOC/tex/generic/e-french/french.chk - RELOC/tex/generic/e-french/french.cmd - RELOC/tex/generic/e-french/french.dmy - RELOC/tex/generic/e-french/french.ldf - RELOC/tex/generic/e-french/french.sty - RELOC/tex/generic/e-french/french_french-msg.tex - RELOC/tex/generic/e-french/frenchle.cfg - RELOC/tex/generic/e-french/frenchle.ldf - RELOC/tex/generic/e-french/frenchle.sty - RELOC/tex/generic/e-french/frenchpro.ldf - RELOC/tex/generic/e-french/frenchpro.sty - RELOC/tex/generic/e-french/frhyphex.tex - RELOC/tex/generic/e-french/fxabbrev.tex - RELOC/tex/generic/e-french/german_french-msg.tex - RELOC/tex/generic/e-french/internat.mlp - RELOC/tex/generic/e-french/mlp-01.sty - RELOC/tex/generic/e-french/mlp-31.sty - RELOC/tex/generic/e-french/mlp-33.sty - RELOC/tex/generic/e-french/mlp-49.sty - RELOC/tex/generic/e-french/mlp-49n.sty - RELOC/tex/generic/e-french/mlp-opts.sty - RELOC/tex/generic/e-french/mlp.sty - RELOC/tex/generic/e-french/ndeutsch.mlp - RELOC/tex/generic/e-french/noesterr.mlp - RELOC/tex/generic/e-french/oesterre.mlp - RELOC/tex/generic/e-french/pmfrench.sty -docfiles size=663 - RELOC/doc/generic/e-french/README - RELOC/doc/generic/e-french/changements.html - RELOC/doc/generic/e-french/histoire.html - RELOC/doc/generic/e-french/install/MiniDocEf_Lnx.pdf - RELOC/doc/generic/e-french/install/MiniDocEf_Win.pdf - RELOC/doc/generic/e-french/install/MiniDoc_Unx.txt - RELOC/doc/generic/e-french/install/MiniDoc_Win.txt - RELOC/doc/generic/e-french/install/Probl_Msg.pdf - RELOC/doc/generic/e-french/install/Probl_Msg.txt - RELOC/doc/generic/e-french/licence.html - RELOC/doc/generic/e-french/lisez-moi.html - RELOC/doc/generic/e-french/manuels/FrenchLe.html - RELOC/doc/generic/e-french/manuels/FrenchPro.html - RELOC/doc/generic/e-french/manuels/efrench.pdf - RELOC/doc/generic/e-french/manuels/faq.pdf - RELOC/doc/generic/e-french/manuels/french_doc.pdf - RELOC/doc/generic/e-french/manuels/frenchle.pdf - RELOC/doc/generic/e-french/src/MiniDocEf_Lnx.tex - RELOC/doc/generic/e-french/src/MiniDocEf_Win.tex - RELOC/doc/generic/e-french/src/Probl_Msg.tex - RELOC/doc/generic/e-french/src/efrench.tex - RELOC/doc/generic/e-french/src/faq.tex - RELOC/doc/generic/e-french/src/french_doc.tex - RELOC/doc/generic/e-french/src/french_doc.txt - RELOC/doc/generic/e-french/src/frenchle.tex - RELOC/doc/generic/e-french/src/myfroptn.sty - RELOC/doc/generic/e-french/src/mymaj.sty -catalogue-ctan /language/french/e-french -catalogue-date 2015-08-17 12:36:14 +0200 -catalogue-license lppl1.3 -catalogue-topics french -catalogue-version 5.9995 - name egameps category Package revision 15878 -shortdesc LaTeX package for typesetting extensive games. +shortdesc LaTeX package for typesetting extensive games relocated 1 longdesc The style is intended to have enough features to draw any longdesc extensive game with relative ease. The facilities of PSTricks @@ -54467,67 +92187,83 @@ longdesc are used for graphics. (An older version of the package, which longdesc uses the LaTeX picture environment rather than PSTricks and longdesc consequently has many fewer features is available on the longdesc package home page.) -runfiles size=11 - RELOC/tex/latex/egameps/egameps.sty +containersize 6516 +containerchecksum b8d1c056783c4a71484a00f0d80de4eb9de3beaa54cc4dc71e5a7c171871b5dacba753ad03ab196661b1bd73cf9d2eaf202a813b73bea405f807319a143644cb +doccontainersize 137460 +doccontainerchecksum 0216a85d539ab19aef8c2c4f313f5095aa39e4955ae9610c14d0243081b7af98f50a74a2f7720b376493e660a5486f83e69b41f8cb8017ff66a8e706eb9ca71b docfiles size=51 RELOC/doc/latex/egameps/README - RELOC/doc/latex/egameps/egameps.pdf + RELOC/doc/latex/egameps/egameps.pdf details="Package documentation" RELOC/doc/latex/egameps/egameps.tex +runfiles size=11 + RELOC/tex/latex/egameps/egameps.sty catalogue-ctan /macros/latex/contrib/egameps -catalogue-date 2012-05-25 14:20:18 +0200 +catalogue-date 2018-09-15 11:29:33 +0200 catalogue-license lppl +catalogue-topics games graphics-in-tex catalogue-version 1.1 name egplot category Package revision 20617 -shortdesc Encapsulate Gnuplot sources in LaTeX documents. +shortdesc Encapsulate Gnuplot sources in LaTeX documents relocated 1 longdesc A package to encapsulate gnuplot commands in a LaTeX source longdesc file, so that a document's figures are maintained in parallel longdesc with the document source itself. -runfiles size=3 - RELOC/tex/latex/egplot/egplot.sty +containersize 3560 +containerchecksum c96cc3185c09f66fc6a4c19958b88d178cf0b6ea9d889938df5a07d4fb7b19962a9c17ebe0a906ab19a8725808aa09ee41b39a0379fefbf8816a5e78abf9201f +doccontainersize 484812 +doccontainerchecksum e6e55708004cdf3dfd753071e2fc242428a6636944f3ea65510d2e9f8e2921b869ff4a22d100b43d70ba0708a5b19f002bbe21f57c858ec72b11ffe82e161e50 docfiles size=120 - RELOC/doc/latex/egplot/egplot.README - RELOC/doc/latex/egplot/egplot.pdf + RELOC/doc/latex/egplot/egplot.README details="Readme" + RELOC/doc/latex/egplot/egplot.pdf details="Package documentation" RELOC/doc/latex/egplot/manual.ps.gz +srccontainersize 10972 +srccontainerchecksum 45c810de39612dcd60d71b4acc8aa9a7c2c22c1eab8e1ca1628ced9873c86b0ff31035ec5f72d89decf91ba552c4e3473249138f557bd650b9863c5385502436 srcfiles size=15 RELOC/source/latex/egplot/egplot.drv RELOC/source/latex/egplot/egplot.dtx RELOC/source/latex/egplot/egplot.ins RELOC/source/latex/egplot/egpman.drv +runfiles size=3 + RELOC/tex/latex/egplot/egplot.sty catalogue-ctan /macros/latex/contrib/egplot -catalogue-date 2012-05-25 14:41:32 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics graphics-inline catalogue-version 1.02a -name eiad-ltx +name ehhline category Package -revision 15878 -shortdesc LaTeX support for the eiad font. +revision 51122 +shortdesc Extend the \hhline command relocated 1 -longdesc The package provides macros to support use of the eiad fonts in -longdesc OT1 encoding. Also offered are a couple of Metafont files -longdesc described in the font package, but not provided there. -runfiles size=3 - RELOC/fonts/source/public/eiad-ltx/Fbf10.mf - RELOC/fonts/source/public/eiad-ltx/Fr10.mf - RELOC/tex/latex/eiad-ltx/eiad.sty -docfiles size=1 - RELOC/doc/latex/eiad-ltx/README -srcfiles size=3 - RELOC/source/latex/eiad-ltx/eiad.dtx - RELOC/source/latex/eiad-ltx/eiad.ins -catalogue-ctan /macros/latex/contrib/eiad -catalogue-date 2012-06-04 11:02:08 +0200 -catalogue-license lppl +longdesc This package extends the \hhline command with a !{...} token, +longdesc which allows to create lines with arbitrary LaTeX commands. +containersize 1500 +containerchecksum d0549e354c34d1ad76502ccfd565292074a8e1aa72f021c9efd8dcb39ce9465ccfb0add899226775e82e9e90ad27a7980d5f79fc8a5a71a449a8a17845384918 +doccontainersize 31148 +doccontainerchecksum a3c436900a964fecb613469c5beca557a0f923d1c651591d9b884f88f127c435081a5fbd2f4129041f5438536901feaa4697b59a011064a4b4822ef6ecea5068 +docfiles size=10 + RELOC/doc/latex/ehhline/README details="Readme" + RELOC/doc/latex/ehhline/ehhline.pdf details="Package documentation" + RELOC/doc/latex/ehhline/ehhline.tex +runfiles size=1 + RELOC/tex/latex/ehhline/ehhline.sty +catalogue-also hhline +catalogue-contact-bugs https://bitbucket.org/OpCode-eu-org/latex-libs/issues +catalogue-contact-repository https://bitbucket.org/OpCode-eu-org/LaTeX-libs/ +catalogue-ctan /macros/latex/contrib/ehhline +catalogue-date 2019-05-14 14:47:30 +0200 +catalogue-license mit +catalogue-topics table-rule catalogue-version 1.0 name eiad category Package revision 15878 -shortdesc Traditional style Irish fonts. +shortdesc Traditional style Irish fonts relocated 1 longdesc In both lower and upper case 32 letters are defined (18 'plain' longdesc ones, 5 long vowels and 9 aspirated consonants). The ligature @@ -54537,6 +92273,20 @@ longdesc Computer Modern family of fonts. The font definitions use code longdesc from the sauter fonts, so those fonts have to be installed longdesc before using eiad. OT1*.fd files are provided for use with longdesc LaTeX. +containersize 25636 +containerchecksum 3123d601a5f5c34c45bff20eb052a0934a2bba9d693e460fdb84908ed327eff8b3a022a5c617c8818bd48b1fe72b9b0c48443e0cb290f15e94334152f1f5e5cc +doccontainersize 117692 +doccontainerchecksum 546bbad79f9f13e420b05b318010f078ea8844a02cedf11faa506d41073e2e0668356291a4e12758e5a37586e4aa9c79c17c8135f244756c39b61076038fb8e6 +docfiles size=125 + RELOC/doc/fonts/eiad/Leigh_me.txt details="Readme" + RELOC/doc/fonts/eiad/amhrawn.pdf + RELOC/doc/fonts/eiad/amhrawn.tex + RELOC/doc/fonts/eiad/evening.pdf + RELOC/doc/fonts/eiad/evening.tex + RELOC/doc/fonts/eiad/micheal.ps + RELOC/doc/fonts/eiad/micheal.tex + RELOC/doc/fonts/eiad/recreat.pdf + RELOC/doc/fonts/eiad/recreat.tex runfiles size=86 RELOC/fonts/source/public/eiad/eiadb10.mf RELOC/fonts/source/public/eiad/eiadbx10.mf @@ -54607,44 +92357,71 @@ runfiles size=86 RELOC/tex/latex/eiad/OT1eiadcc.fd RELOC/tex/latex/eiad/OT1eiadss.fd RELOC/tex/latex/eiad/OT1eiadtt.fd -docfiles size=125 - RELOC/doc/fonts/eiad/Leigh_me.txt - RELOC/doc/fonts/eiad/amhrawn.pdf - RELOC/doc/fonts/eiad/amhrawn.tex - RELOC/doc/fonts/eiad/evening.pdf - RELOC/doc/fonts/eiad/evening.tex - RELOC/doc/fonts/eiad/micheal.ps - RELOC/doc/fonts/eiad/micheal.tex - RELOC/doc/fonts/eiad/recreat.pdf - RELOC/doc/fonts/eiad/recreat.tex catalogue-ctan /fonts/eiad -catalogue-date 2012-06-04 11:02:08 +0200 +catalogue-date 2017-10-29 14:41:24 +0100 catalogue-license pd +catalogue-topics font font-mf irish-gaelic + +name eiad-ltx +category Package +revision 15878 +shortdesc LaTeX support for the eiad font +relocated 1 +longdesc The package provides macros to support use of the eiad fonts in +longdesc OT1 encoding. Also offered are a couple of Metafont files +longdesc described in the font package, but not provided there. +containersize 3672 +containerchecksum e052333d39e72562e8e84d0e7f6af7066c2068a782422f612a26bd2903d8143874cd4dcc556d7406f3601a6b3a28506a3c0edc92e4029d124f02fe91edf0163c +doccontainersize 1956 +doccontainerchecksum 907a20283eb78965dc4d8fdb46c542937c70c7a3f2849984034f9f37872d4d3042064fad0ee232132aadcb7daa4d4ec4b9745f8a6d0406dfa7b929ea68be0d96 +docfiles size=1 + RELOC/doc/latex/eiad-ltx/README details="Readme" +srccontainersize 4224 +srccontainerchecksum dcdb63542954048aa74a1a412cef02c16706bb7f66870e72ab4c772e2e41048c255bd02877fc60ffdef15b09e229ba721054cfbcbea5ce16fdaa181ca0bc8283 +srcfiles size=3 + RELOC/source/latex/eiad-ltx/eiad.dtx + RELOC/source/latex/eiad-ltx/eiad.ins +runfiles size=3 + RELOC/fonts/source/public/eiad-ltx/Fbf10.mf + RELOC/fonts/source/public/eiad-ltx/Fr10.mf + RELOC/tex/latex/eiad-ltx/eiad.sty +catalogue-ctan /macros/latex/contrib/eiad +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font-supp irish-gaelic +catalogue-version 1.0 name eijkhout category Package revision 15878 -shortdesc Victor Eijkhout's packages. +shortdesc Victor Eijkhout's packages relocated 1 longdesc Three unrelated packages: DB_process, to parse and process longdesc database output; CD_labeler, to typeset user text to fit on a longdesc CD label; and repeat, a nestable, generic loop macro. +containersize 6960 +containerchecksum 448f3b51c984a1ec81428c1840ba01d072cef4d1110b85f8d4f4d786d02e8d08e702e0b33e757035aecef1f43b604746c7b6f492905fbb201fc1a34ca6fb859e runfiles size=9 RELOC/tex/generic/eijkhout/CD_labeler.tex RELOC/tex/generic/eijkhout/CD_labeler_test.tex RELOC/tex/generic/eijkhout/DB_process.tex RELOC/tex/generic/eijkhout/repeat.tex catalogue-ctan /macros/generic/eijkhout -catalogue-date 2014-10-16 20:18:43 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license collection +catalogue-topics collection name einfuehrung category Package revision 29349 -shortdesc Examples from the book Einfuhrung in LaTeX. -relocated 1 -longdesc The bundle consists of examples and data files for the DANTE- -longdesc Edition book "Einfuhrung in LaTeX" +shortdesc Examples from the book Einfuhrung in LaTeX +relocated 1 +longdesc The bundle consists of examples and data files for the +longdesc DANTE-Edition book "Einfuhrung in LaTeX" +containersize 464 +containerchecksum e346283ecfc6ca35684267e8b11f2800c6715378d84c4896e4d29557fbd97e57665a45503e7cab7cb7def679914b7d737a222e05eaccf543d8d2f7370ed49792 +doccontainersize 159080 +doccontainerchecksum 1c012e15159a2c4940cb7bbcb17bf3675c2b2028e939acd3b1c98ff2cc377b55a602f404900cd4eae3f03de74a98d61f6db0de9ad90e8598d9f49b398b5a6a83 docfiles size=1167 RELOC/doc/latex/einfuehrung/03-01-1.ltxverb RELOC/doc/latex/einfuehrung/03-01-2.xltxverb @@ -55706,7 +93483,7 @@ docfiles size=1167 RELOC/doc/latex/einfuehrung/Letter.ist RELOC/doc/latex/einfuehrung/LetterC.ist RELOC/doc/latex/einfuehrung/LoadFonts.tex - RELOC/doc/latex/einfuehrung/README + RELOC/doc/latex/einfuehrung/README details="Readme" RELOC/doc/latex/einfuehrung/UTF8.bib RELOC/doc/latex/einfuehrung/VerbatimOut.xltx RELOC/doc/latex/einfuehrung/beispiel.cls @@ -55770,91 +93547,1296 @@ docfiles size=1167 RELOC/doc/latex/einfuehrung/tab.tex RELOC/doc/latex/einfuehrung/tabelle1.tex RELOC/doc/latex/einfuehrung/textdemo.sty +catalogue-contact-home http://www.dante.de/index/Literatur/Einfuehrung.html catalogue-ctan /info/examples/Einfuehrung -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics book-ex + +name einfuehrung2 +category Package +revision 39153 +shortdesc Examples from the book Einfuhrung in LaTeX +relocated 1 +longdesc The bundle consists of examples and data files for the +longdesc DANTE-Edition book "Einfuhrung in LaTeX", second edition 2016. +containersize 480 +containerchecksum affafa673dbb2bb3bd935a977a809bab30d01c92f8c9162eff337b635b57993e884c9d96398d39acc16e470a362276579120f4ab27e8cf8111928b12e75cc72b +doccontainersize 320376 +doccontainerchecksum 4a4c9549a7957688071226e4383dc9ad3c0580c9e321ab5a71c75806477a2156ce74aefa6dff95a329c65ae8ae6eeec9fab6f6e1f689a827b7050e457b248093 +docfiles size=1369 + RELOC/doc/latex/einfuehrung2/03-01-1.ltxverb + RELOC/doc/latex/einfuehrung2/03-01-2.xltxverb + RELOC/doc/latex/einfuehrung2/03-01-3.luaverb + RELOC/doc/latex/einfuehrung2/03-01-4.ltx + RELOC/doc/latex/einfuehrung2/03-01-5.ltx + RELOC/doc/latex/einfuehrung2/03-01-6.ltx + RELOC/doc/latex/einfuehrung2/03-01-7.ltx + RELOC/doc/latex/einfuehrung2/03-03-1.ltxps + RELOC/doc/latex/einfuehrung2/03-03-2.ctx + RELOC/doc/latex/einfuehrung2/03-03-3.ctxcrop + RELOC/doc/latex/einfuehrung2/03-03-4.ltx + RELOC/doc/latex/einfuehrung2/03-05-1.ltx + RELOC/doc/latex/einfuehrung2/03-05-2.ltx + RELOC/doc/latex/einfuehrung2/03-05-3.xltx + RELOC/doc/latex/einfuehrung2/03-05-4.lualtx + RELOC/doc/latex/einfuehrung2/03-05-5.xltx + RELOC/doc/latex/einfuehrung2/03-05-6.xltx + RELOC/doc/latex/einfuehrung2/03-05-7.lualtx + RELOC/doc/latex/einfuehrung2/03-06-1.ltx + RELOC/doc/latex/einfuehrung2/03-06-2.ltx + RELOC/doc/latex/einfuehrung2/03-06-3.ltx + RELOC/doc/latex/einfuehrung2/03-06-4.xltx + RELOC/doc/latex/einfuehrung2/03-06-5.xltx + RELOC/doc/latex/einfuehrung2/03-06-6.lualtx + RELOC/doc/latex/einfuehrung2/03-07-1.ltx + RELOC/doc/latex/einfuehrung2/03-07-10.xltx + RELOC/doc/latex/einfuehrung2/03-07-11.ltx + RELOC/doc/latex/einfuehrung2/03-07-12.xltx + RELOC/doc/latex/einfuehrung2/03-07-13.ltx + RELOC/doc/latex/einfuehrung2/03-07-14.ltx + RELOC/doc/latex/einfuehrung2/03-07-2.ltx + RELOC/doc/latex/einfuehrung2/03-07-3.ltx + RELOC/doc/latex/einfuehrung2/03-07-4.ltx + RELOC/doc/latex/einfuehrung2/03-07-5.ltx + RELOC/doc/latex/einfuehrung2/03-07-6.ltx + RELOC/doc/latex/einfuehrung2/03-07-7.ltx + RELOC/doc/latex/einfuehrung2/03-07-8.ltx + RELOC/doc/latex/einfuehrung2/03-07-9.ltx + RELOC/doc/latex/einfuehrung2/03-08-1.ltx + RELOC/doc/latex/einfuehrung2/03-08-2.ltx + RELOC/doc/latex/einfuehrung2/03-08-3.xltx + RELOC/doc/latex/einfuehrung2/03-08-4.ltx + RELOC/doc/latex/einfuehrung2/03-08-5.xltx + RELOC/doc/latex/einfuehrung2/03-08-6.xltx + RELOC/doc/latex/einfuehrung2/03-08-7.xltx + RELOC/doc/latex/einfuehrung2/03-08-8.lualtx + RELOC/doc/latex/einfuehrung2/04-02-1.ltx2crop + RELOC/doc/latex/einfuehrung2/04-02-2.ltx2 + RELOC/doc/latex/einfuehrung2/04-02-3.ltx2 + RELOC/doc/latex/einfuehrung2/04-02-4.ltx2 + RELOC/doc/latex/einfuehrung2/04-02-5.ltx2 + RELOC/doc/latex/einfuehrung2/04-02-6.ltxps + RELOC/doc/latex/einfuehrung2/04-02-7.ltx + RELOC/doc/latex/einfuehrung2/04-02-8.ltx2 + RELOC/doc/latex/einfuehrung2/04-03-1.ltx + RELOC/doc/latex/einfuehrung2/04-03-2.ltx + RELOC/doc/latex/einfuehrung2/04-03-3.ltx + RELOC/doc/latex/einfuehrung2/04-03-4.ltx + RELOC/doc/latex/einfuehrung2/04-03-5.ltx2 + RELOC/doc/latex/einfuehrung2/04-03-6.ltx + RELOC/doc/latex/einfuehrung2/04-04-1.ltx2 + RELOC/doc/latex/einfuehrung2/04-04-2.ltx + RELOC/doc/latex/einfuehrung2/05-01-1.ltx2crop + RELOC/doc/latex/einfuehrung2/05-01-2.ltx2 + RELOC/doc/latex/einfuehrung2/05-01-3.ltx2 + RELOC/doc/latex/einfuehrung2/05-01-4.ltx2 + RELOC/doc/latex/einfuehrung2/05-02-1.ltx2 + RELOC/doc/latex/einfuehrung2/05-02-10.ltx2 + RELOC/doc/latex/einfuehrung2/05-02-11.ltx + RELOC/doc/latex/einfuehrung2/05-02-12.ltx2crop + RELOC/doc/latex/einfuehrung2/05-02-13.ltx2 + RELOC/doc/latex/einfuehrung2/05-02-14.ltx2 + RELOC/doc/latex/einfuehrung2/05-02-15.ltx2 + RELOC/doc/latex/einfuehrung2/05-02-2.ltx2 + RELOC/doc/latex/einfuehrung2/05-02-3.ltx2 + RELOC/doc/latex/einfuehrung2/05-02-4.ltx + RELOC/doc/latex/einfuehrung2/05-02-5.ltx2crop + RELOC/doc/latex/einfuehrung2/05-02-6.ltx2 + RELOC/doc/latex/einfuehrung2/05-02-7.ltx2 + RELOC/doc/latex/einfuehrung2/05-02-8.ltx2 + RELOC/doc/latex/einfuehrung2/05-02-9.ltx + RELOC/doc/latex/einfuehrung2/05-03-1.ltx2 + RELOC/doc/latex/einfuehrung2/05-03-10.ltx + RELOC/doc/latex/einfuehrung2/05-03-11.ltx + RELOC/doc/latex/einfuehrung2/05-03-12.ltx + RELOC/doc/latex/einfuehrung2/05-03-13.ltx2 + RELOC/doc/latex/einfuehrung2/05-03-2.ltx2 + RELOC/doc/latex/einfuehrung2/05-03-3.ltx + RELOC/doc/latex/einfuehrung2/05-03-4.ltx + RELOC/doc/latex/einfuehrung2/05-03-5.ltx2 + RELOC/doc/latex/einfuehrung2/05-03-6.ltx + RELOC/doc/latex/einfuehrung2/05-03-7.ltx + RELOC/doc/latex/einfuehrung2/05-03-8.ltx + RELOC/doc/latex/einfuehrung2/05-03-9.ltx + RELOC/doc/latex/einfuehrung2/05-04-1.ltx + RELOC/doc/latex/einfuehrung2/05-04-10.ltx + RELOC/doc/latex/einfuehrung2/05-04-11.xltx + RELOC/doc/latex/einfuehrung2/05-04-12.ltx + RELOC/doc/latex/einfuehrung2/05-04-13.ltx + RELOC/doc/latex/einfuehrung2/05-04-14.ltx + RELOC/doc/latex/einfuehrung2/05-04-2.ltx + RELOC/doc/latex/einfuehrung2/05-04-3.ltx + RELOC/doc/latex/einfuehrung2/05-04-4.ltx + RELOC/doc/latex/einfuehrung2/05-04-5.ltx + RELOC/doc/latex/einfuehrung2/05-04-6.ltx + RELOC/doc/latex/einfuehrung2/05-04-7.ltx + RELOC/doc/latex/einfuehrung2/05-04-8.ltx + RELOC/doc/latex/einfuehrung2/05-04-9.ltx + RELOC/doc/latex/einfuehrung2/05-05-1.ltx + RELOC/doc/latex/einfuehrung2/05-05-2.ltx + RELOC/doc/latex/einfuehrung2/05-06-1.ltx + RELOC/doc/latex/einfuehrung2/05-07-1.ltx2crop + RELOC/doc/latex/einfuehrung2/05-07-10.ltx + RELOC/doc/latex/einfuehrung2/05-07-2.ltx2 + RELOC/doc/latex/einfuehrung2/05-07-3.ltx2crop + RELOC/doc/latex/einfuehrung2/05-07-4.ltx2 + RELOC/doc/latex/einfuehrung2/05-07-5.ltx + RELOC/doc/latex/einfuehrung2/05-07-6.ltx + RELOC/doc/latex/einfuehrung2/05-07-7.ltx + RELOC/doc/latex/einfuehrung2/05-07-8.ltx2 + RELOC/doc/latex/einfuehrung2/05-07-9.ltx + RELOC/doc/latex/einfuehrung2/05-08-1.ltx + RELOC/doc/latex/einfuehrung2/05-08-2.ltx2crop + RELOC/doc/latex/einfuehrung2/05-08-3.ltx + RELOC/doc/latex/einfuehrung2/05-09-1.ltx + RELOC/doc/latex/einfuehrung2/05-09-2.ltx + RELOC/doc/latex/einfuehrung2/05-09-3.ltx + RELOC/doc/latex/einfuehrung2/05-09-4.ltx + RELOC/doc/latex/einfuehrung2/05-09-5.ltx + RELOC/doc/latex/einfuehrung2/05-09-6.ltx + RELOC/doc/latex/einfuehrung2/05-09-7.ltx2crop + RELOC/doc/latex/einfuehrung2/05-09-8.ltx2crop + RELOC/doc/latex/einfuehrung2/05-09-9.ltx + RELOC/doc/latex/einfuehrung2/05-10-1.ltx + RELOC/doc/latex/einfuehrung2/05-10-2.ltx + RELOC/doc/latex/einfuehrung2/05-10-3.ltx + RELOC/doc/latex/einfuehrung2/05-10-4.ltx + RELOC/doc/latex/einfuehrung2/05-10-5.ltx + RELOC/doc/latex/einfuehrung2/05-10-6.ltx + RELOC/doc/latex/einfuehrung2/05-10-7.ltx + RELOC/doc/latex/einfuehrung2/05-10-8.ltx + RELOC/doc/latex/einfuehrung2/05-10-9.lualtx + RELOC/doc/latex/einfuehrung2/05-11-1.ltx + RELOC/doc/latex/einfuehrung2/05-11-10.ltx + RELOC/doc/latex/einfuehrung2/05-11-11.ltx + RELOC/doc/latex/einfuehrung2/05-11-12.ltx + RELOC/doc/latex/einfuehrung2/05-11-13.ltx + RELOC/doc/latex/einfuehrung2/05-11-2.ltx + RELOC/doc/latex/einfuehrung2/05-11-3.ltx + RELOC/doc/latex/einfuehrung2/05-11-4.ltx + RELOC/doc/latex/einfuehrung2/05-11-5.ltx + RELOC/doc/latex/einfuehrung2/05-11-6.ltx + RELOC/doc/latex/einfuehrung2/05-11-7.ltx + RELOC/doc/latex/einfuehrung2/05-11-8.ltx2crop + RELOC/doc/latex/einfuehrung2/05-11-9.ltx2crop + RELOC/doc/latex/einfuehrung2/05-12-1.ltx + RELOC/doc/latex/einfuehrung2/05-12-2.ltx + RELOC/doc/latex/einfuehrung2/05-12-3.ltx + RELOC/doc/latex/einfuehrung2/05-13-1.ltx1 + RELOC/doc/latex/einfuehrung2/05-13-2.ltx1 + RELOC/doc/latex/einfuehrung2/05-13-3.ltx1ps + RELOC/doc/latex/einfuehrung2/05-13-4.ltx + RELOC/doc/latex/einfuehrung2/05-13-5.ltx + RELOC/doc/latex/einfuehrung2/05-14-1.ltx + RELOC/doc/latex/einfuehrung2/05-14-2.ltx + RELOC/doc/latex/einfuehrung2/05-14-3.ltx + RELOC/doc/latex/einfuehrung2/05-15-1.ltx2 + RELOC/doc/latex/einfuehrung2/05-15-2.ltx + RELOC/doc/latex/einfuehrung2/05-15-3.ltx + RELOC/doc/latex/einfuehrung2/05-15-4.ltx + RELOC/doc/latex/einfuehrung2/05-15-5.ltx2 + RELOC/doc/latex/einfuehrung2/05-16-1.ltx + RELOC/doc/latex/einfuehrung2/06-02-1.ltxps + RELOC/doc/latex/einfuehrung2/06-02-10.ltx + RELOC/doc/latex/einfuehrung2/06-02-2.ltx + RELOC/doc/latex/einfuehrung2/06-02-3.ltx + RELOC/doc/latex/einfuehrung2/06-02-4.ltx + RELOC/doc/latex/einfuehrung2/06-02-5.ltx + RELOC/doc/latex/einfuehrung2/06-02-6.ltx + RELOC/doc/latex/einfuehrung2/06-02-7.ltx + RELOC/doc/latex/einfuehrung2/06-02-8.ltx + RELOC/doc/latex/einfuehrung2/06-02-9.ltx + RELOC/doc/latex/einfuehrung2/06-03-1.ltx + RELOC/doc/latex/einfuehrung2/06-03-10.ltx + RELOC/doc/latex/einfuehrung2/06-03-100.ltx + RELOC/doc/latex/einfuehrung2/06-03-101.ltx + RELOC/doc/latex/einfuehrung2/06-03-102.ltx + RELOC/doc/latex/einfuehrung2/06-03-103.ltx + RELOC/doc/latex/einfuehrung2/06-03-104.ltx + RELOC/doc/latex/einfuehrung2/06-03-105.ltx + RELOC/doc/latex/einfuehrung2/06-03-106.ltx + RELOC/doc/latex/einfuehrung2/06-03-107.ltx + RELOC/doc/latex/einfuehrung2/06-03-108.ltx + RELOC/doc/latex/einfuehrung2/06-03-109.ltx + RELOC/doc/latex/einfuehrung2/06-03-11.ltx + RELOC/doc/latex/einfuehrung2/06-03-110.ltx + RELOC/doc/latex/einfuehrung2/06-03-111.ltx + RELOC/doc/latex/einfuehrung2/06-03-112.ltx + RELOC/doc/latex/einfuehrung2/06-03-113.ltx + RELOC/doc/latex/einfuehrung2/06-03-114.ltx + RELOC/doc/latex/einfuehrung2/06-03-115.ltx + RELOC/doc/latex/einfuehrung2/06-03-116.ltx + RELOC/doc/latex/einfuehrung2/06-03-117.ltx + RELOC/doc/latex/einfuehrung2/06-03-118.ltx + RELOC/doc/latex/einfuehrung2/06-03-119.ltx + RELOC/doc/latex/einfuehrung2/06-03-12.ltx + RELOC/doc/latex/einfuehrung2/06-03-120.ltx + RELOC/doc/latex/einfuehrung2/06-03-121.ltx + RELOC/doc/latex/einfuehrung2/06-03-122.ltx + RELOC/doc/latex/einfuehrung2/06-03-123.ltx + RELOC/doc/latex/einfuehrung2/06-03-124.ltx + RELOC/doc/latex/einfuehrung2/06-03-125.ltx + RELOC/doc/latex/einfuehrung2/06-03-126.ltx + RELOC/doc/latex/einfuehrung2/06-03-127.ltx + RELOC/doc/latex/einfuehrung2/06-03-128.ltx + RELOC/doc/latex/einfuehrung2/06-03-129.ltx + RELOC/doc/latex/einfuehrung2/06-03-13.ltx + RELOC/doc/latex/einfuehrung2/06-03-130.ltx + RELOC/doc/latex/einfuehrung2/06-03-131.ltx + RELOC/doc/latex/einfuehrung2/06-03-132.ltx + RELOC/doc/latex/einfuehrung2/06-03-133.ltx + RELOC/doc/latex/einfuehrung2/06-03-134.ltx + RELOC/doc/latex/einfuehrung2/06-03-135.ltx + RELOC/doc/latex/einfuehrung2/06-03-136.ltx + RELOC/doc/latex/einfuehrung2/06-03-14.ltx + RELOC/doc/latex/einfuehrung2/06-03-15.ltx + RELOC/doc/latex/einfuehrung2/06-03-16.ltx + RELOC/doc/latex/einfuehrung2/06-03-17.ltx + RELOC/doc/latex/einfuehrung2/06-03-18.ltx + RELOC/doc/latex/einfuehrung2/06-03-19.ltx + RELOC/doc/latex/einfuehrung2/06-03-2.ltx + RELOC/doc/latex/einfuehrung2/06-03-20.ltx + RELOC/doc/latex/einfuehrung2/06-03-21.ltx + RELOC/doc/latex/einfuehrung2/06-03-22.ltx + RELOC/doc/latex/einfuehrung2/06-03-23.ltx + RELOC/doc/latex/einfuehrung2/06-03-24.xltx + RELOC/doc/latex/einfuehrung2/06-03-25.xltx + RELOC/doc/latex/einfuehrung2/06-03-26.xltx + RELOC/doc/latex/einfuehrung2/06-03-27.xltx + RELOC/doc/latex/einfuehrung2/06-03-28.xltx + RELOC/doc/latex/einfuehrung2/06-03-29.ltx + RELOC/doc/latex/einfuehrung2/06-03-3.ltx + RELOC/doc/latex/einfuehrung2/06-03-30.ltx + RELOC/doc/latex/einfuehrung2/06-03-31.ltx + RELOC/doc/latex/einfuehrung2/06-03-32.ltx + RELOC/doc/latex/einfuehrung2/06-03-33.ltx + RELOC/doc/latex/einfuehrung2/06-03-34.ltx + RELOC/doc/latex/einfuehrung2/06-03-35.ltx + RELOC/doc/latex/einfuehrung2/06-03-36.ltx + RELOC/doc/latex/einfuehrung2/06-03-37.ltx + RELOC/doc/latex/einfuehrung2/06-03-38.ltx + RELOC/doc/latex/einfuehrung2/06-03-39.ltx + RELOC/doc/latex/einfuehrung2/06-03-4.ltx + RELOC/doc/latex/einfuehrung2/06-03-40.ltx + RELOC/doc/latex/einfuehrung2/06-03-41.ltx + RELOC/doc/latex/einfuehrung2/06-03-42.ltx + RELOC/doc/latex/einfuehrung2/06-03-43.ltx + RELOC/doc/latex/einfuehrung2/06-03-44.ltx + RELOC/doc/latex/einfuehrung2/06-03-45.ltx + RELOC/doc/latex/einfuehrung2/06-03-46.ltx + RELOC/doc/latex/einfuehrung2/06-03-47.ltx + RELOC/doc/latex/einfuehrung2/06-03-48.ltx + RELOC/doc/latex/einfuehrung2/06-03-49.ltx2 + RELOC/doc/latex/einfuehrung2/06-03-5.ltx + RELOC/doc/latex/einfuehrung2/06-03-50.ltx + RELOC/doc/latex/einfuehrung2/06-03-51.ltx + RELOC/doc/latex/einfuehrung2/06-03-52.ltx + RELOC/doc/latex/einfuehrung2/06-03-53.ltx + RELOC/doc/latex/einfuehrung2/06-03-54.ltx + RELOC/doc/latex/einfuehrung2/06-03-55.ltx + RELOC/doc/latex/einfuehrung2/06-03-56.ltx + RELOC/doc/latex/einfuehrung2/06-03-57.ltx + RELOC/doc/latex/einfuehrung2/06-03-58.ltx + RELOC/doc/latex/einfuehrung2/06-03-59.ltx + RELOC/doc/latex/einfuehrung2/06-03-6.ltx + RELOC/doc/latex/einfuehrung2/06-03-60.ltx + RELOC/doc/latex/einfuehrung2/06-03-61.ltx + RELOC/doc/latex/einfuehrung2/06-03-62.ltx + RELOC/doc/latex/einfuehrung2/06-03-63.ltx2 + RELOC/doc/latex/einfuehrung2/06-03-64.ltx2 + RELOC/doc/latex/einfuehrung2/06-03-65.ltx2 + RELOC/doc/latex/einfuehrung2/06-03-66.ltx2 + RELOC/doc/latex/einfuehrung2/06-03-67.ltx + RELOC/doc/latex/einfuehrung2/06-03-68.ltx2 + RELOC/doc/latex/einfuehrung2/06-03-69.ltx2 + RELOC/doc/latex/einfuehrung2/06-03-7.ltx + RELOC/doc/latex/einfuehrung2/06-03-70.ltx2 + RELOC/doc/latex/einfuehrung2/06-03-71.ltx2 + RELOC/doc/latex/einfuehrung2/06-03-72.ltx2 + RELOC/doc/latex/einfuehrung2/06-03-73.ltx2 + RELOC/doc/latex/einfuehrung2/06-03-74.ltx + RELOC/doc/latex/einfuehrung2/06-03-75.ltx + RELOC/doc/latex/einfuehrung2/06-03-76.ltx + RELOC/doc/latex/einfuehrung2/06-03-77.ltx + RELOC/doc/latex/einfuehrung2/06-03-78.ltx + RELOC/doc/latex/einfuehrung2/06-03-79.ltx + RELOC/doc/latex/einfuehrung2/06-03-8.ltx + RELOC/doc/latex/einfuehrung2/06-03-80.ltx + RELOC/doc/latex/einfuehrung2/06-03-81.ltx + RELOC/doc/latex/einfuehrung2/06-03-82.ltx + RELOC/doc/latex/einfuehrung2/06-03-83.ltx + RELOC/doc/latex/einfuehrung2/06-03-84.ltx + RELOC/doc/latex/einfuehrung2/06-03-85.ltx + RELOC/doc/latex/einfuehrung2/06-03-86.ltx + RELOC/doc/latex/einfuehrung2/06-03-87.ltx + RELOC/doc/latex/einfuehrung2/06-03-88.ltx + RELOC/doc/latex/einfuehrung2/06-03-89.ltx + RELOC/doc/latex/einfuehrung2/06-03-9.ltx + RELOC/doc/latex/einfuehrung2/06-03-90.ltx + RELOC/doc/latex/einfuehrung2/06-03-91.ltx + RELOC/doc/latex/einfuehrung2/06-03-92.ltx + RELOC/doc/latex/einfuehrung2/06-03-93.ltx + RELOC/doc/latex/einfuehrung2/06-03-94.ltx + RELOC/doc/latex/einfuehrung2/06-03-95.ltx + RELOC/doc/latex/einfuehrung2/06-03-96.ltx + RELOC/doc/latex/einfuehrung2/06-03-97.ltx + RELOC/doc/latex/einfuehrung2/06-03-98.ltx + RELOC/doc/latex/einfuehrung2/06-03-99.ltx + RELOC/doc/latex/einfuehrung2/07-00-1.ltx + RELOC/doc/latex/einfuehrung2/07-01-1.ltx + RELOC/doc/latex/einfuehrung2/07-01-10.ltx + RELOC/doc/latex/einfuehrung2/07-01-2.ltx + RELOC/doc/latex/einfuehrung2/07-01-3.ltx + RELOC/doc/latex/einfuehrung2/07-01-4.ltx + RELOC/doc/latex/einfuehrung2/07-01-5.ltx + RELOC/doc/latex/einfuehrung2/07-01-6.ltx + RELOC/doc/latex/einfuehrung2/07-01-7.ltx + RELOC/doc/latex/einfuehrung2/07-01-8.ltx + RELOC/doc/latex/einfuehrung2/07-01-9.ltx + RELOC/doc/latex/einfuehrung2/07-02-1.ltx + RELOC/doc/latex/einfuehrung2/07-02-2.ltx + RELOC/doc/latex/einfuehrung2/07-02-3.ltx + RELOC/doc/latex/einfuehrung2/07-02-4.ltx + RELOC/doc/latex/einfuehrung2/07-02-5.ltx2 + RELOC/doc/latex/einfuehrung2/07-03-1.ltx + RELOC/doc/latex/einfuehrung2/07-03-2.ltx + RELOC/doc/latex/einfuehrung2/07-03-3.ltx + RELOC/doc/latex/einfuehrung2/07-03-4.ltx + RELOC/doc/latex/einfuehrung2/07-03-5.ltx + RELOC/doc/latex/einfuehrung2/07-03-6.ltx + RELOC/doc/latex/einfuehrung2/07-03-7.ltx + RELOC/doc/latex/einfuehrung2/07-03-8.ltx + RELOC/doc/latex/einfuehrung2/07-04-1.ltx + RELOC/doc/latex/einfuehrung2/08-02-1.ltx2crop + RELOC/doc/latex/einfuehrung2/08-02-2.ltx2crop + RELOC/doc/latex/einfuehrung2/08-02-3.ltx2crop + RELOC/doc/latex/einfuehrung2/08-04-1.ltx2crop + RELOC/doc/latex/einfuehrung2/08-04-2.ltx2crop + RELOC/doc/latex/einfuehrung2/08-05-1.ltx2crop + RELOC/doc/latex/einfuehrung2/08-05-2.ltx2crop + RELOC/doc/latex/einfuehrung2/08-05-3.ltx2crop + RELOC/doc/latex/einfuehrung2/08-05-4.ltx2crop + RELOC/doc/latex/einfuehrung2/08-05-5.ltx2crop + RELOC/doc/latex/einfuehrung2/08-05-6.ltx2crop + RELOC/doc/latex/einfuehrung2/08-05-7.ltx2crop + RELOC/doc/latex/einfuehrung2/08-06-1.ltx2crop + RELOC/doc/latex/einfuehrung2/08-06-10.ltx2crop + RELOC/doc/latex/einfuehrung2/08-06-11.ltx2crop + RELOC/doc/latex/einfuehrung2/08-06-12.ltx2crop + RELOC/doc/latex/einfuehrung2/08-06-13.ltx2crop + RELOC/doc/latex/einfuehrung2/08-06-2.ltx2crop + RELOC/doc/latex/einfuehrung2/08-06-3.ltx2crop + RELOC/doc/latex/einfuehrung2/08-06-4.ltx2crop + RELOC/doc/latex/einfuehrung2/08-06-5.ltx2crop + RELOC/doc/latex/einfuehrung2/08-06-6.ltx2crop + RELOC/doc/latex/einfuehrung2/08-06-7.ltx2crop + RELOC/doc/latex/einfuehrung2/08-06-8.ltx2crop + RELOC/doc/latex/einfuehrung2/08-06-9.ltx2crop + RELOC/doc/latex/einfuehrung2/08-07-1.ltx2crop + RELOC/doc/latex/einfuehrung2/08-07-10.ltx2crop + RELOC/doc/latex/einfuehrung2/08-07-11.ltx2crop + RELOC/doc/latex/einfuehrung2/08-07-12.ltx2crop + RELOC/doc/latex/einfuehrung2/08-07-13.ltx + RELOC/doc/latex/einfuehrung2/08-07-14.ltx2crop + RELOC/doc/latex/einfuehrung2/08-07-15.ltx + RELOC/doc/latex/einfuehrung2/08-07-16.ltx + RELOC/doc/latex/einfuehrung2/08-07-17.ltx + RELOC/doc/latex/einfuehrung2/08-07-18.ltx + RELOC/doc/latex/einfuehrung2/08-07-19.ltx + RELOC/doc/latex/einfuehrung2/08-07-2.ltx2crop + RELOC/doc/latex/einfuehrung2/08-07-20.ltx + RELOC/doc/latex/einfuehrung2/08-07-21.ltx + RELOC/doc/latex/einfuehrung2/08-07-22.ltx + RELOC/doc/latex/einfuehrung2/08-07-23.ltx + RELOC/doc/latex/einfuehrung2/08-07-24.ltx + RELOC/doc/latex/einfuehrung2/08-07-25.ltx + RELOC/doc/latex/einfuehrung2/08-07-26.ltx + RELOC/doc/latex/einfuehrung2/08-07-27.ltx + RELOC/doc/latex/einfuehrung2/08-07-28.ltx + RELOC/doc/latex/einfuehrung2/08-07-29.ltx + RELOC/doc/latex/einfuehrung2/08-07-3.ltx2crop + RELOC/doc/latex/einfuehrung2/08-07-30.ltx + RELOC/doc/latex/einfuehrung2/08-07-31.ltx + RELOC/doc/latex/einfuehrung2/08-07-32.ltx + RELOC/doc/latex/einfuehrung2/08-07-4.ltx2crop + RELOC/doc/latex/einfuehrung2/08-07-5.ltx2crop + RELOC/doc/latex/einfuehrung2/08-07-6.ltx2crop + RELOC/doc/latex/einfuehrung2/08-07-7.ltx2crop + RELOC/doc/latex/einfuehrung2/08-07-8.ltx2crop + RELOC/doc/latex/einfuehrung2/08-07-9.ltx2crop + RELOC/doc/latex/einfuehrung2/08-08-1.ltx + RELOC/doc/latex/einfuehrung2/08-08-10.ltx2crop + RELOC/doc/latex/einfuehrung2/08-08-11.ltx2crop + RELOC/doc/latex/einfuehrung2/08-08-2.ltx + RELOC/doc/latex/einfuehrung2/08-08-3.ltx + RELOC/doc/latex/einfuehrung2/08-08-4.ltx + RELOC/doc/latex/einfuehrung2/08-08-5.ltx + RELOC/doc/latex/einfuehrung2/08-08-6.ltx + RELOC/doc/latex/einfuehrung2/08-08-7.ltx + RELOC/doc/latex/einfuehrung2/08-08-8.ltx + RELOC/doc/latex/einfuehrung2/08-08-9.ltx + RELOC/doc/latex/einfuehrung2/08-09-1.ltx + RELOC/doc/latex/einfuehrung2/08-09-2.ltx2 + RELOC/doc/latex/einfuehrung2/08-09-3.ltx2 + RELOC/doc/latex/einfuehrung2/08-09-4.ltx2 + RELOC/doc/latex/einfuehrung2/09-02-1.ltx + RELOC/doc/latex/einfuehrung2/09-02-2.ltx + RELOC/doc/latex/einfuehrung2/09-02-3.ltx + RELOC/doc/latex/einfuehrung2/09-02-4.ltx + RELOC/doc/latex/einfuehrung2/09-02-5.ltx + RELOC/doc/latex/einfuehrung2/09-03-1.ltx + RELOC/doc/latex/einfuehrung2/09-03-10.ltx + RELOC/doc/latex/einfuehrung2/09-03-11.ltx + RELOC/doc/latex/einfuehrung2/09-03-2.ltx + RELOC/doc/latex/einfuehrung2/09-03-3.ltx + RELOC/doc/latex/einfuehrung2/09-03-4.ltx + RELOC/doc/latex/einfuehrung2/09-03-5.ltx + RELOC/doc/latex/einfuehrung2/09-03-6.ltx + RELOC/doc/latex/einfuehrung2/09-03-7.ltx + RELOC/doc/latex/einfuehrung2/09-03-8.ltx2 + RELOC/doc/latex/einfuehrung2/09-03-9.ltx2 + RELOC/doc/latex/einfuehrung2/09-04-1.ltx + RELOC/doc/latex/einfuehrung2/09-05-1.ltx + RELOC/doc/latex/einfuehrung2/09-05-2.ltx + RELOC/doc/latex/einfuehrung2/09-05-3.ltx + RELOC/doc/latex/einfuehrung2/09-06-1.ltx + RELOC/doc/latex/einfuehrung2/09-06-10.ltx + RELOC/doc/latex/einfuehrung2/09-06-11.ltx + RELOC/doc/latex/einfuehrung2/09-06-12.ltx + RELOC/doc/latex/einfuehrung2/09-06-13.ltx + RELOC/doc/latex/einfuehrung2/09-06-14.ltx + RELOC/doc/latex/einfuehrung2/09-06-15.ltx + RELOC/doc/latex/einfuehrung2/09-06-16.ltx + RELOC/doc/latex/einfuehrung2/09-06-17.ltx + RELOC/doc/latex/einfuehrung2/09-06-18.ltx + RELOC/doc/latex/einfuehrung2/09-06-19.ltx + RELOC/doc/latex/einfuehrung2/09-06-2.ltx + RELOC/doc/latex/einfuehrung2/09-06-20.ltx + RELOC/doc/latex/einfuehrung2/09-06-21.ltx + RELOC/doc/latex/einfuehrung2/09-06-22.ltx + RELOC/doc/latex/einfuehrung2/09-06-23.ltx + RELOC/doc/latex/einfuehrung2/09-06-24.ltx + RELOC/doc/latex/einfuehrung2/09-06-25.ltx + RELOC/doc/latex/einfuehrung2/09-06-26.ltx + RELOC/doc/latex/einfuehrung2/09-06-27.ltx + RELOC/doc/latex/einfuehrung2/09-06-28.ltx + RELOC/doc/latex/einfuehrung2/09-06-29.ltx + RELOC/doc/latex/einfuehrung2/09-06-3.ltx + RELOC/doc/latex/einfuehrung2/09-06-30.ltx + RELOC/doc/latex/einfuehrung2/09-06-31.ltx + RELOC/doc/latex/einfuehrung2/09-06-32.ltx + RELOC/doc/latex/einfuehrung2/09-06-33.ltx + RELOC/doc/latex/einfuehrung2/09-06-34.ltx + RELOC/doc/latex/einfuehrung2/09-06-35.ltx + RELOC/doc/latex/einfuehrung2/09-06-36.ltx + RELOC/doc/latex/einfuehrung2/09-06-37.ltx + RELOC/doc/latex/einfuehrung2/09-06-38.ltx + RELOC/doc/latex/einfuehrung2/09-06-39.ltx + RELOC/doc/latex/einfuehrung2/09-06-4.ltx + RELOC/doc/latex/einfuehrung2/09-06-40.ltx + RELOC/doc/latex/einfuehrung2/09-06-41.ltx + RELOC/doc/latex/einfuehrung2/09-06-42.ltx + RELOC/doc/latex/einfuehrung2/09-06-43.ltx + RELOC/doc/latex/einfuehrung2/09-06-44.ltx + RELOC/doc/latex/einfuehrung2/09-06-45.ltx + RELOC/doc/latex/einfuehrung2/09-06-46.ltx + RELOC/doc/latex/einfuehrung2/09-06-47.ltx + RELOC/doc/latex/einfuehrung2/09-06-48.ltx + RELOC/doc/latex/einfuehrung2/09-06-49.ltx + RELOC/doc/latex/einfuehrung2/09-06-5.ltx + RELOC/doc/latex/einfuehrung2/09-06-6.ltx + RELOC/doc/latex/einfuehrung2/09-06-7.ltx + RELOC/doc/latex/einfuehrung2/09-06-8.ltx + RELOC/doc/latex/einfuehrung2/09-06-9.ltx + RELOC/doc/latex/einfuehrung2/09-07-1.ltx + RELOC/doc/latex/einfuehrung2/09-07-10.ltx + RELOC/doc/latex/einfuehrung2/09-07-11.ltx + RELOC/doc/latex/einfuehrung2/09-07-12.ltx + RELOC/doc/latex/einfuehrung2/09-07-13.ltx + RELOC/doc/latex/einfuehrung2/09-07-14.ltx + RELOC/doc/latex/einfuehrung2/09-07-15.ltx + RELOC/doc/latex/einfuehrung2/09-07-16.ltx + RELOC/doc/latex/einfuehrung2/09-07-17.ltx + RELOC/doc/latex/einfuehrung2/09-07-18.ltx + RELOC/doc/latex/einfuehrung2/09-07-19.ltx + RELOC/doc/latex/einfuehrung2/09-07-2.ltx + RELOC/doc/latex/einfuehrung2/09-07-20.ltx + RELOC/doc/latex/einfuehrung2/09-07-21.ltx + RELOC/doc/latex/einfuehrung2/09-07-22.ltx + RELOC/doc/latex/einfuehrung2/09-07-23.ltx + RELOC/doc/latex/einfuehrung2/09-07-24.ltx + RELOC/doc/latex/einfuehrung2/09-07-25.ltx + RELOC/doc/latex/einfuehrung2/09-07-26.ltx + RELOC/doc/latex/einfuehrung2/09-07-27.ltx + RELOC/doc/latex/einfuehrung2/09-07-28.ltx + RELOC/doc/latex/einfuehrung2/09-07-29.ltx + RELOC/doc/latex/einfuehrung2/09-07-3.ltx + RELOC/doc/latex/einfuehrung2/09-07-30.ltx + RELOC/doc/latex/einfuehrung2/09-07-31.ltx + RELOC/doc/latex/einfuehrung2/09-07-32.ltx + RELOC/doc/latex/einfuehrung2/09-07-33.ltx + RELOC/doc/latex/einfuehrung2/09-07-34.ltx + RELOC/doc/latex/einfuehrung2/09-07-35.ltx + RELOC/doc/latex/einfuehrung2/09-07-36.ltx + RELOC/doc/latex/einfuehrung2/09-07-37.ltx + RELOC/doc/latex/einfuehrung2/09-07-38.ltx + RELOC/doc/latex/einfuehrung2/09-07-39.ltx + RELOC/doc/latex/einfuehrung2/09-07-4.ltx + RELOC/doc/latex/einfuehrung2/09-07-40.ltx + RELOC/doc/latex/einfuehrung2/09-07-41.ltx + RELOC/doc/latex/einfuehrung2/09-07-42.ltx + RELOC/doc/latex/einfuehrung2/09-07-43.ltx + RELOC/doc/latex/einfuehrung2/09-07-44.ltx + RELOC/doc/latex/einfuehrung2/09-07-45.ltx + RELOC/doc/latex/einfuehrung2/09-07-46.ltx + RELOC/doc/latex/einfuehrung2/09-07-47.ltx + RELOC/doc/latex/einfuehrung2/09-07-48.ltx + RELOC/doc/latex/einfuehrung2/09-07-49.ltx + RELOC/doc/latex/einfuehrung2/09-07-5.ltx + RELOC/doc/latex/einfuehrung2/09-07-50.ltx + RELOC/doc/latex/einfuehrung2/09-07-51.ltx + RELOC/doc/latex/einfuehrung2/09-07-52.ltx + RELOC/doc/latex/einfuehrung2/09-07-53.ltx + RELOC/doc/latex/einfuehrung2/09-07-54.ltx + RELOC/doc/latex/einfuehrung2/09-07-55.ltx + RELOC/doc/latex/einfuehrung2/09-07-56.ltx + RELOC/doc/latex/einfuehrung2/09-07-57.ltx + RELOC/doc/latex/einfuehrung2/09-07-58.ltx + RELOC/doc/latex/einfuehrung2/09-07-59.ltx + RELOC/doc/latex/einfuehrung2/09-07-6.ltx + RELOC/doc/latex/einfuehrung2/09-07-60.ltx + RELOC/doc/latex/einfuehrung2/09-07-61.ltx + RELOC/doc/latex/einfuehrung2/09-07-62.ltx + RELOC/doc/latex/einfuehrung2/09-07-63.ltx + RELOC/doc/latex/einfuehrung2/09-07-64.ltx + RELOC/doc/latex/einfuehrung2/09-07-7.ltx + RELOC/doc/latex/einfuehrung2/09-07-8.ltx + RELOC/doc/latex/einfuehrung2/09-07-9.ltx + RELOC/doc/latex/einfuehrung2/09-08-1.ltx + RELOC/doc/latex/einfuehrung2/09-08-10.ltx + RELOC/doc/latex/einfuehrung2/09-08-11.ltx + RELOC/doc/latex/einfuehrung2/09-08-12.ltx + RELOC/doc/latex/einfuehrung2/09-08-13.ltx + RELOC/doc/latex/einfuehrung2/09-08-14.ltx + RELOC/doc/latex/einfuehrung2/09-08-15.ltx + RELOC/doc/latex/einfuehrung2/09-08-16.ltx + RELOC/doc/latex/einfuehrung2/09-08-17.ltx + RELOC/doc/latex/einfuehrung2/09-08-18.ltx + RELOC/doc/latex/einfuehrung2/09-08-19.ltx + RELOC/doc/latex/einfuehrung2/09-08-2.ltx + RELOC/doc/latex/einfuehrung2/09-08-20.ltx + RELOC/doc/latex/einfuehrung2/09-08-21.ltx + RELOC/doc/latex/einfuehrung2/09-08-22.ltx + RELOC/doc/latex/einfuehrung2/09-08-23.ltx + RELOC/doc/latex/einfuehrung2/09-08-24.ltx + RELOC/doc/latex/einfuehrung2/09-08-25.xltx + RELOC/doc/latex/einfuehrung2/09-08-26.ltx + RELOC/doc/latex/einfuehrung2/09-08-27.ltx + RELOC/doc/latex/einfuehrung2/09-08-28.ltx + RELOC/doc/latex/einfuehrung2/09-08-29.ltx + RELOC/doc/latex/einfuehrung2/09-08-3.ltx + RELOC/doc/latex/einfuehrung2/09-08-30.ltx + RELOC/doc/latex/einfuehrung2/09-08-31.ltx + RELOC/doc/latex/einfuehrung2/09-08-32.ltx + RELOC/doc/latex/einfuehrung2/09-08-33.ltx + RELOC/doc/latex/einfuehrung2/09-08-34.ltx + RELOC/doc/latex/einfuehrung2/09-08-35.ltx + RELOC/doc/latex/einfuehrung2/09-08-36.ltx4 + RELOC/doc/latex/einfuehrung2/09-08-37.ltx + RELOC/doc/latex/einfuehrung2/09-08-38.ltx + RELOC/doc/latex/einfuehrung2/09-08-39.ltx + RELOC/doc/latex/einfuehrung2/09-08-4.ltx + RELOC/doc/latex/einfuehrung2/09-08-40.ltx + RELOC/doc/latex/einfuehrung2/09-08-41.ltx + RELOC/doc/latex/einfuehrung2/09-08-42.ltx + RELOC/doc/latex/einfuehrung2/09-08-43.ltx + RELOC/doc/latex/einfuehrung2/09-08-44.ltx + RELOC/doc/latex/einfuehrung2/09-08-45.ltx + RELOC/doc/latex/einfuehrung2/09-08-46.ltx + RELOC/doc/latex/einfuehrung2/09-08-5.ltx + RELOC/doc/latex/einfuehrung2/09-08-6.ltx + RELOC/doc/latex/einfuehrung2/09-08-7.ltx + RELOC/doc/latex/einfuehrung2/09-08-8.ltx + RELOC/doc/latex/einfuehrung2/09-08-9.ltx + RELOC/doc/latex/einfuehrung2/10-01-1.ltx + RELOC/doc/latex/einfuehrung2/10-01-2.ltx2 + RELOC/doc/latex/einfuehrung2/10-01-3.ltx2 + RELOC/doc/latex/einfuehrung2/10-01-4.ltx + RELOC/doc/latex/einfuehrung2/10-01-5.ltx + RELOC/doc/latex/einfuehrung2/10-01-6.ltx + RELOC/doc/latex/einfuehrung2/10-02-1.ltx + RELOC/doc/latex/einfuehrung2/10-03-1.ltx + RELOC/doc/latex/einfuehrung2/10-03-2.ltx + RELOC/doc/latex/einfuehrung2/10-03-3.ltx + RELOC/doc/latex/einfuehrung2/10-04-1.ltx + RELOC/doc/latex/einfuehrung2/10-04-2.ltx + RELOC/doc/latex/einfuehrung2/10-04-3.ltx + RELOC/doc/latex/einfuehrung2/10-05-1.ltx2 + RELOC/doc/latex/einfuehrung2/10-05-2.ltx2 + RELOC/doc/latex/einfuehrung2/10-05-3.ltx2 + RELOC/doc/latex/einfuehrung2/10-05-4.ltx2 + RELOC/doc/latex/einfuehrung2/10-06-1.ltx2 + RELOC/doc/latex/einfuehrung2/10-07-1.ltx + RELOC/doc/latex/einfuehrung2/10-07-10.ltx2 + RELOC/doc/latex/einfuehrung2/10-07-11.ltx2 + RELOC/doc/latex/einfuehrung2/10-07-12.ltx2 + RELOC/doc/latex/einfuehrung2/10-07-13.ltx2 + RELOC/doc/latex/einfuehrung2/10-07-14.ltx2 + RELOC/doc/latex/einfuehrung2/10-07-15.ltx + RELOC/doc/latex/einfuehrung2/10-07-16.ltx + RELOC/doc/latex/einfuehrung2/10-07-17.ltx + RELOC/doc/latex/einfuehrung2/10-07-18.ltx2 + RELOC/doc/latex/einfuehrung2/10-07-19.ltx2 + RELOC/doc/latex/einfuehrung2/10-07-2.ltx2 + RELOC/doc/latex/einfuehrung2/10-07-20.ltx2 + RELOC/doc/latex/einfuehrung2/10-07-21.ltx2 + RELOC/doc/latex/einfuehrung2/10-07-22.ltx + RELOC/doc/latex/einfuehrung2/10-07-23.ltx + RELOC/doc/latex/einfuehrung2/10-07-24.ltx + RELOC/doc/latex/einfuehrung2/10-07-25.ltx + RELOC/doc/latex/einfuehrung2/10-07-26.ltx + RELOC/doc/latex/einfuehrung2/10-07-27.ltx + RELOC/doc/latex/einfuehrung2/10-07-28.ltx + RELOC/doc/latex/einfuehrung2/10-07-29.ltx2 + RELOC/doc/latex/einfuehrung2/10-07-3.ltx2 + RELOC/doc/latex/einfuehrung2/10-07-30.ltx2 + RELOC/doc/latex/einfuehrung2/10-07-31.ltx2 + RELOC/doc/latex/einfuehrung2/10-07-32.ltx + RELOC/doc/latex/einfuehrung2/10-07-33.ltx2 + RELOC/doc/latex/einfuehrung2/10-07-4.ltx + RELOC/doc/latex/einfuehrung2/10-07-5.ltx + RELOC/doc/latex/einfuehrung2/10-07-6.ltx + RELOC/doc/latex/einfuehrung2/10-07-7.ltx2 + RELOC/doc/latex/einfuehrung2/10-07-8.ltx2 + RELOC/doc/latex/einfuehrung2/10-07-9.ltx2 + RELOC/doc/latex/einfuehrung2/10-08-1.ltx + RELOC/doc/latex/einfuehrung2/10-08-10.xltx + RELOC/doc/latex/einfuehrung2/10-08-11.ltx + RELOC/doc/latex/einfuehrung2/10-08-2.ltx2crop + RELOC/doc/latex/einfuehrung2/10-08-3.ltx2crop + RELOC/doc/latex/einfuehrung2/10-08-4.ltx + RELOC/doc/latex/einfuehrung2/10-08-5.ltx2crop + RELOC/doc/latex/einfuehrung2/10-08-6.ltx2crop + RELOC/doc/latex/einfuehrung2/10-08-7.ltx2 + RELOC/doc/latex/einfuehrung2/10-08-8.ltx + RELOC/doc/latex/einfuehrung2/10-08-9.ltx2 + RELOC/doc/latex/einfuehrung2/11-01-1.ltx + RELOC/doc/latex/einfuehrung2/11-01-2.ltx + RELOC/doc/latex/einfuehrung2/11-02-1.ltx + RELOC/doc/latex/einfuehrung2/11-02-2.ltx + RELOC/doc/latex/einfuehrung2/11-03-1.ltx + RELOC/doc/latex/einfuehrung2/11-05-1.ltx + RELOC/doc/latex/einfuehrung2/11-05-10.ltx + RELOC/doc/latex/einfuehrung2/11-05-11.ltx + RELOC/doc/latex/einfuehrung2/11-05-12.ltx + RELOC/doc/latex/einfuehrung2/11-05-13.ltx + RELOC/doc/latex/einfuehrung2/11-05-14.ltx + RELOC/doc/latex/einfuehrung2/11-05-15.ltx2 + RELOC/doc/latex/einfuehrung2/11-05-16.ltx2 + RELOC/doc/latex/einfuehrung2/11-05-17.ltx2 + RELOC/doc/latex/einfuehrung2/11-05-18.ltx2 + RELOC/doc/latex/einfuehrung2/11-05-19.ltx + RELOC/doc/latex/einfuehrung2/11-05-2.ltx + RELOC/doc/latex/einfuehrung2/11-05-20.ltx + RELOC/doc/latex/einfuehrung2/11-05-21.ltx + RELOC/doc/latex/einfuehrung2/11-05-22.ltx + RELOC/doc/latex/einfuehrung2/11-05-23.ltx + RELOC/doc/latex/einfuehrung2/11-05-3.ltx + RELOC/doc/latex/einfuehrung2/11-05-4.ltx + RELOC/doc/latex/einfuehrung2/11-05-5.ltx + RELOC/doc/latex/einfuehrung2/11-05-6.ltx + RELOC/doc/latex/einfuehrung2/11-05-7.ltx + RELOC/doc/latex/einfuehrung2/11-05-8.ltx + RELOC/doc/latex/einfuehrung2/11-05-9.ltx + RELOC/doc/latex/einfuehrung2/11-06-1.ltx + RELOC/doc/latex/einfuehrung2/11-06-10.ltx + RELOC/doc/latex/einfuehrung2/11-06-11.lualtx + RELOC/doc/latex/einfuehrung2/11-06-12.ltx + RELOC/doc/latex/einfuehrung2/11-06-13.ltx + RELOC/doc/latex/einfuehrung2/11-06-14.ltx + RELOC/doc/latex/einfuehrung2/11-06-15.ltx + RELOC/doc/latex/einfuehrung2/11-06-16.ltx + RELOC/doc/latex/einfuehrung2/11-06-17.ltx + RELOC/doc/latex/einfuehrung2/11-06-18.ltx + RELOC/doc/latex/einfuehrung2/11-06-19.ltx + RELOC/doc/latex/einfuehrung2/11-06-2.ltx + RELOC/doc/latex/einfuehrung2/11-06-20.ltx + RELOC/doc/latex/einfuehrung2/11-06-21.ltx + RELOC/doc/latex/einfuehrung2/11-06-3.ltx + RELOC/doc/latex/einfuehrung2/11-06-4.lualtx + RELOC/doc/latex/einfuehrung2/11-06-5.ltx + RELOC/doc/latex/einfuehrung2/11-06-6.ltx + RELOC/doc/latex/einfuehrung2/11-06-7.ltx + RELOC/doc/latex/einfuehrung2/11-06-8.ltx + RELOC/doc/latex/einfuehrung2/11-06-9.ltx + RELOC/doc/latex/einfuehrung2/11-07-1.lualtx + RELOC/doc/latex/einfuehrung2/11-07-2.ltx + RELOC/doc/latex/einfuehrung2/12-01-1.xinl + RELOC/doc/latex/einfuehrung2/12-01-10.xinl + RELOC/doc/latex/einfuehrung2/12-01-11.xinl + RELOC/doc/latex/einfuehrung2/12-01-12.xinl + RELOC/doc/latex/einfuehrung2/12-01-13.xinl + RELOC/doc/latex/einfuehrung2/12-01-2.xinl + RELOC/doc/latex/einfuehrung2/12-01-3.xinl + RELOC/doc/latex/einfuehrung2/12-01-4.xinl + RELOC/doc/latex/einfuehrung2/12-01-5.xinl + RELOC/doc/latex/einfuehrung2/12-01-6.xinl + RELOC/doc/latex/einfuehrung2/12-01-7.xinl + RELOC/doc/latex/einfuehrung2/12-01-8.xinl + RELOC/doc/latex/einfuehrung2/12-01-9.xinl + RELOC/doc/latex/einfuehrung2/12-02-1.ltx + RELOC/doc/latex/einfuehrung2/12-02-2.ltx + RELOC/doc/latex/einfuehrung2/12-02-3.ltx + RELOC/doc/latex/einfuehrung2/12-02-4.ltx + RELOC/doc/latex/einfuehrung2/12-02-5.ltx + RELOC/doc/latex/einfuehrung2/12-02-6.ltx + RELOC/doc/latex/einfuehrung2/12-03-1.ltx + RELOC/doc/latex/einfuehrung2/12-04-1.sh + RELOC/doc/latex/einfuehrung2/12-04-10.lualtx + RELOC/doc/latex/einfuehrung2/12-04-11.lualtx + RELOC/doc/latex/einfuehrung2/12-04-12.lualtx + RELOC/doc/latex/einfuehrung2/12-04-13.lualtx + RELOC/doc/latex/einfuehrung2/12-04-14.lualtx + RELOC/doc/latex/einfuehrung2/12-04-15.xltx + RELOC/doc/latex/einfuehrung2/12-04-16.xltx + RELOC/doc/latex/einfuehrung2/12-04-17.xltx + RELOC/doc/latex/einfuehrung2/12-04-18.lualtx + RELOC/doc/latex/einfuehrung2/12-04-19.lualtx2 + RELOC/doc/latex/einfuehrung2/12-04-2.xltx + RELOC/doc/latex/einfuehrung2/12-04-20.lualtx2 + RELOC/doc/latex/einfuehrung2/12-04-21.lualtx + RELOC/doc/latex/einfuehrung2/12-04-3.sh + RELOC/doc/latex/einfuehrung2/12-04-4.sh + RELOC/doc/latex/einfuehrung2/12-04-5.lualtx + RELOC/doc/latex/einfuehrung2/12-04-6.xltx + RELOC/doc/latex/einfuehrung2/12-04-7.xltx + RELOC/doc/latex/einfuehrung2/12-04-8.xltx + RELOC/doc/latex/einfuehrung2/12-04-9.lualtx + RELOC/doc/latex/einfuehrung2/13-01-1.ltxb + RELOC/doc/latex/einfuehrung2/13-01-2.ltxb + RELOC/doc/latex/einfuehrung2/13-01-3.ltxb + RELOC/doc/latex/einfuehrung2/13-01-4.ltxb + RELOC/doc/latex/einfuehrung2/13-02-1.ltxb + RELOC/doc/latex/einfuehrung2/13-02-10.ltxb + RELOC/doc/latex/einfuehrung2/13-02-11.ltxb + RELOC/doc/latex/einfuehrung2/13-02-12.ltxb + RELOC/doc/latex/einfuehrung2/13-02-13.ltxb + RELOC/doc/latex/einfuehrung2/13-02-14.ltxb + RELOC/doc/latex/einfuehrung2/13-02-15.ltxb + RELOC/doc/latex/einfuehrung2/13-02-16.ltxb + RELOC/doc/latex/einfuehrung2/13-02-17.ltxb + RELOC/doc/latex/einfuehrung2/13-02-18.ltxb + RELOC/doc/latex/einfuehrung2/13-02-19.ltxb + RELOC/doc/latex/einfuehrung2/13-02-2.ltx2 + RELOC/doc/latex/einfuehrung2/13-02-20.ltxb + RELOC/doc/latex/einfuehrung2/13-02-3.ltxb + RELOC/doc/latex/einfuehrung2/13-02-4.ltxb + RELOC/doc/latex/einfuehrung2/13-02-5.ltxb + RELOC/doc/latex/einfuehrung2/13-02-6.ltxb + RELOC/doc/latex/einfuehrung2/13-02-7.ltxb + RELOC/doc/latex/einfuehrung2/13-02-8.ltxbps + RELOC/doc/latex/einfuehrung2/13-02-9.ltxb + RELOC/doc/latex/einfuehrung2/13-03-1.ltxb + RELOC/doc/latex/einfuehrung2/13-03-10.ltxb + RELOC/doc/latex/einfuehrung2/13-03-11.ltxb + RELOC/doc/latex/einfuehrung2/13-03-2.ltxb + RELOC/doc/latex/einfuehrung2/13-03-3.ltxb + RELOC/doc/latex/einfuehrung2/13-03-4.ltxb + RELOC/doc/latex/einfuehrung2/13-03-5.ltxb + RELOC/doc/latex/einfuehrung2/13-03-6.ltxb + RELOC/doc/latex/einfuehrung2/13-03-7.ltxb + RELOC/doc/latex/einfuehrung2/13-03-8.ltxb + RELOC/doc/latex/einfuehrung2/13-03-9.ltxb + RELOC/doc/latex/einfuehrung2/13-04-1.ltxb + RELOC/doc/latex/einfuehrung2/13-04-2.ltxb + RELOC/doc/latex/einfuehrung2/13-05-1.ltxb + RELOC/doc/latex/einfuehrung2/13-05-2.ltxb + RELOC/doc/latex/einfuehrung2/13-05-3.ltxb + RELOC/doc/latex/einfuehrung2/13-05-4.ltxb + RELOC/doc/latex/einfuehrung2/13-06-1.ltxb + RELOC/doc/latex/einfuehrung2/13-06-2.ltxb + RELOC/doc/latex/einfuehrung2/13-07-1.ltxb + RELOC/doc/latex/einfuehrung2/13-07-2.ltxb + RELOC/doc/latex/einfuehrung2/14-01-1.ltx + RELOC/doc/latex/einfuehrung2/14-01-10.ltx + RELOC/doc/latex/einfuehrung2/14-01-11.ltx + RELOC/doc/latex/einfuehrung2/14-01-12.ltx + RELOC/doc/latex/einfuehrung2/14-01-13.ltx + RELOC/doc/latex/einfuehrung2/14-01-2.ltx + RELOC/doc/latex/einfuehrung2/14-01-3.ltx + RELOC/doc/latex/einfuehrung2/14-01-4.ltx + RELOC/doc/latex/einfuehrung2/14-01-5.ltx + RELOC/doc/latex/einfuehrung2/14-01-6.ltx + RELOC/doc/latex/einfuehrung2/14-01-7.ltx + RELOC/doc/latex/einfuehrung2/14-01-8.ltxps + RELOC/doc/latex/einfuehrung2/14-01-9.ltx + RELOC/doc/latex/einfuehrung2/14-02-1.ltx + RELOC/doc/latex/einfuehrung2/14-02-2.ltx + RELOC/doc/latex/einfuehrung2/14-02-3.ltx + RELOC/doc/latex/einfuehrung2/14-02-4.ltx + RELOC/doc/latex/einfuehrung2/14-02-5.ltx + RELOC/doc/latex/einfuehrung2/14-02-6.ltx + RELOC/doc/latex/einfuehrung2/14-02-7.ltx + RELOC/doc/latex/einfuehrung2/14-03-1.ltx + RELOC/doc/latex/einfuehrung2/14-03-10.ltx2crop + RELOC/doc/latex/einfuehrung2/14-03-11.ltx + RELOC/doc/latex/einfuehrung2/14-03-12.ltx + RELOC/doc/latex/einfuehrung2/14-03-13.ltx + RELOC/doc/latex/einfuehrung2/14-03-14.ltx + RELOC/doc/latex/einfuehrung2/14-03-15.ltx2crop + RELOC/doc/latex/einfuehrung2/14-03-16.ltx2crop + RELOC/doc/latex/einfuehrung2/14-03-2.ltx + RELOC/doc/latex/einfuehrung2/14-03-3.ltx + RELOC/doc/latex/einfuehrung2/14-03-4.ltx + RELOC/doc/latex/einfuehrung2/14-03-5.ltx + RELOC/doc/latex/einfuehrung2/14-03-6.ltx + RELOC/doc/latex/einfuehrung2/14-03-7.ltx + RELOC/doc/latex/einfuehrung2/14-03-8.ltx + RELOC/doc/latex/einfuehrung2/14-03-9.ltx + RELOC/doc/latex/einfuehrung2/14-04-1.ltx + RELOC/doc/latex/einfuehrung2/14-04-2.ltx + RELOC/doc/latex/einfuehrung2/14-04-3.ltx + RELOC/doc/latex/einfuehrung2/14-04-4.ltx + RELOC/doc/latex/einfuehrung2/14-04-5.ltx + RELOC/doc/latex/einfuehrung2/14-04-6.ltx + RELOC/doc/latex/einfuehrung2/14-04-7.ltx + RELOC/doc/latex/einfuehrung2/14-04-8.ltx + RELOC/doc/latex/einfuehrung2/14-04-9.ltx + RELOC/doc/latex/einfuehrung2/14-05-1.lualtx + RELOC/doc/latex/einfuehrung2/15-01-1.ltx + RELOC/doc/latex/einfuehrung2/15-01-10.ltx + RELOC/doc/latex/einfuehrung2/15-01-11.ltx + RELOC/doc/latex/einfuehrung2/15-01-12.ltx + RELOC/doc/latex/einfuehrung2/15-01-13.ltx + RELOC/doc/latex/einfuehrung2/15-01-2.ltx + RELOC/doc/latex/einfuehrung2/15-01-3.ltx + RELOC/doc/latex/einfuehrung2/15-01-4.ltx + RELOC/doc/latex/einfuehrung2/15-01-5.ltx + RELOC/doc/latex/einfuehrung2/15-01-6.ltx + RELOC/doc/latex/einfuehrung2/15-01-7.ltx + RELOC/doc/latex/einfuehrung2/15-01-8.ltx + RELOC/doc/latex/einfuehrung2/15-01-9.ltx + RELOC/doc/latex/einfuehrung2/15-02-1.mp3 + RELOC/doc/latex/einfuehrung2/15-02-10.mp + RELOC/doc/latex/einfuehrung2/15-02-11.mp + RELOC/doc/latex/einfuehrung2/15-02-12.mp + RELOC/doc/latex/einfuehrung2/15-02-13.mp + RELOC/doc/latex/einfuehrung2/15-02-14.mp + RELOC/doc/latex/einfuehrung2/15-02-15.mp + RELOC/doc/latex/einfuehrung2/15-02-16.mp + RELOC/doc/latex/einfuehrung2/15-02-17.mp + RELOC/doc/latex/einfuehrung2/15-02-18.mp + RELOC/doc/latex/einfuehrung2/15-02-19.mp + RELOC/doc/latex/einfuehrung2/15-02-2.ltxps + RELOC/doc/latex/einfuehrung2/15-02-20.mp + RELOC/doc/latex/einfuehrung2/15-02-21.mp + RELOC/doc/latex/einfuehrung2/15-02-22.mp + RELOC/doc/latex/einfuehrung2/15-02-23.mp + RELOC/doc/latex/einfuehrung2/15-02-24.mp + RELOC/doc/latex/einfuehrung2/15-02-25.mp + RELOC/doc/latex/einfuehrung2/15-02-26.mp + RELOC/doc/latex/einfuehrung2/15-02-27.mp + RELOC/doc/latex/einfuehrung2/15-02-28.mp + RELOC/doc/latex/einfuehrung2/15-02-29.mp + RELOC/doc/latex/einfuehrung2/15-02-3.ltx + RELOC/doc/latex/einfuehrung2/15-02-30.mp + RELOC/doc/latex/einfuehrung2/15-02-31.mp + RELOC/doc/latex/einfuehrung2/15-02-32.mp + RELOC/doc/latex/einfuehrung2/15-02-33.mp2 + RELOC/doc/latex/einfuehrung2/15-02-34.mp2 + RELOC/doc/latex/einfuehrung2/15-02-35.mp2 + RELOC/doc/latex/einfuehrung2/15-02-36.mp2 + RELOC/doc/latex/einfuehrung2/15-02-37.mp + RELOC/doc/latex/einfuehrung2/15-02-38.mp2 + RELOC/doc/latex/einfuehrung2/15-02-39.mp2 + RELOC/doc/latex/einfuehrung2/15-02-4.mp + RELOC/doc/latex/einfuehrung2/15-02-40.mp2 + RELOC/doc/latex/einfuehrung2/15-02-41.mp2 + RELOC/doc/latex/einfuehrung2/15-02-42.mp2 + RELOC/doc/latex/einfuehrung2/15-02-43.mp2 + RELOC/doc/latex/einfuehrung2/15-02-44.mp2 + RELOC/doc/latex/einfuehrung2/15-02-45.mp2 + RELOC/doc/latex/einfuehrung2/15-02-46.mp2 + RELOC/doc/latex/einfuehrung2/15-02-47.mp2 + RELOC/doc/latex/einfuehrung2/15-02-48.mp2 + RELOC/doc/latex/einfuehrung2/15-02-49.mp2 + RELOC/doc/latex/einfuehrung2/15-02-5.mp + RELOC/doc/latex/einfuehrung2/15-02-50.mp2 + RELOC/doc/latex/einfuehrung2/15-02-51.mp2 + RELOC/doc/latex/einfuehrung2/15-02-52.mp2 + RELOC/doc/latex/einfuehrung2/15-02-53.mp2 + RELOC/doc/latex/einfuehrung2/15-02-54.mp2 + RELOC/doc/latex/einfuehrung2/15-02-55.mp2 + RELOC/doc/latex/einfuehrung2/15-02-56.mp2 + RELOC/doc/latex/einfuehrung2/15-02-57.mp2 + RELOC/doc/latex/einfuehrung2/15-02-58.mp2 + RELOC/doc/latex/einfuehrung2/15-02-59.mp2 + RELOC/doc/latex/einfuehrung2/15-02-6.mp + RELOC/doc/latex/einfuehrung2/15-02-60.mp2 + RELOC/doc/latex/einfuehrung2/15-02-61.mp2 + RELOC/doc/latex/einfuehrung2/15-02-62.mp2 + RELOC/doc/latex/einfuehrung2/15-02-63.mp2 + RELOC/doc/latex/einfuehrung2/15-02-64.mp2 + RELOC/doc/latex/einfuehrung2/15-02-65.mp2 + RELOC/doc/latex/einfuehrung2/15-02-66.mp2 + RELOC/doc/latex/einfuehrung2/15-02-67.mp2 + RELOC/doc/latex/einfuehrung2/15-02-68.mp2 + RELOC/doc/latex/einfuehrung2/15-02-69.mp2 + RELOC/doc/latex/einfuehrung2/15-02-7.mp + RELOC/doc/latex/einfuehrung2/15-02-8.mp + RELOC/doc/latex/einfuehrung2/15-02-9.mp + RELOC/doc/latex/einfuehrung2/15-03-1.ltxps + RELOC/doc/latex/einfuehrung2/15-03-10.ltxps + RELOC/doc/latex/einfuehrung2/15-03-11.ltxps + RELOC/doc/latex/einfuehrung2/15-03-12.ltxps + RELOC/doc/latex/einfuehrung2/15-03-13.ltxps + RELOC/doc/latex/einfuehrung2/15-03-14.ltxps + RELOC/doc/latex/einfuehrung2/15-03-15.ltxps + RELOC/doc/latex/einfuehrung2/15-03-16.ltxps + RELOC/doc/latex/einfuehrung2/15-03-17.ltxps + RELOC/doc/latex/einfuehrung2/15-03-18.ltxps + RELOC/doc/latex/einfuehrung2/15-03-19.ltxps + RELOC/doc/latex/einfuehrung2/15-03-2.ltxps + RELOC/doc/latex/einfuehrung2/15-03-20.ltxps + RELOC/doc/latex/einfuehrung2/15-03-21.ltxps + RELOC/doc/latex/einfuehrung2/15-03-22.ltxps + RELOC/doc/latex/einfuehrung2/15-03-23.ltxps + RELOC/doc/latex/einfuehrung2/15-03-24.ltxps + RELOC/doc/latex/einfuehrung2/15-03-25.ltxps + RELOC/doc/latex/einfuehrung2/15-03-26.ltxps + RELOC/doc/latex/einfuehrung2/15-03-27.ltxps + RELOC/doc/latex/einfuehrung2/15-03-28.ltxps + RELOC/doc/latex/einfuehrung2/15-03-29.ltxps + RELOC/doc/latex/einfuehrung2/15-03-3.ltxps + RELOC/doc/latex/einfuehrung2/15-03-30.ltxps + RELOC/doc/latex/einfuehrung2/15-03-31.ltxps + RELOC/doc/latex/einfuehrung2/15-03-32.ltxps + RELOC/doc/latex/einfuehrung2/15-03-33.ltxps + RELOC/doc/latex/einfuehrung2/15-03-34.ltxps + RELOC/doc/latex/einfuehrung2/15-03-35.ltxps + RELOC/doc/latex/einfuehrung2/15-03-36.ltxps + RELOC/doc/latex/einfuehrung2/15-03-37.ltxps + RELOC/doc/latex/einfuehrung2/15-03-38.ltxps + RELOC/doc/latex/einfuehrung2/15-03-39.ltxps + RELOC/doc/latex/einfuehrung2/15-03-4.ltxps + RELOC/doc/latex/einfuehrung2/15-03-40.ltxps + RELOC/doc/latex/einfuehrung2/15-03-41.ltxps + RELOC/doc/latex/einfuehrung2/15-03-42.ltxps + RELOC/doc/latex/einfuehrung2/15-03-43.ltxps + RELOC/doc/latex/einfuehrung2/15-03-44.ltxps + RELOC/doc/latex/einfuehrung2/15-03-45.ltxps + RELOC/doc/latex/einfuehrung2/15-03-46.ltxps + RELOC/doc/latex/einfuehrung2/15-03-47.ltxps + RELOC/doc/latex/einfuehrung2/15-03-48.ltxps + RELOC/doc/latex/einfuehrung2/15-03-49.ltxps + RELOC/doc/latex/einfuehrung2/15-03-5.ltxps + RELOC/doc/latex/einfuehrung2/15-03-50.ltxps + RELOC/doc/latex/einfuehrung2/15-03-51.ltxps + RELOC/doc/latex/einfuehrung2/15-03-6.ltxps + RELOC/doc/latex/einfuehrung2/15-03-7.ltxps + RELOC/doc/latex/einfuehrung2/15-03-8.ltxps + RELOC/doc/latex/einfuehrung2/15-03-9.ltxps + RELOC/doc/latex/einfuehrung2/15-04-1.ltx + RELOC/doc/latex/einfuehrung2/15-04-10.ltx + RELOC/doc/latex/einfuehrung2/15-04-11.ltx + RELOC/doc/latex/einfuehrung2/15-04-12.ltx + RELOC/doc/latex/einfuehrung2/15-04-13.ltx + RELOC/doc/latex/einfuehrung2/15-04-14.ltx + RELOC/doc/latex/einfuehrung2/15-04-15.ltx + RELOC/doc/latex/einfuehrung2/15-04-16.ltx + RELOC/doc/latex/einfuehrung2/15-04-17.ltx + RELOC/doc/latex/einfuehrung2/15-04-18.ltx + RELOC/doc/latex/einfuehrung2/15-04-19.ltx + RELOC/doc/latex/einfuehrung2/15-04-2.ltx + RELOC/doc/latex/einfuehrung2/15-04-20.ltx + RELOC/doc/latex/einfuehrung2/15-04-21.ltx + RELOC/doc/latex/einfuehrung2/15-04-22.ltx + RELOC/doc/latex/einfuehrung2/15-04-23.ltx + RELOC/doc/latex/einfuehrung2/15-04-24.ltx + RELOC/doc/latex/einfuehrung2/15-04-25.ltx + RELOC/doc/latex/einfuehrung2/15-04-26.ltx + RELOC/doc/latex/einfuehrung2/15-04-27.ltx + RELOC/doc/latex/einfuehrung2/15-04-28.ltx + RELOC/doc/latex/einfuehrung2/15-04-29.ltx + RELOC/doc/latex/einfuehrung2/15-04-3.ltx + RELOC/doc/latex/einfuehrung2/15-04-30.ltx + RELOC/doc/latex/einfuehrung2/15-04-31.ltx + RELOC/doc/latex/einfuehrung2/15-04-32.ltx + RELOC/doc/latex/einfuehrung2/15-04-33.ltx + RELOC/doc/latex/einfuehrung2/15-04-34.ltx + RELOC/doc/latex/einfuehrung2/15-04-35.ltx + RELOC/doc/latex/einfuehrung2/15-04-36.ltx + RELOC/doc/latex/einfuehrung2/15-04-37.ltx + RELOC/doc/latex/einfuehrung2/15-04-38.ltx + RELOC/doc/latex/einfuehrung2/15-04-39.ltx + RELOC/doc/latex/einfuehrung2/15-04-4.ltx + RELOC/doc/latex/einfuehrung2/15-04-40.ltx + RELOC/doc/latex/einfuehrung2/15-04-41.ltx + RELOC/doc/latex/einfuehrung2/15-04-42.ltx + RELOC/doc/latex/einfuehrung2/15-04-43.ltx + RELOC/doc/latex/einfuehrung2/15-04-44.ltx + RELOC/doc/latex/einfuehrung2/15-04-45.ltx + RELOC/doc/latex/einfuehrung2/15-04-46.ltx + RELOC/doc/latex/einfuehrung2/15-04-47.ltx + RELOC/doc/latex/einfuehrung2/15-04-48.ltx + RELOC/doc/latex/einfuehrung2/15-04-49.ltx + RELOC/doc/latex/einfuehrung2/15-04-5.ltx + RELOC/doc/latex/einfuehrung2/15-04-50.ltx + RELOC/doc/latex/einfuehrung2/15-04-51.ltx + RELOC/doc/latex/einfuehrung2/15-04-52.ltx + RELOC/doc/latex/einfuehrung2/15-04-53.ltx + RELOC/doc/latex/einfuehrung2/15-04-54.ltx + RELOC/doc/latex/einfuehrung2/15-04-55.ltx + RELOC/doc/latex/einfuehrung2/15-04-56.ltx + RELOC/doc/latex/einfuehrung2/15-04-57.ltx + RELOC/doc/latex/einfuehrung2/15-04-58.ltx + RELOC/doc/latex/einfuehrung2/15-04-59.ltx + RELOC/doc/latex/einfuehrung2/15-04-6.ltx + RELOC/doc/latex/einfuehrung2/15-04-60.ltx + RELOC/doc/latex/einfuehrung2/15-04-61.ltx + RELOC/doc/latex/einfuehrung2/15-04-62.ltx + RELOC/doc/latex/einfuehrung2/15-04-63.ltx + RELOC/doc/latex/einfuehrung2/15-04-64.ltx + RELOC/doc/latex/einfuehrung2/15-04-65.ltx + RELOC/doc/latex/einfuehrung2/15-04-66.ltx + RELOC/doc/latex/einfuehrung2/15-04-67.ltx + RELOC/doc/latex/einfuehrung2/15-04-68.ltx + RELOC/doc/latex/einfuehrung2/15-04-69.ltx4 + RELOC/doc/latex/einfuehrung2/15-04-7.ltx + RELOC/doc/latex/einfuehrung2/15-04-70.ltx + RELOC/doc/latex/einfuehrung2/15-04-71.ltx + RELOC/doc/latex/einfuehrung2/15-04-72.ltx + RELOC/doc/latex/einfuehrung2/15-04-73.ltx + RELOC/doc/latex/einfuehrung2/15-04-74.ltx + RELOC/doc/latex/einfuehrung2/15-04-75.ltx + RELOC/doc/latex/einfuehrung2/15-04-76.ltx + RELOC/doc/latex/einfuehrung2/15-04-77.ltx + RELOC/doc/latex/einfuehrung2/15-04-78.ltx + RELOC/doc/latex/einfuehrung2/15-04-79.ltx + RELOC/doc/latex/einfuehrung2/15-04-8.ltx + RELOC/doc/latex/einfuehrung2/15-04-80.ltx + RELOC/doc/latex/einfuehrung2/15-04-81.ltx + RELOC/doc/latex/einfuehrung2/15-04-82.lualtx + RELOC/doc/latex/einfuehrung2/15-04-9.ltx + RELOC/doc/latex/einfuehrung2/15-05-1.ltx + RELOC/doc/latex/einfuehrung2/15-05-10.ltx + RELOC/doc/latex/einfuehrung2/15-05-11.ltx + RELOC/doc/latex/einfuehrung2/15-05-12.ltx + RELOC/doc/latex/einfuehrung2/15-05-13.ltx + RELOC/doc/latex/einfuehrung2/15-05-14.ltx + RELOC/doc/latex/einfuehrung2/15-05-15.ltx + RELOC/doc/latex/einfuehrung2/15-05-16.ltx + RELOC/doc/latex/einfuehrung2/15-05-17.ltx + RELOC/doc/latex/einfuehrung2/15-05-18.ltx + RELOC/doc/latex/einfuehrung2/15-05-19.ltx + RELOC/doc/latex/einfuehrung2/15-05-2.ltx + RELOC/doc/latex/einfuehrung2/15-05-20.ltx + RELOC/doc/latex/einfuehrung2/15-05-21.ltx + RELOC/doc/latex/einfuehrung2/15-05-22.ltx + RELOC/doc/latex/einfuehrung2/15-05-3.ltx + RELOC/doc/latex/einfuehrung2/15-05-4.ltx + RELOC/doc/latex/einfuehrung2/15-05-5.ltx + RELOC/doc/latex/einfuehrung2/15-05-6.ltx + RELOC/doc/latex/einfuehrung2/15-05-7.ltx + RELOC/doc/latex/einfuehrung2/15-05-8.ltx + RELOC/doc/latex/einfuehrung2/15-05-9.ltx + RELOC/doc/latex/einfuehrung2/16-01-1.ltx + RELOC/doc/latex/einfuehrung2/16-01-2.ltx + RELOC/doc/latex/einfuehrung2/16-03-1.ltx2 + RELOC/doc/latex/einfuehrung2/17-03-1.ltx + RELOC/doc/latex/einfuehrung2/17-03-2.ltx + RELOC/doc/latex/einfuehrung2/17-03-3.ltx + RELOC/doc/latex/einfuehrung2/17-04-1.ltx + RELOC/doc/latex/einfuehrung2/17-05-1.ltx + RELOC/doc/latex/einfuehrung2/17-05-10.ltx + RELOC/doc/latex/einfuehrung2/17-05-11.ltx + RELOC/doc/latex/einfuehrung2/17-05-12.ltx + RELOC/doc/latex/einfuehrung2/17-05-13.ltx + RELOC/doc/latex/einfuehrung2/17-05-14.ltx + RELOC/doc/latex/einfuehrung2/17-05-15.lualtx + RELOC/doc/latex/einfuehrung2/17-05-16.ltx + RELOC/doc/latex/einfuehrung2/17-05-17.ltx + RELOC/doc/latex/einfuehrung2/17-05-18.ltx + RELOC/doc/latex/einfuehrung2/17-05-19.ltx + RELOC/doc/latex/einfuehrung2/17-05-2.ltx + RELOC/doc/latex/einfuehrung2/17-05-3.ltx + RELOC/doc/latex/einfuehrung2/17-05-4.ltx + RELOC/doc/latex/einfuehrung2/17-05-5.ltx4 + RELOC/doc/latex/einfuehrung2/17-05-6.ltx + RELOC/doc/latex/einfuehrung2/17-05-7.ltx + RELOC/doc/latex/einfuehrung2/17-05-8.ltx + RELOC/doc/latex/einfuehrung2/17-05-9.ltx + RELOC/doc/latex/einfuehrung2/A-02-1.ltx + RELOC/doc/latex/einfuehrung2/A-03-1.ltx + RELOC/doc/latex/einfuehrung2/A-04-1.ltx2 + RELOC/doc/latex/einfuehrung2/A-04-2.ltx + RELOC/doc/latex/einfuehrung2/A-04-3.ltx + RELOC/doc/latex/einfuehrung2/A-04-4.ltx + RELOC/doc/latex/einfuehrung2/A-04-5.ltx + RELOC/doc/latex/einfuehrung2/A-06-1.ltx + RELOC/doc/latex/einfuehrung2/A-13-1.ltx + RELOC/doc/latex/einfuehrung2/A-13-2.ltx + RELOC/doc/latex/einfuehrung2/A-13-3.ltx + RELOC/doc/latex/einfuehrung2/A-13-4.ltx + RELOC/doc/latex/einfuehrung2/A-13-5.ltx + RELOC/doc/latex/einfuehrung2/A-13-6.ltx + RELOC/doc/latex/einfuehrung2/B.eps + RELOC/doc/latex/einfuehrung2/CHKDRV.PAS + RELOC/doc/latex/einfuehrung2/CTdefault.tex + RELOC/doc/latex/einfuehrung2/KEYTABLE.PAS + RELOC/doc/latex/einfuehrung2/L_Heptameron_ou_Histoires_Des_Amans_Fort.bibtex + RELOC/doc/latex/einfuehrung2/Letter.ist + RELOC/doc/latex/einfuehrung2/LetterC.ist + RELOC/doc/latex/einfuehrung2/LoadFonts.tex + RELOC/doc/latex/einfuehrung2/README details="Readme" + RELOC/doc/latex/einfuehrung2/UTF8.bib + RELOC/doc/latex/einfuehrung2/VerbatimOut.xltx + RELOC/doc/latex/einfuehrung2/biblatex-examples.bib + RELOC/doc/latex/einfuehrung2/biblatex-gost-examples.bib + RELOC/doc/latex/einfuehrung2/brief.lco + RELOC/doc/latex/einfuehrung2/cjk.bib + RELOC/doc/latex/einfuehrung2/data0.csv + RELOC/doc/latex/einfuehrung2/data1T.csv + RELOC/doc/latex/einfuehrung2/de-examples-dw.bib + RELOC/doc/latex/einfuehrung2/demo.ist + RELOC/doc/latex/einfuehrung2/demo11.bib + RELOC/doc/latex/einfuehrung2/demo4.bib + RELOC/doc/latex/einfuehrung2/demo5.bib + RELOC/doc/latex/einfuehrung2/demo6.bib + RELOC/doc/latex/einfuehrung2/demo7.bib + RELOC/doc/latex/einfuehrung2/doc_data.txt + RELOC/doc/latex/einfuehrung2/examples-dw.bib + RELOC/doc/latex/einfuehrung2/examples.bib + RELOC/doc/latex/einfuehrung2/examplesA.bib + RELOC/doc/latex/einfuehrung2/examplesB.bib + RELOC/doc/latex/einfuehrung2/foo.lua + RELOC/doc/latex/einfuehrung2/heptameron.tex + RELOC/doc/latex/einfuehrung2/l3keysdemo.sty + RELOC/doc/latex/einfuehrung2/musterlogo.ps + RELOC/doc/latex/einfuehrung2/mw.cpp + RELOC/doc/latex/einfuehrung2/myModuleB.xdy + RELOC/doc/latex/einfuehrung2/myModuleC.xdy + RELOC/doc/latex/einfuehrung2/myModuleE.xdy + RELOC/doc/latex/einfuehrung2/myModuleF.xdy + RELOC/doc/latex/einfuehrung2/myModuleG.xdy + RELOC/doc/latex/einfuehrung2/myModuleH.xdy + RELOC/doc/latex/einfuehrung2/myModuleI.xdy + RELOC/doc/latex/einfuehrung2/plainDemo.bst + RELOC/doc/latex/einfuehrung2/preamble.tex + RELOC/doc/latex/einfuehrung2/tab.tex + RELOC/doc/latex/einfuehrung2/tabelle1.tex + RELOC/doc/latex/einfuehrung2/test.bib + RELOC/doc/latex/einfuehrung2/tmp.data + RELOC/doc/latex/einfuehrung2/utf8char.bib +catalogue-contact-home http://www.dante.de/index/Literatur/Einfuehrung.html +catalogue-ctan /info/examples/Einfuehrung2 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 +catalogue-topics book-ex name ejpecp category Package -revision 36678 -shortdesc Class for EJP and ECP. +revision 50761 +shortdesc Class for EJP and ECP relocated 1 longdesc The class is designed for typesetting articles for the longdesc mathematical research periodicals Electronic Journal of longdesc Probability (EJP) and Electronic Communications in Probability -longdesc (ECP). -runfiles size=4 - RELOC/tex/latex/ejpecp/ejpecp.cls -docfiles size=87 +longdesc (ECP). It depends on amsmath, amsfonts, amsthm, bera, dsfont, +longdesc geometry, graphicx, hyperref, lastpage, latexsym, mathtools, +longdesc microtype, and afterpackage. +containersize 4968 +containerchecksum eddfab8de433480327dac32762640d610fce78903630bf0b8b26548024764d5ecf1b6356d6a8d725eda75f075a0b8627be6b90117a11a6dc39f0fb0e60eeb155 +doccontainersize 308828 +doccontainerchecksum 4131b375690a452fddfd5124611bd37017913cac6ade1bbf35ba01d2656f098141e2bfa83da2af7a25dd814312394c127fa1dbb0fd61a3e0f511e8d8c9e6d608 +docfiles size=88 RELOC/doc/latex/ejpecp/LPPL - RELOC/doc/latex/ejpecp/README - RELOC/doc/latex/ejpecp/ejpecp.pdf + RELOC/doc/latex/ejpecp/README details="Readme" + RELOC/doc/latex/ejpecp/ejpecp.pdf details="Package documentation" RELOC/doc/latex/ejpecp/mgetmref.py - RELOC/doc/latex/ejpecp/sample.pdf + RELOC/doc/latex/ejpecp/sample.pdf details="Introduction, as a paper" RELOC/doc/latex/ejpecp/sample.tex +srccontainersize 6568 +srccontainerchecksum 0d7ca22abaf589a795717bc09b06b9d4b91b030880510a7696dd93f8d4dfea1320a417da18659dc4e1019e5f66e178c943cccf65842da611684a1ab543ce2097 srcfiles size=6 RELOC/source/latex/ejpecp/ejpecp.dtx RELOC/source/latex/ejpecp/ejpecp.ins +runfiles size=4 + RELOC/tex/latex/ejpecp/ejpecp.cls catalogue-ctan /macros/latex/contrib/ejpecp -catalogue-date 2015-03-31 06:26:13 +0200 +catalogue-date 2019-04-04 16:29:28 +0200 catalogue-license lppl1.2 -catalogue-version 1.1 +catalogue-topics journalpub class +catalogue-version 1.7 name ekaia category Package -revision 35927 +revision 49594 shortdesc Article format for publishing the Basque Country Science and Technology Journal "Ekaia" relocated 1 longdesc The package provides the article format for publishing the longdesc Basque Country Science and Technology Journal "Ekaia" at the longdesc University of the Basque Country. -runfiles size=2 - RELOC/tex/latex/ekaia/ekaia.sty -docfiles size=136 - RELOC/doc/latex/ekaia/README - RELOC/doc/latex/ekaia/ekaia.pdf - RELOC/doc/latex/ekaia/ekaia_EUS.pdf +containersize 2576 +containerchecksum 97479cb146f37e0fd80fbcf67db44a474d96da9897fb058073b75bbd9a109f16dfa36bdd97c5fed5397255cf0320028ca687955fb40e069bdfa262af50773c99 +doccontainersize 221680 +doccontainerchecksum f95512969ca475b87f09fa3b61e2be1ebf949161b7209721579f7ec1399e6873186535ec30dbee092fd69dc427a199daa4f94ee47cc08a0fc37fbac6213429de +docfiles size=62 + RELOC/doc/latex/ekaia/README details="Readme" + RELOC/doc/latex/ekaia/ekaia.pdf details="Package documentation" RELOC/doc/latex/ekaia/ekaia_EUS.tex - RELOC/doc/latex/ekaia/ekaia_example.pdf RELOC/doc/latex/ekaia/ekaia_example.tex +srccontainersize 10676 +srccontainerchecksum f39b1a8a90bfe899fe914b6a4e99e08334ecf01ca54bbd6275ab9edfefc12f7f165eeca09b6195532ff92d72e4aeba63e94be7afe00d8215a86dca3695d523c7 srcfiles size=10 RELOC/source/latex/ekaia/ekaia.dtx RELOC/source/latex/ekaia/ekaia.ins +runfiles size=2 + RELOC/tex/latex/ekaia/ekaia.sty catalogue-ctan /macros/latex/contrib/ekaia -catalogue-date 2015-01-14 14:16:00 +0100 +catalogue-date 2019-01-06 07:25:00 +0100 catalogue-license lppl1.2 -catalogue-version 1.02 +catalogue-topics journalpub +catalogue-version 1.06 name elbioimp category Package revision 21758 -shortdesc A LaTeX document class for the Journal of Electrical Bioimpedance. +shortdesc A LaTeX document class for the Journal of Electrical Bioimpedance relocated 1 longdesc A document class for writing articles to the Journal of longdesc Electrical Bioimpedance. -runfiles size=2 - RELOC/tex/latex/elbioimp/elbioimp.cls +containersize 2096 +containerchecksum 4db2b191fdb73854bfe605efed30c4835a77180fc865eaf201f8405fccaf880e02ac9ef7802c2d215df8ad77d01fff611114c391a6c43190f95dc2b40cabd596 +doccontainersize 288804 +doccontainerchecksum 5097310e0e400c269a30ef8ea26f400ac7768f4a790ca5b79222c0480553434343de7b0976b18bb6d67bc89dc2b2ad2251c24e94e4747450275fd52a8c9d3285 docfiles size=79 RELOC/doc/latex/elbioimp/Makefile - RELOC/doc/latex/elbioimp/README + RELOC/doc/latex/elbioimp/README details="Readme" RELOC/doc/latex/elbioimp/elbioimp-basis.tex - RELOC/doc/latex/elbioimp/elbioimp.pdf + RELOC/doc/latex/elbioimp/elbioimp.pdf details="Package documentation" RELOC/doc/latex/elbioimp/test-bib.bib RELOC/doc/latex/elbioimp/test-ill.png RELOC/doc/latex/elbioimp/test1.tex +srccontainersize 5716 +srccontainerchecksum 00fb96c43b0639f88b582bb26b6306d1ff112e9277c34f6a623d7643ac7a003b31a14b5a82b3b03680298e5c054c137f44a186804a90127ebba14442d5c71d6b srcfiles size=5 RELOC/source/latex/elbioimp/elbioimp.dtx RELOC/source/latex/elbioimp/elbioimp.ins +runfiles size=2 + RELOC/tex/latex/elbioimp/elbioimp.cls catalogue-ctan /macros/latex/contrib/elbioimp -catalogue-date 2014-09-25 21:17:33 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics journalpub class catalogue-version 1.2 name electrum category Package revision 19705 catalogue electrumadf -shortdesc Electrum ADF fonts collection. +shortdesc Electrum ADF fonts collection relocated 1 longdesc Electrum ADF is a slab-serif font featuring optical and italic longdesc small-caps; additional ligatures and an alternate Q; lining, @@ -55863,9 +94845,44 @@ longdesc fonts are provided in Adobe Type 1 format and the support longdesc material enables use with LaTeX. Licence is mixed: LPPL for longdesc LaTeX support; GPL with font exception for the fonts. execute addMap yes.map -runfiles size=846 - RELOC/fonts/afm/arkandis/electrum/yesb8a.afm - RELOC/fonts/afm/arkandis/electrum/yesbo8a.afm +containersize 724376 +containerchecksum c12af3a1e6a76d4a94f0d02fa5802179fd1f47e31be29e2151e7be3f569f027137c9d0268c86696d822b8d7a4c88ae2ef264341345c6a7421a8ec1026c104213 +doccontainersize 279416 +doccontainerchecksum b840b153a134fd9cd923aa9f70576b7e586bca87d7f1b9cfbf7a1f25ac4972905989876545a914ce845096dd32579901ece93851012d057114c0c61b1eceffa4 +docfiles size=89 + RELOC/doc/fonts/electrum/COPYING + RELOC/doc/fonts/electrum/NOTICE.txt + RELOC/doc/fonts/electrum/README details="Readme" + RELOC/doc/fonts/electrum/electrumadf.pdf details="Documentation: installation and use" + RELOC/doc/fonts/electrum/electrumadf.tex + RELOC/doc/fonts/electrum/manifest.txt +srccontainersize 14992 +srccontainerchecksum caec0c43c2870a6640863bc060e02c764b235336123777181ae1fab42e32053af0e2c09c226dccbf8bc31b450c720b69ae67f01b66b36d0ba308282637afb414 +srcfiles size=98 + RELOC/source/fonts/electrum/build-ttsc.mtx + RELOC/source/fonts/electrum/dotsc2.etx + RELOC/source/fonts/electrum/dotscbuild.mtx + RELOC/source/fonts/electrum/dotscmisc.mtx + RELOC/source/fonts/electrum/newlatin-dotsc.mtx + RELOC/source/fonts/electrum/reglyph-yes.tex + RELOC/source/fonts/electrum/supp-yes.etx + RELOC/source/fonts/electrum/t1-dotinferior.etx + RELOC/source/fonts/electrum/t1-dotsuperior.etx + RELOC/source/fonts/electrum/t1-yes.etx + RELOC/source/fonts/electrum/t1-yesw-sc.etx + RELOC/source/fonts/electrum/t1-yesw.etx + RELOC/source/fonts/electrum/t1j-yes.etx + RELOC/source/fonts/electrum/t1j-yesw-sc.etx + RELOC/source/fonts/electrum/t1j-yesw.etx + RELOC/source/fonts/electrum/ts1-dotinferior.etx + RELOC/source/fonts/electrum/ts1-dotoldstyle-yes.etx + RELOC/source/fonts/electrum/ts1-dotsuperior.etx + RELOC/source/fonts/electrum/ts1-yes.etx + RELOC/source/fonts/electrum/yes-drv.tex + RELOC/source/fonts/electrum/yes-map.tex +runfiles size=846 + RELOC/fonts/afm/arkandis/electrum/yesb8a.afm + RELOC/fonts/afm/arkandis/electrum/yesbo8a.afm RELOC/fonts/afm/arkandis/electrum/yesl8a.afm RELOC/fonts/afm/arkandis/electrum/yeslo8a.afm RELOC/fonts/afm/arkandis/electrum/yesr8a.afm @@ -56143,38 +95160,11 @@ runfiles size=846 RELOC/tex/latex/electrum/ts1yesj.fd RELOC/tex/latex/electrum/ts1yesjw.fd RELOC/tex/latex/electrum/ts1yesw.fd -docfiles size=89 - RELOC/doc/fonts/electrum/COPYING - RELOC/doc/fonts/electrum/NOTICE.txt - RELOC/doc/fonts/electrum/README - RELOC/doc/fonts/electrum/electrumadf.pdf - RELOC/doc/fonts/electrum/electrumadf.tex - RELOC/doc/fonts/electrum/manifest.txt -srcfiles size=98 - RELOC/source/fonts/electrum/build-ttsc.mtx - RELOC/source/fonts/electrum/dotsc2.etx - RELOC/source/fonts/electrum/dotscbuild.mtx - RELOC/source/fonts/electrum/dotscmisc.mtx - RELOC/source/fonts/electrum/newlatin-dotsc.mtx - RELOC/source/fonts/electrum/reglyph-yes.tex - RELOC/source/fonts/electrum/supp-yes.etx - RELOC/source/fonts/electrum/t1-dotinferior.etx - RELOC/source/fonts/electrum/t1-dotsuperior.etx - RELOC/source/fonts/electrum/t1-yes.etx - RELOC/source/fonts/electrum/t1-yesw-sc.etx - RELOC/source/fonts/electrum/t1-yesw.etx - RELOC/source/fonts/electrum/t1j-yes.etx - RELOC/source/fonts/electrum/t1j-yesw-sc.etx - RELOC/source/fonts/electrum/t1j-yesw.etx - RELOC/source/fonts/electrum/ts1-dotinferior.etx - RELOC/source/fonts/electrum/ts1-dotoldstyle-yes.etx - RELOC/source/fonts/electrum/ts1-dotsuperior.etx - RELOC/source/fonts/electrum/ts1-yes.etx - RELOC/source/fonts/electrum/yes-drv.tex - RELOC/source/fonts/electrum/yes-map.tex +catalogue-contact-home http://arkandis.tuxfamily.org/tugfonts.htm catalogue-ctan /fonts/electrumadf -catalogue-date 2014-04-26 19:51:19 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license other-free +catalogue-topics font font-type1 catalogue-version 1.005-b name eledform @@ -56184,27 +95174,34 @@ shortdesc Define textual variants relocated 1 longdesc The package provides commands to formalize textual variants in longdesc critical editions typeset using eledmac. -runfiles size=1 - RELOC/tex/latex/eledform/eledform.sty +containersize 1480 +containerchecksum 4103aa370bc8314433b5cc9242390340467591bc38e2f5b820f9d35a1951bb9fe9e384b1d3c64a0434b3c3dc87c42463a0af5d9ff872180bc2b7a08d4b40c080 +doccontainersize 128020 +doccontainerchecksum c59cfa6957a21c5e74d9a15b7621536170137447111f9a88295e79aa7a29dcbb3d1f1f1367afd7243d2506b864a53df41b0e10419592a5e4e12af8e1e90216d4 docfiles size=37 - RELOC/doc/latex/eledform/README.md - RELOC/doc/latex/eledform/eledform.pdf + RELOC/doc/latex/eledform/README.md details="Readme" + RELOC/doc/latex/eledform/eledform.pdf details="Package documentation" RELOC/doc/latex/eledform/example.pdf RELOC/doc/latex/eledform/example.tex RELOC/doc/latex/eledform/include/stemma.tex RELOC/doc/latex/eledform/makefile +srccontainersize 4788 +srccontainerchecksum 3bf4fe6df4cb16c8ab7a3fc366754321c5a1056cbdd51a787da33d212c39ffa0bc73d394944b7b2cfe52b4f41abe0e3df7156571d3acc1d1c3ccd4d467798430 srcfiles size=5 RELOC/source/latex/eledform/eledform.dtx RELOC/source/latex/eledform/eledform.ins +runfiles size=1 + RELOC/tex/latex/eledform/eledform.sty +catalogue-contact-repository https://github.com/maieul/eledform catalogue-ctan /macros/latex/contrib/eledform -catalogue-date 2015-08-13 14:25:03 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 catalogue-topics crit-ed catalogue-version 1.1a name eledmac category Package -revision 38276 +revision 45418 shortdesc Typeset scholarly editions relocated 1 longdesc A package for typesetting scholarly critical editions, @@ -56214,13 +95211,14 @@ longdesc indexing by page and by line numbers, and simple tabular- and longdesc array-style environments. The package is distributed with the longdesc related eledpar package. The package is now superseded by longdesc reledmac. -runfiles size=66 - RELOC/tex/latex/eledmac/eledmac.sty - RELOC/tex/latex/eledmac/eledpar.sty -docfiles size=528 +containersize 39444 +containerchecksum 644df002adf2f39acd9a6704a5c2e18e02f30d17c8e04173fb0f68e9daf5469bb6290c7e98ca181ebd45b40d54dbdf4a14fbbbe7dbe8f945b226ee086efc3972 +doccontainersize 1845796 +doccontainerchecksum 14c8b024b6cc817a025b6a4870d3edcf956ac9e358107c80d29fcab41f343efba5b5832dc22cd11fe2e92bc74b58fc5d67982ab26a60230a5b92af4223543e04 +docfiles size=532 RELOC/doc/latex/eledmac/Makefile - RELOC/doc/latex/eledmac/README - RELOC/doc/latex/eledmac/eledmac.pdf + RELOC/doc/latex/eledmac/README details="Readme" + RELOC/doc/latex/eledmac/eledmac.pdf details="Package documentation" RELOC/doc/latex/eledmac/eledpar.pdf RELOC/doc/latex/eledmac/examples/1-criticalnotes.pdf RELOC/doc/latex/eledmac/examples/1-criticalnotes.tex @@ -56277,21 +95275,138 @@ docfiles size=528 RELOC/doc/latex/eledmac/examples/eledmac.xdy RELOC/doc/latex/eledmac/examples/makefile RELOC/doc/latex/eledmac/latexmkrc +srccontainersize 164628 +srccontainerchecksum 8d3436d3e3cf377148a52ea77ac93491abc66bfb1271538aa85f6cebc559ca225221b4b7dfaaf33426505b792ca57697d6edf5903b5d0e306434a4c32e06e8bb srcfiles size=216 RELOC/source/latex/eledmac/eledmac.dtx RELOC/source/latex/eledmac/eledmac.ins RELOC/source/latex/eledmac/eledpar.dtx RELOC/source/latex/eledmac/eledpar.ins +runfiles size=66 + RELOC/tex/latex/eledmac/eledmac.sty + RELOC/tex/latex/eledmac/eledpar.sty catalogue-also ednotes poemscol ledmac +catalogue-contact-announce http://geekographie.maieul.net/146 +catalogue-contact-bugs https://github.com/maieul/ledmac/issues/ +catalogue-contact-repository https://github.com/maieul/ledmac/ +catalogue-contact-support http://geekographie.maieul.net/146 catalogue-ctan /macros/latex/contrib/eledmac -catalogue-date 2015-09-02 18:26:56 +0200 +catalogue-date 2017-09-25 19:05:52 +0200 catalogue-license lppl1.3 catalogue-topics crit-ed -catalogue-version 1.24.8 +catalogue-version 1.24.12 + +name elegantbook +category Package +revision 51002 +shortdesc An Elegant LaTeX Template for Books +relocated 1 +longdesc ElegantBook is designed for writing Books. This template is +longdesc based on the standard LaTeX book class. The goal of this +longdesc template is to make the writing process more elegant. Just +longdesc enjoy it! +containersize 6400 +containerchecksum 5a5e3c4b9bce282c8d49ba60a274d78f6f99f3c70550e70d8546931620796376e56b3043ee6bd16df31ddcfb3184994ee2b41a8b07faf839ff6a1a2ce8c1d58e +doccontainersize 1186556 +doccontainerchecksum 3e8f4c19f3b966e5039e04652df280c47a09b06c2636b598d4c240cb9ee9c8ed9c303a866a5e523ffeae6cb151de5b1d483b84ed28dd13091c41a48e507d133a +docfiles size=530 + RELOC/doc/latex/elegantbook/License + RELOC/doc/latex/elegantbook/README.md details="Readme" + RELOC/doc/latex/elegantbook/elegantbook-cn.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/elegantbook/elegantbook-cn.tex + RELOC/doc/latex/elegantbook/elegantbook-en.pdf details="Package documentation (English)" + RELOC/doc/latex/elegantbook/elegantbook-en.tex + RELOC/doc/latex/elegantbook/figure/cover.jpg + RELOC/doc/latex/elegantbook/figure/logo.png + RELOC/doc/latex/elegantbook/image/scatter.pdf + RELOC/doc/latex/elegantbook/image/scatter.py + RELOC/doc/latex/elegantbook/reference.bib +runfiles size=6 + RELOC/tex/latex/elegantbook/elegantbook.cls +catalogue-contact-announce https://elegantlatex.org/ +catalogue-contact-home https://elegantlatex.org/ +catalogue-contact-repository https://github.com/ElegantLaTeX/ElegantBook +catalogue-contact-support https://github.com/ElegantLaTeX/ElegantBook/issues +catalogue-ctan /macros/latex/contrib/elegantbook +catalogue-date 2019-04-15 18:15:18 +0200 +catalogue-license lppl1.3c +catalogue-topics class chinese book-pub +catalogue-version 3.07 + +name elegantnote +category Package +revision 49926 +shortdesc Elegant LaTeX Template for Notes +relocated 1 +longdesc ElegantNote is designed for writing working papers, especially +longdesc for economics students. This template is based on the standard +longdesc LaTeX article class. The goal of this template is to make the +longdesc writing process easier and more comfortable. +containersize 4044 +containerchecksum fa01c305f478e100ab30b187ee053ec82c0d067ea2a463584a60d68b8358f9e8f65027b87d2e59f9c6c6df2dedb3885f151bcd9db8df5bd9e451c035d21bfb51 +doccontainersize 1336776 +doccontainerchecksum a1c24f6637ece128a313f24e8ef1ba2b587490c876706f0d2fff2734ff0a5e799b6ae981d073bd2577a60040e121e59d1b3aac81e7ec0e844a0a270a52862020 +docfiles size=556 + RELOC/doc/latex/elegantnote/README.md details="Readme" + RELOC/doc/latex/elegantnote/elegantnote-cn.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/elegantnote/elegantnote-cn.tex + RELOC/doc/latex/elegantnote/elegantnote-en.pdf details="Package documentation (English)" + RELOC/doc/latex/elegantnote/elegantnote-en.tex + RELOC/doc/latex/elegantnote/image/logo.pdf + RELOC/doc/latex/elegantnote/image/logo.png + RELOC/doc/latex/elegantnote/image/scatter.pdf + RELOC/doc/latex/elegantnote/image/scatter.py +runfiles size=3 + RELOC/tex/latex/elegantnote/elegantnote.cls +catalogue-contact-announce https://elegantlatex.org/ +catalogue-contact-home https://elegantlatex.org/ +catalogue-contact-repository https://github.com/ElegantLaTeX/ElegantNote +catalogue-contact-support https://github.com/ElegantLaTeX/ElegantNote/issues +catalogue-ctan /macros/latex/contrib/elegantnote +catalogue-date 2019-02-05 05:26:48 +0100 +catalogue-license lppl1.3c +catalogue-topics class +catalogue-version 2.10 + +name elegantpaper +category Package +revision 50679 +shortdesc An Elegant LaTeX Template for Working Papers +relocated 1 +longdesc ElegantPaper is designed for writing working papers, especially +longdesc for economics students. This template is based on the standard +longdesc LaTeX article class. The goal of this template is to make the +longdesc writing process easier and more comfortable. +containersize 3348 +containerchecksum 0e816ca471b7ea09e375ebd6c30be63aa708e3f867c9ec4669b03efb7a11483736be56e3b8ea8fa8eaaaa4798fe2b807e9c52d7f307059e619b3eea3d9b2391b +doccontainersize 450604 +doccontainerchecksum 0210333865225e3ef0d73dc66595cecf27b12b90e1f7946798490c471760f58079a8d9955e062e7160dade30c17ba77e61adbc91b2c3c463703fc07c703e3735 +docfiles size=132 + RELOC/doc/latex/elegantpaper/License + RELOC/doc/latex/elegantpaper/README.md details="Readme" + RELOC/doc/latex/elegantpaper/elegantpaper-cn.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/elegantpaper/elegantpaper-cn.tex + RELOC/doc/latex/elegantpaper/elegantpaper-en.pdf details="Package documentation (English)" + RELOC/doc/latex/elegantpaper/elegantpaper-en.tex + RELOC/doc/latex/elegantpaper/figure/ElegantLaTeX.png + RELOC/doc/latex/elegantpaper/figure/scatter.pdf + RELOC/doc/latex/elegantpaper/figure/scatter.py + RELOC/doc/latex/elegantpaper/wpref.bib +runfiles size=2 + RELOC/tex/latex/elegantpaper/elegantpaper.cls +catalogue-contact-announce https://elegantlatex.org/ +catalogue-contact-home https://elegantlatex.org/ +catalogue-contact-repository https://github.com/ElegantLaTeX/ElegantPaper/ +catalogue-contact-support https://github.com/ElegantLaTeX/ElegantPaper/issues +catalogue-ctan /macros/latex/contrib/elegantpaper +catalogue-date 2019-03-31 19:57:20 +0200 +catalogue-license lppl1.3c +catalogue-topics class +catalogue-version 0.07 name elements category Package -revision 37723 +revision 46505 shortdesc Provides properties of chemical elements relocated 1 longdesc The package provides means for retrieving properties of @@ -56299,176 +95414,317 @@ longdesc chemical elements like atomic number, element symbol, element longdesc name, electron distribution or isotope number. Properties are longdesc defined for the elements up to the atomic number 112. This longdesc package is a spin-off of the package bohr by the same author. -runfiles size=10 +containersize 7028 +containerchecksum 278bf4316e7952a7a7a325375a9b84236ebbb936c5042e76bc51b976bf55db326d27c28f4b29eb11e90d3526711cf0eddb9b0069cf826680ede51b2ecca81840 +doccontainersize 406072 +doccontainerchecksum 99a7f5a5831cea6757eb3b8f6994953337b95be450697389d6e607ff74dc8c4c134a5c1630f542e026637a4aa6ccfd5665881b8b0a923b2bd7680582ba6c7b4c +docfiles size=103 + RELOC/doc/latex/elements/README details="Readme" + RELOC/doc/latex/elements/elements_en.pdf details="Package documentation" + RELOC/doc/latex/elements/elements_en.tex +runfiles size=15 RELOC/tex/latex/elements/elements.sty RELOC/tex/latex/elements/elements_names_english.def RELOC/tex/latex/elements/elements_names_french.def RELOC/tex/latex/elements/elements_names_german.def -docfiles size=106 - RELOC/doc/latex/elements/README - RELOC/doc/latex/elements/elements_en.pdf - RELOC/doc/latex/elements/elements_en.tex + RELOC/tex/latex/elements/elements_names_spanish.def +catalogue-contact-bugs https://github.com/cgnieder/elements/issues +catalogue-contact-repository https://github.com/cgnieder/elements/ catalogue-ctan /macros/latex/contrib/elements -catalogue-date 2015-06-30 15:57:53 +0200 +catalogue-date 2018-01-31 16:01:38 +0100 catalogue-license lppl1.3 catalogue-topics chemistry -catalogue-version 0.1a +catalogue-version 0.2c + +name ellipse +category Package +revision 39025 +shortdesc Draw ellipses and elliptical arcs using the standard LaTeX2e picture environment +relocated 1 +longdesc Draw ellipses and elliptical arcs using the standard LaTeX2e +longdesc picture environment. +containersize 2916 +containerchecksum edcbca8843239eae7bd927d9bc6b5095d1b9a4d8db213e22c77ab4a7c5bf7a09781aa225af26f1e4127f263d5322c8138cf38ad1a7b19688468ba2ba56f840f9 +doccontainersize 418676 +doccontainerchecksum 722d50daf9863145c81ad2b97d6acf6b6229d65f868985878651b506b00f52c4a556b888ed848ac1194c4a68e793bc498b2b6b09132c8070b61b103e6ca9137a +docfiles size=104 + RELOC/doc/latex/ellipse/README details="Readme" + RELOC/doc/latex/ellipse/ellipse.pdf details="Package documentation" +srccontainersize 13312 +srccontainerchecksum 29736aeb1a6d64d0e94124e6c67246650f517fefc9761f58e70e1438c8380a25ce48d2deb180683da02f77ebb508302b3e446b534b7e56ba257e61ac6f5fd62f +srcfiles size=13 + RELOC/source/latex/ellipse/ellipse.dtx + RELOC/source/latex/ellipse/ellipse.ins +runfiles size=3 + RELOC/tex/latex/ellipse/ellipse.sty +catalogue-ctan /graphics/ellipse +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics graphics +catalogue-version 1.0 name ellipsis category Package revision 15878 -shortdesc Fix uneven spacing around ellipses in LaTeX text mode. +shortdesc Fix uneven spacing around ellipses in LaTeX text mode relocated 1 longdesc This is a simple package that fixes a problem in the way LaTeX longdesc handles ellipses: it always puts a tiny bit more space after longdesc \dots in text mode than before it, which results in the longdesc ellipsis being off-center when used between two words. -runfiles size=1 - RELOC/tex/latex/ellipsis/ellipsis.sty +containersize 1552 +containerchecksum 1a60250e0db34f3dca834a1cf276b2f0a5975709bec3ae3c7486f92fb3a5c49ac9b07bb3cfa18724f27504c8e12bc7ca933edc453dd0ecb65d63dc5f7fbf75e9 +doccontainersize 89652 +doccontainerchecksum 35441d8562d2be79787f2d3326352dee2fa7a9a3bde500f4d61dc5d8d3eb4f4f782548d464fff74e0156664616342e4afa3a03bc91a2b6f8a028382c12c19e9c docfiles size=34 - RELOC/doc/latex/ellipsis/README - RELOC/doc/latex/ellipsis/ellipsis.pdf + RELOC/doc/latex/ellipsis/README details="Readme" + RELOC/doc/latex/ellipsis/ellipsis.pdf details="Package documentation" +srccontainersize 7200 +srccontainerchecksum 68e34b002ba2e9763d6f5e84368fc1135d864a46288d16e6d7ade872e5205a09527b3afad4c0b3bc78509a4f8d91460cd22a40b8e031e37e9ecdece8b184d3e4 srcfiles size=6 RELOC/source/latex/ellipsis/ellipsis.dtx RELOC/source/latex/ellipsis/ellipsis.ins +runfiles size=1 + RELOC/tex/latex/ellipsis/ellipsis.sty +catalogue-also lips catalogue-ctan /macros/latex/contrib/ellipsis -catalogue-date 2012-05-25 14:41:32 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics typesetting name elmath category Package revision 15878 -shortdesc Mathematics in Greek texts. +shortdesc Mathematics in Greek texts relocated 1 longdesc This package has been designed to facilitate the use of Greek longdesc letters in mathematical mode. The package allows one to longdesc directly type in Greek letters (in ISO 8859-7 encoding) in math longdesc mode. -runfiles size=3 - RELOC/tex/latex/elmath/elmath.sty +containersize 2128 +containerchecksum 66e11b5d5166fc6399337183dea142ecd045050176384e71993c76aeacf57c693495b5153887a95051a902167a8444c24ba6fe2ab2fcfc699abfd41ffaa96b18 +doccontainersize 63336 +doccontainerchecksum 3454096f8ddd220820709a83f4b5b741e80213bada631f5fd78292ff77f3a1963a487b07bb6c227451568c594c5bcaec9c1fe9724345a35478a68191305d5a97 docfiles size=24 - RELOC/doc/latex/elmath/elmath.pdf + RELOC/doc/latex/elmath/elmath.pdf details="Package documentation" +srccontainersize 3080 +srccontainerchecksum 0ff2b6fd17db3dbae757d4e015007ac99628f0d1940e584643f9df2247279cbfe3ebb81e057884a38ab167aa18b60a8db5eb7b88e777653ec68675205ca0fcc6 srcfiles size=4 RELOC/source/latex/elmath/elmath.dtx RELOC/source/latex/elmath/elmath.ins +runfiles size=3 + RELOC/tex/latex/elmath/elmath.sty catalogue-ctan /macros/latex/contrib/elmath -catalogue-date 2012-04-10 17:44:48 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl -catalogue-version v1.2 +catalogue-topics greek maths +catalogue-version 1.2 name elocalloc category Package -revision 37644 -shortdesc Local allocation macros for LaTeX 2015. +revision 42712 +shortdesc Local allocation macros for LaTeX 2015 relocated 1 longdesc Local allocation macros, with names taken from etex.sty but longdesc with implementation based on the LaTeX 2015 allocation macros. -runfiles size=1 - RELOC/tex/latex/elocalloc/elocalloc.sty +containersize 1084 +containerchecksum 7bd72984c7bc1530e2659364b5e93b643db1accc8a034f6fe8333e26ecc12b8dca9cf40ada0b5986576e266e0eb7c801f9a3e4c2cb7dbe4d8c373ba0f0486ba9 +doccontainersize 154148 +doccontainerchecksum 6b2d6f65683912405cc97b81a7cef07b4eb21be4304a12b5e0e11087d809d32023ea8067a81c01d45851943af2efc4eb4018f3a0e7a39e08bdc821f87264d9cc docfiles size=39 - RELOC/doc/latex/elocalloc/README - RELOC/doc/latex/elocalloc/elocalloc.pdf + RELOC/doc/latex/elocalloc/README.txt details="Readme" + RELOC/doc/latex/elocalloc/elocalloc.pdf details="Package documentation" +srccontainersize 2216 +srccontainerchecksum c1dfe4848af6e1cdb57496b8f42f5f1744494857648ca1db92a770f9983d0ec7a4c3398a3a7b7d473204da475ffd0e33ea10606201edcd86f9cda3bf5bdf24f4 srcfiles size=3 RELOC/source/latex/elocalloc/elocalloc.dtx RELOC/source/latex/elocalloc/elocalloc.ins +runfiles size=1 + RELOC/tex/latex/elocalloc/elocalloc.sty catalogue-also etex-pkg catalogue-ctan /macros/latex/contrib/elocalloc -catalogue-date 2015-06-21 12:20:25 +0200 +catalogue-date 2016-12-15 10:25:53 +0100 catalogue-license lppl catalogue-topics macro-supp -catalogue-version 0.02 +catalogue-version 0.03 name elpres category Package -revision 15878 +revision 46429 shortdesc A simple class for electronic presentations relocated 1 longdesc Elpres is a simple class for electronic presentations to be longdesc shown on screen or a beamer. Elpres is derived from article.cls longdesc and may be used with LaTeX or pdfLaTeX. -runfiles size=1 - RELOC/tex/latex/elpres/elpres.cls -docfiles size=120 +containersize 1668 +containerchecksum e3b0dfc5c2da908b95a882acf37ccf56abbad0e37c53c4e8ece14b98401be3a84ebc4546b739ed8a3f5c30977522b5650c56f12028fbfff467b4cf0a53877475 +doccontainersize 215432 +doccontainerchecksum bd4b73534eecdc0e02184d0736684e09c688bef1658ddad28b0c1a952a63ebc87546c426e7bf3a9733bd62192d87d500ba3f99463830d3e14f30c0726d80cb6d +docfiles size=58 + RELOC/doc/latex/elpres/README details="Readme" RELOC/doc/latex/elpres/elpres-example.tex - RELOC/doc/latex/elpres/elpres-manual.pdf + RELOC/doc/latex/elpres/elpres-manual.pdf details="Package documentation" RELOC/doc/latex/elpres/elpres-manual.tex - RELOC/doc/latex/elpres/gradient1.png - RELOC/doc/latex/elpres/gradient2.png +runfiles size=1 + RELOC/tex/latex/elpres/elpres.cls catalogue-ctan /macros/latex/contrib/elpres -catalogue-date 2014-09-25 21:17:33 +0200 +catalogue-date 2018-01-24 05:05:36 +0100 catalogue-license lppl -catalogue-version v0.3 +catalogue-topics presentation class +catalogue-version 0.4a + +name els-cas-templates +category Package +revision 50820 +shortdesc Elsevier CAS LaTeX templates +relocated 1 +longdesc This bundle provides two class and corresponding template files +longdesc for typesetting journal articles supposed to go through +longdesc Elsevier's Complex Article Service (CAS) workflow. One of the +longdesc sets is meant for one-column, the other for two-column layout. +longdesc These are now accepted for submitting articles both in +longdesc Elsevier's electronic submission system and elsewhere. +containersize 20096 +containerchecksum 23197c9c87b21b92dde909aac95128b0e92d1510a98479d739ee38cf05f5873538bc5d558181bbe62ddf24f5ec1e62a06bd42fd4b7abf73d99bd27bb70a566ea +doccontainersize 547212 +doccontainerchecksum d32781a8dc8b9182f2e1ecaecc3a952bb4b05d596dacc6346a45730f0d43a1b786b175dc45d4acf15279f6b0795f4d7227ddcd350f32b0464f3debb1ddddd7ba +docfiles size=338 + RELOC/doc/latex/els-cas-templates/README details="Readme" + RELOC/doc/latex/els-cas-templates/cas-dc-template.pdf details="Example of use (double column)" + RELOC/doc/latex/els-cas-templates/cas-dc-template.tex + RELOC/doc/latex/els-cas-templates/cas-refs.bib + RELOC/doc/latex/els-cas-templates/cas-sc-template.pdf details="Example of use (single column)" + RELOC/doc/latex/els-cas-templates/cas-sc-template.tex + RELOC/doc/latex/els-cas-templates/doc/dc-sample.pdf + RELOC/doc/latex/els-cas-templates/doc/elsdoc-cas.pdf details="Package documentation" + RELOC/doc/latex/els-cas-templates/doc/elsdoc-cas.tex + RELOC/doc/latex/els-cas-templates/doc/makefile + RELOC/doc/latex/els-cas-templates/doc/pdfwidgets.sty + RELOC/doc/latex/els-cas-templates/doc/rvdtx.sty + RELOC/doc/latex/els-cas-templates/doc/sc-sample.pdf + RELOC/doc/latex/els-cas-templates/figs/Fig1.pdf + RELOC/doc/latex/els-cas-templates/figs/Fig2.pdf + RELOC/doc/latex/els-cas-templates/figs/Fig3.pdf + RELOC/doc/latex/els-cas-templates/figs/grabs.pdf + RELOC/doc/latex/els-cas-templates/figs/pic1.pdf + RELOC/doc/latex/els-cas-templates/manifest.txt + RELOC/doc/latex/els-cas-templates/thumbnails/cas-email.jpeg + RELOC/doc/latex/els-cas-templates/thumbnails/cas-facebook.jpeg + RELOC/doc/latex/els-cas-templates/thumbnails/cas-gplus.jpeg + RELOC/doc/latex/els-cas-templates/thumbnails/cas-linkedin.jpeg + RELOC/doc/latex/els-cas-templates/thumbnails/cas-twitter.jpeg + RELOC/doc/latex/els-cas-templates/thumbnails/cas-url.jpeg +runfiles size=29 + RELOC/bibtex/bst/els-cas-templates/cas-model2-names.bst + RELOC/tex/latex/els-cas-templates/cas-common.sty + RELOC/tex/latex/els-cas-templates/cas-dc.cls + RELOC/tex/latex/els-cas-templates/cas-sc.cls +catalogue-ctan /macros/latex/contrib/els-cas-templates +catalogue-date 2019-04-05 18:15:15 +0200 +catalogue-license lppl1.2 +catalogue-topics class journalpub +catalogue-version 1.0 name elsarticle category Package -revision 15878 -shortdesc Class for articles for submission to Elsevier journals. -relocated 1 -longdesc The class is for typeset journal articles, is accepted for -longdesc submitted articles, both in Elsevier's electronic submission -longdesc system and elsewhere. -runfiles size=29 - RELOC/bibtex/bst/elsarticle/elsarticle-harv.bst - RELOC/bibtex/bst/elsarticle/elsarticle-num-names.bst - RELOC/bibtex/bst/elsarticle/elsarticle-num.bst - RELOC/tex/latex/elsarticle/elsarticle.cls -docfiles size=325 - RELOC/doc/latex/elsarticle/README - RELOC/doc/latex/elsarticle/els-1p.pdf - RELOC/doc/latex/elsarticle/els-3pd.pdf - RELOC/doc/latex/elsarticle/els1.pdf - RELOC/doc/latex/elsarticle/els2.pdf +revision 50786 +shortdesc Class for articles for submission to Elsevier journals +relocated 1 +longdesc This class for typesetting journal articles is accepted for +longdesc submitted articles both in Elsevier's electronic submission +longdesc system and elsewhere. Please note that this webpage is meant +longdesc for uploading updates to the elsarticle software itself, not +longdesc for submitting articles using it . +containersize 17320 +containerchecksum 17770bd130aa601a8208e996c1bcf192459d6c6ffd4ca170a303c3a548c7481e7e3a136c64865999ab7ab38ab56b09fc2021555fab60e344a7fa23d8cd62943f +doccontainersize 805304 +doccontainerchecksum 28c78ca516aee82dfe3be32683ae404cdb7be9d2d248fb747079e2d9cca9da44aec40145d095d2e3f0bb2f3d600712fb75a987c8d1aa1ded3f738e58350c44f6 +docfiles size=381 + RELOC/doc/latex/elsarticle/1pseperateaug.pdf + RELOC/doc/latex/elsarticle/1psingleauthorgroup.pdf + RELOC/doc/latex/elsarticle/README details="Readme" RELOC/doc/latex/elsarticle/elsarticle-template-harv.tex + RELOC/doc/latex/elsarticle/elsarticle-template-num-names.tex RELOC/doc/latex/elsarticle/elsarticle-template-num.tex - RELOC/doc/latex/elsarticle/elsdoc.pdf + RELOC/doc/latex/elsarticle/elsdoc.pdf details="Package documentation" RELOC/doc/latex/elsarticle/elsdoc.tex + RELOC/doc/latex/elsarticle/elstest-1p.pdf + RELOC/doc/latex/elsarticle/elstest-1pdoubleblind.pdf + RELOC/doc/latex/elsarticle/elstest-3p.pdf + RELOC/doc/latex/elsarticle/elstest-3pd.pdf + RELOC/doc/latex/elsarticle/elstest-5p.pdf RELOC/doc/latex/elsarticle/jfigs.pdf RELOC/doc/latex/elsarticle/makefile RELOC/doc/latex/elsarticle/manifest.txt RELOC/doc/latex/elsarticle/pdfwidgets.sty RELOC/doc/latex/elsarticle/rvdtx.sty -srcfiles size=8 +srccontainersize 9272 +srccontainerchecksum 55755e1a228bb834820f74580935b7e8a5bb162a675ffeb617bb1c0f7a1b5d99422c53ed7ae6b0302fc51112d5dc3cf63bfa9268c49aeb66cc194529c9d36b85 +srcfiles size=10 RELOC/source/latex/elsarticle/elsarticle.dtx RELOC/source/latex/elsarticle/elsarticle.ins +runfiles size=33 + RELOC/bibtex/bst/elsarticle/elsarticle-harv.bst + RELOC/bibtex/bst/elsarticle/elsarticle-num-names.bst + RELOC/bibtex/bst/elsarticle/elsarticle-num.bst + RELOC/tex/latex/elsarticle/elsarticle.cls catalogue-ctan /macros/latex/contrib/elsarticle -catalogue-date 2014-09-25 21:17:33 +0200 +catalogue-date 2019-04-05 20:33:17 +0200 catalogue-license lppl1.2 -catalogue-version 1.20 +catalogue-topics journalpub class +catalogue-version 3.2 name elteikthesis category Package revision 22513 -shortdesc Thesis class for ELTE University Informatics wing. +shortdesc Thesis class for ELTE University Informatics wing relocated 1 longdesc This is not an official University class, and has not been longdesc approved by the University. -runfiles size=1 - RELOC/tex/latex/elteikthesis/elteikthesis.cls +containersize 1552 +containerchecksum e4e4eb999e46b47e2cfdac34e1f36d49354104cd3bd0e13a78ccd63acc8a36997e3f075f40785e1eef059b79c0ff154b156bbc2e7ad039d79db778819de6ecce +doccontainersize 2472988 +doccontainerchecksum 3d409ba033132d5c4ccb14e4e987cabda0f62e01d79f3c45b8fcf3ebc571fc9a5f94bdb0f2d66daa8d746de573069d9c3e7af0c998925a1176580bac3eaaafb1 docfiles size=1207 - RELOC/doc/latex/elteikthesis/README - RELOC/doc/latex/elteikthesis/elteikthesis.pdf + RELOC/doc/latex/elteikthesis/README details="Readme" + RELOC/doc/latex/elteikthesis/elteikthesis.pdf details="Package documentation (mostly in Hungarian, but with English summary)" language="hu" RELOC/doc/latex/elteikthesis/example.pdf RELOC/doc/latex/elteikthesis/example.tex RELOC/doc/latex/elteikthesis/pics/eltecimerszines.eps RELOC/doc/latex/elteikthesis/pics/eltecimerszines.jpg +srccontainersize 5584 +srccontainerchecksum a37110177743fedfae82f6b84c081661b29d29dacd4e54f810f2c69ee6e288836ccd6c5428a53350d422eb2f1d1c503e50ea1ee0861d33fc80e93f63eba89586 srcfiles size=6 RELOC/source/latex/elteikthesis/elteikthesis.dtx RELOC/source/latex/elteikthesis/elteikthesis.ins +runfiles size=1 + RELOC/tex/latex/elteikthesis/elteikthesis.cls catalogue-ctan /macros/latex/contrib/elteikthesis -catalogue-date 2014-09-25 21:17:33 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics dissertation hungarian class catalogue-version 1.2 name eltex category Package revision 15878 -shortdesc Simple circuit diagrams in LaTeX picture mode. +shortdesc Simple circuit diagrams in LaTeX picture mode relocated 1 longdesc The macros enable the user to draw simple circuit diagrams in longdesc the picture environment, with no need of special resources. The longdesc macros are appropriate for drawing for school materials. The longdesc circuit symbols accord to the various parts of the standard IEC longdesc 617. +containersize 12888 +containerchecksum 6de1507df2fe408081aad0f75b69d7c21807f238d37e3c6d9cd243b741ae1761aced90e948a0c570f28db5a39616954412fc77a87482c890183f039923915c05 +doccontainersize 176308 +doccontainerchecksum 1bdd0f64c524def46dd0a20482b9ad6925b0d06ea272b05d6163a23f61ad1727b099a893f5af7a7de4140bd264b1d3503794a4c9c11cf8137c5c6070d08fe0e3 +docfiles size=62 + RELOC/doc/latex/eltex/README details="Readme" + RELOC/doc/latex/eltex/man_en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/eltex/man_en.tex + RELOC/doc/latex/eltex/pri_cz.pdf details="Package documentation (Czech)" language="cs" + RELOC/doc/latex/eltex/pri_cz.tex runfiles size=26 RELOC/tex/latex/eltex/eltex1.tex RELOC/tex/latex/eltex/eltex2.tex @@ -56477,25 +95733,28 @@ runfiles size=26 RELOC/tex/latex/eltex/eltex5.tex RELOC/tex/latex/eltex/eltex6.tex RELOC/tex/latex/eltex/eltex7.tex -docfiles size=62 - RELOC/doc/latex/eltex/README - RELOC/doc/latex/eltex/man_en.pdf - RELOC/doc/latex/eltex/man_en.tex - RELOC/doc/latex/eltex/pri_cz.pdf - RELOC/doc/latex/eltex/pri_cz.tex +catalogue-also circuit-macros circuitikz catalogue-ctan /macros/latex/contrib/eltex -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics diagram-circ catalogue-version 2.0 name elvish category Package revision 15878 -shortdesc Fonts for typesetting Tolkien Elvish scripts. +shortdesc Fonts for typesetting Tolkien Elvish scripts relocated 1 longdesc The bundle provides fonts for Cirth (cirth.mf, etc.) and for longdesc Tengwar (teng10.mf). The Tengwar fonts are supported by macros longdesc in teng.tex, or by the (better documented) tengtex package. +containersize 10496 +containerchecksum ca1496b488a85a32364b264706c9b4e4edde5c92681493b150942a3a8a2a32158b314a163ff4be8afbea489a75feb5dbb1c96e8e70f730530cce6472f9e46912 +doccontainersize 2380 +doccontainerchecksum e296ece5bb11d273b33e801ecddb1b9bb93e5f8cfc4a7d62b1555ddca89661557149935b7c5a71880efb888364989715b4e39585b2de1bcd8ecc24203afef199 +docfiles size=2 + RELOC/doc/fonts/elvish/README + RELOC/doc/fonts/elvish/teng.tex runfiles size=22 RELOC/fonts/source/public/elvish/cirth.mf RELOC/fonts/source/public/elvish/teng10.mf @@ -56506,42 +95765,49 @@ runfiles size=22 RELOC/fonts/source/public/elvish/tengteht.mf RELOC/fonts/tfm/public/elvish/cirth.tfm RELOC/fonts/tfm/public/elvish/teng10.tfm -docfiles size=2 - RELOC/doc/fonts/elvish/README - RELOC/doc/fonts/elvish/teng.tex +catalogue-also tengwar catalogue-ctan /fonts/elvish -catalogue-date 2014-04-26 19:51:19 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics font font-mf font-invented name elzcards category Package -revision 37063 -shortdesc Typeset business cards, index cards and flash cards easyly. -relocated 1 -longdesc A class, based on article.cls, for typesetting business cards, -longdesc index cards, and flash cards in an easy and flexible way, -longdesc optionally also the reverse side. You will have to furnish the -longdesc paper size, the desired size of your card, the printable area -longdesc of your printer, and the design of the card. Everything else is -longdesc taken care of by elzcards. -runfiles size=4 - RELOC/tex/latex/elzcards/elzcards.sty -docfiles size=25 - RELOC/doc/latex/elzcards/README - RELOC/doc/latex/elzcards/elzcards-example.tex - RELOC/doc/latex/elzcards/elzcards.pdf -srcfiles size=10 +revision 44785 +shortdesc Typeset business cards, index cards and flash cards easily +relocated 1 +longdesc A package for typesetting business cards, index cards, and +longdesc flash cards in an easy and flexible way, optionally also the +longdesc reverse side. You will have to furnish the paper size, the +longdesc desired size of your card, the printable area of your printer, +longdesc and the design of the card. Everything else is taken care of by +longdesc elzcards. +containersize 3712 +containerchecksum 5bb4717c6fafbcbbf3862fbf85dfdfe8a77331da806c961142e6e233748378046f09e47ed710973ec07debeb4b4109fc43d3b4efb18c8949d56afcb1da67ec1d +doccontainersize 162640 +doccontainerchecksum 5a1081d5e3c205630d09ae3bf7c7410106abf9d165174eb28608884191a1ae459bff52f3d8521e3e5ec0a92ffdcae1e7e14020e35eb0a6e6ce2f4ee9a0583545 +docfiles size=45 + RELOC/doc/latex/elzcards/README details="Readme" + RELOC/doc/latex/elzcards/elzcards-examples.pdf details="Samples" + RELOC/doc/latex/elzcards/elzcards-examples.tex + RELOC/doc/latex/elzcards/elzcards.pdf details="Package documentation" +srccontainersize 10520 +srccontainerchecksum 6d12270f11cc314c72e81495c2ab98babcb0f3604a923b7c13cd9102935148b68c7f3d345797672f5a1bd9e66797381c3db361959e041746400abb2d5dc90684 +srcfiles size=12 RELOC/source/latex/elzcards/elzcards.dtx RELOC/source/latex/elzcards/elzcards.ins +runfiles size=4 + RELOC/tex/latex/elzcards/elzcards.sty catalogue-ctan /macros/latex/contrib/elzcards -catalogue-date 2015-04-26 12:26:50 +0200 +catalogue-date 2017-07-10 19:52:44 +0200 catalogue-license lppl1.3 -catalogue-version 1.20 +catalogue-topics card-gen +catalogue-version 1.23 name emarks category Package revision 24504 -shortdesc Named mark registers with e-TeX. +shortdesc Named mark registers with e-TeX relocated 1 longdesc E-TeX provides 32 768 mark registers; using this facility is longdesc far more comfortable than LaTeX tricks with \markright, @@ -56554,47 +95820,62 @@ longdesc content: \thefirstmarks, \thebotmarks, thetopmarks and longdesc \getthemarks; and the command \ifmarksequal is available for longdesc comparing the content of marks registers. The package requires longdesc an e-TeX-enabled engine, and the etex package. -runfiles size=1 - RELOC/tex/latex/emarks/emarks.sty +containersize 1896 +containerchecksum 8e5f2d559958083abbde5efe9e70b3cb3dc71cdddd3066ac305c310fd5a8b2652bc6b5ce66531963c5a5f9426ccfed7eee0700938ed6a515865ac8e1718de5aa +doccontainersize 1480964 +doccontainerchecksum 4deafa2295612c7428b82a4c8c2c19811f91c2d456b430b6ab59014b3cdb42a86a84e67319745dea469ae40f89b36d104d30db28228c825ba0d86436a37cc7df docfiles size=590 RELOC/doc/latex/emarks/Fingerprint.jpg - RELOC/doc/latex/emarks/README + RELOC/doc/latex/emarks/README details="Readme" RELOC/doc/latex/emarks/emarks-fingerprint.png - RELOC/doc/latex/emarks/emarks.pdf + RELOC/doc/latex/emarks/emarks.pdf details="Package documentation" +srccontainersize 8512 +srccontainerchecksum d7ded6022917a50689905c953808e9f4a43d03811bda490721480f823c4ffd36d15948e5693d73cb061a97f775e6590cd376ec20e0093af3af5b792d7d67e2c5 srcfiles size=9 RELOC/source/latex/emarks/emarks.drv RELOC/source/latex/emarks/emarks.dtx RELOC/source/latex/emarks/emarks.ins +runfiles size=1 + RELOC/tex/latex/emarks/emarks.sty catalogue-ctan /macros/latex/contrib/emarks -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics typesetting catalogue-version 1.0 name embedall category Package -revision 31903 -shortdesc Embed source files into the generated PDF. +revision 51177 +shortdesc Embed source files into the generated PDF relocated 1 longdesc The package provides a means of storing a project, without longdesc losing anything. It uses the embedfile package to attach to the longdesc generated PDF all files used in creating your project. In longdesc particular, it can embed images, external TeX files, external longdesc codes and -runfiles size=1 - RELOC/tex/latex/embedall/embedall.sty -docfiles size=38 - RELOC/doc/latex/embedall/embedall.pdf -srcfiles size=3 +containersize 1780 +containerchecksum c531feeb7557cfca45127d9c37c93bf5835e35efa7c8aab65d58594c30d6864deaa22b64ba90cebcb1e9dcb139b00ad64ff96238835b8e059169278fb602ff2a +doccontainersize 235400 +doccontainerchecksum be228eb577bb2a59b93c7684bc1fd47e9a4a505f6c66eabf434ad29523f978c877608fe76cd6ee24c8942889710270b8f304170f445e2a1408303d7c5a8a52b7 +docfiles size=59 + RELOC/doc/latex/embedall/README + RELOC/doc/latex/embedall/embedall.pdf details="Package documentation" +srccontainersize 5416 +srccontainerchecksum f1d3527809502aafa0a0b9aafd02d25fdbb97ab795cf4306a4ac84dccb873111e580390eb0499dfe13ef3f0bd7ea1a61e90220688dc814de7ff21ab4ccdbb1c2 +srcfiles size=5 RELOC/source/latex/embedall/embedall.dtx RELOC/source/latex/embedall/embedall.ins +runfiles size=2 + RELOC/tex/latex/embedall/embedall.sty catalogue-ctan /macros/latex/contrib/embedall -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2019-05-20 21:36:38 +0200 catalogue-license lppl1.2 -catalogue-version 1.0 +catalogue-topics pdf-feat archival +catalogue-version 2.0 name embrac category Package -revision 38317 +revision 44757 shortdesc Upright brackets in emphasised text relocated 1 longdesc The package redefines the commands \emph and \textit so that @@ -56602,23 +95883,95 @@ longdesc parentheses and square brackets are typeset in an upright font longdesc in their arguments. The package requires expl3 from the longdesc l3kernel bundle, and xparse and l3keys2e from the l3packages longdesc bundle. -runfiles size=5 - RELOC/tex/latex/embrac/embrac.sty +containersize 3532 +containerchecksum d85d8536dd35680e6af332ca71880c3e6a4ca42501974f2266eb17ced0d6092f5e764dfe85a006e33ee201ad79cd997032f133d061a4e234c50a1c80ec4a8d84 +doccontainersize 467928 +doccontainerchecksum 49da415bcc1f01fc465670ea3c15a9552b8bfe8102ff3600678aea28424c29863104228247bd5dff3ffcbf978d4ab6d8b670e54eb1d12b01d5b1e22cdf241921 docfiles size=119 - RELOC/doc/latex/embrac/README - RELOC/doc/latex/embrac/embrac_en.pdf + RELOC/doc/latex/embrac/README details="Readme" + RELOC/doc/latex/embrac/embrac_en.pdf details="Package documentation" RELOC/doc/latex/embrac/embrac_en.tex RELOC/doc/latex/embrac/embrac_kerning_test.tex +runfiles size=4 + RELOC/tex/latex/embrac/embrac.sty +catalogue-contact-bugs https://bitbucket.org/cgnieder/embrac/issues +catalogue-contact-repository https://bitbucket.org/cgnieder/embrac/ catalogue-ctan /macros/latex/contrib/embrac -catalogue-date 2015-09-07 13:02:13 +0200 +catalogue-date 2017-07-06 13:15:18 +0200 catalogue-license lppl1.3 -catalogue-topics typesetting expl3 -catalogue-version 0.6b +catalogue-topics typesetting paren-mgmt expl3 +catalogue-version 0.7 + +name emf +category Package +revision 42023 +shortdesc Support for the EMF symbol +relocated 1 +longdesc This package provides LaTeX support for the symbol for the EMF +longdesc in electric circuits and electrodynamics. It provides support +longdesc for multiple symbols but does not provide any fonts. The fonts +longdesc themselves must be aquired otherwise. However the fonts are +longdesc part of a normal TeX Live installation. +containersize 1472 +containerchecksum bc1b601aa523b30a54493ac92e15bcdb918775e9f57514b62357b85b5919fb05cc945b3120cea474fab714585fe2a81603f43eae51bb266e8989af6105ebc65c +doccontainersize 325204 +doccontainerchecksum f2e37967476ed678dce7c01f195ec03f77327d59beb2b15cc6a64ef92cc377700a2b7b528ae6c42497cde0ac127cd10c51e3ecf5fda0cf7954d598a0dc92b5df +docfiles size=89 + RELOC/doc/latex/emf/README details="Readme" + RELOC/doc/latex/emf/emf.pdf details="Package documentation" + RELOC/doc/latex/emf/emf.tex + RELOC/doc/latex/emf/license +runfiles size=1 + RELOC/tex/latex/emf/emf.sty +catalogue-ctan /macros/latex/contrib/emf +catalogue-date 2016-09-14 05:04:20 +0200 +catalogue-license gpl3 +catalogue-topics text-symbol electronic +catalogue-version 1 + +name emisa +category Package +revision 46734 +shortdesc A LaTeX package for preparing manuscripts for the journal EMISA +relocated 1 +longdesc The EMISA LaTeX package is provided for preparing manuscripts +longdesc for submission to EMISA (Enterprise Modelling and Information +longdesc Systems Architectures), and for preparing accepted submissions +longdesc for publication as well as for typesetting the final document +longdesc by the editorial office. Articles in EMISA are published online +longdesc at EMISA in the Portable Document Format (PDF). +containersize 15288 +containerchecksum 9f62531d3cc26b428a628d2cab0e9d3fa95b1f67e91f5ffecaa432432b02acc6076acd32ac2650eabb54d9e14b6081d70fcc09299b45a0b5bd27905f1dcc8506 +doccontainersize 427648 +doccontainerchecksum 092818afd707380679c4d3d44ad50954c48562ecb5b988d3bb94701991bc30cfa356f975a8fe8a381fe99171efea2b790115cd0a4f12b17430cecf2efc3d7d78 +docfiles size=111 + RELOC/doc/latex/emisa/CHANGELOG.md + RELOC/doc/latex/emisa/README.TEXLIVE + RELOC/doc/latex/emisa/README.md details="Readme" + RELOC/doc/latex/emisa/emisa-author-template.tex + RELOC/doc/latex/emisa/emisa.brf + RELOC/doc/latex/emisa/emisa.pdf details="Package documentation" + RELOC/doc/latex/emisa/manifest.txt +srccontainersize 48132 +srccontainerchecksum cf43591889d823125ce7d49dece358563c5dc4ca5df89bddc8cb6b73550e34e5e02b5aa5c67c96c747aeafc6070fc91f899d2142ad23424b11637a7a52feb55c +srcfiles size=54 + RELOC/source/latex/emisa/emisa.dtx + RELOC/source/latex/emisa/emisa.ins +runfiles size=18 + RELOC/tex/latex/emisa/emisa.bbx + RELOC/tex/latex/emisa/emisa.cbx + RELOC/tex/latex/emisa/emisa.cls +catalogue-contact-repository https://github.com/emisa-journal/emisa-latex-package +catalogue-ctan /macros/latex/contrib/emisa +catalogue-date 2018-02-24 13:29:05 +0100 +catalogue-license lppl1.3c +catalogue-topics publisher class +catalogue-version 2.2.0 name emp category Package revision 23483 -shortdesc "Encapsulate" MetaPost figures in a document. +shortdesc "Encapsulate" MetaPost figures in a document relocated 1 longdesc Emp is a package for encapsulating MetaPost figures in LaTeX: longdesc the package provides environments where you can place MetaPost @@ -56630,70 +95983,110 @@ longdesc is therefore useful for keeping illustrations in synchrony with longdesc the text. It also frees you from inventing descriptive names longdesc for PostScript files that fit into the confines of file system longdesc conventions. -runfiles size=2 - RELOC/tex/latex/emp/emp.sty +containersize 3236 +containerchecksum 5028360a2b412232b06b0bc53352c7a0a379943c14781b49b45cb75aef044df5bda24449dbf13601d1a574e5349bd0f2d2f7b7969f10bf72b3aeebe9e81b6ecb +doccontainersize 212864 +doccontainerchecksum 480edb224fcb42457c6252d4b6fd8cf42796e9b2ac72aa8d4bb22b3840cb10a55a509a47b8c504efbdba3e28192acee367e99638dfdbf9cab4fc5628496cd5db docfiles size=71 RELOC/doc/latex/emp/COPYING RELOC/doc/latex/emp/Makefile - RELOC/doc/latex/emp/README - RELOC/doc/latex/emp/emp.pdf - RELOC/doc/latex/emp/empman.pdf + RELOC/doc/latex/emp/README details="Package Readme" + RELOC/doc/latex/emp/emp.pdf details="Documented source" + RELOC/doc/latex/emp/empman.pdf details="Package manual" +srccontainersize 9284 +srccontainerchecksum e80aeb8566f31c3582423abc2794cd468b2a7b3505d4d01cbcf261201e4e8a95ca6ed87c6deffa03c9f868762fbe8b2078bf8327172ee9a172605fa0e6e72c40 srcfiles size=12 RELOC/source/latex/emp/emp.drv RELOC/source/latex/emp/emp.dtx RELOC/source/latex/emp/emp.ins RELOC/source/latex/emp/empman.drv +runfiles size=2 + RELOC/tex/latex/emp/emp.sty +catalogue-also metatex catalogue-ctan /macros/latex/contrib/emp -catalogue-date 2013-04-03 11:13:43 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics graphics-inline name emptypage category Package revision 18064 -shortdesc Make empty pages really empty. +shortdesc Make empty pages really empty relocated 1 longdesc This package prevents page numbers and headings from appearing longdesc on empty pages. -runfiles size=1 - RELOC/tex/latex/emptypage/emptypage.sty +containersize 1048 +containerchecksum 6379cbd0983ca7b58d2c94ce02a76e054faab1afb2942227469dcf2c4d572d9946921b6d24e9c7d2b5a82cc45e7e380a8ffae671f165ad0e2a3a611b95841352 +doccontainersize 50156 +doccontainerchecksum 11681a155df95f913c3d25cceb32b54ace35bfa5aa7541916c15473b951b02a7417380dfa5c30f5dc3de1259d6cad99859c31bad4c2f2056ffb4608c614a2e14 docfiles size=16 - RELOC/doc/latex/emptypage/README - RELOC/doc/latex/emptypage/emptypage.pdf + RELOC/doc/latex/emptypage/README details="Readme" + RELOC/doc/latex/emptypage/emptypage.pdf details="Package documentation" +srccontainersize 1856 +srccontainerchecksum 1bdfdd32ed844651a109b54c65e7297222cb065a122269bd5c10cf77c6ae0e38b717fe182dad6bd0432b5eafb38b3d8631218599a46bb61a598eef4093a8ce1c srcfiles size=2 RELOC/source/latex/emptypage/emptypage.dtx RELOC/source/latex/emptypage/emptypage.ins +runfiles size=1 + RELOC/tex/latex/emptypage/emptypage.sty catalogue-ctan /macros/latex/contrib/emptypage -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics layout catalogue-version 1.2 name emulateapj category Package revision 28469 -shortdesc Produce output similar to that of APJ. +shortdesc Produce output similar to that of APJ relocated 1 longdesc A LaTeX class (based on current RevTeX) to produce preprints longdesc with the page layout similar to that of the Astrophysical longdesc Journal. -runfiles size=16 - RELOC/tex/latex/emulateapj/emulateapj.cls +containersize 17816 +containerchecksum 12b73ef4234af72358c1f120d860b7ba823bb4d65f91cba348a4a136b57f8edccf3849eb36e95c50cc40445a5fe3908652c221b938ee34a17aed6b4cb265744e +doccontainersize 147868 +doccontainerchecksum 2d226b60313de3387d87c373a23e490a66c2fe1a94e97ef2364e65fafb037a148db7f5162ab9d3f1d788a037fdebe02ddedaa772eb715dc1ec8fea941b0e6708 docfiles size=48 - RELOC/doc/latex/emulateapj/README + RELOC/doc/latex/emulateapj/README details="Readme" RELOC/doc/latex/emulateapj/sample.pdf RELOC/doc/latex/emulateapj/sample.tex +runfiles size=16 + RELOC/tex/latex/emulateapj/emulateapj.cls +catalogue-contact-home http://hea-www.harvard.edu/~alexey/emulateapj catalogue-ctan /macros/latex/contrib/emulateapj -catalogue-date 2014-09-26 13:30:12 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl +catalogue-topics journalpub astronomy class name enctex category Package revision 34957 -shortdesc A TeX extension that translates input on its way into TeX. +shortdesc A TeX extension that translates input on its way into TeX relocated 1 longdesc EncTeX is (another) TeX extension, written at the change-file longdesc level. It provides means of translating input on the way into longdesc TeX. It allows, for example, translation of multibyte longdesc sequences, such as utf-8 encoding. +containersize 23748 +containerchecksum e6dc0988bd10dcefd63db2a57999637b63187d8a234c46dcb148e9dfe8388800e61237d7b58d271b735d2658d40c1f81016b5018e239d556fb9615d35b4129a0 +doccontainersize 253856 +doccontainerchecksum 2bf47c879c6ed0fc539763c899d8db261135f1a0ef0052904d03a72663cff38d40d2fe7b0daacaf2d54771c7b9eb5e98b73ef71d2a733899d458803f8caee723 +docfiles size=108 + RELOC/doc/generic/enctex/COPYING + RELOC/doc/generic/enctex/COPYING.UCD + RELOC/doc/generic/enctex/INSTALL + RELOC/doc/generic/enctex/INSTALL.eng + RELOC/doc/generic/enctex/README details="Readme" + RELOC/doc/generic/enctex/changes.txt + RELOC/doc/generic/enctex/encdoc-e.pdf details="Reference manual (in English)" language="en" + RELOC/doc/generic/enctex/encdoc-e.tex + RELOC/doc/generic/enctex/encdoc.pdf details="Reference manual (in Czech)" language="cs" + RELOC/doc/generic/enctex/encdoc.tex + RELOC/doc/generic/enctex/math-example.tex + RELOC/doc/generic/enctex/unimap.diff + RELOC/doc/generic/enctex/unimap.py + RELOC/doc/generic/enctex/vlna.tex runfiles size=62 RELOC/tex/generic/enctex/1250-csf.tex RELOC/tex/generic/enctex/1250-il2.tex @@ -56735,29 +96128,15 @@ runfiles size=62 RELOC/tex/generic/enctex/utf8raw.tex RELOC/tex/generic/enctex/utf8unkn.tex RELOC/tex/generic/enctex/utf8warn.tex -docfiles size=108 - RELOC/doc/generic/enctex/COPYING - RELOC/doc/generic/enctex/COPYING.UCD - RELOC/doc/generic/enctex/INSTALL - RELOC/doc/generic/enctex/INSTALL.eng - RELOC/doc/generic/enctex/README - RELOC/doc/generic/enctex/changes.txt - RELOC/doc/generic/enctex/encdoc-e.pdf - RELOC/doc/generic/enctex/encdoc-e.tex - RELOC/doc/generic/enctex/encdoc.pdf - RELOC/doc/generic/enctex/encdoc.tex - RELOC/doc/generic/enctex/math-example.tex - RELOC/doc/generic/enctex/unimap.diff - RELOC/doc/generic/enctex/unimap.py - RELOC/doc/generic/enctex/vlna.tex catalogue-ctan /systems/enctex -catalogue-date 2015-01-18 22:31:04 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license gpl +catalogue-topics engine name encxvlna category Package revision 34087 -shortdesc Insert nonbreakable spaces, using encTeX. +shortdesc Insert nonbreakable spaces, using encTeX relocated 1 longdesc The package provides tools for inserting nonbreakable spaces longdesc after nonsyllabic prepositions and single letter conjunctions @@ -56765,24 +96144,30 @@ longdesc as required by Czech and Slovak typographical rules. It is longdesc implemented using encTeX and provides files both for plain TeX longdesc and LaTeX. The LaTeX solution tries to avoid conflicts with longdesc other packages. -runfiles size=3 - RELOC/tex/latex/encxvlna/encxvlna.sty - RELOC/tex/plain/encxvlna/encxvlna.tex +containersize 2572 +containerchecksum f6aa0a954affda9152f5b15958ea453e3c2979205f25a5d9f15e3fb189b2352a87256a345d382a3c7dc401eeb55360afa9cf942cc4779406b97cc8f8c47eba81 +doccontainersize 251156 +doccontainerchecksum 01f44c8205daf33006eaa73061d27c9e17ce5b456e73f427f797023cf94d7380e44180c347021cc5c17870550fc7e626bab8de6219d6b56000526aa54ba34efe docfiles size=70 RELOC/doc/generic/encxvlna/License.txt - RELOC/doc/generic/encxvlna/README - RELOC/doc/generic/encxvlna/encxvlna.pdf + RELOC/doc/generic/encxvlna/README details="Readme" + RELOC/doc/generic/encxvlna/encxvlna.pdf details="Package documentation" RELOC/doc/generic/encxvlna/encxvlna.tex RELOC/doc/generic/encxvlna/vlna-inc.tex +runfiles size=3 + RELOC/tex/latex/encxvlna/encxvlna.sty + RELOC/tex/plain/encxvlna/encxvlna.tex +catalogue-also luavlna xevlna catalogue-ctan /macros/generic/encxvlna -catalogue-date 2014-05-17 20:01:25 +0200 +catalogue-date 2018-05-30 19:45:49 +0200 catalogue-license lppl +catalogue-topics typesetting czech slovak catalogue-version 1.1 name endfloat category Package -revision 24962 -shortdesc Move floats to the end, leaving markers where they belong. +revision 51003 +shortdesc Move floats to the end, leaving markers where they belong relocated 1 longdesc Place all floats on pages by themselves at the end of the longdesc document, optionally leaving markers like "[Figure 3 about @@ -56791,235 +96176,353 @@ longdesc normally have occurred. Float types figure and table are longdesc recognised by the package, unmodified. Since several packages longdesc define other types of float, it is possible to register these longdesc float types with endfloat. -runfiles size=5 - RELOC/tex/latex/endfloat/efxmpl.cfg - RELOC/tex/latex/endfloat/endfloat.sty -docfiles size=49 +containersize 5148 +containerchecksum 2bc564cb0ad7b9bd53af9304f378b6d0cdd9aa32564f2bbb39abcf0d942c4e18015b7181d4be5e873bcdf4e8f971d65678fdbcfb544c005ad012b378eb6e1351 +doccontainersize 181292 +doccontainerchecksum 39a1cfa84a2cbe5ff1b59fd9c5fa6a19cb1d3aafac6d1fbb111f117892e34142f6a21ce7808238608ac0602d905cfff6235a78762a0d510dbc436c881baf59f9 +docfiles size=62 RELOC/doc/latex/endfloat/COPYING - RELOC/doc/latex/endfloat/README - RELOC/doc/latex/endfloat/endfloat.pdf -srcfiles size=26 + RELOC/doc/latex/endfloat/README details="Readme" + RELOC/doc/latex/endfloat/efxmpl.cfg + RELOC/doc/latex/endfloat/endfloat.pdf details="Package documentation" +srccontainersize 29220 +srccontainerchecksum 551afda371c0d4a6e71299cac919857eaaed3ee8891f96083cd76fb33ededfaa3daa814593efbc9e7e8dbd4e7d257945972df547d7c24665e760960eccea07c9 +srcfiles size=30 + RELOC/source/latex/endfloat/endfloat.drv RELOC/source/latex/endfloat/endfloat.dtx RELOC/source/latex/endfloat/endfloat.ins +runfiles size=5 + RELOC/tex/latex/endfloat/endfloat.sty +catalogue-contact-bugs https://gitlab.com/axelsommerfeldt/endfloat/issues +catalogue-contact-repository https://gitlab.com/axelsommerfeldt/endfloat catalogue-ctan /macros/latex/contrib/endfloat -catalogue-date 2011-12-31 01:27:20 +0100 +catalogue-date 2019-05-05 20:54:15 +0200 catalogue-license gpl -catalogue-version 2.5d +catalogue-topics float +catalogue-version 2.7 name endheads category Package -revision 31921 +revision 43750 shortdesc Running headers of the form "Notes to pp.xx-yy" relocated 1 -longdesc Endheads provides running headers of the form "Notes to pp. xx- -longdesc yy" for endnotes sections. It also enables one to reset the +longdesc Endheads provides running headers of the form "Notes to pp. +longdesc xx-yy" for endnotes sections. It also enables one to reset the longdesc endnotes counter, and put a line marking the chapter change in longdesc the endnotes, at the beginning of every chapter. Endheads longdesc requires the fancyhdr, needspace, ifthen, and endnotes longdesc packages. -runfiles size=2 - RELOC/tex/latex/endheads/endheads.sty -docfiles size=61 - RELOC/doc/latex/endheads/endheads.pdf -srcfiles size=7 +containersize 2584 +containerchecksum 55f01774d62616b81fc846af275067445c8979d50cbb67c8f6cdc362a26999c83c9ce5428af28170ab9e4c6262fc4ed8bd0431c5aee8aafa89e38bf4cdc30989 +doccontainersize 229624 +doccontainerchecksum bbed9408161f827ebe39ae2161e89f1f15d8327f29f7eb18bf58f3cac7c58492529caf05ebe3111891520c406c547b2f1aa57d2927c5f857ea6e02ecfa9cf84b +docfiles size=57 + RELOC/doc/latex/endheads/README.md + RELOC/doc/latex/endheads/endheads.pdf details="Package documentation" +srccontainersize 7828 +srccontainerchecksum c58d68a17da865391ce4480dc02f3375ee6d311a2590f8505885c3ce7fed65b2e7d6c6dd5838f55f4fe3d7192b56217b7146646269938a3a10cdefd3c55bd0c2 +srcfiles size=8 RELOC/source/latex/endheads/endheads.dtx RELOC/source/latex/endheads/endheads.ins +runfiles size=2 + RELOC/tex/latex/endheads/endheads.sty catalogue-ctan /macros/latex/contrib/endheads -catalogue-date 2013-10-18 10:55:45 +0200 +catalogue-date 2017-04-08 06:57:54 +0200 catalogue-license lppl -catalogue-version v1.5 +catalogue-topics endnote page-hf +catalogue-version 1.6 name endiagram category Package revision 34486 -shortdesc Easy creation of potential energy curve diagrams. +shortdesc Easy creation of potential energy curve diagrams relocated 1 longdesc The package provides the facility of drawing potential energy longdesc curve diagrams with just a few simple commands. The package longdesc cannot (yet) be considered stable. -runfiles size=17 - RELOC/tex/latex/endiagram/endiagram.sty +containersize 8772 +containerchecksum 50cda29c5f045e45e0421efe11128b11be1206b4ea3b183d401562a9c8afe214031c993f885bfca67f81e8b4827e024a0aeb1d95e5a8a03426f72f414cfd17fe +doccontainersize 643640 +doccontainerchecksum 0807629080916e9ca7451fd1975da985ac786326914521c21155c337acbf48888620e3bac03b00fbbf45bbb47740faaa40d1db768a296e4a6b1cf6c6671357ca docfiles size=167 - RELOC/doc/latex/endiagram/README - RELOC/doc/latex/endiagram/endiagram_en.pdf + RELOC/doc/latex/endiagram/README details="Readme" + RELOC/doc/latex/endiagram/endiagram_en.pdf details="Package documentation" RELOC/doc/latex/endiagram/endiagram_en.tex +runfiles size=17 + RELOC/tex/latex/endiagram/endiagram.sty catalogue-ctan /macros/latex/contrib/endiagram -catalogue-date 2014-08-08 18:24:57 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics chemistry expl3 catalogue-version 0.1d name endnotes category Package revision 17197 -shortdesc Place footnotes at the end. +shortdesc Place footnotes at the end relocated 1 longdesc Accumulates notes (using the \endnote command, which can be longdesc used as a replacement for \footnote), and places them at the longdesc end of the section, chapter or document. -runfiles size=4 - RELOC/tex/latex/endnotes/endnotes.sty +containersize 5264 +containerchecksum 927d0883e4453e96dbdc9739fd2db471e63d3ebe2ced9f0cf55be74f2bc26804ddd1151b82d04a6d977427e0396bde01f4332083dab7a413049d9d639295c196 +doccontainersize 260012 +doccontainerchecksum 44aa9b7d48d7f363c35c61c1945161650cd030ca23d443931236bd1739f6b1d084998fbfab27fd48fd17ade00d1fa494a3595a8101963c311b7fb41a9307a40d docfiles size=69 - RELOC/doc/latex/endnotes/endnotes.pdf + RELOC/doc/latex/endnotes/endnotes.pdf details="Package documentation" RELOC/doc/latex/endnotes/endnotes.tex +runfiles size=4 + RELOC/tex/latex/endnotes/endnotes.sty +catalogue-also fnpara footmisc footnpag +catalogue-contact-repository https://github.com/rf-latex/endnotes +catalogue-contact-support https://github.com/rf-latex/endnotes/issues catalogue-ctan /macros/latex/contrib/endnotes -catalogue-date 2012-06-14 17:25:45 +0200 +catalogue-date 2018-09-14 18:05:06 +0200 catalogue-license lppl1.2 +catalogue-topics endnote + +name endnotesj +category Package +revision 47703 +shortdesc Japanese-style endnotes +relocated 1 +longdesc This package provides customized styles for endnotes to be used +longdesc with Japanese documents. It can be used on pLaTeX, upLaTeX, and +longdesc LuaLaTeX (LuaTeX-ja). +containersize 5292 +containerchecksum acc3ecb055add319d5cbfc4e542c1be490c00187153990dd42d5b9a23adfd19795bebe4648129bc1cd8aa8cc243111602b287183803db8b5962b23b6c60487e3 +doccontainersize 152524 +doccontainerchecksum 71e52552f4a432b8743e448142fdc8e49b9e1ff1d290b6d20731c083f62bb5be823db76720fcfa40cbb8bf75968b80875926aea8a7f67808555fdec160de1911 +docfiles size=42 + RELOC/doc/latex/endnotesj/LICENSE + RELOC/doc/latex/endnotesj/Makefile + RELOC/doc/latex/endnotesj/README.md details="Readme" + RELOC/doc/latex/endnotesj/endnotesj-ja.pdf details="Package documentation" language="ja" + RELOC/doc/latex/endnotesj/endnotesj-ja.tex +runfiles size=5 + RELOC/tex/latex/endnotesj/endnotesj.sty +catalogue-contact-repository https://github.com/aminophen/endnotesj +catalogue-ctan /language/japanese/endnotesj +catalogue-date 2018-05-15 04:44:19 +0200 +catalogue-license bsd3 +catalogue-topics endnote japanese +catalogue-version 3.0 + +name endofproofwd +category Package +revision 45116 +shortdesc An "end of proof" sign +relocated 1 +longdesc This package provides an additional "end of proof" sign. The +longdesc command's name is \wasserdicht. +containersize 628 +containerchecksum 900fc2d9a2673cd75bb25a3c1d5d13a66a91dcf21a105ed22ab52b7e61db4753f3419e6e7f5d09b64b27efd6d4c52b6fc6d1ffd06d6cac37bba9017aa96712f6 +doccontainersize 2060 +doccontainerchecksum 1b99e26313b9a0572c41900d6e0b10621032957e7569a436d0a84a4d2451b857993b8bcf3554da5ddad00ebb3d83347d5f81e7df858b7b15f2ce3ca92d5ce511 +docfiles size=3 + RELOC/doc/latex/endofproofwd/README.txt details="Readme" + RELOC/doc/latex/endofproofwd/endofproofwd.pdf details="Package documentation" + RELOC/doc/latex/endofproofwd/endofproofwd.pdf_tex +runfiles size=1 + RELOC/tex/latex/endofproofwd/endofproofwd.sty +catalogue-ctan /graphics/endofproofwd +catalogue-date 2017-08-26 05:30:39 +0200 +catalogue-license lppl1.3 +catalogue-topics graphics maths font-symbol-maths name engpron category Package revision 16558 -shortdesc Helps to type the pronunciation of English words. +shortdesc Helps to type the pronunciation of English words relocated 1 -longdesc This package provides macros beginning with the 'PS' character, +longdesc This package provides macros beginning with the PS character, longdesc made active, which enable us to write the British or American longdesc English pronunciation as one can find it in the 'English longdesc Pronouncing Dictionary' by Daniel Jones. There is an option to longdesc typeset the pronunciation in the style of Harrap's dictionary. -runfiles size=4 - RELOC/tex/latex/engpron/engpron-tools.sty - RELOC/tex/latex/engpron/engpron.sty +containersize 3860 +containerchecksum e525f8d2ad25b93566c101edd29a70d49d9f65f591e15bf3457671aaf748da1afac5d483389eada870cefc9e144010e16c561d0561d97ecb3ae240e21b5c5b39 +doccontainersize 1928396 +doccontainerchecksum dfa3ba98bddd11db47f308c988735967d1ec92c688081bad0deba88c29bd01c976bd1180342b890489f3026c964520ec1fa399fdb52f484c24285e3540a12859 docfiles size=608 - RELOC/doc/latex/engpron/LISEZMOI - RELOC/doc/latex/engpron/README + RELOC/doc/latex/engpron/LISEZMOI details="Lisez moi" language="fr" + RELOC/doc/latex/engpron/README details="Readme" language="en" RELOC/doc/latex/engpron/engpron-en.ltx - RELOC/doc/latex/engpron/engpron-en.pdf - RELOC/doc/latex/engpron/engpron-ex-en.pdf + RELOC/doc/latex/engpron/engpron-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/engpron/engpron-ex-en.pdf details="Usage example (English)" language="en" RELOC/doc/latex/engpron/engpron-ex-en.tex - RELOC/doc/latex/engpron/engpron-ex-fr.pdf + RELOC/doc/latex/engpron/engpron-ex-fr.pdf details="Usage example (French)" language="fr" RELOC/doc/latex/engpron/engpron-ex-fr.tex RELOC/doc/latex/engpron/engpron-fr.ltx RELOC/doc/latex/engpron/engpron-fr.pdf - RELOC/doc/latex/engpron/engpron.pdf + RELOC/doc/latex/engpron/engpron.pdf details="Package documentation (French)" language="fr" +srccontainersize 24988 +srccontainerchecksum b47f186eb08ee68b769d61954b705fb5e0575f9af90968569a1928a6b97bbe5bbbd8b65dbd2f946a40ebc7dc1fc676a03effd7cc51924356531ce18fcc3c8dee srcfiles size=24 RELOC/source/latex/engpron/Makefile RELOC/source/latex/engpron/engpron.dtx RELOC/source/latex/engpron/engpron.ins +runfiles size=4 + RELOC/tex/latex/engpron/engpron-tools.sty + RELOC/tex/latex/engpron/engpron.sty catalogue-ctan /macros/latex/contrib/engpron -catalogue-date 2012-02-10 18:22:03 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics phonetic linguistic catalogue-version 2 name engrec category Package revision 15878 -shortdesc Enumerate with lower- or uppercase Greek letters. +shortdesc Enumerate with lower- or uppercase Greek letters relocated 1 longdesc This package provides two macros \engrec and \EnGrec to convert longdesc number arguments to lower case or upper case greek letters. longdesc They have the syntax of \alph, i.e. \engrec{a_counter}, longdesc \EnGrec{a_counter}. Options are provided to work with the longdesc upgreek and fourier packages. Requires amstext. -runfiles size=2 - RELOC/tex/latex/engrec/engrec.sty +containersize 1832 +containerchecksum 3856199a11043eb42062122d99f11a64791113ebee137b588b69eab7ba79d721349c2268440a4b801b0e7bc293fc99011fb9a70a732a03a5656cc6302cbd0054 +doccontainersize 270476 +doccontainerchecksum f5402766dee90ec0cd2aad59db562a7314805072d4247e5930e59f5aebda9c1b87c4b6935028ec960bca4eb27a1bb1c7ff31b2a671ae0338e1058e24323d4cec docfiles size=71 RELOC/doc/latex/engrec/LISEZMOI - RELOC/doc/latex/engrec/README - RELOC/doc/latex/engrec/engrec.pdf + RELOC/doc/latex/engrec/README details="Package Readme" + RELOC/doc/latex/engrec/engrec.pdf details="Package documentation" +srccontainersize 7364 +srccontainerchecksum ff2e4447135db1164447ed8502f45e9dc647cc3b8c9329fe21d3a279b40c2da0923fa78be44ef52d4d9a4781945976714140bd2837268d0537cd6bd6c430501f srcfiles size=7 RELOC/source/latex/engrec/Makefile RELOC/source/latex/engrec/engrec.dtx RELOC/source/latex/engrec/engrec.ins +runfiles size=2 + RELOC/tex/latex/engrec/engrec.sty +catalogue-also greekctr catalogue-ctan /macros/latex/contrib/engrec -catalogue-date 2012-01-23 15:27:59 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics list list-enum greek catalogue-version 1.1 name engtlc category Package revision 28571 -shortdesc Support for users in Telecommunications Engineering. +shortdesc Support for users in Telecommunications Engineering relocated 1 longdesc The package provides a wide range of abbreviations for terms longdesc used in Telecommunications Engineering. -runfiles size=4 - RELOC/tex/latex/engtlc/engtlc.sty +containersize 3740 +containerchecksum c1ad2ed5337168c70bcfddd35c72b83b19a1596bc7d9c71298eb82ad8637c984253c79216606060753d1cc5ad4f961095eed8be2381b786b12202f5b0bc748f1 +doccontainersize 599048 +doccontainerchecksum 4c6cbcf337eca115a856eda24924588208ed9e7491936640c8875d49d649d6012279e4eadfa7cdb6544e08fa283c341754d896c921402a2b1180764e8a8ff233 docfiles size=210 - RELOC/doc/latex/engtlc/README - RELOC/doc/latex/engtlc/engtlc.pdf + RELOC/doc/latex/engtlc/README details="Readme" + RELOC/doc/latex/engtlc/engtlc.pdf details="Package documentation (English)" language="en" RELOC/doc/latex/engtlc/engtlc.tex - RELOC/doc/latex/engtlc/itengtlc.pdf + RELOC/doc/latex/engtlc/itengtlc.pdf details="Package documentation (Italian)" language="it" RELOC/doc/latex/engtlc/itengtlc.tex +runfiles size=4 + RELOC/tex/latex/engtlc/engtlc.sty catalogue-ctan /macros/latex/contrib/engtlc -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics engineering catalogue-version 3.2 name enigma category Package revision 29802 -shortdesc Encrypt documents with a three rotor Enigma. +shortdesc Encrypt documents with a three rotor Enigma relocated 1 longdesc The package provides historical encryption (Enigma cipher) for longdesc LuaTeX-based formats. -runfiles size=19 - RELOC/scripts/context/lua/third/enigma/mtx-t-enigma.lua/mtx-t-enigma.lua - RELOC/tex/context/third/enigma/t-enigma.mkv/t-enigma.mkvi - RELOC/tex/generic/enigma/enigma.lua - RELOC/tex/latex/enigma/enigma.sty - RELOC/tex/plain/enigma/enigma.tex +containersize 18320 +containerchecksum 70cf80101d3fe9a75e750f5b3df4db79f30f5ef76ed65f4bfb40f36e5c8c5f0d22468396fe3a531508dd484ed5929cd14d4e22734a92814a4eae9ae2ec3e2b07 +doccontainersize 266504 +doccontainerchecksum b0509d252a2dd7b61339ed084dcb8dd4c3ec0e63aa6fcb7fd81302b82bbd3ddb0b68d0460e5970798a12b2b66e1f560b80c7bf36187553abf6531e0916ddb71a docfiles size=75 RELOC/doc/context/third/enigma/enigma/COPYING - RELOC/doc/context/third/enigma/enigma/README - RELOC/doc/context/third/enigma/enigma/enigma-doc.pdf + RELOC/doc/context/third/enigma/enigma/README details="Readme" + RELOC/doc/context/third/enigma/enigma/enigma-doc.pdf details="Package documentation" RELOC/doc/context/third/enigma/enigma/enigma_manual.tex RELOC/doc/context/third/enigma/enigma/examples/enigma-example-context.tex RELOC/doc/context/third/enigma/enigma/examples/enigma-example-latex.tex RELOC/doc/context/third/enigma/enigma/examples/enigma-example-plain.tex +runfiles size=19 + RELOC/scripts/context/lua/third/enigma/mtx-t-enigma.lua/mtx-t-enigma.lua + RELOC/tex/context/third/enigma/t-enigma.mkv/t-enigma.mkvi + RELOC/tex/generic/enigma/enigma.lua + RELOC/tex/latex/enigma/enigma.sty + RELOC/tex/plain/enigma/enigma.tex catalogue-ctan /macros/luatex/generic/enigma -catalogue-date 2015-01-05 20:19:10 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license bsd +catalogue-topics security luatex catalogue-version 0.1 name enotez category Package -revision 37995 -shortdesc Support for end-notes. +revision 44024 +shortdesc Support for end-notes relocated 1 longdesc The package allows nested endnotes, supports hyperref and longdesc provides means for easy customization of the list of notes. The longdesc package requires the expl3 bundle and packages from the LaTeX 3 longdesc 'package set'. -runfiles size=10 - RELOC/tex/latex/enotez/enotez.sty -docfiles size=122 - RELOC/doc/latex/enotez/README - RELOC/doc/latex/enotez/enotez_en.pdf +containersize 7124 +containerchecksum 32849381564850ca9037d59bc6c696c65c4f5c22c53a3dc2849f897aa6dd1155f728d64018710d90c316073b51447ab5bc3e3420c05745325a66d4ab6e039c5a +doccontainersize 466132 +doccontainerchecksum a680ad8ff39f8a064e10b2e3e4fafb1db1fce9d6ac3a37f3a6bc9dad0405d80d34a7f3fc1f5d2a74ce8ef7f8b8ced565243fb955a137ca25c771c3f428e6070b +docfiles size=121 + RELOC/doc/latex/enotez/README details="Readme" + RELOC/doc/latex/enotez/enotez_en.pdf details="Package documentation" RELOC/doc/latex/enotez/enotez_en.tex RELOC/doc/latex/enotez/enotez_split_example.tex +runfiles size=10 + RELOC/tex/latex/enotez/enotez.sty catalogue-also endnote endnotes +catalogue-contact-bugs https://bitbucket.org/cgnieder/enotez/issues +catalogue-contact-repository https://bitbucket.org/cgnieder/enotez/ catalogue-ctan /macros/latex/contrib/enotez -catalogue-date 2015-07-29 12:34:24 +0200 +catalogue-date 2017-04-24 19:51:11 +0200 catalogue-license lppl1.3 catalogue-topics endnote expl3 -catalogue-version 0.8a +catalogue-version 0.9a name enumitem category Package -revision 24146 -shortdesc Control layout of itemize, enumerate, description. +revision 49937 +shortdesc Control layout of itemize, enumerate, description relocated 1 longdesc This package provides user control over the layout of the three longdesc basic list environments: enumerate, itemize and description. It -longdesc supersedes both enumerate and mdwlist (providing well- -longdesc structured replacements for all their funtionality), and in -longdesc addition provides functions to compute the layout of labels, +longdesc supersedes both enumerate and mdwlist (providing +longdesc well-structured replacements for all their funtionality), and +longdesc in addition provides functions to compute the layout of labels, longdesc and to 'clone' the standard environments, to create new longdesc environments with counters of their own. -runfiles size=11 - RELOC/tex/latex/enumitem/enumitem.sty -docfiles size=95 - RELOC/doc/latex/enumitem/README - RELOC/doc/latex/enumitem/enumitem.pdf +containersize 13696 +containerchecksum 2b35d75a7b7a787b4284a2760016a1fc67295226e13a143963edae85e0a82131ce94780161a02468c39d30e55392c1d7a546f7331e4647ff9017b2dbbdc062ee +doccontainersize 159356 +doccontainerchecksum ff01aa2daf8245b5d1b7d3e05946747843adfdca972ecbe01e4b6abedcef87896b2242bdb7af695902740efc36ab5a6c8681b1a53964dabd28d406a1fdfbc9b4 +docfiles size=52 + RELOC/doc/latex/enumitem/README.md details="Readme" + RELOC/doc/latex/enumitem/enumitem.pdf details="Package documentation" RELOC/doc/latex/enumitem/enumitem.tex +runfiles size=13 + RELOC/tex/latex/enumitem/enumitem.sty +catalogue-contact-home http://www.texnia.com/enumitem.html +catalogue-contact-repository https://github.com/jbezos/enumitem catalogue-ctan /macros/latex/contrib/enumitem -catalogue-date 2011-11-22 17:17:59 +0100 -catalogue-license lppl -catalogue-version 3.5.2 +catalogue-date 2019-02-04 19:02:13 +0100 +catalogue-license mit +catalogue-topics list +catalogue-version 3.8 name enumitem-zref category Package revision 21472 -shortdesc Extended references to items for enumitem package. +shortdesc Extended references to items for enumitem package relocated 1 longdesc The package is a companion for the enumitem package; it makes longdesc it possible to reference any item in lists formatted by @@ -57031,39 +96534,51 @@ longdesc anchors are added for each item to enable hyperlinks within the longdesc document or even to external documents. Three schemes are longdesc provided to make reference names (including the standard \label longdesc command). -runfiles size=7 - RELOC/tex/latex/enumitem-zref/enumitem-zref.sty +containersize 7148 +containerchecksum 5cd16cd19d63d4825dd1f726ad7617bc892a0d80e41f559234b3f82950f589f044a9816005a089f6837805ab08f07b507e47c5d2d389728adaa5350a76d1c1ea +doccontainersize 684148 +doccontainerchecksum af4404c0f76f6f693d1fc0a82e0673c461a1acd6a0d7e9cbac10719790e54199deed1b87fae59db4826c2d1874ce59c7c2a1e5ae33286369a4f7e495223fe2e3 docfiles size=242 - RELOC/doc/latex/enumitem-zref/README + RELOC/doc/latex/enumitem-zref/README details="Readme" RELOC/doc/latex/enumitem-zref/enumitem-zexample.tex - RELOC/doc/latex/enumitem-zref/enumitem-zref.pdf + RELOC/doc/latex/enumitem-zref/enumitem-zref.pdf details="Package documentation" +srccontainersize 24884 +srccontainerchecksum 7f5642d0d3f3779b0d66832f509265a17e66c6e3ab4a74e7fdeb0bf4af9c66257eb78a9bb3a1a7dc1747a07ace12607031f861a14664addcc9d707d3f8c5d5ce srcfiles size=26 RELOC/source/latex/enumitem-zref/enumitem-zref.drv RELOC/source/latex/enumitem-zref/enumitem-zref.dtx RELOC/source/latex/enumitem-zref/enumitem-zref.ins +runfiles size=7 + RELOC/tex/latex/enumitem-zref/enumitem-zref.sty catalogue-ctan /macros/latex/contrib/enumitem-zref -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics label-ref list catalogue-version 1.8 name envbig category Package revision 15878 -shortdesc Printing addresses on envelopes. +shortdesc Printing addresses on envelopes relocated 1 longdesc A simple package, that prints both 'from' and 'to' addresses. -runfiles size=1 - RELOC/tex/latex/envbig/envbig.sty +containersize 1368 +containerchecksum e39ce40decbb52360cfe465d8a5147f9eb5bfae8dd42b86a868a46f1d3c2544d14035d6c307e116c0d08e6ecb62ba5943de803ee9d40a0a8cdf94a88aec8f808 +doccontainersize 404 +doccontainerchecksum cd8c32d4694252449e78736be1697f9a8da01079a8aeafb774d92ded858de9ee7ae163b3758710df466dd0f75fb8b325e86e575457b66c8107f3c580fe0fc737 docfiles size=1 RELOC/doc/latex/envbig/README +runfiles size=1 + RELOC/tex/latex/envbig/envbig.sty catalogue-ctan /macros/latex/contrib/envbig -catalogue-date 2012-06-14 17:41:33 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics letter name environ category Package revision 33821 -shortdesc A new interface for environments in LaTeX. +shortdesc A new interface for environments in LaTeX relocated 1 longdesc The package provides the \collect@body command (as in amsmath), longdesc as well as a \long version \Collect@Body, for collecting the @@ -57072,50 +96587,66 @@ longdesc a new author interface to creating new environments. For longdesc example: \NewEnviron{test} wraps the entire environment body in longdesc square brackets, doing the right thing in ignoring leading and longdesc trailing spaces. -runfiles size=2 - RELOC/tex/latex/environ/environ.sty +containersize 1896 +containerchecksum 4e5bb20e2a69875006e8d9ebc3a8744dcfff3240cc28ea44f7acfa3775914dc9ee108a89368b6a510eb0a7aed19d2d13b001f0270ef9ad011b881c3cbc6aab9f +doccontainersize 156300 +doccontainerchecksum 443362ac9bd70d88bfa92c26e66871ebfc9ec1bdc226ec49b8a41c7bb76f3afa8a424d7ae2e16a7d06f77f4da4208c10f8dad014d918ed7ed239d645781b8815 docfiles size=40 - RELOC/doc/latex/environ/README - RELOC/doc/latex/environ/environ.pdf + RELOC/doc/latex/environ/README details="Readme" + RELOC/doc/latex/environ/environ.pdf details="Package documentation" +srccontainersize 6416 +srccontainerchecksum 5f539dfec035e337aa659aa29815b9293e714efe27d55286a96afc1d52082577eb42bcf02cf19388a2ec92bc880bccc73935a7f5a55ad7f6ed5bfb2862476aaf srcfiles size=6 RELOC/source/latex/environ/environ.dtx RELOC/source/latex/environ/environ.ins +runfiles size=2 + RELOC/tex/latex/environ/environ.sty catalogue-ctan /macros/latex/contrib/environ -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics macro-supp catalogue-version 0.3 name envlab category Package revision 15878 -shortdesc Addresses on envelopes or mailing labels. +shortdesc Addresses on envelopes or mailing labels relocated 1 longdesc A LaTeX package for producing mailing envelopes and labels, longdesc including barcodes and address formatting according to the US longdesc Postal Service rules. Redefines the standard \makelabels longdesc command of the LaTeX letter documentclass. -runfiles size=7 - RELOC/tex/latex/envlab/envlab.cfg - RELOC/tex/latex/envlab/envlab.sty +containersize 5524 +containerchecksum ba20028efa3c286132133d8c292fbc02d77881e64923ca98cece98fbe1e60acf4033b8308a3f9f31f144de071938698a75add803436e1205f7baa820a308a4f1 +doccontainersize 341332 +doccontainerchecksum 4dedc851e00f82ff3bb912e99bf112f4e464b129b89ed75ac41cab9e9ec8c54a32ace3901a3bdc11c90597cfc0481fc7cfc89b4b95bc9aa0c8850a1e8ec88cc9 docfiles size=109 - RELOC/doc/latex/envlab/elguide.pdf + RELOC/doc/latex/envlab/elguide.pdf details="User guide" RELOC/doc/latex/envlab/elguide.tex - RELOC/doc/latex/envlab/envlab.pdf + RELOC/doc/latex/envlab/envlab.pdf details="Documentation source" RELOC/doc/latex/envlab/readme.v12 +srccontainersize 14628 +srccontainerchecksum 9181b7083e3b57329effd0c9ef462a626f8de6db5eb6dbf6800237348a010b74eaeaf11ffa2b491ddf324f0d9bb2c792b9fdda238b887df057b82dfa4fbf04cf srcfiles size=19 RELOC/source/latex/envlab/elold.ins RELOC/source/latex/envlab/envlab.drv RELOC/source/latex/envlab/envlab.dtx RELOC/source/latex/envlab/envlab.ins +runfiles size=7 + RELOC/tex/latex/envlab/envlab.cfg + RELOC/tex/latex/envlab/envlab.sty +catalogue-also akletter dinbrief formlett +catalogue-contact-home http://users.lk.net/~borisv/latex.html catalogue-ctan /macros/latex/contrib/envlab -catalogue-date 2014-09-25 21:17:33 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl +catalogue-topics letter barcode class catalogue-version 1.2 name epigrafica category Package revision 17210 -shortdesc A Greek and Latin font. +shortdesc A Greek and Latin font relocated 1 longdesc Epigrafica is forked from the development of the MgOpen font longdesc Cosmetica, which is a similar design to Optima and includes @@ -57123,6 +96654,15 @@ longdesc Greek. Development has been supported by the Laboratory of longdesc Digital Typography and Mathematical Software, of the Department longdesc of Mathematics of the University of the Aegean, Greece. execute addMap epigrafica.map +containersize 343668 +containerchecksum 82e5dd9f781b6c3ad0bef743b117d9658ae9e0162fec524fbb59f35f13008d3ce9b37daef8d6b977a5ec4834a1ecdc06346627857445c5f19c89f4b202706beb +doccontainersize 266312 +doccontainerchecksum c90061813a408ea74da7c0a9a53c1dc0f4ef65a9ec1d96e92002127ef401abb5211b7f029630fa445725497018a6e5ed3415e31c40001674405b13a4b4ebf6de +docfiles size=72 + RELOC/doc/fonts/epigrafica/README + RELOC/doc/fonts/epigrafica/doc.zip + RELOC/doc/fonts/epigrafica/epigrafica.pdf details="Package documentation" + RELOC/doc/fonts/epigrafica/epigrafica.tex runfiles size=161 RELOC/fonts/afm/public/epigrafica/Epigrafica-Entona.afm RELOC/fonts/afm/public/epigrafica/Epigrafica-EntonaReonta.afm @@ -57181,78 +96721,92 @@ runfiles size=161 RELOC/tex/latex/epigrafica/epigrafica.sty RELOC/tex/latex/epigrafica/lgrepigrafica.fd RELOC/tex/latex/epigrafica/ot1epigrafica.fd -docfiles size=72 - RELOC/doc/fonts/epigrafica/README - RELOC/doc/fonts/epigrafica/doc.zip - RELOC/doc/fonts/epigrafica/epigrafica.pdf - RELOC/doc/fonts/epigrafica/epigrafica.tex +catalogue-contact-home http://myria.math.aegean.gr/labs/dt/ catalogue-ctan /fonts/greek/epigrafica -catalogue-date 2014-04-26 10:32:59 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license gpl +catalogue-topics font font-type1 font-greek font-sans catalogue-version 1.01 name epigram category Package revision 20513 -shortdesc Display short quotations. +shortdesc Display short quotations relocated 1 longdesc The package determines (on the basis of the width of the text longdesc of the epigram, laid out on a single line) whether to produce a longdesc line or a displayed paragraph. +containersize 852 +containerchecksum 8952dbb6f7c573028b1f9621cd9c947a264847e59e1ead9547d386d71c2c15ab5f9c26088568b023030645b02191c9b72d827a80706ca1570785876c6acac6f0 runfiles size=1 RELOC/tex/generic/epigram/epigram.tex catalogue-ctan /macros/generic/misc/epigram.tex -catalogue-date 2012-07-10 21:25:56 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics epigram name epigraph category Package revision 15878 -shortdesc A package for typesetting epigraphs. +shortdesc A package for typesetting epigraphs relocated 1 longdesc Epigraphs are the pithy quotations often found at the start (or longdesc end) of a chapter. Both single epigraphs and lists of epigraphs longdesc are catered for. Various aspects are easily configurable. -runfiles size=2 - RELOC/tex/latex/epigraph/epigraph.sty +containersize 1956 +containerchecksum a6d4ffda943916b41743ad9c924351279e469c4fa2fa419e6e54d566d68faf6f381db54c9c5ffc2627ec2d7c699efbab47794682d8eb6633ec5a81a9029a9fda +doccontainersize 161244 +doccontainerchecksum bc9f14e7f1a6897720c6ba2f2faa5e35f739a2d581f3f865ab4b46696656ad996637ffc436bc20b91eb0f09632ed89dd79c42c11905d3ad419a580a5f87fca68 docfiles size=46 - RELOC/doc/latex/epigraph/README - RELOC/doc/latex/epigraph/epigraph.pdf + RELOC/doc/latex/epigraph/README details="Readme" + RELOC/doc/latex/epigraph/epigraph.pdf details="Package documentation" +srccontainersize 10456 +srccontainerchecksum 1736ff1760772cbe5c806a489b3bfd578300405362a4759e0701915cc2ef8e4ceba58f07d53419d0136db549323b57d0bcda7aa35d2ecaa021e1768d6a8024ee srcfiles size=9 RELOC/source/latex/epigraph/epigraph.dtx RELOC/source/latex/epigraph/epigraph.ins +runfiles size=2 + RELOC/tex/latex/epigraph/epigraph.sty catalogue-ctan /macros/latex/contrib/epigraph -catalogue-date 2012-07-10 21:25:56 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics epigram catalogue-version 1.5c name epiolmec category Package revision 15878 -shortdesc Typesetting the Epi-Olmec Language. +shortdesc Typesetting the Epi-Olmec Language relocated 1 -longdesc The package contains all the necessary files to typeset Epi- -longdesc Olmec "documents", in a script used in Southern Middle America -longdesc until about 500 AD. +longdesc The package contains all the necessary files to typeset +longdesc Epi-Olmec "documents", in a script used in Southern Middle +longdesc America until about 500 AD. execute addMap epiolmec.map +containersize 108800 +containerchecksum 5cbe40240b14ed494500c3831a02659be437ad9710708929a69670d00b788ffc99d4d35e66fba04f170c9844faf2432c116d75e6b01988736ab483e7d0255a8c +doccontainersize 122428 +doccontainerchecksum d2c54da2821e850f17ea0a21d0bc67385e2d986948503fbc23ce6df5229708f0700cdd30a94d09cb310cbd911c183c40935e944341b6ee7ec56cdd9c2602011e +docfiles size=32 + RELOC/doc/latex/epiolmec/GlyphAccessCommands.pdf details="Package documentation" +srccontainersize 6548 +srccontainerchecksum a52ef99c57524444151175f8e345cc59ae99c962e31420363c01e3121e1b4ecfbaeed28a01c3185d9d57beae90aaa8fe55dec15fd0790088f72fc4ee8860ea12 +srcfiles size=8 + RELOC/source/latex/epiolmec/epiolmec.dtx + RELOC/source/latex/epiolmec/epiolmec.ins runfiles size=34 RELOC/fonts/map/dvips/epiolmec/epiolmec.map RELOC/fonts/tfm/public/epiolmec/EpiOlmec.tfm RELOC/fonts/type1/public/epiolmec/Epi-Olmec.pfb RELOC/tex/latex/epiolmec/epiolmec.sty -docfiles size=32 - RELOC/doc/latex/epiolmec/GlyphAccessCommands.pdf -srcfiles size=8 - RELOC/source/latex/epiolmec/epiolmec.dtx - RELOC/source/latex/epiolmec/epiolmec.ins catalogue-ctan /language/epiolmec -catalogue-date 2014-04-26 19:51:19 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-type1 font-archaic name eplain category Package -revision 36217 -shortdesc Extended plain TeX macros. +revision 48634 +shortdesc Extended plain TeX macros longdesc An extended version of the plain TeX format, adding support for longdesc bibliographies, tables of contents, enumerated lists, verbatim longdesc input of files, numbered equations, tables, two-column output, @@ -57262,26 +96816,31 @@ longdesc notably graphics, graphicx (an extended of version of longdesc graphics), color, autopict (a package instance of the LaTeX longdesc picture code), psfrag, and url. depend pdftex +depend babel +depend cm +depend dehyph +depend hyphen-base +depend knuth-lib +depend latex-fonts +depend plain depend eplain.ARCH -execute AddFormat name=eplain engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx *eplain.ini" -runfiles size=52 - texmf-dist/tex/eplain/arrow.tex - texmf-dist/tex/eplain/btxmac.tex - texmf-dist/tex/eplain/eplain.aux - texmf-dist/tex/eplain/eplain.ini - texmf-dist/tex/eplain/eplain.tex -docfiles size=522 +execute AddFormat name=eplain engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx *eplain.ini" fmttriggers=babel,cm,dehyph,hyphen-base,knuth-lib,latex-fonts,plain +containersize 42084 +containerchecksum 0eefdc4aebe99e2296d27e4c81a5112fa3b896b8352ef225e94bae464bb72517c47f07cfe1a9beccfdb7c1200d8547b9157bda729881cea07de9c9897fdd3224 +doccontainersize 993284 +doccontainerchecksum d906efdebf758ea2176317727e2fc896c8ddf0630474c3f808228d17ce0d335fec3db0036539b4051d8ce4149ff6ab3a295ae8ff8963638b950352872a30e39b +docfiles size=528 texmf-dist/doc/eplain/AUTHORS texmf-dist/doc/eplain/COPYING texmf-dist/doc/eplain/ChangeLog texmf-dist/doc/eplain/INSTALL texmf-dist/doc/eplain/NEWS - texmf-dist/doc/eplain/README + texmf-dist/doc/eplain/README details="Package Readme" texmf-dist/doc/eplain/demo/Makefile texmf-dist/doc/eplain/demo/lscommnt.tex texmf-dist/doc/eplain/demo/xhyper.tex - texmf-dist/doc/eplain/eplain.html - texmf-dist/doc/eplain/eplain.pdf + texmf-dist/doc/eplain/eplain.html details="Package documentation (HTML)" + texmf-dist/doc/eplain/eplain.pdf details="Package documentation (PDF)" texmf-dist/doc/eplain/lscommnt.jpg texmf-dist/doc/eplain/util/idxuniq texmf-dist/doc/eplain/util/trimsee @@ -57289,91 +96848,226 @@ docfiles size=522 texmf-dist/doc/info/eplain.info texmf-dist/doc/man/man1/eplain.1 texmf-dist/doc/man/man1/eplain.man1.pdf -srcfiles size=133 - texmf-dist/source/eplain/eplain-source-3.7.zip +srccontainersize 381044 +srccontainerchecksum e11e49a737afb64c9e112f91f51df12b96c1a810d02fd3d8f04580614b2993ba81c3af83f84b7957135a423ea33acc76f6670f6d87fb78af24f05aa50660437c +srcfiles size=132 + texmf-dist/source/eplain/eplain-source-3.8.zip texmf-dist/source/eplain/xeplain.tex +runfiles size=50 + texmf-dist/tex/eplain/arrow.tex + texmf-dist/tex/eplain/btxmac.tex + texmf-dist/tex/eplain/eplain.aux + texmf-dist/tex/eplain/eplain.ini + texmf-dist/tex/eplain/eplain.tex +catalogue-contact-home http://tug.org/eplain/ catalogue-ctan /macros/eplain -catalogue-date 2015-03-29 07:34:44 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license gpl2 -catalogue-version 3.7 +catalogue-topics plain-ext format +catalogue-version 3.8 + +name eplain.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of eplain +containersize 324 +containerchecksum 9b8480cf4a991827e61c0cd5c310b57a859e61a154bbcf5f6a8ee4548e30b3f0b902e7417e02c354b15e44dc7fd3f4b537578fdea2fea89353af5f86e3430084 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/eplain + +name eplain.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of eplain +containersize 324 +containerchecksum 7cc9497affcbd8dea82dba307cc01d0edf8bad090937885f1a8ac59c12155f2693cb7f4261d50eb737b102ff40f1bcc11fe0cc4a95a9a3c6be72ff8c4c66e4c3 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/eplain + +name eplain.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of eplain +containersize 320 +containerchecksum b0f84f4a41dd2839e2f5c70b9fb99790dae754ddb8736e4bb11713843015ced70d97dfef695efc98b3cdb7087ed355db2c6c80bc0339965351fb6a6aa09901d8 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/eplain + +name eplain.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of eplain +containersize 320 +containerchecksum d659af83aac6d67aa446cb193ebac043fec1bf2a9942b9fb6f4f76e3181ab8c4c7ede1456e82e8ad4e3af2a95c355d80dbcd1edf0ec2e9ef856a847da90717a1 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/eplain + +name eplain.i386-cygwin +category Package +revision 13930 +shortdesc i386-cygwin files of eplain +containersize 324 +containerchecksum 4b36cf765f211a9a68cb9f0b312575fa284638f3b618060dc6752cb2e1a90579731c9dbd88877e8c13fadfc344a14dbb9eee499b9ad07ae1120fa72c4c67d871 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/eplain + +name eplain.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of eplain +containersize 324 +containerchecksum 3365dc5e79f5e10cf9b30f9879d5fc6d4b8639a7cb0179b914cd738c7d1ef7e98d043e3f8ef340f11add15e719ec98a49e2d80dbb39af4e3472208c5b8376b8b +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/eplain name eplain.i386-linux category Package revision 3006 shortdesc i386-linux files of eplain +containersize 320 +containerchecksum 6816a222ab763fff43660a55810dbfdde4493f72f2b5b00b8bf0a8f2f95cf99fcf4aa17e73b38b22cbb44ca5312a45393a0b6d041af6551a0106ca699b69708f binfiles arch=i386-linux size=1 bin/i386-linux/eplain +name eplain.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of eplain +containersize 320 +containerchecksum feb9153a86eb09c5f365eb622799e51b0da3a3c5a682293c27b010286cb33c3e574a6caf76405509ad3855dbf34ae3a5c2962fe4a09ff257cf731d1aad964f61 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/eplain + +name eplain.i386-solaris +category Package +revision 8102 +shortdesc i386-solaris files of eplain +containersize 320 +containerchecksum f5d1ce7504a468ca445def36b12fcfabaa55d8d40ca0d7c55ae92c1d9cf640a11e70e52a179e7eb49a69f269b6eb4cb4f77c3c9bd630a50eb1cc8dccca16f588 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/eplain + +name eplain.win32 +category Package +revision 36810 +shortdesc win32 files of eplain +containersize 872 +containerchecksum 15ab94f809a3de637daf765702e67049f240efd2fad0d7bfbe64f14d10bbafa83b725b9efba8d752dcf75006a27a1a05150f9da5be8e9702ebd8837491c5ea28 +binfiles arch=win32 size=1 + bin/win32/eplain.exe + +name eplain.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of eplain +containersize 328 +containerchecksum 864c3fe09b2c31a6e354548e39511abe6c298bbaf79bd1665841e18e303c1a34a78e56c95811a793e20c15c6a99c2abd827709fa338e4a78777cbf2f3ef02c29 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/eplain + +name eplain.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of eplain +containersize 324 +containerchecksum 5d706e5012134fde8332a5efc13035be75ddb53453accd46127afd5b4d9004e9219f70a02eca9cf5db28e602c6a9e5a387881c07175670a349898ed9c2cc83ff +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/eplain + +name eplain.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of eplain +containersize 332 +containerchecksum db8760b37b129f4848f2542be147c0dd8fb8a8cd61cfe80f7f70e4da55f091185014a206a782216b74bc9224a66043c3fc7fa421096342f65cf799d9e5ec64f5 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/eplain + +name eplain.x86_64-linux +category Package +revision 3185 +shortdesc x86_64-linux files of eplain +containersize 320 +containerchecksum e781326badf6f76486eb2b2a76b4439bcd6a716030d00b8af0d3b310572e9909534121b6b1f7527ba367013d16ba74d7a0326f5e2f371fd69191be305edd39dd +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/eplain + +name eplain.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of eplain +containersize 324 +containerchecksum 5a315e9fb3aad754b168bf0f3b4359915dced73d146b0233f40de5d7d31e0c8fb60b798aad1797401c280c834818211fc4638ffff9b5546843d329972d9c0c1b +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/eplain + +name eplain.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of eplain +containersize 324 +containerchecksum 7a1d9987b15056aab92566dc7f64ab6e57bc03aafaf0aaa1b07b65f5a27b8d265768fb22af64b287d19a50fc9cc382df2c1df144d5ea352334a148bbf692484e +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/eplain + name epsdice category Package revision 15878 -shortdesc A scalable dice "font". +shortdesc A scalable dice "font" relocated 1 longdesc The epsdice package defines a single command \epsdice that longdesc takes a numeric argument (in the range 1-6), and selects a face longdesc image from a file that contains each of the 6 possible die longdesc faces. The graphic file is provided in both Encapsulated longdesc PostScript and PDF formats. -runfiles size=5 - RELOC/tex/latex/epsdice/dice.eps - RELOC/tex/latex/epsdice/dice.pdf - RELOC/tex/latex/epsdice/epsdice.cfg - RELOC/tex/latex/epsdice/epsdice.sty +containersize 5360 +containerchecksum acc0ceb408f320570a93a52132d3e37d43d4be65a31a038187edd6de9899427f08d7859dbc383b7b27e9d9b5a635ae94ea97f0be4ab8386b5991089a1435c350 +doccontainersize 66176 +doccontainerchecksum 6d9db45832d3e26e79a518f06d00db992ddfb2999099d32b415891e8d05b51803dc4f03d097cdcb04e5ccd6073606d4c7a87a07b9dd20d8d257456f927ee7427 docfiles size=22 - RELOC/doc/latex/epsdice/README + RELOC/doc/latex/epsdice/README details="Readme" RELOC/doc/latex/epsdice/dice.eps - RELOC/doc/latex/epsdice/dice.pdf - RELOC/doc/latex/epsdice/epsdice.pdf + RELOC/doc/latex/epsdice/dice.pdf details="Sample dice" + RELOC/doc/latex/epsdice/epsdice.pdf details="Package Documentation" +srccontainersize 6704 +srccontainerchecksum 9bc8b64a815e9aa14b6ef09e9ea6328e338e9539ebefbe3df805d3fe05ba3aff61750fd98033be72ed7a7cb4c3d5aa6152b557c9a1dfb0272dec856968171d29 srcfiles size=6 RELOC/source/latex/epsdice/epsdice.dtx RELOC/source/latex/epsdice/epsdice.ins +runfiles size=5 + RELOC/tex/latex/epsdice/dice.eps + RELOC/tex/latex/epsdice/dice.pdf + RELOC/tex/latex/epsdice/epsdice.cfg + RELOC/tex/latex/epsdice/epsdice.sty +catalogue-also dice catalogue-ctan /macros/latex/contrib/epsdice -catalogue-date 2012-04-27 11:57:13 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics graphics-use catalogue-version 2.1 -name epsf-dvipdfmx -category Package -revision 35575 -shortdesc Plain TeX file for using epsf.tex with (x)dvipdfmx. -relocated 1 -longdesc epsf-dvipdfmx.tex is a plain TeX file to be \input after -longdesc epsf.tex when using plain TeX with dvipdfmx. As in: \input epsf -longdesc \input epsf-dvipdfmx It is needed when an .eps file has -longdesc anything except the origin (0,0) for the lower-left of its -longdesc bounding box. -runfiles size=1 - RELOC/tex/plain/epsf-dvipdfmx/epsf-dvipdfmx.tex -docfiles size=3 - RELOC/doc/plain/epsf-dvipdfmx/README - RELOC/doc/plain/epsf-dvipdfmx/testepdpx.eps - RELOC/doc/plain/epsf-dvipdfmx/testepdpx.tex -catalogue-ctan /macros/plain/contrib/epsf-dvipdfmx -catalogue-date 2014-11-22 19:14:17 +0100 -catalogue-license pd -catalogue-version 2014 - name epsf category Package revision 21461 -shortdesc Simple macros for EPS inclusion. +shortdesc Simple macros for EPS inclusion relocated 1 longdesc The original (and now obsolescent) graphics inclusion macros longdesc for use with dvips, still widely used by Plain TeX users (in longdesc particular). For LaTeX users, the package is nowadays (rather longdesc strongly) deprecated in favour of the more sophisticated -longdesc standard LaTeX graphics bundle of packages. (The graphics -longdesc bundle is also available to Plain TeX users, via its Plain TeX -longdesc version.) -runfiles size=14 - RELOC/tex/generic/epsf/epsf.sty - RELOC/tex/generic/epsf/epsf.tex +longdesc standard LaTeX latex-graphics bundle of packages. (The +longdesc latex-graphics bundle is also available to Plain TeX users, via +longdesc its Plain TeX version.) +containersize 7544 +containerchecksum 4c3698edc9ef386b08a2ed7c360d926be6ca5a8284e3e53e0dcf5f222eeb27d4d33b4547b42dd2e5544ab381397aafcd58899376d26a4d9d47beee00ad1e9bda +doccontainersize 274016 +doccontainerchecksum 52be704eec6159e70d99ae2a4823c1da0790f41da9e6de130c84cc77e0d8d29aae145ccb9b416ddc5c9641100821f5099b5c597a350438652381be903e7681bb docfiles size=98 RELOC/doc/generic/epsf/LICENSE RELOC/doc/generic/epsf/Makefile - RELOC/doc/generic/epsf/README + RELOC/doc/generic/epsf/README details="Readme" RELOC/doc/generic/epsf/bboxgrid.ps - RELOC/doc/generic/epsf/epsf-doc.pdf + RELOC/doc/generic/epsf/epsf-doc.pdf details="Package documentation" RELOC/doc/generic/epsf/epsf-doc.tex RELOC/doc/generic/epsf/fndbadps RELOC/doc/generic/epsf/okay/teps.eps @@ -57386,42 +97080,82 @@ docfiles size=98 RELOC/doc/generic/epsf/tepsf1.tex RELOC/doc/generic/epsf/tepsf2.ltx RELOC/doc/generic/epsf/tepsf3.tex +runfiles size=14 + RELOC/tex/generic/epsf/epsf.sty + RELOC/tex/generic/epsf/epsf.tex +catalogue-also epsfx catalogue-ctan /macros/generic/epsf -catalogue-date 2013-09-10 14:43:07 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics graphics-incl catalogue-version 2.7.4 +name epsf-dvipdfmx +category Package +revision 35575 +shortdesc Plain TeX file for using epsf.tex with (x)dvipdfmx +relocated 1 +longdesc epsf-dvipdfmx.tex is a plain TeX file to be \input after +longdesc epsf.tex when using plain TeX with dvipdfmx. As in: \input epsf +longdesc \input epsf-dvipdfmx It is needed when an .eps file has +longdesc anything except the origin (0,0) for the lower-left of its +longdesc bounding box. +containersize 1036 +containerchecksum 0f210b940d55bc2e85b3c86318be82fde1bf2b6fa2e5d498101036a01cec3b09cd8081079476f128f21881b14a13c7fa248c758a7a33ab0770f261505260992d +doccontainersize 2052 +doccontainerchecksum e7b770f6880bfa8001851cfdcf2f2d03117fba3a2d38514bd7e23683aae08d57774bd1bfa4d0f75df443d9111a5472ba96bf8129e45b618b39f1798b27fb533c +docfiles size=3 + RELOC/doc/plain/epsf-dvipdfmx/README details="Readme" + RELOC/doc/plain/epsf-dvipdfmx/testepdpx.eps + RELOC/doc/plain/epsf-dvipdfmx/testepdpx.tex +runfiles size=1 + RELOC/tex/plain/epsf-dvipdfmx/epsf-dvipdfmx.tex +catalogue-ctan /macros/plain/contrib/epsf-dvipdfmx +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics graphics-epspdf +catalogue-version 2014 + name epsincl category Package revision 29349 -shortdesc Include EPS in MetaPost figures. +shortdesc Include EPS in MetaPost figures relocated 1 longdesc The package facilitates including EPS files in MetaPost longdesc figures; it makes use of (G)AWK. -runfiles size=1 - RELOC/metapost/epsincl/epsincl.mp +containersize 1932 +containerchecksum f9251142a990038acde2f1e7b61b94eba39b2c4f5c43a1151af29a17d5f0efb0cddc0af1ac8d056d8617b5ab4eef29bba14a4731ef933480a9bdb95fcc15d023 +doccontainersize 4208 +doccontainerchecksum 2cac5738a39157563707879656b473e7ac7edac2f304c209c8164c7878b10f0d5dcba1d38232ed6ba8e20fe21b3a0cf78dfd51733b993ccd5fcb2c0a05ea31c6 docfiles size=9 RELOC/doc/metapost/epsincl/0info.txt - RELOC/doc/metapost/epsincl/README + RELOC/doc/metapost/epsincl/README details="Readme" RELOC/doc/metapost/epsincl/epsincl.awk RELOC/doc/metapost/epsincl/epsincl.bat RELOC/doc/metapost/epsincl/testinc0.eps RELOC/doc/metapost/epsincl/testincl.bat RELOC/doc/metapost/epsincl/testincl.mp RELOC/doc/metapost/epsincl/testincl.sh +runfiles size=1 + RELOC/metapost/epsincl/epsincl.mp catalogue-ctan /graphics/metapost/contrib/macros/epsincl -catalogue-date 2012-07-10 22:47:12 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics graphics-prep catalogue-version 0.2 name epslatex-fr category Package revision 19440 catalogue fepslatex -shortdesc French version of "graphics in LaTeX". +shortdesc French version of "graphics in LaTeX" relocated 1 longdesc This is the French translation of epslatex, and describes how longdesc to use imported graphics in LaTeX(2e) documents. +containersize 432 +containerchecksum f3e90ecb487259301c20ab4c4c28702b9cadfa844a49361fee0881a26f827ae602f954e4a3e824e910d2e098097c387aa5311c5f32cb58df5a0a1e2fcd9d2364 +doccontainersize 1036360 +doccontainerchecksum 7965e6094535d22b04193619842bc0bd090c2b47139e65498dcdf428f4ce2ec54e7da5edbdf9015c9d8f2013642d11347373e625a3884c629d9d807af2a9880a docfiles size=824 RELOC/doc/latex/epslatex-fr/Ball.eps RELOC/doc/latex/epslatex-fr/CHAP2.sty @@ -57444,7 +97178,7 @@ docfiles size=824 RELOC/doc/latex/epslatex-fr/divers.sty RELOC/doc/latex/epslatex-fr/ebnf.sty RELOC/doc/latex/epslatex-fr/export.sty - RELOC/doc/latex/epslatex-fr/fepslatex.pdf + RELOC/doc/latex/epslatex-fr/fepslatex.pdf details="The document itself" RELOC/doc/latex/epslatex-fr/fepslatex.tex RELOC/doc/latex/epslatex-fr/fill.sty RELOC/doc/latex/epslatex-fr/fmparhack.sty @@ -57484,274 +97218,696 @@ docfiles size=824 RELOC/doc/latex/epslatex-fr/widecenter.sty RELOC/doc/latex/epslatex-fr/xb.sty catalogue-ctan /info/epslatex/french -catalogue-date 2013-10-03 14:20:59 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl - -name epspdfconversion -category Package -revision 18703 -shortdesc On-the-fly conversion of EPS to PDF. -relocated 1 -longdesc The package calls the epstopdf package to convert EPS graphics -longdesc to PDF, on the fly. It servs as a vehicle for passing -longdesc conversion options (such as grayscale, prepress or pdfversion) -longdesc to the epspdf converter. -runfiles size=3 - RELOC/tex/latex/epspdfconversion/epspdfconversion.sty -docfiles size=119 - RELOC/doc/latex/epspdfconversion/README - RELOC/doc/latex/epspdfconversion/epspdfconversion.pdf - RELOC/doc/latex/epspdfconversion/example/epspdfconversion_docu.tex - RELOC/doc/latex/epspdfconversion/example/image.eps - RELOC/doc/latex/epspdfconversion/example/image2.eps - RELOC/doc/latex/epspdfconversion/example/optionstable.tex -catalogue-ctan /macros/latex/contrib/epspdfconversion -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.61 +catalogue-topics graphics french-doc translation name epspdf category Package -revision 35762 -shortdesc Converter for PostScript, EPS and PDF. +revision 49952 +shortdesc Converter for PostScript, EPS and PDF longdesc Epspdftk.tcl is a GUI ps/eps/pdf converter. Epspdf.tlu, its longdesc command-line backend, can be used by itself. Options include longdesc grayscaling, cropping margins and single-page selection. Some longdesc conversion options are made possible by converting in multiple longdesc steps. depend epspdf.ARCH -runfiles size=34 - texmf-dist/scripts/epspdf/epspdf.help - texmf-dist/scripts/epspdf/epspdf.tlu - texmf-dist/scripts/epspdf/epspdftk.tcl -docfiles size=100 +containersize 31484 +containerchecksum a8d2e4cdf1b3e4439ce8c96b18cc7182bf29f745b8a35942623575951ddf179964536f72ec58a357e7544d861bcf624d7b35ed3a0932d758e011e56633aba078 +doccontainersize 235256 +doccontainerchecksum f2c5ed08890388bc064af0bfe31f540c126b9bab4a5b262a5e44f6cbb4e4511ed43ef0fdd2945b01bfb1ff4aba15aaa7e7fa373f7cf93827fa352226a423d8dd +docfiles size=91 texmf-dist/doc/info/epspdf.info texmf-dist/doc/support/epspdf/COPYING texmf-dist/doc/support/epspdf/Changelog - texmf-dist/doc/support/epspdf/README - texmf-dist/doc/support/epspdf/default.css - texmf-dist/doc/support/epspdf/epspdf.pdf + texmf-dist/doc/support/epspdf/README details="Readme" + texmf-dist/doc/support/epspdf/epspdf.pdf details="User Manual" texmf-dist/doc/support/epspdf/epspdf.texi texmf-dist/doc/support/epspdf/images/cnv_linux.png texmf-dist/doc/support/epspdf/images/config_lnx.png texmf-dist/doc/support/epspdf/images/epspdf.png texmf-dist/doc/support/epspdf/images/logo.pdf - texmf-dist/doc/support/epspdf/images/main_w8.png - texmf-dist/doc/support/epspdf/index.html texmf-dist/doc/support/epspdf/pstexi.tex +runfiles size=32 + texmf-dist/scripts/epspdf/epspdf.help + texmf-dist/scripts/epspdf/epspdf.tlu + texmf-dist/scripts/epspdf/epspdf4tk.cmd + texmf-dist/scripts/epspdf/epspdftk.tcl +catalogue-also epstopdf catalogue-ctan /support/epspdf -catalogue-date 2014-12-07 20:39:16 +0100 -catalogue-license gpl -catalogue-version 0.6.1 +catalogue-date 2019-02-06 12:56:04 +0100 +catalogue-license gpl2 +catalogue-topics graphics-epspdf +catalogue-version 0.6.4 + +name epspdf.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of epspdf +containersize 364 +containerchecksum 5872972c76139e2d8af4e3121e62386ffa81633ec818d0afc72c54017312dae6fdb70cc8cc21f02fbd4e44839a91d4e2baf875362afba5ac067a231f141fa587 +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/epspdf + bin/aarch64-linux/epspdftk + +name epspdf.amd64-freebsd +category Package +revision 29050 +shortdesc amd64-freebsd files of epspdf +containersize 364 +containerchecksum 4886f321efa458266c5b33e3342bbfe871054b942da278a74b526ea0e3de8084b469ed131a76e53932f1f4d4b8ce14fe33e076efb74b6d6f1fbf833935154f3e +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/epspdf + bin/amd64-freebsd/epspdftk + +name epspdf.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of epspdf +containersize 364 +containerchecksum d275ce369d46b663ea75a83eb4201100c0d7f012fdef3d81b3b9e8e4ebaf2a728b817aca2f3bee1ddcfc48f24476c02e8833ce3bdad48049c2f85d9e99f19d47 +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/epspdf + bin/amd64-netbsd/epspdftk + +name epspdf.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of epspdf +containersize 364 +containerchecksum b7f28a50c51ecc38b131a31ea410b01201bc71113c553450e07673436a543c0f21e81bc47ef58a65a1b7744cb5dbbcd1ad393eef752e3153bb63743146b1360c +binfiles arch=armhf-linux size=2 + bin/armhf-linux/epspdf + bin/armhf-linux/epspdftk + +name epspdf.i386-cygwin +category Package +revision 29050 +shortdesc i386-cygwin files of epspdf +containersize 364 +containerchecksum bd512ef15508cbd318ab9d96ac1cad477a4868b59d770a7e25abce489bc2e52c34623cb990a8acbd111071dba7ccc28d0139364efbb00c6446cc2acafb1d8a24 +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/epspdf + bin/i386-cygwin/epspdftk + +name epspdf.i386-freebsd +category Package +revision 29050 +shortdesc i386-freebsd files of epspdf +containersize 364 +containerchecksum 8683d7658b60ed8dd3fb90078959a99df2eb44b647b2c5d7bf6dc9524dbc4dd819d2fb42ed66ec7605b407e257b958cd723e2a5fbc74bd6e227b1f705c4edfb9 +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/epspdf + bin/i386-freebsd/epspdftk name epspdf.i386-linux category Package revision 29050 shortdesc i386-linux files of epspdf +containersize 364 +containerchecksum 84982e95c4b3810cf41f690314a43fad14b8910dc627dd9f1ab1fee55d9b9311382fe9f9092bd43cdf0d1b737d86baf19d963620627fc8dc6aeeb6b6052ee533 binfiles arch=i386-linux size=2 bin/i386-linux/epspdf bin/i386-linux/epspdftk +name epspdf.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of epspdf +containersize 364 +containerchecksum 95c1590981e8d080fa0db3a92222e94704a44634a3aabeb5d8bd2928b55ce0e602698ecf0abdcf84394684074c6e8e117a37e7bfcbd8a8621e00f67401afd7ad +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/epspdf + bin/i386-netbsd/epspdftk + +name epspdf.i386-solaris +category Package +revision 29050 +shortdesc i386-solaris files of epspdf +containersize 364 +containerchecksum eeedd9a33ceb1c519aaad33d9a30914fcc6fd125c92cec6396a4a33f874eadf2bb2523104e55696ad21507f9116aa771841bbf9bd0d667b5bd8123c48386ca8b +binfiles arch=i386-solaris size=2 + bin/i386-solaris/epspdf + bin/i386-solaris/epspdftk + +name epspdf.win32 +category Package +revision 47104 +shortdesc win32 files of epspdf +containersize 5252 +containerchecksum 7789518dfb9beaabaada4318b9a0773f77eef279a15d3078cd2d6fd0733ee543fa3849e2c254d4b109161f0996068a45b3ab15eabd90e6ad65a44b3ac4a3447c +binfiles arch=win32 size=4 + bin/win32/epspdf.exe + bin/win32/epspdftk.exe + +name epspdf.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of epspdf +containersize 364 +containerchecksum dfa5a70b71fdce314faf69401a1e3b143c51006018094f81bb563c980cb16eeda75c7d1d1cc12a2801e2e57d9c2a5794ca69709c0d2557ab55fafdcd51c168ad +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/epspdf + bin/x86_64-cygwin/epspdftk + +name epspdf.x86_64-darwin +category Package +revision 29050 +shortdesc x86_64-darwin files of epspdf +containersize 364 +containerchecksum ff381a1ddaf130e08f782347fe5e2d8713a48bbeaca7decc3b47098d67ab3a79250fe55dc2c343b59a71ed643e9fe25074a2237a62fd4cdad336b2971e2c569d +binfiles arch=x86_64-darwin size=2 + bin/x86_64-darwin/epspdf + bin/x86_64-darwin/epspdftk + +name epspdf.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of epspdf +containersize 372 +containerchecksum 465b11aebedc803d05d15be5d9c9fb9c882f8e85836e5e398c0ed1012e77484b3157d1bc899f9a755745aec3019cb5cc3b98106868a26120964925608c4300b7 +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/epspdf + bin/x86_64-darwinlegacy/epspdftk + +name epspdf.x86_64-linux +category Package +revision 29050 +shortdesc x86_64-linux files of epspdf +containersize 364 +containerchecksum 560f1d59ac8ec0807e6f413a354b2ea7c282cda847e2f942538eabe04db2bc95de5479f09dee870d85193d55354322ed745ea7f341ac5dc6a04dace016055287 +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/epspdf + bin/x86_64-linux/epspdftk + +name epspdf.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of epspdf +containersize 368 +containerchecksum 48eaa67cd98700a86bfafc4c4183df954f30957245736c329127b2515c16b9e8e04c6c450e10617a21b77166465ffd9fe51c89aaec5742f568b34b8cf6b37341 +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/epspdf + bin/x86_64-linuxmusl/epspdftk + +name epspdf.x86_64-solaris +category Package +revision 29050 +shortdesc x86_64-solaris files of epspdf +containersize 364 +containerchecksum c045405821ada2e0ebc60f12e01be40f4836ef1889efd7837d5c5b1283b2ac72af7b39716087fb28d8d3cdeb1ee33a53e8019dd356abe31d7f844b040f162461 +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/epspdf + bin/x86_64-solaris/epspdftk + +name epspdfconversion +category Package +revision 18703 +shortdesc On-the-fly conversion of EPS to PDF +relocated 1 +longdesc The package calls the epstopdf package to convert EPS graphics +longdesc to PDF, on the fly. It servs as a vehicle for passing +longdesc conversion options (such as grayscale, prepress or pdfversion) +longdesc to the epspdf converter. +containersize 3692 +containerchecksum a1f328125f82f33bcc881adacec981f4ce8aefd4cbbe160de66397ed3b1d4c2ed980f5e1c17c63b75973e3c253d76afc2f1227272ab7f0236e47e8e48f0f015c +doccontainersize 417580 +doccontainerchecksum dc09e2ef835a85bbfc7c399b7c7323d64c312b04143e8070fc403fbd484bd893be1e4b532580efea93baffe64625c33004405eb0ed9bf6295646cfc260d72c40 +docfiles size=119 + RELOC/doc/latex/epspdfconversion/README details="Readme" + RELOC/doc/latex/epspdfconversion/epspdfconversion.pdf details="Package documentation" + RELOC/doc/latex/epspdfconversion/example/epspdfconversion_docu.tex + RELOC/doc/latex/epspdfconversion/example/image.eps + RELOC/doc/latex/epspdfconversion/example/image2.eps + RELOC/doc/latex/epspdfconversion/example/optionstable.tex +runfiles size=3 + RELOC/tex/latex/epspdfconversion/epspdfconversion.sty +catalogue-ctan /macros/latex/contrib/epspdfconversion +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-epspdf callback +catalogue-version 0.61 + name epstopdf category Package -revision 36139 -shortdesc Convert EPS to 'encapsulated' PDF using Ghostscript. +revision 48684 +shortdesc Convert EPS to PDF using Ghostscript longdesc Epstopdf is a Perl script that converts an EPS file to an longdesc 'encapsulated' PDF file (a single page file whose media box is longdesc the same as the original EPS's bounding box). The resulting -longdesc file suitable for inclusion by PDFTeX as an image. The script +longdesc file suitable for inclusion by pdfTeX as an image. The script longdesc is adapted to run both on Windows and on Unix-alike systems. longdesc The script makes use of Ghostscript for the actual conversion longdesc to PDF. It assumes Ghostscript version 6.51 or later, and (by longdesc default) suppresses its automatic rotation of pages where most longdesc of the text is not horizontal. LaTeX users may make use of the longdesc epstopdf package, which will run the epstopdf script "on the -longdesc fly", thus giving the illusion that PDFLaTeX is accepting EPS +longdesc fly", thus giving the illusion that pdfLaTeX is accepting EPS longdesc graphic files. depend epstopdf.ARCH -runfiles size=9 - texmf-dist/scripts/epstopdf/epstopdf.pl -docfiles size=10 +containersize 12460 +containerchecksum 6412bb97554b271cf5412dbccd316f3d69d7bcf2f524a5d6d1a75f69cfa11a981fc4ab063b6ea8302c2a0236ff93c59f1ee2f8f2b7f33dc466324080fc5016f4 +doccontainersize 30444 +doccontainerchecksum 7fef59ad3bc72b2e3fc10021216b88b8d5465f42503d9938031c3d40d93fbaf637094fdfc87b19ccc1da4d9a28c9890beccee7c30b915a513a909edbac6e0a25 +docfiles size=20 texmf-dist/doc/man/man1/epstopdf.1 - texmf-dist/doc/man/man1/epstopdf.man1.pdf + texmf-dist/doc/man/man1/epstopdf.man1.pdf details="Manual page" texmf-dist/doc/man/man1/repstopdf.1 texmf-dist/doc/man/man1/repstopdf.man1.pdf - texmf-dist/doc/support/epstopdf/README + texmf-dist/doc/support/epstopdf/README details="Readme" +runfiles size=9 + texmf-dist/scripts/epstopdf/epstopdf.pl +catalogue-also epstopdf-pkg +catalogue-contact-home http://tug.org/epstopdf/ catalogue-ctan /support/epstopdf -catalogue-date 2015-03-29 23:12:12 +0200 +catalogue-date 2018-11-15 17:13:00 +0100 catalogue-license other-free -catalogue-version 2.23 +catalogue-topics graphics-epspdf +catalogue-version 2.28 + +name epstopdf.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of epstopdf +containersize 364 +containerchecksum 5d8e4cc9eaf28dbac98d5c3805e44caff7acc1769b7f3747f105c7772e9d56bbe63c3f83b98ab2dd8688c5b58e5b286ad51168e764b33d964d0fd948b4701161 +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/epstopdf + bin/aarch64-linux/repstopdf + +name epstopdf.amd64-freebsd +category Package +revision 18389 +shortdesc amd64-freebsd files of epstopdf +containersize 364 +containerchecksum a8051ea1d957b9df710ffe4aac7cffa9eef9b97965ddf692971e928e086ec603554b86d160b9b0deb53b6d7d0ef2a97ea6d7e76da566bae83498a2e9e289b007 +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/epstopdf + bin/amd64-freebsd/repstopdf + +name epstopdf.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of epstopdf +containersize 364 +containerchecksum 478609c29841551a30d0d21d01a175098ed498cf6667cd43aa0205b51f5862d60ce4eff59320139de1dbf1e24193543bba83637d63ffcac587a2f83b4124b2eb +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/epstopdf + bin/amd64-netbsd/repstopdf + +name epstopdf.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of epstopdf +containersize 364 +containerchecksum 11298cd6a5b2d944ac0b3d11982579fd89fe3bcec8ba4da0331a042abc8f03fd5065b7917732bcda5857a21a0c3905d3788a74a794237eb8b628d590bb7110f0 +binfiles arch=armhf-linux size=2 + bin/armhf-linux/epstopdf + bin/armhf-linux/repstopdf + +name epstopdf.i386-cygwin +category Package +revision 18363 +shortdesc i386-cygwin files of epstopdf +containersize 360 +containerchecksum fa16a19230ce7b34f5daeb58b1a45e1055daa5d65be237370a9d5284c43c68f57d46efeb72ee3dea4d28a318a45ea2b7e976b6dbb2c8ed98d45939466c4998f7 +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/epstopdf + bin/i386-cygwin/repstopdf + +name epstopdf.i386-freebsd +category Package +revision 18388 +shortdesc i386-freebsd files of epstopdf +containersize 364 +containerchecksum cfe821e7c7d46d33d91102d0a6e37399cbc545485b350155bec3addc4b06795b9d7baa1bb3861de1c482ccb8e67f6cc820d628545690385e171e00453c8bc1b8 +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/epstopdf + bin/i386-freebsd/repstopdf name epstopdf.i386-linux category Package revision 18336 shortdesc i386-linux files of epstopdf +containersize 364 +containerchecksum d2bc20a96252b66eabd9861cdfa05901c0b6c4db7b497f07cbaa59ca09fca4e89004108f049bbc1f2e1fb10d09ea68a28a0d26ac3c9f4a87e97678fe80c52ad3 binfiles arch=i386-linux size=2 bin/i386-linux/epstopdf bin/i386-linux/repstopdf -name epyt -category Package -revision 36611 -shortdesc A simple and clean theme for LaTeX beamer class. -relocated 1 -longdesc Epyt is a simple but nice theme for Beamer, with the following -longdesc features: simple structure: with page numbers at footer, no -longdesc head bar and side bar simple templates: displaying theorems -longdesc with traditional inline style simple colors: using only several -longdesc foreground and background colors -runfiles size=2 - RELOC/tex/latex/epyt/beamerthemeepyt.sty -docfiles size=13 - RELOC/doc/latex/epyt/README - RELOC/doc/latex/epyt/epyt-demo.pdf - RELOC/doc/latex/epyt/epyt-demo.tex -catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/epyt -catalogue-date 2015-03-26 08:13:29 +0100 -catalogue-license lppl1.3 -catalogue-version 0.6 +name epstopdf.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of epstopdf +containersize 364 +containerchecksum 386186d3614a04c27885bc507e363df8dac5017f6e61b5a1f67eab4802eceedaf6a1bce7f64fc0bba7d3fe38e7b52de549bfa89f8f4d0d4276a2f7aeba5c2fbb +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/epstopdf + bin/i386-netbsd/repstopdf + +name epstopdf.i386-solaris +category Package +revision 18421 +shortdesc i386-solaris files of epstopdf +containersize 364 +containerchecksum 192105f2e79a3a6755d26c63c6abb1c92b68487222165dabbcc7ec2daa831d06fc1852389af51a83a72072db6acbf34d9c8edc2d271f5b812fe0adea6bec32d3 +binfiles arch=i386-solaris size=2 + bin/i386-solaris/epstopdf + bin/i386-solaris/repstopdf + +name epstopdf.win32 +category Package +revision 18971 +shortdesc win32 files of epstopdf +containersize 708 +containerchecksum 8c3cdd1a109a4c91897720dfab026e2965f909c189e2282e0915f26cd0c95e9a0a9b9b8e3d2dd7e33b036b8ada84df268b62af9b6162a8fa0020bf27d3e918dc +binfiles arch=win32 size=2 + bin/win32/epstopdf.exe + bin/win32/repstopdf.exe + +name epstopdf.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of epstopdf +containersize 364 +containerchecksum f14c190635e1c75bb368a904eeb837845a512f5e55346c110ddaade3debf44bf3a5a52c7c2e1d83a906fc6eae36613b213d5620d9d75c03527442e2e6d3bb574 +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/epstopdf + bin/x86_64-cygwin/repstopdf + +name epstopdf.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of epstopdf +containersize 364 +containerchecksum c9b63d228e784aa993d8e8560319aabd1f235b501e2f71727e47ed7651870a4579ee1607c236fbd81c1c40dbd331406058d0191b938a4ad16ad0c06f2e26b147 +binfiles arch=x86_64-darwin size=2 + bin/x86_64-darwin/epstopdf + bin/x86_64-darwin/repstopdf + +name epstopdf.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of epstopdf +containersize 372 +containerchecksum 3eacd223c2630d433333cee411a5377784e02b03b88fdf5a716d5b4181dccc53cd3369cc79af6096a8e4f458eec39fe45863f29dd72e5a1fbdc31aea1fac692c +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/epstopdf + bin/x86_64-darwinlegacy/repstopdf + +name epstopdf.x86_64-linux +category Package +revision 18365 +shortdesc x86_64-linux files of epstopdf +containersize 364 +containerchecksum a14c6953be481ae60c1b6ff8657a26cc13cb7c994ca2f003f3c3c4da98032cf77ba51298bb11391654b9d2547d6070d287384521956e5132a13142ff7bcbfeb9 +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/epstopdf + bin/x86_64-linux/repstopdf + +name epstopdf.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of epstopdf +containersize 372 +containerchecksum 6eca1322956e153745ef29dd2c83dbf321fa4fd064b7d57aa4d62fc7458d6248ca06a3ded10d0b14ac3984576438b30bb89f43905797c98515381833675e35da +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/epstopdf + bin/x86_64-linuxmusl/repstopdf + +name epstopdf.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of epstopdf +containersize 364 +containerchecksum 7da27656bfa7ff17dbe6aa54bffc8d5285ad522a317cd1243b68346fef70e2f722393c46f7d29832d38e83c8d4c9ed8164f2c3a1fe5631cfe748b728646a9c1e +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/epstopdf + bin/x86_64-solaris/repstopdf name eqell category Package revision 22931 -shortdesc Sympathetically spaced ellipsis after punctuation. +shortdesc Sympathetically spaced ellipsis after punctuation relocated 1 longdesc The package provides commands that give a well-spaced ellipsis longdesc after !, ?, !? or ?!. -runfiles size=1 - RELOC/tex/latex/eqell/eqell.sty +containersize 684 +containerchecksum b3544579e03c33b7a5a10f1fbcb22735d1bbcdb9fb5ac94330ec1eeb6f6ae646935a46f4c7c3bdb4305368b2e9aa9eba244c80f08f3127fad2080b610f1041a1 +doccontainersize 183216 +doccontainerchecksum 9210b85937d0bae3eab982f45b1f38f7020327c9b4cfc6604de5b171ecc84f54f5bfd088a3f06ba7123a7fc01a6fb09953015b1813db9ab2fbabf2a15bca955c docfiles size=48 - RELOC/doc/latex/eqell/README - RELOC/doc/latex/eqell/eqell.pdf + RELOC/doc/latex/eqell/README details="Readme" + RELOC/doc/latex/eqell/eqell.pdf details="Package documentation" RELOC/doc/latex/eqell/eqell.tex +runfiles size=1 + RELOC/tex/latex/eqell/eqell.sty catalogue-ctan /macros/latex/contrib/eqell -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics typesetting + +name eqexpl +category Package +revision 49151 +shortdesc Align explanations for formulas +relocated 1 +longdesc This package was developed in response to a question on +longdesc https://tex.stackexchange.com. Its purpose is to enable a +longdesc perfectly formatted explanation of components of a formula. +containersize 1176 +containerchecksum d69313012cc1234eb99958e171fe8a228652935f0dc7f53b75c673d11f41b5a68de7a337ad35749efa004062ed0464acac8551bf3be15ce6c0c6beb1dd9c79af +doccontainersize 71836 +doccontainerchecksum 81e4690ee66740cad724458736cdefdcc7cef54ce31d5601c4e54fe2816bcb8959fbdf35825228d9cf4b39c4275a42d6c0fae967c8b628d96e8ec290dc388e7f +docfiles size=26 + RELOC/doc/latex/eqexpl/README.md details="Readme" + RELOC/doc/latex/eqexpl/README.ru.md details="Readme" language="ru" + RELOC/doc/latex/eqexpl/eqexpl.pdf details="Package documentation" + RELOC/doc/latex/eqexpl/eqexpl.tex +runfiles size=1 + RELOC/tex/latex/eqexpl/eqexpl.sty +catalogue-also nomencl +catalogue-contact-bugs https://github.com/konstantin-morenko/latex-equation-explanation/issues +catalogue-contact-home https://konstantin-morenko.github.io/latex-equation-explanation/ +catalogue-contact-repository https://github.com/konstantin-morenko/latex-equation-explanation +catalogue-ctan /macros/latex/contrib/eqexpl +catalogue-date 2018-11-15 07:57:03 +0100 +catalogue-license cc-by-sa-4 +catalogue-topics alignment +catalogue-version 1 name eqlist category Package revision 32257 -shortdesc Description lists with equal indentation. +shortdesc Description lists with equal indentation relocated 1 longdesc This package provides a list environment which sets a longdesc description-like list in which the indentation corresponds to longdesc the longest item of the list. -runfiles size=1 - RELOC/tex/latex/eqlist/eqlist.sty +containersize 1240 +containerchecksum 1af830f51ce25946ac8bc6a4cca323dffeff20389ec998b74afd49a8edab5ad7a453818d4799e55ca564153a87b85e2a6b03ed67e53cc5ae6fa74c45edf3aeae +doccontainersize 64524 +doccontainerchecksum a5b22b8e9300064d77d02ca6f5652659293c6fedb792be2f0664a2383b3167ed7bf8796af26edfabfdcab8d75ddf30f3815be36e8f38fda30f1609b56c16ac61 docfiles size=22 - RELOC/doc/latex/eqlist/README - RELOC/doc/latex/eqlist/eqlist.pdf + RELOC/doc/latex/eqlist/README details="Readme" + RELOC/doc/latex/eqlist/eqlist.pdf details="Package documentation" RELOC/doc/latex/eqlist/eqlist.tex +srccontainersize 6648 +srccontainerchecksum 15817915c95c5f609c3def3bce324e6ca362408aa862e7b3548a67225bc1c33bf8a5c8f924dcbb1951958beaccbf86071b4e866f0e7a4d55a09456412fe70223 srcfiles size=7 RELOC/source/latex/eqlist/eqlist.dtx RELOC/source/latex/eqlist/eqlist.ins +runfiles size=1 + RELOC/tex/latex/eqlist/eqlist.sty catalogue-ctan /macros/latex/contrib/eqlist -catalogue-date 2012-01-23 15:27:59 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics list list-descr catalogue-version 2.1 +name eqnalign +category Package +revision 43278 +shortdesc Make eqnarray behave like align +relocated 1 +longdesc The package makes eqnarray environment behave like align from +longdesc amsmath'. It is intended for quick-fixing documents that use +longdesc eqnarray. In cases where it fails, manual conversion to align +longdesc is required, but these cases should be seldom. +containersize 1724 +containerchecksum 6793d24d272ff5f95b4e37fa3f4206e7358e0f5b51c51bcf4c61908e3fa554d8c8a53d888c7d7b1adde09f5d308c19944e93abccdb7846c88544abc90bbe4924 +doccontainersize 288116 +doccontainerchecksum 65847f34d7d1c76dd4d87ebd7e46aa1bb9e9a34ecf04cac6e58c18f9f4949d3e82325dac982f6d704fe6013e2acf718f0372873e547434c15a4a07c07ace27c9 +docfiles size=71 + RELOC/doc/latex/eqnalign/README.md details="Readme" + RELOC/doc/latex/eqnalign/eqnalign.pdf details="Package documentation" +srccontainersize 4692 +srccontainerchecksum 124449d3ce1f3b120f152c1eee49447f640f97d01f1d5a6f79ef72d1465cdd31de896049a5a7163e4e366ca9454b0f78723c4a94a24b8d83e2c4540d613bfaa3 +srcfiles size=4 + RELOC/source/latex/eqnalign/eqnalign.dtx + RELOC/source/latex/eqnalign/eqnalign.ins +runfiles size=1 + RELOC/tex/latex/eqnalign/eqnalign.sty +catalogue-also eqnarray amsmath +catalogue-ctan /macros/latex/contrib/eqnalign +catalogue-date 2017-02-22 05:31:05 +0100 +catalogue-license lppl1.3 +catalogue-topics maths maths-syseqn +catalogue-version 1.0a + name eqname category Package revision 20678 -shortdesc Name tags for equations. +shortdesc Name tags for equations relocated 1 longdesc The \eqname command provides a name tag for the current longdesc equation, in place of an equation number. The name tag will be longdesc picked up by a subsequent \label command. +containersize 972 +containerchecksum 1717aa83439019ba2c07ced56ca5dc969a68b78c9a711d97d0a168d432c6e26b53f30b2a3f6f8d241acf465fe8817d7e4fc4238982a68bf2ae143c5fdc2ca72e runfiles size=1 RELOC/tex/latex/eqname/eqname.sty -catalogue-ctan /macros/latex/contrib/gene/eqname/eqname.sty -catalogue-date 2012-07-11 14:19:50 +0200 +catalogue-ctan /macros/latex/contrib/gene/eqname +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics maths name eqnarray category Package revision 20641 -shortdesc More generalised equation arrays with numbering. +shortdesc More generalised equation arrays with numbering relocated 1 longdesc Defines an equationarray environment, that allows more than longdesc three columns, but otherwise behaves like LaTeX's eqnarray longdesc environment. This environment is similar, in some ways, to the longdesc align environment of amsmath. The package requires the array longdesc package. -runfiles size=2 - RELOC/tex/latex/eqnarray/eqnarray.sty +containersize 2196 +containerchecksum f5abd20910152cf65d92c7e44930729c1052f72441f162de2f4ad869f0ff37b669066f43089a1369298e9ebdb536ed62d437b3f34be5b3e417d8b0bf34d9c870 +doccontainersize 101768 +doccontainerchecksum 7ea3d87f81eca28dd52f9e9cf4f7df1ce4f7b9cd82cc40d0a7fff234415b2a3e033fa1c8a11594b2c08e5edf87ae265e5f7a65eb92a79cd523568f37853de30a docfiles size=30 - RELOC/doc/latex/eqnarray/README - RELOC/doc/latex/eqnarray/eqnarray.pdf + RELOC/doc/latex/eqnarray/README details="Readme" + RELOC/doc/latex/eqnarray/eqnarray.pdf details="Package documentation" +srccontainersize 5628 +srccontainerchecksum 9dd02c43fca4f6e8dba0bd44292c8f97aef4cbf39d521b9df10206a2309e82492f344fb65c35ac0509532e9efb2571aecb2a5894e639de5efa1444bba9916587 srcfiles size=6 RELOC/source/latex/eqnarray/eqnarray.drv RELOC/source/latex/eqnarray/eqnarray.dtx RELOC/source/latex/eqnarray/eqnarray.ins +runfiles size=2 + RELOC/tex/latex/eqnarray/eqnarray.sty catalogue-ctan /macros/latex/contrib/eqnarray -catalogue-date 2014-05-14 16:12:10 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl3 +catalogue-topics maths maths-syseqn catalogue-version 1.3 +name eqnnumwarn +category Package +revision 45511 +shortdesc Modifies the amsmath equation environments to warn for a displaced equation number +relocated 1 +longdesc Sometimes an equation is too long that an equation number will +longdesc be typeset below the equation itself, but yet not long enough +longdesc to yield an "overfull \hbox" warning. The eqnnumwarn package +longdesc modifies the standard amsmath numbered equation environments to +longdesc throw a warning whenever this occurs. +containersize 3232 +containerchecksum ddfee700caa63f65fb4f53fe2469d1e6ef6338843738dd2c06989f23b6f4b40dd1dfe4b5979a04b34a9430d7cdd4d0f3ef14e3ce39613c8961fb0266e4ce6af3 +doccontainersize 93352 +doccontainerchecksum e6dddee646be40e01c211854d3fa04855286e24a39b8217380e555eaacfad50fc66a57e89336d505c80a8df77ff7885922195423d11c2acefce583c9cb9fce81 +docfiles size=26 + RELOC/doc/latex/eqnnumwarn/README.md details="Readme" + RELOC/doc/latex/eqnnumwarn/eqnnumwarn.pdf details="Package documentation" + RELOC/doc/latex/eqnnumwarn/eqnnumwarn.tex +runfiles size=2 + RELOC/tex/latex/eqnnumwarn/eqnnumwarn.sty +catalogue-also latex-amsmath +catalogue-ctan /macros/latex/contrib/eqnnumwarn +catalogue-date 2018-01-07 12:02:30 +0100 +catalogue-license lppl1.3 +catalogue-topics comp-supp +catalogue-version 1.0 + name eqparbox category Package -revision 29419 -shortdesc Create equal-widthed parboxes. +revision 45215 +shortdesc Create equal-widthed parboxes relocated 1 longdesc LaTeX users sometimes need to ensure that two or more blocks of longdesc text occupy the same amount of horizontal space on the page. To longdesc that end, the eqparbox package defines a new command, longdesc \eqparbox, which works just like \parbox, except that instead longdesc of specifying a width, one specifies a tag. All eqparboxes with -longdesc the same tag--regardless of where they are in the document-- -longdesc will stretch to fit the widest eqparbox with that tag. This -longdesc simple, equal-width mechanism can be used for a variety of -longdesc alignment purposes, as is evidenced by the examples in -longdesc eqparbox's documentation. Various derivatives of \eqparbox are -longdesc also provided. -runfiles size=2 - RELOC/tex/latex/eqparbox/eqparbox.sty -docfiles size=102 - RELOC/doc/latex/eqparbox/README - RELOC/doc/latex/eqparbox/eqparbox.pdf -srcfiles size=16 +longdesc the same tag--regardless of where they are in the +longdesc document--will stretch to fit the widest eqparbox with that +longdesc tag. This simple, equal-width mechanism can be used for a +longdesc variety of alignment purposes, as is evidenced by the examples +longdesc in eqparbox's documentation. Various derivatives of \eqparbox +longdesc are also provided. +containersize 2792 +containerchecksum b6e64a4d30840933614a42b16ffec215d1e01138c42805ed20bfab6ec03e232f87fcc2c20decb2e7e75234b7bd5fc2ebe5477808756ec92e6e724acb3482afca +doccontainersize 214564 +doccontainerchecksum 1b0f7e6249e114bb6371d19f941cd2308f70ac4f1c831ce5a1c15551bbd65a4289b0b0e718580cc7df97bf4732ad3a76b3f22ea12f7caeaa2ea6362fabab2074 +docfiles size=56 + RELOC/doc/latex/eqparbox/README details="Readme" + RELOC/doc/latex/eqparbox/eqparbox.pdf details="Package documentation" +srccontainersize 16336 +srccontainerchecksum 2998b3fce2cce05512a41b4700905adb78d421302ed0275e7f263f891a0d8e9d5d8793ce2fb80cf1ca3e8f5f148e530a48c3c701f72729e6f4667382ad9247b1 +srcfiles size=17 RELOC/source/latex/eqparbox/eqparbox.dtx RELOC/source/latex/eqparbox/eqparbox.ins +runfiles size=3 + RELOC/tex/latex/eqparbox/eqparbox.sty catalogue-ctan /macros/latex/contrib/eqparbox -catalogue-date 2013-03-17 00:02:27 +0100 -catalogue-license lppl1.3 -catalogue-version 4.0 +catalogue-date 2017-09-04 06:03:42 +0200 +catalogue-license lppl1.3c +catalogue-topics boxing +catalogue-version 4.1 name erdc category Package revision 15878 -shortdesc Style for Reports by US Army Corps of Engineers. +shortdesc Style for Reports by US Army Corps of Engineers relocated 1 longdesc A class for typesetting Technical Information Reports of the longdesc Engineer Research and Development Center, US Army Corps of longdesc Engineers. The class was commissioned and paid for by US Army longdesc Corps of Engineers, Engineer Research and Development Center, longdesc 3909 Halls Ferry Road, Vicksburg, MS 39180-6199. -runfiles size=5 - RELOC/tex/latex/erdc/erdc.cls +containersize 6056 +containerchecksum 56754f7ca1872837a362b1f5cc929fe5ed8bbd59a1a45eb2fe20b071f7c44362b0d98764c6d2870d275d0f0216a9543cc1e9f671f92de1b6b02136f9076f5f95 +doccontainersize 685596 +doccontainerchecksum 3e9d2dbfb3bd877c6bd105ca8cdff87cad9cf801797cea39e760ceaa1f27ed802795d728f9bd675c6553a88e22c03a035436abb19dacd38c774b94a0e2bd1567 docfiles size=215 RELOC/doc/latex/erdc/README RELOC/doc/latex/erdc/erdc.bib - RELOC/doc/latex/erdc/erdc.pdf + RELOC/doc/latex/erdc/erdc.pdf details="Package documentation" RELOC/doc/latex/erdc/nola.eps RELOC/doc/latex/erdc/nola.pdf RELOC/doc/latex/erdc/red_corps_castle2.eps RELOC/doc/latex/erdc/red_corps_castle2.pdf - RELOC/doc/latex/erdc/sample.pdf + RELOC/doc/latex/erdc/sample.pdf details="Sample of usage" RELOC/doc/latex/erdc/sample.tex +srccontainersize 16276 +srccontainerchecksum afe35b5120001d40259065ba25a9c5720f78fb1a679ed984727b89076bc265113e93184bc8ffbf998f069f85636f332ec5c93a40ba39aef4d4b7a3884da42446 srcfiles size=17 RELOC/source/latex/erdc/Makefile RELOC/source/latex/erdc/erdc.dtx RELOC/source/latex/erdc/erdc.ins +runfiles size=5 + RELOC/tex/latex/erdc/erdc.cls catalogue-ctan /macros/latex/contrib/erdc -catalogue-date 2014-09-26 13:30:12 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics report-like class catalogue-version 1.1 name erewhon category Package -revision 36743 -shortdesc Font package derived from Heuristica and Utopia. +revision 49715 +shortdesc Font package derived from Heuristica and Utopia relocated 1 longdesc Erewhon is based on the Heuristica package, which is based in longdesc turn on Utopia. Erewhon adds a number of new features -- small @@ -57760,108 +97916,169 @@ longdesc styles (proportional, inferior, numerator, denominator) and longdesc superior letters. The size is 6% smaller than Heuristica, longdesc matching that of UtopiaStd. execute addMap erewhon.map -runfiles size=2425 +containersize 2130172 +containerchecksum 7e7720709f55e55711cd5bf3212d89becbeb2f6f5c94eeb4396967a97292858d2b530651cf7e3990d7f3791b70eca97b9c608c931e7d9f16b887a68fe2af30b1 +doccontainersize 385824 +doccontainerchecksum 634dc9dc11776ad1c7d5d4dc89e6df70653e539ddd641df4b883425cad9e5e0d7dbd9cd3c7e30500f5b526855f00171473e96e135685ecaaaa9546c266bf518f +docfiles size=109 + RELOC/doc/fonts/erewhon/FontLog.txt + RELOC/doc/fonts/erewhon/OFL-FAQ.txt + RELOC/doc/fonts/erewhon/OFL.txt + RELOC/doc/fonts/erewhon/README details="Readme" + RELOC/doc/fonts/erewhon/erewhon-doc.pdf details="Package documentation" + RELOC/doc/fonts/erewhon/erewhon-doc.tex +runfiles size=2558 RELOC/fonts/afm/public/erewhon/Erewhon-Bold.afm RELOC/fonts/afm/public/erewhon/Erewhon-BoldItalic.afm RELOC/fonts/afm/public/erewhon/Erewhon-BoldSlanted.afm RELOC/fonts/afm/public/erewhon/Erewhon-Italic.afm RELOC/fonts/afm/public/erewhon/Erewhon-Regular.afm RELOC/fonts/afm/public/erewhon/Erewhon-RegularSlanted.afm - RELOC/fonts/enc/dvips/erewhon/zut1_23adt6.enc - RELOC/fonts/enc/dvips/erewhon/zut1_26fc24.enc - RELOC/fonts/enc/dvips/erewhon/zut1_2pdzb4.enc - RELOC/fonts/enc/dvips/erewhon/zut1_2rsg4x.enc - RELOC/fonts/enc/dvips/erewhon/zut1_33qyrq.enc - RELOC/fonts/enc/dvips/erewhon/zut1_36wkbs.enc - RELOC/fonts/enc/dvips/erewhon/zut1_3qes6a.enc - RELOC/fonts/enc/dvips/erewhon/zut1_3sdh4x.enc - RELOC/fonts/enc/dvips/erewhon/zut1_3zzbgn.enc - RELOC/fonts/enc/dvips/erewhon/zut1_46udvc.enc - RELOC/fonts/enc/dvips/erewhon/zut1_4gejho.enc - RELOC/fonts/enc/dvips/erewhon/zut1_55od57.enc - RELOC/fonts/enc/dvips/erewhon/zut1_55vlpj.enc - RELOC/fonts/enc/dvips/erewhon/zut1_5gd3w7.enc - RELOC/fonts/enc/dvips/erewhon/zut1_5osyhn.enc - RELOC/fonts/enc/dvips/erewhon/zut1_5qg2z3.enc - RELOC/fonts/enc/dvips/erewhon/zut1_5uug7k.enc - RELOC/fonts/enc/dvips/erewhon/zut1_5vzi2j.enc - RELOC/fonts/enc/dvips/erewhon/zut1_6fbto3.enc - RELOC/fonts/enc/dvips/erewhon/zut1_6ff2fp.enc - RELOC/fonts/enc/dvips/erewhon/zut1_6hpp45.enc - RELOC/fonts/enc/dvips/erewhon/zut1_6odewi.enc - RELOC/fonts/enc/dvips/erewhon/zut1_6qui4c.enc - RELOC/fonts/enc/dvips/erewhon/zut1_6zm6gs.enc - RELOC/fonts/enc/dvips/erewhon/zut1_72r2qm.enc - RELOC/fonts/enc/dvips/erewhon/zut1_7cvson.enc - RELOC/fonts/enc/dvips/erewhon/zut1_7il5js.enc - RELOC/fonts/enc/dvips/erewhon/zut1_7whbrd.enc - RELOC/fonts/enc/dvips/erewhon/zut1_a5mbkd.enc - RELOC/fonts/enc/dvips/erewhon/zut1_aboxub.enc - RELOC/fonts/enc/dvips/erewhon/zut1_agkjyb.enc - RELOC/fonts/enc/dvips/erewhon/zut1_akndxy.enc - RELOC/fonts/enc/dvips/erewhon/zut1_asyhxx.enc - RELOC/fonts/enc/dvips/erewhon/zut1_b66crt.enc - RELOC/fonts/enc/dvips/erewhon/zut1_bhrl5o.enc - RELOC/fonts/enc/dvips/erewhon/zut1_buav3i.enc - RELOC/fonts/enc/dvips/erewhon/zut1_c4updo.enc - RELOC/fonts/enc/dvips/erewhon/zut1_cd75bx.enc - RELOC/fonts/enc/dvips/erewhon/zut1_diubwb.enc - RELOC/fonts/enc/dvips/erewhon/zut1_dmu6i6.enc - RELOC/fonts/enc/dvips/erewhon/zut1_ebpzys.enc - RELOC/fonts/enc/dvips/erewhon/zut1_efqq6z.enc - RELOC/fonts/enc/dvips/erewhon/zut1_egk5ui.enc - RELOC/fonts/enc/dvips/erewhon/zut1_emma2w.enc - RELOC/fonts/enc/dvips/erewhon/zut1_enosfl.enc - RELOC/fonts/enc/dvips/erewhon/zut1_enxj7r.enc - RELOC/fonts/enc/dvips/erewhon/zut1_erfmsm.enc - RELOC/fonts/enc/dvips/erewhon/zut1_fs7nm6.enc - RELOC/fonts/enc/dvips/erewhon/zut1_g4aneu.enc - RELOC/fonts/enc/dvips/erewhon/zut1_gdnnr3.enc - RELOC/fonts/enc/dvips/erewhon/zut1_gmwaxb.enc - RELOC/fonts/enc/dvips/erewhon/zut1_hbrlcj.enc - RELOC/fonts/enc/dvips/erewhon/zut1_io433z.enc - RELOC/fonts/enc/dvips/erewhon/zut1_izhoij.enc - RELOC/fonts/enc/dvips/erewhon/zut1_j2yrpr.enc - RELOC/fonts/enc/dvips/erewhon/zut1_jlgnzs.enc - RELOC/fonts/enc/dvips/erewhon/zut1_kqgewl.enc - RELOC/fonts/enc/dvips/erewhon/zut1_mb3zuf.enc - RELOC/fonts/enc/dvips/erewhon/zut1_mczjfg.enc - RELOC/fonts/enc/dvips/erewhon/zut1_mnqfpi.enc - RELOC/fonts/enc/dvips/erewhon/zut1_namll4.enc - RELOC/fonts/enc/dvips/erewhon/zut1_okgrmm.enc - RELOC/fonts/enc/dvips/erewhon/zut1_opwl73.enc - RELOC/fonts/enc/dvips/erewhon/zut1_p3lteh.enc - RELOC/fonts/enc/dvips/erewhon/zut1_p3smp3.enc - RELOC/fonts/enc/dvips/erewhon/zut1_p725ca.enc - RELOC/fonts/enc/dvips/erewhon/zut1_pdw4cs.enc - RELOC/fonts/enc/dvips/erewhon/zut1_plclts.enc - RELOC/fonts/enc/dvips/erewhon/zut1_ppbl3l.enc - RELOC/fonts/enc/dvips/erewhon/zut1_pt32q7.enc - RELOC/fonts/enc/dvips/erewhon/zut1_pua4mh.enc - RELOC/fonts/enc/dvips/erewhon/zut1_q4fsp5.enc - RELOC/fonts/enc/dvips/erewhon/zut1_qpgbnz.enc - RELOC/fonts/enc/dvips/erewhon/zut1_qytqkd.enc - RELOC/fonts/enc/dvips/erewhon/zut1_qzlrfe.enc - RELOC/fonts/enc/dvips/erewhon/zut1_sodton.enc - RELOC/fonts/enc/dvips/erewhon/zut1_sxnwby.enc - RELOC/fonts/enc/dvips/erewhon/zut1_szqr4x.enc - RELOC/fonts/enc/dvips/erewhon/zut1_tyrjhz.enc - RELOC/fonts/enc/dvips/erewhon/zut1_u4kfm3.enc - RELOC/fonts/enc/dvips/erewhon/zut1_uaoxy2.enc - RELOC/fonts/enc/dvips/erewhon/zut1_uxztme.enc - RELOC/fonts/enc/dvips/erewhon/zut1_vgtdgz.enc - RELOC/fonts/enc/dvips/erewhon/zut1_vz5ynf.enc - RELOC/fonts/enc/dvips/erewhon/zut1_vzlxgj.enc - RELOC/fonts/enc/dvips/erewhon/zut1_wft4nn.enc - RELOC/fonts/enc/dvips/erewhon/zut1_x5g3l6.enc - RELOC/fonts/enc/dvips/erewhon/zut1_x6jwsz.enc - RELOC/fonts/enc/dvips/erewhon/zut1_yat6q4.enc - RELOC/fonts/enc/dvips/erewhon/zut1_ympoog.enc - RELOC/fonts/enc/dvips/erewhon/zut1_ynhtih.enc - RELOC/fonts/enc/dvips/erewhon/zut1_ytwp45.enc - RELOC/fonts/enc/dvips/erewhon/zut1_z2p4l2.enc - RELOC/fonts/enc/dvips/erewhon/zut1_z3xbwl.enc - RELOC/fonts/enc/dvips/erewhon/zut1_zm7h5z.enc + RELOC/fonts/enc/dvips/erewhon/erewhontlf-ot2.enc + RELOC/fonts/enc/dvips/erewhon/zut1_2d6v2a.enc + RELOC/fonts/enc/dvips/erewhon/zut1_2jm7ak.enc + RELOC/fonts/enc/dvips/erewhon/zut1_2phnm5.enc + RELOC/fonts/enc/dvips/erewhon/zut1_2sunpf.enc + RELOC/fonts/enc/dvips/erewhon/zut1_2tgaob.enc + RELOC/fonts/enc/dvips/erewhon/zut1_2yn6hi.enc + RELOC/fonts/enc/dvips/erewhon/zut1_3nkqlm.enc + RELOC/fonts/enc/dvips/erewhon/zut1_3pm7ws.enc + RELOC/fonts/enc/dvips/erewhon/zut1_3wlt4n.enc + RELOC/fonts/enc/dvips/erewhon/zut1_46ywhf.enc + RELOC/fonts/enc/dvips/erewhon/zut1_472lj2.enc + RELOC/fonts/enc/dvips/erewhon/zut1_472w4h.enc + RELOC/fonts/enc/dvips/erewhon/zut1_53cvlj.enc + RELOC/fonts/enc/dvips/erewhon/zut1_5aq3nb.enc + RELOC/fonts/enc/dvips/erewhon/zut1_5cobnr.enc + RELOC/fonts/enc/dvips/erewhon/zut1_5dcbdr.enc + RELOC/fonts/enc/dvips/erewhon/zut1_5ebsy3.enc + RELOC/fonts/enc/dvips/erewhon/zut1_5jyhbz.enc + RELOC/fonts/enc/dvips/erewhon/zut1_5nl5xc.enc + RELOC/fonts/enc/dvips/erewhon/zut1_5sc5zm.enc + RELOC/fonts/enc/dvips/erewhon/zut1_5zii66.enc + RELOC/fonts/enc/dvips/erewhon/zut1_64ilkf.enc + RELOC/fonts/enc/dvips/erewhon/zut1_6xnyxb.enc + RELOC/fonts/enc/dvips/erewhon/zut1_6zkwdq.enc + RELOC/fonts/enc/dvips/erewhon/zut1_73itje.enc + RELOC/fonts/enc/dvips/erewhon/zut1_75hzbe.enc + RELOC/fonts/enc/dvips/erewhon/zut1_7gbjzw.enc + RELOC/fonts/enc/dvips/erewhon/zut1_7vuaps.enc + RELOC/fonts/enc/dvips/erewhon/zut1_7wmsrn.enc + RELOC/fonts/enc/dvips/erewhon/zut1_7xxsa3.enc + RELOC/fonts/enc/dvips/erewhon/zut1_amjics.enc + RELOC/fonts/enc/dvips/erewhon/zut1_azqpxw.enc + RELOC/fonts/enc/dvips/erewhon/zut1_b2jol2.enc + RELOC/fonts/enc/dvips/erewhon/zut1_b4bj4o.enc + RELOC/fonts/enc/dvips/erewhon/zut1_bkk6kl.enc + RELOC/fonts/enc/dvips/erewhon/zut1_bo7t4a.enc + RELOC/fonts/enc/dvips/erewhon/zut1_bsmecw.enc + RELOC/fonts/enc/dvips/erewhon/zut1_cbfxpb.enc + RELOC/fonts/enc/dvips/erewhon/zut1_cm3ukg.enc + RELOC/fonts/enc/dvips/erewhon/zut1_comway.enc + RELOC/fonts/enc/dvips/erewhon/zut1_czcdxc.enc + RELOC/fonts/enc/dvips/erewhon/zut1_d2bm6z.enc + RELOC/fonts/enc/dvips/erewhon/zut1_de446i.enc + RELOC/fonts/enc/dvips/erewhon/zut1_dmsp3x.enc + RELOC/fonts/enc/dvips/erewhon/zut1_dq4c7f.enc + RELOC/fonts/enc/dvips/erewhon/zut1_duporo.enc + RELOC/fonts/enc/dvips/erewhon/zut1_e4eugf.enc + RELOC/fonts/enc/dvips/erewhon/zut1_e4qrg7.enc + RELOC/fonts/enc/dvips/erewhon/zut1_e6jkx2.enc + RELOC/fonts/enc/dvips/erewhon/zut1_eaccqu.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ebczeo.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ecgehq.enc + RELOC/fonts/enc/dvips/erewhon/zut1_f3py2q.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ffkvvu.enc + RELOC/fonts/enc/dvips/erewhon/zut1_fqlf3s.enc + RELOC/fonts/enc/dvips/erewhon/zut1_fszbg4.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ftudgd.enc + RELOC/fonts/enc/dvips/erewhon/zut1_fxczch.enc + RELOC/fonts/enc/dvips/erewhon/zut1_g6cvhs.enc + RELOC/fonts/enc/dvips/erewhon/zut1_gbmzbk.enc + RELOC/fonts/enc/dvips/erewhon/zut1_gjhrxo.enc + RELOC/fonts/enc/dvips/erewhon/zut1_h3ilkd.enc + RELOC/fonts/enc/dvips/erewhon/zut1_h5cath.enc + RELOC/fonts/enc/dvips/erewhon/zut1_hdz6bj.enc + RELOC/fonts/enc/dvips/erewhon/zut1_hih73f.enc + RELOC/fonts/enc/dvips/erewhon/zut1_hl634h.enc + RELOC/fonts/enc/dvips/erewhon/zut1_hvww67.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ib3abc.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ibrkbm.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ilhygg.enc + RELOC/fonts/enc/dvips/erewhon/zut1_iq2n4h.enc + RELOC/fonts/enc/dvips/erewhon/zut1_iwqvab.enc + RELOC/fonts/enc/dvips/erewhon/zut1_jklbl2.enc + RELOC/fonts/enc/dvips/erewhon/zut1_jv4prf.enc + RELOC/fonts/enc/dvips/erewhon/zut1_jyfbou.enc + RELOC/fonts/enc/dvips/erewhon/zut1_k2pzfk.enc + RELOC/fonts/enc/dvips/erewhon/zut1_knq7bi.enc + RELOC/fonts/enc/dvips/erewhon/zut1_kvikxc.enc + RELOC/fonts/enc/dvips/erewhon/zut1_kykvl2.enc + RELOC/fonts/enc/dvips/erewhon/zut1_l7a6jh.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ld54a3.enc + RELOC/fonts/enc/dvips/erewhon/zut1_lkesvg.enc + RELOC/fonts/enc/dvips/erewhon/zut1_lms5gf.enc + RELOC/fonts/enc/dvips/erewhon/zut1_lql6bl.enc + RELOC/fonts/enc/dvips/erewhon/zut1_lx3hec.enc + RELOC/fonts/enc/dvips/erewhon/zut1_lxr6iw.enc + RELOC/fonts/enc/dvips/erewhon/zut1_mieo7u.enc + RELOC/fonts/enc/dvips/erewhon/zut1_mivgv5.enc + RELOC/fonts/enc/dvips/erewhon/zut1_mrzttx.enc + RELOC/fonts/enc/dvips/erewhon/zut1_mtgz5m.enc + RELOC/fonts/enc/dvips/erewhon/zut1_muv2lr.enc + RELOC/fonts/enc/dvips/erewhon/zut1_mxraii.enc + RELOC/fonts/enc/dvips/erewhon/zut1_n7r4zn.enc + RELOC/fonts/enc/dvips/erewhon/zut1_nmevy6.enc + RELOC/fonts/enc/dvips/erewhon/zut1_nwll5a.enc + RELOC/fonts/enc/dvips/erewhon/zut1_o24g5u.enc + RELOC/fonts/enc/dvips/erewhon/zut1_o4jtlp.enc + RELOC/fonts/enc/dvips/erewhon/zut1_oe3m4u.enc + RELOC/fonts/enc/dvips/erewhon/zut1_olitnw.enc + RELOC/fonts/enc/dvips/erewhon/zut1_omykmw.enc + RELOC/fonts/enc/dvips/erewhon/zut1_pj2kv6.enc + RELOC/fonts/enc/dvips/erewhon/zut1_pkjbl3.enc + RELOC/fonts/enc/dvips/erewhon/zut1_pkw5wi.enc + RELOC/fonts/enc/dvips/erewhon/zut1_psdthf.enc + RELOC/fonts/enc/dvips/erewhon/zut1_pux3en.enc + RELOC/fonts/enc/dvips/erewhon/zut1_pxkzb5.enc + RELOC/fonts/enc/dvips/erewhon/zut1_q4j5e2.enc + RELOC/fonts/enc/dvips/erewhon/zut1_q6ndkk.enc + RELOC/fonts/enc/dvips/erewhon/zut1_qcaspe.enc + RELOC/fonts/enc/dvips/erewhon/zut1_qokyam.enc + RELOC/fonts/enc/dvips/erewhon/zut1_qwlkvu.enc + RELOC/fonts/enc/dvips/erewhon/zut1_r3uc5w.enc + RELOC/fonts/enc/dvips/erewhon/zut1_r5cqnt.enc + RELOC/fonts/enc/dvips/erewhon/zut1_rl73zu.enc + RELOC/fonts/enc/dvips/erewhon/zut1_saz6x5.enc + RELOC/fonts/enc/dvips/erewhon/zut1_sbgf5j.enc + RELOC/fonts/enc/dvips/erewhon/zut1_t4eroa.enc + RELOC/fonts/enc/dvips/erewhon/zut1_t5o7pg.enc + RELOC/fonts/enc/dvips/erewhon/zut1_tybypw.enc + RELOC/fonts/enc/dvips/erewhon/zut1_tzgz6e.enc + RELOC/fonts/enc/dvips/erewhon/zut1_u6hvbn.enc + RELOC/fonts/enc/dvips/erewhon/zut1_uevisq.enc + RELOC/fonts/enc/dvips/erewhon/zut1_uk5nxi.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ul5nhk.enc + RELOC/fonts/enc/dvips/erewhon/zut1_vf2rzj.enc + RELOC/fonts/enc/dvips/erewhon/zut1_viikjf.enc + RELOC/fonts/enc/dvips/erewhon/zut1_vj6erk.enc + RELOC/fonts/enc/dvips/erewhon/zut1_vy5tka.enc + RELOC/fonts/enc/dvips/erewhon/zut1_w7c3xw.enc + RELOC/fonts/enc/dvips/erewhon/zut1_wrs2qn.enc + RELOC/fonts/enc/dvips/erewhon/zut1_xaebaa.enc + RELOC/fonts/enc/dvips/erewhon/zut1_xwtzaw.enc + RELOC/fonts/enc/dvips/erewhon/zut1_y63e5u.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ybkoku.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ygtjzk.enc + RELOC/fonts/enc/dvips/erewhon/zut1_yndsjy.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ytbyxh.enc + RELOC/fonts/enc/dvips/erewhon/zut1_yvwvqh.enc + RELOC/fonts/enc/dvips/erewhon/zut1_z6mg7i.enc + RELOC/fonts/enc/dvips/erewhon/zut1_zj2fwx.enc + RELOC/fonts/enc/dvips/erewhon/zut1_znmclt.enc + RELOC/fonts/enc/dvips/erewhon/zut1_zqebf7.enc + RELOC/fonts/enc/dvips/erewhon/zut1_zvdim6.enc + RELOC/fonts/enc/dvips/erewhon/zut1_zvhc7q.enc RELOC/fonts/map/dvips/erewhon/erewhon.map RELOC/fonts/opentype/public/erewhon/Erewhon-Bold.otf RELOC/fonts/opentype/public/erewhon/Erewhon-BoldItalic.otf @@ -57924,6 +98141,7 @@ runfiles size=2425 RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-sup-t2b.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-sup-t2c.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-ot2.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-t1--base.tfm @@ -57966,6 +98184,13 @@ runfiles size=2425 RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-inf-t2b.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-inf-t2c.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-sc-t2c.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-t2a.tfm @@ -57980,6 +98205,13 @@ runfiles size=2425 RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-numr-t2b.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-numr-t2c.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-sc-t2c.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-t2a.tfm @@ -57994,6 +98226,14 @@ runfiles size=2425 RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-sup-t2b.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-sup-t2c.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-ot2.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-sc-t2c.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-t2a.tfm @@ -58002,6 +98242,13 @@ runfiles size=2425 RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-ts1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-sc-t2c.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-t2a.tfm @@ -58064,6 +98311,7 @@ runfiles size=2425 RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-sup-t2b.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-sup-t2c.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-ot2.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-t1--base.tfm @@ -58106,6 +98354,13 @@ runfiles size=2425 RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-inf-t2b.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-inf-t2c.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-sc-t2c.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-t2a.tfm @@ -58120,6 +98375,13 @@ runfiles size=2425 RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-numr-t2b.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-numr-t2c.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-sc-t2c.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-t2a.tfm @@ -58134,6 +98396,14 @@ runfiles size=2425 RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-sup-t2b.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-sup-t2c.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-ot2.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-sc-t2c.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-t2a.tfm @@ -58142,6 +98412,13 @@ runfiles size=2425 RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-ts1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-ts1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-sc-t2c.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-t2a.tfm @@ -58204,6 +98481,7 @@ runfiles size=2425 RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-sup-t2b.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-sup-t2c.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-ot2.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-t1--base.tfm @@ -58288,6 +98566,7 @@ runfiles size=2425 RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-sup-t2b.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-sup-t2c.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-ot2.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t1--base.tfm @@ -58345,14 +98624,22 @@ runfiles size=2425 RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tosf-ts1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-dnom-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-lf-sc-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-lf-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-lf-ts1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-numr-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-osf-sc-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-osf-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-osf-ts1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tlf-sc-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tlf-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tosf-sc-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tosf-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tosf-ts1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-dnom-t1.vf @@ -58377,14 +98664,22 @@ runfiles size=2425 RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tosf-ts1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-dnom-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-inf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-lf-sc-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-lf-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-lf-ts1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-numr-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-osf-sc-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-osf-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-osf-ts1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-sup-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tlf-sc-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tlf-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tosf-sc-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tosf-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tosf-ts1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Regular-dnom-t1.vf @@ -58435,6 +98730,7 @@ runfiles size=2425 RELOC/tex/latex/erewhon/LY1erewhon-Sup.fd RELOC/tex/latex/erewhon/LY1erewhon-TLF.fd RELOC/tex/latex/erewhon/LY1erewhon-TOsF.fd + RELOC/tex/latex/erewhon/OT2erewhon-TLF.fd RELOC/tex/latex/erewhon/T1erewhon-Dnom.fd RELOC/tex/latex/erewhon/T1erewhon-Inf.fd RELOC/tex/latex/erewhon/T1erewhon-LF.fd @@ -58473,46 +98769,106 @@ runfiles size=2425 RELOC/tex/latex/erewhon/TS1erewhon-TOsF.fd RELOC/tex/latex/erewhon/erewhon.fontspec RELOC/tex/latex/erewhon/erewhon.sty -docfiles size=65 - RELOC/doc/fonts/erewhon/FontLog.txt - RELOC/doc/fonts/erewhon/OFL-FAQ.txt - RELOC/doc/fonts/erewhon/OFL.txt - RELOC/doc/fonts/erewhon/README - RELOC/doc/fonts/erewhon/erewhon-doc.pdf - RELOC/doc/fonts/erewhon/erewhon-doc.tex catalogue-ctan /fonts/erewhon -catalogue-date 2015-04-08 12:38:09 +0200 -catalogue-license ofl -catalogue-version 1.04 +catalogue-date 2019-01-15 07:58:15 +0100 +catalogue-license ofllppl1.3 +catalogue-topics font font-otf font-type1 font-serif font-t1enc +catalogue-version 1.091 name errata category Package -revision 15878 -shortdesc Error markup for LaTeX documents. +revision 42428 +shortdesc Error markup for LaTeX documents relocated 1 longdesc This package provides a simple infrastructure for recording longdesc errata in LaTeX documents. This allows the user to maintain an longdesc updated version of the document (with all errors corrected) and longdesc to automatically generate an errata document highlighting the longdesc difference to the published version. -runfiles size=1 - RELOC/tex/latex/errata/errata.sty +containersize 1652 +containerchecksum ac3b99ef6e120a5b488cf79f3e942c10a47ee92e84a04d3667f99810ef365aac66598908c491897ef7a99df268a0bbc7185d49aed2313487712e300383356ec5 +doccontainersize 147644 +doccontainerchecksum 7fb625a66efc914e2eacc45696ac43112d7ca49b668ffbea179f47f04746509f981141a77d2948f30b8c56e4a2ff06f6af3047fe494e4f084237891fbbf6710f docfiles size=44 - RELOC/doc/latex/errata/README + RELOC/doc/latex/errata/README details="Readme" RELOC/doc/latex/errata/errata-errata.tex - RELOC/doc/latex/errata/errata.pdf + RELOC/doc/latex/errata/errata.pdf details="Package documentation" +srccontainersize 6420 +srccontainerchecksum ecc57287f78000349f4999d1f85aeaba0206a898ff2d97a1fa9b4f94acffd76099cc0f92a88e5a38153f71570f62d9616e0332edeb987e468a6483de0dfab5ee srcfiles size=6 RELOC/source/latex/errata/errata.dtx RELOC/source/latex/errata/errata.ins +runfiles size=1 + RELOC/tex/latex/errata/errata.sty catalogue-ctan /macros/latex/contrib/errata -catalogue-date 2011-09-30 20:51:09 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1 -catalogue-version v0.3 +catalogue-topics editorial +catalogue-version 0.3 + +name erw-l3 +category Package +revision 48069 +shortdesc A bundle of small utilities built around expl3 +relocated 1 +longdesc Bundles LaTeX3 packages sharing the erw-l3 prefix. List of +longdesc packages in this bundle: compose: compose control sequences, +longdesc whether predefined or inline csutil: narrow purpose control +longdesc sequences (backend to other packages) disambig: wrapper around +longdesc \NewDocumentCommand to prevent name conflicts with external +longdesc cmds numbrdcs: numbered control sequences built from other +longdesc control sequences or inline +containersize 2896 +containerchecksum d38e28024ecfa8be96a0125bea5728f54618849963881983fe9d375086530246a8e0351fcfd519ad37a235c3897906ff2f7b3f88854865e2de92237d7873aa39 +doccontainersize 529556 +doccontainerchecksum 8d1df458ed784fad2be09b46bfb48f1478c12a76127dda7a16b3c8b89966643e385ec139f0caae7a71b265451140ad95c4de4678ffbc6540bd1653c82a9775f2 +docfiles size=131 + RELOC/doc/latex/erw-l3/README.txt details="Readme" + RELOC/doc/latex/erw-l3/erw-l3.hd + RELOC/doc/latex/erw-l3/erw-l3.pdf details="Package documentation" +srccontainersize 7212 +srccontainerchecksum e7e2ddbb2bf750c16148915d779412f81d4508539bfed20f0bf0ef1f983675f9976984a870dfe67ce56041954e25aea6e5ebef5b07c82197ab7183968402e20d +srcfiles size=10 + RELOC/source/latex/erw-l3/erw-l3.dtx + RELOC/source/latex/erw-l3/erw-l3.ins +runfiles size=3 + RELOC/tex/latex/erw-l3/erw-l3.sty +catalogue-contact-home https://github.com/er-cpp/edu-latex3 +catalogue-contact-support https://github.com/er-cpp/edu-latex3/issues +catalogue-ctan /macros/latex/contrib/erw-l3 +catalogue-date 2018-06-22 06:13:31 +0200 +catalogue-license lppl1.3c +catalogue-topics latex3 +catalogue-version 0.1.3 + +name es-tex-faq +category Package +revision 15878 +catalogue faq-es +shortdesc CervanTeX (Spanish TeX Group) FAQ +relocated 1 +longdesc SGML source, converted LaTeX version, and readable copies of +longdesc the FAQ from the Spanish TeX users group. +containersize 444 +containerchecksum 33f66e4f928591188289f07e003cac10229735e69ee7390020748e119930ea7b74ad69e5eea991d8e34325ac4d548ce0b843a00b3ca50b9e6fae3e96526a4ad8 +doccontainersize 495668 +doccontainerchecksum 5b5d0ebda1bde2c1c67fd4853a41bb10956487fa5ad2686d6814dbdd51f68dde2a3d294797b7b1602d587a44ea6acbd8260ab9965efab81d91eb9d9fdb93da69 +docfiles size=306 + RELOC/doc/generic/es-tex-faq/FAQ-CervanTeX.html details="The document itself (HTML)" language="es" + RELOC/doc/generic/es-tex-faq/FAQ-CervanTeX.latin1 + RELOC/doc/generic/es-tex-faq/FAQ-CervanTeX.pdf details="The document itself (PDF)" language="es" + RELOC/doc/generic/es-tex-faq/FAQ-CervanTeX.sgml + RELOC/doc/generic/es-tex-faq/FAQ-CervanTeX.tex +catalogue-ctan /help/es-tex-faq +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics faq spanish-doc +catalogue-version 1.97 name esami category Package -revision 37828 -shortdesc Typeset exams with scrambled questions and answers. +revision 47639 +shortdesc Typeset exams with scrambled questions and answers relocated 1 longdesc The package enables the user to typeset exams with multiple longdesc choice, open questions and many other types of exercise. Both @@ -58520,26 +98876,20 @@ longdesc questions and answers may be randomly distributed within the longdesc exam, and the solutions are typeset automatically. Exercises longdesc may contain a wide number of random parameters and it is longdesc possible to do arithmetical operations on them. The package is -longdesc localised in Italian, English, French, German, Greek and -longdesc Spanish. -runfiles size=27 - RELOC/tex/latex/esami/es-UKenglish.lng - RELOC/tex/latex/esami/es-USenglish.lng - RELOC/tex/latex/esami/es-french.lng - RELOC/tex/latex/esami/es-german.lng - RELOC/tex/latex/esami/es-greek.lng - RELOC/tex/latex/esami/es-italian.lng - RELOC/tex/latex/esami/es-serbian.lng - RELOC/tex/latex/esami/es-spanish.lng - RELOC/tex/latex/esami/esami.sty -docfiles size=450 - RELOC/doc/latex/esami/README - RELOC/doc/latex/esami/doc/esami-doc-en.pdf +longdesc localised in Italian, English, French, German, Greek, Serbian, +longdesc and Spanish. +containersize 20980 +containerchecksum bbf24974b4feaba88b92b3179af6bdb45b86053ae8037fa41c99d0823cf3c79807283c01370365ea0264ba1eee3c4c289fadc5c2619900e85657366c14920a7d +doccontainersize 1432948 +doccontainerchecksum d9f57db15517f47d648e4ef91111a843fdd7f0d0706d1a863f5b4f7c65008c00507c552975c01b60c00cc724e63aea24f7a6b40930148bc981e200866cc30ac7 +docfiles size=441 + RELOC/doc/latex/esami/README details="Readme" + RELOC/doc/latex/esami/VERSION + RELOC/doc/latex/esami/doc/esami-doc-en.pdf details="Package documentation (English)" language="en" RELOC/doc/latex/esami/doc/esami-doc-en.tex - RELOC/doc/latex/esami/doc/esami-doc-it.pdf + RELOC/doc/latex/esami/doc/esami-doc-it.pdf details="Package documentation (Italian)" language="it" RELOC/doc/latex/esami/doc/esami-doc-it.tex RELOC/doc/latex/esami/doc/esami.bib - RELOC/doc/latex/esami/doc/examples/esami-xyz.cfg RELOC/doc/latex/esami/doc/examples/master-sol.tex RELOC/doc/latex/esami/doc/examples/master.tex RELOC/doc/latex/esami/doc/examples/problem1.tex @@ -58559,7 +98909,6 @@ docfiles size=450 RELOC/doc/latex/esami/doc/examples/test9.tex RELOC/doc/latex/esami/doc/examples/testA-luatex-sol.pdf RELOC/doc/latex/esami/doc/examples/testA-luatex.pdf - RELOC/doc/latex/esami/doc/examples/testA-sol.loe RELOC/doc/latex/esami/doc/examples/testA-sol.pdf RELOC/doc/latex/esami/doc/examples/testA-sol.tex RELOC/doc/latex/esami/doc/examples/testA-xetex-sol.pdf @@ -58568,59 +98917,56 @@ docfiles size=450 RELOC/doc/latex/esami/doc/examples/testA.tex RELOC/doc/latex/esami/doc/examples/totale-versioni.tex RELOC/doc/latex/esami/esami-xyz.cfg +runfiles size=28 + RELOC/tex/latex/esami/es-UKenglish.lng + RELOC/tex/latex/esami/es-USenglish.lng + RELOC/tex/latex/esami/es-french.lng + RELOC/tex/latex/esami/es-german.lng + RELOC/tex/latex/esami/es-greek.lng + RELOC/tex/latex/esami/es-italian.lng + RELOC/tex/latex/esami/es-serbian.lng + RELOC/tex/latex/esami/es-spanish.lng + RELOC/tex/latex/esami/esami.sty catalogue-ctan /macros/latex/contrib/esami -catalogue-date 2015-02-27 11:20:16 +0100 +catalogue-date 2018-05-07 15:16:29 +0200 catalogue-license lppl catalogue-topics exam -catalogue-version 2.0 +catalogue-version 2.5 name esdiff category Package revision 21385 -shortdesc Simplify typesetting of derivatives. +shortdesc Simplify typesetting of derivatives relocated 1 longdesc The package makes writing derivatives very easy. It offers longdesc macros for derivatives, partial derivatives and multiple longdesc derivatives, and allows specification of the point at which the longdesc value is calculated. Some typographic alternatives may be longdesc selected by package options -runfiles size=2 - RELOC/tex/latex/esdiff/esdiff.sty +containersize 1632 +containerchecksum 84b2490e6ff743f0133deacc22c8e0368368e961d634239694ccf7b5cde7826996e080077baa0e0045230b6d2c3cad53ee055c05b17c89ca735dc2e40a01fb5a +doccontainersize 82640 +doccontainerchecksum 97dbb512437c868f2b15ebd1271f51a7f196e40c70043c224617378e6c9333f19e2c18666f64fe6ea323c7aa5a58438944d8c6f5b1a9c0d36a239caee972eb08 docfiles size=25 - RELOC/doc/latex/esdiff/README - RELOC/doc/latex/esdiff/esdiff.pdf + RELOC/doc/latex/esdiff/README details="Readme" + RELOC/doc/latex/esdiff/esdiff.pdf details="Package documentation" +srccontainersize 2972 +srccontainerchecksum 983f7f7cee22e442768ae56fac614d569eef18bff35c52c669d51079a61beca395c06e7fb9bcedde338bbaa1b3775094ce9b77fe7c043df2e1e25975410ab7d2 srcfiles size=4 RELOC/source/latex/esdiff/esdiff.dtx RELOC/source/latex/esdiff/esdiff.ins +runfiles size=2 + RELOC/tex/latex/esdiff/esdiff.sty catalogue-ctan /macros/latex/contrib/esdiff -catalogue-date 2012-07-11 16:16:45 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1 +catalogue-topics maths catalogue-version 1.2 -name ESIEEcv -category Package -revision 15878 -shortdesc Curriculum vitae for French use. -relocated 1 -longdesc The package allows the user to set up a curriculum vitae as a -longdesc French employer will expect. -runfiles size=1 - RELOC/tex/latex/ESIEEcv/ESIEEcv.sty -docfiles size=42 - RELOC/doc/latex/ESIEEcv/ESIEEcv.pdf - RELOC/doc/latex/ESIEEcv/cvtest.pdf - RELOC/doc/latex/ESIEEcv/cvtest.tex -srcfiles size=6 - RELOC/source/latex/ESIEEcv/ESIEEcv.dtx - RELOC/source/latex/ESIEEcv/ESIEEcv.ins -catalogue-ctan /macros/latex/contrib/ESIEEcv -catalogue-date 2012-02-27 22:13:39 +0100 -catalogue-license lppl - name esint category Package revision 15878 -shortdesc Extended set of integrals for Computer Modern. +shortdesc Extended set of integrals for Computer Modern relocated 1 longdesc The esint package permits access to alternate integral symbols longdesc when you're using the Computer Modern fonts. In the original @@ -58629,6 +98975,18 @@ longdesc of these symbols are available in other font sets (pxfonts, longdesc txfonts, etc.), but there is no good solution if you want to longdesc use Computer Modern. The package provides Metafont source and longdesc LaTeX macro support. +containersize 5696 +containerchecksum 6fcbc9f1d5c95d31fb9a95c9a65a6108e8c8253d002bce8d663082b44486d15b1cfba861c7106d55a3308c955c9753886d63bc6366934152b3793826f98e8900 +doccontainersize 102964 +doccontainerchecksum 70749821ce916123c4684fdb8e0ea66776d8e10901c745022aeb763081b9497ebba448a37ac7421d88f86e4743ce422f4fab58f21d95c8832bc7a36d0c0e04d4 +docfiles size=30 + RELOC/doc/latex/esint/README + RELOC/doc/latex/esint/esint.pdf details="Package documentation" +srccontainersize 6348 +srccontainerchecksum 1d6d6bbfaa215b912e56c8710ff7a650a08e59577dd9a23ae8e0934241c08ab970f4ae6aea14697725e7b05308a857cc05df256e59f988d2e6cc68cf3cbd3632 +srcfiles size=15 + RELOC/source/latex/esint/esint.dtx + RELOC/source/latex/esint/esint.ins runfiles size=18 RELOC/fonts/source/public/esint/bigint.mf RELOC/fonts/source/public/esint/esint10.mf @@ -58636,15 +98994,11 @@ runfiles size=18 RELOC/fonts/tfm/public/esint/esint10.tfm RELOC/tex/latex/esint/esint.sty RELOC/tex/latex/esint/uesint.fd -docfiles size=30 - RELOC/doc/latex/esint/README - RELOC/doc/latex/esint/esint.pdf -srcfiles size=15 - RELOC/source/latex/esint/esint.dtx - RELOC/source/latex/esint/esint.ins +catalogue-also esint-type1 catalogue-ctan /macros/latex/contrib/esint -catalogue-date 2014-04-26 10:32:59 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics font font-symbol-maths font-mf catalogue-version 1.1 name esint-type1 @@ -58660,93 +99014,119 @@ longdesc files can be generated from the Metafont sources obtained by longdesc following the instructions in the normal way. depend esint execute addMixedMap esint.map +containersize 31568 +containerchecksum 5a663d01e9241adf1961c922c588888561f495e6378fdd7aaa90954c3e51c5f0f8e6dc1e1947c9f03ce3472e1aab3dde1b35e6b5f0814f5e2cda564a31a45a1f +doccontainersize 41264 +doccontainerchecksum 081a225225f503fac403d306fac3ee3b2747341ef5c4ee9420f49a56ca959c7757f154c24f90ed9506041b13464ea216e6edb52f29790d189ea7b33c7c797f8e +docfiles size=14 + RELOC/doc/fonts/esint-type1/README details="Readme" + RELOC/doc/fonts/esint-type1/README.plainTeX details="Using the fonts with Plain TeX" + RELOC/doc/fonts/esint-type1/table.pdf details="Table of integral signs" + RELOC/doc/fonts/esint-type1/table.tex runfiles size=12 RELOC/dvips/esint-type1/config.esint RELOC/fonts/map/dvips/esint-type1/esint.map RELOC/fonts/type1/public/esint-type1/esint10.pfb RELOC/tex/plain/esint-type1/esint.tex -docfiles size=14 - RELOC/doc/fonts/esint-type1/README - RELOC/doc/fonts/esint-type1/README.plainTeX - RELOC/doc/fonts/esint-type1/table.pdf - RELOC/doc/fonts/esint-type1/table.tex catalogue-ctan /fonts/ps-type1/esint -catalogue-date 2014-04-26 10:32:59 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics font font-symbol-maths font-type1 + +name esk +category Package +revision 18115 +shortdesc Package to encapsulate Sketch files in LaTeX sources +relocated 1 +longdesc The ESK package allows to encapsulate Sketch files in LaTeX +longdesc sources. This is very useful for keeping illustrations in sync +longdesc with the text. It also frees the user from inventing +longdesc descriptive names for new files that fit into the confines of +longdesc file system conventions. Sketch is a 3D scene description +longdesc language by Eugene K. Ressler and can generate TikZ and +longdesc PSTricks code. ESK behaves in a similar fashion to EMP (which +longdesc encapsulates MetaPost files), and was in fact developed from +longdesc it. +containersize 3928 +containerchecksum 584d9b9abf202d93826c690545206c3b7276d6b3a4b717ed3671f9cbd2a1c6c6503d3352471fe60232e75d63632e021fb0ed34ce49d5a1e72ae58b08fbdd7211 +doccontainersize 414448 +doccontainerchecksum acc40c8829e69c681d3bcfd5aa7223b3f5320c1ed5fa3f4a9a700f203b622f300b73912ef5df2c163d2cce1b40aecfdf1eb880dcba48e94783c14054981e0e11 +docfiles size=117 + RELOC/doc/latex/esk/COPYING + RELOC/doc/latex/esk/README details="Readme" + RELOC/doc/latex/esk/esk.pdf details="Package documentation" + RELOC/doc/latex/esk/eskman.pdf details="Package manual" +srccontainersize 15476 +srccontainerchecksum 8f7123816c718d86eb1b362369dc10a745a003e8e79c54b8edb90813382528466a7e0fe3eb6b579372754d03888065b6f5c48a0682c6288905e93cebfb1b4a4b +srcfiles size=18 + RELOC/source/latex/esk/Makefile + RELOC/source/latex/esk/esk.drv + RELOC/source/latex/esk/esk.dtx + RELOC/source/latex/esk/esk.ins + RELOC/source/latex/esk/eskman.drv +runfiles size=3 + RELOC/tex/latex/esk/esk.sty +catalogue-ctan /macros/latex/contrib/esk +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics graphics-inline +catalogue-version 1.0 name eskd category Package revision 15878 -shortdesc Modern Russian typesetting. +shortdesc Modern Russian typesetting relocated 1 longdesc The class offers modern Russian text formatting, in accordance longdesc with accepted design standards. Fonts not (apparently) longdesc available on CTAN are required for use of the class. -runfiles size=5 - RELOC/tex/latex/eskd/eskd.cls +containersize 3760 +containerchecksum d0c1745172683bcacfb061f48bee10f78dbc849657295f5e7714cca949afd586c441f727e909c627b595ccdb50b81d813538e6837a00809ee884ffe1acd6b25e +doccontainersize 262316 +doccontainerchecksum 01a0be9d02e7fece62cfd1bc8ceb26b2036f3d2e374794f3c4aacbfe004cf4059346510009760fe48fc0141c4e9f3cf1e40088203d31b7bbb31ec375cf5f70ea docfiles size=231 - RELOC/doc/latex/eskd/README - RELOC/doc/latex/eskd/eskd.pdf + RELOC/doc/latex/eskd/README details="Package README" + RELOC/doc/latex/eskd/eskd.pdf details="Package documentation" RELOC/doc/latex/eskd/example.eps RELOC/doc/latex/eskd/example.tex +srccontainersize 7596 +srccontainerchecksum 88b3edc0487b638142ba353ef108558b8fa6d420f2560a4fb1c189829af87d877a8900566c042556b15d654d11d2a0def58fa958fb9b234fca84419b2621cba4 srcfiles size=9 RELOC/source/latex/eskd/eskd.dtx RELOC/source/latex/eskd/eskd.ins +runfiles size=5 + RELOC/tex/latex/eskd/eskd.cls +catalogue-also eskdx catalogue-ctan /macros/latex/contrib/eskd -catalogue-date 2012-03-05 13:28:00 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics class russian name eskdx category Package revision 29235 -shortdesc Modern Russian typesetting. +shortdesc Modern Russian typesetting relocated 1 longdesc Eskdx is a collection of LaTeX classes and packages to typeset longdesc textual and graphical documents in accordance with Russian (and longdesc probably post USSR) standards for designers. -runfiles size=46 - RELOC/tex/latex/eskdx/eskdafterpkg.sty - RELOC/tex/latex/eskdx/eskdappsheet.sty - RELOC/tex/latex/eskdx/eskdbiblist.sty - RELOC/tex/latex/eskdx/eskdcap.sty - RELOC/tex/latex/eskdx/eskdchngsheet.sty - RELOC/tex/latex/eskdx/eskddstu.sty - RELOC/tex/latex/eskdx/eskdexplan.sty - RELOC/tex/latex/eskdx/eskdfont.sty - RELOC/tex/latex/eskdx/eskdfootnote.sty - RELOC/tex/latex/eskdx/eskdfreesize.sty - RELOC/tex/latex/eskdx/eskdgraph.cls - RELOC/tex/latex/eskdx/eskdhash.sty - RELOC/tex/latex/eskdx/eskdindent.sty - RELOC/tex/latex/eskdx/eskdinfo.sty - RELOC/tex/latex/eskdx/eskdlang.sty - RELOC/tex/latex/eskdx/eskdlist.sty - RELOC/tex/latex/eskdx/eskdpara.sty - RELOC/tex/latex/eskdx/eskdplain.sty - RELOC/tex/latex/eskdx/eskdrussian.def - RELOC/tex/latex/eskdx/eskdsect.sty - RELOC/tex/latex/eskdx/eskdspec.sty - RELOC/tex/latex/eskdx/eskdspecii.sty - RELOC/tex/latex/eskdx/eskdstamp.sty - RELOC/tex/latex/eskdx/eskdtab.cls - RELOC/tex/latex/eskdx/eskdtext.cls - RELOC/tex/latex/eskdx/eskdtitle.sty - RELOC/tex/latex/eskdx/eskdtitlebase.sty - RELOC/tex/latex/eskdx/eskdtotal.sty - RELOC/tex/latex/eskdx/eskdukrainian.def +containersize 17252 +containerchecksum e5ef11cba6b0251844200093445f5183de60e0c0198da9c7000ef5c05a2a9a4303a15dc77ed03e9874e452ffdd283016cedb8901e78cd0312ea5bbcc529b74d5 +doccontainersize 451672 +doccontainerchecksum 748dec387a09546b28718e943e05772cd56c75a0066793332b343e7f604e607efd37a071c1f4f32fbd20d7427277bf2d598b355b8ea3a0a04943ccb90f4f249d docfiles size=246 RELOC/doc/latex/eskdx/ChangeLog RELOC/doc/latex/eskdx/Makefile RELOC/doc/latex/eskdx/Makefile.unpacked RELOC/doc/latex/eskdx/NEWS RELOC/doc/latex/eskdx/NEWS.in - RELOC/doc/latex/eskdx/README + RELOC/doc/latex/eskdx/README details="Package README" RELOC/doc/latex/eskdx/README.in RELOC/doc/latex/eskdx/include.m4 RELOC/doc/latex/eskdx/include.mak RELOC/doc/latex/eskdx/manifest.txt RELOC/doc/latex/eskdx/manual/Makefile - RELOC/doc/latex/eskdx/manual/eskdx.pdf + RELOC/doc/latex/eskdx/manual/eskdx.pdf details="Package documentation" language="ru" RELOC/doc/latex/eskdx/manual/eskdx.tex.in RELOC/doc/latex/eskdx/manual/example.tex RELOC/doc/latex/eskdx/manual/img-form1.svg @@ -58800,55 +99180,55 @@ docfiles size=246 RELOC/doc/latex/eskdx/test/spec.tex RELOC/doc/latex/eskdx/test/specii.tex RELOC/doc/latex/eskdx/test/twoside.tex +runfiles size=46 + RELOC/tex/latex/eskdx/eskdafterpkg.sty + RELOC/tex/latex/eskdx/eskdappsheet.sty + RELOC/tex/latex/eskdx/eskdbiblist.sty + RELOC/tex/latex/eskdx/eskdcap.sty + RELOC/tex/latex/eskdx/eskdchngsheet.sty + RELOC/tex/latex/eskdx/eskddstu.sty + RELOC/tex/latex/eskdx/eskdexplan.sty + RELOC/tex/latex/eskdx/eskdfont.sty + RELOC/tex/latex/eskdx/eskdfootnote.sty + RELOC/tex/latex/eskdx/eskdfreesize.sty + RELOC/tex/latex/eskdx/eskdgraph.cls + RELOC/tex/latex/eskdx/eskdhash.sty + RELOC/tex/latex/eskdx/eskdindent.sty + RELOC/tex/latex/eskdx/eskdinfo.sty + RELOC/tex/latex/eskdx/eskdlang.sty + RELOC/tex/latex/eskdx/eskdlist.sty + RELOC/tex/latex/eskdx/eskdpara.sty + RELOC/tex/latex/eskdx/eskdplain.sty + RELOC/tex/latex/eskdx/eskdrussian.def + RELOC/tex/latex/eskdx/eskdsect.sty + RELOC/tex/latex/eskdx/eskdspec.sty + RELOC/tex/latex/eskdx/eskdspecii.sty + RELOC/tex/latex/eskdx/eskdstamp.sty + RELOC/tex/latex/eskdx/eskdtab.cls + RELOC/tex/latex/eskdx/eskdtext.cls + RELOC/tex/latex/eskdx/eskdtitle.sty + RELOC/tex/latex/eskdx/eskdtitlebase.sty + RELOC/tex/latex/eskdx/eskdtotal.sty + RELOC/tex/latex/eskdx/eskdukrainian.def catalogue-ctan /macros/latex/contrib/eskdx -catalogue-date 2012-03-05 13:28:00 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics class russian catalogue-version 0.98 -name esk -category Package -revision 18115 -shortdesc Package to encapsulate Sketch files in LaTeX sources. -relocated 1 -longdesc The ESK package allows to encapsulate Sketch files in LaTeX -longdesc sources. This is very useful for keeping illustrations in sync -longdesc with the text. It also frees the user from inventing -longdesc descriptive names for new files that fit into the confines of -longdesc file system conventions. Sketch is a 3D scene description -longdesc language by Eugene K. Ressler and can generate TikZ and -longdesc PSTricks code. ESK behaves in a similar fashion to EMP (which -longdesc encapsulates Metapost files), and was in fact developed from -longdesc it. -runfiles size=3 - RELOC/tex/latex/esk/esk.sty -docfiles size=117 - RELOC/doc/latex/esk/COPYING - RELOC/doc/latex/esk/README - RELOC/doc/latex/esk/esk.pdf - RELOC/doc/latex/esk/eskman.pdf -srcfiles size=18 - RELOC/source/latex/esk/Makefile - RELOC/source/latex/esk/esk.drv - RELOC/source/latex/esk/esk.dtx - RELOC/source/latex/esk/esk.ins - RELOC/source/latex/esk/eskman.drv -catalogue-ctan /macros/latex/contrib/esk -catalogue-date 2012-07-11 16:16:45 +0200 -catalogue-license gpl -catalogue-version 1.0 - name eso-pic category Package -revision 37925 -shortdesc Add picture commands (or backgrounds) to every page. +revision 47694 +shortdesc Add picture commands (or backgrounds) to every page relocated 1 longdesc The package adds one or more user commands to LaTeX's shipout longdesc routine, which may be used to place the output at fixed longdesc positions. The grid option may be used to find the correct longdesc places. -runfiles size=4 - RELOC/tex/latex/eso-pic/eso-pic.sty - RELOC/tex/latex/eso-pic/showframe.sty +containersize 3828 +containerchecksum 52c1987317382cc5b3af5fa05627d3137c692b402dec1a19104f814be191222b9699935a52e68c5813beabc0f659735ec22dd37926d6a681ca6e415ac0235cb0 +doccontainersize 252368 +doccontainerchecksum e78570568903fc10ad3309c8247599da7faf2ec9851df46b2ff36451a874f605fd12b9aa0dfd68f237cc65e77b527baea296036721fbc0e2185d4cb61f0eb1b3 docfiles size=70 RELOC/doc/latex/eso-pic/README RELOC/doc/latex/eso-pic/eso-article-test.tex @@ -58858,15 +99238,20 @@ docfiles size=70 RELOC/doc/latex/eso-pic/eso-ex4.tex RELOC/doc/latex/eso-pic/eso-ex5.tex RELOC/doc/latex/eso-pic/eso-memoir-test.tex - RELOC/doc/latex/eso-pic/eso-pic.pdf + RELOC/doc/latex/eso-pic/eso-pic.pdf details="Package documentation" +srccontainersize 6604 +srccontainerchecksum 7736c3f6bc4615034127de7b88d0be8e88e1564760bb340d5fe555633ebedf1f5b12881e4c1cd504af47350000a931582f8f75f1de431f6151948c8a27af1ca1 srcfiles size=8 RELOC/source/latex/eso-pic/eso-pic.dtx RELOC/source/latex/eso-pic/eso-pic.ins +runfiles size=4 + RELOC/tex/latex/eso-pic/eso-pic.sty + RELOC/tex/latex/eso-pic/showframe.sty catalogue-ctan /macros/latex/contrib/eso-pic -catalogue-date 2015-07-22 20:23:31 +0200 +catalogue-date 2018-05-12 20:23:32 +0200 catalogue-license lppl1.2 catalogue-topics defer-stuff -catalogue-version 2.0g +catalogue-version 2.0h name esrelation category Package @@ -58891,6 +99276,19 @@ longdesc relations, Cook recruited artist Tauba Auerbach to help develop longdesc a set of symbols. This package provides an math symbol font for longdesc describing relations between ordered pairs by using Metafont. execute addMap esrelation.map +containersize 33064 +containerchecksum a6d8a0a9bde08e3582826affa52142fe5b5a0dba43c4ff15f5fdd19cb24b561bcdcdd761c2a84238c9b31d3fe0a023949d2d0c716e105852443e06ced9df13f1 +doccontainersize 158904 +doccontainerchecksum 6698e9f57df458d9652ae98abbea08ce1f14c6c31677c32ab8cdf9b8fa0866a57c50028ea36d2c7cde133588358dce0b2bb37b7085995e4bab9ce7d3de1a541c +docfiles size=41 + RELOC/doc/fonts/esrelation/README details="Readme" + RELOC/doc/fonts/esrelation/README.md + RELOC/doc/fonts/esrelation/esrelation.pdf details="Package documentation" +srccontainersize 6484 +srccontainerchecksum 17b0495b4b19ca5166835549c62c9c5e1dbcb59e2252e321860dc7254b9ebc9d073f317a344a2a8a4ec772ee1a931a5181d9d3b1af45f913b0ad04ebf189bd3a +srcfiles size=7 + RELOC/source/fonts/esrelation/esrelation.dtx + RELOC/source/fonts/esrelation/esrelation.ins runfiles size=17 RELOC/fonts/map/dvips/esrelation/esrelation.map RELOC/fonts/source/public/esrelation/esrelation.mf @@ -58899,21 +99297,15 @@ runfiles size=17 RELOC/fonts/type1/public/esrelation/esrelation10.pfb RELOC/tex/latex/esrelation/esrelation.sty RELOC/tex/latex/esrelation/uesrelation.fd -docfiles size=41 - RELOC/doc/fonts/esrelation/README - RELOC/doc/fonts/esrelation/README.md - RELOC/doc/fonts/esrelation/esrelation.pdf -srcfiles size=7 - RELOC/source/fonts/esrelation/esrelation.dtx - RELOC/source/fonts/esrelation/esrelation.ins catalogue-ctan /fonts/esrelation -catalogue-date 2015-05-06 19:59:49 +0200 +catalogue-date 2017-10-29 14:49:17 +0100 catalogue-license lppl1.3 +catalogue-topics font font-mf font-type1 font-maths name esstix category Package revision 22426 -shortdesc PostScript versions of the ESSTIX, with macro support. +shortdesc PostScript versions of the ESSTIX, with macro support relocated 1 longdesc These fonts represent translation to PostScript Type 1 of the longdesc ESSTIX fonts. ESSTIX seem to have been a precursor to the STIX @@ -58922,6 +99314,32 @@ longdesc accompanying virtual fonts with customized metrics and LaTeX longdesc support files allow their use as calligraphic, fraktur and longdesc double-struck (blackboard bold) in maths mode. execute addMap ESSTIX.map +containersize 202196 +containerchecksum e503f25cb713918329f297a4ed088b63967eb06828fb753653aaf60ef99c5fb7db6507d6f0f74080b9fad2050ca1917f7ab873be2fb0bd3fcd126f29a43eb775 +doccontainersize 286216 +doccontainerchecksum 1233a284b88e5c8bfb29350b3b534e7a4c81b5692a9ac7aff5d69f77210e026dede300b511bc45efd18d6a96f6df9be2add166c80f0ee5d17c93732c0c242bf0 +docfiles size=89 + RELOC/doc/fonts/esstix/ESSTIX10.tfm + RELOC/doc/fonts/esstix/ESSTIX11.tfm + RELOC/doc/fonts/esstix/ESSTIX12.tfm + RELOC/doc/fonts/esstix/ESSTIX13.tfm + RELOC/doc/fonts/esstix/ESSTIX14.tfm + RELOC/doc/fonts/esstix/ESSTIX15.tfm + RELOC/doc/fonts/esstix/ESSTIX16.tfm + RELOC/doc/fonts/esstix/ESSTIX17.tfm + RELOC/doc/fonts/esstix/ESSTIX1_.tfm + RELOC/doc/fonts/esstix/ESSTIX2_.tfm + RELOC/doc/fonts/esstix/ESSTIX3_.tfm + RELOC/doc/fonts/esstix/ESSTIX4_.tfm + RELOC/doc/fonts/esstix/ESSTIX5_.tfm + RELOC/doc/fonts/esstix/ESSTIX6_.tfm + RELOC/doc/fonts/esstix/ESSTIX7_.tfm + RELOC/doc/fonts/esstix/ESSTIX8_.tfm + RELOC/doc/fonts/esstix/ESSTIX9_.tfm + RELOC/doc/fonts/esstix/Esstix.pdf details="Package documentation" + RELOC/doc/fonts/esstix/Esstix.tex + RELOC/doc/fonts/esstix/README details="Readme" + RELOC/doc/fonts/esstix/esstixOther.map runfiles size=117 RELOC/fonts/afm/esstix/ESSTIX10.PFM RELOC/fonts/afm/esstix/ESSTIX10.afm @@ -58990,37 +99408,16 @@ runfiles size=117 RELOC/tex/latex/esstix/uesstixbb.fd RELOC/tex/latex/esstix/uesstixcal.fd RELOC/tex/latex/esstix/uesstixfrak.fd -docfiles size=89 - RELOC/doc/fonts/esstix/ESSTIX10.tfm - RELOC/doc/fonts/esstix/ESSTIX11.tfm - RELOC/doc/fonts/esstix/ESSTIX12.tfm - RELOC/doc/fonts/esstix/ESSTIX13.tfm - RELOC/doc/fonts/esstix/ESSTIX14.tfm - RELOC/doc/fonts/esstix/ESSTIX15.tfm - RELOC/doc/fonts/esstix/ESSTIX16.tfm - RELOC/doc/fonts/esstix/ESSTIX17.tfm - RELOC/doc/fonts/esstix/ESSTIX1_.tfm - RELOC/doc/fonts/esstix/ESSTIX2_.tfm - RELOC/doc/fonts/esstix/ESSTIX3_.tfm - RELOC/doc/fonts/esstix/ESSTIX4_.tfm - RELOC/doc/fonts/esstix/ESSTIX5_.tfm - RELOC/doc/fonts/esstix/ESSTIX6_.tfm - RELOC/doc/fonts/esstix/ESSTIX7_.tfm - RELOC/doc/fonts/esstix/ESSTIX8_.tfm - RELOC/doc/fonts/esstix/ESSTIX9_.tfm - RELOC/doc/fonts/esstix/Esstix.pdf - RELOC/doc/fonts/esstix/Esstix.tex - RELOC/doc/fonts/esstix/README - RELOC/doc/fonts/esstix/esstixOther.map catalogue-ctan /fonts/esstix -catalogue-date 2014-04-26 10:32:59 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license ofl +catalogue-topics font font-maths font-bbd font-type1 catalogue-version 1.0 name estcpmm category Package revision 17335 -shortdesc Style for Munitions Management Project Reports. +shortdesc Style for Munitions Management Project Reports relocated 1 longdesc Provides a class which supports typesetting Cost and longdesc Performance Reports and Final Reports for Munitions Management @@ -59028,54 +99425,54 @@ longdesc Reports, US Environmental Security Technology Certification longdesc Program. The class was commissioned and paid for by US Army longdesc Corps of Engineers, Engineer Research and Development Center, longdesc 3909 Halls Ferry Road, Vicksburg, MS 39180-6199. -runfiles size=2 - RELOC/tex/latex/estcpmm/estcpmm.cls +containersize 3128 +containerchecksum 20213ddd795e862dc924ddd71df08752f6adda4be7a06237507cec84abf6a6ccd664fa9676cb9b275ca9de8647011da0bc731fef9344945404f885b56b75aea1 +doccontainersize 284904 +doccontainerchecksum c240305f2ad7a841c1d9309d1934001fc42d68819505b5c862ca8c97c5ecd7b6d2fd8a79a4273be79126d1503d968fa4649ad06e0c001f3b731e300341802dfd docfiles size=227 RELOC/doc/latex/estcpmm/README RELOC/doc/latex/estcpmm/estcp.pdf RELOC/doc/latex/estcpmm/estcpmm.bib - RELOC/doc/latex/estcpmm/estcpmm.pdf + RELOC/doc/latex/estcpmm/estcpmm.pdf details="Package documentation" RELOC/doc/latex/estcpmm/red_corps_castle2.pdf RELOC/doc/latex/estcpmm/sample.pdf RELOC/doc/latex/estcpmm/sample.tex +srccontainersize 8856 +srccontainerchecksum f867a24f4bde53c0de195874f1717fe49a3869755834ba1dd0a9004e3085f06076eefaca2e83c59cdf5cdf65fa740d0df898e0ee75f88a5cb516a3cfa404c164 srcfiles size=9 RELOC/source/latex/estcpmm/Makefile RELOC/source/latex/estcpmm/estcpmm.dtx RELOC/source/latex/estcpmm/estcpmm.ins +runfiles size=2 + RELOC/tex/latex/estcpmm/estcpmm.cls catalogue-ctan /macros/latex/contrib/estcpmm -catalogue-date 2014-09-26 13:30:12 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics report-like class catalogue-version 0.4 -name es-tex-faq -category Package -revision 15878 -catalogue faq-es -shortdesc CervanTeX (Spanish TeX Group) FAQ -relocated 1 -longdesc SGML source, converted LaTeX version, and readable copies of -longdesc the FAQ from the Spanish TeX users group. -docfiles size=306 - RELOC/doc/generic/es-tex-faq/FAQ-CervanTeX.html - RELOC/doc/generic/es-tex-faq/FAQ-CervanTeX.latin1 - RELOC/doc/generic/es-tex-faq/FAQ-CervanTeX.pdf - RELOC/doc/generic/es-tex-faq/FAQ-CervanTeX.sgml - RELOC/doc/generic/es-tex-faq/FAQ-CervanTeX.tex -catalogue-ctan /help/es-tex-faq -catalogue-date 2012-07-11 17:40:28 +0200 -catalogue-license lppl -catalogue-version 1.97 - name esvect category Package revision 32098 -shortdesc Vector arrows. +shortdesc Vector arrows relocated 1 longdesc Write vectors using an arrow which differs from the Computer longdesc Modern one. You have the choice between several kinds of longdesc arrows. The package consists of the relevant Metafont code and longdesc a package to use it. execute addMap esvect.map +containersize 66880 +containerchecksum 1a6940862940d8ca29bcb19c69817b84a7f71f7a8762d3a63829fb0e0e88eccd940f3e2973d8d05dbe9323aa1f80dc9045b531e3509239eab399f02a55e7988c +doccontainersize 44300 +doccontainerchecksum 502d2cce629280d7c192ad11764c0c12e65f9f1318286d1acdc3e08c9d7d36b07fc3e5939c053aa57ad59ee91e73b4035c9bd1aafee3672ddeed4a64bf3cd7ad +docfiles size=13 + RELOC/doc/latex/esvect/README details="Readme" + RELOC/doc/latex/esvect/esvect.pdf details="Package documentation" +srccontainersize 6748 +srccontainerchecksum 658e98e4c97dfdfcb34b396ff644fda060a645d15760bd975ad1397ca73f4ed24331a77bfd914bfe6f8f218aec9ab3fcc0a2a48efc19a0c6adc1024943584a47 +srcfiles size=15 + RELOC/source/latex/esvect/esvect.dtx + RELOC/source/latex/esvect/esvect.ins runfiles size=58 RELOC/fonts/map/dvips/esvect/esvect.map RELOC/fonts/source/public/esvect/mathvec.mf @@ -59101,53 +99498,60 @@ runfiles size=58 RELOC/fonts/type1/public/esvect/vect9.pfb RELOC/tex/latex/esvect/esvect.sty RELOC/tex/latex/esvect/uesvect.fd -docfiles size=13 - RELOC/doc/latex/esvect/README - RELOC/doc/latex/esvect/esvect.pdf -srcfiles size=15 - RELOC/source/latex/esvect/esvect.dtx - RELOC/source/latex/esvect/esvect.ins catalogue-ctan /macros/latex/contrib/esvect -catalogue-date 2014-04-26 10:32:59 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics font font-symbol font-mf catalogue-version 1.3 name etaremune category Package revision 15878 -shortdesc Reverse-counting enumerate environment. +shortdesc Reverse-counting enumerate environment relocated 1 longdesc The package implements the etaremune environment which is an longdesc enumerate environment in which the labels decrease instead of longdesc increasing. The package is noticeably more efficient than the longdesc revnum package, which uses painfully many counters. -runfiles size=1 - RELOC/tex/latex/etaremune/etaremune.sty +containersize 1816 +containerchecksum 511f84d8cb951caaea65cbe839fe83c9c2dcd7dbe0e0c3db3611d914dea475b60de029d4dbe482616e9d219929c50b2a87f6c33451d0d880e3b368fbc9f7f612 +doccontainersize 72980 +doccontainerchecksum 4d7728be13e1454b2456e543ffb89a19fc5204e8025f949dcda7ce3b8a8b898dd9a6d96e44477cd158baad4d462afbcc17b6df6ddd9982232891e7b4ccb112b7 docfiles size=22 - RELOC/doc/latex/etaremune/README - RELOC/doc/latex/etaremune/etaremune.pdf + RELOC/doc/latex/etaremune/README details="Readme" + RELOC/doc/latex/etaremune/etaremune.pdf details="Package documentation" +srccontainersize 6716 +srccontainerchecksum 17c0b9d705cd5ea494428bbfacf73d12f0f40d5eb4be2a3b1a4e2aeb97af61d184ae6a471505d6dd604174cdf34976f9e64de5366be7877da26141720f542953 srcfiles size=5 RELOC/source/latex/etaremune/etaremune.dtx +runfiles size=1 + RELOC/tex/latex/etaremune/etaremune.sty +catalogue-also revnum catalogue-ctan /macros/latex/contrib/etaremune -catalogue-date 2012-01-23 15:27:59 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl -catalogue-version v1.2 +catalogue-topics list list-enum +catalogue-version 1.2 name etdipa category Package revision 36354 -shortdesc Simple, lightweight template for scientific documents. +shortdesc Simple, lightweight template for scientific documents relocated 1 longdesc This package provides a complete working directory for the longdesc scientific documentation of arbitrary projects. It was longdesc originally developed to provide a template for Austrian longdesc "Diplomarbeiten" or "Vorwissenschaftliche Arbeiten", which are longdesc scientfic projects of students at a secondary school. +containersize 556 +containerchecksum 88502eeb78f2f5901cdfc192638501690aea861de2105445de226261c62f526d6602ab5c63f02974d067e229b12441ee6663b54769236a1e0e125896b869301d +doccontainersize 1019908 +doccontainerchecksum 6aa2ecdb393932a485857222e66471b9c52388e726edffd0b4357e340e8a5092af96ad1847486a58d6a8485a4ce0e80e25e80ad58f60991004136739d26aa996 docfiles size=499 RELOC/doc/latex/etdipa/Data/folder_description.txt - RELOC/doc/latex/etdipa/Help/etdipa_doc_DE.pdf + RELOC/doc/latex/etdipa/Help/etdipa_doc_DE.pdf details="Package documentation (German)" language="de" RELOC/doc/latex/etdipa/Help/etdipa_doc_DE.tex - RELOC/doc/latex/etdipa/Help/etdipa_doc_EN.pdf + RELOC/doc/latex/etdipa/Help/etdipa_doc_EN.pdf details="Package documentation (English)" language="en" RELOC/doc/latex/etdipa/Help/etdipa_doc_EN.tex RELOC/doc/latex/etdipa/Help/files.txt RELOC/doc/latex/etdipa/Images/ET_logo.jpg @@ -59158,7 +99562,7 @@ docfiles size=499 RELOC/doc/latex/etdipa/Images/diplomand_erklaerung.pdf RELOC/doc/latex/etdipa/Images/subordner.pdf RELOC/doc/latex/etdipa/Images/titlepic.pdf - RELOC/doc/latex/etdipa/README + RELOC/doc/latex/etdipa/README details="Readme" RELOC/doc/latex/etdipa/Textparts/abkuerzungen.tex RELOC/doc/latex/etdipa/Textparts/abstract.tex RELOC/doc/latex/etdipa/Textparts/danksagungen.tex @@ -59168,52 +99572,31 @@ docfiles size=499 RELOC/doc/latex/etdipa/diplomarbeit.tex RELOC/doc/latex/etdipa/etdipa.sty catalogue-ctan /macros/latex/contrib/etdipa -catalogue-date 2015-02-22 16:17:29 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics scientific-docs catalogue-version 2.6 -name etex-pkg -category Package -revision 38279 -shortdesc E-TeX support package -relocated 1 -longdesc The package provides support for LaTeX documents to use many of -longdesc the extensions offered by e-TeX; in particular, it modifies -longdesc LaTeX's register allocation macros to make use of the extended -longdesc register range. The etextools package provides macros that make -longdesc more sophisticated use of e-TeX's facilities. -runfiles size=5 - RELOC/tex/latex/etex-pkg/etex.sty -docfiles size=1 - RELOC/doc/latex/etex-pkg/README -catalogue-also elocalloc -catalogue-ctan /macros/latex/contrib/etex-pkg -catalogue-date 2015-09-02 12:41:39 +0200 -catalogue-license lppl1.3 -catalogue-topics macro-supp -catalogue-version 2.4 - name etex category Package revision 37057 -shortdesc An extended version of TeX, from the NTS project. +shortdesc An extended version of TeX, from the NTS project relocated 1 longdesc An extended version of TeX (which is capable of running as if longdesc it were TeX unmodified). E-TeX has been specified by the LaTeX -longdesc team as the engine for the development of LaTeX 2e, in the +longdesc team as the engine for the development of LaTeX2e, in the longdesc immediate future; as a result, LaTeX programmers may (in all -longdesc current TeX distributions) assume e-TeX functionality. -longdesc Development versions of e-TeX are to be found in the TeX live -longdesc source repository. -runfiles size=11 - RELOC/fonts/source/public/etex/xbmc10.mf - RELOC/fonts/tfm/public/etex/xbmc10.tfm - RELOC/tex/plain/etex/etex.src - RELOC/tex/plain/etex/etexdefs.lib +longdesc current TeX distributions) assume e-TeX functionality. The +longdesc pdftex engine directly incorporates the e-TeX extensions. The +longdesc development source for e-TeX is the TeX Live source repository. +containersize 11528 +containerchecksum 8d9bbc49c5a9747bd0469d6941358e33dd273841c0e467ca5fac191dbf5d353de19e43fa6c66b95fe5975211c01cb6dadbaffbaf544faccd3e35af0158a0642d +doccontainersize 189804 +doccontainerchecksum 5d10427a79c38a573036164d5de8315a80b709eae87eccc050e319435622664203b4f859a7a0875a13e444a3da06eb11a2801c44c8c3e7d5ed0241adda8b5d22 docfiles size=129 RELOC/doc/etex/base/NTS-FAQ RELOC/doc/etex/base/etex_gen.tex - RELOC/doc/etex/base/etex_man.pdf + RELOC/doc/etex/base/etex_man.pdf details="System documentation (v2.0)" RELOC/doc/etex/base/etex_man.sty RELOC/doc/etex/base/etex_man.tex RELOC/doc/etex/base/etex_ref.html @@ -59223,14 +99606,48 @@ docfiles size=129 RELOC/doc/etex/base/webmerge.tex RELOC/doc/man/man1/etex.1 RELOC/doc/man/man1/etex.man1.pdf -catalogue-ctan /systems/e-tex -catalogue-date 2015-03-29 23:09:44 +0200 +runfiles size=11 + RELOC/fonts/source/public/etex/xbmc10.mf + RELOC/fonts/tfm/public/etex/xbmc10.tfm + RELOC/tex/plain/etex/etex.src + RELOC/tex/plain/etex/etexdefs.lib +catalogue-contact-bugs http://lists.tug.org/tex-k +catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/etexdir +catalogue-contact-support http://lists.tug.org/tex-k +catalogue-date 2019-01-02 05:38:30 +0100 catalogue-license knuth +catalogue-topics engine + +name etex-pkg +category Package +revision 41784 +shortdesc E-TeX support package +relocated 1 +longdesc The package provides support for LaTeX documents to use many of +longdesc the extensions offered by e-TeX; in particular, it modifies +longdesc LaTeX's register allocation macros to make use of the extended +longdesc register range. The etextools package provides macros that make +longdesc more sophisticated use of e-TeX's facilities. +containersize 6052 +containerchecksum e2afebc530bdab4d5384170dd807d6e39c96d5a18af0defa534106103243b0e52d926e09f3ba62378452ef643bfa8f0e4d92a3c0256847c91e561707410052f4 +doccontainersize 608 +doccontainerchecksum 2ef9984629ffdafdc799041127e31360c8eee80726d8c410130d61f12de306e7b4c2cc892e8012029827e8ed470f9191eebcf758830cd34b8d01593ff78cef1d +docfiles size=1 + RELOC/doc/latex/etex-pkg/README details="Readme" +runfiles size=5 + RELOC/tex/latex/etex-pkg/etex.sty +catalogue-also elocalloc +catalogue-contact-repository https://github.com/davidcarlisle/dpctex/tree/master/etex-pkg +catalogue-ctan /macros/latex/contrib/etex-pkg +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 2.7 name etextools category Package revision 20694 -shortdesc e-TeX tools for LaTeX users and package writers. +shortdesc e-TeX tools for LaTeX users and package writers relocated 1 longdesc The package provides many (purely expandable) tools for LaTeX: longdesc Extensive list management (csv lists, lists of single @@ -59245,92 +99662,55 @@ longdesc expandable macros with options (\FE@testopt, \FE@ifstar) or longdesc modifiers (\FE@modifiers); Some purely expandable numerics longdesc (\interval, \locinterplin). The package is dependent on the longdesc etex and the etoolbox packages. -runfiles size=14 - RELOC/tex/latex/etextools/etextools.sty +containersize 11492 +containerchecksum ed7e514441de2fd296c372d9c56dd71ebd5318bd67eb4611c4bf784b16b045a08338ca4456899739dc023e5bc4695a6fd1784e592e542cac6a0564a68307a983 +doccontainersize 928644 +doccontainerchecksum 5a8d722f9e2e59d483c7421909b4a0f8719b0de81f2b8b95801f905d478624eb4df936f193eb3e4ad1e3f0c2d844c7672a5e2ab1c0ff0654ed88c66bee4802ef docfiles size=308 - RELOC/doc/latex/etextools/README + RELOC/doc/latex/etextools/README details="Readme" RELOC/doc/latex/etextools/etextools-examples.pdf RELOC/doc/latex/etextools/etextools-examples.tex - RELOC/doc/latex/etextools/etextools.pdf + RELOC/doc/latex/etextools/etextools.pdf details="Package documentation" +srccontainersize 54816 +srccontainerchecksum a2535e9648828eee76f6fe48d7c85ab4211c2c107bc91f72a944f8a9eae384205ef371459fe2df743712039eb745e48dfbcfc42cd39b7d5391263711ba027862 srcfiles size=63 RELOC/source/latex/etextools/etextools.drv RELOC/source/latex/etextools/etextools.dtx RELOC/source/latex/etextools/etextools.ins +runfiles size=14 + RELOC/tex/latex/etextools/etextools.sty +catalogue-also etoolbox catalogue-ctan /macros/latex/contrib/etextools -catalogue-date 2014-09-25 17:21:46 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics macro-supp csv-support catalogue-version 3.1415926 -name ethiop-t1 -category Package -revision 15878 -shortdesc Type 1 versions of Amharic fonts. -relocated 1 -longdesc These fonts are drop-in Adobe type 1 replacements for the fonts -longdesc of the ethiop package. -execute addMixedMap ethiop.map -runfiles size=1348 - RELOC/fonts/map/dvips/ethiop-t1/ethiop.map - RELOC/fonts/type1/public/ethiop-t1/etha10.pfb - RELOC/fonts/type1/public/ethiop-t1/etha6.pfb - RELOC/fonts/type1/public/ethiop-t1/etha7.pfb - RELOC/fonts/type1/public/ethiop-t1/etha8.pfb - RELOC/fonts/type1/public/ethiop-t1/ethab10.pfb - RELOC/fonts/type1/public/ethiop-t1/ethab11.pfb - RELOC/fonts/type1/public/ethiop-t1/ethab12.pfb - RELOC/fonts/type1/public/ethiop-t1/ethab14.pfb - RELOC/fonts/type1/public/ethiop-t1/ethab18.pfb - RELOC/fonts/type1/public/ethiop-t1/ethab24.pfb - RELOC/fonts/type1/public/ethiop-t1/ethab36.pfb - RELOC/fonts/type1/public/ethiop-t1/ethab9.pfb - RELOC/fonts/type1/public/ethiop-t1/ethas10.pfb - RELOC/fonts/type1/public/ethiop-t1/ethasb10.pfb - RELOC/fonts/type1/public/ethiop-t1/ethasb11.pfb - RELOC/fonts/type1/public/ethiop-t1/ethasb12.pfb - RELOC/fonts/type1/public/ethiop-t1/ethasb14.pfb - RELOC/fonts/type1/public/ethiop-t1/ethasb18.pfb - RELOC/fonts/type1/public/ethiop-t1/ethasb24.pfb - RELOC/fonts/type1/public/ethiop-t1/ethasb36.pfb - RELOC/fonts/type1/public/ethiop-t1/ethasb9.pfb - RELOC/fonts/type1/public/ethiop-t1/ethatt10.pfb - RELOC/fonts/type1/public/ethiop-t1/ethb10.pfb - RELOC/fonts/type1/public/ethiop-t1/ethb6.pfb - RELOC/fonts/type1/public/ethiop-t1/ethb7.pfb - RELOC/fonts/type1/public/ethiop-t1/ethb8.pfb - RELOC/fonts/type1/public/ethiop-t1/ethbb10.pfb - RELOC/fonts/type1/public/ethiop-t1/ethbb11.pfb - RELOC/fonts/type1/public/ethiop-t1/ethbb12.pfb - RELOC/fonts/type1/public/ethiop-t1/ethbb14.pfb - RELOC/fonts/type1/public/ethiop-t1/ethbb18.pfb - RELOC/fonts/type1/public/ethiop-t1/ethbb24.pfb - RELOC/fonts/type1/public/ethiop-t1/ethbb36.pfb - RELOC/fonts/type1/public/ethiop-t1/ethbb9.pfb - RELOC/fonts/type1/public/ethiop-t1/ethbs10.pfb - RELOC/fonts/type1/public/ethiop-t1/ethbsb10.pfb - RELOC/fonts/type1/public/ethiop-t1/ethbsb11.pfb - RELOC/fonts/type1/public/ethiop-t1/ethbsb12.pfb - RELOC/fonts/type1/public/ethiop-t1/ethbsb14.pfb - RELOC/fonts/type1/public/ethiop-t1/ethbsb18.pfb - RELOC/fonts/type1/public/ethiop-t1/ethbsb24.pfb - RELOC/fonts/type1/public/ethiop-t1/ethbsb36.pfb - RELOC/fonts/type1/public/ethiop-t1/ethbsb9.pfb - RELOC/fonts/type1/public/ethiop-t1/ethbtt10.pfb -docfiles size=6 - RELOC/doc/latex/ethiop-t1/COPYING - RELOC/doc/latex/ethiop-t1/README -catalogue-ctan /fonts/ps-type1/ethiop -catalogue-date 2014-04-26 10:32:59 +0200 -catalogue-license gpl - name ethiop category Package revision 15878 -shortdesc LaTeX macros and fonts for typesetting Amharic. +shortdesc LaTeX macros and fonts for typesetting Amharic relocated 1 longdesc Ethiopian language support for the babel package, including a longdesc collection of fonts and TeX macros for typesetting the longdesc characters of the languages of Ethiopia, with Metafont fonts longdesc based on EthTeX's. The macros use the Babel framework. +containersize 60600 +containerchecksum ad9da81e2a9af7f93c3a9677a72b80335562677d552511463c20b73df25adb0a6765463273306486e295b8c5994af03fa1df8f1e70cc48ed7df44698637f8459 +doccontainersize 445324 +doccontainerchecksum 13e9149433cee0c44d8eddbcc6f738cf113581e4890a8728aff08a6f3f26a62617e1770b4875668dcd75a3714925db9cf5c5d9fb58a9870292bc0d22005c844a +docfiles size=133 + RELOC/doc/latex/ethiop/MANIFEST + RELOC/doc/latex/ethiop/README details="Readme" + RELOC/doc/latex/ethiop/codeetha.tex + RELOC/doc/latex/ethiop/codeethb.tex + RELOC/doc/latex/ethiop/ethiodoc.pdf + RELOC/doc/latex/ethiop/ethiodoc.tex +srccontainersize 13084 +srccontainerchecksum 46bedb27b22953ee6aab0b372581fc58186f3208c985a88006846a1f7917d998b5b8abfe463c3f415100f27aae20ae1d1648044850e6e7d095afa480adbe5837 +srcfiles size=14 + RELOC/source/latex/ethiop/ethiop.dtx + RELOC/source/latex/ethiop/ethiop.ins runfiles size=337 RELOC/fonts/ofm/public/ethiop/etho10.ofm RELOC/fonts/ofm/public/ethiop/ethob10.ofm @@ -59504,24 +99884,83 @@ runfiles size=337 RELOC/tex/latex/ethiop/uetha.fd RELOC/tex/latex/ethiop/uethb.fd RELOC/tex/latex/ethiop/uetho.fd -docfiles size=133 - RELOC/doc/latex/ethiop/MANIFEST - RELOC/doc/latex/ethiop/README - RELOC/doc/latex/ethiop/codeetha.tex - RELOC/doc/latex/ethiop/codeethb.tex - RELOC/doc/latex/ethiop/ethiodoc.pdf - RELOC/doc/latex/ethiop/ethiodoc.tex -srcfiles size=14 - RELOC/source/latex/ethiop/ethiop.dtx - RELOC/source/latex/ethiop/ethiop.ins +catalogue-also ethiop-t1 +catalogue-contact-home http://www.informatik.uni-hamburg.de/TGI/mitarbeiter/wimis/kummer/ethiop_eng.html catalogue-ctan /language/ethiopia/ethiop -catalogue-date 2012-05-07 22:43:29 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license gpl +catalogue-topics amharic catalogue-version 0.7 +name ethiop-t1 +category Package +revision 15878 +shortdesc Type 1 versions of Amharic fonts +relocated 1 +longdesc These fonts are drop-in Adobe type 1 replacements for the fonts +longdesc of the ethiop package. +execute addMixedMap ethiop.map +containersize 5184412 +containerchecksum 84f97fb5320ada95562aade797fdb62577e533feee9d7ece5cc51e17303012b198c0b1e6b4f720dc1539c4cb917ac71e3da6f48776d6fcfe84d4527ffd7b78dd +doccontainersize 7516 +doccontainerchecksum 81f2ed72d5cef9119c94c4b0025e31be6739153e36b7b31a2c59b0cbe5a683a67746da8346345d561472fdbb760c07831d1936222ce1388ee12d70c9053ca8ac +docfiles size=6 + RELOC/doc/latex/ethiop-t1/COPYING + RELOC/doc/latex/ethiop-t1/README details="Readme" +runfiles size=1348 + RELOC/fonts/map/dvips/ethiop-t1/ethiop.map + RELOC/fonts/type1/public/ethiop-t1/etha10.pfb + RELOC/fonts/type1/public/ethiop-t1/etha6.pfb + RELOC/fonts/type1/public/ethiop-t1/etha7.pfb + RELOC/fonts/type1/public/ethiop-t1/etha8.pfb + RELOC/fonts/type1/public/ethiop-t1/ethab10.pfb + RELOC/fonts/type1/public/ethiop-t1/ethab11.pfb + RELOC/fonts/type1/public/ethiop-t1/ethab12.pfb + RELOC/fonts/type1/public/ethiop-t1/ethab14.pfb + RELOC/fonts/type1/public/ethiop-t1/ethab18.pfb + RELOC/fonts/type1/public/ethiop-t1/ethab24.pfb + RELOC/fonts/type1/public/ethiop-t1/ethab36.pfb + RELOC/fonts/type1/public/ethiop-t1/ethab9.pfb + RELOC/fonts/type1/public/ethiop-t1/ethas10.pfb + RELOC/fonts/type1/public/ethiop-t1/ethasb10.pfb + RELOC/fonts/type1/public/ethiop-t1/ethasb11.pfb + RELOC/fonts/type1/public/ethiop-t1/ethasb12.pfb + RELOC/fonts/type1/public/ethiop-t1/ethasb14.pfb + RELOC/fonts/type1/public/ethiop-t1/ethasb18.pfb + RELOC/fonts/type1/public/ethiop-t1/ethasb24.pfb + RELOC/fonts/type1/public/ethiop-t1/ethasb36.pfb + RELOC/fonts/type1/public/ethiop-t1/ethasb9.pfb + RELOC/fonts/type1/public/ethiop-t1/ethatt10.pfb + RELOC/fonts/type1/public/ethiop-t1/ethb10.pfb + RELOC/fonts/type1/public/ethiop-t1/ethb6.pfb + RELOC/fonts/type1/public/ethiop-t1/ethb7.pfb + RELOC/fonts/type1/public/ethiop-t1/ethb8.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbb10.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbb11.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbb12.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbb14.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbb18.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbb24.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbb36.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbb9.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbs10.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbsb10.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbsb11.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbsb12.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbsb14.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbsb18.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbsb24.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbsb36.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbsb9.pfb + RELOC/fonts/type1/public/ethiop-t1/ethbtt10.pfb +catalogue-ctan /fonts/ps-type1/ethiop +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics font font-nonroman font-type1 amharic + name etoc category Package -revision 38242 +revision 50317 shortdesc Completely customisable TOCs relocated 1 longdesc The package gives the user complete control of how the entries @@ -59539,40 +99978,31 @@ longdesc with either a standard heading, or a ruled title (optionally longdesc with a frame around the table). The \tableofcontents command longdesc may be used arbitrarily many times in the same document, while longdesc \localtableofcontents provides a 'local' table of contents. -runfiles size=12 - RELOC/tex/latex/etoc/etoc.sty -docfiles size=219 - RELOC/doc/latex/etoc/README - RELOC/doc/latex/etoc/README.md - RELOC/doc/latex/etoc/etoc-DE.pdf - RELOC/doc/latex/etoc/etoc.pdf -srcfiles size=129 +containersize 10500 +containerchecksum f513ad397a4c48add5b1eb21714bacc54989532a9ef56ae2e7d02254e325acb430a1bfdbd9d90ec8bd20c5ed473c7f8a73b3f2ff615690ba85ae2c69acd283f5 +doccontainersize 1100220 +doccontainerchecksum e4363e5790dbe31c12e3c4392285fc3edcc3390af6ca66d5fc98008110c35c9f9eaea38ed401315b9403368ca4a977f4a926ec59cf76f70424c6e59bc52aca14 +docfiles size=292 + RELOC/doc/latex/etoc/README.md details="Readme" + RELOC/doc/latex/etoc/etoc-DE.pdf details="Package documentation" language="de" + RELOC/doc/latex/etoc/etoc.pdf details="Package documentation" +srccontainersize 120476 +srccontainerchecksum 895ad1979e26e8fde07f5df98b338c661b849e4f67f5db77df7176aa7bbf37183c377acf19d9fd92259ce413c4efe5fb0269a854213e565925d826c9822a7939 +srcfiles size=138 RELOC/source/latex/etoc/etoc.dtx RELOC/source/latex/etoc/etoc.ins +runfiles size=14 + RELOC/tex/latex/etoc/etoc.sty catalogue-also titletoc tocbasic catalogue-ctan /macros/latex/contrib/etoc -catalogue-date 2015-08-29 14:18:39 +0200 -catalogue-license lppl1.3 -catalogue-topics toc-etc -catalogue-version 1.08g - -name etoolbox-de -category Package -revision 21906 -shortdesc German translation of documentation of etoolbox. -relocated 1 -longdesc The version translated is 2.1 or 2011-01-03. -docfiles size=99 - RELOC/doc/latex/etoolbox-de/etoolbox-DE.pdf - RELOC/doc/latex/etoolbox-de/etoolbox-DE.tex -catalogue-ctan /info/translations/etoolbox/de -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1 +catalogue-date 2019-03-10 10:50:41 +0100 +catalogue-license lppl1.3c +catalogue-topics toc-etc etex +catalogue-version 1.09 name etoolbox category Package -revision 38031 +revision 48436 shortdesc e-TeX tools for LaTeX relocated 1 longdesc The package is a toolbox of programming facilities geared @@ -59585,23 +100015,78 @@ longdesc elatex. The package provides functions that seem to offer longdesc alternative ways of implementing some LaTeX kernel commands; longdesc nevertheless, the package will not modify any part of the LaTeX longdesc kernel. +containersize 8356 +containerchecksum 81007a3cd1c955d66f67ccc2e51a887b03875acbe4abfafe1e50af05107a712ef347806212aa3882204c48e0b847974aee5802b242f06211a6c296ca566443f3 +doccontainersize 234980 +doccontainerchecksum be20b46943ff50079e2ad0d2b1ab432ede686dfa9440d980bc802bd701b3cda3571db7229553357e66e62fab7bd6a8bc66a42d063f75b62ea0680ceefbdce336 +docfiles size=75 + RELOC/doc/latex/etoolbox/README.md details="Readme" + RELOC/doc/latex/etoolbox/etoolbox.pdf details="Package documentation" + RELOC/doc/latex/etoolbox/etoolbox.tex runfiles size=12 RELOC/tex/latex/etoolbox/etoolbox.def RELOC/tex/latex/etoolbox/etoolbox.sty -docfiles size=74 - RELOC/doc/latex/etoolbox/README.md - RELOC/doc/latex/etoolbox/etoolbox.pdf - RELOC/doc/latex/etoolbox/etoolbox.tex +catalogue-contact-bugs https://github.com/josephwright/etoolbox/issues +catalogue-contact-repository https://github.com/josephwright/etoolbox/ catalogue-ctan /macros/latex/contrib/etoolbox -catalogue-date 2015-08-03 06:47:20 +0200 -catalogue-license lppl1.3 -catalogue-topics macro-supp -catalogue-version 2.2a +catalogue-date 2018-08-19 12:54:37 +0200 +catalogue-license lppl1.3c +catalogue-topics macro-supp etex +catalogue-version 2.5f + +name etoolbox-de +category Package +revision 21906 +shortdesc German translation of documentation of etoolbox +relocated 1 +longdesc The version translated is 2.1 or 2011-01-03. +containersize 404 +containerchecksum cbddbd599e10b6409db5c9f9d27f35b5922bba82da39b19aac010ef77e76a29465d91c10a40c578e834acf5d9ade2d52baec5cca06eddc802eabbe599fb3dd28 +doccontainersize 234632 +doccontainerchecksum 4c966dc094430caf72e462c1a854995fb78b54dca84322233a16508e41f33f0dd71db2b997b26beb7fd4722f0df1695a118ef782d7954983e9df3ba2132b828b +docfiles size=99 + RELOC/doc/latex/etoolbox-de/etoolbox-DE.pdf details="The document itself" + RELOC/doc/latex/etoolbox-de/etoolbox-DE.tex +catalogue-ctan /info/translations/etoolbox/de +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics german-doc translation macro-supp +catalogue-version 1 + +name etsvthor +category Package +revision 48186 +shortdesc Some useful abbreviations for members of e.t.s.v. Thor +relocated 1 +longdesc "e.t.s.v. Thor" stands for "Elektrotechnische Studievereniging +longdesc Thor", a study association of Electrical Engeering at the +longdesc Eindhoven University of Technology. The author of the package +longdesc tells us: "Most of our committees use LaTeX to create meeting +longdesc notes or other formal documents within the association. When +longdesc you create a lot of these documents (which I do a lot, since I +longdesc am currently the candidate Secretary of the new board), some +longdesc abbreviations are extremely useful. I discovered that more +longdesc people from our association are interested in using these, so I +longdesc decided to put them in a package, so they can use it very +longdesc easily too." +containersize 1416 +containerchecksum c70654c50e186f73bd6dbbb65cc40cbfd809a86de223f96b4bbd1af94fc5fa928f2400eca58d6a97e5578186c58cd038a99264a412d9bb7fe15a01d7f3aff8b9 +doccontainersize 680 +doccontainerchecksum 47c9d66a720a8225b34bd0571c0f0da18fc72fb5f37e4204e7d4842facade9a0b72550351c0743dbb9296ca8bd2ad61036361f0cb7447b06e0994fcdb7c657b1 +docfiles size=1 + RELOC/doc/latex/etsvthor/README.md details="Readme" +runfiles size=1 + RELOC/tex/latex/etsvthor/etsvthor.sty +catalogue-ctan /macros/latex/contrib/etsvthor +catalogue-date 2018-07-13 05:06:29 +0200 +catalogue-license lppl1.3c +catalogue-topics shortcut dutch +catalogue-version 1.0 name euenc category Package revision 19795 -shortdesc Unicode font encoding definitions for XeTeX. +shortdesc Unicode font encoding definitions for XeTeX relocated 1 longdesc Font encoding definitions for unicode fonts loaded by LaTeX in longdesc XeTeX or LuaTeX. The package provides two encodings: EU1, @@ -59613,6 +100098,19 @@ longdesc glyphs provided by a font; use of EU2 causes the package longdesc euxunicode to be loaded (the package is part of this longdesc distribution). The package includes font definition files for longdesc use with the Latin Modern OpenType fonts. +containersize 3272 +containerchecksum f5968e42b36d9c3ab7ae17d156283f8fc09f0c725dd1037cae3b232f94af11a8ee84507efd87cab901bdc8a34f0f72d831a078de205e9beec81c574bb65f79fb +doccontainersize 145784 +doccontainerchecksum ac8d4e83ab23bf692d609a617bf8aacd8b33949e0bff1070301b8cad4e91f2a651555ffb44ad70be99791e64020984fe07afbb25976b73963abc79660eab96dd +docfiles size=38 + RELOC/doc/latex/euenc/README details="Readme" + RELOC/doc/latex/euenc/euenc.pdf details="Package documentation" + RELOC/doc/latex/euenc/test-euxlm.ltx +srccontainersize 6872 +srccontainerchecksum 4037c8f9961be1f4cd6a41d0cced28f4bcb54e5b7c4f9681b702f1d90e425ab0c772561b662fded93a0c469cfa1c43967fdfb3eb8c9e0e8c86d8340930565910 +srcfiles size=6 + RELOC/source/latex/euenc/Makefile + RELOC/source/latex/euenc/euenc.dtx runfiles size=14 RELOC/tex/latex/euenc/eu1enc.def RELOC/tex/latex/euenc/eu1lmdh.fd @@ -59628,45 +100126,80 @@ runfiles size=14 RELOC/tex/latex/euenc/eu2lmssq.fd RELOC/tex/latex/euenc/eu2lmtt.fd RELOC/tex/latex/euenc/eu2lmvtt.fd -docfiles size=38 - RELOC/doc/latex/euenc/README - RELOC/doc/latex/euenc/euenc.pdf - RELOC/doc/latex/euenc/test-euxlm.ltx -srcfiles size=6 - RELOC/source/latex/euenc/Makefile - RELOC/source/latex/euenc/euenc.dtx +catalogue-also xunicode catalogue-ctan /macros/latex/contrib/euenc -catalogue-date 2014-10-16 20:18:43 +0200 +catalogue-date 2016-10-08 11:33:19 +0200 catalogue-license lppl1.3 +catalogue-topics font-supp unicode catalogue-version 0.1h +name euflag +category Package +revision 49970 +shortdesc A command to reproduce the flag of the European Union +relocated 1 +longdesc This LaTeX package implements a command to reproduce the +longdesc official flag of the European Union (EU). The flag is +longdesc reproduced at 1em high based on the current font size, so it +longdesc can be scaled arbitrarily by changing the font size. +containersize 1472 +containerchecksum e046d3b4b0de99d6669aa7cb62b4304ea8c2b83bef6dbae7d997355bc97ef07ffbad6ba139a4969c0a99307a43202566a283a40de1a69635d09afd9256ba0a51 +doccontainersize 100864 +doccontainerchecksum e0b58801624084e20083f1c92ee71dd6f53b75954cc2a63c7f99b2453d3925e9d4bb9509e86cf3fec3bcb2b1814ccc6ec27bdb08bc24f23803c0349dbe1a9574 +docfiles size=30 + RELOC/doc/latex/euflag/MANIFEST + RELOC/doc/latex/euflag/README.md details="Readme" + RELOC/doc/latex/euflag/VERSION + RELOC/doc/latex/euflag/classpack.sty + RELOC/doc/latex/euflag/euflag.pdf details="Package documentation" +srccontainersize 17804 +srccontainerchecksum 2365d9bf74ff4194060edd03776363d3890c6cb3ea4da741413fb7a2fb03a79bba1c0775b287a82c9b30ec68dcc3db3d778460b44f5e249be5f21e130e7e52cb +srcfiles size=15 + RELOC/source/latex/euflag/euflag.dtx + RELOC/source/latex/euflag/euflag.ins +runfiles size=1 + RELOC/tex/latex/euflag/euflag.sty +catalogue-ctan /graphics/euflag +catalogue-date 2019-02-07 20:48:20 +0100 +catalogue-license lppl1.3 +catalogue-topics graphics +catalogue-version 0.4 + name eukdate category Package revision 15878 -shortdesc UK format dates, with weekday. +shortdesc UK format dates, with weekday relocated 1 longdesc The package is used to change the format of \today's date, longdesc including the weekday, e.g., "Saturday, 26 June 2008", the 'UK longdesc format', which is preferred in many parts of the world, as longdesc distinct from that which is used in \maketitle of the article longdesc class, "June 26, 2008", the 'US format'. -runfiles size=1 - RELOC/tex/latex/eukdate/eukdate.sty +containersize 1528 +containerchecksum 4f64df42384897fca09574330d919704bfac2115f330f8ef085c9be60b51c64a9f1f46c10b863e989b9eda6559a3e2cb2388a59a997afad73632d83b02177b3e +doccontainersize 110240 +doccontainerchecksum 7c79bb48296d491816b5e5cbcec389fb7a2a200a9b8e544394a8363b5b99c7ad36b332c05968b98c1bfa1caf04fb554318494cafd0781e25ecbed532c752c65b docfiles size=32 - RELOC/doc/latex/eukdate/README - RELOC/doc/latex/eukdate/eukdate.pdf + RELOC/doc/latex/eukdate/README details="Readme" + RELOC/doc/latex/eukdate/eukdate.pdf details="Package documentation" +srccontainersize 4048 +srccontainerchecksum 114d472984fb42b7043762f7f76e1ac384ca4efd338b7ea1815d25178256dafdc2c83323cdc3e4c1835fa8d3cb019bf0d73dd3fe82acae16b41db4e0c76e81d9 srcfiles size=4 RELOC/source/latex/eukdate/eukdate.dtx RELOC/source/latex/eukdate/eukdate.ins +runfiles size=1 + RELOC/tex/latex/eukdate/eukdate.sty +catalogue-also dayofweek weekday catalogue-ctan /macros/latex/contrib/eukdate -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics date-time catalogue-version 1.04 name euler category Package -revision 17261 -shortdesc Use AMS Euler fonts for math. +revision 42428 +shortdesc Use AMS Euler fonts for math relocated 1 longdesc Provides a setup for using the AMS Euler family of fonts for longdesc mathematics in LaTeX documents. "The underlying philosophy of @@ -59675,37 +100208,104 @@ longdesc as it might be written by a mathematician with excellent longdesc handwriting." The euler package is based on Knuth's macros for longdesc the book 'Concrete Mathematics'. The text fonts for the longdesc Concrete book are supported by the beton package. -runfiles size=3 - RELOC/tex/latex/euler/euler.sty +containersize 3372 +containerchecksum 3b3d383a2f715f14dba0ab926d3df9d10ab63c06d203c59e551732a7f6af4ff8965750404a37863c91d3fc3db7d44d1a279d03839162fde9d8d9fd849f0047c3 +doccontainersize 236756 +doccontainerchecksum 789c0b35257ad74dcddea589eed36f0a3b86eae3b201fc708c13cb11dbedc5b489d1495c218f9e10558b8977658b72c345a5622c10b8b1d7ceb3065a6c8fb9a0 docfiles size=63 - RELOC/doc/latex/euler/euler.pdf + RELOC/doc/latex/euler/euler.pdf details="Package documentation" RELOC/doc/latex/euler/legal.txt +srccontainersize 9832 +srccontainerchecksum 59e262e4ebd3eee88828fb2cbc91b55ffe962e2bfe662df5c052075cf4fe4b9b8580ce217e38e4709789a0e77c810f9681ed3cef95f10709c54da5f1dbebd73b srcfiles size=10 RELOC/source/latex/euler/euler.dtx RELOC/source/latex/euler/euler.ins +runfiles size=3 + RELOC/tex/latex/euler/euler.sty +catalogue-also beton eulervm catalogue-ctan /macros/latex/contrib/euler -catalogue-date 2014-04-26 12:45:28 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font-supp-maths catalogue-version 2.5 +name eulerpx +category Package +revision 43735 +shortdesc A modern interface for the Euler math fonts +relocated 1 +longdesc This package provides the "eulerpx" font, which started as a +longdesc hybrid of multiple other font packages, notably eulervm and +longdesc newpxmath. Its purpose is twofold: To use the eulervm symbols +longdesc for greek and latin, but the newpxmath font for braces and +longdesc brackets, and the text font for digits and operators; and to +longdesc make it easy to change between a sans and a serif font for the +longdesc digits and operators so that the font can be used seamlessly in +longdesc documents using both. This package was put together with the +longdesc intent to use it with the Palatino and Optima fonts, but it may +longdesc work with other combinations, too. +containersize 2220 +containerchecksum 1dd4c01260b9f2cf7053d7867530b1383a1b1218719a5a58895bb56e61416f9a93199218670e88cb59f0d87e65efdd7f10a218b45a165894c13b99330797296b +doccontainersize 1960 +doccontainerchecksum d755e9694d0631e80ccf81f78a2832ae22269ded788fd30f0acd83a4044ddb4ee4308c26ae5f79c0510a2986f146d28847eabe200015bb197805d57d149ba20e +docfiles size=1 + RELOC/doc/fonts/eulerpx/README details="Readme" +runfiles size=2 + RELOC/tex/latex/eulerpx/eulerpx.sty +catalogue-ctan /fonts/eulerpx +catalogue-date 2017-10-09 07:42:22 +0200 +catalogue-license lppl1.3 +catalogue-topics font-supp +catalogue-version 0.2.1 + name eulervm category Package revision 15878 -shortdesc Euler virtual math fonts. +shortdesc Euler virtual math fonts relocated 1 longdesc The well-known Euler fonts are suitable for typsetting longdesc mathematics in conjunction with a variety of text fonts which -longdesc do not provide mathematical character sets of their own. Euler- -longdesc VM is a set of virtual mathematics fonts based on Euler and CM. -longdesc This approach has several advantages over immediately using the -longdesc real Euler fonts: Most noticeably, less TeX resources are -longdesc consumed, the quality of various math symbols is improved and a -longdesc usable \hslash symbol can be provided. The virtual fonts are -longdesc accompanied by a LaTeX package which makes them easy to use, -longdesc particularly in conjunction with Type1 PostScript text fonts. -longdesc They are compatible with amsmath. A package option allows the -longdesc fonts to be loaded at 95% of their nominal size, thus blending -longdesc better with certain text fonts, e.g., Minion. +longdesc do not provide mathematical character sets of their own. +longdesc Euler-VM is a set of virtual mathematics fonts based on Euler +longdesc and CM. This approach has several advantages over immediately +longdesc using the real Euler fonts: Most noticeably, less TeX resources +longdesc are consumed, the quality of various math symbols is improved +longdesc and a usable \hslash symbol can be provided. The virtual fonts +longdesc are accompanied by a LaTeX package which makes them easy to +longdesc use, particularly in conjunction with Type1 PostScript text +longdesc fonts. They are compatible with amsmath. A package option +longdesc allows the fonts to be loaded at 95% of their nominal size, +longdesc thus blending better with certain text fonts, e.g., Minion. +containersize 13600 +containerchecksum f497e30a188bd0d6cb66795253b35f6a108ef11a2924da94110e5a2c913af64826a21789265bf7f2b15a31a914b74ec171fe3c3d299b1164801898c0d7b0e7b0 +doccontainersize 88072 +doccontainerchecksum dce6b483aa0d8ed6d6e607a0a518060fb290b25f04306ea4ba50f863034aa3184118a7a13f42e89fb2706daa173abb7eb5c2bd433eb038aafd1f3a8eb9c17995 +docfiles size=32 + RELOC/doc/latex/eulervm/README.eulervm details="Package Readme" + RELOC/doc/latex/eulervm/eulervm.pdf details="Package documentation" + RELOC/doc/latex/eulervm/manifest.txt +srccontainersize 17112 +srccontainerchecksum 33ad15486b813b4c4cb7758cb22acd59a9578df070857483e6cf7997997437df954619a197c4bd762c38417bf9841c06db446ee74939b8eeeb6a0d3bf893f5e4 +srcfiles size=34 + RELOC/source/latex/eulervm/eulervm.dtx + RELOC/source/latex/eulervm/eulervm.ins + RELOC/source/latex/eulervm/fontinst/Makefile + RELOC/source/latex/eulervm/fontinst/amsrel10.mtx + RELOC/source/latex/eulervm/fontinst/amsrel5.mtx + RELOC/source/latex/eulervm/fontinst/amsrel7.mtx + RELOC/source/latex/eulervm/fontinst/axis10.mtx + RELOC/source/latex/eulervm/fontinst/axis5.mtx + RELOC/source/latex/eulervm/fontinst/axis7.mtx + RELOC/source/latex/eulervm/fontinst/eubar10.mtx + RELOC/source/latex/eulervm/fontinst/eubar5.mtx + RELOC/source/latex/eulervm/fontinst/eubar7.mtx + RELOC/source/latex/eulervm/fontinst/euml.etx + RELOC/source/latex/eulervm/fontinst/eums.etx + RELOC/source/latex/eulervm/fontinst/eumx.etx + RELOC/source/latex/eulervm/fontinst/fontevm.tex + RELOC/source/latex/eulervm/fontinst/unsetams.mtx + RELOC/source/latex/eulervm/fontinst/unseteus.mtx + RELOC/source/latex/eulervm/fontinst/unsetex.mtx runfiles size=32 RELOC/fonts/tfm/public/eulervm/zeuex10.tfm RELOC/fonts/tfm/public/eulervm/zeurb10.tfm @@ -59737,42 +100337,59 @@ runfiles size=32 RELOC/tex/latex/eulervm/uzeuex.fd RELOC/tex/latex/eulervm/uzeur.fd RELOC/tex/latex/eulervm/uzeus.fd -docfiles size=32 - RELOC/doc/latex/eulervm/README.eulervm - RELOC/doc/latex/eulervm/eulervm.pdf - RELOC/doc/latex/eulervm/manifest.txt -srcfiles size=34 - RELOC/source/latex/eulervm/eulervm.dtx - RELOC/source/latex/eulervm/eulervm.ins - RELOC/source/latex/eulervm/fontinst/Makefile - RELOC/source/latex/eulervm/fontinst/amsrel10.mtx - RELOC/source/latex/eulervm/fontinst/amsrel5.mtx - RELOC/source/latex/eulervm/fontinst/amsrel7.mtx - RELOC/source/latex/eulervm/fontinst/axis10.mtx - RELOC/source/latex/eulervm/fontinst/axis5.mtx - RELOC/source/latex/eulervm/fontinst/axis7.mtx - RELOC/source/latex/eulervm/fontinst/eubar10.mtx - RELOC/source/latex/eulervm/fontinst/eubar5.mtx - RELOC/source/latex/eulervm/fontinst/eubar7.mtx - RELOC/source/latex/eulervm/fontinst/euml.etx - RELOC/source/latex/eulervm/fontinst/eums.etx - RELOC/source/latex/eulervm/fontinst/eumx.etx - RELOC/source/latex/eulervm/fontinst/fontevm.tex - RELOC/source/latex/eulervm/fontinst/unsetams.mtx - RELOC/source/latex/eulervm/fontinst/unseteus.mtx - RELOC/source/latex/eulervm/fontinst/unsetex.mtx catalogue-ctan /fonts/eulervm -catalogue-date 2014-04-26 12:45:28 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-virtual font-maths catalogue-version 4.0 +name euro +category Package +revision 22191 +shortdesc Provide Euro values for national currency amounts +relocated 1 +longdesc Converts arbitrary national currency amounts using the Euro as +longdesc base unit, and typesets monetary amounts in almost any desired +longdesc way. Write, e.g., \ATS{17.6} to get something like '17,60 oS +longdesc (1,28 Euro)' automatically. Conversion rates for the initial +longdesc Euro-zone countries are already built-in. Further rates can be +longdesc added easily. The package uses the fp package to do its sums. +containersize 2564 +containerchecksum 35a1c763998bdbc3b3b54ade3e4887859aa9d166699ccfc73db432aab3439be075d858e88d3542c25f8a0065301f0b1fea9bc368f85ed767e9deafa090f35beb +doccontainersize 200188 +doccontainerchecksum 896a040cf80bec968e4fed5b2bd774e433997d336855775c1e6e5215cd6d9bb094550da324a2433d4da94ead4af3cfa6b192382efa73bb7c6bc951c22bb02fb3 +docfiles size=61 + RELOC/doc/latex/euro/Makefile + RELOC/doc/latex/euro/euro.pdf details="Package documentation" + RELOC/doc/latex/euro/euro.txt +srccontainersize 14508 +srccontainerchecksum cf587911ccf53bd78d100221518aa62595279fd5880152d715950ece34b23eb5ef39b0ec190d2c5b5060a4f68861a8b9ac2ef93a3a6f3dbe3b85223dc386bef4 +srcfiles size=13 + RELOC/source/latex/euro/euro.dtx + RELOC/source/latex/euro/euro.ins +runfiles size=2 + RELOC/tex/latex/euro/euro.sty +catalogue-ctan /macros/latex/contrib/euro +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics calculation +catalogue-version 1.1 + name euro-ce category Package revision 25714 -shortdesc Euro and CE sign font. +shortdesc Euro and CE sign font relocated 1 longdesc Metafont source for the symbols in several variants, designed longdesc to fit with the Computer Modern-set text. +containersize 5936 +containerchecksum c1a864ebf022c8949b62195be6ce857ba108b7f930cf6e0152d70b7e3283e09c2f93fc670732cac79e3f48b860431186ea903324a02597b2a92fa43a0819b57b +doccontainersize 5584 +doccontainerchecksum 3a44189546231f3bfde594142e6901a69f6e351e1d04203d1d646c476ca330431c0560faa79fec79485a4092b667864dcfb522ddf9a56bfc2b2ab76764b3852e +docfiles size=6 + RELOC/doc/fonts/euro-ce/euro-ce.doc + RELOC/doc/fonts/euro-ce/euro-ce.dvi + RELOC/doc/fonts/euro-ce/euro-ce.tex runfiles size=26 RELOC/fonts/source/public/euro-ce/ceit.mf RELOC/fonts/source/public/euro-ce/cemac.mf @@ -59798,59 +100415,80 @@ runfiles size=26 RELOC/fonts/tfm/public/euro-ce/eurorm.tfm RELOC/fonts/tfm/public/euro-ce/eurosl.tfm RELOC/fonts/tfm/public/euro-ce/eurosp.tfm -docfiles size=6 - RELOC/doc/fonts/euro-ce/euro-ce.doc - RELOC/doc/fonts/euro-ce/euro-ce.dvi - RELOC/doc/fonts/euro-ce/euro-ce.tex catalogue-ctan /fonts/euro-ce -catalogue-date 2014-04-26 12:45:28 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license bsd +catalogue-topics font font-specialist font-mf catalogue-version 3.0b name europasscv category Package -revision 36540 +revision 49703 shortdesc Unofficial class for the new version of the Europass curriculum vitae relocated 1 -longdesc This class is an unofficial LaTeX implementation of the the +longdesc This class is an unofficial LaTeX implementation of the longdesc Europass CV, the standard model for curriculum vitae as longdesc recommended by the European Commission. It includes the major longdesc style updates that came out in 2013, featuring a neater, more longdesc compact and somewhat fancier layout. -runfiles size=19 +containersize 27944 +containerchecksum b47453280812327a1528e7d2a484e0b92e5464381bda11b715c624bb8fb7a1f57e3df71ccaeba7dbe8b0f757297ad3c4515aed773a44bfe78efbe9f64297e180 +doccontainersize 449528 +doccontainerchecksum e9041765db618541c6aa9a4142b047f4096bc335a9601186a26860d6b594d6b6125c0f5392fb6dae9a296392fb565ba0a8c288155e8d99e12bc12bec0bedf52d +docfiles size=127 + RELOC/doc/latex/europasscv/CHANGELOG.md + RELOC/doc/latex/europasscv/README.md details="Readme" + RELOC/doc/latex/europasscv/europasscv.pdf details="Package documentation" + RELOC/doc/latex/europasscv/europasscv.tex + RELOC/doc/latex/europasscv/example/europasscv_bib_en.pdf + RELOC/doc/latex/europasscv/example/europasscv_bib_en.tex + RELOC/doc/latex/europasscv/example/europasscv_en.pdf + RELOC/doc/latex/europasscv/example/europasscv_en.tex + RELOC/doc/latex/europasscv/example/europasscv_example.bib +runfiles size=38 RELOC/tex/latex/europasscv/address_europass_icon.pdf + RELOC/tex/latex/europasscv/europasscv-bibliography.sty RELOC/tex/latex/europasscv/europasscv.cls + RELOC/tex/latex/europasscv/europasscv_ca.def + RELOC/tex/latex/europasscv/europasscv_cs.def + RELOC/tex/latex/europasscv/europasscv_da.def RELOC/tex/latex/europasscv/europasscv_de.def + RELOC/tex/latex/europasscv/europasscv_el.def RELOC/tex/latex/europasscv/europasscv_en.def + RELOC/tex/latex/europasscv/europasscv_es.def + RELOC/tex/latex/europasscv/europasscv_fr.def + RELOC/tex/latex/europasscv/europasscv_hu.def RELOC/tex/latex/europasscv/europasscv_it.def + RELOC/tex/latex/europasscv/europasscv_nb.def + RELOC/tex/latex/europasscv/europasscv_pl.def + RELOC/tex/latex/europasscv/europasscv_pt.def + RELOC/tex/latex/europasscv/europasscv_sl.def + RELOC/tex/latex/europasscv/europasscv_sv.def RELOC/tex/latex/europasscv/europasslogo2013.pdf + RELOC/tex/latex/europasscv/github_europass_icon.pdf + RELOC/tex/latex/europasscv/gitlab_europass_icon.pdf RELOC/tex/latex/europasscv/im_europass_icon.pdf + RELOC/tex/latex/europasscv/linkedin_europass_icon.pdf RELOC/tex/latex/europasscv/mail_europass_icon.pdf RELOC/tex/latex/europasscv/mobile_europass_icon.pdf + RELOC/tex/latex/europasscv/orcid_europass_icon.pdf RELOC/tex/latex/europasscv/telephone_europass_icon.pdf RELOC/tex/latex/europasscv/website_europass_icon.pdf -docfiles size=118 - RELOC/doc/latex/europasscv/Makefile.europasscv - RELOC/doc/latex/europasscv/README - RELOC/doc/latex/europasscv/address_europass_icon.svg - RELOC/doc/latex/europasscv/europasscv.pdf - RELOC/doc/latex/europasscv/europasscv.tex - RELOC/doc/latex/europasscv/europasslogo2013.svg - RELOC/doc/latex/europasscv/example/europasscv_en.pdf - RELOC/doc/latex/europasscv/example/europasscv_en.tex - RELOC/doc/latex/europasscv/im_europass_icon.svg - RELOC/doc/latex/europasscv/mail_europass_icon.svg - RELOC/doc/latex/europasscv/mobile_europass_icon.svg - RELOC/doc/latex/europasscv/telephone_europass_icon.svg - RELOC/doc/latex/europasscv/website_europass_icon.svg + RELOC/tex/latex/europasscv/work_europass_icon.pdf +catalogue-also europecv curve currvita cv esieecv vita +catalogue-contact-announce https://github.com/gmazzamuto/europasscv/releases +catalogue-contact-bugs https://github.com/gmazzamuto/europasscv/issues +catalogue-contact-home https://www.devrandom.it/software/europasscv/ +catalogue-contact-repository https://github.com/gmazzamuto/europasscv catalogue-ctan /macros/latex/contrib/europasscv -catalogue-date 2015-03-11 05:49:32 +0100 +catalogue-date 2019-01-14 10:30:18 +0100 catalogue-license lppl1.3 +catalogue-topics cv class name europecv category Package -revision 34454 -shortdesc Unofficial class for European curricula vitae. +revision 50470 +shortdesc Unofficial class for European curricula vitae relocated 1 longdesc The europecv class is an unofficial LaTeX implementation of the longdesc standard model for curricula vitae (the "Europass CV") as @@ -59860,6 +100498,30 @@ longdesc enough to be used for any kind of curriculum vitae. The class longdesc has localisations for all the official languages of the EU longdesc (plus Catalan), as well as options permitting input in UTF-8 longdesc and koi8-r. +containersize 38076 +containerchecksum 474af2851e52b5b4b385ca9014bb6868494a6eb06d86d9ba7ad62cb5defca53c094a0bc3a91d62cc8d9af656adf8f8e8efd577fb6f3d940c134842d1c6a172e2 +doccontainersize 741068 +doccontainerchecksum fa6a2a0d208b7e4d87e0927d858719f522dc8ea8ff57e9db391372138b2d20447e5835662712bd81520868a0155c5209f6336a7ab3a14ff811b3da04ce11662b +docfiles size=265 + RELOC/doc/latex/europecv/CHANGELOG.rst + RELOC/doc/latex/europecv/CONTRIBUTING.md + RELOC/doc/latex/europecv/LICENSE + RELOC/doc/latex/europecv/README.md details="Readme" + RELOC/doc/latex/europecv/europecv.pdf details="Class documentation" + RELOC/doc/latex/europecv/europecv.tex + RELOC/doc/latex/europecv/examples/at.pdf + RELOC/doc/latex/europecv/examples/bulgarian-koi8-r.tex + RELOC/doc/latex/europecv/examples/bulgarian-utf8.tex + RELOC/doc/latex/europecv/examples/greek-utf8.pdf + RELOC/doc/latex/europecv/examples/greek-utf8.tex + RELOC/doc/latex/europecv/examples/maltese-maltese.tex + RELOC/doc/latex/europecv/examples/maltese-utf8.tex + RELOC/doc/latex/europecv/examples/minimal.pdf details="Simple example of use" + RELOC/doc/latex/europecv/examples/minimal.tex + RELOC/doc/latex/europecv/templates/cv_template_academic_en.pdf + RELOC/doc/latex/europecv/templates/cv_template_academic_en.tex + RELOC/doc/latex/europecv/templates/cv_template_en.pdf + RELOC/doc/latex/europecv/templates/cv_template_en.tex runfiles size=64 RELOC/tex/latex/europecv/EuropeFlagBW.eps RELOC/tex/latex/europecv/EuropeFlagBW.pdf @@ -59899,35 +100561,17 @@ runfiles size=64 RELOC/tex/latex/europecv/europasslogo.eps RELOC/tex/latex/europecv/europasslogo.pdf RELOC/tex/latex/europecv/europecv.cls -docfiles size=245 - RELOC/doc/latex/europecv/europecv.pdf - RELOC/doc/latex/europecv/europecv.tex - RELOC/doc/latex/europecv/examples/at.pdf - RELOC/doc/latex/europecv/examples/bulgarian-koi8-r.tex - RELOC/doc/latex/europecv/examples/bulgarian-utf8.tex - RELOC/doc/latex/europecv/examples/greek-utf8.pdf - RELOC/doc/latex/europecv/examples/greek-utf8.tex - RELOC/doc/latex/europecv/examples/maltese-maltese.tex - RELOC/doc/latex/europecv/examples/maltese-utf8.tex - RELOC/doc/latex/europecv/examples/minimal.pdf - RELOC/doc/latex/europecv/examples/minimal.tex - RELOC/doc/latex/europecv/templates/cv_template_de.pdf - RELOC/doc/latex/europecv/templates/cv_template_de.tex - RELOC/doc/latex/europecv/templates/cv_template_en.pdf - RELOC/doc/latex/europecv/templates/cv_template_en.tex - RELOC/doc/latex/europecv/templates/cv_template_it.pdf - RELOC/doc/latex/europecv/templates/cv_template_it.tex - RELOC/doc/latex/europecv/templates/cv_template_pl.pdf - RELOC/doc/latex/europecv/templates/cv_template_pl.tex - RELOC/doc/latex/europecv/templates/publications.bib +catalogue-also europasscv curve currvita cv esieecv vita +catalogue-contact-repository https://github.com/gsilano/EuropeCV catalogue-ctan /macros/latex/contrib/europecv -catalogue-date 2015-03-05 20:25:14 +0100 +catalogue-date 2019-03-19 16:08:26 +0100 catalogue-license lppl +catalogue-topics cv class name eurosym category Package revision 17265 -shortdesc Metafont and macros for Euro sign. +shortdesc Metafont and macros for Euro sign relocated 1 longdesc The European currency symbol for the Euro implemented in longdesc Metafont, using the official European Commission dimensions, @@ -59935,6 +100579,24 @@ longdesc and providing several shapes (normal, slanted, bold, outline). longdesc The package also includes a LaTeX package which defines the longdesc macro, pre-compiled tfm files, and documentation. execute addMixedMap eurosym.map +containersize 139880 +containerchecksum 9624b0a91a8491d4178051e8e8264e506725ace0eb1b4e4ee9f3cf38cf7868d392f0f4fae92947c74182a6cdf7d4cfb46319a269e4e3aac686ecf4a4cd2f7b3d +doccontainersize 277732 +doccontainerchecksum db226757ec82087da3e67fe69b5e9c2429e3cc2addb126bc528dda8bc421a4e9da2a367e64f119eb109e8898409a4e50177b81f9035ed1e0672bb902836bb61f +docfiles size=85 + RELOC/doc/fonts/eurosym/COPYING + RELOC/doc/fonts/eurosym/Changes + RELOC/doc/fonts/eurosym/Makefile + RELOC/doc/fonts/eurosym/README details="Readme" + RELOC/doc/fonts/eurosym/README.type1 + RELOC/doc/fonts/eurosym/c/Makefile + RELOC/doc/fonts/eurosym/eurosym.cpp + RELOC/doc/fonts/eurosym/makemfs + RELOC/doc/fonts/eurosym/rundvips + RELOC/doc/fonts/eurosym/runlatex + RELOC/doc/fonts/eurosym/src/Makefile + RELOC/doc/fonts/eurosym/testeuro.pdf + RELOC/doc/fonts/eurosym/testeuro.tex runfiles size=72 RELOC/fonts/map/dvips/eurosym/eurosym.map RELOC/fonts/source/public/eurosym/fey.mf @@ -59963,54 +100625,23 @@ runfiles size=72 RELOC/fonts/type1/public/eurosym/geymo10.pfb RELOC/fonts/type1/public/eurosym/geymr10.pfb RELOC/tex/latex/eurosym/eurosym.sty -docfiles size=85 - RELOC/doc/fonts/eurosym/COPYING - RELOC/doc/fonts/eurosym/Changes - RELOC/doc/fonts/eurosym/Makefile - RELOC/doc/fonts/eurosym/README - RELOC/doc/fonts/eurosym/README.type1 - RELOC/doc/fonts/eurosym/c/Makefile - RELOC/doc/fonts/eurosym/eurosym.cpp - RELOC/doc/fonts/eurosym/makemfs - RELOC/doc/fonts/eurosym/rundvips - RELOC/doc/fonts/eurosym/runlatex - RELOC/doc/fonts/eurosym/src/Makefile - RELOC/doc/fonts/eurosym/testeuro.pdf - RELOC/doc/fonts/eurosym/testeuro.tex +catalogue-also europs marvosym +catalogue-contact-home http://www.theiling.de/eurosym.html catalogue-ctan /fonts/eurosym -catalogue-date 2014-04-26 19:51:19 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license other-free +catalogue-topics font font-specialist font-mf catalogue-version 1.4-subrfix -name euro -category Package -revision 22191 -shortdesc Provide Euro values for national currency amounts. -relocated 1 -longdesc Converts arbitrary national currency amounts using the Euro as -longdesc base unit, and typesets monetary amounts in almost any desired -longdesc way. Write, e.g., \ATS{17.6} to get something like '17,60 oS -longdesc (1,28 Euro)' automatically. Conversion rates for the initial -longdesc Euro-zone countries are already built-in. Further rates can be -longdesc added easily. The package uses the fp package to do its sums. -runfiles size=2 - RELOC/tex/latex/euro/euro.sty -docfiles size=61 - RELOC/doc/latex/euro/Makefile - RELOC/doc/latex/euro/euro.pdf - RELOC/doc/latex/euro/euro.txt -srcfiles size=13 - RELOC/source/latex/euro/euro.dtx - RELOC/source/latex/euro/euro.ins -catalogue-ctan /macros/latex/contrib/euro -catalogue-date 2012-04-24 13:27:55 +0200 -catalogue-license lppl -catalogue-version 1.1 - name euxm category Package -revision 20202 +revision 45696 +shortdesc extended Euler by DEK relocated 1 +longdesc Includes two additional characters needed for Concrete Math +longdesc (ca. 1991). +containersize 25788 +containerchecksum 93f4eb11247f8576241a57b247dc2dec20405146a0749d54bb8631875256fd262ac06968901a8682f4d530ae68602af366fdc3ceddbf0fd1042ab95f259c3775 runfiles size=40 RELOC/fonts/source/public/euxm/eubase.mf RELOC/fonts/source/public/euxm/eusmch.mf @@ -60025,7 +100656,7 @@ runfiles size=40 name everyhook category Package revision 35675 -shortdesc Hooks for standard TeX token lists. +shortdesc Hooks for standard TeX token lists relocated 1 longdesc The package takes control of the six TeX token registers longdesc \everypar, \everymath, \everydisplay, \everyhbox, \everyvbox @@ -60033,22 +100664,29 @@ longdesc and \everycr. Real hooks for each of the registers may be longdesc installed using a stack like interface. For backwards longdesc compatibility, each of the \everyX token lists can be set longdesc without interfering with the hooks. -runfiles size=2 - RELOC/tex/latex/everyhook/everyhook.sty +containersize 2080 +containerchecksum 56547973d184de21ff5d6d3eaf1baf9b8cdbcf93307c31fbbcf658350ef0d441509ce359266ea6f962ef9b40b1680b47e4c14a822aa043ab8174ab0610df1665 +doccontainersize 116288 +doccontainerchecksum 331def0138dac385605b3ea1d88af6d5d1ae29bac696b76f41cdcfd070d50915eb3371a14a894b1e59bf35d55eb7dabecfe18e89f0bfbe6f028ce5fedfe1bbc2 docfiles size=30 - RELOC/doc/latex/everyhook/README - RELOC/doc/latex/everyhook/everyhook.pdf + RELOC/doc/latex/everyhook/README details="Readme" + RELOC/doc/latex/everyhook/everyhook.pdf details="Package documentation" +srccontainersize 7344 +srccontainerchecksum ba0d5e3f2661c4b5ba765b7509675f301dffa3fb3d9f158b3c3255d84b3a5620ec4d883a9c2f116319e6c70784eb5efa4a1cac270d1a299b23bd6fdcbaf60b2b srcfiles size=6 RELOC/source/latex/everyhook/everyhook.dtx +runfiles size=2 + RELOC/tex/latex/everyhook/everyhook.sty catalogue-ctan /macros/latex/contrib/everyhook -catalogue-date 2014-11-26 21:16:27 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl1.3 +catalogue-topics macro-supp catalogue-version 1.2 name everypage category Package revision 15878 -shortdesc Provide hooks to be run on every page of a document. +shortdesc Provide hooks to be run on every page of a document relocated 1 longdesc The package provides hooks to perform actions on every page, or longdesc on the current page. Specifically, actions are performed after @@ -60056,63 +100694,76 @@ longdesc the page is composed, but before it is shipped, so they can be longdesc used to prepare the output page in tasks like putting longdesc watermarks in the background, or in setting the next page longdesc layout, etc. -runfiles size=1 - RELOC/tex/latex/everypage/everypage.sty +containersize 1300 +containerchecksum 6f4779a2a0e0d2352b702652a583f6ea7da71865196894b88b630e1105e56dd5ea525cbd4eccdebe8dfa347716c192fa098d5eb8501f305109b337b266e7ec2d +doccontainersize 14308 +doccontainerchecksum 185bb6b87896f43472d8c902cfda976139d8b1df09c5eff75e8f579314867dc05b6c215f0dcb09a3438f7279c6579ffc8f92fa7fc682fce18ddf7f080e0c6e37 docfiles size=6 - RELOC/doc/latex/everypage/README - RELOC/doc/latex/everypage/everypage.pdf + RELOC/doc/latex/everypage/README details="Readme" + RELOC/doc/latex/everypage/everypage.pdf details="Package documentation" +srccontainersize 4672 +srccontainerchecksum ca04b157d255502abde15994da4690b99e4c6d015c86704d179001b3412e9c9170a040216657ef5afb174aafc34d4c0501b51155b84164b17401843837a9483c srcfiles size=4 RELOC/source/latex/everypage/everypage.dtx RELOC/source/latex/everypage/everypage.ins +runfiles size=1 + RELOC/tex/latex/everypage/everypage.sty +catalogue-also everyshi bophook catalogue-ctan /macros/latex/contrib/everypage -catalogue-date 2012-06-15 15:04:50 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics defer-stuff catalogue-version 1.1 -name examdesign +name exam category Package -revision 15878 -shortdesc LaTeX class for typesetting exams. +revision 46084 +shortdesc Package for typesetting exam scripts relocated 1 -longdesc This bundle provides a class examdesign. The class provides -longdesc several features useful for designing tests or question sets: -longdesc it allows for explicit markup of questions and answers; the -longdesc class will, at the user's request, automatically generate -longdesc answer keys; multiple versions of the same test can be -longdesc generated automatically, with the ordering of questions within -longdesc each section randomly permuted so as to minimize cheating; the -longdesc generated answer keys can be constructed either with or without -longdesc the questions included; environments are provided to assist in -longdesc constructing the most common types of test question: matching, -longdesc true/false, multiple-choice, fill-in-the-blank, and short -longdesc answer/essay questions. -runfiles size=12 - RELOC/tex/latex/examdesign/examdesign.cls -docfiles size=121 - RELOC/doc/latex/examdesign/Bugs - RELOC/doc/latex/examdesign/Changes - RELOC/doc/latex/examdesign/INSTALL - RELOC/doc/latex/examdesign/README - RELOC/doc/latex/examdesign/examdesign.pdf - RELOC/doc/latex/examdesign/examplea.pdf - RELOC/doc/latex/examdesign/examplea.tex - RELOC/doc/latex/examdesign/exampleb.pdf - RELOC/doc/latex/examdesign/exampleb.tex - RELOC/doc/latex/examdesign/examplec.pdf - RELOC/doc/latex/examdesign/examplec.tex - RELOC/doc/latex/examdesign/foobar.tex -srcfiles size=35 - RELOC/source/latex/examdesign/examdesign.dtx - RELOC/source/latex/examdesign/examdesign.ins -catalogue-ctan /macros/latex/contrib/examdesign -catalogue-date 2014-09-26 13:34:50 +0200 -catalogue-license gpl -catalogue-version 1.02 +longdesc Provides a class exam.cls, which eases production of exams, +longdesc even by a LaTeX novice. Simple commands are provided to: create +longdesc questions, parts of questions, subparts of parts, and +longdesc subsubparts of subparts, all with optional point values; create +longdesc a grading table, indexed either by question number (listing +longdesc each question and the total possible points for that question) +longdesc or by page number (listing each page with points and the total +longdesc possible points for that page); create headers and footers that +longdesc are each specified in three parts: one part to be left +longdesc justified, one part to be centered, and one part to be right +longdesc justified, in the manner of fancyhdr. Headers and/or footers +longdesc can be different on the first page of the exam, can be +longdesc different on the last page of the exam, and can vary depending +longdesc on whether the page number is odd or even, or on whether the +longdesc current page continues a question from a previous page, or on +longdesc whether the last question on the current page continues onto +longdesc the following page. Multiple line headers and/or footers are +longdesc allowed, and it's easy to increase the part of the page devoted +longdesc to headers and/or footers to allow for this. Note that the +longdesc bundle exams also provides a file exam.cls; the two bundles +longdesc therefore clash, and should not be installed on the same +longdesc system. +containersize 49188 +containerchecksum 77c488cbfa6960df070c9898d699492826751ab5cee72a4e1f51e839b6842bce910542d02c42f3a87125f4f3ea25b496092c26d0eb698a50bcebd8408efffeab +doccontainersize 514136 +doccontainerchecksum 7b225aee549267ad87b5e900570e5dde87e2e77d84a42f33043d760331cc71415f76148cd30245612ca8e566930531c07b71508f50867b4cb2c6ada659f4a2e8 +docfiles size=194 + RELOC/doc/latex/exam/README details="Package Readme" + RELOC/doc/latex/exam/exam.md5 + RELOC/doc/latex/exam/examdoc.pdf details="Package documentation" + RELOC/doc/latex/exam/examdoc.tex +runfiles size=69 + RELOC/tex/latex/exam/exam.cls +catalogue-contact-home http://www-math.mit.edu/~psh/ +catalogue-ctan /macros/latex/contrib/exam +catalogue-date 2017-12-17 18:57:55 +0100 +catalogue-license lppl1.3 +catalogue-topics exam class +catalogue-version 2.603 name exam-n category Package -revision 33862 -shortdesc Exam class, focused on collaborative authoring. +revision 42755 +shortdesc Exam class, focused on collaborative authoring relocated 1 longdesc The class design offers: Direct support for collaborative longdesc development of an exam, using a model in which a departmental @@ -60122,17 +100773,20 @@ longdesc process is in regular use within a physics and astronomy longdesc department). All of the 'traditional' exam paper features such longdesc as sectioning, per-part running marks, 'Question n continued' longdesc catchwords, and so on. Readily configured local adaptation. -runfiles size=10 - RELOC/tex/latex/exam-n/exam-n.cls -docfiles size=387 - RELOC/doc/latex/exam-n/README +containersize 11804 +containerchecksum 6cb28928125f1164fcf2a78980345373a094fc1a2f2f22756c8f9b27da05b88b6011f000508354b4d73aafa09a2a877bd0e6913a274518b471380074762be392 +doccontainersize 820032 +doccontainerchecksum 502d6fd1073f4ce68477e6be652dd131bb0a74818df2b1fc6b0a97aafeb946de1d0fe3fe90ed5843bd63305c528031acde37697cfd756c9839b083f9926a363c +docfiles size=271 + RELOC/doc/latex/exam-n/A1.clo + RELOC/doc/latex/exam-n/README details="Readme" + RELOC/doc/latex/exam-n/README.ctan RELOC/doc/latex/exam-n/exam-n-example.tex RELOC/doc/latex/exam-n/exam-n.html - RELOC/doc/latex/exam-n/exam-n.pdf + RELOC/doc/latex/exam-n/exam-n.pdf details="Package documentation" RELOC/doc/latex/exam-n/lppl.txt - RELOC/doc/latex/exam-n/move-to-texmf/A1.clo - RELOC/doc/latex/exam-n/move-to-texmf/exam-n.cls RELOC/doc/latex/exam-n/notes-for-authors.pdf + RELOC/doc/latex/exam-n/notes-for-authors.tex RELOC/doc/latex/exam-n/release-notes.html RELOC/doc/latex/exam-n/sample/Makefile RELOC/doc/latex/exam-n/sample/cosmo1.tex @@ -60142,42 +100796,146 @@ docfiles size=387 RELOC/doc/latex/exam-n/sample/dynamical2.tex RELOC/doc/latex/exam-n/sample/dynamical3.tex RELOC/doc/latex/exam-n/sample/excos1.tex - RELOC/doc/latex/exam-n/sample/numerical1-solution.pdf + RELOC/doc/latex/exam-n/sample/fig/spiral.eps + RELOC/doc/latex/exam-n/sample/fig/spiral.pdf RELOC/doc/latex/exam-n/sample/numerical1-solution.tex RELOC/doc/latex/exam-n/sample/numerical1.tex RELOC/doc/latex/exam-n/sample/numerical2.tex RELOC/doc/latex/exam-n/sample/numerical3.tex - RELOC/doc/latex/exam-n/sample/sample_exam.pdf RELOC/doc/latex/exam-n/sample/sample_exam.tex - RELOC/doc/latex/exam-n/sample/sample_exam_solution.pdf RELOC/doc/latex/exam-n/sample/sample_exam_solution.tex RELOC/doc/latex/exam-n/sample/sample_mcq.tex - RELOC/doc/latex/exam-n/sample/spiral.eps - RELOC/doc/latex/exam-n/sample/spiral.pdf - RELOC/doc/latex/exam-n/sample_exam.pdf + RELOC/doc/latex/exam-n/sample_exam.pdf details="Sample exam" RELOC/doc/latex/exam-n/sample_exam_solution.pdf RELOC/doc/latex/exam-n/style.css -srcfiles size=30 +srccontainersize 34424 +srccontainerchecksum 7241ce6d5e83e75142d8f3df652af4eaed554a7a2c93ee3b2868bb8c5918cfd950c7fa1413464604607b120eefed14fece4f801b08a6f0fbbded59f29e8ba620 +srcfiles size=32 RELOC/source/latex/exam-n/exam-n.drv RELOC/source/latex/exam-n/exam-n.dtx RELOC/source/latex/exam-n/exam-n.ins +runfiles size=11 + RELOC/tex/latex/exam-n/exam-n.cls +catalogue-contact-home http://purl.org/nxg/dist/exam-n catalogue-ctan /macros/latex/contrib/exam-n -catalogue-date 2015-03-30 22:55:45 +0200 -catalogue-license lppl -catalogue-version 1.1 +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics exam +catalogue-version 1.1.4 + +name exam-randomizechoices +category Package +revision 49662 +shortdesc Randomize mc choices using the exam class +relocated 1 +longdesc This package is an extension to the exam document class. It +longdesc provides the user with four new multiple choice typesetting +longdesc environments which place their content in a random order. It +longdesc can (only) be used in combination with the exam class. It can +longdesc only randomize the placement of choices in multiple choice +longdesc questions. The questions themselves cannot be randomized with +longdesc this package. Furthermore, the package provides a simple answer +longdesc key table typesetter and has a command for writing the answer +longdesc keys to an external file. +containersize 5352 +containerchecksum 0cb93637dda7a7813f8f89dba62db03cb1c1c6da5ce5dae596a14321fab8c46a5c6d67432c31855b66b37b0eb9086d23b5bf2881bf8fa41e410ed7a4724d84bc +doccontainersize 278136 +doccontainerchecksum 74daa43aa020898bf2a969e5f6fa09aea190209dd71eab222dde2b30cf2f6e12936b454a62b328aee59f6c3ae13bf5f7005ec3aba66766ade77672f74bb3ee8b +docfiles size=82 + RELOC/doc/latex/exam-randomizechoices/README.md details="Package Readme" + RELOC/doc/latex/exam-randomizechoices/exam-randomizechoices-doc.pdf details="Package documentation" + RELOC/doc/latex/exam-randomizechoices/exam-randomizechoices-doc.tex + RELOC/doc/latex/exam-randomizechoices/exam-randomizechoices.pdf + RELOC/doc/latex/exam-randomizechoices/exam-randomizechoices.tex +runfiles size=6 + RELOC/tex/latex/exam-randomizechoices/exam-randomizechoices.sty +catalogue-also exam +catalogue-contact-repository https://bitbucket.org/jesseopdenbrouw/exam-randomizechoices +catalogue-contact-support mailto:J.E.J.opdenBrouw@hhs.nl +catalogue-ctan /macros/latex/contrib/exam-randomizechoices +catalogue-date 2019-01-12 09:12:53 +0100 +catalogue-license lppl1.3 +catalogue-topics exam +catalogue-version 0.1 + +name examdesign +category Package +revision 15878 +shortdesc LaTeX class for typesetting exams +relocated 1 +longdesc This bundle provides a class examdesign. The class provides +longdesc several features useful for designing tests or question sets: +longdesc it allows for explicit markup of questions and answers; the +longdesc class will, at the user's request, automatically generate +longdesc answer keys; multiple versions of the same test can be +longdesc generated automatically, with the ordering of questions within +longdesc each section randomly permuted so as to minimize cheating; the +longdesc generated answer keys can be constructed either with or without +longdesc the questions included; environments are provided to assist in +longdesc constructing the most common types of test question: matching, +longdesc true/false, multiple-choice, fill-in-the-blank, and short +longdesc answer/essay questions. +containersize 10780 +containerchecksum bf052063b16056faed35007a5e1b6e2bf4f116388b2698c24c7c00ff257fde4f0225f138af6c011f99d051085169b51357c8661647f28be07a7f6dfd330ac10c +doccontainersize 377000 +doccontainerchecksum 1870e3732933e0d69f52eff2c403011b09814938083b91bb428c776ef50140e1b43713837e018b09e8340dd5e47811aa1050bb9f90b350aa341216edb00c2a9b +docfiles size=121 + RELOC/doc/latex/examdesign/Bugs + RELOC/doc/latex/examdesign/Changes + RELOC/doc/latex/examdesign/INSTALL + RELOC/doc/latex/examdesign/README details="Package README" + RELOC/doc/latex/examdesign/examdesign.pdf details="Package documentation" + RELOC/doc/latex/examdesign/examplea.pdf + RELOC/doc/latex/examdesign/examplea.tex + RELOC/doc/latex/examdesign/exampleb.pdf + RELOC/doc/latex/examdesign/exampleb.tex + RELOC/doc/latex/examdesign/examplec.pdf + RELOC/doc/latex/examdesign/examplec.tex + RELOC/doc/latex/examdesign/foobar.tex +srccontainersize 29924 +srccontainerchecksum 8f755df76be154c4a2a1aa6d2814774a0b9398d0b64f7a59cd865e92e805dc3bfc84026a18dc449a2ebd6cb6215097e351037430de19960e957f314ae724e244 +srcfiles size=35 + RELOC/source/latex/examdesign/examdesign.dtx + RELOC/source/latex/examdesign/examdesign.ins +runfiles size=12 + RELOC/tex/latex/examdesign/examdesign.cls +catalogue-also exams exam +catalogue-ctan /macros/latex/contrib/examdesign +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics exam class +catalogue-version 1.101 + +name example +category Package +revision 33398 +shortdesc Typeset examples for TeX courses +relocated 1 +longdesc The package makes it easier to produce examples for TeX course. +longdesc It provides an example environment, which typesets its contents +longdesc on the left of the page, and prints it verbatim on the right. +containersize 5516 +containerchecksum 2f790c1bb8934e1127ba64c61ccf0d9ed503c01cb8975c114257a2179db7d88b4c969475b0e357d17785fcf7e42487e991e176df3dd7a1be5db4cdf87abb9cad +runfiles size=4 + RELOC/tex/latex/example/example.sty +catalogue-also examplep +catalogue-ctan /macros/latex209/contrib/misc/example.sty +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license gpl +catalogue-topics listing name examplep category Package revision 16916 -shortdesc Verbatim phrases and listings in LaTeX. +shortdesc Verbatim phrases and listings in LaTeX relocated 1 longdesc Examplep provides sophisticated features for typesetting longdesc verbatim source code listings, including the display of the -longdesc source code and its compiled LaTeX or Metapost output side-by- -longdesc side, with automatic width detection and enabled page breaks -longdesc (in the source), without the need for specifying the source -longdesc twice. Special care is taken that section, page and footnote -longdesc numbers do not interfere with the main document. For +longdesc source code and its compiled LaTeX or MetaPost output +longdesc side-by-side, with automatic width detection and enabled page +longdesc breaks (in the source), without the need for specifying the +longdesc source twice. Special care is taken that section, page and +longdesc footnote numbers do not interfere with the main document. For longdesc typesetting short verbatim phrases, a replacement for the \verb longdesc command is also provided in the package, which can be used longdesc inside tables and moving arguments such as footnotes and @@ -60185,16 +100943,16 @@ longdesc section titles. The listings package is used for syntax longdesc highlighting. The accompanying codep package and the wrfiles.pl longdesc Perl script provide a convenient interface to the examplep longdesc package for authors of manuals. With codep it is possible to -longdesc generate the source code, the LaTeX or METAPOST output and the +longdesc generate the source code, the LaTeX or MetaPost output and the longdesc compilable example file from a single source embedded into the longdesc appropriate place of the .tex document file. -runfiles size=34 - RELOC/tex/latex/examplep/codep.sty - RELOC/tex/latex/examplep/examplep.sty - RELOC/tex/latex/examplep/verbfwr.sty +containersize 33800 +containerchecksum 1e28a283a2d6d2ebc0bf7acea39bbc97c459defd6115e125c6b9482f880f59ac5eadd715d034b78f5690806345311946bdf6122db9b41e2da9e31d730f2fa82f +doccontainersize 379124 +doccontainerchecksum f72f9893173263dab5436911b2efd5143a52dc43b24b470fbc315c69eaca0d326cc36e5254eb3f93f734a3240371e9aa2462c0c016659088014ee5a63cef756f docfiles size=142 - RELOC/doc/latex/examplep/README - RELOC/doc/latex/examplep/eurotex_2005_examplep.pdf + RELOC/doc/latex/examplep/README details="Readme" + RELOC/doc/latex/examplep/eurotex_2005_examplep.pdf details="Article from EuroTeX 2005 talk" RELOC/doc/latex/examplep/eurotex_2005_examplep.tex RELOC/doc/latex/examplep/houses.eps RELOC/doc/latex/examplep/houses.pdf @@ -60203,67 +100961,20 @@ docfiles size=142 RELOC/doc/latex/examplep/shorthyp_t1xtts.eps RELOC/doc/latex/examplep/shorthyp_t1xtts.pdf RELOC/doc/latex/examplep/wrfiles.pl +runfiles size=34 + RELOC/tex/latex/examplep/codep.sty + RELOC/tex/latex/examplep/examplep.sty + RELOC/tex/latex/examplep/verbfwr.sty catalogue-ctan /macros/latex/contrib/examplep -catalogue-date 2012-06-15 15:04:50 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics listing catalogue-version 0.04 -name example -category Package -revision 33398 -shortdesc Typeset examples for TeX courses. -relocated 1 -longdesc The package makes it easier to produce examples for TeX course. -longdesc It provides an example environment, which typesets its contents -longdesc on the left of the page, and prints it verbatim on the right. -runfiles size=4 - RELOC/tex/latex/example/example.sty -catalogue-ctan /macros/latex209/contrib/misc/example.sty -catalogue-date 2014-04-08 11:06:38 +0200 -catalogue-license gpl - -name exam -category Package -revision 37279 -shortdesc Package for typesetting exam scripts. -relocated 1 -longdesc Provides a class exam, which eases production of exams, even by -longdesc a LaTeX novice. Simple commands are provided to: create -longdesc questions, parts of questions, subparts of parts, and -longdesc subsubparts of subparts, all with optional point values; create -longdesc a grading table, indexed either by question number (listing -longdesc each question and the total possible points for that question) -longdesc or by page number (listing each page with points and the total -longdesc possible points for that page); create headers and footers that -longdesc are each specified in three parts: one part to be left -longdesc justified, one part to be centered, and one part to be right -longdesc justified, in the manner of fancyhdr Headers and/or footers can -longdesc be different on the first page of the exam, can be different on -longdesc the last page of the exam, and can vary depending on whether -longdesc the page number is odd or even, or on whether the current page -longdesc continues a question from a previous page, or on whether the -longdesc last question on the current page continues onto the following -longdesc page. Multiple line headers and/or footers are allowed, and -longdesc it's easy to increase the part of the page devoted to headers -longdesc and/or footers to allow for this. Note that the bundle exams -longdesc also provides a file exam.cls; the two bundles therefore clash, -longdesc and should not be installed on the same system. -runfiles size=58 - RELOC/tex/latex/exam/exam.cls -docfiles size=185 - RELOC/doc/latex/exam/README - RELOC/doc/latex/exam/exam.md5 - RELOC/doc/latex/exam/examdoc.pdf - RELOC/doc/latex/exam/examdoc.tex -catalogue-ctan /macros/latex/contrib/exam -catalogue-date 2015-05-08 05:39:44 +0200 -catalogue-license lppl1.3 -catalogue-version 2.5 - name exceltex category Package revision 26313 -shortdesc Get data from Excel files into LaTeX. +shortdesc Get data from Excel files into LaTeX longdesc Exceltex is a LaTeX package combined with a helper program longdesc written in Perl. It provides an easy to use yet powerfull and longdesc flexible way to get data from Spreadsheets into LaTeX. In @@ -60276,30 +100987,172 @@ longdesc the Spreadsheet::ParseExcel Perl module) and because most longdesc spreadsheet applications are able to read and write Excel longdesc files. depend exceltex.ARCH -runfiles size=6 - texmf-dist/scripts/exceltex/exceltex - texmf-dist/tex/latex/exceltex/exceltex.sty +containersize 6572 +containerchecksum ef8495b4ef6937af022951044652ea1fb1dcd3f65961408e84a52f9053db8f4fde6703f18833ee9cd002bc058f01813ddf765f575200211563d6e16a956d3613 +doccontainersize 3016 +doccontainerchecksum a6c4ae60f2922af773f67494c30407b5b6ead39def9253b4710940774e619496a3c242f7e9bcc8733fc733234679bb2b01c6f4571e30dca16c8eb15ad8d6d01c docfiles size=5 texmf-dist/doc/latex/exceltex/CHANGES texmf-dist/doc/latex/exceltex/INSTALL - texmf-dist/doc/latex/exceltex/README + texmf-dist/doc/latex/exceltex/README details="Readme" texmf-dist/doc/latex/exceltex/README.TEXLIVE +runfiles size=6 + texmf-dist/scripts/exceltex/exceltex + texmf-dist/tex/latex/exceltex/exceltex.sty catalogue-ctan /macros/latex/contrib/exceltex -catalogue-date 2012-05-07 22:43:29 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics foreign-import catalogue-version 0.5.1 +name exceltex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of exceltex +containersize 340 +containerchecksum 97cdc4f0a828e19dbdcaedaa2929625259a14a7a519b57bd1b88a352b21d9664f9683fac7f16c6ab7146ae7171d647e12e3ef8a39ba50b28a1a93d927f4e318b +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/exceltex + +name exceltex.amd64-freebsd +category Package +revision 25860 +shortdesc amd64-freebsd files of exceltex +containersize 340 +containerchecksum 5f72bea37e7bcf74917ae816c8e3b50e32fa8f6181632d853d10d5f279b20366af6abbb1b315996e06d0ef6d25c9fb218cb4e60019d2d6b9dbab98f4d59834c0 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/exceltex + +name exceltex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of exceltex +containersize 340 +containerchecksum 40f3fb4eea86c9f1e8d1ac30cdff7cecb23488ba1bd89145aa072dea26c9d9af80a29b70f878f374ea76bca702dee9baae10f55ae70ae7a0fad1e1a3f661c2e0 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/exceltex + +name exceltex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of exceltex +containersize 340 +containerchecksum c93837661d91c71dcf03f1535168feef2ebba47e3ee7f4401d42bf1694006c024bdbb2982d245d81c21a0536a06642e4cfc7395bc76ca22e25c90f61c96fe251 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/exceltex + +name exceltex.i386-cygwin +category Package +revision 25860 +shortdesc i386-cygwin files of exceltex +containersize 336 +containerchecksum 9c64c4eed8fd3dfe41933929ccf15ec33eea1791f7bf83711a6fc66d7cbeb07d1462e70207b2133c1abbb774d2411ead8cce89e9539d8e306be3c1e19344f7c3 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/exceltex + +name exceltex.i386-freebsd +category Package +revision 25860 +shortdesc i386-freebsd files of exceltex +containersize 340 +containerchecksum 5d65b0475c670928c2255e9baf9fd81b344dbebd9fe77973bb0f2cc8f3c76837d6502be096ee5bb7f32ebb39155fd409e8eecea081b29ede5811a26d6871acd2 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/exceltex + name exceltex.i386-linux category Package revision 25860 shortdesc i386-linux files of exceltex +containersize 340 +containerchecksum 3a9734631df1e62299f3430175f5dc7141df3043ed6746b834219b2bf8526dc50903dc3b19e246b9480e903fd67ce5ee871441c8f390197dbd27985d98102cb2 binfiles arch=i386-linux size=1 bin/i386-linux/exceltex +name exceltex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of exceltex +containersize 340 +containerchecksum b921018ccb00c9f98d5fd2ddb3d88969a45360d354c39838c633c33aad41beadbe3c09b1e8c27df8f18fd8ef9694265b7713baca9469d69b9ef4061a65cb4ff1 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/exceltex + +name exceltex.i386-solaris +category Package +revision 25860 +shortdesc i386-solaris files of exceltex +containersize 340 +containerchecksum 25286b1b10a3cb46579613ead15d6aabad5fec2b22bbdcc50499dda5041caacba6b9d980be807357017fc14d3bff90ea1a3acb86425e2db7ca8aeedbfecc455a +binfiles arch=i386-solaris size=1 + bin/i386-solaris/exceltex + +name exceltex.win32 +category Package +revision 25860 +shortdesc win32 files of exceltex +containersize 684 +containerchecksum 46296faec291c923aa61bb93fd1328c221325eb1fb1568b217347418a48995e3c23729a7466d0972a2a294b9b17e8a927fa77ac8b77403989cdff13fadebd4c9 +binfiles arch=win32 size=1 + bin/win32/exceltex.exe + +name exceltex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of exceltex +containersize 340 +containerchecksum 7a2451020d2e21f8343988308c53bd8ce08a810d66d32584b0bab8cd5fa65e669d9ac4992ae55d7cc3ddae3c28cc94e0a89461955d954950158cb8b2e4ea906a +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/exceltex + +name exceltex.x86_64-darwin +category Package +revision 25860 +shortdesc x86_64-darwin files of exceltex +containersize 340 +containerchecksum 31719ab18dfe3351ad3a74c8babd1315e1ca7391f3da4da5b23188055d25b41953778468f6b8a35e133d4c20400b805ee9853da9ad3ef16329bd26b5bd4128a6 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/exceltex + +name exceltex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of exceltex +containersize 348 +containerchecksum 0d0ee5e8acb5668a194f705cd6257bd1e723a22cafc9eee762b1aac57bb24e4f17be0c2f709a411942a8b2667242ff45dcecd21facb6264c8cb5aa17ca53a068 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/exceltex + +name exceltex.x86_64-linux +category Package +revision 25860 +shortdesc x86_64-linux files of exceltex +containersize 340 +containerchecksum 0171a2f498f3f76b7c75865dad7438027523f3860d64306fdf40307694589df5871a8198afadf796a99fba0e117dcd189577f6d75aba0355d53c3f11f61b0b93 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/exceltex + +name exceltex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of exceltex +containersize 344 +containerchecksum 2b0f91950f3bd54ce229d2b9504b9217f21671822ab364a9d7990a3bb87fa388292b9d76cd8aea4ee10193f80da661cee86a5fb1c2090f778bf5daf93f54becc +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/exceltex + +name exceltex.x86_64-solaris +category Package +revision 25860 +shortdesc x86_64-solaris files of exceltex +containersize 340 +containerchecksum f6d90ec70f9cc3d74a6e509628d6f52fcc3d46d11b899c6f9a077cc52ea7c45356d71504915bc252d42925f368c369a3307df49ee600639fe5e270b96d14de65 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/exceltex + name excludeonly category Package revision 17262 -shortdesc Prevent files being \include-ed. +shortdesc Prevent files being \include-ed relocated 1 longdesc The package defines an \excludeonly command, which is (in longdesc effect) the opposite of \includeonly. If both \includeonly and @@ -60307,14 +101160,19 @@ longdesc \excludeonly exist in a document, only files "allowed" by both longdesc will be included. The package redefines the internal \@include longdesc command, so it conflicts with packages that do the same. longdesc Examples are the classes paper.cls and thesis.cls. -runfiles size=1 - RELOC/tex/latex/excludeonly/excludeonly.sty +containersize 1664 +containerchecksum b83426d7ff334e64f8a5566fa905f1c03478ff68da5b74b85dfd6c872db7a63454f627db4e6bea48f8048da0d84bd80b269cf5cd3a5b487484dcd8f2e21c5058 +doccontainersize 218824 +doccontainerchecksum 11f1a4e7b0bfeb5728ab632756fb612b784e7a8b46e68c2e5cb3681928811d394ac0b7f508e7c655945209b1e75837d4ec1a69bcaa6b0ac8d45d66302b4bcb13 docfiles size=56 - RELOC/doc/latex/excludeonly/excludeonly.pdf + RELOC/doc/latex/excludeonly/excludeonly.pdf details="Package documentation" RELOC/doc/latex/excludeonly/excludeonly.tex +runfiles size=1 + RELOC/tex/latex/excludeonly/excludeonly.sty catalogue-ctan /macros/latex/contrib/excludeonly -catalogue-date 2012-06-15 15:04:50 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics compilation catalogue-version 1.0 name exercise @@ -60331,23 +101189,193 @@ longdesc exercises is fully customisable. It is possible to typeset long longdesc problems, short exercises, questionnaires, etc. Usage of the longdesc babel package is detected, but not fully supported yet (only longdesc English and French are implemented). -runfiles size=9 - RELOC/tex/latex/exercise/exercise.sty +containersize 7228 +containerchecksum 8de2044404690716d781a3b081181d9a14596487213762bb1ef426a0951dc18b1097a4cd8255bc7094d9d5e7f874e68181849c173a4932e7d07c46e14d1609b1 +doccontainersize 318960 +doccontainerchecksum 3059c297ecb8a990bac32e1e52bcd6fe39e6958c96c145ad70b937ba89284a6f447a84e2f144d31aefa1c446331c7ce80ccba926e288d7ade917c7aa68095076 docfiles size=80 - RELOC/doc/latex/exercise/README - RELOC/doc/latex/exercise/exercise.pdf + RELOC/doc/latex/exercise/README details="Readme" + RELOC/doc/latex/exercise/exercise.pdf details="Package documentation" +srccontainersize 15012 +srccontainerchecksum fa76e8b16def4f53a968c897e12e37707c054c3a964f14ee9654bae4e7285a3d300d62f0a79ba7fd80b2fa15e9a334bf38f3a744f0c0f6c32659853bc9b57855 srcfiles size=17 RELOC/source/latex/exercise/exercise.dtx RELOC/source/latex/exercise/exercise.ins +runfiles size=9 + RELOC/tex/latex/exercise/exercise.sty catalogue-ctan /macros/latex/contrib/exercise -catalogue-date 2014-10-21 17:38:48 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl2 +catalogue-topics exercise catalogue-version 1.6 +name exercisebank +category Package +revision 50448 +shortdesc Creating and managing exercises, and reusing them as composed sets +relocated 1 +longdesc This package makes it easier to maintain and edit your exercise +longdesc sets. Exercises are saved as separate files containing part +longdesc problems. These files can be used to make sets, and you can +longdesc cherry-pick or exclude certain part problems as you see fit. +containersize 8984 +containerchecksum 6398abee37218c1c4b0e21f7dcdc82b49985888c8e5cc4702fbe20942471cfcdb8bb37c66edf2c6764d9a38dcc932b8584f65bec8dcf75ba11c738705a71048e +doccontainersize 312648 +doccontainerchecksum d7b262b7a9ae3a45b69112e2924be8ec7cb2c13a8b973056e849cc5a0f4c82f85d4b5887a3286360b38c3459bc99ea9d917cd1084d6abf1ffc343d7ab522fed8 +docfiles size=88 + RELOC/doc/latex/exercisebank/README.txt details="Readme" + RELOC/doc/latex/exercisebank/example.zip details="Package example" + RELOC/doc/latex/exercisebank/exercisebank-doc.pdf details="Package documentation" + RELOC/doc/latex/exercisebank/exercisebank-doc.tex +runfiles size=9 + RELOC/tex/latex/exercisebank/exercisebank.sty +catalogue-contact-bugs https://github.com/Strauman/exercisebank/issues +catalogue-contact-repository https://github.com/Strauman/exercisebank +catalogue-ctan /macros/latex/contrib/exercisebank +catalogue-date 2019-03-18 10:53:02 +0100 +catalogue-license lppl1.3c +catalogue-topics exercise exam doc-templ +catalogue-version 0.3.0 + +name exercisepoints +category Package +revision 49590 +shortdesc A LaTeX package to count exercises and points +relocated 1 +longdesc The package can be used to facilitate exercise counting and +longdesc exercise point counting in a LaTeX-document. It counts the +longdesc number of exercises and it sums all the points of the exercises +longdesc in a document. Especially for exams it is also common to have +longdesc an overview of all exercises and their maximal points. This is +longdesc also supported by this package by providing a macro to retrieve +longdesc the points of each exercise. +containersize 3088 +containerchecksum cc706842f62ffd982dfde7f503f226c7f7050099b581dbef6e5e7f85269e3110a738232f1a99752b353a54a91ae5ef145697ff36ad9df1fb69ce1051bf92858c +doccontainersize 228132 +doccontainerchecksum 81493e680086ce4d833e8e9107a056daa4e74e321964f914d8824e25b4dbd6c181b1e10d41ceecf27d18baa53958babf77b0edf4c0234e0b80a8a3f5ae49c348 +docfiles size=61 + RELOC/doc/latex/exercisepoints/README.md details="Readme" + RELOC/doc/latex/exercisepoints/exercisepoints.pdf details="Package documentation" + RELOC/doc/latex/exercisepoints/exercisepoints.tex +runfiles size=3 + RELOC/tex/latex/exercisepoints/exercisepoints.sty +catalogue-contact-bugs https://github.com/henningkerstan/exercisepoints/issues +catalogue-contact-development https://github.com/henningkerstan/exercisepoints +catalogue-contact-home https://github.com/henningkerstan/exercisepoints +catalogue-contact-repository https://github.com/henningkerstan/exercisepoints +catalogue-ctan /macros/latex/contrib/exercisepoints +catalogue-date 2019-01-05 05:03:15 +0100 +catalogue-license lppl1.3 +catalogue-topics exercise +catalogue-version 1.2.3 + +name exercises +category Package +revision 42428 +shortdesc Typeset exercises and solutions with automatic addition of points +relocated 1 +longdesc This package defines the environments exercise and solution. +longdesc The layout of these environments can be customized. The -- +longdesc optional -- points in the exercises can be added automatically. +longdesc The package also permits to hide the solutions. +containersize 2224 +containerchecksum 064b8df6847af6e8464989de7070ce1d5282a050ed89016ba9954767c6f175882ee11dfc4c92791f68f972cb7dfefc801696a10a650b7113e93dfd9a9fc1adba +doccontainersize 353788 +doccontainerchecksum 7108d509ed012d1560bf19205e45a2fcd09311c50e84ea4dcd87cf17b8c70d4e5496653d97cb303d32783fe9f1d29a17a273a7ac6808ec384b7972dc33106c87 +docfiles size=103 + RELOC/doc/latex/exercises/README.md details="Readme" + RELOC/doc/latex/exercises/exercises.pdf details="Package documentation (partly in German)" +srccontainersize 7552 +srccontainerchecksum eb788aaea48e5f9fed1aa8a9ef47792bb24734c5309b74e3554ca22618c9f35ddcfc1b5496299783584310ec7ecc406d8679c7d90a936bbca5122ca665bc6098 +srcfiles size=9 + RELOC/source/latex/exercises/exercises.dtx + RELOC/source/latex/exercises/exercises.ins +runfiles size=3 + RELOC/tex/latex/exercises/exercises.sty +catalogue-ctan /macros/latex/contrib/exercises +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.2 +catalogue-topics exercise +catalogue-version 1.0 + +name exframe +category Package +revision 50920 +shortdesc Framework for exercise problems +relocated 1 +longdesc This LaTeX2e package provides a general purpose framework to +longdesc describe and typeset exercises and exam questions along with +longdesc their solutions. The package features mechanisms to hide or +longdesc postpone solutions, to assign and handle points, to collect +longdesc problems on exercise sheets, to store and use metadata, and to +longdesc implement a consistent numbering. It also provides a very +longdesc flexible interface for configuring and customising the +longdesc formatting, layout, and representation of the exercise content. +containersize 8912 +containerchecksum 736d9932d6068cb55462ef55755d2c06cbc35ef36cfd7cb610c85598b34b452ab491e55f7c741db6a0f38c44d28cce6189423e70efeb59ac2c9ec5b45d931bb5 +doccontainersize 367660 +doccontainerchecksum 32b4c41b3618413747f46e37ee8059b30db2d86031cd27fb46b036ab92c4129d8671b9b0abaa8c44bd57d1c83df81818d0c0c26e63ef33035e734e753d94615a +docfiles size=105 + RELOC/doc/latex/exframe/README.txt details="Readme" + RELOC/doc/latex/exframe/exframe.pdf details="Package documentation" + RELOC/doc/latex/exframe/exfsamp.tex + RELOC/doc/latex/exframe/exfser01.tex + RELOC/doc/latex/exframe/exfser02.tex + RELOC/doc/latex/exframe/exfser03.tex + RELOC/doc/latex/exframe/exfseraa.tex + RELOC/doc/latex/exframe/exfserm.tex + RELOC/doc/latex/exframe/exfsermk.mak + RELOC/doc/latex/exframe/exfsermk.sh + RELOC/doc/latex/exframe/exfserpe.tex + RELOC/doc/latex/exframe/exfserpf.tex +srccontainersize 37120 +srccontainerchecksum 3ca489264ccc3bf0b55fb054f6816b3678eb30aa393fbb90bce35bc5bcbb8e1c07ff0c560e4cb13aec972cafe9268ab3cfcef058fd9194cde8894526a775cedf +srcfiles size=47 + RELOC/source/latex/exframe/exframe.dtx + RELOC/source/latex/exframe/exframe.ins +runfiles size=13 + RELOC/tex/latex/exframe/exframe.sty +catalogue-ctan /macros/latex/contrib/exframe +catalogue-date 2019-05-01 17:58:19 +0200 +catalogue-license lppl1.3 +catalogue-topics exam exercise +catalogue-version 3.2 + +name exp-testopt +category Package +revision 15878 +shortdesc Expandable \@testopt (and related) macros +relocated 1 +longdesc The package provides an expandable variant of the LaTeX kernel +longdesc command \@testopt, named \@expandable@testopt, and a more +longdesc general \@expandable@ifopt, both intended for package writers. +longdesc Also we have a variant of \newcommand which uses these macros +longdesc to check for optional arguments. +containersize 1764 +containerchecksum 26b5af9bdd06a3bbd231b1b55c4ae8929efa06655656747b804425e802fa7d07355e510ac673590cef235cceaf88fc03e1493f4bee9c99ce2a32c32b9a3f9aca +doccontainersize 85660 +doccontainerchecksum f4f7cda5cc8b3f8900cb12989834e5b1702f751248f58fe65a8d65ab69eb2a4118002212eefb609e251d4437579e635173366beb471e32d07d45c5c645ca506c +docfiles size=38 + RELOC/doc/latex/exp-testopt/README details="Readme (English)" language="en" + RELOC/doc/latex/exp-testopt/exp-testopt.pdf details="Package documentation (Esperanto)" language="eo" + RELOC/doc/latex/exp-testopt/exp-testopt.test +srccontainersize 6200 +srccontainerchecksum a41951719a9a4bc391216d3c5ed796b0f285a1a7049fa3617bae689127cffd32590ebd3212bf24b221bd7214128aaf564fa62e0a511f98f03961c16a39bc6fb9 +srcfiles size=5 + RELOC/source/latex/exp-testopt/exp-testopt.dtx + RELOC/source/latex/exp-testopt/exp-testopt.ins +runfiles size=1 + RELOC/tex/latex/exp-testopt/exp-testopt.sty +catalogue-ctan /macros/latex/contrib/exp-testopt +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 0.3 + name expdlist category Package revision 15878 -shortdesc Expanded description environments. +shortdesc Expanded description environments relocated 1 longdesc The package provides additional features for the LaTeX longdesc description environment, including adjustable left margin. The @@ -60355,259 +101383,301 @@ longdesc package also allows the user to 'break' a list (for example, to longdesc interpose a comment) without affecting the structure of the longdesc list (this works for itemize and eumerate lists and numbered longdesc lists remain in sequence). -runfiles size=2 - RELOC/tex/latex/expdlist/expdlist.sty +containersize 2264 +containerchecksum fc0f0473faea3d8ffe917e654909374bef6b6d7e41d14c32acb3ee822748c6f37d1f5ab562b4bbfe35dde983f12cd9e1469bd2061aff32e3f79de66e6b3a6c32 +doccontainersize 140404 +doccontainerchecksum 624bbc4ce685589e7e6393cd991b6305d8a20419b4538f2e1728f9ffc004ef4d724831515b77a607093bf45b8cefefe3e6a352403ddcb543b690b314fb469ce4 docfiles size=46 - RELOC/doc/latex/expdlist/expdlisg.pdf - RELOC/doc/latex/expdlist/expdlist.pdf + RELOC/doc/latex/expdlist/expdlisg.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/expdlist/expdlist.pdf details="Package documentation (English)" language="en" RELOC/doc/latex/expdlist/readme.txt +srccontainersize 9988 +srccontainerchecksum 6713de4d316d2be62338ac94d465393a9e20e16eb2a088ca9086f2e9ad0052f799e47d89768e38fb04a38ed07800cfe9cc505b578b517c2f4cadbe520ee1bda3 srcfiles size=14 RELOC/source/latex/expdlist/expdlisg.drv RELOC/source/latex/expdlist/expdlist.drv RELOC/source/latex/expdlist/expdlist.dtx RELOC/source/latex/expdlist/expdlist.ins +runfiles size=2 + RELOC/tex/latex/expdlist/expdlist.sty catalogue-ctan /macros/latex/contrib/expdlist -catalogue-date 2012-07-12 15:21:21 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics list-descr catalogue-version 2.4 name expex category Package -revision 33163 -shortdesc Format linguistic examples and glosses, with reference capabilities. +revision 44499 +shortdesc Linguistic examples and glosses, with reference capabilities relocated 1 longdesc The package provides macros for typesetting linguistic examples longdesc and glosses, with a refined mechanism for referencing examples -longdesc and parts of examples. The package can be used with LaTex using +longdesc and parts of examples. The package can be used with LaTeX using longdesc the .sty wrapper or with PlainTex. -runfiles size=22 +containersize 19332 +containerchecksum b447a885d65a000f0b79b4c9b050bc89bb32b71426a29261d282fad72428fcf64dc6c660d9142114094bba32040c8e723190e553260c3899a1c1923ebb9f765e +doccontainersize 473776 +doccontainerchecksum b0dce6401ccdef7fbfebbcdef9d68f073058f935eabc95fa45619f4d4d85e6b53e15091d845593255c000c3e672dabadb1cef024b2b0c79765f4f6a231de86e6 +docfiles size=129 + RELOC/doc/generic/expex/README details="Readme" + RELOC/doc/generic/expex/doc-source.zip + RELOC/doc/generic/expex/expex-doc.pdf details="Package documentation" +runfiles size=24 RELOC/tex/generic/expex/epltxchapno.sty RELOC/tex/generic/expex/epltxfn.sty RELOC/tex/generic/expex/eptexfn.tex RELOC/tex/generic/expex/expex-demo.tex RELOC/tex/generic/expex/expex.sty RELOC/tex/generic/expex/expex.tex -docfiles size=129 - RELOC/doc/generic/expex/README - RELOC/doc/generic/expex/doc-source.zip - RELOC/doc/generic/expex/expex-doc.pdf -catalogue-ctan /macros/plain/contrib/expex -catalogue-date 2014-03-12 20:21:38 +0100 +catalogue-ctan /macros/generic/expex +catalogue-date 2017-05-26 16:42:23 +0200 catalogue-license lppl -catalogue-version 5.0b +catalogue-topics linguistic +catalogue-version 5.1b name export category Package revision 27206 -shortdesc Import and export values of LaTeX registers. +shortdesc Import and export values of LaTeX registers relocated 1 longdesc The package allows the user to export/import the values of longdesc LaTeX registers (counters, rigid and rubber lengths only). It longdesc is not for faint-hearted users. The package may be used, for longdesc example, to communicate between documents for the purposes of longdesc dvipaste. -runfiles size=6 - RELOC/tex/latex/export/dvipaste.sty - RELOC/tex/latex/export/export.sty +containersize 6396 +containerchecksum 04b5eac3e263fd692a1f4796ddccf7c5f41398075c9b15e65a0712cc83dcd85a65ae4506a882249e09c9ceea37f973be3398a0c31d2590e0c3e57549f07e9116 +doccontainersize 280332 +doccontainerchecksum 169236b497ce09d685c71bd21eb6c35ac260d5978c03f074371386062ce8219bac1e501878ba13b60677c423904ed11b37d8e018adae573d135a1e1cbfdb84a4 docfiles size=70 - RELOC/doc/latex/export/00readme - RELOC/doc/latex/export/export.pdf + RELOC/doc/latex/export/00readme details="Readme" + RELOC/doc/latex/export/export.pdf details="Package documentation" +srccontainersize 9056 +srccontainerchecksum 844f1bb688d389fba93a7350b884b4cd5298ed6974d48218cd1cd2c863b9193e6d4d177f3ca1e905dfaa028f626fff4af4b9912ab9bf3eabd2bd9f4ce5d5da7d srcfiles size=9 RELOC/source/latex/export/export.dtx RELOC/source/latex/export/export.ins RELOC/source/latex/export/export.l +runfiles size=6 + RELOC/tex/latex/export/dvipaste.sty + RELOC/tex/latex/export/export.sty catalogue-ctan /macros/latex/contrib/export -catalogue-date 2013-10-03 14:20:59 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics macro-supp catalogue-version 1.8 name expressg category Package revision 29349 -shortdesc Diagrams consisting of boxes, lines, and annotations. +shortdesc Diagrams consisting of boxes, lines, and annotations relocated 1 longdesc A MetaPost package providing facilities to assist in drawing longdesc diagrams that consist of boxes, lines, and annotations. longdesc Particular support is provided for creating EXPRESS-G diagrams, longdesc for example IDEF1X, OMT, Shlaer-Mellor, and NIAM diagrams. The -longdesc package may also be used to create UML and most other Box-Line- -longdesc Annotation charts, but not Gantt charts directly. -runfiles size=23 - RELOC/metapost/expressg/aam.mp - RELOC/metapost/expressg/expeg.mp - RELOC/metapost/expressg/expressg.mp +longdesc package may also be used to create UML and most other +longdesc Box-Line-Annotation charts, but not Gantt charts directly. +containersize 18616 +containerchecksum d380b7ca2efad2cdafc3ea6f2265452a85035765a221dd5cfeb33a03859dfca0e4cd01219995870c8943657d2525e25d32bf7e5b9fe8aa9afa8d17c1ac4703df +doccontainersize 467740 +doccontainerchecksum 9287376ba5aa36088b4a99455b727c0f60648d50421ebf2fd125542f208f490c5b57af256bf2b704f01a3e00e85e6023c69cb6dad529fb7521ee8cde74ae9559 docfiles size=137 - RELOC/doc/metapost/expressg/README - RELOC/doc/metapost/expressg/aamfigs.pdf + RELOC/doc/metapost/expressg/README details="Package Readme" + RELOC/doc/metapost/expressg/aamfigs.pdf details="Examples of use" RELOC/doc/metapost/expressg/aamfigs.tex RELOC/doc/metapost/expressg/expeg.pdf RELOC/doc/metapost/expressg/expeg.tex - RELOC/doc/metapost/expressg/expressg.pdf + RELOC/doc/metapost/expressg/expressg.pdf details="Package documentation" RELOC/doc/metapost/expressg/n2mps.sh RELOC/doc/metapost/expressg/n2mpsprl.prl +srccontainersize 45000 +srccontainerchecksum 4fc193835f6b283ebeb0906d847d54e99e5026ae53929b8855d78208212bc4ce6133359191830803298c1dfd07bcf7eb1e163fa12f8bf799a9eba381e11f7f82 srcfiles size=53 RELOC/source/metapost/expressg/expressg.dtx RELOC/source/metapost/expressg/expressg.ins +runfiles size=23 + RELOC/metapost/expressg/aam.mp + RELOC/metapost/expressg/expeg.mp + RELOC/metapost/expressg/expressg.mp +catalogue-also metauml catalogue-ctan /graphics/metapost/contrib/macros/expressg -catalogue-date 2012-07-11 14:19:50 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics diagram graphics-in-tex catalogue-version 1.5 -name exp-testopt -category Package -revision 15878 -shortdesc Expandable \@testopt (and related) macros. -relocated 1 -longdesc The package provides an expandable variant of the LaTeX kernel -longdesc command \@testopt, named \@expandable@testopt, and a more -longdesc general \@expandable@ifopt, both intended for package writers. -longdesc Also we have a variant of \newcommand which uses these macros -longdesc to check for optional arguments. -runfiles size=1 - RELOC/tex/latex/exp-testopt/exp-testopt.sty -docfiles size=38 - RELOC/doc/latex/exp-testopt/README - RELOC/doc/latex/exp-testopt/exp-testopt.pdf - RELOC/doc/latex/exp-testopt/exp-testopt.test -srcfiles size=5 - RELOC/source/latex/exp-testopt/exp-testopt.dtx - RELOC/source/latex/exp-testopt/exp-testopt.ins -catalogue-ctan /macros/latex/contrib/exp-testopt -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.3 - name exsheets category Package -revision 37764 -shortdesc Create exercise sheets and exams. +revision 43188 +shortdesc Create exercise sheets and exams relocated 1 longdesc The package provides the means to create exercises or questions longdesc and their corresponding solutions. The questions may be divided -longdesc into classes and/or topics and may be printed selectively. Meta- -longdesc data to questions can be added and recovered. The solutions may -longdesc be printed where they are, or collected and printed at a later -longdesc point in the document all together, section-wise or selectively -longdesc by ID. The package provides the means to selectively include -longdesc questions from an external file, and to control the style of -longdesc headings of both questions and solutions. -runfiles size=41 +longdesc into classes and/or topics and may be printed selectively. +longdesc Meta-data to questions can be added and recovered. The +longdesc solutions may be printed where they are, or collected and +longdesc printed at a later point in the document all together, +longdesc section-wise or selectively by ID. The package provides the +longdesc means to selectively include questions from an external file, +longdesc and to control the style of headings of both questions and +longdesc solutions. As of May 2017, this package has been superseded by +longdesc its official successor xsim. exsheets itself is now considered +longdesc obsolete, but will stay alive, and will continue to receive +longdesc bugfix releases. However, new features will not be added any +longdesc more. +containersize 24096 +containerchecksum 19e277e2e83c7e10a6a8266a844194ef027d0ec6fe1370b5aebba0ba301b4c32f0ff309008d661d1027fdc1278510910b5f47c105e4b03e824c966687c7f79a6 +doccontainersize 700868 +doccontainerchecksum c64012dd62d5fbb9ba24fabc938bc97bea4a1d06f789aeadd7952a42b29c06728795e4171a4958c2bdd15cd48d304883ee56dec7d33cad9cc5c1d8ec3ddbd89f +docfiles size=198 + RELOC/doc/latex/exsheets/README details="Readme" + RELOC/doc/latex/exsheets/exsheets_en.pdf details="Package documentation" + RELOC/doc/latex/exsheets/exsheets_en.tex + RELOC/doc/latex/exsheets/grading-table.pdf + RELOC/doc/latex/exsheets/grading-table.tex +runfiles size=42 RELOC/tex/latex/exsheets/exsheets-listings.sty RELOC/tex/latex/exsheets/exsheets.sty RELOC/tex/latex/exsheets/exsheets_configurations.cfg RELOC/tex/latex/exsheets/exsheets_headings.cfg RELOC/tex/latex/exsheets/exsheets_headings.def -docfiles size=202 - RELOC/doc/latex/exsheets/README - RELOC/doc/latex/exsheets/exsheets_en.pdf - RELOC/doc/latex/exsheets/exsheets_en.tex - RELOC/doc/latex/exsheets/grading-table.pdf - RELOC/doc/latex/exsheets/grading-table.tex +catalogue-also xsim +catalogue-contact-repository https://bitbucket.org/cgnieder/exsheets/ catalogue-ctan /macros/latex/contrib/exsheets -catalogue-date 2015-07-04 14:51:19 +0200 +catalogue-date 2017-05-19 18:29:46 +0200 catalogue-license lppl1.3 catalogue-topics exercise exam expl3 -catalogue-version 0.19 +catalogue-version 0.21i name exsol category Package -revision 35071 -shortdesc Exercises and solutions from the same source, into a book. -relocated 1 -longdesc The packageThe exsol package provides macros to allow for -longdesc embedding exercises and solutions in the LaTeX source of an -longdesc instructional text (e.g., a book or a course text) while -longdesc generating the following separate documents: your original text -longdesc that only contains the exercises, and a solution book that -longdesc contains only the solutions to the exercises (optionally, the -longdesc exercises themselves are also copied to the solution book). The -longdesc exercise data are generated when running LaTeX on your -longdesc document; the first run also writes the solutions to a -longdesc secondary file that may be included in a simple document -longdesc harness, may be processed by LaTeX, to generate a nice solution -longdesc book. The code of the package was derived (in large part) from -longdesc fancyvrb. -runfiles size=2 - RELOC/tex/latex/exsol/exsol.sty -docfiles size=64 +revision 48977 +shortdesc Exercises and solutions from the same source, into a book +relocated 1 +longdesc This package provides macros to allow for embedding exercises +longdesc and solutions in the LaTeX source of an instructional text +longdesc (e.g., a book or a course text) while generating the following +longdesc separate documents: your original text that only contains the +longdesc exercises, and a solution book that contains only the solutions +longdesc to the exercises (optionally, the exercises themselves can also +longdesc be copied to the solution book). The exercise data are +longdesc generated when running LaTeX on your document; the first run +longdesc also writes the solutions to a secondary file that may be +longdesc included in a simple document harness, may be processed by +longdesc LaTeX, to generate a nice solution book. The code of the +longdesc package was derived (in large part) from fancyvrb. +containersize 3472 +containerchecksum ef7e031334a27a522f54c5ba5adee0fbfdb4cfefca6e8c1d4f67c8bc542c82bab6ee89d35f8ba8e65ed0b17107fd164c00ed416c64160991b59693f5b567b502 +doccontainersize 600428 +doccontainerchecksum b6c5dd47fba5d14560a2d2341f1d17b17eda0ce16a6198ec589f47143ab46fa71808aa6a40a43613cf906542ed9df7d164fb2c7fe5785bf414076934932c63b5 +docfiles size=169 RELOC/doc/latex/exsol/LICENSE - RELOC/doc/latex/exsol/exsol.pdf -srcfiles size=9 + RELOC/doc/latex/exsol/README details="Readme" + RELOC/doc/latex/exsol/example-formulacollection.pdf + RELOC/doc/latex/exsol/example-local.pdf + RELOC/doc/latex/exsol/example-solutionbook.pdf + RELOC/doc/latex/exsol/example.pdf + RELOC/doc/latex/exsol/exsol.pdf details="Package documentation" +srccontainersize 12552 +srccontainerchecksum 1fa45d6d526e94e0574d15396a6d191d6b00bba30ef996aa999bf2b77a5426263f1e0a94303c07ff139bf44b0a07f419c19ac1c854c32b02e4c43c397c8a85a3 +srcfiles size=13 RELOC/source/latex/exsol/exsol.dtx RELOC/source/latex/exsol/exsol.ins +runfiles size=4 + RELOC/tex/latex/exsol/exsol.sty catalogue-ctan /macros/latex/contrib/exsol -catalogue-date 2014-10-16 20:18:43 +0200 +catalogue-date 2018-10-23 09:24:04 +0200 catalogue-license lppl1.3 -catalogue-version 0.91 +catalogue-topics exercise +catalogue-version 1.4 name extarrows category Package revision 15878 -shortdesc Extra Arrows beyond those provided in AMSmath +shortdesc Extra Arrows beyond those provided in amsmath relocated 1 longdesc Arrows are provided to supplement \xleftarrow and \xrightarrow -longdesc of the AMSMath package: \xlongequal, \xLongleftarrow, +longdesc of the amsath package: \xlongequal, \xLongleftarrow, longdesc \xLongrightarrow, \xLongleftrightarrow, \xLeftrightarrow. longdesc \xlongleftrightarrow, \xleftrightarrow, \xlongleftarrow and longdesc \xlongrightarrow. -runfiles size=1 - RELOC/tex/latex/extarrows/extarrows.sty +containersize 816 +containerchecksum c5ec26369801ba653899a6c67c41a173842f7f5283d1279d512104cc9cfd04707fdd0313a9fde03672f03a7bf1f2c46f376aa961b211b4bc0ff2641d34eb3b8d +doccontainersize 28476 +doccontainerchecksum be17974ce5f9361bbfd8ffdff55ab39cb1de6aa5701c4582586ea43cde45854bcc8c65f5c4c7a9a1eaa311c24132294ed02f36998905ed7f872c81a022d4d6ec docfiles size=10 - RELOC/doc/latex/extarrows/README + RELOC/doc/latex/extarrows/README details="Readme" RELOC/doc/latex/extarrows/extarrows-test.pdf RELOC/doc/latex/extarrows/extarrows-test.tex +runfiles size=1 + RELOC/tex/latex/extarrows/extarrows.sty catalogue-ctan /macros/latex/contrib/extarrows -catalogue-date 2012-05-07 22:43:29 +0200 +catalogue-date 2018-10-09 06:08:39 +0200 catalogue-license lgpl +catalogue-topics maths catalogue-version 1.0b name exteps category Package revision 19859 -shortdesc Include EPS figures in MetaPost. +shortdesc Include EPS figures in MetaPost relocated 1 longdesc Exteps is a module for including external EPS figures into longdesc MetaPost figures. It is written entirely in MetaPost, and does longdesc not therefore require any post processing of the MetaPost longdesc output. -runfiles size=3 - RELOC/metapost/exteps/exteps.mp +containersize 2988 +containerchecksum 1991bc0b471276ca3db68a8ba7611becc4557de4335a321b5c3e92c1fefbe34dc0488ab44850835b5ceb1684ce429e7756fb86d885e2da2177e0d9081797aa0c +doccontainersize 108708 +doccontainerchecksum aac2e20a993818576f9e1efb153e9285b17b48827a1547a0c1033f22fa1a52f84ede214b4322ce4c6ddff69b8736f214f27370b3f1c006ea6e5fe2ab9fd64304 docfiles size=55 RELOC/doc/metapost/exteps/LICENSE RELOC/doc/metapost/exteps/README RELOC/doc/metapost/exteps/delfin - RELOC/doc/metapost/exteps/exteps.pdf + RELOC/doc/metapost/exteps/exteps.pdf details="Package documentation" RELOC/doc/metapost/exteps/exteps.tex +runfiles size=3 + RELOC/metapost/exteps/exteps.mp catalogue-ctan /graphics/metapost/contrib/macros/exteps -catalogue-date 2012-07-12 15:21:21 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license gpl +catalogue-topics graphics-prep catalogue-version 0.41 name extpfeil category Package revision 16243 -shortdesc Extensible arrows in mathematics. +shortdesc Extensible arrows in mathematics relocated 1 longdesc The package provides some more extensible arrows (usable in the longdesc same way as \xleftarrow from amsmath), and a simple command to longdesc create new ones. -runfiles size=1 - RELOC/tex/latex/extpfeil/extpfeil.sty +containersize 1672 +containerchecksum 5cfe0172ad420c3ca53c57be33fc56b205ba05a11876e4d14c6d86387788c73370bc0708bee46e43a02f10ce9db4b3611b4ee337ace44fe8fbcb2ca82f88b2f7 +doccontainersize 110584 +doccontainerchecksum 8c2983b2e777e21e95d6ce1b9b4732491ad8a931205adb071877bf966fbbdc4306b88b35db87db4c3fa0bc52cfd333f721de2e1e7d233ba3c91d192a3574171a docfiles size=35 - RELOC/doc/latex/extpfeil/README - RELOC/doc/latex/extpfeil/extpfeil.pdf + RELOC/doc/latex/extpfeil/README details="Readme" + RELOC/doc/latex/extpfeil/extpfeil.pdf details="Benutzerdoku" language="de" +srccontainersize 6536 +srccontainerchecksum 6dfefa85e111b39bd46b2f39ae52e94a053569fbb0b263bdf02996bcb122913cbb999ed6c060e00a12a88e0ea9b187fe2e33a990bd75fd1f6f78082d8859071a srcfiles size=6 RELOC/source/latex/extpfeil/extpfeil.dtx RELOC/source/latex/extpfeil/extpfeil.ins +runfiles size=1 + RELOC/tex/latex/extpfeil/extpfeil.sty catalogue-ctan /macros/latex/contrib/extpfeil -catalogue-date 2012-05-07 22:43:29 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics maths catalogue-version 0.4 name extract category Package revision 15878 -shortdesc Extract parts of a document and write to another document. +shortdesc Extract parts of a document and write to another document relocated 1 longdesc The package provides the means to extract specific content from longdesc a source document and write that to a target document. One @@ -60623,26 +101693,44 @@ longdesc package option, one can specify exactly which commands (counted longdesc from the start of the document) should be extracted and which longdesc not. This might be useful for extracting specific slides from a longdesc presentation and use them in a new file. -runfiles size=4 - RELOC/tex/latex/extract/extract.sty +containersize 4288 +containerchecksum bf2feedc3914bc6f10cded15d894a4b0606b86038134ce7993171fa4b79045cbf131b11e43116fcc1632dd3969fc42b38ac06b1b3d2e6b462b44ea25353d01bc +doccontainersize 183328 +doccontainerchecksum d694fee22cd4adab84c546bae47b65a0b90ad611df7bde8161f0270efa66557fedda46d6de42b9d0c4a752f6a4178e8d1bd7bf95ff1c58b886b9be75cd45a795 docfiles size=51 - RELOC/doc/latex/extract/README - RELOC/doc/latex/extract/extract.pdf + RELOC/doc/latex/extract/README details="Package README" + RELOC/doc/latex/extract/extract.pdf details="Package documentation" +srccontainersize 17352 +srccontainerchecksum 0c79f916c3a2a8da7227976efe9a2714919736542179ae226b109263e061d931286976306e6bfc15e25772e077339528188998fcc2b9436ea9ea2b383b5aa57c srcfiles size=19 RELOC/source/latex/extract/extract.dtx +runfiles size=4 + RELOC/tex/latex/extract/extract.sty catalogue-ctan /macros/latex/contrib/extract -catalogue-date 2011-09-30 20:51:09 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics editorial catalogue-version 1.8 name extsizes category Package revision 17263 -shortdesc Extend the standard classes' size options. +shortdesc Extend the standard classes' size options relocated 1 longdesc Provides classes extarticle, extreport, extletter, extbook and longdesc extproc which provide for documents with a base font size from -longdesc 8-20pt. +longdesc 8-20pt. There is also a LaTeX package, extsizes.sty, which can +longdesc be used with nonstandard document classes. But it cannot be +longdesc guaranteed to work with any given class. +containersize 11704 +containerchecksum 5b000d25ff594af2895408f0d83eeb0e7d6dd5604c53d5acd835898197e44fb88ed2469039489b75b45678f28182dc88a0af56ed1b1730be2ce41e6e81f13b7c +doccontainersize 195100 +doccontainerchecksum 9bfa898f7eab416beaee2938902fc0f3a5ddcf1ce972f30d18a683756fb53bc8f66ef1220bd3bbe6ca6a473959a67c55c18a7996eb095ef301da8b594f42d3ae +docfiles size=54 + RELOC/doc/latex/extsizes/README details="Readme" + RELOC/doc/latex/extsizes/extsizes.pdf details="Package documentation" + RELOC/doc/latex/extsizes/extsizes.tex + RELOC/doc/latex/extsizes/readme.extsizes runfiles size=35 RELOC/tex/latex/extsizes/autopagewidth.sty RELOC/tex/latex/extsizes/extarticle.cls @@ -60656,20 +101744,16 @@ runfiles size=35 RELOC/tex/latex/extsizes/size20.clo RELOC/tex/latex/extsizes/size8.clo RELOC/tex/latex/extsizes/size9.clo -docfiles size=54 - RELOC/doc/latex/extsizes/README - RELOC/doc/latex/extsizes/extsizes.pdf - RELOC/doc/latex/extsizes/extsizes.tex - RELOC/doc/latex/extsizes/readme.extsizes catalogue-ctan /macros/latex/contrib/extsizes -catalogue-date 2013-10-31 12:53:24 +0100 +catalogue-date 2018-03-02 11:58:24 +0100 catalogue-license lppl +catalogue-topics book-pub class catalogue-version 1.4a name facsimile category Package revision 21328 -shortdesc Document class for preparing faxes. +shortdesc Document class for preparing faxes relocated 1 longdesc The facsimile class provides a simple interface for creating a longdesc document for sending as a fax, with LaTeX. The class covers two @@ -60679,97 +101763,176 @@ longdesc recipient can be sure that every page has been received and all longdesc pages are complete, and in the correct order. The class evolved longdesc from the fax package, and provides much better language longdesc support. -runfiles size=5 - RELOC/tex/latex/facsimile/fac-de.cfg - RELOC/tex/latex/facsimile/fac-en.cfg - RELOC/tex/latex/facsimile/facsimile.cls +containersize 4456 +containerchecksum 3a179a3abcc33bd0f48bf267338c8a7dc0186f7eed097af74cfd8a936956952fb50876dea447839738842fad34c724c057f577d427a82fd82f85c7e8ab80c8ab +doccontainersize 28932 +doccontainerchecksum 36da402d7b15601ad768aa1e07f356812ddf0a09b30d19c13bfecaeac847537caa3be31036cb80441370b6c046dee24b13aa3e04f339476e9ecd18cf09c8c9cf docfiles size=12 - RELOC/doc/latex/facsimile/README + RELOC/doc/latex/facsimile/README details="Readme" RELOC/doc/latex/facsimile/example.tex - RELOC/doc/latex/facsimile/facsimile.pdf + RELOC/doc/latex/facsimile/facsimile.pdf details="Package documentation" +srccontainersize 10960 +srccontainerchecksum ad8f90796cdeefe11e6c12e254c4571f2be57f5cbeca8b68e301d857a0ef8e52fbb1e32eb2d39e6d6b8c7ea19af58f6087c67c9bcee58e84a32038f18bde223b srcfiles size=11 RELOC/source/latex/facsimile/facsimile.dtx RELOC/source/latex/facsimile/facsimile.ins +runfiles size=5 + RELOC/tex/latex/facsimile/fac-de.cfg + RELOC/tex/latex/facsimile/fac-en.cfg + RELOC/tex/latex/facsimile/facsimile.cls catalogue-ctan /macros/latex/contrib/facsimile -catalogue-date 2014-10-17 01:12:51 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics letter class catalogue-version 1.0 name factura category Package -revision 38223 +revision 48333 shortdesc Typeset and calculate invoices according to Venezuelan law relocated 1 -longdesc The class provides convenient means for typesetting and -longdesc calculating invoices, according to the requirements of SENIAT -longdesc legislation (tax collecting entity of the Bolivarian Republic -longdesc of Venezuela). The author suggests that the class may well be -longdesc re-usable for other jurisdictions, by rather simple editing. -runfiles size=21 - RELOC/tex/latex/factura/factura.cls - RELOC/tex/latex/factura/factura.def -docfiles size=222 - RELOC/doc/latex/factura/README +longdesc 'factura' is the Spanish word for 'invoice', so this is a LaTeX +longdesc class for typesetting and calculating invoices, taking into +longdesc account requirements of SENIAT legislation (tax collector +longdesc entity on the Bolivarian Republic of Venezuela). However, its +longdesc use is not restricted to Venezuela because all variables and +longdesc the displayed text can be redefined by invoking commands or +longdesc editing. +containersize 25344 +containerchecksum 9f727638d72b97da569852e719c56d797ea9e6188d43c109660fa58172e55828fd376551fc225e375c9db4ac472641b747607088639f9eeff9552004d4fdecfb +doccontainersize 710640 +doccontainerchecksum 534a48890d6661a45b27b76822f7d4ee72e9ababffc533a38cd71b8a368714ed3bb8850a8cbcd6f169c168e911761f5eecf6daad7d0b61eecf777b0f102b8f1f +docfiles size=276 + RELOC/doc/latex/factura/README details="Readme" RELOC/doc/latex/factura/factura-beispiel-rechnung.tex + RELOC/doc/latex/factura/factura-ejemplo-aux.tex RELOC/doc/latex/factura/factura-ejemplo-cotizacion.tex - RELOC/doc/latex/factura/factura-ejemplo-factura1.tex - RELOC/doc/latex/factura/factura-ejemplo-factura2.tex - RELOC/doc/latex/factura/factura-ejemplo-factura3.tex - RELOC/doc/latex/factura/factura-ejemplo-factura4.tex - RELOC/doc/latex/factura/factura-ejemplo-factura5.tex - RELOC/doc/latex/factura/factura-ejemplo-factura6.tex + RELOC/doc/latex/factura/factura-ejemplo-factura01.tex + RELOC/doc/latex/factura/factura-ejemplo-factura02.tex + RELOC/doc/latex/factura/factura-ejemplo-factura03.tex + RELOC/doc/latex/factura/factura-ejemplo-factura04.tex + RELOC/doc/latex/factura/factura-ejemplo-factura05.tex + RELOC/doc/latex/factura/factura-ejemplo-factura06.tex + RELOC/doc/latex/factura/factura-ejemplo-factura07.tex + RELOC/doc/latex/factura/factura-ejemplo-factura08.tex + RELOC/doc/latex/factura/factura-ejemplo-factura09.tex + RELOC/doc/latex/factura/factura-ejemplo-factura10.tex RELOC/doc/latex/factura/factura-ejemplo-firma.tex RELOC/doc/latex/factura/factura-ejemplo-fondo.tex RELOC/doc/latex/factura/factura-ejemplo-membrete.tex + RELOC/doc/latex/factura/factura-ejemplo-prefactura.pdf details="Compiled sample" RELOC/doc/latex/factura/factura-ejemplo-prefactura.tex RELOC/doc/latex/factura/factura-ejemplo-reporte1.tex RELOC/doc/latex/factura/factura-ejemplo-reporte2.tex RELOC/doc/latex/factura/factura-ejemplo-reporte3.tex - RELOC/doc/latex/factura/factura.hd - RELOC/doc/latex/factura/factura.pdf -srcfiles size=45 + RELOC/doc/latex/factura/factura.pdf details="Package documentation" language="es-ve" +srccontainersize 67084 +srccontainerchecksum 1382a3fa1c32eff04ca66371985bd12222064a10b69cce5ab95bf2a2cab5aee47c4df532cf0ef22d39b6a2303061abaa73cb87576ce25f2daaa7c6ac7f3f2908 +srcfiles size=77 RELOC/source/latex/factura/factura.dtx RELOC/source/latex/factura/factura.ins +runfiles size=30 + RELOC/tex/latex/factura/factura.cls + RELOC/tex/latex/factura/factura.def catalogue-ctan /macros/latex/contrib/factura -catalogue-date 2015-08-26 10:06:40 +0200 +catalogue-date 2018-08-02 20:31:16 +0200 catalogue-license lppl1.3 -catalogue-topics invoice spanish -catalogue-version 2.1 +catalogue-topics invoice spanish class +catalogue-version 3.57 name facture category Package -revision 36075 -shortdesc Generate an invoice. +revision 43865 +shortdesc Generate an invoice relocated 1 longdesc Une classe simple permettant de produire une facture, avec ou longdesc sans TVA, avec gestion d'une adresse differente pour la longdesc livraison et pour la facturation. A simple class that allows longdesc production of an invoice, with or without VAT; different longdesc addresses for delivery and for billing are permitted. -runfiles size=3 - RELOC/tex/xelatex/facture/facture.cls +containersize 3284 +containerchecksum 6657931eb2c0a134c53cd9271109552d4b8848247198fee9aa8d9010ff2faa4909416484dec8809d7ddc58b4202f9e2a97c5b97279e5432a1e928f91d7cde71a +doccontainersize 156268 +doccontainerchecksum a96e30b15f1fa827fa4dafd3594e8b98ee8c17c23056926d82243955971225d5a4bdf41a1a2a5b19049619c2eabc1b8529db70adce17bc126c0e1e3be7ecb2df docfiles size=46 - RELOC/doc/xelatex/facture/README + RELOC/doc/xelatex/facture/README details="Readme (in French)" language="fr" RELOC/doc/xelatex/facture/exemple.pdf RELOC/doc/xelatex/facture/exemple.tex RELOC/doc/xelatex/facture/exemplesansTVA.pdf RELOC/doc/xelatex/facture/exemplesansTVA.tex RELOC/doc/xelatex/facture/exemplesansremise.pdf RELOC/doc/xelatex/facture/exemplesansremise.tex - RELOC/doc/xelatex/facture/facture.pdf + RELOC/doc/xelatex/facture/facture.pdf details="Package documentation" language="fr" RELOC/doc/xelatex/facture/makefile +srccontainersize 7356 +srccontainerchecksum 2612d792d95e3e22727e3e7ac4c4932e1f25c3788ebf6b4eb1be76727c52694a65c378f13ce917f9cec3975468f79f7a6d62adf4f125c57e6b644076d22e7bce srcfiles size=7 RELOC/source/xelatex/facture/facture.dtx RELOC/source/xelatex/facture/facture.ins +runfiles size=3 + RELOC/tex/xelatex/facture/facture.cls +catalogue-also invoice factura +catalogue-contact-repository https://github.com/maieul/facture catalogue-ctan /macros/xetex/latex/facture -catalogue-date 2015-01-23 22:54:15 +0100 -catalogue-license other-free -catalogue-version 1.2.1 +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license cc-by-sa-2 +catalogue-topics invoice class xetex +catalogue-version 1.2.2 + +name facture-belge-simple-sans-tva +category Package +revision 49004 +shortdesc Simple Belgian invoice without VAT +relocated 1 +longdesc This package can be used to generate invoices for Belgian +longdesc individuals who do not have a VAT number and who wish to do +longdesc occasional work, or to carry out paid additional activities +longdesc during their free time up to 6,000 euros per calendar year +longdesc (amount indexed annually) without having to pay tax or social +longdesc security contributions (see the website Activites +longdesc complementaires). The package can also generate expense +longdesc reports. All totals are calculated automatically, in the +longdesc invoice and in the expense report. The package depends on +longdesc calctab, ifthen, hyperref, fancyhdr, multirow, eurosym, color, +longdesc and colortbl. +containersize 1092 +containerchecksum 90d1ed96793b0463f14fffcef020ae58673df10bf511756387eb38bb2659ae3e362f52d898996410447bb5304f3950325fdaa25841ac4351b4584da951da2b4e +doccontainersize 275728 +doccontainerchecksum f111fd7a81812aa0d65c4143751bf0bc331f8de248876f81c5517301d8a9743cf2e091de6180e3ec1d74a646ec539b65f0f1d8068ad1eb5e6638cbb783b4f420 +docfiles size=103 + RELOC/doc/xelatex/facture-belge-simple-sans-tva/LICENSE + RELOC/doc/xelatex/facture-belge-simple-sans-tva/README.md details="Readme" + RELOC/doc/xelatex/facture-belge-simple-sans-tva/article-facture.pdf details="Example of use (invoice)" + RELOC/doc/xelatex/facture-belge-simple-sans-tva/article-facture.tex + RELOC/doc/xelatex/facture-belge-simple-sans-tva/article-note-de-frais.pdf details="Example of use (expense report)" + RELOC/doc/xelatex/facture-belge-simple-sans-tva/article-note-de-frais.tex + RELOC/doc/xelatex/facture-belge-simple-sans-tva/communs-facture-note-about.tex + RELOC/doc/xelatex/facture-belge-simple-sans-tva/communs-facture-note.tex + RELOC/doc/xelatex/facture-belge-simple-sans-tva/facture-belge-simple-sans-tva-doc.pdf details="Package documentation" + RELOC/doc/xelatex/facture-belge-simple-sans-tva/facture-belge-simple-sans-tva-doc.tex + RELOC/doc/xelatex/facture-belge-simple-sans-tva/facture-sans-tva.tex + RELOC/doc/xelatex/facture-belge-simple-sans-tva/line_bas.png + RELOC/doc/xelatex/facture-belge-simple-sans-tva/line_haut.png + RELOC/doc/xelatex/facture-belge-simple-sans-tva/note-de-frais.tex + RELOC/doc/xelatex/facture-belge-simple-sans-tva/signature.png +runfiles size=1 + RELOC/tex/xelatex/facture-belge-simple-sans-tva/facture-belge-simple-sans-tva.sty +catalogue-contact-announce https://gitlab.adullact.net/zenjo/facture-belge-simple-sans-tva/wikis/Annonces +catalogue-contact-bugs https://gitlab.adullact.net/zenjo/facture-belge-simple-sans-tva/issues +catalogue-contact-development http://myblog.robert.sebille.name/spip.php?page=contact +catalogue-contact-home https://gitlab.adullact.net/zenjo/facture-belge-simple-sans-tva/wikis/home +catalogue-contact-repository https://gitlab.adullact.net/zenjo/facture-belge-simple-sans-tva/tree/master +catalogue-contact-support http://myblog.robert.sebille.name/spip.php?page=contact +catalogue-ctan /macros/xetex/latex/facture-belge-simple-sans-tva +catalogue-date 2018-10-27 19:30:16 +0200 +catalogue-license lppl1.3c +catalogue-topics invoice xetex +catalogue-version 2.1 name faktor category Package revision 15878 -shortdesc Typeset quotient structures with LaTeX. +shortdesc Typeset quotient structures with LaTeX relocated 1 longdesc The package provides the means to typeset factor structures, as longdesc are used in many areas of algebraic notation. The structure is @@ -60777,129 +101940,204 @@ longdesc similar to the 'A/B' that is provided by the nicefrac package longdesc (part of the units distribution), and by the xfrac package; the longdesc most obvious difference is that the numerator and denominator's longdesc sizes do not change in the \faktor command. -runfiles size=1 - RELOC/tex/latex/faktor/faktor.sty +containersize 1420 +containerchecksum 5c598fbb40d7b37ee5b66bc1bfa8b0b2a0b45f7e22c992e6d0c85ed952a79a120803d41f9b4a13bcbbd6424c555c8b9ba6adb4eb79d1056fbf759008f9b741af +doccontainersize 80952 +doccontainerchecksum 57934606287afaf1471f1207af5d0e97533a504aa83324069154e88e70f10779d2eb19ed2a9e177c5a4b2cce4203b576272fd2513d989d4ee276330305597034 docfiles size=26 - RELOC/doc/latex/faktor/README - RELOC/doc/latex/faktor/faktor.pdf + RELOC/doc/latex/faktor/README details="Readme and basic instructions" + RELOC/doc/latex/faktor/faktor.pdf details="Benutzerdoku" language="de" +srccontainersize 4296 +srccontainerchecksum 01f22e60260621a41e4efd6681b6fa226f7461f47348a79dbd75f214d606c6af2fa54d904792e653d1accc22298385d4cd658c204e653e4320e2932d742da28e srcfiles size=3 RELOC/source/latex/faktor/faktor.dtx RELOC/source/latex/faktor/faktor.ins +runfiles size=1 + RELOC/tex/latex/faktor/faktor.sty catalogue-ctan /macros/latex/contrib/faktor -catalogue-date 2012-05-08 21:36:46 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics maths catalogue-version 0.1b name fancybox category Package revision 18304 -shortdesc Variants of \fbox and other games with boxes. +shortdesc Variants of \fbox and other games with boxes relocated 1 longdesc Provides variants of \fbox: \shadowbox, \doublebox, \ovalbox, longdesc \Ovalbox, with helpful tools for using box macros and flexible longdesc verbatim macros. You can box mathematics, floats, center, longdesc flushleft, and flushright, lists, and pages. -runfiles size=7 - RELOC/tex/latex/fancybox/fancybox.sty +containersize 7704 +containerchecksum 752e26abee96dd2bbf77b30a6d98d48a1673632d5601d28bba5799e845a015357b96302f3f1d8977f0458003d3456df4694884a05ccb6124b76ca8f7fc84fcbf +doccontainersize 277920 +doccontainerchecksum 2c3e0466198d392af57b2bda16f80589a9aa9db992272980a2e7ab9d7d1842d7e8f2980003b3b09648cfe0b9a1977562534ca54fae120bd7e4d950d25a83c0c2 docfiles size=84 RELOC/doc/latex/fancybox/Changes RELOC/doc/latex/fancybox/Makefile - RELOC/doc/latex/fancybox/README - RELOC/doc/latex/fancybox/fancybox-doc.pdf + RELOC/doc/latex/fancybox/README details="Readme" + RELOC/doc/latex/fancybox/fancybox-doc.pdf details="Documentation -- Box tips and tricks:" RELOC/doc/latex/fancybox/fancybox-doc.tex +runfiles size=7 + RELOC/tex/latex/fancybox/fancybox.sty catalogue-ctan /macros/latex/contrib/fancybox -catalogue-date 2011-10-26 08:45:54 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics boxing catalogue-version 1.4 -name fancyhdr-it -category Package -revision 21912 -shortdesc Italian translation of fancyhdr documentation. -relocated 1 -longdesc The translation is of documentation provided with the fancyhdr -longdesc package. -docfiles size=114 - RELOC/doc/latex/fancyhdr-it/Makefile - RELOC/doc/latex/fancyhdr-it/README - RELOC/doc/latex/fancyhdr-it/itfancyhdr.pdf - RELOC/doc/latex/fancyhdr-it/itfancyhdr.tex -catalogue-ctan /info/translations/fancyhdr/it -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl +name fancyhandout +category Package +revision 46411 +shortdesc A LaTeX class for producing nice-looking handouts +relocated 1 +longdesc This package breaks with some of LaTeX's principles and +longdesc redefines basic LaTeX commands with the aim of producing +longdesc well-designed and clearly structured handouts: A sans-serif +longdesc font is used by default; sections are not numbered, but +longdesc highlighted by underlining; head- and footline display document +longdesc information; and in order to avoid too much whitespace around +longdesc the text the margin sizes are adjusted to smaller values. All +longdesc in all, fancyhandout provides a means of typesetting documents +longdesc not exclusively consisting of running text in a beautiful way. +longdesc fancyhandout depends on the following other LaTeX packages: +longdesc csquotes, enumitem, etoolbox, fancyhdr, geometry, and xcolor. +containersize 3364 +containerchecksum 0091703483cab573f9c9202603d31e310baafe932f929ad852c23d2ca97f21681637bb3ae34fd3d916f3e50f553b42ab1682b437f5a63b67c6dc4b7b7f202c80 +doccontainersize 71460 +doccontainerchecksum be4c7b2caf2e85ec192f3aded87309ee2361fbb7e8fd1225f8f98f96446251aacd69e04e306473d06e14c8a8b686dd7a1c54cb0311bc4138fc9c34fa2d528ddf +docfiles size=21 + RELOC/doc/latex/fancyhandout/README.md details="Readme" + RELOC/doc/latex/fancyhandout/fancyhandout-doc.pdf details="Package documentation" + RELOC/doc/latex/fancyhandout/fancyhandout-doc.tex +runfiles size=3 + RELOC/tex/latex/fancyhandout/fancyhandout.cls +catalogue-contact-bugs https://github.com/sfr682k/fancyhandout/issues +catalogue-contact-repository https://github.com/sfr682k/fancyhandout +catalogue-ctan /macros/latex/contrib/fancyhandout +catalogue-date 2018-01-23 05:35:34 +0100 +catalogue-license lppl1.3c +catalogue-topics class presentation name fancyhdr category Package -revision 15878 -shortdesc Extensive control of page headers and footers in LaTeX2e. +revision 49886 +shortdesc Extensive control of page headers and footers in LaTeX2e relocated 1 longdesc The package provides extensive facilities, both for longdesc constructing headers and footers, and for controlling their use longdesc (for example, at times when LaTeX would automatically change longdesc the heading style in use). -runfiles size=9 +containersize 4136 +containerchecksum da99c0def1655589988fcebf627dcb35ab1a3f7ef481f141ee91045f81138cc02f849f4879507afdbd89e631460e5104d49bf0be6a640f4c7e9532acbc952454 +doccontainersize 717752 +doccontainerchecksum a54bd1e4c0835e1d3790ceb9c50ac63766df45fb3d807b74222465c116fd103d65bd09a8e0f4cd20941422734cc508fcca9f86be3ee0cc2beb4927b9a2149849 +docfiles size=177 + RELOC/doc/latex/fancyhdr/README details="Readme" + RELOC/doc/latex/fancyhdr/fancyhdr.pdf details="Users' manual (English)" +srccontainersize 36220 +srccontainerchecksum aad6a82c734ba3a1a571ac67f38851808e42c600884b22b64f463f7f4b41f83a85342845ffdd70244236dbe1cb013ad77f28c1897c6c28edc16590ad61d79510 +srcfiles size=36 + RELOC/source/latex/fancyhdr/fancyhdr.dtx + RELOC/source/latex/fancyhdr/fancyhdr.ins +runfiles size=5 RELOC/tex/latex/fancyhdr/extramarks.sty RELOC/tex/latex/fancyhdr/fancyhdr.sty RELOC/tex/latex/fancyhdr/fancyheadings.sty -docfiles size=95 - RELOC/doc/latex/fancyhdr/README - RELOC/doc/latex/fancyhdr/fancyhdr.pdf - RELOC/doc/latex/fancyhdr/fancyhdr.tex +catalogue-also titleps catalogue-ctan /macros/latex/contrib/fancyhdr -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2019-01-31 19:34:00 +0100 catalogue-license lppl -catalogue-version 3.1 +catalogue-topics page-hf +catalogue-version 3.10 + +name fancyhdr-it +category Package +revision 21912 +shortdesc Italian translation of fancyhdr documentation +relocated 1 +longdesc The translation is of documentation provided with the fancyhdr +longdesc package. +containersize 396 +containerchecksum 6899f3c11ed4a8f7476fe954166ea7576446b670d0b22737766927fcd29eb24e6143ff3031b974856562a7ff55e68f208164729618a4d28d28b856919f2a666b +doccontainersize 260656 +doccontainerchecksum cda5ff0581545e4eca9787b27dddcdad226b5dc9a630773b13073e9248b7b30b985fa5f5fc1bc5380e5a0d96f06c666d4e7e73168afbc2fa4ed0dd202967dafa +docfiles size=114 + RELOC/doc/latex/fancyhdr-it/Makefile + RELOC/doc/latex/fancyhdr-it/README details="Readme" + RELOC/doc/latex/fancyhdr-it/itfancyhdr.pdf details="The document itself" + RELOC/doc/latex/fancyhdr-it/itfancyhdr.tex +catalogue-ctan /info/translations/fancyhdr/it +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics italian-doc name fancylabel category Package -revision 34684 -shortdesc Complex labelling with LaTeX. +revision 46736 +shortdesc Complex labelling with LaTeX relocated 1 longdesc The package provides a complex labelling scheme. It is designed longdesc to support the needs of the author's chemschemex package -runfiles size=9 - RELOC/tex/latex/fancylabel/fancylabel.sty -docfiles size=56 - RELOC/doc/latex/fancylabel/fancylabel.pdf +containersize 5288 +containerchecksum 950455301b0bf3ea3be0817a45c4e7453ba95c8afd397c1cf9ebf559f160e2828f414f0dca4647a80481f6e8daa0902e24692469023c21ba844afe1edda60b2f +doccontainersize 230456 +doccontainerchecksum 3a05f2b388eb2a22a0b48b4761b3964c7b0c616eaf0c8adcbd4f375a3dd059b3d3b0831e754842bc084123fff7a12f59c87c5c5b362739c062f36a215dca2ca3 +docfiles size=58 + RELOC/doc/latex/fancylabel/README + RELOC/doc/latex/fancylabel/fancylabel.pdf details="Package documentation" +srccontainersize 10452 +srccontainerchecksum 5d0ae7fd455b679221c1877a5a8fe58da76d3db96de7bb6eaba24c50ef9a0bbc3252858276e4f0c6b81161f65e985911ab1608bca21418335e23189a2ddac425 srcfiles size=17 RELOC/source/latex/fancylabel/fancylabel.dtx RELOC/source/latex/fancylabel/fancylabel.ins +runfiles size=9 + RELOC/tex/latex/fancylabel/fancylabel.sty catalogue-ctan /macros/latex/contrib/fancylabel -catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-date 2018-02-23 21:24:38 +0100 catalogue-license lppl1.2 -catalogue-version 1.0 +catalogue-topics label-ref chemistry +catalogue-version 1.1 name fancynum category Package revision 15878 -shortdesc Typeset numbers. +shortdesc Typeset numbers relocated 1 longdesc A LaTeX package for typesetting numbers, in particular floating longdesc point numbers, such as you find in program output. -runfiles size=1 - RELOC/tex/latex/fancynum/fancynum.sty +containersize 1456 +containerchecksum 93e1b88ca722b4169a572285443fad53b66ac59a3c0b6465aad54bd8d416046bfd79897db3d8f318f9d6e004c958b94bbcab16b1183d66197e1078840934689c +doccontainersize 56512 +doccontainerchecksum 4be390bfd7562e0c94dc19fad3e0f34e52db393878290773517d6d7951e428cd3d0dccf5f47f6f03e5f0b380ebb386c8d89373e8c8e4cbd16463a9cdd2f2417f docfiles size=27 RELOC/doc/latex/fancynum/CHANGES - RELOC/doc/latex/fancynum/README + RELOC/doc/latex/fancynum/README details="Package README" RELOC/doc/latex/fancynum/aue.txt RELOC/doc/latex/fancynum/ctt.txt RELOC/doc/latex/fancynum/dbltable.tex RELOC/doc/latex/fancynum/examples.tex - RELOC/doc/latex/fancynum/fancynum.pdf + RELOC/doc/latex/fancynum/fancynum.pdf details="Package documentation" +srccontainersize 5392 +srccontainerchecksum 8f2f569fbb2a6ddaf371814e26b251286f8046e8a1e923f18e67b165c26c69cd09b46e39dae5fe00a427dbe4f95172680973b3eda7be16c60cbdfe6daf37710c srcfiles size=6 RELOC/source/latex/fancynum/Makefile RELOC/source/latex/fancynum/fancynum.dtx RELOC/source/latex/fancynum/fancynum.ins RELOC/source/latex/fancynum/tables.c +runfiles size=1 + RELOC/tex/latex/fancynum/fancynum.sty catalogue-ctan /macros/latex/contrib/fancynum -catalogue-date 2012-04-17 16:58:00 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics numbers catalogue-version 0.92 name fancypar category Package -revision 18018 -shortdesc Decoration of individual paragraphs. +revision 49801 +shortdesc Decoration of individual paragraphs relocated 1 longdesc Decorates individual paragraphs of a document, offering five longdesc pre-defined styles. The command offers an optional 'key-value' @@ -60908,48 +102146,63 @@ longdesc style. Predefined styles offer a spiral-notebook, a zebra-like, longdesc a dashed, a marked design, and an underlined style. Users may longdesc also define their own styles. Decorated paragraphs may not longdesc include displayed mathematics. -runfiles size=2 - RELOC/tex/latex/fancypar/fancypar.sty -docfiles size=33 - RELOC/doc/latex/fancypar/README - RELOC/doc/latex/fancypar/fancypar.pdf -srcfiles size=9 +containersize 2900 +containerchecksum 18a4989c979c7d0b1a5c303b4663484e920962a5090e229d7b75ac5678860fedbc95df530fda954a3a2602a740f7afdae3e41f6a3e07405d77263045a6c62a1f +doccontainersize 116372 +doccontainerchecksum 98cb690d9096a73523bfedc6a2ea35414e34043d5eef3d73d337c3d4feef3bb98303a22a1933eab53838e78cffc8ca1ee36bc00fdc13a50213849d87fa92c553 +docfiles size=30 + RELOC/doc/latex/fancypar/README details="Readme" + RELOC/doc/latex/fancypar/fancypar.pdf details="Package documentation" +srccontainersize 9568 +srccontainerchecksum dbbc831abfc030a45f530ac6e85cdd449cd411a2e5e52dcf80bc20770801c626cdb308012610ef188b22b7e9c4690836a65ad543ec6022c75e02f72415aebebd +srcfiles size=10 RELOC/source/latex/fancypar/fancypar.dtx RELOC/source/latex/fancypar/fancypar.ins +runfiles size=2 + RELOC/tex/latex/fancypar/fancypar.sty +catalogue-also boites framed catalogue-ctan /macros/latex/contrib/fancypar -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2019-01-22 21:47:18 +0100 catalogue-license lppl1.3 -catalogue-version 1.1 +catalogue-topics decoration +catalogue-version 1.2 name fancyref category Package revision 15878 -shortdesc A LaTeX package for fancy cross-referencing. +shortdesc A LaTeX package for fancy cross-referencing relocated 1 longdesc Provides fancy cross-referencing support, based on the longdesc package's reference commands (\fref and \Fref) that recognise longdesc what sort of object is being referenced. So, for example, the longdesc label for a \section would be expected to be of the form longdesc 'sec:foo': the package would recognise the 'sec:' part. -runfiles size=4 - RELOC/tex/latex/fancyref/fancyref.sty +containersize 3384 +containerchecksum 8f4ea5f16bfdbd06bdbaad76da724a1aad82263f4db2c24cf5f2e9f2db9f2afd9d4004d629098f936e0c2d4dcfa5fba8bd278746b90542f87b547e20abb0bcba +doccontainersize 104292 +doccontainerchecksum 2231f5fd45d45cb7b538852c95b90db35fde9b66629d17ec9288de6ecf5339359c17fdc8931019fd4acce61ec2927a0cd494cc7462cab0df13d7660106b6a142 docfiles size=37 RELOC/doc/latex/fancyref/COPYING - RELOC/doc/latex/fancyref/README - RELOC/doc/latex/fancyref/fancyref.pdf + RELOC/doc/latex/fancyref/README details="Package Readme" + RELOC/doc/latex/fancyref/fancyref.pdf details="Package documentation" RELOC/doc/latex/fancyref/freftest.tex +srccontainersize 18944 +srccontainerchecksum 65de000487a8d317f0d05ff6d35574cf0bca521e4ab029637fd459b34f8640c53fed78bb9a54c21e4f5cc7c03dab221995810057350c46690c948a9e436c74f3 srcfiles size=21 RELOC/source/latex/fancyref/fancyref.dtx RELOC/source/latex/fancyref/fancyref.ins +runfiles size=4 + RELOC/tex/latex/fancyref/fancyref.sty catalogue-ctan /macros/latex/contrib/fancyref -catalogue-date 2012-07-11 17:40:28 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics label-ref catalogue-version 0.9c name fancyslides category Package revision 36263 -shortdesc Custom presentation class built upon LaTeX Beamer. +shortdesc Custom presentation class built upon LaTeX Beamer relocated 1 longdesc This class is prepared for short presentations with a modern longdesc look & feel. It offers the following features: custom @@ -60957,17 +102210,19 @@ longdesc background for each slide, predefined types of slides, longdesc simplified commands (e.g. for starting and ending slide). The longdesc class is built upon LaTeX beamer, so all beamer commands should longdesc work. -runfiles size=1 - RELOC/tex/latex/fancyslides/fancyslides.cls +containersize 1976 +containerchecksum a0b9ef4ce804b78a60b4c3a25d5d70bb7ec17324d295cfaccb64d166bb1a704bbd2baa5cf6edfed7adff03f48bd3f3e7854e2fbfbbfdc7eb953d567a257a6e46 +doccontainersize 2000604 +doccontainerchecksum 77e1839377ba440d4009f30ae6e58d843ec4b7a1bf7f0d3414700e32c9a01062cd6506cb589039299e7a4fd945f9ee5cd951a62fe9795f822089152ca19f3441 docfiles size=994 - RELOC/doc/latex/fancyslides/README + RELOC/doc/latex/fancyslides/README details="Readme" RELOC/doc/latex/fancyslides/doc/1.jpg RELOC/doc/latex/fancyslides/doc/2.jpg RELOC/doc/latex/fancyslides/doc/blank.jpg RELOC/doc/latex/fancyslides/doc/blue.png RELOC/doc/latex/fancyslides/doc/example.pdf RELOC/doc/latex/fancyslides/doc/example.tex - RELOC/doc/latex/fancyslides/doc/fancyslides.pdf + RELOC/doc/latex/fancyslides/doc/fancyslides.pdf details="Package documentation" RELOC/doc/latex/fancyslides/doc/fancyslides.tex RELOC/doc/latex/fancyslides/doc/frame.png RELOC/doc/latex/fancyslides/doc/fs.pdf @@ -60975,35 +102230,45 @@ docfiles size=994 RELOC/doc/latex/fancyslides/doc/item.png RELOC/doc/latex/fancyslides/doc/orange.png RELOC/doc/latex/fancyslides/doc/point.png +runfiles size=1 + RELOC/tex/latex/fancyslides/fancyslides.cls catalogue-ctan /macros/latex/contrib/fancyslides -catalogue-date 2015-03-01 06:19:26 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics presentation class catalogue-version 1.0 name fancytabs category Package -revision 27684 -shortdesc Fancy page border tabs. +revision 41549 +shortdesc Fancy page border tabs relocated 1 longdesc The package can typeset tabs on the side of a page. It requires longdesc TikZ from the pgf bundle. -runfiles size=1 - RELOC/tex/latex/fancytabs/fancytabs.sty -docfiles size=45 +containersize 1600 +containerchecksum 0cd45edda0062f4a0fbc26a0516d7f5b35cb4f8dfd4072830da880369d71d8a4aea6a7d5dd95a0b479ec3128170108f114aa00ef4b0c8324c60ddd214568f5cf +doccontainersize 184668 +doccontainerchecksum 0113da627d27fe88c4faa87e1564851344dac2efb75c78facc4da49a8937e2bda8e1f22997a2018b368001c24e721cbf623fc199d03673701a55c7ca45404770 +docfiles size=46 RELOC/doc/latex/fancytabs/README - RELOC/doc/latex/fancytabs/fancytabs.pdf + RELOC/doc/latex/fancytabs/fancytabs.pdf details="Package documentation" +srccontainersize 3964 +srccontainerchecksum 4a7c92f30414a595cc8c928b181565e3d50614fb4e5a128197bb4a8f90a50cbd9c75ca447bf37c41e9fe3c05d4422d6e3618da63edc51f240dc3e8d55c8d61dd srcfiles size=4 RELOC/source/latex/fancytabs/fancytabs.dtx RELOC/source/latex/fancytabs/fancytabs.ins +runfiles size=1 + RELOC/tex/latex/fancytabs/fancytabs.sty catalogue-ctan /macros/latex/contrib/fancytabs -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-27 10:08:39 +0200 catalogue-license lppl1.3 -catalogue-version 1.8 +catalogue-topics decoration +catalogue-version 1.9 name fancytooltips category Package revision 27129 -shortdesc Include a wide range of material in PDF tooltips. +shortdesc Include a wide range of material in PDF tooltips relocated 1 longdesc The package was inspired by the cooltooltips package. In longdesc contrast to cooltooltips, fancytooltips allows inclusion of @@ -61012,11 +102277,10 @@ longdesc TeX materials (animated graphics) from an external PDF file. To longdesc see the tooltips, you have to open the files in Adobe Reader. longdesc The links and JavaScripts are inserted using eforms package longdesc from the AcroTeX bundle. -runfiles size=10 - RELOC/tex/latex/fancytooltips/fancytipmark.eps - RELOC/tex/latex/fancytooltips/fancytipmark.pdf - RELOC/tex/latex/fancytooltips/fancytipmark.svg - RELOC/tex/latex/fancytooltips/fancytooltips.sty +containersize 8020 +containerchecksum e1d7243552cdf65cef1e647472a7f6c1d818c1e862afcf8069768d9beec01e4c250786e2c4c1af4febbdf94f20362110399bee33c7902bb7006de474a0d013e6 +doccontainersize 1112404 +doccontainerchecksum 4bd82e0ae682abd0157f94b5374ecdc6cedeff0af22a5227ab527b725d8710bd7f8c5a38b7380a91ecaaa383824d8b88d182d1edde312492c34728ab6ff2f4e3 docfiles size=513 RELOC/doc/latex/fancytooltips/cite.png RELOC/doc/latex/fancytooltips/examples/fancy-preview-demo.pdf @@ -61036,22 +102300,31 @@ docfiles size=513 RELOC/doc/latex/fancytooltips/fancytipmark2.pdf RELOC/doc/latex/fancytooltips/fancytipmark3.pdf RELOC/doc/latex/fancytooltips/fancytipmark4.pdf - RELOC/doc/latex/fancytooltips/fancytooltips.pdf + RELOC/doc/latex/fancytooltips/fancytooltips.pdf details="Package documentation" RELOC/doc/latex/fancytooltips/readme RELOC/doc/latex/fancytooltips/tip.pdf RELOC/doc/latex/fancytooltips/tip.tex +srccontainersize 16736 +srccontainerchecksum 3c6d477873c8fa6560d4188dbad1dbe43a422f08f4bcbdc15b034e0ee7dc5529171d005f48a25e1df6d6e6fbd0f8db5f11c233c515ee70e307cfc31e5f434e24 srcfiles size=16 RELOC/source/latex/fancytooltips/fancytooltips.dtx RELOC/source/latex/fancytooltips/fancytooltips.ins +runfiles size=10 + RELOC/tex/latex/fancytooltips/fancytipmark.eps + RELOC/tex/latex/fancytooltips/fancytipmark.pdf + RELOC/tex/latex/fancytooltips/fancytipmark.svg + RELOC/tex/latex/fancytooltips/fancytooltips.sty +catalogue-contact-repository http://bitbucket.org/robert.marik/fancytooltips/ catalogue-ctan /macros/latex/contrib/fancytooltips -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl1.2 +catalogue-topics pdf-feat catalogue-version 1.8 name fancyvrb category Package -revision 18492 -shortdesc Sophisticated verbatim text. +revision 49717 +shortdesc Sophisticated verbatim text relocated 1 longdesc Flexible handling of verbatim text including: verbatim commands longdesc in footnotes; a variety of verbatim environments with many @@ -61059,37 +102332,41 @@ longdesc parameters; ability to define new customized verbatim longdesc environments; save and restore verbatim text and environments; longdesc write and read files in verbatim mode; build "example" longdesc environments (showing both result and verbatim source). -runfiles size=18 +containersize 11972 +containerchecksum 334df96a99813a99d36a68cb99b35145048bc478e463373efec5932bfa981eec2eeac910616e6cda2491636961249c947b9daf4b130329696c755076909cf46b +doccontainersize 170044 +doccontainerchecksum 45ef859efb1e9f22799686600c1be8a5f2db4acece1f8c0bb4e1bcd37ce5a83d708ea027f0c0b60da7bbb2c8add47ce70ef6f53f68bf0810886066230072c9d2 +docfiles size=52 + RELOC/doc/latex/fancyvrb/Changes + RELOC/doc/latex/fancyvrb/README details="Readme" + RELOC/doc/latex/fancyvrb/fancyvrb-doc.pdf details="Package documentation" + RELOC/doc/latex/fancyvrb/fancyvrb-doc.tex +runfiles size=17 + RELOC/tex/latex/fancyvrb/fancyvrb-ex.sty RELOC/tex/latex/fancyvrb/fancyvrb.sty - RELOC/tex/latex/fancyvrb/fvrb-ex.sty RELOC/tex/latex/fancyvrb/hbaw.sty RELOC/tex/latex/fancyvrb/hcolor.sty -docfiles size=134 - RELOC/doc/latex/fancyvrb/Changes - RELOC/doc/latex/fancyvrb/Makefile - RELOC/doc/latex/fancyvrb/README - RELOC/doc/latex/fancyvrb/README.contrib - RELOC/doc/latex/fancyvrb/fancyvrb.pdf - RELOC/doc/latex/fancyvrb/fvrb-ex.pdf - RELOC/doc/latex/fancyvrb/t-fvrbex.tex -srcfiles size=48 - RELOC/source/latex/fancyvrb/fancyvrb.dtx - RELOC/source/latex/fancyvrb/fancyvrb.ins - RELOC/source/latex/fancyvrb/fvrb-ex.dtx - RELOC/source/latex/fancyvrb/fvrb-ex.ins catalogue-ctan /macros/latex/contrib/fancyvrb -catalogue-date 2011-10-06 15:38:07 +0200 -catalogue-license lppl -catalogue-version 2.8 +catalogue-date 2019-01-15 20:16:28 +0100 +catalogue-license lppl1.3 +catalogue-topics verbatim +catalogue-version 3.2a name fandol category Package revision 37889 -shortdesc Four basic fonts for Chinese typesetting. +shortdesc Four basic fonts for Chinese typesetting relocated 1 longdesc Fandol fonts designed for Chinese typesetting. The current longdesc version contains four styles: Song, Hei, Kai, Fang. All fonts longdesc are in OpenType format. +containersize 21582588 +containerchecksum 309b19d6bff9d3e009610d698a73ba191da70cabd57157f274dfca7583a9e9b31fc30ea52b2b2ab3386be7290a680f8eb47dc92381c3da8251b01d8c6a65c3ff +doccontainersize 12168 +doccontainerchecksum d74e78a1c863d3865ec4b21a4c762bf6e2c30a8656fe0ec830d1e56b9fcb48861f316ccf8d8641e7c674e25f1ac2292d10ff2127315275347096ad325828d7e5 +docfiles size=10 + RELOC/doc/fonts/fandol/COPYING + RELOC/doc/fonts/fandol/README details="Readme" runfiles size=8526 RELOC/fonts/opentype/public/fandol/FandolBraille-Display.otf RELOC/fonts/opentype/public/fandol/FandolBraille-Regular.otf @@ -61099,110 +102376,83 @@ runfiles size=8526 RELOC/fonts/opentype/public/fandol/FandolKai-Regular.otf RELOC/fonts/opentype/public/fandol/FandolSong-Bold.otf RELOC/fonts/opentype/public/fandol/FandolSong-Regular.otf -docfiles size=10 - RELOC/doc/fonts/fandol/COPYING - RELOC/doc/fonts/fandol/README catalogue-ctan /fonts/fandol -catalogue-date 2015-07-18 16:26:42 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl catalogue-topics font chinese font-cjk font-otf catalogue-version 0.3 -name FAQ-en -category Package -revision 34303 -catalogue uk-tex-faq -shortdesc A compilation of Frequently Asked Questions with answers. -relocated 1 -longdesc The FAQ that has in the past been published in the UK TeX Users -longdesc Group journal Baskerville (though updated more frequently on -longdesc CTAN). It is also available (and searchable) via on the web. -docfiles size=2191 - RELOC/doc/generic/FAQ-en/CHANGES-3.16b - RELOC/doc/generic/FAQ-en/CHANGES-3.16c - RELOC/doc/generic/FAQ-en/CHANGES-3.17 - RELOC/doc/generic/FAQ-en/CHANGES-3.18 - RELOC/doc/generic/FAQ-en/CHANGES-3.19 - RELOC/doc/generic/FAQ-en/CHANGES-3.19a - RELOC/doc/generic/FAQ-en/CHANGES-3.19c - RELOC/doc/generic/FAQ-en/CHANGES-3.19d - RELOC/doc/generic/FAQ-en/CHANGES-3.20 - RELOC/doc/generic/FAQ-en/CHANGES-3.21 - RELOC/doc/generic/FAQ-en/CHANGES-3.22 - RELOC/doc/generic/FAQ-en/CHANGES-3.23 - RELOC/doc/generic/FAQ-en/CHANGES-3.24 - RELOC/doc/generic/FAQ-en/CHANGES-3.25 - RELOC/doc/generic/FAQ-en/CHANGES-3.26 - RELOC/doc/generic/FAQ-en/CHANGES-3.27 - RELOC/doc/generic/FAQ-en/CHANGES-3.28 - RELOC/doc/generic/FAQ-en/ChangeLog - RELOC/doc/generic/FAQ-en/FAQ-html.tar.gz - RELOC/doc/generic/FAQ-en/FAQ-html.tar.xz - RELOC/doc/generic/FAQ-en/Makefile - RELOC/doc/generic/FAQ-en/Makefile-CTAN - RELOC/doc/generic/FAQ-en/README - RELOC/doc/generic/FAQ-en/archive.cfg - RELOC/doc/generic/FAQ-en/dirctan.tex - RELOC/doc/generic/FAQ-en/faq-adj-types.tex - RELOC/doc/generic/FAQ-en/faq-backgrnd.tex - RELOC/doc/generic/FAQ-en/faq-biblio.tex - RELOC/doc/generic/FAQ-en/faq-bits+pieces.tex - RELOC/doc/generic/FAQ-en/faq-docs.tex - RELOC/doc/generic/FAQ-en/faq-dvi.tex - RELOC/doc/generic/FAQ-en/faq-fmt-conv.tex - RELOC/doc/generic/FAQ-en/faq-fonts.tex - RELOC/doc/generic/FAQ-en/faq-getit.tex - RELOC/doc/generic/FAQ-en/faq-graphics.tex - RELOC/doc/generic/FAQ-en/faq-how-do-i.tex - RELOC/doc/generic/FAQ-en/faq-hyp+pdf.tex - RELOC/doc/generic/FAQ-en/faq-images.tex - RELOC/doc/generic/FAQ-en/faq-install.tex - RELOC/doc/generic/FAQ-en/faq-intro.tex - RELOC/doc/generic/FAQ-en/faq-jot-err.tex - RELOC/doc/generic/FAQ-en/faq-lab-ref.tex - RELOC/doc/generic/FAQ-en/faq-litprog.tex - RELOC/doc/generic/FAQ-en/faq-mac-prog.tex - RELOC/doc/generic/FAQ-en/faq-projects.tex - RELOC/doc/generic/FAQ-en/faq-support.tex - RELOC/doc/generic/FAQ-en/faq-symbols.tex - RELOC/doc/generic/FAQ-en/faq-t-g-wr.tex - RELOC/doc/generic/FAQ-en/faq-texsys.tex - RELOC/doc/generic/FAQ-en/faq-the-end.tex - RELOC/doc/generic/FAQ-en/faq-wdidt.tex - RELOC/doc/generic/FAQ-en/faq.cls - RELOC/doc/generic/FAQ-en/faq.sty - RELOC/doc/generic/FAQ-en/faqfont.cfg - RELOC/doc/generic/FAQ-en/faqfont.cfg.cmfonts - RELOC/doc/generic/FAQ-en/faqfont.cfg.lmfonts - RELOC/doc/generic/FAQ-en/faqfont.cfg.mbvj - RELOC/doc/generic/FAQ-en/faqfont.cfg.ugm - RELOC/doc/generic/FAQ-en/filectan.tex - RELOC/doc/generic/FAQ-en/gather-faqbody.tex - RELOC/doc/generic/FAQ-en/install-CTAN - RELOC/doc/generic/FAQ-en/letterfaq.pdf - RELOC/doc/generic/FAQ-en/letterfaq.tex - RELOC/doc/generic/FAQ-en/locations.mk - RELOC/doc/generic/FAQ-en/markup-syntax - RELOC/doc/generic/FAQ-en/newfaq.pdf - RELOC/doc/generic/FAQ-en/newfaq.tex -catalogue-ctan /help/uk-tex-faq -catalogue-date 2014-06-11 16:14:05 +0200 -catalogue-license pd -catalogue-version 3.28 +name fascicules +category Package +revision 49457 +shortdesc Create mathematical manuals for schools +relocated 1 +longdesc This package enables LaTeX users to create math books for +longdesc middle and high schools. It provides commands to create the +longdesc front page of the manual and the chapters. Each chapter can +longdesc consist of three sections: the lesson, the exercises and the +longdesc activities. +containersize 5708 +containerchecksum 5ca661dea7cad6094d66d0a843cf5f19183154f81773db38f9a13795a5b9d8646e9f0b471bbd741e5f25cd424f199b3a18d1257a7e8d07e0d812a04ae202ca24 +doccontainersize 2042292 +doccontainerchecksum 02d72ccdec87334da2c10d5a57b004357e36c8fc1aad33783e44992019fe3dcc8b8d6442d63870b4806c3dd080c3518bf94ae110531ac65947584301a11b4b51 +docfiles size=760 + RELOC/doc/latex/fascicules/README.md details="Readme" + RELOC/doc/latex/fascicules/fascicules.pdf details="Package documentation" + RELOC/doc/latex/fascicules/guide/ch4_mon_chapitre/chapitre.tex + RELOC/doc/latex/fascicules/guide/ch4_mon_chapitre/content/act.tex + RELOC/doc/latex/fascicules/guide/ch4_mon_chapitre/content/activite_TP_geogebra_paraboles.tex + RELOC/doc/latex/fascicules/guide/ch4_mon_chapitre/content/cours_second_degre.tex + RELOC/doc/latex/fascicules/guide/ch4_mon_chapitre/content/crs.tex + RELOC/doc/latex/fascicules/guide/ch4_mon_chapitre/content/exos.tex + RELOC/doc/latex/fascicules/guide/ch4_mon_chapitre/content/exos_algebre.tex + RELOC/doc/latex/fascicules/guide/ch4_mon_chapitre/content/exos_second_degre.tex + RELOC/doc/latex/fascicules/guide/ch4_mon_chapitre/img/chapitre.jpg + RELOC/doc/latex/fascicules/guide/content/act.tex + RELOC/doc/latex/fascicules/guide/content/act_back.tex + RELOC/doc/latex/fascicules/guide/content/ch1_introduction.tex + RELOC/doc/latex/fascicules/guide/content/ch2_organisation.tex + RELOC/doc/latex/fascicules/guide/content/ch3_graphiques.tex + RELOC/doc/latex/fascicules/guide/content/ch4_nouveau_chapitre.tex + RELOC/doc/latex/fascicules/guide/content/exos.tex + RELOC/doc/latex/fascicules/guide/content/img/ch1.png + RELOC/doc/latex/fascicules/guide/content/img/ch2.jpg + RELOC/doc/latex/fascicules/guide/content/img/ch3.jpg + RELOC/doc/latex/fascicules/guide/content/img/vieuxlivres.jpg + RELOC/doc/latex/fascicules/guide/guide.pdf details="Package documentation" language="fr" + RELOC/doc/latex/fascicules/guide/guide.tex + RELOC/doc/latex/fascicules/guide/preamble.tex + RELOC/doc/latex/fascicules/guide/solutions/ch2.tex +srccontainersize 9292 +srccontainerchecksum c129da364d22c605feba74d4e93d7eb48c8b5a3ef77c60d2f930fa2d3c8f757bbf3fd8a5aa8f3afc688057d80d86acb5b74d2d9b422d387bc075e7e7122150d8 +srcfiles size=9 + RELOC/source/latex/fascicules/fascicules.dtx + RELOC/source/latex/fascicules/fascicules.ins +runfiles size=5 + RELOC/tex/latex/fascicules/fascicules.sty +catalogue-also schule +catalogue-contact-home http://fascicules.serveblog.net/ +catalogue-ctan /macros/latex/contrib/fascicules +catalogue-date 2018-12-21 06:32:50 +0100 +catalogue-license lppl +catalogue-topics teaching +catalogue-version 1 name fast-diagram category Package revision 29264 -shortdesc Easy generation of FAST diagrams. +shortdesc Easy generation of FAST diagrams relocated 1 longdesc The package provides simple means of producing FAST diagrams, longdesc using TikZ/pgf tools. FAST diagrams are useful for functional longdesc analysis techniques in design methods. -runfiles size=5 - RELOC/tex/latex/fast-diagram/fast-diagram.sty +containersize 4188 +containerchecksum cedc8305ba0a7b1d22274d869629a1872a80a4001b443c8baa93e44198a5dd88e39c16c28bb5edf9fedf4f8f2f68c6964f009cbf6feb21c7c14974c4b598acbb +doccontainersize 1394284 +doccontainerchecksum cd8e3edf882fc16b5757f59d16ed1a479e437eba36c783cd86cdfb9cb81f8b30e8b95a522ef6fe4b6e22b4b0bf6637e72bff734f7771034cfaf85df935e4a003 docfiles size=405 - RELOC/doc/latex/fast-diagram/README - RELOC/doc/latex/fast-diagram/help.pdf + RELOC/doc/latex/fast-diagram/README details="Readme" language="fr" + RELOC/doc/latex/fast-diagram/help.pdf details="Package documentation" language="fr" RELOC/doc/latex/fast-diagram/help.tex RELOC/doc/latex/fast-diagram/sources_help/commandes.tex RELOC/doc/latex/fast-diagram/sources_help/exemple.tex @@ -61221,14 +102471,17 @@ docfiles size=405 RELOC/doc/latex/fast-diagram/sources_help/miseEnForme.tex RELOC/doc/latex/fast-diagram/sources_help/reglages.tex RELOC/doc/latex/fast-diagram/sources_help/tikz.tex +runfiles size=5 + RELOC/tex/latex/fast-diagram/fast-diagram.sty catalogue-ctan /graphics/pgf/contrib/fast-diagram -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics diagram pgf-tikz catalogue-version 1.1 name fbb category Package -revision 38195 +revision 45277 shortdesc A free Bembo-like font relocated 1 longdesc The package provides a Bembo-like font package based on Cardo @@ -61239,74 +102492,146 @@ longdesc OpenType and Adobe Type 1 versions are provided; all necessary longdesc support files are provided. The font works well with longdesc newtxmath's libertine option. execute addMap fbb.map -runfiles size=1287 - RELOC/fonts/enc/dvips/fbb/fbb_2xteu2.enc - RELOC/fonts/enc/dvips/fbb/fbb_3pafo2.enc - RELOC/fonts/enc/dvips/fbb/fbb_3q7523.enc - RELOC/fonts/enc/dvips/fbb/fbb_3szmnl.enc - RELOC/fonts/enc/dvips/fbb/fbb_3t72qi.enc - RELOC/fonts/enc/dvips/fbb/fbb_47nzug.enc - RELOC/fonts/enc/dvips/fbb/fbb_4eykqf.enc - RELOC/fonts/enc/dvips/fbb/fbb_4fm2lh.enc - RELOC/fonts/enc/dvips/fbb/fbb_4phrex.enc +containersize 1150328 +containerchecksum eebe9b977296dc02938c13cb9a160612adafc00dbf200fdebaad5eb1efe8c41eafd6102e40b7be2e734fceb7c92cf84730182bc2743c5c68924b00a5769ad172 +doccontainersize 481564 +doccontainerchecksum 480f1df4a1b1ad29f009d70f56e96ca3ea3e76ca913a86cc4b75850211dd4f92e3e43fd9ce832ebba98aae194111ed340af2f530f00edd37e4a63016dc7bc215 +docfiles size=124 + RELOC/doc/fonts/fbb/OFL.txt + RELOC/doc/fonts/fbb/README details="Readme" + RELOC/doc/fonts/fbb/fbb-doc.pdf details="Introduction and sampler" + RELOC/doc/fonts/fbb/fbb-doc.tex +runfiles size=1356 + RELOC/fonts/enc/dvips/fbb/fbbP_24i7kn.enc + RELOC/fonts/enc/dvips/fbb/fbbP_2igduj.enc + RELOC/fonts/enc/dvips/fbb/fbbP_2rpgpv.enc + RELOC/fonts/enc/dvips/fbb/fbbP_3jbdvr.enc + RELOC/fonts/enc/dvips/fbb/fbbP_3vg2qh.enc + RELOC/fonts/enc/dvips/fbb/fbbP_3x7qz7.enc + RELOC/fonts/enc/dvips/fbb/fbbP_4dtvfs.enc + RELOC/fonts/enc/dvips/fbb/fbbP_4ub365.enc + RELOC/fonts/enc/dvips/fbb/fbbP_4yxw5s.enc + RELOC/fonts/enc/dvips/fbb/fbbP_6jsnwi.enc + RELOC/fonts/enc/dvips/fbb/fbbP_74hp34.enc + RELOC/fonts/enc/dvips/fbb/fbbP_a4z4rd.enc + RELOC/fonts/enc/dvips/fbb/fbbP_abxuuz.enc + RELOC/fonts/enc/dvips/fbb/fbbP_apfaee.enc + RELOC/fonts/enc/dvips/fbb/fbbP_c7tp77.enc + RELOC/fonts/enc/dvips/fbb/fbbP_cs2ala.enc + RELOC/fonts/enc/dvips/fbb/fbbP_cxby4w.enc + RELOC/fonts/enc/dvips/fbb/fbbP_czyxdq.enc + RELOC/fonts/enc/dvips/fbb/fbbP_eqihnh.enc + RELOC/fonts/enc/dvips/fbb/fbbP_fnx3vr.enc + RELOC/fonts/enc/dvips/fbb/fbbP_hxsiy3.enc + RELOC/fonts/enc/dvips/fbb/fbbP_injsuv.enc + RELOC/fonts/enc/dvips/fbb/fbbP_jlcl4a.enc + RELOC/fonts/enc/dvips/fbb/fbbP_kj7jke.enc + RELOC/fonts/enc/dvips/fbb/fbbP_ky4nvh.enc + RELOC/fonts/enc/dvips/fbb/fbbP_lhoenn.enc + RELOC/fonts/enc/dvips/fbb/fbbP_lrstk7.enc + RELOC/fonts/enc/dvips/fbb/fbbP_lvd3xm.enc + RELOC/fonts/enc/dvips/fbb/fbbP_nrlrus.enc + RELOC/fonts/enc/dvips/fbb/fbbP_phk6jg.enc + RELOC/fonts/enc/dvips/fbb/fbbP_pv6xl7.enc + RELOC/fonts/enc/dvips/fbb/fbbP_royvig.enc + RELOC/fonts/enc/dvips/fbb/fbbP_s6izhs.enc + RELOC/fonts/enc/dvips/fbb/fbbP_t2yqlr.enc + RELOC/fonts/enc/dvips/fbb/fbbP_ub5jdu.enc + RELOC/fonts/enc/dvips/fbb/fbbP_ulsnvv.enc + RELOC/fonts/enc/dvips/fbb/fbbP_uscd66.enc + RELOC/fonts/enc/dvips/fbb/fbbP_xwrraw.enc + RELOC/fonts/enc/dvips/fbb/fbbP_yyrixd.enc + RELOC/fonts/enc/dvips/fbb/fbbP_zr7tm6.enc + RELOC/fonts/enc/dvips/fbb/fbb_24i7kn.enc + RELOC/fonts/enc/dvips/fbb/fbb_2igduj.enc + RELOC/fonts/enc/dvips/fbb/fbb_2rpgpv.enc + RELOC/fonts/enc/dvips/fbb/fbb_3jbdvr.enc + RELOC/fonts/enc/dvips/fbb/fbb_3vg2qh.enc + RELOC/fonts/enc/dvips/fbb/fbb_3x7qz7.enc + RELOC/fonts/enc/dvips/fbb/fbb_4dtvfs.enc + RELOC/fonts/enc/dvips/fbb/fbb_4ub365.enc + RELOC/fonts/enc/dvips/fbb/fbb_4yxw5s.enc RELOC/fonts/enc/dvips/fbb/fbb_5kfdlm.enc - RELOC/fonts/enc/dvips/fbb/fbb_5yuftp.enc - RELOC/fonts/enc/dvips/fbb/fbb_646rxv.enc - RELOC/fonts/enc/dvips/fbb/fbb_6wf2yd.enc - RELOC/fonts/enc/dvips/fbb/fbb_7ftbhc.enc - RELOC/fonts/enc/dvips/fbb/fbb_bbqv4h.enc - RELOC/fonts/enc/dvips/fbb/fbb_bjcd27.enc - RELOC/fonts/enc/dvips/fbb/fbb_cglacz.enc - RELOC/fonts/enc/dvips/fbb/fbb_ciz6qs.enc - RELOC/fonts/enc/dvips/fbb/fbb_dfjaoq.enc - RELOC/fonts/enc/dvips/fbb/fbb_dli7xt.enc - RELOC/fonts/enc/dvips/fbb/fbb_do4apa.enc - RELOC/fonts/enc/dvips/fbb/fbb_dppuce.enc - RELOC/fonts/enc/dvips/fbb/fbb_eaddwb.enc + RELOC/fonts/enc/dvips/fbb/fbb_5oz5gl.enc + RELOC/fonts/enc/dvips/fbb/fbb_5tchvx.enc + RELOC/fonts/enc/dvips/fbb/fbb_6d6a4c.enc + RELOC/fonts/enc/dvips/fbb/fbb_6dtuyn.enc + RELOC/fonts/enc/dvips/fbb/fbb_6jsnwi.enc + RELOC/fonts/enc/dvips/fbb/fbb_6wvyhf.enc + RELOC/fonts/enc/dvips/fbb/fbb_74hp34.enc + RELOC/fonts/enc/dvips/fbb/fbb_a4z4rd.enc + RELOC/fonts/enc/dvips/fbb/fbb_abxuuz.enc + RELOC/fonts/enc/dvips/fbb/fbb_adtay5.enc + RELOC/fonts/enc/dvips/fbb/fbb_aeezmr.enc + RELOC/fonts/enc/dvips/fbb/fbb_anjsak.enc + RELOC/fonts/enc/dvips/fbb/fbb_apfaee.enc + RELOC/fonts/enc/dvips/fbb/fbb_b4m333.enc + RELOC/fonts/enc/dvips/fbb/fbb_bmu2km.enc + RELOC/fonts/enc/dvips/fbb/fbb_bus4he.enc + RELOC/fonts/enc/dvips/fbb/fbb_bwjmva.enc + RELOC/fonts/enc/dvips/fbb/fbb_c7tp77.enc + RELOC/fonts/enc/dvips/fbb/fbb_cs2ala.enc + RELOC/fonts/enc/dvips/fbb/fbb_cxby4w.enc + RELOC/fonts/enc/dvips/fbb/fbb_czyxdq.enc + RELOC/fonts/enc/dvips/fbb/fbb_dz2n6o.enc + RELOC/fonts/enc/dvips/fbb/fbb_eqihnh.enc + RELOC/fonts/enc/dvips/fbb/fbb_etgfaq.enc + RELOC/fonts/enc/dvips/fbb/fbb_ezhvrf.enc RELOC/fonts/enc/dvips/fbb/fbb_fefik6.enc - RELOC/fonts/enc/dvips/fbb/fbb_fmiu37.enc - RELOC/fonts/enc/dvips/fbb/fbb_gia3f7.enc - RELOC/fonts/enc/dvips/fbb/fbb_gti7xr.enc - RELOC/fonts/enc/dvips/fbb/fbb_h4gxkq.enc - RELOC/fonts/enc/dvips/fbb/fbb_h4yzgv.enc - RELOC/fonts/enc/dvips/fbb/fbb_icb62t.enc - RELOC/fonts/enc/dvips/fbb/fbb_iqrulf.enc - RELOC/fonts/enc/dvips/fbb/fbb_k4t5oa.enc - RELOC/fonts/enc/dvips/fbb/fbb_k67ydz.enc - RELOC/fonts/enc/dvips/fbb/fbb_k6hjgp.enc - RELOC/fonts/enc/dvips/fbb/fbb_lahflm.enc - RELOC/fonts/enc/dvips/fbb/fbb_lqd7qz.enc - RELOC/fonts/enc/dvips/fbb/fbb_ms7h4m.enc - RELOC/fonts/enc/dvips/fbb/fbb_nakqlt.enc - RELOC/fonts/enc/dvips/fbb/fbb_nyched.enc - RELOC/fonts/enc/dvips/fbb/fbb_p2khiw.enc - RELOC/fonts/enc/dvips/fbb/fbb_p6sgcp.enc - RELOC/fonts/enc/dvips/fbb/fbb_pg3xpw.enc - RELOC/fonts/enc/dvips/fbb/fbb_pjzzzk.enc - RELOC/fonts/enc/dvips/fbb/fbb_pkrngd.enc - RELOC/fonts/enc/dvips/fbb/fbb_pqcug3.enc - RELOC/fonts/enc/dvips/fbb/fbb_q44qkc.enc - RELOC/fonts/enc/dvips/fbb/fbb_qxzlqe.enc + RELOC/fonts/enc/dvips/fbb/fbb_fnx3vr.enc + RELOC/fonts/enc/dvips/fbb/fbb_g2f763.enc + RELOC/fonts/enc/dvips/fbb/fbb_go4yop.enc + RELOC/fonts/enc/dvips/fbb/fbb_gzkpy3.enc + RELOC/fonts/enc/dvips/fbb/fbb_hcnfcw.enc + RELOC/fonts/enc/dvips/fbb/fbb_hxsiy3.enc + RELOC/fonts/enc/dvips/fbb/fbb_injsuv.enc + RELOC/fonts/enc/dvips/fbb/fbb_iygvdi.enc + RELOC/fonts/enc/dvips/fbb/fbb_jlcl4a.enc + RELOC/fonts/enc/dvips/fbb/fbb_jzvlrb.enc + RELOC/fonts/enc/dvips/fbb/fbb_kj7jke.enc + RELOC/fonts/enc/dvips/fbb/fbb_kwudtp.enc + RELOC/fonts/enc/dvips/fbb/fbb_ky4nvh.enc + RELOC/fonts/enc/dvips/fbb/fbb_lhoenn.enc + RELOC/fonts/enc/dvips/fbb/fbb_lqj37t.enc + RELOC/fonts/enc/dvips/fbb/fbb_lrstk7.enc + RELOC/fonts/enc/dvips/fbb/fbb_lvd3xm.enc + RELOC/fonts/enc/dvips/fbb/fbb_nrlrus.enc + RELOC/fonts/enc/dvips/fbb/fbb_ocq2gf.enc + RELOC/fonts/enc/dvips/fbb/fbb_opprwl.enc + RELOC/fonts/enc/dvips/fbb/fbb_p2erkm.enc + RELOC/fonts/enc/dvips/fbb/fbb_phk6jg.enc + RELOC/fonts/enc/dvips/fbb/fbb_plk2rr.enc + RELOC/fonts/enc/dvips/fbb/fbb_pv6xl7.enc RELOC/fonts/enc/dvips/fbb/fbb_r5yodg.enc - RELOC/fonts/enc/dvips/fbb/fbb_tizue6.enc + RELOC/fonts/enc/dvips/fbb/fbb_royvig.enc + RELOC/fonts/enc/dvips/fbb/fbb_s6izhs.enc + RELOC/fonts/enc/dvips/fbb/fbb_sgqxi5.enc + RELOC/fonts/enc/dvips/fbb/fbb_t2yqlr.enc RELOC/fonts/enc/dvips/fbb/fbb_tpadeo.enc - RELOC/fonts/enc/dvips/fbb/fbb_u3ego5.enc - RELOC/fonts/enc/dvips/fbb/fbb_uqncc5.enc - RELOC/fonts/enc/dvips/fbb/fbb_vokwwj.enc - RELOC/fonts/enc/dvips/fbb/fbb_vvs2t7.enc - RELOC/fonts/enc/dvips/fbb/fbb_w6cgkc.enc - RELOC/fonts/enc/dvips/fbb/fbb_wmfgc4.enc - RELOC/fonts/enc/dvips/fbb/fbb_wmijbz.enc - RELOC/fonts/enc/dvips/fbb/fbb_xcuijf.enc - RELOC/fonts/enc/dvips/fbb/fbb_xmsf7g.enc + RELOC/fonts/enc/dvips/fbb/fbb_ub5jdu.enc + RELOC/fonts/enc/dvips/fbb/fbb_ukqj6n.enc + RELOC/fonts/enc/dvips/fbb/fbb_ulsnvv.enc + RELOC/fonts/enc/dvips/fbb/fbb_uscd66.enc + RELOC/fonts/enc/dvips/fbb/fbb_wlmntx.enc + RELOC/fonts/enc/dvips/fbb/fbb_xgcxym.enc + RELOC/fonts/enc/dvips/fbb/fbb_xwrraw.enc + RELOC/fonts/enc/dvips/fbb/fbb_y7mzwe.enc + RELOC/fonts/enc/dvips/fbb/fbb_yjjj42.enc RELOC/fonts/enc/dvips/fbb/fbb_yr6epv.enc - RELOC/fonts/enc/dvips/fbb/fbb_zac64m.enc - RELOC/fonts/enc/dvips/fbb/fbb_zxsywv.enc + RELOC/fonts/enc/dvips/fbb/fbb_yyrixd.enc + RELOC/fonts/enc/dvips/fbb/fbb_z2sumr.enc + RELOC/fonts/enc/dvips/fbb/fbb_zehjg6.enc + RELOC/fonts/enc/dvips/fbb/fbb_zr7tm6.enc RELOC/fonts/map/dvips/fbb/fbb.map RELOC/fonts/opentype/public/fbb/fbb-Bold.otf RELOC/fonts/opentype/public/fbb/fbb-BoldItalic.otf RELOC/fonts/opentype/public/fbb/fbb-Italic.otf RELOC/fonts/opentype/public/fbb/fbb-Regular.otf + RELOC/fonts/tfm/public/fbb/fbb-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-inf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-inf-t1.tfm RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-ly1--base.tfm RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-ly1.tfm RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-ot1.tfm @@ -61364,6 +102689,11 @@ runfiles size=1287 RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-t1.tfm RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-inf-t1.tfm RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-ly1--base.tfm RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-ly1.tfm RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-ot1.tfm @@ -61421,6 +102751,11 @@ runfiles size=1287 RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-t1.tfm RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-inf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-inf-t1.tfm RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-ly1--base.tfm RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-ly1.tfm RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-ot1.tfm @@ -61478,6 +102813,11 @@ runfiles size=1287 RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-t1.tfm RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-inf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-inf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-inf-t1.tfm RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-ly1--base.tfm RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-ly1.tfm RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-ot1.tfm @@ -61535,10 +102875,100 @@ runfiles size=1287 RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-t1.tfm RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbbP-Regular-tosf-t1.tfm RELOC/fonts/type1/public/fbb/fbb-Bold.pfb RELOC/fonts/type1/public/fbb/fbb-BoldItalic.pfb RELOC/fonts/type1/public/fbb/fbb-Italic.pfb RELOC/fonts/type1/public/fbb/fbb-Regular.pfb + RELOC/fonts/vf/public/fbb/fbb-Bold-inf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-inf-t1.vf RELOC/fonts/vf/public/fbb/fbb-Bold-lf-ly1.vf RELOC/fonts/vf/public/fbb/fbb-Bold-lf-sc-ly1.vf RELOC/fonts/vf/public/fbb/fbb-Bold-lf-sc-ot1.vf @@ -61565,6 +102995,8 @@ runfiles size=1287 RELOC/fonts/vf/public/fbb/fbb-Bold-tosf-sc-t1.vf RELOC/fonts/vf/public/fbb/fbb-Bold-tosf-t1.vf RELOC/fonts/vf/public/fbb/fbb-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-inf-t1.vf RELOC/fonts/vf/public/fbb/fbb-BoldItalic-lf-ly1.vf RELOC/fonts/vf/public/fbb/fbb-BoldItalic-lf-sc-ly1.vf RELOC/fonts/vf/public/fbb/fbb-BoldItalic-lf-sc-ot1.vf @@ -61591,6 +103023,8 @@ runfiles size=1287 RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tosf-sc-t1.vf RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tosf-t1.vf RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-inf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-inf-t1.vf RELOC/fonts/vf/public/fbb/fbb-Italic-lf-ly1.vf RELOC/fonts/vf/public/fbb/fbb-Italic-lf-sc-ly1.vf RELOC/fonts/vf/public/fbb/fbb-Italic-lf-sc-ot1.vf @@ -61617,6 +103051,8 @@ runfiles size=1287 RELOC/fonts/vf/public/fbb/fbb-Italic-tosf-sc-t1.vf RELOC/fonts/vf/public/fbb/fbb-Italic-tosf-t1.vf RELOC/fonts/vf/public/fbb/fbb-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-inf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-inf-t1.vf RELOC/fonts/vf/public/fbb/fbb-Regular-lf-ly1.vf RELOC/fonts/vf/public/fbb/fbb-Regular-lf-sc-ly1.vf RELOC/fonts/vf/public/fbb/fbb-Regular-lf-sc-ot1.vf @@ -61643,16 +103079,67 @@ runfiles size=1287 RELOC/fonts/vf/public/fbb/fbb-Regular-tosf-sc-t1.vf RELOC/fonts/vf/public/fbb/fbb-Regular-tosf-t1.vf RELOC/fonts/vf/public/fbb/fbb-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-lf-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-lf-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-lf-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-osf-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-osf-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-osf-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tlf-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tlf-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tosf-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Bold-tosf-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-lf-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-lf-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-lf-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-osf-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-osf-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-osf-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tlf-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tlf-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tosf-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbbP-Regular-tosf-t1.vf + RELOC/tex/latex/fbb/LY1fbb-Inf.fd RELOC/tex/latex/fbb/LY1fbb-LF.fd RELOC/tex/latex/fbb/LY1fbb-OsF.fd RELOC/tex/latex/fbb/LY1fbb-Sup.fd RELOC/tex/latex/fbb/LY1fbb-TLF.fd RELOC/tex/latex/fbb/LY1fbb-TOsF.fd + RELOC/tex/latex/fbb/OT1fbb-Inf.fd RELOC/tex/latex/fbb/OT1fbb-LF.fd RELOC/tex/latex/fbb/OT1fbb-OsF.fd RELOC/tex/latex/fbb/OT1fbb-Sup.fd RELOC/tex/latex/fbb/OT1fbb-TLF.fd RELOC/tex/latex/fbb/OT1fbb-TOsF.fd + RELOC/tex/latex/fbb/T1fbb-Inf.fd RELOC/tex/latex/fbb/T1fbb-LF.fd RELOC/tex/latex/fbb/T1fbb-OsF.fd RELOC/tex/latex/fbb/T1fbb-Sup.fd @@ -61664,21 +103151,16 @@ runfiles size=1287 RELOC/tex/latex/fbb/TS1fbb-TOsF.fd RELOC/tex/latex/fbb/fbb.fontspec RELOC/tex/latex/fbb/fbb.sty -docfiles size=134 - RELOC/doc/fonts/fbb/OFL.txt - RELOC/doc/fonts/fbb/README - RELOC/doc/fonts/fbb/fbb-doc.pdf - RELOC/doc/fonts/fbb/fbb-doc.tex catalogue-ctan /fonts/fbb -catalogue-date 2015-08-24 07:51:32 +0200 -catalogue-license ofl -catalogue-topics font font-type1 font-otf -catalogue-version 1.09 +catalogue-date 2017-09-12 08:39:22 +0200 +catalogue-license ofllppl1.3 +catalogue-topics font font-serif font-type1 font-otf font-t1enc +catalogue-version 1.14 name fbithesis category Package revision 21340 -shortdesc Computer Science thesis class for University of Dortmund. +shortdesc Computer Science thesis class for University of Dortmund relocated 1 longdesc At the department of computer science at the University of longdesc Dortmund there are cardboard cover pages for research or @@ -61686,120 +103168,99 @@ longdesc internal reports like master/phd-theses. The main function of longdesc this LaTeX2e document-class is a replacement for the \maketitle longdesc command to typeset a title page that is adjusted to these cover longdesc pages. -runfiles size=7 - RELOC/tex/latex/fbithesis/fbithesis.cfg - RELOC/tex/latex/fbithesis/fbithesis.cls +containersize 6152 +containerchecksum 3e593e312ac8efbbdd294e6a00ec020678dcb12259ae778ddaed4d43a800aa19ba16f8eb15b5122ab22f44c5e23c77e4fe733c7772929ef55589d387985db694 +doccontainersize 790224 +doccontainerchecksum 92d0ae3382aa71260f6ed204f6bce1bcbac26985f41789e00c5d3186dcd448bd169b7641fa40d34cf87c556ca10573b0d8cd4235aaea8a0d1533dc40c71b3779 docfiles size=201 - RELOC/doc/latex/fbithesis/README + RELOC/doc/latex/fbithesis/README details="Readme" RELOC/doc/latex/fbithesis/distribution.key RELOC/doc/latex/fbithesis/example.pdf RELOC/doc/latex/fbithesis/example.tex RELOC/doc/latex/fbithesis/exampleaux.tex RELOC/doc/latex/fbithesis/fbithesis.dtx.asc - RELOC/doc/latex/fbithesis/fbithesis.pdf + RELOC/doc/latex/fbithesis/fbithesis.pdf details="Package documentation" +srccontainersize 41564 +srccontainerchecksum a931b41de1feb5b0a78bc40c20bafebeb529a8a8b351344020032641ecf9673168328dc271228130ff22ea17190cf021b1dbe01635d7cf77984f69861c84c02d srcfiles size=53 RELOC/source/latex/fbithesis/fbithesis.drv RELOC/source/latex/fbithesis/fbithesis.dtx RELOC/source/latex/fbithesis/fbithesis.ins +runfiles size=7 + RELOC/tex/latex/fbithesis/fbithesis.cfg + RELOC/tex/latex/fbithesis/fbithesis.cls catalogue-ctan /macros/latex/contrib/fbithesis -catalogue-date 2012-02-09 20:33:55 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license other-free +catalogue-topics dissertation catalogue-version 1.2m +name fbox +category Package +revision 50305 +shortdesc Extended \fbox macro from standard LaTeX +relocated 1 +longdesc This package redefines \fbox to allow an optional argument for +longdesc different frames. It can be any combination of l)eft, r)ight, +longdesc t)op, and b)ottom, for example: \fbox[lt]{foo}. Using uppercase +longdesc letters or a combination of lowercase and uppercase is also +longdesc possible. +containersize 1404 +containerchecksum 1216117fdb03433d2986eaa8b277718304d5cd67b0d7944c7a4712c27a68e68979a3ae44d563a847b01bbbb0d5dd0d7da8feafa7699e27e8a336077cb96cfa43 +doccontainersize 35676 +doccontainerchecksum d2cf24e58efb78c8680cd3a8cbedf2517bce05025745bcae80dd7ccb23f127f3262cca75bf8c4f9b33100253194525f1538e6340c145a38c473a2afe5737148b +docfiles size=12 + RELOC/doc/latex/fbox/CHANGELOG + RELOC/doc/latex/fbox/README.md details="Readme" + RELOC/doc/latex/fbox/fbox.pdf details="Package documentation" + RELOC/doc/latex/fbox/fbox.tex +runfiles size=1 + RELOC/tex/latex/fbox/fbox.sty +catalogue-ctan /macros/latex/contrib/fbox +catalogue-date 2019-03-09 09:25:30 +0100 +catalogue-license lppl1.3c +catalogue-topics boxing +catalogue-version 0.01 + name fbs category Package revision 15878 -shortdesc BibTeX style for Frontiers in Bioscience. +shortdesc BibTeX style for Frontiers in Bioscience relocated 1 longdesc A BibTeX style file made with custom-bib to fit Frontiers in longdesc Bioscience requirements: all authors, no et al, full author longdesc names, initials abbreviated; only abbreviated journal name longdesc italicised, no abbreviation dots; only year, no month, at end longdesc of reference; and DOI excluded, ISSN excluded. +containersize 5424 +containerchecksum 2d5bce7890fd8e087e035e60064bf134d8ac7ca2646f7b846df8fca7c594843c2778d0ad1752ffefed40283153194b5da97156e866bb4b8bd10b14c8ee3f2c4d runfiles size=7 RELOC/bibtex/bst/fbs/fbs.bst catalogue-ctan /biblio/bibtex/contrib/misc/fbs.bst -catalogue-date 2014-10-17 01:12:51 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl - -name fcavtex -category Package -revision 38074 -shortdesc A thesis class for the FCAV/UNESP (Brazil) -relocated 1 -longdesc This package provides a class and a bibliography style for the -longdesc FCAV-UNESP (Faculdade de Ciencias Agrarias e Veterinarias de -longdesc Jaboticabal UNESP) brazilian university, written based on the -longdesc institution rules for thesis publications. -runfiles size=20 - RELOC/bibtex/bst/fcavtex/fcavtex.bst - RELOC/tex/latex/fcavtex/fcavtex.cls -docfiles size=89 - RELOC/doc/latex/fcavtex/README - RELOC/doc/latex/fcavtex/examples/basico-cap1.tex - RELOC/doc/latex/fcavtex/examples/basico-principal.pdf - RELOC/doc/latex/fcavtex/examples/basico-principal.tex - RELOC/doc/latex/fcavtex/examples/basico-resumo.tex - RELOC/doc/latex/fcavtex/manual/fcavtex.pdf - RELOC/doc/latex/fcavtex/manual/fcavtex.tex -catalogue-ctan /macros/latex/contrib/fcavtex -catalogue-date 2015-08-07 07:51:48 +0200 -catalogue-license lppl1.3 -catalogue-topics dissertation class -catalogue-version 1.1 - -name fcltxdoc -category Package -revision 24500 -shortdesc Macros for use in the author's documentation. -relocated 1 -longdesc The package is not advertised for public use, but is necessary -longdesc for the support of others of the author's packages (which are -longdesc compiled under the ltxdoc class). -runfiles size=9 - RELOC/tex/latex/fcltxdoc/fcltxdoc.sty -docfiles size=177 - RELOC/doc/latex/fcltxdoc/fcltxdoc.pdf -srcfiles size=22 - RELOC/source/latex/fcltxdoc/fcltxdoc.drv - RELOC/source/latex/fcltxdoc/fcltxdoc.dtx - RELOC/source/latex/fcltxdoc/fcltxdoc.ins -catalogue-ctan /macros/latex/contrib/fcltxdoc -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0 - -name fcolumn -category Package -revision 36499 -shortdesc Typesetting financial tables. -relocated 1 -longdesc In financial reports, text and currency amounts are regularly -longdesc put in one table, e.g., a year balance or a profit-and-loss -longdesc overview. This package provides the settings for automatically -longdesc typesetting such columns, including the sum line (preceded by a -longdesc rule of the correct width) using the specifier "f". -runfiles size=2 - RELOC/tex/latex/fcolumn/fcolumn.sty -docfiles size=53 - RELOC/doc/latex/fcolumn/README - RELOC/doc/latex/fcolumn/fcolumn.pdf -srcfiles size=8 - RELOC/source/latex/fcolumn/fcolumn.dtx -catalogue-ctan /macros/latex/contrib/fcolumn -catalogue-date 2015-03-14 05:22:36 +0100 -catalogue-license lppl1.2 -catalogue-version 1.0 +catalogue-topics journalpub biology bibtex-sty name fc category Package revision 32796 -shortdesc Fonts for African languages. +shortdesc Fonts for African languages relocated 1 longdesc The fonts are provided as Metafont source, in the familiar longdesc arrangement of lots of (autogenerated) preamble files and a longdesc modest set of glyph specifications. (A similar arrangement longdesc appears in the ec and lh font bundles.) +containersize 128300 +containerchecksum 12bb408f7ba4774d943aa954bd3d2558a329d383a65cd4780f6c5bdc39f51b943f01d87ad203aea3b02768dc0b9ab42f681175c18a1e1dd901255aae05156558 +doccontainersize 27644 +doccontainerchecksum a7495a0d6bd394811ff22438a42afe3c5109633da7c606a732f4c5746cc4162fa1c86ac3774aa7754e9b07c499f3519423d4b6fb212ecae156b0b8e8f848d914 +docfiles size=27 + RELOC/doc/fonts/fc/fc.bug + RELOC/doc/fonts/fc/fc.rme details="Readme" + RELOC/doc/fonts/fc/fclfont.sty_old + RELOC/doc/fonts/fc/fctugbot.tex + RELOC/doc/fonts/fc/fontdef.fc_old + RELOC/doc/fonts/fc/licence.gnu runfiles size=591 RELOC/fonts/source/jknappen/fc/b-fcbx.mf RELOC/fonts/source/jknappen/fc/b-fcbxi.mf @@ -62287,27 +103748,124 @@ runfiles size=591 RELOC/tex/latex/fc/t4enc.def RELOC/tex/latex/fc/t4fcr.fd RELOC/tex/latex/fc/t4phonet.sty -docfiles size=27 - RELOC/doc/fonts/fc/fc.bug - RELOC/doc/fonts/fc/fc.rme - RELOC/doc/fonts/fc/fclfont.sty_old - RELOC/doc/fonts/fc/fctugbot.tex - RELOC/doc/fonts/fc/fontdef.fc_old - RELOC/doc/fonts/fc/licence.gnu catalogue-ctan /fonts/jknappen/fc -catalogue-date 2014-04-26 19:51:19 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl2 +catalogue-topics font font-mf multilingual catalogue-version 1.4 +name fcavtex +category Package +revision 38074 +shortdesc A thesis class for the FCAV/UNESP (Brazil) +relocated 1 +longdesc This package provides a class and a bibliography style for the +longdesc FCAV-UNESP (Faculdade de Ciencias Agrarias e Veterinarias de +longdesc Jaboticabal UNESP) brazilian university, written based on the +longdesc institution rules for thesis publications. +containersize 16180 +containerchecksum db440d7310805a7f3d918996e577a07c5d8dff72e6d667f00c1ffe5d88e3bcb689e794837609d9a0760530e923f9a28d3e5c052cad4c38e23ae03454e0ec26c4 +doccontainersize 332084 +doccontainerchecksum 2060c70b6a926aae23c145f11c7c6e255f684f925bf5447ee98fdd6f6290d64fc5a92ccf8cbf85e0c6f0d6fee869a2d947e3df8726fffa4a5d2c87c217beef59 +docfiles size=89 + RELOC/doc/latex/fcavtex/README details="Readme (in Brazilian Portuguese)" language="pt" + RELOC/doc/latex/fcavtex/examples/basico-cap1.tex + RELOC/doc/latex/fcavtex/examples/basico-principal.pdf + RELOC/doc/latex/fcavtex/examples/basico-principal.tex + RELOC/doc/latex/fcavtex/examples/basico-resumo.tex + RELOC/doc/latex/fcavtex/manual/fcavtex.pdf details="Package documentation (Brazilian Portuguese)" language="pt" + RELOC/doc/latex/fcavtex/manual/fcavtex.tex +runfiles size=20 + RELOC/bibtex/bst/fcavtex/fcavtex.bst + RELOC/tex/latex/fcavtex/fcavtex.cls +catalogue-contact-repository https://github.com/waltermaldonado/fcavTeX +catalogue-ctan /macros/latex/contrib/fcavtex +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics dissertation class +catalogue-version 1.1 + +name fcltxdoc +category Package +revision 24500 +shortdesc Macros for use in the author's documentation +relocated 1 +longdesc The package is not advertised for public use, but is necessary +longdesc for the support of others of the author's packages (which are +longdesc compiled under the ltxdoc class). +containersize 10404 +containerchecksum c14db194a73247122e589024824a53125ff10e15f8bec2475530aa41e78d74993f73474ff9b3899bc499c0cd8dd3e1ea034ea821d233c2a512f8c4d4d06d095c +doccontainersize 635448 +doccontainerchecksum 4aa6aed9c5b4ddaa63eb2aa7e529da03dcfc57723a6cb40cbbfc729636e459f4df1e292bdcd20093595cc3ea154787fda41abb4f6f46db2a7331626f181f47d0 +docfiles size=177 + RELOC/doc/latex/fcltxdoc/fcltxdoc.pdf details="Package documentation" +srccontainersize 21560 +srccontainerchecksum 6b16053cf7941063e4f08a249d1b4dcb61127eb0f22938353b17b959e7a9cb78d7953b81346f25a6e49f4a7c8bc602b3f820c3b9acd3b84215796b3ef1a63550 +srcfiles size=22 + RELOC/source/latex/fcltxdoc/fcltxdoc.drv + RELOC/source/latex/fcltxdoc/fcltxdoc.dtx + RELOC/source/latex/fcltxdoc/fcltxdoc.ins +runfiles size=9 + RELOC/tex/latex/fcltxdoc/fcltxdoc.sty +catalogue-ctan /macros/latex/contrib/fcltxdoc +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics doc-supp +catalogue-version 1.0 + +name fcolumn +category Package +revision 50937 +shortdesc Typesetting financial tables +relocated 1 +longdesc In financial reports, text and currency amounts are regularly +longdesc put in one table, e.g., a year balance or a profit-and-loss +longdesc overview. This package provides the settings for automatically +longdesc typesetting such columns, including the sum line (preceded by a +longdesc rule of the correct width) using the specifier "f". +containersize 3720 +containerchecksum 13128f25e12c914bf25c45c87a75bad814eab519059c8a478162cd4fc678972ed8e24800042e87866197174044eaf9f90d3cd3a8eca62f33400e3fd2294922c8 +doccontainersize 282276 +doccontainerchecksum ae0645744e26bbf1a940ba1339256b7d718f4df819ad04f5f52301a26d445cbce4a1ae4bfa2fe6d13bb81ed31e94839d87a251a7429305d396a56ea113df37bb +docfiles size=71 + RELOC/doc/latex/fcolumn/README details="Readme" + RELOC/doc/latex/fcolumn/fcolumn.pdf details="Package documentation" + RELOC/doc/latex/fcolumn/makefile +srccontainersize 18300 +srccontainerchecksum 47b78b21332aeba11b08ed6f4eaf781b182c224450b508a48a80ca7f93ffb43c4cc818739d3793ca16674b29fbfeeed320247170c63a4aa321f6054610fe782b +srcfiles size=15 + RELOC/source/latex/fcolumn/fcolumn.dtx + RELOC/source/latex/fcolumn/fcolumn.ins +runfiles size=3 + RELOC/tex/latex/fcolumn/fcolumn.sty +catalogue-ctan /macros/latex/contrib/fcolumn +catalogue-date 2019-04-24 23:00:04 +0200 +catalogue-license lppl1.3 +catalogue-topics table +catalogue-version 1.2 + name fdsymbol category Package revision 26722 -shortdesc A maths symbol font. +shortdesc A maths symbol font relocated 1 longdesc FdSymbol is a maths symbol font, designed as a companion to the longdesc Fedra family by Typotheque, but it might also fit other longdesc contemporary typefaces. execute addMap fdsymbol.map +containersize 920220 +containerchecksum 37f716e9d540d7742f53cd38155141d763d3f8509d1aa1f3cff53ff33c45537c44dc68c9608558021868de3072302d7ac84909db05e8b25813c23ea01c87edcb +doccontainersize 461572 +doccontainerchecksum 7d1f3fd153bc17e65a99ce6a38c8992b2172c1d0b85254fcc7e926b9539928ad403809b8af4355abb1e93196b4e4d5461b587c8ad94d04cca7785c8a334b4ac1 +docfiles size=116 + RELOC/doc/fonts/fdsymbol/FONTLOG.txt + RELOC/doc/fonts/fdsymbol/OFL.txt + RELOC/doc/latex/fdsymbol/fdsymbol.pdf details="Package documentation" +srccontainersize 17720 +srccontainerchecksum d30403e01b2a33372ce49477ed81fcfcc505b50b1c0eb511dc360d86ec3793ff2ac0c8964448bf2525bec1bc5bb3792ea9729679e2ddd8215948c65bfd44afd7 +srcfiles size=38 + RELOC/source/latex/fdsymbol/fdsymbol.dtx + RELOC/source/latex/fdsymbol/fdsymbol.ins runfiles size=471 RELOC/fonts/enc/dvips/fdsymbol/fdsymbol-a.enc RELOC/fonts/enc/dvips/fdsymbol/fdsymbol-b.enc @@ -62407,29 +103965,71 @@ runfiles size=471 RELOC/fonts/type1/public/fdsymbol/FdSymbolF-Medium.pfb RELOC/fonts/type1/public/fdsymbol/FdSymbolF-Regular.pfb RELOC/tex/latex/fdsymbol/fdsymbol.sty -docfiles size=116 - RELOC/doc/fonts/fdsymbol/FONTLOG.txt - RELOC/doc/fonts/fdsymbol/OFL.txt - RELOC/doc/latex/fdsymbol/fdsymbol.pdf -srcfiles size=38 - RELOC/source/latex/fdsymbol/fdsymbol.dtx - RELOC/source/latex/fdsymbol/fdsymbol.ins +catalogue-contact-repository http://github.com/ummels/fdsymbol catalogue-ctan /fonts/fdsymbol -catalogue-date 2014-04-26 20:03:33 +0200 +catalogue-date 2017-10-29 15:19:12 +0100 catalogue-license ofl +catalogue-topics font font-symbol font-symbol-maths font-type1 font-otf font-mf catalogue-version 0.8 +name fduthesis +category Package +revision 50738 +shortdesc LaTeX thesis template for Fudan University +relocated 1 +longdesc This package is a LaTeX thesis template package for Fudan +longdesc University. It can make it easy to write theses both in Chinese +longdesc and English. +containersize 108108 +containerchecksum 2c33af9559603c08ee844cc0dd6dcb8a6c215f0b0c7cd25435b64b1ad6c83dec608c601ce16efdfbeda890258bb36df8eb549bf43bca21bd778e003cd637507c +doccontainersize 1370704 +doccontainerchecksum bc3d2c383233846631e5042742a08b5ca05d0cbe68fad908065310f00c50e9732af0b912eecf01496615d221a1ea6fa5f3d9be91c9533b97fdd642c47d6d8c5d +docfiles size=382 + RELOC/doc/latex/fduthesis/README.md details="Readme" + RELOC/doc/latex/fduthesis/fdulogo-example.tex + RELOC/doc/latex/fduthesis/fduthesis-code.pdf details="Code Implementation (Chinese)" language="zh" + RELOC/doc/latex/fduthesis/fduthesis-cover.tex + RELOC/doc/latex/fduthesis/fduthesis-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/fduthesis/fduthesis-en.tex + RELOC/doc/latex/fduthesis/fduthesis-template.tex + RELOC/doc/latex/fduthesis/fduthesis.pdf details="Package documentation (Chinese)" language="zh" +srccontainersize 115396 +srccontainerchecksum 4f048791cfdfa5eb1dec273618111f0d8e685c9a638bb4aa2edc1e6ffcd11097aeaa85d9130be4ae8136c14277f85a22580c42fdde9a8f3602cdc57eb4beefdc +srcfiles size=135 + RELOC/source/latex/fduthesis/fduthesis-doc.dtx + RELOC/source/latex/fduthesis/fduthesis-logo.dtx + RELOC/source/latex/fduthesis/fduthesis.dtx + RELOC/source/latex/fduthesis/fduthesis.ins +runfiles size=112 + RELOC/tex/latex/fduthesis/fdudoc.cls + RELOC/tex/latex/fduthesis/fdulogo.sty + RELOC/tex/latex/fduthesis/fduthesis-en.cls + RELOC/tex/latex/fduthesis/fduthesis.cls + RELOC/tex/latex/fduthesis/fduthesis.def + RELOC/tex/latex/fduthesis/fudan-emblem-new.pdf + RELOC/tex/latex/fduthesis/fudan-emblem.pdf + RELOC/tex/latex/fduthesis/fudan-name.pdf +catalogue-also thuthesis cquthesis +catalogue-contact-bugs https://github.com/stone-zeng/fduthesis/issues +catalogue-contact-repository https://github.com/stone-zeng/fduthesis +catalogue-ctan /macros/latex/contrib/fduthesis +catalogue-date 2019-04-03 11:09:26 +0200 +catalogue-license lppl1.3c +catalogue-topics dissertation class chinese latex3 +catalogue-version 0.7d + name featpost category Package revision 35346 -shortdesc MetaPost macros for 3D. +shortdesc MetaPost macros for 3D relocated 1 longdesc These macros allow the production of three-dimensional schemes longdesc containing: angles, circles, cylinders, cones and spheres, longdesc among other things. -runfiles size=36 - RELOC/metapost/featpost/featpost.mp - RELOC/metapost/featpost/featpost3Dplus2D.mp +containersize 31996 +containerchecksum 9d7c35499df5c8c8efe8ea51d88c4cd9ddc6bd5238ec527d842aaa9ce42c30bb1d73c667f5aca22f385d3725c7443f043a2b63cd337a7f6d5b5d5810ea34bf64 +doccontainersize 17968016 +doccontainerchecksum e4eefb43d63c6522c3080a76b4df3a369932bc9e2f868ed0143d62fd2365bb74e6891705b287d19b4ca4b2560b0573d6ff9a0e5cf2a3da2e4b21482cd6cdd0b9 docfiles size=5985 RELOC/doc/metapost/featpost/MPexamples.html RELOC/doc/metapost/featpost/README @@ -62444,13 +104044,13 @@ docfiles size=5985 RELOC/doc/metapost/featpost/doc/featpostbeamer.pdf RELOC/doc/metapost/featpost/doc/featpostbeamer.tex RELOC/doc/metapost/featpost/doc/featpostdocsource.tex - RELOC/doc/metapost/featpost/doc/featpostmanual.pdf + RELOC/doc/metapost/featpost/doc/featpostmanual.pdf details="Manual" RELOC/doc/metapost/featpost/doc/featpostmanual.tex RELOC/doc/metapost/featpost/doc/lastfiguretest.pdf RELOC/doc/metapost/featpost/doc/lastfiguretest.tex RELOC/doc/metapost/featpost/doc/letterfor3Dand4D.pdf RELOC/doc/metapost/featpost/doc/letterfor3Dand4D.tex - RELOC/doc/metapost/featpost/doc/metapostpropaganda.pdf + RELOC/doc/metapost/featpost/doc/metapostpropaganda.pdf details="Promotional stuff" RELOC/doc/metapost/featpost/doc/metapostpropaganda.tex RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/3.eps RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/3.jpeg @@ -63301,14 +104901,18 @@ docfiles size=5985 RELOC/doc/metapost/featpost/png/wwfpmp.1.png RELOC/doc/metapost/featpost/png/xcmplaca2buraquads.1.png RELOC/doc/metapost/featpost/png/xraycamera.1.png +runfiles size=36 + RELOC/metapost/featpost/featpost.mp + RELOC/metapost/featpost/featpost3Dplus2D.mp catalogue-ctan /graphics/metapost/contrib/macros/featpost -catalogue-date 2014-10-09 21:22:26 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license gpl +catalogue-topics graphics-3d catalogue-version 0.8.8 name fei category Package -revision 38364 +revision 49439 shortdesc Class for academic works at FEI University Center -- Brazil relocated 1 longdesc fei is a class created by graduate students and LaTeX @@ -63324,28 +104928,37 @@ longdesc based in the Brazilian National Standards Organization longdesc (Associacao Brasileira de Normas Tecnicas, ABNT) standards for longdesc the creation of academic works, such as ABNT NBR 10520:2002 longdesc (Citations) and ABNT NBR 6023:2002 (Bibliographic References). -runfiles size=5 - RELOC/tex/latex/fei/fei.cls -docfiles size=80 - RELOC/doc/latex/fei/README +containersize 6412 +containerchecksum 8f206ac3534ae567f77e77ef02182a9fcfe8250fe4acf56551780aeaad8cdc77749075b48695096f10edb6e7ffb03311a85c3184134665234d3740311581536f +doccontainersize 279440 +doccontainerchecksum 0526bdedeaaae229ddc5238cddcb854a7e442b8ef6d6c31ceeea0278b25778dcc95a78defe24bebac9efb99fec129f4b82c34d5532376da645589ef2c7eadf5a +docfiles size=84 + RELOC/doc/latex/fei/README details="Readme" RELOC/doc/latex/fei/README.txt RELOC/doc/latex/fei/fei-template-sublist.tex RELOC/doc/latex/fei/fei-template.tex - RELOC/doc/latex/fei/fei.pdf + RELOC/doc/latex/fei/fei.pdf details="Package documentation" language="pt-br" RELOC/doc/latex/fei/referencias.bib -srcfiles size=22 +srccontainersize 28048 +srccontainerchecksum f15b61fdd880a800191c55ce7741995cb3f2edda3fe5a8066920d90acd9ec9dafeb1ad3ac4db33d7d5ffba9b6df32dfd56cc29d933f918a7ddb77815946efd1c +srcfiles size=27 RELOC/source/latex/fei/fei.dtx RELOC/source/latex/fei/fei.ins +runfiles size=6 + RELOC/tex/latex/fei/fei.cls +catalogue-contact-bugs http://github.com/douglasrizzo/Classe-Latex-FEI/issues +catalogue-contact-repository http://github.com/douglasrizzo/Classe-Latex-FEI/ +catalogue-contact-support https://groups.google.com/forum/#!forum/grupo-latex-fei catalogue-ctan /macros/latex/contrib/fei -catalogue-date 2015-09-11 14:57:10 +0200 -catalogue-license lppl1.3 +catalogue-date 2018-12-17 19:50:28 +0100 +catalogue-license lppl1.3c catalogue-topics dissertation class -catalogue-version 2.0 +catalogue-version 4.3.1 name fenixpar category Package revision 24730 -shortdesc One-shot changes to token registers such as \everypar. +shortdesc One-shot changes to token registers such as \everypar relocated 1 longdesc The bundle provides two packages, fenxitok and fenixpar. The longdesc fenixtok package provides user macros to add material to a @@ -63358,28 +104971,47 @@ longdesc of fenixtok to provide a user interface to manipulation of the longdesc \everypar token register. The packages require the e-TeX longdesc extensions; with them, they work either with Plain TeX or with longdesc LaTeX. +containersize 3840 +containerchecksum 1b09294b430bb9ab6a4eae11549500b224514e55bb99329a4ee3d9d72ab906128063537302f672a772c02ff4372d46649656a88c4a303a9301976fc7a804387e +doccontainersize 532 +doccontainerchecksum 6ee02d615438e99df82f939a8104097e43802b00af2a0e7be56f329061722cfc7df0edf84c82ac73754d63a703533bd6d5b88b6e648bedbc47be712ff86ec5c8 +docfiles size=1 + RELOC/doc/generic/fenixpar/README details="Readme" runfiles size=4 RELOC/tex/generic/fenixpar/fenixpar.sty RELOC/tex/generic/fenixpar/fenixtok.sty -docfiles size=1 - RELOC/doc/generic/fenixpar/README catalogue-ctan /macros/generic/fenixpar -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics macro-supp catalogue-version 0.92 name fetamont category Package -revision 37411 -shortdesc Extended version of Knuth's logo typeface. +revision 43812 +shortdesc Extended version of Knuth's logo typeface relocated 1 -longdesc The fetamont typeface was designed in METAFONT and extends the +longdesc The fetamont typeface was designed in Metafont and extends the longdesc Logo fonts to complete the T1 encoding. The designs of the -longdesc glyphs A, E, F, M, N, O, P, S and T are based on the METAFONT +longdesc glyphs A, E, F, M, N, O, P, S and T are based on the Metafont longdesc constructions by D. E. Knuth. The glyphs Y and 1 imitate the longdesc shapes of the corresponding glyphs in the METATYPE1 logo. execute addMap fetamont.map -runfiles size=2069 +containersize 3542084 +containerchecksum 20c5c83119d70a94e66aeec0bbb9a0494525deaf9addb9b91d8d5595397ab5a1195eb9d72056a5fd1c3ca490aef66b43558f5c5b86688e7d164360a697c331a2 +doccontainersize 237312 +doccontainerchecksum 16cfb520cf8b3030d546e1c7f7cd41772fc9d16ea55db6920a50945a7aa3034050d873d3d5da05c108ee303dc1c77217c8a1f014c2e9beaf36d932e33aefeb93 +docfiles size=99 + RELOC/doc/fonts/fetamont/README details="Readme" + RELOC/doc/fonts/fetamont/fetamont-typeface.pdf details="Package design and construction" + RELOC/doc/fonts/fetamont/fetamont-typeface.tex + RELOC/doc/fonts/fetamont/fetamont.pdf details="Package documentation" +srccontainersize 5512 +srccontainerchecksum de4a25f0a86f29d10fd1cf799ac6c8efc58633a7ba0c48bb33716c46e6b0e1c9d5be6ee4e8e4955739ddb324270e44d6fa658c360d03123c18cc275ba6abff06 +srcfiles size=6 + RELOC/source/fonts/fetamont/fetamont.dtx + RELOC/source/fonts/fetamont/fetamont.ins +runfiles size=3026 RELOC/fonts/afm/public/fetamont/ffmb10.afm RELOC/fonts/afm/public/fetamont/ffmb8.afm RELOC/fonts/afm/public/fetamont/ffmb9.afm @@ -63465,8 +105097,7 @@ runfiles size=2069 RELOC/fonts/source/public/fetamont/ffmbw10.mf RELOC/fonts/source/public/fetamont/ffmbwo10.mf RELOC/fonts/source/public/fetamont/ffmc10.mf - RELOC/fonts/source/public/fetamont/ffmchars_nonscalable.mf - RELOC/fonts/source/public/fetamont/ffmchars_scalable.mf + RELOC/fonts/source/public/fetamont/ffmchars_uni.mf RELOC/fonts/source/public/fetamont/ffmco10.mf RELOC/fonts/source/public/fetamont/ffmh10.mf RELOC/fonts/source/public/fetamont/ffmh8.mf @@ -63564,31 +105195,63 @@ runfiles size=2069 RELOC/fonts/type1/public/fetamont/ffmr9.pfb RELOC/fonts/type1/public/fetamont/ffmw10.pfb RELOC/fonts/type1/public/fetamont/ffmwo10.pfb + RELOC/metapost/fetamont/ffmconstructions.mp RELOC/tex/latex/fetamont/T1ffm.fd RELOC/tex/latex/fetamont/T1ffmw.fd RELOC/tex/latex/fetamont/fetamont.sty -docfiles size=396 - RELOC/doc/fonts/fetamont/README - RELOC/doc/fonts/fetamont/fetamont-typeface.pdf - RELOC/doc/fonts/fetamont/fetamont.pdf -srcfiles size=6 - RELOC/source/fonts/fetamont/fetamont.dtx - RELOC/source/fonts/fetamont/fetamont.ins +catalogue-also metalogo mflogo catalogue-ctan /fonts/fetamont -catalogue-date 2015-05-15 13:57:07 +0200 +catalogue-date 2017-04-15 14:54:39 +0200 catalogue-license lppl1.3 -catalogue-version 1.5 +catalogue-topics font font-mf font-type1 font-otf + +name fetchcls +category Package +revision 45245 +shortdesc Fetch the current class name +relocated 1 +longdesc With standard LaTeX you are able to check for the class in use +longdesc invoking the kernel command \@ifclassloaded. However, doing so +longdesc you cannot get the explicit class name, unless you want to loop +longdesc over every possible class name until \@ifclassloaded returns +longdesc true -- don't do that! With the help of the present package you +longdesc can obtain the name of the current class with significantly +longdesc less effort. Just load the package as usual: +longdesc \usepackage{fetchcls}; then, the control sequence \classname +longdesc will hold the name you were looking for. +containersize 1320 +containerchecksum 6cd8e2016f7ff344aa06587fbfeb4e498d1b2e76d9a6ff64f167dad71c4ce6ae867d791660f50e80b6f2e59a9f2fff4c4c9b7c1cdf84cdbbec5113081b24a25a +doccontainersize 125088 +doccontainerchecksum ebf9aa0150b06a0b4674e7be076fa5ae4b2ba4542aa28e1b9d4320ea0152a5cc9cbbf926d713f877e74ea948d6132fc36898647e4790c67aab651502c4e5d57f +docfiles size=32 + RELOC/doc/latex/fetchcls/README.md details="Readme" + RELOC/doc/latex/fetchcls/fetchcls.pdf details="Package documentation" +srccontainersize 2852 +srccontainerchecksum 067385746ed2cdba4501038cbc4565bef431f2e35e9069fe883c0de8669cbf6f59d8233ff2f561e8590fe8b32a7613a195104f89774bdae4ddd63d65deb3123a +srcfiles size=3 + RELOC/source/latex/fetchcls/fetchcls.dtx + RELOC/source/latex/fetchcls/fetchcls.ins +runfiles size=1 + RELOC/tex/latex/fetchcls/fetchcls.sty +catalogue-contact-repository https://github.com/giannotr/fetchcls +catalogue-ctan /macros/latex/contrib/fetchcls +catalogue-date 2017-09-10 06:11:36 +0200 +catalogue-license lppl1.3c +catalogue-topics macro-supp +catalogue-version 1.0 name feupphdteses category Package revision 30962 -shortdesc Typeset Engineering PhD theses at the University of Porto. +shortdesc Typeset Engineering PhD theses at the University of Porto relocated 1 longdesc A complete template for thesis/works of Faculdade de Engenharia longdesc da Universidade do Porto (FEUP) Faculty of Engineering longdesc University of Porto. -runfiles size=5 - RELOC/tex/latex/feupphdteses/feupphdteses.sty +containersize 6312 +containerchecksum b4d4285b33f314720cd07eea903bb2fc6092f96033f75d4b06cf315fd24d1a34722aa73db4cb6410a847e1d23a131ae329f8ebe75fca15dcaffb99097768f55e +doccontainersize 187324 +doccontainerchecksum d87c0a7722f62a599bcc63f7ecfea190c64d82a4a4a1ba21d18c69866f80ec77a527a82cb94b0d081002073f5faab95119c6902e8f8f2c10d815ca2d206b1d4c docfiles size=116 RELOC/doc/latex/feupphdteses/Abbs.tex RELOC/doc/latex/feupphdteses/Abstract.tex @@ -63604,90 +105267,26 @@ docfiles size=116 RELOC/doc/latex/feupphdteses/Intro.tex RELOC/doc/latex/feupphdteses/Publications.tex RELOC/doc/latex/feupphdteses/Quote.tex - RELOC/doc/latex/feupphdteses/README + RELOC/doc/latex/feupphdteses/README details="Readme" RELOC/doc/latex/feupphdteses/References.bib RELOC/doc/latex/feupphdteses/Resumo.tex - RELOC/doc/latex/feupphdteses/Template_EN.pdf + RELOC/doc/latex/feupphdteses/Template_EN.pdf details="Template showing construction and appearance" RELOC/doc/latex/feupphdteses/Template_EN.tcp RELOC/doc/latex/feupphdteses/Template_EN.tex RELOC/doc/latex/feupphdteses/Template_EN.tps RELOC/doc/latex/feupphdteses/mymacros.tex +runfiles size=5 + RELOC/tex/latex/feupphdteses/feupphdteses.sty catalogue-ctan /macros/latex/contrib/feupphdteses -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics dissertation catalogue-version 4.0 -name feynmf -category Package -revision 17259 -shortdesc Macros and fonts for creating Feynman (and other) diagrams. -relocated 1 -longdesc The feynmf package provides an interface to Metafont (inspired -longdesc by the facilities of mfpic) to use simple structure -longdesc specifications to produce relatively complex diagrams. (The -longdesc feynmp package, also part of this bundle, uses MetaPost in the -longdesc same way.) While the package was designed for Feynman diagrams, -longdesc it could in principle be used for diagrams in graph and similar -longdesc theories, where the structure is semi-algorithmically -longdesc determined. -runfiles size=40 - RELOC/metafont/feynmf/feynmf.mf - RELOC/metapost/feynmf/feynmp.mp - RELOC/metapost/feynmf/manpics.mp - RELOC/tex/latex/feynmf/feynmf.sty - RELOC/tex/latex/feynmf/feynmp.sty -docfiles size=146 - RELOC/doc/latex/feynmf/Announce - RELOC/doc/latex/feynmf/COPYING - RELOC/doc/latex/feynmf/Feynman.Diagrams - RELOC/doc/latex/feynmf/README - RELOC/doc/latex/feynmf/Tutorial - RELOC/doc/latex/feynmf/fmfman.pdf - RELOC/doc/latex/feynmf/manpics.1 - RELOC/doc/latex/feynmf/manpics.2 - RELOC/doc/latex/feynmf/manpics.3 - RELOC/doc/latex/feynmf/template.tex -srcfiles size=81 - RELOC/source/latex/feynmf/Makefile - RELOC/source/latex/feynmf/feynmf.drv - RELOC/source/latex/feynmf/feynmf.dtx - RELOC/source/latex/feynmf/feynmf.ins - RELOC/source/latex/feynmf/feynmf.pl - RELOC/source/latex/feynmf/feynmf209.ins - RELOC/source/latex/feynmf/feynmp.drv - RELOC/source/latex/feynmf/fmfman.drv - RELOC/source/latex/feynmf/fmfmanps.drv -catalogue-ctan /macros/latex/contrib/feynmf -catalogue-date 2012-05-29 13:27:24 +0200 -catalogue-license gpl -catalogue-version 1.08 - -name feynmp-auto -category Package -revision 30223 -shortdesc Automatic processing of feynmp graphics. -relocated 1 -longdesc The package takes care of running Metapost on the output files -longdesc produced by the feynmp package, so that the compiled pictures -longdesc will be available in the next run of LaTeX. The package honours -longdesc options that apply to feynmp. -runfiles size=1 - RELOC/tex/latex/feynmp-auto/feynmp-auto.sty -docfiles size=93 - RELOC/doc/latex/feynmp-auto/README - RELOC/doc/latex/feynmp-auto/feynmp-auto.pdf -srcfiles size=4 - RELOC/source/latex/feynmp-auto/feynmp-auto.dtx - RELOC/source/latex/feynmp-auto/feynmp-auto.ins -catalogue-ctan /macros/latex/contrib/feynmp-auto -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.1 - name feyn category Package -revision 15878 -shortdesc A font for in-text Feynman diagrams. +revision 45679 +shortdesc A font for in-text Feynman diagrams relocated 1 longdesc Feyn may be used to produce relatively simple Feynman diagrams longdesc within equations in a LaTeX document. While the feynmf package @@ -63695,7 +105294,34 @@ longdesc is good at drawing large diagrams for figures, the present longdesc package and its fonts allow diagrams within equations or text, longdesc at a matching size. The fonts are distributed as Metafont longdesc source, and macros for their use are also provided. -runfiles size=30 +containersize 13544 +containerchecksum 56e7d5b875db6eb6e5ad2b07d5696fa4fc6cea7d0f0f9d691bdec0fb90f16bbcac0c9f20f8f16bde20eabf98f72fbbd75831af1191b229cd7acca60bb2edda28 +doccontainersize 516516 +doccontainerchecksum df4454efa6f9130fac5ee2986abdd8eacb42063930ee194b65d94a1e1a90460c4116fd62da232f01f94fad63d9eaef627655aedadaaf034f910ebb97b40a7792 +docfiles size=150 + RELOC/doc/fonts/feyn/LICENCE + RELOC/doc/fonts/feyn/README details="Package Readme" + RELOC/doc/fonts/feyn/VERSION + RELOC/doc/fonts/feyn/exercise-font.pdf details="Font details" + RELOC/doc/fonts/feyn/exercise-font.tex + RELOC/doc/fonts/feyn/feyn.html + RELOC/doc/fonts/feyn/feyn.pdf details="Package documentation" + RELOC/doc/fonts/feyn/overheads.pdf details="Brief sample" + RELOC/doc/fonts/feyn/overheads.tex + RELOC/doc/fonts/feyn/release-notes.html + RELOC/doc/fonts/feyn/sample-massive.png + RELOC/doc/fonts/feyn/sample-phi4.png + RELOC/doc/fonts/feyn/sample-two-loop-annotated.png + RELOC/doc/fonts/feyn/sample-two-loop.png + RELOC/doc/fonts/feyn/sample-vertex.png + RELOC/doc/fonts/feyn/style.css +srccontainersize 16212 +srccontainerchecksum fbfa44afe7f1ae10566d736cadd02a3d9f562b19d25b2f23b1dc27fefc77d6b7af550e7161bba7c62d63f3c75d8b704dfdc3befadef9ad42ed42e42000ab4557 +srcfiles size=16 + RELOC/source/fonts/feyn/feyn.drv + RELOC/source/fonts/feyn/feyn.dtx + RELOC/source/fonts/feyn/feyn.ins +runfiles size=42 RELOC/fonts/source/public/feyn/feyn.mf RELOC/fonts/source/public/feyn/feyn10.mf RELOC/fonts/source/public/feyn/feyn11.mf @@ -63708,6 +105334,11 @@ runfiles size=30 RELOC/fonts/source/public/feyn/feyntext12.mf RELOC/fonts/source/public/feyn/feyntext18.mf RELOC/fonts/source/public/feyn/feyntext24.mf + RELOC/fonts/source/public/feyn/feynx10.mf + RELOC/fonts/source/public/feyn/feynx11.mf + RELOC/fonts/source/public/feyn/feynx12.mf + RELOC/fonts/source/public/feyn/feynx18.mf + RELOC/fonts/source/public/feyn/feynx24.mf RELOC/fonts/tfm/public/feyn/feyn10.tfm RELOC/fonts/tfm/public/feyn/feyn11.tfm RELOC/fonts/tfm/public/feyn/feyn12.tfm @@ -63718,33 +105349,159 @@ runfiles size=30 RELOC/fonts/tfm/public/feyn/feyntext12.tfm RELOC/fonts/tfm/public/feyn/feyntext18.tfm RELOC/fonts/tfm/public/feyn/feyntext24.tfm + RELOC/fonts/tfm/public/feyn/feynx10.tfm + RELOC/fonts/tfm/public/feyn/feynx11.tfm + RELOC/fonts/tfm/public/feyn/feynx12.tfm + RELOC/fonts/tfm/public/feyn/feynx18.tfm + RELOC/fonts/tfm/public/feyn/feynx24.tfm RELOC/tex/latex/feyn/feyn.sty -docfiles size=88 - RELOC/doc/fonts/feyn/LICENCE - RELOC/doc/fonts/feyn/README - RELOC/doc/fonts/feyn/VERSION - RELOC/doc/fonts/feyn/exercise-font.pdf - RELOC/doc/fonts/feyn/exercise-font.tex - RELOC/doc/fonts/feyn/feyn.pdf - RELOC/doc/fonts/feyn/overheads.pdf - RELOC/doc/fonts/feyn/overheads.tex -srcfiles size=13 - RELOC/source/fonts/feyn/feyn.drv - RELOC/source/fonts/feyn/feyn.dtx - RELOC/source/fonts/feyn/feyn.ins +catalogue-contact-bugs https://bitbucket.org/nxg/feyn/issues +catalogue-contact-home http://purl.org/nxg/dist/feyn +catalogue-contact-repository https://bitbucket.org/nxg/feyn/ catalogue-ctan /fonts/feyn -catalogue-date 2012-05-31 18:53:16 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license bsd +catalogue-topics graphics-use physics font font-mf +catalogue-version 0.4.1 + +name feynmf +category Package +revision 17259 +shortdesc Macros and fonts for creating Feynman (and other) diagrams +relocated 1 +longdesc The feynmf package provides an interface to Metafont (inspired +longdesc by the facilities of mfpic) to use simple structure +longdesc specifications to produce relatively complex diagrams. (The +longdesc feynmp package, also part of this bundle, uses MetaPost in the +longdesc same way.) While the package was designed for Feynman diagrams, +longdesc it could in principle be used for diagrams in graph and similar +longdesc theories, where the structure is semi-algorithmically +longdesc determined. +containersize 19484 +containerchecksum d4eb87e3f086f2d39c87eba057fc490ce5d39e9c5ae39aa1c04ee8c3be9c4a188ef123f860fe74d31e0e9e9182909c39df3434ddcc618632723f00627f66397f +doccontainersize 466364 +doccontainerchecksum 933edaceff112f7442f7c662fda43f343b0e7e41f65aae4f1a45bfd2de18c1e4bda505a235eebc4daf2451846dab376449242217ec803f2932a4a1584038f4ee +docfiles size=146 + RELOC/doc/latex/feynmf/Announce + RELOC/doc/latex/feynmf/COPYING + RELOC/doc/latex/feynmf/Feynman.Diagrams + RELOC/doc/latex/feynmf/README details="Package Readme" + RELOC/doc/latex/feynmf/Tutorial + RELOC/doc/latex/feynmf/fmfman.pdf details="Package documentation" + RELOC/doc/latex/feynmf/manpics.1 + RELOC/doc/latex/feynmf/manpics.2 + RELOC/doc/latex/feynmf/manpics.3 + RELOC/doc/latex/feynmf/template.tex +srccontainersize 64056 +srccontainerchecksum bdc4dbbc449c911c0d516b10da18c1d541645ec57fd95c163d571a039c70ad46e6111717ffc86c802123c272509c85ce1d71d90f49578b2e228a9229f4d40f02 +srcfiles size=81 + RELOC/source/latex/feynmf/Makefile + RELOC/source/latex/feynmf/feynmf.drv + RELOC/source/latex/feynmf/feynmf.dtx + RELOC/source/latex/feynmf/feynmf.ins + RELOC/source/latex/feynmf/feynmf.pl + RELOC/source/latex/feynmf/feynmf209.ins + RELOC/source/latex/feynmf/feynmp.drv + RELOC/source/latex/feynmf/fmfman.drv + RELOC/source/latex/feynmf/fmfmanps.drv +runfiles size=40 + RELOC/metafont/feynmf/feynmf.mf + RELOC/metapost/feynmf/feynmp.mp + RELOC/metapost/feynmf/manpics.mp + RELOC/tex/latex/feynmf/feynmf.sty + RELOC/tex/latex/feynmf/feynmp.sty +catalogue-ctan /macros/latex/contrib/feynmf +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license gpl -catalogue-version 0.3.3 +catalogue-topics graphics-use mp-use physics +catalogue-version 1.08 + +name feynmp-auto +category Package +revision 30223 +shortdesc Automatic processing of feynmp graphics +relocated 1 +longdesc The package takes care of running Metapost on the output files +longdesc produced by the feynmp package, so that the compiled pictures +longdesc will be available in the next run of LaTeX. The package honours +longdesc options that apply to feynmp. +containersize 1912 +containerchecksum 64ca275292b12847d823322ced9dbad615a34089c8cbe43262e676b34db205ed56509f641e18e949523bd252ed1ea73eeb5f019e2cd052274c02b1df67860a25 +doccontainersize 375268 +doccontainerchecksum 3dd88f5af739013ace4fd8eea70ce247b997e887c0f7067040ff9bf4e0300126aff53845ecefafa7bb52dfc4d05d181a1e96847e6a534c718c5a7447231539ba +docfiles size=93 + RELOC/doc/latex/feynmp-auto/README details="Readme" + RELOC/doc/latex/feynmp-auto/feynmp-auto.pdf details="Package documentation" +srccontainersize 4768 +srccontainerchecksum ea29f32f9f1c628d63b81c958f7c8064e884ba1764953dd62fbe5d90506547846f52fe378f813a09090ef6991c9b7d2905095b04fdc0e26aea4c8cbcb5e2b2b1 +srcfiles size=4 + RELOC/source/latex/feynmp-auto/feynmp-auto.dtx + RELOC/source/latex/feynmp-auto/feynmp-auto.ins +runfiles size=1 + RELOC/tex/latex/feynmp-auto/feynmp-auto.sty +catalogue-ctan /macros/latex/contrib/feynmp-auto +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics graphics-inline +catalogue-version 1.1 + +name ffslides +category Package +revision 38895 +shortdesc Freeform slides based on the article class +relocated 1 +longdesc The ffslides ("freeform slides") class is intended to make it +longdesc easier to place various types of content freely on the page, +longdesc and therefore easier to design documents with a strong visual +longdesc component: presentations, posters, research or lecture notes, +longdesc and so on. The goal of the class is to be less rigid and less +longdesc complex than some of the popular presentation-making options. +longdesc It is essentially a small set of macros added to the article +longdesc class. A well-organized template file is included, and the +longdesc documentation is itself an extensive example of the class's +longdesc capabilities. +containersize 4952 +containerchecksum 393903c180f2fd554178c909bf9a4c060707d8f2fac44022b4811526c7b505a0354afed77f8ae0fa3fbcebed3918a6b46f9e81206be78d7ed6b1c959cd3473a2 +doccontainersize 381912 +doccontainerchecksum 4a8e176b7bce3d54464a30497e41d5a899905a0029199710aedca7234612092f0b2e265a465084536434c9b8c7f45eec3f2ac3df5eef66cecfdae5cdae36c798 +docfiles size=729 + RELOC/doc/latex/ffslides/README.txt details="Readme" + RELOC/doc/latex/ffslides/bground-example.txt + RELOC/doc/latex/ffslides/ffslides-doc.pdf details="Package documentation" + RELOC/doc/latex/ffslides/ffslides-doc.tex + RELOC/doc/latex/ffslides/ffslides-template.tex + RELOC/doc/latex/ffslides/figure.pdf + RELOC/doc/latex/ffslides/footer-example.txt + RELOC/doc/latex/ffslides/header-example.txt + RELOC/doc/latex/ffslides/tiny_example_1.pdf + RELOC/doc/latex/ffslides/tiny_example_2.pdf +runfiles size=4 + RELOC/tex/latex/ffslides/ffslides.cls +catalogue-ctan /macros/latex/contrib/ffslides +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics presentation name fge category Package revision 37628 -shortdesc A font for Frege's Grundgesetze der Arithmetik. +shortdesc A font for Frege's Grundgesetze der Arithmetik relocated 1 longdesc The fonts are provided as Metafont source and Adobe Type 1 longdesc (pfb) files. A small LaTeX package (fge) is included. execute addMap fge.map +containersize 38360 +containerchecksum 0336a91c06bf658c1bf139d716952ac2ad420e307fb8b525e53cd4a488e0cff536c89ff06ceb8788d1e54b96a9fe4b24d94beb6913c1be8683e359a4d00dc4f6 +doccontainersize 137820 +doccontainerchecksum 4f18f7bc1c8000664753e6f0615f7dd1d0f71bf51aeee6860fc2181536f6f1fc37b21e83b0c5b6c151e1012a02ec97d3d5ff6d132a5f6986e94bd173f40f994c +docfiles size=35 + RELOC/doc/fonts/fge/README details="Readme" + RELOC/doc/fonts/fge/fge-doc.pdf details="Package documentation" +srccontainersize 3660 +srccontainerchecksum 4eebdfffd7fbfeb7539543719df1e50564df6ba815f37a503fc98420cfca5c6c2a0a0a0f732656bc288009e9bd0fd1ad7fb0a4625748496575179c3a7015e7bd +srcfiles size=4 + RELOC/source/fonts/fge/fge.dtx + RELOC/source/fonts/fge/fge.ins runfiles size=30 RELOC/fonts/map/dvips/fge/fge.map RELOC/fonts/source/public/fge/fgebase.mf @@ -63760,32 +105517,177 @@ runfiles size=30 RELOC/tex/latex/fge/Ufgerm.fd RELOC/tex/latex/fge/fge.cfg RELOC/tex/latex/fge/fge.sty -docfiles size=35 - RELOC/doc/fonts/fge/README - RELOC/doc/fonts/fge/fge-doc.pdf -srcfiles size=4 - RELOC/source/fonts/fge/fge.dtx - RELOC/source/fonts/fge/fge.ins +catalogue-contact-home http://soliton.vm.bytemark.co.uk/pub/jjg/en/code/fge.html catalogue-ctan /fonts/fge -catalogue-date 2015-05-21 08:39:54 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl catalogue-topics font font-mf font-type1 maths catalogue-version 1.25 +name fgruler +category Package +revision 42966 +shortdesc Draw rulers on the foreground or in the text +relocated 1 +longdesc The fgruler is an abbreviation for the foreground ruler. This +longdesc package draws a horizontal and a vertical ruler on the +longdesc foreground of every (or a given) page at absolute position. In +longdesc this way, you can check the page layout dimensions. Besides, +longdesc you can draw various rulers in the text, too. The fgruler +longdesc package requires the services of the following packages: +longdesc kvoptions, etoolbox, xcolor, graphicx, eso-pic. +containersize 5020 +containerchecksum d189eafb4b2f7788d42614f87684bb3cc36d8e022c9c98f8f7f44babd5f95d3462ff25d2d9ab541384d35ad4daa39b09e28dadae1fbd0f7fa25d0f8ae217c34e +doccontainersize 250388 +doccontainerchecksum 16e5f5be432e338788ea78c5e41091eac616a3ad779c3c40bff723fda2646d5205599857f0e23f1b2774fb56a2ac795c61babe21cc4de5ecc2fadb7b6d33eb2d +docfiles size=63 + RELOC/doc/latex/fgruler/README details="Readme" + RELOC/doc/latex/fgruler/fgruler.pdf details="Package documentation" +srccontainersize 9492 +srccontainerchecksum 789c6383611f55e5efa878efc1ba229794a888a26bb4174fe263c5cb2ea678e67422a47520410bf83b90ebc32a4c9584a7f24bb66f4175d6b71ff0ccabdb3de0 +srcfiles size=20 + RELOC/source/latex/fgruler/fgruler.dtx + RELOC/source/latex/fgruler/fgruler.ins +runfiles size=12 + RELOC/tex/latex/fgruler/fgruler.sty +catalogue-also ruler +catalogue-ctan /macros/latex/contrib/fgruler +catalogue-date 2018-01-07 12:02:30 +0100 +catalogue-license lppl1.3 +catalogue-topics misc-support +catalogue-version 1.0 + +name fibeamer +category Package +revision 44239 +shortdesc Beamer theme for thesis defense presentations at Masaryk University (Brno, Czech Republic) +relocated 1 +longdesc A beamer theme for the typesetting of thesis defense +longdesc presentations at the Masaryk University (Brno, Czech Republic). +longdesc The theme has been designed for easy extensibility by color +longdesc themes of other academic institutions. +containersize 412100 +containerchecksum 566fad32f04b81c95b85f65415acd86e729802a3b638c217054a2b5c0432deeae87213a4ac4a71e35f0113c23b1e98e0cf7fe047b2bcb4f9e00b929d804a230a +doccontainersize 1590680 +doccontainerchecksum a70d38f8b6e1f68f9261a99144d6fbdbbd4a883d4b60f3ddaa01524710e0405bb61599716fa80fd99e9b40e37dde9dbf3ac6fdbaa48a8f2ff4da2534973c42e4 +docfiles size=806 + RELOC/doc/latex/fibeamer/fibeamer.pdf details="Package documentation" + RELOC/doc/latex/fibeamer/guide/mu/econ.pdf + RELOC/doc/latex/fibeamer/guide/mu/fi.pdf + RELOC/doc/latex/fibeamer/guide/mu/fsps.pdf + RELOC/doc/latex/fibeamer/guide/mu/fss.pdf + RELOC/doc/latex/fibeamer/guide/mu/law.pdf + RELOC/doc/latex/fibeamer/guide/mu/med.pdf + RELOC/doc/latex/fibeamer/guide/mu/ped.pdf + RELOC/doc/latex/fibeamer/guide/mu/phil.pdf + RELOC/doc/latex/fibeamer/guide/mu/sci.pdf +srccontainersize 12772 +srccontainerchecksum 51947801fc6c4c8e4098fe38bc6638bcf328884cc86b25e7beca8525db1c8888145b1852a3113d651f5595b84a84738adc5516e65677ea8c31c195dc9ab0c3e5 +srcfiles size=40 + RELOC/source/latex/fibeamer/LICENSE.tex + RELOC/source/latex/fibeamer/fibeamer.dtx + RELOC/source/latex/fibeamer/fibeamer.ins + RELOC/source/latex/fibeamer/theme/mu/base.dtx + RELOC/source/latex/fibeamer/theme/mu/base.ins + RELOC/source/latex/fibeamer/theme/mu/econ.dtx + RELOC/source/latex/fibeamer/theme/mu/econ.ins + RELOC/source/latex/fibeamer/theme/mu/fi.dtx + RELOC/source/latex/fibeamer/theme/mu/fi.ins + RELOC/source/latex/fibeamer/theme/mu/fsps.dtx + RELOC/source/latex/fibeamer/theme/mu/fsps.ins + RELOC/source/latex/fibeamer/theme/mu/fss.dtx + RELOC/source/latex/fibeamer/theme/mu/fss.ins + RELOC/source/latex/fibeamer/theme/mu/law.dtx + RELOC/source/latex/fibeamer/theme/mu/law.ins + RELOC/source/latex/fibeamer/theme/mu/med.dtx + RELOC/source/latex/fibeamer/theme/mu/med.ins + RELOC/source/latex/fibeamer/theme/mu/ped.dtx + RELOC/source/latex/fibeamer/theme/mu/ped.ins + RELOC/source/latex/fibeamer/theme/mu/phil.dtx + RELOC/source/latex/fibeamer/theme/mu/phil.ins + RELOC/source/latex/fibeamer/theme/mu/sci.dtx + RELOC/source/latex/fibeamer/theme/mu/sci.ins +runfiles size=335 + RELOC/tex/latex/fibeamer/beamerthemefibeamer.sty + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-econ-czech.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-econ-czech.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-econ-english.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-econ-english.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fi-czech.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fi-czech.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fi-english.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fi-english.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fsps-czech.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fsps-czech.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fsps-english.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fsps-english.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fss-czech.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fss-czech.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fss-english.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fss-english.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-law-czech.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-law-czech.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-law-english.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-law-english.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-med-czech.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-med-czech.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-med-english.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-med-english.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-ped-czech.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-ped-czech.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-ped-english.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-ped-english.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-phil-czech.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-phil-czech.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-phil-english.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-phil-english.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-sci-czech.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-sci-czech.pdf + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-sci-english.eps + RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-sci-english.pdf + RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-econ.sty + RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-fi.sty + RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-fsps.sty + RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-fss.sty + RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-law.sty + RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-med.sty + RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-ped.sty + RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-phil.sty + RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-sci.sty + RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu.sty + RELOC/tex/latex/fibeamer/theme/mu/beamerfontthemefibeamer-mu.sty + RELOC/tex/latex/fibeamer/theme/mu/beamerinnerthemefibeamer-mu.sty + RELOC/tex/latex/fibeamer/theme/mu/beamerouterthemefibeamer-mu.sty +catalogue-contact-announce https://github.com/Witiko/fibeamer/releases +catalogue-contact-bugs https://github.com/Witiko/fibeamer/issues +catalogue-contact-development https://github.com/Witiko/fibeamer/pulls +catalogue-contact-home https://www.fi.muni.cz/lemma/projekty/fithesis3/#fibeamer +catalogue-contact-repository https://github.com/Witiko/fibeamer +catalogue-contact-support https://github.com/Witiko/fibeamer/issues +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/fibeamer +catalogue-date 2017-05-07 13:42:49 +0200 +catalogue-license lppl1.3 +catalogue-topics dissertation presentation +catalogue-version 1.1.7 + name fifinddo-info category Package revision 29349 -shortdesc German HTML beamer presentation on nicetext and morehype. +shortdesc German HTML beamer presentation on nicetext and morehype relocated 1 longdesc The bundle: exhibits the process of making an "HTML beamer longdesc presentation" with the blogdot package from the morehype longdesc bundle, and HTML generation based on the fifinddo package. +containersize 532 +containerchecksum 86767390bc9946b8f8d47dae0334d7cfc21ac2b064b00ab70732f7ca3f50d875a35dbb0e477ef1c014452fc14c177a1c5c6b96ee334c99bbc2bb49eee9ffe6b9 +doccontainersize 257192 +doccontainerchecksum e6635f5cc989bfa0da9b2b0cbd5c3719aa793552f4c1adbc1ee218a78b6b116d2c2046b04254e3294834e63901ece9489b8c86421afd3c58aeb8615b5859ee92 docfiles size=417 - RELOC/doc/latex/fifinddo-info/LIESMICH.txt - RELOC/doc/latex/fifinddo-info/README + RELOC/doc/latex/fifinddo-info/LIESMICH.txt details="Readme" language="de" + RELOC/doc/latex/fifinddo-info/README details="Readme" language="en" RELOC/doc/latex/fifinddo-info/SrcFILEs.txt RELOC/doc/latex/fifinddo-info/dante-mv45-lueck.pdf - RELOC/doc/latex/fifinddo-info/dantev45.htm + RELOC/doc/latex/fifinddo-info/dantev45.htm details="The presentation document" language="de" RELOC/doc/latex/fifinddo-info/mdoccorr.pdf RELOC/doc/latex/fifinddo-info/variants/dantev45-1180-clean.html RELOC/doc/latex/fifinddo-info/variants/dantev45-1180-com.html @@ -63796,6 +105698,8 @@ docfiles size=417 RELOC/doc/latex/fifinddo-info/variants/dantev45-992-com.html RELOC/doc/latex/fifinddo-info/variants/dantev45-992-exact-frame.html RELOC/doc/latex/fifinddo-info/variants/dantev45-992-exact.html +srccontainersize 23136 +srccontainerchecksum f01f2453c206cc7fefaafd1269c77b43bf1f24a8fef034ebdc40ac2be5c4ef553d2096f4168e7933e63aa816b1397c74fe21d725f0a6bc3d8187c751145a44a7 srcfiles size=29 RELOC/source/latex/fifinddo-info/SrcFILEs.txt RELOC/source/latex/fifinddo-info/makeelse/expose.tex @@ -63810,9 +105714,11 @@ srcfiles size=29 RELOC/source/latex/fifinddo-info/makevars/longdan.sh RELOC/source/latex/fifinddo-info/makevars/makedots.tex RELOC/source/latex/fifinddo-info/makevars/texvars.sh +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html catalogue-ctan /info/fifinddo-info -catalogue-date 2014-10-17 01:12:51 +0200 +catalogue-date 2017-05-06 08:05:02 +0200 catalogue-license lppl1.3 +catalogue-topics documentation cvt-html catalogue-version 1.1b name fifo-stack @@ -63824,65 +105730,225 @@ longdesc A LaTeX implementation of a combined FIFO Stack modified from longdesc the existing stack package by Benjamin Bayart. The package longdesc renames the original's \Push and \Pop commands \FSPush and longdesc \FSPop, and which work on the top/end of the FIFO/Stack), and -longdesc adds the ability to \FSUnshift and \FSShift from the the -longdesc bottom(front) of the FIFO/Stack. -runfiles size=2 - RELOC/tex/latex/fifo-stack/fifo-stack.sty +longdesc adds the ability to \FSUnshift and \FSShift from the bottom +longdesc (front) of the FIFO/Stack. +containersize 2072 +containerchecksum 4121e3cefed7ffe80bfaa8b054ba0825ab0fc2b4073a845386de4db3650b4d68c48a4f7378ffcfc4a221b21ad30ac6e199920e7d8c44f503b35c14cf4c001462 +doccontainersize 249308 +doccontainerchecksum 220d9b2796c20251ae568d1dc5a7eee1fad5cf6aff26a2b94c1a2c9dd6d853dfc9c25377ec8c3d6edfc43f5b4cf645c459754c5d6a642506fa7779cf79f1a901 docfiles size=66 - RELOC/doc/latex/fifo-stack/README + RELOC/doc/latex/fifo-stack/README details="Readme" RELOC/doc/latex/fifo-stack/fifo-stack-test.tex RELOC/doc/latex/fifo-stack/fifo-stack.cwl - RELOC/doc/latex/fifo-stack/fifo-stack.pdf + RELOC/doc/latex/fifo-stack/fifo-stack.pdf details="Package documentation" +srccontainersize 6860 +srccontainerchecksum 3ab0e67acb7895c527be3cee1ab0fe7ba03397410f9970dc7c286418ae6e785d8051b82add959ff7d0596d6983ae6514f70c631672fce5c66bdb6542a3b7d777 srcfiles size=9 RELOC/source/latex/fifo-stack/fifo-stack.dtx RELOC/source/latex/fifo-stack/fifo-stack.ins +runfiles size=2 + RELOC/tex/latex/fifo-stack/fifo-stack.sty +catalogue-contact-repository https://github.com/diSimplex/latexFifoStack catalogue-ctan /macros/latex/contrib/fifo-stack -catalogue-date 2014-04-08 11:20:21 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl +catalogue-topics macro-supp catalogue-version 1.0 name fig4latex category Package revision 26313 -shortdesc Management of figures for large LaTeX documents. +shortdesc Management of figures for large LaTeX documents longdesc Fig4LaTeX simplifies management of the figures in a large LaTeX longdesc document. Fig4LaTeX is appropriate for projects that include longdesc figures with graphics created by XFig -- in particular, longdesc graphics which use the combined PS/LaTeX (or PDF/LaTeX) export longdesc method. An example document (with its output) is provided. depend fig4latex.ARCH -runfiles size=2 - texmf-dist/scripts/fig4latex/fig4latex +containersize 2528 +containerchecksum 3f01676ea85d64e09376da4481794e1537b9e19c0ff0bac77c022b10b5d49c39d789de6e4f0356b4ea4b23326f9ef320f4b08035bc04a827951cbf44ed7c6228 +doccontainersize 60872 +doccontainerchecksum c05d3c08b916785b765694e68b8f7cd96c3c359325e8f84166102beb4caeada7490ed24ad0b4f52a66cb822000f8b4d75d1013b93055898e88e82d7f23d5095a docfiles size=28 texmf-dist/doc/support/fig4latex/CHANGES texmf-dist/doc/support/fig4latex/COPYING - texmf-dist/doc/support/fig4latex/README + texmf-dist/doc/support/fig4latex/README details="Readme" texmf-dist/doc/support/fig4latex/example.pdf texmf-dist/doc/support/fig4latex/example.tex texmf-dist/doc/support/fig4latex/figs/div_alg_flowchart.fig texmf-dist/doc/support/fig4latex/figs/if-then_flowchart.fig +runfiles size=2 + texmf-dist/scripts/fig4latex/fig4latex catalogue-ctan /graphics/fig4latex -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl3 +catalogue-topics graphics-incl catalogue-version 0.2 +name fig4latex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of fig4latex +containersize 336 +containerchecksum 33d44503662a9190afb99cf8e840caba414330019f404869811a09263021ca3a868e93a5562938d69b86d9411583b06d317c347693666e2e6e5928a62d1dac0a +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/fig4latex + +name fig4latex.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of fig4latex +containersize 340 +containerchecksum 955e495ed660bc92414a579030dab98909b3ffdc38e3ad4fce89bdbe747620d83c657ea97784d3fa8defcc97b99a83dd6d45723d0e5b7ee87e2f0821af3ed105 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/fig4latex + +name fig4latex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of fig4latex +containersize 340 +containerchecksum 470c4dcf9e84437424cb1c2fb3f919520966b8282d0428a63588df15abbc8e5b4346318a928b6a0780c08b55d8c730308c40bd9414cd2ddd6cabb0be2e84c8f6 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/fig4latex + +name fig4latex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of fig4latex +containersize 336 +containerchecksum dd7d625dfde454734a94014fa06edb7deb876dd1861bfa077828ac24c62a1a4e1eaba99bbc273eaf639ffe5a704452db8c0112949281287ffa927c5e31352c3f +binfiles arch=armhf-linux size=1 + bin/armhf-linux/fig4latex + +name fig4latex.i386-cygwin +category Package +revision 14752 +shortdesc i386-cygwin files of fig4latex +containersize 340 +containerchecksum d48c579b21b3ab54b1f37655881ea5c3b260f3c30afb2fceab0a9fecd4ceeebe0c5e872e29b4e0f6ff9468f0be20ae76a3494922a7b2411a3ecb9d4a54178ab7 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/fig4latex + +name fig4latex.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of fig4latex +containersize 340 +containerchecksum c57940241545778f8fb8d9f66defb448411ba1a7be79e50aa8e0ff852f1d85d4f933da42aa4299baadcdca0a16cf14610eb9628844ff4372128b9005d3281b8f +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/fig4latex + name fig4latex.i386-linux category Package revision 14752 shortdesc i386-linux files of fig4latex +containersize 340 +containerchecksum 93a32ec142a059e1ef2335ce7a846767eccc0d8a1c8f96195775d5a28aa21e2fe19fc5e73e1ec9dff1ff4cf92c5658eaf35213616da996d2da576894561f6c40 binfiles arch=i386-linux size=1 bin/i386-linux/fig4latex +name fig4latex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of fig4latex +containersize 340 +containerchecksum b877b809e185478645d7fa95391ff4f193d5dd43799c4e096423490815f17ccc760cfe2cc339e135e5cdebc3cc46f57489f8bb8ddcfcaeb894c9973d7314e7a1 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/fig4latex + +name fig4latex.i386-solaris +category Package +revision 14752 +shortdesc i386-solaris files of fig4latex +containersize 340 +containerchecksum 744ab1c3cd6471ba98a38fa9ec2e8c69e431d00ce7a06707fe436a99aef84c1c428b0154ff653b4aa12c482b884858e1c4f49d79c29443a37c16bd76f2fe968c +binfiles arch=i386-solaris size=1 + bin/i386-solaris/fig4latex + +name fig4latex.win32 +category Package +revision 15469 +shortdesc win32 files of fig4latex +containersize 684 +containerchecksum e315ab83991ef5b086c32e1593ad0cd190bbb78eb12ef228da13e6d2f0af49859c3b2892ef33fbcf3b58fc57beadb30e231667d07898db867fd3525c2bcfb9ca +binfiles arch=win32 size=1 + bin/win32/fig4latex.exe + +name fig4latex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of fig4latex +containersize 340 +containerchecksum 2459d7b709d4574d08b02c1e8d8f5e9796a139ca74fb16de4d6926d5048a06e89607c199d1d19b93d514206a05fd9bb4c991cecbcd55d6443fcd361080ec7c05 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/fig4latex + +name fig4latex.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of fig4latex +containersize 340 +containerchecksum 333ac63b7a16280ee68aafb0cf83c6e052279152995aefb9fabbe18f9104972066499e59b915b3c1d1282f52ae1334de60ab1968be8eec88f81f44fa9bf0a0b5 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/fig4latex + +name fig4latex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of fig4latex +containersize 344 +containerchecksum 447807d1da2ae8b21f81d8cfff21c6e3a83f552029c81df081f81b5275b9abeb9c3d1ed81db569935825d9d74c9611277a285b04f97930cd7ff1497b44d411c1 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/fig4latex + +name fig4latex.x86_64-linux +category Package +revision 14752 +shortdesc x86_64-linux files of fig4latex +containersize 340 +containerchecksum f970fd30db8865547396060069b5059d50ae53f4ac2c9b035c84bcbc33084559898042276de8390a502012d8b465b816f610d3f21d1d035e132d159b068f4240 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/fig4latex + +name fig4latex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of fig4latex +containersize 344 +containerchecksum a0411a1ab2a65ea2d1326e2e39d7cac170eaa36bb8fa95022baddfbbc6cecf6947cdc3b791f8121aa43720a82d1fcd76933b5933e629fe863349676b8bdbe3e2 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/fig4latex + +name fig4latex.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of fig4latex +containersize 340 +containerchecksum 709cb487e940348003d094b9b01e44d58a8bc320bfe1dada836d536be2423284543e9bc26d0aae09fec0ed6c2372b1e9a6372caa656a6d6e7fb321c0c8723703 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/fig4latex + name figbas category Package revision 28943 -shortdesc Mini-fonts for figured-bass notation in music. +shortdesc Mini-fonts for figured-bass notation in music relocated 1 longdesc This package consists of three mini-fonts (and associated longdesc metrics) of conventional ligatures for the figured-bass longdesc notations 2+, 4+, 5+, 6+ and 9+ in music manuscripts. The fonts longdesc are usable with Computer Modern Roman and Sans, and longdesc Palatino/Palladio, respectively. +containersize 18600 +containerchecksum 2fdc1114b03123c35eccd6b617310c714f37015620551538458a1a49b1e9a583aa55b3cb661f204bb9168cee0a7325b066d64315a15a94daa01e43d05bbb2561 +doccontainersize 77248 +doccontainerchecksum 7dc8140b3b545d2683c471e2e2907a58e2c995f23acea26d763da8989c3288940dcc154ffc0f81ea99169ce574bf90543e94f86bf8217996b7c83474a300806e +docfiles size=24 + RELOC/doc/fonts/figbas/README details="Readme" + RELOC/doc/fonts/figbas/example.pdf details="Short example of use" + RELOC/doc/fonts/figbas/example.tex + RELOC/doc/fonts/figbas/figbas.pdf + RELOC/doc/fonts/figbas/figbas.tex runfiles size=14 RELOC/fonts/afm/public/figbas/cmrj.afm RELOC/fonts/afm/public/figbas/cmssj.afm @@ -63894,21 +105960,16 @@ runfiles size=14 RELOC/fonts/type1/public/figbas/cmrj.pfb RELOC/fonts/type1/public/figbas/cmssj.pfb RELOC/fonts/type1/public/figbas/plrj.pfb -docfiles size=24 - RELOC/doc/fonts/figbas/README - RELOC/doc/fonts/figbas/example.pdf - RELOC/doc/fonts/figbas/example.tex - RELOC/doc/fonts/figbas/figbas.pdf - RELOC/doc/fonts/figbas/figbas.tex catalogue-ctan /fonts/figbas -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics music catalogue-version 1.0.3 name figbib category Package revision 19388 -shortdesc Organize figure databases with BibTeX. +shortdesc Organize figure databases with BibTeX relocated 1 longdesc FigBib lets you organize your figures in BibTeX databases. Some longdesc FigBib features are: Store and manage figures in a BibTeX @@ -63917,26 +105978,31 @@ longdesc command; Generate a List of Figures containing more/other longdesc information than the figure captions; Control with one switch longdesc where to output the figures, either as usual float objects or longdesc in a separate part at the end of your document. -runfiles size=5 - RELOC/bibtex/bst/figbib/figbib.bst - RELOC/bibtex/bst/figbib/figbib1.bst - RELOC/tex/latex/figbib/figbib.sty +containersize 3288 +containerchecksum 1632b372b06d8ef3cc363d6b05e70b8a493f357fb947ca1b8fbb7752d7ffc4ec09904e747a3e9b91b61e5d094c96eee954d533d1b286b372aa57244ec2abc63d +doccontainersize 133148 +doccontainerchecksum ba42f6cc811fc9e00c41bb6fb410a57a2efe759a0fd0621cd83801963d0ed138dc66a1a245a4b7256cb056f3fe71e883a8fa84d19dda785ba24825e85edfa044 docfiles size=49 - RELOC/doc/latex/figbib/README + RELOC/doc/latex/figbib/README details="Readme" RELOC/doc/latex/figbib/figbib_doc.pdf RELOC/doc/latex/figbib/figbib_doc.tex RELOC/doc/latex/figbib/figbib_sample.bib RELOC/doc/latex/figbib/figbib_sample.pdf RELOC/doc/latex/figbib/figbib_sample.tex RELOC/doc/latex/figbib/smiley.eps +runfiles size=5 + RELOC/bibtex/bst/figbib/figbib.bst + RELOC/bibtex/bst/figbib/figbib1.bst + RELOC/tex/latex/figbib/figbib.sty catalogue-ctan /macros/latex/contrib/figbib -catalogue-date 2014-10-17 01:12:51 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics bibtex-util name figflow category Package revision 21462 -shortdesc Flow text around a figure. +shortdesc Flow text around a figure relocated 1 longdesc Provides a Plain TeX macro \figflow that allows one to insert a longdesc figure into an area inset into a paragraph. Command arguments @@ -63945,18 +106011,23 @@ longdesc caption) itself. Usage details are to be found in the TeX file longdesc itself. The package does not work with LaTeX; packages such as longdesc wrapfig, floatflt and picins support the needs of LaTeX users longdesc in this area. -runfiles size=1 - RELOC/tex/plain/figflow/figflow.tex +containersize 2072 +containerchecksum f75517b5c43119d33edf46fbe124523cacf0d7d837cdf66af702ba563392a96323b266bece1ec9e7f87df34d684a87ab38f9ddafab6c3d069dca8ee22c3bf25a +doccontainersize 684 +doccontainerchecksum c972bfb356731aa119e8cdf1292a3bcbfc08a74453feb7e509a5cc519f62ae6c7e6b0c087973549b9d860b97ff1a3bae9cfd1166c4ac6a74553ca6c0f463694d docfiles size=1 RELOC/doc/plain/figflow/README.figflow +runfiles size=1 + RELOC/tex/plain/figflow/figflow.tex catalogue-ctan /macros/plain/contrib/figflow -catalogue-date 2012-07-11 23:21:34 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics text-flow name figsize category Package revision 18784 -shortdesc Auto-size graphics. +shortdesc Auto-size graphics relocated 1 longdesc The FigSize package enables automatic sizing of graphics, longdesc especially when including graphics with the graphicx package. @@ -63968,21 +106039,26 @@ longdesc page or fraction and manual changes of graphic sizes are never longdesc needed when changing document layouts. Finally, the package's longdesc dynamic lengths can be used to allow other document element longdesc sizes to be dynamic. -runfiles size=1 - RELOC/tex/latex/figsize/figsize.sty +containersize 1536 +containerchecksum 3c7523b05d04363c57c1ba75a39d9698b1648ab6a858be15112b6f47c052742033e3ed16752a9b9ef3854ab93f547f0841c32f1cc68fb9d4538fc02a7bb19ad6 +doccontainersize 88472 +doccontainerchecksum 598f631423a97e189c21e117a7da23c95bbf4dc3b616e62fc6738674848fc46be4d7dd43832ff58ef834c0fdbe35d8923ba9729d5c48f90b0431a22bf86f79d5 docfiles size=39 - RELOC/doc/latex/figsize/README + RELOC/doc/latex/figsize/README details="Package Readme" RELOC/doc/latex/figsize/epsfig.eps - RELOC/doc/latex/figsize/figsize.pdf + RELOC/doc/latex/figsize/figsize.pdf details="Package documentation" RELOC/doc/latex/figsize/figsize.tex +runfiles size=1 + RELOC/tex/latex/figsize/figsize.sty catalogue-ctan /macros/latex/contrib/figsize -catalogue-date 2012-07-11 23:21:34 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics graphics catalogue-version 0.1 name filecontents category Package -revision 24250 +revision 47890 shortdesc Extended filecontents and filecontents* environments relocated 1 longdesc LaTeX2e's filecontents and filecontents* environments enable a @@ -63993,48 +106069,106 @@ longdesc can only be used in the preamble of a document. The longdesc filecontents package removes these limitations, letting you longdesc overwrite existing files and letting you use longdesc filecontents/filecontents* anywhere. -runfiles size=1 - RELOC/tex/latex/filecontents/filecontents.sty -docfiles size=63 - RELOC/doc/latex/filecontents/README - RELOC/doc/latex/filecontents/filecontents.pdf +containersize 1764 +containerchecksum 60e257edc011be2701e7526723e014e537993ce4bd4a2ec0a3fcdfbf4bcb4c4d90f574d33c37c97e1d78151de983138cec0b1d10aef913100076431c4eb9d7f5 +doccontainersize 117976 +doccontainerchecksum 76d1eac8e20f4e411459feb6823a8ce179f0032b0a409ff5513d63fb52b6742b4cbf9feaebc465d2c1a3b397fc36f13aab55b401d69b3756f2a4850d83cd210a +docfiles size=31 + RELOC/doc/latex/filecontents/README details="Package Readme" + RELOC/doc/latex/filecontents/filecontents.pdf details="Package documentation" +srccontainersize 5724 +srccontainerchecksum ee82eea1ed9c60dbd9fcf7bb4b2f8ab763af4ba339905351aac3746d37ea3bc85214760c799ed84c13fab8ce3e7516afc96afd077c37c542cb45d8beeb3ec1d1 srcfiles size=5 RELOC/source/latex/filecontents/filecontents.dtx RELOC/source/latex/filecontents/filecontents.ins +runfiles size=1 + RELOC/tex/latex/filecontents/filecontents.sty catalogue-ctan /macros/latex/contrib/filecontents -catalogue-date 2012-01-12 19:29:56 +0100 -catalogue-license lppl -catalogue-version 1.3 +catalogue-date 2018-05-31 12:59:15 +0200 +catalogue-license lppl1.3c +catalogue-topics file-mgmt +catalogue-version 1.4 + +name filecontentsdef +category Package +revision 50942 +shortdesc filecontents + macro + verbatim +relocated 1 +longdesc The package provides two environments called filecontentsdef +longdesc and filecontentshere. They are derived from the LaTeX +longdesc filecontents environment as provided by Scott Pakin's +longdesc filecontents package. In addition to the file creation they +longdesc either store the (verbatim) contents in a macro +longdesc (filecontentsdef) or typeset them (verbatim) on the spot +longdesc (filecontentshere). The author developed the package to display +longdesc TeX code verbatim in documentation and the same time produce +longdesc the corresponding files during the LaTeX run in order to embed +longdesc them in the PDF as file attachment annotations (by using Scott +longdesc Pakin's package attachfile). +containersize 2364 +containerchecksum e0fa23f45b6dec1dfeb0dc6c8fe53bb2ceaf7e68bf2ffcd8f09134d294bcb8714375f6f488d906d7e0fe72e285f1d0e7f7428456093c9da32dbef747564e658d +doccontainersize 90648 +doccontainerchecksum 5b7412d379dc9d9e93dbbbe29f967ad32cf16af2d07a551627c8175068eff8777f53d717f789d6b48f8ca9231d4a73aac2cf44a632415860a56ac1b203041de6 +docfiles size=31 + RELOC/doc/latex/filecontentsdef/INSTALL + RELOC/doc/latex/filecontentsdef/INSTALL.md + RELOC/doc/latex/filecontentsdef/README.md details="Readme" + RELOC/doc/latex/filecontentsdef/filecontentsdef-ex1.tex + RELOC/doc/latex/filecontentsdef/filecontentsdef-ex2.tex + RELOC/doc/latex/filecontentsdef/filecontentsdef-ex3.tex + RELOC/doc/latex/filecontentsdef/filecontentsdef.pdf details="Package documentation" + RELOC/doc/latex/filecontentsdef/filecontentsdef.test + RELOC/doc/latex/filecontentsdef/filecontentsdef.tex +srccontainersize 12252 +srccontainerchecksum e3707ed6f5351189ca89b40f415055ea53db53811d12d6b09a83e7f63e26821cc4aa348aa289d4b876df7a1fa896f30d64e50b2860adf159e19c3b33bbcb0dd5 +srcfiles size=10 + RELOC/source/latex/filecontentsdef/filecontentsdef.dtx +runfiles size=2 + RELOC/tex/latex/filecontentsdef/filecontentsdef.sty +catalogue-also filecontents +catalogue-ctan /macros/latex/contrib/filecontentsdef +catalogue-date 2019-04-23 14:37:59 +0200 +catalogue-license lppl1.3 +catalogue-topics file-mgmt +catalogue-version 1.4 name filedate category Package revision 29529 -shortdesc Access and compare info and modification dates. +shortdesc Access and compare info and modification dates relocated 1 longdesc The package provides basic access to the date of a LaTeX source longdesc file according to its \Provides... entry (the "info date") as longdesc well as to its modification date according to \pdffilemoddate longdesc if the latter is available. -runfiles size=6 - RELOC/tex/latex/filedate/filedate.RLS - RELOC/tex/latex/filedate/filedate.sty +containersize 6848 +containerchecksum 5e2789c065459e82f073599c4d5f04c626fedae7e02c8dc58d6595d81ec8281c9c362592eee9547369b7a8e9cd2aed1ec526d69a8ae22f35771d5494e3109032 +doccontainersize 561320 +doccontainerchecksum cfc2eb596e6b6d17015ab2ca061da39e673376d6f4c526dc045c8d2514fa8372f1a853a97425b4bcb9eb0bdc522c6b482a9bc3da9f56f8a4e0c22e4970a40575 docfiles size=152 RELOC/doc/latex/filedate/Announce.txt - RELOC/doc/latex/filedate/README + RELOC/doc/latex/filedate/README details="Readme" RELOC/doc/latex/filedate/SrcFILEs.txt - RELOC/doc/latex/filedate/filedate.pdf + RELOC/doc/latex/filedate/filedate.pdf details="Package documentation" +srccontainersize 3812 +srccontainerchecksum cc2a12c8f3b9e7391d6b57eec6c0f486137524022d89d3d3e7c037ab468a4858b253e8baa1cc8eeb731510c5e221b7cbe9a9f22a972023b3d1fe2f975e4751dc srcfiles size=4 RELOC/source/latex/filedate/fdatechk.tex RELOC/source/latex/filedate/filedate.tex RELOC/source/latex/filedate/srcfiles.tex +runfiles size=6 + RELOC/tex/latex/filedate/filedate.RLS + RELOC/tex/latex/filedate/filedate.sty +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html catalogue-ctan /macros/latex/contrib/filedate -catalogue-date 2013-03-28 18:13:03 +0100 +catalogue-date 2017-05-06 08:10:03 +0200 catalogue-license lppl +catalogue-topics file-mgmt date-time name filehook category Package revision 24280 -shortdesc Hooks for input files. +shortdesc Hooks for input files relocated 1 longdesc The package provides several file hooks (AtBegin, AtEnd, ...) longdesc for files read by \input, \include and \InputIfFileExists. @@ -64042,6 +106176,18 @@ longdesc General hooks for all such files (e.g. all \include'd ones) and longdesc file specific hooks only used for named files are provided; two longdesc hooks are provided for the end of \included files -- one longdesc before, and one after the final \clearpage. +containersize 4020 +containerchecksum 36669f6b296770240d7ecbd6f9974f2dee078421a9336166a47fa2cbefb9e2b442c5ba36629a5b0349f406a9037cc4673bc4790dc585f2e37766447004cdc35b +doccontainersize 258828 +doccontainerchecksum 51a2f590d7af887a084c4045ea16586c7014494593636058687ddc5a4c206785e0bbf038d577329c296cf5a53533d14cfc7e280894a346a637eab123643b74c9 +docfiles size=65 + RELOC/doc/latex/filehook/README details="Readme" + RELOC/doc/latex/filehook/filehook.pdf details="Package documentation" +srccontainersize 12712 +srccontainerchecksum ec4714219bd59f098f04d6e1e98f0c0d871c96cdde6ccac4a14b3ee5250b04d0682c026db7a7f619909b55ba9df0e74c82705de0d07c2ee18e6d299c9e958a9e +srcfiles size=17 + RELOC/source/latex/filehook/filehook.dtx + RELOC/source/latex/filehook/filehook.ins runfiles size=9 RELOC/tex/latex/filehook/filehook-fink.sty RELOC/tex/latex/filehook/filehook-listings.sty @@ -64049,52 +106195,55 @@ runfiles size=9 RELOC/tex/latex/filehook/filehook-scrlfile.sty RELOC/tex/latex/filehook/filehook.sty RELOC/tex/latex/filehook/pgf-filehook.sty -docfiles size=65 - RELOC/doc/latex/filehook/README - RELOC/doc/latex/filehook/filehook.pdf -srcfiles size=17 - RELOC/source/latex/filehook/filehook.dtx - RELOC/source/latex/filehook/filehook.ins catalogue-ctan /macros/latex/contrib/filehook -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics macro-supp catalogue-version 0.5d name fileinfo category Package revision 28421 -shortdesc Enhanced display of LaTeX File Information. +shortdesc Enhanced display of LaTeX File Information relocated 1 longdesc The bundle provides two packages, readprov and myfilist. The longdesc readprov package provides a means of reading file information longdesc without loading the body of the file. The myfilist package uses longdesc readprov and controls what \listfiles will report. -runfiles size=7 - RELOC/tex/latex/fileinfo/fileinfo.RLS - RELOC/tex/latex/fileinfo/myfilist.sty - RELOC/tex/latex/fileinfo/readprov.sty +containersize 6896 +containerchecksum 2e5914e32af48db731aa83c3e51e6d9128dc969891bce21e1e2f859cab79130c9f5caa0f591765fa8a9b48c38eed8d19305f4be598430ab1e2cb3276b6faf191 +doccontainersize 913660 +doccontainerchecksum 03b4ecbd21ec39d98949f2e8ece7e48bd539a75051350d1a9ea19e3d32ecd620c0f1a5dc454e626237534114d0430e2ad7c175e9c1b27ba15c78a35aeca3e3b9 docfiles size=264 RELOC/doc/latex/fileinfo/README - RELOC/doc/latex/fileinfo/README.pdf + RELOC/doc/latex/fileinfo/README.pdf details="Readme" RELOC/doc/latex/fileinfo/RELEASEs.txt RELOC/doc/latex/fileinfo/SrcFILEs.txt RELOC/doc/latex/fileinfo/myfilist.pdf RELOC/doc/latex/fileinfo/readprov.pdf +srccontainersize 4496 +srccontainerchecksum 6875ecef667da4476def344901db38f38e988d2345c2afff42fb812c01c356df8bf1dd3c8c9a563a883fcb9e22e85b8813bbf50905d711004a439767ac0f7227 srcfiles size=7 RELOC/source/latex/fileinfo/README.tex RELOC/source/latex/fileinfo/fdatechk.tex RELOC/source/latex/fileinfo/gather.tex RELOC/source/latex/fileinfo/myfilist.tex RELOC/source/latex/fileinfo/readprov.tex +runfiles size=7 + RELOC/tex/latex/fileinfo/fileinfo.RLS + RELOC/tex/latex/fileinfo/myfilist.sty + RELOC/tex/latex/fileinfo/readprov.sty +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html catalogue-ctan /macros/latex/contrib/fileinfo -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl1.3 +catalogue-topics doc-mgmt catalogue-version 0.81a name filemod category Package revision 24042 -shortdesc Provide file modification times, and compare them. +shortdesc Provide file modification times, and compare them relocated 1 longdesc The package provides macros to read and compare the longdesc modification dates of files. The files may be .tex files, @@ -64105,65 +106254,216 @@ longdesc and returns the value to the user. The package will also work longdesc for DVI output with recent versions of the LaTeX compiler which longdesc uses pdfLaTeX in DVI mode. The functionality is provided by longdesc purely expandable macros or by faster but non-expandable ones. +containersize 3528 +containerchecksum 4ec27d16dc551d42f9ff326d20f78c48d73e7324af65f6ccb9e662dcd399394c631d9a742aef8a2efc235dfd769a04d22b4ba37eb8a2cd06631cba298540c08b +doccontainersize 277228 +doccontainerchecksum 88c1d8c61ed1759617c9cec7cecbb28459dd5e06f139ba3ca2f98d7b6357a15fc89dd90daf26e5f4d17f33fe9673a8c17363fb757ecb71d9e530f0e153ec486e +docfiles size=70 + RELOC/doc/latex/filemod/README details="Readme" + RELOC/doc/latex/filemod/filemod.pdf details="Package documentation" runfiles size=8 RELOC/tex/generic/filemod/filemod-expmin.tex RELOC/tex/generic/filemod/filemod.tex RELOC/tex/latex/filemod/filemod-expmin.sty RELOC/tex/latex/filemod/filemod.sty -docfiles size=70 - RELOC/doc/latex/filemod/README - RELOC/doc/latex/filemod/filemod.pdf +catalogue-also stampinclude catalogue-ctan /macros/latex/contrib/filemod -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics doc-tool catalogue-version 1.2 name finbib category Package revision 15878 catalogue finplain -shortdesc A Finnish version of plain.bst. +shortdesc A Finnish version of plain.bst relocated 1 +containersize 5372 +containerchecksum 14f08cdc92a2d6d511c112c480efb0112d45c199023e89c9314740c2b9b83598bc9f8917ce616bb2493671f408f946ada3de4535136eff48b7bbf72e7436f912 runfiles size=7 RELOC/bibtex/bst/finbib/finplain.bst catalogue-ctan /biblio/bibtex/contrib/misc/finplain.bst -catalogue-date 2012-05-21 00:09:46 +0200 +catalogue-date 2016-06-18 16:48:54 +0200 catalogue-license other-free +catalogue-topics bibtex-sty finnish name findhyph category Package -revision 30915 -shortdesc Find hyphenated words in a document. +revision 47444 +shortdesc Find hyphenated words in a document longdesc Findhyph is a Perl script that will analyse the log file from longdesc running your document with \tracingparagraphs=1 set. The output longdesc contains enough context to enable you to find the hyphenated longdesc word that's being referenced. depend findhyph.ARCH -runfiles size=3 - texmf-dist/scripts/findhyph/findhyph -docfiles size=11 +containersize 3904 +containerchecksum aea6305dc0d9b31367638078a7958933468e761ef4cf47a1c44d9fd5ab2e25f7af22273c4631946a90edc9b51947c2e56b3d4b74c8c59f0a79250c2edf5bc137 +doccontainersize 35040 +doccontainerchecksum 97f3fa22fe490d21bc9e5ce5ea0b23ff25ab9afd9c5dbf6e8d78b24fd306ddc132c5ba7ca7ea7e3d7aaeb48993c7968b0c02ae0b765416a939d84b53171f4179 +docfiles size=17 texmf-dist/doc/man/man1/findhyph.1 texmf-dist/doc/man/man1/findhyph.man1.pdf texmf-dist/doc/support/findhyph/Makefile.doc - texmf-dist/doc/support/findhyph/README + texmf-dist/doc/support/findhyph/README details="Readme" texmf-dist/doc/support/findhyph/findhyph.bat texmf-dist/doc/support/findhyph/findhyph.txt +runfiles size=3 + texmf-dist/scripts/findhyph/findhyph catalogue-ctan /support/findhyph -catalogue-date 2013-06-21 02:36:55 +0200 -catalogue-license gpl -catalogue-version 3.3 +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl2 +catalogue-topics hyph-gen +catalogue-version 3.4 + +name findhyph.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of findhyph +containersize 340 +containerchecksum 725e6519dbfdcbfd5c8f12e711b27a697fbb9d5b1febce7d0b24f3cb2960c382c9e19abbd273fb434a4d2c5ce492427851551fa9e968c4af598e6e9735b85622 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/findhyph + +name findhyph.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of findhyph +containersize 340 +containerchecksum 8e60b89824a270412578a8fed23e3a50e5cc0ed13038eccc8cedac14e8834036ccf127e84cb048f9156166a7c28619bbca005d12edcc3d63068fb1f73c798ca9 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/findhyph + +name findhyph.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of findhyph +containersize 340 +containerchecksum b155d3de5b6332b97321b71782cd5d63a490ea07f6bc10c95ff638d8cf8c012f4aa0c33a1e96273b4abecbb084e6670960231cbf7370931ad1b566e34d8ba5f4 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/findhyph + +name findhyph.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of findhyph +containersize 340 +containerchecksum a396ef376bf92f19fce3c762412d996e1e700db96efafb7bd08f1024fce0504ea83c29aba240aa5989400e631a55e412a678853b491056193ad322dccaa549dd +binfiles arch=armhf-linux size=1 + bin/armhf-linux/findhyph + +name findhyph.i386-cygwin +category Package +revision 14758 +shortdesc i386-cygwin files of findhyph +containersize 336 +containerchecksum 84580e2190b70519e13296832ee77107d21fc0590c5b1de05bb0269c72383de942e495204e9165ac7d08edea94ff7fe9f2a33db9817ec7ab08fda441c721810d +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/findhyph + +name findhyph.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of findhyph +containersize 340 +containerchecksum c976ff3ea01001629c8d305abae17a00a034cfd1c94952f394a62bd5ebab19dd5c1a8b1f37f1d123c69ec1e5c9370d8f90c5f7cb947faef6cd93488758dc769b +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/findhyph name findhyph.i386-linux category Package revision 14758 shortdesc i386-linux files of findhyph +containersize 340 +containerchecksum 6b5545411370f751ae043a3ae670425c97f625a4902f43e5ca6d88eaafc48c01e70f3c7a27879a0d062f8513a6865f73bdc730d8084befeaa3404e544b6c13d9 binfiles arch=i386-linux size=1 bin/i386-linux/findhyph +name findhyph.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of findhyph +containersize 340 +containerchecksum 8566fe7a3fae1a2e3982a9bf13c7c3836071021cf03105ffd9d9a01bf443663b798dd9b2392d63107f0c9d680bae1a551a9f3e30914216c51d9deded574dbeaf +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/findhyph + +name findhyph.i386-solaris +category Package +revision 14758 +shortdesc i386-solaris files of findhyph +containersize 340 +containerchecksum 3d199939c0063f6542836b01cac47db9b5b08431ff55f4e8e4867728103dffc9277d03a3b8cc34c1260480db503a758e523706be300c4b69e7ba387084e8f817 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/findhyph + +name findhyph.win32 +category Package +revision 15469 +shortdesc win32 files of findhyph +containersize 680 +containerchecksum b0af01afa3cb5fb84b3a7577bd8b83b6c26c6c702cd343087db8c25c3a8a63ec57782d4073131b8da6b37562e43a1ae4459db0173dd31acdc634a4c8953cca78 +binfiles arch=win32 size=1 + bin/win32/findhyph.exe + +name findhyph.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of findhyph +containersize 340 +containerchecksum 14277e457248779836ab9aba3d22c3763cc2d2bdc75247084f8423a514f7d0254f0984c687b8506c52243aff2c0f6492b3ffe4cf52a73574a92aab16b0451b36 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/findhyph + +name findhyph.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of findhyph +containersize 340 +containerchecksum 6c1933cdb2d7474d41589644aaa5ff2596ace3111b51060de371e2fc3409708d89da5b1fbadad02a9a83c7cecd6c5bd71c36db69e05734f7b6ae4fafbf5a6762 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/findhyph + +name findhyph.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of findhyph +containersize 348 +containerchecksum 935b53fe3c11e701c72e0ae7cbcd6ac5e3a818567292012c5ce3524989fcc7cf1ca29c62063d26bc27a15a422ab98792471dba02f6afdac14d66710f03825e51 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/findhyph + +name findhyph.x86_64-linux +category Package +revision 14758 +shortdesc x86_64-linux files of findhyph +containersize 336 +containerchecksum 0a406d29690576c2b407f0be03eb7c82c0ed56f08c764c0ceced8983795f57572fd2d978bb582ee624ab81dbe4a46709323c7a9a2190f3845e521d5901564ddb +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/findhyph + +name findhyph.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of findhyph +containersize 344 +containerchecksum 0ad1f752b25ca6faf23776edcf53b823702fab66543e2f1383266499da9f0b62c0c70ee812e0515adb45798b7ee5fa3295a760b77de9f5c9c80849ca3319a121 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/findhyph + +name findhyph.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of findhyph +containersize 340 +containerchecksum 9f30c595bb292eb179bca77308b42e28a6ec02f5e3e8ba175ea2843c2062279423e8018e72d53ae66ad4b5ad3345ec55f483f584a5d35d1373fd78b125f3831a +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/findhyph + name fink category Package revision 24329 -shortdesc The LaTeX2e File Name Keeper. +shortdesc The LaTeX2e File Name Keeper relocated 1 longdesc This package "looks over your shoulder" and keeps track of longdesc files \input'ed (the LaTeX way) or \include'ed in your @@ -64173,53 +106473,69 @@ longdesc FiNK also comes with support for AUC-TeX. As of version 2.2.1, longdesc FiNK has been deprecated and is not maintained anymore. People longdesc interested in FiNK's functionality are invited to use a package longdesc named currfile instead. -runfiles size=2 - RELOC/tex/latex/fink/fink.sty +containersize 2280 +containerchecksum 837a470970c8376e1d699b28954cf2ac6ed849c2f96a4c17ced56ebf142297c36d3f856f9cbf4db920ae33f491738f7891433c5c6627565a48fb5391b663634f +doccontainersize 83412 +doccontainerchecksum 7b1d9d1c62766082030d7632bd91c65328d1bf3e8bb6abe4ed64ec5188d9f38d3b2a99695f32c2bf04e2fcd634819926ba923eeea915186eb9fe96bcb43954ca docfiles size=30 RELOC/doc/latex/fink/NEWS - RELOC/doc/latex/fink/README + RELOC/doc/latex/fink/README details="Readme" RELOC/doc/latex/fink/THANKS RELOC/doc/latex/fink/fink.el RELOC/doc/latex/fink/fink.pdf RELOC/doc/latex/fink/header.inc +srccontainersize 5796 +srccontainerchecksum e37a35a9c292ad3f213c560505ca6c446eda397771c18bb1fa2b64df70cd667b58ca03b6f821aa0a9d6bedb3910b66c411349f70dfe3eb5ca2f1fbdb9f925a35 srcfiles size=5 RELOC/source/latex/fink/fink.dtx RELOC/source/latex/fink/fink.ins +runfiles size=2 + RELOC/tex/latex/fink/fink.sty +catalogue-also currfile catalogue-ctan /macros/latex/contrib/fink -catalogue-date 2012-05-21 00:09:46 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics doc-tool catalogue-version 2.2.1 name finstrut category Package revision 21719 -shortdesc Adjust behaviour of the ends of footnotes. +shortdesc Adjust behaviour of the ends of footnotes relocated 1 longdesc The LaTeX internal command \@finalstrut is used automatically longdesc used at the end of footnote texts to insert a strut to avoid longdesc mis-spacing of multiple footnotes. Unfortunately the command longdesc can cause a blank line at the end of a footnote. The package longdesc provides a solution to this problem. -runfiles size=2 - RELOC/tex/latex/finstrut/finstrut.sty +containersize 3352 +containerchecksum 8b360a3426056b61e58e577cc68ba9e2f55b63a3b4a0a2eb76ebee53e9ff327da9235e9da5cbb85e3cf369cd48354c00a79cd46110ba4adb4b64192b7ff7b603 +doccontainersize 174356 +doccontainerchecksum 8cc27d82f7125b5ee82585f97385924737406e45d9739ec9cd57b76736e902a588c7258628bdcc4841e3e23f359a4d8ad22a31ed6f821f1d1c59798f4e8f3d56 docfiles size=54 - RELOC/doc/latex/finstrut/README + RELOC/doc/latex/finstrut/README details="Readme" RELOC/doc/latex/finstrut/SRCFILEs.txt - RELOC/doc/latex/finstrut/finstrut.pdf + RELOC/doc/latex/finstrut/finstrut.pdf details="Package documentation" RELOC/doc/latex/finstrut/fstrutst.pdf +srccontainersize 2704 +srccontainerchecksum c06f1b10815444ed51b13d83258e1f3d246da65a581a0946e7a05a9c8432e78ae395efe18ff6c0a84db8fdf6016ab8dbcc6f3242e72936f46e522d1074ff1b87 srcfiles size=3 RELOC/source/latex/finstrut/finstrut.tex RELOC/source/latex/finstrut/fstrutst.tex RELOC/source/latex/finstrut/srcfiles.tex +runfiles size=2 + RELOC/tex/latex/finstrut/finstrut.sty +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html catalogue-ctan /macros/latex/contrib/finstrut -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-05-06 08:18:57 +0200 catalogue-license lppl1.3 +catalogue-topics macro-supp catalogue-version 0.5 name fira category Package -revision 37565 -shortdesc Fira fonts with LaTeX support. +revision 50944 +shortdesc Fira fonts with LaTeX support relocated 1 longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX longdesc support for the Fira Sans family of fonts designed by Erik @@ -64227,44 +106543,93 @@ longdesc Spiekermann and Ralph du Carrois of Carrois Type Design. Fira longdesc Sans is available in eleven weights with corresponding italics: longdesc light, regular, medium, bold, ... execute addMap fira.map -runfiles size=8130 - RELOC/fonts/enc/dvips/fira/fir_4k5dce.enc - RELOC/fonts/enc/dvips/fira/fir_4vuazg.enc - RELOC/fonts/enc/dvips/fira/fir_53mytn.enc - RELOC/fonts/enc/dvips/fira/fir_5bzluk.enc +containersize 14917420 +containerchecksum c04be671b302cd8ffc8b204d87b8487c22a36e6c0c71a15ac1c385218ed89a7209aa9780702da218b8753adce213a21b9d80f78d69878561352ffb76993dab14 +doccontainersize 1284744 +doccontainerchecksum c3645e800edafef5809a18a7ba0b6a3fb5828ef114356b12e28e574ca2dba707b5ab6b785d0723901b8967d1d919ec52b725d1595646a6a533d68b760f1c8c36 +docfiles size=325 + RELOC/doc/fonts/fira/Fira_4_3_Change_Log.pdf + RELOC/doc/fonts/fira/LICENSE + RELOC/doc/fonts/fira/README details="Readme" + RELOC/doc/fonts/fira/TechnicalReportFiraSans.pdf + RELOC/doc/fonts/fira/TechnicalReportFiraSansItalic.pdf + RELOC/doc/fonts/fira/fira-samples.pdf details="Font samples" + RELOC/doc/fonts/fira/fira-samples.tex +runfiles size=13844 + RELOC/fonts/enc/dvips/fira/fir_2gmv7z.enc + RELOC/fonts/enc/dvips/fira/fir_35cirm.enc + RELOC/fonts/enc/dvips/fira/fir_3fzcxr.enc + RELOC/fonts/enc/dvips/fira/fir_43rfqv.enc + RELOC/fonts/enc/dvips/fira/fir_4rre4w.enc + RELOC/fonts/enc/dvips/fira/fir_54eqvx.enc + RELOC/fonts/enc/dvips/fira/fir_5edmf3.enc + RELOC/fonts/enc/dvips/fira/fir_6a7jni.enc RELOC/fonts/enc/dvips/fira/fir_6j4iko.enc RELOC/fonts/enc/dvips/fira/fir_6jvuba.enc - RELOC/fonts/enc/dvips/fira/fir_6lpfuz.enc + RELOC/fonts/enc/dvips/fira/fir_72s6nc.enc + RELOC/fonts/enc/dvips/fira/fir_752xwd.enc RELOC/fonts/enc/dvips/fira/fir_75hvjh.enc - RELOC/fonts/enc/dvips/fira/fir_765q6w.enc - RELOC/fonts/enc/dvips/fira/fir_ah2d2f.enc - RELOC/fonts/enc/dvips/fira/fir_cvh4ps.enc - RELOC/fonts/enc/dvips/fira/fir_ekigrt.enc - RELOC/fonts/enc/dvips/fira/fir_f2p3ju.enc - RELOC/fonts/enc/dvips/fira/fir_ggv6fu.enc - RELOC/fonts/enc/dvips/fira/fir_jbldwq.enc - RELOC/fonts/enc/dvips/fira/fir_k64qxk.enc - RELOC/fonts/enc/dvips/fira/fir_kinqlf.enc + RELOC/fonts/enc/dvips/fira/fir_7a4ina.enc + RELOC/fonts/enc/dvips/fira/fir_7gskcl.enc + RELOC/fonts/enc/dvips/fira/fir_a7qib3.enc + RELOC/fonts/enc/dvips/fira/fir_ad2n3q.enc + RELOC/fonts/enc/dvips/fira/fir_ato6be.enc + RELOC/fonts/enc/dvips/fira/fir_ctfgmy.enc + RELOC/fonts/enc/dvips/fira/fir_cv256x.enc + RELOC/fonts/enc/dvips/fira/fir_d4q673.enc + RELOC/fonts/enc/dvips/fira/fir_d67aat.enc + RELOC/fonts/enc/dvips/fira/fir_e62f4c.enc + RELOC/fonts/enc/dvips/fira/fir_edg2pu.enc + RELOC/fonts/enc/dvips/fira/fir_embvrf.enc + RELOC/fonts/enc/dvips/fira/fir_fdi65k.enc + RELOC/fonts/enc/dvips/fira/fir_fkitua.enc + RELOC/fonts/enc/dvips/fira/fir_fp7bit.enc + RELOC/fonts/enc/dvips/fira/fir_fugcbc.enc + RELOC/fonts/enc/dvips/fira/fir_ggqhxd.enc + RELOC/fonts/enc/dvips/fira/fir_i3ioen.enc + RELOC/fonts/enc/dvips/fira/fir_iea3z7.enc + RELOC/fonts/enc/dvips/fira/fir_ipx2pi.enc + RELOC/fonts/enc/dvips/fira/fir_j4s63d.enc + RELOC/fonts/enc/dvips/fira/fir_jby3qs.enc + RELOC/fonts/enc/dvips/fira/fir_koxogo.enc + RELOC/fonts/enc/dvips/fira/fir_kzwdxx.enc + RELOC/fonts/enc/dvips/fira/fir_l5f4yg.enc RELOC/fonts/enc/dvips/fira/fir_ljq7ir.enc - RELOC/fonts/enc/dvips/fira/fir_mmg3bv.enc - RELOC/fonts/enc/dvips/fira/fir_mpt7xh.enc - RELOC/fonts/enc/dvips/fira/fir_mxpi7y.enc - RELOC/fonts/enc/dvips/fira/fir_ou66re.enc + RELOC/fonts/enc/dvips/fira/fir_lortfe.enc + RELOC/fonts/enc/dvips/fira/fir_muxyzp.enc + RELOC/fonts/enc/dvips/fira/fir_mxqymx.enc + RELOC/fonts/enc/dvips/fira/fir_nfnyaf.enc + RELOC/fonts/enc/dvips/fira/fir_nlwzva.enc + RELOC/fonts/enc/dvips/fira/fir_otlm2f.enc + RELOC/fonts/enc/dvips/fira/fir_pkmsf5.enc + RELOC/fonts/enc/dvips/fira/fir_poc6m7.enc + RELOC/fonts/enc/dvips/fira/fir_pqsnfd.enc + RELOC/fonts/enc/dvips/fira/fir_q72bhc.enc RELOC/fonts/enc/dvips/fira/fir_qeo2k2.enc - RELOC/fonts/enc/dvips/fira/fir_qudyll.enc - RELOC/fonts/enc/dvips/fira/fir_sekxdc.enc - RELOC/fonts/enc/dvips/fira/fir_tg6zf6.enc - RELOC/fonts/enc/dvips/fira/fir_ufojbl.enc - RELOC/fonts/enc/dvips/fira/fir_wfjhwq.enc - RELOC/fonts/enc/dvips/fira/fir_wx5a6m.enc - RELOC/fonts/enc/dvips/fira/fir_xbqiro.enc - RELOC/fonts/enc/dvips/fira/fir_xeq6li.enc - RELOC/fonts/enc/dvips/fira/fir_xrafnf.enc + RELOC/fonts/enc/dvips/fira/fir_qkh2zq.enc + RELOC/fonts/enc/dvips/fira/fir_ql3q52.enc + RELOC/fonts/enc/dvips/fira/fir_rqul6i.enc + RELOC/fonts/enc/dvips/fira/fir_rvygbl.enc + RELOC/fonts/enc/dvips/fira/fir_ssvaun.enc + RELOC/fonts/enc/dvips/fira/fir_szdlmc.enc + RELOC/fonts/enc/dvips/fira/fir_t4j4xa.enc + RELOC/fonts/enc/dvips/fira/fir_t65b2t.enc + RELOC/fonts/enc/dvips/fira/fir_taew3x.enc + RELOC/fonts/enc/dvips/fira/fir_them3d.enc + RELOC/fonts/enc/dvips/fira/fir_tq4ulr.enc + RELOC/fonts/enc/dvips/fira/fir_turorf.enc + RELOC/fonts/enc/dvips/fira/fir_txurlm.enc + RELOC/fonts/enc/dvips/fira/fir_vib5gu.enc + RELOC/fonts/enc/dvips/fira/fir_wj45bi.enc + RELOC/fonts/enc/dvips/fira/fir_wm5viw.enc + RELOC/fonts/enc/dvips/fira/fir_wpkht5.enc + RELOC/fonts/enc/dvips/fira/fir_xnxi6j.enc RELOC/fonts/enc/dvips/fira/fir_xsutkk.enc - RELOC/fonts/enc/dvips/fira/fir_yhyk3t.enc - RELOC/fonts/enc/dvips/fira/fir_yow4fl.enc - RELOC/fonts/enc/dvips/fira/fir_zei36n.enc + RELOC/fonts/enc/dvips/fira/fir_yz65wh.enc + RELOC/fonts/enc/dvips/fira/fir_zdeim7.enc + RELOC/fonts/enc/dvips/fira/fir_znzycj.enc RELOC/fonts/enc/dvips/fira/fir_zrx7he.enc + RELOC/fonts/map/dvips/fira/FiraMono.map RELOC/fonts/map/dvips/fira/fira.map RELOC/fonts/opentype/public/fira/FiraMono-Bold.otf RELOC/fonts/opentype/public/fira/FiraMono-Medium.otf @@ -64279,23 +106644,27 @@ runfiles size=8130 RELOC/fonts/opentype/public/fira/FiraSans-ExtraLightItalic.otf RELOC/fonts/opentype/public/fira/FiraSans-Heavy.otf RELOC/fonts/opentype/public/fira/FiraSans-HeavyItalic.otf + RELOC/fonts/opentype/public/fira/FiraSans-Italic.otf RELOC/fonts/opentype/public/fira/FiraSans-Light.otf RELOC/fonts/opentype/public/fira/FiraSans-LightItalic.otf RELOC/fonts/opentype/public/fira/FiraSans-Medium.otf RELOC/fonts/opentype/public/fira/FiraSans-MediumItalic.otf RELOC/fonts/opentype/public/fira/FiraSans-Regular.otf - RELOC/fonts/opentype/public/fira/FiraSans-RegularItalic.otf RELOC/fonts/opentype/public/fira/FiraSans-SemiBold.otf RELOC/fonts/opentype/public/fira/FiraSans-SemiBoldItalic.otf RELOC/fonts/opentype/public/fira/FiraSans-Thin.otf RELOC/fonts/opentype/public/fira/FiraSans-ThinItalic.otf RELOC/fonts/opentype/public/fira/FiraSans-UltraLight.otf RELOC/fonts/opentype/public/fira/FiraSans-UltraLightItalic.otf + RELOC/fonts/tfm/public/fira/FiraMono-Bold-sup-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraMono-Bold-sup-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraMono-Bold-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraMono-Bold-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraMono-Bold-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraMono-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraMono-Bold-tlf-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraMono-Bold-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraMono-Bold-tlf-ot1.tfm @@ -64303,6 +106672,8 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraMono-Bold-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraMono-Bold-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraMono-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraMono-Bold-tosf-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraMono-Bold-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraMono-Bold-tosf-ot1.tfm @@ -64310,11 +106681,15 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraMono-Bold-tosf-t1.tfm RELOC/fonts/tfm/public/fira/FiraMono-Bold-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraMono-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-sup-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraMono-Medium-sup-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraMono-Medium-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraMono-Medium-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraMono-Medium-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraMono-Medium-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraMono-Medium-tlf-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraMono-Medium-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraMono-Medium-tlf-ot1.tfm @@ -64322,6 +106697,8 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraMono-Medium-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraMono-Medium-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraMono-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraMono-Medium-tosf-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraMono-Medium-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraMono-Medium-tosf-ot1.tfm @@ -64329,11 +106706,15 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraMono-Medium-tosf-t1.tfm RELOC/fonts/tfm/public/fira/FiraMono-Medium-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraMono-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-sup-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraMono-Regular-sup-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraMono-Regular-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraMono-Regular-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraMono-Regular-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraMono-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraMono-Regular-tlf-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraMono-Regular-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraMono-Regular-tlf-ot1.tfm @@ -64341,6 +106722,8 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraMono-Regular-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraMono-Regular-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraMono-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraMono-Regular-tosf-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraMono-Regular-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraMono-Regular-tosf-ot1.tfm @@ -64348,8 +106731,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraMono-Regular-tosf-t1.tfm RELOC/fonts/tfm/public/fira/FiraMono-Regular-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraMono-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-sc-ot1--base.tfm @@ -64360,8 +106745,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-sc-ot1--base.tfm @@ -64372,12 +106759,15 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-sc-ot1--base.tfm @@ -64388,8 +106778,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-sc-ot1--base.tfm @@ -64400,8 +106792,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-sc-ot1--base.tfm @@ -64412,8 +106806,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-sc-ot1--base.tfm @@ -64424,12 +106820,15 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-sc-ot1--base.tfm @@ -64440,8 +106839,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-sc-ot1--base.tfm @@ -64452,8 +106853,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-sc-ot1--base.tfm @@ -64464,8 +106867,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-sc-ot1--base.tfm @@ -64476,12 +106881,15 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-sc-ot1--base.tfm @@ -64492,8 +106900,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-sc-ot1--base.tfm @@ -64504,8 +106914,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-sc-ot1--base.tfm @@ -64516,8 +106928,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-sc-ot1--base.tfm @@ -64528,12 +106942,15 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-sc-ot1--base.tfm @@ -64544,8 +106961,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-sc-ot1--base.tfm @@ -64556,8 +106975,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-sc-ot1--base.tfm @@ -64568,8 +106989,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-sc-ot1--base.tfm @@ -64580,12 +107003,15 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-sc-ot1--base.tfm @@ -64596,8 +107022,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-sc-ot1--base.tfm @@ -64608,8 +107036,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-sc-ot1--base.tfm @@ -64620,8 +107050,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-sc-ot1--base.tfm @@ -64632,12 +107064,15 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-sc-ot1--base.tfm @@ -64648,8 +107083,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-sc-ot1--base.tfm @@ -64660,8 +107097,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-sc-ot1--base.tfm @@ -64672,8 +107111,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-sc-ot1--base.tfm @@ -64684,12 +107125,15 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-sc-ot1--base.tfm @@ -64700,8 +107144,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-sc-ot1--base.tfm @@ -64712,8 +107158,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-sc-ot1--base.tfm @@ -64724,8 +107172,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-sc-ot1--base.tfm @@ -64736,12 +107186,15 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-sc-ot1--base.tfm @@ -64752,8 +107205,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-sc-ot1--base.tfm @@ -64764,8 +107219,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-sc-ot1--base.tfm @@ -64776,8 +107233,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-sc-ot1--base.tfm @@ -64788,12 +107247,15 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-sc-ot1--base.tfm @@ -64804,8 +107266,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-sc-ot1--base.tfm @@ -64816,8 +107280,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-sc-ot1--base.tfm @@ -64828,8 +107294,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-sc-ot1--base.tfm @@ -64840,12 +107308,15 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-sc-ot1--base.tfm @@ -64856,8 +107327,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-sc-ot1--base.tfm @@ -64868,8 +107341,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-sc-ot1--base.tfm @@ -64880,8 +107355,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-sc-ot1--base.tfm @@ -64892,12 +107369,15 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-sc-ot1--base.tfm @@ -64908,8 +107388,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-sc-ot1--base.tfm @@ -64920,8 +107402,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-sc-ot1--base.tfm @@ -64932,8 +107416,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-sc-ot1--base.tfm @@ -64944,12 +107430,15 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-sc-ot1--base.tfm @@ -64960,8 +107449,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-sc-ot1--base.tfm @@ -64972,8 +107463,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-sc-ot1--base.tfm @@ -64984,8 +107477,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-sc-ot1--base.tfm @@ -64996,12 +107491,15 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-sc-ot1--base.tfm @@ -65012,8 +107510,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-sc-ot1--base.tfm @@ -65024,8 +107524,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-sc-ot1--base.tfm @@ -65036,8 +107538,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-sc-ot1--base.tfm @@ -65048,12 +107552,15 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-sc-ot1--base.tfm @@ -65064,8 +107571,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-sc-ot1--base.tfm @@ -65076,8 +107585,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-sc-ot1--base.tfm @@ -65088,8 +107599,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-sc-ot1--base.tfm @@ -65100,12 +107613,15 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-sc-ot1--base.tfm @@ -65116,8 +107632,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-sc-ot1--base.tfm @@ -65128,8 +107646,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-sc-ot1--base.tfm @@ -65140,8 +107660,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-sc-ot1--base.tfm @@ -65152,12 +107674,15 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-sc-ot1--base.tfm @@ -65168,8 +107693,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-sc-ot1--base.tfm @@ -65180,8 +107707,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-sc-ot1--base.tfm @@ -65192,8 +107721,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-sc-ot1--base.tfm @@ -65204,12 +107735,15 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-sc-ot1--base.tfm @@ -65220,8 +107754,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-sc-ot1--base.tfm @@ -65232,8 +107768,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-sc-ot1--base.tfm @@ -65244,8 +107782,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-sc-ot1--base.tfm @@ -65256,12 +107796,15 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-sc-ot1--base.tfm @@ -65272,8 +107815,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-sc-ot1--base.tfm @@ -65284,8 +107829,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-sc-ot1--base.tfm @@ -65296,8 +107843,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-sc-ot1--base.tfm @@ -65308,12 +107857,15 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-sc-ot1--base.tfm @@ -65324,8 +107876,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-sc-ot1--base.tfm @@ -65336,8 +107890,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-sc-ot1--base.tfm @@ -65348,8 +107904,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-sc-ot1--base.tfm @@ -65360,12 +107918,15 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-sc-ot1--base.tfm @@ -65376,8 +107937,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-sc-ot1--base.tfm @@ -65388,8 +107951,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-sc-ot1--base.tfm @@ -65400,8 +107965,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-sc-ot1--base.tfm @@ -65412,12 +107979,15 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-sc-ot1--base.tfm @@ -65428,8 +107998,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-sc-ot1--base.tfm @@ -65440,8 +108012,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-sc-ot1--base.tfm @@ -65452,8 +108026,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-sc-ot1--base.tfm @@ -65464,12 +108040,15 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-sup-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-sup-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-sup-ot1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-sup-t1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-sc-ot1--base.tfm @@ -65480,8 +108059,10 @@ runfiles size=8130 RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-t1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-sc-lgr.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-sc-ot1--base.tfm @@ -65505,39 +108086,48 @@ runfiles size=8130 RELOC/fonts/type1/public/fira/FiraSans-ExtraLightItalic.pfb RELOC/fonts/type1/public/fira/FiraSans-Heavy.pfb RELOC/fonts/type1/public/fira/FiraSans-HeavyItalic.pfb + RELOC/fonts/type1/public/fira/FiraSans-Italic.pfb RELOC/fonts/type1/public/fira/FiraSans-Light.pfb RELOC/fonts/type1/public/fira/FiraSans-LightItalic.pfb RELOC/fonts/type1/public/fira/FiraSans-Medium.pfb RELOC/fonts/type1/public/fira/FiraSans-MediumItalic.pfb RELOC/fonts/type1/public/fira/FiraSans-Regular.pfb - RELOC/fonts/type1/public/fira/FiraSans-RegularItalic.pfb RELOC/fonts/type1/public/fira/FiraSans-SemiBold.pfb RELOC/fonts/type1/public/fira/FiraSans-SemiBoldItalic.pfb RELOC/fonts/type1/public/fira/FiraSans-Thin.pfb RELOC/fonts/type1/public/fira/FiraSans-ThinItalic.pfb RELOC/fonts/type1/public/fira/FiraSans-UltraLight.pfb RELOC/fonts/type1/public/fira/FiraSans-UltraLightItalic.pfb + RELOC/fonts/vf/public/fira/FiraMono-Bold-sup-lgr.vf RELOC/fonts/vf/public/fira/FiraMono-Bold-sup-ly1.vf RELOC/fonts/vf/public/fira/FiraMono-Bold-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraMono-Bold-tlf-lgr.vf RELOC/fonts/vf/public/fira/FiraMono-Bold-tlf-ly1.vf RELOC/fonts/vf/public/fira/FiraMono-Bold-tlf-t1.vf RELOC/fonts/vf/public/fira/FiraMono-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraMono-Bold-tosf-lgr.vf RELOC/fonts/vf/public/fira/FiraMono-Bold-tosf-ly1.vf RELOC/fonts/vf/public/fira/FiraMono-Bold-tosf-t1.vf RELOC/fonts/vf/public/fira/FiraMono-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraMono-Medium-sup-lgr.vf RELOC/fonts/vf/public/fira/FiraMono-Medium-sup-ly1.vf RELOC/fonts/vf/public/fira/FiraMono-Medium-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraMono-Medium-tlf-lgr.vf RELOC/fonts/vf/public/fira/FiraMono-Medium-tlf-ly1.vf RELOC/fonts/vf/public/fira/FiraMono-Medium-tlf-t1.vf RELOC/fonts/vf/public/fira/FiraMono-Medium-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraMono-Medium-tosf-lgr.vf RELOC/fonts/vf/public/fira/FiraMono-Medium-tosf-ly1.vf RELOC/fonts/vf/public/fira/FiraMono-Medium-tosf-t1.vf RELOC/fonts/vf/public/fira/FiraMono-Medium-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraMono-Regular-sup-lgr.vf RELOC/fonts/vf/public/fira/FiraMono-Regular-sup-ly1.vf RELOC/fonts/vf/public/fira/FiraMono-Regular-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraMono-Regular-tlf-lgr.vf RELOC/fonts/vf/public/fira/FiraMono-Regular-tlf-ly1.vf RELOC/fonts/vf/public/fira/FiraMono-Regular-tlf-t1.vf RELOC/fonts/vf/public/fira/FiraMono-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraMono-Regular-tosf-lgr.vf RELOC/fonts/vf/public/fira/FiraMono-Regular-tosf-ly1.vf RELOC/fonts/vf/public/fira/FiraMono-Regular-tosf-t1.vf RELOC/fonts/vf/public/fira/FiraMono-Regular-tosf-ts1.vf @@ -66005,6 +108595,14 @@ runfiles size=8130 RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-tosf-ts1.vf RELOC/tex/latex/fira/FiraMono.sty RELOC/tex/latex/fira/FiraSans.sty + RELOC/tex/latex/fira/LGRFiraMono-Sup.fd + RELOC/tex/latex/fira/LGRFiraMono-TLF.fd + RELOC/tex/latex/fira/LGRFiraMono-TOsF.fd + RELOC/tex/latex/fira/LGRFiraSans-LF.fd + RELOC/tex/latex/fira/LGRFiraSans-OsF.fd + RELOC/tex/latex/fira/LGRFiraSans-Sup.fd + RELOC/tex/latex/fira/LGRFiraSans-TLF.fd + RELOC/tex/latex/fira/LGRFiraSans-TOsF.fd RELOC/tex/latex/fira/LY1FiraMono-Sup.fd RELOC/tex/latex/fira/LY1FiraMono-TLF.fd RELOC/tex/latex/fira/LY1FiraMono-TOsF.fd @@ -66035,31 +108633,87 @@ runfiles size=8130 RELOC/tex/latex/fira/TS1FiraSans-OsF.fd RELOC/tex/latex/fira/TS1FiraSans-TLF.fd RELOC/tex/latex/fira/TS1FiraSans-TOsF.fd -docfiles size=54 - RELOC/doc/fonts/fira/Fira_4_1_Version_Report.pdf - RELOC/doc/fonts/fira/Fira_Sans_font_specimen.png - RELOC/doc/fonts/fira/LICENSE - RELOC/doc/fonts/fira/README - RELOC/doc/fonts/fira/fira-samples.pdf - RELOC/doc/fonts/fira/fira-samples.tex +catalogue-contact-repository https://github.com/buildingfirefoxos/Building-Blocks/tree/gh-pages/fonts/FiraSans catalogue-ctan /fonts/fira -catalogue-date 2015-06-16 05:44:56 +0200 +catalogue-date 2019-04-23 14:57:56 +0200 +catalogue-license ofllppl +catalogue-topics font font-sans font-mono font-otf font-type1 font-proportional font-t1enc +catalogue-version 4.3 + +name firamath +category Package +revision 48995 +shortdesc Fira sans serif font with Unicode math support +relocated 1 +longdesc Fira Math is a sans-serif font with Unicode math support. The +longdesc design of this font is based on Fira Sans and FiraGO. Fira Math +longdesc is distributed in OpenType format and can be used with the +longdesc unicode-math package under XeLaTeX or LuaLaTeX. More support is +longdesc offered by the firamath-otf package. +containersize 105920 +containerchecksum 2cf9a013993c24f4faaba3794da07ee5eaacf2f6e3cb3f10e3a889c89e38f7de08027ecbcafc8e86f8f9cf215d04cbcd4491eebd8e8a103112071862cab9bb36 +doccontainersize 504808 +doccontainerchecksum 979c5030553c36761b881648e63502427b3c2ae0ec93d76dc2f76528812dc20d15539ab9cd093e674e009edccf2e6be715be94ecd159a5720e58df695cab3b12 +docfiles size=140 + RELOC/doc/fonts/firamath/README.md details="Readme" + RELOC/doc/fonts/firamath/firamath-demo.pdf details="Example of use" + RELOC/doc/fonts/firamath/firamath-demo.tex + RELOC/doc/fonts/firamath/firamath-non-unicode.txt + RELOC/doc/fonts/firamath/firamath-specimen.pdf details="Package documentation" + RELOC/doc/fonts/firamath/firamath-specimen.tex +runfiles size=46 + RELOC/fonts/opentype/public/firamath/FiraMath-Regular.otf +catalogue-also fira firamath-otf gfsneohellenicmath +catalogue-contact-bugs https://github.com/firamath/firamath/issues +catalogue-contact-home https://firamath.github.io/ +catalogue-contact-repository https://github.com/firamath/firamath +catalogue-ctan /fonts/firamath +catalogue-date 2018-10-28 09:23:50 +0100 catalogue-license ofl -catalogue-topics font font-sans font-otf font-type1 -catalogue-version 4.1 +catalogue-topics font font-otf font-sans font-maths +catalogue-version 0.3.1 + +name firamath-otf +category Package +revision 50732 +shortdesc Use OpenType math font Fira Math +relocated 1 +longdesc The package offers XeTeX/LuaTeX support for the Sans Serif +longdesc OpenType Fira Math Font. +containersize 1336 +containerchecksum dbbb13d184e2a407bcbc2681bc9c5ff0e83017141792e956013254dcc50815f5b913bb2e40d6c09421883db774e9ce5e5ed17f6602ee902f485069fbd570936e +doccontainersize 124236 +doccontainerchecksum 699e10d44b1e36505e872070c2799e1191e995ca6ae26058e7d069c96500a9c0914614750f6af076abd3a30b281409613a846c314a64bef047b3e313b0a4cc97 +docfiles size=42 + RELOC/doc/fonts/firamath-otf/Changes + RELOC/doc/fonts/firamath-otf/README.md details="Readme" + RELOC/doc/fonts/firamath-otf/firamath-otf-doc.pdf details="Package documentation" + RELOC/doc/fonts/firamath-otf/firamath-otf-doc.tex +runfiles size=1 + RELOC/tex/latex/firamath-otf/firamath-otf.sty +catalogue-also firamath +catalogue-ctan /fonts/firamath-otf +catalogue-date 2019-04-03 15:40:23 +0200 +catalogue-license lppl1.3 +catalogue-topics font-use font-otf font-sans font-maths +catalogue-version 0.02a name first-latex-doc category Package revision 15878 -shortdesc A document for absolute LaTeX beginners. +shortdesc A document for absolute LaTeX beginners relocated 1 longdesc The document leads a reader, who knows nothing about LaTeX, longdesc through the production of a two page document. The user who has longdesc completed that first document, and wants to carry on, will find longdesc recommendations for tutorials. +containersize 496 +containerchecksum 39641224689a1d45d59b5643e5037599d03df3ecbe95090d565778758d334bddf832e867a25c1688adbee1f99eea23b3ed21fd6729fb3d4e50f1503537c9a400 +doccontainersize 503812 +doccontainerchecksum 497080fdad8195bdc43bef476f9e678b49d83829f10a6653c9443d327cb0da8505623e941cd3038349b6307ee37a65ce1a3d3eb48e4c6262f9d636d10d96e17b docfiles size=157 - RELOC/doc/latex/first-latex-doc/README - RELOC/doc/latex/first-latex-doc/first-latex-doc.pdf + RELOC/doc/latex/first-latex-doc/README details="Readme" + RELOC/doc/latex/first-latex-doc/first-latex-doc.pdf details="The document itself" RELOC/doc/latex/first-latex-doc/first-latex-doc.tex RELOC/doc/latex/first-latex-doc/latex-first.png RELOC/doc/latex/first-latex-doc/latex-first.tex @@ -66072,47 +108726,109 @@ docfiles size=157 RELOC/doc/latex/first-latex-doc/latex-second-d.tex RELOC/doc/latex/first-latex-doc/latex-second-e.tex catalogue-ctan /info/first-latex-doc -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics tut-latex name fitbox category Package -revision 38139 +revision 50088 shortdesc Fit graphics on a page relocated 1 longdesc The package allows a box (usually an \includegraphics box) to longdesc fit on the page. It scales the box to the maximal allowed size longdesc within the user-set limits. If there is not enough space on the longdesc page, the box is moved to the next one. -runfiles size=2 - RELOC/tex/latex/fitbox/fitbox.sty -docfiles size=104 - RELOC/doc/latex/fitbox/Makefile - RELOC/doc/latex/fitbox/README +containersize 2228 +containerchecksum 5244567062493fcb5300048be6786f1ac48c72c363220b894a2695e78646f461584e189f227d04f55e9127a66ab966dc04cbd762fd08277774fe1c0fcc7d3c96 +doccontainersize 496576 +doccontainerchecksum 71d77dd1879a2b9b20f9c4934af8bd696de567b5c0187e7a5bccc9e225fec5793bff6bc670ce0bbe1065cb67de73f518942ae48aa0a27e46c2aa47dcad6856e8 +docfiles size=144 + RELOC/doc/latex/fitbox/README details="Readme" RELOC/doc/latex/fitbox/fitbox.bib - RELOC/doc/latex/fitbox/fitbox.pdf + RELOC/doc/latex/fitbox/fitbox.pdf details="Package documentation" + RELOC/doc/latex/fitbox/napoleon.png + RELOC/doc/latex/fitbox/sample-subfigure.pdf + RELOC/doc/latex/fitbox/sample-subfigure.tex RELOC/doc/latex/fitbox/sample.pdf RELOC/doc/latex/fitbox/sample.tex RELOC/doc/latex/fitbox/vitruvian.jpg -srcfiles size=4 +srccontainersize 5812 +srccontainerchecksum 406ae04d838114e9cb7205c9e704b95e8ea8c4747827bb82fbc53891ca552042e5742f7e524361f2a797a77d8b7286dca3512ce7099ec8fa23101668d4bad5b2 +srcfiles size=7 + RELOC/source/latex/fitbox/Makefile RELOC/source/latex/fitbox/fitbox.dtx RELOC/source/latex/fitbox/fitbox.ins +runfiles size=2 + RELOC/tex/latex/fitbox/fitbox.sty +catalogue-contact-bugs https://github.com/borisveytsman/fitbox/issues +catalogue-contact-home https://github.com/borisveytsman/fitbox +catalogue-contact-repository https://github.com/borisveytsman/fitbox/ catalogue-ctan /macros/latex/contrib/fitbox -catalogue-date 2015-08-16 21:45:31 +0200 +catalogue-date 2019-02-21 19:23:28 +0100 catalogue-license lppl1.3 catalogue-topics boxing -catalogue-version 1.00 +catalogue-version 1.02 name fithesis category Package -revision 38318 +revision 47409 shortdesc Thesis class and template for Masaryk University (Brno, Czech Republic) relocated 1 longdesc A document class for the typesetting of theses at the Masaryk longdesc University (Brno, Czech Republic). The class has been designed longdesc for easy extensibility by style and locale files of other longdesc academic institutions. -runfiles size=1799 +containersize 617684 +containerchecksum f21aa6a1866f0a4d21eb8ea1e1463e421fcc72c75b72f4a79efabeb65da21b633ff913cbf99eebc71232a9e020d2bb7743f520863563f7eaf9763bbf6e9ad29c +doccontainersize 1994848 +doccontainerchecksum ba5c0e75760119d9423cef3d26eac3f4b5621c80e760ef026aeef68589b5a724b0c7837088652e4e369fc48850a3d78c0e86f1f2b1149118a17739b5b9c0809b +docfiles size=1003 + RELOC/doc/latex/fithesis/fithesis.pdf details="Package documentation" + RELOC/doc/latex/fithesis/guide/mu/econ.pdf + RELOC/doc/latex/fithesis/guide/mu/fi.pdf + RELOC/doc/latex/fithesis/guide/mu/fsps.pdf + RELOC/doc/latex/fithesis/guide/mu/fss.pdf + RELOC/doc/latex/fithesis/guide/mu/law.pdf + RELOC/doc/latex/fithesis/guide/mu/med.pdf + RELOC/doc/latex/fithesis/guide/mu/ped.pdf + RELOC/doc/latex/fithesis/guide/mu/phil.pdf + RELOC/doc/latex/fithesis/guide/mu/sci.pdf +srccontainersize 43572 +srccontainerchecksum 33f8a8bdec9faa2b8a57d874c869d52e6b612c9d24da4ac701355c1ac681644388d516ee7358a0805ffb04ba6842d7c1eea533c17b4b14fd3c87acfee180a17f +srcfiles size=89 + RELOC/source/latex/fithesis/LICENSE.tex + RELOC/source/latex/fithesis/fithesis.dtx + RELOC/source/latex/fithesis/fithesis.ins + RELOC/source/latex/fithesis/locale/czech.dtx + RELOC/source/latex/fithesis/locale/czech.ins + RELOC/source/latex/fithesis/locale/english.dtx + RELOC/source/latex/fithesis/locale/english.ins + RELOC/source/latex/fithesis/locale/slovak.dtx + RELOC/source/latex/fithesis/locale/slovak.ins + RELOC/source/latex/fithesis/style/base.dtx + RELOC/source/latex/fithesis/style/base.ins + RELOC/source/latex/fithesis/style/mu/base.dtx + RELOC/source/latex/fithesis/style/mu/base.ins + RELOC/source/latex/fithesis/style/mu/econ.dtx + RELOC/source/latex/fithesis/style/mu/econ.ins + RELOC/source/latex/fithesis/style/mu/fi.dtx + RELOC/source/latex/fithesis/style/mu/fi.ins + RELOC/source/latex/fithesis/style/mu/fsps.dtx + RELOC/source/latex/fithesis/style/mu/fsps.ins + RELOC/source/latex/fithesis/style/mu/fss.dtx + RELOC/source/latex/fithesis/style/mu/fss.ins + RELOC/source/latex/fithesis/style/mu/law.dtx + RELOC/source/latex/fithesis/style/mu/law.ins + RELOC/source/latex/fithesis/style/mu/med.dtx + RELOC/source/latex/fithesis/style/mu/med.ins + RELOC/source/latex/fithesis/style/mu/ped.dtx + RELOC/source/latex/fithesis/style/mu/ped.ins + RELOC/source/latex/fithesis/style/mu/phil.dtx + RELOC/source/latex/fithesis/style/mu/phil.ins + RELOC/source/latex/fithesis/style/mu/sci.dtx + RELOC/source/latex/fithesis/style/mu/sci.ins +runfiles size=596 RELOC/tex/latex/fithesis/fithesis.cls RELOC/tex/latex/fithesis/fithesis2.cls RELOC/tex/latex/fithesis/fithesis3.cls @@ -66159,6 +108875,8 @@ runfiles size=1799 RELOC/tex/latex/fithesis/logo/mu/fithesis-econ.pdf RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-color.eps RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-color_.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-color__.eps RELOC/tex/latex/fithesis/logo/mu/fithesis-fi.eps RELOC/tex/latex/fithesis/logo/mu/fithesis-fi.pdf RELOC/tex/latex/fithesis/logo/mu/fithesis-fsps-color.eps @@ -66203,126 +108921,171 @@ runfiles size=1799 RELOC/tex/latex/fithesis/style/mu/fithesis-ped.sty RELOC/tex/latex/fithesis/style/mu/fithesis-phil.sty RELOC/tex/latex/fithesis/style/mu/fithesis-sci.sty -docfiles size=854 - RELOC/doc/latex/fithesis/README - RELOC/doc/latex/fithesis/fithesis.pdf - RELOC/doc/latex/fithesis/guide/mu/econ.pdf - RELOC/doc/latex/fithesis/guide/mu/fi.pdf - RELOC/doc/latex/fithesis/guide/mu/fsps.pdf - RELOC/doc/latex/fithesis/guide/mu/fss.pdf - RELOC/doc/latex/fithesis/guide/mu/law.pdf - RELOC/doc/latex/fithesis/guide/mu/med.pdf - RELOC/doc/latex/fithesis/guide/mu/ped.pdf - RELOC/doc/latex/fithesis/guide/mu/phil.pdf - RELOC/doc/latex/fithesis/guide/mu/sci.pdf -srcfiles size=67 - RELOC/source/latex/fithesis/LICENSE.tex - RELOC/source/latex/fithesis/fithesis.dtx - RELOC/source/latex/fithesis/fithesis.ins - RELOC/source/latex/fithesis/locale/czech.dtx - RELOC/source/latex/fithesis/locale/czech.ins - RELOC/source/latex/fithesis/locale/english.dtx - RELOC/source/latex/fithesis/locale/english.ins - RELOC/source/latex/fithesis/locale/slovak.dtx - RELOC/source/latex/fithesis/locale/slovak.ins - RELOC/source/latex/fithesis/style/base.dtx - RELOC/source/latex/fithesis/style/base.ins - RELOC/source/latex/fithesis/style/mu/base.dtx - RELOC/source/latex/fithesis/style/mu/base.ins - RELOC/source/latex/fithesis/style/mu/econ.dtx - RELOC/source/latex/fithesis/style/mu/econ.ins - RELOC/source/latex/fithesis/style/mu/fi.dtx - RELOC/source/latex/fithesis/style/mu/fi.ins - RELOC/source/latex/fithesis/style/mu/fsps.dtx - RELOC/source/latex/fithesis/style/mu/fsps.ins - RELOC/source/latex/fithesis/style/mu/fss.dtx - RELOC/source/latex/fithesis/style/mu/fss.ins - RELOC/source/latex/fithesis/style/mu/law.dtx - RELOC/source/latex/fithesis/style/mu/law.ins - RELOC/source/latex/fithesis/style/mu/med.dtx - RELOC/source/latex/fithesis/style/mu/med.ins - RELOC/source/latex/fithesis/style/mu/ped.dtx - RELOC/source/latex/fithesis/style/mu/ped.ins - RELOC/source/latex/fithesis/style/mu/phil.dtx - RELOC/source/latex/fithesis/style/mu/phil.ins - RELOC/source/latex/fithesis/style/mu/sci.dtx - RELOC/source/latex/fithesis/style/mu/sci.ins +catalogue-contact-announce https://github.com/Witiko/fithesis3/releases +catalogue-contact-bugs https://github.com/Witiko/fithesis3/issues +catalogue-contact-development https://github.com/Witiko/fithesis3/pulls +catalogue-contact-home https://www.fi.muni.cz/lemma/projekty/fithesis3/#fithesis +catalogue-contact-repository https://github.com/Witiko/fithesis3 catalogue-ctan /macros/latex/contrib/fithesis -catalogue-date 2015-09-07 07:39:22 +0200 +catalogue-date 2018-04-09 00:17:56 +0200 catalogue-license lppl1.3 catalogue-topics dissertation class -catalogue-version 0.3.21 +catalogue-version 0.3.50 name fix2col category Package -revision 17133 -shortdesc Fix miscellaneous two column mode features. -relocated 1 -longdesc Fix mark handling so that \firstmark is taken from the first -longdesc column if that column has any marks at all; keep two column -longdesc floats like figure* in sequence with single column floats like -longdesc figure. -runfiles size=2 - RELOC/tex/latex/fix2col/fix2col.sty -docfiles size=23 - RELOC/doc/latex/fix2col/README - RELOC/doc/latex/fix2col/fix2col.pdf +revision 38770 +shortdesc Fix miscellaneous two column mode features +relocated 1 +longdesc OBSOLETE: do not use in new documents. This package will do +longdesc nothing in LaTeX formats after 2015/01/01 as the fixes that it +longdesc implements were incorporated into the fixltx2e package, which +longdesc is itself obsolete as since the 2015/01/01 release these fixes +longdesc are in the LaTeX format itself. Fix mark handling so that +longdesc \firstmark is taken from the first column if that column has +longdesc any marks at all; keep two column floats like figure* in +longdesc sequence with single column floats like figure. +containersize 2684 +containerchecksum b3f096a64fcea6c6b2864d4e8a86733afb852f3decae4704e6c275c41e1295622f1eb1c8db0e0d33a29e369a9b757495477c9ebcf82ae0003c4316967c03f0dc +doccontainersize 212644 +doccontainerchecksum 302ffac957bc37305fc5b6f458c4b7dcb06b65408131bcf64c0132638a110813eb6c748270ead340f3d864b927aa7bbfe0a16c3722cbd8334b1d8ba8ca72e7d3 +docfiles size=53 + RELOC/doc/latex/fix2col/README details="Readme" + RELOC/doc/latex/fix2col/fix2col.pdf details="Package documentation" +srccontainersize 6376 +srccontainerchecksum af17350815d50b2f880cfdc9cdefe457e541041e311e886a87fe45e53e7e48ed12ad83c27b6cddb0b3f719469d6c0e379a68860d13892879cb89678f51607e97 srcfiles size=6 RELOC/source/latex/fix2col/fix2col.dtx RELOC/source/latex/fix2col/fix2col.ins +runfiles size=2 + RELOC/tex/latex/fix2col/fix2col.sty catalogue-ctan /macros/latex/contrib/fix2col -catalogue-date 2012-03-12 20:11:22 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl -catalogue-version 0.03 +catalogue-topics typesetting macro-supp +catalogue-version 0.04 + +name fixcmex +category Package +revision 38816 +shortdesc Fully scalable version of Computer Modern Math Extension font +relocated 1 +longdesc This package provides a fully scalable version of the Computer +longdesc Modern Math Extension font for curing sizing problems mainly +longdesc with lmodern. It can be used when the main font of the document +longdesc is Computer Modern (or European Modern, if T1 encoding is +longdesc selected), or Latin Modern. It redefines the math extension +longdesc font so that it becomes arbitrarily scalable, using the optical +longdesc size fonts provided by the AMS together with the original +longdesc cmex10 font. +containersize 1380 +containerchecksum 654059292fe28a6cd678291c87e34da51d55fe158dfdf57d3e68db61754feb01099b214f076e68225f548ffa86fe1fd928ea5962a2494b63dfeb377503a37752 +doccontainersize 200156 +doccontainerchecksum 747b7b3e01a170ca1f36cdce5ac7247dacc62e945f40ce8cbd722e488b7917bad58e19d071439cd45f444855e6e2e0217a9f674fc0044e3ba286547d174b0b65 +docfiles size=50 + RELOC/doc/latex/fixcmex/README details="Readme" + RELOC/doc/latex/fixcmex/fixcmex.pdf details="Package documentation" +srccontainersize 2800 +srccontainerchecksum e637bdd26b1526f5d498a2652fd795c015fdde607e003c51dd029c1b329b2059f1f36a13863f5f36a0c790c495966b7747571155418b526c8960810f7f12da26 +srcfiles size=3 + RELOC/source/latex/fixcmex/fixcmex.dtx + RELOC/source/latex/fixcmex/fixcmex.ins +runfiles size=1 + RELOC/tex/latex/fixcmex/fixcmex.sty +catalogue-ctan /macros/latex/contrib/fixcmex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics font-supp-maths +catalogue-version 1.0 name fixfoot category Package revision 17131 -shortdesc Multiple use of the same footnote text. +shortdesc Multiple use of the same footnote text relocated 1 longdesc Provides a \DeclareFixedFootnote command to provide a single longdesc command for a frequently-used footnote. The package ensures longdesc that only one instance of the footnote text appears on each longdesc page (LaTeX needs to be run several times to achieve this). -runfiles size=2 - RELOC/tex/latex/fixfoot/fixfoot.sty +containersize 3280 +containerchecksum 52c25b4d5bb9e34fe3f8d2b122e68352ad572ff9ecf1011f3e9fbd67319d0781a48ca08ab03ad3201f1d1d2bd6d4e35fa3818e695a741a8ab440ce81f7724039 +doccontainersize 50024 +doccontainerchecksum bfe0e39165be8f9a56e2cbd4b91c0b7b7448d0b9d8a4a0b62d6c0d45e542a9964af3d34233ec777b69f0666a0945513a8475629f0b084f72a0b349682e8ad6f4 docfiles size=17 - RELOC/doc/latex/fixfoot/README - RELOC/doc/latex/fixfoot/fixfoot.pdf + RELOC/doc/latex/fixfoot/README details="Readme" + RELOC/doc/latex/fixfoot/fixfoot.pdf details="Package documentation" RELOC/doc/latex/fixfoot/fixfoot.tex RELOC/doc/latex/fixfoot/testfix.tex +runfiles size=2 + RELOC/tex/latex/fixfoot/fixfoot.sty +catalogue-also savefnmark +catalogue-contact-repository https://github.com/rf-latex/fixfoot +catalogue-contact-support https://github.com/rf-latex/fixfoot/issues catalogue-ctan /macros/latex/contrib/fixfoot -catalogue-date 2011-11-05 20:23:42 +0100 +catalogue-date 2018-09-15 15:36:28 +0200 catalogue-license lppl +catalogue-topics footnote catalogue-version 0.3a +name fixjfm +category Package +revision 47113 +shortdesc Fix JFM (for *pTeX) +relocated 1 +longdesc This package fixes several bugs in the JFM format. Both LaTeX +longdesc and plain TeX are supported. +containersize 2400 +containerchecksum 5ed8db53c1757c4ab6f14e763f9e58a76e5f8c594c30c1d1fd4d7c9a49d65da90d72650c88375806997d0f268b1a75215bf6969f45e45ef3a2127c422415bf16 +doccontainersize 286260 +doccontainerchecksum 5de4126f1f5215fc8132e0449048bd66dc73d8a5cff460d7873205f3cb55c2f8069870d9ffc794d5c173a52acccb5bdbe45b34189fbdd40509bfcdeed804153c +docfiles size=74 + RELOC/doc/generic/fixjfm/README details="Readme" + RELOC/doc/generic/fixjfm/fixjfm-doc.pdf details="Package documentation" + RELOC/doc/generic/fixjfm/fixjfm-doc.tex +runfiles size=3 + RELOC/tex/generic/fixjfm/fixjfm.sty +catalogue-also bxjaprnind +catalogue-contact-repository https://github.com/Man-Ting-Fang/fixjfm +catalogue-ctan /macros/generic/fixjfm +catalogue-date 2018-03-24 18:21:02 +0100 +catalogue-license knuth +catalogue-topics macro-supp chinese japanese +catalogue-version 0.8 + name fixlatvian category Package revision 21631 -shortdesc Improve Latvian language support in XeLaTeX. +shortdesc Improve Latvian language support in XeLaTeX relocated 1 longdesc The package offers improvement of the Latvian language support longdesc in polyglossia, in particular in the area of the standard longdesc classes. -runfiles size=3 - RELOC/makeindex/fixlatvian/lv.ist - RELOC/tex/xelatex/fixlatvian/fixlatvian.sty +containersize 2952 +containerchecksum 48d39745498c187d23c62191d7da6341ecc13d6c43ac97deebf453046e78a26d221b5c7b7ed22aa8909476a754e877de26c20391bccb5cddb2db1fa7b238d643 +doccontainersize 113476 +doccontainerchecksum 07dc4fa87b8564c3ff3144936ae4374e0bc7cf37a5a3e4b5d0724681859a41d30d714e96742253bb9a269116dd32d2ab0c1e5e1965242e88ea12fdcd224ace31 docfiles size=43 RELOC/doc/xelatex/fixlatvian/Makefile - RELOC/doc/xelatex/fixlatvian/README - RELOC/doc/xelatex/fixlatvian/fixlatvian.pdf + RELOC/doc/xelatex/fixlatvian/README details="Readme" + RELOC/doc/xelatex/fixlatvian/fixlatvian.pdf details="Package documentation (Latvian)" language="lv" +srccontainersize 9240 +srccontainerchecksum 04903bf5ba774034c0b3dbec7c7d37ca5a802b3d104670d259667f8a965da26e7e954ce9272e14b6bab058a7e6a4b8ad42b710e22f85f2d0320a7827b2c7e173 srcfiles size=8 RELOC/source/xelatex/fixlatvian/fixlatvian.dtx RELOC/source/xelatex/fixlatvian/fixlatvian.ins +runfiles size=3 + RELOC/makeindex/fixlatvian/lv.ist + RELOC/tex/xelatex/fixlatvian/fixlatvian.sty catalogue-ctan /macros/xetex/latex/fixlatvian -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics multilingual-addon catalogue-version 1a name fixltxhyph category Package revision 25832 -shortdesc Allow hyphenation of partially-emphasised substrings. +shortdesc Allow hyphenation of partially-emphasised substrings relocated 1 longdesc The package fixes the problem of TeX failing to hyphenate longdesc letter strings that seem (to TeX) to be words, but which are @@ -66330,30 +109093,61 @@ longdesc followed by an apostrophe and then an emphasis command. The longdesc cause of the problem is not the apostrophe, but the font change longdesc in the middle of the string. The problem arises in Catalan, longdesc French, Italian and Romansh. -runfiles size=1 - RELOC/tex/latex/fixltxhyph/fixltxhyph.sty +containersize 1468 +containerchecksum df41497da718b157073b6ad2a4b9cea3f9ee0a0824698f47d4441b76261efb21271f1605f69b1c0de8a99e3e636587a25b4efdb4d578683ef0c89d7f849d2c8e +doccontainersize 398240 +doccontainerchecksum 37d6b9903a56d33577c8aaabd40de592bd78dc6b2f5a2c82457f6d5b499d1d6f9a9bdaff29bb9f9511365d32e160f92c85c6c0d93ed065fdd1688aaeae9ab246 docfiles size=98 - RELOC/doc/latex/fixltxhyph/README - RELOC/doc/latex/fixltxhyph/fixltxhyph.pdf + RELOC/doc/latex/fixltxhyph/README details="Readme" + RELOC/doc/latex/fixltxhyph/fixltxhyph.pdf details="Package documentation" +srccontainersize 6744 +srccontainerchecksum 321e52dbc69bceea16f03d5d280ae10f497278876cdf3b7f64cbfb6f31993c18afc5bf4c38f424c9a84ffa55b235b73b4daf7d68dfd115c31dc3a237a6b64eac srcfiles size=5 RELOC/source/latex/fixltxhyph/fixltxhyph.dtx +runfiles size=1 + RELOC/tex/latex/fixltxhyph/fixltxhyph.sty catalogue-ctan /macros/latex/contrib/fixltxhyph -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics catalan french italian catalogue-version 0.4 name fixme category Package -revision 29362 -shortdesc Insert "fixme" notes into draft documents. -relocated 1 -longdesc This package provides a way to insert fixme notes in documents -longdesc being developed (in draft mode). Such notes can appear in the -longdesc margin of the document, as index entries, in the log file and -longdesc as warnings on stdout. It is also possible to summarize them in -longdesc a list. If your document is in a final version, any remaining -longdesc fixme notes will produce an error. FiXme also comes with -longdesc support for AUC-TeX. +revision 49591 +shortdesc Collaborative annotation tool for LaTeX +relocated 1 +longdesc FiXme is a collaborative annotation tool for LaTeX documents. +longdesc Annotating a document here refers to inserting meta-notes, that +longdesc is, notes that do not belong to the document itself, but rather +longdesc to its development or reviewing process. Such notes may involve +longdesc things of different importance levels, ranging from simple "fix +longdesc the spelling" flags to critical "this paragraph is a lie" +longdesc mentions. Annotations like this should be visible during the +longdesc development or reviewing phase, but should normally disappear +longdesc in the final version of the document. FiXme is designed to ease +longdesc and automate the process of managing collaborative annotations, +longdesc by offering a set of predefined note levels and layouts, the +longdesc possibility to register multiple authors, to reference +longdesc annotations by listing and indexing etc. FiXme is extensible, +longdesc giving you the possibility to create new layouts or even +longdesc complete "themes", and also comes with support for AUCTeX. +containersize 8676 +containerchecksum fbfc3a79dbaed48f79dfd59efba58eb3d6c4e3c3f6716b0910cc0ee7e6b0913f345f4a05bcbc5d9943437d072cf3008615ab573725c4e7b4d7d716bd90dd8d07 +doccontainersize 351972 +doccontainerchecksum 78f64f31246acc6c153c0f0ec618a3a1c473ea3a5cce47af57ee65603d2064b64a3a506cd18332f1686b41768dcfdb10a9f9cc000dbe5cb476c8c4c61283dae9 +docfiles size=108 + RELOC/doc/latex/fixme/NEWS + RELOC/doc/latex/fixme/README.md details="Package Readme" + RELOC/doc/latex/fixme/THANKS + RELOC/doc/latex/fixme/fixme.el + RELOC/doc/latex/fixme/fixme.pdf details="Package documentation" + RELOC/doc/latex/fixme/header.inc +srccontainersize 35036 +srccontainerchecksum f5c1f64772f76f43fc64e1395804f155587d677356bdebb6bc2e3bf6961b38004463e8e83b2c3b5406e32f329c2fc84083e0f0db90875fa55319f85cfe4223c5 +srcfiles size=44 + RELOC/source/latex/fixme/fixme.dtx + RELOC/source/latex/fixme/fixme.ins runfiles size=24 RELOC/tex/latex/fixme/fixme.sty RELOC/tex/latex/fixme/layouts/env/fxenvlayoutcolor.sty @@ -66373,124 +109167,176 @@ runfiles size=24 RELOC/tex/latex/fixme/themes/fxthemecolor.sty RELOC/tex/latex/fixme/themes/fxthemecolorsig.sty RELOC/tex/latex/fixme/themes/fxthemesignature.sty -docfiles size=100 - RELOC/doc/latex/fixme/NEWS - RELOC/doc/latex/fixme/README - RELOC/doc/latex/fixme/THANKS - RELOC/doc/latex/fixme/fixme.el - RELOC/doc/latex/fixme/fixme.pdf - RELOC/doc/latex/fixme/header.inc -srcfiles size=42 - RELOC/source/latex/fixme/fixme.dtx - RELOC/source/latex/fixme/fixme.ins +catalogue-contact-home https://www.lrde.epita.fr/~didier/software/latex.php#fixme +catalogue-contact-repository https://github.com/didierverna/fixme catalogue-ctan /macros/latex/contrib/fixme -catalogue-date 2013-01-28 16:52:26 +0100 -catalogue-license lppl -catalogue-version 4.2 +catalogue-date 2019-01-03 18:29:08 +0100 +catalogue-license lppl1.3 +catalogue-topics editorial +catalogue-version 4.5 name fixmetodonotes category Package revision 30168 -shortdesc Add notes on document development. +shortdesc Add notes on document development relocated 1 longdesc The package provides tools to highlight FIXME and TODO longdesc annotations. The command \listofnotes prints a list of longdesc outstanding notes, with links to the pages on which they longdesc appear. -runfiles size=1 - RELOC/tex/latex/fixmetodonotes/fixmetodonotes.sty +containersize 1580 +containerchecksum d327d19ac0e9041da98458e9147b3d1a9c9182bfe5c893c03ab9ef42b9c8044314f4024503327594bef337c1af6aad0b4f2046ea2d6a433947c6c45ebdf8838b +doccontainersize 4096 +doccontainerchecksum 7d7f8b049feb8e70c5d1ab0c71147f1f398b098f9c961267c3e90dc5e9ea9a8317361a0dacd8fe581e17cd85669bd39e83a1391641d353b01265a6195af33714 docfiles size=3 RELOC/doc/latex/fixmetodonotes/LICENSE - RELOC/doc/latex/fixmetodonotes/README + RELOC/doc/latex/fixmetodonotes/README details="Readme" +srccontainersize 1408 +srccontainerchecksum 1a4028aca8ae5fd53dd8068d17a5331ad9011d72d668f9ca8242862599edf7709e84a8848bad35fafd790ec756c972488ac8db53a240426dc5dc95dfe18385fb srcfiles size=2 RELOC/source/latex/fixmetodonotes/fixmetodonotes.dtx RELOC/source/latex/fixmetodonotes/fixmetodonotes.ins +runfiles size=1 + RELOC/tex/latex/fixmetodonotes/fixmetodonotes.sty +catalogue-also fixme todonotes catalogue-ctan /macros/latex/contrib/fixmetodonotes -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics notes editorial catalogue-version 0.2.2 name fixpdfmag category Package revision 15878 -shortdesc Fix magnification in PDFTeX. +shortdesc Fix magnification in pdfTeX relocated 1 -longdesc A recent change to PDFTeX has caused magnification to apply to +longdesc A recent change to pdfTeX has caused magnification to apply to longdesc page dimensions. This small package changes the values set in longdesc the page dimension variables from pt to truept, thus evading longdesc the effects of \mag. +containersize 1160 +containerchecksum 733995ec82df92bea5a674fc25a3a6af2102739c3c73eeed7c9f40cd54bc4c5d65cafb35366b70641ff0661dc83700071054f7af274487474c3893ce5a44c9ad runfiles size=1 RELOC/tex/plain/fixpdfmag/fixpdfmag.tex catalogue-ctan /macros/plain/contrib/misc/fixpdfmag.tex -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics geometry + +name fiziko +category Package +revision 50293 +shortdesc A MetaPost library for physics textbook illustrations +relocated 1 +longdesc This MetaPost library was initially written to automate some +longdesc elements of black and white illustrations for a physics +longdesc textbook. It provides functions to draw things like lines of +longdesc variable width, shaded spheres, and tubes of different kinds, +longdesc which can be used to produce images of a variety of objects. +longdesc The library also contains functions to draw some objects +longdesc constructed from these primitives. +containersize 20908 +containerchecksum 785f99a52193acc630e5fb00cc2db9e16795f42059d65054b0fa07f8081b95e66a245fd05c8b3ee49a69d91a17e7447d10c39863612e44e2632afd5fd0165e38 +doccontainersize 4136056 +doccontainerchecksum e9aafff476605082dd4116cda573c8f20311659276ccc7dc3477a24024d59604b4b8f724effc853d7d7832493658fb4f8b83302921544ba2c986266317f5a895 +docfiles size=1123 + RELOC/doc/metapost/fiziko/README details="Readme" + RELOC/doc/metapost/fiziko/fiziko.pdf details="Package documentation" + RELOC/doc/metapost/fiziko/fiziko.tex +runfiles size=23 + RELOC/metapost/fiziko/fiziko.mp +catalogue-contact-bugs https://github.com/jemmybutton/fiziko/issues +catalogue-contact-repository https://github.com/jemmybutton/fiziko +catalogue-ctan /graphics/metapost/contrib/macros/fiziko +catalogue-date 2019-03-08 16:31:18 +0100 +catalogue-license gpl3+cc-by-sa-4 +catalogue-topics physics graphics graphics-mpost +catalogue-version 0.1.3 name fjodor category Package revision 20220 -shortdesc A selection of layout styles. +shortdesc A selection of layout styles relocated 1 longdesc The package provides several page layouts, selectable by longdesc package options. -runfiles size=2 - RELOC/tex/latex/fjodor/fjodor.sty +containersize 1300 +containerchecksum 26186ec669370270049d45f81b873b444d829c11e9127702533bc09036795ddbd5b6bb43ad54b91662ab9206d56211f1db08b99045c2693c0826f2ec531958c8 +doccontainersize 453284 +doccontainerchecksum 3115f5294219a3db2a87d702081b69a27c36065345b4c2bb8fdc4d63f3d20c542c81f6d7d70cedad094297b358b83be4141b69615293ed2530e7e1224a5796a6 docfiles size=125 - RELOC/doc/latex/fjodor/README + RELOC/doc/latex/fjodor/README details="Readme" RELOC/doc/latex/fjodor/dostojevski.pdf RELOC/doc/latex/fjodor/dostojevski.tex - RELOC/doc/latex/fjodor/fjodor.pdf + RELOC/doc/latex/fjodor/fjodor.pdf details="Package documentation" RELOC/doc/latex/fjodor/fjodor.tex RELOC/doc/latex/fjodor/srbook-mem.sty +runfiles size=2 + RELOC/tex/latex/fjodor/fjodor.sty catalogue-ctan /macros/latex/contrib/fjodor -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics geometry name flabels category Package revision 17272 -shortdesc Labels for files and folders. +shortdesc Labels for files and folders relocated 1 longdesc Macros for typesetting pretty labels (optionally colored) for longdesc the back of files or binders (currently only the special A4 longdesc "Leitz-Ordner" ring binder is supported). -runfiles size=2 - RELOC/tex/latex/flabels/flabels.sty +containersize 2328 +containerchecksum b05d66f1181eb9d7eb80636b69ea3af7a29ae7011f6888438cf80a7fa6fde44666f9fa7ee71620055f6882e73b6f5e211a2a65ca003d903cb26cc4f9571257d9 +doccontainersize 340004 +doccontainerchecksum cf9b774ef4e1336a123d48b3797d8122c5b9128324a9f6c0c1497194e8d3a3d9ee46a5a58470074c0dbc02f8c0aaeb1da3b4d5683ba9faf6e479a6790bc599cf docfiles size=93 - RELOC/doc/latex/flabels/README - RELOC/doc/latex/flabels/flabels.pdf + RELOC/doc/latex/flabels/README details="Readme" + RELOC/doc/latex/flabels/flabels.pdf details="Package documentation" RELOC/doc/latex/flabels/makedoc RELOC/doc/latex/flabels/makedoc-patched RELOC/doc/latex/flabels/makedoc.bat +srccontainersize 11680 +srccontainerchecksum 26b2a3e7fbdfe3523cad96880dc6b168cf633a115f6b8d794709514013a79eb2ab6d1545769b74236248b73c3b08d5b52e02fdac9cdb420e3a4f1ac5cad55d32 srcfiles size=11 RELOC/source/latex/flabels/flabels.dtx RELOC/source/latex/flabels/flabels.ins +runfiles size=2 + RELOC/tex/latex/flabels/flabels.sty catalogue-ctan /macros/latex/contrib/flabels -catalogue-date 2011-12-16 16:22:52 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics labels catalogue-version 1.0 name flacards category Package revision 19440 -shortdesc Generate flashcards for printing. +shortdesc Generate flashcards for printing relocated 1 longdesc The flacards class provides an easy interface to produce longdesc flashcards. It will print several cards per page, on both sides longdesc of the paper. -runfiles size=2 - RELOC/tex/latex/flacards/flacards.cls +containersize 2196 +containerchecksum 45cf4fc3f4678a5242873f80ff1ab328e7675107d14052be90308d94d44a931ba8b2cf3eec67e7456a21168aba168fe848979a8d45ef07bfc62613ad9174488d +doccontainersize 27864 +doccontainerchecksum 087d2c5500b5ab51280bf3f57362f00723856b041f520d41849d21043859bebc106ff9af33dcbf044aabd838f68d1165f74645360247de2c3feb9a8493ecc441 docfiles size=17 RELOC/doc/latex/flacards/COPYING - RELOC/doc/latex/flacards/README + RELOC/doc/latex/flacards/README details="Readme" RELOC/doc/latex/flacards/README.TEXLIVE RELOC/doc/latex/flacards/changelog.txt RELOC/doc/latex/flacards/flacards_ex.pdf RELOC/doc/latex/flacards/flacards_ex.tex RELOC/doc/latex/flacards/flacards_ex1.tex RELOC/doc/latex/flacards/flacards_ex2.tex +runfiles size=2 + RELOC/tex/latex/flacards/flacards.cls +catalogue-also flashcard flashcards catalogue-ctan /macros/latex/contrib/flacards -catalogue-date 2014-09-26 18:40:17 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics card-flash class catalogue-version 0.1.1b name flagderiv @@ -66503,64 +109349,80 @@ longdesc derivations using the flag/flagpole notation. The package longdesc features an intuitive command syntax, opening and closing longdesc multiple flagpoles, different comment styles, customizable longdesc symbols and label namespaces. -runfiles size=2 - RELOC/tex/latex/flagderiv/flagderiv.sty +containersize 2080 +containerchecksum a7618ffc60c548fb98a581324901af09defd9226a655163d967e251b090b6ea74d91ec10bbe1e5d685a83d147818ecbf8b66d84c972cacaf3e270baf39293200 +doccontainersize 183708 +doccontainerchecksum 8c9731aec45eb594b95e1c89a1967f169bf8394664977059af0fd77aa40ebf3769200925382694e221a32ced470161f505420539b5e3f7f00be4688e308ff54a docfiles size=53 RELOC/doc/latex/flagderiv/README - RELOC/doc/latex/flagderiv/flagderiv.pdf + RELOC/doc/latex/flagderiv/flagderiv.pdf details="Package documentation" +srccontainersize 12256 +srccontainerchecksum c81038f892b37dc2759251cc14d8bfe11d0aff056b95204cfe1a4434ef1bdc6fb3c035edca0e01282ca019193871dd6044a8b9b64f3b6051c24f041700f2b71e srcfiles size=14 RELOC/source/latex/flagderiv/flagderiv.dtx RELOC/source/latex/flagderiv/flagderiv.ins +runfiles size=2 + RELOC/tex/latex/flagderiv/flagderiv.sty catalogue-ctan /macros/latex/contrib/flagderiv -catalogue-date 2013-11-21 21:20:37 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics maths catalogue-version 0.10 name flashcards category Package revision 19667 -shortdesc A class for typesetting flashcards. +shortdesc A class for typesetting flashcards relocated 1 longdesc The FlashCards class provides for the typesetting of flash longdesc cards. By flash card, we mean a two sided card which has a longdesc prompt or a question on one side and the response or the answer longdesc on the flip (back) side. Flash cards come in many sizes longdesc depending on the nature of the information they contain. -runfiles size=6 - RELOC/tex/latex/flashcards/avery5371.cfg - RELOC/tex/latex/flashcards/avery5388.cfg - RELOC/tex/latex/flashcards/flashcards.cls +containersize 3512 +containerchecksum ea1d530296c2b3e11645bbf09b4776394cf1725db5f30f23297818fa68b5a8d1d860d5873755d1be010c8d7a3d01567d878f3a12490fced35f6f825034f1c9f6 +doccontainersize 132668 +doccontainerchecksum f42cef1b5a093861818d03f2df9cc5029546a1bb9b01a4349b815fa26d7320bbb9d596adceadd0583dfee7bf7bf8a011c8296ec06058717a61ddce10baf19e53 docfiles size=43 RELOC/doc/latex/flashcards/COPYING - RELOC/doc/latex/flashcards/README - RELOC/doc/latex/flashcards/flashcards.pdf + RELOC/doc/latex/flashcards/README details="Package Readme" + RELOC/doc/latex/flashcards/flashcards.pdf details="Package documentation" RELOC/doc/latex/flashcards/samplecards.tex +srccontainersize 7560 +srccontainerchecksum c9d90cbb0c0fa854a6d187ffafb20cefad24549083c166a5088dfa05c3240869996bd16097ddf74adcdd658ab953d39021c896eda94dd7ad426e5bd972d78c73 srcfiles size=8 RELOC/source/latex/flashcards/flashcards.dtx RELOC/source/latex/flashcards/flashcards.ins +runfiles size=6 + RELOC/tex/latex/flashcards/avery5371.cfg + RELOC/tex/latex/flashcards/avery5388.cfg + RELOC/tex/latex/flashcards/flashcards.cls +catalogue-also flashcard ecards catalogue-ctan /macros/latex/contrib/flashcards -catalogue-date 2012-07-11 23:21:34 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics card-flash catalogue-version 1.0.1 name flashmovie category Package revision 25768 -shortdesc Directly embed flash movies into PDF files. +shortdesc Directly embed flash movies into PDF files relocated 1 longdesc The package allows direct embedding of flash movies into PDF -longdesc files. It is designed for use with pdflatex. The package takes +longdesc files. It is designed for use with pdfLaTeX. The package takes longdesc advantage of the embedded Adobe Flash player in Adobe Reader 9; longdesc the reader is invoked with the 'rich media annotation' feature, longdesc described in "Adobe Supplement to the ISO 32000 BaseVersion: longdesc 1.7 ExtensionLevel: 3". This method of embedding movies is longdesc attractive since it removes all platform dependencies; however, longdesc the user is required to use Acrobat 9. -runfiles size=12 - RELOC/tex/latex/flashmovie/flashmovie.sty - RELOC/tex/latex/flashmovie/player_flv_maxi.swf +containersize 19612 +containerchecksum 99ae914e1fa627f462be84f7bed923c638bf493ca183f010bdeb5d607ab00abaff7a1fe3d0f8613e6fb9df7cd5047b99e99a5da18470df25e7507259a441e188 +doccontainersize 1323548 +doccontainerchecksum 016331e7328732f5549487f8b2edbeabc9548eb81201584d3d3f7e0ff41a9a962761a8af867dbee8951bf4e99ea4eeecec7e9230868c23abc95260f288ca7958 docfiles size=345 - RELOC/doc/latex/flashmovie/README + RELOC/doc/latex/flashmovie/README details="Readme" RELOC/doc/latex/flashmovie/flv-player-license/MPL-1.1 RELOC/doc/latex/flashmovie/flv-player-license/license.txt RELOC/doc/latex/flashmovie/test-beamer-0.pdf @@ -66569,23 +109431,30 @@ docfiles size=345 RELOC/doc/latex/flashmovie/test-flv.pdf RELOC/doc/latex/flashmovie/test-flv.tex RELOC/doc/latex/flashmovie/test.tex +runfiles size=12 + RELOC/tex/latex/flashmovie/flashmovie.sty + RELOC/tex/latex/flashmovie/player_flv_maxi.swf +catalogue-also movie15 catalogue-ctan /macros/latex/contrib/flashmovie -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics graphics-motion catalogue-version 0.4 name flipbook category Package revision 25584 -shortdesc Typeset flipbook animations, in the corners of documents. +shortdesc Typeset flipbook animations, in the corners of documents relocated 1 longdesc The package provides techniques for adding flip book animations longdesc in the corner of your LaTeX documents (using images or ASCII longdesc art). Animations are defined as a set of numbered files (e.g., longdesc "im1.pdf", "im2.pdf", "im3.pdf", ...). The package relies on longdesc fancyhdr to control the corners. -runfiles size=2 - RELOC/tex/latex/flipbook/flipbook.sty +containersize 1792 +containerchecksum 8e3140fb417115ada958bf6dab1a22b39779926b47938bb49cf86499d64ae16d321e6e6bbc8482ee7e6a2d79d8341a227785ecf04c66a15f7e5c0ccaea016d21 +doccontainersize 348720 +doccontainerchecksum a5f6aa188e7a0aff29d4e693f0f8e52512838278e12d13c29706c7bd5c1c1c2a8d70beb619195d8572ca5a3920205380d586d02580bc747acb8e3259c79c3fb0 docfiles size=365 RELOC/doc/latex/flipbook/Images/Anims/an1b/im01.eps RELOC/doc/latex/flipbook/Images/Anims/an1b/im01.fig @@ -66725,68 +109594,119 @@ docfiles size=365 RELOC/doc/latex/flipbook/Images/Anims/anASCII/an3.tex RELOC/doc/latex/flipbook/Images/Anims/anASCII/an4.tex RELOC/doc/latex/flipbook/Makefile - RELOC/doc/latex/flipbook/README - RELOC/doc/latex/flipbook/flipbook-doc.pdf + RELOC/doc/latex/flipbook/README details="Readme" + RELOC/doc/latex/flipbook/flipbook-doc.pdf details="Package documentation" RELOC/doc/latex/flipbook/flipbook-doc.tex RELOC/doc/latex/flipbook/flipbook-ex.pdf RELOC/doc/latex/flipbook/flipbook-ex.tex +runfiles size=2 + RELOC/tex/latex/flipbook/flipbook.sty catalogue-ctan /macros/latex/contrib/flipbook -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics graphics-motion graphics-use catalogue-version 0.2 name flippdf category Package revision 15878 -shortdesc Horizontal flipping of pages with pdfLaTeX. +shortdesc Horizontal flipping of pages with pdfLaTeX relocated 1 longdesc The package allows the production of a document with pages longdesc "mirrored". This is sometimes required by publishers who want longdesc camera-ready documents to be printed on transparent film (to be longdesc viewed from the "wrong" side). The package requires everypage, longdesc and only works with pdfLaTeX in PDF mode. -runfiles size=1 - RELOC/tex/latex/flippdf/flippdf.sty +containersize 1216 +containerchecksum 8f4de43f2d6310bcf3bfe350a071d43ff4ddf4d21acaebddf59e3fdc62ae562e32006707a6f7f5de1f631f9aeec12edd7cf75332b012e433478d171e149f2c96 +doccontainersize 10988 +doccontainerchecksum 3b40280c0d142add31bf27dd57cf52ab2d5f4f43637cf1a1a20202b5615b58c52567e53ff2f9875d2d1e73116c227319909d77df1609ed5590b30d2c151f2c63 docfiles size=5 - RELOC/doc/latex/flippdf/README - RELOC/doc/latex/flippdf/flippdf.pdf + RELOC/doc/latex/flippdf/README details="Readme" + RELOC/doc/latex/flippdf/flippdf.pdf details="Package documentation" +srccontainersize 3364 +srccontainerchecksum 359f526185b8d3160cfe2c78c22d36e2df4ed245f574d3ed905b8e0dd95664f57f0efc128130a00d2945c666ffb094eb4333a26c13b56c9917bc0172e31041f0 srcfiles size=3 RELOC/source/latex/flippdf/flippdf.dtx RELOC/source/latex/flippdf/flippdf.ins +runfiles size=1 + RELOC/tex/latex/flippdf/flippdf.sty catalogue-ctan /macros/latex/contrib/flippdf -catalogue-date 2012-07-12 15:21:21 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics book-pub catalogue-version 1.0 +name float +category Package +revision 15878 +shortdesc Improved interface for floating objects +relocated 1 +longdesc Improves the interface for defining floating objects such as +longdesc figures and tables. Introduces the boxed float, the ruled float +longdesc and the plaintop float. You can define your own floats and +longdesc improve the behaviour of the old ones. The package also +longdesc provides the H float modifier option of the obsolete here +longdesc package. You can select this as automatic default with +longdesc \floatplacement{figure}{H}. +containersize 2712 +containerchecksum 4a5270ca2945915464ba25b7996dfbd4771ca5f477e4bf248183bc340b7051c042d9566908acac881782af74a59154f4163bc7879a21e042e1c31d67237fc6a8 +doccontainersize 112620 +doccontainerchecksum 6f713c71361c1536bb086e7638b770ffe58e97aa01bd59bbab779f71cb485b9c06322d7d89e7d87cc8f77a0c7f18f4174fd4ec47b62556faa32d82fead0b7377 +docfiles size=35 + RELOC/doc/latex/float/README details="Package Readme" + RELOC/doc/latex/float/float.pdf details="Package documentation" +srccontainersize 12572 +srccontainerchecksum 9e577ba84dcac612e4105e597ca2385da3dafb39327189caf30e5728b85a380b5a90363b8bf9070a0464aca2130bcf9419d030bd6c39d51f9a17b0a7dd578d5f +srcfiles size=11 + RELOC/source/latex/float/float.dtx + RELOC/source/latex/float/float.ins +runfiles size=2 + RELOC/tex/latex/float/float.sty +catalogue-also rotfloat +catalogue-ctan /macros/latex/contrib/float +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics float +catalogue-version 1.3d + name floatflt category Package revision 25540 -shortdesc Wrap text around floats. +shortdesc Wrap text around floats relocated 1 longdesc The package can float text around figures and tables which do longdesc not span the full width of a page; it improves upon floatfig, longdesc and allows tables/figures to be set left/right or alternating longdesc on even/odd pages. -runfiles size=3 - RELOC/tex/latex/floatflt/floatflt.sty +containersize 2828 +containerchecksum 1f7de96ac5e82cc4bbfab3fdb665a18d20413cceea097e1407dee2073109ee1b82d7d3ea82c80630d9aaf445f14a8497aee7e3824458dea8b40b270135052ef5 +doccontainersize 304824 +doccontainerchecksum 7ca1c6ed832bb3d697685cad5575e02b531c0469095468fd40eb3131d89b68dfa0fcb9c882965aa7a9cc9c60292f64bdbf6264d3d990bd697dc27b23a46fae47 docfiles size=81 RELOC/doc/latex/floatflt/README RELOC/doc/latex/floatflt/floatexm.tex RELOC/doc/latex/floatflt/floatfge.tex RELOC/doc/latex/floatflt/floatfig.txt - RELOC/doc/latex/floatflt/floatflt.pdf + RELOC/doc/latex/floatflt/floatflt.pdf details="Package documentation" +srccontainersize 18016 +srccontainerchecksum 6d243fd8c9a2fb7bbc242ececd19d94916de97fd3583095e8342d8e7c56decdcaceac8038eee9a774950d9261979150035e8c9175175ad7346b0eb1fbea6c5bb srcfiles size=15 RELOC/source/latex/floatflt/floatflt.dtx RELOC/source/latex/floatflt/floatflt.ins +runfiles size=3 + RELOC/tex/latex/floatflt/floatflt.sty +catalogue-also wrapfig catalogue-ctan /macros/latex/contrib/floatflt -catalogue-date 2012-05-30 14:33:40 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics text-flow catalogue-version 1.31 name floatrow category Package revision 15878 -shortdesc Modifying the layout of floats. +shortdesc Modifying the layout of floats relocated 1 longdesc The floatrow package provides many ways to customize layouts of longdesc floating environments and has code to cooperate with the @@ -66795,18 +109715,15 @@ longdesc floats side by side, and to put the caption beside its float. longdesc The floatrow settings could be expanded to the floats created longdesc by packages rotating, wrapfig, subfig (in the case of rows of longdesc subfloats), and longtable. -runfiles size=22 - RELOC/tex/latex/floatrow/floatpagestyle.sty - RELOC/tex/latex/floatrow/floatrow.sty - RELOC/tex/latex/floatrow/fr-fancy.sty - RELOC/tex/latex/floatrow/fr-longtable.sty - RELOC/tex/latex/floatrow/fr-subfig.sty - RELOC/tex/latex/floatrow/listpen.sty +containersize 16088 +containerchecksum c650b5c856bd625ad192901f3c056171f790c549748d5de5675f14cedca5cf32931ece537ce2280c0e4895895a8eff0cf140c3408dffc2b081ebc8c62d2ae1e3 +doccontainersize 1216512 +doccontainerchecksum b721ebbf59ca3744f1834c130da1a859cd4a98e9f5f977f5d35eef77b420deee303c109439fa70f89757cb9f57114bc74c5d527cafacc1daf2125b975621b525 docfiles size=590 - RELOC/doc/latex/floatrow/README - RELOC/doc/latex/floatrow/floatrow-rus.pdf + RELOC/doc/latex/floatrow/README details="Readme" + RELOC/doc/latex/floatrow/floatrow-rus.pdf details="Package documentation (Russian)" language="ru" RELOC/doc/latex/floatrow/floatrow-rus.tex - RELOC/doc/latex/floatrow/floatrow.pdf + RELOC/doc/latex/floatrow/floatrow.pdf details="Package documentation (English)" language="en" RELOC/doc/latex/floatrow/fr-sample.tex RELOC/doc/latex/floatrow/frsample01.tex RELOC/doc/latex/floatrow/frsample02.tex @@ -66821,65 +109738,58 @@ docfiles size=590 RELOC/doc/latex/floatrow/pictures.tex RELOC/doc/latex/floatrow/sample-longtable-rus.tex RELOC/doc/latex/floatrow/sample-longtable.tex +srccontainersize 92488 +srccontainerchecksum 033c5c65c9676054e209c64dd065f86631c9765b1582e4042e72bfd247a49602dd97ba4dcd5afa1fe2f7e3d252e4b6ef2ff1a2b00eec3156937fc214d7cf0c3f srcfiles size=117 RELOC/source/latex/floatrow/floatrow.dtx RELOC/source/latex/floatrow/floatrow.ins +runfiles size=22 + RELOC/tex/latex/floatrow/floatpagestyle.sty + RELOC/tex/latex/floatrow/floatrow.sty + RELOC/tex/latex/floatrow/fr-fancy.sty + RELOC/tex/latex/floatrow/fr-longtable.sty + RELOC/tex/latex/floatrow/fr-subfig.sty + RELOC/tex/latex/floatrow/listpen.sty catalogue-ctan /macros/latex/contrib/floatrow -catalogue-date 2012-07-12 13:41:30 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics float catalogue-version 0.3b -name float -category Package -revision 15878 -shortdesc Improved interface for floating objects. -relocated 1 -longdesc Improves the interface for defining floating objects such as -longdesc figures and tables. Introduces the boxed float, the ruled float -longdesc and the plaintop float. You can define your own floats and -longdesc improve the behaviour of the old ones. The package also -longdesc provides the H float modifier option of the obsolete here -longdesc package. You can select this as automatic default with -longdesc \floatplacement{figure}{H}. -runfiles size=2 - RELOC/tex/latex/float/float.sty -docfiles size=35 - RELOC/doc/latex/float/README - RELOC/doc/latex/float/float.pdf -srcfiles size=11 - RELOC/source/latex/float/float.dtx - RELOC/source/latex/float/float.ins -catalogue-ctan /macros/latex/contrib/float -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.3d - name flowchart category Package revision 36572 -shortdesc Shapes for drawing flowcharts, using TikZ. +shortdesc Shapes for drawing flowcharts, using TikZ relocated 1 longdesc The package provides a set of 'traditional' flowchart element longdesc shapes; the documentation shows how to build a flowchart from longdesc these elements, using pgf/TikZ. The package also requires the longdesc makeshape package. -runfiles size=3 - RELOC/tex/latex/flowchart/flowchart.sty +containersize 2084 +containerchecksum 9adc1f823378fcfaed58e99727b68389b97bc489ba38995e5e7451608cb712dd7fe02b2686f692328b73d1bc8011131017b8edcebcda5e886f3bb4a0f6aed65a +doccontainersize 412796 +doccontainerchecksum 0bbc3f1f56f5adbabca07096804412b33e93669e20af345e57bc9ad42133ab629b9546887599b472dacc8ee43b9c395f8c2e58a288c487e78920be1db5a110aa docfiles size=108 - RELOC/doc/latex/flowchart/README - RELOC/doc/latex/flowchart/flowchart.pdf + RELOC/doc/latex/flowchart/README details="Readme" + RELOC/doc/latex/flowchart/flowchart.pdf details="Package documentation" +srccontainersize 9592 +srccontainerchecksum 5ea69b98cca431225564482ed0597be71fe45e9ed933f4417059f4cf16401ba82987f90617e57a5428a42d03c0877969579a2b976a2c48d439d0dab7af0a6179 srcfiles size=13 RELOC/source/latex/flowchart/flowchart.dtx RELOC/source/latex/flowchart/flowchart.ins +runfiles size=3 + RELOC/tex/latex/flowchart/flowchart.sty +catalogue-also nassflow struktex catalogue-ctan /graphics/pgf/contrib/flowchart -catalogue-date 2015-03-20 05:10:16 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics diagram-flow pgf-tikz catalogue-version 3.3 name flowfram category Package revision 35291 -shortdesc Create text frames for posters, brochures or magazines. +shortdesc Create text frames for posters, brochures or magazines relocated 1 longdesc The flowfram package enables you to create frames in a document longdesc such that the contents of the document environment flow from @@ -66887,16 +109797,17 @@ longdesc one frame to the next in the order in which they were defined. longdesc This is useful for creating posters or magazines, indeed any longdesc form of document that does not conform to the standard one or longdesc two column layout. -runfiles size=58 - RELOC/scripts/flowfram/flowfram.perl - RELOC/tex/latex/flowfram/flowfram.sty +containersize 24376 +containerchecksum 880869c22914392c4ade9dddeaffb20d6c6edb6da78d30705d9f6aa1b1352ba2734565fa8c2a6851e81f1107573753748d3f4d208bbbc4c0dc443c066e912719 +doccontainersize 1763756 +doccontainerchecksum 25924c121d2feedc7d815e4510b89f05000eef87efae8039c6566136b7fa92d6d4d9f25f2938363dcce8222d5c824d42894e4863b95e422b7949207a1e1daccf docfiles size=551 RELOC/doc/latex/flowfram/CHANGES - RELOC/doc/latex/flowfram/README - RELOC/doc/latex/flowfram/ffuserguide.pdf + RELOC/doc/latex/flowfram/README details="Readme" + RELOC/doc/latex/flowfram/ffuserguide.pdf details="User guide" RELOC/doc/latex/flowfram/ffuserguide.tex RELOC/doc/latex/flowfram/ffuserguideidx.ist - RELOC/doc/latex/flowfram/flowfram.pdf + RELOC/doc/latex/flowfram/flowfram.pdf details="Package documentation" RELOC/doc/latex/flowfram/samples/egg.eps RELOC/doc/latex/flowfram/samples/egg.png RELOC/doc/latex/flowfram/samples/sample-article.pdf @@ -66926,59 +109837,80 @@ docfiles size=551 RELOC/doc/latex/flowfram/samples/sampleRL.tex RELOC/doc/latex/flowfram/samples/sheep.eps RELOC/doc/latex/flowfram/samples/sheep.png +srccontainersize 55788 +srccontainerchecksum 993d60da76f1144524f9ece2c5c9ba0eb38526111a7cbaf6bb5c669eea790c1ab9519f4e7dc2bc955c611fadf5771f2d9b6582d753b4cf3b79038b2bdd29837a srcfiles size=118 RELOC/source/latex/flowfram/flowfram.dtx RELOC/source/latex/flowfram/flowfram.ins +runfiles size=58 + RELOC/scripts/flowfram/flowfram.perl + RELOC/tex/latex/flowfram/flowfram.sty catalogue-ctan /macros/latex/contrib/flowfram -catalogue-date 2014-09-30 16:25:11 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics layout poster magazine catalogue-version 1.17 name fltpoint category Package revision 15878 -shortdesc Simple floating point arithmetic. +shortdesc Simple floating point arithmetic relocated 1 longdesc The package provides simple floating point operations longdesc (addition, subtraction, multiplication, division and rounding). longdesc Used, for example, by rccol. -runfiles size=7 - RELOC/tex/generic/fltpoint/deccomma.sty - RELOC/tex/generic/fltpoint/fltpoint.sty - RELOC/tex/generic/fltpoint/fltpoint.tex +containersize 3768 +containerchecksum 8991df799bab2ef9e9e7787123a61752260122ebda5491a22d8bd0aad88810bce93fd78e1fd6f79e58bd274684c2495225513d0f69591cc3e92a052ba51baa67 +doccontainersize 177668 +doccontainerchecksum 3b175372a197bdb243776d068e797e8f318200e6fb9cffd1ff612cd771a4c53e9e26b36079c2b392caa77b1ab430bf3ad7a6dc235a91f25662904ee702a84508 docfiles size=52 - RELOC/doc/generic/fltpoint/README - RELOC/doc/generic/fltpoint/fltpoint.pdf + RELOC/doc/generic/fltpoint/README details="Readme" + RELOC/doc/generic/fltpoint/fltpoint.pdf details="Package documentation" +srccontainersize 15152 +srccontainerchecksum da74554dbe3e21061ec4d0405a59f3705c821dacb359736d7c769536143b22ece17114ccba579ec4a0b941d37a6c60753dc8daaa6593b2df17335070c098861f srcfiles size=16 RELOC/source/generic/fltpoint/fltpoint.dtx RELOC/source/generic/fltpoint/fltpoint.ins +runfiles size=7 + RELOC/tex/generic/fltpoint/deccomma.sty + RELOC/tex/generic/fltpoint/fltpoint.sty + RELOC/tex/generic/fltpoint/fltpoint.tex +catalogue-also fp catalogue-ctan /macros/latex/contrib/fltpoint -catalogue-date 2013-09-30 11:48:44 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics arithmetic calculation catalogue-version 1.1b name fmp category Package revision 15878 -shortdesc Include Functional MetaPost in LaTeX. +shortdesc Include Functional MetaPost in LaTeX relocated 1 -runfiles size=2 - RELOC/tex/latex/fmp/fmp.sty +containersize 1752 +containerchecksum b87a361454199c16e1fbf97bd2b82f8b5569bbd71b7beaa780a6d88357e9262f77c9c3ce17d2ab0ad9b043ed7a1dd721e533c516e1b927f0439e13ced6598a30 +doccontainersize 130300 +doccontainerchecksum 461ee793dc8156b0ecd6931b9d4c56f368ce4938838b042abae5d6475ca3739c4fe47517168dba742f03c98229376f59f8654a89f1d65ab394c0dd907ac48ba1 docfiles size=38 - RELOC/doc/latex/fmp/README - RELOC/doc/latex/fmp/fmp.pdf + RELOC/doc/latex/fmp/README details="Readme" + RELOC/doc/latex/fmp/fmp.pdf details="Package documentation" +srccontainersize 8216 +srccontainerchecksum 912cfb9e0d4669c5d128ace088190ab4c5f90e371b45f1e399346816d606ef3f96901775a51b5f89a8670abd1b08e159587c9eab4ee6383c12e260d26e070034 srcfiles size=8 RELOC/source/latex/fmp/fmp-doc.hs RELOC/source/latex/fmp/fmp.dtx RELOC/source/latex/fmp/fmp.ins +runfiles size=2 + RELOC/tex/latex/fmp/fmp.sty catalogue-ctan /macros/latex/contrib/fmp -catalogue-date 2012-04-06 15:13:57 +0200 +catalogue-date 2016-06-18 16:48:54 +0200 catalogue-license lppl +catalogue-topics graphics-inline name fmtcount category Package -revision 37298 -shortdesc Display the value of a LaTeX counter in a variety of formats. +revision 46159 +shortdesc Display the value of a LaTeX counter in a variety of formats relocated 1 longdesc The package provides commands that display the value of a LaTeX longdesc counter in a variety of formats (ordinal, text, hexadecimal, @@ -66989,11 +109921,27 @@ longdesc Swiss variants), German, Italian, Portuguese and Spanish longdesc documents are provided. This package was originally provided as longdesc part of the author's datetime package, but is now distributed longdesc separately. -runfiles size=68 +containersize 26396 +containerchecksum 847b8337131417ef6ae30469b6a8780539511e08eb3d2723df0a444d48a427b18a723e2c6da8d88ee65c04a47d2d8796ae95afea61302d77efab3e3e584ca8c7 +doccontainersize 394436 +doccontainerchecksum 6fc1958d288d657929d503301e6dc0c68c475ce03f270767fccdc6d2c95a58809704bccee3122763992a24817fb5072844c3a50fef99dd541c0dceaf12a13fc7 +docfiles size=142 + RELOC/doc/latex/fmtcount/CHANGES + RELOC/doc/latex/fmtcount/README details="Package README" + RELOC/doc/latex/fmtcount/fc-lang.tex + RELOC/doc/latex/fmtcount/fc-typeout-languages.tex + RELOC/doc/latex/fmtcount/fmtcount.pdf details="Package documentation" +srccontainersize 47600 +srccontainerchecksum f7cee2dec2189c65500c58d349b6273014c6273ca703f809cc7e5843136d70ada0f4baec6ff139543fdc9d5648f86c81fd4db63102df4240266c52cf19ab3c65 +srcfiles size=79 + RELOC/source/latex/fmtcount/fmtcount.dtx + RELOC/source/latex/fmtcount/fmtcount.ins +runfiles size=71 RELOC/scripts/fmtcount/fmtcount.perl RELOC/tex/latex/fmtcount/fc-UKenglish.def RELOC/tex/latex/fmtcount/fc-USenglish.def RELOC/tex/latex/fmtcount/fc-american.def + RELOC/tex/latex/fmtcount/fc-brazilian.def RELOC/tex/latex/fmtcount/fc-british.def RELOC/tex/latex/fmtcount/fc-english.def RELOC/tex/latex/fmtcount/fc-francais.def @@ -67010,75 +109958,82 @@ runfiles size=68 RELOC/tex/latex/fmtcount/fcnumparser.sty RELOC/tex/latex/fmtcount/fcprefix.sty RELOC/tex/latex/fmtcount/fmtcount.sty -docfiles size=139 - RELOC/doc/latex/fmtcount/CHANGES - RELOC/doc/latex/fmtcount/README - RELOC/doc/latex/fmtcount/fc-frlargenum.tex - RELOC/doc/latex/fmtcount/fc-lang.tex - RELOC/doc/latex/fmtcount/fc-samp.tex - RELOC/doc/latex/fmtcount/fc-typeout-languages.tex - RELOC/doc/latex/fmtcount/fmtcount.pdf -srcfiles size=72 - RELOC/source/latex/fmtcount/fmtcount.dtx - RELOC/source/latex/fmtcount/fmtcount.ins +catalogue-contact-bugs https://github.com/nlct/fmtcount/issues +catalogue-contact-repository https://github.com/nlct/fmtcount catalogue-ctan /macros/latex/contrib/fmtcount -catalogue-date 2015-05-09 00:38:15 +0200 +catalogue-date 2017-12-27 23:42:13 +0100 catalogue-license lppl1.3 -catalogue-version 3.01 +catalogue-topics numbers +catalogue-version 3.05 name fn2end category Package revision 15878 -shortdesc Convert footnotes to endnotes. +shortdesc Convert footnotes to endnotes relocated 1 longdesc Defines macros \makeendnotes, which converts \footnote to longdesc produce endnotes; and \theendnotes which prints them out. -runfiles size=1 - RELOC/tex/latex/fn2end/fn2end.sty +containersize 1484 +containerchecksum 6be5c07123cf2470ca88b7c28c068c6dd308824138fd2f645a1a7c04c69fe84953468733ca2994faa42389b5889990941c8e09dc543b66a1589f3cf22df1e017 +doccontainersize 23016 +doccontainerchecksum 17f0a1d12afd607a26687b675ccc65a150e4ae67785389fe9582a3b05ee383f078bde35f296941ea069323757e1fccd1ae0e76e5e24f3446b4154738c1a45385 docfiles size=8 - RELOC/doc/latex/fn2end/fn2end.pdf + RELOC/doc/latex/fn2end/fn2end.pdf details="Package documentation" RELOC/doc/latex/fn2end/fn2end.tex +runfiles size=1 + RELOC/tex/latex/fn2end/fn2end.sty +catalogue-also endnotes catalogue-ctan /macros/latex/contrib/fn2end -catalogue-date 2012-06-14 17:25:45 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics footnote endnote catalogue-version 1.1 name fnbreak category Package revision 25003 -shortdesc Warn for split footnotes. +shortdesc Warn for split footnotes relocated 1 longdesc This package detects footnotes that are split over several longdesc pages, and writes a warning to the log file. -runfiles size=2 - RELOC/tex/latex/fnbreak/fnbreak.sty +containersize 1848 +containerchecksum 794e427d66efeb15920062e86b4a405e36604703f350c4e20f2c237b358eaf08aa22cc923c7995a7db22c117b48555fb92b136edbc94100af8e2046d49eb1fc4 +doccontainersize 206752 +doccontainerchecksum 0e8778265258304ec1cae1f2d21902ffd6f99af18527b86af064209da7f4c84e8ca6bdcb359000e3f0e9aa75819db1b375f8ae9f0a825291ee03398b6bf345bb docfiles size=61 RELOC/doc/latex/fnbreak/ChangeLog RELOC/doc/latex/fnbreak/Makefile - RELOC/doc/latex/fnbreak/README + RELOC/doc/latex/fnbreak/README details="Readme" RELOC/doc/latex/fnbreak/fnbreak-v.tex - RELOC/doc/latex/fnbreak/fnbreak.pdf + RELOC/doc/latex/fnbreak/fnbreak.pdf details="Package documentation" RELOC/doc/latex/fnbreak/fnbreak.xml RELOC/doc/latex/fnbreak/fnbreaktest.tex +srccontainersize 4432 +srccontainerchecksum 05b2586aacca96367889e328115780eaf25ae6af3179c71701c35fad2d98aab79730d23a67e165248793c58a9988442bb54bb653697fb81f1832bce847ec8b3c srcfiles size=5 RELOC/source/latex/fnbreak/fnbreak.dtx RELOC/source/latex/fnbreak/fnbreak.ins +runfiles size=2 + RELOC/tex/latex/fnbreak/fnbreak.sty catalogue-ctan /macros/latex/contrib/fnbreak -catalogue-date 2012-04-06 15:13:57 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics footnote catalogue-version 1.30 name fncychap category Package revision 20710 -shortdesc Seven predefined chapter heading styles. +shortdesc Seven predefined chapter heading styles relocated 1 longdesc Each style can be modified using a set of simple commands. longdesc Optionally one can modify the formatting routines in order to longdesc create additional chapter headings. This package was previously longdesc known as FancyChapter. -runfiles size=5 - RELOC/tex/latex/fncychap/fncychap.sty +containersize 5104 +containerchecksum 83d74f4bcd8fa90cdf5d0b6e03e9e8e36ab09884998f9955647928ed0a33924735d236a82cc730412edbf54485ec8c357ba3954a264965f67752e397908ba295 +doccontainersize 278568 +doccontainerchecksum 6a8c6910f0790457c71cd55c8d30d07df81c97f80a8b6b7930c067966c76c47848142cdcb7454c4b63a154c5c653933bf71acbd792c06eafdc496c92e4bc5806 docfiles size=291 RELOC/doc/latex/fncychap/Bjarne.eps RELOC/doc/latex/fncychap/Bjarnes.eps @@ -67090,23 +110045,27 @@ docfiles size=291 RELOC/doc/latex/fncychap/Glenns.eps RELOC/doc/latex/fncychap/Lenny.eps RELOC/doc/latex/fncychap/Lennys.eps - RELOC/doc/latex/fncychap/README + RELOC/doc/latex/fncychap/README details="Readme" RELOC/doc/latex/fncychap/Rejne.eps RELOC/doc/latex/fncychap/Rejnes.eps RELOC/doc/latex/fncychap/Sonny.eps RELOC/doc/latex/fncychap/Sonnys.eps - RELOC/doc/latex/fncychap/fncychap.pdf + RELOC/doc/latex/fncychap/fncychap.pdf details="Package documentation, with examples" RELOC/doc/latex/fncychap/fncychap.tex RELOC/doc/latex/fncychap/manifest.txt +runfiles size=5 + RELOC/tex/latex/fncychap/fncychap.sty +catalogue-also memoirchapterstyles catalogue-ctan /macros/latex/contrib/fncychap -catalogue-date 2012-04-06 15:13:57 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 -catalogue-version v1.34 +catalogue-topics headings +catalogue-version 1.34 name fncylab category Package revision 17382 -shortdesc Alter the format of \label references. +shortdesc Alter the format of \label references relocated 1 longdesc LaTeX provides a mechanism for altering the appearance of longdesc references to labels, but it's somewhat flawed, and requires @@ -67115,21 +110074,28 @@ longdesc the problem, by providing a \labelformat command for changing longdesc the format of references to labels. The package also provides a longdesc \Ref command to make reference to such redefined labels at the longdesc start of a sentence. -runfiles size=1 - RELOC/tex/latex/fncylab/fncylab.sty +containersize 1608 +containerchecksum 96d2b01d39fb2105e10c46941c896c7ffcfbdd82df8ccb91305e72aa23b67db6c06fab0e2ee41f84f07f3deb809f213b809a284017ca828c8ecd145e3ecb2ef6 +doccontainersize 203100 +doccontainerchecksum 7c8274fdc4a81f800b82d976bc55b7fe42b8eefcb608f77be6de8e122448c7942f190098cfc14605de269ba518cb882439f2e675271b57c46cc203e277e839ac docfiles size=54 RELOC/doc/latex/fncylab/fncylab-example.tex - RELOC/doc/latex/fncylab/fncylab.pdf + RELOC/doc/latex/fncylab/fncylab.pdf details="Package documentation" RELOC/doc/latex/fncylab/fncylab.tex +runfiles size=1 + RELOC/tex/latex/fncylab/fncylab.sty +catalogue-contact-repository https://github.com/rf-latex/fncylab +catalogue-contact-support https://github.com/rf-latex/fncylab/issues catalogue-ctan /macros/latex/contrib/fncylab -catalogue-date 2012-04-06 15:13:57 +0200 +catalogue-date 2018-09-15 15:39:16 +0200 catalogue-license lppl +catalogue-topics label-ref catalogue-version 1.0 name fnpara category Package revision 25607 -shortdesc Footnotes in paragraphs. +shortdesc Footnotes in paragraphs relocated 1 longdesc Typeset footnotes in run-on paragraphs, instead of one above longdesc another; this is a re-seating, for the LaTeX environment, of an @@ -67137,39 +110103,79 @@ longdesc example in the TeXbook. The same basic code, improved for use longdesc in e-TeX-based LaTeX, appears in the comprehensive footnote longdesc package footmisc, and superior versions are also available in longdesc the manyfoot and bigfoot packages. -runfiles size=2 - RELOC/tex/latex/fnpara/fnpara.sty +containersize 3076 +containerchecksum 620aafcef4ec7fdaf5cd732551fddbfce53222cb7540dd370f2cda425e1782c907e59868953f50acfff993a8fd8a84d108da7992f1c1565cbfa889a5ca0ef5d0 +doccontainersize 175136 +doccontainerchecksum 798c7fb03a8fb20695ed63ba1333686d21832a936a74a93ca77c7614346316234b2255b8e0340dd87fd57bc1480f23df24381107fc81c68cd4c0cd594ddf5329 docfiles size=45 - RELOC/doc/latex/fnpara/fnpara-doc.pdf + RELOC/doc/latex/fnpara/fnpara-doc.pdf details="Package documentation" RELOC/doc/latex/fnpara/fnpara-doc.tex +runfiles size=2 + RELOC/tex/latex/fnpara/fnpara.sty catalogue-ctan /macros/latex/contrib/fnpara -catalogue-date 2012-03-11 01:08:16 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics footnote name fnpct category Package -revision 36346 -shortdesc Manage footnote marks' interaction with punctuation. +revision 50046 +shortdesc Manage footnote marks' interaction with punctuation relocated 1 longdesc The package moves footnote marks after following punctuation longdesc (comma or full stop), and adjusts kerning as appropriate. As a longdesc side effect, a change to the handling of multiple footnotes is longdesc provided. +containersize 8260 +containerchecksum 932f64ea291deef0eb275e37a063c54d69dbcb4549a90a28d12ae0bb6fc9bf93b7dc9590e71d93139a47fe70bd01d25a1c43bfa05304b6e184ac3cc6accdcc08 +doccontainersize 585528 +doccontainerchecksum 57bb21b803ae776f130dee2db42d10a4ffe2c530d7787d7f69bcd439fd8a976f170363959d1a5c2cd33c955e8a3c79e2b87fe76de52b3aee37f50e693c5c5983 +docfiles size=153 + RELOC/doc/latex/fnpct/README details="Readme" + RELOC/doc/latex/fnpct/fnpct_en.pdf details="Package documentation" + RELOC/doc/latex/fnpct/fnpct_en.tex runfiles size=11 RELOC/tex/latex/fnpct/fnpct.sty -docfiles size=157 - RELOC/doc/latex/fnpct/README - RELOC/doc/latex/fnpct/fnpct_en.pdf - RELOC/doc/latex/fnpct/fnpct_en.tex +catalogue-contact-repository https://bitbucket.org/cgnieder/fnpct/ catalogue-ctan /macros/latex/contrib/fnpct -catalogue-date 2015-02-21 19:54:47 +0100 +catalogue-date 2019-02-17 16:59:26 +0100 catalogue-license lppl1.3 -catalogue-version 0.4c +catalogue-topics footnote +catalogue-version 0.4f + +name fnspe +category Package +revision 45360 +shortdesc Macros for supporting mainly students of FNSPE CTU in Prague +relocated 1 +longdesc This package is primary intended for students of FNSPE CTU in +longdesc Prague but many other students or scientists can found this +longdesc package as useful. This package implements different standards +longdesc of tensor notation, interval notation and complex notation. +longdesc Further many macros and shortcuts are added, e.q. for spaces, +longdesc operators, physics unit, etc. +containersize 2492 +containerchecksum 5e9af6b3b3136f49e49524c7fc85074fd75fff30826fcbb8dad358102e3eee6fa44037b7dde99b6556a063dbe4e819b27ef5a522999eb304f70c2785642478b3 +doccontainersize 170056 +doccontainerchecksum 733a099cac2d96ddf6593b9e0195b85c8d5e86f6a1b283f011a55acc4a1bb7391bfd4356c6aaa40d9b2c70a7c180886d64162eaa396a5a457fbea491af1b47c1 +docfiles size=54 + RELOC/doc/latex/fnspe/README details="Readme" + RELOC/doc/latex/fnspe/fnspe.pdf details="Package documentation" + RELOC/doc/latex/fnspe/fnspe.tex +runfiles size=2 + RELOC/tex/latex/fnspe/fnspe.sty +catalogue-contact-home https://bitbucket.org/Zemaster/fnspe-latex-package +catalogue-contact-repository https://bitbucket.org/Zemaster/fnspe-latex-package +catalogue-ctan /macros/latex/contrib/fnspe +catalogue-date 2017-09-20 10:22:38 +0200 +catalogue-license lppl +catalogue-topics dissertation +catalogue-version 1.2a name fntproof category Package revision 20638 -shortdesc A programmable font test pattern generator. +shortdesc A programmable font test pattern generator relocated 1 longdesc The package implements all the font testing commands of Knuth's longdesc testfont.tex, but arranges that information necessary for each @@ -67178,20 +110184,25 @@ longdesc prompted for. This makes it possible to type all the tests in longdesc one command line, and easy to input the package in a file and longdesc to use the commands there. A few additional commands supporting longdesc this last purpose are also made available. -runfiles size=4 - RELOC/tex/generic/fntproof/fntproof.tex +containersize 6592 +containerchecksum c1cdc018808a2b9fb5b91c54b55eddf3d517b8dc6062db1ffda3db154efe6f3abb91e61ce90a68743ce411ec614785974b4362f20f03ae398488ac1f816b3ba6 +doccontainersize 209564 +doccontainerchecksum cf9e8909ed030b27a57573cc257682da84b7f14c3c3775e17fdc8a2203fe99dda8797ae7b2599dc92e9684140102f6d1ca2147bbb437edcf8eb41ffd28b9a576 docfiles size=57 - RELOC/doc/generic/fntproof/README - RELOC/doc/generic/fntproof/fntproof-doc.pdf + RELOC/doc/generic/fntproof/README details="Readme" + RELOC/doc/generic/fntproof/fntproof-doc.pdf details="Package documentation" RELOC/doc/generic/fntproof/fntproof-doc.tex +runfiles size=4 + RELOC/tex/generic/fntproof/fntproof.tex catalogue-ctan /macros/generic/fntproof -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics font-devel name fnumprint category Package revision 29173 -shortdesc Print a number in 'appropriate' format. +shortdesc Print a number in 'appropriate' format relocated 1 longdesc The package defines two macros which decide to typeset a number longdesc either as an Arabic number or as a word (or words) for the @@ -67201,28 +110212,45 @@ longdesc outside that range, it will be typeset using the package longdesc numprint Words for English representation of numbers are longdesc generated within the package, while those for German are longdesc generated using the package zahl2string. -runfiles size=1 - RELOC/tex/latex/fnumprint/fnumprint.sty +containersize 1384 +containerchecksum 7f43363ff861fd4f887df68dd6daae6c97940d4cdd60b19563a966dc7c08cb88356a150eab0cb5b91bd4c3d5d47e324dbbfd43cf45872a5738c5f9b70766e047 +doccontainersize 254544 +doccontainerchecksum 44d6fdf74bf6c231a57b3fad63efa7eb1bdf5b4342cdb38e0d504c4c09190130d37534769e17c3f60bbad668d50aab064bc5c0a1ad99808a6d084dd1921769a9 docfiles size=64 - RELOC/doc/latex/fnumprint/README - RELOC/doc/latex/fnumprint/fnumprint.pdf + RELOC/doc/latex/fnumprint/README details="Readme" + RELOC/doc/latex/fnumprint/fnumprint.pdf details="Package documentation" +srccontainersize 4004 +srccontainerchecksum 3f6465877aa1dbf5ab021e8397725ec83217bd774ee0623e71cf15d746d7d0edeb2f78ce76dfd607568be75b67f4cfa8d3e1ddd29c0ada6d376f7b4fdfad86a9 srcfiles size=4 RELOC/source/latex/fnumprint/fnumprint.dtx RELOC/source/latex/fnumprint/fnumprint.ins +runfiles size=1 + RELOC/tex/latex/fnumprint/fnumprint.sty +catalogue-contact-repository https://github.com/ypid/latex-packages/tree/master/fnumprint catalogue-ctan /macros/latex/contrib/fnumprint -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 +catalogue-topics numbers catalogue-version 1.1a name foekfont category Package revision 15878 -shortdesc The title font of the Mads Fok magazine. +shortdesc The title font of the Mads Fok magazine relocated 1 longdesc The bundle provides an Adobe Type 1 font, and LaTeX support for longdesc its use. The magazine web site shows the font in use in a few longdesc places. execute addMap foekfont.map +containersize 8752 +containerchecksum 45342633aec41f2a5fe7213dc418960d76ff196a08b906965e3b68f2c5ed264b3192ea45756133f12662e451fcad11d08232995c0de2493495c40b9b59cef7ea +doccontainersize 95112 +doccontainerchecksum 7e1aa7a240d825c014be6af7be5cd7c1bbcbc6e52bd55be36f987b4a25223179bcc4c4d342906c10f9df624536252fe4dc5a45cd3b5ddb63f91e9f4c7401a239 +docfiles size=31 + RELOC/doc/latex/foekfont/FoekFont.sfd + RELOC/doc/latex/foekfont/README details="Package README" + RELOC/doc/latex/foekfont/foekfont.pdf details="Package documentation" + RELOC/doc/latex/foekfont/foekfont.tex runfiles size=8 RELOC/fonts/map/dvips/foekfont/foekfont.map RELOC/fonts/tfm/public/foekfont/foekfont.tfm @@ -67230,45 +110258,49 @@ runfiles size=8 RELOC/tex/latex/foekfont/foekfont.sty RELOC/tex/latex/foekfont/ot1foekfont.fd RELOC/tex/latex/foekfont/t1foekfont.fd -docfiles size=31 - RELOC/doc/latex/foekfont/FoekFont.sfd - RELOC/doc/latex/foekfont/README - RELOC/doc/latex/foekfont/foekfont.pdf - RELOC/doc/latex/foekfont/foekfont.tex catalogue-ctan /fonts/foekfont -catalogue-date 2014-04-26 20:03:33 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics font font-novelty font-type1 name foilhtml category Package revision 21855 -shortdesc Interface between foiltex and LaTeX2HTML. +shortdesc Interface between foiltex and LaTeX2HTML relocated 1 longdesc Provides integration between FoilTeX and LaTeX2HTML, adding longdesc sectioning commands and elements of logical formatting to longdesc FoilTeX and providing support for FoilTeX commands in longdesc LaTeX2HTML. -runfiles size=4 - RELOC/tex/latex/foilhtml/foilhtml.cfg - RELOC/tex/latex/foilhtml/foilhtml.sty +containersize 3628 +containerchecksum 80b177c1eb224dbbd086d3b8a0b10b3f0b3434e977c8d71b34a58f76a5a73757148b4e7438a275f1be186df51e36342de132940ebdde9608e7c741664ea200d7 +doccontainersize 5048 +doccontainerchecksum a24c9f048f7e1cf187d40f6eb3370cf68f6de80e24f2f72b077d782be5dcd369cf3a7ce9bc7d0a269c285d04cbb543481cf439710037a26a7597164492b277fb docfiles size=7 RELOC/doc/latex/foilhtml/foilhtml-96.perl RELOC/doc/latex/foilhtml/foils-97.perl RELOC/doc/latex/foilhtml/foils.perl RELOC/doc/latex/foilhtml/readme.v12 +srccontainersize 15700 +srccontainerchecksum a6fc97ea007ddddaef17cfb4bf86d75ee34a5525ee48b58b111188cf6a2e6269052c4f90d87ff3aa6157d1523fcca3f8f99471fef108cc8c1e69dffa7c6656ca srcfiles size=18 RELOC/source/latex/foilhtml/foilhtml.drv RELOC/source/latex/foilhtml/foilhtml.dtx RELOC/source/latex/foilhtml/foilhtml.ins +runfiles size=4 + RELOC/tex/latex/foilhtml/foilhtml.cfg + RELOC/tex/latex/foilhtml/foilhtml.sty +catalogue-contact-home http://users.lk.net/~borisv/latex.html catalogue-ctan /macros/latex/contrib/foilhtml -catalogue-date 2012-02-23 00:03:38 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl +catalogue-topics presentation catalogue-version 1.2 name fonetika category Package revision 21326 -shortdesc Support for the Danish "Dania" phonetic system. +shortdesc Support for the Danish "Dania" phonetic system relocated 1 longdesc Fonetika Dania is a font bundle with a serif font and a sans longdesc serif font for the danish phonetic system Dania. Both fonts @@ -67276,6 +110308,14 @@ longdesc exist in regular and bold weights. LaTeX support is provided. longdesc The fonts are based on URW Palladio and Iwona Condensed, and longdesc were created using FontForge. execute addMap fonetika.map +containersize 65336 +containerchecksum 4db9e50fde60ac69373f5abd151f3e17275f5c492b6855a7f5dd8895650a79cda1feda43398fffebbecdd6f7e032f8935972ef573f79ae1cccc5844dc148352b +doccontainersize 124928 +doccontainerchecksum ac3f0de2a9a5b5052d4ae626b4368f8b1fef419503cab9a88d4bf89db348c1a756555a6cef7aa70bcf733fa032840fe9ae7cfe347fb40bae32b54506e60ccf37 +docfiles size=36 + RELOC/doc/fonts/fonetika/README details="Package Readme" + RELOC/doc/fonts/fonetika/fonetika.pdf + RELOC/doc/fonts/fonetika/fonetika.tex runfiles size=37 RELOC/fonts/afm/public/fonetika/FonetikaDaniaIwonaeBold.afm RELOC/fonts/afm/public/fonetika/FonetikaDaniaIwonaeRegular.afm @@ -67296,99 +110336,14 @@ runfiles size=37 RELOC/fonts/type1/public/fonetika/FonetikaDaniaPallaeRegular.pfb RELOC/tex/latex/fonetika/fonetika.sty RELOC/tex/latex/fonetika/t1fonetika.fd -docfiles size=36 - RELOC/doc/fonts/fonetika/README - RELOC/doc/fonts/fonetika/fonetika.pdf - RELOC/doc/fonts/fonetika/fonetika.tex catalogue-ctan /fonts/fonetika -catalogue-date 2014-04-26 20:03:33 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free - -name fontawesome -category Package -revision 38051 -shortdesc Font containing web-related icons -relocated 1 -longdesc The package offers access to the large number of web-related -longdesc icons provided by the included font. The package requires the -longdesc package, fontspec, if run with XeTeX or LuaTeX. -execute addMap fontawesome.map -runfiles size=104 - RELOC/fonts/enc/dvips/fontawesome/fontawesomeone.enc - RELOC/fonts/enc/dvips/fontawesome/fontawesomethree.enc - RELOC/fonts/enc/dvips/fontawesome/fontawesometwo.enc - RELOC/fonts/map/dvips/fontawesome/fontawesome.map - RELOC/fonts/opentype/public/fontawesome/FontAwesome.otf - RELOC/fonts/tfm/public/fontawesome/FontAwesome--fontawesomeone.tfm - RELOC/fonts/tfm/public/fontawesome/FontAwesome--fontawesomethree.tfm - RELOC/fonts/tfm/public/fontawesome/FontAwesome--fontawesometwo.tfm - RELOC/fonts/type1/public/fontawesome/FontAwesome.pfb - RELOC/tex/latex/fontawesome/fontawesome.sty - RELOC/tex/latex/fontawesome/fontawesomesymbols-generic.tex - RELOC/tex/latex/fontawesome/fontawesomesymbols-pdftex.tex - RELOC/tex/latex/fontawesome/fontawesomesymbols-xeluatex.tex - RELOC/tex/latex/fontawesome/ufontawesomeone.fd - RELOC/tex/latex/fontawesome/ufontawesomethree.fd - RELOC/tex/latex/fontawesome/ufontawesometwo.fd -docfiles size=62 - RELOC/doc/fonts/fontawesome/README.md - RELOC/doc/fonts/fontawesome/fontawesome.pdf - RELOC/doc/fonts/fontawesome/fontawesome.tex -catalogue-ctan /fonts/fontawesome -catalogue-date 2015-08-03 05:43:12 +0200 -catalogue-license lppl1.3 -catalogue-topics font font-supp-symbol font-symbol font-otf font-type1 -catalogue-version 4.4.0 - -name fontaxes -category Package -revision 33276 -shortdesc Additional font axes for LaTeX. -relocated 1 -longdesc The package adds several new font axes on top of LaTeX's New -longdesc Font Selection Scheme. In particular, it splits the shape axis -longdesc into a primary and a secondary shape axis, and it adds three -longdesc new axes to deal with the different figure versions offered by -longdesc many professional fonts. -runfiles size=4 - RELOC/tex/latex/fontaxes/fontaxes.sty -docfiles size=33 - RELOC/doc/latex/fontaxes/README - RELOC/doc/latex/fontaxes/fontaxes.pdf - RELOC/doc/latex/fontaxes/test-fontaxes.tex -srcfiles size=12 - RELOC/source/latex/fontaxes/fontaxes.dtx - RELOC/source/latex/fontaxes/fontaxes.ins -catalogue-ctan /macros/latex/contrib/fontaxes -catalogue-date 2014-03-23 16:44:03 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0d - -name fontbook -category Package -revision 23608 -shortdesc Generate a font book. -relocated 1 -longdesc The package provides a means of producing a 'book' of font -longdesc samples (for evaluation, etc.). -runfiles size=1 - RELOC/tex/xelatex/fontbook/fontbook.sty -docfiles size=371 - RELOC/doc/xelatex/fontbook/README - RELOC/doc/xelatex/fontbook/fontbook-freefonts.pdf - RELOC/doc/xelatex/fontbook/fontbook-freefonts.tex - RELOC/doc/xelatex/fontbook/fontbook.pdf -srcfiles size=3 - RELOC/source/xelatex/fontbook/fontbook.dtx - RELOC/source/xelatex/fontbook/fontbook.ins -catalogue-ctan /macros/xetex/latex/fontbook -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.2 +catalogue-topics font font-specialist font-sans phonetic name font-change category Package -revision 38286 +revision 40403 shortdesc Macros to change text and mathematics fonts in plain TeX relocated 1 longdesc Macros to Change Text and Mathematics fonts in TeX: 45 @@ -67400,9 +110355,18 @@ longdesc one statement. The fonts may be used readily at various longdesc predefined sizes. All the fonts called by these macro files are longdesc free and are included in current MiKTeX and TeX Live longdesc distributions. -runfiles size=220 - RELOC/tex/plain/font-change/font-change.tex - RELOC/tex/plain/font-change/font-change_FRENCH.tex +containersize 19304 +containerchecksum 8ec91864d719d20ff66195ec1bab456d772417ff2d4d9ae75ecccafe0da616d1dfdf5b965be489a65eb28130b3672a5b55c33f3254f59c00cf204dcae6fd4eb7 +doccontainersize 1766316 +doccontainerchecksum 75f7e45fb5313d0bc1c333253aba2bcd1d650fb6c0baffce6e5c558b0e7aeaf2e697ea9412860b4049d2685cdee26d19f12d9a28184084ab9df66101b78b0361 +docfiles size=561 + RELOC/doc/plain/font-change/README.txt details="Readme" + RELOC/doc/plain/font-change/font-change.pdf details="Package documentation" + RELOC/doc/plain/font-change/font-change.tex + RELOC/doc/plain/font-change/font-change_FRENCH.pdf + RELOC/doc/plain/font-change/font-change_FRENCH.tex +runfiles size=135 + RELOC/tex/plain/font-change/default-amssymbols.tex RELOC/tex/plain/font-change/font_antp_euler.tex RELOC/tex/plain/font-change/font_antt-condensed-light.tex RELOC/tex/plain/font-change/font_antt-condensed-medium.tex @@ -67449,21 +110413,212 @@ runfiles size=220 RELOC/tex/plain/font-change/font_palatino.tex RELOC/tex/plain/font-change/font_times.tex RELOC/tex/plain/font-change/font_utopia.tex -docfiles size=476 - RELOC/doc/plain/font-change/README.txt - RELOC/doc/plain/font-change/default-amssymbols.tex - RELOC/doc/plain/font-change/font-change.pdf - RELOC/doc/plain/font-change/font-change_FRENCH.pdf catalogue-ctan /macros/plain/contrib/font-change -catalogue-date 2015-09-02 22:32:21 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free catalogue-topics font-supp plain-ext catalogue-version 2015.2 +name font-change-xetex +category Package +revision 40404 +shortdesc Macros to change text and mathematics fonts in plain XeTeX +relocated 1 +longdesc This package consists of macros that can be used to typeset +longdesc "plain" XeTeX documents using any OpenType or TrueType font +longdesc installed on the computer system. The macros allow the user to +longdesc change the text mode fonts and some math mode fonts. For any +longdesc declared font family, various font style, weight, and size +longdesc variants like bold, italics, small caps, etc., are available +longdesc through standard and custom TeX control statements. Using the +longdesc optional argument of the macros, the available XeTeX font +longdesc features and OpenType tags can be accessed. Other features of +longdesc the package include activating and deactivating hanging +longdesc punctuation, and support for special Unicode characters. +containersize 6072 +containerchecksum 17de7c596a774c5c2e115704c2c57385f3fa90bf2dd49362547873453c27700537ab7f1e8a143c2ed49c90efe6aec234d3cf61643228bcba5b51c5ddcbb8bba9 +doccontainersize 558812 +doccontainerchecksum 138375750a4d493774cbd558c6aa910d04bf3f32337f773438d6bb31e16df3d96af3a6ea12d4940c785c04f98130977750058f7c0ef2425e0d8147b4ab882a64 +docfiles size=158 + RELOC/doc/xetex/font-change-xetex/README.txt details="Readme" + RELOC/doc/xetex/font-change-xetex/font-change-xetex.pdf details="Package documentation" + RELOC/doc/xetex/font-change-xetex/font-change-xetex.tex +runfiles size=13 + RELOC/tex/xetex/font-change-xetex/font-change-xetex.tex +catalogue-ctan /macros/xetex/plain/font-change-xetex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics font-supp plain-ext xetex +catalogue-version 2016.1 + +name fontawesome +category Package +revision 48145 +shortdesc Font containing web-related icons +relocated 1 +longdesc The package offers access to the large number of web-related +longdesc icons provided by the included font. The package requires the +longdesc package, fontspec, if run with XeTeX or LuaTeX. +execute addMap fontawesome.map +containersize 276180 +containerchecksum e08643104006c9e14c40bb965b4401a8fe296f43e5f39b285cd19d5aa0ed33602cc0eb6ffcc996e1d6e5aaa57dd906903324626ee40facdcb3cedc5216a3deb6 +doccontainersize 232920 +doccontainerchecksum bbd18a60db734922ea006ebd00b0c9f90c34907a7b519a08bf007daf01cceaaf6db3b31c3dd8c76e1dac199d4f7c312116f6935b764afb62248b7dcfd92ac78c +docfiles size=68 + RELOC/doc/fonts/fontawesome/README.md details="Readme" + RELOC/doc/fonts/fontawesome/fontawesome.pdf details="Package documentation" + RELOC/doc/fonts/fontawesome/fontawesome.tex +runfiles size=120 + RELOC/fonts/enc/dvips/fontawesome/fontawesomeone.enc + RELOC/fonts/enc/dvips/fontawesome/fontawesomethree.enc + RELOC/fonts/enc/dvips/fontawesome/fontawesometwo.enc + RELOC/fonts/map/dvips/fontawesome/fontawesome.map + RELOC/fonts/opentype/public/fontawesome/FontAwesome.otf + RELOC/fonts/tfm/public/fontawesome/FontAwesome--fontawesomeone.tfm + RELOC/fonts/tfm/public/fontawesome/FontAwesome--fontawesomethree.tfm + RELOC/fonts/tfm/public/fontawesome/FontAwesome--fontawesometwo.tfm + RELOC/fonts/type1/public/fontawesome/FontAwesome.pfb + RELOC/tex/latex/fontawesome/fontawesome.sty + RELOC/tex/latex/fontawesome/fontawesomesymbols-generic.tex + RELOC/tex/latex/fontawesome/fontawesomesymbols-pdftex.tex + RELOC/tex/latex/fontawesome/fontawesomesymbols-xeluatex.tex + RELOC/tex/latex/fontawesome/ufontawesomeone.fd + RELOC/tex/latex/fontawesome/ufontawesomethree.fd + RELOC/tex/latex/fontawesome/ufontawesometwo.fd +catalogue-contact-repository https://github.com/xdanaux/fontawesome-latex +catalogue-ctan /fonts/fontawesome +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics font font-supp-symbol font-symbol font-otf font-type1 +catalogue-version 4.6.3.2 + +name fontawesome5 +category Package +revision 50490 +shortdesc Font Awesome 5 with LaTeX support +relocated 1 +longdesc This package provides LaTeX support for the included "Font +longdesc Awesome 5 Free" icon set. These icons were designed by Fort +longdesc Awesome and released under the SIL OFL 1.1 license. The +longdesc commercial "Pro" version is also supported, if it is installed +longdesc and XeLaTeX or LuaLaTeX is used. +execute addMap fontawesome5.map +containersize 803888 +containerchecksum 63c82ca8f84ad5ce7a3553b586812a47270f26b9a2fa3bf477b53b68d34d1c6a664a5822f891e07a6634611f5d3939f2573bc87f1212acefcf64ff4445680a21 +doccontainersize 165328 +doccontainerchecksum 09be7af5166b0a8fee99e30fe8b9f3f77a82789ca7008334bbdbf8fe4a7cf2dc547f9caa94e6df1af9d913153c619a08b7502efa73abcd3b14ba2e2b38930c63 +docfiles size=42 + RELOC/doc/fonts/fontawesome5/README.md details="Readme" + RELOC/doc/fonts/fontawesome5/fontawesome5.pdf details="Package documentation" + RELOC/doc/fonts/fontawesome5/fontawesome5.tex +runfiles size=305 + RELOC/fonts/enc/dvips/fontawesome5/fa5brands0.enc + RELOC/fonts/enc/dvips/fontawesome5/fa5brands1.enc + RELOC/fonts/enc/dvips/fontawesome5/fa5free0.enc + RELOC/fonts/enc/dvips/fontawesome5/fa5free1.enc + RELOC/fonts/enc/dvips/fontawesome5/fa5free2.enc + RELOC/fonts/enc/dvips/fontawesome5/fa5free3.enc + RELOC/fonts/map/dvips/fontawesome5/fontawesome5.map + RELOC/fonts/opentype/public/fontawesome5/FontAwesome5Brands-Regular-400.otf + RELOC/fonts/opentype/public/fontawesome5/FontAwesome5Free-Regular-400.otf + RELOC/fonts/opentype/public/fontawesome5/FontAwesome5Free-Solid-900.otf + RELOC/fonts/tfm/public/fontawesome5/fa5brands0.tfm + RELOC/fonts/tfm/public/fontawesome5/fa5brands1.tfm + RELOC/fonts/tfm/public/fontawesome5/fa5free0regular.tfm + RELOC/fonts/tfm/public/fontawesome5/fa5free0solid.tfm + RELOC/fonts/tfm/public/fontawesome5/fa5free1regular.tfm + RELOC/fonts/tfm/public/fontawesome5/fa5free1solid.tfm + RELOC/fonts/tfm/public/fontawesome5/fa5free2regular.tfm + RELOC/fonts/tfm/public/fontawesome5/fa5free2solid.tfm + RELOC/fonts/tfm/public/fontawesome5/fa5free3solid.tfm + RELOC/fonts/type1/public/fontawesome5/FontAwesome5Brands-Regular.pfb + RELOC/fonts/type1/public/fontawesome5/FontAwesome5Free-Regular.pfb + RELOC/fonts/type1/public/fontawesome5/FontAwesome5Free-Solid.pfb + RELOC/tex/latex/fontawesome5/fontawesome5-generic-helper.sty + RELOC/tex/latex/fontawesome5/fontawesome5-mapping.def + RELOC/tex/latex/fontawesome5/fontawesome5-utex-helper.sty + RELOC/tex/latex/fontawesome5/fontawesome5.lua + RELOC/tex/latex/fontawesome5/fontawesome5.sty + RELOC/tex/latex/fontawesome5/tufontawesomebrands.fd + RELOC/tex/latex/fontawesome5/tufontawesomefree.fd + RELOC/tex/latex/fontawesome5/tufontawesomepro.fd + RELOC/tex/latex/fontawesome5/ufontawesomebrands0.fd + RELOC/tex/latex/fontawesome5/ufontawesomebrands1.fd + RELOC/tex/latex/fontawesome5/ufontawesomefree0.fd + RELOC/tex/latex/fontawesome5/ufontawesomefree1.fd + RELOC/tex/latex/fontawesome5/ufontawesomefree2.fd + RELOC/tex/latex/fontawesome5/ufontawesomefree3.fd +catalogue-also fontawesome +catalogue-ctan /fonts/fontawesome5 +catalogue-date 2019-03-20 08:28:51 +0100 +catalogue-license ofllppl1.3c +catalogue-topics font font-supp-symbol font-symbol font-otf font-type1 +catalogue-version 5.8.0 + +name fontaxes +category Package +revision 33276 +shortdesc Additional font axes for LaTeX +relocated 1 +longdesc The package adds several new font axes on top of LaTeX's New +longdesc Font Selection Scheme. In particular, it splits the shape axis +longdesc into a primary and a secondary shape axis, and it adds three +longdesc new axes to deal with the different figure versions offered by +longdesc many professional fonts. +containersize 3356 +containerchecksum 69aba944977a676c557d2015aac1058091b96b52a50da52cc733187b96ca02b7a8dedcbfc848198442a5f62c824ee9e977696677f9aae267579f09d2e1637f73 +doccontainersize 118452 +doccontainerchecksum f7e0986d9f811b6436ecfc42c943bc2b21b83cb94d8bdbd5daea3ab66fec5bff2033f56ad9509e9e9591b78e68dae1ea76e810bff51469583aba9c8b691898e0 +docfiles size=33 + RELOC/doc/latex/fontaxes/README details="Readme" + RELOC/doc/latex/fontaxes/fontaxes.pdf details="Package documentation" + RELOC/doc/latex/fontaxes/test-fontaxes.tex +srccontainersize 10124 +srccontainerchecksum 6c966d9c88e62d772b0a011acd77a81e73ea92130de23d0f676bdbdff1c65bb73f54e3abb03c744e6eb7a48c22f3bf0284c1a8ca1ab0538686586e737526156c +srcfiles size=12 + RELOC/source/latex/fontaxes/fontaxes.dtx + RELOC/source/latex/fontaxes/fontaxes.ins +runfiles size=4 + RELOC/tex/latex/fontaxes/fontaxes.sty +catalogue-ctan /macros/latex/contrib/fontaxes +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics font-use +catalogue-version 1.0d + +name fontbook +category Package +revision 23608 +shortdesc Generate a font book +relocated 1 +longdesc The package provides a means of producing a 'book' of font +longdesc samples (for evaluation, etc.). +containersize 1452 +containerchecksum 55ee9dc22aefcf91c7fe30f516bfbaea5d0b8c5423cec204bfb208ebfb4b2331ebdd65032eb6f2a9f8958f15fd47433a9c7884f49ff1f3900f1538f9f25d4fe4 +doccontainersize 1245344 +doccontainerchecksum 65eb7d3f6426d3dcb13ac9a0d5b396eb4c03586d9d2b3d842af9ae4ad98119e8721034de499eae485c5803873946f04af992ddd860d09a7131021027c14b5d4b +docfiles size=371 + RELOC/doc/xelatex/fontbook/README details="Readme" + RELOC/doc/xelatex/fontbook/fontbook-freefonts.pdf details="Sample usage (free fonts book)" + RELOC/doc/xelatex/fontbook/fontbook-freefonts.tex + RELOC/doc/xelatex/fontbook/fontbook.pdf details="Package documentation" +srccontainersize 3272 +srccontainerchecksum 8ecb0b7b4e5f00806a377acfa0198ef217faf0573930be1272d13d743d1e84db76f067afa7e7a665c4540536c1d888bdb702ea9c203a2a405389079aa49f71f7 +srcfiles size=3 + RELOC/source/xelatex/fontbook/fontbook.dtx + RELOC/source/xelatex/fontbook/fontbook.ins +runfiles size=1 + RELOC/tex/xelatex/fontbook/fontbook.sty +catalogue-ctan /macros/xetex/latex/fontbook +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics font-devel +catalogue-version 0.2 + name fontch category Package revision 17859 -shortdesc Changing fonts, sizes and encodings in Plain TeX. +shortdesc Changing fonts, sizes and encodings in Plain TeX relocated 1 longdesc The fontch macros allow the user to change font size and family longdesc anywhere in a plain TeX document. Sizes of 8, 10, 12, 14, 20 @@ -67479,24 +110634,30 @@ longdesc Unfortunately, it can no longer support earlier versions of the longdesc fonts, so an obsolete version of the package is retained for longdesc users who don't yet have access to the latest version of the longdesc fonts. +containersize 15420 +containerchecksum c8354fbcb6a13f2f874dd3df71f23ee1fcefdaaa1eab5166f35001811b9788ea2b53e5d5653437071d02978dc94b0a658bca5e2cfe825a0315d3389446b6c138 +doccontainersize 80572 +doccontainerchecksum a7c5f6622414d943a20745f7b02c3859d43d4f4ec0f9ffd3b2baec34e142c01474d8827c7b0fe5d1bebfa25d33224b26cd876e3457b7179097fd9539cb9d9444 +docfiles size=26 + RELOC/doc/plain/fontch/README details="Readme and usage details" + RELOC/doc/plain/fontch/fontch.pdf details="Package documentation" runfiles size=21 RELOC/tex/plain/fontch/DSmac.tex RELOC/tex/plain/fontch/TS1mac.tex RELOC/tex/plain/fontch/bsymbols.tex RELOC/tex/plain/fontch/fontch.tex RELOC/tex/plain/fontch/fontch_doc.tex -docfiles size=26 - RELOC/doc/plain/fontch/README - RELOC/doc/plain/fontch/fontch.pdf +catalogue-also font-selection ofs plnfss catalogue-ctan /macros/plain/contrib/fontch -catalogue-date 2012-07-06 22:53:14 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font-sel plain-ext catalogue-version 2.2 name fontinst category Package -revision 37078 -shortdesc Help with installing fonts for TeX and LaTeX. +revision 50602 +shortdesc Help with installing fonts for TeX and LaTeX longdesc TeX macros for converting Adobe Font Metric files to TeX metric longdesc and virtual font format. Fontinst helps mainly with the number longdesc crunching and shovelling parts of font installation. This means @@ -67511,79 +110672,12 @@ longdesc for files or work with binary file formats; those tasks must longdesc normally be done manually or with the help of some other tool, longdesc such as the pltotf and vptovf programs. depend fontinst.ARCH -runfiles size=255 - texmf-dist/scripts/texlive/fontinst.sh - texmf-dist/tex/fontinst/base/bbox.sty - texmf-dist/tex/fontinst/base/cfntinst.sty - texmf-dist/tex/fontinst/base/finstmsc.sty - texmf-dist/tex/fontinst/base/fontinst.ini - texmf-dist/tex/fontinst/base/fontinst.sty - texmf-dist/tex/fontinst/base/multislot.sty - texmf-dist/tex/fontinst/base/xfntinst.sty - texmf-dist/tex/fontinst/latinetx/8r.etx - texmf-dist/tex/fontinst/latinetx/8y.etx - texmf-dist/tex/fontinst/latinetx/ot1.etx - texmf-dist/tex/fontinst/latinetx/ot1c.etx - texmf-dist/tex/fontinst/latinetx/ot1cj.etx - texmf-dist/tex/fontinst/latinetx/ot1ctt.etx - texmf-dist/tex/fontinst/latinetx/ot1i.etx - texmf-dist/tex/fontinst/latinetx/ot1ij.etx - texmf-dist/tex/fontinst/latinetx/ot1itt.etx - texmf-dist/tex/fontinst/latinetx/ot1j.etx - texmf-dist/tex/fontinst/latinetx/ot1tt.etx - texmf-dist/tex/fontinst/latinetx/t1.etx - texmf-dist/tex/fontinst/latinetx/t1c.etx - texmf-dist/tex/fontinst/latinetx/t1cj.etx - texmf-dist/tex/fontinst/latinetx/t1i.etx - texmf-dist/tex/fontinst/latinetx/t1ij.etx - texmf-dist/tex/fontinst/latinetx/t1j.etx - texmf-dist/tex/fontinst/latinetx/txtfdmns.etx - texmf-dist/tex/fontinst/latinmtx/8r.mtx - texmf-dist/tex/fontinst/latinmtx/8y.mtx - texmf-dist/tex/fontinst/latinmtx/latin.mtx - texmf-dist/tex/fontinst/latinmtx/latinsc.mtx - texmf-dist/tex/fontinst/latinmtx/llbuild.mtx - texmf-dist/tex/fontinst/latinmtx/lsbuild.mtx - texmf-dist/tex/fontinst/latinmtx/lsfake.mtx - texmf-dist/tex/fontinst/latinmtx/lsmisc.mtx - texmf-dist/tex/fontinst/latinmtx/ltcmds.mtx - texmf-dist/tex/fontinst/latinmtx/ltpunct.mtx - texmf-dist/tex/fontinst/latinmtx/lubuild.mtx - texmf-dist/tex/fontinst/latinmtx/newlatin.mtx - texmf-dist/tex/fontinst/latinmtx/resetsc.mtx - texmf-dist/tex/fontinst/latinmtx/unsetalf.mtx - texmf-dist/tex/fontinst/mathetx/euex.etx - texmf-dist/tex/fontinst/mathetx/eufrak.etx - texmf-dist/tex/fontinst/mathetx/eurm.etx - texmf-dist/tex/fontinst/mathetx/euscr.etx - texmf-dist/tex/fontinst/mathetx/msam.etx - texmf-dist/tex/fontinst/mathetx/msbm.etx - texmf-dist/tex/fontinst/mathetx/oml.etx - texmf-dist/tex/fontinst/mathetx/oms.etx - texmf-dist/tex/fontinst/mathetx/omx.etx - texmf-dist/tex/fontinst/mathetx/rsfs.etx - texmf-dist/tex/fontinst/mathmtx/mathex.mtx - texmf-dist/tex/fontinst/mathmtx/mathit.mtx - texmf-dist/tex/fontinst/mathmtx/mathsy.mtx - texmf-dist/tex/fontinst/misc/csc2x.tex - texmf-dist/tex/fontinst/misc/csckrn2x.tex - texmf-dist/tex/fontinst/misc/glyphbox.mtx - texmf-dist/tex/fontinst/misc/glyphoff.mtx - texmf-dist/tex/fontinst/misc/glyphon.mtx - texmf-dist/tex/fontinst/misc/kernoff.mtx - texmf-dist/tex/fontinst/misc/kernon.mtx - texmf-dist/tex/fontinst/misc/osf2x.tex - texmf-dist/tex/fontinst/smbletx/digit2.etx - texmf-dist/tex/fontinst/smbletx/ts1.etx - texmf-dist/tex/fontinst/smbletx/ts1i.etx - texmf-dist/tex/fontinst/smbletx/ts1ij.etx - texmf-dist/tex/fontinst/smbletx/ts1j.etx - texmf-dist/tex/fontinst/smblmtx/resetosf.mtx - texmf-dist/tex/fontinst/smblmtx/textcomp.mtx - texmf-dist/tex/fontinst/smblmtx/unsetnum.mtx - texmf-dist/tex/latex/fontinst/fontdoc.sty -docfiles size=460 - texmf-dist/doc/fonts/fontinst/README +containersize 85796 +containerchecksum af57d72185dbfb0e169231b2dc0d7117722a5c1b4db7a9b2054d4848d1e5288e5dd5b6f0f0153f2e9dc87a13915fa77cf9286fce6d5afed7b541eb9e48024d98 +doccontainersize 1019488 +doccontainerchecksum e7774b46ac38bc2dd86ec8091ce4df364cf377b3864fac5d67ec0299e789ec10a171f8239c98f12775c750d023f69104a25b03f7bbc7dba15a2d1a7da3e70929 +docfiles size=463 + texmf-dist/doc/fonts/fontinst/README details="Readme" texmf-dist/doc/fonts/fontinst/encspecs/encspecs.tex texmf-dist/doc/fonts/fontinst/encspecs/omxdraft.etx texmf-dist/doc/fonts/fontinst/encspecs/ot1draft.etx @@ -67615,9 +110709,9 @@ docfiles size=460 texmf-dist/doc/fonts/fontinst/examples/mathptmx/zrvhax.mtx texmf-dist/doc/fonts/fontinst/examples/mathptmx/zryhax.mtx texmf-dist/doc/fonts/fontinst/examples/mathptmx/zrykernx.mtx - texmf-dist/doc/fonts/fontinst/manual/fontinst.pdf + texmf-dist/doc/fonts/fontinst/manual/fontinst.pdf details="Package documentation" texmf-dist/doc/fonts/fontinst/manual/fontinst.tex - texmf-dist/doc/fonts/fontinst/manual/intro98.pdf + texmf-dist/doc/fonts/fontinst/manual/intro98.pdf details="Package introductioon" texmf-dist/doc/fonts/fontinst/manual/intro98.tex texmf-dist/doc/fonts/fontinst/manual/roadmap.eps texmf-dist/doc/fonts/fontinst/talks/et99-font-tables.pdf @@ -67656,6 +110750,8 @@ docfiles size=460 texmf-dist/doc/fonts/fontinst/test/v1931test2.tex texmf-dist/doc/man/man1/fontinst.1 texmf-dist/doc/man/man1/fontinst.man1.pdf +srccontainersize 410340 +srccontainerchecksum 2f6deccf77ca8325a105ac187da3f4d6cd038ce7bbf174c57724b73836d662d3514355ff7d51ff51ec4ffae2f55871510817834cdd8c0431061e310ef20c3093 srcfiles size=469 texmf-dist/source/fontinst/base/CHANGES texmf-dist/source/fontinst/base/fibasics.dtx @@ -67670,72 +110766,259 @@ srcfiles size=469 texmf-dist/source/fontinst/base/fisource.tex texmf-dist/source/fontinst/base/fitrig.dtx texmf-dist/source/fontinst/base/fontinst.ins +runfiles size=255 + texmf-dist/scripts/texlive/fontinst.sh + texmf-dist/tex/fontinst/base/bbox.sty + texmf-dist/tex/fontinst/base/cfntinst.sty + texmf-dist/tex/fontinst/base/finstmsc.sty + texmf-dist/tex/fontinst/base/fontinst.ini + texmf-dist/tex/fontinst/base/fontinst.sty + texmf-dist/tex/fontinst/base/multislot.sty + texmf-dist/tex/fontinst/base/xfntinst.sty + texmf-dist/tex/fontinst/latinetx/8r.etx + texmf-dist/tex/fontinst/latinetx/8y.etx + texmf-dist/tex/fontinst/latinetx/ot1.etx + texmf-dist/tex/fontinst/latinetx/ot1c.etx + texmf-dist/tex/fontinst/latinetx/ot1cj.etx + texmf-dist/tex/fontinst/latinetx/ot1ctt.etx + texmf-dist/tex/fontinst/latinetx/ot1i.etx + texmf-dist/tex/fontinst/latinetx/ot1ij.etx + texmf-dist/tex/fontinst/latinetx/ot1itt.etx + texmf-dist/tex/fontinst/latinetx/ot1j.etx + texmf-dist/tex/fontinst/latinetx/ot1tt.etx + texmf-dist/tex/fontinst/latinetx/t1.etx + texmf-dist/tex/fontinst/latinetx/t1c.etx + texmf-dist/tex/fontinst/latinetx/t1cj.etx + texmf-dist/tex/fontinst/latinetx/t1i.etx + texmf-dist/tex/fontinst/latinetx/t1ij.etx + texmf-dist/tex/fontinst/latinetx/t1j.etx + texmf-dist/tex/fontinst/latinetx/txtfdmns.etx + texmf-dist/tex/fontinst/latinmtx/8r.mtx + texmf-dist/tex/fontinst/latinmtx/8y.mtx + texmf-dist/tex/fontinst/latinmtx/latin.mtx + texmf-dist/tex/fontinst/latinmtx/latinsc.mtx + texmf-dist/tex/fontinst/latinmtx/llbuild.mtx + texmf-dist/tex/fontinst/latinmtx/lsbuild.mtx + texmf-dist/tex/fontinst/latinmtx/lsfake.mtx + texmf-dist/tex/fontinst/latinmtx/lsmisc.mtx + texmf-dist/tex/fontinst/latinmtx/ltcmds.mtx + texmf-dist/tex/fontinst/latinmtx/ltpunct.mtx + texmf-dist/tex/fontinst/latinmtx/lubuild.mtx + texmf-dist/tex/fontinst/latinmtx/newlatin.mtx + texmf-dist/tex/fontinst/latinmtx/resetsc.mtx + texmf-dist/tex/fontinst/latinmtx/unsetalf.mtx + texmf-dist/tex/fontinst/mathetx/euex.etx + texmf-dist/tex/fontinst/mathetx/eufrak.etx + texmf-dist/tex/fontinst/mathetx/eurm.etx + texmf-dist/tex/fontinst/mathetx/euscr.etx + texmf-dist/tex/fontinst/mathetx/msam.etx + texmf-dist/tex/fontinst/mathetx/msbm.etx + texmf-dist/tex/fontinst/mathetx/oml.etx + texmf-dist/tex/fontinst/mathetx/oms.etx + texmf-dist/tex/fontinst/mathetx/omx.etx + texmf-dist/tex/fontinst/mathetx/rsfs.etx + texmf-dist/tex/fontinst/mathmtx/mathex.mtx + texmf-dist/tex/fontinst/mathmtx/mathit.mtx + texmf-dist/tex/fontinst/mathmtx/mathsy.mtx + texmf-dist/tex/fontinst/misc/csc2x.tex + texmf-dist/tex/fontinst/misc/csckrn2x.tex + texmf-dist/tex/fontinst/misc/glyphbox.mtx + texmf-dist/tex/fontinst/misc/glyphoff.mtx + texmf-dist/tex/fontinst/misc/glyphon.mtx + texmf-dist/tex/fontinst/misc/kernoff.mtx + texmf-dist/tex/fontinst/misc/kernon.mtx + texmf-dist/tex/fontinst/misc/osf2x.tex + texmf-dist/tex/fontinst/smbletx/digit2.etx + texmf-dist/tex/fontinst/smbletx/ts1.etx + texmf-dist/tex/fontinst/smbletx/ts1i.etx + texmf-dist/tex/fontinst/smbletx/ts1ij.etx + texmf-dist/tex/fontinst/smbletx/ts1j.etx + texmf-dist/tex/fontinst/smblmtx/resetosf.mtx + texmf-dist/tex/fontinst/smblmtx/textcomp.mtx + texmf-dist/tex/fontinst/smblmtx/unsetnum.mtx + texmf-dist/tex/latex/fontinst/fontdoc.sty catalogue-ctan /fonts/utilities/fontinst -catalogue-date 2012-07-06 12:12:34 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font-cvt catalogue-version 1.933 +name fontinst.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of fontinst +containersize 344 +containerchecksum f49d3020934eb2bdcafec091972bef42a6e072203fdc9d3502a18f5a6d4c30adff9451a5f937ecacf2d75885cb3eac52b30a4f6779e87a805aa76d19775c00ea +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/fontinst + +name fontinst.amd64-freebsd +category Package +revision 29785 +shortdesc amd64-freebsd files of fontinst +containersize 348 +containerchecksum edea4bc45477ff969c9857e78577ad55e255c48a8decb93c2e77657b9eaeb24e019a75acf2c4a419d3b610eee6d383aa4081f46dfd2a0bae5431bd1911a1c4b1 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/fontinst + +name fontinst.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of fontinst +containersize 344 +containerchecksum 4865718a5995c92c168cab28d9507f058557bd3e01d962db4af1e1ecc33dc8cf32c1563a6e9d269b706dcec60cca6e21483fe0d1d1a43f02bd4292d8b895aee8 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/fontinst + +name fontinst.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of fontinst +containersize 344 +containerchecksum 5729aafbd822a17fff3391de35be7cb590c09857a6d5f7653c6c5c748cef98cb4f1ff11d150533b66ca7d5ee3ee8bc566e8ca07d71f8387fe36a0971eee3b987 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/fontinst + +name fontinst.i386-cygwin +category Package +revision 29836 +shortdesc i386-cygwin files of fontinst +containersize 344 +containerchecksum 8a49d9110c149e98e48f100a6f82a36e9b4c43d45e0723f4bee656bb28a3ab8786a4f0fcd3f30b5beaf4019027d7afe4be443dea2f8fd4e0b9f289b1e1623830 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/fontinst + +name fontinst.i386-freebsd +category Package +revision 29785 +shortdesc i386-freebsd files of fontinst +containersize 344 +containerchecksum adaca3d847223b93bf38b42a8e7363a70075a5590936da708c0c5f2dc58aba3f474ab5dec1ddfa7731f61db5cdd4a97c9ad94a647c9ec4f778bd294dc7f1da18 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/fontinst + name fontinst.i386-linux category Package revision 29741 shortdesc i386-linux files of fontinst +containersize 344 +containerchecksum f0188e96d5eddb3d3924293a40af437f89d93b8919555e527d844a066d32da5829d2613ad93ea63bbea9185f420a5002eaf0383d6b43bcd55852f6ad1b3238ae binfiles arch=i386-linux size=1 bin/i386-linux/fontinst +name fontinst.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of fontinst +containersize 344 +containerchecksum 45c2253675a0d30df15b13ffd9bdace219170cda41ef6293e8e02166fc0dff14993a321b969712f0681525ce2bb547ba51cb7549930ec2ee79a050d23bdf4f6c +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/fontinst + +name fontinst.i386-solaris +category Package +revision 29806 +shortdesc i386-solaris files of fontinst +containersize 344 +containerchecksum f078c7983a80abc6631127d9c9f39315a8b11677ff0066f97005bb9e448c133df62034fcd0f2bc1499404c59a3a17312c3f4ebab9b168f1b717c56d488033b0d +binfiles arch=i386-solaris size=1 + bin/i386-solaris/fontinst + +name fontinst.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of fontinst +containersize 348 +containerchecksum 98fb177b9ec7f88f29abe0131836de8f0e20e0a582d2a4a5741cc02da5dc20157cd97d324359b063bf694531c5ad1dd28c60fdda25444552a4ee0148dbdda91e +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/fontinst + +name fontinst.x86_64-darwin +category Package +revision 29809 +shortdesc x86_64-darwin files of fontinst +containersize 348 +containerchecksum 1e365363d0cfe9f9ba97323fa7b6aff3d29e9bf8fdcd94cc7bd12ed792ef2d249975f15bc30c43b0b161f04ed8e28dbdf1b84e4e7af833943976310962b13db8 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/fontinst + +name fontinst.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of fontinst +containersize 352 +containerchecksum dbcd21a25f72014cb6ff29687e9540e44afb35308668d7c45caeb7a4e171b7a0b3257e057a923db9c8d59dda58d66d4359f2182f7bbfc67ca0dd4f8dd6e236e3 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/fontinst + +name fontinst.x86_64-linux +category Package +revision 29820 +shortdesc x86_64-linux files of fontinst +containersize 344 +containerchecksum 0e9fc5eed815322ed9849b377ed6c7af45145fb7a5271fef07317d5ab25e79399aa81f0dec377dcab90beb52608b967eddd3a7fa0ad365c114ae238797317a0a +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/fontinst + +name fontinst.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of fontinst +containersize 348 +containerchecksum d480f2e9e6e1cfc0f678a88bd9351d290ced3ae44ebf9dd4d8814c9187824054c1ad86c852caf983c49e00a46c6375f555182151cf9aa7d8d3c268bb669ab384 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/fontinst + +name fontinst.x86_64-solaris +category Package +revision 29807 +shortdesc x86_64-solaris files of fontinst +containersize 344 +containerchecksum 84ac8cadcc5304a20b40e6784a5d37d838a4a9172a554371a3ddd7ee004ee2a2134ec0889ae4676118ad751f7c83be3161d689b9329e1561a38f64f6994b16fa +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/fontinst + name fontmfizz category Package -revision 35892 -shortdesc Font Mfizz icons for use in LaTeX. +revision 43546 +shortdesc Font Mfizz icons for use in LaTeX relocated 1 longdesc The MFizz font provides scalable vector icons representing longdesc programming languages, operating systems, software engineering, longdesc and technology. It can be seen as an extension to FontAwesome. longdesc This package requires the fontspec package and either the longdesc Xe(La)TeX or Lua(La)TeX engine to load the included ttf font. -runfiles size=15 - RELOC/fonts/truetype/public/fontmfizz/font-mfizz.ttf - RELOC/tex/latex/fontmfizz/fontmfizz.sty -docfiles size=13 +containersize 39608 +containerchecksum 43febb41a8bd7b0a89a2b60b52f9b83e0d0fa8303c0a7986658a95c93307ba6642fe07f8ac935ccb50b3047bc74100cc7268fde438d3ff80c944ac59afa6e3df +doccontainersize 55148 +doccontainerchecksum 6dc0f6c10d44a17d42d8ed4148f39bf89c84dd5a3a672755340456b0ab983b1b52cbd3bb62cd6f5ef4c3f6dfed8a39568d5ca35598c4b016483fcf7d3cdeb360 +docfiles size=17 RELOC/doc/fonts/fontmfizz/LICENSE - RELOC/doc/fonts/fontmfizz/README - RELOC/doc/fonts/fontmfizz/fontmfizz.pdf + RELOC/doc/fonts/fontmfizz/README details="Readme" + RELOC/doc/fonts/fontmfizz/fontmfizz.pdf details="List of symbols" RELOC/doc/fonts/fontmfizz/fontmfizz.tex +runfiles size=21 + RELOC/fonts/truetype/public/fontmfizz/font-mfizz.ttf + RELOC/tex/latex/fontmfizz/fontmfizz.sty +catalogue-also fontawesome +catalogue-contact-repository https://github.com/kdungs/latex-fontmfizz/ catalogue-ctan /fonts/fontmfizz -catalogue-date 2015-01-14 14:16:00 +0100 -catalogue-license other-free +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license mit +catalogue-topics font font-supp-symbol font-symbol font-ttf name fontname category Package -revision 38345 +revision 45930 shortdesc Scheme for naming fonts in TeX relocated 1 longdesc The scheme for assigning names is described (in the longdesc documentation part of the package), and map files giving the longdesc relation between foundry name and 'TeX-name' are also provided. -runfiles size=377 - RELOC/fonts/map/fontname/adobe.map - RELOC/fonts/map/fontname/apple.map - RELOC/fonts/map/fontname/bitstrea.map - RELOC/fonts/map/fontname/dtc.map - RELOC/fonts/map/fontname/itc.map - RELOC/fonts/map/fontname/linot-cd.map - RELOC/fonts/map/fontname/linotype-cd.map - RELOC/fonts/map/fontname/linotype.map - RELOC/fonts/map/fontname/monotype.map - RELOC/fonts/map/fontname/skey1250.map - RELOC/fonts/map/fontname/skey1555.map - RELOC/fonts/map/fontname/softkey-1250.map - RELOC/fonts/map/fontname/softkey-1555.map - RELOC/fonts/map/fontname/softkey.map - RELOC/fonts/map/fontname/special.map - RELOC/fonts/map/fontname/supplier.map - RELOC/fonts/map/fontname/texfonts.map - RELOC/fonts/map/fontname/typeface.map - RELOC/fonts/map/fontname/urw.map - RELOC/fonts/map/fontname/variant.map - RELOC/fonts/map/fontname/weight.map - RELOC/fonts/map/fontname/width.map - RELOC/fonts/map/fontname/yandy.map +containersize 108472 +containerchecksum 42412120cf59a9a3fe284c2d0dfdb0bdc4f8856ef1a2d814644290c772b00ad37f296fb66e83ed306a110602b314f6e7abd482180a0119bdd1dfbaa2233c77d5 +doccontainersize 679580 +doccontainerchecksum b6affbe821e1f127a5dd9962a7d89373108f57391648a15311de802ff555205ae864074d296690ac594377d00af5e4d375989b663c79e01408936c0bf934ea5e docfiles size=781 RELOC/doc/fonts/fontname/8a.html RELOC/doc/fonts/fontname/8r.html @@ -67770,8 +111053,8 @@ docfiles size=781 RELOC/doc/fonts/fontname/dvips.html RELOC/doc/fonts/fontname/fontname.aux RELOC/doc/fonts/fontname/fontname.cp - RELOC/doc/fonts/fontname/fontname.html - RELOC/doc/fonts/fontname/fontname.pdf + RELOC/doc/fonts/fontname/fontname.html details="Outline of the mapping scheme (HTML)" + RELOC/doc/fonts/fontname/fontname.pdf details="Outline of the mapping scheme (PDF)" RELOC/doc/fonts/fontname/fontname.texi RELOC/doc/fonts/fontname/fontname.toc RELOC/doc/fonts/fontname/index.html @@ -67783,32 +111066,52 @@ docfiles size=781 RELOC/doc/fonts/fontname/xl2.html RELOC/doc/fonts/fontname/xt2.html RELOC/doc/info/fontname.info +runfiles size=377 + RELOC/fonts/map/fontname/adobe.map + RELOC/fonts/map/fontname/apple.map + RELOC/fonts/map/fontname/bitstrea.map + RELOC/fonts/map/fontname/dtc.map + RELOC/fonts/map/fontname/itc.map + RELOC/fonts/map/fontname/linot-cd.map + RELOC/fonts/map/fontname/linotype-cd.map + RELOC/fonts/map/fontname/linotype.map + RELOC/fonts/map/fontname/monotype.map + RELOC/fonts/map/fontname/skey1250.map + RELOC/fonts/map/fontname/skey1555.map + RELOC/fonts/map/fontname/softkey-1250.map + RELOC/fonts/map/fontname/softkey-1555.map + RELOC/fonts/map/fontname/softkey.map + RELOC/fonts/map/fontname/special.map + RELOC/fonts/map/fontname/supplier.map + RELOC/fonts/map/fontname/texfonts.map + RELOC/fonts/map/fontname/typeface.map + RELOC/fonts/map/fontname/urw.map + RELOC/fonts/map/fontname/variant.map + RELOC/fonts/map/fontname/weight.map + RELOC/fonts/map/fontname/width.map + RELOC/fonts/map/fontname/yandy.map catalogue-ctan /info/fontname -catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-date 2016-11-04 04:57:17 +0100 catalogue-license gpl catalogue-topics font-doc name fontools category Package -revision 37381 -shortdesc Tools to simplify using fonts (especially TT/OTF ones). +revision 51148 +shortdesc Tools to simplify using fonts (especially TT/OTF ones) longdesc This package provides a few tools to ease using fonts -longdesc (especially Truetype/Opentype ones) with Latex and fontinst: +longdesc (especially TrueType/OpenType ones) with LaTeX and fontinst: longdesc afm2afm - reencode .afm files; designed to replace fontinst's longdesc \reencodefont for big .afm files; autoinst - simplify the use longdesc of the LCDF TypeTools by creating a command file for otftotfm, longdesc plus .fd and .sty files; and ot2kpx - extract all kerning pairs longdesc from an OpenType font. depend fontools.ARCH -runfiles size=36 - texmf-dist/fonts/enc/dvips/fontools/fontools_ly1.enc - texmf-dist/fonts/enc/dvips/fontools/fontools_ot1.enc - texmf-dist/fonts/enc/dvips/fontools/fontools_t1.enc - texmf-dist/fonts/enc/dvips/fontools/fontools_ts1.enc - texmf-dist/scripts/fontools/afm2afm - texmf-dist/scripts/fontools/autoinst - texmf-dist/scripts/fontools/ot2kpx -docfiles size=30 +containersize 39796 +containerchecksum 9b1189cf8113c620f561415ab324ab8d3e633ec089094ca749baea783bbae7de16340f2fc456da58d9dcd3987577fb84af63c0022fec1562cc1d7e1489796244 +doccontainersize 122180 +doccontainerchecksum e0a3600d286b9a7c3a5b4f44ed2f8d9cfa62ba5c080e57d8209e15b074e655266fd86aba45099563a3e969241e8139573ef52bada8e93a2b393a74f0a86f1612 +docfiles size=51 texmf-dist/doc/man/man1/afm2afm.1 texmf-dist/doc/man/man1/afm2afm.man1.pdf texmf-dist/doc/man/man1/autoinst.1 @@ -67816,58 +111119,245 @@ docfiles size=30 texmf-dist/doc/man/man1/ot2kpx.1 texmf-dist/doc/man/man1/ot2kpx.man1.pdf texmf-dist/doc/support/fontools/GPLv2.txt - texmf-dist/doc/support/fontools/README + texmf-dist/doc/support/fontools/README details="Bundle readme" +runfiles size=45 + texmf-dist/fonts/enc/dvips/fontools/fontools_lgr.enc + texmf-dist/fonts/enc/dvips/fontools/fontools_ly1.enc + texmf-dist/fonts/enc/dvips/fontools/fontools_ot1.enc + texmf-dist/fonts/enc/dvips/fontools/fontools_t1.enc + texmf-dist/fonts/enc/dvips/fontools/fontools_t2a.enc + texmf-dist/fonts/enc/dvips/fontools/fontools_t2b.enc + texmf-dist/fonts/enc/dvips/fontools/fontools_t2c.enc + texmf-dist/fonts/enc/dvips/fontools/fontools_ts1.enc + texmf-dist/scripts/fontools/afm2afm + texmf-dist/scripts/fontools/autoinst + texmf-dist/scripts/fontools/ot2kpx catalogue-ctan /fonts/utilities/fontools -catalogue-date 2015-05-13 20:24:12 +0200 +catalogue-date 2019-05-17 17:30:44 +0200 catalogue-license gpl2 +catalogue-topics font-devel + +name fontools.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of fontools +containersize 384 +containerchecksum c1e0b600c7406943b6b51286f639d1a4de7d79d90bedb1bbde4d54e2c1642dd0e5742c0865806de0f46ba478bc0d11b4ad8e1b9b786d4b9def032c10ce0948e2 +binfiles arch=aarch64-linux size=3 + bin/aarch64-linux/afm2afm + bin/aarch64-linux/autoinst + bin/aarch64-linux/ot2kpx + +name fontools.amd64-freebsd +category Package +revision 25997 +shortdesc amd64-freebsd files of fontools +containersize 388 +containerchecksum f9bfdeb9d331b87f32aa3e3e727214907d35a8f82aecc41b791d2464c764d7bc853891b467c8388867fac55d3770675be10637a6749eefe5dfde511d0595a530 +binfiles arch=amd64-freebsd size=3 + bin/amd64-freebsd/afm2afm + bin/amd64-freebsd/autoinst + bin/amd64-freebsd/ot2kpx + +name fontools.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of fontools +containersize 388 +containerchecksum 13944f6e952d7548d8d6ca10f7807ee550edabc939a5dab261cf88a3f36f60e924396d41afa1e9cca83ea5d464d667ce4bbf762652b09dbdb0842dd8a5dba615 +binfiles arch=amd64-netbsd size=3 + bin/amd64-netbsd/afm2afm + bin/amd64-netbsd/autoinst + bin/amd64-netbsd/ot2kpx + +name fontools.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of fontools +containersize 384 +containerchecksum 520bb5a616d12fff21e29bce6c152b54afed7e81a4b46620593a454b3c4539512e803a42ffcb93913d59a34d151656e4362ae3a823094266198f4a347521b0ce +binfiles arch=armhf-linux size=3 + bin/armhf-linux/afm2afm + bin/armhf-linux/autoinst + bin/armhf-linux/ot2kpx + +name fontools.i386-cygwin +category Package +revision 25997 +shortdesc i386-cygwin files of fontools +containersize 384 +containerchecksum 131290555951e101833b46b4197a7cd5e52118b85d45e1e3691dd56b8415b050482ab70f05a59dea3a0252eb61a5b6aa8c708333707135075a2efb0cbb583f74 +binfiles arch=i386-cygwin size=3 + bin/i386-cygwin/afm2afm + bin/i386-cygwin/autoinst + bin/i386-cygwin/ot2kpx + +name fontools.i386-freebsd +category Package +revision 25997 +shortdesc i386-freebsd files of fontools +containersize 388 +containerchecksum ee4dc5406db6f55105c2ae567177228dc2c22f949ba4624f7b8c1b8240a5858dca41aeb82a0647d1f29c9af357b88e4827d3f976c32d1a884f6f3d5d7ad6846b +binfiles arch=i386-freebsd size=3 + bin/i386-freebsd/afm2afm + bin/i386-freebsd/autoinst + bin/i386-freebsd/ot2kpx name fontools.i386-linux category Package revision 25997 shortdesc i386-linux files of fontools +containersize 384 +containerchecksum 88af549e8f656d518ceb1f3e13f2a769b318adc102b9fda859706918bd30c4659a84a4126fa9fab7c681bac28fbc6bf042ed1fd0284f230068d091725bdca93b binfiles arch=i386-linux size=3 bin/i386-linux/afm2afm bin/i386-linux/autoinst bin/i386-linux/ot2kpx -name fontspec +name fontools.i386-netbsd category Package -revision 37926 -shortdesc Advanced font selection in XeLaTeX and LuaLaTeX. -relocated 1 -longdesc Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an -longdesc automatic and unified interface to feature-rich AAT and -longdesc OpenType fonts through the NFSS in LaTeX running on XeTeX or -longdesc LuaTeX engines. The package requires the l3kernel and xparse -longdesc bundles from the LaTeX 3 development team. -depend iftex -depend kastrup -depend l3kernel -depend l3packages -depend lm -runfiles size=52 - RELOC/tex/latex/fontspec/fontspec-luatex.sty - RELOC/tex/latex/fontspec/fontspec-patches.sty - RELOC/tex/latex/fontspec/fontspec-xetex.sty - RELOC/tex/latex/fontspec/fontspec.cfg - RELOC/tex/latex/fontspec/fontspec.lua - RELOC/tex/latex/fontspec/fontspec.sty -docfiles size=251 - RELOC/doc/latex/fontspec/README - RELOC/doc/latex/fontspec/fontspec-example.tex - RELOC/doc/latex/fontspec/fontspec.pdf -srcfiles size=70 - RELOC/source/latex/fontspec/fontspec.dtx -catalogue-ctan /macros/latex/contrib/fontspec -catalogue-date 2015-07-22 20:45:45 +0200 -catalogue-license lppl1.3 -catalogue-topics font-sel luatex xetex -catalogue-version 2.4d +revision 30191 +shortdesc i386-netbsd files of fontools +containersize 384 +containerchecksum 5da5c588a27f74726d8ab047893faa5550b89b6fc4837be36df617315b3513dbda706d6b7ba09cedfe37fb627a60442dc6299dd9ac631b0c332ce0bae31dbe09 +binfiles arch=i386-netbsd size=3 + bin/i386-netbsd/afm2afm + bin/i386-netbsd/autoinst + bin/i386-netbsd/ot2kpx + +name fontools.i386-solaris +category Package +revision 25997 +shortdesc i386-solaris files of fontools +containersize 384 +containerchecksum 28fa6afba85a4426e49091ba003b0ced8753a63f0ccbdf005766e5757deb1dff7fe2f19ce62024e80cea43cb1cce455e8cb2b3d6ef32225aa64218355bd7f6fa +binfiles arch=i386-solaris size=3 + bin/i386-solaris/afm2afm + bin/i386-solaris/autoinst + bin/i386-solaris/ot2kpx + +name fontools.win32 +category Package +revision 25997 +shortdesc win32 files of fontools +containersize 728 +containerchecksum 44513712dca776dc08c7e7d150b118a95770f059839d185474509306d547646c626eb20abaac6e04b935a6c6e5912e74ffbbaef9180ac41ede7e111a74f69341 +binfiles arch=win32 size=3 + bin/win32/afm2afm.exe + bin/win32/autoinst.exe + bin/win32/ot2kpx.exe + +name fontools.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of fontools +containersize 388 +containerchecksum efdb5a8b98d2c992bbfbcd0ae8018bb8e8b18863f089da11b99af3ef28c698eba636f1c6e0acae15aacdab786b615fe7c712eee5b293c08b5b8d6b097d37cdc3 +binfiles arch=x86_64-cygwin size=3 + bin/x86_64-cygwin/afm2afm + bin/x86_64-cygwin/autoinst + bin/x86_64-cygwin/ot2kpx + +name fontools.x86_64-darwin +category Package +revision 25997 +shortdesc x86_64-darwin files of fontools +containersize 388 +containerchecksum c18fbf1ca8631a677d8bb563332e239f24dedfbaf65b479f69c06c7ddd3cbe8e9f803f1c00c4e8c755a7bbba81ec50688448dbb11784d0db74842bbedbd76552 +binfiles arch=x86_64-darwin size=3 + bin/x86_64-darwin/afm2afm + bin/x86_64-darwin/autoinst + bin/x86_64-darwin/ot2kpx + +name fontools.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of fontools +containersize 396 +containerchecksum 0f8a2c1eefe45f20137fa3b44387b2a80d76f95d02d4b20d3ded63a34970f0fe3b0e3623e62d382cb6ba9e3832e5f6a910fd494f22c28f862dfd894c226e71ad +binfiles arch=x86_64-darwinlegacy size=3 + bin/x86_64-darwinlegacy/afm2afm + bin/x86_64-darwinlegacy/autoinst + bin/x86_64-darwinlegacy/ot2kpx + +name fontools.x86_64-linux +category Package +revision 25997 +shortdesc x86_64-linux files of fontools +containersize 384 +containerchecksum acbb15b69e6a81e5d28aca9b6f36d639e0114f63d2aee04eb0575eacf5e26a17c488063a5fe1fbd7fb579fd9e4b59a11d97399b7dca84ab4d9f2121f49254ba1 +binfiles arch=x86_64-linux size=3 + bin/x86_64-linux/afm2afm + bin/x86_64-linux/autoinst + bin/x86_64-linux/ot2kpx + +name fontools.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of fontools +containersize 392 +containerchecksum 14dee3c84566f3047efe631271e65b10e1c10ae12df844b1f1a07e97f65658b3ccb027733cf4a0c78838776db937ac293b69ab6252dd031f4c35636aa21dc8c3 +binfiles arch=x86_64-linuxmusl size=3 + bin/x86_64-linuxmusl/afm2afm + bin/x86_64-linuxmusl/autoinst + bin/x86_64-linuxmusl/ot2kpx + +name fontools.x86_64-solaris +category Package +revision 25997 +shortdesc x86_64-solaris files of fontools +containersize 384 +containerchecksum 92ec0d59540e3ef21bda1679c1f1d59295aab6645ebc13f703d2c99c1dd6353d52f2309426d7f4ee5ddbb75feae85b6c3d081735737f0ad51d9e9c29b2cd0ac5 +binfiles arch=x86_64-solaris size=3 + bin/x86_64-solaris/afm2afm + bin/x86_64-solaris/autoinst + bin/x86_64-solaris/ot2kpx + +name fonts-churchslavonic +category Package +revision 43121 +shortdesc Fonts for typesetting in Church Slavonic language +relocated 1 +longdesc The package provides Unicode-encoded OpenType fonts for Church +longdesc Slavonic. +containersize 1497740 +containerchecksum ab57be2bda808cce456fe2fe75d0c9f7560d1ed376631c907723d156360f8f20f734d4a2379273c8b8378a6cc124376574c162e3f95c4588c688dce34fb49029 +doccontainersize 518596 +doccontainerchecksum 596ae1cb37b35ab59bc712653ec873250cded1968b3e4874295692812ad4001c6f352c396ef6d224571da630d730cbe41f98bc5a3a5374a2f9532f9424f7a0b9 +docfiles size=153 + RELOC/doc/fonts/fonts-churchslavonic/GPL.txt + RELOC/doc/fonts/fonts-churchslavonic/LICENSE + RELOC/doc/fonts/fonts-churchslavonic/OFL.txt + RELOC/doc/fonts/fonts-churchslavonic/README details="Readme" + RELOC/doc/fonts/fonts-churchslavonic/fonts-churchslavonic.pdf details="Package documentation" + RELOC/doc/fonts/fonts-churchslavonic/fonts-churchslavonic.tex + RELOC/doc/fonts/fonts-churchslavonic/opentype.png + RELOC/doc/fonts/fonts-churchslavonic/truetype.png +runfiles size=1049 + RELOC/fonts/opentype/public/fonts-churchslavonic/FedorovskUnicode.otf + RELOC/fonts/opentype/public/fonts-churchslavonic/IndictionUnicode.otf + RELOC/fonts/opentype/public/fonts-churchslavonic/MenaionUnicode.otf + RELOC/fonts/opentype/public/fonts-churchslavonic/MonomakhUnicode.otf + RELOC/fonts/opentype/public/fonts-churchslavonic/PomorskyUnicode.otf + RELOC/fonts/opentype/public/fonts-churchslavonic/PonomarUnicode.otf + RELOC/fonts/truetype/public/fonts-churchslavonic/FedorovskUnicode.ttf + RELOC/fonts/truetype/public/fonts-churchslavonic/IndictionUnicode.ttf + RELOC/fonts/truetype/public/fonts-churchslavonic/MenaionUnicode.ttf + RELOC/fonts/truetype/public/fonts-churchslavonic/MonomakhUnicode.ttf + RELOC/fonts/truetype/public/fonts-churchslavonic/PomorskyUnicode.ttf + RELOC/fonts/truetype/public/fonts-churchslavonic/PonomarUnicode.ttf +catalogue-also churchslavonic +catalogue-contact-repository https://github.com/typiconman/fonts-cu/ +catalogue-ctan /fonts/fonts-churchslavonic +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license ofl +catalogue-topics font font-otf churchslavonic +catalogue-version 1.1 name fonts-tlwg category Package -revision 34560 -shortdesc Thai fonts for LaTeX from TLWG. +revision 49085 +shortdesc Thai fonts for LaTeX from TLWG relocated 1 longdesc A collection of free Thai fonts, supplied as FontForge sources, longdesc and with LaTeX .fd files. This package depends on the thailatex @@ -67876,7 +111366,172 @@ execute addMap nectec.map execute addMap nf.map execute addMap sipa.map execute addMap tlwg.map -runfiles size=1440 +containersize 5008320 +containerchecksum 4d614651cab9a02809065b169f56685a7643a28d616f7b221dd6750c19bee5b4357ea003e4a0956fda585d73054288a2c7f60a8f1fa86650e2f175b08eaca35d +doccontainersize 4604 +doccontainerchecksum a0245c7b68836a8c80830fae693016fafd3b218340bcdcf2926ba88dc845759ddd7d02c7b50b025b6411667ce35f562ee6dd7cd9f2d7e8e7f0d6570184242987 +docfiles size=17 + RELOC/doc/fonts/fonts-tlwg/README.latex + RELOC/doc/fonts/fonts-tlwg/examples/testsans.tex + RELOC/doc/fonts/fonts-tlwg/examples/testscaled-120.tex + RELOC/doc/fonts/fonts-tlwg/examples/testscaled-65.tex + RELOC/doc/fonts/fonts-tlwg/examples/teststd.tex +srccontainersize 7672648 +srccontainerchecksum 3fe3ffd8a171c886764bcc435e9e8b38ddcd888b993d4864591a2e0a05ed27efa9cf9a8aa5ff8ab900856285a3cba5fda7adf8d7a600476adc4c546b408df5cb +srcfiles size=14678 + RELOC/source/fonts/fonts-tlwg/AUTHORS + RELOC/source/fonts/fonts-tlwg/COPYING + RELOC/source/fonts/fonts-tlwg/ChangeLog + RELOC/source/fonts/fonts-tlwg/ChangeLog.thai-ttf + RELOC/source/fonts/fonts-tlwg/GPL + RELOC/source/fonts/fonts-tlwg/INSTALL + RELOC/source/fonts/fonts-tlwg/Makefile.am + RELOC/source/fonts/fonts-tlwg/Makefile.in + RELOC/source/fonts/fonts-tlwg/NEWS + RELOC/source/fonts/fonts-tlwg/README + RELOC/source/fonts/fonts-tlwg/VERSION + RELOC/source/fonts/fonts-tlwg/aclocal.m4 + RELOC/source/fonts/fonts-tlwg/build-aux/git-version-gen + RELOC/source/fonts/fonts-tlwg/configure + RELOC/source/fonts/fonts-tlwg/configure.ac + RELOC/source/fonts/fonts-tlwg/fontconfig/64-01-tlwg-kinnari.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/64-02-tlwg-norasi.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/64-10-tlwg-loma.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/64-11-tlwg-waree.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/64-13-tlwg-garuda.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/64-14-tlwg-umpush.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/64-15-laksaman.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/64-21-tlwg-typo.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/64-22-tlwg-typist.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/64-23-tlwg-mono.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/89-tlwg-garuda-synthetic.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/89-tlwg-kinnari-synthetic.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/89-tlwg-laksaman-synthetic.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/89-tlwg-umpush-synthetic.conf + RELOC/source/fonts/fonts-tlwg/fontconfig/Makefile.am + RELOC/source/fonts/fonts-tlwg/fontconfig/Makefile.in + RELOC/source/fonts/fonts-tlwg/install-sh + RELOC/source/fonts/fonts-tlwg/latex/Makefile.am + RELOC/source/fonts/fonts-tlwg/latex/Makefile.in + RELOC/source/fonts/fonts-tlwg/latex/README.latex + RELOC/source/fonts/fonts-tlwg/latex/examples/Makefile.am + RELOC/source/fonts/fonts-tlwg/latex/examples/Makefile.in + RELOC/source/fonts/fonts-tlwg/latex/examples/testsans.tex + RELOC/source/fonts/fonts-tlwg/latex/examples/testscaled-120.tex + RELOC/source/fonts/fonts-tlwg/latex/examples/testscaled-65.tex + RELOC/source/fonts/fonts-tlwg/latex/examples/teststd.tex + RELOC/source/fonts/fonts-tlwg/latex/fonts-tlwg.sty + RELOC/source/fonts/fonts-tlwg/latex/lthgaruda.fd + RELOC/source/fonts/fonts-tlwg/latex/lthkinnari.fd + RELOC/source/fonts/fonts-tlwg/latex/lthlaksaman.fd + RELOC/source/fonts/fonts-tlwg/latex/lthloma.fd + RELOC/source/fonts/fonts-tlwg/latex/lthnorasi.fd + RELOC/source/fonts/fonts-tlwg/latex/lthpurisa.fd + RELOC/source/fonts/fonts-tlwg/latex/lthsawasdee.fd + RELOC/source/fonts/fonts-tlwg/latex/lthtlwg.enc + RELOC/source/fonts/fonts-tlwg/latex/lthttype.fd + RELOC/source/fonts/fonts-tlwg/latex/lthttypist.fd + RELOC/source/fonts/fonts-tlwg/latex/lthumpush.fd + RELOC/source/fonts/fonts-tlwg/latex/lthwaree.fd + RELOC/source/fonts/fonts-tlwg/latex/texfont.mk.am + RELOC/source/fonts/fonts-tlwg/latex/thai-dummy.afm + RELOC/source/fonts/fonts-tlwg/latex/thailigs.enc + RELOC/source/fonts/fonts-tlwg/missing + RELOC/source/fonts/fonts-tlwg/nectec/Loma-Bold.sfd + RELOC/source/fonts/fonts-tlwg/nectec/Loma-BoldOblique.sfd + RELOC/source/fonts/fonts-tlwg/nectec/Loma-Oblique.sfd + RELOC/source/fonts/fonts-tlwg/nectec/Loma.sfd + RELOC/source/fonts/fonts-tlwg/nectec/Makefile.am + RELOC/source/fonts/fonts-tlwg/nectec/Makefile.in + RELOC/source/fonts/fonts-tlwg/nf/Garuda-Bold.sfd + RELOC/source/fonts/fonts-tlwg/nf/Garuda-BoldOblique.sfd + RELOC/source/fonts/fonts-tlwg/nf/Garuda-Oblique.sfd + RELOC/source/fonts/fonts-tlwg/nf/Garuda.sfd + RELOC/source/fonts/fonts-tlwg/nf/Kinnari-Bold.sfd + RELOC/source/fonts/fonts-tlwg/nf/Kinnari-BoldItalic.sfd + RELOC/source/fonts/fonts-tlwg/nf/Kinnari-BoldOblique.sfd + RELOC/source/fonts/fonts-tlwg/nf/Kinnari-Italic.sfd + RELOC/source/fonts/fonts-tlwg/nf/Kinnari-Oblique.sfd + RELOC/source/fonts/fonts-tlwg/nf/Kinnari.sfd + RELOC/source/fonts/fonts-tlwg/nf/Makefile.am + RELOC/source/fonts/fonts-tlwg/nf/Makefile.in + RELOC/source/fonts/fonts-tlwg/nf/Norasi-Bold.sfd + RELOC/source/fonts/fonts-tlwg/nf/Norasi-BoldItalic.sfd + RELOC/source/fonts/fonts-tlwg/nf/Norasi-BoldOblique.sfd + RELOC/source/fonts/fonts-tlwg/nf/Norasi-Italic.sfd + RELOC/source/fonts/fonts-tlwg/nf/Norasi-Oblique.sfd + RELOC/source/fonts/fonts-tlwg/nf/Norasi.sfd + RELOC/source/fonts/fonts-tlwg/nf/README.1ST + RELOC/source/fonts/fonts-tlwg/scripts/Makefile.am + RELOC/source/fonts/fonts-tlwg/scripts/Makefile.in + RELOC/source/fonts/fonts-tlwg/scripts/engkernpairs.txt + RELOC/source/fonts/fonts-tlwg/scripts/gen-otf.pe + RELOC/source/fonts/fonts-tlwg/scripts/gen-pfa.pe + RELOC/source/fonts/fonts-tlwg/scripts/gen-pfb.pe + RELOC/source/fonts/fonts-tlwg/scripts/gen-test-otf.pe + RELOC/source/fonts/fonts-tlwg/scripts/gen-test-pfa.pe + RELOC/source/fonts/fonts-tlwg/scripts/gen-test-pfb.pe + RELOC/source/fonts/fonts-tlwg/scripts/gen-test-ttf.pe + RELOC/source/fonts/fonts-tlwg/scripts/gen-test-ttf.py + RELOC/source/fonts/fonts-tlwg/scripts/gen-ttf.pe + RELOC/source/fonts/fonts-tlwg/scripts/gen-ttf.py + RELOC/source/fonts/fonts-tlwg/scripts/gen-woff.pe + RELOC/source/fonts/fonts-tlwg/scripts/gen.mk.am + RELOC/source/fonts/fonts-tlwg/scripts/thaikernpairs.txt + RELOC/source/fonts/fonts-tlwg/sipa/Laksaman-Bold.sfd + RELOC/source/fonts/fonts-tlwg/sipa/Laksaman-BoldItalic.sfd + RELOC/source/fonts/fonts-tlwg/sipa/Laksaman-Italic.sfd + RELOC/source/fonts/fonts-tlwg/sipa/Laksaman.sfd + RELOC/source/fonts/fonts-tlwg/sipa/Makefile.am + RELOC/source/fonts/fonts-tlwg/sipa/Makefile.in + RELOC/source/fonts/fonts-tlwg/test-driver + RELOC/source/fonts/fonts-tlwg/tests/Makefile.am + RELOC/source/fonts/fonts-tlwg/tests/Makefile.in + RELOC/source/fonts/fonts-tlwg/tests/gen-pdfsample.sh + RELOC/source/fonts/fonts-tlwg/tests/test-otf.sh + RELOC/source/fonts/fonts-tlwg/tests/test-pfa.sh + RELOC/source/fonts/fonts-tlwg/tests/test-pfb.sh + RELOC/source/fonts/fonts-tlwg/tests/test-ttf.sh + RELOC/source/fonts/fonts-tlwg/tlwg/AUTHORS + RELOC/source/fonts/fonts-tlwg/tlwg/CREDITS + RELOC/source/fonts/fonts-tlwg/tlwg/Makefile.am + RELOC/source/fonts/fonts-tlwg/tlwg/Makefile.in + RELOC/source/fonts/fonts-tlwg/tlwg/Purisa-Bold.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Purisa-BoldOblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Purisa-Oblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Purisa.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/README.tlwgmono + RELOC/source/fonts/fonts-tlwg/tlwg/Sawasdee-Bold.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Sawasdee-BoldOblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Sawasdee-Oblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Sawasdee.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgMono-Bold.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgMono-BoldOblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgMono-Oblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgMono.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypewriter-Bold.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypewriter-BoldOblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypewriter-Oblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypewriter.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypist-Bold.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypist-BoldOblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypist-Oblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypist.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypo-Bold.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypo-BoldOblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypo-Oblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypo.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Umpush-Bold.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Umpush-BoldOblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Umpush-Light.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Umpush-LightOblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Umpush-Oblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Umpush.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Waree-Bold.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Waree-BoldOblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Waree-Oblique.sfd + RELOC/source/fonts/fonts-tlwg/tlwg/Waree.sfd +runfiles size=2266 RELOC/fonts/afm/public/fonts-tlwg/garuda.afm RELOC/fonts/afm/public/fonts-tlwg/garuda_b.afm RELOC/fonts/afm/public/fonts-tlwg/garuda_bo.afm @@ -67932,6 +111587,64 @@ runfiles size=1440 RELOC/fonts/map/dvips/fonts-tlwg/nf.map RELOC/fonts/map/dvips/fonts-tlwg/sipa.map RELOC/fonts/map/dvips/fonts-tlwg/tlwg.map + RELOC/fonts/opentype/public/fonts-tlwg/Garuda-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/Garuda-BoldOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Garuda-Oblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Garuda.otf + RELOC/fonts/opentype/public/fonts-tlwg/Kinnari-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/Kinnari-BoldItalic.otf + RELOC/fonts/opentype/public/fonts-tlwg/Kinnari-BoldOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Kinnari-Italic.otf + RELOC/fonts/opentype/public/fonts-tlwg/Kinnari-Oblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Kinnari.otf + RELOC/fonts/opentype/public/fonts-tlwg/Laksaman-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/Laksaman-BoldItalic.otf + RELOC/fonts/opentype/public/fonts-tlwg/Laksaman-Italic.otf + RELOC/fonts/opentype/public/fonts-tlwg/Laksaman.otf + RELOC/fonts/opentype/public/fonts-tlwg/Loma-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/Loma-BoldOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Loma-Oblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Loma.otf + RELOC/fonts/opentype/public/fonts-tlwg/Norasi-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/Norasi-BoldItalic.otf + RELOC/fonts/opentype/public/fonts-tlwg/Norasi-BoldOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Norasi-Italic.otf + RELOC/fonts/opentype/public/fonts-tlwg/Norasi-Oblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Norasi.otf + RELOC/fonts/opentype/public/fonts-tlwg/Purisa-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/Purisa-BoldOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Purisa-Oblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Purisa.otf + RELOC/fonts/opentype/public/fonts-tlwg/Sawasdee-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/Sawasdee-BoldOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Sawasdee-Oblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Sawasdee.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgMono-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgMono-BoldOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgMono-Oblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgMono.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgTypewriter-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgTypewriter-BoldOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgTypewriter-Oblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgTypewriter.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgTypist-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgTypist-BoldOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgTypist-Oblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgTypist.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgTypo-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgTypo-BoldOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgTypo-Oblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/TlwgTypo.otf + RELOC/fonts/opentype/public/fonts-tlwg/Umpush-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/Umpush-BoldOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Umpush-Light.otf + RELOC/fonts/opentype/public/fonts-tlwg/Umpush-LightOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Umpush-Oblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Umpush.otf + RELOC/fonts/opentype/public/fonts-tlwg/Waree-Bold.otf + RELOC/fonts/opentype/public/fonts-tlwg/Waree-BoldOblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Waree-Oblique.otf + RELOC/fonts/opentype/public/fonts-tlwg/Waree.otf RELOC/fonts/tfm/public/fonts-tlwg/garuda.tfm RELOC/fonts/tfm/public/fonts-tlwg/garuda_b.tfm RELOC/fonts/tfm/public/fonts-tlwg/garuda_bo.tfm @@ -68144,166 +111857,100 @@ runfiles size=1440 RELOC/tex/latex/fonts-tlwg/lthttypist.fd RELOC/tex/latex/fonts-tlwg/lthumpush.fd RELOC/tex/latex/fonts-tlwg/lthwaree.fd -docfiles size=6 - RELOC/doc/fonts/fonts-tlwg/README.latex - RELOC/doc/fonts/fonts-tlwg/examples/teststd.tex -srcfiles size=5521 - RELOC/source/fonts/fonts-tlwg/AUTHORS - RELOC/source/fonts/fonts-tlwg/COPYING - RELOC/source/fonts/fonts-tlwg/ChangeLog - RELOC/source/fonts/fonts-tlwg/ChangeLog.thai-ttf - RELOC/source/fonts/fonts-tlwg/GPL - RELOC/source/fonts/fonts-tlwg/INSTALL - RELOC/source/fonts/fonts-tlwg/Makefile.am - RELOC/source/fonts/fonts-tlwg/Makefile.in - RELOC/source/fonts/fonts-tlwg/NEWS - RELOC/source/fonts/fonts-tlwg/README - RELOC/source/fonts/fonts-tlwg/TODO - RELOC/source/fonts/fonts-tlwg/aclocal.m4 - RELOC/source/fonts/fonts-tlwg/configure - RELOC/source/fonts/fonts-tlwg/configure.ac - RELOC/source/fonts/fonts-tlwg/fontconfig/64-01-tlwg-kinnari.conf - RELOC/source/fonts/fonts-tlwg/fontconfig/64-02-tlwg-norasi.conf - RELOC/source/fonts/fonts-tlwg/fontconfig/64-11-tlwg-waree.conf - RELOC/source/fonts/fonts-tlwg/fontconfig/64-12-tlwg-loma.conf - RELOC/source/fonts/fonts-tlwg/fontconfig/64-13-tlwg-garuda.conf - RELOC/source/fonts/fonts-tlwg/fontconfig/64-14-tlwg-umpush.conf - RELOC/source/fonts/fonts-tlwg/fontconfig/64-15-laksaman.conf - RELOC/source/fonts/fonts-tlwg/fontconfig/64-21-tlwg-typo.conf - RELOC/source/fonts/fonts-tlwg/fontconfig/64-22-tlwg-typist.conf - RELOC/source/fonts/fonts-tlwg/fontconfig/64-23-tlwg-mono.conf - RELOC/source/fonts/fonts-tlwg/fontconfig/89-tlwg-garuda-synthetic.conf - RELOC/source/fonts/fonts-tlwg/fontconfig/89-tlwg-kinnari-synthetic.conf - RELOC/source/fonts/fonts-tlwg/fontconfig/89-tlwg-laksaman-synthetic.conf - RELOC/source/fonts/fonts-tlwg/fontconfig/89-tlwg-loma-synthetic.conf - RELOC/source/fonts/fonts-tlwg/fontconfig/89-tlwg-umpush-synthetic.conf - RELOC/source/fonts/fonts-tlwg/fontconfig/89-tlwg-waree-synthetic.conf - RELOC/source/fonts/fonts-tlwg/fontconfig/Makefile.am - RELOC/source/fonts/fonts-tlwg/fontconfig/Makefile.in - RELOC/source/fonts/fonts-tlwg/install-sh - RELOC/source/fonts/fonts-tlwg/latex/Makefile.am - RELOC/source/fonts/fonts-tlwg/latex/Makefile.in - RELOC/source/fonts/fonts-tlwg/latex/README.latex - RELOC/source/fonts/fonts-tlwg/latex/examples/Makefile.am - RELOC/source/fonts/fonts-tlwg/latex/examples/Makefile.in - RELOC/source/fonts/fonts-tlwg/latex/examples/teststd.tex - RELOC/source/fonts/fonts-tlwg/latex/fonts-tlwg.sty - RELOC/source/fonts/fonts-tlwg/latex/lthgaruda.fd - RELOC/source/fonts/fonts-tlwg/latex/lthkinnari.fd - RELOC/source/fonts/fonts-tlwg/latex/lthlaksaman.fd - RELOC/source/fonts/fonts-tlwg/latex/lthloma.fd - RELOC/source/fonts/fonts-tlwg/latex/lthnorasi.fd - RELOC/source/fonts/fonts-tlwg/latex/lthpurisa.fd - RELOC/source/fonts/fonts-tlwg/latex/lthsawasdee.fd - RELOC/source/fonts/fonts-tlwg/latex/lthtlwg.enc - RELOC/source/fonts/fonts-tlwg/latex/lthttype.fd - RELOC/source/fonts/fonts-tlwg/latex/lthttypist.fd - RELOC/source/fonts/fonts-tlwg/latex/lthumpush.fd - RELOC/source/fonts/fonts-tlwg/latex/lthwaree.fd - RELOC/source/fonts/fonts-tlwg/latex/texfont.mk.am - RELOC/source/fonts/fonts-tlwg/latex/thai-dummy.afm - RELOC/source/fonts/fonts-tlwg/latex/thailigs.enc - RELOC/source/fonts/fonts-tlwg/missing - RELOC/source/fonts/fonts-tlwg/nectec/Loma-Bold.sfd - RELOC/source/fonts/fonts-tlwg/nectec/Loma-BoldOblique.sfd - RELOC/source/fonts/fonts-tlwg/nectec/Loma-Oblique.sfd - RELOC/source/fonts/fonts-tlwg/nectec/Loma.sfd - RELOC/source/fonts/fonts-tlwg/nectec/Makefile.am - RELOC/source/fonts/fonts-tlwg/nectec/Makefile.in - RELOC/source/fonts/fonts-tlwg/nf/Garuda-Bold.sfd - RELOC/source/fonts/fonts-tlwg/nf/Garuda-BoldOblique.sfd - RELOC/source/fonts/fonts-tlwg/nf/Garuda-Oblique.sfd - RELOC/source/fonts/fonts-tlwg/nf/Garuda.sfd - RELOC/source/fonts/fonts-tlwg/nf/Kinnari-Bold.sfd - RELOC/source/fonts/fonts-tlwg/nf/Kinnari-BoldItalic.sfd - RELOC/source/fonts/fonts-tlwg/nf/Kinnari-BoldOblique.sfd - RELOC/source/fonts/fonts-tlwg/nf/Kinnari-Italic.sfd - RELOC/source/fonts/fonts-tlwg/nf/Kinnari-Oblique.sfd - RELOC/source/fonts/fonts-tlwg/nf/Kinnari.sfd - RELOC/source/fonts/fonts-tlwg/nf/Makefile.am - RELOC/source/fonts/fonts-tlwg/nf/Makefile.in - RELOC/source/fonts/fonts-tlwg/nf/Norasi-Bold.sfd - RELOC/source/fonts/fonts-tlwg/nf/Norasi-BoldItalic.sfd - RELOC/source/fonts/fonts-tlwg/nf/Norasi-BoldOblique.sfd - RELOC/source/fonts/fonts-tlwg/nf/Norasi-Italic.sfd - RELOC/source/fonts/fonts-tlwg/nf/Norasi-Oblique.sfd - RELOC/source/fonts/fonts-tlwg/nf/Norasi.sfd - RELOC/source/fonts/fonts-tlwg/nf/README.1ST - RELOC/source/fonts/fonts-tlwg/scripts/Makefile.am - RELOC/source/fonts/fonts-tlwg/scripts/Makefile.in - RELOC/source/fonts/fonts-tlwg/scripts/engkernpairs.txt - RELOC/source/fonts/fonts-tlwg/scripts/gen-otf.pe - RELOC/source/fonts/fonts-tlwg/scripts/gen-pfa.pe - RELOC/source/fonts/fonts-tlwg/scripts/gen-pfb.pe - RELOC/source/fonts/fonts-tlwg/scripts/gen-test-otf.pe - RELOC/source/fonts/fonts-tlwg/scripts/gen-test-pfa.pe - RELOC/source/fonts/fonts-tlwg/scripts/gen-test-pfb.pe - RELOC/source/fonts/fonts-tlwg/scripts/gen-test-ttf.pe - RELOC/source/fonts/fonts-tlwg/scripts/gen-ttf.pe - RELOC/source/fonts/fonts-tlwg/scripts/gen.mk.am - RELOC/source/fonts/fonts-tlwg/scripts/thaikernpairs.txt - RELOC/source/fonts/fonts-tlwg/sipa/Laksaman-Bold.sfd - RELOC/source/fonts/fonts-tlwg/sipa/Laksaman-BoldItalic.sfd - RELOC/source/fonts/fonts-tlwg/sipa/Laksaman-Italic.sfd - RELOC/source/fonts/fonts-tlwg/sipa/Laksaman.sfd - RELOC/source/fonts/fonts-tlwg/sipa/Makefile.am - RELOC/source/fonts/fonts-tlwg/sipa/Makefile.in - RELOC/source/fonts/fonts-tlwg/test-driver - RELOC/source/fonts/fonts-tlwg/tests/Makefile.am - RELOC/source/fonts/fonts-tlwg/tests/Makefile.in - RELOC/source/fonts/fonts-tlwg/tests/gen-pdfsample.sh - RELOC/source/fonts/fonts-tlwg/tests/test-otf.sh - RELOC/source/fonts/fonts-tlwg/tests/test-pfa.sh - RELOC/source/fonts/fonts-tlwg/tests/test-pfb.sh - RELOC/source/fonts/fonts-tlwg/tests/test-ttf.sh - RELOC/source/fonts/fonts-tlwg/tlwg/AUTHORS - RELOC/source/fonts/fonts-tlwg/tlwg/CREDITS - RELOC/source/fonts/fonts-tlwg/tlwg/Makefile.am - RELOC/source/fonts/fonts-tlwg/tlwg/Makefile.in - RELOC/source/fonts/fonts-tlwg/tlwg/Purisa-Bold.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/Purisa-BoldOblique.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/Purisa-Oblique.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/Purisa.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/README - RELOC/source/fonts/fonts-tlwg/tlwg/Sawasdee-Bold.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/Sawasdee-BoldOblique.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/Sawasdee-Oblique.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/Sawasdee.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/TlwgMono-Bold.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/TlwgMono-BoldOblique.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/TlwgMono-Oblique.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/TlwgMono.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypewriter-Bold.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypewriter-BoldOblique.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypewriter-Oblique.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypewriter.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypist-Bold.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypist-BoldOblique.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypist-Oblique.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypist.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypo-Bold.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypo-BoldOblique.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypo-Oblique.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/TlwgTypo.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/Umpush-Bold.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/Umpush-BoldOblique.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/Umpush-Light.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/Umpush-LightOblique.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/Umpush-Oblique.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/Umpush.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/Waree-Bold.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/Waree-BoldOblique.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/Waree-Oblique.sfd - RELOC/source/fonts/fonts-tlwg/tlwg/Waree.sfd +catalogue-contact-bugs https://github.com/tlwg/fonts-tlwg/issues +catalogue-contact-home http://linux.thai.net/projects/fonts-tlwg +catalogue-contact-repository https://github.com/tlwg/fonts-tlwg +catalogue-contact-support https://groups.google.com/forum/#!forum/thai-linux-foss-devel catalogue-ctan /fonts/thai/fonts-tlwg -catalogue-date 2014-07-07 18:44:04 +0200 -catalogue-license gpl -catalogue-version 0.6.1 +catalogue-date 2018-11-05 07:54:33 +0100 +catalogue-license gpl2+lppl1.3other-free +catalogue-topics font font-thai thai +catalogue-version 0.7.1 + +name fontspec +category Package +revision 50387 +shortdesc Advanced font selection in XeLaTeX and LuaLaTeX +relocated 1 +longdesc Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an +longdesc automatic and unified interface to feature-rich AAT and +longdesc OpenType fonts through the NFSS in LaTeX running on XeTeX or +longdesc LuaTeX engines. The package requires the l3kernel and xparse +longdesc bundles from the LaTeX3 development team. +depend iftex +depend l3kernel +depend l3packages +depend xunicode +depend lm +depend euenc +containersize 27008 +containerchecksum 12ca8f1195131cc60a4cb61f35a4eb3cfba88cbbcbf3a4c8b57f24ccd27d16ec0fc2975e0b2f456ef753dd983b25bacd865e3d974adfc4d5532b766a83c7a75e +doccontainersize 1277860 +doccontainerchecksum cc8357c53c3771de506369b92a4db08b9964ac8071f84839a9f4ad02d703d2bef3e56053a0b389d7c4e3e686038a33f587eb75f8a898faeab845f4ce92bd3166 +docfiles size=337 + RELOC/doc/latex/fontspec/CHANGES.md + RELOC/doc/latex/fontspec/LICENSE + RELOC/doc/latex/fontspec/README.md details="Package README" + RELOC/doc/latex/fontspec/fontspec-code.pdf + RELOC/doc/latex/fontspec/fontspec-example.tex + RELOC/doc/latex/fontspec/fontspec.pdf details="Package documentation" +srccontainersize 85116 +srccontainerchecksum 7b36496857143742acca3df007f68d4b1bf197c938804ca3421609f2cde4467097a5cb810f983370f522805724764c81167652c2796607a0b5e90b4d5f628a17 +srcfiles size=120 + RELOC/source/latex/fontspec/fontspec-code-api.dtx + RELOC/source/latex/fontspec/fontspec-code-closing.dtx + RELOC/source/latex/fontspec/fontspec-code-enc.dtx + RELOC/source/latex/fontspec/fontspec-code-feat-aat.dtx + RELOC/source/latex/fontspec/fontspec-code-feat-opentype.dtx + RELOC/source/latex/fontspec/fontspec-code-fontload.dtx + RELOC/source/latex/fontspec/fontspec-code-graphite.dtx + RELOC/source/latex/fontspec/fontspec-code-interfaces.dtx + RELOC/source/latex/fontspec/fontspec-code-internal.dtx + RELOC/source/latex/fontspec/fontspec-code-keyval.dtx + RELOC/source/latex/fontspec/fontspec-code-lang.dtx + RELOC/source/latex/fontspec/fontspec-code-load.dtx + RELOC/source/latex/fontspec/fontspec-code-math.dtx + RELOC/source/latex/fontspec/fontspec-code-msg.dtx + RELOC/source/latex/fontspec/fontspec-code-opening.dtx + RELOC/source/latex/fontspec/fontspec-code-opentype.dtx + RELOC/source/latex/fontspec/fontspec-code-patches.dtx + RELOC/source/latex/fontspec/fontspec-code-scripts.dtx + RELOC/source/latex/fontspec/fontspec-code-user.dtx + RELOC/source/latex/fontspec/fontspec-code-vars.dtx + RELOC/source/latex/fontspec/fontspec-code-xfss.dtx + RELOC/source/latex/fontspec/fontspec-code.ltx + RELOC/source/latex/fontspec/fontspec-doc-api.tex + RELOC/source/latex/fontspec/fontspec-doc-enc.tex + RELOC/source/latex/fontspec/fontspec-doc-featset.tex + RELOC/source/latex/fontspec/fontspec-doc-fontsel.tex + RELOC/source/latex/fontspec/fontspec-doc-intro.tex + RELOC/source/latex/fontspec/fontspec-doc-luatex.tex + RELOC/source/latex/fontspec/fontspec-doc-opentype.tex + RELOC/source/latex/fontspec/fontspec-doc-style.sty + RELOC/source/latex/fontspec/fontspec-doc-xetex.tex + RELOC/source/latex/fontspec/fontspec-example.tex + RELOC/source/latex/fontspec/fontspec-lua.dtx + RELOC/source/latex/fontspec/fontspec.dtx + RELOC/source/latex/fontspec/fontspec.ins + RELOC/source/latex/fontspec/fontspec.ltx +runfiles size=80 + RELOC/tex/latex/fontspec/fontspec-luatex.sty + RELOC/tex/latex/fontspec/fontspec-xetex.sty + RELOC/tex/latex/fontspec/fontspec.cfg + RELOC/tex/latex/fontspec/fontspec.lua + RELOC/tex/latex/fontspec/fontspec.sty +catalogue-contact-bugs https://github.com/wspr/fontspec/issues +catalogue-contact-repository https://github.com/wspr/fontspec/ +catalogue-ctan /macros/latex/contrib/fontspec +catalogue-date 2019-03-14 15:15:38 +0100 +catalogue-license lppl1.3c +catalogue-topics font-sel luatex xetex +catalogue-version 2.7c name fonttable category Package -revision 21399 -shortdesc Print font tables from a LaTeX document. +revision 44799 +shortdesc Print font tables from a LaTeX document relocated 1 longdesc This is a package version of nfssfont.tex (part of the LaTeX longdesc distribution); it enables you to print a table of the @@ -68314,24 +111961,45 @@ longdesc run as interactive programs: the user is expected to type longdesc details of what is needed.) Note that the package mftinc also longdesc has a \fonttable function; the documentation explains how avoid longdesc a clash with that package. -runfiles size=4 - RELOC/tex/latex/fonttable/fonttable.sty +containersize 5752 +containerchecksum f8db43eedd7f9e43b0cfb8c37e2687321fe236daa4bee898141c305dd2e59fb40bf3e8b3cabde561c75fb65dd053de33e45b90a8ab9518b0b30aedf35f6af1f2 +doccontainersize 310452 +doccontainerchecksum 1d2b27ac253df62568087abb8f9e0f0054e3bb98cb62e65784192b281722e69e8565fa569eef4d061684e8965e0b05a0cd6dcbf7e632af7f68f97e8d4747426e docfiles size=77 - RELOC/doc/latex/fonttable/README - RELOC/doc/latex/fonttable/fonttable.pdf + RELOC/doc/latex/fonttable/README details="Readme" + RELOC/doc/latex/fonttable/fonttable.pdf details="Package documentation" +srccontainersize 14348 +srccontainerchecksum 56210bc42e0716196bed05a35ef9ff7ffb40a17a8cfe8cef4d31e2c8ea28bfb75ee035bb887ca62387460cb7f99eb4f2b408cea767ce824124116caa6ae7d15e srcfiles size=13 RELOC/source/latex/fonttable/fonttable.dtx RELOC/source/latex/fonttable/fonttable.ins +runfiles size=4 + RELOC/tex/latex/fonttable/fonttable.sty +catalogue-contact-repository https://github.com/wspr/herries-press catalogue-ctan /macros/latex/contrib/fonttable -catalogue-date 2012-07-06 23:09:35 +0200 -catalogue-license lppl1.3 -catalogue-version 1.6b +catalogue-date 2017-07-14 12:50:17 +0200 +catalogue-license lppl1.3c +catalogue-topics font-devel +catalogue-version 1.6c name fontware category TLCore -revision 37078 +revision 50602 +catalogue vfware +shortdesc Tools for virtual font metrics +longdesc Virtual font metrics are usually created in a textual form, the +longdesc Virtual Property List, but programs that use them need to use +longdesc binary files (the Virtual Font and the TeX Font Metric). The +longdesc present two programs translate between the two forms: - vptovf +longdesc takes a VPL file and generates a VF file and a TFM file; - +longdesc vftovp takes a VF file and a TFM file and generates a VPL file. +longdesc The programs are to be found in every distribution of TeX. depend fontware.ARCH -docfiles size=12 +containersize 676 +containerchecksum 6f6a58e0c804ff0aac48be7646bf1ef9eb13028e6b2d25d69b4764280d71ba57e5e48eded61b4855794efddcc7f1520b24a52f09ed541a975c205b11b23abc49 +doccontainersize 69368 +doccontainerchecksum 9ab42743fef5a65eaaa0ab186bdef895f8e7e3d95688fecdac8f7b59e064fc20f2b31bf5ef1b9b6676f3bf901867b06c25792ad07b2a13192e7290b5fbef33dd +docfiles size=27 texmf-dist/doc/man/man1/pltotf.1 texmf-dist/doc/man/man1/pltotf.man1.pdf texmf-dist/doc/man/man1/tftopl.1 @@ -68340,42 +112008,236 @@ docfiles size=12 texmf-dist/doc/man/man1/vftovp.man1.pdf texmf-dist/doc/man/man1/vptovf.1 texmf-dist/doc/man/man1/vptovf.man1.pdf +catalogue-contact-bugs http://lists.tug.org/tex-k +catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-contact-support http://lists.tug.org/tex-k +catalogue-ctan /systems/knuth/dist/etc +catalogue-date 2018-12-31 06:11:12 +0100 +catalogue-license knuth +catalogue-topics font-supp + +name fontware.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of fontware +containersize 94540 +containerchecksum 804231702081b24a3fcc4438797ab15ec4b076ab30cb4b5aba3e3116b7e6ae67f7a3ccacf51af302408d7f26edeb36c9f34f62bbd3e80209f4dbe01b4a96e76c +binfiles arch=aarch64-linux size=94 + bin/aarch64-linux/pltotf + bin/aarch64-linux/tftopl + bin/aarch64-linux/vftovp + bin/aarch64-linux/vptovf + +name fontware.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of fontware +containersize 115396 +containerchecksum a1318e3d687c54fff68dcac0245108fa8d51750436cddf2df6fde1be169c218ea094fea4cd9baed018641c911936c51c8b48f0e500dff6d9e5106a1a7a60e493 +binfiles arch=amd64-freebsd size=106 + bin/amd64-freebsd/pltotf + bin/amd64-freebsd/tftopl + bin/amd64-freebsd/vftovp + bin/amd64-freebsd/vptovf + +name fontware.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of fontware +containersize 99196 +containerchecksum 45bcf5a7f395523343244004ab0e1ce6c57f39255dd61f51b4eaf2f0184d6329b37c37041097132ea1672aa52c92fbc79d9bd67f8d0424316bac66301f631b91 +binfiles arch=amd64-netbsd size=111 + bin/amd64-netbsd/pltotf + bin/amd64-netbsd/tftopl + bin/amd64-netbsd/vftovp + bin/amd64-netbsd/vptovf + +name fontware.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of fontware +containersize 79084 +containerchecksum 0fcdfe950ed6924c3e122d1aff86e99a7385d0327d13d4ad3df5bc346c6b471b67635626280d42a11b9a1f5e331f1c35e7a76a522f136021d6e8ce37bdefa67a +binfiles arch=armhf-linux size=78 + bin/armhf-linux/pltotf + bin/armhf-linux/tftopl + bin/armhf-linux/vftovp + bin/armhf-linux/vptovf + +name fontware.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of fontware +containersize 55556 +containerchecksum 2fcbe55eab34ad8c10ad22b2638101789d3f9eb380ea4236f6db2047d7d1827a0437c79ef2592c6910390e8507224d53d42867925027629c5a35df45b2eaaaab +binfiles arch=i386-cygwin size=52 + bin/i386-cygwin/pltotf.exe + bin/i386-cygwin/tftopl.exe + bin/i386-cygwin/vftovp.exe + bin/i386-cygwin/vptovf.exe + +name fontware.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of fontware +containersize 92208 +containerchecksum d3a44a837bcfb0ce9558c05ae08dee61f1714cb94dd7785fd7621e25477059f798a908b6235e419160b4dbb853ecebcb0e54236603dac857702677711d9a2e6e +binfiles arch=i386-freebsd size=88 + bin/i386-freebsd/pltotf + bin/i386-freebsd/tftopl + bin/i386-freebsd/vftovp + bin/i386-freebsd/vptovf name fontware.i386-linux category TLCore -revision 36790 +revision 50281 shortdesc i386-linux files of fontware -binfiles arch=i386-linux size=116 +containersize 97040 +containerchecksum df885ad9955a4b170369bb7cbccba2f89a2536fbcc282b23b9b74378f443a031e1b81ef8b311b34a2f4d1b86d742347aff1011d26d3197ffac78a76edf665c0d +binfiles arch=i386-linux size=95 bin/i386-linux/pltotf bin/i386-linux/tftopl bin/i386-linux/vftovp bin/i386-linux/vptovf +name fontware.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of fontware +containersize 83568 +containerchecksum a8c9bafe4a122970c823cecf331eca734d152f48c2d494d9d1f569781fa560dee5b35697ca85077fbf704b2d33f7ab8bdf591d5cda158ad6e32cca5bfe1ef985 +binfiles arch=i386-netbsd size=106 + bin/i386-netbsd/pltotf + bin/i386-netbsd/tftopl + bin/i386-netbsd/vftovp + bin/i386-netbsd/vptovf + +name fontware.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of fontware +containersize 103664 +containerchecksum 5aef43c74293d5d1479e6aef7d0b210e0b1d6947e1bc188f3a7d398b73161a439ca77a688cdee30dda8d06b674e37bf64589cb2e79560925881ebb51700bcc42 +binfiles arch=i386-solaris size=94 + bin/i386-solaris/pltotf + bin/i386-solaris/tftopl + bin/i386-solaris/vftovp + bin/i386-solaris/vptovf + +name fontware.win32 +category TLCore +revision 50155 +shortdesc win32 files of fontware +containersize 58168 +containerchecksum 4218b90083eacc0b2852c0aef837b459abba5dbd41cd1ef9f28124414acacad7012c2ea71e325b376d880e08e9fd20293897bc9702744233d973854d81e5a5e3 +binfiles arch=win32 size=49 + bin/win32/pltotf.exe + bin/win32/tftopl.exe + bin/win32/vftovp.exe + bin/win32/vptovf.exe + +name fontware.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of fontware +containersize 64184 +containerchecksum aa8201f0f5789ed6bc434e31cce8ea54a914183ff496b97817d282ce2e85bcbd87ac5a92f6797c37aeb28f42abc968a89953e94ad32193201c54dd79686a066c +binfiles arch=x86_64-cygwin size=50 + bin/x86_64-cygwin/pltotf.exe + bin/x86_64-cygwin/tftopl.exe + bin/x86_64-cygwin/vftovp.exe + bin/x86_64-cygwin/vptovf.exe + +name fontware.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of fontware +containersize 102848 +containerchecksum 96940988d83643aa3a89b9396c6458949526c378a64e50a3ce1717c42ba3767ca13bb4b7a8d5637643e379ee8bf4d802c83a875751ef71214644f10a7124c314 +binfiles arch=x86_64-darwin size=94 + bin/x86_64-darwin/pltotf + bin/x86_64-darwin/tftopl + bin/x86_64-darwin/vftovp + bin/x86_64-darwin/vptovf + +name fontware.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of fontware +containersize 99472 +containerchecksum 2ade890bb226efa544804e1c722f376059ecaff6f16aa7b6801f7c28658af8d1167dd77314ea417b4949e9372ad1c3d6bafff5454eb5ef0c6c299ca372454224 +binfiles arch=x86_64-darwinlegacy size=91 + bin/x86_64-darwinlegacy/pltotf + bin/x86_64-darwinlegacy/tftopl + bin/x86_64-darwinlegacy/vftovp + bin/x86_64-darwinlegacy/vptovf + +name fontware.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of fontware +containersize 101492 +containerchecksum 57ad212f80de0634766314ea5a0bf93064e7145331666f4ba423cce874d5d0f58e2f3e29d5b435af72ef9de99a63ff3291fc481003457cc9d261695380f37631 +binfiles arch=x86_64-linux size=86 + bin/x86_64-linux/pltotf + bin/x86_64-linux/tftopl + bin/x86_64-linux/vftovp + bin/x86_64-linux/vptovf + +name fontware.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of fontware +containersize 107624 +containerchecksum 981c8966f9d45d639574f24b82794893226ca83a0e4ea3c96e68496e7a1e3315624d00cb27af0f9cac4940fc6b3f35e0492b1aba7c9de088a0e00943c4f3f41c +binfiles arch=x86_64-linuxmusl size=100 + bin/x86_64-linuxmusl/pltotf + bin/x86_64-linuxmusl/tftopl + bin/x86_64-linuxmusl/vftovp + bin/x86_64-linuxmusl/vptovf + +name fontware.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of fontware +containersize 114992 +containerchecksum 04b0ed020e134841d479085e73c1ce5e6841201af5b258d2921a6ee400d238e952b9821e10fdbfc1faada5a76617eadfe5ebd81db3174a1a7a08222878cc0444 +binfiles arch=x86_64-solaris size=102 + bin/x86_64-solaris/pltotf + bin/x86_64-solaris/tftopl + bin/x86_64-solaris/vftovp + bin/x86_64-solaris/vptovf + name fontwrap category Package revision 15878 -shortdesc Bind fonts to specific unicode blocks. +shortdesc Bind fonts to specific unicode blocks relocated 1 longdesc The package (which runs under XeLaTeX) lets you bind fonts to longdesc specific unicode blocks, for automatic font tagging of longdesc multilingual text. The package uses Perl (via perltex) to longdesc construct its tables. -runfiles size=18 - RELOC/tex/xelatex/fontwrap/fontwrap.sty +containersize 12740 +containerchecksum 5bad0487f5cfa4119d7baafccc6178925baea12f1cbed5912211c52f2c4ea01eb00f9dacd300c24b93f48e5f13197a86ba1e37c35ed69fb1031281fdeb08edf2 +doccontainersize 270912 +doccontainerchecksum 857be54c81d9bfb14277c17638ec24c643c278d660b56e18a4701aea0ad28e496df0aec191b12d93bb29b7ab326b39ad9cc7ddc3615871d1b70fdf6e44ccdc6e docfiles size=77 - RELOC/doc/xelatex/fontwrap/README - RELOC/doc/xelatex/fontwrap/fontwrap.pdf + RELOC/doc/xelatex/fontwrap/README details="Readme" + RELOC/doc/xelatex/fontwrap/fontwrap.pdf details="Package documentation" RELOC/doc/xelatex/fontwrap/fontwrap.tex - RELOC/doc/xelatex/fontwrap/fontwrap_example.pdf + RELOC/doc/xelatex/fontwrap/fontwrap_example.pdf details="Examples of use" RELOC/doc/xelatex/fontwrap/fontwrap_example.tex +runfiles size=18 + RELOC/tex/xelatex/fontwrap/fontwrap.sty catalogue-ctan /macros/xetex/latex/fontwrap -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-10-08 11:40:26 +0200 catalogue-license gpl +catalogue-topics font-sel font-supp unicode name footbib category Package revision 17115 -shortdesc Bibliographic references as footnotes. +shortdesc Bibliographic references as footnotes relocated 1 longdesc The package makes bibliographic references appear as footnotes. longdesc It defines a command \footcite which is similar to the LaTeX @@ -68387,23 +112249,31 @@ longdesc used to produce the standard bibliography. The foot longdesc bibliography uses its own style and bibliographic database longdesc which may be specified independently of the standard one. Any longdesc standard bibliography style may be used. -runfiles size=7 - RELOC/tex/latex/footbib/footbib.sty +containersize 6692 +containerchecksum 0cadef58331d5d51aeba1f69d0c9ceae99104f7c31ea79e0f5dee33c8612bc52cd0c8551abc6da1799705c879cc88535b46e4ef15232d3c4a0f7136e0fe46e05 +doccontainersize 196308 +doccontainerchecksum 27d1f0e6bf0ef526f2b3c4852c53b78fc60fc10ec526796447940565ad75fab023406bd28548170f7382e822c3b0f43d96181233bc772ea58f8ac195f71cf495 docfiles size=57 - RELOC/doc/latex/footbib/README - RELOC/doc/latex/footbib/footbib.pdf + RELOC/doc/latex/footbib/README details="Readme" + RELOC/doc/latex/footbib/footbib.pdf details="Package documentation" +srccontainersize 22456 +srccontainerchecksum 120d5c14a1b12b15a39792d2cae0bfee5b1695af1c014708c65d61eba6f2fd52f17e2b61b576e192a2d2a9abfb3aa2e059fcd9ca17e48e8a3ee6e9cc2150f119 srcfiles size=24 RELOC/source/latex/footbib/footbib.dtx RELOC/source/latex/footbib/footbib.ins +runfiles size=7 + RELOC/tex/latex/footbib/footbib.sty +catalogue-also jurabib catalogue-ctan /macros/latex/contrib/footbib -catalogue-date 2012-06-18 18:51:38 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics cite-foot catalogue-version 2.0.7 name footmisc category Package revision 23330 -shortdesc A range of footnote options. +shortdesc A range of footnote options relocated 1 longdesc A collection of ways to change the typesetting of footnotes. longdesc The package provides means of changing the layout of the @@ -68420,75 +112290,171 @@ longdesc packages, though those are both also portmanteau packages. longdesc (Don't be seduced by fnpara, whose implementation is improved longdesc by the present package.) The perpage option is also offered by longdesc footnpag and by the rather more general-purpose perpage -runfiles size=7 - RELOC/tex/latex/footmisc/footmisc.sty +containersize 5904 +containerchecksum 50d0d02b243936d2455ad2353c0da1b77aab9f8f822033a98062d979b686163b94798784dc6b8496dda3ef38eadbd04a21e153f0fa9a76b499c50159c169fb85 +doccontainersize 325412 +doccontainerchecksum 3a732fe8a1ca364275a7b0849be097e307ba322ff611a650a4625cc47792410b974055c75165b62ec8d5d2a128b0d6a194d798248bcd6bae266c7638ffe67e01 docfiles size=81 - RELOC/doc/latex/footmisc/README - RELOC/doc/latex/footmisc/footmisc.pdf + RELOC/doc/latex/footmisc/README details="Readme" + RELOC/doc/latex/footmisc/footmisc.pdf details="Package documentation" language="en" +srccontainersize 19772 +srccontainerchecksum 3489b4c09a145ba19d25120a48368470d65c2407a8c5697946ae669fdd63f0dc7176ea171ccd2a815055a6fc16f02523f7b2ca084c60159c1768a8a3b2eccf11 srcfiles size=20 RELOC/source/latex/footmisc/footmisc.dtx RELOC/source/latex/footmisc/footmisc.ins +runfiles size=7 + RELOC/tex/latex/footmisc/footmisc.sty +catalogue-also endnotes ftnright footmisx +catalogue-contact-bugs https://github.com/FrankMittelbach/fmitex/issues catalogue-ctan /macros/latex/contrib/footmisc -catalogue-date 2014-02-27 13:35:44 +0100 +catalogue-date 2018-09-13 17:02:53 +0200 catalogue-license lppl1.3 +catalogue-topics footnote catalogue-version 5.5b +name footmisx +category Package +revision 42621 +shortdesc A range of footnote options +relocated 1 +longdesc This a fork of footmisc package allowing to use hyperref. Here +longdesc is a copy of the description of package footmisc: A collection +longdesc of ways to change the typesetting of footnotes. The package +longdesc provides means of changing the layout of the footnotes +longdesc themselves (including setting them in 'paragraphs' -- the para +longdesc option), a way to number footnotes per page (the perpage +longdesc option), to make footnotes disappear in a 'moving' argument +longdesc (stable option) and to deal with multiple references to +longdesc footnotes from the same place (multiple option). The package +longdesc also has a range of techniques for labelling footnotes with +longdesc symbols rather than numbers. Some of the functions of the +longdesc package are overlap with the functionality of other packages. +longdesc The para option is also provided by the manyfoot and bigfoot +longdesc packages, though those are both also portmanteau packages. +longdesc (Don't be seduced by fnpara, whose implementation is improved +longdesc by the present package.) The perpage option is also offered by +longdesc footnpag and by the rather more general-purpose perpage +containersize 6048 +containerchecksum 591f181c8103ebd7a86440b27992df9eaea91d5998caa0f52dbfa48b7afc4791ef8c1f5a95d85b7cafd56113726beb74268b7498ec489d7b3142dcdf7f07adba +doccontainersize 396 +doccontainerchecksum 8c36c6eb169a804769ece280c2210949db96bbe57d6dacc1a0952fc1338d619334d3d8b46cbaa3dcac09e05a0c015f37146d8bed315238b5e918c373b2b42155 +docfiles size=1 + RELOC/doc/latex/footmisx/README details="Readme" +srccontainersize 19832 +srccontainerchecksum 5b069985c3a55240d762ee67a1da66895c304b5ac82bc0ce80c9e5fe9e77906cc0810dcb11c39b3ab63ce39f5d52964b7fb3319d49c0b18c85bc1410bad84ae2 +srcfiles size=20 + RELOC/source/latex/footmisx/footmisx.dtx + RELOC/source/latex/footmisx/footmisx.ins +runfiles size=7 + RELOC/tex/latex/footmisx/footmisx.sty +catalogue-also endnotes ftnright +catalogue-ctan /macros/latex/contrib/footmisx +catalogue-date 2016-12-06 05:11:09 +0100 +catalogue-license lppl1.3 +catalogue-topics footnote +catalogue-version 20161201 + name footnotebackref category Package revision 27034 -shortdesc Back-references from footnotes. +shortdesc Back-references from footnotes relocated 1 longdesc The package provides the means of creating hyperlinks, from a longdesc footnote at the bottom of the page, back to the occurence of longdesc the footnote in the main text. -runfiles size=1 - RELOC/tex/latex/footnotebackref/footnotebackref.sty +containersize 1572 +containerchecksum 8c18d95a4c74a7fe2ea4cc98df6bdb6813d9cf8323e44474330f03694758ee53da46d0d691164f6d90b2148a7cf9dc253dbc93548a3b33df3b0344096e4a90c9 +doccontainersize 112100 +doccontainerchecksum 685484323b721c5277aeaa041b1d40b0d4675bc901a371f36dbff6246063252bca69261748a096919c7345a4a6e6284a6093068555bb43eb92fbf7cfea41facc docfiles size=32 - RELOC/doc/latex/footnotebackref/README - RELOC/doc/latex/footnotebackref/footnotebackref.pdf + RELOC/doc/latex/footnotebackref/README details="Readme" + RELOC/doc/latex/footnotebackref/footnotebackref.pdf details="Package documentation" RELOC/doc/latex/footnotebackref/footnotebackref.tex +runfiles size=1 + RELOC/tex/latex/footnotebackref/footnotebackref.sty catalogue-ctan /macros/latex/contrib/footnotebackref -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics footnote hyper catalogue-version 1.0 +name footnotehyper +category Package +revision 46431 +shortdesc hyperref aware footnote.sty +relocated 1 +longdesc The footnote package by Mark Wooding dates back to 1997 and has +longdesc not been made hyperref compatible. The aim of the present +longdesc package is to do that. +containersize 2696 +containerchecksum 1daa49ea85b5ae7ac0d1e3d5dd86dfb1ba79a132c4a1493d911e4416cd6f1f7d7e6487032ff0cc970284a9df039996fd26258868f734a1ef7fa0311380bd7709 +doccontainersize 58572 +doccontainerchecksum d380557ece02393115148311e2186c99c6dda4f7ab311e448c3a52111a52a93fc17661bba80a6f62b24a30f7096793e422a93cd0d326336c1153a572b69c8b72 +docfiles size=17 + RELOC/doc/latex/footnotehyper/README.md details="Readme" + RELOC/doc/latex/footnotehyper/footnotehyper.pdf details="Package documentation" + RELOC/doc/latex/footnotehyper/footnotehyper.tex +srccontainersize 11304 +srccontainerchecksum ec3dbcda29e1e7e441741607c897e39c3cedf5728b3661e8274b01ce759a1f78afaec3e69a1f5ddbbd8f0e0e153a9924535ea015645d2d2b09e917dc6724635f +srcfiles size=11 + RELOC/source/latex/footnotehyper/footnotehyper.dtx + RELOC/source/latex/footnotehyper/footnotehyper.ins +runfiles size=2 + RELOC/tex/latex/footnotehyper/footnotehyper.sty +catalogue-also footnote +catalogue-ctan /macros/latex/contrib/footnotehyper +catalogue-date 2018-01-24 09:17:07 +0100 +catalogue-license lppl1.3 +catalogue-topics footnote macro-supp +catalogue-version 1.1 + name footnoterange category Package -revision 25430 -shortdesc References to ranges of footnotes. +revision 48912 +shortdesc References to ranges of footnotes relocated 1 -longdesc The package provides environments footnoterange and +longdesc The package provides the environments footnoterange and longdesc footnoterange*. Multiple footnotes inside these environments -longdesc are not referenced as (e.g.) "1 2 3 4" but as "1-4", i.e., the +longdesc are not referenced as (e.g.) "1 2 3" but as "1-3", i.e., the longdesc range (from first to last referred footnote at that place) is -longdesc given. If hyperref package and use of its hyperfootnotes-option -longdesc the references are hyperlinked. (References to footnotes in the -longdesc footnoterange* environment are never hyperlinked.) -runfiles size=2 - RELOC/tex/latex/footnoterange/footnoterange.sty -docfiles size=98 - RELOC/doc/latex/footnoterange/README +longdesc given. If the hyperref package is loaded with enabled +longdesc hyperfootnotes-option, then the references are hyperlinked. +longdesc (References to footnotes in footnoterange* environments are +longdesc never hyperlinked.) +containersize 2616 +containerchecksum c80c158c550e99e0d10f2ddfd248e21a897947058ef9d5f6e38fcfd9bf3067eff1846181b46a3abd23054f133974f1ee6e53496fc80b11b1df749d889cf983ae +doccontainersize 402544 +doccontainerchecksum d87cfefdcfccea2c08e8d7669bafbb18b940bb06fe3986634c684455ae12da25c515be60b5e50b685bcc4ca745e1b26747abfa88f2328836a30ed89e60efc366 +docfiles size=102 + RELOC/doc/latex/footnoterange/README details="Readme" RELOC/doc/latex/footnoterange/footnoterange-example.pdf - RELOC/doc/latex/footnoterange/footnoterange-example.tex - RELOC/doc/latex/footnoterange/footnoterange.pdf -srcfiles size=12 + RELOC/doc/latex/footnoterange/footnoterange.pdf details="Package documentation" +srccontainersize 10800 +srccontainerchecksum 9b46378a9a8282d78edbc8c73edf10292ef2e09d25e9d09e9cc1718df891e464d51364945221e84609a096116bdb79388045c1312762ea08f4316158512707af +srcfiles size=13 RELOC/source/latex/footnoterange/footnoterange.drv RELOC/source/latex/footnoterange/footnoterange.dtx RELOC/source/latex/footnoterange/footnoterange.ins +runfiles size=2 + RELOC/tex/latex/footnoterange/footnoterange.sty +catalogue-also footmisc catalogue-ctan /macros/latex/contrib/footnoterange -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0a +catalogue-date 2018-11-12 13:11:56 +0100 +catalogue-license lppl1.3c +catalogue-topics footnote label-ref +catalogue-version 1.0b name footnpag category Package revision 15878 -shortdesc Per-page numbering of footnotes. +shortdesc Per-page numbering of footnotes relocated 1 longdesc Allows footnotes on individual pages to be numbered from 1, longdesc rather than being numbered sequentially through the document. -runfiles size=5 - RELOC/tex/latex/footnpag/footnpag.sty +containersize 7732 +containerchecksum a1ce9661f0f6a69d1709ea053fd548aed428a9cc8ef0445b9c4b897eeef349bb9767c219f5d860ab4d7d264982c1f4404d33619c80dec8411350bb965b19d709 +doccontainersize 53212 +doccontainerchecksum f83c9cc0701c63dbd5d3b7dd6038e1bb2c427e6edaca05b814778592587b066af3c4f7f12646f7b2ff7cc1c2ab8d2ffd99480dbfe72e50c9bce907e8e2d4c509 docfiles size=40 RELOC/doc/latex/footnpag/CATALOG RELOC/doc/latex/footnpag/History @@ -68496,10 +112462,10 @@ docfiles size=40 RELOC/doc/latex/footnpag/Imakefile RELOC/doc/latex/footnpag/License RELOC/doc/latex/footnpag/MANIFEST - RELOC/doc/latex/footnpag/README + RELOC/doc/latex/footnpag/README details="Readme" RELOC/doc/latex/footnpag/TODO RELOC/doc/latex/footnpag/footnpag-doc.sty - RELOC/doc/latex/footnpag/footnpag-user.pdf + RELOC/doc/latex/footnpag/footnpag-user.pdf details="Package documentation" RELOC/doc/latex/footnpag/footnpag-user.tex RELOC/doc/latex/footnpag/footnpag.doc RELOC/doc/latex/footnpag/test/Imakefile @@ -68509,16 +112475,22 @@ docfiles size=40 RELOC/doc/latex/footnpag/test/minipage.tex RELOC/doc/latex/footnpag/test/report.tex RELOC/doc/latex/footnpag/test/title-2col.tex +srccontainersize 924 +srccontainerchecksum a44b0ba4ef7b6328d6d307eca25c34d494000a238c69fec3686a55057ff56ae1ada7cacc763ff1cd26aaa83962257442060fbd795c76d61f92761bd66be81378 srcfiles size=1 RELOC/source/latex/footnpag/Makefile +runfiles size=5 + RELOC/tex/latex/footnpag/footnpag.sty +catalogue-also footmisc catalogue-ctan /macros/latex/contrib/footnpag -catalogue-date 2012-05-19 14:48:02 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics footnote name forarray category Package revision 15878 -shortdesc Using array structures in LaTeX. +shortdesc Using array structures in LaTeX relocated 1 longdesc The package provides functionality for processing lists and longdesc array structures in LaTeX. Arrays can contain characters as @@ -68529,137 +112501,380 @@ longdesc characters or control sequences defined by the user. Practical longdesc uses of this package include data management, construction of longdesc lists and tables, and calculations based on the contents of longdesc lists and arrays. -runfiles size=5 - RELOC/tex/latex/forarray/forarray.sty +containersize 5064 +containerchecksum f818d0899fcba2d61ad119698d3633a28d5300098a4bd56a82b7b1c9cfc12c47a9457efed7cbdf8aee3ba9ba4143eefbdd54bc995c84c9bbe99dd5717030bef5 +doccontainersize 246748 +doccontainerchecksum e292418f60b290bf0567ea70169d66557a8408b2933221e0658d6d8e807b6495258a6ea33d65d14e13129ff8e58dc9cb50115459b014ec00e0b084f3d3fd55fd docfiles size=97 - RELOC/doc/latex/forarray/README.txt + RELOC/doc/latex/forarray/README.txt details="Readme" RELOC/doc/latex/forarray/forarray RELOC/doc/latex/forarray/forarray-test.pdf RELOC/doc/latex/forarray/forarray-test.tex RELOC/doc/latex/forarray/forarray.dtm RELOC/doc/latex/forarray/forarray.dts - RELOC/doc/latex/forarray/forarray.pdf + RELOC/doc/latex/forarray/forarray.pdf details="Package documentation" +srccontainersize 14416 +srccontainerchecksum 4a9574868753faa19d0e80bd08c524445a015bcafe241a85d59832fb308981d12dd133fa64e65804ac5c3d86617046f06a17a4667e8cb382676dfbadd6f012a0 srcfiles size=19 RELOC/source/latex/forarray/forarray.dtx +runfiles size=5 + RELOC/tex/latex/forarray/forarray.sty catalogue-ctan /macros/latex/contrib/forarray -catalogue-date 2012-05-19 14:48:02 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics macro-supp catalogue-version 1.01 name foreign category Package revision 27819 -shortdesc Systematic treatment of 'foreign' words in documents. +shortdesc Systematic treatment of 'foreign' words in documents relocated 1 longdesc The package supports authors' use of consistent typesetting of longdesc foreign words in documents. -runfiles size=2 - RELOC/tex/latex/foreign/foreign.sty +containersize 1740 +containerchecksum e886be0cbbb64b11b6c54d6b62d6b38db1bb7e65b7a3a9cc951ad71d4cc1a93c323d8a1e17ba863daa6535c747c9801b06bc4d3c664bfb8da38518a9c93d45b0 +doccontainersize 81432 +doccontainerchecksum d3804dd1b83ba173e4098696656c814629ff099699f332c3b81136c4519bd577aaabd4d2601893f88a58009f00e8c8ba44fcf2c4a3b72ce90af4d4febb510ec6 docfiles size=26 - RELOC/doc/latex/foreign/README - RELOC/doc/latex/foreign/foreign.pdf + RELOC/doc/latex/foreign/README details="Readme" + RELOC/doc/latex/foreign/foreign.pdf details="Package documentation" +srccontainersize 6180 +srccontainerchecksum d91bd89508318df931629678cdd0415da8baed9efcb55f965d71e26a61db705acc6abe14c6f7c17b61f54e32ae123ecd48cd018920b1f43626559e2b0b4a3c16 srcfiles size=6 RELOC/source/latex/foreign/foreign.dtx RELOC/source/latex/foreign/foreign.ins +runfiles size=2 + RELOC/tex/latex/foreign/foreign.sty catalogue-ctan /macros/latex/contrib/foreign -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics typesetting catalogue-version 2.7 name forest category Package -revision 37933 -shortdesc Drawing (linguistic) trees. +revision 44797 +shortdesc Drawing (linguistic) trees relocated 1 -longdesc The package is provides a PGF/TikZ-based mechanism for drawing +longdesc The package provides a PGF/TikZ-based mechanism for drawing longdesc linguistic (and other kinds of) trees. Its main features are: a -longdesc packing algorithm which can produce very compact trees; a user- -longdesc friendly interface consisting of the familiar bracket encoding -longdesc of trees plus the key-value interface to option-setting; many -longdesc tree-formatting options, with control over option values of -longdesc individual nodes and mechanisms for their manipulation; the -longdesc possibility to decorate the tree using the full power of -longdesc PGF/TikZ; and an externalization mechanism sensitive to code- -longdesc changes. -runfiles size=41 - RELOC/tex/latex/forest/forest.sty -docfiles size=218 - RELOC/doc/latex/forest/README +longdesc packing algorithm which can produce very compact trees; a +longdesc user-friendly interface consisting of the familiar bracket +longdesc encoding of trees plus the key-value interface to +longdesc option-setting; many tree-formatting options, with control over +longdesc option values of individual nodes and mechanisms for their +longdesc manipulation; the possibility to decorate the tree using the +longdesc full power of PGF/TikZ; and an externalization mechanism +longdesc sensitive to code-changes. +depend elocalloc +containersize 56168 +containerchecksum 84edfdecfe017508c496ead33102977f2548b1e664ed6fa5108ea54d738e5bd201716fc2185d917fa5ef43b727130ca46061228cb510f5f8f19d25d677dd689f +doccontainersize 1798192 +doccontainerchecksum ffe229aafaf7fc3a2c4e48a4e549938bc80b2ef4e40e2f22ccf3f62e72b8a1eb1a88972b58ada2490efb61171d14a7d5d1e6f940754c39e3b950aa889d585ffa +docfiles size=532 + RELOC/doc/latex/forest/LICENCE + RELOC/doc/latex/forest/README details="Readme" + RELOC/doc/latex/forest/forest-doc.pdf details="Package documentation" + RELOC/doc/latex/forest/forest-doc.tex RELOC/doc/latex/forest/forest.pdf -srcfiles size=100 + RELOC/doc/latex/forest/tex.bib +srccontainersize 76248 +srccontainerchecksum 37269033ab2626581dfd8a93d739ebd74eabad9ab2b6dac1cceee33c84583241e2e5a660703befcc85c310233947222e1990d2fef02ee7f3c0ae50d2705b169e +srcfiles size=118 + RELOC/source/latex/forest/forest-doc.ins + RELOC/source/latex/forest/forest-index.dtx + RELOC/source/latex/forest/forest-libs.dtx RELOC/source/latex/forest/forest.dtx RELOC/source/latex/forest/forest.ins +runfiles size=100 + RELOC/makeindex/forest/forest-doc.ist + RELOC/tex/latex/forest/forest-compat.sty + RELOC/tex/latex/forest/forest-doc.sty + RELOC/tex/latex/forest/forest-index.sty + RELOC/tex/latex/forest/forest-lib-edges.sty + RELOC/tex/latex/forest/forest-lib-linguistics.sty + RELOC/tex/latex/forest/forest.sty +catalogue-also forest-quickstart +catalogue-contact-repository https://github.com/sasozivanovic/forest catalogue-ctan /graphics/pgf/contrib/forest -catalogue-date 2015-07-23 06:55:24 +0200 +catalogue-date 2017-07-14 14:58:06 +0200 catalogue-license lppl1.3 catalogue-topics tree pgf-tikz linguistic -catalogue-version 1.0.10 +catalogue-version 2.1.5 + +name forest-quickstart +category Package +revision 42503 +shortdesc Quickstart Guide for Linguists package "forest" +relocated 1 +longdesc forest is a PGF/TikZ-based package for drawing linguistic (and +longdesc other kinds of) trees. This manual provides a quickstart guide +longdesc for linguists with just the essential things that you need to +longdesc get started. +containersize 496 +containerchecksum 14c3512b55e7653d26571a73216cd1eb5bc4d7ec8b74ae71475c37372552fb309c148e91d4e973bd60710f2a43af9a8ddb6ad99087fd2a9b76da896e521eadbe +doccontainersize 502852 +doccontainerchecksum c53a365ccb1a4059c9440b8f23b3ec0bbafcbed14f871c92b99abaf91adc4bb42ac1d3b784cf545a6352298bded8b4cc7f6b2e114625335af5d9d003fcf922ba +docfiles size=127 + RELOC/doc/latex/forest-quickstart/ForestQuickstart.pdf details="Package documentation" + RELOC/doc/latex/forest-quickstart/ForestQuickstart.tex + RELOC/doc/latex/forest-quickstart/README details="Readme" +catalogue-also forest +catalogue-ctan /info/forest-quickstart +catalogue-date 2016-11-15 05:42:32 +0100 +catalogue-license fdl +catalogue-topics linguistic docu-pkg name forloop category Package revision 15878 -shortdesc Iteration in LaTeX. +shortdesc Iteration in LaTeX relocated 1 longdesc The package provides a command \forloop for doing iteration in longdesc LaTeX macro programming. -runfiles size=1 - RELOC/tex/latex/forloop/forloop.sty +containersize 1268 +containerchecksum a9cfda31fc63d24737a5b422e9fc7072bd1f75c0926cb45d26ea3cdb7cfb50b3f74d7602964a08f13d216f3fb3798acd21f04bdcfe85a3e3652052b9f2cbc9cb +doccontainersize 70472 +doccontainerchecksum 49bb7031207902366fbd0924a025c692ba015af134ca38c90c43e8efe7a9522ee4db4cb9b071dd00681251ad07b4587cd49eb9e09bc77f1ad5632838fac686d6 docfiles size=22 - RELOC/doc/latex/forloop/README - RELOC/doc/latex/forloop/forloop.pdf + RELOC/doc/latex/forloop/README details="Package README" + RELOC/doc/latex/forloop/forloop.pdf details="Package documentation" +srccontainersize 2576 +srccontainerchecksum f41a62a677f37a57c96a398d48cee84d213ccc23fbffe7f2da6c09e8f58d8b9524d3b53717b9657004e7de0083f43960c0ebd54de3696994d8e946d8044399e4 srcfiles size=3 RELOC/source/latex/forloop/forloop.dtx RELOC/source/latex/forloop/forloop.ins +runfiles size=1 + RELOC/tex/latex/forloop/forloop.sty catalogue-ctan /macros/latex/contrib/forloop -catalogue-date 2012-05-19 14:48:02 +0200 +catalogue-date 2018-10-09 09:13:05 +0200 catalogue-license lgpl +catalogue-topics macro-iterate macro-supp catalogue-version 3.0 +name formation-latex-ul +category Package +revision 50205 +shortdesc Introductory LaTeX course in French +relocated 1 +longdesc This package contains the supporting documentation, slides, +longdesc exercise files, and templates for an introductory LaTeX course +longdesc (in French) prepared for Universite Laval, Quebec, Canada. +containersize 552 +containerchecksum d705a402a4ba61f232e559e6a610646180f22f47df251d2731cf8f62a9edd26d60be53ad969ae0bb8d02a767b302df18b88c048ed1536b3677b7199d347e35d8 +doccontainersize 2882728 +doccontainerchecksum 5bf8c412d061a5ce30ea3af713af400eded6a0f75ee019fc9f6e40623c3203839f718eb4b630282ec700871cf4b0cfe68ff38d43cb50f53560184d7d44d528e2 +docfiles size=781 + RELOC/doc/latex/formation-latex-ul/CONTRIBUTING.md + RELOC/doc/latex/formation-latex-ul/LICENSE + RELOC/doc/latex/formation-latex-ul/NEWS + RELOC/doc/latex/formation-latex-ul/README.md details="Readme" + RELOC/doc/latex/formation-latex-ul/b-a-ba-math.tex + RELOC/doc/latex/formation-latex-ul/console-screenshot.pdf + RELOC/doc/latex/formation-latex-ul/emacs.tex + RELOC/doc/latex/formation-latex-ul/exercice_classe+paquetages.tex + RELOC/doc/latex/formation-latex-ul/exercice_commandes.tex + RELOC/doc/latex/formation-latex-ul/exercice_complet.tex + RELOC/doc/latex/formation-latex-ul/exercice_demo.tex + RELOC/doc/latex/formation-latex-ul/exercice_gabarit.tex + RELOC/doc/latex/formation-latex-ul/exercice_include.tex + RELOC/doc/latex/formation-latex-ul/exercice_mathematiques.tex + RELOC/doc/latex/formation-latex-ul/exercice_minimal.tex + RELOC/doc/latex/formation-latex-ul/exercice_parties.tex + RELOC/doc/latex/formation-latex-ul/exercice_renvois.tex + RELOC/doc/latex/formation-latex-ul/exercice_subcaption.tex + RELOC/doc/latex/formation-latex-ul/exercice_trucs.tex + RELOC/doc/latex/formation-latex-ul/exercice_ulthese.tex + RELOC/doc/latex/formation-latex-ul/formation-latex-ul-diapos.pdf details="The course itself (Slides)" language="fr" + RELOC/doc/latex/formation-latex-ul/formation-latex-ul.pdf details="The course itself (Manual)" language="fr" + RELOC/doc/latex/formation-latex-ul/pagetitre.tex + RELOC/doc/latex/formation-latex-ul/rpresentation.tex +srccontainersize 2277760 +srccontainerchecksum 51a77394f3471dd2fe6b29717c89cc8d2f6f0a126ad84d5973bb1d3a8600539148be0450b1e5f5cde7070224ea02b09ed9b871f743ec82c78640b9ab54ae602d +srcfiles size=714 + RELOC/source/latex/formation-latex-ul/apparence-diapos.tex + RELOC/source/latex/formation-latex-ul/apparence.tex + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-classe-article.pdf + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-classe-article.tex + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-classe-book.pdf + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-classe-book.tex + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-classe-report.pdf + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-classe-report.tex + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-renvoi-autoref.pdf + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-renvoi-autoref.tex + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-renvoi-hyperref.pdf + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-renvoi-hyperref.tex + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-renvoi.pdf + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-renvoi.tex + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-titre.pdf + RELOC/source/latex/formation-latex-ul/auxdoc/exemple-titre.tex + RELOC/source/latex/formation-latex-ul/auxdoc/exercice_commandes-solution.pdf + RELOC/source/latex/formation-latex-ul/auxdoc/exercice_commandes-solution.tex + RELOC/source/latex/formation-latex-ul/bases-diapos.tex + RELOC/source/latex/formation-latex-ul/bases.tex + RELOC/source/latex/formation-latex-ul/bibliographie.tex + RELOC/source/latex/formation-latex-ul/boites.tex + RELOC/source/latex/formation-latex-ul/colophon-diapos.tex + RELOC/source/latex/formation-latex-ul/colophon.tex + RELOC/source/latex/formation-latex-ul/commandes.tex + RELOC/source/latex/formation-latex-ul/couverture-arriere-diapos.tex + RELOC/source/latex/formation-latex-ul/couverture-arriere.tex + RELOC/source/latex/formation-latex-ul/couverture-avant-diapos.tex + RELOC/source/latex/formation-latex-ul/couverture-avant.tex + RELOC/source/latex/formation-latex-ul/formation-latex-ul-diapos.tex + RELOC/source/latex/formation-latex-ul/formation-latex-ul.bib + RELOC/source/latex/formation-latex-ul/formation-latex-ul.tex + RELOC/source/latex/formation-latex-ul/francais.bst + RELOC/source/latex/formation-latex-ul/images/Meerkat_stare-diapos.jpg + RELOC/source/latex/formation-latex-ul/images/Meerkat_stare.jpg + RELOC/source/latex/formation-latex-ul/images/bibtex-texmaker.png + RELOC/source/latex/formation-latex-ul/images/bibtex-texshop.png + RELOC/source/latex/formation-latex-ul/images/by-sa.pdf + RELOC/source/latex/formation-latex-ul/images/by.pdf + RELOC/source/latex/formation-latex-ul/images/exemple-bibliographie-cropped-1.pdf + RELOC/source/latex/formation-latex-ul/images/exemple-bibliographie-cropped-2.pdf + RELOC/source/latex/formation-latex-ul/images/exemple-bibliographie-cropped-3.pdf + RELOC/source/latex/formation-latex-ul/images/exercice_commandes-solution.pdf + RELOC/source/latex/formation-latex-ul/images/formation-latex-ul.png + RELOC/source/latex/formation-latex-ul/images/knuth.jpg + RELOC/source/latex/formation-latex-ul/images/ponctuation.pdf + RELOC/source/latex/formation-latex-ul/images/sa.pdf + RELOC/source/latex/formation-latex-ul/images/section-non-num.pdf + RELOC/source/latex/formation-latex-ul/images/section-num.pdf + RELOC/source/latex/formation-latex-ul/images/tdm-dans-pdf.pdf + RELOC/source/latex/formation-latex-ul/images/ul_p.pdf + RELOC/source/latex/formation-latex-ul/images/xyz-emph.pdf + RELOC/source/latex/formation-latex-ul/images/xyz-math.pdf + RELOC/source/latex/formation-latex-ul/introduction.tex + RELOC/source/latex/formation-latex-ul/listings/exemple-bibliographie.bib + RELOC/source/latex/formation-latex-ul/listings/exemple-bibliographie.tex + RELOC/source/latex/formation-latex-ul/mathematiques-diapos.tex + RELOC/source/latex/formation-latex-ul/mathematiques.tex + RELOC/source/latex/formation-latex-ul/notices-diapos.tex + RELOC/source/latex/formation-latex-ul/notices.tex + RELOC/source/latex/formation-latex-ul/organisation-diapos.tex + RELOC/source/latex/formation-latex-ul/organisation.tex + RELOC/source/latex/formation-latex-ul/prerequis-diapos.tex + RELOC/source/latex/formation-latex-ul/presentation-diapos.tex + RELOC/source/latex/formation-latex-ul/presentation.tex + RELOC/source/latex/formation-latex-ul/solutions.tex + RELOC/source/latex/formation-latex-ul/suite-diapos.tex + RELOC/source/latex/formation-latex-ul/sweave-diapos.tex + RELOC/source/latex/formation-latex-ul/tableaux+figures.tex + RELOC/source/latex/formation-latex-ul/tableaux-diapos.tex + RELOC/source/latex/formation-latex-ul/trucs+astuces.tex + RELOC/source/latex/formation-latex-ul/ulthese-diapos.tex + RELOC/source/latex/formation-latex-ul/ulthese.tex +catalogue-contact-home https://vigou3.github.io/formation-latex-ul +catalogue-contact-repository https://gitlab.com/vigou3/formation-latex-ul +catalogue-ctan /info/formation-latex-ul +catalogue-date 2019-03-02 08:51:04 +0100 +catalogue-license cc-by-4 +catalogue-topics course-material tut-latex french-doc +catalogue-version 2019.03 + name formlett category Package revision 21480 -shortdesc Letters to multiple recipients. +shortdesc Letters to multiple recipients relocated 1 longdesc A package for multiple letters from the same basic source; the longdesc package offers parametrisation of the letters actually sent. -runfiles size=17 - RELOC/tex/generic/formlett/formlett.sty +containersize 15972 +containerchecksum 9d984435565a9354d03f7ef1307d543e3a0bd3a8d398f6dec426f7ae16fe3c6b20e60cfb5daeca7be092427606b5a5886a31dc05d023d0f26d61aa1c07be4b8a +doccontainersize 352480 +doccontainerchecksum 8eee17c77620f48319e862f2e7d8ae4b979c84250dd17f33cae9db52b1f219f2f86c690969a783648ee3979f24ef58e410cee47afcb12bcd26e4278af4625c6c docfiles size=115 - RELOC/doc/generic/formlett/prog_manual.pdf + RELOC/doc/generic/formlett/prog_manual.pdf details="Programmers manual" RELOC/doc/generic/formlett/prog_manual.tex - RELOC/doc/generic/formlett/user_manual.pdf + RELOC/doc/generic/formlett/user_manual.pdf details="User manual" RELOC/doc/generic/formlett/user_manual.tex +runfiles size=17 + RELOC/tex/generic/formlett/formlett.sty +catalogue-also akletter dinbrief envlab catalogue-ctan /macros/generic/formlett -catalogue-date 2011-09-13 15:32:00 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics letter catalogue-version 2.3 +name forms16be +category Package +revision 45178 +shortdesc Initialize form properties using big-endian encoding +relocated 1 +longdesc This package provides support for UTF-16BE Unicode character +longdesc encoding (called a big-endian character string) for the text +longdesc string type (PDF Reference, version 1.7, beginning on page +longdesc 158). Text strings are used in "text annotations, bookmark +longdesc names, article threads, document information, and so forth" (to +longdesc partially quote page 158). The particular application is to set +longdesc property values of form fields, at least those properties that +longdesc take the text strings as its value. The package contains +longdesc support for Basic Latin plus the ability to enter any unicode +longdesc character using the notation \uXXXX, where XXXX are four hex +longdesc digits. The Package works for dvips/Distiller, pdfLaTeX, +longdesc LuaLaTeX, and XeLaTeX. +containersize 2164 +containerchecksum 2afb4f5190fe55ef12e9b220c77ef0ca21b01c1c0e2e9e7bc269f06b6f6572f5078cbdd025671a36db3d0fe395fdeb7564ef7c6275bea69d109a306152baa554 +doccontainersize 1201520 +doccontainerchecksum 5a56a9f864ea2bb95d5199a9b54acf8d2d4aee073057c51abf96facee9e741057124c60a5d22417aa3209bf9ea804e115552035fbfb2a22032229acedba1159d +docfiles size=336 + RELOC/doc/latex/forms16be/README.md details="Readme" + RELOC/doc/latex/forms16be/doc/forms16be-man.pdf details="Package documentation" + RELOC/doc/latex/forms16be/doc/forms16be-man.tex + RELOC/doc/latex/forms16be/examples/forms16b3-ap.tex + RELOC/doc/latex/forms16be/examples/forms16b3-ef.pdf + RELOC/doc/latex/forms16be/examples/forms16b3-ef.tex + RELOC/doc/latex/forms16be/examples/forms16b3-hy.tex +srccontainersize 4784 +srccontainerchecksum 0f5eb36894db0ecffa38c260c059d8b864794eae0b5a43417da87c7487b2115e6e2e3cd96e85bf495efe5f39a2870216bbff40094b3deb8593126e853d7993e6 +srcfiles size=5 + RELOC/source/latex/forms16be/forms16be.dtx + RELOC/source/latex/forms16be/forms16be.ins +runfiles size=2 + RELOC/tex/latex/forms16be/forms16be.sty + RELOC/tex/latex/forms16be/uni4basic-latin.def +catalogue-ctan /macros/latex/contrib/forms16be +catalogue-date 2018-06-12 05:18:15 +0200 +catalogue-license lppl1.2 +catalogue-topics form-fillin pdf-feat adobe-distiller +catalogue-version 1.2 + name formular category Package revision 15878 -shortdesc Create forms containing field for manual entry. +shortdesc Create forms containing field for manual entry relocated 1 longdesc When typesetting forms there often arises the need for defining longdesc fields which consist of one or more lines where the customer longdesc can write something down manually. This package offers some longdesc commands for defining such fields in a distinctive way. -runfiles size=3 - RELOC/tex/latex/formular/formular.sty +containersize 3240 +containerchecksum 0be09e33fc3cf97552dc9e960979447de61c53bea46205a52b37094f7ce39f10309f559dc99c0037392d4924bb688e27bc8d26e5f6fc69dfbc3d3c41736223ab +doccontainersize 129364 +doccontainerchecksum 09550cdf735f340a13c9104b86b37dfca67e39c277ec9f98bab08754f393368bea8379019c402662b7e7df351636e44814bb45c0970cb24db10bf3efdd9dd7c7 docfiles size=39 - RELOC/doc/latex/formular/README - RELOC/doc/latex/formular/formular.pdf + RELOC/doc/latex/formular/README details="Readme" + RELOC/doc/latex/formular/formular.pdf details="Package documentation" +srccontainersize 8208 +srccontainerchecksum 12a7c774c2b6638d610c3277246ced4c8946f0393527ecd0da101481b1b85d1418537019962f86aa8b7657a0159f7c210acb3eea1386e8a528a09428619f0b6f srcfiles size=9 RELOC/source/latex/formular/formular.dtx RELOC/source/latex/formular/formular.ins +runfiles size=3 + RELOC/tex/latex/formular/formular.sty catalogue-ctan /macros/latex/contrib/formular -catalogue-date 2012-05-19 14:48:02 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics form-fillin catalogue-version 1.0a name fouridx category Package revision 32214 -shortdesc Left sub- and superscripts in maths mode. +shortdesc Left sub- and superscripts in maths mode relocated 1 longdesc The package enables left subscripts and superscripts in maths longdesc mode. The sub- and superscripts are raised for optimum fitting @@ -68667,91 +112882,56 @@ longdesc to the symbol indexed, in such a way that left and right sub- longdesc and superscripts are set on the same level, as appropriate. The longdesc package provides an alternative to the use of the \sideset longdesc command in the amsmath package. -runfiles size=1 - RELOC/tex/latex/fouridx/fouridx.sty +containersize 1184 +containerchecksum 01a2cc941482972cb8ca3f5402bef75f53d5e7db2b42f8bdf614c34faab3805c3548d3786c3e7cd9d8d8f7691cd5e8e71e056ad8afc24d52444c6969c11eaa14 +doccontainersize 211220 +doccontainerchecksum 8bc55b8e191b83ea42e228b47621780f4aaeec65248f5b3e9aad94443eeba08b1bf1bf44b7cf252f66466e5b0170260ad202c13abf2d76d4576833224212ae44 docfiles size=53 - RELOC/doc/latex/fouridx/README - RELOC/doc/latex/fouridx/fouridx.pdf + RELOC/doc/latex/fouridx/README details="Readme" + RELOC/doc/latex/fouridx/fouridx.pdf details="Package documentation" +srccontainersize 3260 +srccontainerchecksum c29e1c93e31da33a3ba3914ea2992a53b52bc18a4da0d20cdfec712037f98058be5113dc65d731253aff8c4e1b0fcac4afe3da36b972f1fb23ce45a795c546a3 srcfiles size=4 RELOC/source/latex/fouridx/fouridx.dtx RELOC/source/latex/fouridx/fouridx.ins +runfiles size=1 + RELOC/tex/latex/fouridx/fouridx.sty catalogue-ctan /macros/latex/contrib/fouridx -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics subsup-pos maths catalogue-version 2.00 -name fouriernc -category Package -revision 29646 -shortdesc Use New Century Schoolbook text with Fourier maths fonts. -relocated 1 -longdesc This package provides a LaTeX mathematics font setup for use -longdesc with New Century Schoolbook text. In order to use it you need -longdesc to have the Fourier-GUTenberg fonts installed. -runfiles size=23 - RELOC/fonts/afm/public/fouriernc/fourier-mcl.afm - RELOC/fonts/afm/public/fouriernc/fourier-ml.afm - RELOC/fonts/afm/public/fouriernc/fourier-mlb.afm - RELOC/fonts/afm/public/fouriernc/fourier-mlit.afm - RELOC/fonts/afm/public/fouriernc/fourier-mlitb.afm - RELOC/fonts/afm/public/fouriernc/fourier-ms.afm - RELOC/fonts/tfm/public/fouriernc/fncmi.tfm - RELOC/fonts/tfm/public/fouriernc/fncmib.tfm - RELOC/fonts/tfm/public/fouriernc/fncmii.tfm - RELOC/fonts/tfm/public/fouriernc/fncmiib.tfm - RELOC/fonts/tfm/public/fouriernc/fncsy.tfm - RELOC/fonts/vf/public/fouriernc/fncmi.vf - RELOC/fonts/vf/public/fouriernc/fncmib.vf - RELOC/fonts/vf/public/fouriernc/fncmii.vf - RELOC/fonts/vf/public/fouriernc/fncmiib.vf - RELOC/fonts/vf/public/fouriernc/fncsy.vf - RELOC/tex/latex/fouriernc/fmlfncm.fd - RELOC/tex/latex/fouriernc/fmlfncmi.fd - RELOC/tex/latex/fouriernc/fmsfncm.fd - RELOC/tex/latex/fouriernc/fouriernc.sty - RELOC/tex/latex/fouriernc/t1fnc.fd - RELOC/tex/latex/fouriernc/ts1fnc.fd -docfiles size=39 - RELOC/doc/fonts/fouriernc/README - RELOC/doc/fonts/fouriernc/build-fouriernc.tex - RELOC/doc/fonts/fouriernc/mathit.mtx - RELOC/doc/fonts/fouriernc/mathsy.mtx - RELOC/doc/fonts/fouriernc/omlgutop.etx - RELOC/doc/fonts/fouriernc/omsgutop.etx - RELOC/doc/fonts/fouriernc/setxheight.mtx - RELOC/doc/fonts/fouriernc/specialkernings.mtx - RELOC/doc/fonts/fouriernc/specialkerningsital.mtx - RELOC/doc/fonts/fouriernc/substitutes.zip - RELOC/doc/fonts/fouriernc/test_fouriernc.pdf - RELOC/doc/fonts/fouriernc/unset0.mtx - RELOC/doc/fonts/fouriernc/unset0A.mtx - RELOC/doc/fonts/fouriernc/unsetAlph.mtx - RELOC/doc/fonts/fouriernc/unsetUCgreek.mtx - RELOC/doc/fonts/fouriernc/unsetfontparams.mtx - RELOC/doc/fonts/fouriernc/unsetmu.mtx - RELOC/doc/fonts/fouriernc/unsetpar.mtx - RELOC/doc/fonts/fouriernc/zrmhax.mtx - RELOC/doc/fonts/fouriernc/zrykernx.mtx -catalogue-ctan /fonts/fouriernc -catalogue-date 2014-05-01 23:14:09 +0200 -catalogue-license lppl - name fourier category Package revision 15878 -shortdesc Using Utopia fonts in LaTeX documents. +shortdesc Using Utopia fonts in LaTeX documents relocated 1 longdesc Fourier-GUTenberg is a LaTeX typesetting system which uses longdesc Adobe Utopia as its standard base font. Fourier-GUTenberg longdesc provides all complementary typefaces needed to allow Utopia longdesc based TeX typesetting, including an extensive mathematics set -longdesc and several other symbols. The system is absolutely stand- -longdesc alone: apart from Utopia and Fourier, no other typefaces are -longdesc required. The fourier fonts will also work with Adobe Utopia -longdesc Expert fonts, which are only available for purchase. Utopia is -longdesc a registered trademark of Adobe Systems Incorporated +longdesc and several other symbols. The system is absolutely +longdesc stand-alone: apart from Utopia and Fourier, no other typefaces +longdesc are required. The fourier fonts will also work with Adobe +longdesc Utopia Expert fonts, which are only available for purchase. +longdesc Utopia is a registered trademark of Adobe Systems Incorporated execute addMap fourier.map execute addMap fourier-utopia-expert.map +containersize 237348 +containerchecksum 3bcd5010df4ecd50bd29664b69d6ac6d56d76615dd20ef44d38ed021a2ca3beadb7eb5f8cc2634dda2476f225f6c174f48dad98fbfea7f3c91f3398ebc29c737 +doccontainersize 138480 +doccontainerchecksum 49655ed0c27aa8b9f76ae2f1dc956eae91ccfc074d4811fcd455709d6574affca3706d06b8a2d1ad5b1285daf287b2b46e61f6ae28575c3197965df78f2e9107 +docfiles size=49 + RELOC/doc/fonts/fourier/README details="Readme" + RELOC/doc/fonts/fourier/fourier-doc-en.pdf details="Package documentation" + RELOC/doc/fonts/fourier/fourier-doc-en.tex + RELOC/doc/fonts/fourier/fourier-orns.pdf details="The Fourier ornaments" + RELOC/doc/fonts/fourier/fourier-orns.tex +srccontainersize 3316 +srccontainerchecksum 026c359eea5d49cda0ac58c5905277c90231664d96cd8ad1276626beaae05bee30a0f3884533eae5641e494942ed65848579653ac8adef88de4075fb5d6f114a +srcfiles size=4 + RELOC/source/fonts/fourier/Makefile runfiles size=379 RELOC/fonts/afm/public/fourier/fourier-alt-black.afm RELOC/fonts/afm/public/fourier/fourier-alt-bold.afm @@ -68964,22 +113144,114 @@ runfiles size=379 RELOC/tex/latex/fourier/ts1futs.fd RELOC/tex/latex/fourier/ts1futx.fd RELOC/tex/latex/fourier/ufuts.fd -docfiles size=49 - RELOC/doc/fonts/fourier/README - RELOC/doc/fonts/fourier/fourier-doc-en.pdf - RELOC/doc/fonts/fourier/fourier-doc-en.tex - RELOC/doc/fonts/fourier/fourier-orns.pdf - RELOC/doc/fonts/fourier/fourier-orns.tex -srcfiles size=4 - RELOC/source/fonts/fourier/Makefile +catalogue-also utopia catalogue-ctan /fonts/fourier-GUT -catalogue-date 2014-05-01 23:14:09 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-maths font-type1 catalogue-version 1.3 +name fouriernc +category Package +revision 29646 +shortdesc Use New Century Schoolbook text with Fourier maths fonts +relocated 1 +longdesc This package provides a LaTeX mathematics font setup for use +longdesc with New Century Schoolbook text. In order to use it you need +longdesc to have the Fourier-GUTenberg fonts installed. +containersize 12492 +containerchecksum 904b464fb9066100512cfd8a8998bb089113b443e2df1fb77100f9b5a26d48a5b3512931c00292d19764eb4f068f207eb38dab78798f217f2533a65229411df9 +doccontainersize 37464 +doccontainerchecksum 039ce79d06bd1fb55b257f1c65c53412b15c26d4eafb9d3abe9bb7a7fa836c8b545718f70d935f1449fa235f33d07c81ad8f228608de20ffdfa99b9f532e059d +docfiles size=39 + RELOC/doc/fonts/fouriernc/README details="Readme" + RELOC/doc/fonts/fouriernc/build-fouriernc.tex + RELOC/doc/fonts/fouriernc/mathit.mtx + RELOC/doc/fonts/fouriernc/mathsy.mtx + RELOC/doc/fonts/fouriernc/omlgutop.etx + RELOC/doc/fonts/fouriernc/omsgutop.etx + RELOC/doc/fonts/fouriernc/setxheight.mtx + RELOC/doc/fonts/fouriernc/specialkernings.mtx + RELOC/doc/fonts/fouriernc/specialkerningsital.mtx + RELOC/doc/fonts/fouriernc/substitutes.zip + RELOC/doc/fonts/fouriernc/test_fouriernc.pdf details="FourierNC test example:" + RELOC/doc/fonts/fouriernc/unset0.mtx + RELOC/doc/fonts/fouriernc/unset0A.mtx + RELOC/doc/fonts/fouriernc/unsetAlph.mtx + RELOC/doc/fonts/fouriernc/unsetUCgreek.mtx + RELOC/doc/fonts/fouriernc/unsetfontparams.mtx + RELOC/doc/fonts/fouriernc/unsetmu.mtx + RELOC/doc/fonts/fouriernc/unsetpar.mtx + RELOC/doc/fonts/fouriernc/zrmhax.mtx + RELOC/doc/fonts/fouriernc/zrykernx.mtx +runfiles size=23 + RELOC/fonts/afm/public/fouriernc/fourier-mcl.afm + RELOC/fonts/afm/public/fouriernc/fourier-ml.afm + RELOC/fonts/afm/public/fouriernc/fourier-mlb.afm + RELOC/fonts/afm/public/fouriernc/fourier-mlit.afm + RELOC/fonts/afm/public/fouriernc/fourier-mlitb.afm + RELOC/fonts/afm/public/fouriernc/fourier-ms.afm + RELOC/fonts/tfm/public/fouriernc/fncmi.tfm + RELOC/fonts/tfm/public/fouriernc/fncmib.tfm + RELOC/fonts/tfm/public/fouriernc/fncmii.tfm + RELOC/fonts/tfm/public/fouriernc/fncmiib.tfm + RELOC/fonts/tfm/public/fouriernc/fncsy.tfm + RELOC/fonts/vf/public/fouriernc/fncmi.vf + RELOC/fonts/vf/public/fouriernc/fncmib.vf + RELOC/fonts/vf/public/fouriernc/fncmii.vf + RELOC/fonts/vf/public/fouriernc/fncmiib.vf + RELOC/fonts/vf/public/fouriernc/fncsy.vf + RELOC/tex/latex/fouriernc/fmlfncm.fd + RELOC/tex/latex/fouriernc/fmlfncmi.fd + RELOC/tex/latex/fouriernc/fmsfncm.fd + RELOC/tex/latex/fouriernc/fouriernc.sty + RELOC/tex/latex/fouriernc/t1fnc.fd + RELOC/tex/latex/fouriernc/ts1fnc.fd +catalogue-ctan /fonts/fouriernc +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font font-maths font-virtual + +name fp +category Package +revision 49719 +shortdesc Fixed point arithmetic +relocated 1 +longdesc An extensive collection of arithmetic operations for fixed +longdesc point real numbers of high precision. +containersize 19252 +containerchecksum 27e60a78da80caf0e50d1fc83d227d19982e30950650845df710949f4d88db67dad96212331182561c43d37cdeabd3b68f9af55763f30175ab27a6b5f089870e +doccontainersize 218964 +doccontainerchecksum 79b62424943f725ffc6c1698cadb9ba2fa6d9f0694741a951bbed23c43f870b930d966f110bbe722c17249c7211f08a3a95a5ce7e9da69b7487aec37e99e5152 +docfiles size=59 + RELOC/doc/latex/fp/README details="Readme" + RELOC/doc/latex/fp/documentation.pdf details="Documentation" + RELOC/doc/latex/fp/fp.tex +runfiles size=37 + RELOC/tex/latex/fp/defpattern.sty + RELOC/tex/latex/fp/fp-addons.sty + RELOC/tex/latex/fp/fp-basic.sty + RELOC/tex/latex/fp/fp-eqn.sty + RELOC/tex/latex/fp/fp-eval.sty + RELOC/tex/latex/fp/fp-exp.sty + RELOC/tex/latex/fp/fp-pas.sty + RELOC/tex/latex/fp/fp-random.sty + RELOC/tex/latex/fp/fp-snap.sty + RELOC/tex/latex/fp/fp-trigo.sty + RELOC/tex/latex/fp/fp-upn.sty + RELOC/tex/latex/fp/fp.sty + RELOC/tex/latex/fp/lfp.sty + RELOC/tex/plain/fp/fp.tex +catalogue-also fltpoint +catalogue-ctan /macros/latex/contrib/fp +catalogue-date 2019-01-14 22:49:01 +0100 +catalogue-license lppl +catalogue-topics arithmetic calculation +catalogue-version 2.1d + name fpl category Package -revision 15878 +revision 49603 shortdesc SC and OsF fonts for URW Palladio L relocated 1 longdesc The FPL Fonts provide a set of SC/OsF fonts for URW Palladio L @@ -68995,26 +113267,15 @@ longdesc editor FontForge. The kerning data in these fonts comes from longdesc Walter Schmidt's improved Palatino metrics. LaTeX use is longdesc enabled by the mathpazo package, which is part of the psnfss longdesc distribution. -runfiles size=180 - RELOC/fonts/afm/public/fpl/fplbij8a.afm - RELOC/fonts/afm/public/fpl/fplbj8a.afm - RELOC/fonts/afm/public/fpl/fplrc8a.afm - RELOC/fonts/afm/public/fpl/fplrij8a.afm - RELOC/fonts/afm/public/fpl/pplb9d-kern.afm - RELOC/fonts/afm/public/fpl/pplbi9d-kern.afm - RELOC/fonts/afm/public/fpl/pplrc9d-kern.afm - RELOC/fonts/afm/public/fpl/pplri9d-kern.afm - RELOC/fonts/type1/public/fpl/fplbij8a.pfb - RELOC/fonts/type1/public/fpl/fplbij8a.pfm - RELOC/fonts/type1/public/fpl/fplbj8a.pfb - RELOC/fonts/type1/public/fpl/fplbj8a.pfm - RELOC/fonts/type1/public/fpl/fplrc8a.pfb - RELOC/fonts/type1/public/fpl/fplrc8a.pfm - RELOC/fonts/type1/public/fpl/fplrij8a.pfb - RELOC/fonts/type1/public/fpl/fplrij8a.pfm +containersize 288444 +containerchecksum 5bd87e686f418d0ef76ca1868b5034ebf5239665dfa52eff5d9e559a733420891ec2f17d7e08b527a422b8c4cf6ebaaa80753abace423759fa06beecef31228e +doccontainersize 7968 +doccontainerchecksum b101782fdbe6896cc49fd81b6ec213d5b9951d3e80de22d7797bbb34ee4ae18d3ad6650fb05e57983cd665d09d23f3d7efeb4dd1b14c294373f9d0df95e66162 docfiles size=6 RELOC/doc/fonts/fpl/COPYING - RELOC/doc/fonts/fpl/README + RELOC/doc/fonts/fpl/README details="Readme" +srccontainersize 30656 +srccontainerchecksum 7c98491db4a2844340c33f9f23f90a50c7a41404c010aab8ecf544c504787758ba86265da3f988453c3ddc3972df8dda55091b3ff5751d2c60ff4c5bab24a059 srcfiles size=63 RELOC/source/fonts/fpl/AddException RELOC/source/fonts/fpl/AddGPL @@ -69029,57 +113290,50 @@ srcfiles size=63 RELOC/source/fonts/fpl/TeXPalladioL-ItalicOsF.pe RELOC/source/fonts/fpl/TeXPalladioL-SC.pe RELOC/source/fonts/fpl/URW-OtherSubrs.ps +runfiles size=168 + RELOC/fonts/afm/public/fpl/fplbij8a.afm + RELOC/fonts/afm/public/fpl/fplbj8a.afm + RELOC/fonts/afm/public/fpl/fplrc8a.afm + RELOC/fonts/afm/public/fpl/fplrij8a.afm + RELOC/fonts/afm/public/fpl/pplb9d-kern.afm + RELOC/fonts/afm/public/fpl/pplbi9d-kern.afm + RELOC/fonts/afm/public/fpl/pplrc9d-kern.afm + RELOC/fonts/afm/public/fpl/pplri9d-kern.afm + RELOC/fonts/type1/public/fpl/fplbij8a.pfb + RELOC/fonts/type1/public/fpl/fplbij8a.pfm + RELOC/fonts/type1/public/fpl/fplbj8a.pfb + RELOC/fonts/type1/public/fpl/fplbj8a.pfm + RELOC/fonts/type1/public/fpl/fplrc8a.pfb + RELOC/fonts/type1/public/fpl/fplrc8a.pfm + RELOC/fonts/type1/public/fpl/fplrij8a.pfb + RELOC/fonts/type1/public/fpl/fplrij8a.pfm +catalogue-contact-bugs https://github.com/rstub/fpl/issues +catalogue-contact-repository https://github.com/rstub/fpl catalogue-ctan /fonts/fpl -catalogue-date 2014-05-01 23:14:09 +0200 -catalogue-license gpl -catalogue-version 1.002 - -name fp -category Package -revision 15878 -shortdesc Fixed point arithmetic. -relocated 1 -longdesc An extensive collection of arithmetic operations for fixed -longdesc point real numbers of high precision. -runfiles size=37 - RELOC/tex/latex/fp/defpattern.sty - RELOC/tex/latex/fp/fp-addons.sty - RELOC/tex/latex/fp/fp-basic.sty - RELOC/tex/latex/fp/fp-eqn.sty - RELOC/tex/latex/fp/fp-eval.sty - RELOC/tex/latex/fp/fp-exp.sty - RELOC/tex/latex/fp/fp-pas.sty - RELOC/tex/latex/fp/fp-random.sty - RELOC/tex/latex/fp/fp-snap.sty - RELOC/tex/latex/fp/fp-trigo.sty - RELOC/tex/latex/fp/fp-upn.sty - RELOC/tex/latex/fp/fp.sty - RELOC/tex/latex/fp/lfp.sty - RELOC/tex/plain/fp/fp.tex -docfiles size=6 - RELOC/doc/latex/fp/README - RELOC/doc/latex/fp/fp.tex -catalogue-ctan /macros/latex/contrib/fp -catalogue-date 2013-09-30 11:48:44 +0200 -catalogue-license lppl +catalogue-date 2019-01-04 17:37:23 +0100 +catalogue-license gpl2lppl +catalogue-topics font font-type1 font-sfd font-serif font-body font-proportional +catalogue-version 1.003 name fragmaster category Package revision 26313 -shortdesc Using psfrag with PDFLaTeX. -longdesc Fragmaster enables you to use psfrag with PDFLaTeX. It takes +shortdesc Using psfrag with pdfLaTeX +longdesc Fragmaster enables you to use psfrag with pdfLaTeX. It takes longdesc EPS files and psfrag substitution definition files, and longdesc produces PDF and EPS files with the substitutions included. depend fragmaster.ARCH -runfiles size=5 - texmf-dist/scripts/fragmaster/fragmaster.pl +containersize 6872 +containerchecksum dc5d80aa4bab7a0a66258face6cf8222d03b12ea492f7cf568ef815a6d5950a8a2b36c7403ab466141f49cb8faedfbb33146820b88da17d8b8fa18a2b16235e4 +doccontainersize 80316 +doccontainerchecksum 61f0bd7dab46bfb91b634006217f01648007cbce3c9187b0811a5cc1755ec19654da94b47866ad9873fd57629f1561d1cc46bf3a4d62db618502aa0e67500637 docfiles size=75 texmf-dist/doc/support/fragmaster/AUTHORS texmf-dist/doc/support/fragmaster/COPYING texmf-dist/doc/support/fragmaster/CREDITS texmf-dist/doc/support/fragmaster/Changes - texmf-dist/doc/support/fragmaster/README - texmf-dist/doc/support/fragmaster/README.de + texmf-dist/doc/support/fragmaster/README details="Readme (English)" language="en" + texmf-dist/doc/support/fragmaster/README.de details="Readme (German)" language="de" texmf-dist/doc/support/fragmaster/example/document.pdf texmf-dist/doc/support/fragmaster/example/document.ps texmf-dist/doc/support/fragmaster/example/document.tex @@ -69090,22 +113344,162 @@ docfiles size=75 texmf-dist/doc/support/fragmaster/example/parabel_fm.gp texmf-dist/doc/support/fragmaster/example/parabel_fm.pdf texmf-dist/doc/support/fragmaster/fragmaster.pdf +runfiles size=5 + texmf-dist/scripts/fragmaster/fragmaster.pl catalogue-ctan /support/fragmaster -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics graphics-prep catalogue-version 1.6 -name fragmaster.i386-linux +name fragmaster.aarch64-linux category Package -revision 13663 -shortdesc i386-linux files of fragmaster -binfiles arch=i386-linux size=1 - bin/i386-linux/fragmaster +revision 46208 +shortdesc aarch64-linux files of fragmaster +containersize 344 +containerchecksum a87e385afe6763c5e67d03639caeb5182a6620308ecb805b1ed35543294185784bf1d07f08bab2197258eca3b315c04281ff287dbdd3bbe19ef968dba9373b81 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/fragmaster + +name fragmaster.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of fragmaster +containersize 344 +containerchecksum 38227b24e51f08a232dd71cef17a41ace8c0a5e7031a630bd91ea6e72260a3b07e4d1f9b5d127a7c19283b6d69abc6dfb92ff904ceac731145e6037926ec52e7 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/fragmaster + +name fragmaster.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of fragmaster +containersize 344 +containerchecksum 2fbbe74b9b765b029d32709525f8333d7eca73842394cfcc3c6d84350e9ad68c1b9e9a6281511d662b70defa53b18aec91261f690b1cbce06020416d9778532d +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/fragmaster + +name fragmaster.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of fragmaster +containersize 344 +containerchecksum b350841c558dc1c47f82216a59c36d60f6c1a91181be33d0577e838bf537e7dbb735b53a643c4e46e0d70612926476510c3c0a05a0371c588af946ccc98eb120 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/fragmaster + +name fragmaster.i386-cygwin +category Package +revision 13717 +shortdesc i386-cygwin files of fragmaster +containersize 340 +containerchecksum 0bd693bc4e9ca3a2e7f43af328132c41ac80424bca84155bfd03dc187cc4bccde308d4c46520f5d15f774856b5893a79ade1a76c41abf0c6b2a84e40b7fb0aa4 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/fragmaster + +name fragmaster.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of fragmaster +containersize 340 +containerchecksum 58dba6f8518b8e4607e8f40e0864e43cd31e3c8a8021bd41c030c36f499236e75805f6aa78e8de8f8fe1f3c2bef8e4adc7b24fdd865ab8fadcc3415ecabd6c8c +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/fragmaster + +name fragmaster.i386-linux +category Package +revision 13663 +shortdesc i386-linux files of fragmaster +containersize 344 +containerchecksum 3004b99bcc4ba81b7df2056a217d2b7f26ff82be579816bb31d62637d6fa0f71e1b1706de38e8d996ecee67b70d7f15bb9e81a95d0fa464ae55b0348851ca548 +binfiles arch=i386-linux size=1 + bin/i386-linux/fragmaster + +name fragmaster.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of fragmaster +containersize 344 +containerchecksum 142a9131279756c6170ed2e70a1253f4c203bff2002c4d59966b93aa536636eb3a35c026b3dcbc7011ed4861b36dfc48262a7ba1687b52d9dc7e5f47beffc2dd +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/fragmaster + +name fragmaster.i386-solaris +category Package +revision 13898 +shortdesc i386-solaris files of fragmaster +containersize 344 +containerchecksum e94d4d2b04dc423c1597789ce7cce7e3232830604765cf6159e02a2214fe4855bfd9aeeb2094ed0517212aaf21562499bfe877faabf4b8fca84477960b50c076 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/fragmaster + +name fragmaster.win32 +category Package +revision 15404 +shortdesc win32 files of fragmaster +containersize 688 +containerchecksum d76dee25ac8d60a69c7280cd45026070de0fd98a7e0f330c5a25caa88d73fa99100270f8d1730ae3673ab3beab3473ecaaab9ce466719511a1ad0d78becd9f62 +binfiles arch=win32 size=1 + bin/win32/fragmaster.exe + +name fragmaster.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of fragmaster +containersize 344 +containerchecksum ff2776c75a95d44a721f6654e047a6f07406a53950a0f16e4ff2ba867acf735e1aacd59b83e95296201e20353d620d871c4bf9e410eabf5b2e97075e7ccd5580 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/fragmaster + +name fragmaster.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of fragmaster +containersize 344 +containerchecksum 1889d5940290c006955607f939840d50afc5bd73b9e9417a86644b236ae3cb5195a88a96b91cc3cebce7a2c8b13e7c50ddf365cee8cf45cce1bcf998d745b788 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/fragmaster + +name fragmaster.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of fragmaster +containersize 352 +containerchecksum 9da5b21fd5419953a52dd391f743a29396aa5e7f5b6adc466f21b109e57b351031330aded45afdb943302e38a15ea45970f3ff27b3664e2997b4b5bd598dc299 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/fragmaster + +name fragmaster.x86_64-linux +category Package +revision 13777 +shortdesc x86_64-linux files of fragmaster +containersize 340 +containerchecksum 709f4314101389f90508df1be21b64d94d103ac373b16d90a9ddaa8fc74a6cd7a0f50db5add7edfcb8f18404d78c561885e8c736c16fd2b14488cc53bf60727d +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/fragmaster + +name fragmaster.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of fragmaster +containersize 348 +containerchecksum d6d912bfdb5de0dffbefdf9d5621d0fb20097940616dfdfbd83b0122c6a9243fc6872e99efea19b937a053ee7fa9b48a90f58d8ef040af7cfe887d7a700be5c3 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/fragmaster + +name fragmaster.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of fragmaster +containersize 344 +containerchecksum 59921cc34b2e12615e0cfb573a01bcbdc55a469bf86e1afe436e41cc257174b587c1b744ba418b3cacc59a3f45465376c7e9c9c9127f63741e6d2554371390a4 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/fragmaster name fragments category Package revision 15878 -shortdesc Fragments of LaTeX code. +shortdesc Fragments of LaTeX code relocated 1 longdesc A collection of fragments of LaTeX code, suitable for inclusion longdesc in packages, or (possibly) in users' documents. Included are: @@ -69113,21 +113507,56 @@ longdesc checklab, for modifying the label checking code at longdesc \end{document}; overrightarrow, defining a doubled over-arrow longdesc macro; removefr, for removing 'reset' relations between longdesc counters; and subscript, defining a \textsubscript command. +containersize 2236 +containerchecksum adab94e7cc71c6ed2d881d13254793df16eaa08d1e37e4d3f0344e7a56cf08a4ffdca784871e8939f5db8e868b7166846843492ced0071c9dfbf56e39d20ec0e +doccontainersize 484 +doccontainerchecksum dcf795392d989fdea695512c8f7011f783ea9091bfcc238ad296b0cdf1775bcf631c3097ede09a138117e39c7fa71da7eb355878c8389bdab2deb76a319102e1 +docfiles size=1 + RELOC/doc/latex/fragments/README details="Readme" runfiles size=4 RELOC/tex/latex/fragments/checklab.tex RELOC/tex/latex/fragments/overrightarrow.sty RELOC/tex/latex/fragments/removefr.tex RELOC/tex/latex/fragments/subscript.sty -docfiles size=1 - RELOC/doc/latex/fragments/README +catalogue-contact-repository https://github.com/rf-latex/fragments +catalogue-contact-support https://github.com/rf-latex/fragments/issues catalogue-ctan /macros/latex/contrib/fragments -catalogue-date 2014-10-17 01:12:51 +0200 +catalogue-date 2018-09-13 20:21:43 +0200 catalogue-license collection +catalogue-topics collection + +name frame +category Package +revision 18312 +shortdesc Framed boxes for Plain TeX +relocated 1 +longdesc A jiffy file (taken from fancybox) for placing a frame around a +longdesc box of text. The macros also provide for typesetting an empty +longdesc box of given dimensions. +containersize 1312 +containerchecksum b66df0a91a8605aaeef2452236b5169cd363689a40f4a35ab9006ac18c21d4ae2a070407f84beff7de0be246f2f1e55c8b06f234921c4d7153fea9a7f2df1679 +doccontainersize 30688 +doccontainerchecksum b61a3dfbc23031a39bbe01788f0f1d51750a3aa9132671917ed8d14c57453d588c75f8cd54beac9ac120f26b09fead55b871d53e918a735ee172f1603e4cd1ea +docfiles size=13 + RELOC/doc/generic/frame/Changes + RELOC/doc/generic/frame/Makefile + RELOC/doc/generic/frame/README details="Readme" + RELOC/doc/generic/frame/frame-doc.pdf details="Package documentation" + RELOC/doc/generic/frame/frame-doc.tex +runfiles size=2 + RELOC/tex/generic/frame/frame.sty + RELOC/tex/generic/frame/frame.tex +catalogue-also boxit +catalogue-ctan /macros/generic/frame +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics boxing decoration +catalogue-version 1.0 name framed category Package revision 26789 -shortdesc Framed or shaded regions that can break across pages. +shortdesc Framed or shaded regions that can break across pages relocated 1 longdesc The package creates three environments: framed, which puts an longdesc ordinary frame box around the region, shaded, which shades the @@ -69137,106 +113566,67 @@ longdesc enables creation of a title that is "attached" to the longdesc environment); breaks are also allowed in the course of the longdesc framed/shaded matter. There is also a command \MakeFramed to longdesc make your own framed-style environments. -runfiles size=6 - RELOC/tex/latex/framed/framed.sty +containersize 7916 +containerchecksum 06f0da36c24ba42959b2176066d3e95f23dfed41753f4e4b07c1f92c4789e68d1b246c61cbdeacbb9c00b6eb990ea2b3ec75dff8ac57845102a867dfdf2c72c7 +doccontainersize 239020 +doccontainerchecksum 1f48ac19f74f5003df88700ff85c072c8a655d4623b82bc3b7c6570a548c0a7b7e97fe292f8557a72188c0047fc28e280bc3ab65f58559804fa78e89317fd67e docfiles size=60 - RELOC/doc/latex/framed/framed.pdf + RELOC/doc/latex/framed/framed.pdf details="Package documentation" RELOC/doc/latex/framed/framed.tex +runfiles size=6 + RELOC/tex/latex/framed/framed.sty +catalogue-also mdframed catalogue-ctan /macros/latex/contrib/framed -catalogue-date 2014-10-17 01:12:51 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics boxing box-breaking decoration catalogue-version 0.96 -name frame -category Package -revision 18312 -shortdesc Framed boxes for Plain TeX. -relocated 1 -longdesc A jiffy file (taken from fancybox) for placing a frame around a -longdesc box of text. The macros also provide for typesetting an empty -longdesc box of given dimensions. -runfiles size=2 - RELOC/tex/generic/frame/frame.sty - RELOC/tex/generic/frame/frame.tex -docfiles size=13 - RELOC/doc/generic/frame/Changes - RELOC/doc/generic/frame/Makefile - RELOC/doc/generic/frame/README - RELOC/doc/generic/frame/frame-doc.pdf - RELOC/doc/generic/frame/frame-doc.tex -catalogue-ctan /macros/generic/frame -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 - name francais-bst category Package -revision 30446 -shortdesc Bibliographies conforming to French typographic standards. +revision 38922 +shortdesc Bibliographies conforming to French typographic standards relocated 1 longdesc The package provides bibliographies (in French) conforming to longdesc the rules in "Guide de la communication ecrite" (Malo, M., longdesc Quebec Amerique, 1996. ISBN 978-2-8903-7875-9) The BibTeX longdesc styles were generated using custom-bib and they are compatible longdesc with natbib -runfiles size=18 +containersize 8296 +containerchecksum b271711badae8883426ffa2783a2f942c9d37303fb4cfa8b4a2ec2f8999dd150060dae6689bef17d2120cc7489896ffa497ccb1f7f693d5db9a8ca5ef6747f21 +doccontainersize 1880 +doccontainerchecksum b3a53111f7fcfe972c0722e8600b3115b6e1a93631568d9bdb1f824b8185d4c78fbb135c4593856e3766404fc8e4c005daaf017e5c1552dc452c57e943832e14 +docfiles size=1 + RELOC/doc/bibtex/francais-bst/README details="Readme (mostly in French)" language="fr" +runfiles size=19 RELOC/bibtex/bst/francais-bst/francais.bst RELOC/bibtex/bst/francais-bst/francaissc.bst -docfiles size=2 - RELOC/doc/bibtex/francais-bst/README - RELOC/doc/bibtex/francais-bst/francaisbst.tex + RELOC/tex/latex/francais-bst/francaisbst.tex catalogue-ctan /biblio/bibtex/contrib/francais-bst -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics bibtex-sty french catalogue-version 1.1 name frankenstein category Package revision 15878 -shortdesc A collection of LaTeX packages. +shortdesc A collection of LaTeX packages relocated 1 longdesc Frankenstein is a bundle of LaTeX packages serving various longdesc purposes and a BibTeX bibliography style. Descriptions are longdesc given under the individual packages: abbrevs, achicago package, longdesc achicago bibstyle, attrib, blkcntrl, compsci, dialogue, lips, longdesc moredefs, newclude, slemph, titles. -runfiles size=191 - RELOC/bibtex/bib/frankenstein/frankenstein.bib - RELOC/bibtex/bst/frankenstein/achicago.bst - RELOC/tex/latex/frankenstein/abbrevs.cfg - RELOC/tex/latex/frankenstein/abbrevs.stq - RELOC/tex/latex/frankenstein/abbrevs.sty - RELOC/tex/latex/frankenstein/achicago.stq - RELOC/tex/latex/frankenstein/achicago.sty - RELOC/tex/latex/frankenstein/allocate.sto - RELOC/tex/latex/frankenstein/attrib.stq - RELOC/tex/latex/frankenstein/attrib.sty - RELOC/tex/latex/frankenstein/blkcntrl.stq - RELOC/tex/latex/frankenstein/blkcntrl.sty - RELOC/tex/latex/frankenstein/compsci.cfg - RELOC/tex/latex/frankenstein/compsci.stq - RELOC/tex/latex/frankenstein/compsci.sty - RELOC/tex/latex/frankenstein/dialogue.stq - RELOC/tex/latex/frankenstein/dialogue.sty - RELOC/tex/latex/frankenstein/lips.stq - RELOC/tex/latex/frankenstein/lips.sty - RELOC/tex/latex/frankenstein/moredefs.stq - RELOC/tex/latex/frankenstein/moredefs.sty - RELOC/tex/latex/frankenstein/newclude.stq - RELOC/tex/latex/frankenstein/newclude.sty - RELOC/tex/latex/frankenstein/simple.sto - RELOC/tex/latex/frankenstein/slemph.cfg - RELOC/tex/latex/frankenstein/slemph.stq - RELOC/tex/latex/frankenstein/slemph.sty - RELOC/tex/latex/frankenstein/tag.sto - RELOC/tex/latex/frankenstein/titles.cfg - RELOC/tex/latex/frankenstein/titles.stq - RELOC/tex/latex/frankenstein/titles.sty +containersize 137188 +containerchecksum 1d94962185391dc1fa9edcadd67a60d9a4b59592442ffdd45badea6279db8dea101b418ab3e03284e6e88c247fd213887f06e72fb6c4a002a66acaee82d8d4bf +doccontainersize 1830040 +doccontainerchecksum 8d8a404aa0a61fb76104bc57e1c2b837ddf68516c4d4fdc1af0a84425943f4e23a4f660b28b02e088db8849090e3734915ef7e0216f578a5199cf12115c498cd docfiles size=658 RELOC/doc/latex/frankenstein/ChangeLog RELOC/doc/latex/frankenstein/Frankenfile RELOC/doc/latex/frankenstein/INSTALL - RELOC/doc/latex/frankenstein/README + RELOC/doc/latex/frankenstein/README details="Bundle README" RELOC/doc/latex/frankenstein/abbrevs.pdf RELOC/doc/latex/frankenstein/abbrevs.tex RELOC/doc/latex/frankenstein/achicago-bst.pdf @@ -69278,6 +113668,8 @@ docfiles size=658 RELOC/doc/latex/frankenstein/unsupported/includex.pdf RELOC/doc/latex/frankenstein/unsupported/includex.sty RELOC/doc/latex/frankenstein/unsupported/includex.tex +srccontainersize 5588 +srccontainerchecksum 8481205c937e58fc0b46eb25e4f7c8b28becc7ebf2529ab784f0bbb7292dc21faa9ebd1ef3be2a98950f1d2570b23eb13f7d6e134b8c8c5eea25e81c0e6c6eb5 srcfiles size=15 RELOC/source/latex/frankenstein/Makefile RELOC/source/latex/frankenstein/abbrevs.ins @@ -69292,20 +113684,62 @@ srcfiles size=15 RELOC/source/latex/frankenstein/newclude.ins RELOC/source/latex/frankenstein/slemph.ins RELOC/source/latex/frankenstein/titles.ins +runfiles size=191 + RELOC/bibtex/bib/frankenstein/frankenstein.bib + RELOC/bibtex/bst/frankenstein/achicago.bst + RELOC/tex/latex/frankenstein/abbrevs.cfg + RELOC/tex/latex/frankenstein/abbrevs.stq + RELOC/tex/latex/frankenstein/abbrevs.sty + RELOC/tex/latex/frankenstein/achicago.stq + RELOC/tex/latex/frankenstein/achicago.sty + RELOC/tex/latex/frankenstein/allocate.sto + RELOC/tex/latex/frankenstein/attrib.stq + RELOC/tex/latex/frankenstein/attrib.sty + RELOC/tex/latex/frankenstein/blkcntrl.stq + RELOC/tex/latex/frankenstein/blkcntrl.sty + RELOC/tex/latex/frankenstein/compsci.cfg + RELOC/tex/latex/frankenstein/compsci.stq + RELOC/tex/latex/frankenstein/compsci.sty + RELOC/tex/latex/frankenstein/dialogue.stq + RELOC/tex/latex/frankenstein/dialogue.sty + RELOC/tex/latex/frankenstein/lips.stq + RELOC/tex/latex/frankenstein/lips.sty + RELOC/tex/latex/frankenstein/moredefs.stq + RELOC/tex/latex/frankenstein/moredefs.sty + RELOC/tex/latex/frankenstein/newclude.stq + RELOC/tex/latex/frankenstein/newclude.sty + RELOC/tex/latex/frankenstein/simple.sto + RELOC/tex/latex/frankenstein/slemph.cfg + RELOC/tex/latex/frankenstein/slemph.stq + RELOC/tex/latex/frankenstein/slemph.sty + RELOC/tex/latex/frankenstein/tag.sto + RELOC/tex/latex/frankenstein/titles.cfg + RELOC/tex/latex/frankenstein/titles.stq + RELOC/tex/latex/frankenstein/titles.sty +catalogue-also frankenstein-unsupported catalogue-ctan /macros/latex/contrib/frankenstein -catalogue-date 2012-05-19 19:46:22 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license collection +catalogue-topics collection name frcursive category Package revision 24559 -shortdesc French cursive hand fonts. +shortdesc French cursive hand fonts relocated 1 -longdesc A hand-writing font in the style of the French academic running- -longdesc hand. The font was written in Metafont and and has been +longdesc A hand-writing font in the style of the French academic +longdesc running-hand. The font was written in Metafont and has been longdesc converted to Adobe Type 1 format. LaTeX support (NFFS fd files, longdesc and a package) and font maps are provided. execute addMap frcursive.map +containersize 1787800 +containerchecksum 5ac038493648ad14626e2a015c7dbf96a41257ab1d1086f9e79b0128df2c85af1a279e021e52c722636f8647364791bcf7580cccc1d80d60084f5a9a55a23317 +doccontainersize 322488 +doccontainerchecksum eb0559574af52a711f61ab84cbda996c7cf4b2314b4d5faaa18824ae3396f041b7a5948151b2b5cffae6675bbe09c2e4358b81e9ad7792e5ece8a2912d7ff030 +docfiles size=83 + RELOC/doc/fonts/frcursive/COPYING + RELOC/doc/fonts/frcursive/README details="Readme" + RELOC/doc/fonts/frcursive/frcursive.pdf details="Package documentation" runfiles size=548 RELOC/fonts/map/dvips/frcursive/frcursive.map RELOC/fonts/source/public/frcursive/frcbx10.mf @@ -69379,18 +113813,42 @@ runfiles size=548 RELOC/tex/latex/frcursive/frcursive.sty RELOC/tex/latex/frcursive/ot1frc.fd RELOC/tex/latex/frcursive/t1frc.fd -docfiles size=83 - RELOC/doc/fonts/frcursive/COPYING - RELOC/doc/fonts/frcursive/README - RELOC/doc/fonts/frcursive/frcursive.pdf +catalogue-contact-repository https://framagit.org/manu/french-cursive catalogue-ctan /fonts/frcursive -catalogue-date 2014-05-01 23:14:09 +0200 +catalogue-date 2018-05-11 17:20:36 +0200 catalogue-license lppl1.2 +catalogue-topics font font-calligraphic font-mf font-type1 + +name frederika2016 +category Package +revision 42157 +shortdesc An OpenType Greek calligraphy font +relocated 1 +longdesc Frederika2016 is an attempt to digitize Hermann Zapf's +longdesc Frederika font. The font is the Greek companion of Virtuosa by +longdesc the same designer. This font is a calligraphy font and this is +longdesc an initial release. +containersize 41296 +containerchecksum b7b271af72364e0d2d00ac499bc1e419534d479d27fb424b7046373323354c47da29b888f0d765e3ff4725333ab3d407cd21a064bc4d063adf890de75aa49e3a +doccontainersize 336060 +doccontainerchecksum e205744d689113870fce9cf791f089ccb59cb6fa326c811f34db7183588df3de9b946cddba2a02128a9b88490e9326bea6563fa0fd9a3cdc76467555b7b8d198 +docfiles size=89 + RELOC/doc/fonts/frederika2016/FontInfo.pdf details="Package documentation" + RELOC/doc/fonts/frederika2016/README details="Readme" + RELOC/doc/fonts/frederika2016/testpol.pdf + RELOC/doc/fonts/frederika2016/testpol.tex +runfiles size=22 + RELOC/fonts/opentype/public/frederika2016/Frederika2016.otf +catalogue-ctan /fonts/frederika2016 +catalogue-date 2016-09-28 05:06:55 +0200 +catalogue-license ofl +catalogue-topics font font-otf +catalogue-version 1.000 2016 initial release name frege category Package revision 27417 -shortdesc Typeset fregean Begriffsschrift. +shortdesc Typeset fregean Begriffsschrift relocated 1 longdesc The package defines a number of new commands for typesetting longdesc fregean Begriffsschrift in LaTeX. It is loosely based on the @@ -69401,40 +113859,82 @@ longdesc lines rather than the bottom, a greater width for the assertion longdesc stroke as compared to the content stroke, a more intuitive longdesc structure for the conditional, greater care taken to allow for longdesc the linewidth in the spacing of formulas. -runfiles size=17 - RELOC/tex/latex/frege/frege.sty +containersize 4528 +containerchecksum 39d359f01256f2399cd9226744aa9735543d5c9eb26104855bb52efaf51b8c720cb85e5be08241d72d3b2e1c2deb9cc7a10dd90ffca789ae91b6ea6b7cffb879 +doccontainersize 142332 +doccontainerchecksum 28c5cb420f25ed57a03f3914ce2286732ab8e06cbb0b8446ab3112ccb79b34814762becb7ac7457593e1b5b1579613a76a8b21fe2c43ac9f08175495ea87bd1c docfiles size=48 RELOC/doc/latex/frege/GNU.txt RELOC/doc/latex/frege/INSTALL - RELOC/doc/latex/frege/README - RELOC/doc/latex/frege/frege.pdf + RELOC/doc/latex/frege/README details="Readme" + RELOC/doc/latex/frege/frege.pdf details="Package documentation" RELOC/doc/latex/frege/frege.tex +runfiles size=17 + RELOC/tex/latex/frege/frege.sty +catalogue-also bguq begriff grundgesetze catalogue-ctan /macros/latex/contrib/frege -catalogue-date 2014-03-25 19:16:16 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics maths logic catalogue-version 1.3 +name frenchmath +category Package +revision 51192 +shortdesc Typesetting mathematics according to French rules +relocated 1 +longdesc The package provides: capital letters in upright shape for +longdesc mathematical mode according to French rule (package option), +longdesc correct spacing after commas and before a semicolon in math +longdesc mode, some useful macros and aliases for symbols used in +longdesc France: \infeg, \supeg, \paral, ... several macros for writing +longdesc french operator names like pgcd, ppcm, Card, rg, Vect, ... +containersize 1808 +containerchecksum 1102ab998250a36d6d93aac7c673628eacf8b1abd203d91989922599ec6dae58439ec2700e40eade5b0ee1666a68a30d94f89d3a225082a6273ccd63f61fb586 +doccontainersize 477204 +doccontainerchecksum 622cbf8f1149c53f240036e2cf2d6245d6870ea24f9af6e1883e7fed2f1001f38227176156e8a33c9d9c07414b1accf1a924fbf7248e91903d764fb85d277bdb +docfiles size=118 + RELOC/doc/latex/frenchmath/README.md details="Readme" + RELOC/doc/latex/frenchmath/frenchmath.pdf details="Package documentation" language="fr" +srccontainersize 7948 +srccontainerchecksum f41712d3bd58290fbe205001e9fb531a147debea4b93aeac3b9831cb3bc8edfc7d1364bee575c750aacfe1db8632c357a36fc5afb003a7c895108146a1ab3b7e +srcfiles size=6 + RELOC/source/latex/frenchmath/frenchmath.dtx + RELOC/source/latex/frenchmath/frenchmath.ins +runfiles size=1 + RELOC/tex/latex/frenchmath/frenchmath.sty +catalogue-ctan /macros/latex/contrib/frenchmath +catalogue-date 2019-05-22 19:53:08 +0200 +catalogue-license lppl1.3 +catalogue-topics maths french +catalogue-version 1.4 + name frletter category Package revision 15878 -shortdesc Typeset letters in the French style. +shortdesc Typeset letters in the French style relocated 1 longdesc A small class for typesetting letters in France. No assumption longdesc is made about the language in use. The class represents a small longdesc modification of the beletter class, which is itself a longdesc modification of the standard LaTeX letter class. +containersize 1792 +containerchecksum 5f6c61585ab0626931cf7f19d18138ec70572f3531f36cf94eecd82d93855a2ec8ed2ed0146971e035f8b5119df7c602c6279a9976e024ac85869953448d51de +doccontainersize 596 +doccontainerchecksum 36fbbc422eed8e577e054067e7b442cc84b640fcbd0706e3d8cb503884a5208e0a5bbe0c40b67cb5b495bcdd0ba7a78855338588757e5a9d26dce21f9bedcf3e +docfiles size=1 + RELOC/doc/latex/frletter/README details="Readme" runfiles size=1 RELOC/tex/latex/frletter/frletter.cls -docfiles size=1 - RELOC/doc/latex/frletter/README catalogue-ctan /macros/latex/contrib/frletter -catalogue-date 2014-09-26 18:40:17 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics letter class name frontespizio category Package revision 24054 -shortdesc Create a frontispiece for Italian theses. +shortdesc Create a frontispiece for Italian theses relocated 1 longdesc Typesetting a frontispiece independently of the layout of the longdesc main document is difficult. This package provides a solution by @@ -69444,10 +113944,12 @@ longdesc markup necessary for the frontispiece is written in the main longdesc document in a frontespizio environment. Documentation is mainly longdesc in Italian, as the style is probably apt only to theses in longdesc Italy. -runfiles size=5 - RELOC/tex/latex/frontespizio/frontespizio.sty +containersize 5464 +containerchecksum 6045214cc6a8325d8c828c2591fb43995f098803b031adf50bf8b4dddfa0047ce110dd25e5db71b068376893b7ee83a70806713a83b90a26c4d1c8553e4f00f2 +doccontainersize 885988 +doccontainerchecksum beb8cec7ff51ff9b85e2a650bd7931070c126ea3b126051eb63194e8a071f6dd92d0014953afd85b0e73095208fdcefbf202d9c0ac22003f71d7f7a72f4a4034 docfiles size=253 - RELOC/doc/latex/frontespizio/README + RELOC/doc/latex/frontespizio/README details="Readme" RELOC/doc/latex/frontespizio/examplea.pdf RELOC/doc/latex/frontespizio/examplea.tex RELOC/doc/latex/frontespizio/exampleasuf.pdf @@ -69462,75 +113964,149 @@ docfiles size=253 RELOC/doc/latex/frontespizio/examplee.tex RELOC/doc/latex/frontespizio/fakelogo.mp RELOC/doc/latex/frontespizio/fakelogo.pdf - RELOC/doc/latex/frontespizio/frontespizio.pdf + RELOC/doc/latex/frontespizio/frontespizio.pdf details="Package documentation" language="it" +srccontainersize 22604 +srccontainerchecksum 690c42ad3b6db68c8d4305fd9c402126013a26a28049f5cdbaccc455effacf9bbf86ba77d91c518d88b72e48930939389ec33620e8adf06eb20762606ad53daf srcfiles size=21 RELOC/source/latex/frontespizio/frontespizio.dtx RELOC/source/latex/frontespizio/frontespizio.ins +runfiles size=5 + RELOC/tex/latex/frontespizio/frontespizio.sty +catalogue-also toptesi catalogue-ctan /macros/latex/contrib/frontespizio -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics dissertation typesetting catalogue-version 1.4a +name ftc-notebook +category Package +revision 50043 +shortdesc Typeset FIRST Tech Challenge (FTC) notebooks +relocated 1 +longdesc This LaTeX package will greatly simplify filling entries for +longdesc your FIRST Tech Challenge (FTC) engineering or outreach +longdesc notebook. We developed this package to support most frequently +longdesc used constructs encountered in an FTC notebook: meetings, +longdesc tasks, decisions with pros and cons, tables, figures with +longdesc explanations, team stories and bios, and more. We developed +longdesc this package during the 2018-2019 season and are using it for +longdesc our engineering notebook. Team Robocracy is sharing this style +longdesc in the spirit of coopertition. +containersize 7084 +containerchecksum 9dca1b2e09293df3a12df85f843e1701e1ac428f4caccbc196f43cfd02517cbc98908fe95fcd3e26685cd95dc8565aa5e29ad79f7d42ec5cdeca0346db6a759a +doccontainersize 3622556 +doccontainerchecksum 36022ae2df65e45e2fdd2a01e2c95502c3acee0e8fb0b738ef06b313f47cf8798df30a41a6f5e7b4021a556ebdfd17f84b4a79d54d2b6e88c8044f0a67a87f8e +docfiles size=1704 + RELOC/doc/latex/ftc-notebook/README.md details="Readme" + RELOC/doc/latex/ftc-notebook/example-notebook.pdf details="Example of use" + RELOC/doc/latex/ftc-notebook/example-notebook.tex + RELOC/doc/latex/ftc-notebook/ftc-notebook.pdf details="Package documentation" + RELOC/doc/latex/ftc-notebook/ftc-notebook.tex + RELOC/doc/latex/ftc-notebook/newmeeting.sh + RELOC/doc/latex/ftc-notebook/src/aug19.tex + RELOC/doc/latex/ftc-notebook/src/aug19/build-pict.jpg + RELOC/doc/latex/ftc-notebook/src/aug19/chassi-cad.jpg + RELOC/doc/latex/ftc-notebook/src/aug19/encoder-cad.jpg + RELOC/doc/latex/ftc-notebook/src/aug19/first-build.jpg + RELOC/doc/latex/ftc-notebook/src/aug19/first-cad.jpg + RELOC/doc/latex/ftc-notebook/src/aug19/second-cad.jpg + RELOC/doc/latex/ftc-notebook/src/bio.tex + RELOC/doc/latex/ftc-notebook/src/bio/mitsiki.jpg + RELOC/doc/latex/ftc-notebook/src/images/aug18.jpg + RELOC/doc/latex/ftc-notebook/src/images/logo.jpg + RELOC/doc/latex/ftc-notebook/src/images/robocracy2018.jpg + RELOC/doc/latex/ftc-notebook/src/story.tex +runfiles size=7 + RELOC/tex/latex/ftc-notebook/ftc-notebook.sty +catalogue-ctan /macros/latex/contrib/ftc-notebook +catalogue-date 2019-02-17 09:57:58 +0100 +catalogue-license lppl1.3 +catalogue-topics memorandum +catalogue-version 1.1 + name ftcap category Package revision 17275 -shortdesc Allows \caption at the beginning of a table-environment. +shortdesc Allows \caption at the beginning of a table-environment relocated 1 longdesc For several reasons a \caption may be desirable at the top of a longdesc table environment. This package changes the table environment longdesc such that \abovecaptionskip and \belowcaptionskip are swapped. longdesc The package should also work with a non-standard table longdesc environment. -runfiles size=1 - RELOC/tex/latex/ftcap/ftcap.sty +containersize 2044 +containerchecksum 1287e0bd63fc92ef3e3c77ae3a6113cfcca38dd63f4a90948baadd2a365c07b38631d916230baeaf550b1aeff07f9cac3a26a07301838716d8d70fcf0843953e +doccontainersize 210700 +doccontainerchecksum afa317f10c600c88bb96fccb0383b291e1fb7c11abba5f6bd1efb05e7d2ce117c4ece7bdf9a9ea16c71c116143aa65ba26cf7c2e1dba68f225b655d122169001 docfiles size=55 - RELOC/doc/latex/ftcap/ftcap.pdf + RELOC/doc/latex/ftcap/ftcap.pdf details="Package documentation" RELOC/doc/latex/ftcap/ftcap.tex +runfiles size=1 + RELOC/tex/latex/ftcap/ftcap.sty catalogue-ctan /macros/latex/contrib/ftcap -catalogue-date 2012-05-19 23:15:24 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics caption table catalogue-version 1.4 name ftnxtra category Package revision 29652 -shortdesc Extend the applicability of the \footnote command. +shortdesc Extend the applicability of the \footnote command relocated 1 longdesc The package treats footnotes in \caption, the tabular longdesc environment, and \chapter and other \section-like commands. -runfiles size=2 - RELOC/tex/latex/ftnxtra/ftnxtra.sty +containersize 1900 +containerchecksum df8395b996f96ed72505ef1ef7f0e8e6101d4b26059831b227344023514d377eb189961a240e83ba42ac4ef7e8086b8ffcda347290014fbb1cf1531371c20eff +doccontainersize 23512 +doccontainerchecksum fc16ff992e3339480a4154169665be49f51e56f361d0b1f97842c555be59485fd7edf3cf815e32642826224e188c5377fdb2ab36746cdaef7f552399a4b7119c docfiles size=8 - RELOC/doc/latex/ftnxtra/README - RELOC/doc/latex/ftnxtra/ftnxtra.pdf + RELOC/doc/latex/ftnxtra/README details="Readme" + RELOC/doc/latex/ftnxtra/ftnxtra.pdf details="Package documentation" RELOC/doc/latex/ftnxtra/ftnxtra.tex +srccontainersize 2804 +srccontainerchecksum 87e580467312c6198fd7106b6fdfdac994c5f9fae3d131b793da60ebc9d852141ed6630aa0d4273e50e7311b6e10499a3e4e2cf141ff197d5ed72822f0c15be6 srcfiles size=3 RELOC/source/latex/ftnxtra/ftnxtra.dtx RELOC/source/latex/ftnxtra/ftnxtra.ins +runfiles size=2 + RELOC/tex/latex/ftnxtra/ftnxtra.sty +catalogue-also footnote footmisc +catalogue-contact-bugs https://github.com/bidi-tex/ftnxtra/issues +catalogue-contact-repository https://github.com/bidi-tex/ftnxtra catalogue-ctan /macros/latex/contrib/ftnxtra -catalogue-date 2014-09-06 11:20:13 +0200 +catalogue-date 2018-11-28 19:25:02 +0100 catalogue-license lppl +catalogue-topics footnote catalogue-version 0.1 name fullblck category Package revision 25434 -shortdesc Left-blocking for letter class. +shortdesc Left-blocking for letter class relocated 1 longdesc Used with the letter documentclass to set the letter in a longdesc fullblock style (everything at the left margin). -runfiles size=1 - RELOC/tex/latex/fullblck/fullblck.sty +containersize 1124 +containerchecksum b298f55ca3afe8819e44704329c06be2867b00c1a2a399b5db8de8477751f9945bce1041450c7e91559eeee65c9bae5e76b57469c956239c9752341b820047c7 +doccontainersize 38848 +doccontainerchecksum 9da7587195a077f8218abc6a7df98bd15369650e00ab3893b6cd70a268bf34431b8c2c49b3415269bf6b8d1ddf51a8e23e76ae87667309f8466ad69da87f05a0 docfiles size=14 - RELOC/doc/latex/fullblck/README - RELOC/doc/latex/fullblck/fullblck.pdf + RELOC/doc/latex/fullblck/README details="Readme" + RELOC/doc/latex/fullblck/fullblck.pdf details="Package documentation" +srccontainersize 2808 +srccontainerchecksum 2ccd2da9f1924a1547f4a6b870ce150e6140abc9c1984f1a951a59146944d50c6f8e115ccfe79232f941dbec756e26d460037d92af191eee644bb2dcbe986c6e srcfiles size=4 RELOC/source/latex/fullblck/fullblck.dtx RELOC/source/latex/fullblck/fullblck.dtx.asc RELOC/source/latex/fullblck/fullblck.ins +runfiles size=1 + RELOC/tex/latex/fullblck/fullblck.sty catalogue-ctan /macros/latex/contrib/fullblck -catalogue-date 2012-05-19 23:15:24 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics letter catalogue-version 1.03 name fullminipage @@ -69542,44 +114118,56 @@ longdesc This package provides the environment fullminipage, which longdesc generates a minipage spanning a new, complete page with page longdesc style empty. The environment provides options to set margins longdesc around the minipage and configure the background. -runfiles size=1 - RELOC/tex/latex/fullminipage/fullminipage.sty +containersize 1792 +containerchecksum 7ca92205caae688761ddeadfc0a37173b37e285adf3c1f54c4b2994a0c82c90713a255d5068784e3f3866a7f1af603906513a561632b2d09c68477e497330d2e +doccontainersize 254076 +doccontainerchecksum 111145d2f1c81f74692df8ef397d36c4c0d7b6c89efe0250571c0153b22b9d562df0dcefa90e3be96f8eb518af75ee8a23d42ad898e23668265dcf39d3c678ff docfiles size=72 RELOC/doc/latex/fullminipage/COPYING RELOC/doc/latex/fullminipage/Makefile - RELOC/doc/latex/fullminipage/README - RELOC/doc/latex/fullminipage/fullminipage.pdf + RELOC/doc/latex/fullminipage/README details="Readme" + RELOC/doc/latex/fullminipage/fullminipage.pdf details="Package documentation" RELOC/doc/latex/fullminipage/fullminipage_test.pdf RELOC/doc/latex/fullminipage/fullminipage_test.tex +srccontainersize 4348 +srccontainerchecksum d95dabc4565fd48b8a6e8b35777fd456934a3cba8bac34629ee6ff4847cd1578f70a06e6b87a9b76d26e341a502d1c284e4e155aaea9c92a12dbf6d0043d8249 srcfiles size=4 RELOC/source/latex/fullminipage/fullminipage.dtx RELOC/source/latex/fullminipage/fullminipage.ins +runfiles size=1 + RELOC/tex/latex/fullminipage/fullminipage.sty catalogue-ctan /macros/latex/contrib/fullminipage -catalogue-date 2014-07-07 23:16:27 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl3 +catalogue-topics layout catalogue-version 0.1.1 name fullwidth category Package revision 24684 -shortdesc Adjust margins of text block. +shortdesc Adjust margins of text block relocated 1 longdesc The package provides the environment fullwidth, which sets the longdesc left and right margins in a simple way. There is no constraint longdesc about page breaks; if you are using the twoside mode, you can longdesc set the inner and outer margins to avoid the effects of the longdesc different margins. -runfiles size=4 - RELOC/tex/latex/fullwidth/fullwidth.sty +containersize 3760 +containerchecksum c9b9c37991365346804b51aae7b4645e5b63eb6a3c5c60a953cbe0583de0960e8a9d6cc99dc7526944415764869308d778fb85e7cde821792bec940f6c19072b +doccontainersize 284820 +doccontainerchecksum 55892645ce01b31dd0285749091b8fbcab0061a7190f7a426379f6d3ea8bece8a5c054cad8b53efe1bb69a68fd3e49c3e8c8afb94954ff4ba8838142ab4576b8 docfiles size=74 - RELOC/doc/latex/fullwidth/README + RELOC/doc/latex/fullwidth/README details="Readme" RELOC/doc/latex/fullwidth/fullwidth-test.pdf RELOC/doc/latex/fullwidth/fullwidth-test.tex - RELOC/doc/latex/fullwidth/fullwidth.pdf + RELOC/doc/latex/fullwidth/fullwidth.pdf details="Package documentation" RELOC/doc/latex/fullwidth/fullwidth.tex +runfiles size=4 + RELOC/tex/latex/fullwidth/fullwidth.sty catalogue-ctan /macros/latex/contrib/fullwidth -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics geometry catalogue-version 0.1 name functan @@ -69593,176 +114181,354 @@ longdesc functional analysis and PDE theory. It also provides a set of longdesc macros for dealing with norms, scalar products and convergence longdesc with some object oriented flavor (it gives the possibility to longdesc override the standard behavior of norms, ...). -runfiles size=3 - RELOC/tex/latex/functan/functan.sty +containersize 2552 +containerchecksum 0899d9a3c30e701d5ba6a0275521a40a3cf2df680e9d4a95624730184fb370ae2537bec1becc3b185647a988af5fa8e4bda5198f42cbe68cbc848d8915f1c9da +doccontainersize 147704 +doccontainerchecksum c824825fd424316701e25fc573a431aa5967af0d520b631489b20608459dcd0f7abfac277c5b1e7b60e0a2888e0b37d787755acd6f671e48d4911969e3058692 docfiles size=44 - RELOC/doc/latex/functan/README - RELOC/doc/latex/functan/functan.pdf + RELOC/doc/latex/functan/README details="Readme" + RELOC/doc/latex/functan/functan.pdf details="Package documentation" +srccontainersize 9636 +srccontainerchecksum f83465845900ae5bc872fceead5a83fa972c9fa8b858606007237251ee2dd77cbd095376194aca0356e5c8be53fe653a88f5a10c1f73effa8201b3adf55c5a17 srcfiles size=12 RELOC/source/latex/functan/functan.drv RELOC/source/latex/functan/functan.dtx RELOC/source/latex/functan/functan.ins +runfiles size=3 + RELOC/tex/latex/functan/functan.sty catalogue-ctan /macros/latex/contrib/functan -catalogue-date 2012-06-04 11:02:08 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics maths name fundus-calligra category Package revision 26018 -shortdesc Support for the calligra font in LaTeX documents. +shortdesc Support for the calligra font in LaTeX documents relocated 1 longdesc The package offers support for the calligra handwriting font, longdesc in LaTeX documents. The package is part of the fundus bundle. -runfiles size=1 - RELOC/tex/latex/fundus-calligra/calligra.sty +containersize 1540 +containerchecksum a999f372ef266e66a199935a0783d99293141aa08586a38d65a3748c1a239eca7b0faa74d537085852e79520343ca937943b30ce38820fdc925d75b1a334aabd +doccontainersize 185644 +doccontainerchecksum 93aa54f12ade2eab798bd84596ec3b366db0a15eb05b5279261af8bc13bc1ce782077de36465e8e29d11ea1b89456ab207c33ab907e5c31af95e63d5d897da88 docfiles size=49 - RELOC/doc/latex/fundus-calligra/calligra.pdf + RELOC/doc/latex/fundus-calligra/calligra.pdf details="Package documentation" +srccontainersize 3480 +srccontainerchecksum bc5cfc694592c7a0fb469f752a6ec854d11d9f69588fa6e42390080e88cca3da2fbe888b826ae7a3c07505bc418129237faa791dbf4f3dd9a31cb8e06ad1a9af srcfiles size=3 RELOC/source/latex/fundus-calligra/calligra.dtx RELOC/source/latex/fundus-calligra/calligra.ins +runfiles size=1 + RELOC/tex/latex/fundus-calligra/calligra.sty catalogue-ctan /macros/latex/contrib/fundus/calligra -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics font-supp catalogue-version 1.2 name fundus-cyr category Package revision 26019 -shortdesc Support for Washington University Cyrillic fonts. +shortdesc Support for Washington University Cyrillic fonts relocated 1 longdesc The package supports the use of the Washington Cyrillic fonts -longdesc with LaTeX (Note that standard LateX has support, too, as +longdesc with LaTeX (Note that standard LaTeX has support, too, as longdesc encoding OT2). The package is distributed as part of the fundus longdesc bundle. +containersize 1404 +containerchecksum de84ebbe6e70f61bf9765b9368df95fa5ae607a8d6e1c5535240e8665bb097c6958956d1b19ccf12a2a510672675c7ffa08ab98bd80b6ae2973fbe65d0e8d343 runfiles size=1 RELOC/tex/latex/fundus-cyr/cyr.sty catalogue-ctan /macros/latex/contrib/fundus/cyr/cyr.sty -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics font-supp name fundus-sueterlin category Package revision 26030 shortdesc Sutterlin relocated 1 -longdesc The package supports use, in LaTeX, of the MetaFont emulation +longdesc The package supports use, in LaTeX, of the Metafont emulation longdesc of the Sueterlin handwriting fonts The package is distributed longdesc as part of the fundus bundle.. -runfiles size=1 - RELOC/tex/latex/fundus-sueterlin/suetterl.sty +containersize 1556 +containerchecksum b15a1fa2ee3272f25a616234a335d0bd5c8ac810724ecf453e172d2b68293b55f01f3e57acf81c17721cd3f489b35cde077d5456b78afacc589853224f1bce94 +doccontainersize 180884 +doccontainerchecksum 7162188682c9129e1788104fe94aae2a70607e276eeec4367ae60ff9e50d26aa88a73998028b99ee42627aa27e8868ed2fe72063db2e033798b09ff0b7a13477 docfiles size=49 - RELOC/doc/latex/fundus-sueterlin/suetterl.pdf + RELOC/doc/latex/fundus-sueterlin/suetterl.pdf details="Package documentation" +srccontainersize 3576 +srccontainerchecksum 59f5e1e7f338445d3e8430c5c7cf69de9499a659ad5f32566c26166bc2997eab82964919c50aa15311d19c80a14a1a7bc4380e985f382d4ee89c387faef38b37 srcfiles size=3 RELOC/source/latex/fundus-sueterlin/suetterl.dtx RELOC/source/latex/fundus-sueterlin/suetterl.ins +runfiles size=1 + RELOC/tex/latex/fundus-sueterlin/suetterl.sty catalogue-ctan /macros/latex/contrib/fundus/suetterl -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics font-supp catalogue-version 1.2 +name fvextra +category Package +revision 49947 +shortdesc Extensions and patches for fancyvrb +relocated 1 +longdesc fvextra provides several extensions to fancyvrb, including +longdesc automatic line breaking and improved math mode. It also patches +longdesc some fancyvrb internals. Parts of fvextra were originally +longdesc developed as part of pythontex and minted. +containersize 11168 +containerchecksum 9b5daea58dbbd82c3c2d5e637b3c46531aaac1600b39a945eecefc725591c885b0fd706fd38a11c3149fbee3b6029ed518147617a9f0c95b57fe5d66d19541f7 +doccontainersize 817944 +doccontainerchecksum 8e21f94366f7642cf92b8874050c961386fa019450a5e1ae9f6221ab3bf473b41e768bcb2fd1063a4421e721daef6ada5b964a1b6b9fc0054a1b9d7c4040b54c +docfiles size=203 + RELOC/doc/latex/fvextra/README details="Readme" + RELOC/doc/latex/fvextra/fvextra.pdf details="Package documentation" +srccontainersize 50964 +srccontainerchecksum 85330a89067d35c88c86ffaffb0445178b899a9f7727148ccb6cece070317f0d559e72e216c7ecd5a39bf830f5ca93f9f5f711a931fe8cc9d942e4572263f74d +srcfiles size=67 + RELOC/source/latex/fvextra/fvextra.dtx + RELOC/source/latex/fvextra/fvextra.ins +runfiles size=20 + RELOC/tex/latex/fvextra/fvextra.sty +catalogue-contact-home https://github.com/gpoore/fvextra +catalogue-ctan /macros/latex/contrib/fvextra +catalogue-date 2019-02-04 23:09:39 +0100 +catalogue-license lppl1.3 +catalogue-topics verbatim +catalogue-version 1.4 + name fwlw category Package revision 29803 -shortdesc Get first and last words of a page. +shortdesc Get first and last words of a page relocated 1 longdesc The package extracts the first and last words of a page, longdesc together with the first word of the next page, just before the longdesc page is formed into the object to print. The package defines a longdesc couple of page styles that use the words that have been longdesc extracted. -runfiles size=2 - RELOC/tex/latex/fwlw/fwlw.sty +containersize 3064 +containerchecksum ac2c981bcc4da92a7f91c3ac17d66c4e0e7c94ff1bdb3bf3c7f6a4eef19fad1ecbbc6048a5c74627126c7e1190ee18c2c9373e80d52130a2d272c58ef70de6fc +doccontainersize 36676 +doccontainerchecksum bb55ca044aafb5b11b89b3c817066c4fb20facba8812667398ecf945bd8ed4b11bec2dfd21455db9cfa5e81e5f865655a3e6f4d3724bf40e47ad1db708896902 docfiles size=12 RELOC/doc/latex/fwlw/README - RELOC/doc/latex/fwlw/fwlw.pdf + RELOC/doc/latex/fwlw/fwlw.pdf details="Package documentation" RELOC/doc/latex/fwlw/fwlw.tex +runfiles size=2 + RELOC/tex/latex/fwlw/fwlw.sty catalogue-ctan /macros/latex/contrib/fwlw -catalogue-date 2012-06-04 11:02:08 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics page-hf + +name g-brief +category Package +revision 50415 +shortdesc Letter document class +relocated 1 +longdesc Designed for formatting formless letters in German; can also be +longdesc used for English (by those who can read the documentation). +longdesc There are LaTeX 2.09 documentstyle and LaTeX 2e class files for +longdesc both an 'old' and a 'new' version of g-brief. +containersize 5060 +containerchecksum 6c0a8e653cab5f67a85d25e18b98371323b3dd09365f6a3d1b47eee409b233db4290f6e6de70128f5b45facfc7771475671990bb2c79a1718c74972bfba78070 +doccontainersize 258180 +doccontainerchecksum 147d30be05a9224e141d9dc23a81750d0c43bf590d6e1dcb3e92fda6c668031522ef410904e5c7621c9b98879d6809fe604cf47de7f24891bc7e15c7be5ad05c +docfiles size=73 + RELOC/doc/latex/g-brief/README details="Readme" + RELOC/doc/latex/g-brief/beispiel.pdf details="Example, old version" language="de" + RELOC/doc/latex/g-brief/beispiel.tex + RELOC/doc/latex/g-brief/beispiel2.pdf details="Example, new version" language="de" + RELOC/doc/latex/g-brief/beispiel2.tex + RELOC/doc/latex/g-brief/g-brief.pdf details="Package documentation" language="de" +srccontainersize 12476 +srccontainerchecksum 447a25d983f71d109bc747ee8ab9e120a0b7c698a9238ea5363d4d826383af5587f78f21c442d4e1d999eaf4cbfee813063f7547e786df962866e57c55673c8c +srcfiles size=17 + RELOC/source/latex/g-brief/g-brief.drv + RELOC/source/latex/g-brief/g-brief.dtx + RELOC/source/latex/g-brief/g-brief.ins +runfiles size=11 + RELOC/tex/latex/g-brief/g-brief.cls + RELOC/tex/latex/g-brief/g-brief.sty + RELOC/tex/latex/g-brief/g-brief2.cls + RELOC/tex/latex/g-brief/g-brief2.sty +catalogue-also akletter dinbrief scrlttr2 scrletter envlab +catalogue-ctan /macros/latex/contrib/g-brief +catalogue-date 2019-03-16 09:49:24 +0100 +catalogue-license lppl1 +catalogue-topics class letter german +catalogue-version 4.0.3 name gaceta category Package revision 15878 -shortdesc A class to typeset La Gaceta de la RSME. +shortdesc A class to typeset La Gaceta de la RSME relocated 1 longdesc The class will typeset papers for <>. -runfiles size=16 - RELOC/tex/latex/gaceta/gaceta.cls +containersize 17880 +containerchecksum 54c42cde3613f1fc28ba0a675281e64d2596e8f3c7831e1b1611c34fed1a82c01da2d6eb98058d5776ffc625d04e62359f63819307d04c6296705de74bfcef66 +doccontainersize 124196 +doccontainerchecksum 594fb3b44492018c6777e014ccc4784813784d3e282cffec0f6b6410a59f088ee30c8113a714fa41369eb795b35a1c615f3069a43697d0bed887123a44c02bf7 docfiles size=60 - RELOC/doc/latex/gaceta/README - RELOC/doc/latex/gaceta/plantilla-articulo-de-seccion.pdf + RELOC/doc/latex/gaceta/README details="Readme" + RELOC/doc/latex/gaceta/plantilla-articulo-de-seccion.pdf details="Example 2: how to write an article" language="es" RELOC/doc/latex/gaceta/plantilla-articulo-de-seccion.tex - RELOC/doc/latex/gaceta/plantilla-articulo-suelto.pdf + RELOC/doc/latex/gaceta/plantilla-articulo-suelto.pdf details="Example 1: how to write an article" language="es" RELOC/doc/latex/gaceta/plantilla-articulo-suelto.tex +runfiles size=16 + RELOC/tex/latex/gaceta/gaceta.cls catalogue-ctan /macros/latex/contrib/gaceta -catalogue-date 2014-09-29 13:57:53 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics journalpub class catalogue-version 1.06 name galois category Package revision 15878 -shortdesc Typeset Galois connections. +shortdesc Typeset Galois connections relocated 1 longdesc The package deals with connections in two-dimensional style, longdesc optionally in colour. -runfiles size=2 - RELOC/tex/latex/galois/galois.sty +containersize 2328 +containerchecksum 0c864940c2a47ad82f031868c1933679f9ee0e5ab01e98386433311a4230a77c7a5d41016619fbf7bb1957fecc259bd092d7a0894eedef91143a0d85e68a6978 +doccontainersize 87220 +doccontainerchecksum 7c71fe703efe235b3d1cf3298c99f2ba7dfbdc8d7c20861e8738070ef03b9671b1a4f6df40b2238d4b7cf9e765a1cfdc6210ea63ad06dfc60e0ac7a101735315 docfiles size=28 RELOC/doc/latex/galois/README - RELOC/doc/latex/galois/galois.pdf + RELOC/doc/latex/galois/galois.pdf details="Package description" +srccontainersize 6452 +srccontainerchecksum f1f62a005edc9b6b5c1b294aedbfe00cff61c48f22d2fd0b90d76b1c6144fd9c8b885890e4a6c6e64e054ceb67b851c6fe3d9f2f1baf2801f070f0bd269d4925 srcfiles size=8 RELOC/source/latex/galois/Makefile RELOC/source/latex/galois/galois.dtx RELOC/source/latex/galois/galois.ins +runfiles size=2 + RELOC/tex/latex/galois/galois.sty catalogue-ctan /macros/latex/contrib/galois -catalogue-date 2012-06-04 11:02:08 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics maths catalogue-version 1.5 name gamebook category Package revision 24714 -shortdesc Typeset gamebooks and other interactive novels. +shortdesc Typeset gamebooks and other interactive novels relocated 1 longdesc This package provides the means in order to lay-out gamebooks longdesc with LaTeX. A simple gamebook example is included with the longdesc package, and acts as a tutorial. -runfiles size=1 - RELOC/tex/latex/gamebook/gamebook.sty +containersize 1696 +containerchecksum 4af22bc285bac3f368778dae5c91cf6a1999748a6dfa5fba96e166ed320e124c33f2b6d6bee16ad8d00d0f8067b24bb3567a1aba849b74a6b02fed3bb85dbc0a +doccontainersize 219896 +doccontainerchecksum 58493c9b39343846913263f53b3bfe0fd89e4adb4154580d1bb0ff5d32b5b91ddc75511a0241fa3b98faef8b2d9d7c1846aca486e0c7262f8b3ea7a6bfddc619 docfiles size=72 - RELOC/doc/latex/gamebook/README - RELOC/doc/latex/gamebook/gamebook-example.pdf + RELOC/doc/latex/gamebook/README details="Readme" + RELOC/doc/latex/gamebook/gamebook-example.pdf details="Simple gamebook example" RELOC/doc/latex/gamebook/gamebook-example.tex - RELOC/doc/latex/gamebook/gamebook.pdf + RELOC/doc/latex/gamebook/gamebook.pdf details="Package documentation" RELOC/doc/latex/gamebook/lppl.txt +srccontainersize 4640 +srccontainerchecksum 793f5cb23ef53b3d24d10ac5d52cf1e8bf90438571e23b5171c778ac720fb2c52a03a90e1f83f353df0b5410e94b5551d0855284df72c34a0f212842a3f96c41 srcfiles size=4 RELOC/source/latex/gamebook/gamebook.dtx RELOC/source/latex/gamebook/gamebook.ins +runfiles size=1 + RELOC/tex/latex/gamebook/gamebook.sty catalogue-ctan /macros/latex/contrib/gamebook -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics games catalogue-version 1.0 +name gammas +category Package +revision 50012 +shortdesc Template for the GAMM Archive for Students +relocated 1 +longdesc This is the official document class for typesetting journal +longdesc articles for GAMM Archive for Students (GAMMAS), the +longdesc open-access online yournal run by the GAMM Juniors. +containersize 9408 +containerchecksum 96be5ba2abc71f93d044d762403f294082e9afd10ff4f159713ae906233d1581ba408205746f968e10f84ce4e79e633a4f203ec4a8dade3f9738d0f277cb703d +doccontainersize 3116 +doccontainerchecksum 0c1739b475a45149deb78daca921ff8cdba4555d466fcf26ee0098632b835f650d5bc5e9855aba889a0caaa2a64e08d7afe1021d6171984bde3161c3543fe7f9 +docfiles size=5 + RELOC/doc/latex/gammas/README details="Readme" + RELOC/doc/latex/gammas/example_bibliography.bib + RELOC/doc/latex/gammas/gammas_template.tex +runfiles size=12 + RELOC/bibtex/bst/gammas/gammas.bst + RELOC/tex/latex/gammas/gammas.cls +catalogue-ctan /macros/latex/contrib/gammas +catalogue-date 2019-02-17 05:29:19 +0100 +catalogue-license lppl1.3c +catalogue-topics journalpub +catalogue-version 1.0 + +name garamond-math +category Package +revision 49933 +shortdesc An OTF math font matching EB Garamond +relocated 1 +longdesc This is an open type math font matching EB Garamond (Octavio +longdesc Pardo) and EB Garamond (Georg Mayr-Duffner). Many mathematical +longdesc symbols are derived from other fonts, others are made from +longdesc scratch. The metric is generated with a python script. The font +longdesc is best used with XeTeX and the unicode-math package. Other +longdesc engines (e.g. LuaTeX; also: MS Word) are likely to produce +longdesc unsatifactory spacings. This font is still under development, +longdesc so do not expect it to be free of bugs. Any component might be +longdesc updated at any time. Issues, bug reports, forks, and other +longdesc contributions are welcome. +containersize 450248 +containerchecksum e9815808b7dba1d0c37835bb30838fb8073f3ba7c3700bbf7997cce30b70d71194fe07e595728ffc894e22f6bd76bb559104249aa6c22c1b49a92251971c513c +doccontainersize 281644 +doccontainerchecksum 1fb3966ec8d6d7b8e048476a7129b8e6a650e4f7350f744db53f844c35528042024d156db8cf20939aef79d74292d3d90a61e6391e8723045efb4603eb0a8a38 +docfiles size=74 + RELOC/doc/fonts/garamond-math/Garamond-Math.pdf details="Package documentation" + RELOC/doc/fonts/garamond-math/Garamond-Math.tex + RELOC/doc/fonts/garamond-math/README.md details="Readme" +runfiles size=226 + RELOC/fonts/opentype/public/garamond-math/Garamond-Math.otf +catalogue-contact-bugs https://github.com/YuanshengZhao/Garamond-Math/issues +catalogue-contact-repository https://github.com/YuanshengZhao/Garamond-Math +catalogue-ctan /fonts/garamond-math +catalogue-date 2019-02-06 05:12:24 +0100 +catalogue-license ofl +catalogue-topics font font-otf font-maths font-serif font-sans font-bbd + name garrigues category Package revision 15878 -shortdesc MetaPost macros for the reproduction of Garrigues' Easter nomogram. +shortdesc MetaPost macros for the reproduction of Garrigues' Easter nomogram relocated 1 -longdesc Metapost macros for the reproduction of Garrigues' Easter +longdesc MetaPost macros for the reproduction of Garrigues' Easter longdesc nomogram. These macros are described in Denis Roegel: An longdesc introduction to nomography: Garrigues' nomogram for the longdesc computation of Easter, TUGboat (volume 30, number 1, 2009, longdesc pages 88-104) -runfiles size=9 - RELOC/metapost/garrigues/garrigues.mp +containersize 8268 +containerchecksum e1440fcf8eb0ccd3b140649c590c902882a8a5a02d4cc14589ed44193f3a70bf13839e9de9663c500bb6874d6fce34f5a21c07e38a7456738548b6ebf449b258 +doccontainersize 532 +doccontainerchecksum 0c91f7e1c8fe4910fa7052440edd9afd81c8932e99368219c8a5037bddfa4c8c11037576e9c94721062df9cf7fd5d467389ddcf3aed3e1853be38846c049100f docfiles size=2 - RELOC/doc/metapost/garrigues/README + RELOC/doc/metapost/garrigues/README details="Readme" RELOC/doc/metapost/garrigues/article.txt +runfiles size=9 + RELOC/metapost/garrigues/garrigues.mp catalogue-ctan /graphics/metapost/contrib/macros/garrigues -catalogue-date 2012-06-04 13:21:54 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics calculation name garuda-c90 category Package @@ -69771,6 +114537,12 @@ shortdesc TeX support (from CJK) for the garuda font relocated 1 depend fonts-tlwg execute addMap garuda-c90.map +containersize 3416 +containerchecksum 304e330de80c822862725f05da0c800ff8043d73398a48a4d88b9156d5575593aa1797e65f88093d3058594969fe3a288010efd2a13e12de52beb405ebfdbeec +srccontainersize 1368 +srccontainerchecksum 2e2b368b01952c710fa01b68b8b094e2c64905ba9e6375c3d6a5d82a4b63dea5f6343db3898472416ba9e7faa46d660f34bb2f6d3530aca753feb5aa5c1ffa2a +srcfiles size=1 + RELOC/source/fonts/garuda-c90/garuda-c90.fontinst runfiles size=6 RELOC/dvips/garuda-c90/config.garuda-c90 RELOC/fonts/map/dvips/garuda-c90/garuda-c90.map @@ -69778,13 +114550,11 @@ runfiles size=6 RELOC/fonts/tfm/public/garuda-c90/fgdbo8z.tfm RELOC/fonts/tfm/public/garuda-c90/fgdo8z.tfm RELOC/fonts/tfm/public/garuda-c90/fgdr8z.tfm -srcfiles size=1 - RELOC/source/fonts/garuda-c90/garuda-c90.fontinst name gastex category Package revision 15878 -shortdesc Graphs and Automata Simplified in TeX. +shortdesc Graphs and Automata Simplified in TeX relocated 1 longdesc GasTeX is a set of LaTeX macros which enable the user to draw longdesc graphs, automata, nets, diagrams, etc., very easily, in the @@ -69792,17 +114562,24 @@ longdesc LaTeX picture environment. The package offers no documentation longdesc (per se), but offers a couple of example files in the longdesc distribution, and more on its home page. GasTeX generates its longdesc own PostScript code, and therefore doesn't work directly under -longdesc PDFLaTeX. -runfiles size=22 - RELOC/dvips/gastex/gastex.pro - RELOC/tex/latex/gastex/gastex.sty +longdesc pdfLaTeX. +containersize 16256 +containerchecksum b6e90db05d820b5e8001fb5d7168449d1fb6ed0679d158850ab4e5ad1166ebbe05680d190bcaf3c2808e2fffa6b3ddb2a824f223855182960cf849370493a1ba +doccontainersize 6020 +doccontainerchecksum 2890b569863b2d65a2df850e0e885e15754ba4b483fd559c0f914fd5ef2516a4b33944d365fd58a381a1992a22bddf69166cec0bf2b1072c9aed7829fa21903b docfiles size=6 - RELOC/doc/latex/gastex/README + RELOC/doc/latex/gastex/README details="Package Readme" RELOC/doc/latex/gastex/ex-beamer-gastex.tex RELOC/doc/latex/gastex/ex-gastex.tex +runfiles size=22 + RELOC/dvips/gastex/gastex.pro + RELOC/tex/latex/gastex/gastex.sty +catalogue-also pstricks-base +catalogue-contact-home http://www.lsv.ens-cachan.fr/~gastin/gastex/gastex.html catalogue-ctan /graphics/gastex -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-09-15 11:08:35 +0200 catalogue-license lppl +catalogue-topics graphics-in-tex catalogue-version 2.8 name gatech-thesis @@ -69815,15 +114592,10 @@ longdesc the Georgia Tech Office of Graduate Studies. It satisfies their longdesc undocumented moving-target requirements in additional to the longdesc actual documented requirements of the June 2002 Georgia Tech longdesc Thesis Style Manual, as amended up to 2010. -runfiles size=40 - RELOC/bibtex/bst/gatech-thesis/gatech-thesis-losa.bst - RELOC/bibtex/bst/gatech-thesis/gatech-thesis.bst - RELOC/makeindex/gatech-thesis/gatech-thesis-index.ist - RELOC/tex/latex/gatech-thesis/gatech-thesis-gloss.sty - RELOC/tex/latex/gatech-thesis/gatech-thesis-index.sty - RELOC/tex/latex/gatech-thesis/gatech-thesis-losa.sty - RELOC/tex/latex/gatech-thesis/gatech-thesis-patch.sty - RELOC/tex/latex/gatech-thesis/gatech-thesis.cls +containersize 32756 +containerchecksum c5928d0d383da4057a0ba00d2848d324624228f1a98f0f254b09fea35ba21e3ce655f1fbe02ecc6291921e43e9dbd2ae954d6199dc22c1390bf04670ca41038f +doccontainersize 130012 +doccontainerchecksum 9fe1e4342becab8b57d892256bfd0723afea3a3f4ad3edab2b3c374bdf410d14b3105f165aed56479e848939a5cf6c807112788ff3a82099641fa71f4e78b5ec docfiles size=62 RELOC/doc/latex/gatech-thesis/CHANGES RELOC/doc/latex/gatech-thesis/COMPLIANCE @@ -69833,20 +114605,30 @@ docfiles size=62 RELOC/doc/latex/gatech-thesis/MANIFEST RELOC/doc/latex/gatech-thesis/NEWS RELOC/doc/latex/gatech-thesis/NOTES - RELOC/doc/latex/gatech-thesis/README + RELOC/doc/latex/gatech-thesis/README details="Readme" RELOC/doc/latex/gatech-thesis/TODO RELOC/doc/latex/gatech-thesis/example-thesis.bib RELOC/doc/latex/gatech-thesis/example-thesis.pdf RELOC/doc/latex/gatech-thesis/example-thesis.tex +runfiles size=40 + RELOC/bibtex/bst/gatech-thesis/gatech-thesis-losa.bst + RELOC/bibtex/bst/gatech-thesis/gatech-thesis.bst + RELOC/makeindex/gatech-thesis/gatech-thesis-index.ist + RELOC/tex/latex/gatech-thesis/gatech-thesis-gloss.sty + RELOC/tex/latex/gatech-thesis/gatech-thesis-index.sty + RELOC/tex/latex/gatech-thesis/gatech-thesis-losa.sty + RELOC/tex/latex/gatech-thesis/gatech-thesis-patch.sty + RELOC/tex/latex/gatech-thesis/gatech-thesis.cls catalogue-ctan /macros/latex/contrib/gatech-thesis -catalogue-date 2014-09-29 13:57:53 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics class dissertation catalogue-version 1.8 name gates category Package revision 29803 -shortdesc Support for writing modular and customisable code. +shortdesc Support for writing modular and customisable code relocated 1 longdesc The package provides the means of writing code in a modular longdesc fashion: big macros or functions are divided into small chunks @@ -69862,91 +114644,155 @@ longdesc is implemented independently for both TeX and Lua. The TeX longdesc implementation, running in any current environment, requires longdesc the texapi package, whereas the Lua version can be run with any longdesc Lua interpreter, not just LuaTeX. +containersize 10980 +containerchecksum 704126d5e113b9718654e5d611d169df17b45ec09f187d86d1c108a331e80939d0266c4473233277e1b465a70775da1ea9576744171209ab45203b4059b96b83 +doccontainersize 201680 +doccontainerchecksum a9cd7d2c616021d429b299027503fed60e8474774b6d57095371f1afaba68709770857ba09f74e8e5223dcbdd1d9f1f70a0ec81c3801b1a77c3a494336fa86bd +docfiles size=68 + RELOC/doc/generic/gates/README details="Readme" + RELOC/doc/generic/gates/gates-doc.pdf details="Package documentation" + RELOC/doc/generic/gates/gates-doc.tex + RELOC/doc/generic/gates/gates-doc.txt runfiles size=15 RELOC/tex/generic/gates/gates.lua RELOC/tex/generic/gates/gates.sty RELOC/tex/generic/gates/gates.tex RELOC/tex/generic/gates/t-gates.tex -docfiles size=68 - RELOC/doc/generic/gates/README - RELOC/doc/generic/gates/gates-doc.pdf - RELOC/doc/generic/gates/gates-doc.tex - RELOC/doc/generic/gates/gates-doc.txt catalogue-ctan /macros/generic/gates -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics macro-supp catalogue-version 0.2 +name gatherenum +category Package +revision 48051 +shortdesc A crossover of align* and enumerate +relocated 1 +longdesc This package (ab)uses the inline enumeration capabilities of +longdesc enumitem to add a "displayed" enumeration mode, triggered by +longdesc adding 'gathered' to the key-value option list of the enumerate +longdesc environment. The end result is similar to a regular enumerate +longdesc environment wrapped in a multicols environment, with the +longdesc following advantages: Gathered enumerate can pack items +longdesc depending on their actual width rather than a fixed, constant +longdesc number per line. Gathered enumeration fills items in a +longdesc line-major order (instead of column-major order), which my +longdesc students found less confusing. YMMV. The package depends on +longdesc enumitem, expl3, and xparse, +containersize 1704 +containerchecksum a9f080ae405b7ddd0bc98bb6c5388b00aa8939f6e0650cd9c7eff249f039ec179e646d57e8b940dabf8108878597b0845607f4328146e4a7ac102a28b03e90ec +doccontainersize 423972 +doccontainerchecksum 717a114e3cfb5a3c6cee73406b393ec36eb708aead4ce1e805e96da196350cf836cddbe94f24690b5fddf1c3091a33f9da5f7a0c00051e58f6ea60cfe7599888 +docfiles size=111 + RELOC/doc/latex/gatherenum/LICENSE + RELOC/doc/latex/gatherenum/README.md details="Readme" + RELOC/doc/latex/gatherenum/gatherenum.pdf details="Package documentation" +srccontainersize 4140 +srccontainerchecksum ccab5434f3912074c12c7a90ea546d65dc3b21b8ccb834214a617202ed45269408f05da8ad2218334ac32c173e86d53d4b810991eca59bb55297683e70f8d01b +srcfiles size=4 + RELOC/source/latex/gatherenum/gatherenum.dtx + RELOC/source/latex/gatherenum/gatherenum.ins +runfiles size=1 + RELOC/tex/latex/gatherenum/gatherenum.sty +catalogue-contact-bugs https://gitlab.com/frnchfrgg-latex/gatherenum/issues +catalogue-contact-repository https://gitlab.com/frnchfrgg-latex/gatherenum +catalogue-ctan /macros/latex/contrib/gatherenum +catalogue-date 2018-06-24 05:03:49 +0200 +catalogue-license gpl3+ +catalogue-topics list expl3 +catalogue-version 1.7 + name gauss category Package revision 32934 -shortdesc A package for Gaussian operations. +shortdesc A package for Gaussian operations relocated 1 longdesc The gauss package provides configurable tools for producing row longdesc and column operations on matrices (a.k.a. Gaussian operations). -runfiles size=16 - RELOC/tex/latex/gauss/gauss.sty +containersize 16628 +containerchecksum 9dd3f7685a8b7bbdfbee1fbe5dcc5d2819091c7c20df7979b1b0fb7971e613e45b6321a18674e88bb0d6222f050f0ab3959b087be70b90b5bfefaeffacc733f9 +doccontainersize 113732 +doccontainerchecksum 50de7e9af2360367de7f7136def2536a82348752656b1c40022d7e13271cfde64e67bcd482c2d208f47b88a30560f8179b7b8706288809b41d023c037147f0c2 docfiles size=41 - RELOC/doc/latex/gauss/README - RELOC/doc/latex/gauss/gauss-doc.pdf - RELOC/doc/latex/gauss/gauss-ex.pdf + RELOC/doc/latex/gauss/README details="Readme" + RELOC/doc/latex/gauss/gauss-doc.pdf details="Package documentation" + RELOC/doc/latex/gauss/gauss-ex.pdf details="Example of use (Gaussian elimination)" RELOC/doc/latex/gauss/gauss-ex.tex +runfiles size=16 + RELOC/tex/latex/gauss/gauss.sty +catalogue-contact-home http://www.kauers.de catalogue-ctan /macros/latex/contrib/gauss -catalogue-date 2012-04-10 17:44:48 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics maths name gb4e category Package revision 19216 -shortdesc Linguistic tools. +shortdesc Linguistic tools relocated 1 longdesc Provides an environment for linguistic examples, tools for longdesc glosses, and various other goodies. The code was developed from longdesc the midnight and covington packages. -runfiles size=6 - RELOC/tex/latex/gb4e/cgloss4e.sty - RELOC/tex/latex/gb4e/gb4e.sty +containersize 6944 +containerchecksum 1ec519ad5f22e6d61d16a0233a73065b45e8628549bfecd109f968b8749c362cd04f358d67e96b1311577f94f6152e7de7a9e3264ffcff5c5769662b52df7e29 +doccontainersize 150476 +doccontainerchecksum 9b8c8e2590a1a515aa84e11a4028aadeff9e4acb7d3ce99b0d21009e17443db3d2feee85d888a333595e144244efbf978239e6dbf48c68a43bd5709d9489c203 docfiles size=47 RELOC/doc/latex/gb4e/README - RELOC/doc/latex/gb4e/gb4e-doc.pdf + RELOC/doc/latex/gb4e/gb4e-doc.pdf details="Package description" RELOC/doc/latex/gb4e/gb4e-doc.tex +runfiles size=6 + RELOC/tex/latex/gb4e/cgloss4e.sty + RELOC/tex/latex/gb4e/gb4e.sty catalogue-ctan /macros/latex/contrib/gb4e -catalogue-date 2012-02-10 18:22:03 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 - -name g-brief -category Package -revision 21140 -shortdesc Letter document class. -relocated 1 -longdesc Designed for formatting formless letters in German; can also be -longdesc used for English (by those who can read the documentation). -longdesc There are LaTeX 2.09 documentstyle and LaTeX 2e class files for -longdesc both an 'old' and a 'new' version of g-brief. -runfiles size=11 - RELOC/tex/latex/g-brief/g-brief.cls - RELOC/tex/latex/g-brief/g-brief.sty - RELOC/tex/latex/g-brief/g-brief2.cls - RELOC/tex/latex/g-brief/g-brief2.sty -docfiles size=45 - RELOC/doc/latex/g-brief/beispiel.pdf - RELOC/doc/latex/g-brief/beispiel.tex - RELOC/doc/latex/g-brief/beispiel2.pdf - RELOC/doc/latex/g-brief/beispiel2.tex - RELOC/doc/latex/g-brief/g-brief.pdf -srcfiles size=17 - RELOC/source/latex/g-brief/g-brief.drv - RELOC/source/latex/g-brief/g-brief.dtx - RELOC/source/latex/g-brief/g-brief.ins -catalogue-ctan /macros/latex/contrib/g-brief -catalogue-date 2012-06-04 23:28:06 +0200 -catalogue-license lppl -catalogue-version 4.0.2 +catalogue-topics linguistic + +name gbt7714 +category Package +revision 50504 +shortdesc BibTeX implementation of China's bibliography style standard GB/T 7714-2015 +relocated 1 +longdesc The package provides a BibTeX implementation for the Chinese +longdesc national bibliography style standard GB/T 7714-2015. It +longdesc consists of two bst files for numerical and author-year styles +longdesc and a LaTeX package which provides the citation style defined +longdesc in the standard. It also support automatic language +longdesc recognization (Chinese and English) for each biblilography +longdesc entry and is designed to be fully compatible with natbib. +containersize 8588 +containerchecksum 20d7691ca964b30f89560a250d73ac35fb01e2da40026d5e03d1367a12c0466b94d19592694950daadc41d76b3dc15420b0fc257579a6be0a4cff06011b0f39f +doccontainersize 334328 +doccontainerchecksum 4c251b0ad2d13581b0085847eadb6a376c6cc64218c08439f4851cd3210671275d692d49a57f115c3a5764667f0558056ecce99fd51cccf169a5e61d80af84f5 +docfiles size=96 + RELOC/doc/bibtex/gbt7714/LICENSE + RELOC/doc/bibtex/gbt7714/README.md details="Readme" language="zh" + RELOC/doc/bibtex/gbt7714/gbt7714.pdf details="Package documentation" language="zh" + RELOC/doc/bibtex/gbt7714/y.tex +srccontainersize 24324 +srccontainerchecksum 8949ed61bf30ad172217bf50943c805edad7de98baf01e3e07bf411dbc95b56f8268b0c143156c153fcaac7326134282c1a7d797b03989ddd14ecc4eac810201 +srcfiles size=25 + RELOC/source/bibtex/gbt7714/gbt7714.dtx +runfiles size=21 + RELOC/bibtex/bst/gbt7714/gbt7714-plain.bst + RELOC/bibtex/bst/gbt7714/gbt7714-unsrt.bst + RELOC/tex/latex/gbt7714/gbt7714.sty +catalogue-contact-announce https://github.com/zepinglee/gbt7714-bibtex-style/releases +catalogue-contact-bugs https://github.com/zepinglee/gbt7714-bibtex-style/issues +catalogue-contact-repository https://github.com/zepinglee/gbt7714-bibtex-style +catalogue-ctan /biblio/bibtex/contrib/gbt7714 +catalogue-date 2019-03-21 15:00:31 +0100 +catalogue-license lppl1.3c +catalogue-topics bibtex-supp chinese +catalogue-version 1.1.1 name gcard category Package revision 15878 -shortdesc Arrange text on a sheet to fold into a greeting card. +shortdesc Arrange text on a sheet to fold into a greeting card relocated 1 longdesc The package provides a simple means of producing greeting longdesc cards. It arranges four panels onto a single sheet so that when @@ -69955,44 +114801,55 @@ longdesc cover, inside left and right pages, and back cover. It uses the longdesc textpos package for placement on the sheet and the graphicx longdesc package for the necessary rotation. The four panels are set in longdesc minipages for formatting by the user. -runfiles size=1 - RELOC/tex/latex/gcard/gcard.sty +containersize 1676 +containerchecksum de462bff229779faa33c546d525e3624f1ed372c09c1b90fa9270928caf0a2604f2bb9d3ef0768de7dd0646202d7a59995b7252c0b83b19eaf777438bd1acc47 +doccontainersize 128064 +doccontainerchecksum f7fd3c07e053962c88d0a0b8e5899272a3bd9af4cf1731f88a7014773d8f0ecc91fb45e1e59b1a372d8c8977e1dce91c5162558d0245d77a187ac7787a3710ea docfiles size=38 - RELOC/doc/latex/gcard/README - RELOC/doc/latex/gcard/gcard.pdf + RELOC/doc/latex/gcard/README details="Readme" + RELOC/doc/latex/gcard/gcard.pdf details="Package documentation" RELOC/doc/latex/gcard/gcardex.tex RELOC/doc/latex/gcard/gcardminexample.tex +runfiles size=1 + RELOC/tex/latex/gcard/gcard.sty catalogue-ctan /macros/latex/contrib/gcard -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics letter graphics-use name gchords category Package revision 29803 -shortdesc Typeset guitar chords. +shortdesc Typeset guitar chords relocated 1 longdesc A LaTeX package for typesetting of guitar chord diagrams, longdesc including options for chord names, finger numbers and longdesc typesetting above lyrics. The bundle also includes a TCL script longdesc (chordbox.tcl) that provides a graphical application which longdesc creates LaTeX files that use gchords.sty. -runfiles size=3 - RELOC/tex/latex/gchords/gchords.sty +containersize 3360 +containerchecksum 7fd655af5446982b450e3eec2b8966f2fc17c11686bb75f516ce0043af651b90e4f88c9cfac133929fbb686fe3f7be6de64d89bda6822f218b691791c9207950 +doccontainersize 50180 +doccontainerchecksum 26818218c9e3142f4bba491e996556b28266953c6b84f1c3de58d60b1bf100d15513fd2898507cf43226eec127942dede647784060668d86bcb22e3fdaee96cd docfiles size=22 - RELOC/doc/latex/gchords/README + RELOC/doc/latex/gchords/README details="Package Readme" RELOC/doc/latex/gchords/chordbox.tcl - RELOC/doc/latex/gchords/gchords_doc.pdf + RELOC/doc/latex/gchords/gchords_doc.pdf details="Package documentation" RELOC/doc/latex/gchords/gchords_doc.tex RELOC/doc/latex/gchords/get2knowu.tex +runfiles size=3 + RELOC/tex/latex/gchords/gchords.sty +catalogue-contact-home http://kasper.phi-sci.com/gchords/ catalogue-ctan /graphics/gchords -catalogue-date 2015-03-04 20:45:17 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license gpl +catalogue-topics music catalogue-version 1.20 name gcite category Package revision 15878 -shortdesc Citations in a reader-friendly style. +shortdesc Citations in a reader-friendly style relocated 1 longdesc The package allows citations in the German style, which is longdesc considered by many to be particularly reader-friendly. The @@ -70002,69 +114859,112 @@ longdesc combines a desire to eliminate unnecessary page-turning with longdesc the look-up efficiency afforded by numeric citations. The longdesc package makes use of BibLaTeX, and is considered experimental; longdesc comment is invited. -runfiles size=1 - RELOC/tex/latex/gcite/gcite.sty +containersize 1884 +containerchecksum 169d9e96121d80bcbe7580e7ff447e8df252b19dca5b304514a792764344df679e9275b1a552d67070d3f5b0fc41c70a6cf1ce9c90358dd9ab58878643be6015 +doccontainersize 164560 +doccontainerchecksum d9b50778855efc00ba4d6d6f48891865853b8de8e55c3432140b0ba69767c6c13ab934c2be43b2556a862bbb5413ddccce158ec4130576617a75708919f1ab0c docfiles size=53 RELOC/doc/latex/gcite/CHANGES - RELOC/doc/latex/gcite/README + RELOC/doc/latex/gcite/README details="Readme" RELOC/doc/latex/gcite/gcite.bib - RELOC/doc/latex/gcite/gcite.pdf + RELOC/doc/latex/gcite/gcite.pdf details="Package documentation" +srccontainersize 7576 +srccontainerchecksum 44e8fdfff2e015a9bb034496454016f8f03e08e2f5b8ca907670447694877a383ca99a5673db107397dba07142e99cf01d9ee59a4a360d6146a389de7d103cb1 srcfiles size=6 RELOC/source/latex/gcite/gcite.dtx RELOC/source/latex/gcite/gcite.ins +runfiles size=1 + RELOC/tex/latex/gcite/gcite.sty catalogue-ctan /macros/latex/exptl/gcite -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics biblatex german catalogue-version 1.0.1 name gender category Package revision 36464 -shortdesc Gender neutrality for languages with grammatical gender. +shortdesc Gender neutrality for languages with grammatical gender relocated 1 longdesc Many languages -- like German or French -- use masculine and longdesc feminine grammatical genders. There are many ideas how to longdesc promote gender neutrality in those languages. The gender longdesc package uses alternately masculine and feminine forms. It is longdesc also possible to use just one form out of a template. -runfiles size=2 - RELOC/tex/latex/gender/gender.sty +containersize 1824 +containerchecksum 261d57b05993954b80f82844f590f952fedaa4ade8f89704f2e2b4e2d18441ab5c8adef2ba3dfd81b61bed53150b737ef72964e1faa44ca48e923cfeb5a1bc14 +doccontainersize 311580 +doccontainerchecksum 7c8bf143cb7ae1d22416df88aecf7e004eb02bf199f74f8003aeb9ae3923a3db42f1735650fac8aa908bf220f16ca48b3e4f9dbc312668d87df65149ea674be4 docfiles size=77 - RELOC/doc/latex/gender/README - RELOC/doc/latex/gender/gender.pdf + RELOC/doc/latex/gender/README details="Readme" + RELOC/doc/latex/gender/gender.pdf details="Package documentation" +srccontainersize 4348 +srccontainerchecksum ac76060cc1b8c3bd876ccece1d82127575b956fa1bd3bed63d9d8a927845c8477c903b47be3a6e2d85de06899957d273d981f250cc7d02a12830a8cbfa6f6183 srcfiles size=4 RELOC/source/latex/gender/gender.dtx RELOC/source/latex/gender/gender.ins +runfiles size=2 + RELOC/tex/latex/gender/gender.sty +catalogue-also he-she eemeir catalogue-ctan /macros/latex/contrib/gender -catalogue-date 2015-03-11 05:49:32 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics linguistic typesetting catalogue-version 1.0 +name gene-logic +category Package +revision 15878 +shortdesc Typeset logic formulae, etc +relocated 1 +longdesc The package provides a facility to typeset certain logic +longdesc formulae. It provides an environment like eqnarray, a +longdesc newtheorem-like environment (NewTheorem), and several macros. +containersize 2004 +containerchecksum b7cdc0d653aa8e25d763ca4115fa6fc857ddae35ed835aee6b6a204ba83d01ab91928b00248c40677ba132ef113276912a6b85dfd456d937114a3263a1ef4c7f +doccontainersize 66856 +doccontainerchecksum db358777af18e7d2e93dc23084bec0f47270b4cb6c6078382a1eb9ce288aed06a6f55fc30ce728b1312d06f871458fc6b5b697b1073316e8f727b5ee80f99468 +docfiles size=27 + RELOC/doc/latex/gene-logic/gn-logic14.pdf details="Package documentation" + RELOC/doc/latex/gene-logic/gn-logic14.tex +runfiles size=2 + RELOC/tex/latex/gene-logic/gn-logic14.sty +catalogue-ctan /macros/latex/contrib/gene/logic +catalogue-date 2016-07-17 13:14:32 +0200 +catalogue-license other-free +catalogue-topics maths +catalogue-version 1.4 + name genealogy category Package revision 25112 -shortdesc A compilation genealogy font. +shortdesc A compilation genealogy font relocated 1 longdesc A simple compilation of the genealogical symbols found in the longdesc wasy and gen fonts, adding the male and female symbols to longdesc Knuth's 'gen' font, and so avoiding loading two fonts when you longdesc need only genealogical symbols. The font is distributed as longdesc Metafont source. +containersize 2560 +containerchecksum 907394cb0ca9b3d339d78595e613236038ea2acce27c4468b7d028d0db7ddf36f7037c4f0bc63d5970e904d0675bcaf057c769239a79f064fa6aa9dae4f2014e +doccontainersize 1128 +doccontainerchecksum 34c9d737d31626331a18051a5b04584fd896d7cb8ea1814ff2fbf30486ec3578b2bef16155b9c8f2ca645d42f797f3101c799d3422c05f824026e268fa4f94e8 +docfiles size=3 + RELOC/doc/fonts/genealogy/README details="Readme" + RELOC/doc/fonts/genealogy/licence.txt + RELOC/doc/fonts/genealogy/testgen.tex runfiles size=4 RELOC/fonts/source/public/genealogy/drgen.mf RELOC/fonts/source/public/genealogy/drgen10.mf RELOC/fonts/tfm/public/genealogy/drgen10.tfm -docfiles size=3 - RELOC/doc/fonts/genealogy/README - RELOC/doc/fonts/genealogy/licence.txt - RELOC/doc/fonts/genealogy/testgen.tex catalogue-ctan /fonts/genealogy -catalogue-date 2014-05-01 23:29:17 +0200 +catalogue-date 2017-02-19 14:06:21 +0100 catalogue-license lppl +catalogue-topics genealogy font font-symbol font-specialist font-mf name genealogytree category Package -revision 37648 +revision 50872 shortdesc Pedigree and genealogical tree diagrams relocated 1 longdesc Pedigree and genealogical tree diagrams are proven tools to @@ -70077,7 +114977,19 @@ longdesc of tools to typeset genealogical trees (i.e., to typeset a set longdesc of special graphs for the description of family-like longdesc structures). The package uses an autolayout algorithm which can longdesc be customized, e.g., to prioritize certain paths. -runfiles size=47 +containersize 28208 +containerchecksum 295a763f682dc1acb025856df4de0474d3893d87cf0e530a2b3f72ef7a37dae87d34c97abbf40898f920f188f7cfb7366b654004b7c577b409ff14caf25c1072 +doccontainersize 3735452 +doccontainerchecksum 9ef261874b54e2d5d092b2f362ba0e5ed6b1932f433290ebe6fda61cb87aaa3b6ba09708df31d6b10c1263288fb62ef79878ff0dbfbe104d83d3b4559292b6f5 +docfiles size=1820 + RELOC/doc/latex/genealogytree/README details="Readme" + RELOC/doc/latex/genealogytree/genealogytree-example-1.pdf details="Example 1" + RELOC/doc/latex/genealogytree/genealogytree-example-2.pdf details="Example 2" + RELOC/doc/latex/genealogytree/genealogytree-example-3.pdf details="Example 3" + RELOC/doc/latex/genealogytree/genealogytree-languages.pdf + RELOC/doc/latex/genealogytree/genealogytree.doc.sources.zip + RELOC/doc/latex/genealogytree/genealogytree.pdf details="Package documentation" +runfiles size=57 RELOC/tex/latex/genealogytree/genealogytree.sty RELOC/tex/latex/genealogytree/gtrcore.contour.code.tex RELOC/tex/latex/genealogytree/gtrcore.drawing.code.tex @@ -70086,46 +114998,30 @@ runfiles size=47 RELOC/tex/latex/genealogytree/gtrcore.parser.code.tex RELOC/tex/latex/genealogytree/gtrcore.processing.code.tex RELOC/tex/latex/genealogytree/gtrcore.symbols.code.tex + RELOC/tex/latex/genealogytree/gtrlang.danish.code.tex + RELOC/tex/latex/genealogytree/gtrlang.dutch.code.tex RELOC/tex/latex/genealogytree/gtrlang.english.code.tex + RELOC/tex/latex/genealogytree/gtrlang.french.code.tex RELOC/tex/latex/genealogytree/gtrlang.german.code.tex + RELOC/tex/latex/genealogytree/gtrlang.italian.code.tex + RELOC/tex/latex/genealogytree/gtrlang.spanish.code.tex + RELOC/tex/latex/genealogytree/gtrlang.swedish.code.tex RELOC/tex/latex/genealogytree/gtrlib.debug.code.tex RELOC/tex/latex/genealogytree/gtrlib.templates.code.tex -docfiles size=1375 - RELOC/doc/latex/genealogytree/README - RELOC/doc/latex/genealogytree/genealogytree-example-1.pdf - RELOC/doc/latex/genealogytree/genealogytree-example-2.pdf - RELOC/doc/latex/genealogytree/genealogytree-example-3.pdf - RELOC/doc/latex/genealogytree/genealogytree.doc.sources.zip - RELOC/doc/latex/genealogytree/genealogytree.pdf catalogue-also pst-pdgr catalogue-ctan /macros/latex/contrib/genealogytree -catalogue-date 2015-06-22 12:50:25 +0200 +catalogue-date 2019-04-08 19:17:19 +0200 catalogue-license lppl1.3 -catalogue-topics pgf-tikz humanities -catalogue-version 0.91 - -name gene-logic -category Package -revision 15878 -shortdesc Typeset logic formulae, etc. -relocated 1 -longdesc The package provides a facility to typeset certain logic -longdesc formulae. It provides an environment like eqnarray, a -longdesc newtheorem-like environment (NewTheorem), and several macros. -runfiles size=2 - RELOC/tex/latex/gene-logic/gn-logic14.sty -docfiles size=27 - RELOC/doc/latex/gene-logic/gn-logic14.pdf - RELOC/doc/latex/gene-logic/gn-logic14.tex -catalogue-ctan /macros/latex/contrib/gene/logic -catalogue-date 2012-06-04 13:21:54 +0200 -catalogue-license other-free -catalogue-version 1.4 +catalogue-topics genealogy pgf-tikz humanities +catalogue-version 1.32 name genmisc category Package -revision 27208 +revision 45851 +shortdesc numerous one-file packages that work with both plain TeX and LaTeX relocated 1 +containersize 56412 +containerchecksum 3e41f140088d5340e2ee6dd022eedf2dd9d9e6424d5a2467a674334b4afa079d91039e1eb018c4e95bea47d61dc32350a3b30897ff9e4c70cf9eba36a29f07ca runfiles size=72 RELOC/tex/generic/genmisc/anti.tex RELOC/tex/generic/genmisc/apldef.tex @@ -70171,30 +115067,37 @@ runfiles size=72 name genmpage category Package revision 15878 -shortdesc Generalization of LaTeX's minipages. +shortdesc Generalization of LaTeX's minipages relocated 1 longdesc The GenMPage package generalizes LaTeX's minipages. Keyval longdesc options and styles can be used to determine their appearance in longdesc an easy and consistent way. Includes options for paragraph longdesc indentation and vertical alignment with respect to the visual longdesc top and bottom margins. -runfiles size=2 - RELOC/tex/latex/genmpage/genmpage.sty +containersize 2048 +containerchecksum b2618005fc0f00a636e3a307ba1038f8dd39798e2ee2afa4d9169eb45ed4b38a67a57bfb516e9dd8d93ea0210a7fcde21b26c0564b974442e18021d83f905265 +doccontainersize 74052 +doccontainerchecksum c428886adead6fed52f0d249db34a950b4f22b03770ce1bff0831fca29477ab92b5d83a9719b73aa45aeb5f2067f31afc810b6cdfdd69e709ec5e61a08f45472 docfiles size=23 RELOC/doc/latex/genmpage/README - RELOC/doc/latex/genmpage/genmpage.pdf + RELOC/doc/latex/genmpage/genmpage.pdf details="Package documentation" +srccontainersize 4584 +srccontainerchecksum 563042ab68aaab51d357c957111419012a0edfd27332bf30be0985e8625abce945ca6a6a081e62f6d0ee29b6885a55270553b622bbcda5f369ad61b53d4ea723 srcfiles size=4 RELOC/source/latex/genmpage/genmpage.dtx RELOC/source/latex/genmpage/genmpage.ins +runfiles size=2 + RELOC/tex/latex/genmpage/genmpage.sty catalogue-ctan /macros/latex/contrib/genmpage -catalogue-date 2012-06-19 20:29:15 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics layout boxing catalogue-version 0.3.1 name gentium-tug category Package revision 37378 -shortdesc Gentium fonts (in two formats) and support files. +shortdesc Gentium fonts (in two formats) and support files relocated 1 longdesc Gentium is a typeface family designed to enable the diverse longdesc ethnic groups around the world who use the Latin, Cyrillic and @@ -70209,6 +115112,61 @@ longdesc the name "Gentium" by permission of SIL given to the TeX Users longdesc Group; ConTeXt, LaTeX and other supporting files; TeX-related longdesc documentation, and the SIL documentation and other files. execute addMap gentium-type1.map +containersize 3811296 +containerchecksum 247f363a707e1157587e01e1329e7bfb05bc3fbae0795d1569e6e7162e515f9b3d4cc500ee96b917ba246336b88e7c8564e2623a5ed0f19ec3680afee47c8f8d +doccontainersize 1245968 +doccontainerchecksum d38764a1d79bc2abbed708f971d4a949c00ccd44c31d3c2e4fce01a118e6331bce5a7b1db18f32cf86f01e242675960d03f5ae1caf8e86abb2b05c10eea79bb3 +docfiles size=393 + RELOC/doc/fonts/gentium-tug/ChangeLog + RELOC/doc/fonts/gentium-tug/FONTLOG.txt + RELOC/doc/fonts/gentium-tug/Gentium/FONTLOG.txt + RELOC/doc/fonts/gentium-tug/Gentium/GENTIUM-FAQ.txt + RELOC/doc/fonts/gentium-tug/Gentium/OFL-FAQ.txt + RELOC/doc/fonts/gentium-tug/Gentium/OFL.txt + RELOC/doc/fonts/gentium-tug/Gentium/QUOTES.txt + RELOC/doc/fonts/gentium-tug/Gentium/README.txt + RELOC/doc/fonts/gentium-tug/GentiumBasic/FONTLOG.txt + RELOC/doc/fonts/gentium-tug/GentiumBasic/GENTIUM-FAQ.txt + RELOC/doc/fonts/gentium-tug/GentiumBasic/OFL-FAQ.txt + RELOC/doc/fonts/gentium-tug/GentiumBasic/OFL.txt + RELOC/doc/fonts/gentium-tug/GentiumPlus/FONTLOG.txt + RELOC/doc/fonts/gentium-tug/GentiumPlus/GENTIUM-FAQ.txt + RELOC/doc/fonts/gentium-tug/GentiumPlus/OFL-FAQ.txt + RELOC/doc/fonts/gentium-tug/GentiumPlus/OFL.txt + RELOC/doc/fonts/gentium-tug/GentiumPlus/README.txt + RELOC/doc/fonts/gentium-tug/GentiumPlus/documentation/DOCUMENTATION.txt + RELOC/doc/fonts/gentium-tug/GentiumPlus/documentation/GentiumPlus-features.odt + RELOC/doc/fonts/gentium-tug/GentiumPlus/documentation/GentiumPlus-features.pdf + RELOC/doc/fonts/gentium-tug/GentiumPlusCompact/FONTLOG.txt + RELOC/doc/fonts/gentium-tug/GentiumPlusCompact/README.txt + RELOC/doc/fonts/gentium-tug/GentiumPlusCompact/feat_set_tuned.xml + RELOC/doc/fonts/gentium-tug/Makefile + RELOC/doc/fonts/gentium-tug/OFL-FAQ.txt + RELOC/doc/fonts/gentium-tug/OFL.txt + RELOC/doc/fonts/gentium-tug/README details="Readme" + RELOC/doc/fonts/gentium-tug/gentium.pdf details="Package documentation" + RELOC/doc/fonts/gentium-tug/gentium.tex +srccontainersize 14944 +srccontainerchecksum f61c76a0e812c89db7103ecea0253abc9495586f6e474faafc82f21e34e797d419cf918fcadf74876b7f920ab7ed2d0458c1ae1267c1bb6cbb7e2cf9ee978a87 +srcfiles size=28 + RELOC/source/fonts/gentium-tug/generate-support-files.rb + RELOC/source/fonts/gentium-tug/gentium.rb + RELOC/source/fonts/gentium-tug/lig/README + RELOC/source/fonts/gentium-tug/lig/gentium-agr.lig + RELOC/source/fonts/gentium-tug/lig/gentium-lgr.lig + RELOC/source/fonts/gentium-tug/lig/gentium-t2a.lig + RELOC/source/fonts/gentium-tug/lig/gentium-t2b.lig + RELOC/source/fonts/gentium-tug/lig/gentium-t2c.lig + RELOC/source/fonts/gentium-tug/lig/gentium-x2.lig + RELOC/source/fonts/gentium-tug/make-zip-4CTAN.sh + RELOC/source/fonts/gentium-tug/type1/GentiumPlus-I-Czech.kern + RELOC/source/fonts/gentium-tug/type1/GentiumPlus-R-Czech.kern + RELOC/source/fonts/gentium-tug/type1/Makefile + RELOC/source/fonts/gentium-tug/type1/afmcreator.py + RELOC/source/fonts/gentium-tug/type1/ff-gentium.pe + RELOC/source/fonts/gentium-tug/type1/generate-extra-kerns.sh + RELOC/source/fonts/gentium-tug/type1/greekcorrection.py + RELOC/source/fonts/gentium-tug/type1/kerncorrection.py runfiles size=3440 RELOC/fonts/afm/public/gentium-tug/GenBasB.afm RELOC/fonts/afm/public/gentium-tug/GenBasBI.afm @@ -70350,171 +115308,192 @@ runfiles size=3440 RELOC/tex/latex/gentium-tug/t5gentium.fd RELOC/tex/latex/gentium-tug/ts1gentium.fd RELOC/tex/latex/gentium-tug/x2gentium.fd -docfiles size=393 - RELOC/doc/fonts/gentium-tug/ChangeLog - RELOC/doc/fonts/gentium-tug/FONTLOG.txt - RELOC/doc/fonts/gentium-tug/Gentium/FONTLOG.txt - RELOC/doc/fonts/gentium-tug/Gentium/GENTIUM-FAQ.txt - RELOC/doc/fonts/gentium-tug/Gentium/OFL-FAQ.txt - RELOC/doc/fonts/gentium-tug/Gentium/OFL.txt - RELOC/doc/fonts/gentium-tug/Gentium/QUOTES.txt - RELOC/doc/fonts/gentium-tug/Gentium/README.txt - RELOC/doc/fonts/gentium-tug/GentiumBasic/FONTLOG.txt - RELOC/doc/fonts/gentium-tug/GentiumBasic/GENTIUM-FAQ.txt - RELOC/doc/fonts/gentium-tug/GentiumBasic/OFL-FAQ.txt - RELOC/doc/fonts/gentium-tug/GentiumBasic/OFL.txt - RELOC/doc/fonts/gentium-tug/GentiumPlus/FONTLOG.txt - RELOC/doc/fonts/gentium-tug/GentiumPlus/GENTIUM-FAQ.txt - RELOC/doc/fonts/gentium-tug/GentiumPlus/OFL-FAQ.txt - RELOC/doc/fonts/gentium-tug/GentiumPlus/OFL.txt - RELOC/doc/fonts/gentium-tug/GentiumPlus/README.txt - RELOC/doc/fonts/gentium-tug/GentiumPlus/documentation/DOCUMENTATION.txt - RELOC/doc/fonts/gentium-tug/GentiumPlus/documentation/GentiumPlus-features.odt - RELOC/doc/fonts/gentium-tug/GentiumPlus/documentation/GentiumPlus-features.pdf - RELOC/doc/fonts/gentium-tug/GentiumPlusCompact/FONTLOG.txt - RELOC/doc/fonts/gentium-tug/GentiumPlusCompact/README.txt - RELOC/doc/fonts/gentium-tug/GentiumPlusCompact/feat_set_tuned.xml - RELOC/doc/fonts/gentium-tug/Makefile - RELOC/doc/fonts/gentium-tug/OFL-FAQ.txt - RELOC/doc/fonts/gentium-tug/OFL.txt - RELOC/doc/fonts/gentium-tug/README - RELOC/doc/fonts/gentium-tug/gentium.pdf - RELOC/doc/fonts/gentium-tug/gentium.tex -srcfiles size=28 - RELOC/source/fonts/gentium-tug/generate-support-files.rb - RELOC/source/fonts/gentium-tug/gentium.rb - RELOC/source/fonts/gentium-tug/lig/README - RELOC/source/fonts/gentium-tug/lig/gentium-agr.lig - RELOC/source/fonts/gentium-tug/lig/gentium-lgr.lig - RELOC/source/fonts/gentium-tug/lig/gentium-t2a.lig - RELOC/source/fonts/gentium-tug/lig/gentium-t2b.lig - RELOC/source/fonts/gentium-tug/lig/gentium-t2c.lig - RELOC/source/fonts/gentium-tug/lig/gentium-x2.lig - RELOC/source/fonts/gentium-tug/make-zip-4CTAN.sh - RELOC/source/fonts/gentium-tug/type1/GentiumPlus-I-Czech.kern - RELOC/source/fonts/gentium-tug/type1/GentiumPlus-R-Czech.kern - RELOC/source/fonts/gentium-tug/type1/Makefile - RELOC/source/fonts/gentium-tug/type1/afmcreator.py - RELOC/source/fonts/gentium-tug/type1/ff-gentium.pe - RELOC/source/fonts/gentium-tug/type1/generate-extra-kerns.sh - RELOC/source/fonts/gentium-tug/type1/greekcorrection.py - RELOC/source/fonts/gentium-tug/type1/kerncorrection.py +catalogue-contact-home http://tug.org/gentium catalogue-ctan /fonts/gentium-tug -catalogue-date 2015-05-13 12:47:43 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license other-free +catalogue-topics font font-multilingual font-type1 font-ttf catalogue-version 1.1 name gentle category Package revision 15878 -shortdesc A Gentle Introduction to TeX. +shortdesc A Gentle Introduction to TeX relocated 1 longdesc The "Gentle Introduction" is the longest-established longdesc comprehensive free tutorial on the use of plain TeX. +containersize 428 +containerchecksum b244b249329d1ee622686d2a44d1469ceeed7e2adec5d82a2482e8659266a8224490531e0ed971b56f945b63fd1081f29aded9c43cea78fa8a9aec836301b26b +doccontainersize 394788 +doccontainerchecksum fe296c5bc38a1e6d13d2b46dc8081a6658764f7017d0831cfd46dd86082371d6ae095ec3b52b3aaaacc0a57cbcee066b94644a5746391fae4129eebaa246e146 docfiles size=145 - RELOC/doc/plain/gentle/gentle.pdf + RELOC/doc/plain/gentle/gentle.pdf details="The document itself" RELOC/doc/plain/gentle/gentle.tex +catalogue-also gentl-gr catalogue-ctan /info/gentle -catalogue-date 2012-05-30 17:51:05 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free - -name geometry-de -category Package -revision 21882 -shortdesc German translation of the geometry package. -relocated 1 -longdesc German translation of the geometry package, by Hans-Martin -longdesc Haase of the University of Jena. -docfiles size=157 - RELOC/doc/latex/geometry-de/README - RELOC/doc/latex/geometry-de/README-DE - RELOC/doc/latex/geometry-de/geometry-de.dtx - RELOC/doc/latex/geometry-de/geometry-de.pdf - RELOC/doc/latex/geometry-de/geometry.ins -catalogue-ctan /macros/latex/contrib/geometry-de -catalogue-date 2012-05-30 17:51:05 +0200 -catalogue-license lppl1.3 -catalogue-version 1.1 +catalogue-topics tut-plaintex + +name gentombow +category Package +revision 48512 +shortdesc Generate Japanese-style crop marks +relocated 1 +longdesc This bundle provides a LaTeX package for generating +longdesc Japanese-style crop marks (called 'tombow' in Japanese) for +longdesc practical use in self-publishing. The bundle contains the +longdesc following packages: gentombow.sty: Generate crop marks (called +longdesc 'tombow' in Japanese) for practical use in self-publishing. It +longdesc provides the core 'tombow' feature if not available. +longdesc pxgentombow.sty: Superseded by gentombow.sty; kept for +longdesc compatibility only. bounddvi.sty: Set papersize special to DVI +longdesc file. Can be used on LaTeX/pLaTeX/upLaTeX (with DVI output +longdesc mode) with dvips or dvipdfmx drivers. +containersize 8064 +containerchecksum 16551ea615a0986d92473b3c2ea17a9c455258c32e0fafac269d58819025f3ead2f67b960dedadb8748caa9ad4c0551557ae19f7c7050eafa042d5ecf23ec955 +doccontainersize 545656 +doccontainerchecksum 56c7bb21fac2c4118a75978b8cecaa2301ac6a94bc14371796008eb230038a819f42bfec62f1a482e354fab3ace553c9f9ae51f398a12d0eff58f47210881315 +docfiles size=149 + RELOC/doc/latex/gentombow/LICENSE + RELOC/doc/latex/gentombow/Makefile + RELOC/doc/latex/gentombow/README.md details="Readme" + RELOC/doc/latex/gentombow/bounddvi-en.pdf details="Documentation of the bounddvi package (English)" + RELOC/doc/latex/gentombow/bounddvi-en.tex + RELOC/doc/latex/gentombow/bounddvi.pdf details="Documentation of the bounddvi package (Japanese)" language="ja" + RELOC/doc/latex/gentombow/bounddvi.tex + RELOC/doc/latex/gentombow/gentombow-ja.pdf details="Documentation of the gentombow package (Japanese)" language="ja" + RELOC/doc/latex/gentombow/gentombow-ja.tex + RELOC/doc/latex/gentombow/gentombow.pdf details="Documentation of the gentombow package (English)" + RELOC/doc/latex/gentombow/gentombow.tex + RELOC/doc/latex/gentombow/pxgentombow.pdf + RELOC/doc/latex/gentombow/pxgentombow.tex +runfiles size=9 + RELOC/tex/latex/gentombow/bounddvi.sty + RELOC/tex/latex/gentombow/gentombow.sty + RELOC/tex/latex/gentombow/pxgentombow.sty +catalogue-contact-repository https://github.com/aminophen/gentombow +catalogue-ctan /macros/latex/contrib/gentombow +catalogue-date 2018-08-30 14:36:31 +0200 +catalogue-license bsd3 +catalogue-topics japanese layout-page page-control name geometry category Package -revision 19716 -shortdesc Flexible and complete interface to document dimensions. +revision 47638 +shortdesc Flexible and complete interface to document dimensions relocated 1 longdesc The package provides an easy and flexible user interface to -longdesc customize page layout, implementing auto-centering and 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 customize page layout, implementing auto-centering and +longdesc auto-balancing mechanisms so that the users have only to give +longdesc the least description for the page layout. For example, if you +longdesc want to set each margin 2cm without header space, what you need +longdesc is just \usepackage[margin=2cm,nohead]{geometry}. The package longdesc knows about all the standard paper sizes, so that the user need longdesc not know what the nominal 'real' dimensions of the paper are, longdesc just its standard name (such as a4, letter, etc.). An important longdesc feature is the package's ability to communicate the paper size longdesc it's set up to the output (whether via DVI \specials or via -longdesc direct interaction with PDF(La)TeX). -runfiles size=10 - RELOC/tex/latex/geometry/geometry.sty -docfiles size=54 - RELOC/doc/latex/geometry/README +longdesc direct interaction with pdf(La)TeX). +containersize 8696 +containerchecksum 792e765a8882e18db38219b0004c6079793d630ca7f80b6b53cb79989d0a9a0d9a58c69507ab6418cbcdfe4cb00236919c51f3851171dfc42e43be682e0b92d1 +doccontainersize 447200 +doccontainerchecksum 0293ca9ad86d2b2bb0cd38d151aab88c2d6991fc8ec5c6745fe68dec0795082c55d473114cf44e5dffeaf17f064b24720509f60bcc1830bfcae67254b0997a0d +docfiles size=116 + RELOC/doc/latex/geometry/README.md details="Package Readme" RELOC/doc/latex/geometry/changes.txt RELOC/doc/latex/geometry/geometry-samples.tex RELOC/doc/latex/geometry/geometry.cfg - RELOC/doc/latex/geometry/geometry.pdf + RELOC/doc/latex/geometry/geometry.pdf details="Users' manual" +srccontainersize 32472 +srccontainerchecksum 9a18a0339fef0c5a0056ddd03b100e329b8860d1778c1e0119bc9677d5e571323adc5029c245afe30b7232a65d5793221aee099e7666a73e9b695a2336bdc341 srcfiles size=39 RELOC/source/latex/geometry/geometry.drv RELOC/source/latex/geometry/geometry.dtx RELOC/source/latex/geometry/geometry.ins +runfiles size=11 + RELOC/tex/latex/geometry/geometry.sty +catalogue-also vmargin typearea +catalogue-contact-bugs https://github.com/davidcarlisle/geometry/issues +catalogue-contact-repository https://github.com/davidcarlisle/geometry catalogue-ctan /macros/latex/contrib/geometry -catalogue-date 2011-10-04 11:41:19 +0200 +catalogue-date 2018-05-07 13:41:20 +0200 catalogue-license lppl -catalogue-version 5.6 +catalogue-topics geometry +catalogue-version 5.8 + +name geometry-de +category Package +revision 21882 +shortdesc German translation of the geometry package +relocated 1 +longdesc German translation of the geometry package, by Hans-Martin +longdesc Haase of the University of Jena. +containersize 436 +containerchecksum 462a81975ad340106b5e35d6d57e6102d31baf494b203426bb8783ca82b7f02e0656ccda608d558e91693a771e14ceaa02094f365328296b721147eab83fdd3f +doccontainersize 443132 +doccontainerchecksum afcbc17a2cf01ec949cc2ad427335f092f65b3187a7a0225971a9ebe53402b19629767dcc3b1935f7d019cd1dcaa72b46931efccfcd2aa61c4fbffce2034e4dd +docfiles size=157 + RELOC/doc/latex/geometry-de/README details="Package Readme" language="en" + RELOC/doc/latex/geometry-de/README-DE details="Package Readme (German)" language="de" + RELOC/doc/latex/geometry-de/geometry-de.dtx + RELOC/doc/latex/geometry-de/geometry-de.pdf details="Users' manual" language="de" + RELOC/doc/latex/geometry-de/geometry.ins +catalogue-also geometry vmargin typearea +catalogue-ctan /macros/latex/contrib/geometry-de +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics geometry german-doc translation +catalogue-version 1.1 name german category Package -revision 30567 -shortdesc Support for German typography. +revision 42428 +shortdesc Support for German typography relocated 1 -longdesc Supports the new German orthography (neue deutsche +longdesc Supports the old German orthography (alte deutsche longdesc Rechtschreibung). -runfiles size=14 - RELOC/tex/generic/german/german.sty - RELOC/tex/generic/german/ngerman.sty +containersize 6760 +containerchecksum 6cc469012ca6cb76baf2bbea00d198b97c2694d9388e90d2ded6b27da30f8d56aa2e6742ecabbdd335b7299c0c7476cc5479b59fa94468c9354f35ce18b59732 +doccontainersize 193600 +doccontainerchecksum b9795ae418790119ca923079221114b9bf608ce2460b810cb39575910c0b173ff445c428a2ce6260bf90a993fb354d2b5c300ba58344d907965b65bb6f2d4ee3 docfiles size=72 - RELOC/doc/generic/german/00readme.1st - RELOC/doc/generic/german/betatest/00readme.1st - RELOC/doc/generic/german/gerdoc.pdf + RELOC/doc/generic/german/00readme.1st details="Readme" language="de" + RELOC/doc/generic/german/betatest/00readme.1st details="Readme" language="de" + RELOC/doc/generic/german/gerdoc.pdf details="Package documentation" language="de" RELOC/doc/generic/german/gerdoc.tex RELOC/doc/generic/german/german.MISSING RELOC/doc/generic/german/hyphxmpl.cfg +srccontainersize 27208 +srccontainerchecksum 9064ca69c304f86eaaf2530bafe353902de078530f57f39cfcc0a9dc0d5a04ba5329ac9d0e7e10e3ddbbbd380c14b4efd8a5b7a6b0099f2c504563af74469c42 srcfiles size=25 RELOC/source/generic/german/german.dtx RELOC/source/generic/german/german.ins +runfiles size=14 + RELOC/tex/generic/german/german.sty + RELOC/tex/generic/german/ngerman.sty catalogue-ctan /language/german -catalogue-date 2012-06-19 20:29:15 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics german catalogue-version 2.5e name germbib category Package revision 15878 -shortdesc German variants of standard BibTeX styles. +shortdesc German variants of standard BibTeX styles relocated 1 longdesc A development of the (old) german.sty, this bundle provides longdesc German packages, BibTeX styles and documentary examples, for longdesc writing documents with bibliographies. The author has since longdesc developed the babelbib bundle, which (he asserts) supersedes longdesc germbib. -runfiles size=37 - RELOC/bibtex/bst/germbib/gerabbrv.bst - RELOC/bibtex/bst/germbib/geralpha.bst - RELOC/bibtex/bst/germbib/gerapali.bst - RELOC/bibtex/bst/germbib/gerplain.bst - RELOC/bibtex/bst/germbib/gerunsrt.bst - RELOC/tex/latex/germbib/bibgerm.sty - RELOC/tex/latex/germbib/mynormal.sty +containersize 12204 +containerchecksum a7854f834c868ad80bcf986380f19139687eb80309e3aeb9a001d2030c5bca51de617394f920801834df460d05b52878301c6b45a52666984b3ba2d0910c416f +doccontainersize 35556 +doccontainerchecksum 53dd4fff2fbb7044436f37e8a2baf48877699db4f99b92a701d10c0230439b00b48ee09051839efe4392abdb4335c3998d92d6239802c765bde4aa2df3d34ab6 docfiles size=42 - RELOC/doc/bibtex/germbib/README.bibgerm + RELOC/doc/bibtex/germbib/README.bibgerm details="Readme" RELOC/doc/bibtex/germbib/apalike.doc RELOC/doc/bibtex/germbib/apalike.germbib_sty RELOC/doc/bibtex/germbib/apalike.tex @@ -70527,77 +115506,134 @@ docfiles size=42 RELOC/doc/bibtex/germbib/testbibgerm.tex RELOC/doc/bibtex/germbib/testgerb.tex RELOC/doc/bibtex/germbib/xampl.bib +runfiles size=37 + RELOC/bibtex/bst/germbib/gerabbrv.bst + RELOC/bibtex/bst/germbib/geralpha.bst + RELOC/bibtex/bst/germbib/gerapali.bst + RELOC/bibtex/bst/germbib/gerplain.bst + RELOC/bibtex/bst/germbib/gerunsrt.bst + RELOC/tex/latex/germbib/bibgerm.sty + RELOC/tex/latex/germbib/mynormal.sty catalogue-ctan /biblio/bibtex/contrib/germbib -catalogue-date 2012-06-19 20:29:15 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics bibtex-sty german name germkorr category Package revision 15878 -shortdesc Change kerning for german quotation marks. +shortdesc Change kerning for German quotation marks relocated 1 longdesc The package germcorr has to be loaded after the package german. longdesc It brings some letters like T nearer to german single and longdesc double quotes even when that letter wears a standard accent longdesc like "`\.T"'. -runfiles size=2 - RELOC/tex/latex/germkorr/germkorr.sty +containersize 2348 +containerchecksum 6819a79268da2704a3fa6baab74be48ccd591ba998a0b012d323cb0149273deba6298a92629f0d19c19725ef0b41db9dd28adf9bb898c1c637038f9c22ad4b16 +doccontainersize 172296 +doccontainerchecksum ab5362e069674c2c53709bc776be9fcbcfd3e56226a8fa7b9230c2f4ccb6fb74bba20485362f48130c153d81df838281620a628671c202cd60a52bf8ab5b89cd docfiles size=50 RELOC/doc/latex/germkorr/COPYING - RELOC/doc/latex/germkorr/README - RELOC/doc/latex/germkorr/germkorr.pdf + RELOC/doc/latex/germkorr/README details="Readme" + RELOC/doc/latex/germkorr/germkorr.pdf details="Package documentation" RELOC/doc/latex/germkorr/germkorr.tex +runfiles size=2 + RELOC/tex/latex/germkorr/germkorr.sty +catalogue-also german catalogue-ctan /macros/latex/contrib/germkorr -catalogue-date 2012-06-19 20:29:15 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics quote-marks german catalogue-version 1.0 name geschichtsfrkl category Package -revision 25886 -shortdesc BibLaTeX style for historians. +revision 42121 +shortdesc BibLaTeX style for historians relocated 1 longdesc The package provides a BibLaTeX style, (mostly) meeting the longdesc requirements of the History Faculty of the University of longdesc Freiburg (Germany). -runfiles size=6 - RELOC/tex/latex/geschichtsfrkl/geschichtsfrkl.bbx - RELOC/tex/latex/geschichtsfrkl/geschichtsfrkl.cbx -docfiles size=52 - RELOC/doc/latex/geschichtsfrkl/README - RELOC/doc/latex/geschichtsfrkl/geschichtsfrkl.pdf -srcfiles size=22 +containersize 5320 +containerchecksum 24cad33dfcbdb8ab91a80509771bd130ea6682a14fea5510ea202af73155653471deab91abb43a302b9717c252475db58135ad465f28509adae5d8583bf98e0b +doccontainersize 642508 +doccontainerchecksum 6d1097dd0047c029100358bd3161f2ca515a09cf9a62b2633d4797059688bd5c30e4eab11c31081faeefacf892415c5d9a4985d20245ea9cf79b4197925ed2e7 +docfiles size=161 + RELOC/doc/latex/geschichtsfrkl/README details="Readme" + RELOC/doc/latex/geschichtsfrkl/geschichtsfrkl.pdf details="Package documentation (German)" language="de" +srccontainersize 24896 +srccontainerchecksum 28c6a7181bb91d32ddcdbed7dd9824c8a63a351acc39f4c2e60ca507630fc23b0afe62380a64618d882fe742388d5537a435dc0b6738ba8d5288c5f2894a4064 +srcfiles size=26 RELOC/source/latex/geschichtsfrkl/geschichtsfrkl.dtx RELOC/source/latex/geschichtsfrkl/geschichtsfrkl.ins +runfiles size=9 + RELOC/tex/latex/geschichtsfrkl/geschichtsfrkl.bbx + RELOC/tex/latex/geschichtsfrkl/geschichtsfrkl.cbx + RELOC/tex/latex/geschichtsfrkl/geschichtsfrkldoc.sty catalogue-ctan /macros/latex/contrib/biblatex-contrib/geschichtsfrkl -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-09-21 12:39:48 +0200 catalogue-license lppl -catalogue-version 1.1 +catalogue-topics humanities biblatex +catalogue-version 1.4 name getfiledate category Package revision 16189 -shortdesc Find the date of last modification of a file. +shortdesc Find the date of last modification of a file relocated 1 longdesc The package fetches from the system the date of last longdesc modification or opening of an existing file, using the function -longdesc \pdffilemoddate (present in recent versions of PDFTeX); the +longdesc \pdffilemoddate (present in recent versions of pdfTeX); the longdesc user may specify how the date is to be presented. -runfiles size=2 - RELOC/tex/latex/getfiledate/getfiledate.sty +containersize 2224 +containerchecksum 017b3ad95801da2788f2c5040225c6a8a2ac6d005c1d68d9eba0be061dfc9fa6f088a0279a75d25bea8ba380e4a92cfbd9b6a6b812d08cd2f86de097f7974fb7 +doccontainersize 104636 +doccontainerchecksum 490daffa0b0b28c9c02d745d8de50f22395f6ae773e07f6e826a8ddaff0d38f9ee48e822953e9642e46be26084ec2919bcac76c388cb3f42965f1b662e4e43a0 docfiles size=34 - RELOC/doc/latex/getfiledate/README - RELOC/doc/latex/getfiledate/getfiledate-guide.pdf + RELOC/doc/latex/getfiledate/README details="Readme" + RELOC/doc/latex/getfiledate/getfiledate-guide.pdf details="Package documentation" RELOC/doc/latex/getfiledate/getfiledate-guide.tex +runfiles size=2 + RELOC/tex/latex/getfiledate/getfiledate.sty catalogue-ctan /macros/latex/contrib/getfiledate -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics file-mgmt catalogue-version 1.2 +name getitems +category Package +revision 39365 +shortdesc Gathering items from a list-like environment +relocated 1 +longdesc This package provides a \gatheritems command to parse a list of +longdesc data separated by \item tokens. This makes it easier to define +longdesc custom environments which structure their data in the same way +longdesc that itemize or enumerate do. +containersize 1668 +containerchecksum 8797c7e70f1c81330b68b6c386116b0caf2c350a2b75724d796f0ab7380a2ea4cb2ae293ac3e6b941887b30faa2b73775c2bfce7c674ee98c4256a23231443b0 +doccontainersize 201756 +doccontainerchecksum 95302dae67f3193dc3d52b4e5724584ee066eee1dbba30b1233faa0c65fc568f932805b18b8054165760a2b655b486e7f3115d3b37be780f8f5a7220f2f924fc +docfiles size=54 + RELOC/doc/latex/getitems/README.md details="Readme" + RELOC/doc/latex/getitems/getitems.pdf details="Package documentation" +srccontainersize 5440 +srccontainerchecksum 1bc8b4c2b75c5cf43e18a510e5e479a7109ac440266e0dc7d748d6ef391280d81f72a07f6bfc518c6c0c313b7c8e1e11cfe9ccaae33540e1b48988414bef5ad1 +srcfiles size=5 + RELOC/source/latex/getitems/getitems.dtx + RELOC/source/latex/getitems/getitems.ins +runfiles size=1 + RELOC/tex/latex/getitems/getitems.sty +catalogue-ctan /macros/latex/contrib/getitems +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics text-manip macro-supp +catalogue-version 1.0 + name getmap category Package -revision 35355 -shortdesc Download OpenStreetMap maps for use in documents. +revision 50589 +shortdesc Download OpenStreetMap maps for use in documents longdesc The package provides a simple interface to OpenStreetMap, and longdesc to Google Maps "map images". In the simplest case, it is longdesc sufficient to specify the address you need (if you don't, the @@ -70607,51 +115643,198 @@ longdesc LaTeX must be running with \write 18 enabled). The ("external") longdesc lua script may be used from the command line; a bash version is longdesc provided. depend getmap.ARCH -runfiles size=10 - texmf-dist/scripts/getmap/getmapdl.lua - texmf-dist/tex/latex/getmap/getmap.cfg - texmf-dist/tex/latex/getmap/getmap.sty -docfiles size=581 - texmf-dist/doc/latex/getmap/README +containersize 7592 +containerchecksum e5287152442820e20087b45c50a750af621e71e2175cd6790231d81e1f338e50aa75f29d9fbc31c2e5802229c8f15c4e0c7769d0513f1d1b0bafc96a8a3b120f +doccontainersize 1988232 +doccontainerchecksum bb55c60ec958182aaaa6dfc292a06fbad8a0ebdcb56a6799f1358ad2009bcb72b06611672219c5e9bd6d7cb4db76c4fa030be5e06f9bb38d04fa6744f8bca330 +docfiles size=508 + texmf-dist/doc/latex/getmap/README.md details="Readme" texmf-dist/doc/latex/getmap/getmap-example.tex texmf-dist/doc/latex/getmap/getmap.dtx - texmf-dist/doc/latex/getmap/getmap.pdf - texmf-dist/doc/latex/getmap/install.bat + texmf-dist/doc/latex/getmap/getmap.pdf details="Package documentation" texmf-dist/doc/latex/getmap/makefile texmf-dist/doc/latex/getmap/manifest.txt +runfiles size=10 + texmf-dist/scripts/getmap/getmapdl.lua + texmf-dist/tex/latex/getmap/getmap.cfg + texmf-dist/tex/latex/getmap/getmap.sty +catalogue-contact-home http://getmap.jklatex.de/ catalogue-ctan /macros/latex/contrib/getmap -catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-date 2019-03-25 15:25:51 +0100 catalogue-license lppl -catalogue-version 1.8 +catalogue-topics cartography +catalogue-version 1.11 + +name getmap.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of getmap +containersize 344 +containerchecksum 46852d2d139c84c404aac8b02f49b6299cae825ac07c6ac51279e6787bfdc9a293ceb3579b6640a27ae8008e111e317ca18429b59941646203c75b6ca85be2b5 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/getmapdl + +name getmap.amd64-freebsd +category Package +revision 34971 +shortdesc amd64-freebsd files of getmap +containersize 344 +containerchecksum d4c48d9e0989f951b53cd4ff3fd3ceb04e3c83af1b196242b65965d2e5b2e9bbb5c89dd160e5d9666693b40bbc914825d633aa87d07f33280a1db8f480b42952 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/getmapdl + +name getmap.amd64-netbsd +category Package +revision 34971 +shortdesc amd64-netbsd files of getmap +containersize 344 +containerchecksum e179ab2156c461ac0034b45cecb5bb8c69bbeeb442fb1eb67b488622d28fd41c1c7f140cca628d0d3dfc292163e30cd7ee5daa539b00f29a93cb02b5afffdb50 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/getmapdl + +name getmap.armhf-linux +category Package +revision 34971 +shortdesc armhf-linux files of getmap +containersize 344 +containerchecksum a01ea5f4c6ac4f41f329aca6e51b44e35bdf6d5c384e508135218f6fd1e140256e5bb0a5b61e155696edcfa628432385c088d7a188aa129b7995c67d295de3fa +binfiles arch=armhf-linux size=1 + bin/armhf-linux/getmapdl + +name getmap.i386-cygwin +category Package +revision 34971 +shortdesc i386-cygwin files of getmap +containersize 340 +containerchecksum be4789c00a055d47e26562ae16df6ae834900d2a892ac11f3690cb793e99777a6d64304bb13b8d1b4a343d50c61cde9f6dc8065bf2d1619fbc5f796e795fd0a0 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/getmapdl + +name getmap.i386-freebsd +category Package +revision 34971 +shortdesc i386-freebsd files of getmap +containersize 344 +containerchecksum 7923a1db5fee7bfcd1c14a91c7b785f2997ced7a8e183ffe58dc43caf35f0b2f3b2355381a27d76a667e91676968b9e53117a5c2c447fd4ff26c8c28667841e3 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/getmapdl name getmap.i386-linux category Package revision 34971 shortdesc i386-linux files of getmap +containersize 340 +containerchecksum c3f9c28e8e843c39a536735f6cc02baf9e74b62f9c8813426b008e0d033acfe4b0360386aebb38c56e4d92b561d300896d41553aa6dde7101bb40737767b7b67 binfiles arch=i386-linux size=1 bin/i386-linux/getmapdl +name getmap.i386-netbsd +category Package +revision 34971 +shortdesc i386-netbsd files of getmap +containersize 344 +containerchecksum 441ed280f0bf2f30e7123022960ea4d12b6654d4ad79bb016a22357014d9624332e6c1f2f0cf935effb2bda4b862442ef09f6e94ebdf55f6b3741ab342777bb4 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/getmapdl + +name getmap.i386-solaris +category Package +revision 34971 +shortdesc i386-solaris files of getmap +containersize 340 +containerchecksum 565b46bb7fbf5757d64955598283cd8673a677549be62d6ffda86e90f47d0227189e28ff39035edcaf7bf96d4b98edc1fdef2f761d23c3c024bef33e729d3f1f +binfiles arch=i386-solaris size=1 + bin/i386-solaris/getmapdl + +name getmap.win32 +category Package +revision 34634 +shortdesc win32 files of getmap +containersize 680 +containerchecksum 03c2788a14c4b9f85a70cf27af997daeefe0c69cfbe34c064c42befc60c88cfa29321c31adcc6d40cceba848181a8104728e26a0193d482640be7856416c05d7 +binfiles arch=win32 size=1 + bin/win32/getmapdl.exe + +name getmap.x86_64-cygwin +category Package +revision 34971 +shortdesc x86_64-cygwin files of getmap +containersize 344 +containerchecksum 4cefb59afdb6339b071a2f7cbdad1f929a33e5f4af71d52ab77990c4ca3fc0f79966629bdea305d6091881141d3c22d22897a3ad51ac07f3dad036fa367c74b3 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/getmapdl + +name getmap.x86_64-darwin +category Package +revision 34971 +shortdesc x86_64-darwin files of getmap +containersize 344 +containerchecksum 5e85018d9882382c3d2141dbefec276d19be90f015d8f3f6870787bdc8646b798ed0b5fbd5049fb2e1dbc3520ea6d1c39130a1abf99854bbc2322304e125bfaf +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/getmapdl + +name getmap.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of getmap +containersize 352 +containerchecksum 8d9fd668022ebbe3f58245f80eab10fe30695ed548db23252218a121a9324f9675b267d32423b68d43a6a7357dcaaef9690072163fdfbda5a51cce3607a458eb +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/getmapdl + +name getmap.x86_64-linux +category Package +revision 34971 +shortdesc x86_64-linux files of getmap +containersize 344 +containerchecksum fa908890dc366cc03f1ef0a3b7ac23fef70b49bd48ce1d6729643f235d63b0e09f74a91080c0936e96e90affabceee72967e85bb14ed93e33eb8d839b7bfd55e +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/getmapdl + +name getmap.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of getmap +containersize 348 +containerchecksum ae141b47b996708c554fbc8cb5be8665256f79d99410b89d8dc54183d374b8a3ea04578fd3adf0274b157f679d6cf6d3ba317750a8b0773f454ab36fff242309 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/getmapdl + +name getmap.x86_64-solaris +category Package +revision 34971 +shortdesc x86_64-solaris files of getmap +containersize 344 +containerchecksum 300d07279fe9e6779ae4ceed1498f8cc05e6b2c1e501532e2561c7b9c491c2e7df735f3c860970dbccdbcc44ec28f43ab37d3a8eb57f593761824014776279e4 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/getmapdl + name getoptk category Package revision 23567 -shortdesc Define macros with sophisticated options. +shortdesc Define macros with sophisticated options relocated 1 longdesc The package provides a means of defining macros whose options longdesc are taken from a dictionary, which includes options which longdesc themselves have arguments. The package was designed for use longdesc with Plain TeX; its syntax derives from that of the \hbox, longdesc \hrule, etc., TeX primitives. -runfiles size=4 - RELOC/tex/plain/getoptk/getoptk.tex - RELOC/tex/plain/getoptk/guide.tex +containersize 4180 +containerchecksum 6a2e543d0997c52155807d0d2641af9714cb09531286a58bcb2d5fec0e70c694edb7d603a250281a641610d1c39495d5f93417da5cfea7a86da1fd53a98ef77f +doccontainersize 278344 +doccontainerchecksum fba54e8acd4f494c4e859c8705cb97923e477ed909720adb8c4735c527c3b13799ad74ac1700099bfa282144f2b38358b890bc52d4ae4a9e16699c2d0e10619c docfiles size=82 RELOC/doc/plain/getoptk/COPYING RELOC/doc/plain/getoptk/COPYING-FR - RELOC/doc/plain/getoptk/README - RELOC/doc/plain/getoptk/guide.pdf + RELOC/doc/plain/getoptk/README details="Readme" + RELOC/doc/plain/getoptk/guide.pdf details="Package documentation" +runfiles size=4 + RELOC/tex/plain/getoptk/getoptk.tex + RELOC/tex/plain/getoptk/guide.tex catalogue-ctan /macros/plain/contrib/getoptk -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics macro-def catalogue-version 1.0 name gfnotation @@ -70663,22 +115846,27 @@ longdesc The package implements macros for plain TeX to typeset the longdesc notation invented by Gottlob Frege in 1879 for his books longdesc "Begriffsschrift" and "Grundgesetze der Arithmetik" (two longdesc volumes). The output styles of both books are supported. -runfiles size=22 - RELOC/tex/plain/gfnotation/GFnotation.tex +containersize 14368 +containerchecksum 4f99442eacf28ea13cd98ee4bbe981b95ae9d849e6bf2682cac2305fd793f6e9f5e4211362385890956fdb24ef03748e9cb0184c7ba9ed89e7985b2caa3e2da2 +doccontainersize 167284 +doccontainerchecksum b65d173c11400a7681510cd837ac6e8ebf65a458327bfdee140013d49a0c6fcc339f6c45d4b4ee918585acaf785c12e66b3df5f73f01a1f2d8c5b8db58b9c47e docfiles size=63 RELOC/doc/plain/gfnotation/COPYING - RELOC/doc/plain/gfnotation/GFnotation-doc.pdf + RELOC/doc/plain/gfnotation/GFnotation-doc.pdf details="Package documentation" RELOC/doc/plain/gfnotation/GFnotation-doc.tex - RELOC/doc/plain/gfnotation/README + RELOC/doc/plain/gfnotation/README details="Readme" +runfiles size=22 + RELOC/tex/plain/gfnotation/GFnotation.tex catalogue-ctan /macros/plain/contrib/gfnotation -catalogue-date 2015-05-02 22:34:45 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl3 +catalogue-topics logic maths catalogue-version 2.9 name gfsartemisia category Package revision 19469 -shortdesc A modern Greek font design. +shortdesc A modern Greek font design relocated 1 longdesc GFS Artemisia is a relatively modern font, designed as a longdesc 'general purpose' font in the same sense as Times is nowadays @@ -70686,6 +115874,17 @@ longdesc treated. The present version has been provided by the Greek longdesc Font Society. The font supports the Greek and Latin alphabets. longdesc LaTeX support is provided, using the OT1, T1 and LGR encodings. execute addMap gfsartemisia.map +containersize 981732 +containerchecksum 28cb811a30c06bd6390b9268dd2a7a4dadcb2fa9d426d9461af1ba5593b2c419ed1c7886c3aef9bdbb0f1fea3d6bf127ff6088a6b2c2048dcccfb21c2a06a5ee +doccontainersize 117180 +doccontainerchecksum 9f2efd76c243177240f237f7232fc87eb33d7ea1177a7bfdf7d506077e19c40d3fd923a960595c46f50fa19979598bd06a1865cae8794d45f91da1d6a9a60a7b +docfiles size=46 + RELOC/doc/fonts/gfsartemisia/OFL-FAQ.txt + RELOC/doc/fonts/gfsartemisia/OFL.txt + RELOC/doc/fonts/gfsartemisia/README details="Readme" + RELOC/doc/fonts/gfsartemisia/README.TEXLIVE + RELOC/doc/fonts/gfsartemisia/gfsartemisia.pdf details="Package documentation" + RELOC/doc/fonts/gfsartemisia/gfsartemisia.tex runfiles size=459 RELOC/fonts/afm/public/gfsartemisia/GFSArtemisia-Bold.afm RELOC/fonts/afm/public/gfsartemisia/GFSArtemisia-BoldItalic.afm @@ -70804,28 +116003,34 @@ runfiles size=459 RELOC/tex/latex/gfsartemisia/t1artemisiaeuler.fd RELOC/tex/latex/gfsartemisia/uartemisiaeulernums.fd RELOC/tex/latex/gfsartemisia/uartemisianums.fd -docfiles size=46 - RELOC/doc/fonts/gfsartemisia/OFL-FAQ.txt - RELOC/doc/fonts/gfsartemisia/OFL.txt - RELOC/doc/fonts/gfsartemisia/README - RELOC/doc/fonts/gfsartemisia/README.TEXLIVE - RELOC/doc/fonts/gfsartemisia/gfsartemisia.pdf - RELOC/doc/fonts/gfsartemisia/gfsartemisia.tex +catalogue-contact-home http://myria.math.aegean.gr/labs/dt/ catalogue-ctan /fonts/greek/gfs/gfsartemisia -catalogue-date 2014-05-01 23:46:06 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license other-free +catalogue-topics font font-type1 font-otf font-greek catalogue-version 1.0 name gfsbaskerville category Package revision 19440 -shortdesc A Greek font, from one such by Baskerville. +shortdesc A Greek font, from one such by Baskerville relocated 1 longdesc The font is a digital implementation of Baskerville's classic longdesc Greek font, provided by the Greek Font Society. The font covers longdesc Greek only, and LaTeX support provides for the use of LGR longdesc encoding. execute addMap gfsbaskerville.map +containersize 116604 +containerchecksum b545ec586b3bdfe3da2cabaa959ceeeb4ff513b48024575b1b5e3c57bb2d10a0b4e2cd7507726275eed0826dabf03d05c20eb9d5ec341aaedc0313264214ef78 +doccontainersize 45796 +doccontainerchecksum a45ed2b35774755a6558431f784faad4bbd63aa81ad5d80c3cfe3f7726604aea3e4de2baa72bb27a4e2271e9bfe180c8963d06b880a0efd2dc5f7789dcabb51b +docfiles size=22 + RELOC/doc/fonts/gfsbaskerville/OFL-FAQ.txt + RELOC/doc/fonts/gfsbaskerville/OFL.txt + RELOC/doc/fonts/gfsbaskerville/README details="Readme" + RELOC/doc/fonts/gfsbaskerville/README.TEXLIVE + RELOC/doc/fonts/gfsbaskerville/gfsbaskerville.pdf details="Package documentation" + RELOC/doc/fonts/gfsbaskerville/gfsbaskerville.tex runfiles size=53 RELOC/fonts/afm/public/gfsbaskerville/GFSBaskerville-Regular.afm RELOC/fonts/enc/dvips/gfsbaskerville/gpgfsbaskerville.enc @@ -70837,22 +116042,17 @@ runfiles size=53 RELOC/fonts/vf/public/gfsbaskerville/ggfsbaskervillerg6a.vf RELOC/tex/latex/gfsbaskerville/gfsbaskerville.sty RELOC/tex/latex/gfsbaskerville/lgrgfsbaskerville.fd -docfiles size=22 - RELOC/doc/fonts/gfsbaskerville/OFL-FAQ.txt - RELOC/doc/fonts/gfsbaskerville/OFL.txt - RELOC/doc/fonts/gfsbaskerville/README - RELOC/doc/fonts/gfsbaskerville/README.TEXLIVE - RELOC/doc/fonts/gfsbaskerville/gfsbaskerville.pdf - RELOC/doc/fonts/gfsbaskerville/gfsbaskerville.tex +catalogue-contact-home http://myria.math.aegean.gr/labs/dt/ catalogue-ctan /fonts/greek/gfs/gfsbaskerville -catalogue-date 2014-05-01 23:46:06 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license other-free +catalogue-topics font font-type1 font-otf font-greek catalogue-version 1.0 name gfsbodoni category Package revision 28484 -shortdesc A Greek and Latin font based on Bodoni. +shortdesc A Greek and Latin font based on Bodoni relocated 1 longdesc Bodoni's Greek fonts in the 18th century broke, for the first longdesc time, with the Byzantine cursive tradition of Greek fonts. GFS @@ -70862,6 +116062,16 @@ longdesc fonts is provided, offering OT1, T1 and LGR encodings. The longdesc fonts themselves are provided in Adobe Type 1 and OpenType longdesc formats. execute addMap gfsbodoni.map +containersize 906264 +containerchecksum e01cca38176330bdc0a4b523bd2bd4f73a497d90a34682d29920e145d11ea099f163fa08470c79e10a27a137a5901d7da9db54e461667af61c687adca1960249 +doccontainersize 93680 +doccontainerchecksum c70b1a32e945d82e50b8a37319ee2bf63d4800b381f317168fd945311485cf6c41c7a3112e89457f4ee40bd29736accf681bd61494120e3d41f0c8fb28ad466a +docfiles size=36 + RELOC/doc/fonts/gfsbodoni/OFL-FAQ.txt + RELOC/doc/fonts/gfsbodoni/OFL.txt + RELOC/doc/fonts/gfsbodoni/README details="Readme" + RELOC/doc/fonts/gfsbodoni/README.TEXLIVE + RELOC/doc/fonts/gfsbodoni/gfsbodoni.pdf details="Package documentation" runfiles size=443 RELOC/fonts/afm/public/gfsbodoni/GFSBodoni-Bold.afm RELOC/fonts/afm/public/gfsbodoni/GFSBodoni-BoldItalic.afm @@ -70973,29 +116183,36 @@ runfiles size=443 RELOC/tex/latex/gfsbodoni/ot1bodoni.fd RELOC/tex/latex/gfsbodoni/t1bodoni.fd RELOC/tex/latex/gfsbodoni/ubodoninums.fd -docfiles size=36 - RELOC/doc/fonts/gfsbodoni/OFL-FAQ.txt - RELOC/doc/fonts/gfsbodoni/OFL.txt - RELOC/doc/fonts/gfsbodoni/README - RELOC/doc/fonts/gfsbodoni/README.TEXLIVE - RELOC/doc/fonts/gfsbodoni/gfsbodoni.pdf +catalogue-contact-home http://myria.math.aegean.gr/labs/dt/ catalogue-ctan /fonts/greek/gfs/gfsbodoni -catalogue-date 2014-05-02 15:05:35 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license ofl +catalogue-topics font font-type1 font-otf font-greek catalogue-version 1.01 name gfscomplutum category Package revision 19469 -shortdesc A Greek font with a long history. -relocated 1 -longdesc GFS Complutum derives, via a long development, from a minuscule- -longdesc only font cut in the 16th century. An unsatisfactory set of -longdesc majuscules were added in the early 20th century, but its author -longdesc died before he could complete the revival of the font. The -longdesc Greek Font Society has released this version, which has a new -longdesc set of majuscules. +shortdesc A Greek font with a long history +relocated 1 +longdesc GFS Complutum derives, via a long development, from a +longdesc minuscule-only font cut in the 16th century. An unsatisfactory +longdesc set of majuscules were added in the early 20th century, but its +longdesc author died before he could complete the revival of the font. +longdesc The Greek Font Society has released this version, which has a +longdesc new set of majuscules. execute addMap gfscomplutum.map +containersize 123244 +containerchecksum 4013ef92910c3c1145708afa5a9ff13cfb0aae05e6b225c56c98090ea7cd223799e73212982312a14cf504a355dddce08e3364df8c046dfe462d07429cfa617d +doccontainersize 58076 +doccontainerchecksum 5854b000522120f6a1b065300943fd8aebcd75f57da15d667616a3706d35ffa35cac0422712d0b008dc2abf2b9deceb0248fc044be68f893f6ad0eefcd50b316 +docfiles size=26 + RELOC/doc/fonts/gfscomplutum/OFL-FAQ.txt + RELOC/doc/fonts/gfscomplutum/OFL.txt + RELOC/doc/fonts/gfscomplutum/README details="Readme" + RELOC/doc/fonts/gfscomplutum/README.TEXLIVE + RELOC/doc/fonts/gfscomplutum/gfscomplutum.pdf details="Package documentation" + RELOC/doc/fonts/gfscomplutum/gfscomplutum.tex runfiles size=58 RELOC/fonts/afm/public/gfscomplutum/GFSComplutum-Regular.afm RELOC/fonts/enc/dvips/gfscomplutum/gpcomplutum.enc @@ -71010,22 +116227,17 @@ runfiles size=58 RELOC/fonts/vf/public/gfscomplutum/gcomplutumo8a.vf RELOC/tex/latex/gfscomplutum/gfscomplutum.sty RELOC/tex/latex/gfscomplutum/lgrcomplutum.fd -docfiles size=26 - RELOC/doc/fonts/gfscomplutum/OFL-FAQ.txt - RELOC/doc/fonts/gfscomplutum/OFL.txt - RELOC/doc/fonts/gfscomplutum/README - RELOC/doc/fonts/gfscomplutum/README.TEXLIVE - RELOC/doc/fonts/gfscomplutum/gfscomplutum.pdf - RELOC/doc/fonts/gfscomplutum/gfscomplutum.tex +catalogue-contact-home http://myria.math.aegean.gr/labs/dt/ catalogue-ctan /fonts/greek/gfs/gfscomplutum -catalogue-date 2014-05-02 15:05:35 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license ofl +catalogue-topics font font-type1 font-otf font-greek catalogue-version 1.0 name gfsdidot category Package -revision 31978 -shortdesc A Greek font based on Didot's work. +revision 46310 +shortdesc A Greek font based on Didot's work relocated 1 longdesc The design of Didot's 1805 Greek typeface was influenced by the longdesc neoclassical ideals of the late 18th century. The font was @@ -71034,15 +116246,59 @@ longdesc Didot's son, and was very widely used. The present version is longdesc provided by the Greek Font Society. The font supports the Greek longdesc alphabet, and is accompanied by a matching Latin alphabet based longdesc on Zapf's Palatino. LaTeX support is provided, using the OT1, -longdesc T1 and LGR encodings. +longdesc T1, TS1, and LGR encodings. execute addMap gfsdidot.map -runfiles size=585 +containersize 1305304 +containerchecksum 9e6ea7c3d5b7ecff95270b17879297abcccb62df11ab7eba54f02e7fc2c732d1be39b052e3b4b6eff9990ad010e46f73b40b4134b4e024f7d914a1bde29b4a7e +doccontainersize 42692 +doccontainerchecksum 93bf3a4fbff9e0c936877b135a487739a7f48c2797cce9d27c2a9f173fd290c2da5a3a3f30ca883ea057ec47a4695d54f5e85ae01f13af40e1dfd3210cc7c273 +docfiles size=187 + RELOC/doc/fonts/gfsdidot/OFL-FAQ.txt + RELOC/doc/fonts/gfsdidot/OFL.txt + RELOC/doc/fonts/gfsdidot/README details="Readme" + RELOC/doc/fonts/gfsdidot/README.TEXLIVE + RELOC/doc/fonts/gfsdidot/Readme.txt + RELOC/doc/fonts/gfsdidot/didotb7a.vpl + RELOC/doc/fonts/gfsdidot/didotbi7a.vpl + RELOC/doc/fonts/gfsdidot/didotbo7a.vpl + RELOC/doc/fonts/gfsdidot/didoti7a.vpl + RELOC/doc/fonts/gfsdidot/didoto7a.vpl + RELOC/doc/fonts/gfsdidot/didotrg7a.vpl + RELOC/doc/fonts/gfsdidot/didotsc7a.vpl + RELOC/doc/fonts/gfsdidot/didotscb7a.vpl + RELOC/doc/fonts/gfsdidot/didotscbo7a.vpl + RELOC/doc/fonts/gfsdidot/didotsco7a.vpl + RELOC/doc/fonts/gfsdidot/didotui7a.vpl + RELOC/doc/fonts/gfsdidot/gdidotb6a.vpl + RELOC/doc/fonts/gfsdidot/gdidotbi6a.vpl + RELOC/doc/fonts/gfsdidot/gdidoti6a.vpl + RELOC/doc/fonts/gfsdidot/gdidotrg6a.vpl + RELOC/doc/fonts/gfsdidot/gdidotsc6a.vpl + RELOC/doc/fonts/gfsdidot/gdidotsco6a.vpl + RELOC/doc/fonts/gfsdidot/gfsudidotmath8a.vpl + RELOC/doc/fonts/gfsdidot/golgai6a.vpl + RELOC/doc/fonts/gfsdidot/golgaui6a.vpl + RELOC/doc/fonts/gfsdidot/installDidot.pl + RELOC/doc/fonts/gfsdidot/showDidotFontsLaTeX.tex + RELOC/doc/fonts/gfsdidot/ts1-gfsdidot_model.vpl + RELOC/doc/fonts/gfsdidot/ts1-gfsdidot_model_1.vpl + RELOC/doc/fonts/gfsdidot/ts1-gfsdidotb.vpl + RELOC/doc/fonts/gfsdidot/ts1-gfsdidotbi.vpl + RELOC/doc/fonts/gfsdidot/ts1-gfsdidotbo.vpl + RELOC/doc/fonts/gfsdidot/ts1-gfsdidoto.vpl + RELOC/doc/fonts/gfsdidot/ts1-gfsdidotr.vpl + RELOC/doc/fonts/gfsdidot/ts1-gfsdidotui.vpl +runfiles size=660 RELOC/fonts/afm/public/gfsdidot/GFSDidot-Bold.afm RELOC/fonts/afm/public/gfsdidot/GFSDidot-BoldItalic.afm RELOC/fonts/afm/public/gfsdidot/GFSDidot-Italic.afm RELOC/fonts/afm/public/gfsdidot/GFSDidot.afm RELOC/fonts/afm/public/gfsdidot/GFSOlga.afm RELOC/fonts/enc/dvips/gfsdidot/didot.enc + RELOC/fonts/enc/dvips/gfsdidot/didotOT1.enc + RELOC/fonts/enc/dvips/gfsdidot/didotOT1it.enc + RELOC/fonts/enc/dvips/gfsdidot/didotOT1sc.enc + RELOC/fonts/enc/dvips/gfsdidot/didotTS1.enc RELOC/fonts/enc/dvips/gfsdidot/didotdenomnums.enc RELOC/fonts/enc/dvips/gfsdidot/didotec.enc RELOC/fonts/enc/dvips/gfsdidot/didotnumnums.enc @@ -71060,44 +116316,66 @@ runfiles size=585 RELOC/fonts/opentype/public/gfsdidot/GFSDidotBoldItalic.otf RELOC/fonts/opentype/public/gfsdidot/GFSDidotItalic.otf RELOC/fonts/opentype/public/gfsdidot/GFSOlga.otf + RELOC/fonts/tfm/public/gfsdidot/didotb7a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotb7r.tfm RELOC/fonts/tfm/public/gfsdidot/didotb8a.tfm RELOC/fonts/tfm/public/gfsdidot/didotb8r.tfm RELOC/fonts/tfm/public/gfsdidot/didotb9a.tfm RELOC/fonts/tfm/public/gfsdidot/didotb9r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotbi7a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotbi7r.tfm RELOC/fonts/tfm/public/gfsdidot/didotbi8a.tfm RELOC/fonts/tfm/public/gfsdidot/didotbi8r.tfm RELOC/fonts/tfm/public/gfsdidot/didotbi9a.tfm RELOC/fonts/tfm/public/gfsdidot/didotbi9r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotbo7a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotbo7r.tfm RELOC/fonts/tfm/public/gfsdidot/didotbo8a.tfm RELOC/fonts/tfm/public/gfsdidot/didotbo8r.tfm RELOC/fonts/tfm/public/gfsdidot/didotbo9a.tfm RELOC/fonts/tfm/public/gfsdidot/didotbo9r.tfm RELOC/fonts/tfm/public/gfsdidot/didotdenomnums8a.tfm RELOC/fonts/tfm/public/gfsdidot/didotdenomnums8r.tfm + RELOC/fonts/tfm/public/gfsdidot/didoti7a.tfm + RELOC/fonts/tfm/public/gfsdidot/didoti7r.tfm RELOC/fonts/tfm/public/gfsdidot/didoti8a.tfm RELOC/fonts/tfm/public/gfsdidot/didoti8r.tfm RELOC/fonts/tfm/public/gfsdidot/didoti9a.tfm RELOC/fonts/tfm/public/gfsdidot/didoti9r.tfm RELOC/fonts/tfm/public/gfsdidot/didotnumnums8a.tfm RELOC/fonts/tfm/public/gfsdidot/didotnumnums8r.tfm + RELOC/fonts/tfm/public/gfsdidot/didoto7a.tfm + RELOC/fonts/tfm/public/gfsdidot/didoto7r.tfm RELOC/fonts/tfm/public/gfsdidot/didoto8a.tfm RELOC/fonts/tfm/public/gfsdidot/didoto8r.tfm RELOC/fonts/tfm/public/gfsdidot/didoto9a.tfm RELOC/fonts/tfm/public/gfsdidot/didoto9r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotrg7a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotrg7r.tfm RELOC/fonts/tfm/public/gfsdidot/didotrg8a.tfm RELOC/fonts/tfm/public/gfsdidot/didotrg8r.tfm RELOC/fonts/tfm/public/gfsdidot/didotrg9a.tfm RELOC/fonts/tfm/public/gfsdidot/didotrg9r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotsc7a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotsc7r.tfm RELOC/fonts/tfm/public/gfsdidot/didotsc8a.tfm RELOC/fonts/tfm/public/gfsdidot/didotsc8r.tfm RELOC/fonts/tfm/public/gfsdidot/didotsc9a.tfm RELOC/fonts/tfm/public/gfsdidot/didotsc9r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotscb7a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotscb7r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotscbo7a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotscbo7r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotsco7a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotsco7r.tfm RELOC/fonts/tfm/public/gfsdidot/didotsco8a.tfm RELOC/fonts/tfm/public/gfsdidot/didotsco8r.tfm RELOC/fonts/tfm/public/gfsdidot/didotsco9a.tfm RELOC/fonts/tfm/public/gfsdidot/didotsco9r.tfm RELOC/fonts/tfm/public/gfsdidot/didottabnums8a.tfm RELOC/fonts/tfm/public/gfsdidot/didottabnums8r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotui7a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotui7r.tfm RELOC/fonts/tfm/public/gfsdidot/didotui8a.tfm RELOC/fonts/tfm/public/gfsdidot/didotui8r.tfm RELOC/fonts/tfm/public/gfsdidot/didotui9a.tfm @@ -71120,30 +116398,55 @@ runfiles size=585 RELOC/fonts/tfm/public/gfsdidot/golgai6r.tfm RELOC/fonts/tfm/public/gfsdidot/golgaui6a.tfm RELOC/fonts/tfm/public/gfsdidot/golgaui6r.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidotb-raw.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidotb.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidotbi-raw.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidotbi.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidotbo-raw.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidotbo.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidoto-raw.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidoto.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidotr-raw.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidotr.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidotri-raw.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidotri.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidotui-raw.tfm + RELOC/fonts/tfm/public/gfsdidot/ts1-gfsdidotui.tfm RELOC/fonts/type1/public/gfsdidot/GFSDidot-Bold.pfb RELOC/fonts/type1/public/gfsdidot/GFSDidot-BoldItalic.pfb RELOC/fonts/type1/public/gfsdidot/GFSDidot-Italic.pfb RELOC/fonts/type1/public/gfsdidot/GFSDidot.pfb RELOC/fonts/type1/public/gfsdidot/GFSOlga.pfb + RELOC/fonts/vf/public/gfsdidot/didotb7a.vf RELOC/fonts/vf/public/gfsdidot/didotb8a.vf RELOC/fonts/vf/public/gfsdidot/didotb9a.vf + RELOC/fonts/vf/public/gfsdidot/didotbi7a.vf RELOC/fonts/vf/public/gfsdidot/didotbi8a.vf RELOC/fonts/vf/public/gfsdidot/didotbi9a.vf + RELOC/fonts/vf/public/gfsdidot/didotbo7a.vf RELOC/fonts/vf/public/gfsdidot/didotbo8a.vf RELOC/fonts/vf/public/gfsdidot/didotbo9a.vf RELOC/fonts/vf/public/gfsdidot/didotdenomnums8a.vf + RELOC/fonts/vf/public/gfsdidot/didoti7a.vf RELOC/fonts/vf/public/gfsdidot/didoti8a.vf RELOC/fonts/vf/public/gfsdidot/didoti9a.vf RELOC/fonts/vf/public/gfsdidot/didotnumnums8a.vf + RELOC/fonts/vf/public/gfsdidot/didoto7a.vf RELOC/fonts/vf/public/gfsdidot/didoto8a.vf RELOC/fonts/vf/public/gfsdidot/didoto9a.vf + RELOC/fonts/vf/public/gfsdidot/didotrg7a.vf RELOC/fonts/vf/public/gfsdidot/didotrg8a.vf RELOC/fonts/vf/public/gfsdidot/didotrg9a.vf + RELOC/fonts/vf/public/gfsdidot/didotsc7a.vf RELOC/fonts/vf/public/gfsdidot/didotsc8a.vf RELOC/fonts/vf/public/gfsdidot/didotsc9a.vf + RELOC/fonts/vf/public/gfsdidot/didotscb7a.vf + RELOC/fonts/vf/public/gfsdidot/didotscbo7a.vf + RELOC/fonts/vf/public/gfsdidot/didotsco7a.vf RELOC/fonts/vf/public/gfsdidot/didotsco8a.vf RELOC/fonts/vf/public/gfsdidot/didotsco9a.vf RELOC/fonts/vf/public/gfsdidot/didottabnums8a.vf + RELOC/fonts/vf/public/gfsdidot/didotui7a.vf RELOC/fonts/vf/public/gfsdidot/didotui8a.vf RELOC/fonts/vf/public/gfsdidot/didotui9a.vf RELOC/fonts/vf/public/gfsdidot/gdidotb6a.vf @@ -71155,25 +116458,31 @@ runfiles size=585 RELOC/fonts/vf/public/gfsdidot/gfsudidotmath8a.vf RELOC/fonts/vf/public/gfsdidot/golgai6a.vf RELOC/fonts/vf/public/gfsdidot/golgaui6a.vf + RELOC/fonts/vf/public/gfsdidot/ts1-gfsdidotb.vf + RELOC/fonts/vf/public/gfsdidot/ts1-gfsdidotbi.vf + RELOC/fonts/vf/public/gfsdidot/ts1-gfsdidotbo.vf + RELOC/fonts/vf/public/gfsdidot/ts1-gfsdidoto.vf + RELOC/fonts/vf/public/gfsdidot/ts1-gfsdidotr.vf + RELOC/fonts/vf/public/gfsdidot/ts1-gfsdidotri.vf + RELOC/fonts/vf/public/gfsdidot/ts1-gfsdidotui.vf RELOC/tex/latex/gfsdidot/gfsdidot.sty RELOC/tex/latex/gfsdidot/lgrudidot.fd RELOC/tex/latex/gfsdidot/omludidot.fd RELOC/tex/latex/gfsdidot/ot1udidot.fd RELOC/tex/latex/gfsdidot/t1udidot.fd + RELOC/tex/latex/gfsdidot/testDidot.sty + RELOC/tex/latex/gfsdidot/ts1udidot.fd RELOC/tex/latex/gfsdidot/uudidotnums.fd -docfiles size=9 - RELOC/doc/fonts/gfsdidot/OFL-FAQ.txt - RELOC/doc/fonts/gfsdidot/OFL.txt - RELOC/doc/fonts/gfsdidot/README - RELOC/doc/fonts/gfsdidot/README.TEXLIVE +catalogue-contact-home http://myria.math.aegean.gr/labs/dt/ catalogue-ctan /fonts/greek/gfs/gfsdidot -catalogue-date 2014-05-02 15:05:35 +0200 +catalogue-date 2018-01-14 14:07:56 +0100 catalogue-license other-free +catalogue-topics font font-serif font-greek font-multilingual font-type1 font-otf font-t1enc name gfsneohellenic category Package revision 31979 -shortdesc A Greek font in the Neo-Hellenic style. +shortdesc A Greek font in the Neo-Hellenic style relocated 1 longdesc The NeoHellenic style evolved in academic circles in the 19th longdesc and 20th century; the present font follows a cut commissioned @@ -71183,6 +116492,16 @@ longdesc characters, and has been adjusted to work well with the longdesc cmbright fonts for mathematics support. LaTeX support of the longdesc fonts is provided, offering OT1, T1 and LGR encodings. execute addMap gfsneohellenic.map +containersize 977672 +containerchecksum c8ec8f9fba5d653e5497a9812c5978a21cdb5b59f6bb0f45441c761d2afeff1c055c48f1b07c4f56c6ba6a6adb2f99525d838fc7850c7c97bb3f3e0f67f50dbe +doccontainersize 10276 +doccontainerchecksum 581bd169fc4f6ed92453e2e8f50ee0efa4d3ea282b710c340d1f05f8ccd1e117721ef4b9e9fd6553912ca60d8ee63eccadeac710186cfae62a39842d31b5b766 +docfiles size=11 + RELOC/doc/fonts/gfsneohellenic/OFL-FAQ.txt + RELOC/doc/fonts/gfsneohellenic/OFL.txt + RELOC/doc/fonts/gfsneohellenic/README details="Readme" + RELOC/doc/fonts/gfsneohellenic/README.TEXLIVE + RELOC/doc/fonts/gfsneohellenic/VERSION runfiles size=445 RELOC/fonts/afm/public/gfsneohellenic/GFSNeohellenic-Bold.afm RELOC/fonts/afm/public/gfsneohellenic/GFSNeohellenic-BoldItalic.afm @@ -71297,20 +116616,48 @@ runfiles size=445 RELOC/tex/latex/gfsneohellenic/ot1neohellenic.fd RELOC/tex/latex/gfsneohellenic/t1neohellenic.fd RELOC/tex/latex/gfsneohellenic/uneohellenicnums.fd -docfiles size=11 - RELOC/doc/fonts/gfsneohellenic/OFL-FAQ.txt - RELOC/doc/fonts/gfsneohellenic/OFL.txt - RELOC/doc/fonts/gfsneohellenic/README - RELOC/doc/fonts/gfsneohellenic/README.TEXLIVE - RELOC/doc/fonts/gfsneohellenic/VERSION +catalogue-contact-home http://myria.math.aegean.gr/labs/dt/ catalogue-ctan /fonts/greek/gfs/gfsneohellenic -catalogue-date 2014-05-02 15:05:35 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license other-free +catalogue-topics font font-type1 font-otf font-greek + +name gfsneohellenicmath +category Package +revision 46869 +shortdesc A Greek math font in the Neo-Hellenic style +relocated 1 +longdesc The GFSNeohellenic font, a historic font first designed by +longdesc Victor Scholderer, and digitized by George Matthiopoulos of the +longdesc Greek Font Society (GFS), now has native support for +longdesc Mathematics. The project was commissioned to GFS by the +longdesc Department of Mathematics of the University of the Aegean, +longdesc Samos, Greece. The Math Table was constructed by the +longdesc Mathematics Professor A. Tsolomitis. A useful application is in +longdesc beamer documents since this is a Sans Math font. The +longdesc GFSNeohellenic fontfamily supports many languages (including +longdesc Greek), and it is distributed (both text and math) under the +longdesc OFL license. +containersize 308032 +containerchecksum 11816aed70ed5d89b65148b3872f77a788271c603ee4f9eda71d250347bf7f2aa251b7c8e9dadaab75dde273a465a199adbcade3a957dcc79947d5d52297e7b7 +doccontainersize 114836 +doccontainerchecksum 2022e02ec438b19ce6e8fbf8f300ee050c2c7687408a4c4772751ef3059c882cd6944985a59ed9a5c1c8de1aec0ef2444c6f06c468cb4a8c8a3ea269b12b7ed1 +docfiles size=30 + RELOC/doc/fonts/gfsneohellenicmath/MathematicsCheatSheet.pdf details="Package documentation" + RELOC/doc/fonts/gfsneohellenicmath/README details="Readme" +runfiles size=166 + RELOC/fonts/opentype/public/gfsneohellenicmath/GFSNeohellenicMath.otf + RELOC/tex/latex/gfsneohellenicmath/gfsneohellenicot.sty +catalogue-ctan /fonts/gfsneohellenicmath +catalogue-date 2018-04-29 07:15:59 +0200 +catalogue-license ofl +catalogue-topics font font-type1 font-otf font-greek maths font-maths +catalogue-version 1.0 name gfsporson category Package revision 18651 -shortdesc A Greek font, originally from Porson. +shortdesc A Greek font, originally from Porson relocated 1 longdesc Porson is an elegant Greek font, originally cut at the turn of longdesc the 19th Century in England. The present version has been @@ -71318,6 +116665,16 @@ longdesc provided by the Greek Font Society. The font supports the Greek longdesc alphabet only. LaTeX support is provided, using the LGR longdesc encoding. execute addMap gfsporson.map +containersize 125520 +containerchecksum f52d6cd8d0b674771dd56a5d2974fd3edd8b4685bb201489e578c62d1e31b5dcb6f2cb2e9b05702ec439ec7f0b35740e291d3a92de53b75870fd791858f8a474 +doccontainersize 33264 +doccontainerchecksum 3dbcafd00a88537db9e27aece276df08da805b59076d5e65395a4752d8ce57a794f23508238e96ec26b8d7e6d25e11992c2a567e44ca2f930bc44b9dc980202c +docfiles size=17 + RELOC/doc/fonts/gfsporson/OFL-FAQ.txt + RELOC/doc/fonts/gfsporson/OFL.txt + RELOC/doc/fonts/gfsporson/README details="Readme" + RELOC/doc/fonts/gfsporson/gfsporson.pdf details="Package documentation" + RELOC/doc/fonts/gfsporson/gfsporson.tex runfiles size=47 RELOC/fonts/afm/public/gfsporson/GFSPorson-Regular.afm RELOC/fonts/enc/dvips/gfsporson/porsonel.enc @@ -71329,26 +116686,32 @@ runfiles size=47 RELOC/fonts/vf/public/gfsporson/gporsonrg6a.vf RELOC/tex/latex/gfsporson/gfsporson.sty RELOC/tex/latex/gfsporson/lgrporson.fd -docfiles size=17 - RELOC/doc/fonts/gfsporson/OFL-FAQ.txt - RELOC/doc/fonts/gfsporson/OFL.txt - RELOC/doc/fonts/gfsporson/README - RELOC/doc/fonts/gfsporson/gfsporson.pdf - RELOC/doc/fonts/gfsporson/gfsporson.tex +catalogue-contact-home http://myria.math.aegean.gr/labs/dt/ catalogue-ctan /fonts/greek/gfs/gfsporson -catalogue-date 2014-05-02 15:05:35 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license other-free +catalogue-topics font font-type1 font-otf font-greek catalogue-version 1.01 name gfssolomos category Package revision 18651 -shortdesc A Greek-alphabet font. +shortdesc A Greek-alphabet font relocated 1 longdesc Solomos is a font which traces its descent from a longdesc calligraphically-inspired font of the mid-19th century. LaTeX longdesc support, for use with the LGR encoding only, is provided. execute addMap gfssolomos.map +containersize 102812 +containerchecksum 6e6ac03cf7ee20accfb67855b3dce136e3caa2466fce760adef0a2c1633e0a170543cf861a6a07a0c80344ab026dc2f74a35c5543ea92a53f7ce8a1042f778b7 +doccontainersize 52744 +doccontainerchecksum 67640d1a95ad7ec43d7df407916cde264c5460cf400011cf0cdb3dc4caffabba370f2fc15ae945e20b6a9bb6623645f6ffe80034a781cdeb11c400bd23985e3b +docfiles size=24 + RELOC/doc/fonts/gfssolomos/OFL-FAQ.txt + RELOC/doc/fonts/gfssolomos/OFL.txt + RELOC/doc/fonts/gfssolomos/README details="Readme" + RELOC/doc/fonts/gfssolomos/gfssolomos.pdf details="Package documentation" + RELOC/doc/fonts/gfssolomos/gfssolomos.tex runfiles size=44 RELOC/fonts/afm/public/gfssolomos/GFSSolomos-Regular.afm RELOC/fonts/enc/dvips/gfssolomos/gpsolomos.enc @@ -71360,290 +116723,246 @@ runfiles size=44 RELOC/fonts/vf/public/gfssolomos/gsolomos8a.vf RELOC/tex/latex/gfssolomos/gfssolomos.sty RELOC/tex/latex/gfssolomos/lgrsolomos.fd -docfiles size=24 - RELOC/doc/fonts/gfssolomos/OFL-FAQ.txt - RELOC/doc/fonts/gfssolomos/OFL.txt - RELOC/doc/fonts/gfssolomos/README - RELOC/doc/fonts/gfssolomos/gfssolomos.pdf - RELOC/doc/fonts/gfssolomos/gfssolomos.tex +catalogue-contact-home http://myria.math.aegean.gr/labs/dt/ catalogue-ctan /fonts/greek/gfs/gfssolomos -catalogue-date 2014-05-02 15:05:35 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license ofl +catalogue-topics font font-type1 font-otf font-greek catalogue-version 1.0 name ghab category Package revision 29803 -shortdesc Typeset ghab boxes in LaTeX. +shortdesc Typeset ghab boxes in LaTeX relocated 1 longdesc The package defines a command \darghab that will typeset its longdesc argument in a box with a decorated frame. The width of the box longdesc may be set using an optional argument. +containersize 2184 +containerchecksum 7e919cbb0c84fe337dd05c749a3288990e750ff0aeaf119736108463a1684a18a66be94811a31156f951c871b2f073627914629756b06e747f3220d2ce08950f +doccontainersize 27156 +doccontainerchecksum 2cb7dbf5b43130b122618c50c18e513dc0ee0ce267cdfa6e710451d1fa7fce8965617d74d48748241321948ae8c5eb9cfa4945df146ed8e5d476d0fc5caaf204 +docfiles size=9 + RELOC/doc/latex/ghab/README details="Readme" + RELOC/doc/latex/ghab/ghab-doc.pdf details="Package documentation" + RELOC/doc/latex/ghab/ghab-doc.tex runfiles size=2 RELOC/fonts/source/public/ghab/ghab.mf RELOC/tex/latex/ghab/ghab.sty -docfiles size=9 - RELOC/doc/latex/ghab/README - RELOC/doc/latex/ghab/ghab-doc.pdf - RELOC/doc/latex/ghab/ghab-doc.tex +catalogue-contact-bugs https://github.com/bidi-tex/ghab/issues +catalogue-contact-repository https://github.com/bidi-tex/ghab catalogue-ctan /macros/latex/contrib/ghab -catalogue-date 2014-09-06 11:24:06 +0200 +catalogue-date 2018-11-28 19:38:14 +0100 catalogue-license lppl +catalogue-topics boxing decoration catalogue-version 0.5 name ghsystem category Package -revision 34925 -shortdesc Globally harmonised system of chemical (etc) naming. +revision 41714 +shortdesc Globally harmonised system of chemical (etc) naming relocated 1 longdesc The package provides the means to typeset all the hazard and longdesc precautionary statements and pictograms in a straightforward longdesc way. The statements are taken from EU regulation 1272/2008. -runfiles size=1608 +containersize 1834944 +containerchecksum 9ffe96017eb780d338df7fa8445c6210f1863e28c12bfbde6679db92b578ee9f63079d2f21e263995cdcaf293bf1373f37146a1a90b70827988a8b0d72e103a5 +doccontainersize 723932 +doccontainerchecksum 334586392493e06cd0759d0e07f1c8f78da361d0d3945477929197455a90b1256cf9af44d3ae0677af3893ad066b89ccd0bbcb1ae6987ba1753e3126f746b946 +docfiles size=198 + RELOC/doc/latex/ghsystem/README details="Readme" + RELOC/doc/latex/ghsystem/ghsystem_en.pdf details="Package documentation" + RELOC/doc/latex/ghsystem/ghsystem_en.tex +runfiles size=1491 RELOC/tex/latex/ghsystem/ghsystem.sty RELOC/tex/latex/ghsystem/language/ghsystem_english.def + RELOC/tex/latex/ghsystem/language/ghsystem_french.def RELOC/tex/latex/ghsystem/language/ghsystem_german.def - RELOC/tex/latex/ghsystem/language/ghsystem_italian-2-slash.def RELOC/tex/latex/ghsystem/language/ghsystem_italian.def - RELOC/tex/latex/ghsystem/language/ghsystem_italian.def.backup RELOC/tex/latex/ghsystem/language/ghsystem_langtemplate.def - RELOC/tex/latex/ghsystem/language/ghsystem_langtemplate.def.backup - RELOC/tex/latex/ghsystem/language/ghsystem_ngerman.def RELOC/tex/latex/ghsystem/language/ghsystem_spanish.def - RELOC/tex/latex/ghsystem/pictures/ghsystem_acid-8.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_acid-8.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_acid-8.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_acid-8.log RELOC/tex/latex/ghsystem/pictures/ghsystem_acid-8.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_acid-8.png RELOC/tex/latex/ghsystem/pictures/ghsystem_acid-8.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_acid.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_acid.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_acid.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_acid.log RELOC/tex/latex/ghsystem/pictures/ghsystem_acid.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_acid.png RELOC/tex/latex/ghsystem/pictures/ghsystem_acid.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_aqpol.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_aqpol.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_aqpol.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_aqpol.log RELOC/tex/latex/ghsystem/pictures/ghsystem_aqpol.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_aqpol.png RELOC/tex/latex/ghsystem/pictures/ghsystem_aqpol.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle-2-black.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle-2-black.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle-2-black.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle-2-black.log RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle-2-black.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle-2-black.png RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle-2-black.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle-2-white.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle-2-white.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle-2-white.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle-2-white.log RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle-2-white.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle-2-white.png RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle-2-white.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle.log RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle.png RELOC/tex/latex/ghsystem/pictures/ghsystem_bottle.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_exclam.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_exclam.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_exclam.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_exclam.log RELOC/tex/latex/ghsystem/pictures/ghsystem_exclam.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_exclam.png RELOC/tex/latex/ghsystem/pictures/ghsystem_exclam.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-1.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-1.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-1.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-1.log RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-1.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-1.png RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-1.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-2.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-2.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-2.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-2.log RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-2.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-2.png RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-2.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-3.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-3.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-3.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-3.log RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-3.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-3.png RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-3.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-4.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-4.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-4.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-4.log RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-4.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-4.png RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-4.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-5.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-5.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-5.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-5.log RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-5.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-5.png RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-5.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-6.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-6.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-6.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-6.log RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-6.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-6.png RELOC/tex/latex/ghsystem/pictures/ghsystem_explos-6.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_explos.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_explos.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_explos.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_explos.log RELOC/tex/latex/ghsystem/pictures/ghsystem_explos.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_explos.png RELOC/tex/latex/ghsystem/pictures/ghsystem_explos.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-2-black.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-2-black.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-2-black.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-2-black.log RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-2-black.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-2-black.png RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-2-black.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-2-white.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-2-white.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-2-white.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-2-white.log RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-2-white.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-2-white.png RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-2-white.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-3-black.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-3-black.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-3-black.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-3-black.log RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-3-black.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-3-black.png RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-3-black.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-3-white.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-3-white.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-3-white.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-3-white.log RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-3-white.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-3-white.png RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-3-white.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-1.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-1.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-1.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-1.log RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-1.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-1.png RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-1.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-2.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-2.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-2.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-2.log RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-2.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-2.png RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-2.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-3-black.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-3-black.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-3-black.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-3-black.log RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-3-black.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-3-black.png RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-3-black.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-3-white.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-3-white.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-3-white.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-3-white.log RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-3-white.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-3-white.png RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-4-3-white.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-5-2-black.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-5-2-black.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-5-2-black.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-5-2-black.log RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-5-2-black.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-5-2-black.png RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-5-2-black.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-5-2-white.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-5-2-white.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-5-2-white.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-5-2-white.log RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-5-2-white.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-5-2-white.png RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-5-2-white.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-O-5-1.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-O-5-1.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-O-5-1.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-O-5-1.log RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-O-5-1.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-O-5-1.png RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-O-5-1.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-O.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-O.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-O.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-O.log RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-O.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-O.png RELOC/tex/latex/ghsystem/pictures/ghsystem_flame-O.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_flame.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_flame.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_flame.log RELOC/tex/latex/ghsystem/pictures/ghsystem_flame.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_flame.png RELOC/tex/latex/ghsystem/pictures/ghsystem_flame.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_health.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_health.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_health.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_health.log RELOC/tex/latex/ghsystem/pictures/ghsystem_health.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_health.png RELOC/tex/latex/ghsystem/pictures/ghsystem_health.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_skull-2.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_skull-2.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_skull-2.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_skull-2.log RELOC/tex/latex/ghsystem/pictures/ghsystem_skull-2.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_skull-2.png RELOC/tex/latex/ghsystem/pictures/ghsystem_skull-2.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_skull-6.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_skull-6.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_skull-6.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_skull-6.log RELOC/tex/latex/ghsystem/pictures/ghsystem_skull-6.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_skull-6.png RELOC/tex/latex/ghsystem/pictures/ghsystem_skull-6.tex - RELOC/tex/latex/ghsystem/pictures/ghsystem_skull.aux RELOC/tex/latex/ghsystem/pictures/ghsystem_skull.eps RELOC/tex/latex/ghsystem/pictures/ghsystem_skull.jpg - RELOC/tex/latex/ghsystem/pictures/ghsystem_skull.log RELOC/tex/latex/ghsystem/pictures/ghsystem_skull.pdf RELOC/tex/latex/ghsystem/pictures/ghsystem_skull.png RELOC/tex/latex/ghsystem/pictures/ghsystem_skull.tex -docfiles size=199 - RELOC/doc/latex/ghsystem/README - RELOC/doc/latex/ghsystem/ghsystem_en.pdf - RELOC/doc/latex/ghsystem/ghsystem_en.tex +catalogue-contact-repository https://github.com/cgnieder/ghsystem/ catalogue-ctan /macros/latex/contrib/ghsystem -catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 -catalogue-version 4.6 +catalogue-topics chemistry expl3 +catalogue-version 4.8 name gillcm category Package revision 19878 -shortdesc Alternative unslanted italic Computer Modern fonts. +shortdesc Alternative unslanted italic Computer Modern fonts relocated 1 longdesc This is a demonstration of the use of virtual fonts for unusual longdesc effects: the package implements an old idea of Eric Gill. The longdesc package was written for the author's talk at TUG 2010. +containersize 13792 +containerchecksum 37c8141eac6b1636292479299f7df6b3dc128addf8f7ba680cef2c75d2f7ab04686134b243a86168c54052d4dcbc33f13c13a6629d7c98d3908e4cce5fb53f06 +doccontainersize 196160 +doccontainerchecksum 55e02d36c12bd12932c2d220f892852dd1c8c947cdea09d058ad38e5e513dfb684e75a8ecf07f5711200f942ea7732519c739866458c330ee271bf45af32ed45 +docfiles size=68 + RELOC/doc/latex/gillcm/README details="Readme" + RELOC/doc/latex/gillcm/gillcm.bib + RELOC/doc/latex/gillcm/gillcm.dtx + RELOC/doc/latex/gillcm/gillcm.ins + RELOC/doc/latex/gillcm/gillcm.pdf details="Package documentation" + RELOC/doc/latex/gillcm/sample.pdf details="Sample of the fonts" + RELOC/doc/latex/gillcm/sample.tex runfiles size=39 RELOC/fonts/map/dvips/gillcm/cmg.map RELOC/fonts/tfm/public/gillcm/cmgb8r.tfm @@ -71680,22 +116999,16 @@ runfiles size=39 RELOC/tex/latex/gillcm/ot1cmg.fd RELOC/tex/latex/gillcm/t1cmg.fd RELOC/tex/latex/gillcm/ts1cmg.fd -docfiles size=68 - RELOC/doc/latex/gillcm/README - RELOC/doc/latex/gillcm/gillcm.bib - RELOC/doc/latex/gillcm/gillcm.dtx - RELOC/doc/latex/gillcm/gillcm.ins - RELOC/doc/latex/gillcm/gillcm.pdf - RELOC/doc/latex/gillcm/sample.pdf - RELOC/doc/latex/gillcm/sample.tex -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-ctan /fonts/gillcm +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license bsd +catalogue-topics font-virtual catalogue-version 1.1 name gillius category Package revision 32068 -shortdesc Gillius fonts with LaTeX support. +shortdesc Gillius fonts with LaTeX support relocated 1 longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX longdesc support for the Gillius and Gillius No. 2 families of sans @@ -71703,6 +117016,18 @@ longdesc serif fonts and condensed versions of them, designed by Hirwen longdesc Harendal. According to the designer, the fonts were inspired by longdesc Gill Sans. execute addMap gillius.map +containersize 941896 +containerchecksum 9620e63fa3a9a981bdb20cbd6d8002179c722e844df0a18566593acef864f134a894a7e1920fbc4494467b1301af0bbf9ee80fb10bcc192762e5b2505fa8becd +doccontainersize 216008 +doccontainerchecksum df8fdeb2055b4d3383eb6ebab3dc4fb92774a96d7b31e7bdd7a238e215619710a8c0ec3fe9593213535933fd76c38947ed295df1a628aee7a7d7b21078f5ffb4 +docfiles size=66 + RELOC/doc/fonts/gillius/COPYING + RELOC/doc/fonts/gillius/Gillius-cat.pdf + RELOC/doc/fonts/gillius/README details="Readme" + RELOC/doc/fonts/gillius/gillius-samples.pdf details="Gillius font samples" + RELOC/doc/fonts/gillius/gillius-samples.tex + RELOC/doc/fonts/gillius/gillius2-samples.pdf details="Gillius font samples" + RELOC/doc/fonts/gillius/gillius2-samples.tex runfiles size=628 RELOC/fonts/enc/dvips/gillius/gls_4bsedw.enc RELOC/fonts/enc/dvips/gillius/gls_a6mi7n.enc @@ -72019,22 +117344,16 @@ runfiles size=628 RELOC/tex/latex/gillius/TS1GilliusADFNoTwoCond-LF.fd RELOC/tex/latex/gillius/gillius.sty RELOC/tex/latex/gillius/gillius2.sty -docfiles size=66 - RELOC/doc/fonts/gillius/COPYING - RELOC/doc/fonts/gillius/Gillius-cat.pdf - RELOC/doc/fonts/gillius/README - RELOC/doc/fonts/gillius/gillius-samples.pdf - RELOC/doc/fonts/gillius/gillius-samples.tex - RELOC/doc/fonts/gillius/gillius2-samples.pdf - RELOC/doc/fonts/gillius/gillius2-samples.tex +catalogue-contact-home http://arkandis.tuxfamily.org/adffonts.html catalogue-ctan /fonts/gillius -catalogue-date 2015-01-19 21:18:08 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license gpl2 +catalogue-topics font font-sans font-type1 font-otf name gincltex category Package revision 23835 -shortdesc Include TeX files as graphics (.tex support for \includegraphics). +shortdesc Include TeX files as graphics (.tex support for \includegraphics) relocated 1 longdesc The package builds on the standard LaTeX packages graphics longdesc and/or graphicx and allows external LaTeX source files to be @@ -72042,31 +117361,54 @@ longdesc included, in the same way as graphic files, by longdesc \includegraphics. In effect, then package adds support for the longdesc .tex extension. Some of the lower level operations like longdesc clipping and trimming are implemented using the adjustbox -longdesc package which includes native pdflatex support and uses the pgf +longdesc package which includes native pdfLaTeX support and uses the pgf longdesc pacakge for other output formats. -runfiles size=1 - RELOC/tex/latex/gincltex/gincltex.sty +containersize 1872 +containerchecksum c77fd5030e626027819396e94d07c1aebaf05a1ef6a02025a6a0f4140d22fa8d0a8695e440ab72eb0a042ef5f33430ef60a47706658134907725c49969841171 +doccontainersize 168440 +doccontainerchecksum 2f3a0ef1eb5d1b9f5a819e99354572f34b6fcb7daff3ae02f277d9280e202d1d4d1a54b9c033860da1ef3ff302229bf2d1aabbe1e6acff05589d3daa32f5c87d docfiles size=43 - RELOC/doc/latex/gincltex/README - RELOC/doc/latex/gincltex/gincltex.pdf + RELOC/doc/latex/gincltex/README details="Readme" + RELOC/doc/latex/gincltex/gincltex.pdf details="Package documentation" +srccontainersize 5132 +srccontainerchecksum ef3af40826e339dd7ed92d0f93e16029bff275a32e2c2cf64fbc1dd48a243e9a5efcb6cebc9bce237465c62a319386dfd94706238958381667195cf86face04f srcfiles size=5 RELOC/source/latex/gincltex/gincltex.dtx RELOC/source/latex/gincltex/gincltex.ins +runfiles size=1 + RELOC/tex/latex/gincltex/gincltex.sty catalogue-ctan /macros/latex/contrib/gincltex -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics graphics listing catalogue-version 0.3 name ginpenc category Package revision 24980 -shortdesc Modification of inputenc for German. +shortdesc Modification of inputenc for German relocated 1 longdesc If the inputenc is used and German umlauts are input directly, longdesc they are converted to the LICR representation \"a (etc.). This longdesc breaks the sort algorithm of makeindex, for instance. Ginpenc longdesc converts umlauts and the sharp-s to the short forms defined by longdesc babel, e.g., "a instead, if the text is typeset in German. +containersize 2212 +containerchecksum 20ea4e42fa07c21d8f2ae5d4419e6382141e6babca0b89b508744ea22d6310052f2c46e6ba0ad32b06f5623daee07a16eeaaa98378c9ad04dacb78634b9a583d +doccontainersize 200176 +doccontainerchecksum 4e343ab469e2445f6a2fd5297ae38d1cb42d4db1a3c438885815a2e4c5d367bfae3226a628e11152826fc5e4fd28a9c4bc5c393acea550c5ab33cd854d4f3e8e +docfiles size=54 + RELOC/doc/latex/ginpenc/ChangeLog + RELOC/doc/latex/ginpenc/Makefile + RELOC/doc/latex/ginpenc/README details="Readme" + RELOC/doc/latex/ginpenc/ginpenc.pdf details="Package documentation" + RELOC/doc/latex/ginpenc/news-message.txt + RELOC/doc/latex/ginpenc/testginpenc.tex +srccontainersize 3844 +srccontainerchecksum b28077cb4b369567952e77198cb77f4edad02f0949d4f46836ae59d75a2f113f64446fba83a88e6155e9356797577fea72c79244808d575359eb7ca10d029940 +srcfiles size=6 + RELOC/source/latex/ginpenc/ginpenc.dtx + RELOC/source/latex/ginpenc/ginpenc.ins runfiles size=18 RELOC/tex/latex/ginpenc/ansinew.gie RELOC/tex/latex/ginpenc/applemac.gie @@ -72086,53 +117428,56 @@ runfiles size=18 RELOC/tex/latex/ginpenc/latin5.gie RELOC/tex/latex/ginpenc/latin9.gie RELOC/tex/latex/ginpenc/next.gie -docfiles size=54 - RELOC/doc/latex/ginpenc/ChangeLog - RELOC/doc/latex/ginpenc/Makefile - RELOC/doc/latex/ginpenc/README - RELOC/doc/latex/ginpenc/ginpenc.pdf - RELOC/doc/latex/ginpenc/news-message.txt - RELOC/doc/latex/ginpenc/testginpenc.tex -srcfiles size=6 - RELOC/source/latex/ginpenc/ginpenc.dtx - RELOC/source/latex/ginpenc/ginpenc.ins catalogue-ctan /macros/latex/contrib/ginpenc -catalogue-date 2012-04-29 23:41:11 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics inputenc catalogue-version 1.0 -name gitinfo2 -category Package -revision 35310 -shortdesc Access metadata from the git distributed version control system. -relocated 1 -longdesc The package makes it possible to incorporate git version -longdesc control metadata into documents. For memoir users, the package -longdesc provides the means to tailor page headers and footers to use -longdesc the metadata. gitinfo2 is a new release of gitinfo. The changes -longdesc to version 2 are not backward-compatible, and the package name -longdesc has been changed to avoid impact on existing users' -longdesc repositories. All new repositories should use this version of -longdesc the package. -runfiles size=4 - RELOC/tex/latex/gitinfo2/gitexinfo.sty - RELOC/tex/latex/gitinfo2/gitinfo2.sty -docfiles size=43 - RELOC/doc/latex/gitinfo2/README - RELOC/doc/latex/gitinfo2/gitPseudoHeadInfo.gin - RELOC/doc/latex/gitinfo2/gitinfo2.pdf - RELOC/doc/latex/gitinfo2/gitinfo2.tex - RELOC/doc/latex/gitinfo2/gitinfotest.tex - RELOC/doc/latex/gitinfo2/post-xxx-sample.txt -catalogue-ctan /macros/latex/contrib/gitinfo2 -catalogue-date 2014-10-04 05:57:24 +0200 +name gitfile-info +category Package +revision 50885 +shortdesc Get git metadata for a specific file +relocated 1 +longdesc If you are using git to control versions of LaTeX-files, you +longdesc may want to show yourself or other users or devs the current +longdesc version of the file, information about the author and last +longdesc edited date. All packages for git known make that kind of +longdesc information available for the whole repository. But sometimes +longdesc you have a lot of files within the same repository in different +longdesc versions, from different authors etc. Perhaps you also split up +longdesc a big project in small files and want to show within the +longdesc document who had edited what. This package gives you the +longdesc opportunity to do so. +containersize 2684 +containerchecksum 88abbc4728d5429db5f86c4e7a60d53a29eff9dba4d3deed5badcfbb5afcc64a98a98bbb8f119b8378ae56c773f673add15848ddfa96e640e99471b18b2eb311 +doccontainersize 571356 +doccontainerchecksum 11291a76aa2250993ba68452be3471ff1516214265fb20dbcd22be818d56d176fc6015cc053033657c218bfca7658d3d15b803e8eea76b96d889a4c6aeed4fd7 +docfiles size=145 + RELOC/doc/support/gitfile-info/README details="Readme" + RELOC/doc/support/gitfile-info/gfi-run.py + RELOC/doc/support/gitfile-info/gitfile-info.gfi + RELOC/doc/support/gitfile-info/gitfile-info.pdf details="Package documentation" + RELOC/doc/support/gitfile-info/post-commit.py + RELOC/doc/support/gitfile-info/post-merge.py +srccontainersize 11344 +srccontainerchecksum c5527f917658139c7fa7cc98fc26d37a143504b09ef167612d50154d7b88ef3b5278bf1cec9831f88cf31ce515439ec591191ec82da02ef75a2b12fc01065cb9 +srcfiles size=11 + RELOC/source/support/gitfile-info/gitfile-info.dtx + RELOC/source/support/gitfile-info/gitfile-info.ins +runfiles size=2 + RELOC/tex/latex/gitfile-info/gitfile-info.sty +catalogue-also gitinfo2 +catalogue-ctan /support/gitfile-info +catalogue-date 2019-04-09 20:48:15 +0200 catalogue-license lppl1.3 -catalogue-version 2.0.4 +catalogue-topics version-control +catalogue-version 0.4 name gitinfo category Package revision 34049 -shortdesc Access metadata from the git distributed version control system. +shortdesc Access metadata from the git distributed version control system relocated 1 longdesc The package makes it possible to incorporate git version longdesc control metadata into documents. For memoir users, the package @@ -72140,276 +117485,205 @@ longdesc provides the means to tailor page headers and footers to use longdesc the metadata. Note this version is now deprecated, but is kept longdesc on the archive, pro tem, for continuity for existing users. All longdesc new repositories should use gitinfo2. -runfiles size=2 - RELOC/tex/latex/gitinfo/gitinfo.sty - RELOC/tex/latex/gitinfo/gitsetinfo.sty +containersize 1952 +containerchecksum 099bcb4970827cd3309f88278d8ed993856d5ebdabb22c3a3f558787bc6cae46378f7a92b88c5cbaeef496f40a8adf1e0740e685d667ba2376b5852a12af9e5b +doccontainersize 83948 +doccontainerchecksum c5a9c948ad8cf8f2bc3cc134d60165ca4fc79117a6597a5981b39e26e25f4334f479f2bc1a0e22c52fc48794224115c0c170612c8088a414544d9f51b18421f9 docfiles size=27 - RELOC/doc/latex/gitinfo/README + RELOC/doc/latex/gitinfo/README details="Readme" RELOC/doc/latex/gitinfo/gitHeadInfo.gin - RELOC/doc/latex/gitinfo/gitinfo.pdf + RELOC/doc/latex/gitinfo/gitinfo.pdf details="Package documentation" RELOC/doc/latex/gitinfo/gitinfo.tex RELOC/doc/latex/gitinfo/post-xxx-sample.txt +runfiles size=2 + RELOC/tex/latex/gitinfo/gitinfo.sty + RELOC/tex/latex/gitinfo/gitsetinfo.sty catalogue-ctan /macros/latex/contrib/gitinfo -catalogue-date 2014-05-25 19:22:40 +0200 -catalogue-license lppl1.3 -catalogue-version 1.0 - -name glossaries-danish -category Package -revision 35665 -shortdesc Danish language module for glossaries package -relocated 1 -longdesc Danish language module for glossaries package. -runfiles size=1 - RELOC/tex/latex/glossaries-danish/glossaries-danish.ldf -docfiles size=32 - RELOC/doc/latex/glossaries-danish/README - RELOC/doc/latex/glossaries-danish/glossaries-danish.pdf - RELOC/doc/latex/glossaries-danish/glossaries-dictionary-Danish.dict -srcfiles size=3 - RELOC/source/latex/glossaries-danish/glossaries-danish.dtx - RELOC/source/latex/glossaries-danish/glossaries-danish.ins -catalogue-ctan /macros/latex/contrib/glossaries-danish -catalogue-date 2014-11-28 14:34:56 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0 - -name glossaries-dutch -category Package -revision 35685 -shortdesc Dutch language module for glossaries package -relocated 1 -longdesc Dutch language module for glossariesr package. -runfiles size=1 - RELOC/tex/latex/glossaries-dutch/glossaries-dutch.ldf -docfiles size=40 - RELOC/doc/latex/glossaries-dutch/README - RELOC/doc/latex/glossaries-dutch/glossaries-dictionary-Dutch.dict - RELOC/doc/latex/glossaries-dutch/glossaries-dutch.pdf -srcfiles size=3 - RELOC/source/latex/glossaries-dutch/glossaries-dutch.dtx - RELOC/source/latex/glossaries-dutch/glossaries-dutch.ins -catalogue-ctan /macros/latex/contrib/glossaries-dutch -catalogue-date 2014-11-28 13:36:25 +0100 -catalogue-license lppl1.3 -catalogue-version 1.1 - -name glossaries-english -category Package -revision 35665 -shortdesc English language module for glossaries package -relocated 1 -longdesc English language module for glossariesr package. -runfiles size=1 - RELOC/tex/latex/glossaries-english/glossaries-english.ldf -docfiles size=32 - RELOC/doc/latex/glossaries-english/README - RELOC/doc/latex/glossaries-english/glossaries-dictionary-English.dict - RELOC/doc/latex/glossaries-english/glossaries-english.pdf -srcfiles size=3 - RELOC/source/latex/glossaries-english/glossaries-english.dtx - RELOC/source/latex/glossaries-english/glossaries-english.ins -catalogue-ctan /macros/latex/contrib/glossaries-english -catalogue-date 2014-11-28 18:56:31 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0 - -name glossaries-french -category Package -revision 35665 -shortdesc French language module for glossaries package -relocated 1 -longdesc French language module for glossaries package. -runfiles size=1 - RELOC/tex/latex/glossaries-french/glossaries-french.ldf -docfiles size=32 - RELOC/doc/latex/glossaries-french/README - RELOC/doc/latex/glossaries-french/glossaries-dictionary-French.dict - RELOC/doc/latex/glossaries-french/glossaries-french.pdf -srcfiles size=3 - RELOC/source/latex/glossaries-french/glossaries-french.dtx - RELOC/source/latex/glossaries-french/glossaries-french.ins -catalogue-ctan /macros/latex/contrib/glossaries-french -catalogue-date 2014-12-02 07:32:39 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics version-control doc-mgmt catalogue-version 1.0 -name glossaries-german +name gitinfo2 category Package -revision 35665 -shortdesc German language module for glossaries package +revision 38913 +shortdesc Access metadata from the git distributed version control system relocated 1 -longdesc German language module for glossariesr package. -runfiles size=1 - RELOC/tex/latex/glossaries-german/glossaries-german.ldf -docfiles size=32 - RELOC/doc/latex/glossaries-german/README - RELOC/doc/latex/glossaries-german/glossaries-dictionary-German.dict - RELOC/doc/latex/glossaries-german/glossaries-german.pdf -srcfiles size=3 - RELOC/source/latex/glossaries-german/glossaries-german.dtx - RELOC/source/latex/glossaries-german/glossaries-german.ins -catalogue-ctan /macros/latex/contrib/glossaries-german -catalogue-date 2014-11-28 19:04:04 +0100 +longdesc The package makes it possible to incorporate git version +longdesc control metadata into documents. For memoir users, the package +longdesc provides the means to tailor page headers and footers to use +longdesc the metadata. gitinfo2 is a new release of gitinfo. The changes +longdesc to version 2 are not backward-compatible, and the package name +longdesc has been changed to avoid impact on existing users' +longdesc repositories. All new repositories should use this version of +longdesc the package. +containersize 3592 +containerchecksum 7dd68c7b1d5ea49dcaae8ba1a1582676617bcfc6f5c6ba34eb1c62e60ea5b8ac3a50841a93394b640e8a79c3cfe447858fdd1630e4095683958f8d36439a84ca +doccontainersize 137796 +doccontainerchecksum 872b7fa8e0c97e4f6e0e1989b7c45507773b4f96cd56f7aa7064376b520d8f2beb4acfe71a21e295a8a457b86fcf7521809fa59ad02875466cf426fa09bd8aa9 +docfiles size=45 + RELOC/doc/latex/gitinfo2/README details="Readme" + RELOC/doc/latex/gitinfo2/gitHeadLocal.gin + RELOC/doc/latex/gitinfo2/gitinfo2.pdf details="Package documentation" + RELOC/doc/latex/gitinfo2/gitinfo2.tex + RELOC/doc/latex/gitinfo2/gitinfotest.tex + RELOC/doc/latex/gitinfo2/post-xxx-sample.txt +runfiles size=4 + RELOC/tex/latex/gitinfo2/gitexinfo.sty + RELOC/tex/latex/gitinfo2/gitinfo2.sty +catalogue-ctan /macros/latex/contrib/gitinfo2 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics version-control doc-mgmt +catalogue-version 2.0.7 -name glossaries-irish -category Package -revision 35665 -shortdesc Irish language module for glossaries package -relocated 1 -longdesc Irish language module for glossariesr package. +name gitlog +category Package +revision 38932 +shortdesc Typesetting git changelogs +relocated 1 +longdesc This package allows git change log history to be incorporated +longdesc into LaTeX documents; the log data is obtained from the git +longdesc distributed version control system. The current release +longdesc (0.0.beta) is a proof-of-concept release to allow users an +longdesc early evaluation and to attract ideas and support. Requests and +longdesc suggestions, as well as code contributions are welcome. +containersize 2372 +containerchecksum 2fc9830dd1c43cf0c32fd743c9fa001287f5753dea38d8491af43803a1d98a0e09cd05641484fd2f7c47e68c8c6919c2eb9fc298ebd761166eb5b77c54d7f00d +doccontainersize 99728 +doccontainerchecksum c1bc22cdf9b23baec98ddba49784a09c97e9e5f8c1a471dc39b3d58d67bb3ad2559f25766debeaf613b3c4e8d8bb4b22244de07d09e957ff09a94c0254fd3e64 +docfiles size=31 + RELOC/doc/latex/gitlog/README.md details="Readme" + RELOC/doc/latex/gitlog/gitHeadLocal.gin + RELOC/doc/latex/gitlog/gitlog.pdf details="Package documentation" + RELOC/doc/latex/gitlog/gitlog.sample.bib + RELOC/doc/latex/gitlog/gitlog.tex runfiles size=3 - RELOC/tex/latex/glossaries-irish/glossaries-irish-noenc.ldf - RELOC/tex/latex/glossaries-irish/glossaries-irish-utf8.ldf - RELOC/tex/latex/glossaries-irish/glossaries-irish.ldf -docfiles size=34 - RELOC/doc/latex/glossaries-irish/README - RELOC/doc/latex/glossaries-irish/glossaries-dictionary-Irish.dict - RELOC/doc/latex/glossaries-irish/glossaries-irish.pdf -srcfiles size=3 - RELOC/source/latex/glossaries-irish/glossaries-irish.dtx - RELOC/source/latex/glossaries-irish/glossaries-irish.ins -catalogue-ctan /macros/latex/contrib/glossaries-irish -catalogue-date 2014-11-28 19:06:36 +0100 + RELOC/tex/latex/gitlog/gitlog.bbx + RELOC/tex/latex/gitlog/gitlog.dbx + RELOC/tex/latex/gitlog/gitlog.sty +catalogue-contact-repository https://github.com/Hightor/gitlog/tree/develop +catalogue-ctan /macros/latex/contrib/gitlog +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 +catalogue-topics version-control doc-mgmt +catalogue-version 0.0.beta + +name gitver +category Package +revision 49980 +shortdesc Get the current git hash of a project and typeset it in the document +relocated 1 +longdesc This package will get a description of the current git version +longdesc of the document and store it in a command \gitVer. If memoir or +longdesc fancyhdr are in use, it will also add this to the document +longdesc footers unless the option "noheader" is passed. The package +longdesc also defines a command \versionBox which outputs a box +longdesc containing the version and date of compilation. +containersize 2248 +containerchecksum ccb08db2f49ab23e832e12dcec8b2754b4a1c916f2b0b5582723ef6080dd93a922111f6b5b514f1f53ca684e141c89f0e1d95d0b391adee857211f0e7bd243e9 +doccontainersize 132888 +doccontainerchecksum 92bc02edf0ba8a6877444b418cb15a9260fb5b26fd95bcc044665b306edcc1c5f5b12e36695cd02ad9260d7c996195e3beff69843ab7ef9a9272bafa2b1f2419 +docfiles size=41 + RELOC/doc/latex/gitver/COPYING + RELOC/doc/latex/gitver/ChangeLog + RELOC/doc/latex/gitver/README.md details="Readme" + RELOC/doc/latex/gitver/gitver.pdf details="Package documentation" + RELOC/doc/latex/gitver/gitver.tex +runfiles size=2 + RELOC/tex/latex/gitver/gitver.sty +catalogue-contact-bugs https://github.com/charlesbaynham/gitver/issues +catalogue-contact-repository https://github.com/charlesbaynham/gitver +catalogue-ctan /macros/latex/contrib/gitver +catalogue-date 2019-02-09 05:47:45 +0100 +catalogue-license lppl1.3c +catalogue-topics version-control doc-mgmt catalogue-version 1.0 -name glossaries-italian +name globalvals category Package -revision 35665 -shortdesc Italian language module for glossaries package +revision 49962 +shortdesc Declare global variables relocated 1 -longdesc Italian language module for glossaries package. +longdesc This package allows the user to declare a variable which can +longdesc then be used anywhere else in a document, including before it +longdesc was declared. +containersize 1384 +containerchecksum 815a1aff9e889313854962e44c1c09a41713f4efae915a1d1a65a3f0777a4c36e9987c588c0d6f2f1ea91cfed6c28ffbe045a842ad71fd6babc91ae1bb16aa5f +doccontainersize 156772 +doccontainerchecksum 36a8b35ad90d9fb797a03b48f8cf818c9514ffe6e7c24be157e04455559d3004ac6011e2dbd16a4c478105b39ec0d2597f74e484a1913bcb180a7209b9191fb3 +docfiles size=47 + RELOC/doc/latex/globalvals/COPYING + RELOC/doc/latex/globalvals/ChangeLog + RELOC/doc/latex/globalvals/README.md details="Readme" + RELOC/doc/latex/globalvals/globalvals.pdf details="Package documentation" + RELOC/doc/latex/globalvals/globalvals.tex runfiles size=1 - RELOC/tex/latex/glossaries-italian/glossaries-italian.ldf -docfiles size=32 - RELOC/doc/latex/glossaries-italian/README - RELOC/doc/latex/glossaries-italian/glossaries-dictionary-Italian.dict - RELOC/doc/latex/glossaries-italian/glossaries-italian.pdf -srcfiles size=3 - RELOC/source/latex/glossaries-italian/glossaries-italian.dtx - RELOC/source/latex/glossaries-italian/glossaries-italian.ins -catalogue-ctan /macros/latex/contrib/glossaries-italian -catalogue-date 2014-11-28 19:09:37 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0 - -name glossaries-magyar -category Package -revision 35665 -shortdesc Magyar language module for glossaries package -relocated 1 -longdesc Magyar language module for glossariesr package. -runfiles size=3 - RELOC/tex/latex/glossaries-magyar/glossaries-magyar-noenc.ldf - RELOC/tex/latex/glossaries-magyar/glossaries-magyar-utf8.ldf - RELOC/tex/latex/glossaries-magyar/glossaries-magyar.ldf -docfiles size=34 - RELOC/doc/latex/glossaries-magyar/README - RELOC/doc/latex/glossaries-magyar/glossaries-dictionary-Magyar.dict - RELOC/doc/latex/glossaries-magyar/glossaries-magyar.pdf -srcfiles size=3 - RELOC/source/latex/glossaries-magyar/glossaries-magyar.dtx - RELOC/source/latex/glossaries-magyar/glossaries-magyar.ins -catalogue-ctan /macros/latex/contrib/glossaries-magyar -catalogue-date 2014-12-02 11:18:30 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0 - -name glossaries-polish -category Package -revision 35665 -shortdesc Polish language module for glossaries package -relocated 1 -longdesc Polish language module for glossariesr package. -runfiles size=3 - RELOC/tex/latex/glossaries-polish/glossaries-polish-noenc.ldf - RELOC/tex/latex/glossaries-polish/glossaries-polish-utf8.ldf - RELOC/tex/latex/glossaries-polish/glossaries-polish.ldf -docfiles size=33 - RELOC/doc/latex/glossaries-polish/README - RELOC/doc/latex/glossaries-polish/glossaries-dictionary-Polish.dict - RELOC/doc/latex/glossaries-polish/glossaries-polish.pdf -srcfiles size=3 - RELOC/source/latex/glossaries-polish/glossaries-polish.dtx - RELOC/source/latex/glossaries-polish/glossaries-polish.ins -catalogue-ctan /macros/latex/contrib/glossaries-polish -catalogue-date 2014-12-02 11:18:30 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0 - -name glossaries-portuges -category Package -revision 36064 -shortdesc Portuges language module for glossaries package. -relocated 1 -longdesc Portuges language module for glossaries package. -runfiles size=4 - RELOC/tex/latex/glossaries-portuges/glossaries-portuges-noenc.ldf - RELOC/tex/latex/glossaries-portuges/glossaries-portuges-utf8.ldf - RELOC/tex/latex/glossaries-portuges/glossaries-portuges.ldf - RELOC/tex/latex/glossaries-portuges/glossaries-pt-BR.ldf -docfiles size=42 - RELOC/doc/latex/glossaries-portuges/README - RELOC/doc/latex/glossaries-portuges/glossaries-dictionary-Brazilian.dict - RELOC/doc/latex/glossaries-portuges/glossaries-portuges.pdf -srcfiles size=4 - RELOC/source/latex/glossaries-portuges/glossaries-portuges.dtx - RELOC/source/latex/glossaries-portuges/glossaries-portuges.ins -catalogue-ctan /macros/latex/contrib/glossaries-portuges -catalogue-date 2015-01-25 12:29:54 +0100 -catalogue-license lppl1.3 + RELOC/tex/latex/globalvals/globalvals.sty +catalogue-contact-bugs https://github.com/charlesbaynham/globalvals/issues +catalogue-contact-home https://github.com/charlesbaynham/globalvals +catalogue-ctan /macros/latex/contrib/globalvals +catalogue-date 2019-02-06 20:53:22 +0100 +catalogue-license lppl1.3c +catalogue-topics misc-support catalogue-version 1.1 -name glossaries-serbian +name gloss category Package -revision 35665 -shortdesc Serbian language module for glossaries package. +revision 15878 +shortdesc Create glossaries using BibTeX relocated 1 -longdesc Serbian language module for glossaries package. -runfiles size=3 - RELOC/tex/latex/glossaries-serbian/glossaries-serbian-noenc.ldf - RELOC/tex/latex/glossaries-serbian/glossaries-serbian-utf8.ldf - RELOC/tex/latex/glossaries-serbian/glossaries-serbian.ldf -docfiles size=34 - RELOC/doc/latex/glossaries-serbian/README - RELOC/doc/latex/glossaries-serbian/glossaries-dictionary-Serbian.dict - RELOC/doc/latex/glossaries-serbian/glossaries-serbian.pdf -srcfiles size=3 - RELOC/source/latex/glossaries-serbian/glossaries-serbian.dtx - RELOC/source/latex/glossaries-serbian/glossaries-serbian.ins -catalogue-ctan /macros/latex/contrib/glossaries-serbian -catalogue-date 2014-12-02 11:18:30 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0 +longdesc A glossary package using BibTeX with \cite replaced by \gloss. +containersize 5588 +containerchecksum 399bc1b809c01fd60934e28834dd7d6f263aded75bbede67507a5dc7bdbcdef725248b9a10d4ebf3cfaa981be33fd35a4ade78eb20b2b23cbf851376ad5e58f8 +doccontainersize 102720 +doccontainerchecksum 871760a86ffb9d50cd480e2cd234a9873de48ce620f57a6538b36b0c1fd5e7f11342fa435e147ee1fb47ed08b8e855eba8168c8b755ed67ed7fffcb8f0e0ac86 +docfiles size=38 + RELOC/doc/latex/gloss/README details="Package Readme" + RELOC/doc/latex/gloss/gloss.pdf details="Package documentation" + RELOC/doc/latex/gloss/gloss.tex + RELOC/doc/latex/gloss/sample.tex +runfiles size=9 + RELOC/bibtex/bib/gloss/glsbase.bib + RELOC/bibtex/bib/gloss/sample.bib + RELOC/bibtex/bst/gloss/glsplain.bst + RELOC/bibtex/bst/gloss/glsshort.bst + RELOC/tex/latex/gloss/gloss.sty +catalogue-also glossary glosstex nomencl +catalogue-ctan /macros/latex/contrib/gloss +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics glossary +catalogue-version 1.5.2 -name glossaries-spanish +name gloss-occitan category Package -revision 35665 -shortdesc Spanish language module for glossaries package. +revision 39609 +shortdesc Polyglossia support for Occitan relocated 1 -longdesc Spanish language module for glossaries package. -runfiles size=3 - RELOC/tex/latex/glossaries-spanish/glossaries-spanish-noenc.ldf - RELOC/tex/latex/glossaries-spanish/glossaries-spanish-utf8.ldf - RELOC/tex/latex/glossaries-spanish/glossaries-spanish.ldf -docfiles size=33 - RELOC/doc/latex/glossaries-spanish/README - RELOC/doc/latex/glossaries-spanish/glossaries-dictionary-Spanish.dict - RELOC/doc/latex/glossaries-spanish/glossaries-spanish.pdf -srcfiles size=3 - RELOC/source/latex/glossaries-spanish/glossaries-spanish.dtx - RELOC/source/latex/glossaries-spanish/glossaries-spanish.ins -catalogue-ctan /macros/latex/contrib/glossaries-spanish -catalogue-date 2014-12-02 11:18:30 +0100 +longdesc Occitan language description file for polyglossia +containersize 2008 +containerchecksum 699068d013af556efe5c02f5a2338f2440c0b8dd6bed61dfec94c9fea3f8b50926061db899e5408172414e48fbef98e79905df51463967ae173ee0dd7f361b85 +doccontainersize 69740 +doccontainerchecksum 68b577e22544b76caf10aae62282a2649e1d18d9019c0727d9eb14d5f0342b95f35e1a95c85bcaeea551808aedebb76a9d5031453269d5ead71a2df0fa45e228 +docfiles size=19 + RELOC/doc/latex/gloss-occitan/README details="Readme" + RELOC/doc/latex/gloss-occitan/gloss-occitan.pdf details="Package documentation" +srccontainersize 6340 +srccontainerchecksum a4d1936873891b2e04e6d9b476432090b7b3e31ccd07dcce7931b62a8044f691ae79df929dea87ab2f6b7bb89dc84e33054f56e51332d84fb97db9d787dadb0f +srcfiles size=5 + RELOC/source/latex/gloss-occitan/gloss-occitan.dtx +runfiles size=2 + RELOC/tex/latex/gloss-occitan/gloss-occitan.ldf +catalogue-ctan /macros/latex/contrib/gloss-occitan +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics multilingual-addon occitan +catalogue-version 0.1 name glossaries category Package -revision 38342 +revision 49618 shortdesc Create glossaries and lists of acronyms longdesc The glossaries package supports acronyms and multiple longdesc glossaries, and has provision for operation in several @@ -72425,58 +117699,27 @@ longdesc There is provision for loading a database of terms, but only longdesc terms used in the text will be added to the relevant glossary. longdesc The package uses an indexing program to provide the actual longdesc glossary; either makeindex or xindy may serve this purpose, and -longdesc a Perl script is provided to serve as interface. The package -longdesc distribution also provides the mfirstuc package, for changing -longdesc the first letter of a word to upper case. The package -longdesc supersedes the author's glossary package (which is now -longdesc obsolete), and a conversion tool is provided. +longdesc a Perl script is provided to serve as interface. This package +longdesc requires the mfirstuc package. The package supersedes the +longdesc author's glossary package (which is now obsolete). depend glossaries.ARCH -runfiles size=160 - texmf-dist/scripts/glossaries/glossaries.perl - texmf-dist/scripts/glossaries/makeglossaries - texmf-dist/scripts/glossaries/makeglossaries-lite.lua - texmf-dist/scripts/glossaries/makeglossaries.bat - texmf-dist/tex/latex/glossaries/base/glossaries-babel.sty - texmf-dist/tex/latex/glossaries/base/glossaries-compatible-207.sty - texmf-dist/tex/latex/glossaries/base/glossaries-compatible-307.sty - texmf-dist/tex/latex/glossaries/base/glossaries-polyglossia.sty - texmf-dist/tex/latex/glossaries/base/glossaries-prefix.sty - texmf-dist/tex/latex/glossaries/base/glossaries.sty - texmf-dist/tex/latex/glossaries/expl/glossaries-accsupp.sty - texmf-dist/tex/latex/glossaries/styles/glossary-hypernav.sty - texmf-dist/tex/latex/glossaries/styles/glossary-inline.sty - texmf-dist/tex/latex/glossaries/styles/glossary-list.sty - texmf-dist/tex/latex/glossaries/styles/glossary-long.sty - texmf-dist/tex/latex/glossaries/styles/glossary-longragged.sty - texmf-dist/tex/latex/glossaries/styles/glossary-mcols.sty - texmf-dist/tex/latex/glossaries/styles/glossary-super.sty - texmf-dist/tex/latex/glossaries/styles/glossary-superragged.sty - texmf-dist/tex/latex/glossaries/styles/glossary-tree.sty - texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-acronym-desc.tex - texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-acronym.tex - texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-acronyms-lang.tex - texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-brief.tex - texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-childnoname.tex - texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-cite.tex - texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-images.tex - texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-long.tex - texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-multipar.tex - texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-parent.tex - texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-symbols.tex - texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-url.tex -docfiles size=1862 +containersize 76664 +containerchecksum 06c91a244d1ff817358b23c60980c5810cb1a5f96ff2b5cba4c4d3268d55affdd77f6cb0ab2cdbfe4ca40384c09a7df4225d1adf4980c954836ce51dff67bfbf +doccontainersize 5384196 +doccontainerchecksum a259caa8c339a20ccc59f7490f82c24cdafd605972a61468dad248e2b8bf4c7270a3a9e0a6777c8e36bb5bda0df6e115474a86cce0bb7346a2b2f0abb16c3bfc +docfiles size=2117 texmf-dist/doc/latex/glossaries/CHANGES texmf-dist/doc/latex/glossaries/INSTALL - texmf-dist/doc/latex/glossaries/README - texmf-dist/doc/latex/glossaries/glossaries-code.pdf - texmf-dist/doc/latex/glossaries/glossaries-user.html - texmf-dist/doc/latex/glossaries/glossaries-user.pdf + texmf-dist/doc/latex/glossaries/README details="Readme" + texmf-dist/doc/latex/glossaries/glossaries-code.pdf details="Package code and documentation (PDF)" + texmf-dist/doc/latex/glossaries/glossaries-user.html details="User manual (HTML)" + texmf-dist/doc/latex/glossaries/glossaries-user.pdf details="User manual (PDF)" texmf-dist/doc/latex/glossaries/glossaries-user.tex texmf-dist/doc/latex/glossaries/glossariesbegin.html - texmf-dist/doc/latex/glossaries/glossariesbegin.pdf + texmf-dist/doc/latex/glossaries/glossariesbegin.pdf details="Beginners' guide (PDF)" texmf-dist/doc/latex/glossaries/glossariesbegin.tex - texmf-dist/doc/latex/glossaries/glossary2glossaries.html - texmf-dist/doc/latex/glossaries/glossary2glossaries.pdf + texmf-dist/doc/latex/glossaries/glossary2glossaries.html details="How to upgrade from glossary.sty (HTML)" + texmf-dist/doc/latex/glossaries/glossary2glossaries.pdf details="How to upgrade from glossary.sty (PDF)" texmf-dist/doc/latex/glossaries/glossary2glossaries.tex texmf-dist/doc/latex/glossaries/samples/README-samples texmf-dist/doc/latex/glossaries/samples/database1.tex @@ -72577,80 +117820,800 @@ docfiles size=1862 texmf-dist/doc/latex/glossaries/samples/samplexdy.tex texmf-dist/doc/latex/glossaries/samples/samplexdy2.pdf texmf-dist/doc/latex/glossaries/samples/samplexdy2.tex -srcfiles size=273 + texmf-dist/doc/latex/glossaries/samples/samplexdy3.pdf + texmf-dist/doc/latex/glossaries/samples/samplexdy3.tex + texmf-dist/doc/man/man1/makeglossaries-lite.1 + texmf-dist/doc/man/man1/makeglossaries-lite.man1.pdf + texmf-dist/doc/man/man1/makeglossaries.1 + texmf-dist/doc/man/man1/makeglossaries.man1.pdf +srccontainersize 145424 +srccontainerchecksum 56752f484ba5fcd30400b04bc76ab085ea57116b507e4ba6908254f42b71fe3829cd11c3417513af4021b9b3132f8809462763b439a1e790794da10684ede504 +srcfiles size=296 texmf-dist/source/latex/glossaries/glossaries.dtx texmf-dist/source/latex/glossaries/glossaries.ins + texmf-dist/source/latex/glossaries/makeglossaries-lite.pod +runfiles size=173 + texmf-dist/scripts/glossaries/glossaries.perl + texmf-dist/scripts/glossaries/makeglossaries + texmf-dist/scripts/glossaries/makeglossaries-lite.lua + texmf-dist/tex/latex/glossaries/base/glossaries-babel.sty + texmf-dist/tex/latex/glossaries/base/glossaries-compatible-207.sty + texmf-dist/tex/latex/glossaries/base/glossaries-compatible-307.sty + texmf-dist/tex/latex/glossaries/base/glossaries-polyglossia.sty + texmf-dist/tex/latex/glossaries/base/glossaries-prefix.sty + texmf-dist/tex/latex/glossaries/base/glossaries.sty + texmf-dist/tex/latex/glossaries/expl/glossaries-accsupp.sty + texmf-dist/tex/latex/glossaries/styles/glossary-hypernav.sty + texmf-dist/tex/latex/glossaries/styles/glossary-inline.sty + texmf-dist/tex/latex/glossaries/styles/glossary-list.sty + texmf-dist/tex/latex/glossaries/styles/glossary-long.sty + texmf-dist/tex/latex/glossaries/styles/glossary-longbooktabs.sty + texmf-dist/tex/latex/glossaries/styles/glossary-longragged.sty + texmf-dist/tex/latex/glossaries/styles/glossary-mcols.sty + texmf-dist/tex/latex/glossaries/styles/glossary-super.sty + texmf-dist/tex/latex/glossaries/styles/glossary-superragged.sty + texmf-dist/tex/latex/glossaries/styles/glossary-tree.sty + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-acronym-desc.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-acronym.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-acronyms-lang.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-brief.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-childnoname.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-cite.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-images.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-long.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-multipar.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-parent.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-symbolnames.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-symbols.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-url.tex +catalogue-contact-bugs http://www.dickimaw-books.com/cgi-bin/bugtracker.cgi?category=glossaries catalogue-ctan /macros/latex/contrib/glossaries -catalogue-date 2015-09-09 19:08:14 +0200 +catalogue-date 2019-01-06 21:00:39 +0100 +catalogue-license lppl1.3 +catalogue-topics glossary acronym +catalogue-version 4.42 + +name glossaries-danish +category Package +revision 35665 +shortdesc Danish language module for glossaries package +relocated 1 +longdesc Danish language module for glossaries package. +containersize 1668 +containerchecksum d9551aaa01e6f6720406a58f869048fbeac30fd629edd7fcdef657525dd1f7fb3faa2127cd81fb777d339ae65a1015e9cea7e5fe26a7de10db3a387152aaf0b3 +doccontainersize 123944 +doccontainerchecksum 8e6097ced6686f3f5f0162c7deb11de9acfd55ca152c8ba3d4eafe155f645f33ec32dc495e3b4f4832e33300cd63d2d4ba56d018177f96426ee72e14cc60e230 +docfiles size=32 + RELOC/doc/latex/glossaries-danish/README details="Readme" + RELOC/doc/latex/glossaries-danish/glossaries-danish.pdf details="Package documentation" + RELOC/doc/latex/glossaries-danish/glossaries-dictionary-Danish.dict +srccontainersize 2232 +srccontainerchecksum f8a52fad43c5a95989ed8da27ad5a15da56e5cb2b08797bd70879327a512d9bad44fd217270940ca1ac541a880bb939b9e360fe5a686b0b25d779baa1bd01de6 +srcfiles size=3 + RELOC/source/latex/glossaries-danish/glossaries-danish.dtx + RELOC/source/latex/glossaries-danish/glossaries-danish.ins +runfiles size=1 + RELOC/tex/latex/glossaries-danish/glossaries-danish.ldf +catalogue-ctan /macros/latex/contrib/glossaries-danish +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics glossary danish +catalogue-version 1.0 + +name glossaries-dutch +category Package +revision 35685 +shortdesc Dutch language module for glossaries package +relocated 1 +longdesc Dutch language module for glossariesr package. +containersize 1656 +containerchecksum 0e3d2607caa6032c8c768c1bd7c84808f6b836d6c167b1e0c720b57c3033c175269663f6e21edc248676bb2b73142c20c85cb6c3011586cf17d876e540a435dc +doccontainersize 155320 +doccontainerchecksum c2d6ce929bb9e7482413886967beb598b6cfb4a2f84d5a2e5edd7039b94e397ba9ad2e63954178d6fae91c5e3aeb080a68ed466b609ba0adddf98003f570cfd1 +docfiles size=40 + RELOC/doc/latex/glossaries-dutch/README details="Readme" + RELOC/doc/latex/glossaries-dutch/glossaries-dictionary-Dutch.dict + RELOC/doc/latex/glossaries-dutch/glossaries-dutch.pdf details="Package documentation" +srccontainersize 2364 +srccontainerchecksum 5088bafba48d95e4392a5891ba3566d37a708cc7ed002243995d67ad6f6cd1eed19f6a572e5e3234c8e4ce58e815b4cc79e97d2644bc5341911388f7b80030aa +srcfiles size=3 + RELOC/source/latex/glossaries-dutch/glossaries-dutch.dtx + RELOC/source/latex/glossaries-dutch/glossaries-dutch.ins +runfiles size=1 + RELOC/tex/latex/glossaries-dutch/glossaries-dutch.ldf +catalogue-also glossaries +catalogue-ctan /macros/latex/contrib/glossaries-dutch +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics glossary +catalogue-version 1.1 + +name glossaries-english +category Package +revision 35665 +shortdesc English language module for glossaries package +relocated 1 +longdesc English language module for glossariesr package. +containersize 1656 +containerchecksum f62c43c9cb5a10fe5e364e6aa4ca500aae8b89e71f6bc80831a8c8211ca640f3631f011735ee5c82278b188bf896360b69502da2128e1db1287d24e44805ef97 +doccontainersize 123584 +doccontainerchecksum 40c30888541114f5594403ddf251f0c209daa57c6b6f2d3d75b4a51416bf3011bea70cdc5f461e80a1e148181d6ecc2b2d7c891a7c75b1c577a72e5ee8ddc8e9 +docfiles size=32 + RELOC/doc/latex/glossaries-english/README details="Readme" + RELOC/doc/latex/glossaries-english/glossaries-dictionary-English.dict + RELOC/doc/latex/glossaries-english/glossaries-english.pdf details="Package documentation" +srccontainersize 2216 +srccontainerchecksum 4a1d9cbf515c52d8f8a787970bf5537f25d6de7a66c3a1819cc5dec05df0f004aaac3734dba6ef813473db0cd5b08db4ddebca8dbc8674c2582abc7e9e85524a +srcfiles size=3 + RELOC/source/latex/glossaries-english/glossaries-english.dtx + RELOC/source/latex/glossaries-english/glossaries-english.ins +runfiles size=1 + RELOC/tex/latex/glossaries-english/glossaries-english.ldf +catalogue-also glossaries +catalogue-ctan /macros/latex/contrib/glossaries-english +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics glossary +catalogue-version 1.0 + +name glossaries-estonian +category Package +revision 49928 +shortdesc Estonian language module for glossaries package +relocated 1 +longdesc This package provides the Estonian language module for the +longdesc glossaries package. +containersize 1960 +containerchecksum 48eac96868bbeb636bc8d4352cbc1959829daab75716b3dea2ef98d98e388a2668a2ea1e35cc46f53e9ee030aa07dcef3e528f056f59d49883f0a00380785bcc +doccontainersize 22288 +doccontainerchecksum 5f957f53acaf6b56e338b606843cfa2ddd16dccef6bd2c74844e514c157ddbc3c5c24168cbe28c67894afab8d115460fd497de91f0142bbec3d1987d5889925f +docfiles size=8 + RELOC/doc/latex/glossaries-estonian/README details="Readme" + RELOC/doc/latex/glossaries-estonian/glossaries-dictionary-Estonian.dict + RELOC/doc/latex/glossaries-estonian/glossaries-estonian.pdf details="Package documentation" +srccontainersize 2440 +srccontainerchecksum f2d2ddecc5a338f844a9b98d50e636d69d31866e723e3aa261ddc5ac2d8349d01e76afdf9cc6b7a4b4d96dadee78ea6933c0d1c69d1196f11770c92cef356fb2 +srcfiles size=3 + RELOC/source/latex/glossaries-estonian/glossaries-estonian.dtx + RELOC/source/latex/glossaries-estonian/glossaries-estonian.ins +runfiles size=3 + RELOC/tex/latex/glossaries-estonian/glossaries-estonian-ascii.ldf + RELOC/tex/latex/glossaries-estonian/glossaries-estonian-utf8.ldf + RELOC/tex/latex/glossaries-estonian/glossaries-estonian.ldf +catalogue-contact-bugs https://github.com/keeleleek/glossaries-estonian/issues +catalogue-contact-repository https://github.com/keeleleek/glossaries-estonian +catalogue-ctan /macros/latex/contrib/glossaries-estonian +catalogue-date 2019-02-05 05:26:48 +0100 +catalogue-license lppl1.3 +catalogue-topics glossary estonian +catalogue-version 1.0 + +name glossaries-extra +category Package +revision 51006 +shortdesc An extension to the glossaries package +relocated 1 +longdesc This package provides improvements and extra features to the +longdesc glossaries package. Some of the default glossaries.sty +longdesc behaviour is changed by glossaries-extra.sty. See the user +longdesc manual glossaries-extra-manual.pdf for further details. +longdesc glossaries-extra.sty requires the glossaries package and, +longdesc naturally, all packages required by glossaries.sty. +containersize 60780 +containerchecksum 419da7c981304d369dbb6dd342bc5315d84fe248793df725e454841b25ce2b5d2204e76e84539bc4bd71025115b9369944cfd8d879a02a5a63fb3cca11d0c977 +doccontainersize 4796600 +doccontainerchecksum e2244e01f9efc52e629a50491543ddf9b4f441be5afd9c185923a9eb23d9ba01208e90fa4a7c05e11072fd5f05246c30a4a48e9deaabb1207b05aedf38ba7fc2 +docfiles size=1812 + RELOC/doc/latex/glossaries-extra/CHANGES + RELOC/doc/latex/glossaries-extra/README details="Readme" + RELOC/doc/latex/glossaries-extra/glossaries-extra-code.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual.html + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual.pdf details="Package documentation" + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual.tex + RELOC/doc/latex/glossaries-extra/sample-abbr-styles.pdf + RELOC/doc/latex/glossaries-extra/sample-abbr-styles.tex + RELOC/doc/latex/glossaries-extra/sample-abbrv.pdf + RELOC/doc/latex/glossaries-extra/sample-abbrv.tex + RELOC/doc/latex/glossaries-extra/sample-accsupp.pdf + RELOC/doc/latex/glossaries-extra/sample-accsupp.tex + RELOC/doc/latex/glossaries-extra/sample-acronym-desc.pdf + RELOC/doc/latex/glossaries-extra/sample-acronym-desc.tex + RELOC/doc/latex/glossaries-extra/sample-acronym.pdf + RELOC/doc/latex/glossaries-extra/sample-acronym.tex + RELOC/doc/latex/glossaries-extra/sample-alias.pdf + RELOC/doc/latex/glossaries-extra/sample-alias.tex + RELOC/doc/latex/glossaries-extra/sample-altmodifier.pdf + RELOC/doc/latex/glossaries-extra/sample-altmodifier.tex + RELOC/doc/latex/glossaries-extra/sample-alttree-marginpar.pdf + RELOC/doc/latex/glossaries-extra/sample-alttree-marginpar.tex + RELOC/doc/latex/glossaries-extra/sample-alttree-sym.pdf + RELOC/doc/latex/glossaries-extra/sample-alttree-sym.tex + RELOC/doc/latex/glossaries-extra/sample-alttree.pdf + RELOC/doc/latex/glossaries-extra/sample-alttree.tex + RELOC/doc/latex/glossaries-extra/sample-autoindex-hyp.pdf + RELOC/doc/latex/glossaries-extra/sample-autoindex-hyp.tex + RELOC/doc/latex/glossaries-extra/sample-autoindex.pdf + RELOC/doc/latex/glossaries-extra/sample-autoindex.tex + RELOC/doc/latex/glossaries-extra/sample-crossref.pdf + RELOC/doc/latex/glossaries-extra/sample-crossref.tex + RELOC/doc/latex/glossaries-extra/sample-crossref2.pdf + RELOC/doc/latex/glossaries-extra/sample-crossref2.tex + RELOC/doc/latex/glossaries-extra/sample-docdef.pdf + RELOC/doc/latex/glossaries-extra/sample-docdef.tex + RELOC/doc/latex/glossaries-extra/sample-entrycount.pdf + RELOC/doc/latex/glossaries-extra/sample-entrycount.tex + RELOC/doc/latex/glossaries-extra/sample-external.pdf + RELOC/doc/latex/glossaries-extra/sample-external.tex + RELOC/doc/latex/glossaries-extra/sample-fmt.pdf + RELOC/doc/latex/glossaries-extra/sample-fmt.tex + RELOC/doc/latex/glossaries-extra/sample-footnote.pdf + RELOC/doc/latex/glossaries-extra/sample-footnote.tex + RELOC/doc/latex/glossaries-extra/sample-header.pdf + RELOC/doc/latex/glossaries-extra/sample-header.tex + RELOC/doc/latex/glossaries-extra/sample-indexhook.pdf + RELOC/doc/latex/glossaries-extra/sample-indexhook.tex + RELOC/doc/latex/glossaries-extra/sample-initialisms.pdf + RELOC/doc/latex/glossaries-extra/sample-initialisms.tex + RELOC/doc/latex/glossaries-extra/sample-linkcount.pdf + RELOC/doc/latex/glossaries-extra/sample-linkcount.tex + RELOC/doc/latex/glossaries-extra/sample-mixed-abbrv-styles.pdf + RELOC/doc/latex/glossaries-extra/sample-mixed-abbrv-styles.tex + RELOC/doc/latex/glossaries-extra/sample-mixedsort.pdf + RELOC/doc/latex/glossaries-extra/sample-mixedsort.tex + RELOC/doc/latex/glossaries-extra/sample-mixture.pdf + RELOC/doc/latex/glossaries-extra/sample-mixture.tex + RELOC/doc/latex/glossaries-extra/sample-name-font.pdf + RELOC/doc/latex/glossaries-extra/sample-name-font.tex + RELOC/doc/latex/glossaries-extra/sample-nested.pdf + RELOC/doc/latex/glossaries-extra/sample-nested.tex + RELOC/doc/latex/glossaries-extra/sample-noidx-restricteddocdefs.pdf + RELOC/doc/latex/glossaries-extra/sample-noidx-restricteddocdefs.tex + RELOC/doc/latex/glossaries-extra/sample-onelink.pdf + RELOC/doc/latex/glossaries-extra/sample-onelink.tex + RELOC/doc/latex/glossaries-extra/sample-onthefly-utf8.pdf + RELOC/doc/latex/glossaries-extra/sample-onthefly-utf8.tex + RELOC/doc/latex/glossaries-extra/sample-onthefly-xetex.pdf + RELOC/doc/latex/glossaries-extra/sample-onthefly-xetex.tex + RELOC/doc/latex/glossaries-extra/sample-onthefly.pdf + RELOC/doc/latex/glossaries-extra/sample-onthefly.tex + RELOC/doc/latex/glossaries-extra/sample-pages.pdf + RELOC/doc/latex/glossaries-extra/sample-pages.tex + RELOC/doc/latex/glossaries-extra/sample-postdot.pdf + RELOC/doc/latex/glossaries-extra/sample-postdot.tex + RELOC/doc/latex/glossaries-extra/sample-postlink.pdf + RELOC/doc/latex/glossaries-extra/sample-postlink.tex + RELOC/doc/latex/glossaries-extra/sample-prefix.pdf + RELOC/doc/latex/glossaries-extra/sample-prefix.tex + RELOC/doc/latex/glossaries-extra/sample-record-nameref.glstex + RELOC/doc/latex/glossaries-extra/sample-record-nameref.pdf + RELOC/doc/latex/glossaries-extra/sample-record-nameref.tex + RELOC/doc/latex/glossaries-extra/sample-record.glstex + RELOC/doc/latex/glossaries-extra/sample-record.pdf + RELOC/doc/latex/glossaries-extra/sample-record.tex + RELOC/doc/latex/glossaries-extra/sample-restricteddocdefs.pdf + RELOC/doc/latex/glossaries-extra/sample-restricteddocdefs.tex + RELOC/doc/latex/glossaries-extra/sample-suppl-hyp.pdf + RELOC/doc/latex/glossaries-extra/sample-suppl-hyp.tex + RELOC/doc/latex/glossaries-extra/sample-suppl-main-hyp.pdf + RELOC/doc/latex/glossaries-extra/sample-suppl-main-hyp.tex + RELOC/doc/latex/glossaries-extra/sample-suppl-main.pdf + RELOC/doc/latex/glossaries-extra/sample-suppl-main.tex + RELOC/doc/latex/glossaries-extra/sample-suppl.pdf + RELOC/doc/latex/glossaries-extra/sample-suppl.tex + RELOC/doc/latex/glossaries-extra/sample-trans.pdf + RELOC/doc/latex/glossaries-extra/sample-trans.tex + RELOC/doc/latex/glossaries-extra/sample-undef.pdf + RELOC/doc/latex/glossaries-extra/sample-undef.tex + RELOC/doc/latex/glossaries-extra/sample-unitentrycount.pdf + RELOC/doc/latex/glossaries-extra/sample-unitentrycount.tex + RELOC/doc/latex/glossaries-extra/sample.pdf + RELOC/doc/latex/glossaries-extra/sample.tex +srccontainersize 109396 +srccontainerchecksum a11ae8c79f40f47ed05081112f811242b5b5192e35124fdc6ce628c1a2c3cc73ae816f6ce43f9804c783072f9ffaef1f5a7bf9744b7439bb754cbd588b948729 +srcfiles size=247 + RELOC/source/latex/glossaries-extra/glossaries-extra.dtx + RELOC/source/latex/glossaries-extra/glossaries-extra.ins +runfiles size=155 + RELOC/bibtex/bib/glossaries-extra/example-glossaries-acronym-desc.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-acronym.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-acronyms-lang.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-brief.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-childnoname.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-cite.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-images.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-long.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-multipar.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-parent.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-symbolnames.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-symbols.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-url.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-xr.bib + RELOC/tex/latex/glossaries-extra/example-glossaries-xr.tex + RELOC/tex/latex/glossaries-extra/glossaries-extra-bib2gls.sty + RELOC/tex/latex/glossaries-extra/glossaries-extra-stylemods.sty + RELOC/tex/latex/glossaries-extra/glossaries-extra.sty + RELOC/tex/latex/glossaries-extra/glossary-bookindex.sty + RELOC/tex/latex/glossaries-extra/glossary-longextra.sty + RELOC/tex/latex/glossaries-extra/glossary-topic.sty +catalogue-also glossaries +catalogue-contact-bugs http://www.dickimaw-books.com/cgi-bin/bugtracker.cgi?category=glossaries-extra +catalogue-ctan /macros/latex/contrib/glossaries-extra +catalogue-date 2019-04-10 08:20:36 +0200 +catalogue-license lppl1.3 +catalogue-topics glossary acronym +catalogue-version 1.41 + +name glossaries-finnish +category Package +revision 45604 +shortdesc Finnish language module for glossaries package +relocated 1 +longdesc Finnish language module for glossariesr package. +containersize 1860 +containerchecksum f4008f165ed34678a9f9d1cc2fbf2f2dedfa66d31acb5449da6f93a8b19a7ea6b7a7a584ff7c744e92637cfa4a7c98a478b096be73a3abcbeadf7d2af00a607f +doccontainersize 139712 +doccontainerchecksum 46ffa9e86596919c6ee001bfd425fbe0c58e890e8af3131ad89b4e5ae8ce20c8f3266f2ffae6ce039908a137180c0552b9c9f2a729bb55094f999a0bdc3443a7 +docfiles size=36 + RELOC/doc/latex/glossaries-finnish/README details="Readme" + RELOC/doc/latex/glossaries-finnish/glossaries-dictionary-Finnish.dict + RELOC/doc/latex/glossaries-finnish/glossaries-finnish.pdf details="Package documentation" +srccontainersize 2376 +srccontainerchecksum e21f3dd39d6c5adaf829657c75badfb9bfe71f57331a89ba196e34a042a03f308206f2c3cdf7e1bf5dd82ac230c0aa5c48fe982e017ea7bebf2a40bb2e664511 +srcfiles size=3 + RELOC/source/latex/glossaries-finnish/glossaries-finnish.dtx + RELOC/source/latex/glossaries-finnish/glossaries-finnish.ins +runfiles size=3 + RELOC/tex/latex/glossaries-finnish/glossaries-finnish-ascii.ldf + RELOC/tex/latex/glossaries-finnish/glossaries-finnish-utf8.ldf + RELOC/tex/latex/glossaries-finnish/glossaries-finnish.ldf +catalogue-also glossaries +catalogue-ctan /macros/latex/contrib/glossaries-finnish +catalogue-date 2017-10-29 05:37:01 +0100 +catalogue-license lppl1.3 +catalogue-topics glossary +catalogue-version 1.0 + +name glossaries-french +category Package +revision 42873 +shortdesc French language module for glossaries package +relocated 1 +longdesc French language module for glossaries package. +containersize 1644 +containerchecksum 8516e94f69248238b0e94099b67c9807f02587e934e6fd2c9ef23befcfac783297cc4df71b8e41be77fdab85abcb4103435c3fd24584b46a3b473fc4489d5d82 +doccontainersize 194372 +doccontainerchecksum c26b40d499199c15c875cdca901a3168ab72e4009a04e92f3b1ae9010d7912484b1185453d117154eb5b9e63358b36cd58aeff3d0c4727945a343be4c3c2ede0 +docfiles size=51 + RELOC/doc/latex/glossaries-french/README details="Readme" + RELOC/doc/latex/glossaries-french/glossaries-dictionary-French.dict + RELOC/doc/latex/glossaries-french/glossaries-french.pdf details="Package documentation" +srccontainersize 2692 +srccontainerchecksum 9c6b0b1d851c88c757e87c8b29b2cfaa3886efb00433a9c3744e175fd4dfd4433de3b80b9d70df89f879536b1058ddb1baeae41c5cdfc6c47377256df8e63882 +srcfiles size=3 + RELOC/source/latex/glossaries-french/glossaries-french.dtx + RELOC/source/latex/glossaries-french/glossaries-french.ins +runfiles size=1 + RELOC/tex/latex/glossaries-french/glossaries-french.ldf +catalogue-also glossaries +catalogue-ctan /macros/latex/contrib/glossaries-french +catalogue-date 2017-01-04 23:59:43 +0100 +catalogue-license lppl1.3 +catalogue-topics glossary french +catalogue-version 1.1 + +name glossaries-german +category Package +revision 35665 +shortdesc German language module for glossaries package +relocated 1 +longdesc German language module for the glossaries package. +containersize 1668 +containerchecksum e0b8e18dbe4d4e503c144be2406b99b56ef0a48847b4044665ac178dffc59d2b8ea95873ee5f2e64fcfb8379a44ee8761ee84ae44fddf996d1029372d5185d58 +doccontainersize 124428 +doccontainerchecksum 0ad0d7d8f41e52613d049fe3ec6e48d5ceb77e768c7b9ee6b3b0978eeebe6abfc803df44bbb7f90b4e487de074a2cc174224ab0e89d5fe7bc896adff495abfc6 +docfiles size=32 + RELOC/doc/latex/glossaries-german/README details="Readme" + RELOC/doc/latex/glossaries-german/glossaries-dictionary-German.dict + RELOC/doc/latex/glossaries-german/glossaries-german.pdf details="Package documentation" +srccontainersize 2228 +srccontainerchecksum 7d34e603e6c667fad268f4d16edd7b066d3f6fb34739ae5e7620cfb2024fb6c7882862845055205d3a3c14f2c60bb3b304cbb1871958c17427107cc245e10bcd +srcfiles size=3 + RELOC/source/latex/glossaries-german/glossaries-german.dtx + RELOC/source/latex/glossaries-german/glossaries-german.ins +runfiles size=1 + RELOC/tex/latex/glossaries-german/glossaries-german.ldf +catalogue-also glossaries +catalogue-ctan /macros/latex/contrib/glossaries-german +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics glossary +catalogue-version 1.0 + +name glossaries-irish +category Package +revision 35665 +shortdesc Irish language module for glossaries package +relocated 1 +longdesc Irish language module for glossariesr package. +containersize 1880 +containerchecksum b59add658270f734a8fcb70bae29ac210c84472f0f7ded62baa647bdbdbcba2e63dab71aca6f8c524eae9e3d80bfa7bf96bef45bef7039c3eeff738055a93acf +doccontainersize 128536 +doccontainerchecksum 9ce14ee4ca3ac1eed10f8c356fd6561f7ac43abcde46009a6d43245395985f045e9ecb83a38a190ea3a5cabf462a233967993bcaa40211cd7e64791dc2a583a5 +docfiles size=34 + RELOC/doc/latex/glossaries-irish/README details="Readme" + RELOC/doc/latex/glossaries-irish/glossaries-dictionary-Irish.dict + RELOC/doc/latex/glossaries-irish/glossaries-irish.pdf details="Package documentation" +srccontainersize 2612 +srccontainerchecksum cdc7332678be3abc86804b9b674aab88f087791c8418e6273cc07f2c2b4bc8316ad21a3421af9ca2f87f76a3ce42a6fc5e7343e006120dcbe1c7cb14901d7ff9 +srcfiles size=3 + RELOC/source/latex/glossaries-irish/glossaries-irish.dtx + RELOC/source/latex/glossaries-irish/glossaries-irish.ins +runfiles size=3 + RELOC/tex/latex/glossaries-irish/glossaries-irish-noenc.ldf + RELOC/tex/latex/glossaries-irish/glossaries-irish-utf8.ldf + RELOC/tex/latex/glossaries-irish/glossaries-irish.ldf +catalogue-also glossaries +catalogue-ctan /macros/latex/contrib/glossaries-irish +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics glossary irish-gaelic +catalogue-version 1.0 + +name glossaries-italian +category Package +revision 35665 +shortdesc Italian language module for glossaries package +relocated 1 +longdesc Italian language module for glossaries package. +containersize 1680 +containerchecksum aeeeb9fcd98e55ed64c918276e0bf0b25489538da80f96030a85225635e7e0ca3d1c93c65aba8b97b486f086a50504c257ba478bdba28de92058053dcafe323b +doccontainersize 123924 +doccontainerchecksum f1ee5a84c9a67b88087f657c259a3700fcd1fa4ad8c765cfae11cde2d54c4a71e69dc57bf626ead0d2cf1057750e284a31443c72e994e37a62715548fa9dbadd +docfiles size=32 + RELOC/doc/latex/glossaries-italian/README details="Readme" + RELOC/doc/latex/glossaries-italian/glossaries-dictionary-Italian.dict + RELOC/doc/latex/glossaries-italian/glossaries-italian.pdf details="Package documentation" +srccontainersize 2248 +srccontainerchecksum 9a014922abb8be849e97660f2aabff49413a56c06a93f5a3fb0cb89f972b54fc371bff8dfd6a758196d941efbc9281c5cab3fcf047901ab08e296d55e529206a +srcfiles size=3 + RELOC/source/latex/glossaries-italian/glossaries-italian.dtx + RELOC/source/latex/glossaries-italian/glossaries-italian.ins +runfiles size=1 + RELOC/tex/latex/glossaries-italian/glossaries-italian.ldf +catalogue-also glossaries +catalogue-ctan /macros/latex/contrib/glossaries-italian +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics glossary italian +catalogue-version 1.0 + +name glossaries-magyar +category Package +revision 35665 +shortdesc Magyar language module for glossaries package +relocated 1 +longdesc Magyar language module for glossariesr package. +containersize 1940 +containerchecksum 66847635e1f00af9191cef210c19ed154dc1e5405ef0d2ad38485a913626ab9cd93b7c35395feedefcc04bfd1b46112e6410154c2ff26be51553619326d1e55e +doccontainersize 130892 +doccontainerchecksum a6bc19bf794943b1b15c8cbece363f644671f912bb71d8b2f0a9e75d05886ae4af4846c78cd060099bb78872e4d7991a9a3274fd1343a07bf73c3ba1d475241a +docfiles size=34 + RELOC/doc/latex/glossaries-magyar/README details="Readme" + RELOC/doc/latex/glossaries-magyar/glossaries-dictionary-Magyar.dict + RELOC/doc/latex/glossaries-magyar/glossaries-magyar.pdf details="Package documentation" +srccontainersize 2560 +srccontainerchecksum e0e90ed2fb01df98b20a7807a0dc1155b108c35788ea952f753ee9033d2c7e516086c6380b8617411392198c5469b57b96aa35f8903e44ce44d30f5758acb75f +srcfiles size=3 + RELOC/source/latex/glossaries-magyar/glossaries-magyar.dtx + RELOC/source/latex/glossaries-magyar/glossaries-magyar.ins +runfiles size=3 + RELOC/tex/latex/glossaries-magyar/glossaries-magyar-noenc.ldf + RELOC/tex/latex/glossaries-magyar/glossaries-magyar-utf8.ldf + RELOC/tex/latex/glossaries-magyar/glossaries-magyar.ldf +catalogue-also glossaries +catalogue-ctan /macros/latex/contrib/glossaries-magyar +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics glossary +catalogue-version 1.0 + +name glossaries-polish +category Package +revision 35665 +shortdesc Polish language module for glossaries package +relocated 1 +longdesc Polish language module for the glossaries package. +containersize 1868 +containerchecksum 7ad5a924f24acb052c16436f1d1eb198bf10c65ed3f77fb8911cc8b390cf286581a6d7ed409211993545d597a4dee4318e1d9b820dca6f831ca215986ec4a1cc +doccontainersize 128100 +doccontainerchecksum cad7bbadda3e690ce56c75d2dfc92b02576226cb31d848b0c96d6115d18d222a50e514a6c6b5db9907d6a0e542824e229b063a0cec49dd726246f3dc5d4b41ed +docfiles size=33 + RELOC/doc/latex/glossaries-polish/README details="Readme" + RELOC/doc/latex/glossaries-polish/glossaries-dictionary-Polish.dict + RELOC/doc/latex/glossaries-polish/glossaries-polish.pdf details="Package documentation" +srccontainersize 2484 +srccontainerchecksum 5f7ba658feb54089405ed6a2fbab3a279143205438a9dbf6ba0a49d38245799cfac6369c48f9ea1e5eac2125cf475e26a3b31dd3745f283a21f3ed07aa8e64be +srcfiles size=3 + RELOC/source/latex/glossaries-polish/glossaries-polish.dtx + RELOC/source/latex/glossaries-polish/glossaries-polish.ins +runfiles size=3 + RELOC/tex/latex/glossaries-polish/glossaries-polish-noenc.ldf + RELOC/tex/latex/glossaries-polish/glossaries-polish-utf8.ldf + RELOC/tex/latex/glossaries-polish/glossaries-polish.ldf +catalogue-also glossaries +catalogue-ctan /macros/latex/contrib/glossaries-polish +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics glossary +catalogue-version 1.0 + +name glossaries-portuges +category Package +revision 36064 +shortdesc Portuges language module for glossaries package +relocated 1 +longdesc Portuges language module for glossaries package. +containersize 2044 +containerchecksum 64582081553f90a5000992f9db3f79aae7ddfedc6f128ddc09ec7878576b0e17a580f7c58515c2696e2c46ce1ba49c2cd756687c144d0134d91cb6c5e0506ec0 +doccontainersize 164932 +doccontainerchecksum 5f1692f14e2e4a596555cc426a556d069fcf710775d9a039f0143eddbafd0502e4f4a10e677a43589b1f91cddedba6dc9358b6015801e68f1b3d1e908e57dc09 +docfiles size=42 + RELOC/doc/latex/glossaries-portuges/README details="Readme" + RELOC/doc/latex/glossaries-portuges/glossaries-dictionary-Brazilian.dict + RELOC/doc/latex/glossaries-portuges/glossaries-portuges.pdf details="Package documentation" +srccontainersize 2848 +srccontainerchecksum a7cb8046b8ce5d122f691170804acbcd39b5ae367cf66057d12fb24d58f142e2a4cf52a1039de9cd73a0f8c0bf851f07367c180eedb12923ab3398189de29652 +srcfiles size=4 + RELOC/source/latex/glossaries-portuges/glossaries-portuges.dtx + RELOC/source/latex/glossaries-portuges/glossaries-portuges.ins +runfiles size=4 + RELOC/tex/latex/glossaries-portuges/glossaries-portuges-noenc.ldf + RELOC/tex/latex/glossaries-portuges/glossaries-portuges-utf8.ldf + RELOC/tex/latex/glossaries-portuges/glossaries-portuges.ldf + RELOC/tex/latex/glossaries-portuges/glossaries-pt-BR.ldf +catalogue-ctan /macros/latex/contrib/glossaries-portuges +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics glossary +catalogue-version 1.1 + +name glossaries-serbian +category Package +revision 35665 +shortdesc Serbian language module for glossaries package +relocated 1 +longdesc Serbian language module for glossaries package. +containersize 1868 +containerchecksum 7360d33c1d3912802be171ecf8c218fad45719ee6dfa0596904484ebf9dcebcc0d926112e40fca76a196ec6081fafc4524c81b366008fd20207f8150dd82be29 +doccontainersize 128784 +doccontainerchecksum 1ce493838bdc59521728b6856d2cc2df26f44f3bcfcfc04d32fc20d3e416639b1420e1451acad8b8bb0597336a77b553ac599ec0c541527ab4d8e56765f07f3f +docfiles size=34 + RELOC/doc/latex/glossaries-serbian/README details="Readme" + RELOC/doc/latex/glossaries-serbian/glossaries-dictionary-Serbian.dict + RELOC/doc/latex/glossaries-serbian/glossaries-serbian.pdf details="Package documentation" +srccontainersize 2512 +srccontainerchecksum 9097fda313f9cd3e0db095c27fa534269e2460c6b5efa3e6681471590591b0931c52f28374ee33404ae0491297d1047dac8b7ce7a525a46b01873210b6242515 +srcfiles size=3 + RELOC/source/latex/glossaries-serbian/glossaries-serbian.dtx + RELOC/source/latex/glossaries-serbian/glossaries-serbian.ins +runfiles size=3 + RELOC/tex/latex/glossaries-serbian/glossaries-serbian-noenc.ldf + RELOC/tex/latex/glossaries-serbian/glossaries-serbian-utf8.ldf + RELOC/tex/latex/glossaries-serbian/glossaries-serbian.ldf +catalogue-ctan /macros/latex/contrib/glossaries-serbian +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics glossary +catalogue-version 1.0 + +name glossaries-spanish +category Package +revision 35665 +shortdesc Spanish language module for glossaries package +relocated 1 +longdesc Spanish language module for glossaries package. +containersize 1896 +containerchecksum 6c92de5e24135a9c47d200f8f0c0ce7dff8a01f8c13bfb49d4090d1c195052559f75763c0ed68d633b40cf18bc89bc51e7b6c2aacdec05376a3c2e1d1b7a31b2 +doccontainersize 128220 +doccontainerchecksum 5fc58f64a7f54b50dcfd632e700805bab2f46a92b727853b147d9f7156b2fddd50a8fac08d0ac59bf5f89e0ecf1d5ddf7c22482e661f8a5e7b5568832168bd5c +docfiles size=33 + RELOC/doc/latex/glossaries-spanish/README details="Readme" + RELOC/doc/latex/glossaries-spanish/glossaries-dictionary-Spanish.dict + RELOC/doc/latex/glossaries-spanish/glossaries-spanish.pdf details="Package documentation" +srccontainersize 2520 +srccontainerchecksum 8bccb84eec75980107ed08b9f7e1ef0a595f7eb0c270ccbff77f4ea176fb5e17292b7d34d081ffdaa7d7be82fe40f71bbc30a65904892400536c51ea777475df +srcfiles size=3 + RELOC/source/latex/glossaries-spanish/glossaries-spanish.dtx + RELOC/source/latex/glossaries-spanish/glossaries-spanish.ins +runfiles size=3 + RELOC/tex/latex/glossaries-spanish/glossaries-spanish-noenc.ldf + RELOC/tex/latex/glossaries-spanish/glossaries-spanish-utf8.ldf + RELOC/tex/latex/glossaries-spanish/glossaries-spanish.ldf +catalogue-ctan /macros/latex/contrib/glossaries-spanish +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 catalogue-topics glossary -catalogue-version 4.18 +catalogue-version 1.0 + +name glossaries.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of glossaries +containersize 372 +containerchecksum 5d101f780893ef6e7bc388cd38cce41238071e1a5dbc5dfc885597554d4ca7cb9c517b46a74f4a3c65772a25ab69fbaf4521e8e7dc5d847ff649187251351969 +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/makeglossaries + bin/aarch64-linux/makeglossaries-lite + +name glossaries.amd64-freebsd +category Package +revision 37813 +shortdesc amd64-freebsd files of glossaries +containersize 372 +containerchecksum 660227636f580a7e25a4e39ffc44ef8c36ae42d1c347f6087b14fbd02375d6b648d917b3a03dceb9af1847390a890bfcc21a7d9d4ed75202e72bddffe2907b98 +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/makeglossaries + bin/amd64-freebsd/makeglossaries-lite + +name glossaries.amd64-netbsd +category Package +revision 37813 +shortdesc amd64-netbsd files of glossaries +containersize 372 +containerchecksum 889b39f1fa87c9aae10c0b4101e05fa0e71508c563e08b5aa49946af2690b52c239543883454b301ad06917d9df115ff05b801abce616fd69f84955d7e884f23 +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/makeglossaries + bin/amd64-netbsd/makeglossaries-lite + +name glossaries.armhf-linux +category Package +revision 37813 +shortdesc armhf-linux files of glossaries +containersize 372 +containerchecksum 01985b4614c6a70897ad9992d910645d8013cfda8269bee838f3caa5598fb9280d809ec1ece81d89843b6d915dc315502889a9afa506da85ad2be5d0e18c9411 +binfiles arch=armhf-linux size=2 + bin/armhf-linux/makeglossaries + bin/armhf-linux/makeglossaries-lite + +name glossaries.i386-cygwin +category Package +revision 37813 +shortdesc i386-cygwin files of glossaries +containersize 368 +containerchecksum 6b005fa80bb08f2ef387615cd58549888810598fff226c0f78e0a6e2fa43ef3242989e38e8ae9aa719ad5c2c7e93b8e8689a3b5a491b7b71bab419a8dd5bab7b +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/makeglossaries + bin/i386-cygwin/makeglossaries-lite + +name glossaries.i386-freebsd +category Package +revision 37813 +shortdesc i386-freebsd files of glossaries +containersize 372 +containerchecksum fc827873493aa33f98ef7da3fc21830ebdf022b2d556eb66e4b3c2fdd055ec84efbb8b132ffd8e0bb048a381a6dda0d0bdd5e31fa11f188fde2eafef2b195cb0 +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/makeglossaries + bin/i386-freebsd/makeglossaries-lite name glossaries.i386-linux category Package revision 37813 shortdesc i386-linux files of glossaries +containersize 372 +containerchecksum 1171559510e7e05b60e36d6d24495dd2492f17b3b3692e32b6a5200dbab6f38167f5ab9e7b201a2b218662d47d5abafff29a825624b05ed291b9b3bbd5c4e535 binfiles arch=i386-linux size=2 bin/i386-linux/makeglossaries bin/i386-linux/makeglossaries-lite -name gloss +name glossaries.i386-netbsd category Package -revision 15878 -shortdesc Create glossaries using BibTeX. -relocated 1 -longdesc A glossary package using BibTeX with \cite replaced by \gloss. -runfiles size=9 - RELOC/bibtex/bib/gloss/glsbase.bib - RELOC/bibtex/bib/gloss/sample.bib - RELOC/bibtex/bst/gloss/glsplain.bst - RELOC/bibtex/bst/gloss/glsshort.bst - RELOC/tex/latex/gloss/gloss.sty -docfiles size=38 - RELOC/doc/latex/gloss/README - RELOC/doc/latex/gloss/gloss.pdf - RELOC/doc/latex/gloss/gloss.tex - RELOC/doc/latex/gloss/sample.tex -catalogue-ctan /macros/latex/contrib/gloss -catalogue-date 2012-04-29 23:41:11 +0200 -catalogue-license lppl -catalogue-version 1.5.2 +revision 37813 +shortdesc i386-netbsd files of glossaries +containersize 368 +containerchecksum ec9dd02da48a38d5f30b6600ec2a55a53c3d3b1900b6cde60d068c65e6062ff9a0fda07432bf00ff1b813a19c8a32ecbddbbaeaf6bc38c7ce26b78763ee7ce6c +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/makeglossaries + bin/i386-netbsd/makeglossaries-lite + +name glossaries.i386-solaris +category Package +revision 37813 +shortdesc i386-solaris files of glossaries +containersize 372 +containerchecksum 0d3a2943c4c63055f59268e6f9853e2d9df2e295ece44998ba090f94b15de1e448ab858ef3c335ed00fc598745f94ab549c6c61e044b0a1283c06a7887bb0358 +binfiles arch=i386-solaris size=2 + bin/i386-solaris/makeglossaries + bin/i386-solaris/makeglossaries-lite + +name glossaries.win32 +category Package +revision 37813 +shortdesc win32 files of glossaries +containersize 720 +containerchecksum 4ef1f297ff4ec0f5a737f87ebc24263dc175d0fbac94fc4dfa1cc6f34bb893886b2802f6d35f2a6ae09b7b55674d1ac6d7e4477d46646b88bf5439a2ae748525 +binfiles arch=win32 size=2 + bin/win32/makeglossaries-lite.exe + bin/win32/makeglossaries.exe + +name glossaries.x86_64-cygwin +category Package +revision 37813 +shortdesc x86_64-cygwin files of glossaries +containersize 372 +containerchecksum 1895880c493e89328abc7a72fee3890e51128de41a93dee01032ff183ad8029a1a13f45c4902a383ba94b39caf59bb1e23817a0b848d282f3d4228f2554d75bd +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/makeglossaries + bin/x86_64-cygwin/makeglossaries-lite + +name glossaries.x86_64-darwin +category Package +revision 37813 +shortdesc x86_64-darwin files of glossaries +containersize 376 +containerchecksum 436ca2875efafdb1864d46c79a0ac1243b17a7476f18e581c91fa8b6d47dd3a090909f3f433d5fe330f769b12840e00bcb03a2c0d9aeb1d51a5d718279027e98 +binfiles arch=x86_64-darwin size=2 + bin/x86_64-darwin/makeglossaries + bin/x86_64-darwin/makeglossaries-lite + +name glossaries.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of glossaries +containersize 376 +containerchecksum fe66db6136515b898e8acb8418a0c476bd073b0d0500a5291318e9500583caabaa38b9de54e7b1565c59d6149890fedd2693ad355b13df2d480375de8e1795cc +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/makeglossaries + bin/x86_64-darwinlegacy/makeglossaries-lite + +name glossaries.x86_64-linux +category Package +revision 37813 +shortdesc x86_64-linux files of glossaries +containersize 368 +containerchecksum e7aae352f3ccb5acb679932b2df221381084808fdc583050efd3ad8527bccc356ca2b11ba88945524f71a42f547a536fa4e1c273a0f28ea2f0e6c1c84e8bb17c +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/makeglossaries + bin/x86_64-linux/makeglossaries-lite + +name glossaries.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of glossaries +containersize 376 +containerchecksum 1e78b3a49d46339bd35ff7d4a008ff302d5981f9acff24387642d0cb35c0c5b0f9f2beebf0ea417ce0266d9b41e79a41515052833a4c109a2d033d8506a38b4c +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/makeglossaries + bin/x86_64-linuxmusl/makeglossaries-lite + +name glossaries.x86_64-solaris +category Package +revision 37813 +shortdesc x86_64-solaris files of glossaries +containersize 372 +containerchecksum ffb70ae7b46bf65345670998118832c3b5d6570358202dedd0dc989e88c43050b70ea46a6ad2d851955782a4510a8afd9cb06b4d5a170dbcb48e097b7739759c +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/makeglossaries + bin/x86_64-solaris/makeglossaries-lite name glyphlist category Package -revision 28576 +revision 45696 +shortdesc Adobe Glyph List and TeX extensions relocated 1 -runfiles size=25 +longdesc Map between traditional Adobe glyph names and Unicode points, +longdesc maintained by Adobe. The additional texglyphlist.txt is +longdesc maintained as part of lcdf-typetools. +containersize 24760 +containerchecksum d4b606f0aafd19d642be4e18c6ae4a6fc2051f0359bd5f15cec2b398b097e204bb9fdfd0b0925f3b697658c671e598e7b2711a85d0ae13d21af1d00040cd2354 +runfiles size=24 RELOC/fonts/map/glyphlist/glyphlist.txt RELOC/fonts/map/glyphlist/pdfglyphlist.txt RELOC/fonts/map/glyphlist/texglyphlist.txt -name gmdoc-enhance -category Package -revision 15878 -shortdesc Some enhancements to the gmdoc package. -relocated 1 -longdesc This package provides some enhancements for the gmdoc package: -longdesc nicer formatting for multiple line inline comments, an ability -longdesc to "comment out" some code, and a macro to input other files in -longdesc "normal" LaTeX mode. -runfiles size=3 - RELOC/tex/latex/gmdoc-enhance/gmdoc-enhance.sty -docfiles size=59 - RELOC/doc/latex/gmdoc-enhance/README - RELOC/doc/latex/gmdoc-enhance/gmdoc-enhance.pdf -srcfiles size=8 - RELOC/source/latex/gmdoc-enhance/gmdoc-enhance.dtx - RELOC/source/latex/gmdoc-enhance/gmdoc-enhance.ins -catalogue-ctan /macros/latex/contrib/gmdoc-enhance -catalogue-date 2012-02-24 11:32:36 +0100 -catalogue-license lppl -catalogue-version v0.2 - name gmdoc category Package revision 21292 -shortdesc Documentation of LaTeX packages. +shortdesc Documentation of LaTeX packages relocated 1 longdesc A LaTeX package and an example class for documenting (La)TeX longdesc packages, document classes, .dtx etc., providing hyperlinks. @@ -72662,68 +118625,117 @@ longdesc \DeclareOption etc.). The package needs hyperref and the longdesc author's three 'basic' packages: gmutils, gmverb and gmiflink. longdesc As a bonus (and as an example of doc compatibility) driver longdesc files are provided that may be used to typeset the LaTeX Base. +containersize 46364 +containerchecksum cfe29d7bd5e7936c2a40292fe2518dcd79dbc105f08d3f0dfa11ebdc4693ff207a1b312e6160fad4c089bbe5012697bef1122a893b1d42d59fc39fa5c48d2ccf +doccontainersize 918216 +doccontainerchecksum 68825a5fe89383d68b2829bc7e2fe230d717104a2ec56010bc7e67fcb14f9191bf47594cd0387b490debb5e752670048404a7985ab0b5dc039f4764d7926192e +docfiles size=748 + RELOC/doc/latex/gmdoc/README details="README" + RELOC/doc/latex/gmdoc/basedrivers/doc_gmdoc.tex + RELOC/doc/latex/gmdoc/basedrivers/docstrip_gmdoc.tex + RELOC/doc/latex/gmdoc/basedrivers/source2e_gmdoc.tex + RELOC/doc/latex/gmdoc/gmdoc.pdf details="Package documentation" runfiles size=42 RELOC/makeindex/gmdoc/gmglo.ist RELOC/tex/latex/gmdoc/gmdoc.sty RELOC/tex/latex/gmdoc/gmdocc.cls RELOC/tex/latex/gmdoc/gmoldcomm.sty -docfiles size=748 - RELOC/doc/latex/gmdoc/README - RELOC/doc/latex/gmdoc/basedrivers/doc_gmdoc.tex - RELOC/doc/latex/gmdoc/basedrivers/docstrip_gmdoc.tex - RELOC/doc/latex/gmdoc/basedrivers/source2e_gmdoc.tex - RELOC/doc/latex/gmdoc/gmdoc.pdf +catalogue-also gmdoc-enhance catalogue-ctan /macros/latex/contrib/gmdoc -catalogue-date 2014-09-29 13:57:53 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics doc-supp class catalogue-version 0.993 +name gmdoc-enhance +category Package +revision 15878 +shortdesc Some enhancements to the gmdoc package +relocated 1 +longdesc This package provides some enhancements for the gmdoc package: +longdesc nicer formatting for multiple line inline comments, an ability +longdesc to "comment out" some code, and a macro to input other files in +longdesc "normal" LaTeX mode. +containersize 3608 +containerchecksum 481bed630ec444fda66a22656c2cdfcbd931a6743823c36f570ede09038ec4f219ecd1985243a4fc8d852f38512c6b369227f559d3874447144e0cd62d7949a7 +doccontainersize 123036 +doccontainerchecksum 0cbecac4ae6f70ed01a407a9e5fa388f2c142b7bf77d219429d6685bf7d7c6bb3f324694286e6fe49bc2eff287faba901b7eba44f8bde1894e8cb09527c289a8 +docfiles size=59 + RELOC/doc/latex/gmdoc-enhance/README details="Readme" + RELOC/doc/latex/gmdoc-enhance/gmdoc-enhance.pdf details="Package documentation" +srccontainersize 10320 +srccontainerchecksum 131afb02bafe204637f0cd1589db70584071d9f2480d2a11c03de4b0c14ed79500fe0e811a035a761ae4e6084d63a89e1dbcfd40edd24b4715db55d206f5206d +srcfiles size=8 + RELOC/source/latex/gmdoc-enhance/gmdoc-enhance.dtx + RELOC/source/latex/gmdoc-enhance/gmdoc-enhance.ins +runfiles size=3 + RELOC/tex/latex/gmdoc-enhance/gmdoc-enhance.sty +catalogue-also gmdoc +catalogue-ctan /macros/latex/contrib/gmdoc-enhance +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics doc-supp +catalogue-version 0.2 + name gmiflink category Package revision 15878 -shortdesc Simplify usage of \hypertarget and \hyperlink. +shortdesc Simplify usage of \hypertarget and \hyperlink relocated 1 longdesc Three hyperref-based macros that simplify usage of \hypertarget longdesc and \hyperlink: one argument instead of the same one twice. longdesc Also \gmiflink and \gmifref which typeset plain text instead of longdesc generating an error or printing '??' if there is no respective longdesc hypertarget or label. +containersize 3464 +containerchecksum 768353fee03e36d5f13e5ea8ca2cf0925fb5dc3c847680325a0961b78a3ed6c30859bc57de7b927cd9e782f85539c97183687755c31738e1da3cc27a08f52387 +doccontainersize 41656 +doccontainerchecksum 4fea41151ea197efdacd9e5756043b87500af8445769d0d0f69560cb94decd4f097bcdd52041706ada9b1ee7826f3c56aa30db473c472b1c74553cebb5231072 +docfiles size=16 + RELOC/doc/latex/gmiflink/README details="README" + RELOC/doc/latex/gmiflink/gmiflink.pdf details="Package documentation" runfiles size=2 RELOC/tex/latex/gmiflink/gmiflink.sty -docfiles size=16 - RELOC/doc/latex/gmiflink/README - RELOC/doc/latex/gmiflink/gmiflink.pdf +catalogue-also hyperref catalogue-ctan /macros/latex/contrib/gmiflink -catalogue-date 2012-05-17 22:49:03 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl -catalogue-version v0.97 +catalogue-topics hyper +catalogue-version 0.97 name gmp category Package revision 21691 -shortdesc Enable integration between MetaPost pictures and LaTeX. +shortdesc Enable integration between MetaPost pictures and LaTeX relocated 1 longdesc The package allows integration between MetaPost pictures and longdesc LaTeX. The main feature is that passing parameters to the longdesc MetaPost pictures is possible and the picture code can be put longdesc inside arguments to commands, including \newcommand. -runfiles size=3 - RELOC/tex/latex/gmp/gmp.sty +containersize 3912 +containerchecksum 79ec2dd12610086eb5e7b582f5296fe7f1101c20b6d4edf10d47c5dbcdd506ff7c5f326af7600287a148031be060b3e8319d20d8267933b94b6c8a53e7753bf8 +doccontainersize 801544 +doccontainerchecksum d3d4bdbc5b1c4618820247ec101e43c1c28b9e023e7613d5256456424fa95a54f23463ff1336f2586359a6078aa733de77cd7ccb892b367cdd00215ac7b67512 docfiles size=197 - RELOC/doc/latex/gmp/README - RELOC/doc/latex/gmp/gmp.pdf + RELOC/doc/latex/gmp/README details="Readme" + RELOC/doc/latex/gmp/gmp.pdf details="Package documentation" +srccontainersize 25888 +srccontainerchecksum 13c602f735e86066e87231dd299680739af8ab526d55897c8a972b177ddda6a92277c3455208a11184281332d94f924b59dc845b51d7288c7c6ed750c45a3fc0 srcfiles size=23 RELOC/source/latex/gmp/gmp.dtx RELOC/source/latex/gmp/gmp.ins +runfiles size=3 + RELOC/tex/latex/gmp/gmp.sty catalogue-ctan /macros/latex/contrib/gmp -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics mp-supp graphics catalogue-version 1.0 name gmutils category Package revision 24287 -shortdesc Support macros for other packages. +shortdesc Support macros for other packages relocated 1 longdesc Miscellaneous macros used by others of the author's packages. longdesc Contents of the package: \newgif and other globals; \@ifnextcat @@ -72731,6 +118743,13 @@ longdesc and \@ifXeTeX; \(Re)storeMacro(s) to override redefinitions; longdesc \afterfi and friends; commands from relsize, etc.; "almost an longdesc environment" or redefinition of \begin (\begin* doesn't check longdesc if the argument environment is defined). +containersize 65972 +containerchecksum af0fa2ec7a3ce1414bf5d48d0bd8ce9de1b96b2bfa4f9c2babc6b27c52d11a7e5024bcf66938f3566cf6cf331b154f7eb4ca9d1cbe7109cde939829ea5be55a5 +doccontainersize 1672196 +doccontainerchecksum f1d6205f39f573b0c9b28f0ebca03b32e20e27c0be12adeb7eb23e12daf41a9590733270661aa29d6b8393dc87855f293437617cd8598f39082db8a33e9281ac +docfiles size=431 + RELOC/doc/latex/gmutils/README details="README" + RELOC/doc/latex/gmutils/gmutils.pdf details="Package documentation" runfiles size=70 RELOC/tex/latex/gmutils/gmRCS.sty RELOC/tex/latex/gmutils/gmampulex.sty @@ -72746,18 +118765,16 @@ runfiles size=70 RELOC/tex/latex/gmutils/gmtypos.sty RELOC/tex/latex/gmutils/gmurl.sty RELOC/tex/latex/gmutils/gmutils.sty -docfiles size=431 - RELOC/doc/latex/gmutils/README - RELOC/doc/latex/gmutils/gmutils.pdf catalogue-ctan /macros/latex/contrib/gmutils -catalogue-date 2012-03-12 20:11:22 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl -catalogue-version v0.996 +catalogue-topics macro-supp +catalogue-version 0.996 name gmverb category Package revision 24288 -shortdesc A variant of LaTeX \verb, verbatim and shortvrb. +shortdesc A variant of LaTeX \verb, verbatim and shortvrb relocated 1 longdesc A redefinition of \verb and verbatim so that long lines are longdesc breakable before \ and after { with % as 'hyphen'. Allows you @@ -72766,69 +118783,58 @@ longdesc size limit) and allows you to declare any single character as a longdesc shorthand as in the \MakeShortVerb command of the shortvrb longdesc package of the LaTeX distribution. The package depends on the longdesc gmutils package. +containersize 16340 +containerchecksum 18038202bca3493596925d9d7c65612434ccddde4b301134f1f57706e5d2978025fead598751e27a29d23f66ed12306e6092461aac1d9d921ce818b0a49cdfbd +doccontainersize 212068 +doccontainerchecksum 6dfcc27b38639d4a97ed311bf7c6f1faeb1a023abc27d53e272f334b232a52aa0edc030b0c53d6587845da64097496696ceb03cbd6aa13c8ca5ac12c1772860c +docfiles size=54 + RELOC/doc/latex/gmverb/README details="README" + RELOC/doc/latex/gmverb/gmverb.pdf details="Package documentation" runfiles size=12 RELOC/tex/latex/gmverb/gmverb.sty -docfiles size=54 - RELOC/doc/latex/gmverb/README - RELOC/doc/latex/gmverb/gmverb.pdf catalogue-ctan /macros/latex/contrib/gmverb -catalogue-date 2011-10-14 16:42:22 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl -catalogue-version v0.98 +catalogue-topics verbatim +catalogue-version 0.98 name gmverse category Package revision 29803 -shortdesc A package for typesetting (short) poems. +shortdesc A package for typesetting (short) poems relocated 1 longdesc A redefinition of the verse environment to make the \\ command longdesc optional for line ends and to give it a possibility of optical longdesc centering and `right-hanging' alignment of lines broken because longdesc of length. +containersize 10736 +containerchecksum 98692f781fead4dc292648153ca18a05d03f2c44174bce8b2f72e85fd1e98cb5ef0fb67c12f33dc982f1d04958873ea4e78f486fadb0c94544ecb66180ee52bf +doccontainersize 96420 +doccontainerchecksum 7e37c0c2e8443aedd6462251f603e2eef9cbacc45d980d79bf42cdc64b7ab0a5d81f50ae65251c17115265c45e641a5930de640099f04dc8112155f68ce9adf0 +docfiles size=55 + RELOC/doc/latex/gmverse/README details="README" + RELOC/doc/latex/gmverse/gmverse.pdf details="Package documentation" runfiles size=8 RELOC/tex/latex/gmverse/gmverse.sty -docfiles size=55 - RELOC/doc/latex/gmverse/README - RELOC/doc/latex/gmverse/gmverse.pdf catalogue-ctan /macros/latex/contrib/gmverse -catalogue-date 2012-05-17 22:49:03 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl -catalogue-version v0.73 +catalogue-topics verse +catalogue-version 0.73 name gnu-freefont category Package revision 29349 -shortdesc A Unicode font, with rather wide coverage. +shortdesc A Unicode font, with rather wide coverage relocated 1 longdesc The package provides a set of outline (i.e. OpenType) fonts longdesc covering as much as possible of the Unicode character set. The longdesc set consists of three typefaces: one monospaced and two longdesc proportional (one with uniform and one with modulated stroke). -runfiles size=4350 - RELOC/fonts/opentype/public/gnu-freefont/FreeMono.otf - RELOC/fonts/opentype/public/gnu-freefont/FreeMonoBold.otf - RELOC/fonts/opentype/public/gnu-freefont/FreeMonoBoldOblique.otf - RELOC/fonts/opentype/public/gnu-freefont/FreeMonoOblique.otf - RELOC/fonts/opentype/public/gnu-freefont/FreeSans.otf - RELOC/fonts/opentype/public/gnu-freefont/FreeSansBold.otf - RELOC/fonts/opentype/public/gnu-freefont/FreeSansBoldOblique.otf - RELOC/fonts/opentype/public/gnu-freefont/FreeSansOblique.otf - RELOC/fonts/opentype/public/gnu-freefont/FreeSerif.otf - RELOC/fonts/opentype/public/gnu-freefont/FreeSerifBold.otf - RELOC/fonts/opentype/public/gnu-freefont/FreeSerifBoldItalic.otf - RELOC/fonts/opentype/public/gnu-freefont/FreeSerifItalic.otf - RELOC/fonts/truetype/public/gnu-freefont/FreeMono.ttf - RELOC/fonts/truetype/public/gnu-freefont/FreeMonoBold.ttf - RELOC/fonts/truetype/public/gnu-freefont/FreeMonoBoldOblique.ttf - RELOC/fonts/truetype/public/gnu-freefont/FreeMonoOblique.ttf - RELOC/fonts/truetype/public/gnu-freefont/FreeSans.ttf - RELOC/fonts/truetype/public/gnu-freefont/FreeSansBold.ttf - RELOC/fonts/truetype/public/gnu-freefont/FreeSansBoldOblique.ttf - RELOC/fonts/truetype/public/gnu-freefont/FreeSansOblique.ttf - RELOC/fonts/truetype/public/gnu-freefont/FreeSerif.ttf - RELOC/fonts/truetype/public/gnu-freefont/FreeSerifBold.ttf - RELOC/fonts/truetype/public/gnu-freefont/FreeSerifBoldItalic.ttf - RELOC/fonts/truetype/public/gnu-freefont/FreeSerifItalic.ttf +containersize 7094080 +containerchecksum c8ced8afc3b1b9108e5a4a82db54a9a28ac6ba5f4f379062b0d9d8b9724716ca98234a345c06c7d809b1ce609f817f0a9acba1ef8e94ecbf8f1301fd3bc9d248 +doccontainersize 161276 +doccontainerchecksum 3b7adbdabaf996fe8e0cff7e1192cb7f5984103398b22af6f859500a0041a0ce2ac0c70bc3f17abb7294ba80e34baa5cc77639500fa03f1a2c1c93548aa2a816 docfiles size=231 RELOC/doc/fonts/gnu-freefont/AUTHORS RELOC/doc/fonts/gnu-freefont/BUILDING @@ -72837,7 +118843,7 @@ docfiles size=231 RELOC/doc/fonts/gnu-freefont/ChangeLog RELOC/doc/fonts/gnu-freefont/INSTALL RELOC/doc/fonts/gnu-freefont/Makefile - RELOC/doc/fonts/gnu-freefont/README + RELOC/doc/fonts/gnu-freefont/README details="Readme" RELOC/doc/fonts/gnu-freefont/TROUBLESHOOTING RELOC/doc/fonts/gnu-freefont/USAGE RELOC/doc/fonts/gnu-freefont/notes/README-downloads.txt @@ -72884,6 +118890,8 @@ docfiles size=231 RELOC/doc/fonts/gnu-freefont/tools/utility/hex_range.py RELOC/doc/fonts/gnu-freefont/tools/utility/metafont/bulk_eps_import.py RELOC/doc/fonts/gnu-freefont/tools/utility/special-purpose/makeBraille.py +srccontainersize 4241780 +srccontainerchecksum df7be02fdf1e4559f701b67183237f95c7b6c1b9b22f3b65688bc84d96f97964755397e4cf9039229ecec8b5810d65042ff2d7c101ef7cabbb126e6e9c93b3c5 srcfiles size=6180 RELOC/source/fonts/gnu-freefont/FreeMono.sfd RELOC/source/fonts/gnu-freefont/FreeMonoBold.sfd @@ -72898,50 +118906,558 @@ srcfiles size=6180 RELOC/source/fonts/gnu-freefont/FreeSerifBoldItalic.sfd RELOC/source/fonts/gnu-freefont/FreeSerifItalic.sfd RELOC/source/fonts/gnu-freefont/Makefile +runfiles size=4350 + RELOC/fonts/opentype/public/gnu-freefont/FreeMono.otf + RELOC/fonts/opentype/public/gnu-freefont/FreeMonoBold.otf + RELOC/fonts/opentype/public/gnu-freefont/FreeMonoBoldOblique.otf + RELOC/fonts/opentype/public/gnu-freefont/FreeMonoOblique.otf + RELOC/fonts/opentype/public/gnu-freefont/FreeSans.otf + RELOC/fonts/opentype/public/gnu-freefont/FreeSansBold.otf + RELOC/fonts/opentype/public/gnu-freefont/FreeSansBoldOblique.otf + RELOC/fonts/opentype/public/gnu-freefont/FreeSansOblique.otf + RELOC/fonts/opentype/public/gnu-freefont/FreeSerif.otf + RELOC/fonts/opentype/public/gnu-freefont/FreeSerifBold.otf + RELOC/fonts/opentype/public/gnu-freefont/FreeSerifBoldItalic.otf + RELOC/fonts/opentype/public/gnu-freefont/FreeSerifItalic.otf + RELOC/fonts/truetype/public/gnu-freefont/FreeMono.ttf + RELOC/fonts/truetype/public/gnu-freefont/FreeMonoBold.ttf + RELOC/fonts/truetype/public/gnu-freefont/FreeMonoBoldOblique.ttf + RELOC/fonts/truetype/public/gnu-freefont/FreeMonoOblique.ttf + RELOC/fonts/truetype/public/gnu-freefont/FreeSans.ttf + RELOC/fonts/truetype/public/gnu-freefont/FreeSansBold.ttf + RELOC/fonts/truetype/public/gnu-freefont/FreeSansBoldOblique.ttf + RELOC/fonts/truetype/public/gnu-freefont/FreeSansOblique.ttf + RELOC/fonts/truetype/public/gnu-freefont/FreeSerif.ttf + RELOC/fonts/truetype/public/gnu-freefont/FreeSerifBold.ttf + RELOC/fonts/truetype/public/gnu-freefont/FreeSerifBoldItalic.ttf + RELOC/fonts/truetype/public/gnu-freefont/FreeSerifItalic.ttf +catalogue-contact-repository http://savannah.gnu.org/projects/freefont/ catalogue-ctan /fonts/gnu-freefont -catalogue-date 2014-07-11 15:18:12 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license gpl3 +catalogue-topics font font-proportional font-mono font-serif font-otf font-sfd name gnuplottex category Package -revision 32277 -shortdesc Embed Gnuplot commands in LaTeX documents. -relocated 1 -longdesc The package extracts Gnuplot code from the document and writes -longdesc it to .gnuplot files. If shell escape is enabled, the graph -longdesc files are automatically processed and converted to PostScript -longdesc or PDF files, which will then be included. If shell escape is -longdesc disabled, the user has to run the files through gnuplot, and re- -longdesc run the LaTeX job. -runfiles size=3 - RELOC/tex/latex/gnuplottex/gnuplottex.sty -docfiles size=107 - RELOC/doc/latex/gnuplottex/README +revision 41904 +shortdesc Embed Gnuplot commands in LaTeX documents +relocated 1 +longdesc This package allows you to include Gnuplot graphs in your LaTeX +longdesc documents. The gnuplot code is extracted from the document and +longdesc written to .gnuplot files. Then, if shell escape is used, the +longdesc graph files are automatically processed to graphics or LaTeX +longdesc code files which will then be included in the document. If +longdesc shell escape isn't used, the user will have to manually convert +longdesc the files by running gnuplot on the extracted .gnuplot files. +containersize 3304 +containerchecksum e173f3fb8d94bbfe9663e27a9a46078c1f481c54995114bfcd3cb12ae46deeb963eb9cc815faeef3d05edccf80a24cbd9eb6de9bf2f51d7fc49b1ff5d37733de +doccontainersize 415240 +doccontainerchecksum c29f231ce2bbb0b61d88f1ad1fc8b73fe684944df218b6a12778c64c5e371678314faf437b3130d7bb96b2d370c24b9cd8af38c77958eef494941db9a11fce92 +docfiles size=110 + RELOC/doc/latex/gnuplottex/README details="Readme" RELOC/doc/latex/gnuplottex/SomeValuesForGnuplot.txt RELOC/doc/latex/gnuplottex/example-pdf.tex RELOC/doc/latex/gnuplottex/example.gnuplot - RELOC/doc/latex/gnuplottex/gnuplottex.pdf + RELOC/doc/latex/gnuplottex/gnuplottex.pdf details="Package documentation" RELOC/doc/latex/gnuplottex/gpl.txt -srcfiles size=9 +srccontainersize 9184 +srccontainerchecksum 2da5f6b117b457c6da6224b70e62afcc658422aa8da74ae97f78f9ec815aa19da96f4a0a74cd81190105c5c32d860dac22d28d5742ec6ed9e4e5f4c02711240d +srcfiles size=10 RELOC/source/latex/gnuplottex/gnuplottex.dtx RELOC/source/latex/gnuplottex/gnuplottex.ins +runfiles size=3 + RELOC/tex/latex/gnuplottex/gnuplottex.sty +catalogue-also context-gnuplot catalogue-ctan /macros/latex/contrib/gnuplottex -catalogue-date 2013-11-29 10:11:23 +0100 +catalogue-date 2016-08-21 22:13:00 +0200 catalogue-license gpl2 -catalogue-version 0.8 +catalogue-topics graphics-inline +catalogue-version 0.9.2 + +name go +category Package +revision 28628 +shortdesc Fonts and macros for typesetting go games +relocated 1 +longdesc The macros provide for nothing more complicated than the +longdesc standard 19x19 board; the fonts are written in Metafont. +containersize 9012 +containerchecksum 772772146ad95f2ebff85a2f3064615c26300a6a4050c1a6c7207d53e12b41477b0936b1c3d182f1c5db0aebd8499de19e0c23283c2bccf753addb2623dfd1be +doccontainersize 3724 +doccontainerchecksum c65516b11156d4fef5104a36cb361bf59be244555233cb5d9692892da06d3bdecd0b09866db136aec177a2bcbacfae6bb41c606f6b9da0329a00c614055905d0 +docfiles size=3 + RELOC/doc/fonts/go/gomaps.ltx +srccontainersize 416 +srccontainerchecksum 54cbaf16bd4a1a9bdd02b7811120cc82269be40e97853d94b1d526eef98e7df8e7ab8de2e7abcdd7e7db4c1f7fdf3d7355d511ed57c44c09643ea291e5b1c6d0 +srcfiles size=2 + RELOC/source/fonts/go/go.bat + RELOC/source/fonts/go/go1.bat +runfiles size=77 + RELOC/fonts/source/public/go/go.mf + RELOC/fonts/source/public/go/go10.mf + RELOC/fonts/source/public/go/go15.mf + RELOC/fonts/source/public/go/go1bla10.mf + RELOC/fonts/source/public/go/go1bla15.mf + RELOC/fonts/source/public/go/go1bla20.mf + RELOC/fonts/source/public/go/go1black.mf + RELOC/fonts/source/public/go/go1whi10.mf + RELOC/fonts/source/public/go/go1whi15.mf + RELOC/fonts/source/public/go/go1whi20.mf + RELOC/fonts/source/public/go/go1white.mf + RELOC/fonts/source/public/go/go20.mf + RELOC/fonts/source/public/go/go2bla10.mf + RELOC/fonts/source/public/go/go2bla15.mf + RELOC/fonts/source/public/go/go2bla20.mf + RELOC/fonts/source/public/go/go2black.mf + RELOC/fonts/source/public/go/go2whi10.mf + RELOC/fonts/source/public/go/go2whi15.mf + RELOC/fonts/source/public/go/go2whi20.mf + RELOC/fonts/source/public/go/go2white.mf + RELOC/fonts/source/public/go/gosign50.mf + RELOC/fonts/tfm/public/go/go10.tfm + RELOC/fonts/tfm/public/go/go15.tfm + RELOC/fonts/tfm/public/go/go1bla10.tfm + RELOC/fonts/tfm/public/go/go1bla15.tfm + RELOC/fonts/tfm/public/go/go1bla20.tfm + RELOC/fonts/tfm/public/go/go1whi10.tfm + RELOC/fonts/tfm/public/go/go1whi15.tfm + RELOC/fonts/tfm/public/go/go1whi20.tfm + RELOC/fonts/tfm/public/go/go20.tfm + RELOC/fonts/tfm/public/go/go2bla10.tfm + RELOC/fonts/tfm/public/go/go2bla15.tfm + RELOC/fonts/tfm/public/go/go2bla20.tfm + RELOC/fonts/tfm/public/go/go2whi10.tfm + RELOC/fonts/tfm/public/go/go2whi15.tfm + RELOC/fonts/tfm/public/go/go2whi20.tfm + RELOC/fonts/tfm/public/go/gosign50.tfm + RELOC/tex/latex/go/go.sty +catalogue-also igo +catalogue-ctan /fonts/go +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics games font font-symbol font-mf + +name gobble +category Package +revision 49608 +shortdesc More gobble macros for PlainTeX and LaTeX +relocated 1 +longdesc The LaTeX package gobble includes several gobble macros not +longdesc included in the LaTeX kernel. These macros remove a number of +longdesc arguments after them, a feature regulary used inside other +longdesc macros. This includes gobble macros for optional arguments. The +longdesc LaTeX package gobble-user provides these macros at the user +longdesc level, i.e. using names without @ so that these can be used +longdesc without \makeatletter and \makeatother. The same macros are +longdesc provided inside .tex files for use with plain-TeX or other TeX +longdesc formats. However, the gobble macros for optional macros require +longdesc \@ifnextchar to be defined. +containersize 1552 +containerchecksum c2426530cc89a96c8a8e6e01c936053c9eb9c4a07cb46369f3dcf6d0d74557421b1a749a112f561f7248a34a46262fa0b2b52d103bbd8cfed720285383a5ff8a +doccontainersize 157644 +doccontainerchecksum 1f4879234402deaf684312daf31abec8a9c36c04ec52ce9b48cf6b7358153b6feef328f2c4f704a2ac7a0ead18a87e35e3ec21d9e22b1a60311aac56f6b48413 +docfiles size=41 + RELOC/doc/generic/gobble/README details="Readme" + RELOC/doc/generic/gobble/gobble-user.tex + RELOC/doc/generic/gobble/gobble.pdf details="Package documentation" +srccontainersize 3288 +srccontainerchecksum ab765f57595789abba5fda194d49ce1c267541a4b22dff0b4fdbc6f2690700503c28f860cc21eb585894318d2bb88ec9f0dd6b48ebd515c8b23ac4c0f46de195 +srcfiles size=4 + RELOC/source/generic/gobble/gobble.dtx + RELOC/source/generic/gobble/gobble.ins +runfiles size=3 + RELOC/tex/generic/gobble/gobble-user.sty + RELOC/tex/generic/gobble/gobble.sty + RELOC/tex/generic/gobble/gobble.tex +catalogue-contact-repository https://bitbucket.org/martin_scharrer/gobble +catalogue-ctan /macros/generic/gobble +catalogue-date 2019-01-04 22:27:51 +0100 +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 0.2 + +name gofonts +category Package +revision 50981 +shortdesc GoSans and GoMono fonts with LaTeX support +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the GoSans and GoMono families of fonts designed by +longdesc the Bigelow & Holmes foundry for the Go project. GoSans is +longdesc available in three weights: Regular, Medium, and Bold (with +longdesc corresponding italics). GoMono is available in regular and +longdesc bold, with italics. Notes on the design may be found at +longdesc https://blog.golang.org/go-fonts. +execute addMap go.map +containersize 1361648 +containerchecksum 736c2954a90871e8223091662cbfc2830ff9048bb30619ba825b9ec8190071231dc0166f76cb1915e849a29ee8102b6de38ebea1c0437ea5cfd26804807d0ea6 +doccontainersize 304044 +doccontainerchecksum cf2c6b23f25907fd817eef31a52eaaaa37514fbbfb8b5ac111a9c87fc92955216814eabd54c92473a548a50f9c9ce98167387b81f6a8bcc639e1958fb1ec4863 +docfiles size=81 + RELOC/doc/fonts/gofonts/License + RELOC/doc/fonts/gofonts/README details="Readme" + RELOC/doc/fonts/gofonts/go-samples.pdf details="Font samples" + RELOC/doc/fonts/gofonts/go-samples.tex + RELOC/doc/fonts/gofonts/gofonts.pdf details="Design notes" +runfiles size=897 + RELOC/fonts/enc/dvips/gofonts/go_2qimm2.enc + RELOC/fonts/enc/dvips/gofonts/go_4whde3.enc + RELOC/fonts/enc/dvips/gofonts/go_73mlya.enc + RELOC/fonts/enc/dvips/gofonts/go_c3licl.enc + RELOC/fonts/enc/dvips/gofonts/go_dhlxve.enc + RELOC/fonts/enc/dvips/gofonts/go_icpxvt.enc + RELOC/fonts/enc/dvips/gofonts/go_iypgt7.enc + RELOC/fonts/enc/dvips/gofonts/go_zwiz3b.enc + RELOC/fonts/map/dvips/gofonts/go.map + RELOC/fonts/tfm/bh/gofonts/Go-Bold-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-Italic-tlf-t1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-tlf-t1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-Italic-tlf-t1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-tlf-lgr--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-tlf-t1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-Italic-tlf-t1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-tlf-t1.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/bh/gofonts/Go-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Bold-tlf-t1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Italic-tlf-t1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-tlf-lgr--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-tlf-lgr.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-tlf-ly1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-tlf-ly1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-tlf-ot1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-tlf-t1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-tlf-t1.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-tlf-ts1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoMono-tlf-ts1.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-Italic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-Italic-tlf-sc-ts1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-Italic-tlf-sc-ts1.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-tlf-sc-lgr.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-tlf-sc-ly1.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-tlf-sc-ot1.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-tlf-sc-t1.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-tlf-sc-ts1--base.tfm + RELOC/fonts/tfm/bh/gofonts/GoSmallcaps-tlf-sc-ts1.tfm + RELOC/fonts/truetype/bh/gofonts/Go-Bold-Italic.ttf + RELOC/fonts/truetype/bh/gofonts/Go-Bold.ttf + RELOC/fonts/truetype/bh/gofonts/Go-Medium-Italic.ttf + RELOC/fonts/truetype/bh/gofonts/Go-Medium.ttf + RELOC/fonts/truetype/bh/gofonts/Go-Regular-Italic.ttf + RELOC/fonts/truetype/bh/gofonts/Go-Regular.ttf + RELOC/fonts/truetype/bh/gofonts/GoMono-Bold-Italic.ttf + RELOC/fonts/truetype/bh/gofonts/GoMono-Bold.ttf + RELOC/fonts/truetype/bh/gofonts/GoMono-Regular-Italic.ttf + RELOC/fonts/truetype/bh/gofonts/GoMono-Regular.ttf + RELOC/fonts/truetype/bh/gofonts/GoSmallcaps-Italic.ttf + RELOC/fonts/truetype/bh/gofonts/GoSmallcaps.ttf + RELOC/fonts/type1/bh/gofonts/Go-Bold-Italic.pfb + RELOC/fonts/type1/bh/gofonts/Go-Bold.pfb + RELOC/fonts/type1/bh/gofonts/Go-Medium-Italic.pfb + RELOC/fonts/type1/bh/gofonts/Go-Medium.pfb + RELOC/fonts/type1/bh/gofonts/Go-Regular-Italic.pfb + RELOC/fonts/type1/bh/gofonts/Go-Regular.pfb + RELOC/fonts/type1/bh/gofonts/GoMono-Bold-Italic.pfb + RELOC/fonts/type1/bh/gofonts/GoMono-Bold.pfb + RELOC/fonts/type1/bh/gofonts/GoMono-Regular-Italic.pfb + RELOC/fonts/type1/bh/gofonts/GoMono-Regular.pfb + RELOC/fonts/type1/bh/gofonts/GoSmallcaps-Italic.pfb + RELOC/fonts/type1/bh/gofonts/GoSmallcaps.pfb + RELOC/fonts/vf/bh/gofonts/Go-Bold-Italic-tlf-lgr.vf + RELOC/fonts/vf/bh/gofonts/Go-Bold-Italic-tlf-ly1.vf + RELOC/fonts/vf/bh/gofonts/Go-Bold-Italic-tlf-t1.vf + RELOC/fonts/vf/bh/gofonts/Go-Bold-Italic-tlf-ts1.vf + RELOC/fonts/vf/bh/gofonts/Go-Bold-tlf-lgr.vf + RELOC/fonts/vf/bh/gofonts/Go-Bold-tlf-ly1.vf + RELOC/fonts/vf/bh/gofonts/Go-Bold-tlf-t1.vf + RELOC/fonts/vf/bh/gofonts/Go-Bold-tlf-ts1.vf + RELOC/fonts/vf/bh/gofonts/Go-Medium-Italic-tlf-lgr.vf + RELOC/fonts/vf/bh/gofonts/Go-Medium-Italic-tlf-ly1.vf + RELOC/fonts/vf/bh/gofonts/Go-Medium-Italic-tlf-t1.vf + RELOC/fonts/vf/bh/gofonts/Go-Medium-Italic-tlf-ts1.vf + RELOC/fonts/vf/bh/gofonts/Go-Medium-tlf-lgr.vf + RELOC/fonts/vf/bh/gofonts/Go-Medium-tlf-ly1.vf + RELOC/fonts/vf/bh/gofonts/Go-Medium-tlf-t1.vf + RELOC/fonts/vf/bh/gofonts/Go-Medium-tlf-ts1.vf + RELOC/fonts/vf/bh/gofonts/Go-Regular-Italic-tlf-lgr.vf + RELOC/fonts/vf/bh/gofonts/Go-Regular-Italic-tlf-ly1.vf + RELOC/fonts/vf/bh/gofonts/Go-Regular-Italic-tlf-t1.vf + RELOC/fonts/vf/bh/gofonts/Go-Regular-Italic-tlf-ts1.vf + RELOC/fonts/vf/bh/gofonts/Go-Regular-tlf-lgr.vf + RELOC/fonts/vf/bh/gofonts/Go-Regular-tlf-ly1.vf + RELOC/fonts/vf/bh/gofonts/Go-Regular-tlf-t1.vf + RELOC/fonts/vf/bh/gofonts/Go-Regular-tlf-ts1.vf + RELOC/fonts/vf/bh/gofonts/GoMono-Bold-tlf-lgr.vf + RELOC/fonts/vf/bh/gofonts/GoMono-Bold-tlf-ly1.vf + RELOC/fonts/vf/bh/gofonts/GoMono-Bold-tlf-t1.vf + RELOC/fonts/vf/bh/gofonts/GoMono-Bold-tlf-ts1.vf + RELOC/fonts/vf/bh/gofonts/GoMono-BoldItalic-tlf-lgr.vf + RELOC/fonts/vf/bh/gofonts/GoMono-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/bh/gofonts/GoMono-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/bh/gofonts/GoMono-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/bh/gofonts/GoMono-Italic-tlf-lgr.vf + RELOC/fonts/vf/bh/gofonts/GoMono-Italic-tlf-ly1.vf + RELOC/fonts/vf/bh/gofonts/GoMono-Italic-tlf-t1.vf + RELOC/fonts/vf/bh/gofonts/GoMono-Italic-tlf-ts1.vf + RELOC/fonts/vf/bh/gofonts/GoMono-tlf-lgr.vf + RELOC/fonts/vf/bh/gofonts/GoMono-tlf-ly1.vf + RELOC/fonts/vf/bh/gofonts/GoMono-tlf-t1.vf + RELOC/fonts/vf/bh/gofonts/GoMono-tlf-ts1.vf + RELOC/fonts/vf/bh/gofonts/GoSmallcaps-Italic-tlf-sc-lgr.vf + RELOC/fonts/vf/bh/gofonts/GoSmallcaps-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/bh/gofonts/GoSmallcaps-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/bh/gofonts/GoSmallcaps-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/bh/gofonts/GoSmallcaps-Italic-tlf-sc-ts1.vf + RELOC/fonts/vf/bh/gofonts/GoSmallcaps-tlf-sc-lgr.vf + RELOC/fonts/vf/bh/gofonts/GoSmallcaps-tlf-sc-ly1.vf + RELOC/fonts/vf/bh/gofonts/GoSmallcaps-tlf-sc-ot1.vf + RELOC/fonts/vf/bh/gofonts/GoSmallcaps-tlf-sc-t1.vf + RELOC/fonts/vf/bh/gofonts/GoSmallcaps-tlf-sc-ts1.vf + RELOC/tex/latex/gofonts/GoMono.sty + RELOC/tex/latex/gofonts/GoSans.sty + RELOC/tex/latex/gofonts/LGRGo-TLF.fd + RELOC/tex/latex/gofonts/LGRGoMono-TLF.fd + RELOC/tex/latex/gofonts/LY1Go-TLF.fd + RELOC/tex/latex/gofonts/LY1GoMono-TLF.fd + RELOC/tex/latex/gofonts/OT1Go-TLF.fd + RELOC/tex/latex/gofonts/OT1GoMono-TLF.fd + RELOC/tex/latex/gofonts/T1Go-TLF.fd + RELOC/tex/latex/gofonts/T1GoMono-TLF.fd + RELOC/tex/latex/gofonts/TS1Go-TLF.fd + RELOC/tex/latex/gofonts/TS1GoMono-TLF.fd +catalogue-ctan /fonts/gofonts +catalogue-date 2019-04-19 17:21:00 +0200 +catalogue-license other-freelppl +catalogue-topics font font-body font-proportional font-sans font-mono font-ttf font-type1 font-t1enc name gost category Package -revision 27642 -shortdesc BibTeX styles to format according to GOST. +revision 44131 +shortdesc BibTeX styles to format according to GOST relocated 1 longdesc BibTeX styles to format bibliographies in English, Russian or -longdesc Ukrainian according to GOST 7.0.5-2008 or GOST 7.1-2003. Both 8- -longdesc bit and Unicode (UTF-8) versions of each BibTeX style, in each -longdesc case offering a choice of sorted and unsorted. Further, a set -longdesc of three styles (which do not conform to current standards) are -longdesc retained for backwards compatibility. -runfiles size=209 +longdesc Ukrainian according to GOST 7.0.5-2008 or GOST 7.1-2003. Both +longdesc 8-bit and Unicode (UTF-8) versions of each BibTeX style, in +longdesc each case offering a choice of sorted and unsorted. Further, a +longdesc set of three styles (which do not conform to current standards) +longdesc are retained for backwards compatibility. +containersize 16808 +containerchecksum 81509f8eeda503dbb62d696adebf15c7f5fccfbd34d23ca8d83a9e7e2fa328c98fc1acd1fd99061c260ace3895cadae8138f0350027c6e81a0b52fb2735a0cf0 +doccontainersize 1664344 +doccontainerchecksum 4a1a95d8647cc0e2b57f7815b4b06b7fd009e78a6aae701248f70a73825b394ff508a558a03386871d0a2ce22d43af81b677a2eeb3c2f2475a64a13d87493e51 +docfiles size=1160 + RELOC/doc/bibtex/gost/README.md details="Readme" language="en" + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex01.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex02.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex03.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex04.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex05.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex06.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex06a.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex07.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex08.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex09.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex10.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex11.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex12.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex13.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex14.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex14a.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex15.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex16.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex17.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex17a.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex17b.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex18.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex19.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex20.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex20a.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex20b.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex20c.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex21.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex21a.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex21b.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex23.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex24.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex24a.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex24b.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex25.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex26.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex27a.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex27b.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex27c.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex28.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex28a.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex29.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex30.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/ex31.bib + RELOC/doc/bibtex/gost/examples/cp1251/bib/examples.bib + RELOC/doc/bibtex/gost/examples/cp1251/gost.tex + RELOC/doc/bibtex/gost/examples/cp1251/gost2003.pdf + RELOC/doc/bibtex/gost/examples/cp1251/gost2003.tex + RELOC/doc/bibtex/gost/examples/cp1251/gost2008-customized.pdf + RELOC/doc/bibtex/gost/examples/cp1251/gost2008-customized.tex + RELOC/doc/bibtex/gost/examples/cp1251/gost2008.pdf + RELOC/doc/bibtex/gost/examples/cp1251/gost2008.tex + RELOC/doc/bibtex/gost/examples/cp1251/gost2008l.pdf + RELOC/doc/bibtex/gost/examples/cp1251/gost2008l.tex + RELOC/doc/bibtex/gost/examples/cp1251/gost2008n.pdf + RELOC/doc/bibtex/gost/examples/cp1251/gost2008n.tex + RELOC/doc/bibtex/gost/examples/cp1251/gost2008ns.pdf + RELOC/doc/bibtex/gost/examples/cp1251/gost2008ns.tex + RELOC/doc/bibtex/gost/examples/cp1251/gost780.pdf + RELOC/doc/bibtex/gost/examples/cp1251/gost780.tex + RELOC/doc/bibtex/gost/examples/cp1251/make-examples-on-win-cp1251.cmd + RELOC/doc/bibtex/gost/examples/utf8/bib/ex01.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex02.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex03.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex04.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex05.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex06.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex06a.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex07.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex08.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex09.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex10.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex11.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex12.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex13.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex14.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex14a.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex15.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex16.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex17.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex17a.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex17b.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex18.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex19.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex20.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex20a.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex20b.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex20c.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex21.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex21a.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex21b.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex22.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex22a.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex23.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex24.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex24a.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex24b.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex25.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex26.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex27a.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex27b.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex27c.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex28.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex28a.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex29.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex30.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/ex31.bib + RELOC/doc/bibtex/gost/examples/utf8/bib/examples.bib + RELOC/doc/bibtex/gost/examples/utf8/make-examples-on-win-utf8.cmd + RELOC/doc/bibtex/gost/examples/utf8/ugost.tex + RELOC/doc/bibtex/gost/examples/utf8/ugost2003.pdf + RELOC/doc/bibtex/gost/examples/utf8/ugost2003.tex + RELOC/doc/bibtex/gost/examples/utf8/ugost2008-customized.pdf + RELOC/doc/bibtex/gost/examples/utf8/ugost2008-customized.tex + RELOC/doc/bibtex/gost/examples/utf8/ugost2008.pdf + RELOC/doc/bibtex/gost/examples/utf8/ugost2008.tex + RELOC/doc/bibtex/gost/examples/utf8/ugost2008l.pdf + RELOC/doc/bibtex/gost/examples/utf8/ugost2008l.tex + RELOC/doc/bibtex/gost/examples/utf8/ugost2008n.pdf + RELOC/doc/bibtex/gost/examples/utf8/ugost2008n.tex + RELOC/doc/bibtex/gost/examples/utf8/ugost2008ns.pdf + RELOC/doc/bibtex/gost/examples/utf8/ugost2008ns.tex + RELOC/doc/bibtex/gost/examples/utf8/ugost2008s.pdf + RELOC/doc/bibtex/gost/examples/utf8/ugost2008s.tex + RELOC/doc/bibtex/gost/gost.pdf details="Package documentation" language="en" +srccontainersize 26408 +srccontainerchecksum 4d54271026bc1490882e207c079a4caabb8fae9075fa39a2bab4673a4046a63d175e12182fd536d8c2e4bd049858add1739da987a4d99baf3d61a32fc0596687 +srcfiles size=35 + RELOC/source/bibtex/gost/gost.dtx + RELOC/source/bibtex/gost/gost.ins +runfiles size=257 RELOC/bibtex/bst/gost/gost2003.bst RELOC/bibtex/bst/gost/gost2003s.bst RELOC/bibtex/bst/gost/gost2008.bst @@ -72964,28 +119480,16 @@ runfiles size=209 RELOC/bibtex/csf/gost/koi8u.csf RELOC/bibtex/csf/gost/ruscii.csf RELOC/bibtex/csf/gost/utf8cyrillic.csf -docfiles size=732 - RELOC/doc/bibtex/gost/README - RELOC/doc/bibtex/gost/gost.pdf - RELOC/doc/bibtex/gost/gost2003.pdf - RELOC/doc/bibtex/gost/gost2008-customized.pdf - RELOC/doc/bibtex/gost/gost2008-natbib-s.pdf - RELOC/doc/bibtex/gost/gost2008-natbib.pdf - RELOC/doc/bibtex/gost/gost2008-sorted.pdf - RELOC/doc/bibtex/gost/gost2008.pdf - RELOC/doc/bibtex/gost/gost2008l.pdf - RELOC/doc/bibtex/gost/gost780.pdf -srcfiles size=30 - RELOC/source/bibtex/gost/gost.dtx - RELOC/source/bibtex/gost/gost.ins +catalogue-also biblatex-gost catalogue-ctan /biblio/bibtex/contrib/gost -catalogue-date 2012-09-10 13:53:05 +0200 -catalogue-license lppl -catalogue-version 1.2a +catalogue-date 2017-01-14 14:16:05 +0100 +catalogue-license lppl1.3 +catalogue-topics bibtex-sty russian +catalogue-version 1.2i name gothic category Package -revision 38263 +revision 49869 shortdesc A collection of old German-style fonts relocated 1 longdesc A collection of fonts that reproduce those used in "old German" @@ -72995,6 +119499,21 @@ longdesc Schwell, and a font containing decorative initials. In longdesc addition, there are two re-encoding packages for Haralambous's longdesc fonts, providing T1, using virtual fonts, and OT1 and T1, using longdesc Metafont. +containersize 129612 +containerchecksum 0c3fafd295fb087d3ace144df7253ff09fb3d79091dcd49003964a7ce57308cb4e86f3c3158a5e3d7e509e9958f77d5cc6da03fc41b585ec4ea397822ac29a7a +doccontainersize 193528 +doccontainerchecksum 8f2495f3f9c72e5a5b01e17e1a9f80bae3ded97b902765dd2fa9b43ff87769a9ac2b972aa660344bcc8e29af3824985c49639477ee96213c0ee7d9d411e8ebad +docfiles size=61 + RELOC/doc/fonts/gothic/00readme_fraktur.msg + RELOC/doc/fonts/gothic/README.sueterlin + RELOC/doc/fonts/gothic/README.yinit + RELOC/doc/fonts/gothic/suet.pdf + RELOC/doc/fonts/gothic/suet.tex + RELOC/doc/fonts/gothic/yinit.pdf +srccontainersize 448 +srccontainerchecksum f6e600c736989ac81cde1fd51306ddb520e693b6a5ee8338c3413b5656aaacade8d4f1ca7aa316589c4d49fa8b96b598637792825b03ab0fe3efa4bb584067b2 +srcfiles size=1 + RELOC/source/fonts/gothic/mfall.bat runfiles size=246 RELOC/fonts/source/public/gothic/cmfrabase.mf RELOC/fonts/source/public/gothic/cmfrak.mf @@ -73068,139 +119587,229 @@ runfiles size=246 RELOC/fonts/tfm/public/gothic/yinit.tfm RELOC/fonts/tfm/public/gothic/ysmfrak.tfm RELOC/fonts/tfm/public/gothic/yswab.tfm -docfiles size=61 - RELOC/doc/fonts/gothic/00readme_fraktur.msg - RELOC/doc/fonts/gothic/README.sueterlin - RELOC/doc/fonts/gothic/README.yinit - RELOC/doc/fonts/gothic/suet.pdf - RELOC/doc/fonts/gothic/suet.tex - RELOC/doc/fonts/gothic/yinit.pdf -srcfiles size=1 - RELOC/source/fonts/gothic/mfall.bat catalogue-ctan /fonts/gothic -catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-date 2017-10-29 15:22:05 +0100 catalogue-license collection -catalogue-topics font font-collection font-gothic +catalogue-topics font font-mf font-collection font-gothic -name go +name gotoh category Package -revision 28628 -shortdesc Fonts and macros for typesetting go games. +revision 44764 +shortdesc An implementation of the Gotoh sequence alignment algorithm relocated 1 -longdesc The macros provide for nothing more complicated than the -longdesc standard 19x19 board; the fonts are written in Metafont. -runfiles size=77 - RELOC/fonts/source/public/go/go.mf - RELOC/fonts/source/public/go/go10.mf - RELOC/fonts/source/public/go/go15.mf - RELOC/fonts/source/public/go/go1bla10.mf - RELOC/fonts/source/public/go/go1bla15.mf - RELOC/fonts/source/public/go/go1bla20.mf - RELOC/fonts/source/public/go/go1black.mf - RELOC/fonts/source/public/go/go1whi10.mf - RELOC/fonts/source/public/go/go1whi15.mf - RELOC/fonts/source/public/go/go1whi20.mf - RELOC/fonts/source/public/go/go1white.mf - RELOC/fonts/source/public/go/go20.mf - RELOC/fonts/source/public/go/go2bla10.mf - RELOC/fonts/source/public/go/go2bla15.mf - RELOC/fonts/source/public/go/go2bla20.mf - RELOC/fonts/source/public/go/go2black.mf - RELOC/fonts/source/public/go/go2whi10.mf - RELOC/fonts/source/public/go/go2whi15.mf - RELOC/fonts/source/public/go/go2whi20.mf - RELOC/fonts/source/public/go/go2white.mf - RELOC/fonts/source/public/go/gosign50.mf - RELOC/fonts/tfm/public/go/go10.tfm - RELOC/fonts/tfm/public/go/go15.tfm - RELOC/fonts/tfm/public/go/go1bla10.tfm - RELOC/fonts/tfm/public/go/go1bla15.tfm - RELOC/fonts/tfm/public/go/go1bla20.tfm - RELOC/fonts/tfm/public/go/go1whi10.tfm - RELOC/fonts/tfm/public/go/go1whi15.tfm - RELOC/fonts/tfm/public/go/go1whi20.tfm - RELOC/fonts/tfm/public/go/go20.tfm - RELOC/fonts/tfm/public/go/go2bla10.tfm - RELOC/fonts/tfm/public/go/go2bla15.tfm - RELOC/fonts/tfm/public/go/go2bla20.tfm - RELOC/fonts/tfm/public/go/go2whi10.tfm - RELOC/fonts/tfm/public/go/go2whi15.tfm - RELOC/fonts/tfm/public/go/go2whi20.tfm - RELOC/fonts/tfm/public/go/gosign50.tfm - RELOC/tex/latex/go/go.sty -docfiles size=3 - RELOC/doc/fonts/go/gomaps.ltx -srcfiles size=2 - RELOC/source/fonts/go/go.bat - RELOC/source/fonts/go/go1.bat -catalogue-ctan /fonts/go -catalogue-date 2014-05-03 10:31:59 +0200 -catalogue-license pd +longdesc This package calculates biological sequence alignment with the +longdesc Gotoh algorithm. The package also provides an interface to +longdesc control various settings including algorithm parameters. +containersize 2632 +containerchecksum 478d51d4f8af849180d1e21ea21c6404f6eb1d13cd70d232f7002f62a588ed2de40e2950699c1bc0e5442069a957b05f3128430ef421311737cf55a6df868a12 +doccontainersize 291976 +doccontainerchecksum 3aa9837e81bc59adaba5b1cc3908738451fefe2645bf1422e0c6b119e4ff94ad85a7c2ddbae798e1e1ced95a530ab95b2f7a5a92da827c9f6d9bdc574b5f3231 +docfiles size=74 + RELOC/doc/latex/gotoh/LICENSE + RELOC/doc/latex/gotoh/README.md details="Readme" + RELOC/doc/latex/gotoh/gotoh.pdf details="Package documentation" +srccontainersize 8224 +srccontainerchecksum 8ae972cc1f0095c442241e5340c3688021253d135167a89c67000c74a53418c48c3fa13b4b2007dbbf598abd1445ef06a9113a32a1fa37b0b8a5dca6c050ba5e +srcfiles size=9 + RELOC/source/latex/gotoh/gotoh.dtx + RELOC/source/latex/gotoh/gotoh.ins +runfiles size=4 + RELOC/tex/latex/gotoh/gotoh.sty +catalogue-contact-repository https://github.com/wtsnjp/Gotoh +catalogue-ctan /macros/latex/contrib/gotoh +catalogue-date 2017-07-07 08:45:27 +0200 +catalogue-license mit +catalogue-topics biology +catalogue-version 1.1 + +name grabbox +category Package +revision 51052 +shortdesc Read an argument into a box and execute the code afterwards +relocated 1 +longdesc The package provides the command \grabbox, which grabs an +longdesc argument into a box and executes the code afterwards. +containersize 1608 +containerchecksum d56aedb2c60216ff18af9cc2f2bce0c646545becf973c7d791db5a17cf593e6677c3bca7134d9d663e6826c249e0ee737128ff68184200f1cf7c09c308508db3 +doccontainersize 353436 +doccontainerchecksum 584d8fc20bb49a9486426eea0c7694461e904375bd9af4d0030394d65c1dae8d97451244decfe3c00a59ee7ba92a5e8b5fcfdbec6668cc1ee3652657b7b04330 +docfiles size=87 + RELOC/doc/latex/grabbox/README.md details="Readme" + RELOC/doc/latex/grabbox/grabbox.pdf details="Package documentation" +srccontainersize 4336 +srccontainerchecksum a82cbee93e9dbc9a2485f13783275304d11920ea201458175dface98da3545b4266be0402f4d39fe3f9f0a0adfdc2210244982e09fed094b7487385b65bb0808 +srcfiles size=4 + RELOC/source/latex/grabbox/grabbox.dtx +runfiles size=1 + RELOC/tex/latex/grabbox/grabbox.sty +catalogue-contact-repository https://gitlass.de/jonathan/grabbox +catalogue-ctan /macros/latex/contrib/grabbox +catalogue-date 2019-05-08 20:23:42 +0200 +catalogue-license lppl1.3c +catalogue-topics boxing +catalogue-version 1.4 name gradientframe category Package revision 21387 -shortdesc Simple gradient frames around objects. +shortdesc Simple gradient frames around objects relocated 1 longdesc The package provides a means of drawing graded frames around longdesc objects. The gradients of the frames are drawn using the color longdesc package. -runfiles size=1 - RELOC/tex/latex/gradientframe/gradientframe.sty +containersize 1368 +containerchecksum 31612230548e2167c7f1d6a13029ecc202675d6ae3e681fd915d38aa116374214916155453616da51ef3dadab06955fcbfa9bc383f12b5008adaa8a60e24e6a1 +doccontainersize 235196 +doccontainerchecksum 8b010be9e222609d13015176dee4bcc196d953caf7a8c1814e49f9e50325bc33362975338241bd5cef27d59516114113bd5ac81e3dcc6e89ea7f4d53465b3cff docfiles size=65 - RELOC/doc/latex/gradientframe/README - RELOC/doc/latex/gradientframe/gradientframe.pdf + RELOC/doc/latex/gradientframe/README details="Readme" + RELOC/doc/latex/gradientframe/gradientframe.pdf details="Package documentation" +srccontainersize 4360 +srccontainerchecksum 7ac2eaaff343101c1e9501104e2be138bbbf85d009c2eff98f10876ee814762ac2198bc800ca43b9573e206241b9e3f196ab24e053078f78138415db8ed8fb51 srcfiles size=4 RELOC/source/latex/gradientframe/gradientframe.dtx +runfiles size=1 + RELOC/tex/latex/gradientframe/gradientframe.sty catalogue-ctan /macros/latex/contrib/gradientframe -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics decoration catalogue-version 0.2 name gradstudentresume category Package -revision 38147 +revision 38832 shortdesc A generic template for graduate student resumes relocated 1 longdesc The package offers a template for graduate students writing an longdesc academic CV. The goal is to create a flexible template that can longdesc be customized based on each specific individual's needs. +containersize 1704 +containerchecksum b66b3b8f7cf16f17758e4dae3bcd45f6e6e5cbc0dcfd6fc42f8dbc08abb572f16b96d5de4ba634b27cd16a1c4177bc62644d3eb5ac6060e66d9ca6d3f5df4eee +doccontainersize 2924 +doccontainerchecksum e7b166b87a5dce9941d6bd931dec91124a118ba127075aedbe70fc9fe415a8083911f90f094ddede551eef197baee9cfa4ab6ac65c8ae081cd8938f872ad7bb2 +docfiles size=3 + RELOC/doc/latex/gradstudentresume/README.txt details="Readme" + RELOC/doc/latex/gradstudentresume/example.tex runfiles size=1 RELOC/tex/latex/gradstudentresume/gradstudentresume.cls -docfiles size=27 - RELOC/doc/latex/gradstudentresume/README.txt - RELOC/doc/latex/gradstudentresume/RESUME15.pdf - RELOC/doc/latex/gradstudentresume/RESUME15.tex catalogue-ctan /macros/latex/contrib/gradstudentresume -catalogue-date 2015-08-18 00:12:40 +0200 -catalogue-license unknown -catalogue-topics dissertation class +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics cv class name grafcet category Package revision 22509 -shortdesc Draw Grafcet/SFC with TikZ. +shortdesc Draw Grafcet/SFC with TikZ relocated 1 longdesc The package provides a library (GRAFCET) that can draw Grafcet longdesc Sequential Function Chart (SFC) diagrams, in accordance with EN longdesc 60848, using Pgf/TikZ. L'objectif de la librairie GRAFCET est longdesc de permettre le trace de grafcet selon la norme EN 60848 a longdesc partir de Pgf/TikZ. -runfiles size=5 - RELOC/tex/latex/grafcet/grafcet.sty +containersize 3780 +containerchecksum d322b1b45762c65232f6f66adcc12955d85d4bfddc08655cba8e11903f6403f2031a78d7e566f4d9b5eaf950aa8d2a53472038e204a1d18517c754c379c60bc6 +doccontainersize 294584 +doccontainerchecksum b02bfb612cd5fd85c1839307a016bfc4c3d472ddbd591d1318bd7c5fcca42cc1200da07f2105ec429768cb0f9270273425b01df1242e475946bd37658e692f41 docfiles size=119 RELOC/doc/latex/grafcet/README - RELOC/doc/latex/grafcet/grafcet.pdf + RELOC/doc/latex/grafcet/grafcet.pdf details="Package documentation" language="fr" RELOC/doc/latex/grafcet/grafcet.tex +runfiles size=5 + RELOC/tex/latex/grafcet/grafcet.sty +catalogue-also tikz-sfc +catalogue-contact-home http://sciences-indus-cpge.papanicola.info/Grafcet-avec-pgf-Tikz catalogue-ctan /graphics/pgf/contrib/grafcet -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-01-17 07:27:29 +0100 catalogue-license lppl1 +catalogue-topics diagram pgf-tikz catalogue-version 1.3.5 +name grant +category Package +revision 41905 +shortdesc Classes for formatting federal grant proposals +relocated 1 +longdesc LaTeX classes for formatting federal grant proposals: grant: +longdesc Base class for formatting grant proposals grant-arl: Army +longdesc Research Laboratory grant-darpa: Defense Advanced Research +longdesc Projects Agency grant-doe: Department of Energy grant-nih: +longdesc National Institutes of Health grant-nrl: Naval Research +longdesc Laboratory grant-nsf: National Science Foundation grant-onr: +longdesc Office of Naval Research +containersize 4260 +containerchecksum 849bb84949f2fc2f766556988eba540ed1a63ffe1d3a16279295cfcc772ab027dc1e9e5d55a9bf834c24e97a0bcdb04bdbfa653c71f99cf55ec3e18a83015a40 +doccontainersize 110264 +doccontainerchecksum bfadcd59264fe3d3a6914267cc9d26c5bd6f7aa2061160a6547b04f448daed041d2c15633a61a246ea7808b778ff32679249f4c68e15b84e8502a454a4cec1dc +docfiles size=32 + RELOC/doc/latex/grant/LICENSE + RELOC/doc/latex/grant/README.md details="Package README" + RELOC/doc/latex/grant/VERSION + RELOC/doc/latex/grant/grant.pdf details="User manual" +srccontainersize 5312 +srccontainerchecksum 183057279f539234df3f3354e0aa569679ec5a265a515dbac71aaf9cdb430d17804c001772a6ae69d7918f248d3d641c1f04740c5e9bc578dd65607cd3e4313a +srcfiles size=7 + RELOC/source/latex/grant/grant.dtx + RELOC/source/latex/grant/grant.ins +runfiles size=10 + RELOC/tex/latex/grant/grant-arl.cls + RELOC/tex/latex/grant/grant-darpa.cls + RELOC/tex/latex/grant/grant-doe.cls + RELOC/tex/latex/grant/grant-nih.cls + RELOC/tex/latex/grant/grant-nrl.cls + RELOC/tex/latex/grant/grant-nsf.cls + RELOC/tex/latex/grant/grant-onr.cls + RELOC/tex/latex/grant/grant.cls +catalogue-ctan /macros/latex/contrib/grant +catalogue-date 2018-01-07 14:49:11 +0100 +catalogue-license mit +catalogue-topics class proposal +catalogue-version 0.0.3 + +name graph35 +category Package +revision 47522 +shortdesc Draw keys and screen items of several Casio calculators +relocated 1 +longdesc This package defines commands to draw the Casio Graph 35 / +longdesc fx-9750GII calculator (and other models). It can draw the whole +longdesc calculator, or parts of it (individual keys, part of the +longdesc screen, etc.). It was written to typeset documents instructing +longdesc stundents how to use their calculator. +containersize 23260 +containerchecksum c9e2cb847614a7c21259b7b4e28ea1134d900049ca55da63990ac1f2c733e3b567bfae48de46b1e4b6b8faa9b4e0d4f9202bb00327ff33a899380dc3496214f1 +doccontainersize 2113596 +doccontainerchecksum 21a04b52c476b78142239e3db4165267b51ba596c2c7a95b175f323cf1e78b0bdcd324f55f817cfd8b2b6b7434200b060b51165e3468ee009d295eed752d1e88 +docfiles size=734 + RELOC/doc/latex/graph35/CHANGELOG.md + RELOC/doc/latex/graph35/LICENSE.txt + RELOC/doc/latex/graph35/README.md details="Readme" + RELOC/doc/latex/graph35/graph35-en.pdf details="Package documentation in English" + RELOC/doc/latex/graph35/graph35-fr.pdf details="Package documentation in French" +srccontainersize 13016 +srccontainerchecksum 4c2f073a22fea162e1c3347a74c60f680d5d2088143fd1e6634d4bf2884131c6c8a8c267531a04db705acf2bf2f756607d8164cf81659259f92ba600c7b22427 +srcfiles size=18 + RELOC/source/latex/graph35/graph35.dtx + RELOC/source/latex/graph35/graph35.ins +runfiles size=66 + RELOC/tex/latex/graph35/graph35-keys.sty + RELOC/tex/latex/graph35/graph35-pixelart.sty + RELOC/tex/latex/graph35/graph35.sty +catalogue-contact-bugs https://framagit.org/spalax/graph35/issues +catalogue-contact-home https://framagit.org/spalax/graph35 +catalogue-contact-repository https://framagit.org/spalax/graph35 +catalogue-contact-support https://framagit.org/spalax/graph35/issues +catalogue-ctan /graphics/graph35 +catalogue-date 2018-04-29 07:15:59 +0200 +catalogue-license lppl1.3 +catalogue-topics graphics teaching +catalogue-version 0.1.1 + name graphbox category Package -revision 35075 -shortdesc Extend graphicx to improve placement of graphics. +revision 46360 +shortdesc Extend graphicx to improve placement of graphics relocated 1 longdesc Graphbox is an extension of the standard graphicx LaTeX2e longdesc package to allow the placement of graphics relative to the @@ -73210,103 +119819,63 @@ longdesc is convenient for using graphics as elements of (mathematical) longdesc formulae. Options for shifting, smashing and hiding the longdesc graphics may be useful in support, for example, of the beamer longdesc framework. -runfiles size=2 - RELOC/tex/latex/graphbox/graphbox.sty -docfiles size=76 - RELOC/doc/latex/graphbox/README +containersize 1912 +containerchecksum d78f870b4cd54f7c6819413fd8acf0e3e1fe9b3b44f3b68ff3a20ad51aa6fde69c52b336b57285db1f6d5465204beb8a1179f918a71922889297cf6925282d14 +doccontainersize 274736 +doccontainerchecksum 342c9018116e80ebf3414358320df55e456581630e7e266ff868e6c624baec0b7209ad3895d3232cd0bf35a9677b8c3db800b7772606afa928ed3424ac16c71f +docfiles size=73 + RELOC/doc/latex/graphbox/README.txt details="Readme" RELOC/doc/latex/graphbox/gboxsamp.mps RELOC/doc/latex/graphbox/gboxsamp.tex - RELOC/doc/latex/graphbox/graphbox.pdf + RELOC/doc/latex/graphbox/graphbox.pdf details="Package documentation" +srccontainersize 8612 +srccontainerchecksum 1e97e3a1a91d007309c091fde6f05a7c1b062b715ee1f35051b20ad5fa119ccd415fa3741cf0d5e4f2a090ee9acb090c06b5467294ca26ac8f25a11971ca7530 srcfiles size=9 RELOC/source/latex/graphbox/graphbox.dtx RELOC/source/latex/graphbox/graphbox.ins +runfiles size=2 + RELOC/tex/latex/graphbox/graphbox.sty catalogue-ctan /macros/latex/contrib/graphbox -catalogue-date 2014-09-09 12:12:26 +0200 +catalogue-date 2018-01-17 14:05:37 +0100 catalogue-license lppl1.3 -catalogue-version 1.0 - -name graphics-pln -category Package -revision 16917 -shortdesc LaTeX-style graphics for Plain TeX users. -relocated 1 -longdesc The Plain TeX graphics package is mostly a thin shell around -longdesc the LaTeX graphicx and color packages, with support of the -longdesc LaTeX-isms in those packages provided by miniltx (which is the -longdesc largest part of the bundle). The bundle also contains a file -longdesc "picture.tex", which is a wrapper around the autopict.sty, and -longdesc provides the LaTeX picture mode to Plain TeX users. -runfiles size=12 - RELOC/tex/plain/graphics-pln/autopict.sty - RELOC/tex/plain/graphics-pln/color.tex - RELOC/tex/plain/graphics-pln/graphicx.tex - RELOC/tex/plain/graphics-pln/miniltx.tex - RELOC/tex/plain/graphics-pln/picture.tex - RELOC/tex/plain/graphics-pln/psfrag.tex -docfiles size=5 - RELOC/doc/plain/graphics-pln/00readme.txt - RELOC/doc/plain/graphics-pln/exmplcol.tex - RELOC/doc/plain/graphics-pln/exmplgrf.tex - RELOC/doc/plain/graphics-pln/exmplpfg.tex - RELOC/doc/plain/graphics-pln/exmplpic.tex -srcfiles size=1 - RELOC/source/plain/graphics-pln/autopict.ins -catalogue-ctan /macros/plain/graphics -catalogue-date 2013-01-29 15:35:44 +0100 -catalogue-license lppl +catalogue-topics graphics graphics-incl +catalogue-version 1.1 name graphics category Package -revision 36834 -shortdesc Standard LaTeX graphics. -relocated 1 -longdesc The package was designed to accommodate all needs for inclusion -longdesc of graphics in LaTeX documents, replacing many earlier packages -longdesc used in LaTeX 2.09. The package aims to give a consistent -longdesc interface to including the file types that are understood in -longdesc your output, by use of 'printer drivers' (now known, simply, as -longdesc 'drivers'). The distribtion of the package contains several -longdesc drivers, but others (for example, pdfTeX) are distributed -longdesc separately. The package also offers several means of -longdesc manipulating graphics in the course of inserting them into a -longdesc document (for example, rotation and scaling). For extended -longdesc documentation see epslatex. The package is part of the graphics -longdesc bundle, which is one of the collections in the LaTeX 'required' -longdesc set of packages. -runfiles size=30 - RELOC/tex/latex/graphics/color.sty - RELOC/tex/latex/graphics/dvipdf.def - RELOC/tex/latex/graphics/dvips.def - RELOC/tex/latex/graphics/dvipsnam.def - RELOC/tex/latex/graphics/dvipsone.def - RELOC/tex/latex/graphics/dviwin.def - RELOC/tex/latex/graphics/emtex.def - RELOC/tex/latex/graphics/epsfig.sty - RELOC/tex/latex/graphics/graphics.sty - RELOC/tex/latex/graphics/graphicx.sty - RELOC/tex/latex/graphics/keyval.sty - RELOC/tex/latex/graphics/lscape.sty - RELOC/tex/latex/graphics/pctex32.def - RELOC/tex/latex/graphics/pctexhp.def - RELOC/tex/latex/graphics/pctexps.def - RELOC/tex/latex/graphics/pctexwin.def - RELOC/tex/latex/graphics/tcidvi.def - RELOC/tex/latex/graphics/trig.sty - RELOC/tex/latex/graphics/truetex.def -docfiles size=510 - RELOC/doc/latex/graphics/README +revision 47350 +catalogue latex-graphics +shortdesc The LaTeX standard graphics bundle +relocated 1 +longdesc This is a collection of LaTeX packages for: producing colour +longdesc including graphics (eg PostScript) files rotation and scaling +longdesc of text in LaTeX documents. It comprises the packages color, +longdesc graphics, graphicx, trig, epsfig, keyval, and lscape. +depend graphics-cfg +containersize 14580 +containerchecksum 0ae7fab6fc82e3aa2b94110c5f7b7a86a0e1e47396fda91882f87c55a9b733d1d80f48058fb94c5024497faa40691e41c71efb87d0bb7c91c4b4667fc1ce08b2 +doccontainersize 1998360 +doccontainerchecksum 2e22b113f4f07783652dd25845a2ef6c7f804387b160b33bc2f668f9a1f392a6a9910a066d0ddf2dc4119ce9a975348d30f7230d416aaa377b5b2b728e0ee3db +docfiles size=622 + RELOC/doc/latex/graphics/README.md details="Readme" + RELOC/doc/latex/graphics/cat.eps RELOC/doc/latex/graphics/changes.txt RELOC/doc/latex/graphics/color.pdf RELOC/doc/latex/graphics/drivers.pdf RELOC/doc/latex/graphics/epsfig.pdf RELOC/doc/latex/graphics/graphics.pdf RELOC/doc/latex/graphics/graphicx.pdf - RELOC/doc/latex/graphics/grfguide.pdf + RELOC/doc/latex/graphics/grfguide.pdf details="Bundle documentation" RELOC/doc/latex/graphics/grfguide.tex RELOC/doc/latex/graphics/keyval.pdf RELOC/doc/latex/graphics/lscape.pdf + RELOC/doc/latex/graphics/rotating.pdf + RELOC/doc/latex/graphics/rotex.pdf + RELOC/doc/latex/graphics/rotex.tex RELOC/doc/latex/graphics/trig.pdf -srcfiles size=55 +srccontainersize 51020 +srccontainerchecksum 8af27232e41a1176fbbf20b38c600f37ef2b43d5a33a28c4941b764c81ce9bc2a30824e92401625fdd2a83c228df447c7d1aaae0e3648400adde492907a8991c +srcfiles size=62 RELOC/source/latex/graphics/color.dtx RELOC/source/latex/graphics/drivers.dtx RELOC/source/latex/graphics/epsfig.dtx @@ -73316,15 +119885,168 @@ srcfiles size=55 RELOC/source/latex/graphics/graphicx.dtx RELOC/source/latex/graphics/keyval.dtx RELOC/source/latex/graphics/lscape.dtx + RELOC/source/latex/graphics/rotating.dtx RELOC/source/latex/graphics/trig.dtx +runfiles size=31 + RELOC/tex/latex/graphics/color.sty + RELOC/tex/latex/graphics/dvipdf.def + RELOC/tex/latex/graphics/dvipsnam.def + RELOC/tex/latex/graphics/dvipsone.def + RELOC/tex/latex/graphics/dviwin.def + RELOC/tex/latex/graphics/emtex.def + RELOC/tex/latex/graphics/epsfig.sty + RELOC/tex/latex/graphics/graphics.sty + RELOC/tex/latex/graphics/graphicx.sty + RELOC/tex/latex/graphics/keyval.sty + RELOC/tex/latex/graphics/lscape.sty + RELOC/tex/latex/graphics/pctex32.def + RELOC/tex/latex/graphics/pctexhp.def + RELOC/tex/latex/graphics/pctexps.def + RELOC/tex/latex/graphics/pctexwin.def + RELOC/tex/latex/graphics/rotating.sty + RELOC/tex/latex/graphics/tcidvi.def + RELOC/tex/latex/graphics/trig.sty + RELOC/tex/latex/graphics/truetex.def +catalogue-contact-bugs https://www.latex-project.org/bugs/ +catalogue-contact-home https://www.latex-project.org/ catalogue-ctan /macros/latex/required/graphics -catalogue-date 2015-04-13 06:00:27 +0200 -catalogue-license lppl1.3 +catalogue-date 2018-04-07 07:05:08 +0200 +catalogue-license lppl1.3c +catalogue-topics collection + +name graphics-cfg +category Package +revision 41448 +shortdesc Sample configuration files for LaTeX color and graphics +relocated 1 +longdesc This bundle includes color.cfg and graphics.cfg files that set +longdesc default "driver" options for the color and graphics packages. +longdesc It contains support for defaulting the new LuaTeX option which +longdesc was added to graphics and color in the 2016-02-01 release. The +longdesc LuaTeX option is only used for LuaTeX versions from 0.87, older +longdesc versions use the pdfTeX option as before. +containersize 1160 +containerchecksum e1015d360b56f63f1b9790daf16e2101e6af995bd1e45288ea604ae94e20196cab22e7e54d318aa79fa386123032a928be70a57154d409321e04f03ecf97ab75 +doccontainersize 876 +doccontainerchecksum dbcfdf635c2816f305205915119e1f6acba816c17b683622a8a32c361d75338376426b258c1fa3271abc1d7ad2a520ac85092a7b3bfbac6463106449bc906ae4 +docfiles size=1 + RELOC/doc/latex/graphics-cfg/README.md details="Readme" +runfiles size=2 + RELOC/tex/latex/graphics-cfg/color.cfg + RELOC/tex/latex/graphics-cfg/graphics.cfg +catalogue-also color graphics +catalogue-contact-repository https://github.com/latex3/graphics-cfg +catalogue-ctan /macros/latex/contrib/graphics-cfg +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license pd +catalogue-topics graphics colour + +name graphics-def +category Package +revision 46267 +shortdesc Colour and graphics option files +relocated 1 +longdesc This bundle is a combined distribution consisting of dvips.def, +longdesc pdftex.def, luatex.def, xetex.def, dvipdfmx.def, and +longdesc dvisvgm.def driver option files for the LaTeX graphics and +longdesc color packages. It is hoped that by combining their source +longdesc repositories at https://github.com/latex3/graphics-def it will +longdesc be easier to coordinate updates. +containersize 9660 +containerchecksum ce101b28d6a62698636e03bb1f79ab7450552d15603e1d8df416b2fb55d397b3d696152c05e84e12415790b7e634322eeb6266435b0d9ff13fdac28ab164cddf +doccontainersize 608 +doccontainerchecksum 6c8d0cb49cfe1a5abf60a1473da509e34685c4ee2525a3d0e895b9513550842ed420d2bf6e949e8cbbaf543ad32e18fe1fd8434b16e46e2bcbd3ff7f50154e99 +docfiles size=1 + RELOC/doc/latex/graphics-def/README.md details="Readme" +runfiles size=21 + RELOC/tex/latex/graphics-def/dvipdfmx.def + RELOC/tex/latex/graphics-def/dvips.def + RELOC/tex/latex/graphics-def/dvisvgm.def + RELOC/tex/latex/graphics-def/luatex.def + RELOC/tex/latex/graphics-def/pdftex.def + RELOC/tex/latex/graphics-def/xetex.def +catalogue-contact-bugs https://github.com/latex3/graphics-def/issues +catalogue-contact-home https://www.latex-project.org/ +catalogue-contact-repository https://github.com/latex3/graphics-def +catalogue-ctan /macros/latex/contrib/graphics-def +catalogue-date 2018-01-09 10:47:08 +0100 +catalogue-license lppl1.3c +catalogue-topics graphics-drv + +name graphics-pln +category Package +revision 46363 +shortdesc LaTeX-style graphics for Plain TeX users +relocated 1 +longdesc The Plain TeX graphics package is mostly a thin shell around +longdesc the LaTeX graphicx and color packages, with support of the +longdesc LaTeX-isms in those packages provided by miniltx (which is the +longdesc largest part of the bundle). The bundle also contains a file +longdesc "picture.tex", which is a wrapper around the autopict.sty, and +longdesc provides the LaTeX picture mode to Plain TeX users. +containersize 8476 +containerchecksum fa45e825390e1a7db1bde443e24a73fd84ae45c1403391bd2d4c944820a3bedddf388a29998f92af7c3c22c895fc2580f827808e84ca1ba334bf5bdce38f37ff +doccontainersize 2088 +doccontainerchecksum 8df46cfbb8fd1a6c2b921030645f70795923fa21046dc209414fe3302f0c920cd47b432df22e0bd77574834dc67ee68fe4f307d79ccfdb95c1f8bcf0c6d5691c +docfiles size=5 + RELOC/doc/plain/graphics-pln/README.txt details="Readme" + RELOC/doc/plain/graphics-pln/exmplcol.tex + RELOC/doc/plain/graphics-pln/exmplgrf.tex + RELOC/doc/plain/graphics-pln/exmplpfg.tex + RELOC/doc/plain/graphics-pln/exmplpic.tex +runfiles size=12 + RELOC/tex/plain/graphics-pln/autopict.sty + RELOC/tex/plain/graphics-pln/color.tex + RELOC/tex/plain/graphics-pln/graphicx.tex + RELOC/tex/plain/graphics-pln/miniltx.tex + RELOC/tex/plain/graphics-pln/picture.tex + RELOC/tex/plain/graphics-pln/psfrag.tex +catalogue-contact-bugs https://github.com/davidcarlisle/dpctex/issues +catalogue-contact-home https://github.com/davidcarlisle/dpctex/ +catalogue-contact-repository https://github.com/davidcarlisle/dpctex/tree/master/graphics-pln +catalogue-ctan /macros/plain/graphics +catalogue-date 2018-01-17 16:05:35 +0100 +catalogue-license lppl1 +catalogue-topics graphics-incl plain-ext + +name graphicx-psmin +category Package +revision 15878 +shortdesc Reduce size of PostScript files by not repeating images +relocated 1 +longdesc The package is an extension of the standard latex-graphics +longdesc bundle and provides a way to include repeated PostScript +longdesc graphics (ps, eps) only once in a PostScript document. This +longdesc leads to smaller PostScript documents when having, for +longdesc instance, a logo on every page. The package only works when +longdesc post-processed with dvips, which should be version 5.95b or +longdesc later. The difference for a resulting distilled PDF file is +longdesc minimal (as Ghostscript and Adobe Distiller only include a +longdesc single copy of each graphics file, anyway). +containersize 2668 +containerchecksum 852b917dd2f4e4366516db9e7e22a6f34fecd1b69dddf687bd79b1dd995b1bb94c8372b85214e4d4c668a4a8d7d84a8c6e246a09e9d36937cec380c65a14c12f +doccontainersize 89976 +doccontainerchecksum 7b2872618992fa6363b8a5a4e1d72f51779372475e7b7bf8ec3c5b9b571e77c1d80be42f2958d7c89ee4c09ce87f7c3fb76533010b0266d5108cdb89a81c49f6 +docfiles size=26 + RELOC/doc/latex/graphicx-psmin/README details="Package README" + RELOC/doc/latex/graphicx-psmin/graphicx-psmin.pdf details="Package documentation" +srccontainersize 8108 +srccontainerchecksum 7916831178f04abfa1e9a87b993880cdaf678f567fd9bfe37a05529296c7b19ae9d1227711b7ecb829542aa49bbbe94db523ab1492e649304091a70e942ce9a6 +srcfiles size=6 + RELOC/source/latex/graphicx-psmin/graphicx-psmin.dtx +runfiles size=2 + RELOC/tex/latex/graphicx-psmin/graphicx-psmin.sty +catalogue-also graphics graphicx +catalogue-ctan /macros/latex/contrib/graphicx-psmin +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-incl +catalogue-version 1.1 name graphicxbox category Package revision 32630 -shortdesc Insert a graphical image as a background. +shortdesc Insert a graphical image as a background relocated 1 longdesc The package defines two new commands \graphicxbox and longdesc \fgraphicxbox, which are companions to \colorbox and \fcolorbox @@ -73332,11 +120054,13 @@ longdesc of the Standard LaTeX color package. The \graphicxbox command longdesc inserts a graphical image as a background rather than a longdesc background color, while \fgraphicxbox does the same thing, but longdesc also draws a colored frame around the box. -runfiles size=1 - RELOC/tex/latex/graphicxbox/graphicxbox.sty +containersize 1400 +containerchecksum 032168dcdd5eab142cd6bf24eaccc3fc6482e3eba7e0fd2600322b4a6f2bcb1ceb8e30a64dd811b500af37c94e7de3ec25c60c437ba9afa7ba4d8a9af8b79a19 +doccontainersize 438064 +doccontainerchecksum 6fd432f48c05c486963b8058025dda2a65b5cfa87b6ae03581009dcdeafd26396bf16e04fecd0e68a896a99d5c3e09e43902bcfd3f58fa9a9b393cf64406e160 docfiles size=313 - RELOC/doc/latex/graphicxbox/README - RELOC/doc/latex/graphicxbox/doc/graphicxbox.pdf + RELOC/doc/latex/graphicxbox/README details="Readme" + RELOC/doc/latex/graphicxbox/doc/graphicxbox.pdf details="Package documentation" RELOC/doc/latex/graphicxbox/examples/graphics/IndianBlanket.eps RELOC/doc/latex/graphicxbox/examples/graphics/IndianBlanket.pdf RELOC/doc/latex/graphicxbox/examples/graphics/Wood-Brown.eps @@ -73346,61 +120070,72 @@ docfiles size=313 RELOC/doc/latex/graphicxbox/examples/graphics/grandcanyon.pdf RELOC/doc/latex/graphicxbox/examples/graphics/news_bgr.eps RELOC/doc/latex/graphicxbox/examples/graphics/news_bgr.pdf - RELOC/doc/latex/graphicxbox/examples/grfxbox_tst.pdf + RELOC/doc/latex/graphicxbox/examples/grfxbox_tst.pdf details="Package example" RELOC/doc/latex/graphicxbox/examples/grfxbox_tst.tex RELOC/doc/latex/graphicxbox/examples/grfxbox_tst_indians.pdf RELOC/doc/latex/graphicxbox/examples/grfxbox_tst_indians.tex RELOC/doc/latex/graphicxbox/examples/grfxbox_tst_sp.pdf RELOC/doc/latex/graphicxbox/examples/grfxbox_tst_sp.tex +srccontainersize 3692 +srccontainerchecksum a563a3c1e81496da30aca7256b5b2afc57d9df9e9aab2b6f5bf908691961f736a616f7c5f86647b94a6dcf36d3732bd68b75f5a4ba7d7d049bb67789ec48449a srcfiles size=3 RELOC/source/latex/graphicxbox/graphicxbox.dtx RELOC/source/latex/graphicxbox/graphicxbox.ins +runfiles size=1 + RELOC/tex/latex/graphicxbox/graphicxbox.sty +catalogue-also graphicxsp color catalogue-ctan /macros/latex/contrib/graphicxbox -catalogue-date 2015-03-25 06:16:22 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics graphics-incl boxing catalogue-version 1.0 -name graphicx-psmin +name graphicxpsd category Package -revision 15878 -shortdesc Reduce size of PostScript files by not repeating images. +revision 46477 +shortdesc Adobe Photoshop Data format (PSD) support for graphicx package relocated 1 -longdesc The package is an extension of the standard graphics bundle and -longdesc provides a way to include repeated PostScript graphics (ps, -longdesc eps) only once in a PostScript document. This leads to smaller -longdesc PostScript documents when having, for instance, a logo on every -longdesc page. The package only works when post-processed with dvips, -longdesc which should eb version 5.95b or later. The difference for a -longdesc resulting distilled PDF file is minimal (as Ghostscript and -longdesc Adobe Distiller only include a single copy of each graphics -longdesc file, anyway). -runfiles size=2 - RELOC/tex/latex/graphicx-psmin/graphicx-psmin.sty -docfiles size=26 - RELOC/doc/latex/graphicx-psmin/README - RELOC/doc/latex/graphicx-psmin/graphicx-psmin.pdf -srcfiles size=6 - RELOC/source/latex/graphicx-psmin/graphicx-psmin.dtx -catalogue-ctan /macros/latex/contrib/graphicx-psmin -catalogue-date 2013-01-29 15:35:44 +0100 -catalogue-license lppl +longdesc This package provides Adobe Photoshop Data format (PSD) support +longdesc for graphicx package with sips (Darwin/macOS) / convert +longdesc (ImageMagick) command. +containersize 1776 +containerchecksum b9a6cd054b8b2bf80372d1e4b7d8a29e1d0c6d0bf0b3d67d961e37ddb433a73678fbf99cc6f2b00d94e6111871b0b267b8541762b52100ee7ead3ebaa6257543 +doccontainersize 404736 +doccontainerchecksum 61d86c6eacc90a74a349eb52bbc7ababf6aa7dbd881a22ab39e06c0abdc6b8498cca525c431b2057245b294096a01a22d40c9dadbea91565b660f59c7b08120e +docfiles size=254 + RELOC/doc/latex/graphicxpsd/LICENSE + RELOC/doc/latex/graphicxpsd/README.md details="Readme" + RELOC/doc/latex/graphicxpsd/graphicxpsd.pdf details="Package documentation" + RELOC/doc/latex/graphicxpsd/graphicxpsd.tex + RELOC/doc/latex/graphicxpsd/test-gin-rule-psd.tex + RELOC/doc/latex/graphicxpsd/tigerpsdfmt.psd +runfiles size=1 + RELOC/tex/latex/graphicxpsd/graphicxpsd.sty +catalogue-also graphicx +catalogue-contact-repository https://github.com/munepi/graphicxpsd +catalogue-ctan /macros/latex/contrib/graphicxpsd +catalogue-date 2018-01-30 05:26:20 +0100 +catalogue-license mit +catalogue-topics graphics-incl catalogue-version 1.1 name graphviz category Package revision 31517 -shortdesc Write graphviz (dot+neato) inline in LaTeX documents. +shortdesc Write graphviz (dot+neato) inline in LaTeX documents relocated 1 longdesc The package allows inline use of graphviz code, in a LaTeX longdesc document. -runfiles size=1 - RELOC/tex/latex/graphviz/graphviz.sty +containersize 1940 +containerchecksum 9065f2316f423697c8f815ddcf91254f22e44d89964196d971c3a42192bb1e20f9152c5a98375060daffbb295f8885899d2800728de31ecf60e1a25cf7bce31e +doccontainersize 88484 +doccontainerchecksum 688f17db6771785753797edccd141470517dbb2ee875e2a70769754bbd314cf8af46b3dd89d5c340e7da7d81d86895894baa2b9e8facc0a54ad91cd1a3947722 docfiles size=40 RELOC/doc/latex/graphviz/LICENSE RELOC/doc/latex/graphviz/Makefile - RELOC/doc/latex/graphviz/README + RELOC/doc/latex/graphviz/README details="Readme" RELOC/doc/latex/graphviz/README.md - RELOC/doc/latex/graphviz/graphviz.pdf + RELOC/doc/latex/graphviz/graphviz.pdf details="Package documentation" RELOC/doc/latex/graphviz/test/Makefile RELOC/doc/latex/graphviz/test/body.tex RELOC/doc/latex/graphviz/test/pdf-singlefile-tmpdir.tex @@ -73408,57 +120143,76 @@ docfiles size=40 RELOC/doc/latex/graphviz/test/pdf-tmpdir.tex RELOC/doc/latex/graphviz/test/pdf.tex RELOC/doc/latex/graphviz/test/ps.tex +srccontainersize 6124 +srccontainerchecksum c3e4fc091b5b64924e886435667049ec2dbf91c20fd7d1678f40990e66aa9d94fd7b40b30dd359be0fd1fba0e169b29058337ede8232189dad3dab7bb34af869 srcfiles size=6 RELOC/source/latex/graphviz/graphviz.dtx RELOC/source/latex/graphviz/graphviz.ins +runfiles size=1 + RELOC/tex/latex/graphviz/graphviz.sty +catalogue-also dottex +catalogue-contact-home http://www.graphviz.org catalogue-ctan /macros/latex/contrib/graphviz -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 +catalogue-topics graphics-inline catalogue-version 0.94 -name greekdates -category Package -revision 15878 -shortdesc Provides ancient Greek day and month names, dates, etc. -relocated 1 -longdesc The package provides easy access to ancient Greek names of days -longdesc and months of various regions of Greece. In case the historical -longdesc information about a region is not complete, we use the Athenian -longdesc name of the month. Moreover commands and options are provided, -longdesc in order to completely switch to the "ancient way", commands -longdesc such as \today. -runfiles size=6 - RELOC/tex/latex/greekdates/greekdates.sty -docfiles size=29 - RELOC/doc/latex/greekdates/README - RELOC/doc/latex/greekdates/greekdates.pdf -srcfiles size=10 - RELOC/source/latex/greekdates/greekdates.dtx - RELOC/source/latex/greekdates/greekdates.ins -catalogue-ctan /macros/latex/contrib/greekdates -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 +name grayhints +category Package +revision 49052 +shortdesc Produce 'gray hints' to a variable text field +relocated 1 +longdesc The package provides JavaScript code snippets to create 'gray +longdesc hints'. Gray hints, as the author terms them, are text that +longdesc appears initially in a text field that gives a short hint as to +longdesc what the contents of the text field should be. For example, a +longdesc text field might contain the hint 'First Name', or a date field +longdesc might read 'yyyy/mm/dd'. As soon as the field comes into focus, +longdesc the hint disappears. It reappears when the field is blurred and +longdesc the user did not enter any text into the field. The package +longdesc works for dvips/Distiller, pdfLaTeX, LuaLaTeX, and XeLaTeX. +containersize 3296 +containerchecksum 45d0736b5b600aa3ae524e0ff2471846cf48105464710fc7bb7f8d27326275d1accc63b5a0726c5d43e5af487207eba105e1d5e4f59913a1b27d33e950122574 +doccontainersize 496384 +doccontainerchecksum 85a6b8e44ec045ec00b7526f034e5b15d71fc8e439bfbbd43e1c8f85d4400318d8dfeee4bece211705c351e2b5afc9ddc89073fa14c1d90756bdf458d7b5b100 +docfiles size=166 + RELOC/doc/latex/grayhints/README.md details="Readme" + RELOC/doc/latex/grayhints/doc/grayhints.pdf + RELOC/doc/latex/grayhints/doc/grayhints_man.pdf details="Package documentation" + RELOC/doc/latex/grayhints/doc/grayhints_man.tex + RELOC/doc/latex/grayhints/examples/gh-eforms.pdf + RELOC/doc/latex/grayhints/examples/gh-eforms.tex + RELOC/doc/latex/grayhints/examples/gh-fmts-eforms.tex + RELOC/doc/latex/grayhints/examples/gh-fmts-hyperref.tex + RELOC/doc/latex/grayhints/examples/gh-hyperref.tex +srccontainersize 7708 +srccontainerchecksum 7342b60e1957297f41970fa2af45a8736f438e6560e4cb6bd279516fa40ca283d7cd60e5faad2959aba12958c0fa70a95d94bb9c48e7ad47956bbc646af82173 +srcfiles size=8 + RELOC/source/latex/grayhints/grayhints.dtx + RELOC/source/latex/grayhints/grayhints.ins +runfiles size=3 + RELOC/tex/latex/grayhints/grayhints.sty +catalogue-ctan /macros/latex/contrib/grayhints +catalogue-date 2018-11-03 09:41:55 +0100 +catalogue-license lppl1.2 +catalogue-topics misc-support pdf-forms adobe-distiller name greek-fontenc category Package -revision 38297 +revision 39606 shortdesc LICR macros and encoding definition files for Greek relocated 1 longdesc The package provides Greek LICR macro definitions and encoding longdesc definition files for Greek text font encodings for use with longdesc fontenc. -runfiles size=44 - RELOC/tex/latex/greek-fontenc/alphabeta-euenc.def - RELOC/tex/latex/greek-fontenc/alphabeta-lgr.def - RELOC/tex/latex/greek-fontenc/alphabeta.sty - RELOC/tex/latex/greek-fontenc/greek-euenc.def - RELOC/tex/latex/greek-fontenc/greek-fontenc.def - RELOC/tex/latex/greek-fontenc/lgrenc.def - RELOC/tex/latex/greek-fontenc/textalpha.sty -docfiles size=630 - RELOC/doc/latex/greek-fontenc/README - RELOC/doc/latex/greek-fontenc/README.html +containersize 25080 +containerchecksum fcc0956923810ab12cfe6032ecf44fcf8409e3bed7a83fef62c97987353663cb02d3e9fa77f2cc6aa71f6bb1c7ee95557ab809266ae33c59b645cb1fb48450b6 +doccontainersize 1755196 +doccontainerchecksum 23cba978fb1e4981aaad6833fd24031324e2e93fb4a3aed052c1ede99bd122c7f674503f13d8043d37c782d44d68505b5ab72fac2777c1b9ee2bc0a1ddfc897c +docfiles size=558 + RELOC/doc/latex/greek-fontenc/README details="Readme" + RELOC/doc/latex/greek-fontenc/README.html details="Readme (HTML)" RELOC/doc/latex/greek-fontenc/alphabeta-doc.pdf RELOC/doc/latex/greek-fontenc/alphabeta-doc.tex RELOC/doc/latex/greek-fontenc/alphabeta-euenc.def.html @@ -73479,108 +120233,491 @@ docfiles size=630 RELOC/doc/latex/greek-fontenc/lgrenc.def.html RELOC/doc/latex/greek-fontenc/test-active-semicolon.pdf RELOC/doc/latex/greek-fontenc/test-nameclashes.pdf - RELOC/doc/latex/greek-fontenc/textalpha-doc.html RELOC/doc/latex/greek-fontenc/textalpha-doc.pdf RELOC/doc/latex/greek-fontenc/textalpha-doc.tex RELOC/doc/latex/greek-fontenc/textalpha.sty.html +runfiles size=44 + RELOC/tex/latex/greek-fontenc/alphabeta-euenc.def + RELOC/tex/latex/greek-fontenc/alphabeta-lgr.def + RELOC/tex/latex/greek-fontenc/alphabeta.sty + RELOC/tex/latex/greek-fontenc/greek-euenc.def + RELOC/tex/latex/greek-fontenc/greek-fontenc.def + RELOC/tex/latex/greek-fontenc/lgrenc.def + RELOC/tex/latex/greek-fontenc/textalpha.sty catalogue-also lgrx catalogue-ctan /language/greek/greek-fontenc -catalogue-date 2015-09-04 15:15:28 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 catalogue-topics greek inputenc -catalogue-version 0.13 +catalogue-version 0.13.2 name greek-inputenc category Package -revision 38080 +revision 40613 shortdesc Greek encoding support for inputenc relocated 1 longdesc The bundle provides UTF-8, Macintosh Greek encoding and ISO longdesc 8859-7 definition files for use with inputenc. -runfiles size=12 - RELOC/tex/latex/greek-inputenc/iso-8859-7.def - RELOC/tex/latex/greek-inputenc/lgrenc.dfu - RELOC/tex/latex/greek-inputenc/macgreek.def +containersize 6240 +containerchecksum 870daae8063438230d37a4a22be5cf402f3449a7c91193cd829aec7cc470c672ec1cff52405bf23c41e032d591a34be68db6240d909c6d59f534d137ae582ab1 +doccontainersize 413708 +doccontainerchecksum 8f2856fbce187fe5ff1e199d3df2993885d3bf19aa08c0db13304e19c5b933a4036842325c16669f7f31fb78cc924b7957e7765812a4e2b99fef8039499a6f16 docfiles size=130 - RELOC/doc/latex/greek-inputenc/README - RELOC/doc/latex/greek-inputenc/README.html - RELOC/doc/latex/greek-inputenc/greek-utf8.pdf + RELOC/doc/latex/greek-inputenc/README details="Readme" + RELOC/doc/latex/greek-inputenc/README.html details="Readme (HTML)" + RELOC/doc/latex/greek-inputenc/greek-utf8.pdf details="Test, demonstrating the range covered" RELOC/doc/latex/greek-inputenc/greek-utf8.tex RELOC/doc/latex/greek-inputenc/lgrenc.dfu.html RELOC/doc/latex/greek-inputenc/test-iso-8859-7.pdf RELOC/doc/latex/greek-inputenc/test-iso-8859-7.tex RELOC/doc/latex/greek-inputenc/unicode-licr.txt +runfiles size=12 + RELOC/tex/latex/greek-inputenc/iso-8859-7.def + RELOC/tex/latex/greek-inputenc/lgrenc.dfu + RELOC/tex/latex/greek-inputenc/macgreek.def catalogue-ctan /language/greek/greek-inputenc -catalogue-date 2015-08-08 10:58:05 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 catalogue-topics inputenc greek catalogue-version 1.6 +name greekdates +category Package +revision 15878 +shortdesc Provides ancient Greek day and month names, dates, etc +relocated 1 +longdesc The package provides easy access to ancient Greek names of days +longdesc and months of various regions of Greece. In case the historical +longdesc information about a region is not complete, we use the Athenian +longdesc name of the month. Moreover commands and options are provided, +longdesc in order to completely switch to the "ancient way", commands +longdesc such as \today. +containersize 3820 +containerchecksum 7f350b4db9578f9020b28bc217e508574b697749c1d2e10c9de9c6499e26605da8334583ea7fb56d74bae77bc30e5835653014f5f8f594d3f35d04478ccffa9c +doccontainersize 98112 +doccontainerchecksum 979353f7cdeb127e12388e1eeea4903a929d911f6f8fd42cd814b6cbea09a64d0ab9c8118968bf218330dfae64f9147621d23d2955fb85291f484d0b5eb92a00 +docfiles size=29 + RELOC/doc/latex/greekdates/README details="Readme" + RELOC/doc/latex/greekdates/greekdates.pdf details="Package documentation" +srccontainersize 7276 +srccontainerchecksum 16a5fe04bd6a598a09c7f326f6848074782e8801d0723366e5ae2b1ae51580319210c64f5e7dbae7eca5cfe3573b0f24d689c802d9594d18dc7c8f4126d9ff49 +srcfiles size=10 + RELOC/source/latex/greekdates/greekdates.dtx + RELOC/source/latex/greekdates/greekdates.ins +runfiles size=6 + RELOC/tex/latex/greekdates/greekdates.sty +catalogue-ctan /macros/latex/contrib/greekdates +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics date-time greek +catalogue-version 1.0 + name greektex category Package revision 28327 -shortdesc Fonts for typesetting Greek/English documents. +shortdesc Fonts for typesetting Greek/English documents relocated 1 longdesc The fonts are based on Silvio Levy's classical Greek fonts; longdesc macros and Greek hyphenation patterns for the fonts' encoding longdesc are also provided. -runfiles size=7 - RELOC/tex/latex/greektex/greektex.sty +containersize 6016 +containerchecksum d7aeb9640061341ed39a71f7f69036f892bbe60b9db2236660e163b42fede81d6be58627b0163d3a183c120c9c8fa54f91a1a036ed9e50d2a72d5eac7f8a79a5 +doccontainersize 311284 +doccontainerchecksum b58305d403a58a60ac0cd6ebb60afe3058430eae15774895e03e41b331824673c128c5f06b583525e2311dd8ee5166549ea831e756e8c934c73ae911a0adbaa7 docfiles size=182 - RELOC/doc/fonts/greektex/README + RELOC/doc/fonts/greektex/README details="Readme" RELOC/doc/fonts/greektex/gehyphw.gr - RELOC/doc/fonts/greektex/greektexdoc.pdf + RELOC/doc/fonts/greektex/greektexdoc.pdf details="Package documentation" language="el" RELOC/doc/fonts/greektex/greektexdoc.tex RELOC/doc/fonts/greektex/ywcl.zip +runfiles size=7 + RELOC/tex/latex/greektex/greektex.sty +catalogue-also greektex-fd catalogue-ctan /fonts/greek/greektex -catalogue-date 2014-05-03 14:44:16 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics font font-mf font-greek + +name greektonoi +category Package +revision 39419 +shortdesc Facilitates writing/editing of multiaccented greek +relocated 1 +longdesc The greektonoi mapping extends the betababel package or the +longdesc babel polutonikogreek option to provide a simple way to insert +longdesc ancient Greek texts with diacritical characters into your +longdesc document using a similar method to the commonly used Beta Code +longdesc transliteration, but with much more freedom. It is designed +longdesc especially for the XeTeX engine and it could also be used for +longdesc fast and easy modification of monotonic greek texts to +longdesc polytonic. The output text is natively encoded in Unicode, so +longdesc it can be reused in any possible way. The greektonoi package +longdesc provides, in addition to inserting greek accents and +longdesc breathings, many other symbols used in greek numbers and +longdesc arithmetic or in the greek archaic period. It could be used +longdesc with greektonoi mapping or indepedently. +containersize 37196 +containerchecksum a19dd42de4bfdc3c068169bbf32c55fbd76135a8138d41e0726b421d3cd5e20483f77d7b78f85e54571381f780568f1fa1ebc57d23ca460b33e4caa256c4894a +doccontainersize 235232 +doccontainerchecksum 94da0bcac7b513fb9f720c0bc6d7ca8d822956b1517a95335b415e477d3144063bbff65d57978421b6b9611c6b4a866701762cbb2ab09351fe6c5d02e4b02f39 +docfiles size=75 + RELOC/doc/latex/greektonoi/README.txt + RELOC/doc/latex/greektonoi/greektonoi-en.pdf details="Package documentation" + RELOC/doc/latex/greektonoi/greektonoi-en.tex + RELOC/doc/latex/greektonoi/greektonoi.pdf details="Package documentation (Greek)" language="el" + RELOC/doc/latex/greektonoi/greektonoi.tex +runfiles size=44 + RELOC/fonts/map/dvips/greektonoi/greektonoi.map + RELOC/fonts/map/dvips/greektonoi/greektonoi.tec + RELOC/tex/latex/greektonoi/greektonoi.sty +catalogue-contact-home http://myria.math.aegean.gr/labs/dt/ +catalogue-ctan /language/greek/greektonoi +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lgpl3 +catalogue-topics greek multilingual-addon name greenpoint category Package revision 15878 -shortdesc The Green Point logo. +shortdesc The Green Point logo relocated 1 longdesc A Metafont-implementation of the logo commonly known as 'Der longdesc Grune Punkt' ('The Green Point'). In Austria, it can be found longdesc on nearly every bottle. It should not be confused with the longdesc 'Recycle'-logo, implemented by Ian Green. +containersize 1692 +containerchecksum 2ab6b0a9d12c12936362e9e1ff387c393bcd2e9769357dbc74a5d9bcbbe027424f5d58d85d608c2c519d615f01e6e809f6192280c8c60aa53fb8d96dcbdeb8dc +doccontainersize 948 +doccontainerchecksum 84143440a421999f0a59461652be21d49d8ace66fd3b8d9d89132c6f06f67ef4b571522d6ed54d87f614a15dceb99cdf4c3caecb54eed9a4bbf49401de20ada5 +docfiles size=2 + RELOC/doc/fonts/greenpoint/ChangeLog + RELOC/doc/fonts/greenpoint/README details="Readme" runfiles size=2 RELOC/fonts/source/public/greenpoint/greenpoint.mf RELOC/fonts/tfm/public/greenpoint/greenpoint.tfm -docfiles size=2 - RELOC/doc/fonts/greenpoint/ChangeLog - RELOC/doc/fonts/greenpoint/README catalogue-ctan /fonts/greenpoint -catalogue-date 2014-05-03 14:44:16 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license gpl +catalogue-topics font font-mf font-specialist + +name gregoriotex +category Package +revision 51029 +shortdesc Engraving Gregorian Chant scores +longdesc Gregorio is a software application for engraving Gregorian +longdesc Chant scores on a computer. Gregorio's main job is to convert a +longdesc gabc file (simple text representation of a score) into a +longdesc GregorioTeX file, which makes TeX able to create a PDF of your +longdesc score. +depend gregoriotex.ARCH +containersize 9988284 +containerchecksum b27e105c26022f7a9d04d4990f83ed6a73cb92fcfde1698c4be81faedfbfd67730d4957db1ce5b865820cf714072c842b85fc698dfe6cda0bdba100b3d4d60fb +doccontainersize 1356360 +doccontainerchecksum 66e5170d2084c01b2a9cff2ec344322e1b76942d7424ca75306e7163ffa592806240ae0f1dab176053753dc3dcd2ea7f0db9aa9afd5d7dca8200e593b2158193 +docfiles size=457 + texmf-dist/doc/luatex/gregoriotex/Appendix_Font_Tables.tex + texmf-dist/doc/luatex/gregoriotex/Command_Index_User.tex + texmf-dist/doc/luatex/gregoriotex/Command_Index_gregorio.tex + texmf-dist/doc/luatex/gregoriotex/Command_Index_internal.tex + texmf-dist/doc/luatex/gregoriotex/Gabc.tex + texmf-dist/doc/luatex/gregoriotex/GregorioNabcRef.pdf + texmf-dist/doc/luatex/gregoriotex/GregorioNabcRef.tex + texmf-dist/doc/luatex/gregoriotex/GregorioRef.lua + texmf-dist/doc/luatex/gregoriotex/GregorioRef.pdf details="Package documentation" + texmf-dist/doc/luatex/gregoriotex/GregorioRef.tex + texmf-dist/doc/luatex/gregoriotex/doc_README.md + texmf-dist/doc/luatex/gregoriotex/examples/FactusEst.gabc + texmf-dist/doc/luatex/gregoriotex/examples/PopulusSion.gabc + texmf-dist/doc/luatex/gregoriotex/examples/debugging.tex + texmf-dist/doc/luatex/gregoriotex/examples/main-lualatex.tex + texmf-dist/doc/luatex/gregoriotex/factus.gabc + texmf-dist/doc/luatex/gregoriotex/omnes.gabc + texmf-dist/doc/luatex/gregoriotex/pitches2.gabc + texmf-dist/doc/luatex/gregoriotex/pitches3.gabc + texmf-dist/doc/luatex/gregoriotex/pitches4.gabc + texmf-dist/doc/luatex/gregoriotex/pitches5.gabc + texmf-dist/doc/luatex/gregoriotex/veni.gabc +runfiles size=7319 + texmf-dist/fonts/source/gregoriotex/convertsfdtottf.py + texmf-dist/fonts/source/gregoriotex/fonts_README.md + texmf-dist/fonts/source/gregoriotex/greciliae-base.sfd + texmf-dist/fonts/source/gregoriotex/greextra.sfd + texmf-dist/fonts/source/gregoriotex/gregall.sfd + texmf-dist/fonts/source/gregoriotex/gresgmodern.sfd + texmf-dist/fonts/source/gregoriotex/squarize.py + texmf-dist/fonts/truetype/public/gregoriotex/greciliae-hole.ttf + texmf-dist/fonts/truetype/public/gregoriotex/greciliae-hollow.ttf + texmf-dist/fonts/truetype/public/gregoriotex/greciliae-op-hole.ttf + texmf-dist/fonts/truetype/public/gregoriotex/greciliae-op-hollow.ttf + texmf-dist/fonts/truetype/public/gregoriotex/greciliae-op.ttf + texmf-dist/fonts/truetype/public/gregoriotex/greciliae.ttf + texmf-dist/fonts/truetype/public/gregoriotex/greextra.ttf + texmf-dist/fonts/truetype/public/gregoriotex/gregall.ttf + texmf-dist/fonts/truetype/public/gregoriotex/grelaon.ttf + texmf-dist/fonts/truetype/public/gregoriotex/gresgmodern.ttf + texmf-dist/scripts/gregoriotex/uninstall-gtex.sh + texmf-dist/tex/lualatex/gregoriotex/gregoriosyms.sty + texmf-dist/tex/lualatex/gregoriotex/gregoriotex.sty + texmf-dist/tex/luatex/gregoriotex/gregorio-vowels.dat + texmf-dist/tex/luatex/gregoriotex/gregoriotex-chars.tex + texmf-dist/tex/luatex/gregoriotex/gregoriotex-common.tex + texmf-dist/tex/luatex/gregoriotex/gregoriotex-main.tex + texmf-dist/tex/luatex/gregoriotex/gregoriotex-nabc.lua + texmf-dist/tex/luatex/gregoriotex/gregoriotex-nabc.tex + texmf-dist/tex/luatex/gregoriotex/gregoriotex-signs.lua + texmf-dist/tex/luatex/gregoriotex/gregoriotex-signs.tex + texmf-dist/tex/luatex/gregoriotex/gregoriotex-spaces.tex + texmf-dist/tex/luatex/gregoriotex/gregoriotex-syllable.tex + texmf-dist/tex/luatex/gregoriotex/gregoriotex-symbols.lua + texmf-dist/tex/luatex/gregoriotex/gregoriotex-symbols.tex + texmf-dist/tex/luatex/gregoriotex/gregoriotex.lua + texmf-dist/tex/luatex/gregoriotex/gregoriotex.tex + texmf-dist/tex/luatex/gregoriotex/gsp-default.tex +catalogue-contact-home http://gregorio-project.github.io/ +catalogue-contact-support http://gregorio-project.github.io/contact.html +catalogue-ctan /support/gregoriotex +catalogue-date 2019-04-06 23:35:06 +0200 +catalogue-license gpl3 +catalogue-topics music chords +catalogue-version 5.2.1 + +name gregoriotex.aarch64-linux +category Package +revision 50361 +shortdesc aarch64-linux files of gregoriotex +containersize 108796 +containerchecksum 0867eba55381b8fd42ebd0f0f1d1bd08fbf7297accb9f0a1cb002eee4906ccd6fceca88bd3970e13410f2f87c0dbaabc3ad0924bcb6feb69346b67b500b0f6de +binfiles arch=aarch64-linux size=167 + bin/aarch64-linux/gregorio + +name gregoriotex.amd64-freebsd +category Package +revision 50445 +shortdesc amd64-freebsd files of gregoriotex +containersize 125976 +containerchecksum cec8695ee88e905cc4bd033e42ddaabdc8353132215b849c3dc14f9c6163dfc96f85888256dad482968e961a71e8e5266b83eceac390435222034f47a67ea9df +binfiles arch=amd64-freebsd size=171 + bin/amd64-freebsd/gregorio + +name gregoriotex.amd64-netbsd +category Package +revision 50353 +shortdesc amd64-netbsd files of gregoriotex +containersize 110244 +containerchecksum b21c32d28a3fd657963f63b042eb81c4aa8454cff8b92f8fd8c72aebd7bc0cd091c8094eb85a21edf24910d684f9960490e80e4ee406cf12338ed9c0b712466c +binfiles arch=amd64-netbsd size=181 + bin/amd64-netbsd/gregorio + +name gregoriotex.armhf-linux +category Package +revision 50389 +shortdesc armhf-linux files of gregoriotex +containersize 103548 +containerchecksum e197a7548f918ff36aab351617d985dd1d158ebfdedf29bb52e6d55a1c4a84a0b9cc0da0284263c590d440344001c7084bf2ebd2ce998eed991153bd6509bbe8 +binfiles arch=armhf-linux size=160 + bin/armhf-linux/gregorio + +name gregoriotex.i386-cygwin +category Package +revision 50455 +shortdesc i386-cygwin files of gregoriotex +containersize 91124 +containerchecksum 41666eb0eea91e13d1683e2f7be1431716771195a44b422b6e9babd66691a0cb6a030992bd25c9e208a160d4852098136a314cffd16289ddb16042e6ac44a266 +binfiles arch=i386-cygwin size=153 + bin/i386-cygwin/gregorio.exe + +name gregoriotex.i386-freebsd +category Package +revision 50473 +shortdesc i386-freebsd files of gregoriotex +containersize 104776 +containerchecksum a0e5769323820fdc125e88d2879349e53102fc461ca427dc7584c509d7efd242bac5c98b8ebf2c673b4575b2b7a68650b598a71c4d2d46f91145db323255985f +binfiles arch=i386-freebsd size=157 + bin/i386-freebsd/gregorio + +name gregoriotex.i386-linux +category Package +revision 50358 +shortdesc i386-linux files of gregoriotex +containersize 128200 +containerchecksum 304b8eefe6c9e64e29a05fb40b853b9c54e9f1c11f26ee0dc4b86e493345006b5e20e0c5c49cb90d6a53db0fd3a02522a0fc4003bafd32dea108cd17e23e3f65 +binfiles arch=i386-linux size=176 + bin/i386-linux/gregorio + +name gregoriotex.i386-netbsd +category Package +revision 50353 +shortdesc i386-netbsd files of gregoriotex +containersize 100168 +containerchecksum b6b6f15fe01958dc6c285050231d12fc8a404cc08ecda8efb7ca36cf10136f760f9d3048422947f5dfedd037dfa2a7f741e7a3667ea0f75c590b1de2df25c45b +binfiles arch=i386-netbsd size=174 + bin/i386-netbsd/gregorio + +name gregoriotex.i386-solaris +category Package +revision 50392 +shortdesc i386-solaris files of gregoriotex +containersize 122168 +containerchecksum 7c615514c8e3a43763eb0e16b0e7761f688317ad3a559cf7ccad4b07d852151fad1d9c92a005537da09161393ccfa49e2c3b8b7d2e9514b8c7c25b4349436dbf +binfiles arch=i386-solaris size=169 + bin/i386-solaris/gregorio + +name gregoriotex.win32 +category Package +revision 50343 +shortdesc win32 files of gregoriotex +containersize 279500 +containerchecksum c2c8ccd66e743dcde6d0ad01f92e6b3eb57a846de1e28f851e3b87da56904c37788609ac093aa56caa2c67ed93af3162ad841a64e7dcbe37cffdb4e6fb38bf2a +binfiles arch=win32 size=260 + bin/win32/gregorio.exe + +name gregoriotex.x86_64-cygwin +category Package +revision 50889 +shortdesc x86_64-cygwin files of gregoriotex +containersize 99948 +containerchecksum 1783a24fa64f5c3e15d345b353ad93ac7c7c206185e0e14d1110aea477dffcffe1d7991173400c389b0f679e92712505c5fec92e078684f8f10d3f776ff094b3 +binfiles arch=x86_64-cygwin size=152 + bin/x86_64-cygwin/gregorio.exe + +name gregoriotex.x86_64-darwin +category Package +revision 50360 +shortdesc x86_64-darwin files of gregoriotex +containersize 125836 +containerchecksum ea34c02fd242c4999eb11af393c1e9d3d01db042b5825ee6d2c3db51d0918142313992980076fc1956dc85f2b97aa6683d074690bbf1bebefc83402ee28ed5e9 +binfiles arch=x86_64-darwin size=167 + bin/x86_64-darwin/gregorio + +name gregoriotex.x86_64-darwinlegacy +category Package +revision 50360 +shortdesc x86_64-darwinlegacy files of gregoriotex +containersize 121628 +containerchecksum 9312051c5a37d1fa277b1da00f29d1aafbbeb25724ad37d5c8d2c6c8dc099e3d27868a0f445ad9889b0016ebdc372792b2324f7b7810d7e809c159035a656d35 +binfiles arch=x86_64-darwinlegacy size=165 + bin/x86_64-darwinlegacy/gregorio + +name gregoriotex.x86_64-linux +category Package +revision 50358 +shortdesc x86_64-linux files of gregoriotex +containersize 132172 +containerchecksum d0571c366f705e49582c070d9a9f6a4ac4268a46f9fab8405ba9cbcdead5c2428db2a7b7ac38d37c191a842c5c50c38fef75cc17481347b0bf852d7b72e9cafe +binfiles arch=x86_64-linux size=171 + bin/x86_64-linux/gregorio + +name gregoriotex.x86_64-linuxmusl +category Package +revision 50358 +shortdesc x86_64-linuxmusl files of gregoriotex +containersize 139884 +containerchecksum 2ac21ddfb16d68ec138ce5fb93b7ee51eebce7e57447c434f0601d23d29e16464c2f936c8d918bcf942d803ed1aa313b72ad6e0480ca61acb784dfb9c521c3f2 +binfiles arch=x86_64-linuxmusl size=180 + bin/x86_64-linuxmusl/gregorio + +name gregoriotex.x86_64-solaris +category Package +revision 50392 +shortdesc x86_64-solaris files of gregoriotex +containersize 141444 +containerchecksum afbae8506cb972968dbefe3c3cff4ab7bfe816a824b8a81e8cc9ca433351a0caca87c42b7c6b6e2c8f462188485257d608728254a6009e3c49fa88793aef715a +binfiles arch=x86_64-solaris size=180 + bin/x86_64-solaris/gregorio name grfpaste category Package revision 17354 -shortdesc Include fragments of a dvi file. +shortdesc Include fragments of a dvi file relocated 1 longdesc Provides a mechanism to include fragments of dvi files with the longdesc graphicx package, so that you can use \includegraphics to longdesc include dvi files. The package requires the dvipaste program. -runfiles size=2 - RELOC/tex/latex/grfpaste/grfpaste.sty +containersize 3252 +containerchecksum e7c28c38a20e01b05c5839dc7d011ef5769b3344fd4321f68e1189a830a90e6ccf9edd596e248489a0a578b2aa4e5e5f3bd1ec21c76b3dba86a91d5e431d0617 +doccontainersize 371568 +doccontainerchecksum 63719b8f7904baccddc9e68d1fc7d609453b2eb9feeee95bb077b82d1345c40db7a92c649c3d9abae6b9c2e19090163b6a227418f4d9d4d91b1e8b1c0438005d docfiles size=106 - RELOC/doc/latex/grfpaste/doc/grfpaste.pdf + RELOC/doc/latex/grfpaste/doc/grfpaste.pdf details="Package documentation" RELOC/doc/latex/grfpaste/doc/grfpaste.tex - RELOC/doc/latex/grfpaste/dvipaste.txt + RELOC/doc/latex/grfpaste/dvipaste.txt details="Readme-alike" RELOC/doc/latex/grfpaste/grfp1.tex RELOC/doc/latex/grfpaste/grfp2.tex RELOC/doc/latex/grfpaste/grfp3.tex +runfiles size=2 + RELOC/tex/latex/grfpaste/grfpaste.sty catalogue-ctan /macros/latex/contrib/grfpaste -catalogue-date 2013-01-29 16:15:15 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics graphics-incl catalogue-version 0.2 +name grid +category Package +revision 15878 +shortdesc Grid typesetting in LaTeX +relocated 1 +longdesc The package helps to enables grid typesetting in double column +longdesc documents. Grid typesetting (vertical aligning of lines of text +longdesc in adjacent columns) is a difficult task in LaTeX, and the +longdesc present package is no more than an attempt to help users to +longdesc achieve it in a limited way. An example document, grid.tex, is +longdesc provided with simple instructions to typeset it using the +longdesc package. The package needs a lot more work: this is only a +longdesc beginning... +containersize 3152 +containerchecksum c8a6c0d6ac1f6043411d5484c87877a939d891aa3bbaef31248f8dc04f39bfc5f7f13344ab2997724682f228f180025bc5afcba8712ee95de983d7182785a8fd +doccontainersize 134640 +doccontainerchecksum 9fa0fbf1dfd0fd334c9dd57f50e6d1f893a222bda6402345c70240fce48ea07065fa25ce890fda77983dcb537c8b3b4740cea71ed6a6b4b94275f1e2bd8ea983 +docfiles size=45 + RELOC/doc/latex/grid/README details="Readme" + RELOC/doc/latex/grid/grid.pdf details="Package documentation" + RELOC/doc/latex/grid/grid.tex + RELOC/doc/latex/grid/manifest.txt + RELOC/doc/latex/grid/rvdtx.sty +srccontainersize 680 +srccontainerchecksum 01b7c6dc356487d9e1d9b210828bdb6af50382a59d65b85c8246defe963ada4ee0796a93793d90d25c37ea9c86432d9c05c3eb05598c72410fc2f865e1e69836 +srcfiles size=1 + RELOC/source/latex/grid/Makefile +runfiles size=3 + RELOC/tex/latex/grid/grid.sty +catalogue-contact-home http://www.river-valley.com +catalogue-ctan /macros/latex/contrib/grid +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl +catalogue-topics typeset-grid +catalogue-version 1.0 + +name grid-system +category Package +revision 32981 +shortdesc Page organisation, modelled on CSS facilities +relocated 1 +longdesc The package provides the means for LaTeX to implement a grid +longdesc system as known from CSS grid systems. The facility is useful +longdesc for creating box layouts as used in brochures. +containersize 1368 +containerchecksum b9846f467854538c488ae444645fcfb962c1aece34e3847dc3dfdd4a2aadf8339840c09243448922ce184f6211bb3b95c6fe9675b5bae0e3b3756b2787e7e87b +doccontainersize 58056 +doccontainerchecksum 659b426e99db9152c64f37a4c977176ce1a24c324465399f3e481cffef505044aa820f1a445a79c68f069702c07082d3d5c73c5fa762068a44acdc21221cce68 +docfiles size=19 + RELOC/doc/latex/grid-system/LICENSE + RELOC/doc/latex/grid-system/README details="Readme" + RELOC/doc/latex/grid-system/grid-system.pdf details="Package documentation" + RELOC/doc/latex/grid-system/grid-system.tex +runfiles size=1 + RELOC/tex/latex/grid-system/grid-system.sty +catalogue-contact-repository https://github.com/bitzl/latex-grid-system +catalogue-ctan /macros/latex/contrib/grid-system +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license apache2 +catalogue-topics layout +catalogue-version 0.3.0 + name gridset category Package revision 15878 -shortdesc Grid, a.k.a. in-register, setting. +shortdesc Grid, a.k.a. in-register, setting relocated 1 longdesc Grid setting -- also known as strict in-register setting -- is longdesc something, that should be done for a lot of documents but is @@ -73591,77 +120728,87 @@ longdesc the next grid position. This may be enough under some longdesc circumstances, but in other circumstances it may fail. Thus longdesc gridset is only one more step for grid setting, not a complete longdesc solution. -runfiles size=5 - RELOC/tex/latex/gridset/gridset.sty +containersize 5828 +containerchecksum e9e9fbb2dcec8932e96655886ab9c4c19ed3e986f033feac7d8e64241fcb41f8e2be5e5bbb47032816626580bbe77611dabe24fba34b43ad53f3a592062b826a +doccontainersize 106712 +doccontainerchecksum b9c0001a5d89d592e9d176f2bf91cdd5fc6363de32e21621b73f9d7c392928f0e39ef4eb17c589469e59e2e865b05e33233d237afd1266f0477ed3d8f3c1c66c docfiles size=30 RELOC/doc/latex/gridset/gridset.pdf +srccontainersize 6404 +srccontainerchecksum bedb06496d04f10395ba999f91bb49c4ad6c19d26f3c8de3b1492268fc58dcde72d8c03bea6d646ef75ef65dd843b4459af453ca673634fce164599ac014d50a srcfiles size=7 RELOC/source/latex/gridset/README RELOC/source/latex/gridset/gridset.dtx RELOC/source/latex/gridset/gridset.ins +runfiles size=5 + RELOC/tex/latex/gridset/gridset.sty +catalogue-contact-home http://komascript.de/gridset catalogue-ctan /macros/latex/contrib/gridset -catalogue-date 2012-07-13 12:20:40 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl +catalogue-topics typeset-grid catalogue-version 0.1 -name grid-system -category Package -revision 32981 -shortdesc Page organisation, modelled on CSS facilities. -relocated 1 -longdesc The package provides the means for LaTeX to implement a grid -longdesc system as known from CSS grid systems. The facility is useful -longdesc for creating box layouts as used in brochures. -runfiles size=1 - RELOC/tex/latex/grid-system/grid-system.sty -docfiles size=19 - RELOC/doc/latex/grid-system/LICENSE - RELOC/doc/latex/grid-system/README - RELOC/doc/latex/grid-system/grid-system.pdf - RELOC/doc/latex/grid-system/grid-system.tex -catalogue-ctan /macros/latex/contrib/grid-system -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license apache2 -catalogue-version 0.3.0 - -name grid -category Package -revision 15878 -shortdesc Grid typesetting in LaTeX. -relocated 1 -longdesc The package helps to enables grid typesetting in double column -longdesc documents. Grid typesetting (vertical aligning of lines of text -longdesc in adjacent columns) is a difficult task in LaTeX, and the -longdesc present package is no more than an attempt to help users to -longdesc achieve it in a limited way. An example document, grid.tex, is -longdesc provided with simple instructions to typeset it using the -longdesc package. The package needs a lot more work: this is only a -longdesc beginning... +name gridslides +category Package +revision 45933 +shortdesc Free form slides with blocks placed on a grid +relocated 1 +longdesc This package allows creating free form slides with blocks +longdesc placed on a grid. The blocks can be filled with text, +longdesc equations, figures etc. The resulting slides are similar to the +longdesc ones produced with LaTeX beamer, but more flexible. Sequential +longdesc unconvering of elements is supported. A compiler script is +longdesc provided which compiles each slide separately, this way +longdesc avoiding long compile times. +containersize 2552 +containerchecksum 222ba30817fdd016d80210e25300c925fc45f5a0e5eb02d569f8e709ba578a6ac12aa3f2ed16e5bd6fea3e4b4ffd2356a046a27445e47f79bee9be93ca5aff96 +doccontainersize 570220 +doccontainerchecksum 6d8a2f2a43b7e0b6232aabb78b25bbbb2f256e9afd54c704b818958496f7ea7b38a2741a60b3d2f3f7745431c302a7106ee015fc18d5c50349ad3cce375789ff +docfiles size=177 + RELOC/doc/latex/gridslides/Makefile + RELOC/doc/latex/gridslides/README.md details="Readme" + RELOC/doc/latex/gridslides/compile.pl + RELOC/doc/latex/gridslides/example.pdf details="Example of use" + RELOC/doc/latex/gridslides/example.tex + RELOC/doc/latex/gridslides/figures/band02.png + RELOC/doc/latex/gridslides/figures/band08.png + RELOC/doc/latex/gridslides/figures/cnontrivial.pdf + RELOC/doc/latex/gridslides/figures/ctrivial.pdf + RELOC/doc/latex/gridslides/figures/qahe.pdf + RELOC/doc/latex/gridslides/figures/qshe.pdf + RELOC/doc/latex/gridslides/figures/skyrmion.pdf + RELOC/doc/latex/gridslides/figures/trivial.pdf + RELOC/doc/latex/gridslides/gridslides.pdf details="Package documentation" runfiles size=3 - RELOC/tex/latex/grid/grid.sty -docfiles size=45 - RELOC/doc/latex/grid/README - RELOC/doc/latex/grid/grid.pdf - RELOC/doc/latex/grid/grid.tex - RELOC/doc/latex/grid/manifest.txt - RELOC/doc/latex/grid/rvdtx.sty -srcfiles size=1 - RELOC/source/latex/grid/Makefile -catalogue-ctan /macros/latex/contrib/grid -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 + RELOC/tex/latex/gridslides/gridslides.cls + RELOC/tex/latex/gridslides/gridslides.sty +catalogue-contact-bugs https://github.com/minad/gridslides/issues +catalogue-contact-repository https://github.com/minad/gridslides +catalogue-ctan /macros/latex/contrib/gridslides +catalogue-date 2017-11-28 17:33:59 +0100 +catalogue-license lppl1.3gpl2 +catalogue-topics presentation class +catalogue-version 0.1.1 name grotesq category Package revision 35859 catalogue urw-grotesq -shortdesc URW Grotesq font pack for LaTeX. +shortdesc URW Grotesq font pack for LaTeX relocated 1 longdesc The directory contains a copy of the Type 1 font "URW Grotesq longdesc 2031 Bold' released under the GPL by URW, with supporting files longdesc for use with (La)TeX. execute addMap ugq.map +containersize 47696 +containerchecksum 30d0d52c98f44945ed40f45f1e73ed60e6b98a8a74dbf57cdae5c2d400ef613f8bed2b89b3b6afbf7b98e449738f637911dc1becf0c0dd33c21a23ecac9a9767 +doccontainersize 2796 +doccontainerchecksum d41ae946f315d87b483a03d8b5a1034706f5bda765c69fa692f117b79bd5046b409e42c7b17577ee086ec98795e8a93acd761e30815c6083520b4bd244c33cd5 +docfiles size=4 + RELOC/doc/fonts/grotesq/grotesq.txt + RELOC/doc/fonts/grotesq/readme.grotesq details="Copyright and licence statement" + RELOC/doc/fonts/grotesq/ugq.txt details="Package documentation" runfiles size=44 RELOC/fonts/afm/urw/grotesq/ugqb8a.afm RELOC/fonts/afm/urw/grotesq/ugqb8a.afm.org @@ -73686,13 +120833,10 @@ runfiles size=44 RELOC/tex/latex/grotesq/ot1ugq.fd RELOC/tex/latex/grotesq/t1ugq.fd RELOC/tex/latex/grotesq/ts1ugq.fd -docfiles size=4 - RELOC/doc/fonts/grotesq/grotesq.txt - RELOC/doc/fonts/grotesq/readme.grotesq - RELOC/doc/fonts/grotesq/ugq.txt catalogue-ctan /fonts/urw/grotesq -catalogue-date 2012-12-07 18:46:56 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics font font-sans font-type1 name grundgesetze category Package @@ -73702,61 +120846,31 @@ relocated 1 longdesc The package defines maths mode commands for typesetting Gottlob longdesc Frege's concept-script in the style of his "Grundgesetze der longdesc Arithmetik" (Basic Laws of Arithmetic). -runfiles size=3 - RELOC/tex/latex/grundgesetze/grundgesetze.sty +containersize 2360 +containerchecksum 2fb5c03a405e29d27c929fd3970af300df8134efc584a52dd088adb6e0678979af7c6302cffc590b2471a66e13399f628d257f298f1ffb9689d8aa1d268b9438 +doccontainersize 225144 +doccontainerchecksum cdf228d38f34810d543b0e5135acb75a8ab12de7b706bda79f2abe9b6cdcf1e7c7ccd3f0ddb7cc4cc2560f5fb06c06eacdebcf06af89500953812f2e7a0c8285 docfiles size=56 - RELOC/doc/latex/grundgesetze/README - RELOC/doc/latex/grundgesetze/grundgesetze.pdf + RELOC/doc/latex/grundgesetze/README details="Readme" + RELOC/doc/latex/grundgesetze/grundgesetze.pdf details="Package documentation" +srccontainersize 8100 +srccontainerchecksum 7cd35484acde51219cff50fa78fc202c03ddc761fc2151bca789454e0aa0a2ea4a8088a5c6b9cbe468707f9efcde661c2d4c5357efc161d8454b4749870358e3 srcfiles size=10 RELOC/source/latex/grundgesetze/grundgesetze.dtx RELOC/source/latex/grundgesetze/grundgesetze.ins +runfiles size=3 + RELOC/tex/latex/grundgesetze/grundgesetze.sty +catalogue-also begriff frege bguq catalogue-ctan /macros/latex/contrib/grundgesetze -catalogue-date 2014-06-17 18:40:44 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl2 +catalogue-topics maths logic catalogue-version 1.02 -name GS1 -category Package -revision 27540 -shortdesc Typeset EAN barcodes using TeX rules, only. -relocated 1 -longdesc The (LaTeX 3) package typesets EAN-8 and EAN-13 barcodes, using -longdesc the facilities of the rule-D package. -runfiles size=4 - RELOC/tex/latex/GS1/GS1.sty - RELOC/tex/latex/GS1/rule-D.sty -docfiles size=309 - RELOC/doc/latex/GS1/GS1.pdf - RELOC/doc/latex/GS1/README - RELOC/doc/latex/GS1/examples/EANBarcode.pdf - RELOC/doc/latex/GS1/examples/EANBarcode.tex - RELOC/doc/latex/GS1/examples/EANControlDigit.pdf - RELOC/doc/latex/GS1/examples/EANControlDigit.tex - RELOC/doc/latex/GS1/examples/GSSetup.pdf - RELOC/doc/latex/GS1/examples/GSSetup.tex - RELOC/doc/latex/GS1/examples/GS_cut_EAN_control_digit.pdf - RELOC/doc/latex/GS1/examples/GS_cut_EAN_control_digit.tex - RELOC/doc/latex/GS1/examples/GS_set_EAN_control_digit.pdf - RELOC/doc/latex/GS1/examples/GS_set_EAN_control_digit.tex - RELOC/doc/latex/GS1/examples/GS_set_code_digit_seq.pdf - RELOC/doc/latex/GS1/examples/GS_set_code_digit_seq.tex - RELOC/doc/latex/GS1/examples/int_set_to_EAN_control_digit.pdf - RELOC/doc/latex/GS1/examples/int_set_to_EAN_control_digit.tex - RELOC/doc/latex/GS1/rule-D.pdf -srcfiles size=12 - RELOC/source/latex/GS1/GS1.dtx - RELOC/source/latex/GS1/GS1.ins - RELOC/source/latex/GS1/README - RELOC/source/latex/GS1/rule-D.dtx -catalogue-ctan /macros/latex/contrib/gs1 -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 15 - name gsemthesis category Package revision 36244 -shortdesc Geneva School of Economics and Management PhD thesis format. +shortdesc Geneva School of Economics and Management PhD thesis format relocated 1 longdesc The class provides a PhD thesis template for the Geneva School longdesc of Economics and Management (GSEM), University of Geneva, @@ -73764,73 +120878,234 @@ longdesc Switzerland. The class provides utilities to easily set up the longdesc cover page, the front matter pages, the page headers, etc., longdesc conformant to the official guidelines of the GSEM Faculty for longdesc writing PhD dissertations. -runfiles size=3 - RELOC/tex/latex/gsemthesis/gsemthesis.cls +containersize 2996 +containerchecksum 7debd75f882855b45665937669a3869a9268d2184b22da3d344a4a6182577aa8bb440a6f4e48123d359c23b630b61016331cad94f4a08acc3295dcfd722c40ea +doccontainersize 297248 +doccontainerchecksum 41ecef19c29f63970dbee2242fcdf612b7619a6930002d8be03f4116f3397a619951f2f19a79f0e3772f17005847ea5a6a20a91b6ba9dc3529fc4e84dbf7833d docfiles size=74 - RELOC/doc/latex/gsemthesis/README - RELOC/doc/latex/gsemthesis/gsemthesis.pdf + RELOC/doc/latex/gsemthesis/README details="Readme" + RELOC/doc/latex/gsemthesis/gsemthesis.pdf details="Package documentation" +srccontainersize 9964 +srccontainerchecksum 757fad4bcc2bac03acfcbcf5dea53c30e7902cb0a53dc8116fde2b28ca9f85861b08f19a296096253a4e21e1d3513faca3e0f206f9f0e22e3699f32e0a5edfe1 srcfiles size=10 RELOC/source/latex/gsemthesis/gsemthesis.dtx RELOC/source/latex/gsemthesis/gsemthesis.ins +runfiles size=3 + RELOC/tex/latex/gsemthesis/gsemthesis.cls +catalogue-contact-home http://emmanuel.rousseaux.me/gsemthesis catalogue-ctan /macros/latex/contrib/gsemthesis -catalogue-date 2015-02-09 13:16:25 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 +catalogue-topics dissertation class catalogue-version 0.9.4 name gsftopk category TLCore -revision 37078 -shortdesc Convert "ghostscript fonts" to PK files. +revision 50767 +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 -runfiles size=2 - texmf-dist/dvips/gsftopk/render.ps -docfiles size=5 +containersize 3548 +containerchecksum d05802963d499c4dc0979a58bfb56a1c04e006b25b7eac4cdeb7659ac6f31a0380e476e933586f4169846f88d727742ae5494cdbcb29995439a4cca5be4c7332 +doccontainersize 27536 +doccontainerchecksum 7d9fc4dc5c3b4cbc05939332e7286be712a51f74b408df2e6cd9f1c52f81b01104e4f41074c55f74ecd003276f2b9fa2285e875a27c20e16936e78ffedc6a4f5 +docfiles size=10 texmf-dist/doc/man/man1/gsftopk.1 texmf-dist/doc/man/man1/gsftopk.man1.pdf +runfiles size=2 + texmf-dist/dvips/gsftopk/render.ps +catalogue-contact-home http://math.berkeley.edu/~vojta/gsftopk.html catalogue-ctan /fonts/utilities/gsftopk -catalogue-date 2012-07-13 12:47:32 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license gpl +catalogue-topics font-cvt catalogue-version 1.19.2 +name gsftopk.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of gsftopk +containersize 35376 +containerchecksum e680a2854f16516c792654c87066c9ce979c1882018b2391f024355c27095fae794afda9c1a414e7f67646ef2052ad41375396a257cadebb7683c0859393fecd +binfiles arch=aarch64-linux size=22 + bin/aarch64-linux/gsftopk + +name gsftopk.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of gsftopk +containersize 42924 +containerchecksum 02c7911b6c0de394c3528524f642216858c375317aac125a7cc223c9bd6371fc7e931a5c3dd22d1e92e02c388f9161d131712d59bc336892eb3c02f79435dd49 +binfiles arch=amd64-freebsd size=25 + bin/amd64-freebsd/gsftopk + +name gsftopk.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of gsftopk +containersize 36824 +containerchecksum 6fd790633fee31bf1334205cfcdbff9ec536e8c64320faf8cb520c4b7813f3114c9997e71a03b44bf735a50fd9f416b2570c0d97202cf12959811bf043439713 +binfiles arch=amd64-netbsd size=28 + bin/amd64-netbsd/gsftopk + +name gsftopk.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of gsftopk +containersize 33492 +containerchecksum 2f3a7f1bb367d5f3ccfb536c509ed0fe680e950dcc6a6287923f1679c26a691947f574416a3c8aa0f7f387a64d4eb1512470cd3b85578d21367ae027396c247f +binfiles arch=armhf-linux size=20 + bin/armhf-linux/gsftopk + +name gsftopk.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of gsftopk +containersize 11644 +containerchecksum f28f8d7816276601e8f66f3952a02dee4c9c9943165afbdbbe6549eb8a9c384085c372da2b8ed8eb937c729ef1ea4f991397d01c912447f10b91966103722a58 +binfiles arch=i386-cygwin size=7 + bin/i386-cygwin/gsftopk.exe + +name gsftopk.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of gsftopk +containersize 35900 +containerchecksum 85e6c9513ede028efd6fd633f023f005ffd5fed27c47cd25d4477049170c52a8a01b32f1e09d479c29dea0931e64702bda296b348af3c31595c8f867370e6a04 +binfiles arch=i386-freebsd size=20 + bin/i386-freebsd/gsftopk + name gsftopk.i386-linux category TLCore -revision 36790 +revision 50281 shortdesc i386-linux files of gsftopk -binfiles arch=i386-linux size=31 +containersize 42932 +containerchecksum f2afe209eb01c81f2313d0943b4c5d3457c6ac941ffa12358ba5f79d50ef51a9bf48fdf46ed77118b6572b45df68d83351c29b30c92ffd77ca29d66ce3a674b3 +binfiles arch=i386-linux size=26 bin/i386-linux/gsftopk +name gsftopk.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of gsftopk +containersize 33628 +containerchecksum e190f995ae6f4ccfa8e5d0d948db0a22831eb110330a4e5e578d6428e816baef9daf314144aa1ba4748ad30a4ed232708b34cb13ec8e6db74975cc1bc0de629f +binfiles arch=i386-netbsd size=26 + bin/i386-netbsd/gsftopk + +name gsftopk.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of gsftopk +containersize 39720 +containerchecksum 61adc9dbf01c8aeff949a7bd3ddda3c8d982212b7e3bdd0193db86f7747aa5489c26ddac8cc23cbab1c52b8e17f4b9bf85b5d0afadc007c1bef6c5ddecea55bc +binfiles arch=i386-solaris size=22 + bin/i386-solaris/gsftopk + +name gsftopk.win32 +category TLCore +revision 50155 +shortdesc win32 files of gsftopk +containersize 12980 +containerchecksum 6c1d35a2e8f783aa80d38721eb2296be7d547808940e28850496b5e5d04d37ab5392ea3cee5a669a44985ad78cb6794119879a44f6f2d8f35d4b2202819b27d3 +binfiles arch=win32 size=6 + bin/win32/gsftopk.exe + +name gsftopk.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of gsftopk +containersize 11832 +containerchecksum 12f6d6f5cc45dc8afda458754c88c624f68313e75f197da953ac6285207160dc26a0765d3bf1e7ec020155980219ff8f3916c29e1da9d0f94dc265b5fbba4b27 +binfiles arch=x86_64-cygwin size=7 + bin/x86_64-cygwin/gsftopk.exe + +name gsftopk.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of gsftopk +containersize 41572 +containerchecksum d7c968fc52ce530565876934ec85ddda88cba6c679d697151e29f0defb55387d25755ac19ae31aec837315243cb843bc6696a7bd235d5d1790f8d77ef053f137 +binfiles arch=x86_64-darwin size=24 + bin/x86_64-darwin/gsftopk + +name gsftopk.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of gsftopk +containersize 39448 +containerchecksum 200e728925cc1f5b66e136bab0c81edfe07f5d3d8fde3da7526bb78d041608b9dd2939dc39cca2efd413e0f329937a9a1ec866052e989263a7582d720f65ccda +binfiles arch=x86_64-darwinlegacy size=24 + bin/x86_64-darwinlegacy/gsftopk + +name gsftopk.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of gsftopk +containersize 40840 +containerchecksum 5b4cc6976f7d0c4a895895688f4d320dd543981470a456945420cc8d426bb551ba4d0c1fca0f2589b03237fa28770ca4e7a330358094e8cb6b1d634ee53b450d +binfiles arch=x86_64-linux size=23 + bin/x86_64-linux/gsftopk + +name gsftopk.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of gsftopk +containersize 43332 +containerchecksum 606d4593a8877a903d473b03bf7be4479f76ea526828eb50063994596456c658094c627963f3ef0a98b1bc980b3842098db19b231e27e692bc8a0b9e1631c257 +binfiles arch=x86_64-linuxmusl size=26 + bin/x86_64-linuxmusl/gsftopk + +name gsftopk.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of gsftopk +containersize 43060 +containerchecksum c2ce01604b03b7328904fad08c6140b47f8f162ded100a1ca0b60546461a58d3165690d4dbc5aeba68c10e8a7e667f57bbf97fcc85012737140b12bc8e626e22 +binfiles arch=x86_64-solaris size=26 + bin/x86_64-solaris/gsftopk + name gtl category Package -revision 31306 -shortdesc Manipulating generalized token lists. +revision 49527 +shortdesc Manipulating generalized token lists relocated 1 longdesc The package provides tools for simple operations on lists of longdesc tokens which are not necessarily balanced. It is in particular longdesc used a lot in the unravel package, to go through tokens one at longdesc a time rather than having to work with entire braced groups at -longdesc a time. The package requires an up-to-date l3kernel bundle. -runfiles size=5 - RELOC/tex/latex/gtl/gtl.sty -docfiles size=135 - RELOC/doc/latex/gtl/README - RELOC/doc/latex/gtl/gtl.pdf -srcfiles size=13 - RELOC/source/latex/gtl/gtl.dtx - RELOC/source/latex/gtl/gtl.ins -catalogue-ctan /macros/latex/contrib/gtl -catalogue-date 2013-08-23 17:44:33 +0200 -catalogue-license lppl -catalogue-version 0.0a +longdesc a time. The package requires up-to-date versions of the +longdesc l3kernel, l3kpackages, and l3experimental bundles. +containersize 4076 +containerchecksum cd1c08d092b11423d77a87a5fd7cf4f62290aebcfd6a99b12dca957e075d0b26cc3c482b45e5083916bee3bb6aff91940df375ca4b1dbcbd9fc37a31d8709aeb +doccontainersize 550332 +doccontainerchecksum 2f41bb930e46a95d5c7acb07153e5d874724ac009b2741f6f2e62a9b56165b5e2cf06cf8c89cd9c1fc42a1a93babf6761d0a48b418ddc0a0f5d38e9c2f31f175 +docfiles size=136 + RELOC/doc/generic/gtl/README.md details="Readme" + RELOC/doc/generic/gtl/gtl.pdf details="Package documentation" +srccontainersize 12532 +srccontainerchecksum 5b5d004fbd3dafa14102774a3bf57867df1cf9463630a7912d49303aa9daa2c147733badeee3f628c0d7c2c9b8081131ac39f195f6dfe97d659a945702b7eae2 +srcfiles size=17 + RELOC/source/generic/gtl/gtl.dtx + RELOC/source/generic/gtl/gtl.ins +runfiles size=6 + RELOC/tex/generic/gtl/gtl.sty +catalogue-contact-bugs https://github.com/blefloch/latex-gtl/issues +catalogue-contact-repository https://github.com/blefloch/latex-gtl +catalogue-ctan /macros/generic/gtl +catalogue-date 2018-12-29 09:59:22 +0100 +catalogue-license lppl1.3c +catalogue-topics macro-supp +catalogue-version 0.5 name gtrcrd category Package revision 32484 -shortdesc Add chords to lyrics. +shortdesc Add chords to lyrics relocated 1 longdesc The package provides the means to specify guitar chords to be longdesc played with each part of the lyrics of a song. The syntax of @@ -73838,23 +121113,201 @@ longdesc the macros reduces the chance of failing to provide a chord longdesc where one is needed, and the structure of the macros ensures longdesc that the chord specification appears immediately above the longdesc start of the lyric. -runfiles size=5 - RELOC/tex/latex/gtrcrd/gtrcrd.sty +containersize 3104 +containerchecksum dabadc0fba92f6da23830069e533e8d4fb234bb679aa355382c03bd3ac13924328ea8fcece3186f36d33b7d7f6cceaebb23f1158b855673160f183991e880796 +doccontainersize 147344 +doccontainerchecksum d8e715d1c4d9c7ebb0c34c690a82e338733501012ad19cd9e2c52e6b39dff352a4e042bdc5f54e63a03a38eb9c76b5aed2ec3afae88ccd63f56663ada32e828b docfiles size=42 - RELOC/doc/latex/gtrcrd/README - RELOC/doc/latex/gtrcrd/gtrcrd-doc.pdf + RELOC/doc/latex/gtrcrd/README details="Readme" + RELOC/doc/latex/gtrcrd/gtrcrd-doc.pdf details="Package documentation" RELOC/doc/latex/gtrcrd/gtrcrd-doc.tex +runfiles size=5 + RELOC/tex/latex/gtrcrd/gtrcrd.sty catalogue-ctan /macros/latex/contrib/gtrcrd -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics music chords catalogue-version 1.1 -name guide-to-latex +name gtrlib-largetrees category Package -revision 15878 +revision 49062 +shortdesc Library for genealogytree aiming at large trees relocated 1 -docfiles size=200 - RELOC/doc/latex/guide-to-latex/README.txt +longdesc The main goal of this package is to offer additional database +longdesc fields and formats for the genealogytree package, particularly +longdesc for typesetting large trees. The package depends on +longdesc genealogytree and etoolbox. +containersize 2300 +containerchecksum 320b5993b676d803b235d0a10cfbcdde966c3e9415f164da6f45dbd2f6f201750b84cf9dd8ce5383afd92c72acd35aa8a44d0c6518e359615b5b2009e772bc6a +doccontainersize 313576 +doccontainerchecksum 6558466d513a94cc98e5fe97d5e3bc89f518128dcfe411e27d0af171716545557096a6cdb103511157f0cd93540ea784f97d688ba271d9b2f1918f11608bb437 +docfiles size=78 + RELOC/doc/latex/gtrlib-largetrees/README.md details="Readme" + RELOC/doc/latex/gtrlib-largetrees/gtrlib.largetrees.pdf details="Package documentation" +srccontainersize 8960 +srccontainerchecksum 258780013cefe87f8fed74b0e3251f64da8fe700b13f45dcdf20e9d9215a5b7b74e931bdc1da944e70b5a6c9d87516eb2618546994b5b45193112fa9af74cac3 +srcfiles size=9 + RELOC/source/latex/gtrlib-largetrees/gtrlib.largetrees.dtx + RELOC/source/latex/gtrlib-largetrees/gtrlib.largetrees.ins +runfiles size=3 + RELOC/tex/latex/gtrlib-largetrees/gtrlib.largetrees.code.tex + RELOC/tex/latex/gtrlib-largetrees/gtrlib.largetrees.sty +catalogue-also genealogytree +catalogue-contact-repository https://github.com/Ri-Ga/gtrlib.largetrees +catalogue-ctan /macros/latex/contrib/gtrlib-largetrees +catalogue-date 2018-11-03 15:33:05 +0100 +catalogue-license lppl1.2 +catalogue-topics genealogy +catalogue-version 1.2b + +name gu +category Package +revision 15878 +shortdesc Typeset crystallographic group-subgroup-schemes +relocated 1 +longdesc The package simplifies typesetting of simple crystallographic +longdesc group-subgroup-schemes in the Barnighausen formalism. It +longdesc defines a new environment stammbaum, wherein all elements of +longdesc the scheme are defined. Afterwards all necessary dimensions are +longdesc calculated and the scheme is drawn. Currently two steps of +longdesc symmetry reduction are supported. +containersize 6148 +containerchecksum 243eb6ca0af62518d60134a8fa66f91ab05e39c96fa9c0ebeb2232d27f46679da0a634b64273608028bef7f80bfaaf049dcd9f0cd935d5f66b0d5054b2d21a20 +doccontainersize 724360 +doccontainerchecksum 151f9765d6da2312a10523ffca06cb4e0529d4ebf8189e9ddc00f86510c9cd13be9a04e47b85dc8cd815461c17f7e4b8be9604a1a605c86d7228d1113f985a23 +docfiles size=202 + RELOC/doc/latex/gu/README details="Package README" + RELOC/doc/latex/gu/gudemo.tex + RELOC/doc/latex/gu/gudoc.pdf details="Package documentation" language="de" + RELOC/doc/latex/gu/gudoc.tex +runfiles size=8 + RELOC/tex/latex/gu/gu.sty +catalogue-ctan /macros/latex/contrib/gu +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics crystallography + +name guide-latex-fr +category Package +revision 51070 +shortdesc A french guide on LaTeX - for beginners or advanced users +relocated 1 +longdesc Si tu ne connais rien a LaTeX, si tu veux apprendre a rediger +longdesc des rapports elegants sous LaTeX, et si en plus tu es Francais, +longdesc je sais exactement ce que tu ressens: c'est extremement dur de +longdesc commencer tout seul, en autodidacte. C'est pourquoi j'ai reuni +longdesc toutes mes connaissances actuelles sur LaTeX dans ce guide. Il +longdesc peut donc t'aider a apprendre les bases ou aller plus loin dans +longdesc ton utilisation de LaTeX. Des exemples detailles sont fournis +longdesc tout le long du guide. If you want to start from scratch and +longdesc learn how to type good-looking reports with LaTeX, and if +longdesc you're French, then I know it can be really hard to do it by +longdesc yourself. That's why I put all the knowledge I acquired into +longdesc this guide. It can help a lot to learn the bases or to move +longdesc forward and use LaTeX to type more handsome documents. Lots of +longdesc examples are provided all along this guide. +containersize 1072 +containerchecksum c9235bf7b3600fbfc7f5eeff31a51e3b9d0352edb2208e87ab985ddc7e3cb8a1b84e6cc35661891b7d184280e583ebf994de671bf8bec8eec91eecf7cf35f05b +doccontainersize 7042356 +doccontainerchecksum efce68288b0bd404e1fca3f607ac4230a18b469e7f1e3927dcae03093aa011e267e63e1723a7d901bc4b13b854d825fc122b28280e4ace5ab80736d6363866b8 +docfiles size=3076 + RELOC/doc/latex/guide-latex-fr/Chapitres/annexes.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/code-base.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/commandes.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/intro.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/p1-compilation.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/p1-historique.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/p1-installation.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/p2-erreurs.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/p2-images.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/p2-maths.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/p2-regles.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/p2-tableaux.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/p2-texte.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/p3-beamer.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/p3-images.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/p3-intro.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/p3-maths.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/p3-moteurs.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/p3-pstricks.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/p3-structuration.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/p3-tableaux.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/p3-texte.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/p3-tikz.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/packages.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/page-fin.tex + RELOC/doc/latex/guide-latex-fr/Chapitres/page-garde.tex + RELOC/doc/latex/guide-latex-fr/Images/Aide_LaTeX1.png + RELOC/doc/latex/guide-latex-fr/Images/Aide_LaTeX1.xcf + RELOC/doc/latex/guide-latex-fr/Images/Aide_LaTeX2.png + RELOC/doc/latex/guide-latex-fr/Images/Aide_LaTeX3.png + RELOC/doc/latex/guide-latex-fr/Images/Aide_LaTeX4.png + RELOC/doc/latex/guide-latex-fr/Images/Aide_LaTeX5.png + RELOC/doc/latex/guide-latex-fr/Images/Aide_LaTeX6.png + RELOC/doc/latex/guide-latex-fr/Images/Aide_LaTeX7.png + RELOC/doc/latex/guide-latex-fr/Images/aide_LaTeX1_original.png + RELOC/doc/latex/guide-latex-fr/Images/apercu_pdf.png + RELOC/doc/latex/guide-latex-fr/Images/apercu_pdf.xcf + RELOC/doc/latex/guide-latex-fr/Images/apercu_pdf_menu.png + RELOC/doc/latex/guide-latex-fr/Images/apercu_pdf_original.png + RELOC/doc/latex/guide-latex-fr/Images/buque_auteur-eps-converted-to.pdf + RELOC/doc/latex/guide-latex-fr/Images/buque_auteur.eps + RELOC/doc/latex/guide-latex-fr/Images/buque_auteur.svg + RELOC/doc/latex/guide-latex-fr/Images/compilation_clavier.png + RELOC/doc/latex/guide-latex-fr/Images/compilation_clavier.xcf + RELOC/doc/latex/guide-latex-fr/Images/compilation_clics.png + RELOC/doc/latex/guide-latex-fr/Images/compilation_clics.xcf + RELOC/doc/latex/guide-latex-fr/Images/compilation_diagramme.tex + RELOC/doc/latex/guide-latex-fr/Images/compilation_menu1.png + RELOC/doc/latex/guide-latex-fr/Images/compilation_menu2.png + RELOC/doc/latex/guide-latex-fr/Images/compilation_original.png + RELOC/doc/latex/guide-latex-fr/Images/compilation_rapide.png + RELOC/doc/latex/guide-latex-fr/Images/compilation_rapide.xcf + RELOC/doc/latex/guide-latex-fr/Images/compilation_schema.tex + RELOC/doc/latex/guide-latex-fr/Images/dknuth.jpg + RELOC/doc/latex/guide-latex-fr/Images/eclair-eps-converted-to.pdf + RELOC/doc/latex/guide-latex-fr/Images/eclair.eps + RELOC/doc/latex/guide-latex-fr/Images/eclair_image-matricielle.png + RELOC/doc/latex/guide-latex-fr/Images/fond.jpg + RELOC/doc/latex/guide-latex-fr/Images/fond_TikZ.pdf + RELOC/doc/latex/guide-latex-fr/Images/latex-project-logo-eps-converted-to.pdf + RELOC/doc/latex/guide-latex-fr/Images/latex-project-logo.eps + RELOC/doc/latex/guide-latex-fr/Images/latex-project-logo.svg + RELOC/doc/latex/guide-latex-fr/Images/licence-eps-converted-to.pdf + RELOC/doc/latex/guide-latex-fr/Images/licence.eps + RELOC/doc/latex/guide-latex-fr/Images/llamport.jpg + RELOC/doc/latex/guide-latex-fr/Images/miktex.png + RELOC/doc/latex/guide-latex-fr/Images/ol_plus_sl.png + RELOC/doc/latex/guide-latex-fr/Images/ornament-eps-converted-to.pdf + RELOC/doc/latex/guide-latex-fr/Images/ornament.eps + RELOC/doc/latex/guide-latex-fr/Images/ornament.svg + RELOC/doc/latex/guide-latex-fr/Images/overleaf.png + RELOC/doc/latex/guide-latex-fr/Images/sharelatex.png + RELOC/doc/latex/guide-latex-fr/Images/texmaker.png + RELOC/doc/latex/guide-latex-fr/README.md details="Readme" + RELOC/doc/latex/guide-latex-fr/guide-latex-fr.pdf details="The document itself" language="fr" + RELOC/doc/latex/guide-latex-fr/guide-latex-fr.tex +catalogue-also lshort-french +catalogue-contact-development https://docs.google.com/forms/d/1COBH4zmdCtn_kDzJsa0H9G12-NcmpatkFKngIaOfAnM/viewform?edit_requested=true +catalogue-contact-home http://drive.google.com/drive/folders/0BzU2BdcGjfU5Tk1XaXhxbk5JcEE?usp=sharing +catalogue-ctan /info/guide-latex-fr +catalogue-date 2019-05-10 08:26:24 +0200 +catalogue-license cc-by-nc-nd-4 +catalogue-topics tut-latex french-doc +catalogue-version 3.5 + +name guide-to-latex +category Package +revision 45712 +shortdesc examples and more from Guide to LaTeX, by Kopka and Daly +relocated 1 +containersize 300 +containerchecksum cc569e242b42361e6506144257db1109f1adee52915f361ed330699edea1895b78ac64488ae8b9e2224bd3baab01515be86486113afc1ed9b072a400ca736695 +doccontainersize 174484 +doccontainerchecksum bba47b9a9e5223e558244029e258835a865b90824c7069287f0c996a36c4fb78d21e62e88e52ea008dbc573e7a4ea34843a646eab11d8377a5167724286c397e +docfiles size=200 + RELOC/doc/latex/guide-to-latex/README.txt RELOC/doc/latex/guide-to-latex/demo.eps RELOC/doc/latex/guide-to-latex/demo.pdf RELOC/doc/latex/guide-to-latex/demodoc.pdf @@ -73959,31 +121412,10 @@ docfiles size=200 RELOC/doc/latex/guide-to-latex/seminar.con RELOC/doc/latex/guide-to-latex/sempdftx.sty -name guitarchordschemes -category Package -revision 35179 -shortdesc Guitar Chord and Scale Tablatures. -relocated 1 -longdesc This package provides two commands (\chordscheme and \scales). -longdesc With those commands it is possible to draw schematic diagrams -longdesc of guitar chord tablatures and scale tablatures. Both commands -longdesc know a range of options that allow wide customization of the -longdesc output. The package's drawing is done with the help of TikZ. -runfiles size=6 - RELOC/tex/latex/guitarchordschemes/guitarchordschemes.sty -docfiles size=107 - RELOC/doc/latex/guitarchordschemes/README - RELOC/doc/latex/guitarchordschemes/guitarchordschemes_en.pdf - RELOC/doc/latex/guitarchordschemes/guitarchordschemes_en.tex -catalogue-ctan /macros/latex/contrib/guitarchordschemes -catalogue-date 2014-09-15 15:50:34 +0200 -catalogue-license lppl1.3 -catalogue-version 0.6 - name guitar category Package revision 32258 -shortdesc Guitar chords and song texts. +shortdesc Guitar chords and song texts relocated 1 longdesc (La)TeX macros for typesetting guitar chords over song texts. longdesc The toolbox package is required. Note that this package only @@ -73991,25 +121423,88 @@ longdesc places arbitrary TeX code over the lyrics. To typeset the longdesc chords graphically (and not only by name), the author longdesc recommends use of an additional package such as gchords by K. longdesc Peeters. -runfiles size=2 - RELOC/tex/latex/guitar/guitar.sty +containersize 2388 +containerchecksum fed7be24d0bff6d2a0022374e4cbb60cda508b0f99a5a96d59060247aad561c1124728f00a6d0a51b3b22f4490c6153df740a5e9d8106da23c85bb18db385195 +doccontainersize 90368 +doccontainerchecksum 4a2012e693257c2bdb4daf46a2402882caf0c8efbc65bd6679c9eb11440ae75f09d31369839f84312bd1028207d8aa23a745847be1e762dea977ecd7f73b4a87 docfiles size=31 RELOC/doc/latex/guitar/README - RELOC/doc/latex/guitar/guitar.pdf + RELOC/doc/latex/guitar/guitar.pdf details="Package documentation" RELOC/doc/latex/guitar/guitar.tex RELOC/doc/latex/guitar/guitar.txt +srccontainersize 12096 +srccontainerchecksum 26b552a91240900b54a3266f26e9f439c46315bb9558d95ae5b27f518a7f5ffdcc1990a4ef676e9186b5492d4a66826754c4d34e13e82b9bd912ff74d14cd185 srcfiles size=14 RELOC/source/latex/guitar/guitar.dtx RELOC/source/latex/guitar/guitar.ins +runfiles size=2 + RELOC/tex/latex/guitar/guitar.sty catalogue-ctan /macros/latex/contrib/guitar -catalogue-date 2013-11-27 01:09:36 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl1.3 +catalogue-topics music chords catalogue-version 1.6 +name guitarchordschemes +category Package +revision 41880 +shortdesc Guitar Chord and Scale Tablatures +relocated 1 +longdesc This package provides two commands (\chordscheme and \scales). +longdesc With those commands it is possible to draw schematic diagrams +longdesc of guitar chord tablatures and scale tablatures. Both commands +longdesc know a range of options that allow wide customization of the +longdesc output. The package's drawing is done with the help of TikZ. +containersize 5032 +containerchecksum 3d4506825043357708cb5fcfee6ba7d6cc42fdcbdbaa772628bbcc89381afe40c58bebe9ad01343b96f3535c80c217bac5b85d5079d1e83a42bacfec995bbfa5 +doccontainersize 424492 +doccontainerchecksum ae3e21f74e66ad70a60403c8e9a06e747b770af3e586ee580686095fce8b405801e9c4d1bd59cf429defff61fb087974ce305c5fade387d5be10fe47be46e6bc +docfiles size=108 + RELOC/doc/latex/guitarchordschemes/README details="Readme" + RELOC/doc/latex/guitarchordschemes/guitarchordschemes_en.pdf details="Package documentation" language="en" + RELOC/doc/latex/guitarchordschemes/guitarchordschemes_en.tex +runfiles size=6 + RELOC/tex/latex/guitarchordschemes/guitarchordschemes.sty +catalogue-also guitar +catalogue-contact-repository https://bitbucket.org/cgnieder/guitarchordschemes +catalogue-ctan /macros/latex/contrib/guitarchordschemes +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics music chords +catalogue-version 0.7 + +name guitartabs +category Package +revision 48102 +shortdesc A class for drawing guitar tablatures easily +relocated 1 +longdesc This package provides is a simple LaTeX2e class that allows +longdesc guitarists to create basic guitar tablatures using LaTeX. +longdesc Create music and do not be bothered with macro programming. The +longdesc class depends on the LaTeX packages geometry, harmony, +longdesc inputenc, intcalc, musixtex, tikz, and xifthen, as well as the +longdesc article class. +containersize 2504 +containerchecksum a4866683cb639b63d455f40da2ef58ee4c69d0e29e5071437a07922a0a45598677557ce609905dd8fc5c3e40a98bceb9a753cf4506342585e6cc2c37fa591271 +doccontainersize 205316 +doccontainerchecksum ef5f516db586d1473d949f44a2eb9fb307b84ea5a7dcc3c9419298203b41c54ff4dad75d3b24cf30fbc24f4c60ad4b79b9c1fd58804667732a66b0ccb52cc3b4 +docfiles size=58 + RELOC/doc/latex/guitartabs/README.md details="Readme" + RELOC/doc/latex/guitartabs/guitartabs-doc.pdf details="Package documentation" + RELOC/doc/latex/guitartabs/guitartabs-doc.tex + RELOC/doc/latex/guitartabs/nothingelsematters.pdf details="Example of use" + RELOC/doc/latex/guitartabs/nothingelsematters.tex +runfiles size=3 + RELOC/tex/latex/guitartabs/guitartabs.cls +catalogue-ctan /macros/latex/contrib/guitartabs +catalogue-date 2018-06-30 04:59:57 +0200 +catalogue-license lppl1.3c +catalogue-topics music chords class + name guitlogo category Package revision 27458 -shortdesc Macros for typesetting the GuIT logo. +shortdesc Macros for typesetting the GuIT logo relocated 1 longdesc Guit provides some commands useful to correctly write the logo longdesc of GUIT -- "Gruppo Utilizzatori Italiani di TeX" (Italian TeX @@ -74022,26 +121517,48 @@ longdesc of the addresses of Group's internet site and public forum and longdesc 'GuITmeeting' logo. Optionally, using hyperref, the outputs of longdesc the above cited commands can become hyperlinks to Group's site. longdesc Documentation is available in Italian, only. -runfiles size=4 - RELOC/tex/latex/guitlogo/guit.cfg - RELOC/tex/latex/guitlogo/guit.sty +containersize 3332 +containerchecksum 9012385e513850655806330c3cf3570d513a1866e4a1d324a683287906367c7fde7f5488c2ba6ea705bdad09d1b837511b99cc9c40befdeb1b776834e0d5627c +doccontainersize 446096 +doccontainerchecksum 710759ebaf7c09e9d867ce68ff9f73abe7909ea7a2b9a4441eeb205343011cad3a08d7f2fdef5b43bb6ba08e0a58252458298b4102750198bb949feca0757388 docfiles size=128 - RELOC/doc/latex/guitlogo/README - RELOC/doc/latex/guitlogo/guit.pdf + RELOC/doc/latex/guitlogo/README details="Package README" language="it" + RELOC/doc/latex/guitlogo/guit.pdf details="Package documentation" language="it" RELOC/doc/latex/guitlogo/guittest.pdf RELOC/doc/latex/guitlogo/guittest.tex +srccontainersize 17728 +srccontainerchecksum bc2da4fbc92637164a0abcf32d46822d0d6cca05335fee19520414e552fcd6a4d1e5cef5c84f6983da96191849a6fae45e1c9535cc0acff0a393056bd124e090 srcfiles size=17 RELOC/source/latex/guitlogo/guit.dtx RELOC/source/latex/guitlogo/guit.ins +runfiles size=4 + RELOC/tex/latex/guitlogo/guit.cfg + RELOC/tex/latex/guitlogo/guit.sty catalogue-ctan /macros/latex/contrib/GuIT/GuITlogo -catalogue-date 2012-08-19 10:36:46 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics logo catalogue-version 0.9.2 name gustlib category Package -revision 15878 +revision 45712 +shortdesc plain macros for much core and extra functionality, from GUST relocated 1 +longdesc Includes bibliography support, token manipulation, +longdesc cross-references, verbatim, determining length of a paragraph's +longdesc last line, multicolumn output, Polish bibliography and index +longdesc styles, prepress and color separation, graphics manipulation, +longdesc tables. +containersize 40536 +containerchecksum cb91f48e66063c784addd1a208946343cdaece3ae0d28d3eb697add3bf16d82b7d01535018984434a882aa5d1901cd05ac68e0966554b77f4a2feeba933ca880 +doccontainersize 4296 +doccontainerchecksum 0a472bcba101b759b0864c09fbb28fd7473e8382e73cb5c2cfa8fe97f075a9a0ccba1603e0b08bb17fc10faa53907e52d78efb7ab09a7d5cd06bf1e17d82a1be +docfiles size=5 + RELOC/doc/plain/gustlib/README + RELOC/doc/plain/gustlib/readme.biblotex + RELOC/doc/plain/gustlib/readme.plbtx993 + RELOC/doc/plain/gustlib/readme.plmac218 runfiles size=73 RELOC/bibtex/bib/gustlib/plbib.bib RELOC/bibtex/bst/gustlib/plabbrv.bst @@ -74071,16 +121588,17 @@ runfiles size=73 RELOC/tex/plain/gustlib/roundbox.tex RELOC/tex/plain/gustlib/tp-crf.tex RELOC/tex/plain/gustlib/verbatim-dek.tex -docfiles size=5 - RELOC/doc/plain/gustlib/README - RELOC/doc/plain/gustlib/readme.biblotex - RELOC/doc/plain/gustlib/readme.plbtx993 - RELOC/doc/plain/gustlib/readme.plmac218 name gustprog category Package -revision 15878 +revision 45712 +shortdesc utility programs for Polish users of TeX relocated 1 +longdesc Provided as sources, not installed in the bin directories. +containersize 332 +containerchecksum 597abdd6c2eec380c531ef7f89ac0d2fcce6e33dc2d2c5040a58b5da3bfbdf2dc75cad926291c94ff1207a47e66cc213c7b7f76890495aa9ef6466bd830caace +doccontainersize 299256 +doccontainerchecksum 7817b203f9722409f10161072096dd410d34c2d84ee0ccf332d717c2eea0f408c76597fccea18b6022088cff0155433f77d085a8e8d5f28b72c4c227f578cb0d docfiles size=82 RELOC/doc/support/gustprog/README RELOC/doc/support/gustprog/l2h-examples.zip @@ -74089,80 +121607,156 @@ docfiles size=82 RELOC/doc/support/gustprog/porzadki.pl RELOC/doc/support/gustprog/slim.zip -name gu -category Package -revision 15878 -shortdesc Typeset crystallographic group-subgroup-schemes. -relocated 1 -longdesc The package simplifies typesetting of simple crystallographic -longdesc group-subgroup-schemes in the Barnighausen formalism. It -longdesc defines a new environment stammbaum, wherein all elements of -longdesc the scheme are defined. Afterwards all necessary dimensions are -longdesc calculated and the scheme is drawn. Currently two steps of -longdesc symmetry reduction are supported. -runfiles size=8 - RELOC/tex/latex/gu/gu.sty -docfiles size=202 - RELOC/doc/latex/gu/README - RELOC/doc/latex/gu/gudemo.tex - RELOC/doc/latex/gu/gudoc.pdf - RELOC/doc/latex/gu/gudoc.tex -catalogue-ctan /macros/latex/contrib/gu -catalogue-date 2012-07-13 13:47:30 +0200 -catalogue-license lppl - name gzt category Package -revision 37300 -shortdesc Bundle of classes for "La Gazette des Mathematiciens". -relocated 1 -longdesc This bundle provides the SMF classes gzt.cls and gztarticle.cls -longdesc (where SMF = Societe Mathematique de France) for the French -longdesc journal "La Gazette des Mathematiciens". gztarticle.cls allows -longdesc for a close reproduction of the layout of the "Gazette" and -longdesc provides a number of environments, especially for typesetting -longdesc mathematic formulas. -runfiles size=59 +revision 47381 +shortdesc Bundle of classes for "La Gazette des Mathematiciens" +relocated 1 +longdesc This bundle provides two classes and BibLaTeX styles for the +longdesc French journal "La Gazette des Mathematiciens": gzt for the +longdesc complete issues of the journal, aimed at the Gazette's team, +longdesc gztarticle, intended for authors who wish to publish an article +longdesc in the Gazette. This class's goals are to faithfully reproduce +longdesc the layout of the Gazette, thus enabling the authors to be able +longdesc to work their document in actual conditions, and provide a +longdesc number of tools (commands and environments) to facilitate the +longdesc drafting of documents, in particular those containing +longdesc mathematical formulas. +containersize 33624 +containerchecksum 7e0f493dca3e9916f28509b94bef393e8ff7be95f55e8da937b4922139ae77f4f4197586c3bff343f1fe1d22dcb4a803e2d4a3a115d201cc0f2c5fd71ba8a836 +doccontainersize 631344 +doccontainerchecksum 388aa99642bb838ae4a81a665bb90019c6e31b3aabefbc2c49396edc98d8fe2d00986023699b849162a69db6e6dafff26602f61540758510acb1aefcd883c4e6 +docfiles size=176 + RELOC/doc/latex/gzt/README.md details="Readme" + RELOC/doc/latex/gzt/english/README-TRANSLATION.md + RELOC/doc/latex/gzt/french/denis.png + RELOC/doc/latex/gzt/french/gzt-fr.bib + RELOC/doc/latex/gzt/french/gzt-fr.pdf details="Package documentation" language="fr" + RELOC/doc/latex/gzt/french/gzt-fr.tex + RELOC/doc/latex/gzt/french/latexmkrc + RELOC/doc/latex/gzt/french/sections/fixed-footnotes.tex + RELOC/doc/latex/gzt/french/sections/gztarticle.tex + RELOC/doc/latex/gzt/french/sections/notations.tex + RELOC/doc/latex/gzt/french/sections/packages-charges.tex + RELOC/doc/latex/gzt/french/sections/todo.tex +srccontainersize 42644 +srccontainerchecksum f6c4b16c47fd5773f6a25822d7cea758b5e612603e8004ae462b4e40ce4ef45e6fcbe8ff62b41828bbc3c7b83b8596919eb88864833546b9d785b865c475b312 +srcfiles size=56 + RELOC/source/latex/gzt/gzt.dtx +runfiles size=66 RELOC/tex/latex/gzt/gzt.cfg RELOC/tex/latex/gzt/gzt.cls RELOC/tex/latex/gzt/gzt.dbx RELOC/tex/latex/gzt/gzt.lbx RELOC/tex/latex/gzt/gztarticle.cls -docfiles size=156 - RELOC/doc/latex/gzt/README - RELOC/doc/latex/gzt/README.tex - RELOC/doc/latex/gzt/fixed-footnotes.tex - RELOC/doc/latex/gzt/gzt-logo.tex - RELOC/doc/latex/gzt/gzt.bib - RELOC/doc/latex/gzt/gzt.cwl - RELOC/doc/latex/gzt/gzt.pdf - RELOC/doc/latex/gzt/gzt.tex - RELOC/doc/latex/gzt/gztarticle.tex - RELOC/doc/latex/gzt/latexmkrc - RELOC/doc/latex/gzt/latexmkrc.tex - RELOC/doc/latex/gzt/lstlang0.sty - RELOC/doc/latex/gzt/ltxdoc.cfg - RELOC/doc/latex/gzt/notations.tex - RELOC/doc/latex/gzt/packages-charges.tex - RELOC/doc/latex/gzt/todo.tex -srcfiles size=53 - RELOC/source/latex/gzt/gzt.drv - RELOC/source/latex/gzt/gzt.dtx - RELOC/source/latex/gzt/gzt.ins + RELOC/tex/latex/gzt/images/README-PICTOGRAMS.md + RELOC/tex/latex/gzt/images/gzt-logo.pdf catalogue-ctan /macros/latex/contrib/gzt -catalogue-date 2015-05-09 14:19:56 +0200 +catalogue-date 2018-04-08 13:24:08 +0200 catalogue-license lppl1.3 -catalogue-version 0.9 +catalogue-topics journalpub class french +catalogue-version 0.98 + +name h2020proposal +category Package +revision 38428 +shortdesc LaTeX class and template for EU H2020 RIA proposal +relocated 1 +longdesc This package consists of a class file as well as FET and ICT +longdesc proposal templates for writing EU H2020 RIA proposals and +longdesc generating automatically the many cross-referenced tables that +longdesc are required. +containersize 8324 +containerchecksum ddee9c5c1838bad606f212c1a7ebb7ac4d7ae571f1e29e83d55744dd50afb55e302f4f20a3cedd0d4446886cfa515371fb913b862d4549618858896de2a543ef +doccontainersize 349084 +doccontainerchecksum 5ffad62ed8eb39c8cf07d4840983990009e5696a2d7714d2cbab13a69c77634d01f10a18f612c853a09dfd91ae1ea453bb3373681e89a6994ff4924dd64c3093 +docfiles size=147 + RELOC/doc/latex/h2020proposal/README.txt details="Readme" + RELOC/doc/latex/h2020proposal/gpl.txt + RELOC/doc/latex/h2020proposal/manual/h2020proposal.pdf details="Package documentation" + RELOC/doc/latex/h2020proposal/manual/h2020proposal.tex + RELOC/doc/latex/h2020proposal/template-fet/abstract.tex + RELOC/doc/latex/h2020proposal/template-fet/appendix.tex + RELOC/doc/latex/h2020proposal/template-fet/ethics.tex + RELOC/doc/latex/h2020proposal/template-fet/excellence.tex + RELOC/doc/latex/h2020proposal/template-fet/gantt.tex + RELOC/doc/latex/h2020proposal/template-fet/impact.tex + RELOC/doc/latex/h2020proposal/template-fet/implementation.tex + RELOC/doc/latex/h2020proposal/template-fet/members.tex + RELOC/doc/latex/h2020proposal/template-fet/template-fet.pdf details="Template (FET)" + RELOC/doc/latex/h2020proposal/template-fet/template-fet.tex + RELOC/doc/latex/h2020proposal/template-fet/wp-develop.tex + RELOC/doc/latex/h2020proposal/template-fet/wp-management.tex + RELOC/doc/latex/h2020proposal/template-fet/wp-test.tex + RELOC/doc/latex/h2020proposal/template-ict/abstract.tex + RELOC/doc/latex/h2020proposal/template-ict/appendix.tex + RELOC/doc/latex/h2020proposal/template-ict/ethics.tex + RELOC/doc/latex/h2020proposal/template-ict/excellence.tex + RELOC/doc/latex/h2020proposal/template-ict/gantt.tex + RELOC/doc/latex/h2020proposal/template-ict/impact.tex + RELOC/doc/latex/h2020proposal/template-ict/implementation.pdf + RELOC/doc/latex/h2020proposal/template-ict/implementation.tex + RELOC/doc/latex/h2020proposal/template-ict/members.tex + RELOC/doc/latex/h2020proposal/template-ict/template-ict.pdf details="Template (ICT)" + RELOC/doc/latex/h2020proposal/template-ict/template-ict.tex + RELOC/doc/latex/h2020proposal/template-ict/wp-develop.tex + RELOC/doc/latex/h2020proposal/template-ict/wp-management.tex + RELOC/doc/latex/h2020proposal/template-ict/wp-test.tex +runfiles size=11 + RELOC/tex/latex/h2020proposal/h2020proposal.cls +catalogue-ctan /macros/latex/contrib/h2020proposal +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license gpl3 +catalogue-topics proposal class +catalogue-version 1.0 + +name hackthefootline +category Package +revision 46494 +shortdesc Footline selection and configuration for LaTeX beamer's standard themes +relocated 1 +longdesc This package is taking over, defining and redefining different +longdesc footlines. Configuration is provided via using key-value +longdesc syntax. It depends on the pgfkeys used for providing the +longdesc configuration keys. Optional features require the following +longdesc LaTeX packages: appendixnumberbeamer, calc, etoolbox, and +longdesc numprint. +containersize 4404 +containerchecksum 223fb22b01327fb63ff16684d578f89ee583d5c7700dbfd5966aa8cb94ca4e280e4409620b0d261bf2a80a57f51658990b0a221c0dd311e3eae1f39d459e8098 +doccontainersize 183604 +doccontainerchecksum 960c6a0bd61210b097710cc6715012e4406b54dafcf070659228074598a05e0dbb65669ef77c3f6ca2cf80001e95c5f801070be29d416d2bd552d6c2a1d27f56 +docfiles size=73 + RELOC/doc/latex/hackthefootline/README.md details="Readme" + RELOC/doc/latex/hackthefootline/doc/hackthefootline-doc.pdf details="Package documentation" + RELOC/doc/latex/hackthefootline/doc/hackthefootline-doc.tex + RELOC/doc/latex/hackthefootline/doc/hackthefootline-examples.pdf + RELOC/doc/latex/hackthefootline/doc/hackthefootline-examples.tex +runfiles size=5 + RELOC/tex/latex/hackthefootline/hackthefootline.sty +catalogue-contact-bugs https://github.com/sfr682k/hackthefootline/issues +catalogue-contact-repository https://github.com/sfr682k/hackthefootline +catalogue-ctan /macros/latex/contrib/beamer-contrib/hackthefootline +catalogue-date 2018-01-29 23:30:32 +0100 +catalogue-license lppl1.3c +catalogue-topics presentation page-hf name hacm category Package revision 27671 -shortdesc Font support for the Arka language. +shortdesc Font support for the Arka language relocated 1 longdesc The package supports typesetting hacm, the alphabet of the longdesc constructed language Arka. The bundle provides nine official longdesc fonts, in Adobe Type 1 format. execute addMap hacm.map +containersize 226288 +containerchecksum 6f4373f4e30d95c747ecbec45c53a9af23b78acb84a063dc0b2d4d5ed218e7c5f70d4f29817d39f6cf62cacc455cc3117ced589d41bf3f321a6f9d882823164a +doccontainersize 205660 +doccontainerchecksum bb6d5cd50e68ce84abd5f7296d8216d929b772f30e946508ca9bad2ffcd8d077d1927fcc76a5ea2e338799109b34adc8272f9f7f6d316f5af1312070f57fcc3e +docfiles size=53 + RELOC/doc/fonts/hacm/README details="Readme" + RELOC/doc/fonts/hacm/hacmdoc.pdf details="Package documentation" + RELOC/doc/fonts/hacm/hacmdoc.tex runfiles size=106 RELOC/fonts/map/dvips/hacm/hacm.map RELOC/fonts/tfm/public/hacm/alblant.tfm @@ -74209,18 +121803,287 @@ runfiles size=106 RELOC/tex/latex/hacm/ot1hinj.fd RELOC/tex/latex/hacm/ot1hkar.fd RELOC/tex/latex/hacm/ot1hlan.fd -docfiles size=53 - RELOC/doc/fonts/hacm/README - RELOC/doc/fonts/hacm/hacmdoc.pdf - RELOC/doc/fonts/hacm/hacmdoc.tex catalogue-ctan /fonts/hacm -catalogue-date 2014-05-03 14:44:16 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics font font-type1 font-invented lang-invented catalogue-version 0.1 +name hagenberg-thesis +category Package +revision 51150 +shortdesc A Collection of LaTeX classes, style files, and example documents for academic manuscripts +relocated 1 +longdesc This bundle contains a collection of modern LaTeX classes, +longdesc style files, and example documents for authoring Bachelor, +longdesc Master, or Diploma theses and related academic manuscripts in +longdesc English and German. Includes a comprehensive tutorial (in +longdesc German) with detailed instructions and authoring guidelines. +containersize 17924 +containerchecksum a8515fd281f726029f3bcc170f60c8a98447d8e16cb64ad787fdd5576ab5fb58a077666f191a02f46608e1aaf84bfcc8f1064a28e00c77f62505134a5508be28 +doccontainersize 4024804 +doccontainerchecksum e7f1ff1c796b7ec2dcd7758a46149a20ce3d33fa6bfc3dc93a0d7dc4832e4f4692e1e74037c1f9e990a0245fd6cc5791ff998439ea6604519cf40bf463be7476 +docfiles size=2997 + RELOC/doc/latex/hagenberg-thesis/README.md details="Readme" + RELOC/doc/latex/hagenberg-thesis/examples/HgbArticle/images/cola-public-domain-photo-p.jpg + RELOC/doc/latex/hagenberg-thesis/examples/HgbArticle/main.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbArticle/main.tcp + RELOC/doc/latex/hagenberg-thesis/examples/HgbArticle/main.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbArticle/references.bib + RELOC/doc/latex/hagenberg-thesis/examples/HgbInternshipReport/images/logo.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbInternshipReport/main.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbInternshipReport/main.tcp + RELOC/doc/latex/hagenberg-thesis/examples/HgbInternshipReport/main.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbInternshipReport/references.bib + RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportDE/images/screenshot-clean.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportDE/images/screenshot-dirty.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportDE/main.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportDE/main.tcp + RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportDE/main.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportDE/references.bib + RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportEN/images/screenshot-clean.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportEN/images/screenshot-dirty.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportEN/main.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportEN/main.tcp + RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportEN/main.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportEN/references.bib + RELOC/doc/latex/hagenberg-thesis/examples/HgbTermReport/images/PLACE_IMAGES_HERE.txt + RELOC/doc/latex/hagenberg-thesis/examples/HgbTermReport/main.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbTermReport/main.tcp + RELOC/doc/latex/hagenberg-thesis/examples/HgbTermReport/main.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbTermReport/references.bib + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/back/anhang_a.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/back/anhang_b.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/back/anhang_c.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/back/anhang_d.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/back/messbox.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/chapters/abbildungen.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/chapters/abschlussarbeit.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/chapters/drucken.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/chapters/einleitung.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/chapters/latex.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/chapters/literatur.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/chapters/mathematik.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/chapters/schluss.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/front/abstract.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/front/kurzfassung.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/front/vorwort.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/images/logo.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/main.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/main.tcp + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/main.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/references.bib + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/back/appendix_a.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/back/appendix_b.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/back/appendix_c.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/back/appendix_d.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/back/printbox.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/chapters/closing.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/chapters/figures.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/chapters/introduction.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/chapters/latex.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/chapters/literature.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/chapters/mathematics.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/chapters/printing.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/chapters/thethesis.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/front/abstract.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/front/kurzfassung.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/front/preface.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/images/logo.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/main.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/main.tcp + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/main.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/references.bib + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/back/anhang_a.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/back/anhang_b.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/back/anhang_c.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/back/anhang_d.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/back/messbox.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/chapters/abbildungen.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/chapters/abschlussarbeit.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/chapters/drucken.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/chapters/einleitung.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/chapters/latex.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/chapters/literatur.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/chapters/mathematik.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/chapters/schluss.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/front/abstract.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/front/kurzfassung.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/front/vorwort.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/ball-bearing-1.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/ball-bearing-2.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/cola-public-domain-photo-p.jpg + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/ellipse-parameters-1.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/ellipse-parameters-2.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/ellipse-parameters.ai + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/ellipse-parameters.fh11.zip + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/fragebogen.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/freehand-export-screen-setup.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/ibm-360-color.jpg + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/inkscape-pdf-save-screenhot.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/inkscape-template-orig.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/inkscape-template.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/inkscape-template.pdf_tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/inkscape-template.svg + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/logo.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/mathematica-example.nb + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/mathematica-example.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/overhang-mounting.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/photoshop-eps-screen.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/screenshot-clean.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/screenshot-dirty.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/straddle-mounting.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/techniccenter-profile-dvi-26.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/techniccenter-profile-dvips-26.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/workflow-cm.fh11.zip + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/workflow-cm.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/images/yap-inverse-search-settings.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/main.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/main.tcp + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/main.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial-smartquotes/references.bib + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/back/anhang_a.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/back/anhang_b.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/back/anhang_c.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/back/anhang_d.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/back/messbox.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/chapters/abbildungen.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/chapters/abschlussarbeit.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/chapters/drucken.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/chapters/einleitung.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/chapters/latex.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/chapters/literatur.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/chapters/mathematik.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/chapters/schluss.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/front/abstract.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/front/kurzfassung.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/front/vorwort.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/ball-bearing-1.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/ball-bearing-2.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/cola-public-domain-photo-p.jpg + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/ellipse-parameters-1.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/ellipse-parameters-2.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/ellipse-parameters.ai + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/ellipse-parameters.fh11.zip + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/fragebogen.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/freehand-export-screen-setup.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/ibm-360-color.jpg + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/inkscape-pdf-save-screenhot.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/inkscape-template-orig.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/inkscape-template.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/inkscape-template.pdf_tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/inkscape-template.svg + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/logo.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/mathematica-example.nb + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/mathematica-example.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/overhang-mounting.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/photoshop-eps-screen.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/screenshot-clean.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/screenshot-dirty.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/straddle-mounting.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/techniccenter-profile-dvi-26.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/techniccenter-profile-dvips-26.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/workflow-cm.fh11.zip + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/workflow-cm.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/yap-inverse-search-settings.png + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/main.pdf + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/main.tcp + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/main.tex + RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/references.bib + RELOC/doc/latex/hagenberg-thesis/examples/Manual/main.pdf + RELOC/doc/latex/hagenberg-thesis/examples/Manual/main.tcp + RELOC/doc/latex/hagenberg-thesis/examples/Manual/main.tex + RELOC/doc/latex/hagenberg-thesis/examples/Manual/references.bib + RELOC/doc/latex/hagenberg-thesis/hagenberg-thesis-tutorial.pdf details="Example document / Tutorial (German)" language="de" + RELOC/doc/latex/hagenberg-thesis/hagenberg-thesis.pdf details="Package documentation" + RELOC/doc/latex/hagenberg-thesis/hagenberg-thesis.tex +runfiles size=22 + RELOC/tex/latex/hagenberg-thesis/hgb.sty + RELOC/tex/latex/hagenberg-thesis/hgbabbrev.sty + RELOC/tex/latex/hagenberg-thesis/hgbalgo.sty + RELOC/tex/latex/hagenberg-thesis/hgbarticle.cls + RELOC/tex/latex/hagenberg-thesis/hgbbib.sty + RELOC/tex/latex/hagenberg-thesis/hgbheadings.sty + RELOC/tex/latex/hagenberg-thesis/hgblistings.sty + RELOC/tex/latex/hagenberg-thesis/hgbmath.sty + RELOC/tex/latex/hagenberg-thesis/hgbreport.cls + RELOC/tex/latex/hagenberg-thesis/hgbthesis.cls +catalogue-contact-repository https://github.com/Digital-Media/HagenbergThesis +catalogue-ctan /macros/latex/contrib/hagenberg-thesis +catalogue-date 2019-05-17 10:59:38 +0200 +catalogue-license cc-by-4 +catalogue-topics dissertation class + +name halloweenmath +category Package +revision 44043 +shortdesc Scary and creepy math symbols with AMS-LaTeX integration +relocated 1 +longdesc The package defines a handful of commands for typesetting +longdesc mathematical symbols of various kinds, ranging from 'large' +longdesc operators to extensible arrow-like relations and growing +longdesc arrow-like math accents that all draw from the classic +longdesc Halloween-related iconography (pumpkins, witches, ghosts, cats, +longdesc and so on) while being, at the same time, seamlessly integrated +longdesc within the rest of the mathematics produced by (AmS-)LaTeX. +containersize 9148 +containerchecksum f56079b815307a59054559a0edc8c0d3e9e4138b0d961f81282a80af5ae579e4e3a2b18a3722cda0b49c014b834c6bb76971862e7e0740e0130b2f89d27318e8 +doccontainersize 889092 +doccontainerchecksum 0ec7d77114ab6296be8c7b38b2a6dad0cf5cdaa9c8bc833df52e89971b5d71e3cd6f026e02d480e8cbf1ce1b4231563463524745ce0f76be279340cc03550d4d +docfiles size=232 + RELOC/doc/latex/halloweenmath/00readme.txt details="2nd Readme" + RELOC/doc/latex/halloweenmath/Makefile + RELOC/doc/latex/halloweenmath/README details="Readme" + RELOC/doc/latex/halloweenmath/halloweenmath-doc.pdf details="Package overview" + RELOC/doc/latex/halloweenmath/halloweenmath-man.pdf details="User manual" + RELOC/doc/latex/halloweenmath/halloweenmath-man.tex + RELOC/doc/latex/halloweenmath/manifest.txt +srccontainersize 36540 +srccontainerchecksum 84dce1251e7fa939233322d5a74b41225e9a2d786af0f49b8a4b8df962ee1fda46ac492122fb361a4184ffa2c6dfd5bf2967f577b3a9b675900f3ede8015d790 +srcfiles size=47 + RELOC/source/latex/halloweenmath/halloweenmath.dtx + RELOC/source/latex/halloweenmath/halloweenmath.ins +runfiles size=11 + RELOC/tex/latex/halloweenmath/halloweenmath.sty +catalogue-ctan /macros/latex/contrib/halloweenmath +catalogue-date 2017-04-25 15:13:11 +0200 +catalogue-license lppl1.3 +catalogue-topics maths maths-symbol +catalogue-version 0.10a + +name handin +category Package +revision 48255 +shortdesc Light weight template for creating school submissions using LaTeX +relocated 1 +longdesc This package is for students creating school submissions using +longdesc LaTeX. It is especially suitable for math, physics, statistics +longdesc and the like. It can easily be used for creating exercises, +longdesc too. +containersize 3460 +containerchecksum 361fa013f1932da2370ccbd67e70acaac725349e4fd4fea28a6b676a5459aa8ce8fbc1edf42f3f3fe234e12771c5be8bc463ef758f823a3b43fcb7191bc1a660 +doccontainersize 440932 +doccontainerchecksum cf91e16a8f04835a47da1a5ccb31711fd9317db557f0152689a93c4f58de33c8e7c8be1f7c5d9eac599bf8dceab3f4d3e84831efd0612a58571d3c71f508f20c +docfiles size=115 + RELOC/doc/latex/handin/README.txt details="Readme" + RELOC/doc/latex/handin/example.pdf details="Example of use" + RELOC/doc/latex/handin/example.tex + RELOC/doc/latex/handin/handin-doc.pdf details="Package documentation" + RELOC/doc/latex/handin/handin-doc.tex + RELOC/doc/latex/handin/layout.pdf +runfiles size=3 + RELOC/tex/latex/handin/handin.sty +catalogue-contact-bugs https://github.com/Strauman/Handin-LaTeX-template/issues +catalogue-contact-repository https://github.com/Strauman/Handin-LaTeX-template +catalogue-ctan /macros/latex/contrib/handin +catalogue-date 2018-07-22 22:21:50 +0200 +catalogue-license lppl1.3c +catalogue-topics doc-templ +catalogue-version 0.1.1 + name handout category Package -revision 36877 +revision 43962 shortdesc Create handout for auditors of a talk relocated 1 longdesc In some fields of scholarship, a beamer does not offer good @@ -74229,10 +122092,12 @@ longdesc classical philology, the main sources are text, and it will be longdesc better to distribute a handout to the audience with extracts of longdesc the texts about which we will talk. The package supports longdesc preparation of such handouts when writing the talk. -runfiles size=1 - RELOC/tex/latex/handout/handout.sty -docfiles size=73 - RELOC/doc/latex/handout/README +containersize 2048 +containerchecksum 9c5da5e16df3bfb4eee1ff7b8c6881e7faeba7001fd7f0ecb8b3027a464d611149c8768b8d8853c07417d67a723fe5b1de19620593a177139241b47c7a814285 +doccontainersize 195724 +doccontainerchecksum 6da7783c7a0dcfee168ec4ad6924fca636ccb5fc965e326d9c38ff31c9d2c7942a820165232e4e89b7c1e4857e81952156198de55d7990ba01e5abcd4c31bfcf +docfiles size=74 + RELOC/doc/latex/handout/README details="Readme" RELOC/doc/latex/handout/examples/example.bib RELOC/doc/latex/handout/examples/example1-minimal.pdf RELOC/doc/latex/handout/examples/example1-minimal.tex @@ -74254,23 +122119,30 @@ docfiles size=73 RELOC/doc/latex/handout/examples/txt/Preau1583.tex RELOC/doc/latex/handout/examples/txt/Preau1583b.tex RELOC/doc/latex/handout/examples/txt/Richard_Simon_NT.tex - RELOC/doc/latex/handout/handout.pdf + RELOC/doc/latex/handout/handout.pdf details="Package documentation" RELOC/doc/latex/handout/handout.tex RELOC/doc/latex/handout/latexmkrc RELOC/doc/latex/handout/makefile +runfiles size=1 + RELOC/tex/latex/handout/handout.sty +catalogue-contact-bugs https://github.com/maieul/handout/issues +catalogue-contact-repository https://github.com/maieul/handout catalogue-ctan /macros/latex/contrib/handout -catalogue-date 2015-04-16 20:13:13 +0200 +catalogue-date 2017-04-21 20:47:11 +0200 catalogue-license lppl1.3 -catalogue-version 1.2.1a +catalogue-topics presentation +catalogue-version 1.6.0 name hands category Package revision 13293 -shortdesc Pointing hand font. +shortdesc Pointing hand font relocated 1 longdesc Provides right- and left-pointing hands in both black-on-white longdesc and white-on-black realisation. The font is distributed as longdesc Metafont source. +containersize 2612 +containerchecksum 77c1742d045110ee4da7473b14c1804fcfab3772ae10223848fee99c7c8a8fb3809aabeb82e4c99460f3cfa0e009ee8d470d60e8be4c79c25c3ff990b7d1595a runfiles size=6 RELOC/fonts/source/public/hands/hands.mf RELOC/fonts/source/public/hands/handsdef.mf @@ -74279,13 +122151,43 @@ runfiles size=6 RELOC/fonts/source/public/hands/rvmirror.mf RELOC/fonts/tfm/public/hands/hands.tfm catalogue-ctan /fonts/hands -catalogue-date 2014-05-06 20:53:54 +0200 +catalogue-date 2019-02-03 12:27:12 +0100 catalogue-license pd +catalogue-topics font font-mf font-symbol + +name hang +category Package +revision 43280 +shortdesc Environments for hanging paragraphs and list items +relocated 1 +longdesc This package provides environments for hanging paragraphs and +longdesc list items. In addition, it defines environments for labeled +longdesc paragraphs and list items. +containersize 1056 +containerchecksum 4a8227707b6878ab010b595296dbc96f0b31489dfc0abf0116e00d6b0acf54e91bad1ec182169357e4a2e1f14ee27afcaa23bd35db1fed7e4e972e66eebee042 +doccontainersize 53740 +doccontainerchecksum bb0af0db38793e12dbd8d33e2df613d581a1809e0661138a3e75cabac1aee2aca942aaa429678a817f487fda82f3ffa3a631d98c3129853ba6a5ce4175346b09 +docfiles size=22 + RELOC/doc/latex/hang/COPYING + RELOC/doc/latex/hang/ChangeLog + RELOC/doc/latex/hang/README details="Readme" + RELOC/doc/latex/hang/hang.pdf details="Package documentation" + RELOC/doc/latex/hang/hang.tex + RELOC/doc/latex/hang/sample.pdf details="Sample of use" + RELOC/doc/latex/hang/sample.tex +runfiles size=1 + RELOC/tex/latex/hang/hang.sty +catalogue-also hanging +catalogue-ctan /macros/latex/contrib/hang +catalogue-date 2017-02-19 05:41:33 +0100 +catalogue-license lppl1.3 +catalogue-topics layout list +catalogue-version 2.1 name hanging category Package revision 15878 -shortdesc Hanging paragraphs. +shortdesc Hanging paragraphs relocated 1 longdesc The hanging package facilitates the typesetting of hanging longdesc paragraphs. The package also enables typesetting with hanging @@ -74295,121 +122197,70 @@ longdesc packages) -- there are package options for suppressing each longdesc individual punctuation character. 'Real' attempts at hanging longdesc punction should nowadays use the microtype package, which takes longdesc advantage of the support offered in recent versions of pdfTeX. -runfiles size=2 - RELOC/tex/latex/hanging/hanging.sty +containersize 1956 +containerchecksum 54bd2269c169bfe2a28513354407de22948658e8067cebafa3a3b3d88040acc318f3f3aa375798e36bafacecfa10c4ab5500095b92328e6cbfc12a541a8a7b3e +doccontainersize 145540 +doccontainerchecksum a1e7e9d0d5b85e43ebd7ad88b39d6d5629807f668040041fd1248239c02394cf3c51aa676065c1d1d9e9ba8d1ad20f00e46d25025ddc0db7ec15148280a5b9c0 docfiles size=42 - RELOC/doc/latex/hanging/README - RELOC/doc/latex/hanging/hanging.pdf + RELOC/doc/latex/hanging/README details="Readme" + RELOC/doc/latex/hanging/hanging.pdf details="Package documentation" +srccontainersize 7908 +srccontainerchecksum d982182e5c6c19d6dfaf527f5ff95c0a1d15cfa3078205c73d9ac894d24ebeea31a636d66356387996fc0faf9815242661c884dd566c0dd1d90779d61ba93c28 srcfiles size=7 RELOC/source/latex/hanging/hanging.dtx RELOC/source/latex/hanging/hanging.ins +runfiles size=2 + RELOC/tex/latex/hanging/hanging.sty +catalogue-also hang catalogue-ctan /macros/latex/contrib/hanging -catalogue-date 2013-09-30 14:43:32 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics layout catalogue-version 1.2b -name hang -category Package -revision 37383 -shortdesc Environments for hanging paragraphs and list items. -relocated 1 -longdesc This package provides environments for hanging paragraphs and -longdesc list items. In addition, it defines environments for labeled -longdesc paragraphs and list items. -runfiles size=1 - RELOC/tex/latex/hang/hang.sty -docfiles size=22 - RELOC/doc/latex/hang/COPYING - RELOC/doc/latex/hang/ChangeLog - RELOC/doc/latex/hang/README - RELOC/doc/latex/hang/hang.pdf - RELOC/doc/latex/hang/hang.tex - RELOC/doc/latex/hang/sample.pdf - RELOC/doc/latex/hang/sample.tex -catalogue-ctan /macros/latex/contrib/hang -catalogue-date 2015-05-13 19:48:31 +0200 -catalogue-license lppl1.3 -catalogue-version 2.0 - name hanoi category Package revision 25019 -shortdesc Tower of Hanoi in TeX. +shortdesc Tower of Hanoi in TeX relocated 1 longdesc The Plain TeX program (typed in the shape of the towers of longdesc Hanoi) serves both as a game and as a TeX programming exercise. longdesc As a game it will solve the towers with (up to) 15 discs (with longdesc 15 discs, 32767 moves are needed). +containersize 1496 +containerchecksum efc8c4892ea4cc8ae395907fc428fe74d535d689a68b3b21422c5c944d4defd57747e519dbca9bd2df2dd010b99e3132afceadee36d547fc11b04480147626c4 runfiles size=1 RELOC/tex/plain/hanoi/hanoi.tex -catalogue-ctan /macros/plain/contrib/hanoi/hanoi.tex -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-ctan /macros/plain/contrib/hanoi +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics games catalogue-version 20120101 name happy4th category Package revision 25020 -shortdesc A firework display in obfuscated TeX. +shortdesc A firework display in obfuscated TeX relocated 1 longdesc The output PDF file gives an amusing display, as the reader longdesc pages through it. +containersize 436 +containerchecksum 45492a6becc7496ec6ca6adca474aa141b9c68b06aeed46bb1459f15b6cd1df9e4e2de3842a91ae0121d83269c1fe4f772418a93da67031bd14b6649f3a80657 +doccontainersize 52364 +doccontainerchecksum 78fe311673e370b867ad209fc1c62acd7aeb515e4b145bb7c487d30c121715994803e6dd540bcbf1b9b0776014327c7ca2f6c03437d9ff0b40f477ebff9cf254 docfiles size=23 - RELOC/doc/plain/happy4th/happy4th.pdf + RELOC/doc/plain/happy4th/happy4th.pdf details="Package output" RELOC/doc/plain/happy4th/happy4th.tex catalogue-ctan /macros/plain/contrib/happy4th -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics games frivolous catalogue-version 20120102 -name HA-prosper -category Package -revision 15878 -shortdesc Patches and improvements for prosper. -relocated 1 -longdesc HA-prosper is a patch for prosper that adds new functionality -longdesc to prosper based presentations. Among the new features you will -longdesc find automatic generation of a table of contents on each slide, -longdesc support for notes and portrait slides. The available styles -longdesc demonstrate how to expand the functionality of prosper even -longdesc further. -runfiles size=57 - RELOC/tex/latex/HA-prosper/HA-prosper.cfg - RELOC/tex/latex/HA-prosper/HA-prosper.sty - RELOC/tex/latex/HA-prosper/Styles/Aggie/AMLogo.eps - RELOC/tex/latex/HA-prosper/Styles/Aggie/HAPAggie.sty - RELOC/tex/latex/HA-prosper/Styles/Aggie/files.txt - RELOC/tex/latex/HA-prosper/Styles/Capsules/HAPcapsules.sty - RELOC/tex/latex/HA-prosper/Styles/Ciment/HAPciment.sty - RELOC/tex/latex/HA-prosper/Styles/Fyma/HAPFyma.sty - RELOC/tex/latex/HA-prosper/Styles/HA/HAPHA.sty - RELOC/tex/latex/HA-prosper/Styles/HA/flower.ps - RELOC/tex/latex/HA-prosper/Styles/Lakar/HAPLakar.sty - RELOC/tex/latex/HA-prosper/Styles/Simple/HAPsimple.sty - RELOC/tex/latex/HA-prosper/Styles/TCS/HAPTCS.sty - RELOC/tex/latex/HA-prosper/Styles/TCS/HAPTCSTealBlue.sty - RELOC/tex/latex/HA-prosper/Styles/TCS/HAPTCSgrad.sty - RELOC/tex/latex/HA-prosper/Styles/TCS/TCSgradlogo.ps - RELOC/tex/latex/HA-prosper/Styles/TCS/TCSlogo.ps - RELOC/tex/latex/HA-prosper/Styles/Tycja/HAPTycja.sty -docfiles size=62 - RELOC/doc/latex/HA-prosper/HA-prosper.pdf - RELOC/doc/latex/HA-prosper/HAPBigtest.tex - RELOC/doc/latex/HA-prosper/HAPDualslide.tex - RELOC/doc/latex/HA-prosper/HAPIntroduction.tex - RELOC/doc/latex/HA-prosper/README -srcfiles size=41 - RELOC/source/latex/HA-prosper/HA-prosper.def - RELOC/source/latex/HA-prosper/HA-prosper.dtx -catalogue-ctan /macros/latex/contrib/ha-prosper -catalogue-date 2012-02-23 00:03:38 +0100 -catalogue-license lppl -catalogue-version 4.21 - name har2nat category Package revision 17356 -shortdesc Replace the harvard package with natbib. +shortdesc Replace the harvard package with natbib relocated 1 longdesc This small package allows a LaTeX document containing the longdesc citation commands provided by the Harvard package to be @@ -74418,21 +122269,26 @@ longdesc natbib thus can be achieved simply by replacing longdesc \usepackage{harvard} with \usepackage{natbib} longdesc \usepackage{har2nat} It is important that har2nat be loaded longdesc after natbib, since it modifies natbib commands. -runfiles size=1 - RELOC/tex/latex/har2nat/har2nat.sty +containersize 1136 +containerchecksum b3e76b7c4a3a241f716de344481c9927daaa73badc2f40cade074402629cdb3ed02568d9cb3d6276b0abd59ddcb34254fda419f859633281870ebc394c4a5a14 +doccontainersize 216528 +doccontainerchecksum 927ff5d03cb3559dcda63aa2745958722ab9233c58e55cdeaf7e1c441146991d3edca9c3a40fae2cc147e5e69d0c44c0d357ed37ef0e02bea41952474b36f88f docfiles size=57 - RELOC/doc/latex/har2nat/README - RELOC/doc/latex/har2nat/har2nat.pdf + RELOC/doc/latex/har2nat/README details="Readme" + RELOC/doc/latex/har2nat/har2nat.pdf details="Package documentation" RELOC/doc/latex/har2nat/har2nat.tex +runfiles size=1 + RELOC/tex/latex/har2nat/har2nat.sty catalogue-ctan /macros/latex/contrib/har2nat -catalogue-date 2012-04-15 22:35:03 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics bibtex-supp catalogue-version 1.0 name hardwrap category Package revision 21396 -shortdesc Hard wrap text to a certain character length. +shortdesc Hard wrap text to a certain character length relocated 1 longdesc The package facilitates wrapping text to a specific character longdesc width, breaking lines by words rather than, as done by TeX, by @@ -74440,78 +122296,100 @@ longdesc characters. The primary use for these facilities is to aid the longdesc generation of messages sent to the log file or console output longdesc to display messages to the user. Package authors may also find longdesc this useful when writing out arbitary text to an external file. -runfiles size=3 - RELOC/tex/latex/hardwrap/hardwrap.sty +containersize 2732 +containerchecksum eeb0f1da2161dae80d292db7b3289a307d892b8967ecf16021b8ed73c5fe724d914dda356bb8fbb48786760698e0060b39349b51886e13289524ed9d45463106 +doccontainersize 120084 +doccontainerchecksum 6dbb83fc5d4b82d11bc8d97d0ded3bcfe583c2b21ec2a260000b6bfb0bdea9c10df834735ffdcddfa9785b7c86b53920a20146d020b0435b8dc04610f05b9b16 docfiles size=31 - RELOC/doc/latex/hardwrap/README - RELOC/doc/latex/hardwrap/hardwrap.pdf + RELOC/doc/latex/hardwrap/README details="Readme" + RELOC/doc/latex/hardwrap/hardwrap.pdf details="Package documentation" +srccontainersize 11108 +srccontainerchecksum 9a40a2a441e9f47b3d681dcd064fad48fe90999b34b57c85b7112e518c99d3b87a9bfc3867beb66e76499bb53ff3c14837f71f2d261ed4c78cad447f185d0ce5 srcfiles size=11 RELOC/source/latex/hardwrap/hardwrap.dtx RELOC/source/latex/hardwrap/hardwrap.ins +runfiles size=3 + RELOC/tex/latex/hardwrap/hardwrap.sty catalogue-ctan /macros/latex/contrib/hardwrap -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl1.3 +catalogue-topics layout catalogue-version 0.2 name harmony category Package revision 15878 -shortdesc Typeset harmony symbols, etc., for musicology. +shortdesc Typeset harmony symbols, etc., for musicology relocated 1 longdesc The package harmony.sty uses the packages ifthen and amssymb longdesc from the amsfonts bundle, together with the LaTeX font longdesc lcirclew10 and the font musix13 from musixtex. -runfiles size=3 - RELOC/tex/latex/harmony/harmony.sty +containersize 2444 +containerchecksum 25e84addf5ac4c67985e1e433f795f377accfdd4dc56eae0ffb25ddffeb52e0a44278ce1a936406105ff5b7e9541452a103e0bb4ed91b8949facee75ca7c11ae +doccontainersize 138760 +doccontainerchecksum 3226831df9702b669ba4c269549927563ae321e8e10e0e41c6bd1a8d6522dcdaa4ae6a25a907a84cc1dc324c516a53754c81a0e1296fd8e3afbbb29f0992ead9 docfiles size=40 - RELOC/doc/latex/harmony/README - RELOC/doc/latex/harmony/harmony.pdf + RELOC/doc/latex/harmony/README details="Readme" + RELOC/doc/latex/harmony/harmony.pdf details="Package documentation (by example)" RELOC/doc/latex/harmony/harmony.tex +runfiles size=3 + RELOC/tex/latex/harmony/harmony.sty catalogue-ctan /macros/latex/contrib/harmony -catalogue-date 2011-10-24 22:33:28 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics music name harnon-cv category Package revision 26543 -shortdesc A CV document class with a vertical timeline for experience. +shortdesc A CV document class with a vertical timeline for experience relocated 1 longdesc The class offers another modern, neat, design, and provides a longdesc simple means of adding an 'experience timeline'. -runfiles size=2 - RELOC/tex/latex/harnon-cv/harnon-cv.cls +containersize 2180 +containerchecksum 5acef7bfd07f896f4251fe922cb96f71e9f289205eebfa83dd6aadd241f20eec5d9ecaa3d70d6df3dd61fbe7523f568407d89b7c32c27aa719a6f97b89f4cd33 +doccontainersize 50396 +doccontainerchecksum 1a8d96a152f9ac90f3a6e546c03652ebcde8f8d88a7282626d44177854aa41ec1c66eb6f4d787853711b80935f5e3e3c31d726d0e49d60841119db7ae278de96 docfiles size=16 - RELOC/doc/latex/harnon-cv/README - RELOC/doc/latex/harnon-cv/sample.pdf + RELOC/doc/latex/harnon-cv/README details="Readme" + RELOC/doc/latex/harnon-cv/sample.pdf details="Sample of use" RELOC/doc/latex/harnon-cv/sample.tex +runfiles size=2 + RELOC/tex/latex/harnon-cv/harnon-cv.cls catalogue-ctan /macros/latex/contrib/harnon-cv -catalogue-date 2014-10-02 11:45:28 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics cv class catalogue-version 1.0 name harpoon category Package revision 21327 -shortdesc Extra harpoons, using the graphics package. +shortdesc Extra harpoons, using the graphics package relocated 1 longdesc Provides over- and under-harpoon symbol commands; the harpoons longdesc may point in either direction, with the hook pointing up or longdesc down. The covered object is provided as an argument to the longdesc commands, so that they have the look of accent commands. -runfiles size=1 - RELOC/tex/latex/harpoon/harpoon.sty +containersize 1196 +containerchecksum 1894f54ff9eb98975f4eec9250a382534a0ede5312b4b540223d298a0fe5d7d8d24abe2018d07b30773e14bacdd97b60039a458fd274bb446aeb2e26b91bf96f +doccontainersize 19464 +doccontainerchecksum 4d69050cd2a7c57219a7c55e8d97656fe6f130936d2e79a00d3760e9139799cbb98db2f338586b65412402069b22971ac73e5b722a3911bf1402625dac3e7d52 docfiles size=8 - RELOC/doc/latex/harpoon/harpoon.pdf + RELOC/doc/latex/harpoon/harpoon.pdf details="Package documentation" RELOC/doc/latex/harpoon/harpoon.tex +runfiles size=1 + RELOC/tex/latex/harpoon/harpoon.sty catalogue-ctan /macros/latex/contrib/harpoon -catalogue-date 2012-04-15 22:35:03 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics graphics-symb catalogue-version 1.0 name harvard category Package revision 15878 -shortdesc Harvard citation package for use with LaTeX 2e. +shortdesc Harvard citation package for use with LaTeX 2e relocated 1 longdesc This is a re-implementation, for LaTeX 2e, of the original longdesc Harvard package. The bundle contains the LaTeX package, several @@ -74527,6 +122405,22 @@ longdesc nederlands.bst which deals with sorting Dutch names with longdesc prefixes (such as van) according to Dutch rules, together with longdesc several styles whose authors offer no description of their longdesc behaviour. +containersize 16376 +containerchecksum 64781bb5c419248934f259dafba2c43270396a1d3f49bb9a79050ebbb5655a5836a07fd69720f54f009501c5294a62f344f6b6c76adb89114a8c60d1e149e612 +doccontainersize 75192 +doccontainerchecksum 291c2a530da6d24ecf1a87818d27b6141e99944eed10cc2dced2537f30ecfc12580c2f58d01245ef53f7d2b803853ce9bf72c03f8a2c3267dde0f4c799a991bc +docfiles size=35 + RELOC/doc/latex/harvard/INSTALL + RELOC/doc/latex/harvard/README details="Package Readme" + RELOC/doc/latex/harvard/harvard.pdf details="Package documentation" + RELOC/doc/latex/harvard/harvard.perl + RELOC/doc/latex/harvard/harvard.tex + RELOC/doc/latex/harvard/manifest.txt +srccontainersize 1132 +srccontainerchecksum 58720acea1588f742d95d2916f8b1a5c8cba391243a433ae9b2cc4845dd3949c7b2a7a349b87fd663023e4d26b15b15dfb89b7f8db92e14e52f2f7ab835a160a +srcfiles size=2 + RELOC/source/latex/harvard/Makefile + RELOC/source/latex/harvard/doc_Makefile runfiles size=55 RELOC/bibtex/bib/harvard/harvard.bib RELOC/bibtex/bst/harvard/agsm.bst @@ -74537,125 +122431,160 @@ runfiles size=55 RELOC/bibtex/bst/harvard/kluwer.bst RELOC/bibtex/bst/harvard/nederlands.bst RELOC/tex/latex/harvard/harvard.sty -docfiles size=35 - RELOC/doc/latex/harvard/INSTALL - RELOC/doc/latex/harvard/README - RELOC/doc/latex/harvard/harvard.pdf - RELOC/doc/latex/harvard/harvard.perl - RELOC/doc/latex/harvard/harvard.tex - RELOC/doc/latex/harvard/manifest.txt -srcfiles size=2 - RELOC/source/latex/harvard/Makefile - RELOC/source/latex/harvard/doc_Makefile +catalogue-also har2nat catalogue-ctan /macros/latex/contrib/harvard -catalogue-date 2014-09-29 23:45:27 +0200 +catalogue-date 2018-12-22 09:07:14 +0100 catalogue-license lppl +catalogue-topics bibtex-sty bibtex-supp catalogue-version 2.0.5 name harveyballs category Package revision 32003 -shortdesc Create Harvey Balls using TikZ. +shortdesc Create Harvey Balls using TikZ relocated 1 longdesc The package provides 5 commands (giving symbols that indicate longdesc values from "none" to "full"). -runfiles size=1 - RELOC/tex/latex/harveyballs/harveyballs.sty +containersize 1284 +containerchecksum c282249d5758f6c8aa9dfd06cc4671211e76adc2e7c4f5cf925e713472e60f3d44c8a389c9ab4db5b8096336d46d99b62bde0f8c1f9fb5d22857e3cba98994e0 +doccontainersize 138784 +doccontainerchecksum 89ede2f13e82600a2e78047a08766e99879ef5c64dcbcf747a2c21b1a395f4c1a1184921a8a0064b15b86f574834f602870f6641f0f265f92dce506959c6c4e7 docfiles size=39 - RELOC/doc/latex/harveyballs/README - RELOC/doc/latex/harveyballs/harveyballs-Manual.pdf + RELOC/doc/latex/harveyballs/README details="Readme" + RELOC/doc/latex/harveyballs/harveyballs-Manual.pdf details="Package documentation" RELOC/doc/latex/harveyballs/harveyballs-Manual.tex +runfiles size=1 + RELOC/tex/latex/harveyballs/harveyballs.sty catalogue-ctan /graphics/pgf/contrib/harveyballs -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl3 +catalogue-topics graphics-symb pgf-tikz catalogue-version 1.1 name harvmac category Package revision 15878 -shortdesc Macros for scientific articles. +shortdesc Macros for scientific articles relocated 1 longdesc Known as 'Harvard macros', since written at that University. -runfiles size=4 - RELOC/tex/plain/harvmac/harvmac.tex +containersize 5640 +containerchecksum 7acf7eb52104bab80b0b9995cf43cac842c106b8aecdff8245b0d1ce8440823e65ead75e470f00923764eadd32e936e02192ec7bbe70295ca254aa57f9b5f662 +doccontainersize 5896 +doccontainerchecksum a0f3308b938ae73c66398c5a3140662240603248cd6fe338a22f3ca6b23f28789dbccee48dcd94a8bf84de029ec103aa35c5b9a78151ceaf61a9cb60b832c484 docfiles size=5 RELOC/doc/plain/harvmac/README RELOC/doc/plain/harvmac/harvsamp.tex +runfiles size=4 + RELOC/tex/plain/harvmac/harvmac.tex catalogue-ctan /macros/plain/contrib/harvmac -catalogue-date 2012-11-14 11:10:16 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics plain-ext name hatching category Package revision 23818 -shortdesc MetaPost macros for hatching interior of closed paths. +shortdesc MetaPost macros for hatching interior of closed paths relocated 1 longdesc The file hatching.mp contains a set of MetaPost macros for longdesc hatching interior of closed paths. Examples of usage are longdesc included. -runfiles size=1 - RELOC/metapost/hatching/hatching.mp +containersize 1528 +containerchecksum 71983591270b533a6824a836948fdd15d19c3f966c8277d8948b13c5f38b29c29c0b7fe577661f1ecc570dd71d89fa964afd254d50556b6893667cda95e21aa7 +doccontainersize 2444 +doccontainerchecksum 02c2eb4991aa9775feec0846eaad9ddb74123a64eba8a3731c8e40c689844e542793e0f6884df8666f3cec2ed43af26b2d25254cd0536920c6ff0b107f35bf5b docfiles size=3 - RELOC/doc/metapost/hatching/README + RELOC/doc/metapost/hatching/README details="Readme" RELOC/doc/metapost/hatching/htchuse.mp RELOC/doc/metapost/hatching/htchuse_.tex +runfiles size=1 + RELOC/metapost/hatching/hatching.mp catalogue-ctan /graphics/metapost/contrib/macros/hatching -catalogue-date 2012-04-15 22:35:03 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics graphics-subpic catalogue-version 0.11 name hausarbeit-jura category Package -revision 34009 -shortdesc Class for writing "juristiche Hausarbeiten" at German Universities. +revision 50762 +shortdesc Class for writing "juristische Hausarbeiten" at German Universities relocated 1 longdesc The class was developed for use by students writing legal longdesc essays ("juristische Hausarbeit") at German Universities. It is longdesc based on jurabook and jurabib and makes it easy for LaTeX longdesc beginners to get a correct and nicely formatted paper. -runfiles size=4 - RELOC/tex/latex/hausarbeit-jura/hausarbeit-jura.cls -docfiles size=84 - RELOC/doc/latex/hausarbeit-jura/README - RELOC/doc/latex/hausarbeit-jura/README.txt +containersize 5304 +containerchecksum 99fe789073c76535c9c8a307289bc29b14b0b7a45adf01459d76ee67099d56c9cf36fbe3587b108c99c1563cf077066ad6408955bd55f31cce6b4e53bab378ca +doccontainersize 339004 +doccontainerchecksum cd98eab62d47ae03a5238702ec5a246496880e55dd8a1a9913b3639197d0fe65d607317d9cc9cbd578bca6bc64babc80d257c2f8d84b7327fdbd77537ca1f660 +docfiles size=86 + RELOC/doc/latex/hausarbeit-jura/README.md details="Readme" RELOC/doc/latex/hausarbeit-jura/hausarbeit-demo.bib RELOC/doc/latex/hausarbeit-jura/hausarbeit-demo.tex - RELOC/doc/latex/hausarbeit-jura/hausarbeit-jura.pdf -srcfiles size=9 + RELOC/doc/latex/hausarbeit-jura/hausarbeit-jura.pdf details="Package documentation (German)" language="de" +srccontainersize 12816 +srccontainerchecksum 2d8edbc3163c00117f9c1297970f2309df35ccb6d5166c723365c1267af736c05dc5eb4bf77cfe6bb6e25a829bba83007fa95bfcbe6aac7473f4657cd450fcb7 +srcfiles size=12 RELOC/source/latex/hausarbeit-jura/hausarbeit-jura.dtx RELOC/source/latex/hausarbeit-jura/hausarbeit-jura.ins +runfiles size=5 + RELOC/tex/latex/hausarbeit-jura/hausarbeit-jura.cls +catalogue-contact-repository https://github.com/sieversMartin/hausarbeit-jura catalogue-ctan /macros/latex/contrib/hausarbeit-jura -catalogue-date 2014-09-29 23:44:54 +0200 +catalogue-date 2019-04-04 13:49:38 +0200 catalogue-license lppl1.3 -catalogue-version 1.1 +catalogue-topics legal essay class +catalogue-version 2.0 name havannah category Package revision 36348 -shortdesc Diagrams of board positions in the games of Havannah and Hex. +shortdesc Diagrams of board positions in the games of Havannah and Hex relocated 1 longdesc This package defines macros for typesetting diagrams of board longdesc positions in the games of Havannah and Hex. -runfiles size=3 - RELOC/tex/latex/havannah/havannah.sty +containersize 2792 +containerchecksum f19498f0f9a7ce349fab4291fef80ff2f2f9eb88c60edeb76174918955fab51f22a0d06b533112e594c0f4cfba23feab58c41fe75e1c4fa2fc4db7cd9f473d0e +doccontainersize 222808 +doccontainerchecksum ee1a90d491debac3f22f470e5df79e11152d153cef97e8d2e38c5d8a60a1931384d65bb91a6d459e6aeba39741763fa67d589bf9004efc5059699ec621b99e43 docfiles size=57 - RELOC/doc/latex/havannah/README - RELOC/doc/latex/havannah/havannah.pdf + RELOC/doc/latex/havannah/README details="Readme" + RELOC/doc/latex/havannah/havannah.pdf details="Package documentation" +srccontainersize 6160 +srccontainerchecksum 9831ea87fbe6e12af8c7fb49d321049316221f4dd33b79a9495c5205b60ddf2f3593c8dfe2f4157e3934f21e69e3004b05802a0d592ae608b2de69cceb2f0c7c srcfiles size=9 RELOC/source/latex/havannah/havannah.dtx RELOC/source/latex/havannah/havannah.ins +runfiles size=3 + RELOC/tex/latex/havannah/havannah.sty catalogue-ctan /macros/latex/contrib/havannah -catalogue-date 2015-03-01 06:19:26 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics games pgf-tikz name hc category Package revision 15878 -shortdesc Replacement for the LaTeX classes. +shortdesc Replacement for the LaTeX classes relocated 1 longdesc A set of replacements for the default LaTeX classes, based upon longdesc the Koma-Script bundle and the seminar class. Includes hcart, longdesc hcreport, hcletter, and hcslides. +containersize 12824 +containerchecksum 17c7037eb04c1d0064dbb637f51947243d1b8f07d46245dfb8f2a38a1ea068ebe41da7e2346ccedf02979003a0a2fa0fbd25eaebf7847b266e21b7c873b032d4 +doccontainersize 43508 +doccontainerchecksum 18aaf579ef82a11ea1e752524d9a04a4a0aa5d6cbb496bde380664723dd30cd421c77dfba1ee6bd88def576c76e202b328198fa6dfb4a9ab451875c3753a515b +docfiles size=38 + RELOC/doc/latex/hc/COPYING + RELOC/doc/latex/hc/FILES + RELOC/doc/latex/hc/README details="Readme" + RELOC/doc/latex/hc/hc.ps +srccontainersize 14060 +srccontainerchecksum 42d3f57fb2c38823875116a67e3e71a3b1aeccdfa00c7a201163325c31fbd47d60a1dd028c6d9102d38d6490424bb118178c7589a433a69ec26e505b805418f8 +srcfiles size=15 + RELOC/source/latex/hc/hc.dtx + RELOC/source/latex/hc/hc.ins runfiles size=35 RELOC/bibtex/bst/hc/hc-de.bst RELOC/bibtex/bst/hc/hc-en.bst @@ -74664,23 +122593,123 @@ runfiles size=35 RELOC/tex/latex/hc/hcletter.cls RELOC/tex/latex/hc/hcreport.cls RELOC/tex/latex/hc/hcslides.cls -docfiles size=38 - RELOC/doc/latex/hc/COPYING - RELOC/doc/latex/hc/FILES - RELOC/doc/latex/hc/README - RELOC/doc/latex/hc/hc.ps -srcfiles size=15 - RELOC/source/latex/hc/hc.dtx - RELOC/source/latex/hc/hc.ins catalogue-ctan /macros/latex/contrib/hc -catalogue-date 2012-04-15 22:35:03 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics class presentation letter + +name he-she +category Package +revision 41359 +shortdesc Alternating pronouns to aid gender-neutral writing +relocated 1 +longdesc The package implements a version of semi-automatic pronoun +longdesc switching for writing gender-neutral (and possibly annoying) +longdesc prose. It has upper- and lowercase versions of switching +longdesc pronouns for all case forms, plus anaphoric versions that +longdesc reflect the current gender choice. +containersize 3096 +containerchecksum 726954216d3f8328eb7868553875651c2dbc3f626a9eb60fddd770b0e236a4e09a45872020589d8f263cb9f39300d1743e0a35676947752f33933db1e766411d +doccontainersize 213100 +doccontainerchecksum 580702222de769b066b01af45aad75717d11f46178a2b1f19e0bdc85b67497d9aed8b7ad642f76b8b85c5513f4921f58af8bcb80d1fcb88307f8ca8b07c8307b +docfiles size=56 + RELOC/doc/latex/he-she/README details="Readme" + RELOC/doc/latex/he-she/he-she.pdf details="Package documentation" + RELOC/doc/latex/he-she/he-she.tex +runfiles size=3 + RELOC/tex/latex/he-she/he-she.sty +catalogue-also gender eemeir +catalogue-ctan /macros/latex/contrib/he-she +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl1.3 +catalogue-topics typesetting +catalogue-version 1.3 + +name hecthese +category Package +revision 50590 +shortdesc A class for dissertations and theses at HEC Montreal +relocated 1 +longdesc This package provides the hecthese class, a class based on +longdesc memoir and compatible with LaTeX. Using this class, +longdesc postgraduate students at HEC Montreal will be able to write +longdesc their dissertation or thesis while complying with all the +longdesc presentation standards required by the University. This class +longdesc is meant to be as flexible as possible; in particular, there +longdesc are very few hardcoded features except those that take care of +longdesc the document's layout. Dissertations and theses at HEC Montreal +longdesc can be written on a per-chapter or per-article basis. Documents +longdesc that are written on a per-article basis require a bibliography +longdesc for each of the included articles and a general bibliography +longdesc for the entire document. The hecthese class takes care of these +longdesc requirements. The class depends on babel, color, enumitem, +longdesc fontawesome, framed, numprint, url, and hyperref. +containersize 4012 +containerchecksum 5cf62262cc231f229c1a66819e620fc55f798d8152b09434c0c288610a59a6ada5a9703e903b7d0fe761f1197757a1594242fc181928f6c6a5bad1c3d7dfebde +doccontainersize 891720 +doccontainerchecksum 3d06c52646c4985df8fe71bf07ae0f5305dc719c03025f1cbaf511b1c1de99e02f381740cd4f1074f0fd4b211a16575dcc7c1def28d9d75e615dc1d08d5257fa +docfiles size=305 + RELOC/doc/latex/hecthese/README.md details="Readme" + RELOC/doc/latex/hecthese/abstract-english.tex + RELOC/doc/latex/hecthese/abstract-french.tex + RELOC/doc/latex/hecthese/acknowledgements.tex + RELOC/doc/latex/hecthese/acronym-list.tex + RELOC/doc/latex/hecthese/annexe.tex + RELOC/doc/latex/hecthese/appendix.tex + RELOC/doc/latex/hecthese/article-1.tex + RELOC/doc/latex/hecthese/article-2.tex + RELOC/doc/latex/hecthese/article-3.tex + RELOC/doc/latex/hecthese/avant-propos.tex + RELOC/doc/latex/hecthese/cadre-theorique.tex + RELOC/doc/latex/hecthese/chapitre-1.tex + RELOC/doc/latex/hecthese/chapitre-2.tex + RELOC/doc/latex/hecthese/chapitre-3.tex + RELOC/doc/latex/hecthese/chapter-1.tex + RELOC/doc/latex/hecthese/chapter-2.tex + RELOC/doc/latex/hecthese/chapter-3.tex + RELOC/doc/latex/hecthese/conclusion.tex + RELOC/doc/latex/hecthese/dedicace.tex + RELOC/doc/latex/hecthese/dedication.tex + RELOC/doc/latex/hecthese/gabarit-memoire-articles.tex + RELOC/doc/latex/hecthese/gabarit-memoire-classique.tex + RELOC/doc/latex/hecthese/gabarit-these-articles.tex + RELOC/doc/latex/hecthese/gabarit-these-classique.tex + RELOC/doc/latex/hecthese/hecthese-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/hecthese/hecthese.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/hecthese/introduction.tex + RELOC/doc/latex/hecthese/liste-abreviations.tex + RELOC/doc/latex/hecthese/literature-review.tex + RELOC/doc/latex/hecthese/preface.tex + RELOC/doc/latex/hecthese/remerciements.tex + RELOC/doc/latex/hecthese/resume-anglais.tex + RELOC/doc/latex/hecthese/resume-francais.tex + RELOC/doc/latex/hecthese/revue-litterature.tex + RELOC/doc/latex/hecthese/template-msc-articles.tex + RELOC/doc/latex/hecthese/template-msc-classic.tex + RELOC/doc/latex/hecthese/template-phd-articles.tex + RELOC/doc/latex/hecthese/template-phd-classic.tex + RELOC/doc/latex/hecthese/theoretical-framework.tex +srccontainersize 29928 +srccontainerchecksum 76faa35c65aedcff2e177c40f08e4d5a031f3804f3c786e38429c55b55a2f0261c66c8515691d2e23b0ef954316479d6d02e57388896f1d4bf79e9fa24e277d7 +srcfiles size=33 + RELOC/source/latex/hecthese/hecthese-en.ins + RELOC/source/latex/hecthese/hecthese-fr.ins + RELOC/source/latex/hecthese/hecthese.dtx +runfiles size=4 + RELOC/tex/latex/hecthese/hecthese.cls +catalogue-contact-home http://www.hec.ca/biblio +catalogue-contact-repository https://github.com/metalogueur/hecthese +catalogue-ctan /macros/latex/contrib/hecthese +catalogue-date 2019-03-25 17:28:57 +0100 +catalogue-license lppl1.3c +catalogue-topics dissertation class +catalogue-version 1.3.2 name helvetic category Package revision 31835 catalogue urw-base35 -shortdesc URW "Base 35" font pack for LaTeX. +shortdesc URW "Base 35" font pack for LaTeX relocated 1 longdesc A set of fonts for use as "drop-in" replacements for Adobe's longdesc basic set, comprising: Century Schoolbook (substituting for @@ -74693,6 +122722,8 @@ longdesc Chancery L Medium Italic (substituting for Adobe's Zapf longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). execute addMap uhv.map +containersize 539636 +containerchecksum db1921bbf180287cb735ef403948585a91b3d84fa0cb5c99ca1bd06db57632f2533f40d0b7aa04c01664ca7898166482559e130f375a85242bc44f362079ec8f runfiles size=594 RELOC/dvips/helvetic/config.uhv RELOC/fonts/afm/adobe/helvetic/phvb8a.afm @@ -74957,14 +122988,39 @@ runfiles size=594 RELOC/tex/latex/helvetic/ot1uhv.fd RELOC/tex/latex/helvetic/t1uhv.fd RELOC/tex/latex/helvetic/ts1uhv.fd +catalogue-also tex-gyre catalogue-ctan /fonts/urw/base35 -catalogue-date 2014-06-07 20:47:53 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics font font-type1 font-collection + +name hep +category Package +revision 15878 +shortdesc A "convenience wrapper" for High Energy Physics packages +relocated 1 +longdesc Loads the author's hepunits and hepnicenames packages, and a +longdesc selection of others that are useful in High Energy Physics +longdesc papers, etc. +containersize 2124 +containerchecksum 9cd27826b7dde1ebd5830cdd17423f4092c9833c962be7e73b515de2e624a7853badde0c244dc26be6b7d3d9f9c3932fffc48bb4e86e06b90d6699dcebb0d497 +doccontainersize 1800 +doccontainerchecksum 1d77a9bd31e982a8ff908f772d8cf67692145624bf00db2745afaf1aa59fc1da7cae6d2e094379077a550e4d76338a5a82bef8e25c8d733547751a24c84035f2 +docfiles size=2 + RELOC/doc/latex/hep/ChangeLog + RELOC/doc/latex/hep/README details="Readme" +runfiles size=2 + RELOC/tex/latex/hep/hep.sty +catalogue-ctan /macros/latex/contrib/hep +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics physics +catalogue-version 1.0 name hepnames category Package revision 35722 -shortdesc Pre-defined high energy particle names. +shortdesc Pre-defined high energy particle names relocated 1 longdesc Hepnames provides a pair of LaTeX packages, heppennames and longdesc hepnicenames, providing a large set of pre-defined high energy @@ -74976,36 +123032,41 @@ longdesc flexibility and robustness due to the hepparticles structures, longdesc which were written for this purpose. Hepnicenames provides the longdesc main non-resonant particle names from heppennames with more longdesc "friendly" names. -runfiles size=13 - RELOC/tex/latex/hepnames/hepnames.sty - RELOC/tex/latex/hepnames/hepnicenames.sty - RELOC/tex/latex/hepnames/heppennames.sty +containersize 6660 +containerchecksum ec893de8b4cedd1b18dd16c3237fa79b434e91cbab4b856c4fbe11afef162b560bda18c0fd75ab2c47b863cdcca1d64809a139d51f04e9c2f45eab6ba4036c28 +doccontainersize 975796 +doccontainerchecksum 36a0966b755b6bb0f0dd27c80235e66af7c5252df1ae27652e59fd65fc5f280eb487666eef04206813438204dc592c0295651ccf0bce1e5f85f4797cdb439850 docfiles size=500 RELOC/doc/latex/hepnames/ChangeLog RELOC/doc/latex/hepnames/Makefile - RELOC/doc/latex/hepnames/README - RELOC/doc/latex/hepnames/hepnames.pdf + RELOC/doc/latex/hepnames/README details="Readme" + RELOC/doc/latex/hepnames/hepnames.pdf details="Details of the package bundle" RELOC/doc/latex/hepnames/hepnames.tex RELOC/doc/latex/hepnames/hepnicenames-it.pdf RELOC/doc/latex/hepnames/hepnicenames-it.tex RELOC/doc/latex/hepnames/hepnicenames-macros.tex - RELOC/doc/latex/hepnames/hepnicenames-rm.pdf + RELOC/doc/latex/hepnames/hepnicenames-rm.pdf details="Enumeration of available nicenames" RELOC/doc/latex/hepnames/hepnicenames-rm.tex RELOC/doc/latex/hepnames/heppennames-it.pdf RELOC/doc/latex/hepnames/heppennames-it.tex RELOC/doc/latex/hepnames/heppennames-macros.tex - RELOC/doc/latex/hepnames/heppennames-rm.pdf + RELOC/doc/latex/hepnames/heppennames-rm.pdf details="Enumeration of available pennames" RELOC/doc/latex/hepnames/heppennames-rm.tex RELOC/doc/latex/hepnames/mkmacrotables +runfiles size=13 + RELOC/tex/latex/hepnames/hepnames.sty + RELOC/tex/latex/hepnames/hepnicenames.sty + RELOC/tex/latex/hepnames/heppennames.sty catalogue-ctan /macros/latex/contrib/hepnames -catalogue-date 2014-12-02 13:57:10 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics physics catalogue-version 2.0 name hepparticles category Package revision 35723 -shortdesc Macros for typesetting high energy physics particle names. +shortdesc Macros for typesetting high energy physics particle names relocated 1 longdesc HEPparticles is a set of macros for typesetting high energy longdesc particle names, to meet the following criteria: 1. The main @@ -75023,24 +123084,30 @@ longdesc A consequence of point 5 is that the well-known problems with longdesc boldness of particle names in section titles, headers and longdesc tables of contents automatically disappear if these macros are longdesc used. -runfiles size=5 - RELOC/tex/latex/hepparticles/hepparticles.sty +containersize 4448 +containerchecksum fb9229745b601b6f731c959856fe46d6871dd3a1c7fec2bac8116f4d74a575ff52523f610599979e25e7147b4ae6d36906d19ba66260356f15bc1a47a2d57460 +doccontainersize 83952 +doccontainerchecksum 539025b2f0998bf031f417d002028e29edc58c1818d0dc9c07ee58c6877b5709936be23985ecd5a518c36187f451a2d5df66b5832d0019ff8b755c763b903aa8 docfiles size=27 RELOC/doc/latex/hepparticles/ChangeLog - RELOC/doc/latex/hepparticles/README - RELOC/doc/latex/hepparticles/hepparticles.pdf + RELOC/doc/latex/hepparticles/README details="Readme" + RELOC/doc/latex/hepparticles/hepparticles.pdf details="Package documentation" RELOC/doc/latex/hepparticles/hepparticles.tex RELOC/doc/latex/hepparticles/testhepparticles.pdf RELOC/doc/latex/hepparticles/testhepparticles.tex +runfiles size=5 + RELOC/tex/latex/hepparticles/hepparticles.sty +catalogue-also maybemath catalogue-ctan /macros/latex/contrib/hepparticles -catalogue-date 2014-12-02 14:03:39 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics physics catalogue-version 2.0 name hepthesis category Package -revision 35720 -shortdesc A class for academic reports, especially PhD theses. +revision 46054 +shortdesc A class for academic reports, especially PhD theses relocated 1 longdesc Hepthesis is a LaTeX class for typesetting large academic longdesc reports, in particular PhD theses. It was originally developed @@ -75053,12 +123120,14 @@ longdesc output; Helpful extensions of existing environments, including longdesc equation and tabular; and Support for quotations at the start longdesc of the thesis and each chapter. The class is based on scrbook, longdesc from the KOMA-Script bundle. -runfiles size=7 - RELOC/tex/latex/hepthesis/hepthesis.cls -docfiles size=250 +containersize 7212 +containerchecksum ea6543fec07480af8db52e43ea5fda346ed4e9ea245af0810a6988d864675a903841849e502506b333cef0b1685a6946ebf1f686bbc74f4ddcc7eea676c019ed +doccontainersize 689568 +doccontainerchecksum e456a0ca03da4bf71d767616a140b6e1d922e05944a4db2c0cbb360dff39fc7e8bae741ae5adb49972253f38774f1a9c65393bcf4e38e3c568b0215a04f63d48 +docfiles size=248 RELOC/doc/latex/hepthesis/ChangeLog RELOC/doc/latex/hepthesis/Makefile - RELOC/doc/latex/hepthesis/README + RELOC/doc/latex/hepthesis/README details="Package README" RELOC/doc/latex/hepthesis/TODO RELOC/doc/latex/hepthesis/example/Makefile RELOC/doc/latex/hepthesis/example/appendices.tex @@ -75067,7 +123136,7 @@ docfiles size=250 RELOC/doc/latex/hepthesis/example/chap2.tex RELOC/doc/latex/hepthesis/example/chap3.tex RELOC/doc/latex/hepthesis/example/ckmfitter-alpha-combined.pdf - RELOC/doc/latex/hepthesis/example/example.pdf + RELOC/doc/latex/hepthesis/example/example.pdf details="Part of a thesis, seen as for printing" RELOC/doc/latex/hepthesis/example/example.tex RELOC/doc/latex/hepthesis/example/extrastyles.zip RELOC/doc/latex/hepthesis/example/frontmatter.tex @@ -75078,57 +123147,47 @@ docfiles size=250 RELOC/doc/latex/hepthesis/example/mythesis.bib RELOC/doc/latex/hepthesis/example/mythesismath.sty RELOC/doc/latex/hepthesis/example/preamble.tex - RELOC/doc/latex/hepthesis/hepthesis.pdf + RELOC/doc/latex/hepthesis/hepthesis.pdf details="Package documentation" RELOC/doc/latex/hepthesis/hepthesis.tex +runfiles size=7 + RELOC/tex/latex/hepthesis/hepthesis.cls catalogue-ctan /macros/latex/contrib/hepthesis -catalogue-date 2014-12-02 16:32:22 +0100 -catalogue-license lppl -catalogue-version 1.5.0 - -name hep -category Package -revision 15878 -shortdesc A "convenience wrapper" for High Energy Physics packages. -relocated 1 -longdesc Loads the author's hepunits and hepnicenames packages, and a -longdesc selection of others that are useful in High Energy Physics -longdesc papers, etc. -runfiles size=2 - RELOC/tex/latex/hep/hep.sty -docfiles size=2 - RELOC/doc/latex/hep/ChangeLog - RELOC/doc/latex/hep/README -catalogue-ctan /macros/latex/contrib/hep -catalogue-date 2011-11-17 00:18:18 +0100 +catalogue-date 2017-12-12 12:49:18 +0100 catalogue-license lppl -catalogue-version 1.0 +catalogue-topics physics dissertation class +catalogue-version 1.5.2 name hepunits category Package revision 15878 -shortdesc A set of units useful in high energy physics applications. +shortdesc A set of units useful in high energy physics applications relocated 1 longdesc Hepunits is a LaTeX package built on the SIunits package which longdesc adds a collection of useful HEP units to the existing SIunits longdesc set. These include the energy units \MeV, \GeV, \TeV and the longdesc derived momentum and mass units \MeVoverc, \MeVovercsq and so longdesc on. -runfiles size=2 - RELOC/tex/latex/hepunits/hepunits.sty +containersize 2132 +containerchecksum b6abbe3a93eac6c7c159cd9c305fbf61664908b93956b90cb413e2220b12d183e4fafcb361d8935bac16a39d14451f538d38d9452ca78eb4ed03841f3e5bda78 +doccontainersize 75620 +doccontainerchecksum 3247cf7865444fc2a600c05843c55ddca792b59b5906326e79591822c0e2577880d55704d4e726447aa503983644e7c0b7943482045b5c9ce6e8fc765bbc67b5 docfiles size=27 RELOC/doc/latex/hepunits/ChangeLog - RELOC/doc/latex/hepunits/README - RELOC/doc/latex/hepunits/hepunits.pdf + RELOC/doc/latex/hepunits/README details="Readme" + RELOC/doc/latex/hepunits/hepunits.pdf details="Package documentation" RELOC/doc/latex/hepunits/hepunits.tex +runfiles size=2 + RELOC/tex/latex/hepunits/hepunits.sty catalogue-ctan /macros/latex/contrib/hepunits -catalogue-date 2011-11-16 20:25:41 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics physics catalogue-version 1.1.1 name here category Package revision 16135 -shortdesc Emulation of obsolete package for "here" floats. +shortdesc Emulation of obsolete package for "here" floats relocated 1 longdesc Provides the H option for floats in LaTeX to signify that the longdesc environment is not really a float (and should therefore be @@ -75137,39 +123196,23 @@ longdesc older package of the same name, which has long been suppressed longdesc by its author. The job is done by nothing more than loading the longdesc float package, which has long provided the option in an longdesc acceptable framework. +containersize 896 +containerchecksum 35c9ac325579de5d3bac4b8d16b1f30355398037cd0ad1c52b1585eb7ec666e743680eb05bec7b1f8cfa3bba3d7f5c0e6e06cddde6ca879ea708388df140eef0 +doccontainersize 596 +doccontainerchecksum 482a2ef8edbe41ce76e2c32bb579b132c84306cbd5387cb5249b10a02826e610229ec9c75a1df53b5b930bb982e1157ad9ffa63a77f84461cb6cc6332f6d6e54 +docfiles size=1 + RELOC/doc/latex/here/README details="Readme" runfiles size=1 RELOC/tex/latex/here/here.sty -docfiles size=1 - RELOC/doc/latex/here/README catalogue-ctan /macros/latex/contrib/here -catalogue-date 2014-07-15 18:11:05 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd - -name he-she -category Package -revision 29290 -shortdesc Alternating pronouns to aid gender-neutral writing. -relocated 1 -longdesc The package implements a version of semi-automatic pronoun -longdesc switching for writing gender-neutral (and possibly annoying) -longdesc prose. It has upper- and lowercase versions of switching -longdesc pronouns for all case forms, plus anaphoric versions that -longdesc reflect the current gender choice. -runfiles size=2 - RELOC/tex/latex/he-she/he-she.sty -docfiles size=54 - RELOC/doc/latex/he-she/README - RELOC/doc/latex/he-she/he-she.pdf - RELOC/doc/latex/he-she/he-she.tex -catalogue-ctan /macros/latex/contrib/he-she -catalogue-date 2015-03-08 08:21:15 +0100 -catalogue-license lppl1.3 -catalogue-version 1.1 +catalogue-topics float name heuristica category Package -revision 35964 -shortdesc Fonts extending Utopia, with LaTeX support files. +revision 43507 +shortdesc Fonts extending Utopia, with LaTeX support files relocated 1 longdesc The fonts extend the utopia set with Cyrillic glyphs, longdesc additional figure styles, ligatures and Small Caps in Regular @@ -75177,6 +123220,17 @@ longdesc style only. Macro support, and maths fonts that match the longdesc Utopia family, are provided by the Fourier and the Mathdesign longdesc font packages. execute addMap Heuristica.map +containersize 1079040 +containerchecksum 4e37f64eae5f0ee4b2c7f52d179aca3ca983ddcfee203f530415d7f45ec571b85db4f9fb6485a9d180d7e6512373de834942873456e1f9bb7b783764a392bf5f +doccontainersize 224716 +doccontainerchecksum 26507e2d7fd13eb78c2143adc8472a5f00e5ef1815f1dfe8cbdc09be0016a54c2c3a59a1c6b04ab7e6851bbfdfbd2f7dc0551d6423eb69bec66bae0dc7b9051d +docfiles size=69 + RELOC/doc/fonts/heuristica/FontLog.txt + RELOC/doc/fonts/heuristica/OFL-FAQ.txt + RELOC/doc/fonts/heuristica/OFL.txt + RELOC/doc/fonts/heuristica/README details="Readme" + RELOC/doc/fonts/heuristica/heuristica-doc.pdf details="Package documentation" + RELOC/doc/fonts/heuristica/heuristica-doc.tex runfiles size=652 RELOC/fonts/enc/dvips/heuristica/zut_5b7xz5.enc RELOC/fonts/enc/dvips/heuristica/zut_bavnqe.enc @@ -75406,46 +123460,82 @@ runfiles size=652 RELOC/tex/latex/heuristica/TS1Heuristica-TOsF.fd RELOC/tex/latex/heuristica/heuristica.fontspec RELOC/tex/latex/heuristica/heuristica.sty -docfiles size=63 - RELOC/doc/fonts/heuristica/FontLog.txt - RELOC/doc/fonts/heuristica/OFL-FAQ.txt - RELOC/doc/fonts/heuristica/OFL.txt - RELOC/doc/fonts/heuristica/README - RELOC/doc/fonts/heuristica/heuristica-doc.pdf - RELOC/doc/fonts/heuristica/heuristica-doc.tex catalogue-ctan /fonts/heuristica -catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-date 2017-03-15 06:01:43 +0100 catalogue-license ofl -catalogue-version 1.08 +catalogue-topics font font-type1 font-otf font-cyrillic cyrillic +catalogue-version 1.09 name hexgame category Package revision 15878 -shortdesc Provide an environment to draw a hexgame-board. +shortdesc Provide an environment to draw a hexgame-board relocated 1 longdesc Hex is a mathematical game invented by the Danish mathematician longdesc Piet Hein and independently by the mathematician John Nash. longdesc This package defines an environment that enables the user to longdesc draw such a game in a trivial way. -runfiles size=2 - RELOC/tex/latex/hexgame/hexgame.sty +containersize 1672 +containerchecksum b16abb669f6bb5c3111e6c333353cc37a76431c49920a4cd22af79f6237f78a5c56124c5854b7665e9dcf963fb2715c488dd7ef4df86d5582aa7b3dbe3d08822 +doccontainersize 29044 +doccontainerchecksum 0fad11a5510dd1a2ceec227c46c3f8c0c387ab3e2819bd70765d363ca5f97822147bfac62e69de773a96d24a881394c35c1542a8f08a1828a82f94aaa7f02644 docfiles size=11 - RELOC/doc/latex/hexgame/README - RELOC/doc/latex/hexgame/hexgame.pdf + RELOC/doc/latex/hexgame/README details="Readme" + RELOC/doc/latex/hexgame/hexgame.pdf details="Package documentation" RELOC/doc/latex/hexgame/hexgame.tex +runfiles size=2 + RELOC/tex/latex/hexgame/hexgame.sty catalogue-ctan /macros/latex/contrib/hexgame -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics games catalogue-version 1.0 +name hf-tikz +category Package +revision 34733 +shortdesc A simple way to highlight formulas and formula parts +relocated 1 +longdesc The package provides a way to highlight formulas and formula +longdesc parts in both documents and presentations, us TikZ. +containersize 3276 +containerchecksum 47ca98b066829e6ea2009c4beb92db2c7671642c495f1011df9be00d546f3613b7853aba5db88e3805441eab66c873e15b60f5ef75cf21e906f80b5f11aa30a7 +doccontainersize 123256 +doccontainerchecksum 234a8ccdd9cd921368f700fdcca818d0c76265371ac89e09c1a54454fa3e00f0f28fdc7f962c227f9bb69d851585f2c65e20b4a4093aacc3ad0aa84d1abc7f87 +docfiles size=32 + RELOC/doc/latex/hf-tikz/README details="Readme" + RELOC/doc/latex/hf-tikz/hf-tikz.pdf details="Package documentation" +srccontainersize 9924 +srccontainerchecksum 74fd110da2d0d248d70811db52f220012c0a41cecfaf702765cf8bdeae98d9e1a96c6087770de4fcc1ec249901ccc79837ed4e89b4527dd3f746ecf503c201ea +srcfiles size=12 + RELOC/source/latex/hf-tikz/hf-tikz.dtx + RELOC/source/latex/hf-tikz/hf-tikz.ins +runfiles size=4 + RELOC/tex/latex/hf-tikz/hf-tikz.sty +catalogue-ctan /graphics/pgf/contrib/hf-tikz +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics decoration maths presentation +catalogue-version 0.3a + name hfbright category Package revision 29349 -shortdesc The hfbright fonts. +shortdesc The hfbright fonts relocated 1 longdesc These are Adobe Type 1 versions of the OT1-encoded and maths longdesc parts of the Computer Modern Bright fonts. execute addMixedMap hfbright.map +containersize 832824 +containerchecksum 91c8b007dd8ce71af9dbc98a66a82a395d68fc87a0abcf9518b5b89a98dc23b28f1b9b9aa551f82b920dc3e2d8b6500884eaa3bc98be48371a9774f9f283a641 +doccontainersize 4964 +doccontainerchecksum 7de24b513093d965fab1f8d7d13ec4b356e7f5495cb3a8f17204b1a786288488b4921df6b7e184262bdd3aa11fed6483a25d0bf8e898db05c8b1f7dff769c175 +docfiles size=7 + RELOC/doc/fonts/hfbright/README details="Readme" + RELOC/doc/fonts/hfbright/config.hfbright + RELOC/doc/fonts/hfbright/generate.sh + RELOC/doc/fonts/hfbright/install.sh + RELOC/doc/fonts/hfbright/simplify-rename.pe runfiles size=313 RELOC/fonts/afm/public/hfbright/hfbr10.afm RELOC/fonts/afm/public/hfbright/hfbr17.afm @@ -75501,20 +123591,15 @@ runfiles size=313 RELOC/fonts/type1/public/hfbright/hfbrsy9.pfb RELOC/fonts/type1/public/hfbright/hfsltl10.pfb RELOC/fonts/type1/public/hfbright/hftl10.pfb -docfiles size=7 - RELOC/doc/fonts/hfbright/README - RELOC/doc/fonts/hfbright/config.hfbright - RELOC/doc/fonts/hfbright/generate.sh - RELOC/doc/fonts/hfbright/install.sh - RELOC/doc/fonts/hfbright/simplify-rename.pe catalogue-ctan /fonts/ps-type1/hfbright -catalogue-date 2014-05-06 20:53:54 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-sans font-type1 name hfoldsty category Package revision 29349 -shortdesc Old style numerals with EC fonts. +shortdesc Old style numerals with EC fonts relocated 1 longdesc The hfoldsty package provides virtual fonts for using oldstyle longdesc (0123456789) figures with the European Computer Modern fonts. @@ -75522,6 +123607,32 @@ longdesc It does a similar job as the eco package by Sebastian Kirsch longdesc but includes a couple of improvements, i.e., better kerning longdesc with guillemets, and support for character protruding using the longdesc pdfcprot package. +containersize 171124 +containerchecksum 5ff36855df468bf59d387d56f4ea65c86ba304eb2495f2ca110558ef48c528ef444c7ebfaa378a454c311c806525ddaa639a32d3d1b16ca492b641f223133390 +doccontainersize 349128 +doccontainerchecksum 1f88ae3c13857be317ac2097093bb368a9f1ffa2a8fe1b5e15f59622dabdce2f2b3aededbca31a4d17f05c2dcb28f8ae0c9be3cfb1758bab4501a99efc68612c +docfiles size=97 + RELOC/doc/fonts/hfoldsty/ChangeLog + RELOC/doc/fonts/hfoldsty/Makefile + RELOC/doc/fonts/hfoldsty/README details="Readme" + RELOC/doc/fonts/hfoldsty/TODO + RELOC/doc/fonts/hfoldsty/gpl.txt + RELOC/doc/fonts/hfoldsty/hfoldsty.pdf + RELOC/doc/fonts/hfoldsty/hfoldsty.xml + RELOC/doc/fonts/hfoldsty/test-eco-hfo.tex + RELOC/doc/fonts/hfoldsty/test-eco.tex + RELOC/doc/fonts/hfoldsty/test-hfo.tex +srccontainersize 16560 +srccontainerchecksum 5ccd5708962e9ddeea3ac41426cac6469ae22914fc4bbb5779e25d592d1cfb0df78f73d79c969e00b68b38eb9ae7016cf394f9592c14d9400bba152e6fc91092 +srcfiles size=24 + RELOC/source/fonts/hfoldsty/Makefile + RELOC/source/fonts/hfoldsty/hfoldsty.dtx + RELOC/source/fonts/hfoldsty/hfoldsty.ins + RELOC/source/fonts/hfoldsty/src/Makefile + RELOC/source/fonts/hfoldsty/src/TS1.etx + RELOC/source/fonts/hfoldsty/src/dostretch.mtx + RELOC/source/fonts/hfoldsty/src/generate.sh + RELOC/source/fonts/hfoldsty/src/t19.etx runfiles size=1217 RELOC/fonts/tfm/public/hfoldsty/hfobi0500.tfm RELOC/fonts/tfm/public/hfoldsty/hfobi0600.tfm @@ -76191,98 +124302,73 @@ runfiles size=1217 RELOC/tex/latex/hfoldsty/ts1hfoss.fd RELOC/tex/latex/hfoldsty/ts1hfott.fd RELOC/tex/latex/hfoldsty/ts1hfovtt.fd -docfiles size=97 - RELOC/doc/fonts/hfoldsty/ChangeLog - RELOC/doc/fonts/hfoldsty/Makefile - RELOC/doc/fonts/hfoldsty/README - RELOC/doc/fonts/hfoldsty/TODO - RELOC/doc/fonts/hfoldsty/gpl.txt - RELOC/doc/fonts/hfoldsty/hfoldsty.pdf - RELOC/doc/fonts/hfoldsty/hfoldsty.xml - RELOC/doc/fonts/hfoldsty/test-eco-hfo.tex - RELOC/doc/fonts/hfoldsty/test-eco.tex - RELOC/doc/fonts/hfoldsty/test-hfo.tex -srcfiles size=24 - RELOC/source/fonts/hfoldsty/Makefile - RELOC/source/fonts/hfoldsty/hfoldsty.dtx - RELOC/source/fonts/hfoldsty/hfoldsty.ins - RELOC/source/fonts/hfoldsty/src/Makefile - RELOC/source/fonts/hfoldsty/src/TS1.etx - RELOC/source/fonts/hfoldsty/src/dostretch.mtx - RELOC/source/fonts/hfoldsty/src/generate.sh - RELOC/source/fonts/hfoldsty/src/t19.etx catalogue-ctan /fonts/hfoldsty -catalogue-date 2014-05-06 20:53:54 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics font font-virtual font-supp catalogue-version 1.15 -name hf-tikz -category Package -revision 34733 -shortdesc A simple way to highlight formulas and formula parts. -relocated 1 -longdesc The package provides a way to highlight formulas and formula -longdesc parts in both documents and presentations, us TikZ. -runfiles size=4 - RELOC/tex/latex/hf-tikz/hf-tikz.sty -docfiles size=32 - RELOC/doc/latex/hf-tikz/README - RELOC/doc/latex/hf-tikz/hf-tikz.pdf -srcfiles size=12 - RELOC/source/latex/hf-tikz/hf-tikz.dtx - RELOC/source/latex/hf-tikz/hf-tikz.ins -catalogue-ctan /graphics/pgf/contrib/hf-tikz -catalogue-date 2014-07-26 05:31:39 +0200 -catalogue-license lppl1.3 -catalogue-version 0.3a - name hhtensor category Package revision 24981 -shortdesc Print vectors, matrices, and tensors. +shortdesc Print vectors, matrices, and tensors relocated 1 longdesc This package provides commands for vectors, matrices, and longdesc tensors with different styles -- arrows (as the LaTeX default), longdesc underlined, and bold). -runfiles size=1 - RELOC/tex/latex/hhtensor/hhtensor.sty +containersize 1228 +containerchecksum 387fb53bc2c9b83d2f34d9fe7856e3e7c54e2403378a1f806e29549e1d4b871cbc8333b64f721230918b96b9082ebe0ec07533cae9e4ba54d73dd8244a95b1f3 +doccontainersize 362248 +doccontainerchecksum 30de49c3074840066555f2363f2c4120d731c3d515c2b3ad6839bd4e04abfc7043930428f0345149c6da1b5396950c8864baff6414a42769f1652a057817616b docfiles size=93 RELOC/doc/latex/hhtensor/ChangeLog RELOC/doc/latex/hhtensor/Makefile - RELOC/doc/latex/hhtensor/README + RELOC/doc/latex/hhtensor/README details="Package Readme" RELOC/doc/latex/hhtensor/getversion.tex - RELOC/doc/latex/hhtensor/hhtensor.pdf + RELOC/doc/latex/hhtensor/hhtensor.pdf details="Package documentation" +srccontainersize 3160 +srccontainerchecksum 10c1cb953af7cbf3c1f31d06116833eeb4a3c81d66671ade683ad38cf97271e4f05070cf065389211baf8df13415d74086329d2e83f141f4167f0909214973da srcfiles size=4 RELOC/source/latex/hhtensor/hhtensor.dtx RELOC/source/latex/hhtensor/hhtensor.ins +runfiles size=1 + RELOC/tex/latex/hhtensor/hhtensor.sty catalogue-ctan /macros/latex/contrib/hhtensor -catalogue-date 2012-07-15 22:58:12 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics maths catalogue-version 0.61 name histogr category Package revision 15878 -shortdesc Draw histograms with the LaTeX picture environment. +shortdesc Draw histograms with the LaTeX picture environment relocated 1 longdesc This is a collection pf macros to draw histogram bars inside a longdesc LaTeX picture-environment. -runfiles size=1 - RELOC/tex/latex/histogr/histogr.sty +containersize 1204 +containerchecksum 987c392828a4995afdb37b10194c7735a7dfe3375bcc6efda6592d3f35351c369c045a2c1464cd2653d6275913a335ce3d527afb44c51ee38d3038d4751eaadf +doccontainersize 92496 +doccontainerchecksum 6cebdf9d6000ba48dd8106645e7a05709ced06c8790f8383a036629d8d53ca434f5c5aa0ff511754ea9e00fa743e435a304dacc16edf18098409972f763f9087 docfiles size=27 RELOC/doc/latex/histogr/histogr.pdf +srccontainersize 3208 +srccontainerchecksum f5e764adfe67c9e07261ff1211cc08ac9b4b076e67683dc50f9759e942f50810a72222a9669770b9f281b7f821d50a7da85014ad65461dcaf1117d54b98d89a2 srcfiles size=4 RELOC/source/latex/histogr/histogr.dtx RELOC/source/latex/histogr/histogr.ins +runfiles size=1 + RELOC/tex/latex/histogr/histogr.sty catalogue-ctan /macros/latex/contrib/histogr -catalogue-date 2012-07-15 23:35:06 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics graphics-plot catalogue-version 1.01 name historische-zeitschrift category Package -revision 34703 -shortdesc Biblatex style for the journal 'Historische Zeitschrift' +revision 42635 +shortdesc BibLaTeX style for the journal 'Historische Zeitschrift' relocated 1 longdesc The package provides citations according with the house style longdesc of the 'Historische Zeitschrift', a German historical journal. @@ -76290,65 +124376,132 @@ longdesc The scheme is a fullcite for the first citation and 'Author, longdesc Shorttitle (as note N, P)' for later citations (P being the longdesc page number). For further details, see the description of the longdesc house style at the journal's site. The package depends on -longdesc biblatex (version 0.8 or higher) as well as etoolbox (version +longdesc BibLaTeX (version 3.3 or higher) as well as etoolbox (version longdesc 1.5 or higher). -runfiles size=10 - RELOC/tex/latex/historische-zeitschrift/bbx/historische-zeitschrift.bbx - RELOC/tex/latex/historische-zeitschrift/cbx/historische-zeitschrift.cbx - RELOC/tex/latex/historische-zeitschrift/lbx/historische-zeitschrift.lbx +containersize 5372 +containerchecksum da501792653c77f7cdac978a348e1267d4abc2e80d8b5565b47fdab4a1e2204f9544bab972a291d191ce26bd29203ff28a6440e2f8969cf1b33a5cea48998b04 +doccontainersize 3708 +doccontainerchecksum 1b091b850e4936e8e6484ca484f740005c66458655a0cbe24938c3f33f23807fe9b7a0ab93b38f6a3481c684e35031398860d5452f6bc3fc8a8e6f4c2e82f927 docfiles size=3 RELOC/doc/latex/historische-zeitschrift/CHANGES - RELOC/doc/latex/historische-zeitschrift/LIESMICH - RELOC/doc/latex/historische-zeitschrift/README + RELOC/doc/latex/historische-zeitschrift/LIESMICH details="Readme" language="de" + RELOC/doc/latex/historische-zeitschrift/README details="Readme" language="en" +runfiles size=10 + RELOC/tex/latex/historische-zeitschrift/historische-zeitschrift.bbx + RELOC/tex/latex/historische-zeitschrift/historische-zeitschrift.cbx + RELOC/tex/latex/historische-zeitschrift/historische-zeitschrift.lbx catalogue-ctan /macros/latex/contrib/biblatex-contrib/historische-zeitschrift -catalogue-date 2014-07-22 11:10:19 +0200 +catalogue-date 2016-12-02 13:27:44 +0100 catalogue-license lppl -catalogue-version 1.1a +catalogue-topics journalpub biblatex +catalogue-version 1.2 name hitec category Package revision 15878 -shortdesc Class for documentation. +shortdesc Class for documentation relocated 1 longdesc An article-based class designed for use for documentation in longdesc high-technology companies. -runfiles size=6 - RELOC/tex/latex/hitec/hitec.cls +containersize 5944 +containerchecksum d7ebe166a23c05a1b78552c102507e697c07b955cddc8f4061d22fc42fc414664d3a1bc1c08e0dd122a987c736d24d4935dd944b37f62fe260b3c811678a3b30 +doccontainersize 16076 +doccontainerchecksum f166b529f29f0470770d5a24e0f3ea2be9021732fb5373611b87cda10ff2196d1d121258fda75369a2f0f9a65324f4a8dc0d3c5f377cf994c04807b18b5a46f3 docfiles size=7 - RELOC/doc/latex/hitec/README - RELOC/doc/latex/hitec/hitec_doc.pdf + RELOC/doc/latex/hitec/README details="Readme" + RELOC/doc/latex/hitec/hitec_doc.pdf details="Package documentation" RELOC/doc/latex/hitec/hitec_doc.tex +runfiles size=6 + RELOC/tex/latex/hitec/hitec.cls catalogue-ctan /macros/latex/contrib/hitec -catalogue-date 2012-07-15 23:35:06 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics class catalogue-version 0.0(beta) +name hithesis +category Package +revision 50062 +shortdesc Harbin Institute of Technology Thesis Template +relocated 1 +longdesc hithesis is a LaTeX thesis template package for Harbin +longdesc Institute of Technolog supporting bachelor, master, doctor +longdesc dissertations. +containersize 25864 +containerchecksum 987d14e74f7adb87acc5b9ca44ffcda67872657f48ce421a13a028b7cde886ce6ae70d504d6684f42ec03774b6d1012a7fee11616b9f66ce6d989a2c4594e2cf +doccontainersize 971788 +doccontainerchecksum 18fe3f3b8892f69354caa043944fc6dad88b0f468506acbeb08eaa0b220dfee44af5ebd2470e70814205d07541b2eb3ad93532dbf0c1c1b544591eda81e05da8 +docfiles size=302 + RELOC/doc/latex/hithesis/README.md details="Readme" + RELOC/doc/latex/hithesis/back/acknowledgements.tex + RELOC/doc/latex/hithesis/back/appA.tex + RELOC/doc/latex/hithesis/back/appendix01.tex + RELOC/doc/latex/hithesis/back/ceindex.tex + RELOC/doc/latex/hithesis/back/conclusion.tex + RELOC/doc/latex/hithesis/back/publications.tex + RELOC/doc/latex/hithesis/back/resume.tex + RELOC/doc/latex/hithesis/body/introduction.tex + RELOC/doc/latex/hithesis/dtx-style.sty + RELOC/doc/latex/hithesis/figures/bthesistitle.eps + RELOC/doc/latex/hithesis/figures/golfer.eps + RELOC/doc/latex/hithesis/figures/hitlogo.eps + RELOC/doc/latex/hithesis/front/cover.tex + RELOC/doc/latex/hithesis/front/denotation.tex + RELOC/doc/latex/hithesis/hithesis.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/hithesis/latexmkrc + RELOC/doc/latex/hithesis/main.pdf + RELOC/doc/latex/hithesis/main.tex + RELOC/doc/latex/hithesis/reference.bib + RELOC/doc/latex/hithesis/wct1.eps + RELOC/doc/latex/hithesis/wct10.eps + RELOC/doc/latex/hithesis/wct5.eps + RELOC/doc/latex/hithesis/zfb.eps +srccontainersize 58512 +srccontainerchecksum 9d77eeacbc6738862aeaf12b9af9f9474c90bd2a916e06fe4eed26743101eeea48e64508cb2ac29cb7abe9de56f1d187e4f84d89d0fe8408dbc4c878ef6587dd +srcfiles size=62 + RELOC/source/latex/hithesis/Makefile + RELOC/source/latex/hithesis/hithesis.dtx + RELOC/source/latex/hithesis/hithesis.ins +runfiles size=53 + RELOC/bibtex/bst/hithesis/hithesis.bst + RELOC/makeindex/hithesis/hithesis.ist + RELOC/tex/latex/hithesis/ctex-fontset-siyuan.def + RELOC/tex/latex/hithesis/hithesis.cfg + RELOC/tex/latex/hithesis/hithesis.cls + RELOC/tex/latex/hithesis/hithesis.sty +catalogue-contact-announce https://github.com/dustincys +catalogue-contact-bugs https://github.com/dustincys/hithesis/issues +catalogue-contact-development https://github.com/dustincys +catalogue-contact-home https://github.com/dustincys/hithesis +catalogue-contact-repository https://github.com/dustincys +catalogue-contact-support https://github.com/dustincys/hithesis/issues +catalogue-ctan /macros/latex/contrib/hithesis +catalogue-date 2019-02-19 14:16:02 +0100 +catalogue-license lppl1.3a +catalogue-topics dissertation +catalogue-version 2.0.6 + name hletter category Package revision 30002 -shortdesc Flexible letter typesetting with flexible page headings. +shortdesc Flexible letter typesetting with flexible page headings relocated 1 longdesc The package permits the user to specify easily, with the aid of longdesc self defined key-words, letters (with a logo and private) and longdesc headings. The heading may include a footer and the letter longdesc provides commands to include a scanned signature and two longdesc signees. The package works with the merge package. -runfiles size=12 - RELOC/tex/latex/hletter/hdefine.clo - RELOC/tex/latex/hletter/hhead.sty - RELOC/tex/latex/hletter/hlete.clo - RELOC/tex/latex/hletter/hletf.clo - RELOC/tex/latex/hletter/hletg.clo - RELOC/tex/latex/hletter/hletter.cls - RELOC/tex/latex/hletter/hsetup.sty - RELOC/tex/latex/hletter/mergeh.sty +containersize 8712 +containerchecksum bd79dec347980624c634918880718af9e434e24acaed206815e974c2db856e8f424e12b6870d920079626423f18a02fd326bdc387c256ae9c3a1dfa4ae26e71b +doccontainersize 2527296 +doccontainerchecksum 67a9a39cf0c8ac1054588ad542a8ba3705e94445920d4ca85b46423a4cea364c58e8d2b02b7d7579c9684653734f0766e8ddced28a7c5ec77e0daa3c3dee26b9 docfiles size=1215 RELOC/doc/latex/hletter/Bruennhilde.eps RELOC/doc/latex/hletter/Bruennhilde.jpg RELOC/doc/latex/hletter/Gccs.eps RELOC/doc/latex/hletter/Gccs.jpg - RELOC/doc/latex/hletter/Hletter.pdf - RELOC/doc/latex/hletter/README + RELOC/doc/latex/hletter/Hletter.pdf details="Package documentation" + RELOC/doc/latex/hletter/README details="Readme" RELOC/doc/latex/hletter/Testheader.tex RELOC/doc/latex/hletter/Testletter1.tex RELOC/doc/latex/hletter/Testletter2.tex @@ -76357,68 +124510,148 @@ docfiles size=1215 RELOC/doc/latex/hletter/Testmerge.tex RELOC/doc/latex/hletter/signat.eps RELOC/doc/latex/hletter/signat.jpg +runfiles size=12 + RELOC/tex/latex/hletter/hdefine.clo + RELOC/tex/latex/hletter/hhead.sty + RELOC/tex/latex/hletter/hlete.clo + RELOC/tex/latex/hletter/hletf.clo + RELOC/tex/latex/hletter/hletg.clo + RELOC/tex/latex/hletter/hletter.cls + RELOC/tex/latex/hletter/hsetup.sty + RELOC/tex/latex/hletter/mergeh.sty catalogue-ctan /macros/latex/contrib/hletter -catalogue-date 2015-04-01 23:44:24 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics letter class catalogue-version 4.2 +name hlist +category Package +revision 44983 +shortdesc Horizontal and columned lists +relocated 1 +longdesc This plain TeX and LaTeX package provides the "hlist" +longdesc environment in which \hitem starts a horizontal and columned +longdesc item. It depends upon the simplekv package. +containersize 9244 +containerchecksum 9e2150f08a7fac07a0e2e36edcecbd5c16ab3c119d8532fbae9399f14c6c7567d2cf4e2a92eda9a650049a901a35b6a9a0dd3423a06da6a9d266a3859392334d +doccontainersize 386912 +doccontainerchecksum 5b3748d7f67fb51dc0df2a03318e96ac9224abc42291ab475a907befa14fc210d9d2371005150404480900865e8ffa9f97e3ab122109bb5454c3b061f66a064d +docfiles size=100 + RELOC/doc/generic/hlist/README details="Readme" + RELOC/doc/generic/hlist/hlist-fr.pdf details="Package documentation" + RELOC/doc/generic/hlist/hlist-fr.tex +runfiles size=9 + RELOC/tex/generic/hlist/hlist.sty + RELOC/tex/generic/hlist/hlist.tex +catalogue-ctan /macros/generic/hlist +catalogue-date 2017-08-08 20:25:45 +0200 +catalogue-license lppl1.3c +catalogue-topics list-supp table list +catalogue-version 0.11 + +name hmtrump +category Package +revision 51178 +shortdesc Describe card games +relocated 1 +longdesc With this package you can describe card games. +containersize 18344 +containerchecksum 8ff393c95b3d132f92a1482d81df7b5cedc79b93e0aadd3fe14efd9c7fedfc1e000235f022cb5e18d9a28b508fa6830394ce446000b538cf58a8ef0ef897107c +doccontainersize 965824 +doccontainerchecksum 644365b1253602125b489754c3be5e8ef59f4836fa03c7f8ee548d6282a2e05009335fce4621a4553e24a989395ca56216cf3aa98a6933a7369931fe22c4c6bd +docfiles size=262 + RELOC/doc/lualatex/hmtrump/README.md details="Readme" + RELOC/doc/lualatex/hmtrump/by-sa.png + RELOC/doc/lualatex/hmtrump/hmtrump-sample.pdf details="Example of use" + RELOC/doc/lualatex/hmtrump/hmtrump-sample.tex + RELOC/doc/lualatex/hmtrump/hmtrump.pdf details="Package documentation" + RELOC/doc/lualatex/hmtrump/hmtrump.tex + RELOC/doc/lualatex/hmtrump/nkd04_playing_cards_index/LICENSE + RELOC/doc/lualatex/hmtrump/nkd04_playing_cards_index/readme.txt +runfiles size=13 + RELOC/fonts/truetype/public/hmtrump/nkd04_playing_cards_index.ttf + RELOC/tex/lualatex/hmtrump/hmtrump.sty +catalogue-contact-development http://circle9.work +catalogue-contact-home http://circle9.work/cards/intro/hmtrump/index.html +catalogue-contact-repository https://github.com/Hitomi-San/hmtrump +catalogue-ctan /macros/luatex/latex/hmtrump +catalogue-date 2019-05-21 08:51:25 +0200 +catalogue-license cc-by-sa-4other-free +catalogue-topics games +catalogue-version 1.0d + name hobby category Package -revision 34958 -shortdesc An implementation of Hobby's algorithm for PGF/TikZ. +revision 44474 +shortdesc An implementation of Hobby's algorithm for PGF/TikZ relocated 1 longdesc This package defines a path generation function for PGF/TikZ longdesc which implements Hobby's algorithm for a path built out of longdesc Bezier curves which passes through a given set of points. The longdesc path thus generated may by used as a TikZ 'to path'. The longdesc implementation is in LaTeX3. -runfiles size=19 - RELOC/tex/latex/hobby/hobby.code.tex - RELOC/tex/latex/hobby/pgflibraryhobby.code.tex - RELOC/tex/latex/hobby/pml3array.sty - RELOC/tex/latex/hobby/tikzlibraryhobby.code.tex -docfiles size=231 +containersize 9624 +containerchecksum 669c768dffa4e88d831d0a03a7e518fb2c101cd0af9ca1e15e6527ccbe78a13485145bedd4ef45cbaefcc94e4bead303acb89a0d0f50c6fc3a7ab312717febad +doccontainersize 944236 +doccontainerchecksum 7c8a353078be8b94195558d1d7a319173b4480a616c8725b99357ed3a086565c238b944b9b3baa719b354dcff9476aa7c7ffb055565df546054e662370d5d808 +docfiles size=249 RELOC/doc/latex/hobby/README - RELOC/doc/latex/hobby/hobby.pdf - RELOC/doc/latex/hobby/hobby_doc.pdf + RELOC/doc/latex/hobby/hobby.pdf details="Package documentation" + RELOC/doc/latex/hobby/hobby_code.pdf details="Annotated code" RELOC/doc/latex/hobby/hobby_doc.tex +srccontainersize 17768 +srccontainerchecksum 216ff34f42c28fd3e2303ff5032a299668881fbe51e8c8957547dd7953b2296e984a449cc09b79268b968ec8fcb8b774453a26e88156f5b7bbc6cb78a57de7e7 srcfiles size=29 RELOC/source/latex/hobby/hobby.dtx RELOC/source/latex/hobby/hobby.ins +runfiles size=19 + RELOC/tex/latex/hobby/hobby.code.tex + RELOC/tex/latex/hobby/pgflibraryhobby.code.tex + RELOC/tex/latex/hobby/pml3array.sty + RELOC/tex/latex/hobby/tikzlibraryhobby.code.tex +catalogue-contact-home https://github.com/loopspace/hobby +catalogue-contact-repository https://github.com/loopspace/hobby catalogue-ctan /graphics/pgf/contrib/hobby -catalogue-date 2014-08-18 06:31:54 +0200 +catalogue-date 2017-06-01 13:47:13 +0200 catalogue-license lppl1.3 -catalogue-version 1.6 +catalogue-topics graphics-curve graphics-supp graphics-in-tex expl3 +catalogue-version 1.8 name hobete category Package revision 27036 -shortdesc Unofficial beamer theme for the University of Hohenheim. +shortdesc Unofficial beamer theme for the University of Hohenheim relocated 1 longdesc The package provides a beamer theme which features the Ci longdesc colors of the University of Hohenheim. Please note that this is longdesc not an official Theme, and that there will be no support for longdesc it, from the University. Furthermore there is NO relationship longdesc between the University and this theme. +containersize 6292 +containerchecksum d2c79f5d39fbe82b43704a78add3a016768ff282d48ed1f49d1991c6ab56bef5266e8cfa7b3b03bcc944990d407ae43eca99930270ab84679f51323407b861a0 +doccontainersize 366520 +doccontainerchecksum ef7b1bd487c496cb2ffc01fb2940a72ac69edb1a5516d19ce6a6e6cb197ba6f517e03ac673b2372cc9cd4f40e5c6ea2469c2712528a10a3f5ba09e9d3a46f209 +docfiles size=98 + RELOC/doc/latex/hobete/README details="Readme (German)" language="de" + RELOC/doc/latex/hobete/hobete_doc.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/hobete/hobete_doc.tex + RELOC/doc/latex/hobete/poster-test.tex runfiles size=7 RELOC/tex/latex/hobete/beamercolorthemehohenheim.sty RELOC/tex/latex/hobete/beamerouterthemehohenheim.sty RELOC/tex/latex/hobete/beamerouterthemehohenheimposter.sty RELOC/tex/latex/hobete/beamerthemehohenheim.sty RELOC/tex/latex/hobete/hobete.sty -docfiles size=98 - RELOC/doc/latex/hobete/README - RELOC/doc/latex/hobete/hobete_doc.pdf - RELOC/doc/latex/hobete/hobete_doc.tex - RELOC/doc/latex/hobete/poster-test.tex -catalogue-ctan /macros/latex/contrib/beamer-contrib/hobete -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/hobete +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics presentation poster name hook-pre-commit-pkg category Package -revision 36360 -shortdesc Pre-commit git hook for LaTeX package developpers. +revision 41378 +shortdesc Pre-commit git hook for LaTeX package developpers relocated 1 longdesc This package provides a pre-commit git hook to check basic longdesc LaTeX syntax for the use of package developers. It is installed @@ -76433,62 +124666,82 @@ longdesc must be printed between % and \begin{macro} or \end{macro}. % longdesc must be the first character in the line. Four spaces must be longdesc printed between % and \begin{macrocode} or \end{macrocode}. \cs longdesc argument must not start with a backslash. +containersize 808 +containerchecksum 6fb3009d4bb4016f0d6e92571d52aaf7e3780d39a6b2ec73ffb37112b3f153ed71ecbcd985b81dd841f296a39da83e9004a2d6e6e85e9a49765e1682563cfde3 +doccontainersize 2788 +doccontainerchecksum 3873c4714a8a6d221f860a5d0606113c64482b363727067e0017d27e99d73f31cfdac88a799fb1412225baffaecd7bb03dbdc66b607a075b1e4539ffc0df2a9d docfiles size=4 - RELOC/doc/support/hook-pre-commit-pkg/README + RELOC/doc/support/hook-pre-commit-pkg/README details="Readme" RELOC/doc/support/hook-pre-commit-pkg/pre-commit-latex +catalogue-contact-repository https://github.com/maieul/git-hooks catalogue-ctan /support/hook-pre-commit-pkg -catalogue-date 2015-02-28 14:55:42 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license gpl3 -catalogue-version 1.1.0 +catalogue-topics package-devel +catalogue-version 1.1.2 name horoscop category Package revision 30530 -shortdesc Generate astrological charts in LaTeX. +shortdesc Generate astrological charts in LaTeX relocated 1 longdesc The horoscop package provides a unified interface for longdesc astrological font packages; typesetting with pict2e of standard -longdesc wheel charts and some variations, in PostScript- and PDF- -longdesc generating TeX engines; and access to external calculation +longdesc wheel charts and some variations, in PostScript- and +longdesc PDF-generating TeX engines; and access to external calculation longdesc software (Astrolog and Swiss Ephemeris) for computing object longdesc positions. -runfiles size=14 - RELOC/tex/latex/horoscop/horoscop.sty +containersize 10008 +containerchecksum 077b7bc742d0526daf7380a080e640de72d61d5e65cac441d3291e1dfee8c0240be8817328e7080fe410fca9ebc8b5d13e8719ed48bd7d412485d7c5d2f67ce0 +doccontainersize 682340 +doccontainerchecksum b7cfdfb772f5423fe4cdcd914a4b0934162ea33542a773b14d91d057efcd05b7febfff46decc3760512b0df95f52180a4de0dea2f0dcc4b504945ee572f832a7 docfiles size=172 - RELOC/doc/latex/horoscop/README - RELOC/doc/latex/horoscop/horoscop.pdf + RELOC/doc/latex/horoscop/README details="Readme" + RELOC/doc/latex/horoscop/horoscop.pdf details="Package documentation" +srccontainersize 71588 +srccontainerchecksum 2e132bba43dce98d65a717f755062ed6f63ecc0775134562d1061fc28d7776fb02baf7502273d1e825306a8a19eecd4d4e94d4603687ebc0df1923b27a213cb1 srcfiles size=76 RELOC/source/latex/horoscop/horoscop.dtx RELOC/source/latex/horoscop/horoscop.ins +runfiles size=14 + RELOC/tex/latex/horoscop/horoscop.sty catalogue-ctan /macros/latex/contrib/horoscop -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics astrology catalogue-version 0.92 name hpsdiss category Package revision 15878 -shortdesc A dissertation class. +shortdesc A dissertation class relocated 1 longdesc The class was developed to typeset a dissertation at ETH longdesc Zurich. The requirements were to use A5 paper and 10pt type. A longdesc sample of the output is shown in the PDF documentation link. -runfiles size=6 - RELOC/tex/latex/hpsdiss/hpsdiss.cls +containersize 5708 +containerchecksum 4905368d081cc6e7f2c7b43b28d4c6e22081796d8594e5a07e521bb7ab0fb14c9ccce1dcbe135b0cbc5a7b2671e3041d7764ff80c7e1543b4ac4cefe945794b4 +doccontainersize 110020 +doccontainerchecksum 566f0509feee0bc5c28481fb62f2c991827cd5855f9696fdda79628f5c43329b39dd508fe9613d2c0f823bef421a97393fd303d830c779c42ac67f88303a239b docfiles size=54 - RELOC/doc/latex/hpsdiss/hpsdiss.pdf + RELOC/doc/latex/hpsdiss/hpsdiss.pdf details="Example of package use" +srccontainersize 11408 +srccontainerchecksum 8337cbedc42502ececcfd60adf422e15aba32381c46489a82d8b618286a4d8848c0288136771b8acdbb03af9f39029e4be8e1c287f6dac9bd3ade3b727e8ec8e srcfiles size=12 RELOC/source/latex/hpsdiss/hpsdiss.dtx RELOC/source/latex/hpsdiss/hpsdiss.ins +runfiles size=6 + RELOC/tex/latex/hpsdiss/hpsdiss.cls catalogue-ctan /macros/latex/contrib/hpsdiss -catalogue-date 2014-09-30 00:03:44 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics dissertation class catalogue-version 1.0 name hrefhide category Package revision 22255 -shortdesc Suppress hyper links when printing. +shortdesc Suppress hyper links when printing relocated 1 longdesc This package provides the command \hrefdisplayonly (which longdesc provides a substitute for \href). While the (hyperlinked) text @@ -76497,55 +124750,138 @@ longdesc same text will be "hidden" when printing the text. (Hiding is longdesc actually achieved by making the text the same colour as the longdesc background, thus preserving the layout of the rest of the longdesc text.) -runfiles size=2 - RELOC/tex/latex/hrefhide/hrefhide.sty +containersize 2412 +containerchecksum 6d96fdc550a99ed7f3e4dbee19a589c27b27af16f910a22befb51bfb452d8f9f57cbb27f1ecf96c5604e61eb1cd0343c0a07810ac1519dc51422183d6229916e +doccontainersize 434460 +doccontainerchecksum a8ae0fbbb185ded46cbc1d7550526230de4098bf3a5bc8bf72ec8f5a5b4b93703501da19a4c9e09e08044aea768a01e39dfa36c38c9be72c7aee8e61f58acd71 docfiles size=111 - RELOC/doc/latex/hrefhide/README + RELOC/doc/latex/hrefhide/README details="Readme" RELOC/doc/latex/hrefhide/hrefhide-example.pdf RELOC/doc/latex/hrefhide/hrefhide-example.tex - RELOC/doc/latex/hrefhide/hrefhide.pdf + RELOC/doc/latex/hrefhide/hrefhide.pdf details="Package documentation" +srccontainersize 11684 +srccontainerchecksum ed08bbabfdd78725060f3bac173d2819ddfe494e99d76abe02ffff755718caafc520e0336299c8c1dda0db1492089316e05b1b85c93c866b683703b471e845b4 srcfiles size=12 RELOC/source/latex/hrefhide/hrefhide.drv RELOC/source/latex/hrefhide/hrefhide.dtx RELOC/source/latex/hrefhide/hrefhide.ins +runfiles size=2 + RELOC/tex/latex/hrefhide/hrefhide.sty catalogue-ctan /macros/latex/contrib/hrefhide -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics hyper catalogue-version 1.0f name hrlatex category Package revision 18020 -shortdesc LaTeX support for Croatian documents. +shortdesc LaTeX support for Croatian documents relocated 1 longdesc This package simplifies creation of new documents for the longdesc (average) Croatian user. As an example, a class file hrdipl.cls longdesc (designed for the graduation thesis at the University of longdesc Zagreb) and sample thesis documents are included. -runfiles size=4 - RELOC/tex/latex/hrlatex/fsbispit.cls - RELOC/tex/latex/hrlatex/fsbmath.sty - RELOC/tex/latex/hrlatex/hrlatex.sty +containersize 3528 +containerchecksum 14bd6fdf4a60ec599971b1f5ee7ae5fc649b0d1382f9dff8bf9905f4623f3964c2d552bbc4485680d22cf04651a5e49b71220ec2c05e6599356b6dcee6e4d122 +doccontainersize 98316 +doccontainerchecksum ecd67675466d365f00e49b775ae3e5264e2d10d574dbbe913d52b3a5b553fe942e06fcca26cb2357fa76688c55fc4268bf7d18f5cb2a90663bfe47c11a5bbde7 docfiles size=43 - RELOC/doc/latex/hrlatex/README - RELOC/doc/latex/hrlatex/hrlatex.pdf + RELOC/doc/latex/hrlatex/README details="Readme" + RELOC/doc/latex/hrlatex/hrlatex.pdf details="Package documentation:" language="hr" RELOC/doc/latex/hrlatex/sample.fsbispit.tex RELOC/doc/latex/hrlatex/sample.minimal.cp1250.tex RELOC/doc/latex/hrlatex/sample.minimal.latin2.tex RELOC/doc/latex/hrlatex/sample.minimal.utf8.tex RELOC/doc/latex/hrlatex/sample.prezentacija.tex +srccontainersize 3768 +srccontainerchecksum 01f47918a1926f36840fd4d78debc70cbe09fd2a52b06ede7b40d7c3ce0d42e6385d54cd2cc96eed8bc222ebcbd2e7ab191c41f8c8df82f9b5ff93d2e0f54a16 srcfiles size=3 RELOC/source/latex/hrlatex/hrlatex.dtx RELOC/source/latex/hrlatex/hrlatex.ins +runfiles size=4 + RELOC/tex/latex/hrlatex/fsbispit.cls + RELOC/tex/latex/hrlatex/fsbmath.sty + RELOC/tex/latex/hrlatex/hrlatex.sty catalogue-ctan /language/croatian/hrlatex -catalogue-date 2012-07-15 23:55:51 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics croatian catalogue-version 0.23 +name hulipsum +category Package +revision 46803 +shortdesc Hungarian dummy text (Lorum ipse) +relocated 1 +longdesc Lorem ipsum is an improper Latin filler dummy text, cf. the +longdesc lipsum package. It is commonly used for demonstrating the +longdesc textual elements of a document template. Lorum ipse is a +longdesc Hungarian variation of Lorem ipsum. (Lorum is a Hungarian card +longdesc game, and ipse is a Hungarian slang word meaning bloke.) With +longdesc this package you can typeset 150 paragraphs of Lorum ipse. All +longdesc paragraphs are taken with permission from +longdesc http://www.lorumipse.hu. Thanks to Lorum Ipse Lab (Viktor Nagy +longdesc and David Takacs) for their work. +containersize 54808 +containerchecksum c43867cb608e955254f2c597d3fd9938fe815c1683c9d61dcd1cfff29608b5c391d7374a740646dd915fdcf282d9adb8f83d3dcb6781fbe547b685de81f67143 +doccontainersize 146628 +doccontainerchecksum 43dcdd731116bd1eac309b1213b3c961dd189f861b8732d73127ba6b4c20d3ea3584f03340ff5973b4aab11744e61069edfe6736d389e1487587d0372591e343 +docfiles size=37 + RELOC/doc/latex/hulipsum/README details="Readme" + RELOC/doc/latex/hulipsum/hulipsum.pdf details="Package documentation" +srccontainersize 55956 +srccontainerchecksum e1290087087ab8d63d2e2de72cbf641ec71ae362a64faca2e362cccfb05890abc9cd970a2eca1b1c10cdd95760dd82e8bc90fe0e8ef4d99df6cbabba24c80be0 +srcfiles size=43 + RELOC/source/latex/hulipsum/hulipsum.dtx + RELOC/source/latex/hulipsum/hulipsum.ins +runfiles size=41 + RELOC/tex/latex/hulipsum/hulipsum.sty +catalogue-ctan /macros/latex/contrib/hulipsum +catalogue-date 2018-04-29 07:15:59 +0200 +catalogue-license lppl1.3 +catalogue-topics dummy-gen macro-supp hungarian +catalogue-version 1.0 + +name hustthesis +category Package +revision 42547 +shortdesc Unofficial thesis template for Huazhong University +relocated 1 +longdesc The package provides an Unofficial Thesis Template in LaTeX for +longdesc Huazhong University of Science and Technology. +containersize 57756 +containerchecksum 508c86a6cf5e3d952dd43786f78952cc8bbe635620a913abd82b49c2cfade29875bc924d5ea89803b03008328c7297010e98f70b62b5191d9855e0cc1614d3d0 +doccontainersize 747152 +doccontainerchecksum 5c114cda4bd4264904b7fdfedd55720046403b8cd3c1bce4181dffbf319a9107ec0ad8cdd092922c8c5268aac62437d1128a45ea0cdff4121a40f02e26dc0148 +docfiles size=219 + RELOC/doc/latex/hustthesis/README.md details="Readme" + RELOC/doc/latex/hustthesis/fig-example.pdf + RELOC/doc/latex/hustthesis/hustthesis-en-example.pdf + RELOC/doc/latex/hustthesis/hustthesis-zh-example.pdf + RELOC/doc/latex/hustthesis/hustthesis.pdf details="Package documentation" + RELOC/doc/latex/hustthesis/ref-example.bib +srccontainersize 24892 +srccontainerchecksum 61b6147d4bd063995900479b894b60d929445e60855c522e46abaedfbd33f7516f90a99d5052b3241d7070d375504cd660446d6647c28284e76d0ff9ec5aaf76 +srcfiles size=29 + RELOC/source/latex/hustthesis/hustthesis.dtx + RELOC/source/latex/hustthesis/hustthesis.ins +runfiles size=54 + RELOC/bibtex/bst/hustthesis/hustthesis.bst + RELOC/tex/latex/hustthesis/hust-title.eps + RELOC/tex/latex/hustthesis/hust-title.pdf + RELOC/tex/latex/hustthesis/hustthesis.cls +catalogue-contact-repository https://github.com/hust-latex/hustthesis +catalogue-ctan /macros/latex/contrib/hustthesis +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics dissertation class +catalogue-version 1.4 + name hvfloat category Package -revision 25570 -shortdesc Rotating caption and object of floats independently. +revision 51123 +shortdesc Rotating caption and object of floats independently relocated 1 longdesc This package defines a macro to place objects (tables and longdesc figures) and their captions in different positions with @@ -76556,55 +124892,172 @@ longdesc \hvFloat{figure}{\includegraphics{rose}}{Caption}{fig:0}. longdesc Options are provided to place captions to the right or left, longdesc and rotated. Setting nonFloat=true results in placing the float longdesc here. -runfiles size=3 - RELOC/tex/latex/hvfloat/hvfloat.sty -docfiles size=100 - RELOC/doc/latex/hvfloat/README - RELOC/doc/latex/hvfloat/bateaux.jpg - RELOC/doc/latex/hvfloat/hvfloat.pdf +containersize 6832 +containerchecksum 949d00b34a1f63b0da736bec46f5d7ffdd51c44f5b6b26903c34744c37f1bb5b7f4d11051a261137cc37d3252452a4b2f3d128d5ba7ea6af5239e77285fdc4d4 +doccontainersize 2897612 +doccontainerchecksum 4726e3ba3290acc5046d421af3652459616801dbb979f9ef396b4b636db3309face508480f086fed52b117e516f5fb6c2a4b57f4ebc660d123c964be2c41cee5 +docfiles size=2184 + RELOC/doc/latex/hvfloat/CTAN.png + RELOC/doc/latex/hvfloat/Changes + RELOC/doc/latex/hvfloat/README details="Readme" + RELOC/doc/latex/hvfloat/README.exa + RELOC/doc/latex/hvfloat/after1s1c.pdf + RELOC/doc/latex/hvfloat/after1s1c.tex + RELOC/doc/latex/hvfloat/after2s2c.pdf + RELOC/doc/latex/hvfloat/after2s2c.tex + RELOC/doc/latex/hvfloat/default1s1c.pdf + RELOC/doc/latex/hvfloat/default1s1c.tex + RELOC/doc/latex/hvfloat/default1s2c.pdf + RELOC/doc/latex/hvfloat/default1s2c.tex + RELOC/doc/latex/hvfloat/default2s1c.pdf + RELOC/doc/latex/hvfloat/default2s1c.tex + RELOC/doc/latex/hvfloat/default2s2c.pdf + RELOC/doc/latex/hvfloat/default2s2c.tex + RELOC/doc/latex/hvfloat/even1s1c.pdf + RELOC/doc/latex/hvfloat/even1s1c.tex + RELOC/doc/latex/hvfloat/even1s2c.pdf + RELOC/doc/latex/hvfloat/even1s2c.tex + RELOC/doc/latex/hvfloat/even2s1c.pdf + RELOC/doc/latex/hvfloat/even2s1c.tex + RELOC/doc/latex/hvfloat/even2s2c.pdf + RELOC/doc/latex/hvfloat/even2s2c.tex + RELOC/doc/latex/hvfloat/frose.png + RELOC/doc/latex/hvfloat/fullpage1s2c.pdf + RELOC/doc/latex/hvfloat/fullpage1s2c.tex + RELOC/doc/latex/hvfloat/hvfloat.pdf details="Package documentation" RELOC/doc/latex/hvfloat/hvfloat.tex + RELOC/doc/latex/hvfloat/inner1s2c.pdf + RELOC/doc/latex/hvfloat/inner1s2c.tex + RELOC/doc/latex/hvfloat/inner2s1c.pdf + RELOC/doc/latex/hvfloat/inner2s1c.tex + RELOC/doc/latex/hvfloat/inner2s2c.pdf + RELOC/doc/latex/hvfloat/inner2s2c.tex + RELOC/doc/latex/hvfloat/left2s2c.pdf + RELOC/doc/latex/hvfloat/left2s2c.tex + RELOC/doc/latex/hvfloat/multi-after1s1c.pdf + RELOC/doc/latex/hvfloat/multi-after1s1c.tex + RELOC/doc/latex/hvfloat/multi-default1s1c.pdf + RELOC/doc/latex/hvfloat/multi-default1s1c.tex + RELOC/doc/latex/hvfloat/multi-default1s2c.pdf + RELOC/doc/latex/hvfloat/multi-default1s2c.tex + RELOC/doc/latex/hvfloat/multi-default2s1c.pdf + RELOC/doc/latex/hvfloat/multi-default2s1c.tex + RELOC/doc/latex/hvfloat/multi-default2s2c.pdf + RELOC/doc/latex/hvfloat/multi-default2s2c.tex + RELOC/doc/latex/hvfloat/multi-inner2s2c.pdf + RELOC/doc/latex/hvfloat/multi-inner2s2c.tex + RELOC/doc/latex/hvfloat/multi-outer2s2c.pdf + RELOC/doc/latex/hvfloat/multi-outer2s2c.tex + RELOC/doc/latex/hvfloat/multi-right1s1c.pdf + RELOC/doc/latex/hvfloat/multi-right1s1c.tex + RELOC/doc/latex/hvfloat/odd1s1c.pdf + RELOC/doc/latex/hvfloat/odd1s1c.tex + RELOC/doc/latex/hvfloat/odd1s2c.pdf + RELOC/doc/latex/hvfloat/odd1s2c.tex + RELOC/doc/latex/hvfloat/odd2s1c.pdf + RELOC/doc/latex/hvfloat/odd2s1c.tex + RELOC/doc/latex/hvfloat/odd2s2c.pdf + RELOC/doc/latex/hvfloat/odd2s2c.tex + RELOC/doc/latex/hvfloat/outer1s2c.pdf + RELOC/doc/latex/hvfloat/outer1s2c.tex + RELOC/doc/latex/hvfloat/outer2s1c.pdf + RELOC/doc/latex/hvfloat/outer2s1c.tex + RELOC/doc/latex/hvfloat/outer2s2c.pdf + RELOC/doc/latex/hvfloat/outer2s2c.tex + RELOC/doc/latex/hvfloat/paper-after1s1c.pdf + RELOC/doc/latex/hvfloat/paper-after1s1c.tex + RELOC/doc/latex/hvfloat/paper-default1s1c.pdf + RELOC/doc/latex/hvfloat/paper-default1s1c.tex + RELOC/doc/latex/hvfloat/paper-default1s2c.pdf + RELOC/doc/latex/hvfloat/paper-default1s2c.tex + RELOC/doc/latex/hvfloat/paper-default2s2c.pdf + RELOC/doc/latex/hvfloat/paper-default2s2c.tex + RELOC/doc/latex/hvfloat/paper-inner2s2c.pdf + RELOC/doc/latex/hvfloat/paper-inner2s2c.tex + RELOC/doc/latex/hvfloat/paper-right1s1c.pdf + RELOC/doc/latex/hvfloat/paper-right1s1c.tex + RELOC/doc/latex/hvfloat/preamble.ltx + RELOC/doc/latex/hvfloat/right1s1c.pdf + RELOC/doc/latex/hvfloat/right1s1c.tex + RELOC/doc/latex/hvfloat/right1s2c.pdf + RELOC/doc/latex/hvfloat/right1s2c.tex + RELOC/doc/latex/hvfloat/right2s1c.pdf + RELOC/doc/latex/hvfloat/right2s1c.tex + RELOC/doc/latex/hvfloat/right2s2c.pdf + RELOC/doc/latex/hvfloat/right2s2c.tex RELOC/doc/latex/hvfloat/rose.png + RELOC/doc/latex/hvfloat/runAll.sh + RELOC/doc/latex/hvfloat/runEXA.sh + RELOC/doc/latex/hvfloat/sub-after1s1c.pdf + RELOC/doc/latex/hvfloat/sub-after1s1c.tex + RELOC/doc/latex/hvfloat/sub-after2s2c.pdf + RELOC/doc/latex/hvfloat/sub-after2s2c.tex + RELOC/doc/latex/hvfloat/sub-default1s1c.pdf + RELOC/doc/latex/hvfloat/sub-default1s1c.tex + RELOC/doc/latex/hvfloat/sub-default1s2c.pdf + RELOC/doc/latex/hvfloat/sub-default1s2c.tex + RELOC/doc/latex/hvfloat/sub-default2s2c.pdf + RELOC/doc/latex/hvfloat/sub-default2s2c.tex + RELOC/doc/latex/hvfloat/sub-right1s1c.pdf + RELOC/doc/latex/hvfloat/sub-right1s1c.tex + RELOC/doc/latex/hvfloat/sub-right1s2c.pdf + RELOC/doc/latex/hvfloat/sub-right1s2c.tex + RELOC/doc/latex/hvfloat/sub-right2s2c.pdf + RELOC/doc/latex/hvfloat/sub-right2s2c.tex +runfiles size=9 + RELOC/tex/latex/hvfloat/hvfloat-fps.sty + RELOC/tex/latex/hvfloat/hvfloat.sty +catalogue-also rotating catalogue-ctan /macros/latex/contrib/hvfloat -catalogue-date 2012-03-05 13:21:26 +0100 +catalogue-date 2019-05-13 23:00:33 +0200 catalogue-license lppl -catalogue-version 1.1 +catalogue-topics float box-manip +catalogue-version 2.15 name hvindex category Package -revision 16136 -shortdesc Support for indexing. +revision 46051 +shortdesc Support for indexing relocated 1 longdesc The package simplifies the indexing of words using the \index longdesc command of makeidx. With the package, to index a word in a longdesc text, you only have to type it once; the package makes sure it longdesc is both typeset and indexed. +containersize 1672 +containerchecksum 12e47531ca8dcea2f195d86b5721f2a62d2590de5a0b464e5e6de5484ee34803eac14f2474e4a00938f6d5e5b307ed3183ea3aa0a4f0d5874877356de6e8c83d +doccontainersize 76336 +doccontainerchecksum 2a10c26537e550e3d51330c704711c2c43b872f90db15ee709dcfe603a5fc64102a8b466c5d5b7ab4706d5e96e91b11559305ac607477776f34da97590151368 +docfiles size=23 + RELOC/doc/latex/hvindex/Changes + RELOC/doc/latex/hvindex/README details="Readme" + RELOC/doc/latex/hvindex/hvindex-doc.pdf details="Package documentation" + RELOC/doc/latex/hvindex/hvindex-doc.tex runfiles size=1 RELOC/tex/latex/hvindex/hvindex.sty -docfiles size=24 - RELOC/doc/latex/hvindex/Changes - RELOC/doc/latex/hvindex/README - RELOC/doc/latex/hvindex/hvindex.pdf - RELOC/doc/latex/hvindex/hvindex.tex catalogue-ctan /macros/latex/contrib/hvindex -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-12-12 10:21:06 +0100 catalogue-license lppl -catalogue-version 0.02 +catalogue-topics index +catalogue-version 0.04 name hypdvips category Package revision 34364 -shortdesc Hyperref extensions for use with dvips. +shortdesc Hyperref extensions for use with dvips relocated 1 longdesc The hypdvips package fixes some problems when using hyperref longdesc with dvips. It also adds support for breaking links, file -longdesc attachments, embedded documents and different types of GoTo- -longdesc links. The cooperation of hyperref with cleveref is improved, -longdesc which in addition allows an enhanced back-referencing system. -runfiles size=29 - RELOC/tex/latex/hypdvips/hypdvips.sty +longdesc attachments, embedded documents and different types of +longdesc GoTo-links. The cooperation of hyperref with cleveref is +longdesc improved, which in addition allows an enhanced back-referencing +longdesc system. +containersize 23860 +containerchecksum d0f1e7c36cbac7d361b94a78e46d58d93f95888b2faf3574ddd89977a8772aa7a26bd9df7bc69b778c221f3c3fc832b4cb1f46f5e2a120c44c1b8d58593d851d +doccontainersize 1053048 +doccontainerchecksum 6a3cafd8d8baf67d7e219edf859e547641dac2c01c22e0b4aa546f59032a24edbe8bb302ec707a78a9b98716f0a3eb52752c018897c401beb73dfa8d5da7ea71 docfiles size=552 - RELOC/doc/latex/hypdvips/README - RELOC/doc/latex/hypdvips/hypdvips.pdf + RELOC/doc/latex/hypdvips/README details="Readme" + RELOC/doc/latex/hypdvips/hypdvips.pdf details="Package documentation" RELOC/doc/latex/hypdvips/images/example1.eps RELOC/doc/latex/hypdvips/images/example2.eps RELOC/doc/latex/hypdvips/images/example3.eps @@ -76622,43 +125075,142 @@ docfiles size=552 RELOC/doc/latex/hypdvips/images/pushpin.eps RELOC/doc/latex/hypdvips/images/tag.eps RELOC/doc/latex/hypdvips/manifest.txt +runfiles size=29 + RELOC/tex/latex/hypdvips/hypdvips.sty +catalogue-also breakurl catalogue-ctan /macros/latex/contrib/hypdvips -catalogue-date 2014-06-22 21:54:58 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics hyper catalogue-version 3.02 +name hyper +category Package +revision 17357 +shortdesc Hypertext cross referencing +relocated 1 +longdesc Redefines LaTeX cross-referencing commands to insert \special +longdesc commands for HyperTeX dvi viewers, such as recent versions of +longdesc xdvi. The package is now largely superseded by hyperref. +containersize 15680 +containerchecksum 6e5bbad0a682440e28be67fc893a970de315671e1f4987bebff4a163d9c38bb33d8de9557765f1d8c74386556c59e332ef5855a3f1fe36d08eddcbd2a77179df +doccontainersize 278528 +doccontainerchecksum 41fafe8bcaf651994c45abd0040e2123caf8e33fd2d06fafd310d978c10ae5c705f7dd64d9b4740bacee51f11fe52741ed64f83d6b236d298cb6c932fd3ba06e +docfiles size=86 + RELOC/doc/latex/hyper/README details="Readme" + RELOC/doc/latex/hyper/TODO + RELOC/doc/latex/hyper/contrib/README details="Readme" + RELOC/doc/latex/hyper/contrib/harvard-to.hyp + RELOC/doc/latex/hyper/defpattern.sty + RELOC/doc/latex/hyper/hyper.pdf details="Package documentation" + RELOC/doc/latex/hyper/scontrib/README details="Readme" + RELOC/doc/latex/hyper/scontrib/harvard.hyp +srccontainersize 32960 +srccontainerchecksum 50552c5d6650973719d892d2696ee4885f8fa78d9e9c62e3fabd8ac42f35610c025c508aaa250f52c5c7676cb5e0e6aa4b75efdd19d3c9e1f3b3ac6981ab1342 +srcfiles size=43 + RELOC/source/latex/hyper/Makefile-MSDos + RELOC/source/latex/hyper/Makefile-Unix + RELOC/source/latex/hyper/backcite.dtx + RELOC/source/latex/hyper/dvi2pdf.pl + RELOC/source/latex/hyper/hyper.dtx + RELOC/source/latex/hyper/hyper.ins +runfiles size=49 + RELOC/tex/latex/hyper/amsart.hyp + RELOC/tex/latex/hyper/amsbook.hyp + RELOC/tex/latex/hyper/amsdtx.hyp + RELOC/tex/latex/hyper/amsldoc.hyp + RELOC/tex/latex/hyper/amsmath.hyp + RELOC/tex/latex/hyper/amsproc.hyp + RELOC/tex/latex/hyper/amstex.hyp + RELOC/tex/latex/hyper/amsthm.hyp + RELOC/tex/latex/hyper/article.hyp + RELOC/tex/latex/hyper/book.hyp + RELOC/tex/latex/hyper/cweb.hyp + RELOC/tex/latex/hyper/doc.hyp + RELOC/tex/latex/hyper/fancyheadings.hyp + RELOC/tex/latex/hyper/ftnright.hyp + RELOC/tex/latex/hyper/hxt-bc.sty + RELOC/tex/latex/hyper/hyper.sty + RELOC/tex/latex/hyper/leqno.hyp + RELOC/tex/latex/hyper/letter.hyp + RELOC/tex/latex/hyper/longtable.hyp + RELOC/tex/latex/hyper/ltnews.hyp + RELOC/tex/latex/hyper/ltxdoc.hyp + RELOC/tex/latex/hyper/ltxguide.hyp + RELOC/tex/latex/hyper/natbib.hyp + RELOC/tex/latex/hyper/proc.hyp + RELOC/tex/latex/hyper/report.hyp + RELOC/tex/latex/hyper/slides.hyp + RELOC/tex/latex/hyper/subeqnarray.hyp + RELOC/tex/latex/hyper/theorem.hyp + RELOC/tex/latex/hyper/upref.hyp + RELOC/tex/latex/hyper/xr.hyp +catalogue-ctan /macros/latex/contrib/hyper +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics hyper +catalogue-version 4.2d + +name hyperbar +category Package +revision 48147 +shortdesc Add interactive Barcode fields to PDF forms +relocated 1 +longdesc The package extends the hyperref functionality for creating +longdesc interactive forms to allow adding Barcode form fields supported +longdesc by some modern PDF readers. Currently, only pdfTeX is +longdesc supported. +containersize 2444 +containerchecksum 80077002a3bdc99339749e2f76687a0f8597a786fd3ca3f5207ec44dc2037dbec1e696ab58d77ee6b067d6e958357cb8f0c9805621c3feeb40dde004851311b3 +doccontainersize 442692 +doccontainerchecksum 0598acd8fb945605b204c5c99982db63f4fc06fc82c47f7b301ead30be0474c7dde5eb4f78f3aa698160cd068d38aa2aabe3a1fae3c49cc32194e7cd796839c2 +docfiles size=111 + RELOC/doc/latex/hyperbar/README.md details="Readme" + RELOC/doc/latex/hyperbar/example.pdf + RELOC/doc/latex/hyperbar/example.tex + RELOC/doc/latex/hyperbar/hyperbar.pdf details="Package documentation" +srccontainersize 3884 +srccontainerchecksum 99555f8a939783db613ceaf509fbf2d95352ce8e774e750a9d552717eb538a64663a905a063b6b93aa83384ce322079656c61eeccc9678bdee47b2c56e52220b +srcfiles size=3 + RELOC/source/latex/hyperbar/hyperbar.dtx +runfiles size=2 + RELOC/tex/latex/hyperbar/hyperbar.sty +catalogue-also hyperref +catalogue-ctan /macros/latex/contrib/hyperbar +catalogue-date 2018-07-07 05:11:29 +0200 +catalogue-license lppl1.3c +catalogue-topics hyper pdf-feat pdf-forms +catalogue-version 0.1 + name hypernat category Package revision 17358 -shortdesc Allow hyperref and natbib to work together. +shortdesc Allow hyperref and natbib to work together relocated 1 longdesc Allows hyperref package and the natbib package with options longdesc 'numbers' and 'sort&compress' to work together. This means that longdesc multiple sequential citations (e.g [3,2,1]) will be compressed longdesc to [1-3], where the '1' and the '3' are (color-)linked to the longdesc bibliography. -runfiles size=2 - RELOC/tex/latex/hypernat/hypernat.sty +containersize 1916 +containerchecksum 0a803b9e7d23d364122869a89a6f181132f00b54d39f677a9d9471c336c933ba0e743fa4100636a6d3e929714a8896ce964e7614800c675ab9df7cce7e6d732c +doccontainersize 186676 +doccontainerchecksum 04a3f646e1595404513149f0ba56a36f0cc21a29f3ab455f38c4a7c3f5a282199208ac3aad329f38aa9fd5086762d326d85fa5052dba125d944969bfc0446489 docfiles size=48 - RELOC/doc/latex/hypernat/hypernat.pdf + RELOC/doc/latex/hypernat/hypernat.pdf details="Package documentation" RELOC/doc/latex/hypernat/hypernat.tex +runfiles size=2 + RELOC/tex/latex/hypernat/hypernat.sty catalogue-ctan /macros/latex/contrib/hypernat -catalogue-date 2012-07-16 00:03:18 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics hyper cite-supp catalogue-version 1.0b -name hyperref-docsrc -category Package -revision 15878 -relocated 1 -docfiles size=62 - RELOC/doc/latex/hyperref-docsrc/README - RELOC/doc/latex/hyperref-docsrc/paperslides99.zip - name hyperref category Package -revision 28213 -shortdesc Extensive support for hypertext in LaTeX. +revision 49299 +shortdesc Extensive support for hypertext in LaTeX relocated 1 longdesc The hyperref package is used to handle cross-referencing longdesc commands in LaTeX to produce hypertext links in the document. @@ -76669,13 +125221,48 @@ 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, ltxcmdsand refcount packages. -runfiles size=219 +longdesc author's kvoptions, ltxcmds and refcount packages. +containersize 108188 +containerchecksum 55c4518ad5e671da9c7ebdb59d8c52b37ec6b3f9cf122af7d3de65ca9bc1c3b1493c15a131ace9c6e122c694cf2c4d0829a32ba477bd382b954e7ebb671e0bba +doccontainersize 3183452 +doccontainerchecksum af0745e5bce7f05e66ed9ddb8ab88c44da2748802ce54198c49490503c61eb0ebbd22f47f01e6c3beee64df38461202f23db0a25454f8315fa9564d4fa17ab30 +docfiles size=1009 + RELOC/doc/latex/hyperref/ChangeLog.txt + RELOC/doc/latex/hyperref/README.md details="Readme" + RELOC/doc/latex/hyperref/backref.pdf + RELOC/doc/latex/hyperref/cmmi10-22.gif + RELOC/doc/latex/hyperref/cmsy10-21.gif + RELOC/doc/latex/hyperref/hyperref.pdf + RELOC/doc/latex/hyperref/manual.css + RELOC/doc/latex/hyperref/manual.html details="Manual, HTML version" + RELOC/doc/latex/hyperref/manual.pdf details="Manual, PDF version" language="en" + RELOC/doc/latex/hyperref/manual2.html + RELOC/doc/latex/hyperref/manual3.html + RELOC/doc/latex/hyperref/nameref.pdf + RELOC/doc/latex/hyperref/options.pdf details="Summary of options" language="en" + RELOC/doc/latex/hyperref/paper.pdf details="Paper on tagging and navigation" language="en" + RELOC/doc/latex/hyperref/slides.pdf +srccontainersize 448152 +srccontainerchecksum 9f6d70da38b61d7a8fbb51d65f7243522f79798ec12d60bd13df7ca59914804f641bcd614e7315540c1bf1abc0e3d43945c380b712c35e254eb50474d4db388a +srcfiles size=349 + RELOC/source/latex/hyperref/backref.dtx + RELOC/source/latex/hyperref/bmhydoc.sty + RELOC/source/latex/hyperref/doc/fdl.tex + RELOC/source/latex/hyperref/doc/manual.tex + RELOC/source/latex/hyperref/doc/options.tex + RELOC/source/latex/hyperref/doc/paperslides99.zip + RELOC/source/latex/hyperref/hluatex.dtx + RELOC/source/latex/hyperref/hyperref.dtx + RELOC/source/latex/hyperref/hyperref.ins + RELOC/source/latex/hyperref/nameref.dtx + RELOC/source/latex/hyperref/psdmapshortnames.pl +runfiles size=235 RELOC/tex/latex/hyperref/backref.sty RELOC/tex/latex/hyperref/hdvipdfm.def RELOC/tex/latex/hyperref/hdvips.def RELOC/tex/latex/hyperref/hdvipson.def RELOC/tex/latex/hyperref/hdviwind.def + RELOC/tex/latex/hyperref/hluatex.def RELOC/tex/latex/hyperref/hpdftex.def RELOC/tex/latex/hyperref/htex4ht.cfg RELOC/tex/latex/hyperref/htex4ht.def @@ -76698,137 +125285,18 @@ runfiles size=219 RELOC/tex/latex/hyperref/puenc.def RELOC/tex/latex/hyperref/puvnenc.def RELOC/tex/latex/hyperref/xr-hyper.sty -docfiles size=1057 - RELOC/doc/latex/hyperref/ChangeLog - RELOC/doc/latex/hyperref/ChangeLog.pdf - RELOC/doc/latex/hyperref/README - RELOC/doc/latex/hyperref/README.pdf - RELOC/doc/latex/hyperref/backref.pdf - RELOC/doc/latex/hyperref/cmmi10-22.gif - RELOC/doc/latex/hyperref/cmsy10-21.gif - RELOC/doc/latex/hyperref/hyperref.pdf - RELOC/doc/latex/hyperref/manual.css - RELOC/doc/latex/hyperref/manual.html - RELOC/doc/latex/hyperref/manual.pdf - RELOC/doc/latex/hyperref/manual2.html - RELOC/doc/latex/hyperref/manual3.html - RELOC/doc/latex/hyperref/nameref.pdf - RELOC/doc/latex/hyperref/options.pdf - RELOC/doc/latex/hyperref/paper.pdf - RELOC/doc/latex/hyperref/slides.pdf -srcfiles size=341 - RELOC/source/latex/hyperref/backref.dtx - RELOC/source/latex/hyperref/bmhydoc.sty - RELOC/source/latex/hyperref/doc/fdl.tex - RELOC/source/latex/hyperref/doc/manual.tex - RELOC/source/latex/hyperref/doc/options.tex - RELOC/source/latex/hyperref/hyperref.dtx - RELOC/source/latex/hyperref/hyperref.ins - RELOC/source/latex/hyperref/nameref.dtx - RELOC/source/latex/hyperref/psdmapshortnames.pl - RELOC/source/latex/hyperref/test/Makefile - RELOC/source/latex/hyperref/test/bit.tex - RELOC/source/latex/hyperref/test/hog.eps - RELOC/source/latex/hyperref/test/hog.pdf - RELOC/source/latex/hyperref/test/phys1.jpg - RELOC/source/latex/hyperref/test/phys2.jpg - RELOC/source/latex/hyperref/test/picture.eps - RELOC/source/latex/hyperref/test/picture.pdf - RELOC/source/latex/hyperref/test/picture.png - RELOC/source/latex/hyperref/test/test-bm-pu-licr.tex - RELOC/source/latex/hyperref/test/test0.tex - RELOC/source/latex/hyperref/test/test1.tex - RELOC/source/latex/hyperref/test/test2.tex - RELOC/source/latex/hyperref/test/test3.tex - RELOC/source/latex/hyperref/test/test4.tex - RELOC/source/latex/hyperref/test/test6.tex - RELOC/source/latex/hyperref/test/test7.tex - RELOC/source/latex/hyperref/test/test8.tex - RELOC/source/latex/hyperref/test/testams.tex - RELOC/source/latex/hyperref/test/testbib.bbl - RELOC/source/latex/hyperref/test/testbib.bib - RELOC/source/latex/hyperref/test/testbib.tex - RELOC/source/latex/hyperref/test/testbmgl.tex - RELOC/source/latex/hyperref/test/testbmu.tex - RELOC/source/latex/hyperref/test/testbookmark.tex - RELOC/source/latex/hyperref/test/testfor2.tex - RELOC/source/latex/hyperref/test/testform.tex - RELOC/source/latex/hyperref/test/testinfo.tex - RELOC/source/latex/hyperref/test/testnb.tex - RELOC/source/latex/hyperref/test/testoz.tex - RELOC/source/latex/hyperref/test/testslide.tex - RELOC/source/latex/hyperref/test/testurl.bbl - RELOC/source/latex/hyperref/test/testurl.bib - RELOC/source/latex/hyperref/test/testurl.tex +catalogue-contact-bugs https://github.com/ho-tex/hyperref/issues +catalogue-contact-home https://github.com/ho-tex/hyperref catalogue-ctan /macros/latex/contrib/hyperref -catalogue-date 2012-11-14 17:56:09 +0100 -catalogue-license lppl -catalogue-version 6.83m - -name hyper -category Package -revision 17357 -shortdesc Hypertext cross referencing. -relocated 1 -longdesc Redefines LaTeX cross-referencing commands to insert \special -longdesc commands for HyperTeX dvi viewers, such as recent versions of -longdesc xdvi. The package is now largely superseded by hyperref. -runfiles size=49 - RELOC/tex/latex/hyper/amsart.hyp - RELOC/tex/latex/hyper/amsbook.hyp - RELOC/tex/latex/hyper/amsdtx.hyp - RELOC/tex/latex/hyper/amsldoc.hyp - RELOC/tex/latex/hyper/amsmath.hyp - RELOC/tex/latex/hyper/amsproc.hyp - RELOC/tex/latex/hyper/amstex.hyp - RELOC/tex/latex/hyper/amsthm.hyp - RELOC/tex/latex/hyper/article.hyp - RELOC/tex/latex/hyper/book.hyp - RELOC/tex/latex/hyper/cweb.hyp - RELOC/tex/latex/hyper/doc.hyp - RELOC/tex/latex/hyper/fancyheadings.hyp - RELOC/tex/latex/hyper/ftnright.hyp - RELOC/tex/latex/hyper/hxt-bc.sty - RELOC/tex/latex/hyper/hyper.sty - RELOC/tex/latex/hyper/leqno.hyp - RELOC/tex/latex/hyper/letter.hyp - RELOC/tex/latex/hyper/longtable.hyp - RELOC/tex/latex/hyper/ltnews.hyp - RELOC/tex/latex/hyper/ltxdoc.hyp - RELOC/tex/latex/hyper/ltxguide.hyp - RELOC/tex/latex/hyper/natbib.hyp - RELOC/tex/latex/hyper/proc.hyp - RELOC/tex/latex/hyper/report.hyp - RELOC/tex/latex/hyper/slides.hyp - RELOC/tex/latex/hyper/subeqnarray.hyp - RELOC/tex/latex/hyper/theorem.hyp - RELOC/tex/latex/hyper/upref.hyp - RELOC/tex/latex/hyper/xr.hyp -docfiles size=86 - RELOC/doc/latex/hyper/README - RELOC/doc/latex/hyper/TODO - RELOC/doc/latex/hyper/contrib/README - RELOC/doc/latex/hyper/contrib/harvard-to.hyp - RELOC/doc/latex/hyper/defpattern.sty - RELOC/doc/latex/hyper/hyper.pdf - RELOC/doc/latex/hyper/scontrib/README - RELOC/doc/latex/hyper/scontrib/harvard.hyp -srcfiles size=43 - RELOC/source/latex/hyper/Makefile-MSDos - RELOC/source/latex/hyper/Makefile-Unix - RELOC/source/latex/hyper/backcite.dtx - RELOC/source/latex/hyper/dvi2pdf.pl - RELOC/source/latex/hyper/hyper.dtx - RELOC/source/latex/hyper/hyper.ins -catalogue-ctan /macros/latex/contrib/hyper -catalogue-date 2011-10-02 01:39:50 +0200 -catalogue-license lppl -catalogue-version 4.2d +catalogue-date 2018-11-30 23:01:55 +0100 +catalogue-license lppl1.3 +catalogue-topics hyper pdf-feat adobe-distiller +catalogue-version 6.88e name hyperxmp category Package -revision 35258 -shortdesc Embed XMP metadata within a LaTeX document. +revision 50812 +shortdesc Embed XMP metadata within a LaTeX document relocated 1 longdesc XMP (eXtensible Metadata Platform) is a mechanism proposed by longdesc Adobe for embedding document metadata within the document @@ -76852,14 +125320,18 @@ longdesc URL, document base URL, document identifier and instance longdesc identifier, language, source file name, PDF generating tool, longdesc PDF version, and contact telephone number/postal address/email longdesc address/URL. Hyperxmp currently embeds XMP only within PDF -longdesc documents; it is compatible with pdflatex, xelatex, -longdesc latex+dvipdfm, and latex+dvips+ps2pdf. -runfiles size=8 - RELOC/tex/latex/hyperxmp/hyperxmp.sty -docfiles size=137 - RELOC/doc/latex/hyperxmp/README - RELOC/doc/latex/hyperxmp/hyperxmp.pdf -srcfiles size=54 +longdesc documents; it is compatible with pdfLaTeX, XeLaTeX, +longdesc LaTeX+dvipdfm, and LaTeX+dvips+ps2pdf. +containersize 9456 +containerchecksum 95ab28036eb17cc540ade3462c3f205eeb07e6dbfbb6d150bff2c8264c3ba344dc7e977391a2c72c0d2d26f51e5cdb56751507b56da8d6862b7a2eb941929694 +doccontainersize 604764 +doccontainerchecksum 473038ca262432f860decdb67c4fca775bc96ff62da4dcff7b6f6b5c681302f32383c112b46b470fe0d96edc4599b4c2e328fbacab0ba091d9d1e9e5e837d1d4 +docfiles size=161 + RELOC/doc/latex/hyperxmp/README details="Readme" + RELOC/doc/latex/hyperxmp/hyperxmp.pdf details="Package documentation" +srccontainersize 115716 +srccontainerchecksum bba2d1f71c938ac57423e792ea49cd6008f97a3aeb608359780370f832157ed716759460dd1daefaf6b88af40ab03ab7ccb6237202e8fd7dd43c0504df1e2daf +srcfiles size=69 RELOC/source/latex/hyperxmp/einstein-xmp.tex RELOC/source/latex/hyperxmp/einstein1.png RELOC/source/latex/hyperxmp/einstein2.png @@ -76867,14 +125339,106 @@ srcfiles size=54 RELOC/source/latex/hyperxmp/gind-hyxmp.ist RELOC/source/latex/hyperxmp/hyperxmp.dtx RELOC/source/latex/hyperxmp/hyperxmp.ins +runfiles size=11 + RELOC/tex/latex/hyperxmp/hyperxmp.sty catalogue-ctan /macros/latex/contrib/hyperxmp -catalogue-date 2014-09-25 08:26:55 +0200 -catalogue-license lppl1.3 -catalogue-version 2.6 +catalogue-date 2019-04-06 06:13:29 +0200 +catalogue-license lppl1.3c +catalogue-topics pdf-feat +catalogue-version 4.1 + +name hyph-utf8 +category Package +revision 51186 +shortdesc Hyphenation patterns expressed in UTF-8 +relocated 1 +longdesc Modern native UTF-8 engines such as XeTeX and LuaTeX need +longdesc hyphenation patterns in UTF-8 format, whereas older systems +longdesc require hyphenation patterns in the 8-bit encoding of the font +longdesc in use (such encodings are codified in the LaTeX scheme with +longdesc names like OT1, T2A, TS1, OML, LY1, etc). The present package +longdesc offers a collection of conversions of existing patterns to +longdesc UTF-8 format, together with converters for use with 8-bit fonts +longdesc in older systems. Since hyphenation patterns for Knuthian-style +longdesc TeX systems are only read at iniTeX time, it is hoped that the +longdesc UTF-8 patterns, with their converters, will completely supplant +longdesc the older patterns. +containersize 16032 +containerchecksum 51fd6b51c1292b74c7eb6e8ec3fa7cbc7e02b8c5d716aa55e378a4103d21f7c4dd5298e2efdc47378d27d5326830b9b94846fe3109d3bbdf60f8e038969ad95e +doccontainersize 267636 +doccontainerchecksum 027285084e97c6a51296e532d306dd22d4b43ef02928e06d9d684d0137d0379d4f67f83e0f16e472fe37bd285793615af8bf082bbf7a959d586173a04bc5326d +docfiles size=84 + RELOC/doc/generic/hyph-utf8/CHANGES + RELOC/doc/generic/hyph-utf8/HISTORY + RELOC/doc/generic/hyph-utf8/hyph-utf8.pdf details="Main documentation for hyph-utf8" language="en" + RELOC/doc/generic/hyph-utf8/hyph-utf8.tex + RELOC/doc/generic/hyph-utf8/hyphenation-distribution.pdf + RELOC/doc/generic/hyph-utf8/hyphenation-distribution.tex + RELOC/doc/generic/hyph-utf8/img/miktex-languages.png + RELOC/doc/generic/hyph-utf8/img/texlive-collection.png + RELOC/doc/luatex/hyph-utf8/README + RELOC/doc/luatex/hyph-utf8/luatex-hyphen.pdf +srccontainersize 33972 +srccontainerchecksum 10c310af9e16263817c400686b7894d6b62f99c418972e7f494245e2d810e8fa02464ddf7175d64a857a3b1237059df5d63277ff7852993bc0f5e6680c82111c +srcfiles size=55 + RELOC/source/generic/hyph-utf8/README + RELOC/source/generic/hyph-utf8/contributed/make-exhyph.pl + RELOC/source/generic/hyph-utf8/data/encodings/ec.dat + RELOC/source/generic/hyph-utf8/data/encodings/il2.dat + RELOC/source/generic/hyph-utf8/data/encodings/il3.dat + RELOC/source/generic/hyph-utf8/data/encodings/l7x.dat + RELOC/source/generic/hyph-utf8/data/encodings/lmc.dat + RELOC/source/generic/hyph-utf8/data/encodings/lth.dat + RELOC/source/generic/hyph-utf8/data/encodings/qx.dat + RELOC/source/generic/hyph-utf8/data/encodings/t2a.dat + RELOC/source/generic/hyph-utf8/data/encodings/t8m.dat + RELOC/source/generic/hyph-utf8/data/encodings/texnansi.dat + RELOC/source/generic/hyph-utf8/generate-converters.rb + RELOC/source/generic/hyph-utf8/generate-pattern-loaders.rb + RELOC/source/generic/hyph-utf8/generate-plain-patterns.rb + RELOC/source/generic/hyph-utf8/generate-ptex-patterns.rb + RELOC/source/generic/hyph-utf8/generate-tl-files.rb + RELOC/source/generic/hyph-utf8/hyph-utf8.rb + RELOC/source/generic/hyph-utf8/language-data.rb + RELOC/source/generic/hyph-utf8/languages.rb + RELOC/source/generic/hyph-utf8/lib/tex/hyphen.rb + RELOC/source/generic/hyph-utf8/lib/tex/hyphen/authors.yml + RELOC/source/generic/hyph-utf8/lib/tex/hyphen/language.rb + RELOC/source/generic/hyph-utf8/lib/tex/hyphen/packages.yml + RELOC/source/generic/hyph-utf8/lib/tex/hyphen/path.rb + RELOC/source/generic/hyph-utf8/lib/tex/hyphen/texlive.rb + RELOC/source/generic/hyph-utf8/lib/tex/hyphen/texlive/loader.rb + RELOC/source/generic/hyph-utf8/lib/tex/hyphen/texlive/package.rb + RELOC/source/generic/hyph-utf8/lib/tex/hyphen/texlive/source.rb + RELOC/source/generic/hyph-utf8/spec/spec_helper.rb + RELOC/source/generic/hyph-utf8/spec/tex/hyphen/language_spec.rb + RELOC/source/luatex/hyph-utf8/Makefile + RELOC/source/luatex/hyph-utf8/luatex-hyphen.dtx +runfiles size=25 + RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex + RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-il2.tex + RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-il3.tex + RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-l7x.tex + RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-lmc.tex + RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-lth.tex + RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-qx.tex + RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-t2a.tex + RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-t8m.tex + RELOC/tex/luatex/hyph-utf8/etex.src + RELOC/tex/luatex/hyph-utf8/luatex-hyphen.lua +catalogue-also dehyph-exptl +catalogue-contact-bugs https://github.com/hyphenation/tex-hyphen/issues +catalogue-contact-home http://www.hyphenation.org +catalogue-contact-repository https://github.com/hyphenation/tex-hyphen +catalogue-contact-support http://tug.org/mailman/listinfo/tex-hyphen +catalogue-ctan /language/hyph-utf8 +catalogue-date 2019-05-19 05:42:51 +0200 +catalogue-license other-free +catalogue-topics hyphenation name hyphen-afrikaans category TLCore -revision 25990 +revision 51186 shortdesc Afrikaans hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Afrikaans in T1/EC and UTF-8 @@ -76884,10 +125448,19 @@ longdesc considered superior in quality. depend hyphen-base depend hyph-utf8 execute AddHyphen name=afrikaans lefthyphenmin=1 righthyphenmin=2 file=loadhyph-af.tex file_patterns=hyph-af.pat.txt file_exceptions=hyph-af.hyp.txt +containersize 36460 +containerchecksum 71da785bd33d3c4ebb5315696e1fa9466e188e13a60fd60920e923a49e74b593fdd0f50cbe5350d28921739a0f3e72866e04736d95045a670f53c36b6ae7e83d +runfiles size=62 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-af.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-af.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-af.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-af.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-af.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-af.pat.txt name hyphen-ancientgreek category TLCore -revision 29725 +revision 51186 shortdesc Ancient Greek hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Ancient Greek in LGR and UTF-8 @@ -76899,57 +125472,62 @@ depend hyphen-base depend hyph-utf8 execute AddHyphen name=ancientgreek lefthyphenmin=1 righthyphenmin=1 file=loadhyph-grc.tex file_patterns=hyph-grc.pat.txt file_exceptions= execute AddHyphen name=ibycus lefthyphenmin=2 righthyphenmin=2 file=ibyhyph.tex luaspecial="disabled:8-bit only" -runfiles size=16 +containersize 38328 +containerchecksum ee5105a58c49f808594d9b2912f85f15617c8187113663d3de3bee4824dec509f8010d89b8610b67c074b38ad7e7aff835994b044dc40c8ba72f2d08e370bb9f +runfiles size=55 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-grc.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-grc-x-ibycus.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-grc.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-grc.pat.txt RELOC/tex/generic/hyphen/grahyph5.tex RELOC/tex/generic/hyphen/ibyhyph.tex name hyphen-arabic category TLCore -revision 23085 +revision 50805 shortdesc (No) Arabic hyphenation patterns. relocated 1 longdesc Prevent hyphenation in Arabic. depend hyphen-base depend hyph-utf8 execute AddHyphen name=arabic lefthyphenmin= righthyphenmin= file=zerohyph.tex file_patterns= +containersize 712 +containerchecksum 1b43cfa50f074441f757b841b00656ab383ccabf5f2fafd8260e4088de13aabe8e2c3e7099e3d84ef0dff49fd312f17fe11e44892f95b6d7e149e2d4cd023171 +runfiles size=1 + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ar.tex name hyphen-armenian category TLCore -revision 23085 +revision 51186 shortdesc Armenian hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Armenian for Unicode engines. +longdesc Auto-generated from a script included in hyph-utf8. depend hyphen-base depend hyph-utf8 execute AddHyphen name=armenian lefthyphenmin=1 righthyphenmin=2 file=loadhyph-hy.tex file_patterns=hyph-hy.pat.txt file_exceptions= - -name hyphenat -category Package -revision 15878 -shortdesc Disable/enable hypenation. -relocated 1 -longdesc This package can disable all hyphenation or enable hyphenation -longdesc of non-alphabetics or monospaced fonts. The package can also -longdesc enable hyphenation within 'words' that contain non-alphabetic -longdesc characters (e.g., that include underscores), and hyphenation of -longdesc text typeset in monospaced (e.g., cmtt) fonts. -runfiles size=2 - RELOC/tex/latex/hyphenat/hyphenat.sty -docfiles size=44 - RELOC/doc/latex/hyphenat/README - RELOC/doc/latex/hyphenat/hyphenat.pdf -srcfiles size=10 - RELOC/source/latex/hyphenat/hyphenat.dtx - RELOC/source/latex/hyphenat/hyphenat.ins -catalogue-ctan /macros/latex/contrib/hyphenat -catalogue-date 2012-07-16 10:42:38 +0200 -catalogue-license lppl1.3 -catalogue-version 2.3c +containersize 2612 +containerchecksum a9963cd663ec8e060619d01516fe326149666d3b34e1f1afaaae42020d17c40885599e485d60d0241c9b3b54bfb9614725d2ff39a9bb5f002a240b2c54d2d57e +srccontainersize 1200 +srccontainerchecksum 8c2177d07755e7a0255057cbe8f9620badedef5fe70b6945c467b555b079d00b7de42ba4b65be095bafb88b2d867e2cbdded53be5bd5c6b5d6d3cc9b55471584 +srcfiles size=1 + RELOC/source/generic/hyph-utf8/languages/hy/generate_patterns_hy.rb +runfiles size=8 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-hy.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-hy.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hy.pat.txt name hyphen-base category TLCore -revision 34525 +revision 50826 +shortdesc core hyphenation support files relocated 1 +longdesc Includes Knuth's original hyphen.tex, zerohyph.tex to disable +longdesc hyphenation, language.us which starts the autogenerated files +longdesc language.dat and language.def (and default versions of those), +longdesc etc. +containersize 22352 +containerchecksum 35074d1071e8d3989adc1bd12ecc1eca7dbda426a0fcb033c66e67c1d37dd042f6576ddc633a4f40c1ee3ebf4827c9f32b00cbae2f43b94c50197efdea8af934 runfiles size=24 RELOC/tex/generic/config/language.dat RELOC/tex/generic/config/language.dat.lua @@ -76964,7 +125542,7 @@ runfiles size=24 name hyphen-basque category TLCore -revision 23085 +revision 51186 catalogue bahyph shortdesc Basque hyphenation patterns. relocated 1 @@ -76972,44 +125550,115 @@ longdesc Hyphenation patterns for Basque in T1/EC and UTF-8 encodings. depend hyphen-base depend hyph-utf8 execute AddHyphen name=basque lefthyphenmin=2 righthyphenmin=2 file=loadhyph-eu.tex file_patterns=hyph-eu.pat.txt file_exceptions= +containersize 3240 +containerchecksum dc57f3ec18dc77de7f638084dfd42e236fb53cdd4027261f81b1425e89397e3343568558c869bc2def57cadebaa5ad113e9993bbc903b157ef3de88d9b6ce23e +srccontainersize 2540 +srccontainerchecksum 7828868113962bea3e6465f7d7bfeeb9e1c065180fc11faf8d4c17d855931cddbcf4194d6ff65f0af71edbb6d802ec087aa9f745dca9e311a2391be642d0be99 +srcfiles size=2 + RELOC/source/generic/hyph-utf8/languages/eu/generate_patterns_eu.rb +runfiles size=5 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-eu.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-eu.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-eu.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-eu.pat.txt catalogue-ctan /language/basque -catalogue-date 2012-05-17 15:24:13 +0200 +catalogue-date 2016-11-05 05:59:04 +0100 catalogue-license other-free +catalogue-topics basque hyphenation + +name hyphen-belarusian +category TLCore +revision 51186 +shortdesc Belarusian hyphenation patterns. +relocated 1 +longdesc Belarusian hyphenation patterns in T2A and UTF-8 encodings +depend hyphen-base +depend hyph-utf8 +execute AddHyphen name=belarusian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-be.tex file_patterns=hyph-be.pat.txt file_exceptions= +containersize 11808 +containerchecksum 2da329c3f21b3422294bde8a9cc896aa3e65fb892a71e98a7b836d681b8f3f3b54dd3fa609a3e4c2a46776a0556cfa190aefae10de2f4e20a686c1c15d18c913 +runfiles size=30 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-be.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-be.t2a.tex + RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-be.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-be.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-be.pat.txt name hyphen-bulgarian category TLCore -revision 25990 +revision 51186 shortdesc Bulgarian hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Bulgarian in T2A and UTF-8 encodings. depend hyphen-base depend hyph-utf8 execute AddHyphen name=bulgarian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-bg.tex file_patterns=hyph-bg.pat.txt file_exceptions= +containersize 28188 +containerchecksum 32a2745a2d94dd306b852ae0d86f26fceda1fafddf0e43c36b323b521b77526ed1a703fdcc1fc7c0548563cdecb80bfe60218c1c939aa5fd595e2ad7ae5552f9 +runfiles size=69 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-bg.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-bg.t2a.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-bg.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-bg.pat.txt name hyphen-catalan category TLCore -revision 25990 +revision 51186 shortdesc Catalan hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Catalan in T1/EC and UTF-8 encodings. depend hyphen-base depend hyph-utf8 execute AddHyphen name=catalan lefthyphenmin=2 righthyphenmin=2 file=loadhyph-ca.tex file_patterns=hyph-ca.pat.txt file_exceptions=hyph-ca.hyp.txt +containersize 5032 +containerchecksum 86979241d2a216460d2cd53cb5bb5a6df257b0273c4a4f5b1b799397be48ab6783e37fd041cc8071a1433a8af138a4d3a777cc050cbaf4907578e7ce0645ab5c +runfiles size=8 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-ca.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-ca.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ca.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ca.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ca.pat.txt name hyphen-chinese category TLCore -revision 25990 +revision 51186 shortdesc Chinese pinyin hyphenation patterns. relocated 1 longdesc Hyphenation patterns for unaccented transliterated Mandarin -longdesc Chinese (pinyin) in T1/EC and UTF-8 encodings. +longdesc Chinese (pinyin) in T1/EC and UTF-8 encodings. The latter can +longdesc hyphenate pinyin with or without tone markers; the former only +longdesc without. +depend hyphen-base +depend hyph-utf8 +execute AddHyphen name=pinyin lefthyphenmin=1 righthyphenmin=2 file=loadhyph-zh-latn-pinyin.tex file_patterns=hyph-zh-latn-pinyin.pat.txt file_exceptions= +containersize 3208 +containerchecksum 1b37c95821b46758e2ccb089f3897c1691e76e7c7aa760e45c0305835c8e4719751c53e6a1a28d2153184e6c1aa20bbd4595a4ccd55a7fc196dc36cead9e2f71 +runfiles size=5 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-zh-latn-pinyin.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-zh-latn-pinyin.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-zh-latn-pinyin.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-zh-latn-pinyin.pat.txt + +name hyphen-churchslavonic +category TLCore +revision 51186 +shortdesc Church Slavonic hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Church Slavonic in UTF-8 encoding depend hyphen-base depend hyph-utf8 -execute AddHyphen name=pinyin lefthyphenmin=1 righthyphenmin=1 file=loadhyph-zh-latn-pinyin.tex file_patterns=hyph-zh-latn-pinyin.pat.txt file_exceptions= +execute AddHyphen name=churchslavonic lefthyphenmin=1 righthyphenmin=2 file=loadhyph-cu.tex file_patterns=hyph-cu.pat.txt file_exceptions=hyph-cu.hyp.txt +containersize 31528 +containerchecksum 5a2f3bd482818959c2abb74587c04a46919cda5f7ae627a830e2eff6f51ce233e8a2ec8fad727eadb7d18dfb1d2c19b589d94dbdffb36d7af4307e16ff6d4ab5 +runfiles size=70 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-cu.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-cu.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-cu.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-cu.pat.txt name hyphen-coptic category TLCore -revision 23085 +revision 51186 shortdesc Coptic hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Coptic in UTF-8 encoding as well as in @@ -77019,10 +125668,17 @@ longdesc are considered experimental. depend hyphen-base depend hyph-utf8 execute AddHyphen name=coptic lefthyphenmin=1 righthyphenmin=1 file=loadhyph-cop.tex file_patterns=hyph-cop.pat.txt file_exceptions= +containersize 6136 +containerchecksum 737dcf70c32e3d39a8092e69027663e9ee173116c14219dbce52f583bf33015035249d34c8cdea4317cd1d94b658869852aceeae1279ce784e9754149f420465 +runfiles size=8 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-cop.tex + RELOC/tex/generic/hyph-utf8/patterns/tex-8bit/copthyph.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-cop.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-cop.pat.txt name hyphen-croatian category TLCore -revision 23085 +revision 51186 catalogue hrhyph shortdesc Croatian hyphenation patterns. relocated 1 @@ -77030,13 +125686,21 @@ longdesc Hyphenation patterns for Croatian in T1/EC and UTF-8 encodings. depend hyphen-base depend hyph-utf8 execute AddHyphen name=croatian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-hr.tex file_patterns=hyph-hr.pat.txt file_exceptions= +containersize 5576 +containerchecksum 97c4b047a94488d43a1542ed77ccaefc6d369051707298a3f86926e0170c63647a40e0dd2eb4363a7d5bf526358ba48e5674a386451a41877c9176f4ba49c994 +runfiles size=9 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-hr.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-hr.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-hr.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hr.pat.txt catalogue-ctan /language/hyphenation/hrhyph.tex -catalogue-date 2012-07-15 23:55:51 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl1.3 +catalogue-topics hyphenation croatian name hyphen-czech category TLCore -revision 25990 +revision 51186 shortdesc Czech hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Czech in T1/EC and UTF-8 encodings. @@ -77045,10 +125709,18 @@ longdesc 'csplain' package and loaded with ISO Latin 2 encoding (IL2). depend hyphen-base depend hyph-utf8 execute AddHyphen name=czech lefthyphenmin=2 righthyphenmin=3 file=loadhyph-cs.tex file_patterns=hyph-cs.pat.txt file_exceptions=hyph-cs.hyp.txt +containersize 15748 +containerchecksum ea97fbb5b273238881865f8499c300d9b1886e921eb50ccf01291c40059cde75088890d4a06cdf2e43d4aaddc7aa43ab82174c0a50097044a69a53a694b47aba +runfiles size=21 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-cs.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-cs.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-cs.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-cs.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-cs.pat.txt name hyphen-danish category TLCore -revision 23085 +revision 51186 catalogue dkhyphen shortdesc Danish hyphenation patterns. relocated 1 @@ -77056,13 +125728,22 @@ longdesc Hyphenation patterns for Danish in T1/EC and UTF-8 encodings. depend hyphen-base depend hyph-utf8 execute AddHyphen name=danish lefthyphenmin=2 righthyphenmin=2 file=loadhyph-da.tex file_patterns=hyph-da.pat.txt file_exceptions= +containersize 5764 +containerchecksum b579b6d00c0139fc5fd1058b5b1333a231a21738a44152346b69d04b39e02ffd01c530ac89f98d2566d17c765c42461c71985b645fc2e62a380814051d064f03 +runfiles size=8 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-da.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-da.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-da.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-da.pat.txt catalogue-ctan /language/hyphenation/dkhyphen -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-11-05 05:59:04 +0100 catalogue-license lppl +catalogue-topics hyphenation danish name hyphen-dutch category TLCore -revision 25990 +revision 51186 +catalogue nehyph shortdesc Dutch hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Dutch in T1/EC and UTF-8 encodings. @@ -77072,10 +125753,23 @@ longdesc according to their meaning. depend hyphen-base depend hyph-utf8 execute AddHyphen name=dutch lefthyphenmin=2 righthyphenmin=2 file=loadhyph-nl.tex file_patterns=hyph-nl.pat.txt file_exceptions=hyph-nl.hyp.txt +containersize 38020 +containerchecksum 934483760e5a81a65ac8aae0b7d910b5fdea1a62ef7d9575e1a15027309e19b12cae27fd36f75b5336f6f0b38de33530bc4222e27ff3afe60f8e94b16897b816 +runfiles size=66 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-nl.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-nl.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-nl.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-nl.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-nl.pat.txt +catalogue-ctan /language/hyphenation/nehyph.tex +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl +catalogue-topics hyphenation dutch +catalogue-version 1.1 name hyphen-english category TLCore -revision 25990 +revision 51186 shortdesc English hyphenation patterns. relocated 1 longdesc Additional hyphenation patterns for American and British @@ -77088,10 +125782,21 @@ depend hyphen-base depend hyph-utf8 execute AddHyphen name=ukenglish synonyms=british,UKenglish lefthyphenmin=2 righthyphenmin=3 file=loadhyph-en-gb.tex file_patterns=hyph-en-gb.pat.txt file_exceptions=hyph-en-gb.hyp.txt execute AddHyphen name=usenglishmax lefthyphenmin=2 righthyphenmin=3 file=loadhyph-en-us.tex file_patterns=hyph-en-us.pat.txt file_exceptions=hyph-en-us.hyp.txt +containersize 41360 +containerchecksum ce688320bb2cf250f9ef4089db9c5d8af38fc1fc12c289ac87f1508f8f5ac09a5fd0fb9206a1b5d446488e68ec3a7184ae45038501afcdc1cf52dabb6cc7ca50 +runfiles size=50 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-en-gb.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-en-us.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-en-gb.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-en-us.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-en-gb.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-en-gb.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-en-us.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-en-us.pat.txt name hyphen-esperanto category TLCore -revision 23085 +revision 51186 shortdesc Esperanto hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Esperanto ISO Latin 3 and UTF-8 @@ -77102,20 +125807,34 @@ longdesc highly recommended. depend hyphen-base depend hyph-utf8 execute AddHyphen name=esperanto lefthyphenmin=2 righthyphenmin=2 file=loadhyph-eo.tex file_patterns=hyph-eo.pat.txt file_exceptions= +containersize 10648 +containerchecksum da7b5bcf0bd6d6f2a34d5b5330f9a97c73f7dde48b28545f8c6d21b5235156535b2910d386fa9f3b4e68915b81f534421022be345da967bd90723be7997f3b6e +runfiles size=16 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-eo.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-eo.il3.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-eo.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-eo.pat.txt name hyphen-estonian category TLCore -revision 23085 +revision 51186 shortdesc Estonian hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Estonian in T1/EC and UTF-8 encodings. depend hyphen-base depend hyph-utf8 execute AddHyphen name=estonian lefthyphenmin=2 righthyphenmin=3 file=loadhyph-et.tex file_patterns=hyph-et.pat.txt file_exceptions= +containersize 14592 +containerchecksum 899452321c4d907d7f811f044d9d8552d522ed53446419f59a5f8668dae977a3bad3b1dc02bba05c803cfff9a61b4394fa7bf879e1c85a8ff7400eef672d6d64 +runfiles size=21 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-et.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-et.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-et.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-et.pat.txt name hyphen-ethiopic category TLCore -revision 23085 +revision 51186 shortdesc Hyphenation patterns for Ethiopic scripts. relocated 1 longdesc Hyphenation patterns for languages written using the Ethiopic @@ -77126,45 +125845,34 @@ longdesc languages. depend hyphen-base depend hyph-utf8 execute AddHyphen name=ethiopic synonyms=amharic,geez lefthyphenmin=1 righthyphenmin=1 file=loadhyph-mul-ethi.tex file_patterns=hyph-mul-ethi.pat.txt file_exceptions= - -name hyphenex -category Package -revision 37354 -shortdesc US English hyphenation exceptions file. -relocated 1 -longdesc Exceptions for American English hyphenation patterns are -longdesc occasionally published in the TeX User Group journal TUGboat. -longdesc This bundle provides alternative Perl and Bourne shell scripts -longdesc to convert the source of such an article into an exceptions -longdesc file, together with a recent copy of the article and machine- -longdesc readable files. -runfiles size=6 - RELOC/tex/generic/hyphenex/ushyphex.tex -srcfiles size=59 - RELOC/source/generic/hyphenex/GNUmakefile - RELOC/source/generic/hyphenex/README - RELOC/source/generic/hyphenex/hyphenex.pl - RELOC/source/generic/hyphenex/hyphenex.sh - RELOC/source/generic/hyphenex/tb0hyf.pdf - RELOC/source/generic/hyphenex/tb0hyf.tex - RELOC/source/generic/hyphenex/test.tex -catalogue-ctan /info/digests/tugboat/hyphenex -catalogue-date 2015-05-12 19:11:40 +0200 -catalogue-license other-free +containersize 4448 +containerchecksum da5ddbbb8dfd8cc8a0b02ac5d8a7b9056d5f5d3a809b4afa41032c5288dbb3d92ef60fc7edb0196448f055aec0770687cf54490a6a5b99d7a3608318c9900006 +srccontainersize 2616 +srccontainerchecksum 0a68114396d036f1a3e63507a381861865ca7c69ed56de3795cdffad134c76a428bfa1dfbf45edc5456d02aac917a4d8690938f935594450a968ff3471c82923 +srcfiles size=2 + RELOC/source/generic/hyph-utf8/languages/mul-ethi/generate_patterns_mul-ethi.lua +runfiles size=5 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-mul-ethi.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-mul-ethi.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-mul-ethi.pat.txt name hyphen-farsi category TLCore -revision 23085 +revision 50805 shortdesc (No) Persian hyphenation patterns. relocated 1 longdesc Prevent hyphenation in Persian. depend hyphen-base depend hyph-utf8 execute AddHyphen name=farsi synonyms=persian lefthyphenmin= righthyphenmin= file=zerohyph.tex file_patterns= +containersize 736 +containerchecksum 196bd0331cb51550437f634bc37c426c8006a297a6f16d7c43dc291c92f3a635d5a0825a96f2b4be0d30e9b850422fabf3f404a262eba1f65807c59ad8213e86 +runfiles size=1 + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-fa.tex name hyphen-finnish category TLCore -revision 25990 +revision 51186 catalogue fihyph shortdesc Finnish hyphenation patterns. relocated 1 @@ -77172,23 +125880,39 @@ longdesc Hyphenation patterns for Finnish in T1/EC and UTF-8 encodings. depend hyphen-base depend hyph-utf8 execute AddHyphen name=finnish lefthyphenmin=2 righthyphenmin=2 file=loadhyph-fi.tex file_patterns=hyph-fi.pat.txt file_exceptions= +containersize 3692 +containerchecksum 29e384aad09ab8a636ee47433f83a0147cb4c55698f821b5d40cef74cc265c85c15903d84d721a6bc4921dd0dce0347550cedaaa4bdc58c85dc93043e6a61738 +runfiles size=5 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-fi.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-fi.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-fi.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-fi.pat.txt catalogue-ctan /language/hyphenation/fihyph -catalogue-date 2012-07-11 23:21:34 +0200 +catalogue-date 2016-07-20 08:22:15 +0200 catalogue-license pd +catalogue-topics hyphenation finnish name hyphen-french category TLCore -revision 25990 +revision 51186 shortdesc French hyphenation patterns. relocated 1 longdesc Hyphenation patterns for French in T1/EC and UTF-8 encodings. depend hyphen-base depend hyph-utf8 -execute AddHyphen name=french synonyms=patois,francais lefthyphenmin=2 righthyphenmin=3 file=loadhyph-fr.tex file_patterns=hyph-fr.pat.txt file_exceptions= +execute AddHyphen name=french synonyms=patois,francais lefthyphenmin=2 righthyphenmin=2 file=loadhyph-fr.tex file_patterns=hyph-fr.pat.txt file_exceptions= +containersize 11416 +containerchecksum 625087254c231e68c1f9abecbc3b315c08021c22d9c0332ae07eea8e600b800b12ac5147ce11488ec99d6368d695c0766edbd78115c8d5ac6cd6fb71478723d7 +runfiles size=16 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-fr.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-fr.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-fr.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-fr.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-fr.pat.txt name hyphen-friulan category TLCore -revision 26595 +revision 51186 shortdesc Friulan hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Friulan in ASCII encoding. They are @@ -77198,31 +125922,65 @@ longdesc November 6, 1996 and its following amendments. depend hyphen-base depend hyph-utf8 execute AddHyphen name=friulan lefthyphenmin=2 righthyphenmin=2 file=loadhyph-fur.tex file_patterns=hyph-fur.pat.txt file_exceptions= +containersize 3780 +containerchecksum fa724316ce1babb63981a51835bae3409b23e23bc0a65cb1bf8715073d076659abf8b4ae942b79257a92080857b67f807d7cc56859c45d8d4874dd0c9b26f001 +runfiles size=6 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-fur.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-fur.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-fur.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-fur.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-fur.pat.txt name hyphen-galician category TLCore -revision 25990 +revision 51186 shortdesc Galician hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Galician in T1/EC and UTF-8 encodings. depend hyphen-base depend hyph-utf8 execute AddHyphen name=galician lefthyphenmin=2 righthyphenmin=2 file=loadhyph-gl.tex file_patterns=hyph-gl.pat.txt file_exceptions= +containersize 10428 +containerchecksum fc4bbfc8f824554487670e115d9844cdab69e4410d8db6382c87386513627a2a96c3a5fe1278102704abdff04f859a51db79316f695ee259398723a32d4fd64a +srccontainersize 6776 +srccontainerchecksum ae42aea21c42d2a823e0b1fb8d1a595681bfd797fd5205516b5221d2c80845ead8dd7a9d80c205856a4c701a942d1dfa407150edb0a4236e9a069f02d2bfff17 +srcfiles size=11 + RELOC/source/generic/hyph-utf8/languages/gl/README + RELOC/source/generic/hyph-utf8/languages/gl/glhybiox.tex + RELOC/source/generic/hyph-utf8/languages/gl/glhyextr.tex + RELOC/source/generic/hyph-utf8/languages/gl/glhymed.tex + RELOC/source/generic/hyph-utf8/languages/gl/glhyquim.tex + RELOC/source/generic/hyph-utf8/languages/gl/glhytec.tex + RELOC/source/generic/hyph-utf8/languages/gl/glhyxeog.tex + RELOC/source/generic/hyph-utf8/languages/gl/glpatter-utf8.tex +runfiles size=19 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-gl.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-gl.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-gl.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-gl.pat.txt name hyphen-georgian category TLCore -revision 30326 +revision 51186 shortdesc Georgian hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Georgian in T8M, T8K and UTF-8 longdesc encodings. depend hyphen-base depend hyph-utf8 -execute AddHyphen name=georgian lefthyphenmin=2 righthyphenmin=3 file=loadhyph-ka.tex file_patterns=hyph-ka.pat.txt file_exceptions= +execute AddHyphen name=georgian lefthyphenmin=1 righthyphenmin=2 file=loadhyph-ka.tex file_patterns=hyph-ka.pat.txt file_exceptions= +containersize 11056 +containerchecksum ac68c0ce6febdf76178e9fb88b88aecac9ad4cf25977054a8276527d12ab55da5be080b01fcc8111ca4996af5d76c26c7f883f9bde5cbd38140e9785ef45713c +runfiles size=24 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-ka.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-ka.t8m.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ka.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ka.pat.txt name hyphen-german category TLCore -revision 29725 +revision 51186 +catalogue dehyph shortdesc German hyphenation patterns. relocated 1 longdesc Hyphenation patterns for German in T1/EC and UTF-8 encodings, @@ -77230,41 +125988,58 @@ longdesc for traditional and reformed spelling, including Swiss German. longdesc The package includes the latest patterns from dehyph-exptl longdesc (known to TeX under names 'german', 'ngerman' and longdesc 'swissgerman'), however 8-bit engines still load old versions -longdesc of patterns for 'german' and 'ngerman' for backward- -longdesc compatibility reasons. Swiss German patterns are suitable for -longdesc Swiss Standard German (Hochdeutsch) not the Alemannic dialects -longdesc spoken in Switzerland (Schwyzerduetsch). There are no known -longdesc patterns for written Schwyzerduetsch. +longdesc of patterns for 'german' and 'ngerman' for +longdesc backward-compatibility reasons. Swiss German patterns are +longdesc suitable for Swiss Standard German (Hochdeutsch) not the +longdesc Alemannic dialects spoken in Switzerland (Schwyzerduetsch). +longdesc There are no known patterns for written Schwyzerduetsch. depend hyphen-base depend hyph-utf8 +depend dehyph execute AddHyphen name=german lefthyphenmin=2 righthyphenmin=2 file=loadhyph-de-1901.tex file_patterns=hyph-de-1901.pat.txt file_exceptions= execute AddHyphen name=ngerman lefthyphenmin=2 righthyphenmin=2 file=loadhyph-de-1996.tex file_patterns=hyph-de-1996.pat.txt file_exceptions= execute AddHyphen name=swissgerman lefthyphenmin=2 righthyphenmin=2 file=loadhyph-de-ch-1901.tex file_patterns=hyph-de-ch-1901.pat.txt file_exceptions= -runfiles size=57 - RELOC/tex/generic/hyphen/dehyphn.tex - RELOC/tex/generic/hyphen/dehypht.tex - RELOC/tex/generic/hyphen/dehyphtex.tex - RELOC/tex/generic/hyphen/ghyphen.README +containersize 149300 +containerchecksum e3437e3838dde9450c755e442b5d90766af9b2c63e9a806bf4aca97c6527fdf5ca38e0a057c8241ba3706508ad9cb5bd4562ce30c5965efda282a66c83829810 +runfiles size=406 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-de-1901.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-de-1996.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-de-ch-1901.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-de-1901.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-de-1996.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-de-ch-1901.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-de-1901.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-de-1996.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-de-ch-1901.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-de-1901.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-de-1996.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-de-ch-1901.pat.txt +catalogue-alias ghyphen gnhyph +catalogue-ctan /language/hyphenation/dehyph +catalogue-date 2018-09-01 15:39:22 +0200 +catalogue-license lppl1 +catalogue-topics german hyphenation name hyphen-greek category TLCore -revision 29725 +revision 51186 catalogue elhyphen shortdesc Modern Greek hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Modern Greek in monotonic and -longdesc polytonic spelling in LGR and UTF-8 encodings. Patterns in UTF- -longdesc 8 use two code positions for each of the vowels with acute +longdesc polytonic spelling in LGR and UTF-8 encodings. Patterns in +longdesc UTF-8 use two code positions for each of the vowels with acute longdesc accent (a.k.a tonos, oxia), e.g., U+03AC, U+1F71 for alpha. depend hyphen-base depend hyph-utf8 execute AddHyphen name=monogreek lefthyphenmin=1 righthyphenmin=1 file=loadhyph-el-monoton.tex file_patterns=hyph-el-monoton.pat.txt file_exceptions= execute AddHyphen name=greek synonyms=polygreek lefthyphenmin=1 righthyphenmin=1 file=loadhyph-el-polyton.tex file_patterns=hyph-el-polyton.pat.txt file_exceptions= -runfiles size=6 - RELOC/tex/generic/hyphen/grmhyph5.tex - RELOC/tex/generic/hyphen/grphyph5.tex +containersize 13276 +containerchecksum 7af2a6fe7f302dc537f6087c004fd38ce9269679913765c08820c6d7e060b14ae104ba8ce0ef2c54131c62a3731c926a7c521a5ff9188b622c6fb2bf588b410f +doccontainersize 727508 +doccontainerchecksum 289e4bae20e0c52e7ccc4156908fef8639b2f803381bc362d1fb6a764e708e7a345fb14d2614ef1d46617e63f0cb4b4852c336a78f34af30ec66dcf9601599bb docfiles size=463 - RELOC/doc/generic/elhyphen/README + RELOC/doc/generic/elhyphen/README details="Readme" RELOC/doc/generic/elhyphen/anc-test.ltx RELOC/doc/generic/elhyphen/anc-test.pdf RELOC/doc/generic/elhyphen/ancient.pdf @@ -77272,34 +126047,55 @@ docfiles size=463 RELOC/doc/generic/elhyphen/compound.pdf RELOC/doc/generic/elhyphen/copyrite.txt RELOC/doc/generic/elhyphen/modern.pdf +runfiles size=20 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-el-monoton.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-el-polyton.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-el-monoton.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-el-polyton.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-el-monoton.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-el-polyton.pat.txt + RELOC/tex/generic/hyphen/grmhyph5.tex + RELOC/tex/generic/hyphen/grphyph5.tex catalogue-ctan /language/hyphenation/elhyphen -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-07-20 08:10:44 +0200 catalogue-license other-free +catalogue-topics greek hyphenation catalogue-version 5 name hyphen-hungarian category TLCore -revision 29725 +revision 51186 catalogue hungarian shortdesc Hungarian hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Hungarian in T1/EC and UTF-8 -longdesc encodings. From https://github.com/nagybence/huhyphn/. +longdesc encodings. depend hyphen-base depend hyph-utf8 execute AddHyphen name=hungarian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-hu.tex file_patterns=hyph-hu.pat.txt file_exceptions= -docfiles size=48 +containersize 285136 +containerchecksum 54d8a0c0ae2040934f14bf7ba7778108eaafeb5408e448d23c72e2e9a3cd79251b06b5a015fe2a74a9264de7100fc9b9f7f66e89b89c731198aec5b0a160430d +doccontainersize 179896 +doccontainerchecksum 1786a4b29cfaaa1b0f3cd2d9b78b980490e2fa5848e6f68f7c9b23d25410eb7aa6ea0dcdd2db0e2270e804746d4523a7a4f40ec53b890acf8a894ae5489fcfc9 +docfiles size=76 RELOC/doc/generic/huhyphen/huhyphn.pdf RELOC/doc/generic/huhyphen/hyph_hu.dic RELOC/doc/generic/huhyphen/searchforerrors.rb RELOC/doc/generic/huhyphen/testhyphenation.rb + RELOC/doc/generic/hyph-utf8/languages/hu/huhyphn.pdf +runfiles size=415 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-hu.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-hu.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-hu.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hu.pat.txt catalogue-ctan /language/hungarian/hyphenation -catalogue-date 2012-06-19 22:38:05 +0200 +catalogue-date 2016-11-05 05:59:04 +0100 catalogue-license gpl +catalogue-topics hyphenation hungarian name hyphen-icelandic category TLCore -revision 23085 +revision 51186 catalogue icehyph shortdesc Icelandic hyphenation patterns. relocated 1 @@ -77308,13 +126104,21 @@ longdesc encodings. depend hyphen-base depend hyph-utf8 execute AddHyphen name=icelandic lefthyphenmin=2 righthyphenmin=2 file=loadhyph-is.tex file_patterns=hyph-is.pat.txt file_exceptions= +containersize 19368 +containerchecksum 32faa121a9a1ae6d21551b01fc953041da3b1d7beee179daf0fcb022a99c15dc519ff2d32d3e8f3294e6b9d7cd5be07a91d21f7422fb85bac2a890835784c588 +runfiles size=23 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-is.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-is.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-is.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-is.pat.txt catalogue-ctan /language/hyphenation/icehyph.tex -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-11-05 05:59:04 +0100 catalogue-license lppl +catalogue-topics hyphenation icelandic name hyphen-indic category TLCore -revision 25990 +revision 51186 shortdesc Indic hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Assamese, Bengali, Gujarati, Hindi, @@ -77331,12 +126135,52 @@ execute AddHyphen name=malayalam lefthyphenmin=1 righthyphenmin=1 file=loadh execute AddHyphen name=marathi lefthyphenmin=1 righthyphenmin=1 file=loadhyph-mr.tex file_patterns=hyph-mr.pat.txt file_exceptions= execute AddHyphen name=oriya lefthyphenmin=1 righthyphenmin=1 file=loadhyph-or.tex file_patterns=hyph-or.pat.txt file_exceptions= execute AddHyphen name=panjabi lefthyphenmin=1 righthyphenmin=1 file=loadhyph-pa.tex file_patterns=hyph-pa.pat.txt file_exceptions= +execute AddHyphen name=pali lefthyphenmin=1 righthyphenmin=2 file=loadhyph-pi.tex file_patterns=hyph-pi.pat.txt file_exceptions= execute AddHyphen name=tamil lefthyphenmin=1 righthyphenmin=1 file=loadhyph-ta.tex file_patterns=hyph-ta.pat.txt file_exceptions= execute AddHyphen name=telugu lefthyphenmin=1 righthyphenmin=1 file=loadhyph-te.tex file_patterns=hyph-te.pat.txt file_exceptions= +containersize 5148 +containerchecksum 857d447939444570c5d34639789f2846d33e11e434fb708c2748d275b0673de72b001e6c6c724271496cecae5814e02fa0a96f765cec8df27b719a9e686e2a07 +runfiles size=36 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-as.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-bn.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-gu.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-hi.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-kn.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-ml.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-mr.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-or.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-pa.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-pi.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-ta.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-te.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-as.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-bn.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-gu.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-hi.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-kn.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ml.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-mr.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-or.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-pa.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-pi.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ta.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-te.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-as.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-bn.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-gu.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hi.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-kn.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ml.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-mr.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-or.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pa.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pi.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ta.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-te.pat.txt name hyphen-indonesian category TLCore -revision 25990 +revision 51186 shortdesc Indonesian hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Indonesian (Bahasa Indonesia) in ASCII @@ -77345,32 +126189,53 @@ longdesc Melayu). depend hyphen-base depend hyph-utf8 execute AddHyphen name=indonesian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-id.tex file_patterns=hyph-id.pat.txt file_exceptions=hyph-id.hyp.txt +containersize 2404 +containerchecksum 53cc5ef4877c98b5507cf1952cabc009c0c74e3a96bba42cd5742626ba911145ed44cb711cb5f19d37fe93f15e26eceb3027bc6d22a542065d6bd1211b8357e0 +runfiles size=4 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-id.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-id.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-id.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-id.pat.txt name hyphen-interlingua category TLCore -revision 25990 +revision 51186 shortdesc Interlingua hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Interlingua in ASCII encoding. depend hyphen-base depend hyph-utf8 execute AddHyphen name=interlingua lefthyphenmin=2 righthyphenmin=2 file=loadhyph-ia.tex file_patterns=hyph-ia.pat.txt file_exceptions=hyph-ia.hyp.txt +containersize 2872 +containerchecksum f341dede7a02b24952a18dd26310386f9dfeea3ceddf6cae3e589528991fcf3fba889096b920bd85a20f5405150d374e2f35f520fba693afba52d071765e9493 +runfiles size=5 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-ia.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ia.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ia.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ia.pat.txt name hyphen-irish category TLCore -revision 25990 +revision 51186 shortdesc Irish hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Irish (Gaeilge) in T1/EC and UTF-8 -longdesc encodings. Visit http://borel.slu.edu/fleiscin/index.html for -longdesc more information. +longdesc encodings. depend hyphen-base depend hyph-utf8 execute AddHyphen name=irish lefthyphenmin=2 righthyphenmin=3 file=loadhyph-ga.tex file_patterns=hyph-ga.pat.txt file_exceptions=hyph-ga.hyp.txt +containersize 30400 +containerchecksum f0f577439fcc997b0b634c7fab538d56438a670f4f08b7189bddef7d5a88fd842c4595332544ea4ff2bec70d55c67a8684de170db0388a13251f3f5b2079847c +runfiles size=38 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-ga.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-ga.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ga.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ga.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ga.pat.txt name hyphen-italian category TLCore -revision 25990 +revision 51186 catalogue ithyph shortdesc Italian hyphenation patterns. relocated 1 @@ -77381,14 +126246,22 @@ longdesc UNI). depend hyphen-base depend hyph-utf8 execute AddHyphen name=italian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-it.tex file_patterns=hyph-it.pat.txt file_exceptions= +containersize 3524 +containerchecksum f873581b4e5f674e4cd37101d89fb3d5099930bff904d2c7a55512ac4dc7dc48e050cd18615bfebc269d894bb46b65642badc7de37e95e6730d8312afff95b65 +runfiles size=5 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-it.tex + RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-it.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-it.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-it.pat.txt catalogue-ctan /language/hyphenation/ithyph.tex -catalogue-date 2012-06-23 19:46:16 +0200 +catalogue-date 2018-10-09 09:22:45 +0200 catalogue-license lgpl +catalogue-topics hyphenation italian catalogue-version 4.8g name hyphen-kurmanji category TLCore -revision 25990 +revision 51186 shortdesc Kurmanji hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Kurmanji (Northern Kurdish) as spoken @@ -77397,12 +126270,19 @@ longdesc UTF-8 encodings. depend hyphen-base depend hyph-utf8 execute AddHyphen name=kurmanji lefthyphenmin=2 righthyphenmin=2 file=loadhyph-kmr.tex file_patterns=hyph-kmr.pat.txt file_exceptions= +containersize 2696 +containerchecksum fb7bc7353bc20cac4a76330afda172f56048374dc231df8cb171f6a8fdcfb05ffe720ea358603df991e6ea34cf83495e573a95b4195f545ca68fce7aff0f5679 +runfiles size=4 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-kmr.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-kmr.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-kmr.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-kmr.pat.txt name hyphen-latin category TLCore -revision 34520 +revision 51186 catalogue lahyph -shortdesc Latin and classical Latin hyphenation patterns. +shortdesc Latin hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Latin in T1/EC and UTF-8 encodings, longdesc mainly in modern spelling (u when u is needed and v when v is @@ -77412,29 +126292,53 @@ longdesc Apparently there is no conflict between the patterns of modern longdesc Latin and those of medieval Latin. Hyphenation patterns for the longdesc Classical Latin in T1/EC and UTF-8 encodings. Classical Latin longdesc hyphenation patterns are different from those of 'plain' Latin, -longdesc the latter being more adapted to modern Latin. +longdesc the latter being more adapted to modern Latin. Hyphenation +longdesc patterns for the Liturgical Latin in T1/EC and UTF-8 encodings. depend hyphen-base depend hyph-utf8 execute AddHyphen name=latin lefthyphenmin=2 righthyphenmin=2 file=loadhyph-la.tex file_patterns=hyph-la.pat.txt file_exceptions= execute AddHyphen name=classiclatin lefthyphenmin=2 righthyphenmin=2 file=loadhyph-la-x-classic.tex file_patterns=hyph-la-x-classic.pat.txt file_exceptions= +execute AddHyphen name=liturgicallatin lefthyphenmin=2 righthyphenmin=2 file=loadhyph-la-x-liturgic.tex file_patterns=hyph-la-x-liturgic.pat.txt file_exceptions= +containersize 19440 +containerchecksum 2b1c40f68c25421cab3fd6c9b805c509686c4cefb5e8de18490fcbe8a4556892fa4e4b692ef26ef388a7a9a7cf690828fcd5a0ff3d2c374276b4a12087e1d58f +runfiles size=30 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-la-x-classic.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-la-x-liturgic.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-la.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-la-x-liturgic.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-la.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-la-x-classic.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-la-x-liturgic.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-la.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-la-x-classic.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-la-x-liturgic.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-la.pat.txt catalogue-ctan /language/hyphenation/lahyph.tex -catalogue-date 2012-06-24 00:35:21 +0200 +catalogue-date 2016-11-05 05:59:04 +0100 catalogue-license lppl +catalogue-topics hyphenation latin catalogue-version 3.1 name hyphen-latvian category TLCore -revision 25990 +revision 51186 shortdesc Latvian hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Latvian in L7X and UTF-8 encodings. depend hyphen-base depend hyph-utf8 execute AddHyphen name=latvian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-lv.tex file_patterns=hyph-lv.pat.txt file_exceptions= +containersize 52396 +containerchecksum 6ebb6611f20d90ffc57d4f67c5fc4987e31da62979342dd0143fb51126a6400c634e9bbabf4b2383ad71619833280c30fc22175d394800ad5960b33434c38c52 +runfiles size=68 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-lv.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-lv.l7x.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-lv.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-lv.pat.txt name hyphen-lithuanian category TLCore -revision 23085 +revision 51186 shortdesc Lithuanian hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Lithuanian in L7X and UTF-8 encodings. @@ -77442,10 +126346,17 @@ longdesc \lefthyphenmin and \righthyphenmin have to be at least 2. depend hyphen-base depend hyph-utf8 execute AddHyphen name=lithuanian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-lt.tex file_patterns=hyph-lt.pat.txt file_exceptions= +containersize 7424 +containerchecksum 7f1fc26d4554abbfeeb1da1f0eda68ee163589f519e3eee958fe1706d2dac7ace451da18e0b1ca8078a00319e2bf6ec6da8a9bd75d5d29824760194c1d9cac87 +runfiles size=10 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-lt.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-lt.l7x.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-lt.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-lt.pat.txt name hyphen-mongolian category TLCore -revision 25990 +revision 51186 shortdesc Mongolian hyphenation patterns in Cyrillic script. relocated 1 longdesc Hyphenation patterns for Mongolian in T2A, LMC and UTF-8 @@ -77455,10 +126366,20 @@ depend hyphen-base depend hyph-utf8 execute AddHyphen name=mongolian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-mn-cyrl.tex file_patterns=hyph-mn-cyrl.pat.txt file_exceptions= execute AddHyphen name=mongolianlmc lefthyphenmin=2 righthyphenmin=2 file=loadhyph-mn-cyrl-x-lmc.tex luaspecial="disabled:only for 8bit montex with lmc encoding" +containersize 10400 +containerchecksum 0a4f14b167afc1bb4b017978a61aacc40b27ab13f26aae90f3d970a5ec97f2d8b2ddda992bf83488821d2fc58238c4d4197f91586e36f3812271d2ff5ef66663 +runfiles size=20 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-mn-cyrl-x-lmc.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-mn-cyrl.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-mn-cyrl-x-lmc.lmc.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-mn-cyrl.t2a.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-mn-cyrl-x-lmc.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-mn-cyrl.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-mn-cyrl.pat.txt name hyphen-norwegian category TLCore -revision 23085 +revision 51186 shortdesc Norwegian Bokmal and Nynorsk hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Norwegian Bokmal and Nynorsk in T1/EC @@ -77467,10 +126388,47 @@ depend hyphen-base depend hyph-utf8 execute AddHyphen name=bokmal synonyms=norwegian,norsk lefthyphenmin=2 righthyphenmin=2 file=loadhyph-nb.tex file_patterns=hyph-nb.pat.txt file_exceptions=hyph-nb.hyp.txt execute AddHyphen name=nynorsk lefthyphenmin=2 righthyphenmin=2 file=loadhyph-nn.tex file_patterns=hyph-nn.pat.txt file_exceptions=hyph-nn.hyp.txt +containersize 96216 +containerchecksum 3bb97aef0042c3d863659a3f8921290ec9aab46f731a6908262f7f35f3843a4b2a0caaaa1d373d643e1bea43ddd57ad85b3c0fbb9a576461bcbe21fa8a067759 +runfiles size=248 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-nb.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-nn.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-nb.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-nn.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-nb.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-nn.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-no.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-nb.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-nb.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-nn.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-nn.pat.txt + +name hyphen-occitan +category TLCore +revision 51186 +shortdesc Occitan hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Occitan in T1/EC and UTF-8 encodings. +longdesc They are supposed to be valid for all the Occitan variants +longdesc spoken and written in the wide area called 'Occitanie' by the +longdesc French. It ranges from the Val d'Aran within Catalunya, to the +longdesc South Western Italian Alps encompassing the southern half of +longdesc the French pentagon. +depend hyphen-base +depend hyph-utf8 +execute AddHyphen name=occitan lefthyphenmin=2 righthyphenmin=2 file=loadhyph-oc.tex file_patterns=hyph-oc.pat.txt file_exceptions= +containersize 3300 +containerchecksum 8bf003921d4b93a73013e7511d3ea0a11f1f9a1f927e46ab59e65952e7e51ccac69ccd52382e37785a1136426835d7d88ca71241b29ecf7a1d582e2294f449d7 +runfiles size=6 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-oc.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-oc.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-oc.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-oc.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-oc.pat.txt name hyphen-piedmontese category TLCore -revision 29193 +revision 51186 shortdesc Piedmontese hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Piedmontese in ASCII encoding. @@ -77479,10 +126437,17 @@ longdesc Brero. depend hyphen-base depend hyph-utf8 execute AddHyphen name=piedmontese lefthyphenmin=2 righthyphenmin=2 file=loadhyph-pms.tex file_patterns=hyph-pms.pat.txt file_exceptions= +containersize 3328 +containerchecksum cb302bfcca925b09ee9ea9f24014249ffc48dfbe16d3ed8c4a4503c036df1a15af457e1a1a3069d4f8f00c511d4099cf1a3541854a992b0ab5f0825ae1df378b +runfiles size=5 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-pms.tex + RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-pms.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-pms.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pms.pat.txt name hyphen-polish category TLCore -revision 25990 +revision 51186 catalogue plhyph shortdesc Polish hyphenation patterns. relocated 1 @@ -77492,38 +126457,63 @@ longdesc LaMeX. depend hyphen-base depend hyph-utf8 execute AddHyphen name=polish lefthyphenmin=2 righthyphenmin=2 file=loadhyph-pl.tex file_patterns=hyph-pl.pat.txt file_exceptions=hyph-pl.hyp.txt +containersize 12524 +containerchecksum c36d67a9ed57e6fd0d683ec1c8b86ee6e1336ddf8103c430d074b71b0710a1fe64e7915de32eb3a789aa42b0576d286e11cff966024e6eac83b80315101df529 +runfiles size=28 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-pl.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-pl.qx.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-pl.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pl.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pl.pat.txt catalogue-ctan /language/polish/plhyph.tex -catalogue-date 2012-06-08 17:19:18 +0200 +catalogue-date 2016-07-17 15:05:50 +0200 catalogue-license knuth +catalogue-topics hyphenation polish catalogue-version 3.0a name hyphen-portuguese category TLCore -revision 31125 +revision 51186 shortdesc Portuguese hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Portuguese in T1/EC and UTF-8 longdesc encodings. depend hyphen-base depend hyph-utf8 -execute AddHyphen name=portuguese synonyms=portuges,brazil,brazilian lefthyphenmin=2 righthyphenmin=3 file=loadhyph-pt.tex file_patterns=hyph-pt.pat.txt file_exceptions=hyph-pt.hyp.txt +execute AddHyphen name=portuguese synonyms=portuges lefthyphenmin=2 righthyphenmin=3 file=loadhyph-pt.tex file_patterns=hyph-pt.pat.txt file_exceptions=hyph-pt.hyp.txt +containersize 3248 +containerchecksum ce865fa130f7d616aa0dfaf3bdae399c360f624245fc4af156ef4deeed254cb66b549cc64ae5727bb5f538ad9b2613bd2b4ff64ac0345b8ba59dd172e778e01d +runfiles size=6 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-pt.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-pt.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-pt.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pt.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pt.pat.txt name hyphen-romanian category TLCore -revision 25990 +revision 51186 shortdesc Romanian hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Romanian in T1/EC and UTF-8 encodings. longdesc The UTF-8 patterns use U+0219 for the character 's with comma longdesc accent' and U+021B for 't with comma accent', but we may longdesc consider using U+015F and U+0163 as well in the future. +longdesc Generated by PatGen2-output hyphen-level 9. depend hyphen-base depend hyph-utf8 execute AddHyphen name=romanian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-ro.tex file_patterns=hyph-ro.pat.txt file_exceptions= +containersize 4332 +containerchecksum 2c49bc2a8ab1dec522ee37a0e235b4dcb327545b072fbda972c68c4dd7faf8bd029b74316861168352effcfdcf022e37c42d079f71f5e719764ea2ad50d294e4 +runfiles size=6 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-ro.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-ro.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ro.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ro.pat.txt name hyphen-romansh category TLCore -revision 25990 +revision 51186 shortdesc Romansh hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Romansh in ASCII encoding. They are @@ -77532,10 +126522,17 @@ longdesc Rumantscha (Romansh language society). depend hyphen-base depend hyph-utf8 execute AddHyphen name=romansh lefthyphenmin=2 righthyphenmin=2 file=loadhyph-rm.tex file_patterns=hyph-rm.pat.txt file_exceptions= +containersize 3504 +containerchecksum d2d107149d51fbb76813ae495127b1965002d38494cf933adfd17fa613db8658fb28d5303222e289e81c56639ff40001b73804474f7d8b09a4bf763286d5dddd +runfiles size=5 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-rm.tex + RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-rm.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-rm.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-rm.pat.txt name hyphen-russian category TLCore -revision 23085 +revision 51186 shortdesc Russian hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Russian in T2A and UTF-8 encodings. @@ -77549,10 +126546,18 @@ depend hyphen-base depend hyph-utf8 depend ruhyphen execute AddHyphen name=russian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-ru.tex file_patterns=hyph-ru.pat.txt file_exceptions=hyph-ru.hyp.txt +containersize 34524 +containerchecksum b13290533a666b3377f9d0fad9d441f6475a3363e32e3675ab836402ed03083b4a1ddbc2fed946e7e7d048a4ef9a8e6d13ece7c98e77a828af3ba6e7ef14c0cb +runfiles size=63 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-ru.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-ru.t2a.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ru.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ru.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ru.pat.txt name hyphen-sanskrit category TLCore -revision 28522 +revision 51186 shortdesc Sanskrit hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Sanskrit and Prakrit in @@ -77561,10 +126566,20 @@ longdesc and Telugu scripts for Unicode engines. depend hyphen-base depend hyph-utf8 execute AddHyphen name=sanskrit lefthyphenmin=1 righthyphenmin=3 file=loadhyph-sa.tex file_patterns=hyph-sa.pat.txt file_exceptions= +containersize 3588 +containerchecksum 5dc85b741c8658af4c9ed02a52c394be315e2a076f91a98ca44254bd7006f585c44539f1a911b6d63fab17e2dee7ef89cee74c878348115eeb9d7aec2e253595 +doccontainersize 992 +doccontainerchecksum b93af3eae61de575fa8909a8cf39bd190585ac702577c76df655ca94fdc3d1d5206d4017c80641e5351b894cef9d214ed18c3d5cb1a30f5e06388445724c28fa +docfiles size=1 + RELOC/doc/generic/hyph-utf8/languages/sa/hyphenmin.txt +runfiles size=6 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-sa.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-sa.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sa.pat.txt name hyphen-serbian category TLCore -revision 25990 +revision 51186 catalogue srhyphc shortdesc Serbian hyphenation patterns. relocated 1 @@ -77578,14 +126593,32 @@ depend hyphen-base depend hyph-utf8 execute AddHyphen name=serbian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-sr-latn.tex file_patterns=hyph-sh-latn.pat.txt,hyph-sh-cyrl.pat.txt file_exceptions=hyph-sh-latn.hyp.txt,hyph-sh-cyrl.hyp.txt execute AddHyphen name=serbianc lefthyphenmin=2 righthyphenmin=2 file=loadhyph-sr-cyrl.tex file_patterns=hyph-sh-latn.pat.txt,hyph-sh-cyrl.pat.txt file_exceptions=hyph-sh-latn.hyp.txt,hyph-sh-cyrl.hyp.txt +containersize 25420 +containerchecksum 979ec2b533f3bc90b672a856237489b78e11e1f78782d0c14320ad38da08514ecbdc1b7d3d42930280324c36717c11fd8e3d57bfea74e3fe257fdd84138a144e +runfiles size=70 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-sr-cyrl.tex + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-sr-latn.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-sh-cyrl.t2a.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-sh-latn.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-sh-cyrl.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-sh-latn.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-sr-cyrl.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sh-cyrl.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sh-cyrl.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sh-latn.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sh-latn.pat.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sr-cyrl.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sr-cyrl.pat.txt +catalogue-also shhyphl catalogue-ctan /language/hyphenation/srhyphc.tex -catalogue-date 2012-07-10 14:48:34 +0200 +catalogue-date 2016-11-05 05:59:04 +0100 catalogue-license gpl +catalogue-topics hyphenation serbian catalogue-version 1.0a name hyphen-slovak category TLCore -revision 25990 +revision 51186 shortdesc Slovak hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Slovak in T1/EC and UTF-8 encodings. @@ -77594,10 +126627,18 @@ longdesc 'csplain' package and loaded with ISO Latin 2 encoding (IL2). depend hyphen-base depend hyph-utf8 execute AddHyphen name=slovak lefthyphenmin=2 righthyphenmin=3 file=loadhyph-sk.tex file_patterns=hyph-sk.pat.txt file_exceptions=hyph-sk.hyp.txt +containersize 10844 +containerchecksum 08ddbdfd97d005f69829477f0f269c168dcf68ac2adc278eb91db91a9e61bd8ddcd3890781ddacd623a12aa6698e6a46651d8e26bf9bff3a817c655448f1747e +runfiles size=19 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-sk.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-sk.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-sk.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sk.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sk.pat.txt name hyphen-slovenian category TLCore -revision 25990 +revision 51186 shortdesc Slovenian hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Slovenian in T1/EC and UTF-8 @@ -77605,74 +126646,139 @@ longdesc encodings. depend hyphen-base depend hyph-utf8 execute AddHyphen name=slovenian synonyms=slovene lefthyphenmin=2 righthyphenmin=2 file=loadhyph-sl.tex file_patterns=hyph-sl.pat.txt file_exceptions= +containersize 6192 +containerchecksum 3caab81e3d46b889c1f72bf4a2bbac5a03ae6581eadc919f21eac47af8defab69a7fe3a8e975d8f578cf4ec6c56458f78428ae621fbb2334a605b3480426a833 +runfiles size=8 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-sl.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-sl.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-sl.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sl.pat.txt name hyphen-spanish category TLCore -revision 25990 +revision 51186 shortdesc Spanish hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Spanish in T1/EC and UTF-8 encodings. depend hyphen-base depend hyph-utf8 execute AddHyphen name=spanish synonyms=espanol lefthyphenmin=2 righthyphenmin=2 file=loadhyph-es.tex file_patterns=hyph-es.pat.txt file_exceptions= +containersize 12972 +containerchecksum 171417a27ac9303f124cbfe5e2c788e11148426a16336f2b2f3f9651c67090b6a72f32ed681a7415f886d5e18f6075c6ee0dd421b22240d6a130897865953488 +doccontainersize 128796 +doccontainerchecksum e52e6f19134c653772b6b36a37b00a6a1b83ccc93716eeb9215b1d7677a1df5d203493bceeed312cd668e4de123249b41368b4c8d0479684b9b5099ac5ec9f75 +docfiles size=36 + RELOC/doc/generic/hyph-utf8/languages/es/README + RELOC/doc/generic/hyph-utf8/languages/es/division.pdf details="Paper on word division (Spanish)" language="es" +srccontainersize 7916 +srccontainerchecksum 3e010822e51974cb70c8e551d0bf31b13c754d3290f04e8829dca6642a0135636255a578bf50ed2642d3aa383bc6acadcf11d25c8184833d692817e518a83e84 +srcfiles size=6 + RELOC/source/generic/hyph-utf8/languages/es/README + RELOC/source/generic/hyph-utf8/languages/es/eshyph-make.lua + RELOC/source/generic/hyph-utf8/languages/es/eshyph.src +runfiles size=25 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-es.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-es.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-es.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-es.pat.txt +catalogue-contact-home http://www.cervantex.es/ catalogue-ctan /language/spanish/hyphen/base -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl +catalogue-topics hyphenation spanish catalogue-version 4.5 name hyphen-swedish category TLCore -revision 23085 +revision 51186 shortdesc Swedish hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Swedish in T1/EC and UTF-8 encodings. depend hyphen-base depend hyph-utf8 execute AddHyphen name=swedish lefthyphenmin=2 righthyphenmin=2 file=loadhyph-sv.tex file_patterns=hyph-sv.pat.txt file_exceptions= +containersize 18232 +containerchecksum bfacb0ec44c522f993000db583d495107da1d98ea905feccf36a3fc517058feccc8f4868065bedcb6dc64f0c6af7f1a2cb082179b6d86f15befb4c712bf5bd31 +runfiles size=25 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-sv.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-sv.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-sv.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sv.pat.txt name hyphen-thai category TLCore -revision 30605 +revision 51186 shortdesc Thai hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Thai in LTH and UTF-8 encodings. depend hyphen-base depend hyph-utf8 execute AddHyphen name=thai lefthyphenmin=2 righthyphenmin=3 file=loadhyph-th.tex file_patterns=hyph-th.pat.txt file_exceptions= +containersize 33628 +containerchecksum 4c47391ca4cde10be3bc50594eaf506172c0cc12066cb028073845868639e1ad18dc6d57dc418176695df1a7cd7d8ad29f3b4c007c746a39026646dbf2b07123 +runfiles size=55 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-th.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-th.lth.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-th.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-th.pat.txt name hyphen-turkish category TLCore -revision 23085 +revision 51186 catalogue tkhyph shortdesc Turkish hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Turkish in T1/EC and UTF-8 encodings. -longdesc The patterns for Turkish were first produced for the Ottoman -longdesc Texts Project in 1987 and were suitable for both Modern Turkish -longdesc and Ottoman Turkish in Latin script, however the required -longdesc character set didn't fit into EC encoding, so support for -longdesc Ottoman Turkish had to be dropped to keep compatibility with 8- -longdesc bit engines. +longdesc Auto-generated from a script included in the distribution. The +longdesc patterns for Turkish were first produced for the Ottoman Texts +longdesc Project in 1987 and were suitable for both Modern Turkish and +longdesc Ottoman Turkish in Latin script, however the required character +longdesc set didn't fit into EC encoding, so support for Ottoman Turkish +longdesc had to be dropped to keep compatibility with 8-bit engines. depend hyphen-base depend hyph-utf8 execute AddHyphen name=turkish lefthyphenmin=2 righthyphenmin=2 file=loadhyph-tr.tex file_patterns=hyph-tr.pat.txt file_exceptions= +containersize 3880 +containerchecksum d65df4ad0364fb7da5cebe9f39a2351671cecc49d050882399630975c5ac468dd1e41de9609c0581322937dd683056335fd78c7bbb1423610441e0bf4acfdb72 +srccontainersize 2724 +srccontainerchecksum 27a469eccbe748ded0466c4034dfaf280bff3e6448aa828f2411bad7b9ac8e875f172eeeadd077670f851e4650600c70b222b6325dfc3d362b6737bc988a20d3 +srcfiles size=3 + RELOC/source/generic/hyph-utf8/languages/tr/README + RELOC/source/generic/hyph-utf8/languages/tr/generate_patterns_tr.rb +runfiles size=5 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-tr.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-tr.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-tr.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-tr.pat.txt catalogue-ctan /language/hyphenation/tkhyph.tex -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics hyphenation turkish name hyphen-turkmen category TLCore -revision 25990 +revision 51186 shortdesc Turkmen hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Turkmen in T1/EC and UTF-8 encodings. depend hyphen-base depend hyph-utf8 execute AddHyphen name=turkmen lefthyphenmin=2 righthyphenmin=2 file=loadhyph-tk.tex file_patterns=hyph-tk.pat.txt file_exceptions= +containersize 6340 +containerchecksum e4595aff01856c97ec6bb178a0b045868e2edcdfa23cf24e20942b4130ce46ad42d7ce6f13edc7c7bdec2482b29d21a0137f0cc8b77c85e044d85fe3955aeacb +srccontainersize 1676 +srccontainerchecksum dc3e3f607c25829dbaa3193ea92ea16dc86503189eb19d66738c0148507f3db9cbff0b2a0700a19ed994e7ad518aa0938c1fb4fb28bf8d6c14c2b82cc130e6da +srcfiles size=1 + RELOC/source/generic/hyph-utf8/languages/tk/generate_patterns_tk.rb +runfiles size=14 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-tk.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-tk.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-tk.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-tk.pat.txt name hyphen-ukrainian category TLCore -revision 23085 +revision 51186 shortdesc Ukrainian hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Ukrainian in T2A and UTF-8 encodings. @@ -77686,10 +126792,18 @@ depend hyphen-base depend hyph-utf8 depend ukrhyph execute AddHyphen name=ukrainian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-uk.tex file_patterns=hyph-uk.pat.txt file_exceptions= +containersize 18764 +containerchecksum 4aa80aa8365598bdcae2f7dca2a1c7ec7b1f4bf4a5ee434e2e8684263478e6b1346d18c64756fd40c7007f73d3e69c71f2868862cae0c983d9c9eb9e645ce237 +runfiles size=41 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-uk.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-uk.t2a.tex + RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-uk.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-uk.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-uk.pat.txt name hyphen-uppersorbian category TLCore -revision 23085 +revision 51186 shortdesc Upper Sorbian hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Upper Sorbian in T1/EC and UTF-8 @@ -77697,617 +126811,119 @@ longdesc encodings. depend hyphen-base depend hyph-utf8 execute AddHyphen name=uppersorbian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-hsb.tex file_patterns=hyph-hsb.pat.txt file_exceptions=hyph-hsb.hyp.txt +containersize 5500 +containerchecksum b60b36ae0816f11b6064285d79098ad6aac605bc1b20bd97191b97bb10a28b445e0e71d1ea2476c0731a72d96c20d114d640c3d4471d53a8b6726dc089377a0b +runfiles size=12 + RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-hsb.tex + RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-hsb.ec.tex + RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-hsb.tex + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hsb.hyp.txt + RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hsb.pat.txt name hyphen-welsh category TLCore -revision 23085 +revision 51186 shortdesc Welsh hyphenation patterns. relocated 1 longdesc Hyphenation patterns for Welsh in T1/EC and UTF-8 encodings. depend hyphen-base depend hyph-utf8 execute AddHyphen name=welsh lefthyphenmin=2 righthyphenmin=3 file=loadhyph-cy.tex file_patterns=hyph-cy.pat.txt file_exceptions= - -name hyph-utf8 -category Package -revision 37337 -shortdesc Hyphenation patterns expressed in UTF-8. -relocated 1 -longdesc Modern native UTF-8 engines such as XeTeX and LuaTeX need -longdesc hyphenation patterns in UTF-8 format, whereas older systems -longdesc require hyphenation patterns in the 8-bit encoding of the font -longdesc in use (such encodings are codified in the LaTeX scheme with -longdesc names like OT1, T2A, TS1, OML, LY1, etc). The present package -longdesc offers a collection of conversions of existing patterns to 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. -runfiles size=2158 - RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex - RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-il2.tex - RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-il3.tex - RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-l7x.tex - RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-lmc.tex - RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-lth.tex - RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-qx.tex - RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-t2a.tex - RELOC/tex/generic/hyph-utf8/conversions/conv-utf8-t8m.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-af.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-as.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-bg.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-bn.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-ca.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-cop.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-cs.tex +containersize 19972 +containerchecksum e4b61366f67645bb8ed2b848a246cab0c267dc626c7a033627d603c91b7061259d2b95e360f15672aa03197b198c4a45152df4dc88f923fdbf8c1ddf92a5f33a +runfiles size=35 RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-cy.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-da.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-de-1901.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-de-1996.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-de-ch-1901.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-el-monoton.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-el-polyton.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-en-gb.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-en-us.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-eo.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-es.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-et.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-eu.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-fi.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-fr.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-fur.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-ga.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-gl.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-grc.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-gu.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-hi.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-hr.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-hsb.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-hu.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-hy.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-ia.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-id.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-is.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-it.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-ka.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-kmr.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-kn.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-la-x-classic.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-la.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-lt.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-lv.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-ml.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-mn-cyrl-x-lmc.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-mn-cyrl.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-mr.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-mul-ethi.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-nb.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-nl.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-nn.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-or.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-pa.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-pl.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-pms.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-pt.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-rm.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-ro.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-ru.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-sa.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-sk.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-sl.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-sr-cyrl.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-sr-latn.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-sv.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-ta.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-te.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-th.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-tk.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-tr.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-uk.tex - RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-zh-latn-pinyin.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-af.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-bg.t2a.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-ca.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-cs.ec.tex RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-cy.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-da.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-de-1901.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-de-1996.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-de-ch-1901.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-eo.il3.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-es.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-et.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-eu.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-fi.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-fr.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-fur.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-ga.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-gl.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-hr.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-hsb.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-hu.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-is.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-ka.t8m.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-kmr.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-la.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-lt.l7x.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-lv.l7x.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-mn-cyrl-x-lmc.lmc.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-mn-cyrl.t2a.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-nb.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-nl.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-nn.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-pl.qx.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-pt.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-ro.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-ru.t2a.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-sh-cyrl.t2a.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-sh-latn.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-sk.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-sl.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-sv.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-th.lth.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-tk.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-tr.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-uk.t2a.tex - RELOC/tex/generic/hyph-utf8/patterns/ptex/hyph-zh-latn-pinyin.ec.tex - RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-af.tex - RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-fr.tex - RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-fur.tex - RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-it.tex - RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-pms.tex - RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-rm.tex - RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-uk.tex - RELOC/tex/generic/hyph-utf8/patterns/quote/hyph-quote-zh-latn-pinyin.tex - RELOC/tex/generic/hyph-utf8/patterns/tex-8bit/copthyph.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-af.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-as.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-bg.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-bn.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ca.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-cop.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-cs.tex RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-cy.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-da.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-de-1901.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-de-1996.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-de-ch-1901.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-el-monoton.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-el-polyton.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-en-gb.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-en-us.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-eo.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-es.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-et.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-eu.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-fi.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-fr.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-fur.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ga.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-gl.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-grc.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-gu.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-hi.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-hr.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-hsb.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-hu.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-hy.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ia.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-id.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-is.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-it.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ka.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-kmr.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-kn.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-la-x-classic.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-la.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-lt.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-lv.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ml.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-mn-cyrl-x-lmc.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-mn-cyrl.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-mr.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-mul-ethi.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-nb.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-nl.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-nn.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-no.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-or.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-pa.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-pl.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-pms.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-pt.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-rm.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ro.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ru.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-sa.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-sh-cyrl.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-sh-latn.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-sk.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-sl.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-sr-cyrl.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-sv.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-ta.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-te.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-th.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-tk.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-tr.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-uk.tex - RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-zh-latn-pinyin.tex - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-af.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-af.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-af.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-af.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-as.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-as.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-as.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-as.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-bg.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-bg.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-bg.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-bg.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-bn.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-bn.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-bn.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-bn.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ca.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ca.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ca.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ca.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-cop.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-cop.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-cop.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-cop.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-cs.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-cs.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-cs.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-cs.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-cy.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-cy.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-cy.lic.txt RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-cy.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-da.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-da.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-da.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-da.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-de-1901.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-de-1901.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-de-1901.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-de-1901.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-de-1996.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-de-1996.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-de-1996.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-de-1996.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-de-ch-1901.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-de-ch-1901.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-de-ch-1901.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-de-ch-1901.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-el-monoton.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-el-monoton.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-el-monoton.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-el-monoton.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-el-polyton.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-el-polyton.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-el-polyton.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-el-polyton.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-en-gb.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-en-gb.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-en-gb.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-en-gb.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-en-us.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-en-us.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-en-us.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-en-us.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-eo.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-eo.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-eo.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-eo.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-es.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-es.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-es.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-es.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-et.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-et.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-et.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-et.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-eu.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-eu.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-eu.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-eu.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-fi.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-fi.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-fi.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-fi.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-fr.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-fr.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-fr.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-fr.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-fur.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-fur.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-fur.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-fur.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ga.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ga.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ga.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ga.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-gl.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-gl.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-gl.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-gl.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-grc.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-grc.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-grc.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-grc.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-gu.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-gu.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-gu.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-gu.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hi.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hi.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hi.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hi.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hr.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hr.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hr.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hr.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hsb.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hsb.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hsb.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hsb.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hu.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hu.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hu.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hu.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hy.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hy.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hy.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hy.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ia.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ia.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ia.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ia.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-id.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-id.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-id.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-id.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-is.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-is.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-is.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-is.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-it.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-it.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-it.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-it.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ka.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ka.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ka.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ka.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-kmr.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-kmr.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-kmr.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-kmr.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-kn.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-kn.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-kn.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-kn.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-la-x-classic.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-la-x-classic.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-la-x-classic.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-la-x-classic.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-la.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-la.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-la.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-la.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-lt.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-lt.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-lt.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-lt.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-lv.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-lv.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-lv.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-lv.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ml.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ml.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ml.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ml.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-mn-cyrl.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-mn-cyrl.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-mn-cyrl.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-mn-cyrl.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-mr.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-mr.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-mr.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-mr.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-mul-ethi.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-mul-ethi.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-mul-ethi.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-mul-ethi.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-nb.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-nb.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-nb.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-nb.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-nl.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-nl.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-nl.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-nl.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-nn.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-nn.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-nn.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-nn.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-or.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-or.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-or.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-or.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pa.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pa.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pa.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pa.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pl.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pl.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pl.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pl.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pms.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pms.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pms.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pms.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pt.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pt.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pt.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pt.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-rm.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-rm.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-rm.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-rm.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ro.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ro.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ro.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ro.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ru.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ru.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ru.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ru.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sa.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sa.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sa.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sa.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sh-cyrl.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sh-cyrl.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sh-cyrl.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sh-cyrl.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sh-latn.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sh-latn.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sh-latn.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sh-latn.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sk.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sk.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sk.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sk.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sl.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sl.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sl.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sl.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sr-cyrl.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sr-cyrl.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sr-cyrl.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sr-cyrl.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sv.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sv.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sv.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sv.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ta.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ta.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ta.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-ta.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-te.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-te.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-te.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-te.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-th.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-th.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-th.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-th.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-tk.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-tk.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-tk.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-tk.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-tr.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-tr.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-tr.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-tr.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-uk.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-uk.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-uk.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-uk.pat.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-zh-latn-pinyin.chr.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-zh-latn-pinyin.hyp.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-zh-latn-pinyin.lic.txt - RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-zh-latn-pinyin.pat.txt - RELOC/tex/luatex/hyph-utf8/etex.src - RELOC/tex/luatex/hyph-utf8/luatex-hyphen.lua -docfiles size=196 - RELOC/doc/generic/hyph-utf8/CHANGES - RELOC/doc/generic/hyph-utf8/HISTORY - RELOC/doc/generic/hyph-utf8/bg/azbukaExtended.pdf - RELOC/doc/generic/hyph-utf8/bg/azbukaExtended.tex - RELOC/doc/generic/hyph-utf8/es/README - RELOC/doc/generic/hyph-utf8/es/division.pdf - RELOC/doc/generic/hyph-utf8/hu/huhyphn.pdf - RELOC/doc/generic/hyph-utf8/hyphenation-distribution.pdf - RELOC/doc/generic/hyph-utf8/hyphenation-distribution.tex - RELOC/doc/generic/hyph-utf8/hyphenation.pdf - RELOC/doc/generic/hyph-utf8/hyphenation.tex - RELOC/doc/generic/hyph-utf8/img/miktex-languages.png - RELOC/doc/generic/hyph-utf8/img/texlive-collection.png - RELOC/doc/generic/hyph-utf8/sa/hyphenmin.txt - RELOC/doc/latex/hyph-utf8/README - RELOC/doc/luatex/hyph-utf8/README - RELOC/doc/luatex/hyph-utf8/luatex-hyphen.pdf -srcfiles size=78 - RELOC/source/generic/hyph-utf8/README - RELOC/source/generic/hyph-utf8/contributed/make-exhyph.pl - RELOC/source/generic/hyph-utf8/data/encodings/ec.dat - RELOC/source/generic/hyph-utf8/data/encodings/il2.dat - RELOC/source/generic/hyph-utf8/data/encodings/il3.dat - RELOC/source/generic/hyph-utf8/data/encodings/l7x.dat - RELOC/source/generic/hyph-utf8/data/encodings/lmc.dat - RELOC/source/generic/hyph-utf8/data/encodings/lth.dat - RELOC/source/generic/hyph-utf8/data/encodings/qx.dat - RELOC/source/generic/hyph-utf8/data/encodings/t2a.dat - RELOC/source/generic/hyph-utf8/data/encodings/t8m.dat - RELOC/source/generic/hyph-utf8/data/encodings/texnansi.dat - RELOC/source/generic/hyph-utf8/generate-converters.rb - RELOC/source/generic/hyph-utf8/generate-pattern-loaders.rb - RELOC/source/generic/hyph-utf8/generate-plain-patterns.rb - RELOC/source/generic/hyph-utf8/generate-ptex-patterns.rb - RELOC/source/generic/hyph-utf8/generate-tl-files.rb - RELOC/source/generic/hyph-utf8/generate-webpage.rb - RELOC/source/generic/hyph-utf8/hyph-utf8.rb - RELOC/source/generic/hyph-utf8/languages.rb - RELOC/source/generic/hyph-utf8/languages/es/README - RELOC/source/generic/hyph-utf8/languages/es/eshyph-make.lua - RELOC/source/generic/hyph-utf8/languages/es/eshyph.src - RELOC/source/generic/hyph-utf8/languages/eu/generate_patterns_eu.rb - RELOC/source/generic/hyph-utf8/languages/gl/README - RELOC/source/generic/hyph-utf8/languages/gl/glhybiox.tex - RELOC/source/generic/hyph-utf8/languages/gl/glhyextr.tex - RELOC/source/generic/hyph-utf8/languages/gl/glhymed.tex - RELOC/source/generic/hyph-utf8/languages/gl/glhyquim.tex - RELOC/source/generic/hyph-utf8/languages/gl/glhytec.tex - RELOC/source/generic/hyph-utf8/languages/gl/glhyxeog.tex - RELOC/source/generic/hyph-utf8/languages/gl/glpatter-utf8.tex - RELOC/source/generic/hyph-utf8/languages/hy/generate_patterns_hy.rb - RELOC/source/generic/hyph-utf8/languages/mul-ethi/generate_patterns_mul-ethi.lua - RELOC/source/generic/hyph-utf8/languages/tk/generate_patterns_tk.rb - RELOC/source/generic/hyph-utf8/languages/tr/README - RELOC/source/generic/hyph-utf8/languages/tr/generate_patterns_tr.rb - RELOC/source/luatex/hyph-utf8/Makefile - RELOC/source/luatex/hyph-utf8/luatex-hyphen.dtx -catalogue-ctan /language/hyph-utf8 -catalogue-date 2015-05-09 22:02:37 +0200 + +name hyphenat +category Package +revision 15878 +shortdesc Disable/enable hypenation +relocated 1 +longdesc This package can disable all hyphenation or enable hyphenation +longdesc of non-alphabetics or monospaced fonts. The package can also +longdesc enable hyphenation within 'words' that contain non-alphabetic +longdesc characters (e.g., that include underscores), and hyphenation of +longdesc text typeset in monospaced (e.g., cmtt) fonts. +containersize 1692 +containerchecksum 5af847cd55cc1b455b1928f6ba275054209ad5c9c2f81a7ae648d87eaa39353e842b2df4e91cf530909a46b4aa226228978d771b35e46b7e12f1a08a08faa181 +doccontainersize 151796 +doccontainerchecksum 57f8a5d71763cac73635fddba75eb59faaaed01d47bcbb7ecc96b80fa5a926bb0091d3cd3448c6f53ad82cd44c9244ee631fb5b56141351b578cd899509eb323 +docfiles size=44 + RELOC/doc/latex/hyphenat/README details="Readme" + RELOC/doc/latex/hyphenat/hyphenat.pdf details="Package documentation" +srccontainersize 10404 +srccontainerchecksum 781337dbca0ecf6155221b768ace1fec364bd1ddf29e3df36b2da64b6137a09996423466c8241cc5107c3eba056b4bf5c54572af77e781fe8e1e7f02264d9577 +srcfiles size=10 + RELOC/source/latex/hyphenat/hyphenat.dtx + RELOC/source/latex/hyphenat/hyphenat.ins +runfiles size=2 + RELOC/tex/latex/hyphenat/hyphenat.sty +catalogue-ctan /macros/latex/contrib/hyphenat +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics hyphenation +catalogue-version 2.3c + +name hyphenex +category Package +revision 37354 +shortdesc US English hyphenation exceptions file +relocated 1 +longdesc Exceptions for American English hyphenation patterns are +longdesc occasionally published in the TeX User Group journal TUGboat. +longdesc This bundle provides alternative Perl and Bourne shell scripts +longdesc to convert the source of such an article into an exceptions +longdesc file, together with a recent copy of the article and +longdesc machine-readable files. +containersize 7512 +containerchecksum dfa1f625e736c2c4125209552f084fbd5d64109db5dd5b8f37b5add3fce90984bfa5db855b581396ffad20b1f5a3461cae01e031c086f7db5dc98203bb7bf8d9 +srccontainersize 183836 +srccontainerchecksum cedcf83033a5aaebb44a8270b5e670b9db2fba2b8f65925cddee4684bf50fee5dcadb02921b04288d02c91ca3d003c8da143c7bb1974e7af26b1f392dfd4283f +srcfiles size=59 + RELOC/source/generic/hyphenex/GNUmakefile + RELOC/source/generic/hyphenex/README + RELOC/source/generic/hyphenex/hyphenex.pl + RELOC/source/generic/hyphenex/hyphenex.sh + RELOC/source/generic/hyphenex/tb0hyf.pdf + RELOC/source/generic/hyphenex/tb0hyf.tex + RELOC/source/generic/hyphenex/test.tex +runfiles size=6 + RELOC/tex/generic/hyphenex/ushyphex.tex +catalogue-also tugboat tugboat-plain +catalogue-ctan /info/digests/tugboat/hyphenex +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license other-free -catalogue-version 696 +catalogue-topics hyphenation name hyplain category Package revision 15878 -shortdesc Basic support for multiple languages in Plain TeX. +shortdesc Basic support for multiple languages in Plain TeX relocated 1 longdesc The package offers a means to set up hyphenation suitable for longdesc several languages and/or dialects, and to select them or switch longdesc between them while typesetting. +containersize 3136 +containerchecksum f2968e8baf048329d8c78934770aa5d0a364ac7b3f77dc00a163e085e4fe45420c180acd05b281016aefdfa6523bed234e75ca07da0d133438798c1e51330d83 +doccontainersize 48884 +doccontainerchecksum cc64c35df85ba832f18f153d0f0cdc9f153ac4a9db0a175a1961a353f59ba585e19b6607e0c4cd1a832d921aa3451687427965cbef4fcb2a87488895e6643bb3 +docfiles size=16 + RELOC/doc/plain/hyplain/README + RELOC/doc/plain/hyplain/hydoc.pdf details="Package documentation" + RELOC/doc/plain/hyplain/hydoc.tex runfiles size=4 RELOC/tex/plain/hyplain/hylang.tex RELOC/tex/plain/hyplain/hypdfplain.ini RELOC/tex/plain/hyplain/hyplain.tex RELOC/tex/plain/hyplain/hyrules.tex -docfiles size=16 - RELOC/doc/plain/hyplain/README - RELOC/doc/plain/hyplain/hydoc.pdf - RELOC/doc/plain/hyplain/hydoc.tex +catalogue-also babel catalogue-ctan /macros/plain/contrib/hyplain -catalogue-date 2012-07-16 10:42:38 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics multilingual hyphenation plain-ext catalogue-version 1.0 name ibycus-babel @@ -78323,27 +126939,34 @@ longdesc in the normal Babel manner. For proper hyphenation of Greek longdesc quoted in mid-paragraph, you should use it with elatex (all longdesc current distributions of LaTeX are built with e-TeX, so the longdesc constraint should not be onerous). -runfiles size=3 - RELOC/tex/latex/ibycus-babel/ibycus.ldf - RELOC/tex/latex/ibycus-babel/lgienc.def - RELOC/tex/latex/ibycus-babel/lgifib.fd +containersize 2164 +containerchecksum 30f810bd70555df4f05fbc0b073456c030a0768372bd3c681921f41fc31bfbe0570a39e474ab26aeeacb142622154e5cab3714412b09f89d1260fae8b60e817a +doccontainersize 53824 +doccontainerchecksum f09dfd00f35f653defd756b72437dd712ed1ffceb05beeadfb34c1c5163559ee7c0ae6ce0420f57b722e93080248cbcfd678d811f1383fa5fa1ab76db52a060b docfiles size=21 - RELOC/doc/latex/ibycus-babel/README + RELOC/doc/latex/ibycus-babel/README details="Readme" RELOC/doc/latex/ibycus-babel/ibycus-babel-test.tex - RELOC/doc/latex/ibycus-babel/ibycus-babel.pdf + RELOC/doc/latex/ibycus-babel/ibycus-babel.pdf details="Package documentation" RELOC/doc/latex/ibycus-babel/ibyhyph.pl +srccontainersize 7824 +srccontainerchecksum 13e3ad11b56a70d7752209feaa9437bda4979c40a25597114bfc5b4e26a889c623aa7266959a212de6b7e74ebe75fb38b36767fa95f692adae027e5d025a4702 srcfiles size=7 RELOC/source/latex/ibycus-babel/ibycus-babel.dtx RELOC/source/latex/ibycus-babel/ibycus-babel.ins +runfiles size=3 + RELOC/tex/latex/ibycus-babel/ibycus.ldf + RELOC/tex/latex/ibycus-babel/lgienc.def + RELOC/tex/latex/ibycus-babel/lgifib.fd catalogue-ctan /language/greek/ibycus-babel -catalogue-date 2012-02-26 19:37:31 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics greek multilingual-addon catalogue-version 3.0 name ibygrk category Package revision 15878 -shortdesc Fonts and macros to typeset ancient Greek. +shortdesc Fonts and macros to typeset ancient Greek relocated 1 longdesc Ibycus is a Greek typeface, based on Silvio Levy's realisation longdesc of a classic Didot cut of Greek type from around 1800. The @@ -78352,6 +126975,20 @@ longdesc format. This distribution of ibycus is accompanied by a set of longdesc macro packages to use it with Plain TeX or LaTeX, but for use longdesc with Babel, see the ibycus-babel package. execute addMixedMap iby.map +containersize 138944 +containerchecksum 89002af0024ec804ebffcc45f3a33337ffdb66f71e1ca70224b0936388892dadf99605a8ca3f59a2b879e76e24acc91b1da92622d602f49b236aecb8aafe64b9 +doccontainersize 15576 +doccontainerchecksum 9dd3bd7a8ef3267965f30048e4a71314b6a9813cb400b7a94dfe285606d7554cde80aa429603d0fb1f587935e193e5ece5ed67870fc4e0c66eb5152c392a9cdc +docfiles size=18 + RELOC/doc/fonts/ibygrk/COPYING + RELOC/doc/fonts/ibygrk/NEWS + RELOC/doc/fonts/ibygrk/README details="General and installation Readme" + RELOC/doc/fonts/ibygrk/README.ibycus4 + RELOC/doc/fonts/ibygrk/iby4text.tex + RELOC/doc/fonts/ibygrk/ibycus3.RME + RELOC/doc/fonts/ibygrk/ibycus4.ltx + RELOC/doc/fonts/ibygrk/psibycus.ltx + RELOC/doc/fonts/ibygrk/psibycus.tex runfiles size=109 RELOC/fonts/afm/public/ibygrk/fibb84.afm RELOC/fonts/afm/public/ibygrk/fibr84.afm @@ -78408,42 +127045,105 @@ runfiles size=109 RELOC/tex/generic/ibygrk/setiby4.tex RELOC/tex/generic/ibygrk/tlgsqq.tex RELOC/tex/generic/ibygrk/version4.tex -docfiles size=18 - RELOC/doc/fonts/ibygrk/COPYING - RELOC/doc/fonts/ibygrk/NEWS - RELOC/doc/fonts/ibygrk/README - RELOC/doc/fonts/ibygrk/README.ibycus4 - RELOC/doc/fonts/ibygrk/iby4text.tex - RELOC/doc/fonts/ibygrk/ibycus3.RME - RELOC/doc/fonts/ibygrk/ibycus4.ltx - RELOC/doc/fonts/ibygrk/psibycus.ltx - RELOC/doc/fonts/ibygrk/psibycus.tex catalogue-ctan /fonts/greek/ibygrk -catalogue-date 2014-05-08 15:40:26 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics font font-greek greek catalogue-version 4.5 +name icite +category Package +revision 50429 +shortdesc Indices locorum citatorum +relocated 1 +longdesc The package is designed to produce from BibTeX or BibLaTeX +longdesc bibliographical databases the different indices of authors and +longdesc works cited which are called indices locorum citatorum. It +longdesc relies on a specific \icite command and can operate with either +longdesc BibTeX or BibLaTeX. +containersize 2404 +containerchecksum 1a71e185bf65c65f64ffe49d4b7cda415bdec89a7f92fa45914c0adccc2b1430f0022f9c789c2e13c2acb0a780ef90360a22247ba2aecc171a3fc6e06b8f05b0 +doccontainersize 286244 +doccontainerchecksum efad2e573358b64b6d6146fa80011b033e4acd7435d9b0e32778240cf8051c732f1617614cd4ab56c91a03260b203084aa5c15c03208bc86686ad18d2c75e93c +docfiles size=103 + RELOC/doc/latex/icite/README.md details="Readme" + RELOC/doc/latex/icite/icite.pdf details="Package documentation" + RELOC/doc/latex/icite/samples/bibsample.bib + RELOC/doc/latex/icite/samples/icite-biblatex.pdf + RELOC/doc/latex/icite/samples/icite-biblatex.tex + RELOC/doc/latex/icite/samples/icite-minimal.pdf + RELOC/doc/latex/icite/samples/icite-minimal.tex + RELOC/doc/latex/icite/samples/icite-nobiblatex.pdf + RELOC/doc/latex/icite/samples/icite-nobiblatex.tex +srccontainersize 14448 +srccontainerchecksum a0c728f3896f269ab6f91945e1ac984bd3b6774525567f8f196c46ea8edba2cc5f6e6886b26a9ecbd2b1452e9980ccf4e3ae7a7a5dee852c073cb9349a6a874e +srcfiles size=14 + RELOC/source/latex/icite/Makefile + RELOC/source/latex/icite/icite.dtx + RELOC/source/latex/icite/icite.ins +runfiles size=2 + RELOC/tex/latex/icite/icite.sty +catalogue-contact-bugs https://gitlab.com/ralessi/icite/issues +catalogue-contact-home http://www.robertalessi.net/icite +catalogue-contact-repository http://git.robertalessi.net/icite +catalogue-ctan /macros/latex/contrib/icite +catalogue-date 2019-03-17 20:42:34 +0100 +catalogue-license gpl3+cc-by-sa-4 +catalogue-topics biblatex index bibtex-supp humanities cite-supp +catalogue-version 1.2 + name icsv category Package revision 15878 -shortdesc Class for typesetting articles for the ICSV conference. +shortdesc Class for typesetting articles for the ICSV conference relocated 1 longdesc This is an ad-hoc class for typesetting articles for the ICSV longdesc conference, based on the earler active-conf by the same author. -runfiles size=3 - RELOC/tex/latex/icsv/icsv.cls +containersize 3596 +containerchecksum e865708ef636c7c917cc9a870eaba4b8c0249acba01bd2cd3fbfc9d95672405db133bbf0faf9f2d299bc4024118b80b4354ecb8216427507f66817cac085e01b +doccontainersize 209444 +doccontainerchecksum dd06bf5d8a087bcb20c63a61cb9867bda3df35e8adf30a3d4ca69ab149772d46e3b83f168a8fc1c597aa2536a14b98561f42226a59b6663f58de4e338f9b4e82 docfiles size=58 RELOC/doc/latex/icsv/README RELOC/doc/latex/icsv/icsv-example.tex - RELOC/doc/latex/icsv/icsv.pdf + RELOC/doc/latex/icsv/icsv.pdf details="Package documentation" +srccontainersize 10304 +srccontainerchecksum 9ee3fecec68c7719a39d83860e8efaca3f5daafd82b9ed06af9ac38ffa3659d03f7ecec5407d568ec5f071c22c0cb33166449b64757be7b740943472d9ca1941 srcfiles size=10 RELOC/source/latex/icsv/icsv.dtx RELOC/source/latex/icsv/icsv.ins +runfiles size=3 + RELOC/tex/latex/icsv/icsv.cls catalogue-ctan /macros/latex/contrib/conferences/icsv -catalogue-date 2012-05-08 21:52:08 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics confproc catalogue-version 0.2 +name identkey +category Package +revision 49018 +shortdesc Typesetting bracketed dichotomous identification keys +relocated 1 +longdesc The package is for typesetting bracketed dichotomous +longdesc identification keys. +containersize 1196 +containerchecksum b04dc4859826ad3f4fc4dd4a9b19abc0f6125d66d200519652a130c522fc6b49de8565af73f81efa9e75d592036ccca6d373a368e66526d8997dab9d8a5f806f +doccontainersize 488 +doccontainerchecksum c676908535a4a67efd8569e81a1d3ce5a47bf7a5ec755e87e62830e370fa3307bf0d6a84f3ec7c399bca3cc365f97469393a6fc954bf83b2e2fbc9eda9983811 +docfiles size=1 + RELOC/doc/latex/identkey/README.md details="Readme" +runfiles size=1 + RELOC/tex/latex/identkey/identkey.sty +catalogue-also dichokey +catalogue-contact-bugs https://gitlab.com/rj_white/latex-identkey/issues +catalogue-contact-repository https://gitlab.com/rj_white/latex-identkey +catalogue-ctan /macros/latex/contrib/identkey +catalogue-date 2018-11-03 05:32:32 +0100 +catalogue-license gpl3 +catalogue-topics biology +catalogue-version 0.1.0 + name idxcmds category Package revision 38115 @@ -78451,14 +127151,19 @@ shortdesc Semantic commands for adding formatted index entries relocated 1 longdesc The package provides commands for adding formatted index longdesc entries; it arises from the author's work on large documents. -runfiles size=3 - RELOC/tex/latex/idxcmds/idxcmds.sty +containersize 2392 +containerchecksum ec7d58e5f52472b0d359f84afcba179ce3428638ad8c45293b7de2346d4ba84c3b22792bec27a10328dee9f0f186c2536d562ec47e9f6aa2103e708788a553f3 +doccontainersize 413600 +doccontainerchecksum 9c55acca21ba10f051c678f0e59d68f4a1231c744d7b470f7a905c81226a23ae0eee03b02b9466b5fb6c92af1e884a95d1f6644401f83a50441b7c77becf0874 docfiles size=105 - RELOC/doc/latex/idxcmds/README - RELOC/doc/latex/idxcmds/idxcmds_en.pdf + RELOC/doc/latex/idxcmds/README details="Readme" + RELOC/doc/latex/idxcmds/idxcmds_en.pdf details="Package documentation" RELOC/doc/latex/idxcmds/idxcmds_en.tex +runfiles size=3 + RELOC/tex/latex/idxcmds/idxcmds.sty +catalogue-contact-repository https://bitbucket.org/cgnieder/idxcmds/ catalogue-ctan /macros/latex/contrib/idxcmds -catalogue-date 2015-08-13 13:06:19 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 catalogue-topics index catalogue-version 0.2c @@ -78466,7 +127171,7 @@ catalogue-version 0.2c name idxlayout category Package revision 25821 -shortdesc Configurable index layout, responsive to KOMA-Script and memoir. +shortdesc Configurable index layout, responsive to KOMA-Script and memoir relocated 1 longdesc The idxlayout package offers a key-value interface to configure longdesc index layout parameters, e.g. allowing for three-column indexes @@ -78474,118 +127179,88 @@ longdesc or for "parent" items and their affiliated subitems being longdesc typeset as a single paragraph. The package is responsive to the longdesc index-related options and commands of the KOMA-Script and longdesc memoir classes. -runfiles size=2 - RELOC/tex/latex/idxlayout/idxlayout.sty +containersize 2708 +containerchecksum 968d869a0b635b14ce8ce85e710c987ecd8ea2efb97a03314098014366ece450b4566d626031e11b52d7ede53a019665640fc1626dd1e24651275b35a8f2cac6 +doccontainersize 338936 +doccontainerchecksum 469a20893247406856f15dad6b14050e221299dc2adc40f1547361d74d3f7ce90ba6eabde06402bdbe22c845119df4bbfa8b999931e99c1b944b165f3b245892 docfiles size=84 - RELOC/doc/latex/idxlayout/README - RELOC/doc/latex/idxlayout/idxlayout.pdf + RELOC/doc/latex/idxlayout/README details="Readme" language="en" + RELOC/doc/latex/idxlayout/idxlayout.pdf details="Package documentation" language="en" +srccontainersize 12428 +srccontainerchecksum a2fac68e0c6c0f2cc0c9472d9d58882c337f519caa3b2bb088a330bda4f65b43a1acbbdf936e4975f3c628ce1f5a45f58def28cb129a0708a0b4168cbcdcac0a srcfiles size=12 RELOC/source/latex/idxlayout/idxlayout.dtx RELOC/source/latex/idxlayout/idxlayout.ins +runfiles size=2 + RELOC/tex/latex/idxlayout/idxlayout.sty catalogue-ctan /macros/latex/contrib/idxlayout -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics index catalogue-version 0.4d -name IEEEconf -category Package -revision 15878 -shortdesc Macros for IEEE conference proceedings. -relocated 1 -longdesc The IEEEconf class implements the formatting dictated by the -longdesc IEEE Computer Society Press for conference proceedings. -runfiles size=2 - RELOC/tex/latex/IEEEconf/IEEEconf.cls -docfiles size=53 - RELOC/doc/latex/IEEEconf/IEEEconf.pdf - RELOC/doc/latex/IEEEconf/README -srcfiles size=11 - RELOC/source/latex/IEEEconf/IEEEconf.dtx - RELOC/source/latex/IEEEconf/IEEEconf.ins -catalogue-ctan /macros/latex/contrib/IEEEconf -catalogue-date 2014-10-01 09:31:17 +0200 -catalogue-license lppl -catalogue-version 1.4 - name ieeepes category Package revision 17359 -shortdesc IEEE Power Engineering Society Transactions. +shortdesc IEEE Power Engineering Society Transactions relocated 1 longdesc Supports typesetting of transactions, as well as discussions longdesc and closures, for the IEEE Power Engineering Society longdesc Transactions journals. -runfiles size=9 - RELOC/bibtex/bst/ieeepes/ieeepes.bst - RELOC/tex/latex/ieeepes/ieeepes.sty +containersize 9512 +containerchecksum 60ae4ff80be5c2b02e2ebeea5954ed61b73dbc085a4d282004796d9be6038cc7c8020b7c81226d7dc7b121683e4196e461c7c3d101bb460eb8c39bf2da179bb2 +doccontainersize 248084 +doccontainerchecksum ae2413800f1bd4c0467321a7332fac15a8010e31ba7a4effc0fdb44e9e7a0001ba62d6acb44a72eb6f996560ddf96231b7355c4b9ad8b816be102a143b7c8011 docfiles size=86 - RELOC/doc/latex/ieeepes/README + RELOC/doc/latex/ieeepes/README details="Readme" RELOC/doc/latex/ieeepes/ieeepes_check.bib RELOC/doc/latex/ieeepes/ieeepes_check.tex - RELOC/doc/latex/ieeepes/ieeepes_doc.pdf + RELOC/doc/latex/ieeepes/ieeepes_doc.pdf details="Package documentation" RELOC/doc/latex/ieeepes/ieeepes_doc.tex RELOC/doc/latex/ieeepes/ieeepes_skel.tex RELOC/doc/latex/ieeepes/vk.eps +runfiles size=9 + RELOC/bibtex/bst/ieeepes/ieeepes.bst + RELOC/tex/latex/ieeepes/ieeepes.sty catalogue-ctan /macros/latex/contrib/ieeepes -catalogue-date 2011-10-06 15:17:32 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics journalpub catalogue-version 4.0 -name IEEEtran +name ietfbibs category Package -revision 38238 -shortdesc Document class for IEEE Transactions journals and conferences +revision 41332 +shortdesc Generate BibTeX entries for various IETF index files relocated 1 -longdesc The class and its BibTeX style enable authors to produce -longdesc officially-correct output for the Institute of Electrical and -longdesc Electronics Engineers (IEEE) transactions, journals and -longdesc conferences. -runfiles size=205 - RELOC/bibtex/bib/IEEEtran/IEEEabrv.bib - RELOC/bibtex/bib/IEEEtran/IEEEexample.bib - RELOC/bibtex/bib/IEEEtran/IEEEfull.bib - RELOC/bibtex/bst/IEEEtran/IEEEtran.bst - RELOC/bibtex/bst/IEEEtran/IEEEtranN.bst - RELOC/bibtex/bst/IEEEtran/IEEEtranS.bst - RELOC/bibtex/bst/IEEEtran/IEEEtranSA.bst - RELOC/bibtex/bst/IEEEtran/IEEEtranSN.bst - RELOC/tex/latex/IEEEtran/IEEEtran.cls - RELOC/tex/latex/IEEEtran/IEEEtrantools.sty -docfiles size=482 - RELOC/doc/latex/IEEEtran/IEEEtran_HOWTO.pdf - RELOC/doc/latex/IEEEtran/IEEEtran_bst_HOWTO.pdf - RELOC/doc/latex/IEEEtran/IEEEtrantools_doc.txt - RELOC/doc/latex/IEEEtran/README - RELOC/doc/latex/IEEEtran/README.bibtex - RELOC/doc/latex/IEEEtran/README.extras - RELOC/doc/latex/IEEEtran/README.testflow - RELOC/doc/latex/IEEEtran/README.tools - RELOC/doc/latex/IEEEtran/bare_adv.tex - RELOC/doc/latex/IEEEtran/bare_conf.tex - RELOC/doc/latex/IEEEtran/bare_conf_compsoc.tex - RELOC/doc/latex/IEEEtran/bare_jrnl.tex - RELOC/doc/latex/IEEEtran/bare_jrnl_compsoc.tex - RELOC/doc/latex/IEEEtran/bare_jrnl_comsoc.tex - RELOC/doc/latex/IEEEtran/bare_jrnl_transmag.tex - RELOC/doc/latex/IEEEtran/bibtex/changelog.txt - RELOC/doc/latex/IEEEtran/changelog.txt - RELOC/doc/latex/IEEEtran/testflow.tex - RELOC/doc/latex/IEEEtran/testflow_ctl_A4.pdf - RELOC/doc/latex/IEEEtran/testflow_ctl_LTR.pdf - RELOC/doc/latex/IEEEtran/testflow_doc.pdf - RELOC/doc/latex/IEEEtran/tools/changelog.txt - RELOC/doc/latex/IEEEtran/tux.eps - RELOC/doc/latex/IEEEtran/tux.pdf -catalogue-ctan /macros/latex/contrib/IEEEtran -catalogue-date 2015-08-28 21:41:19 +0200 -catalogue-license lppl1.3 -catalogue-topics journalpub class -catalogue-version 1.8b +longdesc The package provides scripts to translate IETF index files to +longdesc BibTeX files. +containersize 456 +containerchecksum ad8796bf4e492072dcc9335f913ae2b5d81f2152289ca76cfbb61a63577c631bc38f5cad6860aef47b1fb54c02157f509c23c3f903b34b8e7a82b8604eaa449a +doccontainersize 3464 +doccontainerchecksum 586dc66004dcf4abed254d223394badd45557d79c7e1b56bd20080f41185ea8dca28b3d501e708cc3ed4088f1368f153ba2d2af313d5d6add2d072b46954952f +docfiles size=10 + RELOC/doc/bibtex/ietfbibs/CHANGELOG.md + RELOC/doc/bibtex/ietfbibs/LICENSE.md + RELOC/doc/bibtex/ietfbibs/Makefile + RELOC/doc/bibtex/ietfbibs/README.md details="Readme" + RELOC/doc/bibtex/ietfbibs/id2bib + RELOC/doc/bibtex/ietfbibs/id2bib.awk + RELOC/doc/bibtex/ietfbibs/ids.tex + RELOC/doc/bibtex/ietfbibs/rfc2bib + RELOC/doc/bibtex/ietfbibs/rfc2bib.awk + RELOC/doc/bibtex/ietfbibs/rfcs.tex +catalogue-contact-repository https://github.com/mor1/ietfbibs +catalogue-ctan /biblio/bibtex/utils/ietfbibs +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license mit +catalogue-topics bibtex-gen +catalogue-version 1.0.0 name ifetex category Package -revision 24853 -shortdesc Provides \ifetex switch. +revision 47231 +shortdesc Provides \ifetex switch relocated 1 longdesc The package provides the switch \ifetex which indicates whether longdesc e-TeX is available or not. The package can be loaded as LaTeX @@ -78594,46 +127269,92 @@ longdesc ifetex. In either case it aborts silently if the \ifetex macro longdesc is already defined. The package's test is whether \eTeXversion longdesc is defined as a primitive; if it is, the package assumes e-TeX longdesc features are available. -runfiles size=2 - RELOC/tex/latex/ifetex/ifetex.sty - RELOC/tex/plain/ifetex/ifetex.tex -docfiles size=33 - RELOC/doc/latex/ifetex/README - RELOC/doc/latex/ifetex/ifetex.pdf +containersize 1448 +containerchecksum 0f814eded272bafb38e04d7df845f002382c1f87854f8eb8dbe41e964383d3390f5f44973d0a23461568700b7a3ed0f837afaee360c996fe17fd7b2473256cbf +doccontainersize 145448 +doccontainerchecksum 34741cc3514404ed1327c8c621926cdd2c24a5ca655c24b9e6157e0623d61b4e2d9bbb7df3bb396251e564d59eeafc9eeccc5509914eeda931a43b9d8b23df94 +docfiles size=37 + RELOC/doc/latex/ifetex/README details="Readme" + RELOC/doc/latex/ifetex/ifetex.pdf details="Package documentation" +srccontainersize 3380 +srccontainerchecksum 4904d2d78dc8cf67cb3d4b2498b391f290addac86d07fba24a76dc16446ed10b18061dd32e4890fd0344e10bc02302a13cf3a16cedf9033591f35f0bb4ddd00d srcfiles size=3 RELOC/source/latex/ifetex/ifetex.dtx RELOC/source/latex/ifetex/ifetex.ins +runfiles size=2 + RELOC/tex/latex/ifetex/ifetex.sty + RELOC/tex/plain/ifetex/ifetex.tex +catalogue-contact-bugs https://bitbucket.org/martin_scharrer/ifetex/issues +catalogue-contact-home https://bitbucket.org/martin_scharrer/ifetex/ +catalogue-contact-repository https://bitbucket.org/martin_scharrer/ifetex/src catalogue-ctan /macros/latex/contrib/ifetex -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-03-31 21:11:18 +0200 catalogue-license lppl1.3 -catalogue-version 1.2 +catalogue-topics env-query +catalogue-version 1.2a + +name iffont +category Package +revision 38823 +shortdesc Conditionally load fonts with fontspec +relocated 1 +longdesc This package provides a macro to select the first font XeLaTeX +longdesc or LuaTeX can find in a comma separated list and, additionally, +longdesc a number of macro tests. +containersize 1348 +containerchecksum a2a329da661f003edac0e0bc701958e0744864f8693ffccce7f1ea6867eaabe7d71b38a1dbef8bc27f770e8b4c30a4480ede1dd575d26860095575020db987f6 +doccontainersize 28352 +doccontainerchecksum 95a8f7357f095dc39ff642edeb6d7df206c37ef01c14a1daa280939d44047c5a935eb18049c280ce00238ad4fdfef6abe7399dd8c6fc815b7c70b22072465453 +docfiles size=9 + RELOC/doc/latex/iffont/README.md details="Readme" + RELOC/doc/latex/iffont/iffont.pdf details="Package documentation" +srccontainersize 3452 +srccontainerchecksum 2a12158850d95a2008e5a845914293cc9aae54dedd54e4a13a27899b0bb8c272e43bba374447b34913f7b4aae01aff9b9fee981240bed93f8995dfc53eefd2e5 +srcfiles size=4 + RELOC/source/latex/iffont/iffont.dtx + RELOC/source/latex/iffont/iffont.ins +runfiles size=1 + RELOC/tex/latex/iffont/iffont.sty +catalogue-contact-repository https://github.com/benjamin-weiss/iffont +catalogue-ctan /macros/latex/contrib/iffont +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics font-mgmt +catalogue-version 1.0.0 name ifluatex category Package -revision 26725 -shortdesc Provides the \ifluatex switch. +revision 49285 +shortdesc Provides the \ifluatex switch relocated 1 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. -runfiles size=2 - RELOC/tex/generic/oberdiek/ifluatex.sty -docfiles size=35 - RELOC/doc/latex/oberdiek/ifluatex.pdf +containersize 2388 +containerchecksum fd47b79200192c1fd7f1194731547e6921b01f3c6afecf7a3f6a9fe68784c4f757d5e9f2881a01e5629454c01e4dc43d32e6119fd96ab9a9050474504559b827 +doccontainersize 115128 +doccontainerchecksum 528c39cf85f682f83662a4b46de6ba29150a163d578d2618d7e2058b40283f9f2f575c4b2f3abbba9632b1620df85f1485b025cc0540be398b4d390d1658228d +docfiles size=33 + RELOC/doc/latex/oberdiek/ifluatex.pdf details="Package documentation" RELOC/doc/latex/oberdiek/test/ifluatex-test1.tex RELOC/doc/latex/oberdiek/test/ifluatex-test2.tex RELOC/doc/latex/oberdiek/test/ifluatex-test3.tex +srccontainersize 7444 +srccontainerchecksum 5a2cb766bf61fec1f78eb7fb25f253f943a18e162b144800c394efb460547069d0fee01b4b89ce6c4be646f45f25002339eed048840828ffa178f504523ab52f srcfiles size=7 RELOC/source/latex/oberdiek/ifluatex.dtx +runfiles size=2 + RELOC/tex/generic/oberdiek/ifluatex.sty catalogue-ctan /macros/latex/contrib/oberdiek/ifluatex.dtx -catalogue-date 2012-07-10 22:54:06 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl1.3 -catalogue-version 1.3 +catalogue-topics env-query +catalogue-version 1.4 name ifmslide category Package revision 20727 -shortdesc Presentation slides for screen and printouts. +shortdesc Presentation slides for screen and printouts relocated 1 longdesc This package is used to produce printed slides with LaTeX and longdesc online presentations with pdfLaTeX. It is provided by the @@ -78641,6 +127362,15 @@ longdesc 'Institute of Mechanics' (ifm) Univ. of Technology Darmstadt, longdesc Germany. It is based on ideas of pdfslide, but completely longdesc rewritten for compatibility with texpower and seminar. The longdesc manual describes all functions and provides a sample. +containersize 242848 +containerchecksum c9027b8bb34f15e667e530a8b8d57b793ed16a7ea33feabe58f22cd71230945905054e01853561f4cbaf5fe22f4aa140cbc95072f375d567f57bcce3c4d07d09 +doccontainersize 204412 +doccontainerchecksum 4e7a64773cc1a14df0d2f58ae0b66d1769b44958bafa8fdd4e51bc294555e7895632b741b47edbc29fc5f5ac0ddd73dddcc16723a7297c12311d3915e88f633d +docfiles size=89 + RELOC/doc/latex/ifmslide/README details="Readme" + RELOC/doc/latex/ifmslide/genbutton + RELOC/doc/latex/ifmslide/ifmman.pdf details="Package manual" + RELOC/doc/latex/ifmslide/ifmman.tex runfiles size=211 RELOC/tex/latex/ifmslide/aqua_ravines.eps RELOC/tex/latex/ifmslide/aqua_ravines.jpg @@ -78664,38 +127394,44 @@ runfiles size=211 RELOC/tex/latex/ifmslide/ifmslide.sty RELOC/tex/latex/ifmslide/liquid_helium.eps RELOC/tex/latex/ifmslide/liquid_helium.jpg -docfiles size=89 - RELOC/doc/latex/ifmslide/README - RELOC/doc/latex/ifmslide/genbutton - RELOC/doc/latex/ifmslide/ifmman.pdf - RELOC/doc/latex/ifmslide/ifmman.tex +catalogue-also prosper catalogue-ctan /macros/latex/contrib/ifmslide -catalogue-date 2015-01-19 21:19:14 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics presentation catalogue-version 0.47 name ifmtarg category Package -revision 19363 -shortdesc If-then-else command for processing potentially empty arguments. +revision 47544 +shortdesc If-then-else command for processing potentially empty arguments relocated 1 -runfiles size=1 - RELOC/tex/latex/ifmtarg/ifmtarg.sty -docfiles size=43 +longdesc This package provides a command for the LaTeX programmer for +longdesc testing whether an argument is empty. +containersize 664 +containerchecksum b04aebac5acfe90a149f417cdf0d45b3a7cbe53d53d4d9f39d5badddfcb894e07f397933199bca702f3f0e66458133ba17feb5ace2ebda4a25bb24bf1af5d259 +doccontainersize 36996 +doccontainerchecksum 8f456c15ecd5090d2124a85b02c1ad100dc999064b258678cad3c444acae3e88b95e38f7ad1785bfc91f385d6bc1664c0b58282d5ef36e6cff9857b81176ab7b +docfiles size=10 RELOC/doc/latex/ifmtarg/README - RELOC/doc/latex/ifmtarg/ifmtarg.pdf + RELOC/doc/latex/ifmtarg/ifmtarg.pdf details="Package documentation" +srccontainersize 2712 +srccontainerchecksum e30806ba6fa85737f67dbfbf7cc1556781bd4cb2179672e5b9980e7f625366d5627c69411dae34a9e1c0fc29c16acaf302c344d9d93b9dd4afdf23bea020cc63 srcfiles size=3 RELOC/source/latex/ifmtarg/ifmtarg.ins RELOC/source/latex/ifmtarg/ifmtarg.tex +runfiles size=1 + RELOC/tex/latex/ifmtarg/ifmtarg.sty catalogue-ctan /macros/latex/contrib/ifmtarg -catalogue-date 2012-05-29 15:13:53 +0200 +catalogue-date 2018-04-16 09:43:03 +0200 catalogue-license lppl -catalogue-version 1.2a +catalogue-topics macro-supp +catalogue-version 1.2b name ifnextok category Package revision 23379 -shortdesc Utility macro: peek ahead without ignoring spaces. +shortdesc Utility macro: peek ahead without ignoring spaces relocated 1 longdesc The package deals with the behaviour of the LaTeX internal longdesc command \@ifnextchar, which skips blank spaces. This has the @@ -78706,28 +127442,36 @@ longdesc argument, whereas the user wants the brackets to be printed. longdesc The package offers commands and options for modifying this longdesc behaviour, maybe limited to certain parts of the document longdesc source. -runfiles size=8 - RELOC/tex/latex/ifnextok/ifnextok.sty +containersize 10756 +containerchecksum a56c703e1830fa64432d1b3aa72d3dff52b17c0e5b90b2cb34f7dff974e51331f5d9daa2b5aba578a8bc4a73b693c9a3dd811c6d7e32379165cc7ec1349c541b +doccontainersize 215452 +doccontainerchecksum 1eeb8d7627ad8887761e66704a8f3c848b633a4f3a5b094626b3c64888e6db95c25b8dbad4332887a6d9e866e4aada2816b7c7e7fd19c07dba03db38842886fe docfiles size=70 - RELOC/doc/latex/ifnextok/README + RELOC/doc/latex/ifnextok/README details="Readme" RELOC/doc/latex/ifnextok/RELEASEs.txt RELOC/doc/latex/ifnextok/SRCFILEs.txt - RELOC/doc/latex/ifnextok/ifnextok.pdf + RELOC/doc/latex/ifnextok/ifnextok.pdf details="Package documentation" RELOC/doc/latex/ifnextok/testIfNT.pdf +srccontainersize 2820 +srccontainerchecksum 05422af6ee53e12ad124b314388811490304c5f42b81b17aa899e7cea5c548395043abf4abfd0d4819e6338b6d93e99c57929d18312f49500f0368038e440495 srcfiles size=4 RELOC/source/latex/ifnextok/ifnextok.tex RELOC/source/latex/ifnextok/makedoc.cfg RELOC/source/latex/ifnextok/srcfiles.tex RELOC/source/latex/ifnextok/testIfNT.tex +runfiles size=8 + RELOC/tex/latex/ifnextok/ifnextok.sty +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html catalogue-ctan /macros/latex/contrib/ifnextok -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-05-06 08:24:26 +0200 catalogue-license lppl1.3 +catalogue-topics macro-supp catalogue-version 0.3 name ifoddpage category Package -revision 23979 -shortdesc Determine if the current page is odd or even. +revision 40726 +shortdesc Determine if the current page is odd or even relocated 1 longdesc The package provides an \ifoddpage conditional to determine if longdesc the current page is odd or even. The macro \checkoddpage must @@ -78736,23 +127480,30 @@ longdesc Two compiler runs are therefore required to achieve correct longdesc results. In addition, the conditional \ifoddpageoronside is longdesc provided which is also true in oneside mode where all pages use longdesc the odd page layout. -runfiles size=1 - RELOC/tex/latex/ifoddpage/ifoddpage.sty +containersize 1412 +containerchecksum f6ab9abdef81cbcca8728bac7e1f94e2b72e5db6a8e17ab13c8d56477e98fcf7fb20f006012c3a3cf815378d8bc9c5cc4d39e2767b7d634d1ad99bc24dc1d1d3 +doccontainersize 134588 +doccontainerchecksum 80f1431a4da340b0b2ba6f396c618e2923457e95b5de01018ef7f95937e55814e3c3e96b2f45f18e971fddd29021a16852b57bafd0b1ba50cf2626b4b784541e docfiles size=34 - RELOC/doc/latex/ifoddpage/README - RELOC/doc/latex/ifoddpage/ifoddpage.pdf + RELOC/doc/latex/ifoddpage/README details="Readme" + RELOC/doc/latex/ifoddpage/ifoddpage.pdf details="Package documentation" +srccontainersize 4176 +srccontainerchecksum dabf25b7588f3fe4dc92c4a4e20f2293ef62878d60f1ffa01e1e9efe564b930d7cdfeada5f0e6765a88c46d55aacbbd1dc692ca26168c86690db6c229b79836e srcfiles size=4 RELOC/source/latex/ifoddpage/ifoddpage.dtx RELOC/source/latex/ifoddpage/ifoddpage.ins +runfiles size=1 + RELOC/tex/latex/ifoddpage/ifoddpage.sty catalogue-ctan /macros/latex/contrib/ifoddpage -catalogue-date 2013-11-21 21:20:37 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics typesetting macro-supp +catalogue-version 1.1 name ifplatform category Package -revision 21156 -shortdesc Conditionals to test which platform is being used. +revision 45533 +shortdesc Conditionals to test which platform is being used relocated 1 longdesc This package uses the (La)TeX extension -shell-escape to longdesc establish whether the document is being processed on a Windows @@ -78762,23 +127513,57 @@ longdesc are: \ifwindows, \iflinux, \ifmacosx and \ifcygwin. The package longdesc also preserves the output of uname on a Unix-like system, which longdesc may be used to distinguish between various classes of Unix longdesc systems. -runfiles size=1 - RELOC/tex/latex/ifplatform/ifplatform.sty +containersize 2024 +containerchecksum 952f87877c058c1e8ba3df227ed7332501e7861bdfd2a29878dc4b14e6b95a1b116459bef7f65c5bf277c95d08120c7e9fa9576a7654739e4a26125ca4d5c724 +doccontainersize 151716 +doccontainerchecksum 520004cfa412c2a24ece0e00b11d457405e71a446e554a1d930e60ea7dbd00f61b2b6a7ecbe89b62610316fd3b6fad685d7013042fa71fd7fb270b40748dee56 docfiles size=38 - RELOC/doc/latex/ifplatform/README - RELOC/doc/latex/ifplatform/ifplatform.pdf + RELOC/doc/latex/ifplatform/README details="Readme" + RELOC/doc/latex/ifplatform/ifplatform.pdf details="Package documentation" +srccontainersize 5436 +srccontainerchecksum a3c33b16decd5fb443d9b5bb13f3a5e0ed56705d353b0260772d81f963460ff7e914fb1d7f4ee24e249bf15af77368ddc6fea49014202389baaf035f2165e17f srcfiles size=5 RELOC/source/latex/ifplatform/ifplatform.dtx RELOC/source/latex/ifplatform/ifplatform.ins +runfiles size=1 + RELOC/tex/latex/ifplatform/ifplatform.sty +catalogue-contact-repository https://github.com/wspr/will2e catalogue-ctan /macros/latex/contrib/ifplatform -catalogue-date 2014-10-17 10:16:22 +0200 -catalogue-license lppl -catalogue-version 0.4 +catalogue-date 2017-12-07 10:14:16 +0100 +catalogue-license lppl1.3c +catalogue-topics env-query +catalogue-version 0.4a + +name ifptex +category Package +revision 45485 +shortdesc Check if the engine is pTeX or one of its derivatives +relocated 1 +longdesc The ifptex package is a counterpart of ifxetex, ifluatex, etc. +longdesc for the ptex engine. The ifuptex package is an alias to ifptex +longdesc provided for backward compatibility. +containersize 3540 +containerchecksum 56c72a37f02e87817736a8c172bd031293e63379a15a01c727f5d0208e6bba1900e06383bdb470d96edec80f5151eda05c5ee28bdbe37943e07d6d846f0f2a93 +doccontainersize 2948 +doccontainerchecksum 47aeb2a9e1f9b1b2ec102fdfbefbc932f0a0b5e7c89819609b5b6456dd8c50effbd05ab7eb24d65d40bd4f9065baa5aa5aa008e613a23a10bcc5bfe44e651377 +docfiles size=3 + RELOC/doc/generic/ifptex/LICENSE + RELOC/doc/generic/ifptex/README-ja.md details="Readme (Japanese)" language="ja" + RELOC/doc/generic/ifptex/README.md details="Readme" +runfiles size=4 + RELOC/tex/generic/ifptex/ifptex.sty + RELOC/tex/generic/ifptex/ifuptex.sty +catalogue-contact-repository https://github.com/zr-tex8r/ifptex +catalogue-ctan /macros/generic/ifptex +catalogue-date 2017-10-05 23:03:57 +0200 +catalogue-license mit +catalogue-topics env-query japanese +catalogue-version 1.2c name ifsym category Package revision 24868 -shortdesc A collection of symbols. +shortdesc A collection of symbols relocated 1 longdesc A set of symbol fonts, written in Metafont, offering longdesc (respectively) clock-face symbols, geometrical symbols, weather @@ -78786,6 +127571,12 @@ longdesc symbols, mountaineering symbols, electronic circuit symbols and longdesc a set of miscellaneous symbols. A LaTeX package is provided, longdesc that allows the user to load only those symbols needed in a longdesc document. +containersize 9808 +containerchecksum ef6615a3768f87009d22c3feeaa074a0589b17efc8585a509e21692195a100e5b11e2d0849fa2eaf8f80cbe0d96ea12e773aee0be28e7120ee80a86dcfa6f8e2 +doccontainersize 120996 +doccontainerchecksum 10dca0c00a52d9d9775bd2ae35b50d7d56294da9b8eb21f2bc35f7863cbf1ab357cf8f3e1d949570ebf4908a60d9ccfe604e69fe779780c8e7527172f3f0e999 +docfiles size=161 + RELOC/doc/fonts/ifsym/ifsym.ps details="Documentation and font tables (German)" language="de" runfiles size=46 RELOC/fonts/source/public/ifsym/ifclk.gen RELOC/fonts/source/public/ifsym/ifclk10.mf @@ -78825,11 +127616,10 @@ runfiles size=46 RELOC/tex/latex/ifsym/uifgeo.fd RELOC/tex/latex/ifsym/uifsym.fd RELOC/tex/latex/ifsym/uifwea.fd -docfiles size=161 - RELOC/doc/fonts/ifsym/ifsym.ps catalogue-ctan /fonts/ifsym -catalogue-date 2014-05-08 15:40:26 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics font font-mf font-symbol name iftex category Package @@ -78842,34 +127632,48 @@ longdesc testing which engine is being used for typesetting. The package longdesc also provides the \RequirePDFTeX, \RequireXeTeX, and longdesc \RequireLuaTeX commands which throw an error if pdfTeX, XeTeX longdesc or LuaTeX (respectively) is not the engine in use. -runfiles size=1 - RELOC/tex/generic/iftex/iftex.sty +containersize 1320 +containerchecksum 29f81db9d89a5802558a0e6abe9718863d1cbfa3f456aea211da5c6c6e134aaa47ddcb3b35cd2c4c77c06c2a962aa0687410dae2963fb02ebb69c68ff25784b3 +doccontainersize 31284 +doccontainerchecksum 59bd612d82b2f5d8bc3e5d978a61db54f7626f779ad1c183e90fc03e998b73608cb54263ba352748763a9cad657a24fff51ad15e71d5dfc0cb36c7cf65636045 docfiles size=10 - RELOC/doc/generic/iftex/README - RELOC/doc/generic/iftex/iftex.pdf + RELOC/doc/generic/iftex/README details="Readme" + RELOC/doc/generic/iftex/iftex.pdf details="Package documentation" RELOC/doc/generic/iftex/iftex.tex +runfiles size=1 + RELOC/tex/generic/iftex/iftex.sty +catalogue-also ifpdf ifluatex +catalogue-contact-bugs https://github.com/bidi-tex/iftex/issues +catalogue-contact-repository https://github.com/bidi-tex/iftex catalogue-ctan /macros/latex/contrib/iftex -catalogue-date 2014-09-06 11:27:22 +0200 +catalogue-date 2018-11-28 19:50:39 +0100 catalogue-license lppl1.3 +catalogue-topics env-query catalogue-version 0.2 name ifthenx category Package revision 25819 -shortdesc Extra tests for \ifthenelse. +shortdesc Extra tests for \ifthenelse relocated 1 longdesc The package extends the ifthen package, providing extra longdesc predicates for the package's \ifthenelse command. The package longdesc is complementary to xifthen, in that they provide different longdesc facilities; the two may be loaded in the same document, as long longdesc as xifthen is loaded first. +containersize 4116 +containerchecksum 76235d3f8dc4e62604828beaf87327d11d4a9ff69061edf1a3ed4c874983251fba75d80973e54fb3daa2d160b27000089f4cdf1c29748124825fb4075b6f7148 +doccontainersize 1924 +doccontainerchecksum efc4fa3b5d6e91d1d5af27846bf2652672a233537810051b2858c1c4ffacafb9771b2c3a222cea4d490e0478eef96b205c4043f4957b876b7f4d57903b26454d +docfiles size=1 + RELOC/doc/latex/ifthenx/README details="Readme" runfiles size=3 RELOC/tex/latex/ifthenx/ifthenx.sty -docfiles size=1 - RELOC/doc/latex/ifthenx/README +catalogue-also xifthen catalogue-ctan /macros/latex/contrib/ifthenx -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics macro-supp cond-comp catalogue-version 0.1a name ifxetex @@ -78881,23 +127685,57 @@ 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. -runfiles size=1 - RELOC/tex/generic/ifxetex/ifxetex.sty +containersize 1192 +containerchecksum 44642709a4936cdd65d9cc25480a34bba64e3ea38426ac6566608cb40b54fa82fb96067680a70d8234bb448c3a3423a43d565014860194242ad86995dcfd200f +doccontainersize 165756 +doccontainerchecksum 231969b2185c83eb9be54abf7bd06797d47bef253198fa8d73df951a4f7fdfc7218d6155c971dad77546767e99e476bef169df1fac13146abee841a10b257fd2 docfiles size=42 - RELOC/doc/generic/ifxetex/README - RELOC/doc/generic/ifxetex/ifxetex.pdf + RELOC/doc/generic/ifxetex/README details="Readme" + RELOC/doc/generic/ifxetex/ifxetex.pdf details="Package documentation" +srccontainersize 2272 +srccontainerchecksum 59e3644df1afddbf83fc0b8db58290b47f0d7065fff81535b3bde024bfb6da80c62751763aca5c2ba494ea7bf2fbac3ebf5f4e95579af4295916ce1a80ee1848 srcfiles size=3 RELOC/source/generic/ifxetex/ifxetex.ins RELOC/source/generic/ifxetex/ifxetex.tex +runfiles size=1 + RELOC/tex/generic/ifxetex/ifxetex.sty +catalogue-also ifpdf ifvtex ifluatex catalogue-ctan /macros/generic/ifxetex -catalogue-date 2012-03-06 15:23:45 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl -catalogue-version 0.5 +catalogue-topics env-query +catalogue-version 0.6 + +name ifxptex +category Package +revision 46153 +shortdesc Detect pTeX and its derivatives +relocated 1 +longdesc The package provides commands for detecting pTeX and its +longdesc derivatives (e-pTeX, upTeX, e-upTeX, and ApTeX). Both LaTeX and +longdesc plain TeX are supported. +containersize 1268 +containerchecksum 7bc52847fe21879614ffe673ebec74c735c70e07d63649def00f70d22db80faa920f0764f76c5094ef982abbff8202ca55410ee92d033c45ec43fd25adabb23b +doccontainersize 199416 +doccontainerchecksum 1bc4feaacbdd33ba6f46c699969638cdc8a4b962287332476d0d163a10141136f9b913027ccc3418033dee0862d5e572957dbe07d47371c1d932103958151e27 +docfiles size=52 + RELOC/doc/generic/ifxptex/README details="Readme" + RELOC/doc/generic/ifxptex/ifxptex-doc.pdf details="Package documentation" + RELOC/doc/generic/ifxptex/ifxptex-doc.tex +runfiles size=1 + RELOC/tex/generic/ifxptex/ifxptex.sty +catalogue-also ifptex +catalogue-contact-repository https://github.com/Man-Ting-Fang/ifxptex +catalogue-ctan /macros/generic/ifxptex +catalogue-date 2017-12-27 11:02:36 +0100 +catalogue-license knuth +catalogue-topics macro-supp env-query +catalogue-version 0.2 name iitem category Package revision 29613 -shortdesc Multiple level of lists in one list-like environment. +shortdesc Multiple level of lists in one list-like environment relocated 1 longdesc The package defines multiple level lists within one list-like longdesc environment. instead of writing \begin{enumerate} \item 1 @@ -78907,23 +127745,30 @@ longdesc 2.1 \end{enumerate} \item 1.1 \begin{enumerate} \item 2 longdesc \end{enumerate} \end{enumerate} this package allows you to longdesc write \begin{enumerate} \item 1 \iitem 2 \iiitem 3 \ivtem 4 longdesc \iitem 2.1 \item 1.1 \iitem 2 \end{enumerate} -runfiles size=1 - RELOC/tex/latex/iitem/iitem.sty +containersize 1416 +containerchecksum b2b37e68db2b33e414ecbfb9078b60ce5571b7ae931ca828a3c668ea7cccd7b93a2919cadc7723daa3f63a7015939a8046973ade140fba01025dde0d5212edd0 +doccontainersize 379776 +doccontainerchecksum f9f001123e1f49bd90cb3b24448e423068565c9256129e23126791e2ea2bc39788ff5769939d90018087beb1b31fbf3568c6d4962f2e92205717c84aeee54a21 docfiles size=94 - RELOC/doc/latex/iitem/README + RELOC/doc/latex/iitem/README details="Readme" RELOC/doc/latex/iitem/iitem.pdf +srccontainersize 4728 +srccontainerchecksum e24eb4a7a6a635b95b6a1b40d27651eccf86a6c5276aad3ca46cfde08185371fdb34ac2732d87750db74605c14e087d2102399e23ad85a236a68dd5987784c0f srcfiles size=4 RELOC/source/latex/iitem/iitem.dtx RELOC/source/latex/iitem/iitem.ins +runfiles size=1 + RELOC/tex/latex/iitem/iitem.sty catalogue-ctan /macros/latex/contrib/iitem -catalogue-date 2013-04-09 15:55:17 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics list catalogue-version 1.0 name ijmart category Package revision 30958 -shortdesc LaTeX Class for the Israel Journal of Mathematics. +shortdesc LaTeX Class for the Israel Journal of Mathematics relocated 1 longdesc The Israel Journal of Mathematics is published by The Hebrew longdesc University Magnes Press. This class provides LaTeX support for @@ -78933,81 +127778,127 @@ longdesc similar to that of the amsart document class. This will help longdesc authors already familiar with amsart to easily submit longdesc manuscripts for The Israel Journal of Mathematics or to put the longdesc preprints in arXiv with minimal changes in the LaTeX source. -runfiles size=11 - RELOC/bibtex/bst/ijmart/ijmart.bst - RELOC/tex/latex/ijmart/ijmart.cls +containersize 10720 +containerchecksum a1fc1aca9f557ea9c8c70343ad1e5712a846b8a7edddf2077e78fabc3919b928a5d7e8b1fee0f0bc29ebf7887e26dcda5bd95f2ba613051e52f13f1ee24001d3 +doccontainersize 945544 +doccontainerchecksum 502aebf377c8b13d7699761651cfd67e1e2d10a8e8a022303921aa1e708fe913b217e186b4e2527d8ed81e3db6ff055dba5edbea218d6b9a92f679da66fefe97 docfiles size=252 RELOC/doc/latex/ijmart/Makefile - RELOC/doc/latex/ijmart/README + RELOC/doc/latex/ijmart/README details="Readme" RELOC/doc/latex/ijmart/ijmart.bib - RELOC/doc/latex/ijmart/ijmart.pdf + RELOC/doc/latex/ijmart/ijmart.pdf details="Package documentation" RELOC/doc/latex/ijmart/ijmsample.bib - RELOC/doc/latex/ijmart/ijmsample.pdf + RELOC/doc/latex/ijmart/ijmsample.pdf details="Sample paper" RELOC/doc/latex/ijmart/ijmsample.tex +srccontainersize 17084 +srccontainerchecksum e42bfa6ded16f78b764d1ca55e905ae0b2c0a5611b8ffb2e882f121d04855b5f72bf925002bc322cc1106f68c7c68ebb412acc71789d560fbca12051a75860e0 srcfiles size=15 RELOC/source/latex/ijmart/ijmart.dtx RELOC/source/latex/ijmart/ijmart.ins +runfiles size=11 + RELOC/bibtex/bst/ijmart/ijmart.bst + RELOC/tex/latex/ijmart/ijmart.cls catalogue-ctan /macros/latex/contrib/ijmart -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics journalpub catalogue-version 1.7 name ijqc category Package revision 15878 -shortdesc BibTeX style file for the Intl. J. Quantum Chem. +shortdesc BibTeX style file for the Intl. J. Quantum Chem relocated 1 longdesc ijqc.bst is a BibTeX style file to support publication in longdesc Wiley's International Journal of Quantum Chemistry. It is not longdesc in any way officially endorsed by the publisher or editors, and longdesc is provided without any warranty one could ever think of. -runfiles size=7 - RELOC/bibtex/bst/ijqc/ijqc.bst +containersize 5972 +containerchecksum 55f7693a820f0cdaafe8697ad352cef2748471711113cfa4738931926cb4d49497f4e825b0a737c233541203cb5c8f23dc4f8326950520e8aa0f4ad27f353347 +doccontainersize 107216 +doccontainerchecksum 6b94eb95d58a06b54a1fb28b26ddec15528ae99286a37631a64b4ced32343872a04b96cb2de540d54c54f02361981ecc575ef7d014a17e1d0111883e92671fad docfiles size=39 - RELOC/doc/bibtex/ijqc/README + RELOC/doc/bibtex/ijqc/README details="Package Readme" RELOC/doc/bibtex/ijqc/makefile RELOC/doc/bibtex/ijqc/mybib.bib - RELOC/doc/bibtex/ijqc/xampl.pdf + RELOC/doc/bibtex/ijqc/xampl.pdf details="Example output" RELOC/doc/bibtex/ijqc/xampl.tex +runfiles size=7 + RELOC/bibtex/bst/ijqc/ijqc.bst catalogue-ctan /biblio/bibtex/contrib/ijqc -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics bibtex-sty journalpub catalogue-version 1.2 +name ijsra +category Package +revision 44886 +shortdesc LaTeX document class for the International Journal of Student Research in Archaeology +relocated 1 +longdesc This is a document class called ijsra which is used for the +longdesc International Journal of Student Research in Archaeology. +containersize 315516 +containerchecksum 9d5db4217675af4577fbf9b7e8a5dc4a42f447e7af60a818d740327326d478afa9071be37c80315b0822fec48d1fefe4e3d6a8dfddb6f34fbc11cd81a5d05a12 +doccontainersize 392404 +doccontainerchecksum a3424b8ed16d1881c5a2c4d80a42277a1c0e3a62484a0d5ee6a18a9ed9fd39fe0de241fefbc723960bfee331908bb5c95a0b1b95ecf5e06d6425ac8e6c2dc342 +docfiles size=101 + RELOC/doc/latex/ijsra/README.md details="Readme" + RELOC/doc/latex/ijsra/ijsra.pdf details="Package documentation" + RELOC/doc/latex/ijsra/ijsra.tex +runfiles size=86 + RELOC/tex/latex/ijsra/ijsra.cls + RELOC/tex/latex/ijsra/ijsra_logo.png +catalogue-also biblatex-ijsra +catalogue-contact-bugs https://github.com/LukasCBossert/documentclass-ijsra/issues +catalogue-contact-repository https://github.com/LukasCBossert/documentclass-ijsra +catalogue-ctan /macros/latex/contrib/ijsra +catalogue-date 2017-07-24 22:49:08 +0200 +catalogue-license lppl1.3 +catalogue-topics journalpub +catalogue-version 1.1 + name imac category Package revision 17347 -shortdesc International Modal Analysis Conference format. +shortdesc International Modal Analysis Conference format relocated 1 longdesc A set of files for producing correctly formatted documents for longdesc the International Modal Analysis Conference. The bundle longdesc provides a LaTeX package and a BibTeX style file. -runfiles size=8 - RELOC/bibtex/bst/imac/imac.bst - RELOC/tex/latex/imac/imac.sty +containersize 6876 +containerchecksum 5e51d080e18f2a5d9529705d0e8745a8c7b2d0186c929e04434b71ed356df3ee2456c268ce2232da9cdbf6c15182f6580b2b96995a6c48e40fcff1efb001cef9 +doccontainersize 121588 +doccontainerchecksum df4232356db6e2001277bdd8de706549d2f91b2d59d4a55f39c4aa9628e1a2b6ce092a7630ed4fc20096d069d19f2ecdf445129a870ca8bfc9d87e522350798c docfiles size=36 RELOC/doc/latex/imac/imac.bib - RELOC/doc/latex/imac/imac.pdf + RELOC/doc/latex/imac/imac.pdf details="Package documentation" RELOC/doc/latex/imac/imac.tex RELOC/doc/latex/imac/readme.txt +runfiles size=8 + RELOC/bibtex/bst/imac/imac.bst + RELOC/tex/latex/imac/imac.sty catalogue-ctan /macros/latex/contrib/imac -catalogue-date 2012-05-29 15:13:53 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics confproc name image-gallery category Package revision 15878 -shortdesc Create an overview of pictures from a digital camera or from other sources. +shortdesc Create an overview of pictures from a digital camera or from other sources relocated 1 longdesc The class may be used to create an overview of pictures from a longdesc digital camera or from other sources. It is possible to adjust longdesc the size of the pictures and all the margins. The example file longdesc shows the usage. -runfiles size=2 - RELOC/tex/latex/image-gallery/image-gallery.cls +containersize 2032 +containerchecksum 0435d5011bdaac97c6f36202a03cbe52cb45f83d7dcf37111b9c68706e4cc971b5b13ab5fe0b29cb296f7af4b217a64b5507ea00dfe63e8496e10b5adefeed8b +doccontainersize 726128 +doccontainerchecksum ae9c965bcaeaae17b8a815bac824093a5834f2b96c99bf44527d915ae251cf1dc818279f78d3cbe75e51875e658d47baa3b9657e27f5121ed4e259ae5cc052b9 docfiles size=399 - RELOC/doc/latex/image-gallery/README - RELOC/doc/latex/image-gallery/gallery-example.pdf + RELOC/doc/latex/image-gallery/README details="Readme" + RELOC/doc/latex/image-gallery/gallery-example.pdf details="Example output" RELOC/doc/latex/image-gallery/gallery-example.tex RELOC/doc/latex/image-gallery/mypics.txt RELOC/doc/latex/image-gallery/pic001.jpg @@ -79032,47 +127923,213 @@ docfiles size=399 RELOC/doc/latex/image-gallery/pic020.jpg RELOC/doc/latex/image-gallery/pic021.jpg RELOC/doc/latex/image-gallery/pic022.jpg +runfiles size=2 + RELOC/tex/latex/image-gallery/image-gallery.cls catalogue-ctan /macros/latex/contrib/image-gallery -catalogue-date 2014-10-02 22:30:28 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl -catalogue-version v1.0j +catalogue-topics graphics-use class +catalogue-version 1.0j name imakeidx category Package -revision 31166 -shortdesc A package for producing multiple indexes. +revision 42287 +shortdesc A package for producing multiple indexes relocated 1 longdesc The package enables the user to produce and typeset one or more longdesc indexes simultaneously with a document. The package is known to -longdesc work in LaTeX documents processed with pdflatex, xelatatex and -longdesc lualatex. If makeindex is used for processing the index +longdesc work in LaTeX documents processed with pdfLaTeX, XeLaTeX and +longdesc LuaLaTeX. If makeindex is used for processing the index longdesc entries, no particular setting up is needed when TeX Live is longdesc used. Using xindy or other programs it is necessary to enable longdesc shell escape; shell escape is also needed if splitindex is longdesc used. -runfiles size=4 - RELOC/tex/latex/imakeidx/imakeidx.sty -docfiles size=125 - RELOC/doc/latex/imakeidx/README - RELOC/doc/latex/imakeidx/imakeidx.pdf +containersize 4072 +containerchecksum 6ca0680f29daf88dfbd26fa87d47a65c8b2c2d534321b814ff78d77d0b97d7fc5654b4dc0b91d12eb0c9373cfaff5fac59f24def8d0f50d97da34fda6f839d84 +doccontainersize 518160 +doccontainerchecksum a07d9461013045274f03145e97d286d930055c4573e917a78e8913841cae30fb61b99e66d098b4ba014cf44e92982301c7d72414e3ce1df176bfd35ecd26ddf0 +docfiles size=129 + RELOC/doc/latex/imakeidx/README details="Readme" + RELOC/doc/latex/imakeidx/imakeidx.pdf details="Package documentation" RELOC/doc/latex/imakeidx/manifest.txt +srccontainersize 20128 +srccontainerchecksum f3fd8e1a5057cbbfea56a0d21f16bb310fb815ad7363e284083f2c313ac055b1b335fc1c43bbddd1b1beae64ec42e29bb4a194056be658cfd3ee24e49d5e5804 srcfiles size=17 RELOC/source/latex/imakeidx/imakeidx.dtx +runfiles size=4 + RELOC/tex/latex/imakeidx/imakeidx.sty catalogue-ctan /macros/latex/contrib/imakeidx -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-10-15 23:51:37 +0200 catalogue-license lppl1.3 -catalogue-version 1.3a +catalogue-topics index +catalogue-version 1.3e + +name imfellenglish +category Package +revision 38547 +shortdesc IM Fell English fonts with LaTeX support +relocated 1 +longdesc Igino Marini has implemented digital revivals of fonts +longdesc bequeathed to Oxford University by Dr. John Fell, Bishop of +longdesc Oxford and Dean of Christ Church in 1686. This package provides +longdesc the English family, consisting of Roman, Italic and Small-Cap +longdesc fonts. +execute addMap imfellEnglish.map +containersize 2947156 +containerchecksum 99dcc3e48c55b402adb5e5481615a35f4d6ecc535cf68ac95b223e13bedd8edfad2dcb2d6ce99712646b52d384e02a1500f333823a343d887f87fbed44a06ccc +doccontainersize 143264 +doccontainerchecksum 3ae58fa270354ab028a4cfbd6d23ba12a9969073f28db5ce2de4888af2ec70a904767dfe692ff7ef657e5ce13747e7a2602856b0ee4cc92db87ac8e2f4a9e635 +docfiles size=38 + RELOC/doc/fonts/imfellenglish/COPYING + RELOC/doc/fonts/imfellenglish/README details="Readme" + RELOC/doc/fonts/imfellenglish/imfellEnglish.pdf details="Package documentation" + RELOC/doc/fonts/imfellenglish/imfellEnglish.tex +runfiles size=1431 + RELOC/fonts/enc/dvips/imfellenglish/imfe_5cupvv.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_cycd4j.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_dc7pev.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_fhc46f.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_qauovj.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_s6atnx.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_uut767.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_wnjo6u.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_zxj6gt.enc + RELOC/fonts/map/dvips/imfellenglish/imfellEnglish.map + RELOC/fonts/opentype/iginomarini/imfellenglish/IMFeENit28P.otf + RELOC/fonts/opentype/iginomarini/imfellenglish/IMFeENrm28P.otf + RELOC/fonts/opentype/iginomarini/imfellenglish/IMFeENsc28P.otf + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ly1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ot1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ot1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-t1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ts1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ly1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ly1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ot1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ot1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-t1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-t1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ts1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ts1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ly1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ly1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ot1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ot1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-t1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-t1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ts1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ts1.tfm + RELOC/fonts/type1/iginomarini/imfellenglish/IM_FELL_English_Italic.pfb + RELOC/fonts/type1/iginomarini/imfellenglish/IM_FELL_English_ItalicLCDFJ.pfb + RELOC/fonts/type1/iginomarini/imfellenglish/IM_FELL_English_Roman.pfb + RELOC/fonts/type1/iginomarini/imfellenglish/IM_FELL_English_RomanLCDFJ.pfb + RELOC/fonts/type1/iginomarini/imfellenglish/IM_FELL_English_SC.pfb + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ly1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ot1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-t1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ts1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ly1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ot1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-t1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ts1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ly1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ot1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-t1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ts1.vf + RELOC/tex/latex/imfellenglish/LY1IMFELLEnglish-TLF.fd + RELOC/tex/latex/imfellenglish/OT1IMFELLEnglish-TLF.fd + RELOC/tex/latex/imfellenglish/T1IMFELLEnglish-TLF.fd + RELOC/tex/latex/imfellenglish/TS1IMFELLEnglish-TLF.fd + RELOC/tex/latex/imfellenglish/imfellEnglish.sty +catalogue-ctan /fonts/imfellenglish +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license ofl +catalogue-topics font font-otf font-type1 + +name impatient +category Package +revision 35573 +shortdesc Free edition of the book "TeX for the Impatient" +relocated 1 +longdesc "TeX for the Impatient" is a book (of around 350 pages) on TeX, +longdesc Plain TeX and Eplain. The book is also available in French and +longdesc Chinese translations. +containersize 512 +containerchecksum d66e22eadafc2de1816356c60151578f7ae7b1b7136ebc9cdb4e1a32e019b4d403af2f19d4bfb15d8fce4a7e48576e396cb63dee1a07da6d013e93fb09421423 +doccontainersize 1562772 +doccontainerchecksum dc557d4bf80acf430ba867a0767e17ab2ffd57acda5d811f38144b57ec19ee797ca64fa01487704a90c3eb84ebc14610719370af358d60fa392877d4133a49a0 +docfiles size=605 + RELOC/doc/plain/impatient/Makefile + RELOC/doc/plain/impatient/Makefile.in + RELOC/doc/plain/impatient/NEWS + RELOC/doc/plain/impatient/README details="Basic project information" + RELOC/doc/plain/impatient/backm.tex + RELOC/doc/plain/impatient/book.pdf details="A copy of the book (English)" language="en" + RELOC/doc/plain/impatient/book.sdx + RELOC/doc/plain/impatient/book.tex + RELOC/doc/plain/impatient/capsule.tex + RELOC/doc/plain/impatient/concepts.tex + RELOC/doc/plain/impatient/config.tex + RELOC/doc/plain/impatient/configure + RELOC/doc/plain/impatient/configure.ac + RELOC/doc/plain/impatient/copyrght.tex + RELOC/doc/plain/impatient/eplain.tex + RELOC/doc/plain/impatient/errata.future + RELOC/doc/plain/impatient/errors.tex + RELOC/doc/plain/impatient/examples.tex + RELOC/doc/plain/impatient/fdl.tex + RELOC/doc/plain/impatient/fonts.tex + RELOC/doc/plain/impatient/frontm.tex + RELOC/doc/plain/impatient/genops.tex + RELOC/doc/plain/impatient/index.tex + RELOC/doc/plain/impatient/index1.icn + RELOC/doc/plain/impatient/index2.icn + RELOC/doc/plain/impatient/macros.tex + RELOC/doc/plain/impatient/math.tex + RELOC/doc/plain/impatient/modes.tex + RELOC/doc/plain/impatient/pages.tex + RELOC/doc/plain/impatient/paras.tex + RELOC/doc/plain/impatient/preface.tex + RELOC/doc/plain/impatient/read1st.tex + RELOC/doc/plain/impatient/tips.tex + RELOC/doc/plain/impatient/usebook.tex + RELOC/doc/plain/impatient/usermacs.tex + RELOC/doc/plain/impatient/usingtex.tex + RELOC/doc/plain/impatient/xmptext.tex +catalogue-contact-repository http://savannah.gnu.org/projects/teximpatient +catalogue-ctan /info/impatient +catalogue-date 2017-11-11 18:38:56 +0100 +catalogue-license fdl +catalogue-topics book-src tut-plaintex french-doc chinese-doc name impatient-cn category Package -revision 35576 +revision 45751 +catalogue impatient +shortdesc Free edition of the book "TeX for the Impatient" relocated 1 +longdesc "TeX for the Impatient" is a book (of around 350 pages) on TeX, +longdesc Plain TeX and Eplain. The book is also available in French and +longdesc Chinese translations. +containersize 516 +containerchecksum 216d5bddef463d26c6cec794a38f0b6d325aa1d4cb9792b642715d71d4f30f1d73396036f8eda79b12498c7ff2b3e1e3d2e17d04e3f071f90e8ca35b3acc04c3 +doccontainersize 3943828 +doccontainerchecksum 00140f4b38177ad8c3040cb29a90545da65f2f6100d7058b1974a174e3cb9e4ccf03f0f9ba196953fdf6636bb44d46a1346a3f812aacd177247f40d16f1b78d4 docfiles size=1289 RELOC/doc/plain/impatient-cn/Makefile RELOC/doc/plain/impatient-cn/backm.tex RELOC/doc/plain/impatient-cn/book.tex RELOC/doc/plain/impatient-cn/capsule.tex - RELOC/doc/plain/impatient-cn/cnbook.pdf + RELOC/doc/plain/impatient-cn/cnbook.pdf details="A copy of the book (Chinese translation)" language="zh" RELOC/doc/plain/impatient-cn/concepts.tex RELOC/doc/plain/impatient-cn/config.tex RELOC/doc/plain/impatient-cn/copyrght.tex @@ -79098,6 +128155,11 @@ docfiles size=1289 RELOC/doc/plain/impatient-cn/usingtex.tex RELOC/doc/plain/impatient-cn/xeCJK-base.tex RELOC/doc/plain/impatient-cn/xmptext.tex +catalogue-contact-repository http://savannah.gnu.org/projects/teximpatient +catalogue-ctan /info/impatient +catalogue-date 2017-11-11 18:38:56 +0100 +catalogue-license fdl +catalogue-topics book-src tut-plaintex french-doc chinese-doc name impatient-fr category Package @@ -79106,14 +128168,18 @@ catalogue impatient shortdesc Free edition of the book "TeX for the Impatient" relocated 1 longdesc "TeX for the Impatient" is a book (of around 350 pages) on TeX, -longdesc Plain TeX and Eplain. The book is also available in French -longdesc translation. +longdesc Plain TeX and Eplain. The book is also available in French and +longdesc Chinese translations. +containersize 516 +containerchecksum 41bec2d1167dc2f57a09d0028411147f8bf31d5e020408bebbd1b6c6577d531a38f83ae395146da699a53d9504f7f6ec1ab5edc5d6b559527867b352e4a8a551 +doccontainersize 1576668 +doccontainerchecksum ca3f388df4f17940ffc3b27ec1bb6d07d3b8728d8de011975b4f2696a96eadb45f208f5455890491af6fb169c30d6cbc6849dd3d25b6aad0284f0a65a81c8e9e docfiles size=625 - RELOC/doc/plain/impatient-fr/README + RELOC/doc/plain/impatient-fr/README details="Basic project information" RELOC/doc/plain/impatient-fr/config.tex RELOC/doc/plain/impatient-fr/eplain.tex RELOC/doc/plain/impatient-fr/fbackm.tex - RELOC/doc/plain/impatient-fr/fbook.pdf + RELOC/doc/plain/impatient-fr/fbook.pdf details="A copy of the book (French translation)" language="fr" RELOC/doc/plain/impatient-fr/fbook.tex RELOC/doc/plain/impatient-fr/fcapsule.tex RELOC/doc/plain/impatient-fr/fconcept.tex @@ -79136,123 +128202,96 @@ docfiles size=625 RELOC/doc/plain/impatient-fr/fusermacs.tex RELOC/doc/plain/impatient-fr/fusingtex.tex RELOC/doc/plain/impatient-fr/fxmptext.tex +catalogue-contact-repository http://savannah.gnu.org/projects/teximpatient catalogue-ctan /info/impatient -catalogue-date 2011-10-01 11:40:11 +0200 -catalogue-license fdl - -name impatient -category Package -revision 35573 -shortdesc Free edition of the book "TeX for the Impatient" -relocated 1 -longdesc "TeX for the Impatient" is a book (of around 350 pages) on TeX, -longdesc Plain TeX and Eplain. The book is also available in French -longdesc translation. -docfiles size=605 - RELOC/doc/plain/impatient/Makefile - RELOC/doc/plain/impatient/Makefile.in - RELOC/doc/plain/impatient/NEWS - RELOC/doc/plain/impatient/README - RELOC/doc/plain/impatient/backm.tex - RELOC/doc/plain/impatient/book.pdf - RELOC/doc/plain/impatient/book.sdx - RELOC/doc/plain/impatient/book.tex - RELOC/doc/plain/impatient/capsule.tex - RELOC/doc/plain/impatient/concepts.tex - RELOC/doc/plain/impatient/config.tex - RELOC/doc/plain/impatient/configure - RELOC/doc/plain/impatient/configure.ac - RELOC/doc/plain/impatient/copyrght.tex - RELOC/doc/plain/impatient/eplain.tex - RELOC/doc/plain/impatient/errata.future - RELOC/doc/plain/impatient/errors.tex - RELOC/doc/plain/impatient/examples.tex - RELOC/doc/plain/impatient/fdl.tex - RELOC/doc/plain/impatient/fonts.tex - RELOC/doc/plain/impatient/frontm.tex - RELOC/doc/plain/impatient/genops.tex - RELOC/doc/plain/impatient/index.tex - RELOC/doc/plain/impatient/index1.icn - RELOC/doc/plain/impatient/index2.icn - RELOC/doc/plain/impatient/macros.tex - RELOC/doc/plain/impatient/math.tex - RELOC/doc/plain/impatient/modes.tex - RELOC/doc/plain/impatient/pages.tex - RELOC/doc/plain/impatient/paras.tex - RELOC/doc/plain/impatient/preface.tex - RELOC/doc/plain/impatient/read1st.tex - RELOC/doc/plain/impatient/tips.tex - RELOC/doc/plain/impatient/usebook.tex - RELOC/doc/plain/impatient/usermacs.tex - RELOC/doc/plain/impatient/usingtex.tex - RELOC/doc/plain/impatient/xmptext.tex -catalogue-ctan /info/impatient -catalogue-date 2011-10-01 11:40:11 +0200 +catalogue-date 2017-11-11 18:38:56 +0100 catalogue-license fdl +catalogue-topics book-src tut-plaintex french-doc chinese-doc name impnattypo category Package -revision 36448 -shortdesc Support typography of l'Imprimerie Nationale Francaise. +revision 50227 +shortdesc Support typography of l'Imprimerie Nationale Francaise relocated 1 longdesc The package provides useful macros implementing recommendations longdesc by the French Imprimerie Nationale. -runfiles size=4 - RELOC/tex/latex/impnattypo/impnattypo.sty -docfiles size=41 - RELOC/doc/latex/impnattypo/impnattypo-fr.pdf - RELOC/doc/latex/impnattypo/impnattypo.pdf +containersize 3476 +containerchecksum 7afd6cf1fc2738bda4f390fe7f2f9d5e1bdd33c2e6bd32b4dda5b232005589f38436813d9e5effb6feae6371896be453b608ed61c64b9bf38fd25ec400c4b101 +doccontainersize 148572 +doccontainerchecksum 086b106a965e0f469cbf3560561da7d84e4151d5430d42d87c2c52568243305e20a1bc99ec4b252237f4c61369127683ff7b629013af8c76e9dc8ea6e551e24c +docfiles size=43 + RELOC/doc/latex/impnattypo/README.md details="Readme" + RELOC/doc/latex/impnattypo/impnattypo-fr.pdf details="Package documentation" language="fr" + RELOC/doc/latex/impnattypo/impnattypo.pdf details="Package documentation" language="en" +srccontainersize 9308 +srccontainerchecksum 5bf181ff35a90a1d5c7656f7ae9778305088035370cec3542fa451b055cdad6d3b1ac1cf830fb7ab7ba3d4d89ce7b96a1112575f924fb13f24b1a90fc84e24a9 srcfiles size=10 RELOC/source/latex/impnattypo/impnattypo.dtx RELOC/source/latex/impnattypo/impnattypo.ins +runfiles size=4 + RELOC/tex/latex/impnattypo/impnattypo.sty +catalogue-also e-french catalogue-ctan /macros/latex/contrib/impnattypo -catalogue-date 2015-03-06 07:08:43 +0100 +catalogue-date 2019-03-04 12:27:29 +0100 catalogue-license lppl1.3 -catalogue-version 1.4 +catalogue-topics typesetting +catalogue-version 1.5 name import category Package revision 17361 -shortdesc Establish input relative to a directory. +shortdesc Establish input relative to a directory relocated 1 longdesc The commands \import{full_path}{file} and longdesc \subimport{path_extension}{file} set up input through standard longdesc LaTeX mechanisms (\input, \include and \includegraphics) to longdesc load files relative to the \import-ed directory. There are also longdesc \includefrom, \subincludefrom, and * variants of the commands. -runfiles size=2 - RELOC/tex/latex/import/import.sty +containersize 2564 +containerchecksum d3b1d7fda67d0f685a7f338dfbe37199c40a4ade516d482b12efe03b5885eecf1258dff861dd17ca98f267cb12bcdee05178949dce192c2e8336d42209029e3c +doccontainersize 245180 +doccontainerchecksum aed56b21c2b10e94f72ac15c7b892a6aa2b0a27f50e502f49366ef73c72f71021a85ce5aa4288f48a09b941c189bc0477d040ae83f9b52a20db2d23160fbaa5e docfiles size=64 - RELOC/doc/latex/import/import.pdf + RELOC/doc/latex/import/import.pdf details="Package documentation" RELOC/doc/latex/import/import.tex +runfiles size=2 + RELOC/tex/latex/import/import.sty catalogue-ctan /macros/latex/contrib/import -catalogue-date 2012-05-09 15:25:33 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics file-control catalogue-version 5.1 name imsproc category Package revision 29803 -shortdesc Typeset IMS conference proceedings. +shortdesc Typeset IMS conference proceedings relocated 1 longdesc The class typesets papers for IMS (Iranian Mathematical longdesc Society) conference proceedings. The class uses the XePersian longdesc package. -runfiles size=14 - RELOC/tex/xelatex/imsproc/imsproc.cls +containersize 14784 +containerchecksum 12ce0d8ccdcd54890f846b501cc5cf7af00f7759c916147c676358b689b852a86a1981b76a14e455a4edece20ad1857100123f91469dfb23ba168177e15fcafc +doccontainersize 57712 +doccontainerchecksum a4007fe80cca88525dcade8d8201fb82a2c35cafd7bf92a8ebe6b4668ddce6bd43e958e1223d5c212e91ca692df39aae84c4a25b6862afa3aed2f1f646eabba1 docfiles size=19 - RELOC/doc/xelatex/imsproc/README + RELOC/doc/xelatex/imsproc/README details="Readme" RELOC/doc/xelatex/imsproc/logo.JPG RELOC/doc/xelatex/imsproc/sample-imsproc.tex +runfiles size=14 + RELOC/tex/xelatex/imsproc/imsproc.cls +catalogue-contact-bugs https://github.com/bidi-tex/imsproc/issues +catalogue-contact-repository https://github.com/bidi-tex/imsproc catalogue-ctan /macros/xetex/latex/imsproc -catalogue-date 2014-09-06 11:31:57 +0200 +catalogue-date 2018-11-28 19:55:07 +0100 catalogue-license lppl1.3 +catalogue-topics confproc catalogue-version 0.1 name imtekda category Package revision 17667 -shortdesc IMTEK thesis class. +shortdesc IMTEK thesis class relocated 1 longdesc The class permits typesetting of diploma, bachelor's and longdesc master's theses for the Institute of Microsystem Technology @@ -79260,27 +128299,34 @@ longdesc (IMTEK) at the University of Freiburg (Germany). The class is longdesc based on the KOMA-Script class scrbook. Included in the longdesc documentation is a large collection of useful tips for longdesc typesetting theses and a list of recommended packages. -runfiles size=4 - RELOC/tex/latex/imtekda/IMTEKda.cls +containersize 4440 +containerchecksum ae95a9d52ed07e962a9d98cdcad868a9d2dc6e1eee82c38fceda7f7668934caab5062727e75ee3b1824ec60ad112f15541c9519fd494fa8199caaf0e83906484 +doccontainersize 628592 +doccontainerchecksum 6f854d85a7649b49b3c88d99f1f011df514b39064e2c340ae1e807de3e730a46a432afe178574105a414bbd46ae0509b9e88d6c0ff825e74dd55772ed189427f docfiles size=208 - RELOC/doc/latex/imtekda/IMTEKda.pdf - RELOC/doc/latex/imtekda/README + RELOC/doc/latex/imtekda/IMTEKda.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/imtekda/README details="Readme (German)" language="de" RELOC/doc/latex/imtekda/diplarb.bib RELOC/doc/latex/imtekda/diplarb.tex RELOC/doc/latex/imtekda/figures/bild.eps RELOC/doc/latex/imtekda/figures/bild.pdf +srccontainersize 27688 +srccontainerchecksum c4285c9099d8a2582570d0d7df327e6f693825a63c7dbbd6626361d9ceea83a039425b295e17de133fe51e43a23ada74e5fa83d0995fd4a6528eceaad2f59461 srcfiles size=24 RELOC/source/latex/imtekda/IMTEKda.dtx RELOC/source/latex/imtekda/IMTEKda.ins +runfiles size=4 + RELOC/tex/latex/imtekda/IMTEKda.cls catalogue-ctan /macros/latex/contrib/imtekda -catalogue-date 2014-10-02 22:30:28 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics dissertation class catalogue-version 1.7 name incgraph category Package revision 36500 -shortdesc Sophisticated graphics inclusion in a PDF document. +shortdesc Sophisticated graphics inclusion in a PDF document relocated 1 longdesc The package provides tools for including graphics at the full longdesc size of the output medium, or for creating "pages" whose size @@ -79289,11 +128335,13 @@ longdesc documents that require inclusion of (potentially many) scans or longdesc photographs. Bookmarking is especially supported. The tool box longdesc has basic macros and a 'convenience' user interface that wraps longdesc \includegraphics. -runfiles size=4 - RELOC/tex/latex/incgraph/incgraph.sty +containersize 4204 +containerchecksum 9a063a51c77ec55136a60a7ffaa259f7c8e2fbc9c71dc2d5240f125be50fc246e2a1d1a6c3379aacc044ad0eb7a754dc27a6445bd12fd63c3d5b2929cdacc133 +doccontainersize 1079708 +doccontainerchecksum 1a1be60ab0ee587095ad6e2c74ce356292ce454f3a40fa96e5fab7d48da52b98cabfe9826235b3afae679baeea1b23e5c4fb4d7a4b00279ce0433568a9cf3108 docfiles size=575 RELOC/doc/latex/incgraph/CHANGES - RELOC/doc/latex/incgraph/README + RELOC/doc/latex/incgraph/README details="Readme" RELOC/doc/latex/incgraph/exaimage-0001.png RELOC/doc/latex/incgraph/exaimage-0037.png RELOC/doc/latex/incgraph/exaimage-0123.png @@ -79304,17 +128352,49 @@ docfiles size=575 RELOC/doc/latex/incgraph/incgraph-example-b.tex RELOC/doc/latex/incgraph/incgraph-example-c.pdf RELOC/doc/latex/incgraph/incgraph-example-c.tex - RELOC/doc/latex/incgraph/incgraph.pdf + RELOC/doc/latex/incgraph/incgraph.pdf details="Package documentation" RELOC/doc/latex/incgraph/incgraph.tex +runfiles size=4 + RELOC/tex/latex/incgraph/incgraph.sty +catalogue-also graphicx catalogue-ctan /macros/latex/contrib/incgraph -catalogue-date 2015-03-12 20:31:50 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics graphics-incl catalogue-version 1.12 +name includernw +category Package +revision 47557 +shortdesc Include .Rnw inside .tex +relocated 1 +longdesc This package is for including .Rnw (knitr/sweave)-files inside +longdesc .tex-files. It requires that you have R and the R-package knitr +longdesc installed. Note: This package will probably not work on +longdesc Windows. It is tested only on OS X, and will probably also work +longdesc on standard Linux distros. +containersize 3116 +containerchecksum a2b43d658ed62ff3a301a1b190cc46f04a4a46f413ed4af3e0f84f1873efc6841cd23fc07d68a90cca50b6ed00ccf654aef9dcb6a8b4863277b06c7e8c666e6b +doccontainersize 157728 +doccontainerchecksum 8ebde646868cebadd8d50cfca25cd8d924c0112129ea86b0ca3ae5b9f9f4e4fec3c1e464486ec0f92e5cf7b7fe3df1fceb1a7967bfec755c57645e6909705c0b +docfiles size=43 + RELOC/doc/latex/includernw/README.txt details="Readme" + RELOC/doc/latex/includernw/includeRnw-doc.pdf details="Package documentation" + RELOC/doc/latex/includernw/includeRnw-doc.tex +runfiles size=2 + RELOC/tex/latex/includernw/includeRnw.sty +catalogue-contact-bugs https://github.com/Strauman/includeRnw/issues +catalogue-contact-repository https://github.com/Strauman/includeRnw +catalogue-ctan /macros/latex/contrib/includernw +catalogue-date 2018-05-01 13:33:04 +0200 +catalogue-license lppl1.3c +catalogue-topics subdocs statistics compilation +catalogue-version 0.1.0 + name inconsolata category Package -revision 36009 -shortdesc A monospaced font, with support files for use with TeX. +revision 51155 +shortdesc A monospaced font, with support files for use with TeX relocated 1 longdesc Inconsolata is a monospaced font designed by Raph Levien. This longdesc package contains the font (in both Adobe Type 1 and OpenType @@ -79323,7 +128403,20 @@ longdesc and options to control slashed zero, upright quotes and a longdesc shapelier lower-case L, plus metric files for use with TeX, and longdesc LaTeX font definition and other relevant files. execute addMap zi4.map -runfiles size=183 +containersize 299600 +containerchecksum 3d3b4dc4d1ee2cdef39817602cb3a38f2d1df01085027e5b220ed6264cb3d43f7d86071cfea7a6efec2dba0bd9edd1b0b2021205eb7761cf78ae6f2fa88894f9 +doccontainersize 179148 +doccontainerchecksum ab19f8f3cb3c37010c0e627db652584c0dde61ef2349babaf796d551bf4656e722792213ec99cd88db6b3cbb7b75eb1765cf2dd4f75d59e7bf5a09335732802c +docfiles size=149 + RELOC/doc/fonts/inconsolata/OFL.txt + RELOC/doc/fonts/inconsolata/README details="Readme" + RELOC/doc/fonts/inconsolata/afmcmds.txt + RELOC/doc/fonts/inconsolata/inconsolata-doc.pdf details="Package documentation" + RELOC/doc/fonts/inconsolata/inconsolata-doc.tex + RELOC/doc/fonts/inconsolata/novarqu-crop.pdf + RELOC/doc/fonts/inconsolata/novarqu-noupq-crop.pdf + RELOC/doc/fonts/inconsolata/varqu-noupq-crop.pdf +runfiles size=300 RELOC/fonts/enc/dvips/inconsolata/i4-ly1-0.enc RELOC/fonts/enc/dvips/inconsolata/i4-ly1-1.enc RELOC/fonts/enc/dvips/inconsolata/i4-ly1-2.enc @@ -79358,6 +128451,8 @@ runfiles size=183 RELOC/fonts/enc/dvips/inconsolata/i4-t1-7.enc RELOC/fonts/enc/dvips/inconsolata/i4-ts1.enc RELOC/fonts/map/dvips/inconsolata/zi4.map + RELOC/fonts/opentype/public/inconsolata/InconsolataN-Bold.otf + RELOC/fonts/opentype/public/inconsolata/InconsolataN-Regular.otf RELOC/fonts/opentype/public/inconsolata/Inconsolatazi4-Bold.otf RELOC/fonts/opentype/public/inconsolata/Inconsolatazi4-Regular.otf RELOC/fonts/tfm/public/inconsolata/ly1-zi4b-0.tfm @@ -79368,6 +128463,22 @@ runfiles size=183 RELOC/fonts/tfm/public/inconsolata/ly1-zi4b-5.tfm RELOC/fonts/tfm/public/inconsolata/ly1-zi4b-6.tfm RELOC/fonts/tfm/public/inconsolata/ly1-zi4b-7.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nb-0.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nb-1.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nb-2.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nb-3.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nb-4.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nb-5.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nb-6.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nb-7.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nr-0.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nr-1.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nr-2.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nr-3.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nr-4.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nr-5.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nr-6.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4nr-7.tfm RELOC/fonts/tfm/public/inconsolata/ly1-zi4r-0.tfm RELOC/fonts/tfm/public/inconsolata/ly1-zi4r-1.tfm RELOC/fonts/tfm/public/inconsolata/ly1-zi4r-2.tfm @@ -79384,6 +128495,22 @@ runfiles size=183 RELOC/fonts/tfm/public/inconsolata/ot1-zi4b-5.tfm RELOC/fonts/tfm/public/inconsolata/ot1-zi4b-6.tfm RELOC/fonts/tfm/public/inconsolata/ot1-zi4b-7.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nb-0.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nb-1.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nb-2.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nb-3.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nb-4.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nb-5.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nb-6.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nb-7.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nr-0.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nr-1.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nr-2.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nr-3.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nr-4.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nr-5.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nr-6.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4nr-7.tfm RELOC/fonts/tfm/public/inconsolata/ot1-zi4r-0.tfm RELOC/fonts/tfm/public/inconsolata/ot1-zi4r-1.tfm RELOC/fonts/tfm/public/inconsolata/ot1-zi4r-2.tfm @@ -79400,6 +128527,22 @@ runfiles size=183 RELOC/fonts/tfm/public/inconsolata/qx-zi4b-5.tfm RELOC/fonts/tfm/public/inconsolata/qx-zi4b-6.tfm RELOC/fonts/tfm/public/inconsolata/qx-zi4b-7.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nb-0.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nb-1.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nb-2.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nb-3.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nb-4.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nb-5.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nb-6.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nb-7.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nr-0.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nr-1.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nr-2.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nr-3.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nr-4.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nr-5.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nr-6.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4nr-7.tfm RELOC/fonts/tfm/public/inconsolata/qx-zi4r-0.tfm RELOC/fonts/tfm/public/inconsolata/qx-zi4r-1.tfm RELOC/fonts/tfm/public/inconsolata/qx-zi4r-2.tfm @@ -79416,6 +128559,22 @@ runfiles size=183 RELOC/fonts/tfm/public/inconsolata/t1-zi4b-5.tfm RELOC/fonts/tfm/public/inconsolata/t1-zi4b-6.tfm RELOC/fonts/tfm/public/inconsolata/t1-zi4b-7.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nb-0.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nb-1.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nb-2.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nb-3.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nb-4.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nb-5.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nb-6.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nb-7.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nr-0.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nr-1.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nr-2.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nr-3.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nr-4.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nr-5.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nr-6.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4nr-7.tfm RELOC/fonts/tfm/public/inconsolata/t1-zi4r-0.tfm RELOC/fonts/tfm/public/inconsolata/t1-zi4r-1.tfm RELOC/fonts/tfm/public/inconsolata/t1-zi4r-2.tfm @@ -79425,35 +128584,33 @@ runfiles size=183 RELOC/fonts/tfm/public/inconsolata/t1-zi4r-6.tfm RELOC/fonts/tfm/public/inconsolata/t1-zi4r-7.tfm RELOC/fonts/tfm/public/inconsolata/ts1-zi4b.tfm + RELOC/fonts/tfm/public/inconsolata/ts1-zi4nb.tfm + RELOC/fonts/tfm/public/inconsolata/ts1-zi4nr.tfm RELOC/fonts/tfm/public/inconsolata/ts1-zi4r.tfm RELOC/fonts/type1/public/inconsolata/Inconsolata-zi4b.pfb RELOC/fonts/type1/public/inconsolata/Inconsolata-zi4r.pfb - RELOC/tex/latex/inconsolata/Inconsolatazi4.fontspec + RELOC/fonts/type1/public/inconsolata/InconsolataN-Bold.pfb + RELOC/fonts/type1/public/inconsolata/InconsolataN-Regular.pfb + RELOC/tex/latex/inconsolata/inconsolata.fontspec RELOC/tex/latex/inconsolata/inconsolata.sty + RELOC/tex/latex/inconsolata/inconsolatan.fontspec RELOC/tex/latex/inconsolata/ly1zi4.fd RELOC/tex/latex/inconsolata/ot1zi4.fd RELOC/tex/latex/inconsolata/qxzi4.fd RELOC/tex/latex/inconsolata/t1zi4.fd RELOC/tex/latex/inconsolata/ts1zi4.fd RELOC/tex/latex/inconsolata/zi4.sty -docfiles size=190 - RELOC/doc/fonts/inconsolata/OFL.txt - RELOC/doc/fonts/inconsolata/README - RELOC/doc/fonts/inconsolata/afmcmds.txt - RELOC/doc/fonts/inconsolata/inconsolata-doc.pdf - RELOC/doc/fonts/inconsolata/inconsolata-doc.tex - RELOC/doc/fonts/inconsolata/novarqu-crop.pdf - RELOC/doc/fonts/inconsolata/novarqu-noupq-crop.pdf - RELOC/doc/fonts/inconsolata/varqu-noupq-crop.pdf +catalogue-contact-home http://levien.com/type/myfonts/inconsolata.html catalogue-ctan /fonts/inconsolata -catalogue-date 2014-06-23 06:08:55 +0200 -catalogue-license ofl -catalogue-version 1.05 +catalogue-date 2019-05-18 08:30:45 +0200 +catalogue-license oflapache2lppl1.3 +catalogue-topics font font-mono font-type1 font-otf font-t1enc +catalogue-version 1.12 name index category Package revision 24099 -shortdesc Extended index for LaTeX including multiple indexes. +shortdesc Extended index for LaTeX including multiple indexes relocated 1 longdesc This is a reimplementation of LaTeX's indexing macros to longdesc provide better support for indexing. For example, it supports @@ -79462,60 +128619,78 @@ longdesc robust \index command. It supplies short hand notations for the longdesc \index command (^{word}) and a * variation of \index longdesc (abbreviated _{word}) that prints the word being indexed, as longdesc well as creating an index entry for it. -runfiles size=17 - RELOC/bibtex/bst/index/xagsm.bst - RELOC/bibtex/bst/index/xplain.bst - RELOC/makeindex/index/bibref.ist - RELOC/tex/latex/index/autind.sty - RELOC/tex/latex/index/bibref.sty - RELOC/tex/latex/index/index.sty +containersize 11040 +containerchecksum 2b9bed00e12b5aa7b1813be766ba7c2e1eb750dc270e9eb585b1cc3d559a3f0c9094919344aaaa51cb6cf7cc132a5f89f8c07c96a12c5b1a5446524d07f4121e +doccontainersize 156688 +doccontainerchecksum 0e68aca1c5dda444aa42cb1883821f2003c450291191b2eef16169f3f76e03e5ec9d31577574afd8d3b10237309be303538ccd1d4c8edb9757e7c910da7c5f51 docfiles size=63 - RELOC/doc/latex/index/README + RELOC/doc/latex/index/README details="Package Readme" RELOC/doc/latex/index/TODO RELOC/doc/latex/index/agsmtst.tex RELOC/doc/latex/index/autind.tex - RELOC/doc/latex/index/index.pdf + RELOC/doc/latex/index/index.pdf details="Package documentation" RELOC/doc/latex/index/plaintst.tex RELOC/doc/latex/index/sample.tex RELOC/doc/latex/index/test.bib +srccontainersize 14900 +srccontainerchecksum fc9e646c54415a14e41f1adf9894e723ea8d25e1d151b56fe40e5dd437a4659535b11eccbe9e2b6077d01a7a83b044c2d1d2b9aa1b08243d82b5a37a70641c11 srcfiles size=14 RELOC/source/latex/index/index.dtx RELOC/source/latex/index/index.ins +runfiles size=17 + RELOC/bibtex/bst/index/xagsm.bst + RELOC/bibtex/bst/index/xplain.bst + RELOC/makeindex/index/bibref.ist + RELOC/tex/latex/index/autind.sty + RELOC/tex/latex/index/bibref.sty + RELOC/tex/latex/index/index.sty +catalogue-also splitindex multind catalogue-ctan /macros/latex/contrib/index -catalogue-date 2012-06-03 13:48:34 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics index index-multi catalogue-version 4.1beta name indextools category Package -revision 36138 -shortdesc A fork of imakeidx to fixe one bug with bidi -relocated 1 -longdesc This package is a fork of the imakeidx package. The original -longdesc authors of imakeidx declined some upgrade suggestions to remove -longdesc incompatibilities with certain packages that are particularly -longdesc important with critical editions dealing with languages that -longdesc are being written from right to left. Therefore this fork was -longdesc created in order to let other users benefit from its -longdesc functionalities very useful in the field of humanities. -runfiles size=4 - RELOC/tex/latex/indextools/indextools.sty -docfiles size=130 - RELOC/doc/latex/indextools/README - RELOC/doc/latex/indextools/indextools.pdf +revision 38931 +shortdesc Producing multiple indices +relocated 1 +longdesc This package enables the user to produce and typeset one or +longdesc more indices simultaneously. The package is known to work in +longdesc LaTeX documents processed with pdfLaTeX, XeLaTeX and LuaLaTeX. +longdesc If makeindex is used for processing the index entries, no +longdesc particular setup is needed when TeX Live is used. Using xindy +longdesc or other programs, it is necessary to enable shell escape. +longdesc Shell escape is also needed if splitindex is used. This is a +longdesc fork of imakeidx, with new features and fixed bugs. +containersize 4560 +containerchecksum 69bb7007041b46a25e9f6bb12d8212a4dd4eaa9dfd00fc033edd94de153e8941cc4de8a06d74516220ade56f2f5800f83a96ea2c02d766939cf70aa3822da63b +doccontainersize 611172 +doccontainerchecksum 9290dc53a68dcc191d39bc0d1e760bd4cb8db50d7cf70771e60686ba2b1a7923b408f21e777453a6f2ec9ec372ac30faa3ffa2cc6bf7d2bc82b2526327d732a7 +docfiles size=153 + RELOC/doc/latex/indextools/README details="Readme" + RELOC/doc/latex/indextools/indextools.pdf details="Package documentation" + RELOC/doc/latex/indextools/issue5.pdf RELOC/doc/latex/indextools/latexmkrc RELOC/doc/latex/indextools/makefile -srcfiles size=18 +srccontainersize 21688 +srccontainerchecksum 2d6d1a6009351911a3dfe204ab81ce8b54abfba885525a98557f56ad22ba6a319d35d36ea6f868d3abe9d788628d9f635dec8a657827ae3b772dae972a11c53c +srcfiles size=19 RELOC/source/latex/indextools/indextools.dtx +runfiles size=4 + RELOC/tex/latex/indextools/indextools.sty +catalogue-also imakeidx catalogue-ctan /macros/latex/contrib/indextools -catalogue-date 2015-01-25 12:29:54 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 -catalogue-version 1.4 +catalogue-topics index +catalogue-version 1.5.1 name initials category Package revision 15878 -shortdesc Adobe Type 1 decorative initial fonts. +shortdesc Adobe Type 1 decorative initial fonts relocated 1 longdesc For each font, at least an .pfb and .tfm file is provided, with longdesc a .fd file for use with LaTeX. @@ -79542,6 +128717,35 @@ execute addMap Sanremo.map execute addMap Starburst.map execute addMap Typocaps.map execute addMap Zallman.map +containersize 3132680 +containerchecksum 65b2ca2049dbeffca1a425530ea36357b0f06ae8cc744f16471a29dc9f1668023a7edb184d23c80dfdf57d74f24c9425b48a90133f9fa6c794ddf495e3d0413b +doccontainersize 2868 +doccontainerchecksum ba6943a564c000f986a4029d31ead6ee4cec028496636090fc56267dd8594bb20be94e4fa4e4a2f39b5b4c7af1b0db3a74111e45a8ad229f6e9fa8862b11c68a +docfiles size=24 + RELOC/doc/fonts/initials/Acorn.tex + RELOC/doc/fonts/initials/AnnSton.tex + RELOC/doc/fonts/initials/ArtNouv.tex + RELOC/doc/fonts/initials/ArtNouvc.tex + RELOC/doc/fonts/initials/Carrickc.tex + RELOC/doc/fonts/initials/Eichenla.tex + RELOC/doc/fonts/initials/Eileen.tex + RELOC/doc/fonts/initials/EileenBl.tex + RELOC/doc/fonts/initials/Elzevier.tex + RELOC/doc/fonts/initials/GotIn.tex + RELOC/doc/fonts/initials/GoudyIn.tex + RELOC/doc/fonts/initials/Kinigcap.tex + RELOC/doc/fonts/initials/Konanur.tex + RELOC/doc/fonts/initials/Kramer.tex + RELOC/doc/fonts/initials/MorrisIn.tex + RELOC/doc/fonts/initials/Nouveaud.tex + RELOC/doc/fonts/initials/README details="Readme" + RELOC/doc/fonts/initials/Romantik.tex + RELOC/doc/fonts/initials/Rothdn.tex + RELOC/doc/fonts/initials/RoyalIn.tex + RELOC/doc/fonts/initials/Sanremo.tex + RELOC/doc/fonts/initials/Starburst.tex + RELOC/doc/fonts/initials/Typocaps.tex + RELOC/doc/fonts/initials/Zallman.tex runfiles size=898 RELOC/dvips/initials/config.Acorn RELOC/dvips/initials/config.AnnSton @@ -79681,62 +128885,71 @@ runfiles size=898 RELOC/tex/latex/initials/Starburst.fd RELOC/tex/latex/initials/Typocaps.fd RELOC/tex/latex/initials/Zallman.fd -docfiles size=24 - RELOC/doc/fonts/initials/Acorn.tex - RELOC/doc/fonts/initials/AnnSton.tex - RELOC/doc/fonts/initials/ArtNouv.tex - RELOC/doc/fonts/initials/ArtNouvc.tex - RELOC/doc/fonts/initials/Carrickc.tex - RELOC/doc/fonts/initials/Eichenla.tex - RELOC/doc/fonts/initials/Eileen.tex - RELOC/doc/fonts/initials/EileenBl.tex - RELOC/doc/fonts/initials/Elzevier.tex - RELOC/doc/fonts/initials/GotIn.tex - RELOC/doc/fonts/initials/GoudyIn.tex - RELOC/doc/fonts/initials/Kinigcap.tex - RELOC/doc/fonts/initials/Konanur.tex - RELOC/doc/fonts/initials/Kramer.tex - RELOC/doc/fonts/initials/MorrisIn.tex - RELOC/doc/fonts/initials/Nouveaud.tex - RELOC/doc/fonts/initials/README - RELOC/doc/fonts/initials/Romantik.tex - RELOC/doc/fonts/initials/Rothdn.tex - RELOC/doc/fonts/initials/RoyalIn.tex - RELOC/doc/fonts/initials/Sanremo.tex - RELOC/doc/fonts/initials/Starburst.tex - RELOC/doc/fonts/initials/Typocaps.tex - RELOC/doc/fonts/initials/Zallman.tex catalogue-ctan /fonts/initials -catalogue-date 2014-05-08 15:40:26 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-type1 font-decor + +name inline-images +category Package +revision 48415 +shortdesc Inline images in base64 encoding +relocated 1 +longdesc The package provides a command \inlineimg to dynamically create +longdesc a file containing the inline image in base64 format, which is +longdesc decoded and included in the source file. Requirements LaTeX +longdesc must be run with option --shell-escape. Program base64. +containersize 820 +containerchecksum 60957844daeeb2e4956d83e1d57e9721b2dfaf4ad2fb4358f1d27cbda225ceec7cbc78cdae5144d28a946bb9408fa960748ca3aabac709bbffecbbb64356f8a5 +doccontainersize 123068 +doccontainerchecksum 5ec326c1323cdce80f5a83052302d2e18de3b0f054ddb7a29da5002605e1020c81fe0219ee68866eb5d8c3b12b4c138ff56f8a630e6f0455b27eb0a0c905d027 +docfiles size=37 + RELOC/doc/latex/inline-images/README.md details="Readme" + RELOC/doc/latex/inline-images/examples/example.pdf + RELOC/doc/latex/inline-images/examples/example.tex + RELOC/doc/latex/inline-images/screenshots/example.jpg +runfiles size=1 + RELOC/tex/latex/inline-images/inline-images.sty +catalogue-contact-bugs https://mrw.sh/templates/inline-images/issues +catalogue-contact-home https://mrw.sh/templates/inline-images +catalogue-ctan /macros/latex/contrib/inline-images +catalogue-date 2018-08-18 05:31:14 +0200 +catalogue-license lgpl3 +catalogue-topics image-supp +catalogue-version 1.0 name inlinebib category Package revision 22018 -shortdesc Citations in footnotes. +shortdesc Citations in footnotes relocated 1 longdesc A BibTeX style and a LaTeX package that allow for a full longdesc bibliography at the end of the document as well as citation longdesc details in footnotes. The footnote details include "op. cit." longdesc and "ibid." contractions. -runfiles size=8 - RELOC/bibtex/bst/inlinebib/inlinebib.bst - RELOC/tex/latex/inlinebib/inlinebib.sty - RELOC/tex/latex/inlinebib/pageranges.sty +containersize 6760 +containerchecksum 42e158a9ff10dc165345bd08b18fc0f90b463482fbb824872289edf93269b36b04faaf35cd12538e83ef1e509b7400ee61e604c5849922106368624c6c20f507 +doccontainersize 19896 +doccontainerchecksum 2a00d2f51daca68362b5243d8cc485bff6f64fbb9156d1a221d75dc5eec001c3377e6d67afe5d6384ba3f7504eafd65919f5afca8e1170f8b584eb101c947faf docfiles size=10 RELOC/doc/bibtex/inlinebib/MANIFEST - RELOC/doc/bibtex/inlinebib/inlinebib.htm + RELOC/doc/bibtex/inlinebib/inlinebib.htm details="Package documentation" RELOC/doc/bibtex/inlinebib/inlinebib.txt RELOC/doc/bibtex/inlinebib/inlinebib1.gif RELOC/doc/bibtex/inlinebib/inlinebib2.gif +runfiles size=8 + RELOC/bibtex/bst/inlinebib/inlinebib.bst + RELOC/tex/latex/inlinebib/inlinebib.sty + RELOC/tex/latex/inlinebib/pageranges.sty catalogue-ctan /biblio/bibtex/contrib/inlinebib -catalogue-date 2012-06-18 18:51:38 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics cite-foot name inlinedef category Package revision 15878 -shortdesc Inline expansions within definitions. +shortdesc Inline expansions within definitions relocated 1 longdesc The package provides a macro \Inline that precedes a \def or longdesc \gdef. Within the definition text of an inlined definition, @@ -79749,24 +128962,31 @@ longdesc not suitable. Another application is as an easier version of longdesc \aftergroup, by defining a macro in terms of expanded local longdesc variables, then ending the group with longdesc \expandafter\endgroup\macro. -runfiles size=3 - RELOC/tex/latex/inlinedef/inlinedef.sty +containersize 3696 +containerchecksum b98b83ff26b5ecc9826f111d9faef5aa0f51ebcec7978881da2a61287af7aee022dc1b7812ee457885c7813eee0d2200d250ef45648619f3d105e2df54cd21d0 +doccontainersize 135048 +doccontainerchecksum 6bf73914a9eff5d774ca7b7e37a859b0e7da3d408bae603b74c9f76e379ff6d3558d7e30ee4a246bf3f7d40f18446fc78299edf4eda0228e2f22e47ad09ea024 docfiles size=42 - RELOC/doc/latex/inlinedef/README - RELOC/doc/latex/inlinedef/inlinedef.pdf + RELOC/doc/latex/inlinedef/README details="Readme" + RELOC/doc/latex/inlinedef/inlinedef.pdf details="Package documentation" RELOC/doc/latex/inlinedef/inlinetest.tex +srccontainersize 12344 +srccontainerchecksum ccac53e2ce8ad0fcfadfedeca45d136ba94bd51d46fb4b860269f2efb7c0996823d32ee1935a0dad79ebe69c9794e2882e6dabca0c5751b3e8b25e5329623953 srcfiles size=11 RELOC/source/latex/inlinedef/inlinedef.dtx RELOC/source/latex/inlinedef/inlinedef.ins +runfiles size=3 + RELOC/tex/latex/inlinedef/inlinedef.sty catalogue-ctan /macros/latex/contrib/inlinedef -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics macro-def catalogue-version 1.0 name inputtrc category Package revision 28019 -shortdesc Trace which file loads which. +shortdesc Trace which file loads which relocated 1 longdesc The package produces screen/log messages of the form ' longdesc INPUTTING ' reporting LaTeX input commands ( and @@ -79774,48 +128994,943 @@ longdesc being file names). The message is indented to reflect longdesc the level of input nesting. Tracing may be turned on and off, longdesc and the unit of indentation may be adjusted. The implementation longdesc somewhat resembles those of packages FiNK and inputfile. -runfiles size=3 - RELOC/tex/latex/inputtrc/inputtrc.RLS - RELOC/tex/latex/inputtrc/inputtrc.sty +containersize 2812 +containerchecksum e6450fbeb0f9033b0bcc586c34f5bb8e9c3a6aae102c15912be315d14fe883b8bea62a59a4a65d0ebbfa9cebcc518b9dedf59297f026423ef14aed2c0a2004ab +doccontainersize 335868 +doccontainerchecksum 4fe7894ee87bcb81566d1838f52c02902d8f5668662fdc016005e9a44b31f35eef8831143cdf5321717ee590ed14fc6c35305f584a0b63254549f96149ae2a50 docfiles size=95 - RELOC/doc/latex/inputtrc/README + RELOC/doc/latex/inputtrc/README details="Readme" RELOC/doc/latex/inputtrc/README.pdf RELOC/doc/latex/inputtrc/RELEASE.txt RELOC/doc/latex/inputtrc/SrcFILEs.txt - RELOC/doc/latex/inputtrc/inputtrc.pdf + RELOC/doc/latex/inputtrc/inputtrc.pdf details="Package documentation" +srccontainersize 7124 +srccontainerchecksum 942d536481750f2272cf8b1420e13703d16231a0998b90c7f3335d4aa6dbd0cf1ff3b6ce072970b182fffdf14614422cc794798632ecc5ff41dfffb18c836398 srcfiles size=8 RELOC/source/latex/inputtrc/README.tex RELOC/source/latex/inputtrc/inputtrc.tex RELOC/source/latex/inputtrc/srcfiles.tex +runfiles size=3 + RELOC/tex/latex/inputtrc/inputtrc.RLS + RELOC/tex/latex/inputtrc/inputtrc.sty +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html catalogue-ctan /macros/latex/contrib/inputtrc -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-05-06 08:27:29 +0200 catalogue-license lppl1.3 +catalogue-topics debug-supp catalogue-version 0.3 +name inriafonts +category Package +revision 49826 +shortdesc Inria fonts with LaTeX support +relocated 1 +longdesc Inria is a free font designed by Black[Foundry] for Inria +longdesc research institute. The font is available for free. It comes as +longdesc Serif and Sans Serif, each with three weights and matching +longdesc italics. Using these fonts with XeLaTeX and LuaLaTeX is easy +longdesc using the fontspec package; we refer to the documentation of +longdesc fontspec for more information. The present package provides a +longdesc way of using them with LaTeX and pdfLaTeX: it provides two +longdesc style files, InriaSerif.sty and InriaSans.sty, together with +longdesc the PostScript version of the fonts and their associated files. +longdesc These were created using autoinst. +execute addMap InriaSans.map +execute addMap InriaSerif.map +containersize 2176928 +containerchecksum fb8218a74562131139d0125a40d04363df7f50e43c8207181f3c72210fec7f501497b5256cfa38d663c21b466e6c7fa94ad2fae9612f4f9767b32a7f5784f7b8 +doccontainersize 165572 +doccontainerchecksum b55bac3fce4d012be6d8d604faeff7868b62fda93493e49d7a0a0cc7d992c704de5a845ad7ba4cbd97acc787155b33fbd939954001dc6d4a9b29cef21b0004a5 +docfiles size=46 + RELOC/doc/fonts/inriafonts/README details="Readme" + RELOC/doc/fonts/inriafonts/inriafonts.pdf details="Package documentation" + RELOC/doc/fonts/inriafonts/inriafonts.tex + RELOC/doc/fonts/inriafonts/license-SIL-OFL.txt +runfiles size=2721 + RELOC/fonts/enc/dvips/inriafonts/inriasans_2ikqt3.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_aeswfl.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_azhk4k.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_clzm26.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_dl3y4j.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_efwr3l.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_fhoe3z.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_g56wvz.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_gn4bcn.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_kgbpoz.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_necsus.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_psyc4t.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_pv4xsz.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_rhfpoz.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_rriqaz.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_svhg3d.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_x5ybkq.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_yeotsr.enc + RELOC/fonts/enc/dvips/inriafonts/inriasans_yl5fy2.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_2ikqt3.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_aeswfl.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_azhk4k.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_clzm26.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_dl3y4j.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_efwr3l.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_fhoe3z.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_g56wvz.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_gn4bcn.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_kgbpoz.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_necsus.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_psyc4t.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_pv4xsz.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_rhfpoz.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_rriqaz.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_svhg3d.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_x5ybkq.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_yeotsr.enc + RELOC/fonts/enc/dvips/inriafonts/inriaserif_yl5fy2.enc + RELOC/fonts/map/dvips/inriafonts/InriaSans.map + RELOC/fonts/map/dvips/inriafonts/InriaSerif.map + RELOC/fonts/opentype/public/inriafonts/InriaSans-Bold.otf + RELOC/fonts/opentype/public/inriafonts/InriaSans-BoldItalic.otf + RELOC/fonts/opentype/public/inriafonts/InriaSans-Italic.otf + RELOC/fonts/opentype/public/inriafonts/InriaSans-Light.otf + RELOC/fonts/opentype/public/inriafonts/InriaSans-LightItalic.otf + RELOC/fonts/opentype/public/inriafonts/InriaSans-Regular.otf + RELOC/fonts/opentype/public/inriafonts/InriaSerif-Bold.otf + RELOC/fonts/opentype/public/inriafonts/InriaSerif-BoldItalic.otf + RELOC/fonts/opentype/public/inriafonts/InriaSerif-Italic.otf + RELOC/fonts/opentype/public/inriafonts/InriaSerif-Light.otf + RELOC/fonts/opentype/public/inriafonts/InriaSerif-LightItalic.otf + RELOC/fonts/opentype/public/inriafonts/InriaSerif-Regular.otf + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-lf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-lf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-lf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-lf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-lf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-osf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-osf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-osf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-osf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-osf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-osf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-sup-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-sup-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-sup-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-sup-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tlf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tlf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tlf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tlf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tosf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tosf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tosf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Light-tosf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSans-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-lf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-lf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-lf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-lf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-lf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-osf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-osf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-osf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-osf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-osf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-osf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-sup-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-sup-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-sup-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-sup-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tlf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tlf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tlf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tlf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tosf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tosf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tosf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Light-tosf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-lf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-lf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-lf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-lf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-lf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tlf-titling-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tlf-titling-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tlf-titling-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tlf-titling-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tlf-titling-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/inriafonts/InriaSerif-Regular-tosf-ts1.tfm + RELOC/fonts/truetype/public/inriafonts/InriaSans-Bold.ttf + RELOC/fonts/truetype/public/inriafonts/InriaSans-BoldItalic.ttf + RELOC/fonts/truetype/public/inriafonts/InriaSans-Italic.ttf + RELOC/fonts/truetype/public/inriafonts/InriaSans-Light.ttf + RELOC/fonts/truetype/public/inriafonts/InriaSans-LightItalic.ttf + RELOC/fonts/truetype/public/inriafonts/InriaSans-Regular.ttf + RELOC/fonts/truetype/public/inriafonts/InriaSerif-Bold.ttf + RELOC/fonts/truetype/public/inriafonts/InriaSerif-BoldItalic.ttf + RELOC/fonts/truetype/public/inriafonts/InriaSerif-Italic.ttf + RELOC/fonts/truetype/public/inriafonts/InriaSerif-Light.ttf + RELOC/fonts/truetype/public/inriafonts/InriaSerif-LightItalic.ttf + RELOC/fonts/truetype/public/inriafonts/InriaSerif-Regular.ttf + RELOC/fonts/type1/public/inriafonts/InriaSans-Bold.pfb + RELOC/fonts/type1/public/inriafonts/InriaSans-BoldItalic.pfb + RELOC/fonts/type1/public/inriafonts/InriaSans-Italic.pfb + RELOC/fonts/type1/public/inriafonts/InriaSans-Light.pfb + RELOC/fonts/type1/public/inriafonts/InriaSans-LightItalic.pfb + RELOC/fonts/type1/public/inriafonts/InriaSans-Regular.pfb + RELOC/fonts/type1/public/inriafonts/InriaSerif-Bold.pfb + RELOC/fonts/type1/public/inriafonts/InriaSerif-BoldItalic.pfb + RELOC/fonts/type1/public/inriafonts/InriaSerif-Italic.pfb + RELOC/fonts/type1/public/inriafonts/InriaSerif-Light.pfb + RELOC/fonts/type1/public/inriafonts/InriaSerif-LightItalic.pfb + RELOC/fonts/type1/public/inriafonts/InriaSerif-Regular.pfb + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-lf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-lf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-lf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-lf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-lf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-osf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-osf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-osf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-sup-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-sup-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-tlf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-tlf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-tosf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-lf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-lf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-tlf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-lf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-lf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-lf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-lf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-lf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-osf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-osf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-osf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-sup-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-sup-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-tlf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-tlf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-tosf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-lf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-lf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-lf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-lf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-lf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-osf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-osf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-osf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-sup-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-sup-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-tlf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-tlf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-tlf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-tlf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-tosf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-tosf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Light-tosf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-lf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-lf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-lf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-lf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-lf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-osf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-osf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-osf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-sup-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-sup-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-tlf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-tlf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-tosf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-tosf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-lf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-lf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-lf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-lf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-lf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-osf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-osf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-osf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-sup-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-sup-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-tlf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-tlf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-tosf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSans-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-lf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-lf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-lf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-lf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-lf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-osf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-osf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-osf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-sup-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-sup-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-tlf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-tlf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-tosf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-lf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-lf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-tlf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-lf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-lf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-lf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-lf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-lf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-osf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-osf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-osf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-sup-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-sup-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-tlf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-tlf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-tosf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-lf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-lf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-lf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-lf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-lf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-osf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-osf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-osf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-sup-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-sup-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-tlf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-tlf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-tlf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-tlf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-tosf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-tosf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Light-tosf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-lf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-lf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-lf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-lf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-lf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-osf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-osf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-osf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-sup-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-sup-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-tlf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-tlf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-tosf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-tosf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-lf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-lf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-lf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-lf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-lf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-osf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-osf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-osf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-sup-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-sup-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-tlf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-tlf-titling-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-tlf-titling-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-tosf-t1.vf + RELOC/fonts/vf/public/inriafonts/InriaSerif-Regular-tosf-ts1.vf + RELOC/tex/latex/inriafonts/InriaSans.sty + RELOC/tex/latex/inriafonts/InriaSerif.sty + RELOC/tex/latex/inriafonts/LY1InriaSans-LF.fd + RELOC/tex/latex/inriafonts/LY1InriaSans-OsF.fd + RELOC/tex/latex/inriafonts/LY1InriaSans-Sup.fd + RELOC/tex/latex/inriafonts/LY1InriaSans-TLF.fd + RELOC/tex/latex/inriafonts/LY1InriaSans-TOsF.fd + RELOC/tex/latex/inriafonts/LY1InriaSerif-LF.fd + RELOC/tex/latex/inriafonts/LY1InriaSerif-OsF.fd + RELOC/tex/latex/inriafonts/LY1InriaSerif-Sup.fd + RELOC/tex/latex/inriafonts/LY1InriaSerif-TLF.fd + RELOC/tex/latex/inriafonts/LY1InriaSerif-TOsF.fd + RELOC/tex/latex/inriafonts/OT1InriaSans-LF.fd + RELOC/tex/latex/inriafonts/OT1InriaSans-OsF.fd + RELOC/tex/latex/inriafonts/OT1InriaSans-Sup.fd + RELOC/tex/latex/inriafonts/OT1InriaSans-TLF.fd + RELOC/tex/latex/inriafonts/OT1InriaSans-TOsF.fd + RELOC/tex/latex/inriafonts/OT1InriaSerif-LF.fd + RELOC/tex/latex/inriafonts/OT1InriaSerif-OsF.fd + RELOC/tex/latex/inriafonts/OT1InriaSerif-Sup.fd + RELOC/tex/latex/inriafonts/OT1InriaSerif-TLF.fd + RELOC/tex/latex/inriafonts/OT1InriaSerif-TOsF.fd + RELOC/tex/latex/inriafonts/T1InriaSans-LF.fd + RELOC/tex/latex/inriafonts/T1InriaSans-OsF.fd + RELOC/tex/latex/inriafonts/T1InriaSans-Sup.fd + RELOC/tex/latex/inriafonts/T1InriaSans-TLF.fd + RELOC/tex/latex/inriafonts/T1InriaSans-TOsF.fd + RELOC/tex/latex/inriafonts/T1InriaSerif-LF.fd + RELOC/tex/latex/inriafonts/T1InriaSerif-OsF.fd + RELOC/tex/latex/inriafonts/T1InriaSerif-Sup.fd + RELOC/tex/latex/inriafonts/T1InriaSerif-TLF.fd + RELOC/tex/latex/inriafonts/T1InriaSerif-TOsF.fd + RELOC/tex/latex/inriafonts/TS1InriaSans-LF.fd + RELOC/tex/latex/inriafonts/TS1InriaSans-OsF.fd + RELOC/tex/latex/inriafonts/TS1InriaSans-TLF.fd + RELOC/tex/latex/inriafonts/TS1InriaSans-TOsF.fd + RELOC/tex/latex/inriafonts/TS1InriaSerif-LF.fd + RELOC/tex/latex/inriafonts/TS1InriaSerif-OsF.fd + RELOC/tex/latex/inriafonts/TS1InriaSerif-TLF.fd + RELOC/tex/latex/inriafonts/TS1InriaSerif-TOsF.fd +catalogue-ctan /fonts/inriafonts +catalogue-date 2019-01-28 05:39:57 +0100 +catalogue-license ofllppl +catalogue-topics font font-sans font-serif font-body font-otf font-type1 font-t1enc font-proportional +catalogue-version 1.0 + name insbox category Package revision 34299 -shortdesc Insert pictures/boxes into paragraphs. +shortdesc Insert pictures/boxes into paragraphs relocated 1 longdesc The package provides convenient bundling of the \parshape longdesc primitive. LaTeX users should note that this is a generic longdesc package, and should be loaded using \input . -runfiles size=2 - RELOC/tex/generic/insbox/insbox.tex +containersize 2928 +containerchecksum 98398c838689cfe22ba859e2983f374ecf94b21bcf46de362056821af31285754717f7b2169f8bfb6fbbbee849449a1f3caf52d1397a901133d0364b392654ce +doccontainersize 40372 +doccontainerchecksum 53baed8af86447a60bb1a97774778256fc4ad1f08f73e2172a68fa091c32e41bf84d10642ebb426be610e34ef5575999d15be7f0c5a966618cea5b3a3832c9a4 docfiles size=26 - RELOC/doc/generic/insbox/demo.pdf + RELOC/doc/generic/insbox/demo.pdf details="Examples of use" RELOC/doc/generic/insbox/demo.tex RELOC/doc/generic/insbox/pic1.eps RELOC/doc/generic/insbox/pic2.eps +runfiles size=2 + RELOC/tex/generic/insbox/insbox.tex +catalogue-also wrapfig floatflt infpic catalogue-ctan /macros/generic/insbox -catalogue-date 2014-06-13 18:25:15 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics text-flow catalogue-version 2.2 name installfont category Package revision 31205 -shortdesc A bash script for installing a LaTeX font family. +shortdesc A bash script for installing a LaTeX font family longdesc With this script you can install a LaTeX font family longdesc (PostScript Type 1, TrueType and OpenType formats are longdesc supported). Font series from light to ultra bold, and (faked) @@ -79826,35 +129941,186 @@ longdesc font files (in PostScript Type1 format) named in the Karl Berry longdesc scheme (e.g. 5bbr8a.pfb). After running the script, you should longdesc have a working font installation in your local TeX tree. depend installfont.ARCH -runfiles size=5 - texmf-dist/scripts/installfont/installfont-tl +containersize 4840 +containerchecksum cd5133b93c5daabaa0ea13649f3d34c28f9af9f92db54917e64cafca5f5e7fe5169d87e36783036850ccde0002d34860eceaea528ad06e21f08141106e6599ae +doccontainersize 56040 +doccontainerchecksum 2b61c4b229e0c4ec89c591075e52bcf8c150f5f9584bff94f81ec1f229940dafef11d6b6f84dd086692cbd99e6616685533d4313ef5bc48c56a7494fef3583b7 docfiles size=24 texmf-dist/doc/support/installfont/LICENSE - texmf-dist/doc/support/installfont/README + texmf-dist/doc/support/installfont/README details="Readme" texmf-dist/doc/support/installfont/installfont - texmf-dist/doc/support/installfont/installfont.pdf + texmf-dist/doc/support/installfont/installfont.pdf details="Package documentation" language="en" texmf-dist/doc/support/installfont/installfont.tex texmf-dist/doc/support/installfont/manifest.txt +runfiles size=5 + texmf-dist/scripts/installfont/installfont-tl +catalogue-contact-repository https://bitbucket.org/kleberj/installfont/ catalogue-ctan /support/installfont -catalogue-date 2013-07-15 19:52:10 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl -catalogue-version v1.7 +catalogue-topics font-proc +catalogue-version 1.7 + +name installfont.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of installfont +containersize 344 +containerchecksum 0cb1d4b07edfee4bcf54b72e456f9ec84c1c32bad1b77b56f802891d26643f6975be6fddc02462aac5dbaafa57d780355375949456cd0a7eabb82c1dc2fa744a +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/installfont-tl + +name installfont.amd64-freebsd +category Package +revision 19743 +shortdesc amd64-freebsd files of installfont +containersize 348 +containerchecksum f9067abb06177aff0876dd3787e63d266b52ba3eed7b5f13f17311201feba48dde4d461044500bc5ab0db692ca76531c7b275ff670a04a59717f59fe54ee1c2a +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/installfont-tl + +name installfont.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of installfont +containersize 344 +containerchecksum 83c05b34a73f937418a3b718f6ceeff31de3be26dd88282b0666e4c488b843d5a4561885f60dd6050120292e8abb516b95a4981693f4388b9806852d35dcca50 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/installfont-tl + +name installfont.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of installfont +containersize 344 +containerchecksum 3b934098ba81fbb081b1b6cfdfa62a75b8a54554ceebe571e1f87fefdba2d945646a18365b7ccf30146981dffa6e14b34de9dd175ed4499acd6c9c6f50fc9957 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/installfont-tl + +name installfont.i386-cygwin +category Package +revision 19743 +shortdesc i386-cygwin files of installfont +containersize 344 +containerchecksum 8bf8465984adcca84b8c033b2a0d5e053181c2f00ac213de99fd5d5e1726c56a95bbc8aa358dd196c6fc39734b19ad576ccb2b2b08a149420931d11208d96f22 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/installfont-tl + +name installfont.i386-freebsd +category Package +revision 19743 +shortdesc i386-freebsd files of installfont +containersize 344 +containerchecksum 79f8a819ccfce5e627391e38271eb966570d5435828873d8524d9af63e73573d4f9a6f2ac75b41634d91060b5747a48bd219b4e40cff914ab143581484481129 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/installfont-tl + +name installfont.i386-linux +category Package +revision 19743 +shortdesc i386-linux files of installfont +containersize 344 +containerchecksum 78a7814294f627e1cd174342d0d650fff3d2a84c5423699b08f430fbe938b9072a4172f1f960485f998e4a2f3e395b57e9acb9c7d38ed74bd7d19e9688abae26 +binfiles arch=i386-linux size=1 + bin/i386-linux/installfont-tl + +name installfont.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of installfont +containersize 344 +containerchecksum b87a3c3cad6c43ea1fec1ee6229e1f6a73dc385c0c11ee640f6cd19f0130706434b93a3fdc57c5aa4ac511443b7f19a24657624e99c886c72df598c994236a3e +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/installfont-tl + +name installfont.i386-solaris +category Package +revision 19743 +shortdesc i386-solaris files of installfont +containersize 344 +containerchecksum 734b0fe5e37dfad6661b9b2db8fbf8e68c140c988a1266962576d1fbbf9e08a356c8da13414eefe0c162281465a684bc26a24bdba9145e31ccba9a2e038cbfab +binfiles arch=i386-solaris size=1 + bin/i386-solaris/installfont-tl + +name installfont.win32 +category Package +revision 33638 +shortdesc win32 files of installfont +containersize 916 +containerchecksum b16958e96bedede2c07a90488c55de416b1f57da9f86b77878c8720a5fcce35a14c488da27d5c261bb93d5125898791c0ac188138c30d295955c28e20da7510a +binfiles arch=win32 size=1 + bin/win32/installfont-tl.exe + +name installfont.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of installfont +containersize 348 +containerchecksum c85836ee60a48b7f36de64c3c24481066121bb5463332e9e796d1eb18756138787e8b2841effe3e0f427f654d003689bc712036fba60c799dd52fab5dd1e4418 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/installfont-tl + +name installfont.x86_64-darwin +category Package +revision 19743 +shortdesc x86_64-darwin files of installfont +containersize 348 +containerchecksum e2f8ddf573414d6d6f8a79abec5e8a7458874beb640c3f3db3b83973d513492baaf4e4a4afa1be84815978a3091c73ecbe98c41bdcd920e83c297490fde1856d +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/installfont-tl + +name installfont.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of installfont +containersize 352 +containerchecksum 5deb837ef1e98b85376ada706dcbd962056fb67309351642c52e1db2ebf5fb0e4f07e74a92278f67d18fab01ff7e07bb21dafff62939dc32e8ece6f960060ae2 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/installfont-tl + +name installfont.x86_64-linux +category Package +revision 19743 +shortdesc x86_64-linux files of installfont +containersize 344 +containerchecksum 67a11b5845c1cbc37429ea14abe428214b2806cf13c0c2c048cc11beacd7f98fcde50a28f694fc33c6e3a7bfc09d41d0601a7b5a0f9a3351ae1d6b1a7e577cab +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/installfont-tl + +name installfont.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of installfont +containersize 348 +containerchecksum c42e6275449dd532bb60606e3833cb76af48a69123cd46ddf727ae215ba8dbd931cc32795cbfa720e86436da80b61bc7c6f8117eb9c1b434d0bc965c4949e8d1 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/installfont-tl + +name installfont.x86_64-solaris +category Package +revision 19743 +shortdesc x86_64-solaris files of installfont +containersize 344 +containerchecksum c8275a1713978834092e34b55adeb566fdbd10a3764a0705cc4b58849521ec5d7a4389d17a91a942e012c9c17707bc938d3df561733b73f9422b5280e048b862 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/installfont-tl name interactiveworkbook category Package revision 15878 -shortdesc LaTeX-based interactive PDF on the Web. +shortdesc LaTeX-based interactive PDF on the Web relocated 1 longdesc The package interactiveworkbook gives the user the ability to longdesc write LaTeX documents which, ultimately, create interactive longdesc question-and-answer Portable Document Format (PDF) tutorials longdesc meant to be used by Internet students and that, in particular, longdesc freely use mathematical notation. -runfiles size=17 - RELOC/tex/latex/interactiveworkbook/interactiveworkbook-web.sty - RELOC/tex/latex/interactiveworkbook/interactiveworkbook.sty +containersize 5216 +containerchecksum 2afca3ee8051065d4014cae8ee751f085abe6e62ea0af7d6c036bfd9ae6c3f38a295857d67c7e8f75a049fd618c82ad8b28a66f5c83a387969549cbf20ef159b +doccontainersize 401956 +doccontainerchecksum cdc12a36f547787fd1e6aaa5f9dc38b99092f4fd7e71095c1b5ca25730b4d2a5a5fc1636798978741538624091721c96220d91b8f1cc29d7f4698767ce0269f0 docfiles size=242 - RELOC/doc/latex/interactiveworkbook/documentation/interactiveworkbookmanual.pdf + RELOC/doc/latex/interactiveworkbook/documentation/interactiveworkbookmanual.pdf details="Package documentation" RELOC/doc/latex/interactiveworkbook/documentation/interactiveworkbookmanual.tex RELOC/doc/latex/interactiveworkbook/epsfiles/WS_FTP.LOG RELOC/doc/latex/interactiveworkbook/epsfiles/buttonappearance.eps @@ -79968,9 +130234,13 @@ docfiles size=242 RELOC/doc/latex/interactiveworkbook/samplefiles/popup.tex RELOC/doc/latex/interactiveworkbook/samplefiles/radio.pdf RELOC/doc/latex/interactiveworkbook/samplefiles/radio.tex +runfiles size=17 + RELOC/tex/latex/interactiveworkbook/interactiveworkbook-web.sty + RELOC/tex/latex/interactiveworkbook/interactiveworkbook.sty catalogue-ctan /macros/latex/contrib/interactiveworkbook -catalogue-date 2012-07-16 16:30:40 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics tutorial name interchar category Package @@ -79981,25 +130251,31 @@ longdesc The package manages character class schemes of XeTeX. Using longdesc this package, you may switch among different character class longdesc schemes. Migration commands are provided for make packages longdesc using this mechanism compatible with each others. -runfiles size=6 - RELOC/tex/xelatex/interchar/interchar.sty +containersize 5308 +containerchecksum 8beb2e016e1a6af0199708355b8f13aa1accc614135cdf1d6dd534eceb6fd5a8d9e611e4d6fe0d72da9effdef446549b01d5ea2aad043f3fe94b81fd3d4aa188 +doccontainersize 85428 +doccontainerchecksum c36dfea3f3f62660cae4f4653136269247bd109931b2eb6478eba29af089d42b6ea9f8afaf0c345c9364a68c1645e288d289345e13c8582e1639edaea20a26be docfiles size=29 - RELOC/doc/xelatex/interchar/README - RELOC/doc/xelatex/interchar/interchar.pdf + RELOC/doc/xelatex/interchar/README details="Readme" + RELOC/doc/xelatex/interchar/interchar.pdf details="Package documentation" RELOC/doc/xelatex/interchar/interchar.tex RELOC/doc/xelatex/interchar/interchardemo1.pdf RELOC/doc/xelatex/interchar/interchardemo1.tex RELOC/doc/xelatex/interchar/interchartest.pdf RELOC/doc/xelatex/interchar/interchartest.tex +runfiles size=6 + RELOC/tex/xelatex/interchar/interchar.sty +catalogue-contact-repository https://github.com/zohooo/interchar catalogue-ctan /macros/xetex/latex/interchar -catalogue-date 2015-03-01 06:19:26 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 +catalogue-topics xetex catalogue-version 0.2 name interfaces category Package revision 21474 -shortdesc Set parameters for other packages, conveniently. +shortdesc Set parameters for other packages, conveniently relocated 1 longdesc The package provides a small number of convenient macros that longdesc access features in other frequently-used packages, or provide @@ -80007,11 +130283,24 @@ longdesc interfaces to other useful facilities such as the pdfTeX longdesc \pdfelapsedtime primitive. Most of these macros use pgfkeys to longdesc provide a key-value syntax. The package also uses the package longdesc scrlfile from the Koma-Script bundle (for controlled loading of -longdesc other files) and etoolbox. The package is bundled with sub- -longdesc packages containing actual interfaces: by default, the package -longdesc loads all available sub-packages, but techniques are provided -longdesc for the user to select no more than the interfaces needed for a -longdesc job. +longdesc other files) and etoolbox. The package is bundled with +longdesc sub-packages containing actual interfaces: by default, the +longdesc package loads all available sub-packages, but techniques are +longdesc provided for the user to select no more than the interfaces +longdesc needed for a job. +containersize 27932 +containerchecksum 3c726602547ae05d0ca055d92b98a3cd5fce9709329fe9e769e5bb02c401a28b9b4cee53e5b1ee21dbb6c1c4223cf7a098aea227d615a45ced885c7c4ccab93e +doccontainersize 740556 +doccontainerchecksum a9b44711b1f38c48886f7b4a49b3a58ec5514995c9bed9a067d41cbf35dcc0093fcade7ef28693970f1f017924dc2f6f79d8c89a1efc847f7a8c264cb8f98ea9 +docfiles size=320 + RELOC/doc/latex/interfaces/README details="Readme" + RELOC/doc/latex/interfaces/interfaces.pdf details="Package documentation" +srccontainersize 67108 +srccontainerchecksum a93e77e7d12c91515e2d67f926ff6bfb76a278eae5880c60d2575580517d31f82d45656061f2999d5c4e73279a09dc5c5437351f10419b6ea92424d555e7e3a7 +srcfiles size=94 + RELOC/source/latex/interfaces/interfaces.drv + RELOC/source/latex/interfaces/interfaces.dtx + RELOC/source/latex/interfaces/interfaces.ins runfiles size=60 RELOC/tex/latex/interfaces/interfaces-LaTeX.sty RELOC/tex/latex/interfaces/interfaces-appendix.sty @@ -80034,22 +130323,16 @@ runfiles size=60 RELOC/tex/latex/interfaces/interfaces-truncate.sty RELOC/tex/latex/interfaces/interfaces-umrand.sty RELOC/tex/latex/interfaces/interfaces.sty -docfiles size=320 - RELOC/doc/latex/interfaces/README - RELOC/doc/latex/interfaces/interfaces.pdf -srcfiles size=94 - RELOC/source/latex/interfaces/interfaces.drv - RELOC/source/latex/interfaces/interfaces.dtx - RELOC/source/latex/interfaces/interfaces.ins catalogue-ctan /macros/latex/contrib/interfaces -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics package-supp catalogue-version 3.1 name interpreter category Package revision 27232 -shortdesc Translate input files on the fly. +shortdesc Translate input files on the fly relocated 1 longdesc The package preprocesses input files to a Lua(La)TeX run, on longdesc the fly. The user defines Lua regular expressions to search for @@ -80064,25 +130347,30 @@ 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. -runfiles size=8 - RELOC/tex/luatex/interpreter/interpreter.lua - RELOC/tex/luatex/interpreter/interpreter.sty - RELOC/tex/luatex/interpreter/interpreter.tex +containersize 6224 +containerchecksum 6dbbf39f9f0f357f45ae275458f03abfee625720b5f2dd3bbb5a78f60f4c0e8972d153c8d1647f147403f7c665e25147fd0c576cccb226a74630348a9f0a7381 +doccontainersize 122152 +doccontainerchecksum 3408bcb3cd3e6da67294c830870534d3cd620b7abc3ad35d4833e30c831bf93d11dc06d00547888268870c75f6a6e2e861448a0fa197e3e5a3c10aaccc6e4dd8 docfiles size=41 - RELOC/doc/luatex/interpreter/README + RELOC/doc/luatex/interpreter/README details="Readme" RELOC/doc/luatex/interpreter/i-doc.lua - RELOC/doc/luatex/interpreter/interpreter-doc.pdf + RELOC/doc/luatex/interpreter/interpreter-doc.pdf details="Package documentation" RELOC/doc/luatex/interpreter/interpreter-doc.tex RELOC/doc/luatex/interpreter/interpreter-doc.txt +runfiles size=8 + RELOC/tex/luatex/interpreter/interpreter.lua + RELOC/tex/luatex/interpreter/interpreter.sty + RELOC/tex/luatex/interpreter/interpreter.tex catalogue-ctan /macros/luatex/generic/interpreter -catalogue-date 2015-01-05 20:19:10 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics foreign-import macro-supp luatex catalogue-version 1.2 name interval category Package -revision 34840 -shortdesc Format mathematical intervals, ensuring proper spacing. +revision 50265 +shortdesc Format mathematical intervals, ensuring proper spacing relocated 1 longdesc When typing an open interval as $]a,b[$, a closing bracket is longdesc being used in place of an opening fence and vice versa. This @@ -80091,22 +130379,55 @@ longdesc The package attempts to solve this using: \interval{a}{b} -> longdesc [a,b] \interval[open]{a}{b} -> ]a,b[ \interval[open left]{a}{b} longdesc -> ]a,b] The package also supports fence scaling and ensures longdesc that the enclosing fences will end up having the proper closing -longdesc and opening types. TeX maths does not do this job properly. +longdesc and opening types. TeX maths does not do this job properly. The +longdesc package depends on pgfkeys. +containersize 1620 +containerchecksum 2a2fe0ebdc4754ca74962270ec48c69e6574c13e446628f34604b13584e7b14ff33add55744f03a1d28443b5ae87ba79926816bf44781951a729913ceeb4d6c9 +doccontainersize 325808 +doccontainerchecksum 22dcf2288d7f888e76967209ef1fd31bef66dcb9784a45126a945c4a0ea302c67ab4a35bd864355b29679131cf2cf36fc6172017599ccf3025c4ae1537362b9b +docfiles size=82 + RELOC/doc/latex/interval/README details="Readme" + RELOC/doc/latex/interval/interval.pdf details="Package documentation" + RELOC/doc/latex/interval/interval.tex runfiles size=1 RELOC/tex/latex/interval/interval.sty -docfiles size=80 - RELOC/doc/latex/interval/README - RELOC/doc/latex/interval/interval.pdf - RELOC/doc/latex/interval/interval.tex catalogue-ctan /macros/latex/contrib/interval -catalogue-date 2014-08-04 13:12:15 +0200 +catalogue-date 2019-03-06 17:01:59 +0100 catalogue-license lppl1.3 -catalogue-version 0.3 +catalogue-topics maths paren-mgmt +catalogue-version 0.4 + +name intopdf +category Package +revision 46988 +shortdesc Embed non-PDF files into PDF with hyperlink +relocated 1 +longdesc The package allows to embed non-PDF files (e.g., BibTeX) into +longdesc PDF with a hyperlink. +containersize 1612 +containerchecksum f1042ee7cff566ed6727e0f99467720b64bad3db271762030a71a73d9c7568907da96711844f8ae3e2d41760b32ec75ec8dee2b06144abc6a077020c72510b9e +doccontainersize 416032 +doccontainerchecksum 87fa2794d1d5fa5b7a5151badc6bc62df0e32aa14b6e3114c02c6718b0d5eb646d4bd00444f0d11e9f97f4e4d4679ca98248d5a46d363ade40b677ac084b995f +docfiles size=103 + RELOC/doc/latex/intopdf/README.md details="Readme" + RELOC/doc/latex/intopdf/intopdf.pdf details="Package documentation" +srccontainersize 2508 +srccontainerchecksum da0a9c3deeba1b26fe2fa30480fb5915f132cc43cc1a27ab505898275cbf7f2d0226782c190fb5b5edf6d49988529b71a0575fa8a8267e4a03acea121fbb305d +srcfiles size=2 + RELOC/source/latex/intopdf/intopdf.dtx +runfiles size=1 + RELOC/tex/latex/intopdf/intopdf.sty +catalogue-contact-repository https://github.com/zauguin/intopdf +catalogue-ctan /macros/latex/contrib/intopdf +catalogue-date 2018-04-29 07:15:59 +0200 +catalogue-license lppl1.3c +catalogue-topics hyper pdf-feat +catalogue-version 0.1.0 name intro-scientific category Package revision 15878 -shortdesc Introducing scientific/mathematical documents using LaTeX. +shortdesc Introducing scientific/mathematical documents using LaTeX relocated 1 longdesc "Writing Scientific Documents Using LaTeX" is an article longdesc introducing the use of LaTeX in typesetting scientific @@ -80114,65 +130435,225 @@ longdesc documents. It covers the basics of creating a new LaTeX longdesc document, special typesetting considerations, mathematical longdesc typesetting and graphics. It also touches on bibliographic data longdesc and BibTeX. +containersize 540 +containerchecksum 9919021461485fc22ed6ecc0b30d0a23c0a2217c76a07dd8acd87c9091c9d71be0e370ce1373f90e6f5a36a9638ce4312fc674b16ccd0846aab97d1b05674391 +doccontainersize 274748 +doccontainerchecksum 0daf84bdf7821aeb2f7971ed15de5546a13a444f3dc1b757f31490679350199fc893111109fc564aae2c8786fefc9e198e79e817bb318a1ad62698b6a5c79af5 docfiles size=113 RELOC/doc/latex/intro-scientific/Makefile - RELOC/doc/latex/intro-scientific/README + RELOC/doc/latex/intro-scientific/README details="Readme" RELOC/doc/latex/intro-scientific/earth-moon.pdf - RELOC/doc/latex/intro-scientific/scidoc.pdf + RELOC/doc/latex/intro-scientific/scidoc.pdf details="The document itself" RELOC/doc/latex/intro-scientific/scidoc.tex catalogue-ctan /info/intro-scientific -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics tut-latex catalogue-version 5th edition name inversepath category Package revision 15878 -shortdesc Calculate inverse file paths. +shortdesc Calculate inverse file paths relocated 1 longdesc The package calculates inverse relative paths. Such things may longdesc be useful, for example, when writing an auxiliary file to a longdesc different directory. -runfiles size=1 - RELOC/tex/latex/inversepath/inversepath.sty +containersize 1420 +containerchecksum d0d95399067922172799d17cc9b9b4fa7a79cf2928630c63441114c479bc60e72b3e5133b54f8f7925cbf90f5b419c89e07699ecf8e8269b43f969e584698043 +doccontainersize 73972 +doccontainerchecksum a9dba77a8aa851a5e915e368c5090fc83fd894c22efedffce97ee0915b4ec50fa72efc30f377891b5efc0749c12018228ce400cd4024369cfb81ff3fe62567b8 docfiles size=21 - RELOC/doc/latex/inversepath/README - RELOC/doc/latex/inversepath/inversepath.pdf + RELOC/doc/latex/inversepath/README details="Readme" + RELOC/doc/latex/inversepath/inversepath.pdf details="Package documentation" +srccontainersize 4432 +srccontainerchecksum de5bfe7ac5967f4ab02dd0931c5799c6c68c5c7a57d8b6c40a205e76546d8a23a6ac6be292c6a1cd4c8475bbf0eb229b6d198eabc66a17b2ea4b0ffd0c798323 srcfiles size=4 RELOC/source/latex/inversepath/inversepath.dtx RELOC/source/latex/inversepath/inversepath.ins +runfiles size=1 + RELOC/tex/latex/inversepath/inversepath.sty catalogue-ctan /macros/latex/contrib/inversepath -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl1.3 +catalogue-topics macro-supp catalogue-version 0.2 name invoice category Package -revision 31579 -shortdesc Generate invoices. +revision 48359 +shortdesc Generate invoices relocated 1 longdesc The package may be used for generating invoices. The package longdesc can deal with invisible expense items and deductions; output -longdesc may be presented in any of 10 different languages. The package -longdesc depends on the fp and calc packages for its calculations. -runfiles size=12 - RELOC/tex/latex/invoice/invoice.def - RELOC/tex/latex/invoice/invoice.sty -docfiles size=49 - RELOC/doc/latex/invoice/00README.tex - RELOC/doc/latex/invoice/copying - RELOC/doc/latex/invoice/history - RELOC/doc/latex/invoice/install - RELOC/doc/latex/invoice/invoice.pdf +longdesc may be presented in any of 10 different languages. A +longdesc long-standing bug has been removed. Numbers now can show the +longdesc comma as decimal separator. The package depends on the fp, calc +longdesc and siunitx for its calculations. +containersize 8756 +containerchecksum 7ddb8e05d88321f45cfe8618c740671e17e79ddf53fc2c11a3b9224a27ba1ebc815635484f3dfb4c849d90efb859412028df1e7f91a4e746cf812b19e5d1a269 +doccontainersize 101852 +doccontainerchecksum 7b827f575eca669f15767be9fd215e827a3e98b03ea3e1f353039f5190fa7d75a5e59dd5d89ada982518101fc5164449843656c60a65679dd82061dbfcb95ea2 +docfiles size=32 + RELOC/doc/latex/invoice/README details="Readme" + RELOC/doc/latex/invoice/invoice.pdf details="Package documentation" RELOC/doc/latex/invoice/invoice.tex +runfiles size=13 + RELOC/tex/latex/invoice/invoice.sty + RELOC/tex/latex/invoice/invoicelabels.sty +catalogue-also facture invoice2 catalogue-ctan /macros/latex/contrib/invoice -catalogue-date 2011-10-06 12:43:40 +0200 -catalogue-license gpl +catalogue-date 2018-08-07 13:30:16 +0200 +catalogue-license lppl1.3c +catalogue-topics invoice + +name invoice-class +category Package +revision 49749 +shortdesc Produces a standard US invoice from a CSV file +relocated 1 +longdesc This class produces a standard US commercial invoice using data +longdesc from a CSV file. Invoices can span multiple pages. The class is +longdesc configurable for different shipping addresses. +containersize 2752 +containerchecksum d31a445c1696741dbbdeb4f035358cdabc9a4ff74855c432dd2b6d66b0d690e65e400207bafdb643a1ae7bee3b3472393043088521a685251acaf9abadb08769 +doccontainersize 102896 +doccontainerchecksum a3ab71dd11f6aedcb7ce8a89f8b97f8a18ac4c610e3460fd13c1d31b8db0d347d25ff6520af7bd4d37453759d03db384df9e69b281307a36a1d05b4beed0a60f +docfiles size=46 + RELOC/doc/latex/invoice-class/README.md details="Readme" + RELOC/doc/latex/invoice-class/doc/duck-invoice.cfg + RELOC/doc/latex/invoice-class/doc/duck-invoice.csv + RELOC/doc/latex/invoice-class/doc/duck-invoice.pdf + RELOC/doc/latex/invoice-class/doc/duck-invoice.tex + RELOC/doc/latex/invoice-class/doc/ducks.csv + RELOC/doc/latex/invoice-class/doc/ducks.pdf + RELOC/doc/latex/invoice-class/doc/ducks.tex + RELOC/doc/latex/invoice-class/doc/invoice-class.pdf details="Package documentation" + RELOC/doc/latex/invoice-class/doc/invoice-class.tex +runfiles size=2 + RELOC/tex/latex/invoice-class/invoice-class.cls +catalogue-contact-repository https://github.com/amunn/invoice-class +catalogue-ctan /macros/latex/contrib/invoice-class +catalogue-date 2019-01-20 05:26:54 +0100 +catalogue-license lppl1.3 +catalogue-topics invoice csv-support +catalogue-version 1.0 + +name invoice2 +category Package +revision 46364 +shortdesc Intelligent invoices with LaTeX3 +relocated 1 +longdesc Typeset invoices with automatic VAT and calculation of totals. +longdesc Supports internationalization, invoices are typeset with +longdesc booktabs for readability. Does not support separate projects +longdesc per invoice. Can be used as a replacement for invoice in most +longdesc cases. +containersize 3388 +containerchecksum a790c180fedcf407b999e018cd96b1a0440b07f98c403e9c9e780863f2ecac4f4559ffb88f6a3e4f6080c89745d8a99e5ca6ee98299c7529972edebe68e00eaa +doccontainersize 626584 +doccontainerchecksum fc4baede264c6fd1ec94338829c6973c79c04f21284532194196063b3499becf2bbc2933644ca8b870608e8879315f724b173bbbd26548d24e1649929feed7d3 +docfiles size=161 + RELOC/doc/latex/invoice2/LICENSE-gpl-3.0.md + RELOC/doc/latex/invoice2/README.md details="Readme" + RELOC/doc/latex/invoice2/invoice2.pdf details="Package documentation" +srccontainersize 9120 +srccontainerchecksum cf014bdc2debe9e400d940232eb434b1354ba7f1a093c7389c5b1d332dd2c270e7e3c1f07d65ffe9fd5d2d088e59b3e846e2fc2598eb7297189d6c772b2b16ee +srcfiles size=11 + RELOC/source/latex/invoice2/invoice2.dtx + RELOC/source/latex/invoice2/invoice2.ins +runfiles size=7 + RELOC/tex/latex/invoice2/invoice2-english.trsl + RELOC/tex/latex/invoice2/invoice2-german.trsl + RELOC/tex/latex/invoice2/invoice2-swissgerman.trsl + RELOC/tex/latex/invoice2/invoice2.sty +catalogue-contact-home https://github.com/no-preserve-root/invoice2 +catalogue-ctan /macros/latex/contrib/invoice2 +catalogue-date 2018-01-17 06:29:29 +0100 +catalogue-license gpl3+ +catalogue-topics invoice + +name iodhbwm +category Package +revision 51175 +shortdesc Unofficial template of the DHBW Mannheim +relocated 1 +longdesc This package provides an unofficial template of the DHBW +longdesc Mannheim for the creation of bachelor thesis, studies or +longdesc project work with LaTeX. The aim of the package is the quick +longdesc creation of a basic framework without much effort. +containersize 41684 +containerchecksum e195f71672c1df24be65119ca4e6db8523a08e84b58a493b2c11f5f5c15ac6ff7758ef20b035e1511c0026cac36374a4d154edfaf9c196c14c34e265b83564e9 +doccontainersize 3076796 +doccontainerchecksum 10a7196a5695caff822dff87eed9d26969fa9bd91ecff686cdcd721a59c323dee6f431106a9ad4711a9955b8537365a856d1b628dffa4552cc36dec26a512d10 +docfiles size=1242 + RELOC/doc/latex/iodhbwm/README.md details="Readme" + RELOC/doc/latex/iodhbwm/examples/abstract/iodhbwm-auto-sections-with-abstract.pdf + RELOC/doc/latex/iodhbwm/examples/abstract/iodhbwm-auto-sections-with-abstract.tex + RELOC/doc/latex/iodhbwm/examples/abstract/my-abstract.inc.tex + RELOC/doc/latex/iodhbwm/examples/acronyms/iodhbwm-acro.pdf + RELOC/doc/latex/iodhbwm/examples/acronyms/iodhbwm-acro.tex + RELOC/doc/latex/iodhbwm/examples/appendix/iodhbwm-appendix-auto.pdf + RELOC/doc/latex/iodhbwm/examples/appendix/iodhbwm-appendix-auto.tex + RELOC/doc/latex/iodhbwm/examples/appendix/iodhbwm-appendix.pdf + RELOC/doc/latex/iodhbwm/examples/appendix/iodhbwm-appendix.tex + RELOC/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-custom-option.pdf + RELOC/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-custom-option.tex + RELOC/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-footcite.pdf + RELOC/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-footcite.tex + RELOC/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-rename-heading.pdf + RELOC/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-rename-heading.tex + RELOC/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-style-option.pdf + RELOC/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-style-option.tex + RELOC/doc/latex/iodhbwm/examples/customizing/iodhbwm-print.pdf + RELOC/doc/latex/iodhbwm/examples/customizing/iodhbwm-print.tex + RELOC/doc/latex/iodhbwm/examples/customizing/iodhbwm-replace-part-naming.pdf + RELOC/doc/latex/iodhbwm/examples/customizing/iodhbwm-replace-part-naming.tex + RELOC/doc/latex/iodhbwm/examples/customizing/iodhbwm-roman-numbers.pdf + RELOC/doc/latex/iodhbwm/examples/customizing/iodhbwm-roman-numbers.tex + RELOC/doc/latex/iodhbwm/examples/how-to-use-iodhbwm/iodhbwm-advanced-starter.pdf + RELOC/doc/latex/iodhbwm/examples/how-to-use-iodhbwm/iodhbwm-advanced-starter.tex + RELOC/doc/latex/iodhbwm/examples/how-to-use-iodhbwm/iodhbwm-recommended-starter.pdf + RELOC/doc/latex/iodhbwm/examples/how-to-use-iodhbwm/iodhbwm-recommended-starter.tex + RELOC/doc/latex/iodhbwm/examples/how-to-use-iodhbwm/iodhbwm-simple-starter.pdf + RELOC/doc/latex/iodhbwm/examples/how-to-use-iodhbwm/iodhbwm-simple-starter.tex + RELOC/doc/latex/iodhbwm/examples/listings/iodhbwm-listings-color.pdf + RELOC/doc/latex/iodhbwm/examples/listings/iodhbwm-listings-color.tex + RELOC/doc/latex/iodhbwm/examples/listings/iodhbwm-listings.pdf + RELOC/doc/latex/iodhbwm/examples/listings/iodhbwm-listings.tex + RELOC/doc/latex/iodhbwm/examples/references/iodhbwm-hyperref.pdf + RELOC/doc/latex/iodhbwm/examples/references/iodhbwm-hyperref.tex + RELOC/doc/latex/iodhbwm/examples/references/iodhbwm-references.pdf + RELOC/doc/latex/iodhbwm/examples/references/iodhbwm-references.tex + RELOC/doc/latex/iodhbwm/examples/titlepages/img/penguin-158298-pixabay.png + RELOC/doc/latex/iodhbwm/examples/titlepages/iodhbwm-custom-titlepage.pdf + RELOC/doc/latex/iodhbwm/examples/titlepages/iodhbwm-custom-titlepage.tex + RELOC/doc/latex/iodhbwm/examples/titlepages/iodhbwm-titlepage-logo.pdf + RELOC/doc/latex/iodhbwm/examples/titlepages/iodhbwm-titlepage-logo.tex + RELOC/doc/latex/iodhbwm/examples/titlepages/my-titlepage.tex + RELOC/doc/latex/iodhbwm/iodhbwm.pdf details="Package documentation" language="de" + RELOC/doc/latex/iodhbwm/iodhbwm.tex +runfiles size=24 + RELOC/tex/latex/iodhbwm/dhbw-declaration.def + RELOC/tex/latex/iodhbwm/dhbw-logo.png + RELOC/tex/latex/iodhbwm/dhbw-titlepage-ba.def + RELOC/tex/latex/iodhbwm/dhbw-titlepage-pa.def + RELOC/tex/latex/iodhbwm/dhbw-titlepage-sa.def + RELOC/tex/latex/iodhbwm/dhbw-titlepage.def + RELOC/tex/latex/iodhbwm/iodhbwm-templates.sty + RELOC/tex/latex/iodhbwm/iodhbwm.cls +catalogue-contact-bugs https://github.com/faltfe/iodhbwm/issues +catalogue-contact-repository https://github.com/faltfe/iodhbwm/ +catalogue-ctan /macros/latex/contrib/iodhbwm +catalogue-date 2019-05-21 17:55:47 +0200 +catalogue-license lppl1.3 +catalogue-topics class dissertation misc-paper +catalogue-version 1.1.0 name ionumbers category Package revision 33457 -shortdesc Restyle numbers in maths mode. +shortdesc Restyle numbers in maths mode relocated 1 longdesc 'ionumbers' stands for 'input/output numbers'. The package longdesc restyles numbers in maths mode. If a number in the input file @@ -80189,83 +130670,505 @@ longdesc (English) or points (German) as separators. E.g., the input longdesc $1234.567890$ can be output as $1\,234.\,567\,890$. Finally, an longdesc e starts the exponent of the number. For example, $21e6$ may be longdesc output as $26\times10\,^{6}$. -runfiles size=7 - RELOC/tex/latex/ionumbers/ionumbers.sty +containersize 4952 +containerchecksum f964955ea6470a8906dd7623bd6959aad72ab4da5cbd4c32aa78cb2350cda05a1f577316ef97cdec9658deda027429462b70bcdad18024f255191b2f6cd7f99a +doccontainersize 482812 +doccontainerchecksum 5bf57ed5617846d10834f880e4a1c029547f1ac678a52be3e79613803b4e6cd0986887f2a44a0a4bfabaf9134ef39c44e420a12047fee81fd34243ec42c5262e docfiles size=134 RELOC/doc/latex/ionumbers/COPYING RELOC/doc/latex/ionumbers/Makefile - RELOC/doc/latex/ionumbers/README - RELOC/doc/latex/ionumbers/ionumbers.pdf + RELOC/doc/latex/ionumbers/README details="Readme" + RELOC/doc/latex/ionumbers/ionumbers.pdf details="Package documentation" RELOC/doc/latex/ionumbers/ionumbers_test.pdf RELOC/doc/latex/ionumbers/ionumbers_test.tex +srccontainersize 12992 +srccontainerchecksum f7d0f56de1a00761104fa7e9aa13f1ca4b9ef97051ef2dd6d28dba3066998d53aeae015d956dec0d3c771d85f6553c5835e4a9bd9d83dd4feb65591d6c613fb4 srcfiles size=16 RELOC/source/latex/ionumbers/ionumbers.dtx RELOC/source/latex/ionumbers/ionumbers.ins +runfiles size=7 + RELOC/tex/latex/ionumbers/ionumbers.sty catalogue-ctan /macros/latex/contrib/ionumbers -catalogue-date 2014-04-15 20:08:53 +0200 +catalogue-date 2018-01-06 12:59:56 +0100 catalogue-license gpl +catalogue-topics numbers catalogue-version 0.3.3 name iopart-num category Package revision 15878 -shortdesc Numeric citation style for IOP journals. +shortdesc Numeric citation style for IOP journals relocated 1 longdesc A BibTeX style providing numeric citation in Harvard-like longdesc format. Intended for use with Institute of Physics (IOP) longdesc journals, including Journal of Physics. -runfiles size=9 - RELOC/bibtex/bst/iopart-num/iopart-num.bst +containersize 7864 +containerchecksum 49fadfe2a8a1796131be814b170e270e7d39c035419d7e546e57d2ef1fea13d48b2b022eda463829e1bdbe60233d361773321d86070420ad2b63b48154adf18d +doccontainersize 63076 +doccontainerchecksum 167b0612883558f74d7696a6c9481fbb75e9ef6e7760edc4f79d81b3e1d7a344dc1efbf638eb4f5ba69be7002391211024f7aafed2e08e19fe559b58b0f7b1b0 docfiles size=21 - RELOC/doc/bibtex/iopart-num/README + RELOC/doc/bibtex/iopart-num/README details="Readme" RELOC/doc/bibtex/iopart-num/iopart-num.bib - RELOC/doc/bibtex/iopart-num/iopart-num.pdf + RELOC/doc/bibtex/iopart-num/iopart-num.pdf details="Package documentation" RELOC/doc/bibtex/iopart-num/iopart-num.tex +runfiles size=9 + RELOC/bibtex/bst/iopart-num/iopart-num.bst catalogue-ctan /biblio/bibtex/contrib/iopart-num -catalogue-date 2012-04-09 12:10:14 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics bibtex-supp journalpub catalogue-version 2.1 name ipaex category Package -revision 35583 -shortdesc IPA and IPAex fonts from Information-technology Promotion Agency, Japan. +revision 45751 +shortdesc IPA (Japanese) fonts relocated 1 longdesc The fonts provide fixed-width glyphs for Kana and Kanji longdesc characters, proportional width glyphs for Western characters. -runfiles size=10379 +containersize 15874224 +containerchecksum 0fb4737a3b524a4c77d144c4e21fb2bb11a36f68cbbc9f4c34497d6605d798231b1a366783fa887b86b253b1b842d53fbc7363d1d1537c54c3ec8f540f9dc0f9 +doccontainersize 7448 +doccontainerchecksum aa4eede5d7d8bdbf0d62f3e59d9ba6d3b010f6833ef464b134c64511bed1e0542ba2bfbff644551fdda2412fc65a48950edec0ba03702a03b33bf855852f00d5 +docfiles size=8 + RELOC/doc/fonts/ipaex/IPA_Font_License_Agreement_v1.0.txt + RELOC/doc/fonts/ipaex/README details="Readme" + RELOC/doc/fonts/ipaex/Readme_IPAexfont00301.txt + RELOC/doc/fonts/ipaex/Readme_IPAfont00303.txt +runfiles size=10350 RELOC/fonts/truetype/public/ipaex/ipaexg.ttf RELOC/fonts/truetype/public/ipaex/ipaexm.ttf RELOC/fonts/truetype/public/ipaex/ipag.ttf RELOC/fonts/truetype/public/ipaex/ipagp.ttf RELOC/fonts/truetype/public/ipaex/ipam.ttf RELOC/fonts/truetype/public/ipaex/ipamp.ttf -docfiles size=8 - RELOC/doc/fonts/ipaex/IPA_Font_License_Agreement_v1.0.txt - RELOC/doc/fonts/ipaex/README - RELOC/doc/fonts/ipaex/Readme_IPAexfont00201.txt - RELOC/doc/fonts/ipaex/Readme_IPAfont00303.txt +catalogue-also ipaex-type1 +catalogue-contact-home http://ipafont.ipa.go.jp/ catalogue-ctan /fonts/ipaex -catalogue-date 2014-11-14 13:18:39 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license other-free +catalogue-topics font font-ttf japanese name ipaex-type1 category Package -revision 31927 -shortdesc IPAex fonts converted to Type-1 format Unicode subfonts. +revision 47700 +shortdesc IPAex fonts converted to Type-1 format Unicode subfonts relocated 1 longdesc The package contains the IPAex Fonts converted into Unicode longdesc subfonts in Type1 format, which is most suitable for use with longdesc the CJK package. Font conversion was done with ttf2pt1. execute addMap ipaex-type1.map -runfiles size=4266 +containersize 13160912 +containerchecksum 0dd513aa3cbb9dba7e1099f7f08d839e80002fc5f5bcfc2a2a013dc799a0a6389f128fe72ebc32b673afd66f3ebbc7fab9b97c31763f94b7ad64eebc83b2f569 +doccontainersize 369204 +doccontainerchecksum 1c2974ec35c0291207ddf560b6cef4cb5b161fb59e80a6508b4f88aab5ecf93c6a3dda2a3107a40e838235f5af22ce23704bf4f13fc4a0b344f0805c29655605 +docfiles size=100 + RELOC/doc/fonts/ipaex-type1/LICENSE + RELOC/doc/fonts/ipaex-type1/README-ja.md details="Readme (Japanese)" language="ja" + RELOC/doc/fonts/ipaex-type1/README.md details="Readme (English)" language="en" + RELOC/doc/fonts/ipaex-type1/sample-ipaex-type1.pdf details="Font samples" language="ja" + RELOC/doc/fonts/ipaex-type1/sample-ipaex-type1.tex +runfiles size=5874 + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-ly1.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-ot1.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-t1.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-ts1.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u00.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u01.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u02.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0200.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0201.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0202.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0203.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0204.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0205.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0206.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0207.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0208.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0209.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u020a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u020b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u020d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u020e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u020f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0212.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0213.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0214.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0215.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0216.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0217.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0218.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0219.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u021c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u021d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u021e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u021f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0221.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0222.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0223.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0226.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0228.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0229.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u022a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u022b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u022c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u022d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0231.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0233.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0234.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0235.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0236.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0237.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0238.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u023a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u023c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u023d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u023f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0240.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0241.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0243.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0246.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0247.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0248.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u024a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u024b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u024c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u024d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u024e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0250.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0251.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0252.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0254.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0255.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0257.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0259.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u025a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u025b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u025c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u025d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u025e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u025f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0260.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0262.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0263.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0264.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0266.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0267.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0268.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0269.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u026a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u026c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u026e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u026f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0270.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0271.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0273.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0274.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0276.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0277.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0279.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u027a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u027b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u027c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u027d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u027e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u027f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0280.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0282.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0283.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0284.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0285.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0286.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0289.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u028a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u028b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u028d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u028e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u028f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0292.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0294.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0295.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0296.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0297.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u0298.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u029a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u029d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u029e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u029f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u02a0.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u02a1.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u02a3.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u02a4.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u02a5.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u02a6.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u02f8.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u03.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u04.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u1e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u1f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u20.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u21.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u22.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u23.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u24.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u25.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u26.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u27.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u29.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u2e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u2f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u30.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u31.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u32.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u33.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u34.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u35.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u36.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u37.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u38.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u39.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u3a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u3b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u3c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u3d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u3e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u3f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u40.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u41.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u42.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u43.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u44.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u45.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u46.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u47.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u48.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u49.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u4a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u4b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u4c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u4d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u4e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u4f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u50.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u51.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u52.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u53.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u54.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u55.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u56.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u57.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u58.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u59.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u5a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u5b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u5c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u5d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u5e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u5f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u60.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u61.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u62.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u63.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u64.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u65.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u66.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u67.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u68.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u69.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u6a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u6b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u6c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u6d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u6e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u6f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u70.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u71.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u72.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u73.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u74.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u75.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u76.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u77.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u78.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u79.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u7a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u7b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u7c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u7d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u7e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u7f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u80.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u81.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u82.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u83.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u84.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u85.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u86.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u87.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u88.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u89.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u8a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u8b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u8c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u8d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u8e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u8f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u90.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u91.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u92.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u93.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u94.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u95.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u96.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u97.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u98.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u99.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u9a.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u9b.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u9c.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u9d.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u9e.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-u9f.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-uf0.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-uf8.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-uf9.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-ufa.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-ufe.enc + RELOC/fonts/enc/dvips/ipaex-type1/ipxt1-uff.enc RELOC/fonts/map/dvips/ipaex-type1/ipaex-type1.map + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-ly1.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-ot1.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-t1.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-ts1.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u00.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u01.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u02.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0200.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0201.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0202.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0203.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0204.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0205.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0206.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0207.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0208.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0209.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u020a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u020b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u020d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u020e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u020f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0212.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0213.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0214.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0215.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0216.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0217.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0218.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0219.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u021c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u021d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u021e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u021f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0221.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0222.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0223.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0226.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0228.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0229.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u022a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u022b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u022c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u022d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0231.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0233.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0234.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0235.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0236.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0237.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0238.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u023a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u023c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u023d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u023f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0240.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0241.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0243.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0246.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0247.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0248.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u024a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u024b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u024c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u024d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u024e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0250.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0251.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0252.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0254.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0255.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0257.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0259.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u025a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u025b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u025c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u025d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u025e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u025f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0260.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0262.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0263.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0264.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0266.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0267.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0268.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0269.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u026a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u026c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u026e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u026f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0270.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0271.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0273.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0274.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0276.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0277.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0279.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u027a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u027b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u027c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u027d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u027e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u027f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0280.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0282.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0283.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0284.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0285.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0286.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0289.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u028a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u028b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u028d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u028e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u028f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0292.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0294.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0295.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0296.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0297.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u0298.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u029a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u029d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u029e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u029f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u02a0.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u02a1.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u02a3.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u02a4.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u02a5.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u02a6.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u02f8.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u03.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u04.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u1e.tfm @@ -80399,12 +131302,139 @@ runfiles size=4266 RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-ufa.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-ufe.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-uff.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-ly1.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-ot1.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-t1.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-ts1.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u00.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u01.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u02.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0200.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0201.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0202.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0203.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0204.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0205.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0206.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0207.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0208.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0209.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u020a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u020b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u020d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u020e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u020f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0212.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0213.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0214.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0215.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0216.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0217.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0218.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0219.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u021c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u021d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u021e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u021f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0221.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0222.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0223.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0226.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0228.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0229.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u022a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u022b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u022c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u022d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0231.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0233.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0234.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0235.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0236.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0237.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0238.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u023a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u023c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u023d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u023f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0240.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0241.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0243.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0246.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0247.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0248.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u024a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u024b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u024c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u024d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u024e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0250.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0251.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0252.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0254.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0255.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0257.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0259.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u025a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u025b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u025c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u025d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u025e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u025f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0260.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0262.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0263.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0264.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0266.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0267.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0268.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0269.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u026a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u026c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u026e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u026f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0270.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0271.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0273.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0274.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0276.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0277.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0279.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u027a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u027b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u027c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u027d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u027e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u027f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0280.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0282.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0283.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0284.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0285.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0286.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0289.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u028a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u028b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u028d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u028e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u028f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0292.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0294.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0295.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0296.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0297.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u0298.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u029a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u029d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u029e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u029f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u02a0.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u02a1.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u02a3.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u02a4.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u02a5.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u02a6.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u02f8.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u03.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u04.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u1e.tfm @@ -80537,12 +131567,139 @@ runfiles size=4266 RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-ufa.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-ufe.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-uff.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-ly1.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-ot1.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-t1.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-ts1.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u00.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u01.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u02.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0200.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0201.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0202.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0203.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0204.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0205.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0206.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0207.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0208.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0209.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u020a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u020b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u020d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u020e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u020f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0212.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0213.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0214.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0215.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0216.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0217.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0218.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0219.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u021c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u021d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u021e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u021f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0221.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0222.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0223.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0226.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0228.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0229.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u022a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u022b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u022c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u022d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0231.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0233.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0234.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0235.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0236.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0237.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0238.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u023a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u023c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u023d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u023f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0240.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0241.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0243.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0246.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0247.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0248.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u024a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u024b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u024c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u024d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u024e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0250.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0251.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0252.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0254.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0255.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0257.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0259.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u025a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u025b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u025c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u025d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u025e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u025f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0260.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0262.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0263.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0264.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0266.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0267.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0268.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0269.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u026a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u026c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u026e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u026f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0270.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0271.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0273.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0274.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0276.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0277.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0279.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u027a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u027b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u027c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u027d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u027e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u027f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0280.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0282.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0283.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0284.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0285.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0286.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0289.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u028a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u028b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u028d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u028e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u028f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0292.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0294.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0295.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0296.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0297.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u0298.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u029a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u029d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u029e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u029f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u02a0.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u02a1.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u02a3.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u02a4.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u02a5.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u02a6.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u02f8.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u03.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u04.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u1e.tfm @@ -80676,12 +131833,139 @@ runfiles size=4266 RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-ufa.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-ufe.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-uff.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-ly1.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-ot1.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-t1.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-ts1.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u00.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u01.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u02.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0200.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0201.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0202.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0203.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0204.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0205.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0206.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0207.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0208.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0209.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u020a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u020b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u020d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u020e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u020f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0212.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0213.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0214.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0215.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0216.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0217.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0218.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0219.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u021c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u021d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u021e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u021f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0221.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0222.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0223.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0226.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0228.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0229.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u022a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u022b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u022c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u022d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0231.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0233.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0234.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0235.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0236.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0237.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0238.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u023a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u023c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u023d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u023f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0240.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0241.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0243.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0246.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0247.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0248.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u024a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u024b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u024c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u024d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u024e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0250.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0251.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0252.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0254.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0255.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0257.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0259.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u025a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u025b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u025c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u025d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u025e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u025f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0260.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0262.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0263.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0264.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0266.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0267.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0268.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0269.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u026a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u026c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u026e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u026f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0270.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0271.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0273.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0274.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0276.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0277.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0279.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u027a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u027b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u027c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u027d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u027e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u027f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0280.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0282.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0283.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0284.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0285.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0286.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0289.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u028a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u028b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u028d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u028e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u028f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0292.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0294.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0295.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0296.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0297.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u0298.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u029a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u029d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u029e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u029f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u02a0.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u02a1.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u02a3.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u02a4.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u02a5.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u02a6.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u02f8.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u03.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u04.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u1e.tfm @@ -80814,12 +132098,139 @@ runfiles size=4266 RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-ufa.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-ufe.tfm RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-uff.tfm + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-ly1.pfb RELOC/fonts/type1/public/ipaex-type1/ipxg-r-ot1.pfb RELOC/fonts/type1/public/ipaex-type1/ipxg-r-t1.pfb RELOC/fonts/type1/public/ipaex-type1/ipxg-r-ts1.pfb RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u00.pfb RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u01.pfb RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u02.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0200.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0201.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0202.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0203.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0204.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0205.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0206.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0207.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0208.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0209.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u020a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u020b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u020d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u020e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u020f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0212.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0213.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0214.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0215.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0216.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0217.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0218.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0219.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u021c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u021d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u021e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u021f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0221.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0222.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0223.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0226.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0228.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0229.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u022a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u022b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u022c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u022d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0231.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0233.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0234.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0235.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0236.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0237.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0238.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u023a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u023c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u023d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u023f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0240.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0241.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0243.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0246.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0247.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0248.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u024a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u024b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u024c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u024d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u024e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0250.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0251.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0252.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0254.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0255.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0257.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0259.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u025a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u025b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u025c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u025d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u025e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u025f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0260.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0262.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0263.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0264.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0266.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0267.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0268.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0269.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u026a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u026c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u026e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u026f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0270.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0271.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0273.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0274.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0276.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0277.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0279.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u027a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u027b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u027c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u027d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u027e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u027f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0280.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0282.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0283.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0284.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0285.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0286.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0289.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u028a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u028b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u028d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u028e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u028f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0292.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0294.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0295.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0296.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0297.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u0298.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u029a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u029d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u029e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u029f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u02a0.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u02a1.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u02a3.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u02a4.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u02a5.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u02a6.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u02f8.pfb RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u03.pfb RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u04.pfb RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u1e.pfb @@ -80953,12 +132364,139 @@ runfiles size=4266 RELOC/fonts/type1/public/ipaex-type1/ipxg-r-ufa.pfb RELOC/fonts/type1/public/ipaex-type1/ipxg-r-ufe.pfb RELOC/fonts/type1/public/ipaex-type1/ipxg-r-uff.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-ly1.pfb RELOC/fonts/type1/public/ipaex-type1/ipxm-r-ot1.pfb RELOC/fonts/type1/public/ipaex-type1/ipxm-r-t1.pfb RELOC/fonts/type1/public/ipaex-type1/ipxm-r-ts1.pfb RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u00.pfb RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u01.pfb RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u02.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0200.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0201.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0202.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0203.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0204.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0205.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0206.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0207.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0208.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0209.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u020a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u020b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u020d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u020e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u020f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0212.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0213.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0214.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0215.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0216.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0217.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0218.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0219.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u021c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u021d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u021e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u021f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0221.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0222.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0223.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0226.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0228.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0229.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u022a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u022b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u022c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u022d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0231.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0233.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0234.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0235.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0236.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0237.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0238.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u023a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u023c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u023d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u023f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0240.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0241.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0243.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0246.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0247.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0248.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u024a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u024b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u024c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u024d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u024e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0250.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0251.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0252.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0254.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0255.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0257.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0259.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u025a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u025b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u025c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u025d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u025e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u025f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0260.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0262.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0263.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0264.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0266.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0267.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0268.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0269.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u026a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u026c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u026e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u026f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0270.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0271.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0273.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0274.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0276.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0277.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0279.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u027a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u027b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u027c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u027d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u027e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u027f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0280.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0282.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0283.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0284.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0285.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0286.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0289.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u028a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u028b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u028d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u028e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u028f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0292.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0294.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0295.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0296.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0297.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u0298.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u029a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u029d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u029e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u029f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u02a0.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u02a1.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u02a3.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u02a4.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u02a5.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u02a6.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u02f8.pfb RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u03.pfb RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u04.pfb RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u1e.pfb @@ -81093,38 +132631,123 @@ runfiles size=4266 RELOC/fonts/type1/public/ipaex-type1/ipxm-r-ufe.pfb RELOC/fonts/type1/public/ipaex-type1/ipxm-r-uff.pfb RELOC/tex/latex/ipaex-type1/c70ipxg.fd + RELOC/tex/latex/ipaex-type1/c70ipxg.fdx RELOC/tex/latex/ipaex-type1/c70ipxga.fd + RELOC/tex/latex/ipaex-type1/c70ipxga.fdx RELOC/tex/latex/ipaex-type1/c70ipxm.fd + RELOC/tex/latex/ipaex-type1/c70ipxm.fdx RELOC/tex/latex/ipaex-type1/c70ipxma.fd + RELOC/tex/latex/ipaex-type1/c70ipxma.fdx + RELOC/tex/latex/ipaex-type1/ipaex-type1.sty + RELOC/tex/latex/ipaex-type1/ly1ipxg.fd + RELOC/tex/latex/ipaex-type1/ly1ipxm.fd RELOC/tex/latex/ipaex-type1/ot1ipxg.fd RELOC/tex/latex/ipaex-type1/ot1ipxm.fd RELOC/tex/latex/ipaex-type1/t1ipxg.fd RELOC/tex/latex/ipaex-type1/t1ipxm.fd RELOC/tex/latex/ipaex-type1/ts1ipxg.fd RELOC/tex/latex/ipaex-type1/ts1ipxm.fd -docfiles size=113 - RELOC/doc/fonts/ipaex-type1/LICENSE - RELOC/doc/fonts/ipaex-type1/README-en - RELOC/doc/fonts/ipaex-type1/README-ja - RELOC/doc/fonts/ipaex-type1/c70ipxg.fdx - RELOC/doc/fonts/ipaex-type1/c70ipxga.fdx - RELOC/doc/fonts/ipaex-type1/c70ipxm.fdx - RELOC/doc/fonts/ipaex-type1/c70ipxma.fdx - RELOC/doc/fonts/ipaex-type1/sample-ipaex-type1.pdf - RELOC/doc/fonts/ipaex-type1/sample-ipaex-type1.tex catalogue-ctan /fonts/ipaex-type1 -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-05-13 17:45:13 +0200 catalogue-license other-free -catalogue-version 0.3b +catalogue-topics font font-type1 japanese +catalogue-version 0.5 + +name iscram +category Package +revision 45801 +shortdesc A LaTeX class to publish article to ISCRAM conferences +relocated 1 +longdesc LaTeX class to publish article to ISCRAM (International +longdesc Conference on Information Systems for Crisis Response and +longdesc Management). +containersize 2980 +containerchecksum 6111c93a14c28572c17a1336fdf00ddd16b6c04b34b4a10a1b4a5e46742852b949cc99438397895de36632c9f2fd57c4940a0ffa458ac148b4a5e49707e5ca79 +doccontainersize 269984 +doccontainerchecksum 24f5ebac7b8bfa826cb9ebaaeac0ec82db18807c5c3417dac53c6b636f6cb32b60901ef51f0d545cbe185ef0eef034404d3120c1211bf65c4ed4d155c67e19d2 +docfiles size=75 + RELOC/doc/latex/iscram/HMI.pdf + RELOC/doc/latex/iscram/README details="Readme" + RELOC/doc/latex/iscram/iscram-class-doc.bib + RELOC/doc/latex/iscram/iscram-class-doc.pdf details="Package documenatation" + RELOC/doc/latex/iscram/iscram-class-doc.tex +runfiles size=2 + RELOC/tex/latex/iscram/iscram.cls +catalogue-ctan /macros/latex/contrib/iscram +catalogue-date 2018-01-07 12:14:32 +0100 +catalogue-license lppl1.3 +catalogue-topics confproc +catalogue-version 1.1 + +name iso +category Package +revision 15878 +shortdesc Generic ISO standards typesetting macros +relocated 1 +longdesc Generic class and package files for typesetting ISO +longdesc International Standard documents. Several standard documents +longdesc have been printed by ISO from camera-ready copy prepared using +longdesc LaTeX and these files. The class makes use of the isorot +longdesc package, rather than use other mechanisms directly. +containersize 15220 +containerchecksum 1ee4026383b28594c02ee7a3fde24228ac777814456fd8580954b1708ba3f735b563beaa291cea859c6492f8b9cc488635b67e373fc3afbd8f884a3b6d30a392 +doccontainersize 812136 +doccontainerchecksum f5c874d3e00fb451f81a52f5711ac0b1c39ce48eca50a6edc0b1049bf4aeec43830fb534e207d852bb440c96bcb86d960d5e2e0670610d7cb9eabad2ff1451a3 +docfiles size=294 + RELOC/doc/latex/iso/README details="Readme" + RELOC/doc/latex/iso/iso4ht.pdf + RELOC/doc/latex/iso/isoe.pdf + RELOC/doc/latex/iso/isofwdbp.tex + RELOC/doc/latex/iso/isoman.pdf details="Package manual" + RELOC/doc/latex/iso/isoman.tex + RELOC/doc/latex/iso/trfwd1.tex + RELOC/doc/latex/iso/tspasfwdbp.tex +srccontainersize 48644 +srccontainerchecksum c40bd267337a62dc7dbf437087e36e569b83da7806f801017ad3aa8b3059409cfc51c32d83e9991b7fa0c9b2e7eb5aed22f841670196fa9f7080e5398a098d74 +srcfiles size=61 + RELOC/source/latex/iso/iso4ht.dtx + RELOC/source/latex/iso/iso4ht.ins + RELOC/source/latex/iso/isoe.dtx + RELOC/source/latex/iso/isoe.ins +runfiles size=27 + RELOC/makeindex/iso/iso.ist + RELOC/tex/latex/iso/askincv1.sty + RELOC/tex/latex/iso/iso10.clo + RELOC/tex/latex/iso/iso11.clo + RELOC/tex/latex/iso/iso9.clo + RELOC/tex/latex/iso/isov2.4ht + RELOC/tex/latex/iso/isov2.cls +catalogue-also iso10303 +catalogue-ctan /macros/latex/contrib/isostds/iso +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics typeset-std +catalogue-version 2.4 name iso10303 category Package revision 15878 -shortdesc Typesetting the STEP standards. +shortdesc Typesetting the STEP standards relocated 1 longdesc Class and package files building on iso for typesetting the ISO longdesc 10303 (STEP) standards. Standard documents prepared using these longdesc packages have been published by ISO. +containersize 43536 +containerchecksum 40a36335c15b453d2e5b5abc29b2ec1891c6f1502ee2f8ffdebd2f9a159cea3aa28eba7c661c12a0445a4f713b77079d8b965ac955123fc81225cfd4491e5317 +doccontainersize 686156 +doccontainerchecksum 24c2a83508282a348d6748bbf722962f3ffcd193cd1cfafc4ca1e87c60622e463e5fd382ff65235590f2a9d629e8f40588630810036d2195172f61d1448e3dfa +docfiles size=233 + RELOC/doc/latex/iso10303/README details="Readme" + RELOC/doc/latex/iso10303/step4ht.pdf + RELOC/doc/latex/iso10303/stepe.pdf + RELOC/doc/latex/iso10303/stepman.pdf details="Package manual" +srccontainersize 36244 +srccontainerchecksum 27cb8dd236ad5f249595d963282054eb40de35d135cbd6ad6a106941955e0abf8777602fc341233d22feb1073980341d31b6e939a69097d3776d7e20096fdc18 +srcfiles size=49 + RELOC/source/latex/iso10303/step4ht.dtx + RELOC/source/latex/iso10303/step4ht.ins + RELOC/source/latex/iso10303/stepe.dtx + RELOC/source/latex/iso10303/stepe.ins runfiles size=87 RELOC/tex/latex/iso10303/aicv1.sty RELOC/tex/latex/iso10303/apendint.tex @@ -81174,25 +132797,16 @@ runfiles size=87 RELOC/tex/latex/iso10303/stepv13.4ht RELOC/tex/latex/iso10303/stepv13.sty RELOC/tex/latex/iso10303/stppdlst.tex -docfiles size=233 - RELOC/doc/latex/iso10303/README - RELOC/doc/latex/iso10303/step4ht.pdf - RELOC/doc/latex/iso10303/stepe.pdf - RELOC/doc/latex/iso10303/stepman.pdf -srcfiles size=49 - RELOC/source/latex/iso10303/step4ht.dtx - RELOC/source/latex/iso10303/step4ht.ins - RELOC/source/latex/iso10303/stepe.dtx - RELOC/source/latex/iso10303/stepe.ins catalogue-ctan /macros/latex/contrib/isostds/iso10303 -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics typeset-std catalogue-version 1.5 name isodate category Package revision 16613 -shortdesc Tune the output format of dates according to language. +shortdesc Tune the output format of dates according to language relocated 1 longdesc This package provides ten output formats of the commands longdesc \today, \printdate, \printdateTeX, and \daterange (partly @@ -81206,40 +132820,47 @@ longdesc date range and leaves out unnecessary year or month entries. longdesc This package supports German (old and new rules), Austrian, US longdesc English, British English, French, Danish, Swedish, and longdesc Norwegian. -runfiles size=17 - RELOC/tex/latex/isodate/danish.idf - RELOC/tex/latex/isodate/english.idf - RELOC/tex/latex/isodate/french.idf - RELOC/tex/latex/isodate/german.idf - RELOC/tex/latex/isodate/isodate.sty - RELOC/tex/latex/isodate/isodateo.sty - RELOC/tex/latex/isodate/italian.idf - RELOC/tex/latex/isodate/norsk.idf - RELOC/tex/latex/isodate/swedish.idf +containersize 7208 +containerchecksum 5fa145cde64155e9a4ca7236cf41449169ce0d1aa88381b46935641ed94d166429c1b139c852f96526dda270fb85736ca54e8864c32452996109b0061003639d +doccontainersize 422664 +doccontainerchecksum 75118f62de8568c9826dcc11b753511f57b7fd237cac6aab1c75377121fad2179c81ae5ec5f64ec127a299beb88abc209727d17b1ded623718c7594bb7ca5da0 docfiles size=127 RELOC/doc/latex/isodate/ChangeLog - RELOC/doc/latex/isodate/README + RELOC/doc/latex/isodate/README details="Package Readme" RELOC/doc/latex/isodate/getversion.tex - RELOC/doc/latex/isodate/isodate.pdf + RELOC/doc/latex/isodate/isodate.pdf details="Package documentation" RELOC/doc/latex/isodate/isodate.xml RELOC/doc/latex/isodate/isodateo.pdf - RELOC/doc/latex/isodate/testdate.pdf + RELOC/doc/latex/isodate/testdate.pdf details="Test document showing styles" RELOC/doc/latex/isodate/testdate.tex RELOC/doc/latex/isodate/testisodate_without_babel.tex +srccontainersize 21048 +srccontainerchecksum 43bfcc11aefd2c68ec96cf05f7609cab4009f960b5220bc15d982ad384e062bc42a791f269d5480bb1582ceda68f8c7d36e1308129aaa3df41d25d35cbbb96d2 srcfiles size=37 RELOC/source/latex/isodate/Makefile RELOC/source/latex/isodate/isodate.dtx RELOC/source/latex/isodate/isodate.ins RELOC/source/latex/isodate/isodateo.dtx +runfiles size=17 + RELOC/tex/latex/isodate/danish.idf + RELOC/tex/latex/isodate/english.idf + RELOC/tex/latex/isodate/french.idf + RELOC/tex/latex/isodate/german.idf + RELOC/tex/latex/isodate/isodate.sty + RELOC/tex/latex/isodate/isodateo.sty + RELOC/tex/latex/isodate/italian.idf + RELOC/tex/latex/isodate/norsk.idf + RELOC/tex/latex/isodate/swedish.idf catalogue-ctan /macros/latex/contrib/isodate -catalogue-date 2012-06-11 00:09:45 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics date-time catalogue-version 2.28 name isodoc category Package -revision 37549 -shortdesc A LaTeX class for typesetting letters and invoices. +revision 47868 +shortdesc A LaTeX class for typesetting letters and invoices relocated 1 longdesc The isodoc class can be used for the preparation of letters and longdesc invoices (and, in the future, similar documents). Documents are @@ -81247,60 +132868,30 @@ longdesc set up with options, thus making the class easily adaptable to longdesc user's wishes and extensible for other document types. The longdesc class is based on the NTG brief class by Victor Eijkhout, which longdesc implements the NEN1026 standard. -runfiles size=20 - RELOC/tex/latex/isodoc/isodoc-ca-ES.ldf - RELOC/tex/latex/isodoc/isodoc-de-DE.ldf - RELOC/tex/latex/isodoc/isodoc-en-GB.ldf - RELOC/tex/latex/isodoc/isodoc-en-US.ldf - RELOC/tex/latex/isodoc/isodoc-es-ES.ldf - RELOC/tex/latex/isodoc/isodoc-fr-FR.ldf - RELOC/tex/latex/isodoc/isodoc-it-IT.ldf - RELOC/tex/latex/isodoc/isodoc-nb-NO.ldf - RELOC/tex/latex/isodoc/isodoc-nl-BE.ldf - RELOC/tex/latex/isodoc/isodoc-nl-NL.ldf - RELOC/tex/latex/isodoc/isodoc-sr-RS.ldf - RELOC/tex/latex/isodoc/isodoc-sv-SE.ldf - RELOC/tex/latex/isodoc/isodoc-template.ldf - RELOC/tex/latex/isodoc/isodoc.cls -docfiles size=601 - RELOC/doc/latex/isodoc/README - RELOC/doc/latex/isodoc/accept/accept.sty - RELOC/doc/latex/isodoc/accept/accept.tex - RELOC/doc/latex/isodoc/accept/acceptform.jpg - RELOC/doc/latex/isodoc/accept/ntgcolor.png - RELOC/doc/latex/isodoc/inst - RELOC/doc/latex/isodoc/invoice/invoice.sty - RELOC/doc/latex/isodoc/invoice/invoice.tex - RELOC/doc/latex/isodoc/isodoc.pdf - RELOC/doc/latex/isodoc/letter/letter.sty - RELOC/doc/latex/isodoc/letter/letter.tex - RELOC/doc/latex/isodoc/letter/sign.png - RELOC/doc/latex/isodoc/letter/signmarked.png - RELOC/doc/latex/isodoc/listkeys - RELOC/doc/latex/isodoc/logoletter/ChopinScript.ttf - RELOC/doc/latex/isodoc/logoletter/logoletter.sty - RELOC/doc/latex/isodoc/logoletter/logoletter.tex - RELOC/doc/latex/isodoc/logoletter/shiva-shakti.png - RELOC/doc/latex/isodoc/logoletter/signblue.png - RELOC/doc/latex/isodoc/logoletter/typo.txt - RELOC/doc/latex/isodoc/ntgletter/ntgcolor.png - RELOC/doc/latex/isodoc/ntgletter/ntgletter.sty - RELOC/doc/latex/isodoc/ntgletter/ntgletter.tex - RELOC/doc/latex/isodoc/ntgletter/signlong.png - RELOC/doc/latex/isodoc/ntgletter/signshort.png -srcfiles size=25 +containersize 9572 +containerchecksum 09256daeeb683ad518302f29d5385b4a084dce7fb6add48249fee7ed9920c1585f6c7033b19f466d9bec3c396c1b7950c65cc736be650836e09d3304c14312cb +doccontainersize 1499548 +doccontainerchecksum 0e215043768c2b55d20aef9ada76bf0820e9207ecd3674e4769944885477db9392aa978a90f221da17d75a010844e87988a3f449a29cfccef2c9560d5a98c903 +docfiles size=376 + RELOC/doc/latex/isodoc/README details="Readme" + RELOC/doc/latex/isodoc/isodoc.pdf details="Package documentation" +srccontainersize 1102132 +srccontainerchecksum ae4f54b4c8f8b2d1d9caedd6a89e45e66eefa47a155808b8c9f842b3976fac25769dd349cb5d2bea006dea042a275d5c1396b8a98e4c65a4bb29f632225ca49f +srcfiles size=375 RELOC/source/latex/isodoc/isodoc.dtx RELOC/source/latex/isodoc/isodoc.ins +runfiles size=12 + RELOC/tex/latex/isodoc/isodoc.cls catalogue-ctan /macros/latex/contrib/isodoc -catalogue-date 2015-06-15 17:57:43 +0200 +catalogue-date 2018-05-29 18:45:14 +0200 catalogue-license lppl1.3 -catalogue-topics letter invoice -catalogue-version 1.07 +catalogue-topics letter invoice class +catalogue-version 1.10 name isomath category Package revision 27654 -shortdesc Mathematics style for science and technology. +shortdesc Mathematics style for science and technology relocated 1 longdesc The package provides tools for a mathematical style that longdesc conforms to the International Standard ISO 80000-2 and is @@ -81309,27 +132900,32 @@ longdesc of capital Greek letters to italic, sets up bold italic and longdesc sans-serif bold italic math alphabets with Latin and Greek longdesc characters, and defines macros for markup of vector, matrix and longdesc tensor symbols. -runfiles size=4 - RELOC/tex/latex/isomath/isomath.sty +containersize 4648 +containerchecksum c9ed49ca5df0932ab59de0988de688fa119682810c3163ec530a8cd80f439eab858bca4dfad85567dbc2de08d226117b4df5249ff29f247c208ae2b1739165f2 +doccontainersize 643076 +doccontainerchecksum 55d94c6b4cf4c2ebc0eae4998f8ed6a1f450efa70e1644549e169cabcc782f1acb879c99bec5237e3147886c696c36f675e9f3c452da9f9880570dabf7adc5ad docfiles size=211 RELOC/doc/latex/isomath/README.html RELOC/doc/latex/isomath/README.txt - RELOC/doc/latex/isomath/isomath-test.pdf + RELOC/doc/latex/isomath/isomath-test.pdf details="Example of appearance" RELOC/doc/latex/isomath/isomath-test.tex - RELOC/doc/latex/isomath/isomath.html - RELOC/doc/latex/isomath/isomath.pdf - RELOC/doc/latex/isomath/isomath.sty.html + RELOC/doc/latex/isomath/isomath.html details="Package documentation (in HTML format)" + RELOC/doc/latex/isomath/isomath.pdf details="Package documentation (in PDF format)" + RELOC/doc/latex/isomath/isomath.sty.html details="Package source (in HTML format)" RELOC/doc/latex/isomath/isomath.sty.txt RELOC/doc/latex/isomath/isomath.txt +runfiles size=4 + RELOC/tex/latex/isomath/isomath.sty catalogue-ctan /macros/latex/contrib/isomath -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics font-supp-maths std-conform catalogue-version 0.6.1 name isonums category Package revision 17362 -shortdesc Display numbers in maths mode according to ISO 31-0. +shortdesc Display numbers in maths mode according to ISO 31-0 relocated 1 longdesc The package makes a quick hack to ziffer to display numbers in longdesc maths mode according to ISO 31-0, regardless of input format @@ -81337,74 +132933,75 @@ longdesc (European $1.235,7$ or Anglo-American $1,235.7$). The options longdesc [euro, anglo] control the global input format. Default input longdesc format is anglo. Documentation is included as comments to the longdesc text source. -runfiles size=2 - RELOC/tex/latex/isonums/isonums.sty +containersize 2276 +containerchecksum d82a96c2208dfd59f091b8316d8b496115ee56d51e5418344f128418c3b202f0ee20bea505c05f5e81f76006e2efcef48b2d3592bb5c550e219b5c8e4a6e5f4e +doccontainersize 202564 +doccontainerchecksum 5ecd4587ad6d782182986592bb7f76fd62ccd2e9245921b48ae28e9e381f4084e0d5930b32815ebd074be4190fcfd6beec8be890014edd76e9a5b4958f71d6f7 docfiles size=52 - RELOC/doc/latex/isonums/isonums.pdf + RELOC/doc/latex/isonums/isonums.pdf details="Package documentation" RELOC/doc/latex/isonums/isonums.tex +runfiles size=2 + RELOC/tex/latex/isonums/isonums.sty catalogue-ctan /macros/latex/contrib/isonums -catalogue-date 2014-05-28 23:45:53 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics std-conform catalogue-version 1.0 +name isopt +category Package +revision 45509 +shortdesc Writing a TeX length with a space between number and unit +relocated 1 +longdesc Writing a TeX length with \the writes the value and the unit +longdesc without a space. Package isopt provides a macro \ISO which +longdesc inserts a user defined space between number and unit. +containersize 1168 +containerchecksum 2e313aa3afe2e1457a794834c1c5eddec66ac2d17fb614e15e6781a23ca0834a3fc2d68632b07e55618c6d8dc28de5bb8bf435e34f61a419cb27fa53042d4a7c +doccontainersize 61664 +doccontainerchecksum 94498c64a4acbb2b41a7e4869b628c683a975f1ba28a8b721b9c44843574610a47a39883f5333b405bb8c02d49f50c3d9ee4f344c27b5e5c0d22c181db46bac7 +docfiles size=19 + RELOC/doc/latex/isopt/Changes + RELOC/doc/latex/isopt/README.md details="Readme" + RELOC/doc/latex/isopt/isopt-doc.bib + RELOC/doc/latex/isopt/isopt-doc.pdf details="Package documentation" + RELOC/doc/latex/isopt/isopt-doc.tex +runfiles size=1 + RELOC/tex/latex/isopt/isopt.sty +catalogue-ctan /macros/latex/contrib/isopt +catalogue-date 2018-01-07 12:14:32 +0100 +catalogue-license lppl +catalogue-topics misc-support +catalogue-version 0.01 + name isorot category Package revision 15878 -shortdesc Rotation of document elements. +shortdesc Rotation of document elements relocated 1 longdesc The package is for rotation of document elements. It is a longdesc combination of the lscape package and an extension of the longdesc rotating package. The package is designed for use with the iso longdesc class but may be used with any normal class. -runfiles size=2 - RELOC/tex/latex/isorot/isorot.sty +containersize 2568 +containerchecksum 788b712fc11f3e4dccd58a75a950752d0492dbc30f0475dedeb26b86e500d0d23c4babf0dfc2361fe16e74d7b37d8f5605b4d4faf1e7018642a5e9dd1be73be3 +doccontainersize 122280 +doccontainerchecksum 4aed42e6fe61aecba99783a1173d903daec621e7d5e0867f6f73319804bfa7727a2a2dac204d792b76a98f8e291bc563bff364360b19ccede2b79600a59260d0 docfiles size=51 - RELOC/doc/latex/isorot/README - RELOC/doc/latex/isorot/rotman.pdf + RELOC/doc/latex/isorot/README details="Package Readme" + RELOC/doc/latex/isorot/rotman.pdf details="Package documentation" RELOC/doc/latex/isorot/rotman.tex +srccontainersize 13604 +srccontainerchecksum 99767e98f2eca92d4f0d8e32024805bea9646f10eda7cdc7fa5b325de04d6e70648c1e1421172e2358d7a6ef7eeca718db3e31e7f272160ddba2f24e4c516888 srcfiles size=13 RELOC/source/latex/isorot/isorot.dtx RELOC/source/latex/isorot/isorot.ins +runfiles size=2 + RELOC/tex/latex/isorot/isorot.sty catalogue-ctan /macros/latex/contrib/isorot -catalogue-date 2012-06-23 19:30:01 +0200 -catalogue-license lppl - -name iso -category Package -revision 15878 -shortdesc Generic ISO standards typesetting macros. -relocated 1 -longdesc Generic class and package files for typesetting ISO -longdesc International Standard documents. Several standard documents -longdesc have been printed by ISO from camera-ready copy prepared using -longdesc LaTeX and these files. The class makes use of the isorot -longdesc package, rather than use other mechanisms directly. -runfiles size=27 - RELOC/makeindex/iso/iso.ist - RELOC/tex/latex/iso/askincv1.sty - RELOC/tex/latex/iso/iso10.clo - RELOC/tex/latex/iso/iso11.clo - RELOC/tex/latex/iso/iso9.clo - RELOC/tex/latex/iso/isov2.4ht - RELOC/tex/latex/iso/isov2.cls -docfiles size=294 - RELOC/doc/latex/iso/README - RELOC/doc/latex/iso/iso4ht.pdf - RELOC/doc/latex/iso/isoe.pdf - RELOC/doc/latex/iso/isofwdbp.tex - RELOC/doc/latex/iso/isoman.pdf - RELOC/doc/latex/iso/isoman.tex - RELOC/doc/latex/iso/trfwd1.tex - RELOC/doc/latex/iso/tspasfwdbp.tex -srcfiles size=61 - RELOC/source/latex/iso/iso4ht.dtx - RELOC/source/latex/iso/iso4ht.ins - RELOC/source/latex/iso/isoe.dtx - RELOC/source/latex/iso/isoe.ins -catalogue-ctan /macros/latex/contrib/isostds/iso -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl -catalogue-version 2.4 +catalogue-topics rotation name isotope category Package @@ -81415,22 +133012,29 @@ longdesc The package provides a command \isotope for setting the atomic longdesc weight and atomic number indications of isotopes. (The naive longdesc way of doing the job with (La)TeX mathematics commands produces longdesc an unsatisfactory result.) -runfiles size=1 - RELOC/tex/latex/isotope/isotope.sty +containersize 1168 +containerchecksum 27c03c4c6519c038185ee485e94ac51d90c21fd095e4a4cb6d91b06f98e7adb7a423a53b1df035514f58cd0556ab0ecb1afd55c05008e558812d95de2159c8ba +doccontainersize 520 +doccontainerchecksum e1a6e798f894f9455e5d2144a935ee2960199e65db0499c4a900f888065eacfce72269f6808e01e98be3ea3440144eb4004c53af26d80d6ddda1be5df5492b1f docfiles size=1 RELOC/doc/latex/isotope/README +srccontainersize 3076 +srccontainerchecksum 555ad9d5db22d4efe1373bf971f441391371c91538b73f3140996d3a2dda85fc3003f6d685c3e54c06be216e5b54493d07f165c0a7adeb00845e79bbd9958c5d srcfiles size=3 RELOC/source/latex/isotope/isotope.dtx RELOC/source/latex/isotope/isotope.ins +runfiles size=1 + RELOC/tex/latex/isotope/isotope.sty catalogue-ctan /macros/latex/contrib/isotope -catalogue-date 2012-06-23 19:30:01 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl -catalogue-version v0.3 +catalogue-topics subsup-pos physics +catalogue-version 0.3 name issuulinks category Package revision 25742 -shortdesc Produce external links instead of internal ones. +shortdesc Produce external links instead of internal ones relocated 1 longdesc The PDF visualizer http://issuu.com/ISSUU is a popular service longdesc which shows PDF documents "a page a time". Due to the way it is @@ -81441,66 +133045,116 @@ longdesc patches hyperref to produce external links in the required form longdesc instead of internal links created by \ref, \cite and other longdesc commands. Since the package redefines the internals of longdesc hyperref, it must be loaded it AFTER hyperref. -runfiles size=1 - RELOC/tex/latex/issuulinks/issuulinks.sty +containersize 2104 +containerchecksum 2ac24eb0e19b92e29fa898fcb8cca7e2f64cf87fac408aa0c834f6afc0ef262560a512637b30dcbee2ec06e9f0fc32f344258bab983b1b1d6fd4da85c821c056 +doccontainersize 377392 +doccontainerchecksum 2605ffe2f42560b04fe781efe3c1972ad76f6cbddc7ef68bdb0ece9b0573b8cec785c2bf4befdf339935730a728bf19b83f3597119d3f9705f571350e963801d docfiles size=96 RELOC/doc/latex/issuulinks/Makefile - RELOC/doc/latex/issuulinks/README - RELOC/doc/latex/issuulinks/issuulinks.pdf + RELOC/doc/latex/issuulinks/README details="Readme" + RELOC/doc/latex/issuulinks/issuulinks.pdf details="Package documentation" RELOC/doc/latex/issuulinks/sample.pdf RELOC/doc/latex/issuulinks/sample.tex +srccontainersize 4112 +srccontainerchecksum c66f332f9dea7a03a0ecc7844d99375fbb91ca262aa50faac13b9b396db0991411b33616aec6c1af22e915e3643e7340e0083635fb40b6e693a4e487e1e45fed srcfiles size=4 RELOC/source/latex/issuulinks/issuulinks.dtx RELOC/source/latex/issuulinks/issuulinks.ins +runfiles size=1 + RELOC/tex/latex/issuulinks/issuulinks.sty catalogue-ctan /macros/latex/contrib/issuulinks -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics label-ref hyper catalogue-version 1.1 +name istgame +category Package +revision 49848 +shortdesc Draw Game Trees with TikZ +relocated 1 +longdesc This LaTeX package provides macros based on TikZ to draw a game +longdesc tree. The main idea underlying its core macros is the +longdesc completion of a whole tree by using a sequence of simple +longdesc 'parent-child' tree structures, with no longer nested relations +longdesc involved (like the use of 'grandchildren' or +longdesc 'great-grandchildren'). Using this package you can draw a game +longdesc tree as easily as drawing a game tree with pen and paper. This +longdesc package depends on expl3, TikZ, and xparse. The 'ist' prefix +longdesc stands for "it's a simple tree" or "In-Sung's simple tree." +containersize 18008 +containerchecksum 3380e604bb3153d94ed21ca3c5fa16bcf0d81ff3ff878a3f19ee3f1beea0ab32185ea9d8b0118eaddfb15e483d040bbc5f915ab7bd3033978518fd30aeb5f609 +doccontainersize 751764 +doccontainerchecksum 9838728c32479b6a1229d2f9e9755209c07520bd691452bfba81a62f21ba929237bc916c5f49523610516aec6c054d080086c82be277eedd5fe4b0006b4be8e5 +docfiles size=250 + RELOC/doc/latex/istgame/README.txt details="Readme" + RELOC/doc/latex/istgame/istgame-doc-v2.0.tex + RELOC/doc/latex/istgame/istgame-doc.pdf details="Package documentation" + RELOC/doc/latex/istgame/istgame-doc.tex + RELOC/doc/latex/istgame/istgame.ist +runfiles size=29 + RELOC/tex/latex/istgame/istgame.sty +catalogue-ctan /graphics/pgf/contrib/istgame +catalogue-date 2019-01-28 08:58:56 +0100 +catalogue-license lppl1.3c +catalogue-topics pgf-tikz games tree +catalogue-version 2.0 + name itnumpar category Package revision 15878 -shortdesc Spell numbers in words (Italian). +shortdesc Spell numbers in words (Italian) relocated 1 longdesc Sometimes we need to say "Capitolo primo" or "Capitolo uno" longdesc instead of "Capitolo 1", that is, spelling the number in words longdesc instead of the usual digit form. This package provides support longdesc for spelling out numbers in Italian words, both in cardinal and longdesc in ordinal form. -runfiles size=2 - RELOC/tex/latex/itnumpar/itnumpar.sty +containersize 2268 +containerchecksum 73770854d45bf404e874aeda0d0bc95dac7ba266cb012fe4af7c4e7686c078b1314500ddaa767b1652e9b05b02691c93cd24b34d6b145fc30c0a3f56693f6a17 +doccontainersize 127252 +doccontainerchecksum b7c81a74d816508121f0449580e4599092bcf3d176cbf9f754fe9e662d83a5c8b66e52e43b2621338a13b09c44babac6a575f1e8894863402c028dc3ed792486 docfiles size=38 - RELOC/doc/latex/itnumpar/README - RELOC/doc/latex/itnumpar/itnumpar.pdf + RELOC/doc/latex/itnumpar/README details="Readme" + RELOC/doc/latex/itnumpar/itnumpar.pdf details="Package documentation" +srccontainersize 8148 +srccontainerchecksum 72ad2e68d946f5a862e97c3cd3f20f94c23a2a85fa5183a6da9b1f03be60067a482b2f22e7560c5c731df18f910f643f0c991a2b0c09925cc270287290654c86 srcfiles size=8 RELOC/source/latex/itnumpar/itnumpar.dtx RELOC/source/latex/itnumpar/itnumpar.ins +runfiles size=2 + RELOC/tex/latex/itnumpar/itnumpar.sty catalogue-ctan /macros/latex/contrib/itnumpar -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics italian numbers catalogue-version 1.0 name iwhdp category Package revision 37552 -shortdesc Halle Institute for Economic Research (IWH) Discussion Papers. +shortdesc Halle Institute for Economic Research (IWH) Discussion Papers relocated 1 longdesc The document class is for creating Discussion Papers of the longdesc Halle Institute for Economic Research (IWH) in Halle, Germany. longdesc The class offers options for both English and German texts. -runfiles size=9 - RELOC/tex/latex/iwhdp/iwhdp.cls +containersize 10284 +containerchecksum 7153fd75ec63a6abbb4d2bbda8a5eb150f4b202b72baec8361a810d28aac5690f76e4099ff3a616a44077337ace469d6a111d4e42ad8d68428144b7fdee58575 +doccontainersize 396092 +doccontainerchecksum f75a9d0ea4b69de5a82659e18a0ea04544c93b056c52efac534e16490a5ac78b329d700f2ed7b3e8564a72331489106bb7e735c44b3e24ff943c6ec0b89eaef2 docfiles size=124 RELOC/doc/latex/iwhdp/Back_2015.pdf RELOC/doc/latex/iwhdp/Deckblatt_2015.pdf - RELOC/doc/latex/iwhdp/README + RELOC/doc/latex/iwhdp/README details="Readme" RELOC/doc/latex/iwhdp/iwhdp_Manual.bib - RELOC/doc/latex/iwhdp/iwhdp_Manual.pdf + RELOC/doc/latex/iwhdp/iwhdp_Manual.pdf details="Package documentation (German)" language="de" RELOC/doc/latex/iwhdp/iwhdp_Manual.tex RELOC/doc/latex/iwhdp/iwhdp_paper.bib RELOC/doc/latex/iwhdp/iwhdp_paper.tex +runfiles size=9 + RELOC/tex/latex/iwhdp/iwhdp.cls catalogue-ctan /macros/latex/contrib/iwhdp -catalogue-date 2015-06-02 17:50:41 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 catalogue-topics misc-paper class catalogue-version 0.50 @@ -81508,7 +133162,7 @@ catalogue-version 0.50 name iwona category Package revision 19611 -shortdesc A two-element sans-serif font. +shortdesc A two-element sans-serif font relocated 1 longdesc Iwona is a two-element sans-serif typeface. It was created as longdesc an alternative version of the Kurier typeface, which was @@ -81525,6 +133179,24 @@ longdesc (Vietnamese), OT4, QX, texansi and nonstandard (IL2 for the longdesc Czech fonts), as well as supporting macros and files defining longdesc fonts for LaTeX. execute addMap iwona.map +containersize 3901808 +containerchecksum 2a125919a015c82e00bff575407f02a6c9a176f83a6017df682b98af55473e7e36ca0a94ff27091a3a4279d42fea9c49f0d8ae6da7e852ae9c44389dd5d8f7fe +doccontainersize 467416 +doccontainerchecksum 87128ca46f7f2f13f8f886fc1c3da11f17636637632c0d39ebae07dfe70ec92024e1136da7a736a3fc8d494e856b86407ef9c01cd54a56fc2e41372bc0f1c4fe +docfiles size=147 + RELOC/doc/fonts/iwona/00readme.eng details="Outline in English:" + RELOC/doc/fonts/iwona/00readme.pol details="Outline in Polish:" + RELOC/doc/fonts/iwona/GUST-FONT-LICENSE.txt + RELOC/doc/fonts/iwona/iwona-info-src.zip + RELOC/doc/fonts/iwona/iwona-info.pdf details="Package documentation" + RELOC/doc/fonts/iwona/iwona-latex-cyr.tex + RELOC/doc/fonts/iwona/iwona-latex-math.tex + RELOC/doc/fonts/iwona/iwona-latex-pl.tex + RELOC/doc/fonts/iwona/iwona-latex-t2a.tex + RELOC/doc/fonts/iwona/iwona-latex-t5.tex + RELOC/doc/fonts/iwona/iwona-mathtest.tex + RELOC/doc/fonts/iwona/iwona-table.tex + RELOC/doc/fonts/iwona/manifest.txt runfiles size=4371 RELOC/fonts/afm/nowacki/iwona/iwonab.afm RELOC/fonts/afm/nowacki/iwona/iwonabi.afm @@ -82126,64 +133798,115 @@ runfiles size=4371 RELOC/tex/latex/iwona/ts1iwonal.fd RELOC/tex/latex/iwona/ts1iwonalc.fd RELOC/tex/plain/iwona/iwona-math.tex -docfiles size=147 - RELOC/doc/fonts/iwona/00readme.eng - RELOC/doc/fonts/iwona/00readme.pol - RELOC/doc/fonts/iwona/GUST-FONT-LICENSE.txt - RELOC/doc/fonts/iwona/iwona-info-src.zip - RELOC/doc/fonts/iwona/iwona-info.pdf - RELOC/doc/fonts/iwona/iwona-latex-cyr.tex - RELOC/doc/fonts/iwona/iwona-latex-math.tex - RELOC/doc/fonts/iwona/iwona-latex-pl.tex - RELOC/doc/fonts/iwona/iwona-latex-t2a.tex - RELOC/doc/fonts/iwona/iwona-latex-t5.tex - RELOC/doc/fonts/iwona/iwona-mathtest.tex - RELOC/doc/fonts/iwona/iwona-table.tex - RELOC/doc/fonts/iwona/manifest.txt catalogue-ctan /fonts/iwona -catalogue-date 2014-05-09 00:43:11 +0200 -catalogue-license gfsl +catalogue-date 2018-06-16 10:29:14 +0200 +catalogue-license gfl +catalogue-topics font font-type1 font-otf catalogue-version 0.995b name jablantile category Package revision 16364 -shortdesc Metafont version of tiles in the style of Slavik Jablan. +shortdesc Metafont version of tiles in the style of Slavik Jablan relocated 1 longdesc This is a small Metafont font to implement the modular tiles longdesc described by Slavik Jablan. For an outline of the theoretical longdesc structure of the tiles, see (for example) Jablan's JMM 2006 longdesc Exhibit. -runfiles size=7 - RELOC/fonts/source/public/jablantile/jablantile.mf +containersize 3672 +containerchecksum 40fb96443b2194adf8477a68d9d435101dfa42471d02ec48a37968d21e12802ff1feffa830484642b457562392b6ea147d394734acdffd735a8a5db421d0eefd +doccontainersize 13880 +doccontainerchecksum 00e753a85f3521ac0c6f336e0e563bd0a68a5e2ae756dfce72d3cf59a01eb9654b6f5c9ad9b83047d3d4f7743b7cce6f2d0d734510532db13942ef6619ae813f docfiles size=6 - RELOC/doc/fonts/jablantile/README + RELOC/doc/fonts/jablantile/README details="Readme" RELOC/doc/fonts/jablantile/dearjablan.tex - RELOC/doc/fonts/jablantile/jablantile.pdf + RELOC/doc/fonts/jablantile/jablantile.pdf details="Example of use (letter to Jablan)" +runfiles size=7 + RELOC/fonts/source/public/jablantile/jablantile.mf catalogue-ctan /fonts/jablantile -catalogue-date 2014-05-09 00:43:11 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics font font-mf font-novelty + +name jacow +category Package +revision 50870 +shortdesc The "jacow.cls" class is used for submissions to the proceedings of conferences on JACoW.org +relocated 1 +longdesc The jacow class is used for submissions to the proceedings of +longdesc conferences on Joint Accelerator Conferences Website (JACoW), +longdesc an international collaboration that publishes the proceedings +longdesc of accelerator conferences held around the world. +containersize 6216 +containerchecksum 11cdae5bd4387f11e30200f72ebca29a0c19c61a44570fd02de40dfffe1b7578defadb15eef1b7e9d06d5f394f816ab8a5f46994b3a225be446c693dd23796d1 +doccontainersize 1131916 +doccontainerchecksum 6872a79aacf4a59ab408fac511604a596c40ad8dc991d0519afd75590a1e3b06ab24c3b7ad33eb4a8447e14094fb34e64d52cea75fd4d41b2ef1e600b4d12d6b +docfiles size=712 + RELOC/doc/latex/jacow/JACoW_LaTeX_A4.pdf details="Package documentation" + RELOC/doc/latex/jacow/JACoW_LaTeX_A4.tex + RELOC/doc/latex/jacow/JACoW_LaTeX_Letter.pdf + RELOC/doc/latex/jacow/JACoW_LaTeX_Letter.tex + RELOC/doc/latex/jacow/JACpic2.jpg + RELOC/doc/latex/jacow/JACpic_mc.pdf + RELOC/doc/latex/jacow/README details="Readme" + RELOC/doc/latex/jacow/annexes-A4.tex + RELOC/doc/latex/jacow/annexes-Letter.tex + RELOC/doc/latex/jacow/jacow-collaboration.pdf + RELOC/doc/latex/jacow/jacow-collaboration.tex +runfiles size=5 + RELOC/tex/latex/jacow/jacow.cls +catalogue-contact-home http://www.jacow.org/Authors/LaTeX +catalogue-ctan /macros/latex/contrib/jacow +catalogue-date 2019-04-08 15:01:44 +0200 +catalogue-license lppl1.3c +catalogue-topics confproc +catalogue-version 2.4 name jadetex category Package -revision 33694 -shortdesc Macros supporting Jade DSSSL output. +revision 48634 +shortdesc Macros supporting Jade DSSSL output longdesc Macro package on top of LaTeX to typeset TeX output of the Jade longdesc DSSSL implementation. depend latex depend passivetex depend pdftex depend tex +depend amsfonts +depend babel +depend cm +depend colortbl +depend cyrillic +depend dehyph +depend ec +depend fancyhdr +depend graphics +depend graphics-cfg +depend graphics-def +depend hyperref +depend hyphen-base +depend ifxetex +depend latex-fonts +depend latexconfig +depend marvosym +depend oberdiek +depend psnfss +depend stmaryrd +depend symbol +depend tex-ini-files +depend tipa +depend tools +depend ulem +depend url +depend wasysym +depend zapfding depend jadetex.ARCH -execute AddFormat name=jadetex engine=pdftex patterns=language.dat options="*jadetex.ini" -execute AddFormat name=pdfjadetex engine=pdftex patterns=language.dat options="*pdfjadetex.ini" -runfiles size=60 - texmf-dist/tex/jadetex/base/dsssl.def - texmf-dist/tex/jadetex/base/jadetex.ini - texmf-dist/tex/jadetex/base/jadetex.ltx - texmf-dist/tex/jadetex/base/pdfjadetex.ini - texmf-dist/tex/jadetex/base/uentities.sty - texmf-dist/tex/jadetex/base/ut1omlgc.fd +execute AddFormat name=jadetex engine=pdftex patterns=language.dat options="*jadetex.ini" fmttriggers=amsfonts,babel,cm,colortbl,cyrillic,dehyph,ec,fancyhdr,graphics,graphics-cfg,graphics-def,hyperref,hyphen-base,ifxetex,latex,latex-fonts,latexconfig,marvosym,oberdiek,passivetex,psnfss,stmaryrd,symbol,tex-ini-files,tipa,tools,ulem,url,wasysym,zapfding +execute AddFormat name=pdfjadetex engine=pdftex patterns=language.dat options="*pdfjadetex.ini" fmttriggers=amsfonts,babel,cm,colortbl,cyrillic,dehyph,ec,fancyhdr,graphics,graphics-cfg,graphics-def,hyperref,hyphen-base,ifxetex,latex,latex-fonts,latexconfig,marvosym,oberdiek,passivetex,psnfss,stmaryrd,symbol,tex-ini-files,tipa,tools,ulem,url,wasysym,zapfding +containersize 29692 +containerchecksum 7a284d9eb0639b64299b59a3b29cf939786590ee7eb289a7f67793ac10b8945272116015d7ac8732870eca5a2751e17e9d69946664620cd8617d056f505ab85a +doccontainersize 31788 +doccontainerchecksum 00014ee9e648cd179c8435c1eb90c804f8904ed890ab1c3f93ce8a8e04785a493682b4191c1790a1c0945761fa193b6c6f759e852e43445e896b0c97870247d4 docfiles size=34 texmf-dist/doc/man/man1/jadetex.1 texmf-dist/doc/man/man1/jadetex.man1.pdf @@ -82201,32 +133924,211 @@ docfiles size=34 texmf-dist/doc/otherformats/jadetex/base/logo.png texmf-dist/doc/otherformats/jadetex/base/releasenotes.dsl texmf-dist/doc/otherformats/jadetex/base/releasenotes.xml +srccontainersize 19312 +srccontainerchecksum a9e70b48db9ee9fe389889acf512bb9db9010fa61e19aea210129098781d8f6f211548b1392ed2299945d7bf24cc213d43fab2fc7f792ccdeb8dce6ec1dab09f srcfiles size=21 texmf-dist/source/jadetex/base/Makefile texmf-dist/source/jadetex/base/jadetex.dtx texmf-dist/source/jadetex/base/jadetex.ins -catalogue-ctan /macros/jadetex/jadetex-3.13.tar.gz -catalogue-date 2012-06-23 19:46:16 +0200 +runfiles size=60 + texmf-dist/tex/jadetex/base/dsssl.def + texmf-dist/tex/jadetex/base/jadetex.ini + texmf-dist/tex/jadetex/base/jadetex.ltx + texmf-dist/tex/jadetex/base/pdfjadetex.ini + texmf-dist/tex/jadetex/base/uentities.sty + texmf-dist/tex/jadetex/base/ut1omlgc.fd +catalogue-contact-repository http://jadetex.sourceforge.net/ +catalogue-ctan /macros/jadetex +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license other-free +catalogue-topics foreign-import catalogue-version 3.13 +name jadetex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of jadetex +containersize 340 +containerchecksum 3c85c446776b5ce189b50c77795928a401b61c38b8f4240131aac6caddb7ee09dcc270152660fe6161b0c662c74aeb7115bb4458ad90a2e72d174c7e988f7c7e +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/jadetex + bin/aarch64-linux/pdfjadetex + +name jadetex.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of jadetex +containersize 340 +containerchecksum 75ca9157dbba28b82a2d97493f8dfb004db3232d49699bb477107b9f5266c5167d36e6f543948b700b7ba4f228d9d60ef93b3d4febcfefcdfaf6059fa57d1907 +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/jadetex + bin/amd64-freebsd/pdfjadetex + +name jadetex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of jadetex +containersize 340 +containerchecksum 59971ddff762f2c346e1fa4d4ef255eac7f0e382ec8a492cdc76d1d654e8879a361be521e500691444dcbc7d531511a35c8295152a1dac94b2dd24603bc6a619 +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/jadetex + bin/amd64-netbsd/pdfjadetex + +name jadetex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of jadetex +containersize 340 +containerchecksum 34d34bcec040c67e362e3c0619bac060eac2ccfded16186170bb074ce7884ab7959ea84aa82a4d06e7ce12ef47f4b869e35e68ed5d598c5f03583beba82eedad +binfiles arch=armhf-linux size=2 + bin/armhf-linux/jadetex + bin/armhf-linux/pdfjadetex + +name jadetex.i386-cygwin +category Package +revision 13930 +shortdesc i386-cygwin files of jadetex +containersize 340 +containerchecksum f3813825129ab1e57fed8908e9cd42d631473f8486ca7c4013120a1b4f8e0cd680e1b7da99d9f9b0c3dddb4e7e9f2a6eda27aa853f3bbcc100becf1625a10878 +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/jadetex + bin/i386-cygwin/pdfjadetex + +name jadetex.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of jadetex +containersize 340 +containerchecksum 3f00dceccf94374750baccb82fa1258c97d855c2c52a95a122c07023a4d58bdcb8330b1b7a0f51b806ab3efe899f278aa76bc31cae4c8bf153106d9557586db5 +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/jadetex + bin/i386-freebsd/pdfjadetex + name jadetex.i386-linux category Package revision 3006 shortdesc i386-linux files of jadetex +containersize 340 +containerchecksum aa80361a60af1a592f4fb525541c4a428b85adb37597722b798661e0473aed4ef5067669f75e6e15da80f4c2ba9e543f7f58cdd38fa01ac5cef232a3cb191822 binfiles arch=i386-linux size=2 bin/i386-linux/jadetex bin/i386-linux/pdfjadetex +name jadetex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of jadetex +containersize 340 +containerchecksum 2497b2d71d7f36fbfd47a1a7f51dd9ad03c4d6741e4c62368959f395dc4bac94efcdea0aa64e17a83b16f3dc6d2b04e39860993e81f82a1cb2f7276610f07dc8 +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/jadetex + bin/i386-netbsd/pdfjadetex + +name jadetex.i386-solaris +category Package +revision 8102 +shortdesc i386-solaris files of jadetex +containersize 340 +containerchecksum 2bf45dd3246a3ae715281a864afaa97c31efe37f2cf7f835b84c5f822c351720f23c0961bfddde0cf6e0218d7c80a5a3ab62a38e5322d118079dd607ac597c48 +binfiles arch=i386-solaris size=2 + bin/i386-solaris/jadetex + bin/i386-solaris/pdfjadetex + +name jadetex.win32 +category Package +revision 36810 +shortdesc win32 files of jadetex +containersize 884 +containerchecksum 47cbf181e76701f119c798c95724ad79481f95c4d16bf79dd1b3d0bc514c615ede5d03f3f37e98ccb6a9db0bce5bb6c88af2b8440163e4cadefb67a9a9ce3294 +binfiles arch=win32 size=2 + bin/win32/jadetex.exe + bin/win32/pdfjadetex.exe + +name jadetex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of jadetex +containersize 344 +containerchecksum 169fca40f7d01fb94a9beb8ff1e9810472dccfc8c6d3cb8aace99f78d18af07042a05831678d4f7c855efa1dd5a88b68ed683b787448209d452bfdbb683a459b +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/jadetex + bin/x86_64-cygwin/pdfjadetex + +name jadetex.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of jadetex +containersize 340 +containerchecksum 97db3c079a64c3e216e28e340ea6da68970095b83be41b99486536e9caf248bfa9388dcfb1d05dca499afb7ad0b445841a9eeab744967fde36007814107b8944 +binfiles arch=x86_64-darwin size=2 + bin/x86_64-darwin/jadetex + bin/x86_64-darwin/pdfjadetex + +name jadetex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of jadetex +containersize 348 +containerchecksum 242f931ea9ea1f571f0a0f825541f160ba1b72952cd6128d7d99285275b5e1079725e1fe327be3bf67a0a61200d6fc8e1794f1e5d3704cf8d99fde570dee3aac +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/jadetex + bin/x86_64-darwinlegacy/pdfjadetex + +name jadetex.x86_64-linux +category Package +revision 3185 +shortdesc x86_64-linux files of jadetex +containersize 340 +containerchecksum c77695a595c67e68466280d6eb589b2f925d9e6b1da1fe7ff949d66a8647846f2ed8d5a08912f0fd5dee6d960063f5eb084d7f4a18636b7c97a72a38599d409e +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/jadetex + bin/x86_64-linux/pdfjadetex + +name jadetex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of jadetex +containersize 348 +containerchecksum f794ab782e1e9aa86224e7c94bb8790617099862c6222621040bf3b439357cf2247aba36f0ccc484fe7078e0a46e7ca4f2f17dbb04e46757f75c919d30e28cac +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/jadetex + bin/x86_64-linuxmusl/pdfjadetex + +name jadetex.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of jadetex +containersize 344 +containerchecksum f96cb103b13c66fca8658cb281ec19e612ba48f32e5b231c648bbab9dce4acf3f7d8fe787e703d1eca44c351ec2796698b839efb67f3e62b9b2e0fa779c21e0f +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/jadetex + bin/x86_64-solaris/pdfjadetex + name jamtimes category Package revision 20408 -shortdesc Expanded Times Roman fonts. +shortdesc Expanded Times Roman fonts relocated 1 longdesc The package offers LaTeX support for the expanded Times Roman longdesc font, which has been used for many years in the Journal longdesc d'Analyse Mathematique. Mathematics support is based on the longdesc Belleek fonts. +containersize 45676 +containerchecksum 72e2dc3995f173f75aa4714c397bb036c140bace3b17ddbf321afad677ad397c2be804c890df472f89e15300d4645d02d8ce3746c33fa37be85a9d9312ece3a7 +doccontainersize 851028 +doccontainerchecksum bc14db250b9d34e700c0fed6390948b39022f7ba39cc0e083c6a1355517fd10aaf7065f6ca90f40a50aa0cd6557a35cdfb1534aabff12ec6c462a2fc87ec699a +docfiles size=254 + RELOC/doc/latex/jamtimes/README details="Readme" + RELOC/doc/latex/jamtimes/jamtimes.bib + RELOC/doc/latex/jamtimes/jamtimes.dtx + RELOC/doc/latex/jamtimes/jamtimes.ins + RELOC/doc/latex/jamtimes/jamtimes.pdf details="Package documentation" + RELOC/doc/latex/jamtimes/mathsample.pdf + RELOC/doc/latex/jamtimes/mathsample.tex + RELOC/doc/latex/jamtimes/mathsample_ps.pdf + RELOC/doc/latex/jamtimes/textsample.pdf + RELOC/doc/latex/jamtimes/textsample.tex + RELOC/doc/latex/jamtimes/textsample_ps.pdf runfiles size=136 RELOC/fonts/map/dvips/jamtimes/jtm.map RELOC/fonts/tfm/public/jamtimes/blsy.tfm @@ -82331,45 +134233,66 @@ runfiles size=136 RELOC/tex/latex/jamtimes/ot1jtm.fd RELOC/tex/latex/jamtimes/t1jtm.fd RELOC/tex/latex/jamtimes/ts1jtm.fd -docfiles size=254 - RELOC/doc/latex/jamtimes/README - RELOC/doc/latex/jamtimes/jamtimes.bib - RELOC/doc/latex/jamtimes/jamtimes.dtx - RELOC/doc/latex/jamtimes/jamtimes.ins - RELOC/doc/latex/jamtimes/jamtimes.pdf - RELOC/doc/latex/jamtimes/mathsample.pdf - RELOC/doc/latex/jamtimes/mathsample.tex - RELOC/doc/latex/jamtimes/mathsample_ps.pdf - RELOC/doc/latex/jamtimes/textsample.pdf - RELOC/doc/latex/jamtimes/textsample.tex - RELOC/doc/latex/jamtimes/textsample_ps.pdf catalogue-ctan /fonts/jamtimes catalogue-date 2009-11-07 09:52:42 +0000 catalogue-license other-free +catalogue-topics font-supp catalogue-version 1.12 name japanese-otf category Package -revision 36953 -shortdesc Advanced font selection for platex and its friends. +revision 50769 +shortdesc Advanced font selection for platex and its friends relocated 1 longdesc The package contains pLaTeX support files and virtual fonts for longdesc supporting a wide variety of fonts in LaTeX using the pTeX longdesc engine. -execute addKanjiMap otf-cktx.map -execute addKanjiMap otf-@kanjiEmbed@.map -runfiles size=31495 +execute addKanjiMap otf-@jaEmbed@.map +execute addKanjiMap otf-sc-@scEmbed@.map +execute addKanjiMap otf-tc-@tcEmbed@.map +execute addKanjiMap otf-ko-@koEmbed@.map +containersize 397504 +containerchecksum e62e32e37fd460dd16a5bf62423564a83c6fc16a9b485dafee5f00fd4c3342e3b94c78731e25a9fca3aebf9cdf91a4bd1ae6edb8213699adc4c8e7d139e14ecf +doccontainersize 12328 +doccontainerchecksum 90d9247aecc96871f1def7db153266d9c42292c5f0fdd7b835392cdf61d2b15c908e2895868121dcc5dfd508c75c1b7424104412a2b75e430a8fd2f0107cb085 +docfiles size=16 + RELOC/doc/fonts/japanese-otf/COPYRIGHT + RELOC/doc/fonts/japanese-otf/README details="Readme (English)" language="en" + RELOC/doc/fonts/japanese-otf/otf-script-gteb.diff + RELOC/doc/fonts/japanese-otf/readme-ja.txt details="Readme (japanese)" language="ja" + RELOC/doc/fonts/japanese-otf/test/brsgtest.tex + RELOC/doc/fonts/japanese-otf/test/jis2004.tex + RELOC/doc/fonts/japanese-otf/test/koreanexample.tex + RELOC/doc/fonts/japanese-otf/test/otftest.tex + RELOC/doc/fonts/japanese-otf/test/pkanatest.tex + RELOC/doc/fonts/japanese-otf/test/pkanatest2.tex +srccontainersize 45092 +srccontainerchecksum e3cbd6b664fdaf62ef764bf10c3f42086d541805d8ddcae3557f19bb607678fadbfa2e6d7dd97e9fa914a7153765c63eb0da6e8a89506a8e3b453923e785e869 +srcfiles size=111 + RELOC/source/fonts/japanese-otf/basepl/base-h.pl + RELOC/source/fonts/japanese-otf/basepl/base-v.pl + RELOC/source/fonts/japanese-otf/basepl/base0-h.pl + RELOC/source/fonts/japanese-otf/basepl/base2-h.pl + RELOC/source/fonts/japanese-otf/basepl/base2-v.pl + RELOC/source/fonts/japanese-otf/basepl/base3-v.pl + RELOC/source/fonts/japanese-otf/basepl/brsg-h.pl + RELOC/source/fonts/japanese-otf/basepl/brsg-v.pl + RELOC/source/fonts/japanese-otf/makeotf + RELOC/source/fonts/japanese-otf/mkjvf + RELOC/source/fonts/japanese-otf/script/glyphdata + RELOC/source/fonts/japanese-otf/script/mkaltutfvf.pl + RELOC/source/fonts/japanese-otf/script/mkcidofm.pl + RELOC/source/fonts/japanese-otf/script/mkcidvf.pl + RELOC/source/fonts/japanese-otf/script/mkjp04tfmvf.pl + RELOC/source/fonts/japanese-otf/script/mkmlcidvf.pl + RELOC/source/fonts/japanese-otf/script/mkpkana.pl + RELOC/source/fonts/japanese-otf/script/mkpropofm.pl + RELOC/source/fonts/japanese-otf/script/mktfm.pl + RELOC/source/fonts/japanese-otf/script/mkutfvf.pl + RELOC/source/fonts/japanese-otf/script/mkvpkana.pl + RELOC/source/fonts/japanese-otf/script/otf-hangul.rb +runfiles size=31095 RELOC/fonts/map/dvipdfmx/japanese-otf/otf-cktx.map - RELOC/fonts/ofm/public/japanese-otf/hirakaku-w3-h.ofm - RELOC/fonts/ofm/public/japanese-otf/hirakaku-w3-v.ofm - RELOC/fonts/ofm/public/japanese-otf/hirakaku-w6-h.ofm - RELOC/fonts/ofm/public/japanese-otf/hirakaku-w6-v.ofm - RELOC/fonts/ofm/public/japanese-otf/hiramaru-w4-h.ofm - RELOC/fonts/ofm/public/japanese-otf/hiramaru-w4-v.ofm - RELOC/fonts/ofm/public/japanese-otf/hiramin-w3-h.ofm - RELOC/fonts/ofm/public/japanese-otf/hiramin-w3-v.ofm - RELOC/fonts/ofm/public/japanese-otf/hiramin-w6-h.ofm - RELOC/fonts/ofm/public/japanese-otf/hiramin-w6-v.ofm RELOC/fonts/ofm/public/japanese-otf/otf-cjgb-h.ofm RELOC/fonts/ofm/public/japanese-otf/otf-cjgb-v.ofm RELOC/fonts/ofm/public/japanese-otf/otf-cjge-h.ofm @@ -82636,16 +134559,6 @@ runfiles size=31495 RELOC/fonts/tfm/public/japanese-otf/hgothr-v.tfm RELOC/fonts/tfm/public/japanese-otf/hgothrn-h.tfm RELOC/fonts/tfm/public/japanese-otf/hgothrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf/hirakaku-w3-h.tfm - RELOC/fonts/tfm/public/japanese-otf/hirakaku-w3-v.tfm - RELOC/fonts/tfm/public/japanese-otf/hirakaku-w6-h.tfm - RELOC/fonts/tfm/public/japanese-otf/hirakaku-w6-v.tfm - RELOC/fonts/tfm/public/japanese-otf/hiramaru-w4-h.tfm - RELOC/fonts/tfm/public/japanese-otf/hiramaru-w4-v.tfm - RELOC/fonts/tfm/public/japanese-otf/hiramin-w3-h.tfm - RELOC/fonts/tfm/public/japanese-otf/hiramin-w3-v.tfm - RELOC/fonts/tfm/public/japanese-otf/hiramin-w6-h.tfm - RELOC/fonts/tfm/public/japanese-otf/hiramin-w6-v.tfm RELOC/fonts/tfm/public/japanese-otf/hmgothr-h.tfm RELOC/fonts/tfm/public/japanese-otf/hmgothr-v.tfm RELOC/fonts/tfm/public/japanese-otf/hmgothrn-h.tfm @@ -82756,16 +134669,6 @@ runfiles size=31495 RELOC/fonts/tfm/public/japanese-otf/otf-utgr-v.tfm RELOC/fonts/tfm/public/japanese-otf/otf-utmr-h.tfm RELOC/fonts/tfm/public/japanese-otf/otf-utmr-v.tfm - RELOC/fonts/tfm/public/japanese-otf/phirakakuw3-h.tfm - RELOC/fonts/tfm/public/japanese-otf/phirakakuw3-v.tfm - RELOC/fonts/tfm/public/japanese-otf/phirakakuw6-h.tfm - RELOC/fonts/tfm/public/japanese-otf/phirakakuw6-v.tfm - RELOC/fonts/tfm/public/japanese-otf/phiramaruw4-h.tfm - RELOC/fonts/tfm/public/japanese-otf/phiramaruw4-v.tfm - RELOC/fonts/tfm/public/japanese-otf/phiraminw3-h.tfm - RELOC/fonts/tfm/public/japanese-otf/phiraminw3-v.tfm - RELOC/fonts/tfm/public/japanese-otf/phiraminw6-h.tfm - RELOC/fonts/tfm/public/japanese-otf/phiraminw6-v.tfm RELOC/fonts/tfm/public/japanese-otf/rubygothb-h.tfm RELOC/fonts/tfm/public/japanese-otf/rubygothb-v.tfm RELOC/fonts/tfm/public/japanese-otf/rubygotheb-h.tfm @@ -83752,16 +135655,6 @@ runfiles size=31495 RELOC/fonts/vf/public/japanese-otf/nmlminr-v.vf RELOC/fonts/vf/public/japanese-otf/nmlminrn-h.vf RELOC/fonts/vf/public/japanese-otf/nmlminrn-v.vf - RELOC/fonts/vf/public/japanese-otf/phirakakuw3-h.vf - RELOC/fonts/vf/public/japanese-otf/phirakakuw3-v.vf - RELOC/fonts/vf/public/japanese-otf/phirakakuw6-h.vf - RELOC/fonts/vf/public/japanese-otf/phirakakuw6-v.vf - RELOC/fonts/vf/public/japanese-otf/phiramaruw4-h.vf - RELOC/fonts/vf/public/japanese-otf/phiramaruw4-v.vf - RELOC/fonts/vf/public/japanese-otf/phiraminw3-h.vf - RELOC/fonts/vf/public/japanese-otf/phiraminw3-v.vf - RELOC/fonts/vf/public/japanese-otf/phiraminw6-h.vf - RELOC/fonts/vf/public/japanese-otf/phiraminw6-v.vf RELOC/fonts/vf/public/japanese-otf/rubygothb-h.vf RELOC/fonts/vf/public/japanese-otf/rubygothb-v.vf RELOC/fonts/vf/public/japanese-otf/rubygotheb-h.vf @@ -84484,382 +136377,76 @@ runfiles size=31495 RELOC/tex/platex/japanese-otf/mlcid.sty RELOC/tex/platex/japanese-otf/otf-hangul.dfu RELOC/tex/platex/japanese-otf/redeffont.sty -docfiles size=18 - RELOC/doc/fonts/japanese-otf/COPYRIGHT - RELOC/doc/fonts/japanese-otf/fontmap.zip - RELOC/doc/fonts/japanese-otf/otf-script-gteb.diff - RELOC/doc/fonts/japanese-otf/readme.en.txt - RELOC/doc/fonts/japanese-otf/readme.txt - RELOC/doc/fonts/japanese-otf/test/brsgtest.tex - RELOC/doc/fonts/japanese-otf/test/jis2004.tex - RELOC/doc/fonts/japanese-otf/test/koreanexample.tex - RELOC/doc/fonts/japanese-otf/test/otftest.tex - RELOC/doc/fonts/japanese-otf/test/pkanatest.tex - RELOC/doc/fonts/japanese-otf/test/pkanatest2.tex -srcfiles size=110 - RELOC/source/fonts/japanese-otf/basepl/base-h.pl - RELOC/source/fonts/japanese-otf/basepl/base-v.pl - RELOC/source/fonts/japanese-otf/basepl/base0-h.pl - RELOC/source/fonts/japanese-otf/basepl/base2-h.pl - RELOC/source/fonts/japanese-otf/basepl/base2-v.pl - RELOC/source/fonts/japanese-otf/basepl/base3-v.pl - RELOC/source/fonts/japanese-otf/basepl/brsg-h.pl - RELOC/source/fonts/japanese-otf/basepl/brsg-v.pl - RELOC/source/fonts/japanese-otf/makeotf - RELOC/source/fonts/japanese-otf/mkjvf - RELOC/source/fonts/japanese-otf/script/glyphdata - RELOC/source/fonts/japanese-otf/script/mkaltutfvf.pl - RELOC/source/fonts/japanese-otf/script/mkcidofm.pl - RELOC/source/fonts/japanese-otf/script/mkcidvf.pl - RELOC/source/fonts/japanese-otf/script/mkjp04tfmvf.pl - RELOC/source/fonts/japanese-otf/script/mkmlcidvf.pl - RELOC/source/fonts/japanese-otf/script/mkpkana.pl - RELOC/source/fonts/japanese-otf/script/mkpropofm.pl - RELOC/source/fonts/japanese-otf/script/mktfm.pl - RELOC/source/fonts/japanese-otf/script/mkutfvf.pl - RELOC/source/fonts/japanese-otf/script/mkvpkana.pl +catalogue-contact-home http://psitau.kitunebi.com/otf.html +catalogue-contact-repository https://github.com/texjporg/japanese-otf-mirror catalogue-ctan /language/japanese/japanese-otf -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2019-04-02 20:16:48 +0200 catalogue-license other-free -catalogue-version v1.7b6 +catalogue-topics font-use font-cjk japanese +catalogue-version 1.7b8 name japanese-otf-uptex category Package -revision 36763 -shortdesc Support for Japanese OTF files in upLaTeX. +revision 50707 +shortdesc Support for Japanese OTF files in upLaTeX relocated 1 longdesc The bundle offers support of the fonts in the japanese-otf longdesc package, for use with the UpTeX distribution (version 0.20 or longdesc later). depend japanese-otf -execute addKanjiMap otf-up-@kanjiEmbed@.map -runfiles size=31501 - RELOC/fonts/ovp/public/japanese-otf-uptex/upphirakakuw3-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/upphirakakuw3-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/upphirakakuw6-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/upphirakakuw6-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/upphiramaruw4-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/upphiramaruw4-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/upphiraminw3-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/upphiraminw3-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/upphiraminw6-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/upphiraminw6-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfcgrk-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfcgrk-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfcgrl-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfcgrl-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfcgrm-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfcgrm-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfcgro-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfcgro-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfcmrk-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfcmrk-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfcmrl-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfcmrl-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfcmrm-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfcmrm-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfcmro-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfcmro-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgrj-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgrj-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgrk-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgrk-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgrl-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgrl-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgrm-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgrm-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgrn-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgrn-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgro-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgro-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgrp-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgrp-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgrq-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgrq-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgrr-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgrr-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgrs-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgrs-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgrt-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgrt-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgru-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgru-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgrv-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgrv-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgrz-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfgrz-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbj-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbj-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbk-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbk-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbl-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbl-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbm-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbm-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbn-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbn-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbo-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbo-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbp-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbp-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbq-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbq-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbr-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbr-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbs-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbs-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbt-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbt-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbu-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbu-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbv-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbv-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbz-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgbz-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgej-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgej-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgek-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgek-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgel-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgel-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgem-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgem-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgen-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgen-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgeo-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgeo-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgep-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgep-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgeq-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgeq-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjger-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjger-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjges-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjges-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjget-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjget-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgeu-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgeu-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgev-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgev-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgez-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgez-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgrj-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgrj-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgrk-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgrk-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgrl-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgrl-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgrm-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgrm-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgrn-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgrn-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgro-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgro-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgrp-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgrp-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgrq-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgrq-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgrr-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgrr-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgrs-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgrs-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgrt-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgrt-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgru-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgru-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgrv-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgrv-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgrz-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjgrz-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbj-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbj-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbk-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbk-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbl-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbl-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbm-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbm-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbn-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbn-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbo-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbo-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbp-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbp-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbq-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbq-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbr-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbr-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbs-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbs-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbt-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbt-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbu-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbu-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbv-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbv-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbz-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmbz-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgrj-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgrj-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgrk-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgrk-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgrl-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgrl-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgrm-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgrm-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgrn-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgrn-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgro-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgro-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgrp-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgrp-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgrq-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgrq-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgrr-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgrr-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgrs-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgrs-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgrt-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgrt-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgru-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgru-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgrv-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgrv-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgrz-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmgrz-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmlj-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmlj-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmlk-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmlk-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmll-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmll-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmlm-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmlm-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmln-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmln-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmlo-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmlo-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmlp-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmlp-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmlq-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmlq-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmlr-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmlr-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmls-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmls-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmlt-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmlt-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmlu-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmlu-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmlv-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmlv-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmlz-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmlz-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmrj-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmrj-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmrk-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmrk-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmrl-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmrl-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmrm-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmrm-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmrn-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmrn-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmro-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmro-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmrp-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmrp-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmrq-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmrq-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmrr-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmrr-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmrs-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmrs-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmrt-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmrt-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmru-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmru-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmrv-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmrv-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmrz-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfjmrz-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmrj-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmrj-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmrk-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmrk-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmrl-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmrl-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmrm-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmrm-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmrn-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmrn-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmro-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmro-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmrp-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmrp-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmrq-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmrq-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmrr-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmrr-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmrs-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmrs-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmrt-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmrt-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmru-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmru-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmrv-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmrv-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmrz-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utfmrz-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftgrk-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftgrk-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftgrl-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftgrl-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftgrm-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftgrm-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftgrn-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftgrn-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftgro-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftgro-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftgrp-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftgrp-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftgrq-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftgrq-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftgrr-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftgrr-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftgrs-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftgrs-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftgrt-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftgrt-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftgru-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftgru-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftgrz-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftgrz-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftmrk-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftmrk-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftmrl-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftmrl-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftmrm-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftmrm-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftmrn-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftmrn-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftmro-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftmro-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftmrp-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftmrp-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftmrq-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftmrq-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftmrr-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftmrr-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftmrs-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftmrs-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftmrt-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftmrt-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftmru-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftmru-v.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftmrz-h.ovp - RELOC/fonts/ovp/public/japanese-otf-uptex/utftmrz-v.ovp +execute addKanjiMap otf-up-@jaEmbed@.map +containersize 109132 +containerchecksum 1ebac5c6cfed820a05e735bc01c5263627a8732d73d174223f35ab361c4332b991181fffb0349958e2c9e12a6a4738a4d21cabb02b1f419f72b6e48086ae88c3 +doccontainersize 21044 +doccontainerchecksum c6a636f61b9502e63312f7664aa12977023ea6199fcc11fcde3b5f9f73ae361591d5d4c1ead12d28cc35d634e43e94c1b40108ead8f95db16d408e01a16daf06 +docfiles size=40 + RELOC/doc/fonts/japanese-otf-uptex/00otf-uptex.txt + RELOC/doc/fonts/japanese-otf-uptex/COPYRIGHT + RELOC/doc/fonts/japanese-otf-uptex/README details="Readme" + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/Makefile + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/era.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/exclam.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/otfscale.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/paren0.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/punct0.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/punctuation.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/sp_cns_utf.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/sp_gb_utf.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/sp_jp_text.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/sp_jp_utf.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/sp_kr_utf.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/uotf-sp-utf8.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/uotftest-utf8.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/uotftest.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/upbrsgtest.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/upjis2004.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/upkanatest1.tex + RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/upkanatest2.tex +srccontainersize 26116 +srccontainerchecksum 65d3683597252f91a34a2ccba67a218ddb51e79e57e2e87df3c3e58a59600108ea11282149dc90de838a9638941377af76b8abf4bcdc1384d427a22d31713876 +srcfiles size=44 + RELOC/source/fonts/japanese-otf-uptex/basepl/ubase-h.pl + RELOC/source/fonts/japanese-otf-uptex/basepl/ubase-v.pl + RELOC/source/fonts/japanese-otf-uptex/basepl/ubrsg-h.pl + RELOC/source/fonts/japanese-otf-uptex/basepl/ubrsg-v.pl + RELOC/source/fonts/japanese-otf-uptex/script/CheckDVICode.pm + RELOC/source/fonts/japanese-otf-uptex/script/MakeSPList.pm + RELOC/source/fonts/japanese-otf-uptex/script/mktfm_sp.pl + RELOC/source/fonts/japanese-otf-uptex/script/mkutf32list.pl + RELOC/source/fonts/japanese-otf-uptex/script/mkutfvf_sp.pl + RELOC/source/fonts/japanese-otf-uptex/script/sp_list_c.txt + RELOC/source/fonts/japanese-otf-uptex/script/sp_list_j.txt + RELOC/source/fonts/japanese-otf-uptex/script/sp_list_k.txt + RELOC/source/fonts/japanese-otf-uptex/script/sp_list_t.txt + RELOC/source/fonts/japanese-otf-uptex/script/umkpkana.pl + RELOC/source/fonts/japanese-otf-uptex/script/umkvpkana.pl + RELOC/source/fonts/japanese-otf-uptex/umakeotf + RELOC/source/fonts/japanese-otf-uptex/umakeotf_brsg + RELOC/source/fonts/japanese-otf-uptex/umakeotf_jis04 + RELOC/source/fonts/japanese-otf-uptex/umakeotf_pre + RELOC/source/fonts/japanese-otf-uptex/umakeotf_prop + RELOC/source/fonts/japanese-otf-uptex/umkjvf +runfiles size=21021 RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothb-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothb-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothbn-h.tfm @@ -85000,16 +136587,6 @@ runfiles size=31501 RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminr-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminrn-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upphirakakuw3-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upphirakakuw3-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upphirakakuw6-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upphirakakuw6-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upphiramaruw4-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upphiramaruw4-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upphiraminw3-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upphiraminw3-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upphiraminw6-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upphiraminw6-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/uprubygothb-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/uprubygothb-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/uprubygotheb-h.tfm @@ -85066,6 +136643,12 @@ runfiles size=31501 RELOC/fonts/tfm/public/japanese-otf-uptex/utfgru-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrv-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrw-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrw-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrx-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrx-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgry-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgry-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrz-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrz-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbj-h.tfm @@ -85094,6 +136677,10 @@ runfiles size=31501 RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbu-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbv-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbx-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbx-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgby-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgby-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbz-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbz-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgej-h.tfm @@ -85122,6 +136709,10 @@ runfiles size=31501 RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgeu-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgev-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgev-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgex-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgex-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgey-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgey-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgez-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgez-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrj-h.tfm @@ -85150,6 +136741,10 @@ runfiles size=31501 RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgru-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrv-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrx-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrx-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgry-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgry-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrz-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrz-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbj-h.tfm @@ -85178,6 +136773,10 @@ runfiles size=31501 RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbu-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbv-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbx-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbx-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmby-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmby-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbz-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbz-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrj-h.tfm @@ -85206,6 +136805,10 @@ runfiles size=31501 RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgru-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrv-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrx-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrx-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgry-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgry-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrz-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrz-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlj-h.tfm @@ -85234,6 +136837,10 @@ runfiles size=31501 RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlu-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlv-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlx-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlx-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmly-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmly-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlz-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlz-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrj-h.tfm @@ -85262,6 +136869,10 @@ runfiles size=31501 RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmru-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrv-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrx-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrx-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmry-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmry-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrz-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrz-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrj-h.tfm @@ -85290,6 +136901,12 @@ runfiles size=31501 RELOC/fonts/tfm/public/japanese-otf-uptex/utfmru-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrv-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrw-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrw-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrx-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrx-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmry-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmry-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrz-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrz-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrk-h.tfm @@ -85314,6 +136931,12 @@ runfiles size=31501 RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrt-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utftgru-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utftgru-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrv-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrw-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrw-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrx-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrx-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrz-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrz-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrk-h.tfm @@ -85338,6 +136961,12 @@ runfiles size=31501 RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrt-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utftmru-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utftmru-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrv-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrw-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrw-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrx-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrx-v.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrz-h.tfm RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrz-v.tfm RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothb-h.vf @@ -85452,16 +137081,6 @@ runfiles size=31501 RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminr-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminrn-h.vf RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminrn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upphirakakuw3-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upphirakakuw3-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upphirakakuw6-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upphirakakuw6-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upphiramaruw4-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upphiramaruw4-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upphiraminw3-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upphiraminw3-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upphiraminw6-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upphiraminw6-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/uprubygothb-h.vf RELOC/fonts/vf/public/japanese-otf-uptex/uprubygothb-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/uprubygotheb-h.vf @@ -85518,6 +137137,12 @@ runfiles size=31501 RELOC/fonts/vf/public/japanese-otf-uptex/utfgru-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfgrv-h.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfgrv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrw-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrw-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrx-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrx-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgry-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgry-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfgrz-h.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfgrz-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbj-h.vf @@ -85546,6 +137171,10 @@ runfiles size=31501 RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbu-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbv-h.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbx-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbx-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgby-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgby-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbz-h.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbz-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjgej-h.vf @@ -85574,6 +137203,10 @@ runfiles size=31501 RELOC/fonts/vf/public/japanese-otf-uptex/utfjgeu-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjgev-h.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjgev-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgex-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgex-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgey-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgey-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjgez-h.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjgez-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrj-h.vf @@ -85602,6 +137235,10 @@ runfiles size=31501 RELOC/fonts/vf/public/japanese-otf-uptex/utfjgru-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrv-h.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrx-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrx-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgry-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgry-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrz-h.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrz-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbj-h.vf @@ -85630,6 +137267,10 @@ runfiles size=31501 RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbu-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbv-h.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbx-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbx-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmby-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmby-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbz-h.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbz-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrj-h.vf @@ -85658,6 +137299,10 @@ runfiles size=31501 RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgru-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrv-h.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrx-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrx-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgry-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgry-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrz-h.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrz-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlj-h.vf @@ -85686,6 +137331,10 @@ runfiles size=31501 RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlu-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlv-h.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlx-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlx-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmly-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmly-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlz-h.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlz-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrj-h.vf @@ -85714,6 +137363,10 @@ runfiles size=31501 RELOC/fonts/vf/public/japanese-otf-uptex/utfjmru-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrv-h.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrx-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrx-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmry-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmry-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrz-h.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrz-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfmrj-h.vf @@ -85742,6 +137395,12 @@ runfiles size=31501 RELOC/fonts/vf/public/japanese-otf-uptex/utfmru-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfmrv-h.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfmrv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrw-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrw-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrx-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrx-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmry-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmry-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfmrz-h.vf RELOC/fonts/vf/public/japanese-otf-uptex/utfmrz-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utftgrk-h.vf @@ -85766,6 +137425,12 @@ runfiles size=31501 RELOC/fonts/vf/public/japanese-otf-uptex/utftgrt-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utftgru-h.vf RELOC/fonts/vf/public/japanese-otf-uptex/utftgru-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrv-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrw-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrw-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrx-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrx-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utftgrz-h.vf RELOC/fonts/vf/public/japanese-otf-uptex/utftgrz-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utftmrk-h.vf @@ -85790,211 +137455,258 @@ runfiles size=31501 RELOC/fonts/vf/public/japanese-otf-uptex/utftmrt-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utftmru-h.vf RELOC/fonts/vf/public/japanese-otf-uptex/utftmru-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrv-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrw-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrw-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrx-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrx-v.vf RELOC/fonts/vf/public/japanese-otf-uptex/utftmrz-h.vf RELOC/fonts/vf/public/japanese-otf-uptex/utftmrz-v.vf RELOC/tex/platex/japanese-otf-uptex/mlutf.sty RELOC/tex/platex/japanese-otf-uptex/otf.sty -docfiles size=36 - RELOC/doc/fonts/japanese-otf-uptex/00otf-uptex.txt - RELOC/doc/fonts/japanese-otf-uptex/COPYRIGHT - RELOC/doc/fonts/japanese-otf-uptex/README - RELOC/doc/fonts/japanese-otf-uptex/fontmap.zip - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/Makefile - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/otfscale.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/sp_cns_utf.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/sp_gb_utf.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/sp_jp_text.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/sp_jp_utf.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/sp_kr_utf.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/uotf-sp-utf8.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/uotftest-utf8.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/uotftest.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/upbrsgtest.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/upjis2004.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/upkanatest1.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/upkanatest2.tex -srcfiles size=50 - RELOC/source/fonts/japanese-otf-uptex/basepl/ubase-h.pl - RELOC/source/fonts/japanese-otf-uptex/basepl/ubase-v.pl - RELOC/source/fonts/japanese-otf-uptex/basepl/ubrsg-h.pl - RELOC/source/fonts/japanese-otf-uptex/basepl/ubrsg-v.pl - RELOC/source/fonts/japanese-otf-uptex/patch/otfbeta_uptex-0.17.patch - RELOC/source/fonts/japanese-otf-uptex/script/CheckDVICode.pm - RELOC/source/fonts/japanese-otf-uptex/script/MakeSPList.pm - RELOC/source/fonts/japanese-otf-uptex/script/mktfm_sp.pl - RELOC/source/fonts/japanese-otf-uptex/script/mkutf32list.pl - RELOC/source/fonts/japanese-otf-uptex/script/mkutfvf_sp.pl - RELOC/source/fonts/japanese-otf-uptex/script/sp_list_c.txt - RELOC/source/fonts/japanese-otf-uptex/script/sp_list_j.txt - RELOC/source/fonts/japanese-otf-uptex/script/sp_list_k.txt - RELOC/source/fonts/japanese-otf-uptex/script/sp_list_t.txt - RELOC/source/fonts/japanese-otf-uptex/script/umkpkana.pl - RELOC/source/fonts/japanese-otf-uptex/script/umkvpkana.pl - RELOC/source/fonts/japanese-otf-uptex/umakeotf - RELOC/source/fonts/japanese-otf-uptex/umakeotf_brsg - RELOC/source/fonts/japanese-otf-uptex/umakeotf_jis04 - RELOC/source/fonts/japanese-otf-uptex/umakeotf_prop - RELOC/source/fonts/japanese-otf-uptex/umkjvf +catalogue-contact-home http://www.t-lab.opal.ne.jp/tex/uptex.html +catalogue-contact-repository https://github.com/texjporg/japanese-otf-mirror catalogue-ctan /language/japanese/japanese-otf-uptex -catalogue-date 2015-04-12 09:02:59 +0200 +catalogue-date 2019-04-02 19:34:38 +0200 catalogue-license bsd3 -catalogue-version 0.17 +catalogue-topics font-use font-cjk japanese +catalogue-version 0.23 -name japanese +name jfmutil +category Package +revision 50002 +shortdesc Utility to process pTeX-extended TFM and VF +longdesc This program provides functionality to process data files (JFM +longdesc and VF) that form logical fonts used in (u)pTeX. The functions +longdesc currently available include: The mutual conversion between +longdesc Japanese virtual fonts (pairs of VF and JFM) and files in the +longdesc "ZVP format", which is an original text format representing +longdesc data in virtual fonts. This function can be seen as a +longdesc counterpart to the vftovp/vptovf programs. The mutual +longdesc conversion between VF files alone and files in the "ZVP0 +longdesc format", which is a subset of the ZVP format. +depend jfmutil.ARCH +containersize 25264 +containerchecksum af6f5a94b795af993a189276825388da3f0592563fdfde1b3f66ab1763a375ed691c51c2f4dbcd5496be7131de68f7069c7c6a748be2836a374d75b876312c01 +doccontainersize 9456 +doccontainerchecksum 20de3ee13d4f214a0576fc05833a074f345ede24c589a3711319b14baa33ad7e961b1d083105ee9c8b8262f59af76b1dfd821a4cd903a25054f26499c84139ad +docfiles size=9 + texmf-dist/doc/fonts/jfmutil/LICENSE + texmf-dist/doc/fonts/jfmutil/README-ja.md details="Readme (Japanese)" language="ja" + texmf-dist/doc/fonts/jfmutil/README.md details="Readme" +runfiles size=26 + texmf-dist/scripts/jfmutil/jfmutil.pl +catalogue-ctan /fonts/utilities/jfmutil +catalogue-date 2019-02-11 14:03:12 +0100 +catalogue-license mit +catalogue-topics font-proc +catalogue-version 1.2.2 + +name jfmutil.aarch64-linux +category Package +revision 46228 +shortdesc aarch64-linux files of jfmutil +containersize 340 +containerchecksum ea88d5a81a682ea7520cb6a318ae339f183611113955e2e35fba1d6ad1b7db5b54b9f6cbead63a82ee9b4beaef6d70f42ca31d219eb561f2e7a4598f51590747 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/jfmutil + +name jfmutil.amd64-freebsd +category Package +revision 44835 +shortdesc amd64-freebsd files of jfmutil +containersize 340 +containerchecksum b10fca0f54f1640ec69a12c29e48615fb088940a8cbfdcadc5358ee3f6fd3c623a17b5a0ce2eb67527ab38578a390bfb640d5cdfb97bb01d3f31601bf253c56f +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/jfmutil + +name jfmutil.amd64-netbsd +category Package +revision 44835 +shortdesc amd64-netbsd files of jfmutil +containersize 340 +containerchecksum 00bec98536aaac83e90f63d70bc28434ff20bcb414ce8b23c19966e03496ae0c00f1a19de8709f7a05a21a59726f34a0de6f09e6e787298031620c56191e0e7b +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/jfmutil + +name jfmutil.armhf-linux +category Package +revision 44835 +shortdesc armhf-linux files of jfmutil +containersize 340 +containerchecksum f32a42f644de7afc10694175a18bca190ebc805ae421415d4010f92f698a006508b12abd4741b93febfb8922bb568b8dc65a9df0b5c43bfe6b2869f5f7b68e1f +binfiles arch=armhf-linux size=1 + bin/armhf-linux/jfmutil + +name jfmutil.i386-cygwin +category Package +revision 44835 +shortdesc i386-cygwin files of jfmutil +containersize 340 +containerchecksum be92b62a3e0a99d57c9d627ebb73b6b89acd00ba0cabb528b59e8b21a4525d1979abd204493d1c9b08d0b94492344df45780df400c317ae3ad08716bde03c63a +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/jfmutil + +name jfmutil.i386-freebsd +category Package +revision 44835 +shortdesc i386-freebsd files of jfmutil +containersize 340 +containerchecksum 3c5be3d66f6cd449383f332178a7dc2f8b089ff0024aaf1352e79895ff915122fe3181a44b2cf23b42daba193ac541bf5eabd733788b546bc9ee0f2f6c40c210 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/jfmutil + +name jfmutil.i386-linux +category Package +revision 44835 +shortdesc i386-linux files of jfmutil +containersize 340 +containerchecksum 9cb46c30cd929ff9507dd8dfafbfa3b763afcc7248441221fa710ccbe3694d75dcfc58f330ebee6a1a24bbb297f28e2023888a1c783a045238aaee81fc982570 +binfiles arch=i386-linux size=1 + bin/i386-linux/jfmutil + +name jfmutil.i386-netbsd +category Package +revision 44835 +shortdesc i386-netbsd files of jfmutil +containersize 340 +containerchecksum 25705c94f778ae24ce226432f87d014922c35008dde056a094488e656a8b4055bcb34f82f8032e949ae45f38f2e8316c797e8de7f3986cf5503dde9d011a14da +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/jfmutil + +name jfmutil.i386-solaris +category Package +revision 44835 +shortdesc i386-solaris files of jfmutil +containersize 340 +containerchecksum 0a7358db82b994a8341a2446a1169fbc1ba7693a6601ed92328e8249b16c87b9710608262913974b1c69bee7fcf83fcb5d9c69b63d24d047df113f1da4bfe7fb +binfiles arch=i386-solaris size=1 + bin/i386-solaris/jfmutil + +name jfmutil.win32 +category Package +revision 44835 +shortdesc win32 files of jfmutil +containersize 684 +containerchecksum cfe6725a5dc9d306a80e4c0b8bd93453e8680109f65c87ca12b541790d6b86cf469241bc5be5f673ad9e1e2c74455ce900fb1ba311a12229b2e0b8141cc7b9bc +binfiles arch=win32 size=1 + bin/win32/jfmutil.exe + +name jfmutil.x86_64-cygwin +category Package +revision 44835 +shortdesc x86_64-cygwin files of jfmutil +containersize 344 +containerchecksum 3183b1cb9feed31035f0b96612b2c9f4c92d4043019851c4a1fdc1dca8f36adcc1258971ee068b1a539ade2ff7b1d6f19121b2e0c76fdfdbb2fc51b5fdfe50e4 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/jfmutil + +name jfmutil.x86_64-darwin +category Package +revision 44835 +shortdesc x86_64-darwin files of jfmutil +containersize 340 +containerchecksum 79659338c4e17360275e2ce3d646d25471ea2d5fdbce20895d96df2a657d3f88425e6ccb051bb1e236cf21a81208ec92ba01c58ca875e3359a47e37532471509 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/jfmutil + +name jfmutil.x86_64-darwinlegacy +category Package +revision 44835 +shortdesc x86_64-darwinlegacy files of jfmutil +containersize 348 +containerchecksum b7d8571bf0c00b1669e0f9800db8323053b83fe7419129c5721ba945ad33af93dea5eba5f3902a0fdf565080ec9a701f0bc683303403ab2d58dc7b915282ab9b +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/jfmutil + +name jfmutil.x86_64-linux +category Package +revision 44835 +shortdesc x86_64-linux files of jfmutil +containersize 340 +containerchecksum f7ec55c98663ff4cc8efea8664c544945a3041ad917f7dd0c338729bc971f6e21ea6bb51c7763c97f6042388c0b77c9597d48aa4f90ee711ecf6c0e7562f9496 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/jfmutil + +name jfmutil.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of jfmutil +containersize 344 +containerchecksum 2e0c1c58a4c7fb325af924ca08b1d77fb97b00ea8e9b7a6c26782fcee505315592466790c3a9e76bd703c8d2484a8aa88bd438bf15583c423029f0798c257787 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/jfmutil + +name jfmutil.x86_64-solaris +category Package +revision 44835 +shortdesc x86_64-solaris files of jfmutil +containersize 340 +containerchecksum 922296ed3f4006351b09b90f2b3b9f9f1c32d175191ef02f0b3564269a5cda0b057c7b51e381be9cb4749742dad21e25e3ca172be27f088cab2861f9a4adaee9 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/jfmutil + +name jigsaw +category Package +revision 49111 +shortdesc Draw jigsaw pieces with TikZ +relocated 1 +longdesc This is a small LaTeX package to draw jigsaw pieces with TikZ. +longdesc It is possible to draw individual pieces and adjust their +longdesc shape, create tile patterns or automatically generate complete +longdesc jigsaws. +containersize 1440 +containerchecksum 3bff01425c502c98894fc517be9b4af8ed48bd5a059835fb850ad1c58a2618998967780a65a5bb43946acecaa397ea51fcdd051dc2b8c863e27b55fd3beb5230 +doccontainersize 176048 +doccontainerchecksum 17c263228124da3f17ca338738add762992e2674b0e0fb80e250c8302cc59d11bd1017a1d4e005a7c9c9d66444a91851cfd6e505a5e1f6fb73aef7d5ee703d31 +docfiles size=50 + RELOC/doc/latex/jigsaw/LICENSE.txt + RELOC/doc/latex/jigsaw/README.md details="Readme" + RELOC/doc/latex/jigsaw/jigsaw-doc.pdf details="Package documentation" + RELOC/doc/latex/jigsaw/jigsaw-doc.tex +runfiles size=1 + RELOC/tex/latex/jigsaw/jigsaw.sty +catalogue-contact-bugs https://github.com/samcarter/jigsaw/issues +catalogue-contact-repository https://github.com/samcarter/jigsaw +catalogue-contact-support https://github.com/samcarter/jigsaw/issues +catalogue-ctan /graphics/pgf/contrib/jigsaw +catalogue-date 2018-11-09 11:23:00 +0100 +catalogue-license lppl1.3c +catalogue-topics pgf-tikz +catalogue-version 0.1a + +name jkmath category Package -revision 30855 -shortdesc A substitute for a babel package for Japanese. +revision 47109 +shortdesc Macros for mathematics that make the code more readable relocated 1 -longdesc The package behaves in a similar way as if you provided the -longdesc (non-existent) Japanese option to babel so that you can handle -longdesc Japanese language text in LaTeX documents. The package requires -longdesc a Japanese-enabled TeX system, such as pTeX or jTeX. +longdesc Inspired by the physicspackage on CTAN, the package defines +longdesc some simple macros for mathematical notation which make the +longdesc code more readable and/or allow flexibility in typesetting +longdesc material. +containersize 1636 +containerchecksum 8e549db42b25c2edac71013afba0ebe3e09859ce4ef104da2b969663014cb88c10bf1c8899ee181070e6cec1b28d0ec9e5966d27f2176e2032d6855ded8ea941 +doccontainersize 128124 +doccontainerchecksum 99a954f6eb917333a8e6c4e3437fcd16f6950e0473fc1a48c99d748246c97d5a3df5b96e0314a9ec5e7c6bb0b318b934c40070ec94df00546e49cf140aef23c2 +docfiles size=34 + RELOC/doc/latex/jkmath/README.md details="Readme" + RELOC/doc/latex/jkmath/jkmath.pdf details="Package documentation" + RELOC/doc/latex/jkmath/jkmath.tex runfiles size=1 - RELOC/tex/platex/japanese/japanese.ldf -docfiles size=15 - RELOC/doc/platex/japanese/README - RELOC/doc/platex/japanese/sample.pdf - RELOC/doc/platex/japanese/sample.tex -srcfiles size=4 - RELOC/source/platex/japanese/japanese.dtx - RELOC/source/platex/japanese/japanese.ins -catalogue-ctan /language/japanese/japanese -catalogue-date 2014-02-26 23:03:13 +0100 + RELOC/tex/latex/jkmath/jkmath.sty +catalogue-contact-home https://github.com/JKaerts/jkmath +catalogue-ctan /macros/latex/contrib/jkmath +catalogue-date 2018-04-29 07:15:59 +0200 catalogue-license lppl -catalogue-version 1.3 - -name jfontmaps -category Package -revision 33067 -shortdesc Font maps and configuration tools for Japanese fonts. -longdesc The package offers font maps, and supporting material, that -longdesc make various Japanese fonts available to users of (u)ptex and -longdesc related programs or formats. The package does not ship any of -longdesc the fonts mentioned in the documentation, but only map files -longdesc for use with dvipdfmx; the user must obtain the other fonts -longdesc separately. The first exception is that ipa and ipaex the -longdesc respective fonts a shipped as part of the TeX Live distribution -longdesc and are available for free. The other exception is that the Yu -longdesc Mincho/Gothic fonts are available to Windows and MacOSX users, -longdesc as part of their operating system distribution. -depend jfontmaps.ARCH -runfiles size=94 - texmf-dist/fonts/cmap/jfontmaps/2004-H - texmf-dist/fonts/cmap/jfontmaps/2004-V - texmf-dist/fonts/map/dvipdfmx/jfontmaps/hiragino-pron/otf-hiragino-pron.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/hiragino-pron/otf-up-hiragino-pron.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/hiragino-pron/ptex-hiragino-pron-04.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/hiragino-pron/ptex-hiragino-pron.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/hiragino-pron/uptex-hiragino-pron-04.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/hiragino-pron/uptex-hiragino-pron.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/hiragino/otf-hiragino.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/hiragino/otf-up-hiragino.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/hiragino/ptex-hiragino-04.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/hiragino/ptex-hiragino.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/hiragino/uptex-hiragino-04.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/hiragino/uptex-hiragino.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/ipa/otf-ipa.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/ipa/otf-up-ipa.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/ipa/ptex-ipa.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/ipa/uptex-ipa.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/ipaex/otf-ipaex.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/ipaex/otf-up-ipaex.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/ipaex/ptex-ipaex.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/ipaex/uptex-ipaex.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/kozuka-pr6/otf-kozuka-pr6.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/kozuka-pr6/otf-up-kozuka-pr6.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/kozuka-pr6/ptex-kozuka-pr6-04.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/kozuka-pr6/ptex-kozuka-pr6.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/kozuka-pr6/uptex-kozuka-pr6-04.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/kozuka-pr6/uptex-kozuka-pr6.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/kozuka-pr6n/otf-kozuka-pr6n.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/kozuka-pr6n/otf-up-kozuka-pr6n.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/kozuka-pr6n/ptex-kozuka-pr6n-04.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/kozuka-pr6n/ptex-kozuka-pr6n.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/kozuka-pr6n/uptex-kozuka-pr6n-04.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/kozuka-pr6n/uptex-kozuka-pr6n.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/kozuka/otf-kozuka.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/kozuka/otf-up-kozuka.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/kozuka/ptex-kozuka-04.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/kozuka/ptex-kozuka.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/kozuka/uptex-kozuka-04.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/kozuka/uptex-kozuka.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/morisawa-pr6n/otf-morisawa-pr6n.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/morisawa-pr6n/otf-up-morisawa-pr6n.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/morisawa-pr6n/ptex-morisawa-pr6n-04.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/morisawa-pr6n/ptex-morisawa-pr6n.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/morisawa-pr6n/uptex-morisawa-pr6n-04.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/morisawa-pr6n/uptex-morisawa-pr6n.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/morisawa/otf-morisawa.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/morisawa/otf-up-morisawa.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/morisawa/ptex-morisawa-04.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/morisawa/ptex-morisawa.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/morisawa/uptex-morisawa-04.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/morisawa/uptex-morisawa.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/ms/otf-ms.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/ms/otf-up-ms.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/ms/ptex-ms.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/ms/uptex-ms.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/noEmbed/otf-noEmbed.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/noEmbed/otf-up-noEmbed.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/noEmbed/ptex-noEmbed-04.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/noEmbed/ptex-noEmbed.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/noEmbed/uptex-noEmbed-04.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/noEmbed/uptex-noEmbed.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/yu-osx/otf-up-yu-osx.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/yu-osx/otf-yu-osx.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/yu-osx/ptex-yu-osx-04.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/yu-osx/ptex-yu-osx.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/yu-osx/uptex-yu-osx-04.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/yu-osx/uptex-yu-osx.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/yu-win/otf-up-yu-win.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/yu-win/otf-yu-win.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/yu-win/ptex-yu-win.map - texmf-dist/fonts/map/dvipdfmx/jfontmaps/yu-win/uptex-yu-win.map - texmf-dist/scripts/jfontmaps/kanji-config-updmap-sys.sh - texmf-dist/scripts/jfontmaps/kanji-config-updmap.pl - texmf-dist/scripts/jfontmaps/kanji-fontmap-creator.pl -docfiles size=9 - texmf-dist/doc/fonts/jfontmaps/ChangeLog - texmf-dist/doc/fonts/jfontmaps/ChangeLog.pre-git - texmf-dist/doc/fonts/jfontmaps/README - texmf-dist/doc/fonts/jfontmaps/examples/otf-sample-04.tex - texmf-dist/doc/fonts/jfontmaps/examples/otf-sample.tex - texmf-dist/doc/fonts/jfontmaps/examples/ptex-sample.tex - texmf-dist/doc/fonts/jfontmaps/examples/series-compare.tex -srcfiles size=254 - texmf-dist/source/jfontmaps/jis04cmap_exp/JISX0213-2004-H - texmf-dist/source/jfontmaps/jis04cmap_exp/JISX0213-2004-V - texmf-dist/source/jfontmaps/jis04cmap_exp/README - texmf-dist/source/jfontmaps/jis04cmap_exp/cmapdec.lua - texmf-dist/source/jfontmaps/jis04cmap_exp/jis-h04-httk.pdf - texmf-dist/source/jfontmaps/jis04cmap_exp/jis-h04-httk.tex - texmf-dist/source/jfontmaps/jis04cmap_exp/jis-v04-vttk.pdf - texmf-dist/source/jfontmaps/jis04cmap_exp/jis-v04-vttk.tex - texmf-dist/source/jfontmaps/jis04cmap_exp/jisx0213-2004-8bit-std.txt - texmf-dist/source/jfontmaps/jis04cmap_exp/mk_jis_to_aj16_cid.lua - texmf-dist/source/jfontmaps/script/updmap-otf.sh - texmf-dist/source/jfontmaps/tools/mkmap.lua - texmf-dist/source/jfontmaps/tools/release.sh -catalogue-ctan /language/japanese/jfontmaps -catalogue-date 2014-05-09 00:43:11 +0200 -catalogue-license other-free -catalogue-version 20140301.0 - -name jfontmaps.i386-linux -category Package -revision 29848 -shortdesc i386-linux files of jfontmaps -binfiles arch=i386-linux size=3 - bin/i386-linux/kanji-config-updmap - bin/i386-linux/kanji-config-updmap-sys - bin/i386-linux/kanji-fontmap-creator +catalogue-topics maths +catalogue-version 0.1 name jknapltx category Package revision 19440 catalogue jknappen -shortdesc Miscellaneous packages by Joerg Knappen. +shortdesc Miscellaneous packages by Joerg Knappen relocated 1 longdesc Miscellaneous macros by Jorg Knappen, including: represent longdesc counters in greek; Maxwell's non-commutative division; @@ -86005,6 +137717,15 @@ longdesc fonts in maths; extra alignments for \parboxes; swap Roman and longdesc Sans fonts; transliterate semitic languages; patches to make longdesc (La)TeX formulae embeddable in SGML; use maths "minus" in text longdesc as appropriate; simple Young tableaux. +containersize 9096 +containerchecksum 0369405034393ea8de2cd94497a97ba6c40264ec9142eefee09647fd4e51f83e169a99757a4b92c1c9d911637f137404fa54231de452bcd208ba3f9982984153 +doccontainersize 3252 +doccontainerchecksum cadb522c007963278990e75a011e22d2c6bd8429e55fe5ecba3c2f20b9ae13fda4eac304bc405440c1c1566b1458e0f3e77a6d4adc77117b20673204bf502131 +docfiles size=4 + RELOC/doc/latex/jknapltx/00readme.txt + RELOC/doc/latex/jknapltx/README.TEXLIVE + RELOC/doc/latex/jknapltx/mathbbol.rme + RELOC/doc/latex/jknapltx/mathrsfs.rme runfiles size=19 RELOC/tex/latex/jknapltx/greekctr.sty RELOC/tex/latex/jknapltx/holtpolt.sty @@ -86022,58 +137743,170 @@ runfiles size=19 RELOC/tex/latex/jknapltx/ursfs.fd RELOC/tex/latex/jknapltx/ustmary.fd RELOC/tex/latex/jknapltx/young.sty -docfiles size=4 - RELOC/doc/latex/jknapltx/00readme.txt - RELOC/doc/latex/jknapltx/README.TEXLIVE - RELOC/doc/latex/jknapltx/mathbbol.rme - RELOC/doc/latex/jknapltx/mathrsfs.rme catalogue-ctan /macros/latex/contrib/jknappen -catalogue-date 2014-10-17 21:54:02 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics collection name jlabels category Package revision 24858 -shortdesc Make letter-sized pages of labels. +shortdesc Make letter-sized pages of labels relocated 1 longdesc The package provides controls for the numbers of rows and longdesc columns. -runfiles size=1 - RELOC/tex/latex/jlabels/jlabels.sty +containersize 1564 +containerchecksum 5077471a09df4090e087a465e9d1823668ab80f088a7d5fea7d14559e9ea8906dae029a2093038ce5e9f013bbe3a9bcd74d8626e6ccbcaf7ebedd5c2f1e3521e +doccontainersize 27008 +doccontainerchecksum 7736480f6736d8b623fac61683321eb7444ca8672eadf0da200eeca928de9dc031152e4599783d602e9c11b58463b03fc1162756edbaa5bd3dc1f6c5b64e08a6 docfiles size=11 - RELOC/doc/latex/jlabels/README - RELOC/doc/latex/jlabels/jlabels.pdf + RELOC/doc/latex/jlabels/README details="Readme" + RELOC/doc/latex/jlabels/jlabels.pdf details="Package documentation" RELOC/doc/latex/jlabels/jlabels.tex +runfiles size=1 + RELOC/tex/latex/jlabels/jlabels.sty catalogue-ctan /macros/latex/contrib/jlabels -catalogue-date 2015-02-23 19:50:58 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics labels + +name jlreq +category Package +revision 51036 +shortdesc Japanese document class based on requirements for Japanese text layout +relocated 1 +longdesc This package provides a Japanese document class based on +longdesc requirements for Japanese text layout. The class file and the +longdesc JFM (Japanese font metric) files for LuaTeX-ja / pLaTeX / +longdesc upLaTeX are provided. +containersize 130388 +containerchecksum 584007ea437fb77cfe3bf2bbf50975aab2e7de7a77a65f6ec5bc31d59050e180931e9c0126b6943f9c3be41b039c4e9b0a6b8c8c5919eb505faaccfbf0facc35 +doccontainersize 24468 +doccontainerchecksum 8148420c7abf9779923e048b3f23321e44656c65fb36f1c0d16da95c5169ec38b99d1f59fbba7995d951c53b8a111880c10dae05ac0a29290a44af90f6a6f7ab +docfiles size=40 + RELOC/doc/latex/jlreq/LICENSE + RELOC/doc/latex/jlreq/README-ja.md details="Readme" language="ja" + RELOC/doc/latex/jlreq/README.md details="Readme" + RELOC/doc/latex/jlreq/jlreq-ja.html + RELOC/doc/latex/jlreq/jlreq-trimmarks-ja.html + RELOC/doc/latex/jlreq/jlreq-trimmarks-ja.md + RELOC/doc/latex/jlreq/jlreq-trimmarks.html + RELOC/doc/latex/jlreq/jlreq-trimmarks.md + RELOC/doc/latex/jlreq/jlreq.html +runfiles size=6931 + RELOC/fonts/tfm/public/jlreq/bjlreq-v.tfm + RELOC/fonts/tfm/public/jlreq/bjlreq.tfm + RELOC/fonts/tfm/public/jlreq/bjlreqg-v.tfm + RELOC/fonts/tfm/public/jlreq/bjlreqg.tfm + RELOC/fonts/tfm/public/jlreq/bzjlreq-v.tfm + RELOC/fonts/tfm/public/jlreq/bzjlreq.tfm + RELOC/fonts/tfm/public/jlreq/bzjlreqg-v.tfm + RELOC/fonts/tfm/public/jlreq/bzjlreqg.tfm + RELOC/fonts/tfm/public/jlreq/jlreq-v.tfm + RELOC/fonts/tfm/public/jlreq/jlreq.tfm + RELOC/fonts/tfm/public/jlreq/jlreqg-v.tfm + RELOC/fonts/tfm/public/jlreq/jlreqg.tfm + RELOC/fonts/tfm/public/jlreq/ubjlreq-q.tfm + RELOC/fonts/tfm/public/jlreq/ubjlreq-v.tfm + RELOC/fonts/tfm/public/jlreq/ubjlreq.tfm + RELOC/fonts/tfm/public/jlreq/ubjlreqg-q.tfm + RELOC/fonts/tfm/public/jlreq/ubjlreqg-v.tfm + RELOC/fonts/tfm/public/jlreq/ubjlreqg.tfm + RELOC/fonts/tfm/public/jlreq/ubzjlreq-q.tfm + RELOC/fonts/tfm/public/jlreq/ubzjlreq-v.tfm + RELOC/fonts/tfm/public/jlreq/ubzjlreq.tfm + RELOC/fonts/tfm/public/jlreq/ubzjlreqg-q.tfm + RELOC/fonts/tfm/public/jlreq/ubzjlreqg-v.tfm + RELOC/fonts/tfm/public/jlreq/ubzjlreqg.tfm + RELOC/fonts/tfm/public/jlreq/ujlreq-q.tfm + RELOC/fonts/tfm/public/jlreq/ujlreq-v.tfm + RELOC/fonts/tfm/public/jlreq/ujlreq.tfm + RELOC/fonts/tfm/public/jlreq/ujlreqg-q.tfm + RELOC/fonts/tfm/public/jlreq/ujlreqg-v.tfm + RELOC/fonts/tfm/public/jlreq/ujlreqg.tfm + RELOC/fonts/tfm/public/jlreq/uzjlreq-q.tfm + RELOC/fonts/tfm/public/jlreq/uzjlreq-v.tfm + RELOC/fonts/tfm/public/jlreq/uzjlreq.tfm + RELOC/fonts/tfm/public/jlreq/uzjlreqg-q.tfm + RELOC/fonts/tfm/public/jlreq/uzjlreqg-v.tfm + RELOC/fonts/tfm/public/jlreq/uzjlreqg.tfm + RELOC/fonts/tfm/public/jlreq/zjlreq-v.tfm + RELOC/fonts/tfm/public/jlreq/zjlreq.tfm + RELOC/fonts/tfm/public/jlreq/zjlreqg-v.tfm + RELOC/fonts/tfm/public/jlreq/zjlreqg.tfm + RELOC/fonts/vf/public/jlreq/bjlreq-v.vf + RELOC/fonts/vf/public/jlreq/bjlreq.vf + RELOC/fonts/vf/public/jlreq/bjlreqg-v.vf + RELOC/fonts/vf/public/jlreq/bjlreqg.vf + RELOC/fonts/vf/public/jlreq/bzjlreq-v.vf + RELOC/fonts/vf/public/jlreq/bzjlreq.vf + RELOC/fonts/vf/public/jlreq/bzjlreqg-v.vf + RELOC/fonts/vf/public/jlreq/bzjlreqg.vf + RELOC/fonts/vf/public/jlreq/jlreq-v.vf + RELOC/fonts/vf/public/jlreq/jlreq.vf + RELOC/fonts/vf/public/jlreq/jlreqg-v.vf + RELOC/fonts/vf/public/jlreq/jlreqg.vf + RELOC/fonts/vf/public/jlreq/ubjlreq-q.vf + RELOC/fonts/vf/public/jlreq/ubjlreq-v.vf + RELOC/fonts/vf/public/jlreq/ubjlreq.vf + RELOC/fonts/vf/public/jlreq/ubjlreqg-q.vf + RELOC/fonts/vf/public/jlreq/ubjlreqg-v.vf + RELOC/fonts/vf/public/jlreq/ubjlreqg.vf + RELOC/fonts/vf/public/jlreq/ubzjlreq-q.vf + RELOC/fonts/vf/public/jlreq/ubzjlreq-v.vf + RELOC/fonts/vf/public/jlreq/ubzjlreq.vf + RELOC/fonts/vf/public/jlreq/ubzjlreqg-q.vf + RELOC/fonts/vf/public/jlreq/ubzjlreqg-v.vf + RELOC/fonts/vf/public/jlreq/ubzjlreqg.vf + RELOC/fonts/vf/public/jlreq/ujlreq-q.vf + RELOC/fonts/vf/public/jlreq/ujlreq-v.vf + RELOC/fonts/vf/public/jlreq/ujlreq.vf + RELOC/fonts/vf/public/jlreq/ujlreqg-q.vf + RELOC/fonts/vf/public/jlreq/ujlreqg-v.vf + RELOC/fonts/vf/public/jlreq/ujlreqg.vf + RELOC/fonts/vf/public/jlreq/uzjlreq-q.vf + RELOC/fonts/vf/public/jlreq/uzjlreq-v.vf + RELOC/fonts/vf/public/jlreq/uzjlreq.vf + RELOC/fonts/vf/public/jlreq/uzjlreqg-q.vf + RELOC/fonts/vf/public/jlreq/uzjlreqg-v.vf + RELOC/fonts/vf/public/jlreq/uzjlreqg.vf + RELOC/fonts/vf/public/jlreq/zjlreq-v.vf + RELOC/fonts/vf/public/jlreq/zjlreq.vf + RELOC/fonts/vf/public/jlreq/zjlreqg-v.vf + RELOC/fonts/vf/public/jlreq/zjlreqg.vf + RELOC/tex/latex/jlreq/jlreq-helpers.sty + RELOC/tex/latex/jlreq/jlreq-trimmarks.sty + RELOC/tex/latex/jlreq/jlreq.cls + RELOC/tex/luatex/jlreq/jfm-jlreq.lua + RELOC/tex/luatex/jlreq/jfm-jlreqv.lua +catalogue-contact-home https://github.com/abenori/jlreq +catalogue-ctan /language/japanese/jlreq +catalogue-date 2019-05-07 13:08:13 +0200 +catalogue-license bsd2 +catalogue-topics japanese font-cjk class name jmlr category Package -revision 36370 -shortdesc Class files for the Journal of Machine Learning Research. +revision 44935 +shortdesc Class files for the Journal of Machine Learning Research relocated 1 longdesc The jmlr bundle provides a class for authors (jmlr) and a class -longdesc for production editors (jmlrbook), as well as a script -longdesc makejmlrbook The jmlrbook class can be used to combine articles -longdesc written using the jmlr class into a book. The class uses the -longdesc combine class and the hyperref package to produce either a -longdesc colour hyperlinked book for on-line viewing or a greyscale -longdesc nonhyperlinked book for printing. The makejmlrbook Perl script -longdesc can be used to create the colour hyperlinked and greyscale -longdesc nonhyperlinked PDFs of a document using the jmlrbook class. It -longdesc can also create a set of HTML files that list the included -longdesc papers with links to their abstracts and the individual -longdesc articles as PDFs. -runfiles size=28 - RELOC/scripts/jmlr/makejmlrbook - RELOC/tex/latex/jmlr/jmlr.cls - RELOC/tex/latex/jmlr/jmlrbook.cls -docfiles size=505 +longdesc for production editors (jmlrbook). The jmlrbook class can be +longdesc used to combine articles written using the jmlr class into a +longdesc book. The class uses the combine class and the hyperref package +longdesc to produce either a colour hyperlinked book for on-line viewing +longdesc or a greyscale nonhyperlinked book for printing. Production +longdesc editors can use makejmlrbookgui to help build the proceedings +longdesc from the articles. +containersize 23860 +containerchecksum 68e236de2bbf2e1658b2319f5c6ce8cde914c8be03090c0ce2893e8843e5410c477a9bed4cd5e5912c69fa4a268ec1ba5ed13d04f2f49395d60f0c72a41ca44c +doccontainersize 1703340 +doccontainerchecksum 3b42e6e17818bbd8280e6501561ea746f754ba9b9a4d7483e7b74b40cabbf1bb634dcc4e27677c1f8bc68f932fa03a739cfe5b928ffc8d4ecc0872f263f352f5 +docfiles size=523 RELOC/doc/latex/jmlr/CHANGES RELOC/doc/latex/jmlr/INSTALL - RELOC/doc/latex/jmlr/README - RELOC/doc/latex/jmlr/jmlr.pdf + RELOC/doc/latex/jmlr/README details="Readme" + RELOC/doc/latex/jmlr/jmlr.pdf details="Package documentation" RELOC/doc/latex/jmlr/sample-books/bookLogo-gray.png RELOC/doc/latex/jmlr/sample-books/bookLogo.png RELOC/doc/latex/jmlr/sample-books/jmlrbook-sample.pdf @@ -86100,18 +137933,30 @@ docfiles size=505 RELOC/doc/latex/jmlr/sample-papers/jmlr-sample.tex RELOC/doc/latex/jmlr/sample-papers/jmlrwcp-sample.pdf RELOC/doc/latex/jmlr/sample-papers/jmlrwcp-sample.tex -srcfiles size=50 +srccontainersize 40876 +srccontainerchecksum 706a99ddc53804b5d61a7ca8f65fe6acb7632dbaa8d3f7a4e9b11270ca5da1d38d811c2fd9ebd9bc5d4aefeec406f36cfbaaad0644051e59593c297a35abaa42 +srcfiles size=52 RELOC/source/latex/jmlr/jmlr.dtx RELOC/source/latex/jmlr/jmlr.ins +runfiles size=29 + RELOC/scripts/jmlr/makejmlrbook + RELOC/tex/latex/jmlr/jmlr.cls + RELOC/tex/latex/jmlr/jmlrbook.cls + RELOC/tex/latex/jmlr/jmlrutils.sty +catalogue-contact-bugs http://www.dickimaw-books.com/cgi-bin/bugtracker.cgi catalogue-ctan /macros/latex/contrib/jmlr -catalogue-date 2015-02-24 16:25:24 +0100 +catalogue-date 2017-08-01 19:14:03 +0200 catalogue-license lppl1.3 -catalogue-version 1.21 +catalogue-topics journalpub class +catalogue-version 1.24 name jmn category Package -revision 22719 +revision 45751 +shortdesc special fonts for ConTeXt relocated 1 +containersize 40048 +containerchecksum 2e250c3f115911c56f9b8d46d358fdef289c624a5b24c9b4213bbf7818bf42c7b778df55d4bf181bce115b388915cedc90ef7cfa99ee6ad8dd621e7853fc7c29 runfiles size=22 RELOC/fonts/afm/jmn/hans/hans-sh.afm RELOC/fonts/afm/jmn/hans/hans.afm @@ -86127,86 +137972,188 @@ runfiles size=22 name jneurosci category Package revision 17346 -shortdesc BibTeX style for the Journal of Neuroscience. +shortdesc BibTeX style for the Journal of Neuroscience relocated 1 longdesc This is a slightly modified version of the namedplus style, longdesc which fully conforms with the Journal of Neuroscience citation longdesc style. It should be characterised as an author-date citation longdesc style; a BibTeX style and a LaTeX package are provided. +containersize 6560 +containerchecksum 1ea3d11a66045784c2d1abe0290d95482c5a2a65a21963a58d9626872b25bb0d20f8d1c3c3b8173bf7f63ed71f7c33e13c8f6dab0918585b36d72fa37dc35714 +doccontainersize 237620 +doccontainerchecksum 2ed6a342b376ced405a75da39fff51d03e9fffa89341522555d2edf8d8eca701013a95f09f01cbf642d3ed1ba93a1aecc89682986ae5c94d784f3c857eaaadb1 +docfiles size=62 + RELOC/doc/latex/jneurosci/README details="Readme" + RELOC/doc/latex/jneurosci/jneurosci.pdf details="Package documentation" + RELOC/doc/latex/jneurosci/jneurosci.tex runfiles size=8 RELOC/bibtex/bst/jneurosci/jneurosci.bst RELOC/tex/latex/jneurosci/jneurosci.sty -docfiles size=62 - RELOC/doc/latex/jneurosci/README - RELOC/doc/latex/jneurosci/jneurosci.pdf - RELOC/doc/latex/jneurosci/jneurosci.tex catalogue-ctan /biblio/bibtex/contrib/jneurosci -catalogue-date 2012-04-24 20:59:15 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics neuro bibtex-sty catalogue-version 1.00 +name jnuexam +category Package +revision 49212 +shortdesc Exam class for Jinan University +relocated 1 +longdesc The package provides an exam class for Jinan University +longdesc (China). +containersize 6396 +containerchecksum 2dc1aca90383740ae471a096c82e99b613841305f55d960b861cb3c3c1ae920caf8386adc56f6f0f5908b412c399a12fe69648820525ee0ec5edaf6cb7e46c48 +doccontainersize 629748 +doccontainerchecksum 0a87e1920d853a08516ec039f4f87f7c2d9bcf28a0e8e1153c6748f9fc067a9fbf1d168e7f96d4dab59961d288d514790d79e31da7a117378055252f8cf9531f +docfiles size=247 + RELOC/doc/latex/jnuexam/README details="Readme" + RELOC/doc/latex/jnuexam/exam-a-a3input.pdf + RELOC/doc/latex/jnuexam/exam-a-a3input.tex + RELOC/doc/latex/jnuexam/exam-a-a3split.pdf + RELOC/doc/latex/jnuexam/exam-a-a3split.tex + RELOC/doc/latex/jnuexam/exam-a-empty.pdf + RELOC/doc/latex/jnuexam/exam-a-empty.tex + RELOC/doc/latex/jnuexam/exam-a.pdf + RELOC/doc/latex/jnuexam/exam-a.tex + RELOC/doc/latex/jnuexam/exam-b-a3input.pdf + RELOC/doc/latex/jnuexam/exam-b-a3input.tex + RELOC/doc/latex/jnuexam/exam-b-a3split.pdf + RELOC/doc/latex/jnuexam/exam-b-a3split.tex + RELOC/doc/latex/jnuexam/exam-b-empty.pdf + RELOC/doc/latex/jnuexam/exam-b-empty.tex + RELOC/doc/latex/jnuexam/exam-b.pdf + RELOC/doc/latex/jnuexam/exam-b.tex + RELOC/doc/latex/jnuexam/jnuexam.pdf details="Package documentation" language="zh" + RELOC/doc/latex/jnuexam/jnuexam.tex +runfiles size=5 + RELOC/tex/latex/jnuexam/jnuexam.cls +catalogue-contact-home https://lvjr.bitbucket.io/jnuexam.html +catalogue-ctan /macros/latex/contrib/jnuexam +catalogue-date 2018-11-21 15:54:53 +0100 +catalogue-license lppl1.3 +catalogue-topics exam class chinese +catalogue-version 0.5 + name jpsj category Package revision 15878 -shortdesc Document Class for Journal of the Physical Society of Japan. +shortdesc Document Class for Journal of the Physical Society of Japan relocated 1 -runfiles size=8 - RELOC/tex/latex/jpsj/jpsj2.cls +containersize 7272 +containerchecksum 70b0e83af5b828e6a783d888adcacc504342e2cbe255d88aaa2fc3cdda629fca8e2fec9c98c73c0673d98d396727025b0a622905c3403c2b568d67597218398e +doccontainersize 150368 +doccontainerchecksum 220c28ed6312c046dcb2973e2e22fd47c683460578dbf952d12d52da0aa4c21a5dc5e8195b78d743c093e05772ae1e00a45d3c221e805a452420c435f23b6a38 docfiles size=61 RELOC/doc/latex/jpsj/dummy.eps - RELOC/doc/latex/jpsj/injpsj2.pdf + RELOC/doc/latex/jpsj/injpsj2.pdf details="Instructions for authors" RELOC/doc/latex/jpsj/injpsj2.tex RELOC/doc/latex/jpsj/template.tex +runfiles size=8 + RELOC/tex/latex/jpsj/jpsj2.cls +catalogue-contact-home http://journals.jps.jp/page/jpsj/authors/style catalogue-ctan /macros/latex/contrib/jpsj -catalogue-date 2012-04-24 20:59:15 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl +catalogue-topics physics journalpub catalogue-version 1.2.2 +name js-misc +category Package +revision 16211 +shortdesc Miscellaneous macros from Joachim Schrod +relocated 1 +longdesc A bunch of packages, including: idverb.tex, for 'short +longdesc verbatim'; xfig.tex, for including xfig/transfig output in a +longdesc TeX document; and cassette.tex for setting cassette labels. +containersize 13868 +containerchecksum 6dd7920204cc66ff28c78f54bd6432a71d77ae2f4463bd997d2a4170465053eb86d61bc35d8da66377b47cb1eba88c6ed0918142910a5bdd4e44aec41d3ec4d0 +doccontainersize 18444 +doccontainerchecksum 507cc8c04589dfa7b4d36bf32e4c1d18af42b90df58fee128c0ad37284a87aa1adad32623591d0e8ca880c53a1f583b0bd8054487e231bb2a58ed06d1bf6c6e3 +docfiles size=26 + RELOC/doc/plain/js-misc/History + RELOC/doc/plain/js-misc/INSTALL + RELOC/doc/plain/js-misc/Imakefile + RELOC/doc/plain/js-misc/License + RELOC/doc/plain/js-misc/Makefile + RELOC/doc/plain/js-misc/README details="Readme" + RELOC/doc/plain/js-misc/TODO + RELOC/doc/plain/js-misc/deutsch.doc + RELOC/doc/plain/js-misc/deutsch.tex + RELOC/doc/plain/js-misc/idverb.doc + RELOC/doc/plain/js-misc/names.sty + RELOC/doc/plain/js-misc/xfig/text-2.1-doc.tex + RELOC/doc/plain/js-misc/xfig/text-2.1.fig + RELOC/doc/plain/js-misc/xfig/text-2.1.latex + RELOC/doc/plain/js-misc/xfig/text-3.1-doc.tex + RELOC/doc/plain/js-misc/xfig/text-3.1.latex +runfiles size=13 + RELOC/tex/plain/js-misc/cassette.tex + RELOC/tex/plain/js-misc/idverb.tex + RELOC/tex/plain/js-misc/js-misc.tex + RELOC/tex/plain/js-misc/schild.tex + RELOC/tex/plain/js-misc/sperr.tex + RELOC/tex/plain/js-misc/xfig.tex +catalogue-ctan /macros/plain/contrib/js-misc +catalogue-date 2016-07-17 15:12:14 +0200 +catalogue-license pd +catalogue-topics collection + name jsclasses category Package -revision 34959 -shortdesc Classes tailored for use with Japanese. +revision 50813 +shortdesc Classes tailored for use with Japanese relocated 1 longdesc Classes jsarticle and jsbook are provided, together with -longdesc packages okumacro, okuverb and morisawa. These classes are -longdesc designed to work under ASCII Corporation's Japanese TeX system -longdesc ptex. -runfiles size=64 - RELOC/tex/platex/jsclasses/jsarticle.cls - RELOC/tex/platex/jsclasses/jsbook.cls - RELOC/tex/platex/jsclasses/jspf.cls - RELOC/tex/platex/jsclasses/jsverb.sty - RELOC/tex/platex/jsclasses/kiyou.cls - RELOC/tex/platex/jsclasses/minijs.sty - RELOC/tex/platex/jsclasses/morisawa.sty - RELOC/tex/platex/jsclasses/okumacro.sty - RELOC/tex/platex/jsclasses/okuverb.sty -docfiles size=162 - RELOC/doc/platex/jsclasses/README - RELOC/doc/platex/jsclasses/jsclasses.pdf - RELOC/doc/platex/jsclasses/jsverb.pdf - RELOC/doc/platex/jsclasses/morisawa.pdf - RELOC/doc/platex/jsclasses/okumacro.pdf - RELOC/doc/platex/jsclasses/okuverb.pdf -srcfiles size=62 +longdesc packages okumacro and okuverb. These classes are designed to +longdesc work under ASCII Corporation's Japanese TeX system ptex. +containersize 21784 +containerchecksum 0c56244db93076c9d28bfd579e182040760f9629d9ea3ca1da11c57a16f0738b3e19101fffaa41e2510306fb8d69eed9fc0c777b6291df143e682056bca923ca +doccontainersize 919388 +doccontainerchecksum 26c9e42d6d7f13fed8aca3098d5c2dbd14ad70adfc8654a5fd1f4a00343cbb506dabea50922cc7dc6d6ad79f2cda84b6ff0b8cde203885f47e04d85ac761276e +docfiles size=233 + RELOC/doc/platex/jsclasses/LICENSE + RELOC/doc/platex/jsclasses/README.md details="Readme" + RELOC/doc/platex/jsclasses/jsclasses.pdf details="Documentation of the classes (Japanese)" language="ja" + RELOC/doc/platex/jsclasses/jslogo.pdf + RELOC/doc/platex/jsclasses/jsverb.pdf details="Jsverb package documentation (Japanese)" language="ja" + RELOC/doc/platex/jsclasses/okumacro.pdf details="Okumacro package documentation (Japanese)" language="ja" + RELOC/doc/platex/jsclasses/okuverb.pdf details="Okuverb package documentation (Japanese)" language="ja" +srccontainersize 55444 +srccontainerchecksum 0cda59302ecaead4126f1383defa7d5afaed9430635664e2e0764211698c23365f396729d1a2b2ce1961a5e2a9a91194aae05e4b610ba39a0aa7ded2fe887be9 +srcfiles size=72 + RELOC/source/platex/jsclasses/Makefile RELOC/source/platex/jsclasses/jsclasses.dtx RELOC/source/platex/jsclasses/jsclasses.ins + RELOC/source/platex/jsclasses/jslogo.dtx + RELOC/source/platex/jsclasses/jslogo.ins RELOC/source/platex/jsclasses/jsverb.dtx RELOC/source/platex/jsclasses/jsverb.ins - RELOC/source/platex/jsclasses/morisawa.dtx - RELOC/source/platex/jsclasses/morisawa.ins RELOC/source/platex/jsclasses/okumacro.dtx RELOC/source/platex/jsclasses/okumacro.ins RELOC/source/platex/jsclasses/okuverb.dtx RELOC/source/platex/jsclasses/okuverb.ins +runfiles size=85 + RELOC/tex/platex/jsclasses/jsarticle.cls + RELOC/tex/platex/jsclasses/jsbook.cls + RELOC/tex/platex/jsclasses/jslogo.sty + RELOC/tex/platex/jsclasses/jspf.cls + RELOC/tex/platex/jsclasses/jsreport.cls + RELOC/tex/platex/jsclasses/jsverb.sty + RELOC/tex/platex/jsclasses/kiyou.cls + RELOC/tex/platex/jsclasses/minijs.sty + RELOC/tex/platex/jsclasses/okumacro.sty + RELOC/tex/platex/jsclasses/okuverb.sty +catalogue-contact-repository https://github.com/texjporg/jsclasses catalogue-ctan /macros/latex/contrib/jsclasses -catalogue-date 2014-11-17 08:06:22 +0100 +catalogue-date 2019-04-06 10:47:48 +0200 catalogue-license bsd +catalogue-topics japanese class name jslectureplanner category Package -revision 37878 -shortdesc Creation and management of university course material. +revision 49963 +shortdesc Creation and management of university course material relocated 1 longdesc The jslectureplanner package facilitates the generation and longdesc management of university course material. It provides an @@ -86216,102 +138163,101 @@ longdesc able to calculate the session dates of a whole semester and longdesc generate course programs, if the course is held weekly and the longdesc date of the first lecture is specified. Moreover, the package longdesc can be used to generate a sectioned course bibliography via -longdesc biblatex. -runfiles size=14 +longdesc BibLaTeX. The bundle also includes a package jsmembertable.sty +longdesc that helps in generating course member and presence lists. +containersize 11960 +containerchecksum a60f38383f72ab069fbed0de38fd139bfe2c446c0dbf566e3e78c842bacc27b0a49e0595e4764645018a73f57dde31c4f945e2ae77978827e35014a1d69aad57 +doccontainersize 1179020 +doccontainerchecksum f52f3c0212cdffbab4ebb12ac99a07e3f496774d89039fadcacd2d96d9f15fd508c7d7a759e440fc69a4b17aeb7b38781fe6a2566217bfbac6b59782e1e4ed0f +docfiles size=401 + RELOC/doc/latex/jslectureplanner/README details="Readme" + RELOC/doc/latex/jslectureplanner/examples/English/lecpresbody-english.tex + RELOC/doc/latex/jslectureplanner/examples/English/lecturebib-english.pdf + RELOC/doc/latex/jslectureplanner/examples/English/lecturebib-english.tex + RELOC/doc/latex/jslectureplanner/examples/English/lecturehandout-english.pdf + RELOC/doc/latex/jslectureplanner/examples/English/lecturehandout-english.tex + RELOC/doc/latex/jslectureplanner/examples/English/lectureplanner-examples.bib + RELOC/doc/latex/jslectureplanner/examples/English/lecturepresentation-english.pdf details="Example of use" + RELOC/doc/latex/jslectureplanner/examples/English/lecturepresentation-english.tex + RELOC/doc/latex/jslectureplanner/examples/English/lectureprogram-english.pdf + RELOC/doc/latex/jslectureplanner/examples/English/lectureprogram-english.tex + RELOC/doc/latex/jslectureplanner/examples/English/lecturescript-english.pdf + RELOC/doc/latex/jslectureplanner/examples/English/lecturescript-english.tex + RELOC/doc/latex/jslectureplanner/examples/English/membertable-blank-english.pdf + RELOC/doc/latex/jslectureplanner/examples/English/membertable-blank-english.tex + RELOC/doc/latex/jslectureplanner/examples/English/membertable-filled-english.pdf + RELOC/doc/latex/jslectureplanner/examples/English/membertable-filled-english.tex + RELOC/doc/latex/jslectureplanner/examples/English/metadata.tex + RELOC/doc/latex/jslectureplanner/examples/English/presencetable-blank-english.pdf + RELOC/doc/latex/jslectureplanner/examples/English/presencetable-blank-english.tex + RELOC/doc/latex/jslectureplanner/examples/English/presencetable-filled-english.pdf + RELOC/doc/latex/jslectureplanner/examples/English/presencetable-filled-english.tex + RELOC/doc/latex/jslectureplanner/examples/English/presentation-list-english.pdf + RELOC/doc/latex/jslectureplanner/examples/English/presentation-list-english.tex + RELOC/doc/latex/jslectureplanner/examples/English/students.csv + RELOC/doc/latex/jslectureplanner/examples/German/lecpresbody.tex + RELOC/doc/latex/jslectureplanner/examples/German/lecturebib.pdf + RELOC/doc/latex/jslectureplanner/examples/German/lecturebib.tex + RELOC/doc/latex/jslectureplanner/examples/German/lecturehandout.pdf + RELOC/doc/latex/jslectureplanner/examples/German/lecturehandout.tex + RELOC/doc/latex/jslectureplanner/examples/German/lectureplanner-examples.bib + RELOC/doc/latex/jslectureplanner/examples/German/lecturepresentation.pdf + RELOC/doc/latex/jslectureplanner/examples/German/lecturepresentation.tex + RELOC/doc/latex/jslectureplanner/examples/German/lectureprogram.pdf + RELOC/doc/latex/jslectureplanner/examples/German/lectureprogram.tex + RELOC/doc/latex/jslectureplanner/examples/German/lecturescript.pdf + RELOC/doc/latex/jslectureplanner/examples/German/lecturescript.tex + RELOC/doc/latex/jslectureplanner/examples/German/membertable-blank.pdf + RELOC/doc/latex/jslectureplanner/examples/German/membertable-blank.tex + RELOC/doc/latex/jslectureplanner/examples/German/membertable-filled.pdf + RELOC/doc/latex/jslectureplanner/examples/German/membertable-filled.tex + RELOC/doc/latex/jslectureplanner/examples/German/metadata.tex + RELOC/doc/latex/jslectureplanner/examples/German/presencetable-blank.pdf + RELOC/doc/latex/jslectureplanner/examples/German/presencetable-blank.tex + RELOC/doc/latex/jslectureplanner/examples/German/presencetable-filled.pdf + RELOC/doc/latex/jslectureplanner/examples/German/presencetable-filled.tex + RELOC/doc/latex/jslectureplanner/examples/German/presentation-list.pdf + RELOC/doc/latex/jslectureplanner/examples/German/presentation-list.tex + RELOC/doc/latex/jslectureplanner/examples/German/students.csv + RELOC/doc/latex/jslectureplanner/jslectureplanner.pdf details="Package documentation" + RELOC/doc/latex/jslectureplanner/jslectureplanner.tex +runfiles size=21 RELOC/tex/latex/jslectureplanner/cologne.lps + RELOC/tex/latex/jslectureplanner/english.lps RELOC/tex/latex/jslectureplanner/german-default.lps RELOC/tex/latex/jslectureplanner/jslectureplanner.sty RELOC/tex/latex/jslectureplanner/jsmembertable.sty -docfiles size=248 - RELOC/doc/latex/jslectureplanner/README - RELOC/doc/latex/jslectureplanner/examples/lecpresbody.tex - RELOC/doc/latex/jslectureplanner/examples/lecturebib.pdf - RELOC/doc/latex/jslectureplanner/examples/lecturebib.tex - RELOC/doc/latex/jslectureplanner/examples/lecturehandout.pdf - RELOC/doc/latex/jslectureplanner/examples/lecturehandout.tex - RELOC/doc/latex/jslectureplanner/examples/lectureplanner-examples.bib - RELOC/doc/latex/jslectureplanner/examples/lecturepresentation.pdf - RELOC/doc/latex/jslectureplanner/examples/lecturepresentation.tex - RELOC/doc/latex/jslectureplanner/examples/lectureprogram.pdf - RELOC/doc/latex/jslectureplanner/examples/lectureprogram.tex - RELOC/doc/latex/jslectureplanner/examples/lecturescript.pdf - RELOC/doc/latex/jslectureplanner/examples/lecturescript.tex - RELOC/doc/latex/jslectureplanner/examples/membertable-blank.pdf - RELOC/doc/latex/jslectureplanner/examples/membertable-blank.tex - RELOC/doc/latex/jslectureplanner/examples/membertable-filled.pdf - RELOC/doc/latex/jslectureplanner/examples/membertable-filled.tex - RELOC/doc/latex/jslectureplanner/examples/metadata.tex - RELOC/doc/latex/jslectureplanner/examples/presencetable-blank.pdf - RELOC/doc/latex/jslectureplanner/examples/presencetable-blank.tex - RELOC/doc/latex/jslectureplanner/examples/presencetable-filled.pdf - RELOC/doc/latex/jslectureplanner/examples/presencetable-filled.tex - RELOC/doc/latex/jslectureplanner/examples/presentation-list.pdf - RELOC/doc/latex/jslectureplanner/examples/presentation-list.tex - RELOC/doc/latex/jslectureplanner/examples/students.csv - RELOC/doc/latex/jslectureplanner/jslectureplanner.pdf - RELOC/doc/latex/jslectureplanner/jslectureplanner.tex +catalogue-contact-repository https://github.com/jspitz/jslectureplanner catalogue-ctan /macros/latex/contrib/jslectureplanner -catalogue-date 2015-07-15 13:52:44 +0200 +catalogue-date 2019-02-09 05:50:04 +0100 catalogue-license lppl1.3 catalogue-topics teaching -catalogue-version 1.1 - -name js-misc -category Package -revision 16211 -shortdesc Miscellaneous macros from Joachim Schrod. -relocated 1 -longdesc A bunch of packages, including: idverb.tex, for 'short -longdesc verbatim'; xfig.tex, for including xfig/transfig output in a -longdesc TeX document; and cassette.tex for setting cassette labels. -runfiles size=13 - RELOC/tex/plain/js-misc/cassette.tex - RELOC/tex/plain/js-misc/idverb.tex - RELOC/tex/plain/js-misc/js-misc.tex - RELOC/tex/plain/js-misc/schild.tex - RELOC/tex/plain/js-misc/sperr.tex - RELOC/tex/plain/js-misc/xfig.tex -docfiles size=26 - RELOC/doc/plain/js-misc/History - RELOC/doc/plain/js-misc/INSTALL - RELOC/doc/plain/js-misc/Imakefile - RELOC/doc/plain/js-misc/License - RELOC/doc/plain/js-misc/Makefile - RELOC/doc/plain/js-misc/README - RELOC/doc/plain/js-misc/TODO - RELOC/doc/plain/js-misc/deutsch.doc - RELOC/doc/plain/js-misc/deutsch.tex - RELOC/doc/plain/js-misc/idverb.doc - RELOC/doc/plain/js-misc/names.sty - RELOC/doc/plain/js-misc/xfig/text-2.1-doc.tex - RELOC/doc/plain/js-misc/xfig/text-2.1.fig - RELOC/doc/plain/js-misc/xfig/text-2.1.latex - RELOC/doc/plain/js-misc/xfig/text-3.1-doc.tex - RELOC/doc/plain/js-misc/xfig/text-3.1.latex -catalogue-ctan /macros/plain/contrib/js-misc -catalogue-date 2014-10-02 22:31:00 +0200 -catalogue-license pd +catalogue-version 1.8 name jumplines category Package revision 37553 -shortdesc Articles with teasers and continuation later on. +shortdesc Articles with teasers and continuation later on relocated 1 longdesc Jumplines is a package for typesetting (newspaper) articles longdesc that show a teaser (some few lines of text/content) and are longdesc continued at a later place, with optional hyperlinking and a longdesc list of articles. It requires lualatex for colour support in longdesc split boxes. -runfiles size=5 - RELOC/tex/latex/jumplines/jumplines.sty +containersize 4036 +containerchecksum e09ee044fe7d5692fe4f1098406e33481ebdf81698168223235e735637499053c66f278a1f7e27585aaa1a586ccf85b4f5afdccfa3ac35950475f56e46324103 +doccontainersize 254168 +doccontainerchecksum c7f56f012d6eca83e54610aabf1530889c01c1b28e9b790b220726bff860504a3e46ad4fd8d88ef50d3fff17507710bc168fd2d5861e9f2cdae69cff6f95ae71 docfiles size=67 - RELOC/doc/latex/jumplines/README - RELOC/doc/latex/jumplines/jumplines_doc.pdf + RELOC/doc/latex/jumplines/README details="Readme" + RELOC/doc/latex/jumplines/jumplines_doc.pdf details="Package documentation" RELOC/doc/latex/jumplines/jumplines_doc.tex - RELOC/doc/latex/jumplines/jumplines_example.pdf + RELOC/doc/latex/jumplines/jumplines_example.pdf details="Package example" RELOC/doc/latex/jumplines/jumplines_example.tex +runfiles size=5 + RELOC/tex/latex/jumplines/jumplines.sty catalogue-ctan /macros/latex/contrib/jumplines -catalogue-date 2015-06-04 15:27:17 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 catalogue-topics luatex journalpub catalogue-version 0.2 @@ -86319,61 +138265,107 @@ catalogue-version 0.2 name junicode category Package revision 28286 -shortdesc A TrueType font for mediaevalists. +shortdesc A TrueType font for mediaevalists relocated 1 longdesc Junicode is a TrueType font with many OpenType features for longdesc antiquarians (especially medievalists) based on typefaces used longdesc by the Oxford Press in the late 17th and early 18th centuries. longdesc It works well with Xe(La)TeX. -runfiles size=752 - RELOC/fonts/truetype/public/junicode/Junicode-Bold.ttf - RELOC/fonts/truetype/public/junicode/Junicode-BoldItalic.ttf - RELOC/fonts/truetype/public/junicode/Junicode-Italic.ttf - RELOC/fonts/truetype/public/junicode/Junicode.ttf - RELOC/tex/latex/junicode/mt-Junicode.cfg +containersize 845552 +containerchecksum e35652c1bf36d48b5e98264604d62cfd25a0a69891b1577d701d75944e859435bf156ad70f808ccf2dd74f8fed963eb3efe5383fa5fd18b341932b7ceb2fe9b0 +doccontainersize 381220 +doccontainerchecksum f2e31f4459adc639f6dd36654c82871e1e79ec24c5a2a864b16ff3d4fc230619264d958e7915da9444bde9c6cf828f9c919880fa48a4339ce7d867adbba2e950 docfiles size=105 - RELOC/doc/fonts/junicode/Junicode.pdf + RELOC/doc/fonts/junicode/Junicode.pdf details="Package documentation" RELOC/doc/fonts/junicode/Junicode.tex - RELOC/doc/fonts/junicode/README - RELOC/doc/fonts/junicode/aelfric_job.pdf + RELOC/doc/fonts/junicode/README details="Readme" + RELOC/doc/fonts/junicode/aelfric_job.pdf details="Example text set with Junicode" RELOC/doc/fonts/junicode/aelfric_job.tex RELOC/doc/fonts/junicode/fleurons RELOC/doc/fonts/junicode/homer_sample.pdf RELOC/doc/fonts/junicode/homer_sample.tex RELOC/doc/fonts/junicode/replacements +runfiles size=752 + RELOC/fonts/truetype/public/junicode/Junicode-Bold.ttf + RELOC/fonts/truetype/public/junicode/Junicode-BoldItalic.ttf + RELOC/fonts/truetype/public/junicode/Junicode-Italic.ttf + RELOC/fonts/truetype/public/junicode/Junicode.ttf + RELOC/tex/latex/junicode/mt-Junicode.cfg catalogue-ctan /fonts/junicode -catalogue-date 2014-05-11 22:11:06 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics font font-ttf font-historical catalogue-version 0.7.7 +name jura +category Package +revision 15878 +shortdesc A document class for German legal texts +relocated 1 +longdesc Implements the standard layout for German term papers in law +longdesc (one-and-half linespacing, 7 cm margins, etc.). Includes +longdesc alphanum that permits alphanumeric section numbering (e.g., A. +longdesc Introduction; III. International Law). +containersize 4016 +containerchecksum 08426bab6c0627e945d620a338c6081a8a21d80567d4a4b686617d0d57c99b1e148f5e5c3406a0337ee4ad61bd795dca353c28b0f33d397c5b47515969fa5951 +doccontainersize 216560 +doccontainerchecksum 4d19c663f73791712d9c24361d8e2a0c2faf25bdac15dcce48825f02468f6a798eff7e147f531368bcc8d7e2a1938202b5614e2434cd46866f359f8349564adc +docfiles size=64 + RELOC/doc/latex/jura/README details="README file" language="en" + RELOC/doc/latex/jura/jura.pdf details="Class documentation" language="de" + RELOC/doc/latex/jura/jura2html + RELOC/doc/latex/jura/juratest.ltx +srccontainersize 17700 +srccontainerchecksum 7c83d639330c1bd405b2439b5e85dd723f476f8ed5096c8085180f03d63ffdeb834639fc8a49a454d50df9f882f27dd42782741fed89f8bafe45b6222bd43239 +srcfiles size=15 + RELOC/source/latex/jura/jura.dtx + RELOC/source/latex/jura/jura.ins +runfiles size=4 + RELOC/tex/latex/jura/alphanum.sty + RELOC/tex/latex/jura/jura.cls +catalogue-also juramisc alnumsec jurabib +catalogue-ctan /macros/latex/contrib/jura +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics dissertation legal german class +catalogue-version 4.3 + name juraabbrev category Package revision 15878 -shortdesc Abbreviations for typesetting (German) juridical documents. +shortdesc Abbreviations for typesetting (German) juridical documents relocated 1 longdesc This package should be helpful for people working on (German) longdesc law. It helps you to handle abbreviations and creates a list of longdesc those (pre-defined) abbreviations that have actually been used longdesc in the document -runfiles size=4 - RELOC/makeindex/juraabbrev/laws.ist - RELOC/tex/latex/juraabbrev/juraabbrev.4ht - RELOC/tex/latex/juraabbrev/juraabbrev.sty +containersize 3248 +containerchecksum 4d6fd00247c6c915956679674dd029048cb96ac3bc97606c0a299bbaff24a4cbb9440d557eb2945151720265ecb27bf15c638c003e1039dafee56471dfa03945 +doccontainersize 447500 +doccontainerchecksum ede48ff67dacf107baf50be345b042a7b64c815442875281241b7de4c3be56ec40c969e40ec69669f31058bbbe9b27c51cae25938d93bec99a8c57dfb8e9cb75 docfiles size=120 - RELOC/doc/latex/juraabbrev/README + RELOC/doc/latex/juraabbrev/README details="Readme" RELOC/doc/latex/juraabbrev/abbrevtest.tex - RELOC/doc/latex/juraabbrev/juraabbrev.pdf + RELOC/doc/latex/juraabbrev/juraabbrev.pdf details="Package documentation (German)" language="de" +srccontainersize 15500 +srccontainerchecksum 3a92a5231317d6f7d7b1afdf5df14997e17217e10b694ad97a9a2f3984b0afdfe5a3edeb4368108e4fb389a98a7f5414409e5fc7d319f4c78802cdc1a350d6a2 srcfiles size=13 RELOC/source/latex/juraabbrev/juraabbrev.dtx RELOC/source/latex/juraabbrev/juraabbrev.ins +runfiles size=4 + RELOC/makeindex/juraabbrev/laws.ist + RELOC/tex/latex/juraabbrev/juraabbrev.4ht + RELOC/tex/latex/juraabbrev/juraabbrev.sty +catalogue-also jurarsp catalogue-ctan /macros/latex/contrib/juraabbrev -catalogue-date 2012-05-09 16:03:55 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics legal german name jurabib category Package revision 15878 -shortdesc Extended BibTeX citation support for the humanities and legal texts. +shortdesc Extended BibTeX citation support for the humanities and legal texts relocated 1 longdesc This package enables automated citation with BibTeX for legal longdesc studies and the humanities. In addition, the package provides @@ -86389,6 +138381,31 @@ longdesc citations. In addition, the format of last names and first longdesc names of authors may be changed easily. Cross references to longdesc other footnotes are possible. Language dependent handling of longdesc bibliography entries is possible by the special language field. +containersize 51660 +containerchecksum 12a1d9402ca15ff23cbb9818f07290f0b295c9844bc4cf02e1332eb27a26a3a8d0ed3199df1c4f4f85c9ff5308e7426d0c7adad8dc587fe905c5a15314863b3b +doccontainersize 651904 +doccontainerchecksum 3f804537752bfd7b6780d082b37834c805e521491f39bd76b52541707e69f8b775b9e18bfcba0b0827133be8cf82bab86651f2a7ec351f9cc140427056ca0dc0 +docfiles size=242 + RELOC/doc/latex/jurabib/changes.txt + RELOC/doc/latex/jurabib/docs/english/jbendoc.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/jurabib/docs/english/jbendoc.tex + RELOC/doc/latex/jurabib/docs/german/jbgerdoc.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/jurabib/docs/german/jbgerdoc.tex + RELOC/doc/latex/jurabib/jbtest.pdf + RELOC/doc/latex/jurabib/jbtest.tex + RELOC/doc/latex/jurabib/jbtest.url + RELOC/doc/latex/jurabib/jbtestbt.tex + RELOC/doc/latex/jurabib/jbtestbu.tex + RELOC/doc/latex/jurabib/jbtestcb.tex + RELOC/doc/latex/jurabib/jbtestcb1.tex + RELOC/doc/latex/jurabib/jbtestcb2.tex + RELOC/doc/latex/jurabib/jbtesthu.tex + RELOC/doc/latex/jurabib/jbtestmb.tex +srccontainersize 61896 +srccontainerchecksum 349a2f55265584d73d0a1b0cdd00f0fdb384c87f8b1399acf62f14229ec4cb03919bb1c37d3c8ed992f72f3cd846c93bb13f25bed052edd80810bb6a92665e75 +srcfiles size=111 + RELOC/source/latex/jurabib/jurabib.dtx + RELOC/source/latex/jurabib/jurabib.ins runfiles size=145 RELOC/bibtex/bib/jurabib/book.bib RELOC/bibtex/bib/jurabib/comment.bib @@ -86411,38 +138428,33 @@ runfiles size=145 RELOC/tex/latex/jurabib/nojbbib.ldf RELOC/tex/latex/jurabib/ptjbbib.ldf RELOC/tex/latex/jurabib/spjbbib.ldf -docfiles size=242 - RELOC/doc/latex/jurabib/changes.txt - RELOC/doc/latex/jurabib/docs/english/jbendoc.pdf - RELOC/doc/latex/jurabib/docs/english/jbendoc.tex - RELOC/doc/latex/jurabib/docs/german/jbgerdoc.pdf - RELOC/doc/latex/jurabib/docs/german/jbgerdoc.tex - RELOC/doc/latex/jurabib/jbtest.pdf - RELOC/doc/latex/jurabib/jbtest.tex - RELOC/doc/latex/jurabib/jbtest.url - RELOC/doc/latex/jurabib/jbtestbt.tex - RELOC/doc/latex/jurabib/jbtestbu.tex - RELOC/doc/latex/jurabib/jbtestcb.tex - RELOC/doc/latex/jurabib/jbtestcb1.tex - RELOC/doc/latex/jurabib/jbtestcb2.tex - RELOC/doc/latex/jurabib/jbtesthu.tex - RELOC/doc/latex/jurabib/jbtestmb.tex -srcfiles size=111 - RELOC/source/latex/jurabib/jurabib.dtx - RELOC/source/latex/jurabib/jurabib.ins +catalogue-also jura juramisc alphanum alnumsec +catalogue-contact-repository http://sourceforge.net/projects/jurabib catalogue-ctan /macros/latex/contrib/jurabib -catalogue-date 2012-05-09 16:03:55 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license gpl +catalogue-topics bibtex-supp catalogue-version 0.6 name juramisc category Package revision 15878 -shortdesc Typesetting German juridical documents. +shortdesc Typesetting German juridical documents relocated 1 longdesc A collection of classes for typesetting court sentences, legal longdesc opinions, books and dissertations for German lawyers. A longdesc jurabook class is also provided, which may not yet be complete. +containersize 24848 +containerchecksum cbf6ebe12bf72dfb823578ed49066f34059e5ab1beefe0eeee84c7df55135644eabdea7582dc848b52cd575579d8807a2a2723bdb697e851eb8aef88f8a5e533 +doccontainersize 1142256 +doccontainerchecksum 3925418b9e4d05def76b9e0ebcf882c4b7061ff7ae446aa63d412c093caa04536ad45c757e04e088c3b4099c569885c6e6708ad31b866ebe89ecabb8395964b2 +docfiles size=469 + RELOC/doc/latex/juramisc/README details="Package README" language="de" + RELOC/doc/latex/juramisc/doc/jbook/jbook.dtx + RELOC/doc/latex/juramisc/doc/jbook/jbook.ins + RELOC/doc/latex/juramisc/doc/jmgerdoc.pdf details="Package documentation" language="de" + RELOC/doc/latex/juramisc/doc/jmgerdoc.tex + RELOC/doc/latex/juramisc/doc/jmgerdoc_scr.pdf runfiles size=31 RELOC/tex/latex/juramisc/jbgoe.clo RELOC/tex/latex/juramisc/jbstgallen.clo @@ -86451,73 +138463,51 @@ runfiles size=31 RELOC/tex/latex/juramisc/jurabook.cls RELOC/tex/latex/juramisc/juraovw.cls RELOC/tex/latex/juramisc/juraurtl.cls -docfiles size=469 - RELOC/doc/latex/juramisc/README - RELOC/doc/latex/juramisc/doc/jbook/jbook.dtx - RELOC/doc/latex/juramisc/doc/jbook/jbook.ins - RELOC/doc/latex/juramisc/doc/jmgerdoc.pdf - RELOC/doc/latex/juramisc/doc/jmgerdoc.tex - RELOC/doc/latex/juramisc/doc/jmgerdoc_scr.pdf +catalogue-also jura alphanum alnumsec jurabib catalogue-ctan /macros/latex/contrib/juramisc -catalogue-date 2013-10-30 13:49:16 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics legal book-pub class german catalogue-version 0.91 name jurarsp category Package revision 15878 -shortdesc Citations of judgements and official documents in (German) juridical documents. +shortdesc Citations of judgements and official documents in (German) juridical documents relocated 1 longdesc This package should be helpful for people working on (German) longdesc law. It (ab)uses BibTeX for citations of judgements and longdesc official documents. For this purpose, a special BibTeX-style is longdesc provided. -runfiles size=17 - RELOC/bibtex/bst/jurarsp/jurarsp.bst - RELOC/tex/latex/jurarsp/jurarsp.cfg - RELOC/tex/latex/jurarsp/jurarsp.sty +containersize 9464 +containerchecksum 511130814ed94c7f0829802a0c3e8e613b0c4aae50854f6e06779448f430e78c8712142fe04d3662b799a488d90944072847dd223b01b642de78c1f98649e79a +doccontainersize 121072 +doccontainerchecksum 1c439e351102ae3f768ae38404cc5d98403028fb6fa6088cd53eea40593ee03c10d20955f3fadef41f41af6d23f139ba356a9b06ed735644b67d3f42a076e0af docfiles size=57 - RELOC/doc/latex/jurarsp/README - RELOC/doc/latex/jurarsp/jurarsp.pdf + RELOC/doc/latex/jurarsp/README details="Readme" + RELOC/doc/latex/jurarsp/jurarsp.pdf details="Package documentation" language="de" RELOC/doc/latex/jurarsp/rsptest.bib RELOC/doc/latex/jurarsp/rsptest.tex +srccontainersize 26216 +srccontainerchecksum 8853060222f8f45e69fd7d3539534ed6a0762cb7f97d4c140dcb4ac59fcf1fe339d7f6cdca6e035d4e9bbcd730746e1311885d837fbedf65e208be2100ec2a90 srcfiles size=31 RELOC/source/latex/jurarsp/jurarsp.dtx RELOC/source/latex/jurarsp/jurarsp.ins +runfiles size=17 + RELOC/bibtex/bst/jurarsp/jurarsp.bst + RELOC/tex/latex/jurarsp/jurarsp.cfg + RELOC/tex/latex/jurarsp/jurarsp.sty +catalogue-also juraabbrev catalogue-ctan /macros/latex/contrib/jurarsp -catalogue-date 2012-05-09 16:03:55 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics bibtex-supp legal german catalogue-version 0.52 -name jura -category Package -revision 15878 -shortdesc A document class for German legal texts. -relocated 1 -longdesc Implements the standard layout for German term papers in law -longdesc (one-and-half linespacing, 7 cm margins, etc.). Includes -longdesc alphanum that permits alphanumeric section numbering (e.g., A. -longdesc Introduction; III. International Law). -runfiles size=4 - RELOC/tex/latex/jura/alphanum.sty - RELOC/tex/latex/jura/jura.cls -docfiles size=64 - RELOC/doc/latex/jura/README - RELOC/doc/latex/jura/jura.pdf - RELOC/doc/latex/jura/jura2html - RELOC/doc/latex/jura/juratest.ltx -srcfiles size=15 - RELOC/source/latex/jura/jura.dtx - RELOC/source/latex/jura/jura.ins -catalogue-ctan /macros/latex/contrib/jura -catalogue-date 2014-09-12 17:48:52 +0200 -catalogue-license gpl -catalogue-version 4.3 - name jvlisting category Package revision 24638 -shortdesc A replacement for LaTeX's verbatim package. +shortdesc A replacement for LaTeX's verbatim package relocated 1 longdesc This package provides a LaTeX environment listing, an longdesc alternative to the built-in verbatim environment. The listing @@ -86528,141 +138518,287 @@ longdesc automatically fixes leading whitespace so that the environment longdesc and program listing can be indented with the rest of the longdesc document source, and; listing environments may easily be longdesc customised and extended. -runfiles size=2 - RELOC/tex/latex/jvlisting/jvlisting.sty +containersize 2552 +containerchecksum 70626cd23359751909ce385a7ed4415c5641e9c303d0dafeb99e36d0151f382c02c2f6818a135bc92fb156d4fa25d1976b2c906074fcc112e56a1a7a458801c2 +doccontainersize 197100 +doccontainerchecksum de6a694c26332d9c97bf4202bec0989370226b7381d080c4d6f5a106cd8f2bf352d756cbe7cede2a4ba3e17f85ad553e5c24e874a00cc1dd307325125e6d0bcb docfiles size=53 RELOC/doc/latex/jvlisting/README RELOC/doc/latex/jvlisting/examples.tex - RELOC/doc/latex/jvlisting/jvlisting.pdf + RELOC/doc/latex/jvlisting/jvlisting.pdf details="Package documentation" RELOC/doc/latex/jvlisting/test.tex +srccontainersize 6744 +srccontainerchecksum 776fe9200a5447c151f11ee09b0f3d95aa5f07ccd427607b12ad7069aa70084d99c7d620261797e6c147ab134bf3a151bb739eadc8e3898dc8b16f284c66a965 srcfiles size=7 RELOC/source/latex/jvlisting/jvlisting.dtx RELOC/source/latex/jvlisting/jvlisting.ins +runfiles size=2 + RELOC/tex/latex/jvlisting/jvlisting.sty +catalogue-also verbatim catalogue-ctan /macros/latex/contrib/jvlisting -catalogue-date 2014-10-02 22:34:18 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics listing catalogue-version 0.7 +name kalendarium +category Package +revision 48744 +shortdesc Print dates according to the classical Latin calendar +relocated 1 +longdesc kalendarium is a LaTeX3 package that provides several macros +longdesc with which to print dates in classical Latin given days on the +longdesc Julian or Gregorian calendars, using the same syntax used by +longdesc ancient Roman authors. The format of these dates may be +longdesc customised either in the package options or on a per-command +longdesc basis; these options also allow for the generation of date +longdesc strings according to different eras of the Classical period. +containersize 3540 +containerchecksum fea39ce08f6028f078e2d87ec73aeeb56d72006d24d316f8e257b3c71604efe2b4ea2fa698f79798ec5c9b3d271d758d4c0699ffce1bf380a74d21158224eabb +doccontainersize 365480 +doccontainerchecksum 60a1dcbaa92fcb4438f4a2416dc4784fc30af34c6e1511533b8827a266b61a62a6c0e66f51b27ce81dd879d774e9fee6b155a048ddb9f68e1f991294791739e1 +docfiles size=99 + RELOC/doc/latex/kalendarium/README.md details="Readme" + RELOC/doc/latex/kalendarium/kalendarium.pdf details="Package documentation" +srccontainersize 16432 +srccontainerchecksum a1668bd43e489002ff365f5f90c6f9f8d6acb752256159f223a444b41ac1398e8d0bde50a63deac11f8d3a22f792278891cb05109b5af4c2efc1e8c278f01a76 +srcfiles size=19 + RELOC/source/latex/kalendarium/kalendarium.dtx + RELOC/source/latex/kalendarium/kalendarium.ins +runfiles size=4 + RELOC/tex/latex/kalendarium/kalendarium.sty +catalogue-contact-announce https://github.com/Andrew-William-Smith/kalendarium/commits/master +catalogue-contact-bugs https://github.com/Andrew-William-Smith/kalendarium/issues +catalogue-contact-development https://github.com/Andrew-William-Smith/kalendarium +catalogue-contact-home https://github.com/Andrew-William-Smith/kalendarium +catalogue-contact-repository https://github.com/Andrew-William-Smith/kalendarium +catalogue-contact-support https://github.com/Andrew-William-Smith/kalendarium/issues +catalogue-ctan /macros/latex/contrib/kalendarium +catalogue-date 2018-09-26 16:01:35 +0200 +catalogue-license lppl1.3c +catalogue-topics calendar latex3 +catalogue-version 1.0 + +name kanaparser +category Package +revision 48052 +shortdesc Kana parser for LuaTeX +relocated 1 +longdesc The package provides a kana parser for LuaTeX. It is a set of 4 +longdesc macros that handle transliteration of text: from hiragana and +longdesc katakana to Latin from Latin and katakana to hiragana from +longdesc Latin and hiragana to katakana It can be used to write kana +longdesc directly using only the ASCII character set or for education +longdesc purposes. The package has support for obsolete and rarely used +longdesc syllables, some only accessible via the provided toggle macro. +containersize 4620 +containerchecksum a9db1fc66330bafc5fc26ed600f1779dce328d6234ebe930aaff65a02a0d740188e73c5f73a9c75d69926323a610dca4b37044e7357a141eae9bb3231fd3e272 +doccontainersize 367048 +doccontainerchecksum 9eb00a9652f22411f9ae0123bd2bda62af617f39ed3eb8266c4ca38ff0783722a3d1eb05a0fe1ef6a238a3132ade65c5ebd882309f154ca416e2191b9db44c4c +docfiles size=96 + RELOC/doc/luatex/kanaparser/README.md details="Readme" + RELOC/doc/luatex/kanaparser/description.pdf details="Package documentation" + RELOC/doc/luatex/kanaparser/description.tex + RELOC/doc/luatex/kanaparser/examples.pdf + RELOC/doc/luatex/kanaparser/examples.tex +runfiles size=5 + RELOC/tex/luatex/kanaparser/kanaparser.lua + RELOC/tex/luatex/kanaparser/kanaparser.tex +catalogue-ctan /macros/luatex/generic/kanaparser +catalogue-date 2018-06-24 05:03:49 +0200 +catalogue-license bsd +catalogue-topics luatex parser japanese +catalogue-version 1.0 + name kantlipsum category Package -revision 27994 -shortdesc Generate sentences in Kant's style. +revision 45866 +shortdesc Generate sentences in Kant's style relocated 1 longdesc The package spits out sentences in Kantian style; the text is longdesc provided by the Kant generator for Python by Mark Pilgrim, longdesc described in the book "Dive into Python". The package is longdesc modelled on lipsum, and may be used for similar purposes. -runfiles size=47 - RELOC/tex/latex/kantlipsum/kantlipsum.sty -docfiles size=106 - RELOC/doc/latex/kantlipsum/README - RELOC/doc/latex/kantlipsum/kantlipsum.pdf -srcfiles size=50 +containersize 23768 +containerchecksum 91fde97e7056454d9750b0751fbd3b81c7eb063ea57a8acfe9b3128de4569763426ec0acfbc7bc435cfa2bc6ea484fbfe4f1231ab25ef1a54353dd4af3f74675 +doccontainersize 568908 +doccontainerchecksum 39442708cdbbd0b69ad2eb647bcf0b2a8a68ff1e4c0783b3899b7bfde589af40c3c877a4655d4ed941393a96f1e94e7bb0a47f10e30b7ed5393522629a1e1daf +docfiles size=142 + RELOC/doc/latex/kantlipsum/README.md details="Readme" + RELOC/doc/latex/kantlipsum/kantlipsum.pdf details="Package documentation" +srccontainersize 27380 +srccontainerchecksum 8305c6652ae38ead4d0ea7d0a5e323a778465e888ce6a40cd73c46cc7b39f2bf472be46d5cd78076719b3b13fe9c5240a21000b71a65c940fcdaa03e64fc22bd +srcfiles size=51 RELOC/source/latex/kantlipsum/kantlipsum.dtx RELOC/source/latex/kantlipsum/kantlipsum.ins +runfiles size=47 + RELOC/tex/latex/kantlipsum/kantlipsum.sty +catalogue-also blindtext catalogue-ctan /macros/latex/contrib/kantlipsum -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.6 +catalogue-date 2017-11-20 16:29:24 +0100 +catalogue-license lppl1.3c +catalogue-topics macro-supp dummy-gen +catalogue-version 0.7 + +name karnaugh +category Package +revision 21338 +shortdesc Typeset Karnaugh-Veitch-maps +relocated 1 +longdesc The package provides macros for typesetting Karnaugh-Maps and +longdesc Veitch-Charts in a simple and user-friendly way. Karnaugh-Maps +longdesc and Veitch-Charts are used to display and simplify logic +longdesc functions "manually". These macros can typeset Karnaugh-Maps +longdesc and Veitch-Charts with up to ten variables (=1024 entries). +containersize 4420 +containerchecksum 344027bcf79a9b1d3c408aae774bc532a39e7c638c4831d2566e7cf5ba5780161c6314bc0f9337de21fa08a2a2d72f3b5ccf9df7a521d7c95b4dc6e62cf2136f +doccontainersize 142148 +doccontainerchecksum 379638ab38cdfe3d94d049fec7701995566df9c5451f4f6a862c7cde232ceea899222b13f3c40398676bd2746305ee48e8b43781804cd24f48f36946526d23e4 +docfiles size=47 + RELOC/doc/latex/karnaugh/kvdoc.pdf details="Package documentation" + RELOC/doc/latex/karnaugh/kvdoc.tex +runfiles size=5 + RELOC/tex/latex/karnaugh/kvmacros.tex +catalogue-also askmaps karnaughmap karnaugh-map +catalogue-ctan /macros/latex/contrib/karnaugh +catalogue-date 2016-11-25 19:23:56 +0100 +catalogue-license lppl1 +catalogue-topics engineering maths + +name karnaugh-map +category Package +revision 44131 +shortdesc LaTeX package for drawing karnaugh maps with up to 6 variables +relocated 1 +longdesc This package draws karnaugh maps with 2, 3, 4, 5, and 6 +longdesc variables. It also contains commands for filling the karnaugh +longdesc map with terms semi-automatically or manually. Last but not +longdesc least it contains commands for drawing implicants on top of the +longdesc map. This package depends on the TikZ, xparse, and xstring +longdesc packages. +containersize 4836 +containerchecksum dc2327e4cda55e4b60365d6354f679f9bc68d87a3d3695eb98c2754d7a5f7f64d65db8732b107f686fc39a07868d4703afc0fba754f42af3fd567a143199580e +doccontainersize 239480 +doccontainerchecksum 0daa9aafafd67df8934ff2b7b31794b23c8ebc53fb142f23111e64957a75904c4813c6f40512e4a440861351a2185884969cffef35209dfddbfd9ac4007e6557 +docfiles size=60 + RELOC/doc/latex/karnaugh-map/README.md details="Readme" + RELOC/doc/latex/karnaugh-map/karnaugh-map.pdf details="Package documentation" +srccontainersize 8056 +srccontainerchecksum 3de03d6661f8a8d0955de760bd8e0a9e2c5592e1ec95e55224994c9b5580036da6c20a9e68a2e59195fbdbbe0ffb5f431dd025400a3c1c57c44fa92000575dfc +srcfiles size=16 + RELOC/source/latex/karnaugh-map/karnaugh-map.dtx + RELOC/source/latex/karnaugh-map/karnaugh-map.ins +runfiles size=8 + RELOC/tex/latex/karnaugh-map/karnaugh-map.sty +catalogue-also karnaugh karnaughmap +catalogue-contact-repository https://github.com/2pi/karnaugh-map +catalogue-ctan /graphics/pgf/contrib/karnaugh-map +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license other-free +catalogue-topics maths engineering pgf-tikz +catalogue-version 1.1 name karnaughmap category Package revision 36989 -shortdesc Typeset Karnaugh maps. +shortdesc Typeset Karnaugh maps relocated 1 longdesc This package provides an easy to use interface to typeset longdesc Karnaugh maps using TikZ. Though similar to the karnaugh longdesc macros, it provides a key-value system to customize longdesc karnaughmaps and a proper LaTeX package. -runfiles size=6 - RELOC/tex/latex/karnaughmap/karnaughmap.sty +containersize 3320 +containerchecksum 72c5ee674d7719b535a03cb9180a605fce2ac089c875cf57b95739b5c139bc45552960faf8f3287731fbe12c8402ce3c2c6517513d20bbc484e12a44468d6ec7 +doccontainersize 323304 +doccontainerchecksum c79e28dbfb45764c3f5feff21bf3cb8ec5ee41380fe43d35b2b091b1e263db1eb417a19c74987743c04a2f41fc2c3655fdc531c8971320580be48beeb4d3d6eb docfiles size=81 - RELOC/doc/latex/karnaughmap/README - RELOC/doc/latex/karnaughmap/karnaughmap.pdf + RELOC/doc/latex/karnaughmap/README details="Readme" + RELOC/doc/latex/karnaughmap/karnaughmap.pdf details="Package documentation" +srccontainersize 11192 +srccontainerchecksum ff5bdbaebaf55faf2d617b1e3634e52a6ec52c9d56932653d9b13a8aba94db101c4afbccdabd916d51be201135de2e739295b8a0523b63def160f1c07171e4a2 srcfiles size=17 RELOC/source/latex/karnaughmap/karnaughmap.dtx RELOC/source/latex/karnaughmap/karnaughmap.ins +runfiles size=6 + RELOC/tex/latex/karnaughmap/karnaughmap.sty +catalogue-also karnaugh karnaugh-map catalogue-ctan /graphics/pgf/contrib/karnaughmap -catalogue-date 2015-04-21 17:08:42 +0200 +catalogue-date 2016-11-25 19:28:19 +0100 catalogue-license lppl1.2 +catalogue-topics engineering maths pgf-tikz catalogue-version 2.0 -name karnaugh -category Package -revision 21338 -shortdesc Typeset Karnaugh-Veitch-maps. -relocated 1 -longdesc The package provides macros for typesetting Karnaugh-Maps and -longdesc Veitch-Charts in a simple and user-friendly way. Karnaugh-Maps -longdesc and Veitch-Charts are used to display and simplify logic -longdesc functions "manually". These macros can typeset Karnaugh-Maps -longdesc and Veitch-Charts with up to ten variables (=1024 entries). -runfiles size=5 - RELOC/tex/latex/karnaugh/kvmacros.tex -docfiles size=47 - RELOC/doc/latex/karnaugh/kvdoc.pdf - RELOC/doc/latex/karnaugh/kvdoc.tex -catalogue-ctan /macros/latex/contrib/karnaugh -catalogue-date 2013-12-04 20:37:03 +0100 -catalogue-license lppl1 - name kastrup category Package revision 15878 catalogue binhex -shortdesc Convert numbers into binary, octal and hexadecimal. -relocated 1 -longdesc Provides expandable macros for both fixed-width and minimum- -longdesc width numbers to bases 2, 4, 8 and 16. -runfiles size=1 - RELOC/tex/generic/kastrup/binhex.tex +shortdesc Convert numbers into binary, octal and hexadecimal +relocated 1 +longdesc Provides expandable macros for both fixed-width and +longdesc minimum-width numbers to bases 2, 4, 8 and 16. +containersize 1388 +containerchecksum d7cbd22ead6633284e9d114d90b2cb47924bfeb10c15eb350e4c2f82b883930c953410362313cdf8ac476a68cfa3a9b020217097909504b97a8ecd7addbc8d97 +doccontainersize 139420 +doccontainerchecksum 32883a008b0f44c341fbd5f65f9783e403fb5751201235b0c4a2dfd9af8400e1a36adaf4573165688d78cacdaad3c8b2ac1b92ba87ef6951d3bc5330537d1f9e docfiles size=37 - RELOC/doc/generic/kastrup/binhex.pdf + RELOC/doc/generic/kastrup/binhex.pdf details="Package documentation" +srccontainersize 7392 +srccontainerchecksum 60390a053fe2fa53685403df1d67a2bf8795f49db0f4eaa5a147ccaed951a55c1ed50c9cc5802bcdb5e356b694c2b4be78715022842c958f784908cab89a3f75 srcfiles size=7 RELOC/source/generic/kastrup/binhex.drv RELOC/source/generic/kastrup/binhex.dtx RELOC/source/generic/kastrup/binhex.ins +runfiles size=1 + RELOC/tex/generic/kastrup/binhex.tex catalogue-ctan /macros/generic/kastrup -catalogue-date 2012-04-27 17:42:45 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics numbers name kdgdocs category Package revision 24498 -shortdesc Document classes for Karel de Grote University College. +shortdesc Document classes for Karel de Grote University College relocated 1 longdesc The bundle provides two classes for usage by KdG professors and longdesc master students: kdgcoursetext: for writing course texts, and longdesc kdgmasterthesis: for writing master's theses. The bundle longdesc replaces the original kdgcoursetext package (now removed from longdesc the archive). -runfiles size=5 - RELOC/tex/latex/kdgdocs/kdgcoursetext.cls - RELOC/tex/latex/kdgdocs/kdgmasterthesis.cls +containersize 3640 +containerchecksum 79b64f2f20b9da908fd9acee1033fdef290c30e99794c37f5020f33dc5fdbb670383463bc17614f4ecaa1d5d4c03b4ffd3aa4f2b7c53f27455740adda9d0545a +doccontainersize 718580 +doccontainerchecksum 6b579a44d041a10eb9224aa80c1b59b113492cb12c121b1ca5f57625d044b52a80cbfab63d7a3160043b41b1b4e27d463f5ef8c9688f620f431fc1937a8bc561 docfiles size=285 RELOC/doc/latex/kdgdocs/LICENSE - RELOC/doc/latex/kdgdocs/README + RELOC/doc/latex/kdgdocs/README details="Readme" RELOC/doc/latex/kdgdocs/kdg_color.eps RELOC/doc/latex/kdgdocs/kdg_color.pdf - RELOC/doc/latex/kdgdocs/kdgcoursetext-example.pdf + RELOC/doc/latex/kdgdocs/kdgcoursetext-example.pdf details="Course text example" RELOC/doc/latex/kdgdocs/kdgcoursetext-example.tex - RELOC/doc/latex/kdgdocs/kdgdocs.pdf - RELOC/doc/latex/kdgdocs/kdgmasterthesis-example.pdf + RELOC/doc/latex/kdgdocs/kdgdocs.pdf details="Package documentation" + RELOC/doc/latex/kdgdocs/kdgmasterthesis-example.pdf details="Master thesis example" RELOC/doc/latex/kdgdocs/kdgmasterthesis-example.tex RELOC/doc/latex/kdgdocs/manifest.txt RELOC/doc/latex/kdgdocs/pi-orchid.jpg +srccontainersize 10436 +srccontainerchecksum 256c4c4e0a8dddf39fc6ce14f17313f2bee7c967dac21910fb44fd674573de113e78b0beaaa979d3c7f3fba06ad15d24d6243b8716b0114507331f267144d6f2 srcfiles size=11 RELOC/source/latex/kdgdocs/kdgdocs.dtx RELOC/source/latex/kdgdocs/kdgdocs.ins +runfiles size=5 + RELOC/tex/latex/kdgdocs/kdgcoursetext.cls + RELOC/tex/latex/kdgdocs/kdgmasterthesis.cls catalogue-ctan /macros/latex/contrib/kdgdocs -catalogue-date 2014-10-10 10:29:00 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics dissertation class catalogue-version 1.0 name kerkis category Package revision 15878 -shortdesc Kerkis (Greek) font family. +shortdesc Kerkis (Greek) font family relocated 1 longdesc Sans-serif Greek fonts to match the URW Bookman set (which are longdesc distributed with Kerkis). The Kerkis font set has some support @@ -86673,6 +138809,13 @@ longdesc mathematics; small caps and old-style number glyphs are also longdesc available. The philosophy, and the design process, of the longdesc Kerkis fonts is discussed in a paper in TUGboat 23(3/4), 2002. execute addMap kerkis.map +containersize 1693504 +containerchecksum 80989cf32881e82a9111bf99cee96377b8e315dc4b36af014653caf551fa008ee453d342710b8a5308d01654c68bcd0beb7d2c868f81354a699522379ff95061 +doccontainersize 2920 +doccontainerchecksum bd7d84083fe8d07a8e3fa7aebe9964771616e6a8429888cc11188ad7ef00912e92399cdc56ced9b67e2a7962af3bcdd5d99fa183e6760b8458427c19f79b354b +docfiles size=3 + RELOC/doc/latex/kerkis/License.txt + RELOC/doc/latex/kerkis/README.html details="Readme" runfiles size=760 RELOC/fonts/afm/public/kerkis/Kerkis-Bold.afm RELOC/fonts/afm/public/kerkis/Kerkis-BoldItalic.afm @@ -86932,17 +139075,15 @@ runfiles size=760 RELOC/tex/latex/kerkis/ot1maksf.fd RELOC/tex/latex/kerkis/t1mak.fd RELOC/tex/latex/kerkis/t1maksf.fd -docfiles size=3 - RELOC/doc/latex/kerkis/License.txt - RELOC/doc/latex/kerkis/README.html catalogue-ctan /fonts/greek/kerkis -catalogue-date 2014-05-11 22:11:06 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-greek font-maths font-type1 name kerntest category Package revision 15878 -shortdesc Print tables and generate control files to adjust kernings. +shortdesc Print tables and generate control files to adjust kernings relocated 1 longdesc This class makes it easy to generate tables that show many longdesc different kerning pairs of an arbitrary font, usable by LaTeX. @@ -86953,20 +139094,15 @@ longdesc defined for groups of similar glyphs at the same time. An mtx longdesc file is generated automatically. The mtx file may then be longdesc loaded by fontinst to introduce the user-made kernings into the longdesc virtual font for later use in LaTeX. -runfiles size=22 - RELOC/tex/latex/kerntest/kerntest.cls - RELOC/tex/latex/kerntest/ly1mtx.clo - RELOC/tex/latex/kerntest/ot1mtx.clo - RELOC/tex/latex/kerntest/t1cmr-1200.fd - RELOC/tex/latex/kerntest/t1mtx.clo - RELOC/tex/latex/kerntest/t2amtx.clo - RELOC/tex/latex/kerntest/t2bmtx.clo - RELOC/tex/latex/kerntest/ts1mtx.clo +containersize 11356 +containerchecksum 9f295c253228745bdd91db65f2e414bc6113d246242ea1717db6659c2ccbf72530fdc326c0ec499f6d6c2af3ec8df2b78965666dd8544e07bce864716804e76b +doccontainersize 627468 +doccontainerchecksum b471544af9d1ecfd6225e4b9d61f05b4da950a6512ac4c4bab54b1ef9befa859ee5aee2498690e724d84313808d2abc8f005fd4e121891878cd2dbd03ae36415 docfiles size=232 RELOC/doc/latex/kerntest/ChangeLog - RELOC/doc/latex/kerntest/README + RELOC/doc/latex/kerntest/README details="Readme" RELOC/doc/latex/kerntest/ToDo - RELOC/doc/latex/kerntest/kerntest.pdf + RELOC/doc/latex/kerntest/kerntest.pdf details="Package documentation" RELOC/doc/latex/kerntest/krntst-v.tex RELOC/doc/latex/kerntest/ot1-XXX-m-n.tex RELOC/doc/latex/kerntest/schoolb.map @@ -86981,19 +139117,928 @@ docfiles size=232 RELOC/doc/latex/kerntest/t1-ptm-m-n.tex RELOC/doc/latex/kerntest/testschoolb.tex RELOC/doc/latex/kerntest/ts1-XXX-m-n.tex +srccontainersize 32176 +srccontainerchecksum 8d7c2a8e8881f361c67ff71a57056dbabd3e0af5d24cbbc5f9e7e6e321504482469809f8bf349b5fd4d65e011049d5a67e7570c0b364cfe178b0fe377da82c31 srcfiles size=45 RELOC/source/latex/kerntest/Makefile RELOC/source/latex/kerntest/kerntest.dtx RELOC/source/latex/kerntest/kerntest.ins +runfiles size=22 + RELOC/tex/latex/kerntest/kerntest.cls + RELOC/tex/latex/kerntest/ly1mtx.clo + RELOC/tex/latex/kerntest/ot1mtx.clo + RELOC/tex/latex/kerntest/t1cmr-1200.fd + RELOC/tex/latex/kerntest/t1mtx.clo + RELOC/tex/latex/kerntest/t2amtx.clo + RELOC/tex/latex/kerntest/t2bmtx.clo + RELOC/tex/latex/kerntest/ts1mtx.clo catalogue-ctan /macros/latex/contrib/kerntest -catalogue-date 2012-05-08 22:29:29 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font-devel catalogue-version 1.32 +name ketcindy +category Package +revision 50488 +shortdesc macros for graphic generation and Cinderella plugin +longdesc KETpic is a macro package designed for computer algebra systems +longdesc (CAS) to generate LaTeX source codes for high-quality +longdesc mathematical artwork. KETcindy is a plugin for Cinderella that +longdesc allows to generate graphics using KETpic. The generated code +longdesc can be included in any LaTeX document. +depend ketcindy.ARCH +containersize 2508192 +containerchecksum c7b989c5c0e5eaf5796296e8bb5e4f3b5481d9d57b3a28d5b21871587583a0cc0aaa3ec2de15bbe14ca3bb0cdeeec5a65f64e760bb5350122cf747879b58f902 +doccontainersize 14141028 +doccontainerchecksum 51a49bddf3eb6e66b2c94ae15fc8132d7be12364c01a6144f9ef9f7e71124e8a04b0de339e0d65492471abeb17700ff3a455a543a74967512493a9a9e66a206b +docfiles size=5686 + texmf-dist/doc/support/ketcindy/HowToInstallE.pdf + texmf-dist/doc/support/ketcindy/HowToInstallJ.pdf + texmf-dist/doc/support/ketcindy/LICENSE + texmf-dist/doc/support/ketcindy/README details="Readme" + texmf-dist/doc/support/ketcindy/README.TeXLive + texmf-dist/doc/support/ketcindy/Scriptkelib.txt + texmf-dist/doc/support/ketcindy/forLinux/ReadmeLinuxE.pdf + texmf-dist/doc/support/ketcindy/forLinux/ReadmeLinuxJ.pdf + texmf-dist/doc/support/ketcindy/forLinux/setcindyetc.sh + texmf-dist/doc/support/ketcindy/forLinux/setketcindy.sh + texmf-dist/doc/support/ketcindy/forLinux/setwork.sh + texmf-dist/doc/support/ketcindy/forMac/Forsettingmanually/ketcindy.conf + texmf-dist/doc/support/ketcindy/forMac/Forsettingmanually/ketcindy.ini + texmf-dist/doc/support/ketcindy/forMac/ReadmeMacE.pdf + texmf-dist/doc/support/ketcindy/forMac/ReadmeMacJ.pdf + texmf-dist/doc/support/ketcindy/forMac/setketcindy.command + texmf-dist/doc/support/ketcindy/forMac/setwork.command + texmf-dist/doc/support/ketcindy/forWindows/Forsettingmanually/ketcindy.conf + texmf-dist/doc/support/ketcindy/forWindows/Forsettingmanually/ketcindy.ini + texmf-dist/doc/support/ketcindy/forWindows/ReadmeWinE.pdf + texmf-dist/doc/support/ketcindy/forWindows/ReadmeWinJ.pdf + texmf-dist/doc/support/ketcindy/forWindows/setketcindy.bat + texmf-dist/doc/support/ketcindy/forWindows/setketcindytexlive.bat + texmf-dist/doc/support/ketcindy/forWindows/setketcindyw32J.bat + texmf-dist/doc/support/ketcindy/forWindows/setwork.bat + texmf-dist/doc/support/ketcindy/ketcindyjs/3dlist.txt + texmf-dist/doc/support/ketcindy/ketcindyjs/Cindy.js + texmf-dist/doc/support/ketcindy/ketcindyjs/Cindy.js.map + texmf-dist/doc/support/ketcindy/ketcindyjs/CindyJS.css + texmf-dist/doc/support/ketcindy/ketcindyjs/basic1list.txt + texmf-dist/doc/support/ketcindy/ketcindyjs/basic2list.txt + texmf-dist/doc/support/ketcindy/ketcindyjs/commonused.txt + texmf-dist/doc/support/ketcindy/ketcindyjs/ignoredfun.txt + texmf-dist/doc/support/ketcindy/ketcindyjs/katex-plugin.js + texmf-dist/doc/support/ketcindy/ketcindyjs/katex/fonts/KaTeX_Main-Regular.ttf + texmf-dist/doc/support/ketcindy/ketcindyjs/katex/fonts/KaTeX_Main-Regular.woff + texmf-dist/doc/support/ketcindy/ketcindyjs/katex/fonts/KaTeX_Main-Regular.woff2 + texmf-dist/doc/support/ketcindy/ketcindyjs/katex/fonts/KaTeX_Math-Italic.ttf + texmf-dist/doc/support/ketcindy/ketcindyjs/katex/fonts/KaTeX_Math-Italic.woff + texmf-dist/doc/support/ketcindy/ketcindyjs/katex/fonts/KaTeX_Math-Italic.woff2 + texmf-dist/doc/support/ketcindy/ketcindyjs/katex/katex.min.css + texmf-dist/doc/support/ketcindy/ketcindyjs/katex/katex.min.js + texmf-dist/doc/support/ketcindy/ketcindyjs/makefunlist.cdy + texmf-dist/doc/support/ketcindy/ketcindyjs/webfont.js + texmf-dist/doc/support/ketcindy/ketmanual/KeTCindyGuideE.pdf details="User guide (English)" + texmf-dist/doc/support/ketcindy/ketmanual/KeTCindyGuideJ.pdf details="User guide (Japanese)" language="ja" + texmf-dist/doc/support/ketcindy/ketmanual/KeTCindyReferenceE.pdf details="Reference manual (English)" + texmf-dist/doc/support/ketcindy/ketmanual/KeTCindyReferenceJ.pdf details="Reference manual (Japanese)" language="ja" + texmf-dist/doc/support/ketcindy/ketmanual/KeTPicStyleE.pdf + texmf-dist/doc/support/ketcindy/ketmanual/KeTPicStyleJ.pdf + texmf-dist/doc/support/ketcindy/samples/s01figure/s0101figure.cdy + texmf-dist/doc/support/ketcindy/samples/s01figure/s0101figurepdf.cdy + texmf-dist/doc/support/ketcindy/samples/s01figure/s0102figure2.cdy + texmf-dist/doc/support/ketcindy/samples/s01figure/s0103polygon.cdy + texmf-dist/doc/support/ketcindy/samples/s01figure/s0104shade.cdy + texmf-dist/doc/support/ketcindy/samples/s01figure/s0105vector.cdy + texmf-dist/doc/support/ketcindy/samples/s01figure/s0106bowdotfill.cdy + texmf-dist/doc/support/ketcindy/samples/s01figure/s0106bowhatch.cdy + texmf-dist/doc/support/ketcindy/samples/s01figure/s0107hyperbolahatch.cdy + texmf-dist/doc/support/ketcindy/samples/s01figure/s0108cycloid.cdy + texmf-dist/doc/support/ketcindy/samples/s01figure/s0109epitrochoid.cdy + texmf-dist/doc/support/ketcindy/samples/s01figure/s0110hypotrochoid.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0201basic.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0202graph1.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0203graph2.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0204graph3.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0205coniccurve.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0206defexp.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0207envelope.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0208intersecthatch.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0209diffeq.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0210diffeq2.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0212implicit.cdy + texmf-dist/doc/support/ketcindy/samples/s02graph/s0213implicithatch.cdy + texmf-dist/doc/support/ketcindy/samples/s03table/s0301table.cdy + texmf-dist/doc/support/ketcindy/samples/s03table/s0302table2.cdy + texmf-dist/doc/support/ketcindy/samples/s03table/s0302table2line.cdy + texmf-dist/doc/support/ketcindy/samples/s03table/s0303papersquared.cdy + texmf-dist/doc/support/ketcindy/samples/s03table/s0304graphforincanddec.cdy + texmf-dist/doc/support/ketcindy/samples/s04bezier/dogwalk.png + texmf-dist/doc/support/ketcindy/samples/s04bezier/heart.png + texmf-dist/doc/support/ketcindy/samples/s04bezier/mtfuji.png + texmf-dist/doc/support/ketcindy/samples/s04bezier/s0401bezierbasic.cdy + texmf-dist/doc/support/ketcindy/samples/s04bezier/s0402bezier2.cdy + texmf-dist/doc/support/ketcindy/samples/s04bezier/s0403oshimaspline.cdy + texmf-dist/doc/support/ketcindy/samples/s04bezier/s0404heart.cdy + texmf-dist/doc/support/ketcindy/samples/s04bezier/s0405dogwalk.cdy + texmf-dist/doc/support/ketcindy/samples/s04bezier/s0406mtfuji.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/DLofPolyhedrons_objE.txt + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/DLofPolyhedrons_objJ.txt + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0501basic.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0501plane.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0502spacecurve.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0503perp.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0504embed.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0505bezier3d.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0506embedhatch.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0507polyhedron.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0508concatobj.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0509cubiccut.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0510cubiccut2.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0511tetra.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0521totaldiffskeleton.cdy + texmf-dist/doc/support/ketcindy/samples/s05spacefigure/s0522conecutmaxima.cdy + texmf-dist/doc/support/ketcindy/samples/s06animation/s0601cycloid.cdy + texmf-dist/doc/support/ketcindy/samples/s06animation/s0602diffeq.cdy + texmf-dist/doc/support/ketcindy/samples/s06animation/s0603envelope.cdy + texmf-dist/doc/support/ketcindy/samples/s06animation/s0604diffeq2.cdy + texmf-dist/doc/support/ketcindy/samples/s06animation/s0605cycloid2.cdy + texmf-dist/doc/support/ketcindy/samples/s06animation/s0606epitrochoid.cdy + texmf-dist/doc/support/ketcindy/samples/s06animation/s0607hypotrochoid.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/figwall/wallpaper.tex + texmf-dist/doc/support/ketcindy/samples/s07slides/howtouseslideE.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/howtouseslideJ.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/s0701basic.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/s0701basic.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/s0701basicE.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/s0701basicE.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/s0702graph.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/s0702graph.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/s0702graphE.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/s0702graphE.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/s0703repeat.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/s0703repeat.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/s0703repeatE.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/s0703repeatE.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/s0704thin.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/s0704thin.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/s0704thinE.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/s0704thinE.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/s0705para.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/s0705para.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/s0705paraE.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/s0705paraE.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/s0706animate.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/s0706animate.txt + texmf-dist/doc/support/ketcindy/samples/s07slides/s0706animateE.cdy + texmf-dist/doc/support/ketcindy/samples/s07slides/s0706animateE.txt + texmf-dist/doc/support/ketcindy/samples/s08R/s0801plotR.cdy + texmf-dist/doc/support/ketcindy/samples/s08R/s0802plotR2.cdy + texmf-dist/doc/support/ketcindy/samples/s08R/s0803boxplot.cdy + texmf-dist/doc/support/ketcindy/samples/s08R/s0804histplot.cdy + texmf-dist/doc/support/ketcindy/samples/s08R/s0805random.cdy + texmf-dist/doc/support/ketcindy/samples/s08R/s0806dataframe.cdy + texmf-dist/doc/support/ketcindy/samples/s08R/s0807timecount.cdy + texmf-dist/doc/support/ketcindy/samples/s08R/s0808ttest.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0901paraboloid.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0902cone.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0903saddle.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0904mant.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0905sphere.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0906curveonsurf.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0907intersectcrvsf.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0908wiredata.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0909conecut.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0910multisurfaces.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0911saddleskeleton.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0912animesaddle.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0913animeparaboloid.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0914animemobius.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0915discont.cdy + texmf-dist/doc/support/ketcindy/samples/s09surfaceC/s0916multiandcut.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1000list.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1001basic.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1002equation.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1003trig.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1004calcby.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1005diffint.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1006calculus.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1007linalg.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1008idtable.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1009diffeq.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1010fourier.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1010fourier2.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1010fourier3.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1011matrixop.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1011matrixop2.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1012fourierpw.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1013for.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1014incdec2.cdy + texmf-dist/doc/support/ketcindy/samples/s10maxima/s1015primenumber.cdy + texmf-dist/doc/support/ketcindy/samples/s11asir/s1100list.cdy + texmf-dist/doc/support/ketcindy/samples/s11asir/s1101calculator1.cdy + texmf-dist/doc/support/ketcindy/samples/s11asir/s1102calculator2.cdy + texmf-dist/doc/support/ketcindy/samples/s11asir/s1103calcby.cdy + texmf-dist/doc/support/ketcindy/samples/s11asir/s1104diff.cdy + texmf-dist/doc/support/ketcindy/samples/s11asir/s1105fint101.cdy + texmf-dist/doc/support/ketcindy/samples/s11asir/s1105fzero109.cdy + texmf-dist/doc/support/ketcindy/samples/s11asir/s1106fmmx110.cdy + texmf-dist/doc/support/ketcindy/samples/s11asir/s1110integrate.cdy + texmf-dist/doc/support/ketcindy/samples/s11asir/s1111grobner1.cdy + texmf-dist/doc/support/ketcindy/samples/s11asir/s1112residue.cdy + texmf-dist/doc/support/ketcindy/samples/s12fricas/s1201integrate.cdy + texmf-dist/doc/support/ketcindy/samples/s12fricas/s1201integrate2.cdy + texmf-dist/doc/support/ketcindy/samples/s12fricas/s1202calcby.cdy + texmf-dist/doc/support/ketcindy/samples/s12fricas/s1202equations.cdy + texmf-dist/doc/support/ketcindy/samples/s13objview/s1301basic.cdy + texmf-dist/doc/support/ketcindy/samples/s13objview/s1303objparts.cdy + texmf-dist/doc/support/ketcindy/samples/s13objview/s1304symbol.cdy + texmf-dist/doc/support/ketcindy/samples/s13objview/s1305hyperpara.cdy + texmf-dist/doc/support/ketcindy/samples/s13objview/s1306poly.cdy + texmf-dist/doc/support/ketcindy/samples/s13objview/s1307poly2.cdy + texmf-dist/doc/support/ketcindy/samples/s13objview/s1308discont.cdy + texmf-dist/doc/support/ketcindy/samples/s13objview/s1309discont2.cdy + texmf-dist/doc/support/ketcindy/samples/s13objview/s1310totaldiff.cdy + texmf-dist/doc/support/ketcindy/samples/s13objview/s1311plate.cdy + texmf-dist/doc/support/ketcindy/samples/s13objview/s1312plane.cdy + texmf-dist/doc/support/ketcindy/samples/s13objview/s1313changescale.cdy + texmf-dist/doc/support/ketcindy/samples/s14dataprocessing/s1401csvprocessing.cdy + texmf-dist/doc/support/ketcindy/samples/s14dataprocessing/s1402copypaste.cdy + texmf-dist/doc/support/ketcindy/samples/s14dataprocessing/s1403maketableJ.cdy + texmf-dist/doc/support/ketcindy/samples/s14dataprocessing/sample1.csv + texmf-dist/doc/support/ketcindy/samples/s14dataprocessing/sample2.csv + texmf-dist/doc/support/ketcindy/samples/s15surfaceR/s1501paraboloidR.cdy + texmf-dist/doc/support/ketcindy/samples/s15surfaceR/s1502coneR.cdy + texmf-dist/doc/support/ketcindy/samples/s15surfaceR/s1503saddleR.cdy + texmf-dist/doc/support/ketcindy/samples/s15surfaceR/s1504mantR.cdy + texmf-dist/doc/support/ketcindy/samples/s15surfaceR/s1505sphereR.cdy + texmf-dist/doc/support/ketcindy/samples/s15surfaceR/s1506curveonsurfR.cdy + texmf-dist/doc/support/ketcindy/samples/s15surfaceR/s1507intersectcrvsfR.cdy + texmf-dist/doc/support/ketcindy/samples/s15surfaceR/s1508multisurfacesR.cdy + texmf-dist/doc/support/ketcindy/samples/s15surfaceR/s1509wiredataR.cdy + texmf-dist/doc/support/ketcindy/samples/s15surfaceR/s1510conecutR.cdy + texmf-dist/doc/support/ketcindy/samples/s16ketcindyJS/howtouseketcindyjsE.txt + texmf-dist/doc/support/ketcindy/samples/s16ketcindyJS/howtouseketcindyjsJ.txt + texmf-dist/doc/support/ketcindy/samples/s16ketcindyJS/s1601basic.cdy + texmf-dist/doc/support/ketcindy/samples/s16ketcindyJS/s1602diffeq2.cdy + texmf-dist/doc/support/ketcindy/samples/s16ketcindyJS/s1603gamow.cdy + texmf-dist/doc/support/ketcindy/samples/s16ketcindyJS/s1604putoncurve.cdy + texmf-dist/doc/support/ketcindy/samples/s16ketcindyJS/s1605triangle.cdy + texmf-dist/doc/support/ketcindy/samples/s16ketcindyJS/s1606morley.cdy + texmf-dist/doc/support/ketcindy/samples/s17spacekc/ReadmeE.txt + texmf-dist/doc/support/ketcindy/samples/s17spacekc/ReadmeJ.txt + texmf-dist/doc/support/ketcindy/samples/s17spacekc/Spacekc.cdy + texmf-dist/doc/support/ketcindy/samples/s17spacekc/Spacekc.pdf + texmf-dist/doc/support/ketcindy/samples/s17spacekc/SpacekcReference.pdf + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/KetCindyPlugin.iml + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/build.xml + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/config/META-INF/services/de.cinderella.api.cs.CindyScriptPlugin + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/lib/cindy2.jar + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/lib/commons-math.jar + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/src/KetCindyPlugin.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin150906.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin160515.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin160518.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin160530.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin160601.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin160604.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin160609.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin160723.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin161019.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin161021.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin161209.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin170605.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin170906.java + texmf-dist/doc/support/ketcindy/source/KetCindyPlugin/srcold/KetCindyPlugin171112.java + texmf-dist/doc/support/ketcindy/source/cdy-templates/Makefile + texmf-dist/doc/support/ketcindy/source/howtoinstall/HowToInstallE.tex + texmf-dist/doc/support/ketcindy/source/howtoinstall/HowToInstallJ.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/3dscreen.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/3dstart.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/CindyhelpE.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/Dotfill.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/FigE.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead-1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead-10.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead-2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead-3.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead-4.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead-5.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead-6.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead-7.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead-8.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead-9.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ForRef-Arrowhead-ya1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/Framedata.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/HatchZuKita1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/HatchZuKita5E.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/HatchZuKita6E.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/HatchZuKita7.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/HatchZuKita7E.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/HatchZuKita8.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/HatchZuKita9.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/HatchZuKitaE.cdy + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/Intersectcurvsf.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/IntersectsgpL0.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/IntersectsgpL1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/IntersectsgpL2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/Nearestpt.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/Nearestpt1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/PutcellE.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/addax1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/addgraph.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/angle-mark.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/angle.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/anglemark.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/anglemark2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/animestart.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/arrowdata.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/arrowhead.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/assign.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/bbdata.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/bezier3d1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/binvsnormal.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/bisector.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/bowdata.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/bowdata2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/boxframeslide.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/boxplot.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/boxplot01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/calcbyr01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/calling.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/cardioid1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/changetable.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkCR.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkb10.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkb11.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkb8.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkb9.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkbe1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkbe2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkbe3.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkbe4.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkbe5.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkbe6.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkbe7.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkbe8.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkbmain.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkbs1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkbs2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checkmc1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checksm1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checksm2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checksy1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/checksy2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/circle-by-radius.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/circledata1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/circledata2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/circledata3.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/circledata4.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/circledata5.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/coloring.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/colortable.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/concatobj.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/concept.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/conceptE.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/crosspoint.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/crvsfparadata1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/crvsfparadata2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/deffun01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/deffun02.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/deffun03.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/delete.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/deqplot1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/deqplot2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/deqplot3.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/derivative.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/diffeq1.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/drawpoint.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/drwxy.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ellipse-by-foci.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ellipsecindy.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ellipseplot1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ellipseplot2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/embed01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/embed02.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/embed03.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/enclosing.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ewns.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ewsn.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/execcmdc1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/expr.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/exprrot.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/exprrot.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/fontsize.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/fourier.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/fourierseries.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/frustume.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/frustumew.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/frustumewn.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/frustumw.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/gpro01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/gpro02.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/greenring.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/grid-less.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/grid-more.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/hatch.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/hatch1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/hatch2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/hatch3.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/hatch4.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/hatch5.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/histgram.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/htickmark.cdy + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/htickmark.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/htickmark01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/hyper1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/hyperbola-by-foci.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/implicit.cdy + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/implicit.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/implicit1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/incenter01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/incenter02.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/incenter02E.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/incenter03.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/intersectcrvs1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/intersectcrvs2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/intersection.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/intlog.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/inversefun.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/invparapt.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/joincrvs.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/kobayashi.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/kobayashiE.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/letter.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/letter2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/letter3d.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/letter4.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/lineplot.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/listplot1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/listplot2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/listplot3.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/listplot3view.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/makeslide.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/maxfun01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/maxfun02.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/maxima1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/meshlab01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/meshlab02.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/meshlab03.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/meshlab06.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/middle.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/mirror.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/mkpttable.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/mkpttableE.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/move.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/moviedata01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/moviedata02.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/multi-add-circle.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/multi-add-line.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/multi-add-parallel.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/multi-add-perp.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/mvgaiyou01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/mxbatch.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/mxtex01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/mxtex01E.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/mxtex02.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/mxtex03.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/nohiddenbyfaces1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/nohiddenbyfaces2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/numptcrv.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/oresenex01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ospline1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ospline2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ovaldata.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/parabola-by-foci.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/parabola.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/parabolaplot.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/parabolaplot.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/parabolaplotE.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/paramark.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/paramoncrv.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/paramplot1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/paramplot2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/partcrv.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/partcrv1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/partcrv2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/partcrv3.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/partcrv3d1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/partcrv3d2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/partcrv4.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/pdexample.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/pdtoconsole.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/periodfun.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/periodfun2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/perpplane.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/perppt.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/phparadata01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/phparadata02.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/phparadata03.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/phparadata04.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/plotdata1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/plotdata2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/plotdata3.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/plotdata4.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/plotdata5.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/plotdatar1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/plotdatatan1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/plotdatatan2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/pointdata.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/pointoncrv.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/pointsize.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/poison01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/polar-of-point.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/polygon.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/polygonplane1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/polygonplane2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/polygonplot1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/polygonplot2.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ptcrv.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ptselected01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ptselected02.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ptstart.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/putcell.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/putcol.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/putcolE.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/putintersect.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/putoncurve.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/putoncurve.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/putonline1.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/putonseg.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/rasen.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/readobj.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/reflectdata.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/reflectdata3d01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/reflectdata3d02.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/reflectdata3d03.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/reflectpoint.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/rotatedata.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/rotatedata3d01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/rotatedata3d02.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/rotatepoint.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/rshade.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ruler.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/ruler1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/s106bowhatch.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/s10diffint.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/s210diffeq1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/s305graphforincanddec.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/s305incanddec.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/saddle1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/saddle1E.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/saddle2E.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/scaledata.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/scaledata3d.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/scalepoint.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/scatter.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/segmark.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/segment.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/select-lines.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/select-points.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/setax-theta.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/setcolor.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/setorigin.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/setorigin.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/setscaling.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/setwindow.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/sf3ddata3.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/sf3ddata4.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/sfbdpara01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/sfbdpara02.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/sfbdpara03.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/sfbdpara04.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/sfbdpara05.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/sfcut.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/shade.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/shade01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/shade01E.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/shadeE.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/single-add.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/skeletonparadata01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/skeletonparadata02.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/skeletonparadata03.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/slide01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/slide01E.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/slidepdf1.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/slidepdf2.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/slidepdf3.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/slider.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/sliderepeat.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/sliderepeatE.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/slidescreen.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/slidescript.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/slot.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/slotE.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/snap.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/spacelinecurve1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/spacelinecurve2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/start01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/start02.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/start03.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/start04.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/start05.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/start06.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/start07.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/start08.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/start09.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/start10.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/surfacemodel.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/surfacemodelE.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tab2list00.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tab2list001.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tab2list001E.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tab2list01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tab2list01E.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tab2list02.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tab2list02E.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tab2list03.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tab2list03E.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tab2list04.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tab2list04E.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/table01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/table02.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/table03.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tablesample1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tablesample1E.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tablesample2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tablesample2E.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tangent.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/taylor.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/tetrahedron.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/translate-view.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/translate01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/translatedata.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/translatepoint.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/trimarrow.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/trimseg.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/vertex01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/wire01.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/wire02.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/wire03.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/wire04.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/wirepara1.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/wirepara2.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/wirepara3.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/wirepara4.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/wirepara5.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/xsinx.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/xsinx01.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/xsinx02.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/xsinx03.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/zogen3.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/zoom-in.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/zoom-out.pdf + texmf-dist/doc/support/ketcindy/source/ketmanual/KeTCindyGuideE.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/KeTCindyGuideJ.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/KeTCindyReferenceE.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/KeTCindyReferenceJ.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/KeTPicStyleE.tex + texmf-dist/doc/support/ketcindy/source/ketmanual/KeTPicStyleJ.tex + texmf-dist/doc/support/ketcindy/source/readme/ReadmeLinuxE.tex + texmf-dist/doc/support/ketcindy/source/readme/ReadmeLinuxJ.tex + texmf-dist/doc/support/ketcindy/source/readme/ReadmeMacE.tex + texmf-dist/doc/support/ketcindy/source/readme/ReadmeMacJ.tex + texmf-dist/doc/support/ketcindy/source/readme/ReadmeWinE.tex + texmf-dist/doc/support/ketcindy/source/readme/ReadmeWinJ.tex + texmf-dist/doc/support/ketcindy/source/spacekc/SpacekcReferenceE.tex + texmf-dist/doc/support/ketcindy/source/spacekc/SpacekcReferenceJ.tex +runfiles size=1468 + texmf-dist/scripts/ketcindy/allbuttons.cdy + texmf-dist/scripts/ketcindy/data/fontF/0Small.png + texmf-dist/scripts/ketcindy/data/fontF/0Smalla-h.png + texmf-dist/scripts/ketcindy/data/fontF/0Smalli-o.png + texmf-dist/scripts/ketcindy/data/fontF/0Smallp-w.png + texmf-dist/scripts/ketcindy/data/fontF/0Smallxyz.png + texmf-dist/scripts/ketcindy/data/fontF/nsi.cdy + texmf-dist/scripts/ketcindy/data/fontF/nsi.txt + texmf-dist/scripts/ketcindy/data/fontF/pcr.cdy + texmf-dist/scripts/ketcindy/data/fontF/pcr.txt + texmf-dist/scripts/ketcindy/data/fontF/qcr.cdy + texmf-dist/scripts/ketcindy/data/fontF/qcr.txt + texmf-dist/scripts/ketcindy/data/fontF/rcr.cdy + texmf-dist/scripts/ketcindy/data/fontF/rcr.txt + texmf-dist/scripts/ketcindy/data/fontF/tsi.cdy + texmf-dist/scripts/ketcindy/data/fontF/tsi.txt + texmf-dist/scripts/ketcindy/data/fontF/xsi.cdy + texmf-dist/scripts/ketcindy/data/fontF/xsi.txt + texmf-dist/scripts/ketcindy/data/fontF/ysi.cdy + texmf-dist/scripts/ketcindy/data/fontF/ysi.txt + texmf-dist/scripts/ketcindy/data/fontF/zsi.cdy + texmf-dist/scripts/ketcindy/data/fontF/zsi.txt + texmf-dist/scripts/ketcindy/data/polyhedrons_obj/r01.obj + texmf-dist/scripts/ketcindy/data/polyhedrons_obj/r02.obj + texmf-dist/scripts/ketcindy/data/polyhedrons_obj/r03.obj + texmf-dist/scripts/ketcindy/data/polyhedrons_obj/r04.obj + texmf-dist/scripts/ketcindy/data/polyhedrons_obj/r05.obj + texmf-dist/scripts/ketcindy/data/polyhedrons_obj/readme.pdf + texmf-dist/scripts/ketcindy/data/polyhedrons_obj/readme.txt + texmf-dist/scripts/ketcindy/ketcindy.conf + texmf-dist/scripts/ketcindy/ketcindy.ini + texmf-dist/scripts/ketcindy/ketcindy.pl + texmf-dist/scripts/ketcindy/ketcindy.sh + texmf-dist/scripts/ketcindy/ketjava/KetCindyPlugin.jar + texmf-dist/scripts/ketcindy/ketlib/ketcindylib3dhelpE.txt + texmf-dist/scripts/ketcindy/ketlib/ketcindylib3dhelpJ.txt + texmf-dist/scripts/ketcindy/ketlib/ketcindylib3dlogr.txt + texmf-dist/scripts/ketcindy/ketlib/ketcindylib3dr.cs + texmf-dist/scripts/ketcindy/ketlib/ketcindylibbasic1logr.txt + texmf-dist/scripts/ketcindy/ketlib/ketcindylibbasic1r.cs + texmf-dist/scripts/ketcindy/ketlib/ketcindylibbasic2logr.txt + texmf-dist/scripts/ketcindy/ketlib/ketcindylibbasic2r.cs + texmf-dist/scripts/ketcindy/ketlib/ketcindylibhelpE.txt + texmf-dist/scripts/ketcindy/ketlib/ketcindylibhelpJ.txt + texmf-dist/scripts/ketcindy/ketlib/ketcindylibmvhelpE.txt + texmf-dist/scripts/ketcindy/ketlib/ketcindylibmvhelpJ.txt + texmf-dist/scripts/ketcindy/ketlib/ketcindylibmvlogr.txt + texmf-dist/scripts/ketcindy/ketlib/ketcindylibmvr.cs + texmf-dist/scripts/ketcindy/ketlib/ketcindyliboutlogr.txt + texmf-dist/scripts/ketcindy/ketlib/ketcindyliboutr.cs + texmf-dist/scripts/ketcindy/ketlib/ketpicR/ketpic5_2_4.r + texmf-dist/scripts/ketcindy/ketlib/ketpiccurrent.r + texmf-dist/scripts/ketcindy/ketlib/ketpiccurrent_rep2e.r + texmf-dist/scripts/ketcindy/ketlib/ketpiccurrent_reptikz.r + texmf-dist/scripts/ketcindy/ketlib/maximaL/fourier_sec.max + texmf-dist/scripts/ketcindy/ketlib/maximaL/matoperation.max + texmf-dist/scripts/ketcindy/ketlib/maximaL/poincare.mac + texmf-dist/scripts/ketcindy/ketlib/maximaL/rkfun.lisp + texmf-dist/scripts/ketcindy/ketlib/oshima/os_muldif.pdf + texmf-dist/scripts/ketcindy/ketlib/oshima/os_muldif.rr + texmf-dist/scripts/ketcindy/ketlibC/ketcommon.h + texmf-dist/scripts/ketcindy/ketlibC/ketcommonhead.h + texmf-dist/scripts/ketcindy/ketlibC/ketlibClog.txt + texmf-dist/scripts/ketcindy/ketlibC/surflib.h + texmf-dist/scripts/ketcindy/ketlibC/surflibhead.h + texmf-dist/scripts/ketcindy/ketoutset.txt + texmf-dist/scripts/ketcindy/setketcindy.txt + texmf-dist/scripts/ketcindy/template0.cdy + texmf-dist/scripts/ketcindy/template1basic.cdy + texmf-dist/scripts/ketcindy/template2slide.cdy + texmf-dist/scripts/ketcindy/template3Dfigure.cdy + texmf-dist/scripts/ketcindy/template4ketcindyjs.cdy + texmf-dist/tex/latex/ketcindy/ketlayer.sty + texmf-dist/tex/latex/ketcindy/ketlayer2e.sty + texmf-dist/tex/latex/ketcindy/ketmedia.sty + texmf-dist/tex/latex/ketcindy/ketpic.sty + texmf-dist/tex/latex/ketcindy/ketpic2e.sty + texmf-dist/tex/latex/ketcindy/ketslide.sty + texmf-dist/tex/latex/ketcindy/ketslide2.sty +catalogue-contact-bugs https://github.com/ketpic/ketcindy/issues +catalogue-contact-home http://ketpic.com +catalogue-contact-repository https://github.com/ketpic/ketcindy +catalogue-contact-support https://github.com/ketpic/ketcindy/issues +catalogue-ctan /graphics/ketcindy +catalogue-date 2019-03-20 18:34:47 +0100 +catalogue-license gpl3+ +catalogue-topics maths graphics +catalogue-version 20190320.0 + +name ketcindy.aarch64-linux +category Package +revision 49033 +shortdesc aarch64-linux files of ketcindy +containersize 340 +containerchecksum ef8625fbf6a66f5904e29d2bda3a9529ef1b718a590b2d33a47bbdb609991f2ec9f53e929a59d71a70bcce901dcb1581eefb79ea806928b4d45267b7fc71bfdd +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/ketcindy + +name ketcindy.amd64-freebsd +category Package +revision 49033 +shortdesc amd64-freebsd files of ketcindy +containersize 344 +containerchecksum 1d1a2d0d88ef205bc7dab929e5e8451ef49df029092c63d7d7961f1891ac2300929be3d454768e832e46074c97f0b165c3b57430291bd38c98c694acceaecb40 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/ketcindy + +name ketcindy.amd64-netbsd +category Package +revision 49033 +shortdesc amd64-netbsd files of ketcindy +containersize 344 +containerchecksum 8b0a7bc585dad7265a56a0528f7e2742c64a61513535ca46e2664f90e0393cb748c53a8ba717a8ac575f430236c7594fe48c89f42d500ff54d9c9bd3c1fc1e97 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/ketcindy + +name ketcindy.armhf-linux +category Package +revision 49033 +shortdesc armhf-linux files of ketcindy +containersize 344 +containerchecksum d106825d5a0d971562974f15024f080d7d1e960497969b4b4fd28f31d9086057716577876185dbab23d42f47dfb91f7d72644be9cc498e435af358b46757e1f6 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/ketcindy + +name ketcindy.i386-cygwin +category Package +revision 49033 +shortdesc i386-cygwin files of ketcindy +containersize 340 +containerchecksum 9956776f379f7bb7bd03abdb0111b521bb3fa95e5fda18a7c9360044601a092df7d96d2b70aae31293764f2996e5a7dc17ea056b54cf9c9b886ad8066da02876 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/ketcindy + +name ketcindy.i386-freebsd +category Package +revision 49033 +shortdesc i386-freebsd files of ketcindy +containersize 344 +containerchecksum b9914b19b4dcee85e45e3afa1672344ea66670ef12993787510d55835144215536cc60343c7513caa5981f0ab8dbe2d9340179b8d193427fd6d0a7ea96fe2bf2 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/ketcindy + +name ketcindy.i386-linux +category Package +revision 49033 +shortdesc i386-linux files of ketcindy +containersize 340 +containerchecksum 230bfc5ca4cc0544dabaceda7b20e4ff37951adcec95d720f32a45aeab02b6a4e08d1eed975ad701d7f813f3686f47d48d428495c429af75ff7fa5ed0e632051 +binfiles arch=i386-linux size=1 + bin/i386-linux/ketcindy + +name ketcindy.i386-netbsd +category Package +revision 49033 +shortdesc i386-netbsd files of ketcindy +containersize 340 +containerchecksum 15118ac8b122b4b01aaf9e4b131e276dcf35331a6c0cdb578031fcea7946548e5caaee76c06a9940ac35d9455beb12c34b1f0b79112754c77b45b7e57878e790 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/ketcindy + +name ketcindy.i386-solaris +category Package +revision 49033 +shortdesc i386-solaris files of ketcindy +containersize 340 +containerchecksum edf0c5ac29c226c1d44bdbb2d42f8feaeec168c63ba586b90d0b96b602a7b7b7e58cdb1ed9e91c46438574ed0830b1b49041282721aab9a4fa515d918c963524 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/ketcindy + +name ketcindy.win32 +category Package +revision 49033 +shortdesc win32 files of ketcindy +containersize 684 +containerchecksum 6f28e9fefe4712512e5c62eb2fd4e54f18153678dbbbd61b4580b84d39a0e7d561fcdecde9cc8f2d0586d14e6cdba9071db025c968a8288bc2b09d2e19aa829d +binfiles arch=win32 size=1 + bin/win32/ketcindy.exe + +name ketcindy.x86_64-cygwin +category Package +revision 49033 +shortdesc x86_64-cygwin files of ketcindy +containersize 344 +containerchecksum b5aa925a83c9355f359714dd5848e347494a039e2255efbd3a549ad87624f2403c7e3a835804516c2a1f4fa0675ef5001481065bff7037e4930ae9fab3b9322c +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/ketcindy + +name ketcindy.x86_64-darwin +category Package +revision 49033 +shortdesc x86_64-darwin files of ketcindy +containersize 344 +containerchecksum 811dc584a7c133ed9b792f70c4f9cfc7dd085fed54539250210b364ac8284c3f25726c7cbf06a312320ec5d4d5167d7dea442d4bbb9ce9d0a2db444f3f9c358e +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/ketcindy + +name ketcindy.x86_64-darwinlegacy +category Package +revision 49033 +shortdesc x86_64-darwinlegacy files of ketcindy +containersize 352 +containerchecksum c6f37343a8af8790ea7b6f643afd5abcd7894a5af2d0eedf41c6c614d2e64fecc4d97d7743e101553f2a840b72426d1b2a60a29dbf84ed8e824e020c0ae96997 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/ketcindy + +name ketcindy.x86_64-linux +category Package +revision 49033 +shortdesc x86_64-linux files of ketcindy +containersize 344 +containerchecksum dc5f3f657b8c07f72d8d540672171cf22547b0ae184471c2b51376637119595eeeeaf56e26b25d46399e9cd8cccd4e98ba359291ba8c4cf5c1c3f8633d828ce6 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/ketcindy + +name ketcindy.x86_64-linuxmusl +category Package +revision 49033 +shortdesc x86_64-linuxmusl files of ketcindy +containersize 348 +containerchecksum 2baa668fe0c818a3a15842f6bb8532fb9cb74514e50198286feed960bab1442b8f463fbd1690eed7316a6d48686fc9df1a609238ecb14cca615e60c95e9e63d5 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/ketcindy + +name ketcindy.x86_64-solaris +category Package +revision 49033 +shortdesc x86_64-solaris files of ketcindy +containersize 344 +containerchecksum d09e91f25d8ff6838915d5722823c26fc3c9c69b2f30827bb603066e05db2e8356e9ea2a7c95d9908cd26f49c1663906435c4aa88702873e5a99dda52dce292d +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/ketcindy + name keycommand category Package revision 18042 -shortdesc Simple creation of commands with key-value arguments. +shortdesc Simple creation of commands with key-value arguments relocated 1 longdesc The package (which requires e-TeX) provides a natural way to longdesc define commands with optional keys. The package provides @@ -87001,26 +140046,111 @@ longdesc \newkeycommand, \renewkeycommand, \providekeycommand, longdesc \newkeyenvironment and \renewkeyenvironment, together with longdesc \keycmd for a more advanced interface. The package is based on longdesc kvsetkeys by Heiko Oberdiek. -runfiles size=5 - RELOC/tex/latex/keycommand/keycommand.sty +containersize 4904 +containerchecksum 90c2246edbfd199d98a05df336ee228c65f26073f3c95c5ae55c3201cf59453bb5afb95ad367ab4af6b36dc4e0c52a25bb10f80fba265003c701122247be50d9 +doccontainersize 343996 +doccontainerchecksum b99b58407f5d93fb868bf525ab199c41e07fcf5f31c7a6a14cf68622ef3a34e44d1014e4d34594441144af5c7d9a9853cef1505311928b32a9fcbd41c7bf4284 docfiles size=125 - RELOC/doc/latex/keycommand/README - RELOC/doc/latex/keycommand/keycommand-example.pdf + RELOC/doc/latex/keycommand/README details="Readme" + RELOC/doc/latex/keycommand/keycommand-example.pdf details="Example of usage" RELOC/doc/latex/keycommand/keycommand-example.tex - RELOC/doc/latex/keycommand/keycommand.pdf + RELOC/doc/latex/keycommand/keycommand.pdf details="Package documentation" +srccontainersize 15252 +srccontainerchecksum 44b63a11f08c3bd47ab337ccfa1b0b2737624f77228ca1d745020e2c1ca1b1616c1bfadda1b99c362c0b372bfbdf37d839f0d0457082922a54a66608c82aa928 srcfiles size=16 RELOC/source/latex/keycommand/keycommand.drv RELOC/source/latex/keycommand/keycommand.dtx RELOC/source/latex/keycommand/keycommand.ins +runfiles size=5 + RELOC/tex/latex/keycommand/keycommand.sty catalogue-ctan /macros/latex/contrib/keycommand -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics keyval catalogue-version 3.1415 +name keyfloat +category Package +revision 50534 +shortdesc Provides a key/value interface for generating floats +relocated 1 +longdesc The keyfloat package provides a key/value user interface for +longdesc quickly creating figures with a single image each, figures with +longdesc arbitrary contents, tables, subfloats, rows of floats, floats +longdesc located [H]ere, floats in the [M]argin, and floats with text +longdesc [W]rapped around them. Key/value combinations may specify a +longdesc caption and label, a width proportional to \linewidth, a fixed +longdesc width and/or height, rotation, scaling, a tight or loose frame, +longdesc an \arraystretch, a continued float, additional supplemental +longdesc text, and an artist/author's name with automatic index entry. +longdesc When used with the tocdata package, the name also appears in +longdesc the List of Figures. Floats may be placed into a row +longdesc environment, and are typeset to fit within the given number of +longdesc columns, continuing to the next row if necessary. Nested +longdesc sub-rows may be used to generate layouts such as two small +longdesc figures placed vertically next to one larger figure. Subfloats +longdesc are supported by two environments. +containersize 6424 +containerchecksum bc19325a6c3ff1df3445790857bb167880930dbaddd6e0e2262a0a9f9be5c401089dc2196f078d9337a0b32956819f7a033a86adeff57a8bc79603d1e51d9d28 +doccontainersize 498956 +doccontainerchecksum 1e0afaea210d14a2b663d014d9d243f1703246890be757286ac22387631941cd55a3f8c571d39dd87285966ead074a8867c9f2e0bdd93e9e076b261b92d35304 +docfiles size=129 + RELOC/doc/latex/keyfloat/README.txt details="Readme" + RELOC/doc/latex/keyfloat/images/image.pdf + RELOC/doc/latex/keyfloat/images/image2.pdf + RELOC/doc/latex/keyfloat/keyfloat.pdf details="Package documentation" +srccontainersize 26564 +srccontainerchecksum c5252e69675ead0546c3ed6df46f1917ccbdd22191c6325f42ab48d1851d9e19479d78a9a1b9b1a0fbf7994ed0585407f2d96146944662d286d24dcab964196f +srcfiles size=34 + RELOC/source/latex/keyfloat/keyfloat.dtx + RELOC/source/latex/keyfloat/keyfloat.ins +runfiles size=9 + RELOC/tex/latex/keyfloat/keyfloat.sty +catalogue-contact-home http://bdtechconcepts.com +catalogue-ctan /macros/latex/contrib/keyfloat +catalogue-date 2019-03-21 21:46:01 +0100 +catalogue-license lppl1.3 +catalogue-topics float +catalogue-version 2.00 + +name keyindex +category Package +revision 50828 +shortdesc Index entries by key lookup +relocated 1 +longdesc The package provides functionality for producing an index +longdesc without directly entering index entries into the text using the +longdesc \index command, but instead by looking up short keys and +longdesc printing a predefined string in the main text and adding a +longdesc corresponding index entry. The standard use case is the +longdesc production of an index of names. +containersize 1388 +containerchecksum 93de5becfa1b4950f518bc004f0dbdfe96f567e17ec4b7656326b89201f1f85edcbdaa771dc8568fc0c87bcbd8877b618d0d00ce387ca70036f6794a8b870695 +doccontainersize 146072 +doccontainerchecksum 4be79367bed5a7bc3f5bfd6c10f7ba6a4c87ed51139e8f8a7f55c59ae3ce6c1aa10df1c88728f7dbb4573634bba2ee599378755cf6c77a2ccf8d93ece5540736 +docfiles size=38 + RELOC/doc/latex/keyindex/README.md details="Readme" + RELOC/doc/latex/keyindex/keyindex.pdf details="Package documentation" + RELOC/doc/latex/keyindex/makenameindex +srccontainersize 3464 +srccontainerchecksum 3f177cf8d323fa6dc0b47742a27cada66cc505777a20c26864dcee73c272e46ba3867c4120f480be8ce5afcfc6896d908eae0f336cf306a13019bd0f0206f9dd +srcfiles size=3 + RELOC/source/latex/keyindex/keyindex.dtx + RELOC/source/latex/keyindex/keyindex.ins +runfiles size=1 + RELOC/tex/latex/keyindex/keyindex.sty +catalogue-contact-bugs https://github.com/rzach/keyindex/issues +catalogue-contact-repository https://github.com/rzach/keyindex +catalogue-ctan /macros/latex/contrib/keyindex +catalogue-date 2019-04-06 05:43:19 +0200 +catalogue-license lppl1.3c +catalogue-topics index +catalogue-version 1.0 + name keyreader category Package revision 28195 -shortdesc A robust interface to xkeyval. +shortdesc A robust interface to xkeyval relocated 1 longdesc The package provides a robust interface to controlling keys in longdesc xkeyval, removing some of that package's restrictions. The @@ -87028,25 +140158,38 @@ longdesc package also addresses some of the issues now covered by the longdesc author's ltxkeys package, which was assumed to be a replacement longdesc for keyreader. Since keyreader has remained a favourite with longdesc users, it has been reinstated. -runfiles size=10 - RELOC/tex/latex/keyreader/keyreader.sty +containersize 9192 +containerchecksum d1786b07a3dc87f94248043f0bd941dcd8dccce29132e67118d3fedc0fe207a2df846d850851217fa87ed2219915719e70fa73ec284ed420072654c578ee0b3c +doccontainersize 233148 +doccontainerchecksum 05c45cb13bd2612dd5b048f296437b605117c71a52cef2a1b90ad58b693a31d05da9491464ea9b208dd7eed3f3cfc96e9b5a00f5a77e5d492208fe1e924dde4c docfiles size=64 - RELOC/doc/latex/keyreader/README + RELOC/doc/latex/keyreader/README details="Readme" RELOC/doc/latex/keyreader/keyreader-example1.tex - RELOC/doc/latex/keyreader/keyreader-guide.pdf + RELOC/doc/latex/keyreader/keyreader-guide.pdf details="Package documentation" RELOC/doc/latex/keyreader/keyreader-guide.tex +runfiles size=10 + RELOC/tex/latex/keyreader/keyreader.sty catalogue-ctan /macros/latex/contrib/keyreader -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics keyval catalogue-version 0.5b name keystroke category Package revision 17992 -shortdesc Graphical representation of keys on keyboard. +shortdesc Graphical representation of keys on keyboard relocated 1 longdesc A LaTeX package which provides macros for the graphical longdesc representation of the keys on a computer keyboard. +containersize 6820 +containerchecksum e04e13e23b3342686078c2278d3b6f7c8678d99acda197f50296ade3dd91bc4316323a669efd7238fd246c60f169c694677252601a81d9e23b49a1e37049c93a +doccontainersize 33556 +doccontainerchecksum bac7f2e879796c0ccd5ee28c47aa79e9208ce0d01456de9ada6cd00d822c098cfa318615311c43b1815de0e6968252f6005a3dfd9d0475ee7dec25f7d24d1d86 +docfiles size=12 + RELOC/doc/latex/keystroke/README details="Readme" + RELOC/doc/latex/keystroke/key-test.pdf details="Package demo" + RELOC/doc/latex/keystroke/key-test.tex runfiles size=10 RELOC/tex/latex/keystroke/keystroke.sty RELOC/tex/latex/keystroke/keystroke_left.eps @@ -87055,81 +140198,149 @@ runfiles size=10 RELOC/tex/latex/keystroke/keystroke_middle.pdf RELOC/tex/latex/keystroke/keystroke_right.eps RELOC/tex/latex/keystroke/keystroke_right.pdf -docfiles size=12 - RELOC/doc/latex/keystroke/README - RELOC/doc/latex/keystroke/key-test.pdf - RELOC/doc/latex/keystroke/key-test.tex catalogue-ctan /macros/latex/contrib/keystroke -catalogue-date 2012-05-08 22:29:29 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl -catalogue-version v1.6 +catalogue-topics doc-supp +catalogue-version 1.6 name keyval2e category Package revision 23698 -shortdesc A lightweight and robust key-value parser. +shortdesc A lightweight and robust key-value parser relocated 1 longdesc The package provides lightweight and robust facilities for longdesc creating and managing keys. Its machinery isn't as extensive as longdesc that of, e.g., the ltxkeys package, but it is equally robust; longdesc ease of use and speed of processing are the design aims of the longdesc package. -runfiles size=3 - RELOC/tex/latex/keyval2e/keyval2e.sty +containersize 3228 +containerchecksum 08495711a9b509707ce6da359f9743b267baaa6ba6e18e41c965ce016c4c51e1bb7353769ecc9596e9bc415976449612f602e291608d306ee5baa69a4e823160 +doccontainersize 314328 +doccontainerchecksum 424035c6250990b4104200fdab744d50643b6ce36ea717f50544fecd40746d47d7d2145203f0d6f19652a7217c99eb599a1c7d8b0e3a0fe00e1355c416cd4294 docfiles size=91 - RELOC/doc/latex/keyval2e/README + RELOC/doc/latex/keyval2e/README details="Readme" RELOC/doc/latex/keyval2e/keyval2e-examples.pdf RELOC/doc/latex/keyval2e/keyval2e-examples.tex - RELOC/doc/latex/keyval2e/keyval2e-guide.pdf + RELOC/doc/latex/keyval2e/keyval2e-guide.pdf details="Package documentation" RELOC/doc/latex/keyval2e/keyval2e-guide.tex +runfiles size=3 + RELOC/tex/latex/keyval2e/keyval2e.sty catalogue-ctan /macros/latex/contrib/keyval2e -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics keyval catalogue-version 0.0.2 -name kixfont -category Package -revision 18488 -shortdesc A font for KIX codes. -relocated 1 -longdesc The KIX code is a barcode-like format used by the Dutch PTT to -longdesc encode country codes, zip codes and street numbers in a machine- -longdesc readable format. If printed below the address line on bulk -longdesc mailings, a discount can be obtained. The font is distributed -longdesc in Metafont format, and covers the numbers and upper-case -longdesc letters. -runfiles size=2 - RELOC/fonts/source/public/kixfont/kix.mf - RELOC/fonts/tfm/public/kixfont/kix.tfm -docfiles size=9 - RELOC/doc/fonts/kixfont/kix.mf.asc - RELOC/doc/fonts/kixfont/kixtable.pdf - RELOC/doc/fonts/kixfont/kixtable.tex -catalogue-ctan /fonts/kixfont -catalogue-date 2014-05-09 00:43:11 +0200 -catalogue-license other-free +name keyvaltable +category Package +revision 50471 +shortdesc Re-usable tables separating content and presentation +relocated 1 +longdesc The main goal of the keyvaltable package is to offer means for +longdesc typesetting tables easily and yet still looking rather nicely +longdesc in a way that separates content from presentation and with +longdesc re-usable layout for tables of the same type. For this purpose, +longdesc the package provides the environment KeyValTable, which allows +longdesc one to typeset tables that have a previously defined column +longdesc layout and whose rows can be produced in a key-value fashion. +containersize 4300 +containerchecksum e9318bbb3d10ce72be8565ac7ff3bb93329d1c8e37e8a9d5c8a6e8d4431fa4a081a2609bc4bb67dedf385306a4c2ca721e40378b4642dfcca69f2edb3280b197 +doccontainersize 264204 +doccontainerchecksum 567dda21b7cd07bf50a86d2a0df66467721df15c8e4b4df324c9b2973bd16afb51efa9a7ce7b54c37eef032fd47237985af3bf2f8332ab108106d11bc7c6a53d +docfiles size=68 + RELOC/doc/latex/keyvaltable/README.md details="Readme" + RELOC/doc/latex/keyvaltable/keyvaltable.pdf details="Package documentation" +srccontainersize 19344 +srccontainerchecksum 533643ab2ef7357317b5a727a110c5ea9a78849b87b521902236f0cad5d0f00deb1a441d0ace07734858b0e31f9b33e8530abd3f74d9e8b33ec3b2196c25ebd6 +srcfiles size=20 + RELOC/source/latex/keyvaltable/keyvaltable.dtx + RELOC/source/latex/keyvaltable/keyvaltable.ins +runfiles size=4 + RELOC/tex/latex/keyvaltable/keyvaltable.sty +catalogue-ctan /macros/latex/contrib/keyvaltable +catalogue-date 2019-03-18 21:55:33 +0100 +catalogue-license lppl1.2 +catalogue-topics table +catalogue-version 1.0 name kix category Package revision 21606 -shortdesc Typeset KIX codes. +shortdesc Typeset KIX codes relocated 1 longdesc Implements KIX codes as used by the Dutch PTT for bulk mail longdesc addressing. (Royal Mail 4 State Code.) KIX is a registered longdesc trade mark of PTT Post Holdings B. V. -runfiles size=1 - RELOC/tex/latex/kix/kix.sty +containersize 1304 +containerchecksum dd819518a80ca0486a191361625b58f91d00ccac88a2f69269bd6e1753f6c87dd3c97d39a14a5dc3768c9ecccbc981106eba1f495cb7870103a828ea69ed8bef +doccontainersize 123796 +doccontainerchecksum 3d3816d395e69ec83c88fe55801cab052b12f5e38702edafec2d3f9225c80a31165dca553b60401dedac7689c583feb00615e41c7179fd19ccdc420fbd5e6d86 docfiles size=32 - RELOC/doc/latex/kix/kix.pdf + RELOC/doc/latex/kix/kix.pdf details="Package documentation" RELOC/doc/latex/kix/kix.tex +runfiles size=1 + RELOC/tex/latex/kix/kix.sty +catalogue-also pst-barcode kixfont catalogue-ctan /macros/latex/contrib/kix -catalogue-date 2012-05-08 22:29:29 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1 +catalogue-topics barcode + +name kixfont +category Package +revision 18488 +shortdesc A font for KIX codes +relocated 1 +longdesc The KIX code is a barcode-like format used by the Dutch PTT to +longdesc encode country codes, zip codes and street numbers in a +longdesc machine-readable format. If printed below the address line on +longdesc bulk mailings, a discount can be obtained. The font is +longdesc distributed in Metafont format, and covers the numbers and +longdesc upper-case letters. +containersize 1828 +containerchecksum a866364705d75ab560488c84a5e403755acfffe7b49b8e6dd65342f45f852a5be9d4072d750fae606c3d5789e1d46458da66f0af6fb9f9e0225c1d9acf69d4a5 +doccontainersize 15960 +doccontainerchecksum ca250703364924daf9827ddeb48126fb21ff5ec3230afbc3f6778d23e96dbbb16173e5504900032ddbe14920cb40adf8130be50ee92f3c9c2dbceb95b8ecb90f +docfiles size=9 + RELOC/doc/fonts/kixfont/kix.mf.asc + RELOC/doc/fonts/kixfont/kixtable.pdf details="Font table" + RELOC/doc/fonts/kixfont/kixtable.tex +runfiles size=2 + RELOC/fonts/source/public/kixfont/kix.mf + RELOC/fonts/tfm/public/kixfont/kix.tfm +catalogue-also kix pst-barcode +catalogue-ctan /fonts/kixfont +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics font font-mf font-specialist barcode name kluwer category Package -revision 15878 +revision 45756 +shortdesc Kluwer publication support relocated 1 +longdesc Most likely long obsolete, unfortunately. +containersize 53520 +containerchecksum 36f0d6ade1e6afbc7a021780a9d6d56e358805be8a8d5835ce256c87f426aa4110b9e395d6406cd1572a362557ba0d914071a6589a65ca064cd77c9310c284c5 +doccontainersize 61520 +doccontainerchecksum 9990c4fb99023e6262c1c7336f4b8a98e3131ae60f380652469f7e2f88a8793d745655e0fc13dadc78fdb8c2beec6248e54af661bc81a8ec016af58b688e583e +docfiles size=54 + RELOC/doc/latex/kluwer/00readme + RELOC/doc/latex/kluwer/mouse.eps + RELOC/doc/latex/kluwer/sampkluw.dvi + RELOC/doc/latex/kluwer/sampkluw.ent + RELOC/doc/latex/kluwer/sampkluw.tex + RELOC/doc/latex/kluwer/sampopen.dvi + RELOC/doc/latex/kluwer/sampopen.tex + RELOC/doc/latex/kluwer/usrman.dvi + RELOC/doc/latex/kluwer/usrman.ent + RELOC/doc/latex/kluwer/usrman.tex +srccontainersize 2016 +srccontainerchecksum a6ead8f091ea55b4443da5d048df1e27a2f2af0abd047d7585490cdc27b9efd1f3a59a5eaf6b77a8b5dbe676ea89dda8e96e80b833bfb995605ca36b21e3cecc +srcfiles size=3 + RELOC/source/latex/kluwer/kluwer.dtx + RELOC/source/latex/kluwer/kluwer.ins runfiles size=114 RELOC/bibtex/bst/kluwer/klunamed.bst RELOC/bibtex/bst/kluwer/klunum.bst @@ -87156,68 +140367,46 @@ runfiles size=114 RELOC/tex/latex/kluwer/klut9.clo RELOC/tex/latex/kluwer/klutab.sty RELOC/tex/latex/kluwer/kluwer.cls -docfiles size=54 - RELOC/doc/latex/kluwer/00readme - RELOC/doc/latex/kluwer/mouse.eps - RELOC/doc/latex/kluwer/sampkluw.dvi - RELOC/doc/latex/kluwer/sampkluw.ent - RELOC/doc/latex/kluwer/sampkluw.tex - RELOC/doc/latex/kluwer/sampopen.dvi - RELOC/doc/latex/kluwer/sampopen.tex - RELOC/doc/latex/kluwer/usrman.dvi - RELOC/doc/latex/kluwer/usrman.ent - RELOC/doc/latex/kluwer/usrman.tex -srcfiles size=3 - RELOC/source/latex/kluwer/kluwer.dtx - RELOC/source/latex/kluwer/kluwer.ins - -name knittingpattern -category Package -revision 17205 -shortdesc Create knitting patterns. -relocated 1 -longdesc The class provides a simple, effective method for knitters to -longdesc produce high-quality, attractive patterns using LaTeX. It does -longdesc this by providing commands to handle as much of the layout of -longdesc the document as possible, leaving the author free to -longdesc concentrate on the pattern. -runfiles size=1 - RELOC/tex/latex/knittingpattern/knittingpattern.cls -docfiles size=42 - RELOC/doc/latex/knittingpattern/README - RELOC/doc/latex/knittingpattern/introduction.pdf - RELOC/doc/latex/knittingpattern/introduction.tex - RELOC/doc/latex/knittingpattern/lion.png - RELOC/doc/latex/knittingpattern/template.pdf - RELOC/doc/latex/knittingpattern/template.tex -catalogue-ctan /macros/latex/contrib/knittingpattern -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 name knitting category Package -revision 19595 -shortdesc Produce knitting charts, in Plain TeX or LaTeX. +revision 50782 +shortdesc Produce knitting charts, in Plain TeX or LaTeX relocated 1 longdesc The package provides symbol fonts and commands to write charted longdesc instructions for cable and lace knitting patterns, using either longdesc plain TeX or LaTeX. The fonts are available both as Metafont longdesc source and in Adobe Type 1 format. execute addMap knitfont.map -runfiles size=280 +containersize 578004 +containerchecksum af3f7d2355054293c2c7973cfd40f0b741c8821884cca6ceec7562efeb92433bb81aa204b7b0ed4dae77cf674f4a63005f36133fbb5bf3d239f0cd5ef61a69ac +doccontainersize 815812 +doccontainerchecksum effaaf06a5593a9d73f2e93a722355009a0a957a2067a1432edb40d8dda7649c42571cbc37fc7aa4103ae2094dea7b1bfd861273566102c55546f71b326e7118 +docfiles size=223 + RELOC/doc/fonts/knitting/README details="Readme" + RELOC/doc/fonts/knitting/knitexamples.pdf + RELOC/doc/fonts/knitting/knitexamples.tex + RELOC/doc/fonts/knitting/knitkey.pdf + RELOC/doc/fonts/knitting/knitkey.tex + RELOC/doc/fonts/knitting/knitting-doc.pdf details="Package documentation" + RELOC/doc/fonts/knitting/knitting-doc.tex +runfiles size=294 RELOC/fonts/afm/public/knitting/knitg_sc_in.afm RELOC/fonts/afm/public/knitting/knitg_sc_out.afm RELOC/fonts/afm/public/knitting/knitgg.afm RELOC/fonts/afm/public/knitting/knitgn.afm RELOC/fonts/afm/public/knitting/knitgp.afm + RELOC/fonts/afm/public/knitting/knitmg.afm + RELOC/fonts/afm/public/knitting/knitml.afm + RELOC/fonts/afm/public/knitting/knitmn.afm + RELOC/fonts/afm/public/knitting/knitmp.afm + RELOC/fonts/afm/public/knitting/knitmr.afm RELOC/fonts/afm/public/knitting/knitn_sc_in.afm RELOC/fonts/afm/public/knitting/knitn_sc_out.afm RELOC/fonts/afm/public/knitting/knitnl.afm RELOC/fonts/afm/public/knitting/knitnn.afm RELOC/fonts/afm/public/knitting/knitnp.afm RELOC/fonts/afm/public/knitting/knitnr.afm - RELOC/fonts/afm/public/knitting/knitw_sc_in.afm - RELOC/fonts/afm/public/knitting/knitw_sc_out.afm RELOC/fonts/afm/public/knitting/knitwg.afm RELOC/fonts/afm/public/knitting/knitwn.afm RELOC/fonts/afm/public/knitting/knitwp.afm @@ -87231,14 +140420,17 @@ runfiles size=280 RELOC/fonts/source/public/knitting/knitgg.mf RELOC/fonts/source/public/knitting/knitgn.mf RELOC/fonts/source/public/knitting/knitgp.mf + RELOC/fonts/source/public/knitting/knitmg.mf + RELOC/fonts/source/public/knitting/knitml.mf + RELOC/fonts/source/public/knitting/knitmn.mf + RELOC/fonts/source/public/knitting/knitmp.mf + RELOC/fonts/source/public/knitting/knitmr.mf RELOC/fonts/source/public/knitting/knitn_sc_in.mf RELOC/fonts/source/public/knitting/knitn_sc_out.mf RELOC/fonts/source/public/knitting/knitnl.mf RELOC/fonts/source/public/knitting/knitnn.mf RELOC/fonts/source/public/knitting/knitnp.mf RELOC/fonts/source/public/knitting/knitnr.mf - RELOC/fonts/source/public/knitting/knitw_sc_in.mf - RELOC/fonts/source/public/knitting/knitw_sc_out.mf RELOC/fonts/source/public/knitting/knitwg.mf RELOC/fonts/source/public/knitting/knitwn.mf RELOC/fonts/source/public/knitting/knitwp.mf @@ -87247,14 +140439,17 @@ runfiles size=280 RELOC/fonts/tfm/public/knitting/knitgg.tfm RELOC/fonts/tfm/public/knitting/knitgn.tfm RELOC/fonts/tfm/public/knitting/knitgp.tfm + RELOC/fonts/tfm/public/knitting/knitmg.tfm + RELOC/fonts/tfm/public/knitting/knitml.tfm + RELOC/fonts/tfm/public/knitting/knitmn.tfm + RELOC/fonts/tfm/public/knitting/knitmp.tfm + RELOC/fonts/tfm/public/knitting/knitmr.tfm RELOC/fonts/tfm/public/knitting/knitn_sc_in.tfm RELOC/fonts/tfm/public/knitting/knitn_sc_out.tfm RELOC/fonts/tfm/public/knitting/knitnl.tfm RELOC/fonts/tfm/public/knitting/knitnn.tfm RELOC/fonts/tfm/public/knitting/knitnp.tfm RELOC/fonts/tfm/public/knitting/knitnr.tfm - RELOC/fonts/tfm/public/knitting/knitw_sc_in.tfm - RELOC/fonts/tfm/public/knitting/knitw_sc_out.tfm RELOC/fonts/tfm/public/knitting/knitwg.tfm RELOC/fonts/tfm/public/knitting/knitwn.tfm RELOC/fonts/tfm/public/knitting/knitwp.tfm @@ -87263,39 +140458,166 @@ runfiles size=280 RELOC/fonts/type1/public/knitting/knitgg.pfb RELOC/fonts/type1/public/knitting/knitgn.pfb RELOC/fonts/type1/public/knitting/knitgp.pfb + RELOC/fonts/type1/public/knitting/knitmg.pfb + RELOC/fonts/type1/public/knitting/knitml.pfb + RELOC/fonts/type1/public/knitting/knitmn.pfb + RELOC/fonts/type1/public/knitting/knitmp.pfb + RELOC/fonts/type1/public/knitting/knitmr.pfb RELOC/fonts/type1/public/knitting/knitn_sc_in.pfb RELOC/fonts/type1/public/knitting/knitn_sc_out.pfb RELOC/fonts/type1/public/knitting/knitnl.pfb RELOC/fonts/type1/public/knitting/knitnn.pfb RELOC/fonts/type1/public/knitting/knitnp.pfb RELOC/fonts/type1/public/knitting/knitnr.pfb - RELOC/fonts/type1/public/knitting/knitw_sc_in.pfb - RELOC/fonts/type1/public/knitting/knitw_sc_out.pfb RELOC/fonts/type1/public/knitting/knitwg.pfb RELOC/fonts/type1/public/knitting/knitwn.pfb RELOC/fonts/type1/public/knitting/knitwp.pfb RELOC/tex/latex/knitting/knitting.sty RELOC/tex/latex/knitting/uknit.fd RELOC/tex/plain/knitting/knitting.tex -docfiles size=129 - RELOC/doc/fonts/knitting/README - RELOC/doc/fonts/knitting/knitexamples.tex - RELOC/doc/fonts/knitting/knitkey.tex - RELOC/doc/fonts/knitting/knitting-doc.pdf - RELOC/doc/fonts/knitting/knitting-doc.tex +catalogue-also knittingpattern catalogue-ctan /fonts/knitting -catalogue-date 2014-10-10 10:29:00 +0200 +catalogue-date 2019-04-06 09:30:27 +0200 catalogue-license lppl1.3 -catalogue-version 2.0 +catalogue-topics diagram font font-symbol font-type1 font-mf +catalogue-version 3.0 + +name knittingpattern +category Package +revision 17205 +shortdesc Create knitting patterns +relocated 1 +longdesc The class provides a simple, effective method for knitters to +longdesc produce high-quality, attractive patterns using LaTeX. It does +longdesc this by providing commands to handle as much of the layout of +longdesc the document as possible, leaving the author free to +longdesc concentrate on the pattern. +containersize 1540 +containerchecksum cee26b0e6fd54a43a12e0e48fd5b4bf381816dabb6019cbd7c13ab5e2561b9f191d9fce4c75a513c06530077bba8d383b26552e2e6f4e97600aa2216547a08b5 +doccontainersize 136792 +doccontainerchecksum d391a25a224713092128af5adf68e5331c530a67a763dc37f657d8bfcee0d904632e86ae2f3745ec2c4bb0cea5e886c85da15b064780dbe997104b9afbef9e4e +docfiles size=42 + RELOC/doc/latex/knittingpattern/README details="Readme" + RELOC/doc/latex/knittingpattern/introduction.pdf details="Package introduction" + RELOC/doc/latex/knittingpattern/introduction.tex + RELOC/doc/latex/knittingpattern/lion.png + RELOC/doc/latex/knittingpattern/template.pdf + RELOC/doc/latex/knittingpattern/template.tex +runfiles size=1 + RELOC/tex/latex/knittingpattern/knittingpattern.cls +catalogue-also knitting +catalogue-ctan /macros/latex/contrib/knittingpattern +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics diagram + +name knowledge +category Package +revision 50031 +shortdesc Displaying, hyperlinking, and indexing notions in a document +relocated 1 +longdesc The package offers a systematic way to handle +longdesc notions/concepts/terms throughout a document. It helps building +longdesc an index. In combination with hyperref it makes it easy to have +longdesc every reference of a concept linked to its introduction. It +longdesc also offers simple notations. +containersize 19584 +containerchecksum 45627c99590c069d93d681fb23d6a2a95eab555ee152455ce80f34da0ee0da7b85e8bb338cc4e4d9bb7d4b21029b30d56cd3a083074afdea1c336330960796a2 +doccontainersize 715252 +doccontainerchecksum 233575930f834ed7267f86f2a3a8eab88c348fdc07196cba52be2edb6d9f6831e19cc858b1b7c79e9c27036b1b6deeec20e8d6a35f2b39b0e9297738fe8c47b9 +docfiles size=206 + RELOC/doc/latex/knowledge/README.md details="Readme" + RELOC/doc/latex/knowledge/knowledge-example.tex + RELOC/doc/latex/knowledge/knowledge.pdf details="Package documentation" + RELOC/doc/latex/knowledge/knowledge.tex + RELOC/doc/latex/knowledge/makefile +srccontainersize 36436 +srccontainerchecksum f5dcdb23f284dce87ba1744fcc4a23577a3660061bd1509abe268836cfe6e6c0b55d9e7adea78c8bdd91e5a1d7375320baa00098840ca7d075052a286ab3a095 +srcfiles size=48 + RELOC/source/latex/knowledge/knowledge-code.dtx + RELOC/source/latex/knowledge/knowledge-configuration.dtx + RELOC/source/latex/knowledge/knowledge-utils.dtx + RELOC/source/latex/knowledge/knowledge.ins +runfiles size=29 + RELOC/tex/latex/knowledge/knowledge.sty +catalogue-contact-home https://www.irif.fr/~colcombe/knowledge_en.html +catalogue-contact-repository https://www.irif.fr/~colcombe/Knowledge/ +catalogue-ctan /macros/latex/contrib/knowledge +catalogue-date 2019-02-15 19:38:03 +0100 +catalogue-license lppl1.2 +catalogue-topics index label-ref +catalogue-version 1.16 + +name knuth +category Package +revision 32899 +catalogue knuth-errata +shortdesc Knuth's published errata +relocated 1 +longdesc These files record details of problems reported in the +longdesc 'Computers and Typesetting' series of books, for the Computer +longdesc Modern fonts, and for TeX, Metafont and related programs. +containersize 472 +containerchecksum 0444090d99b39e2cdb47060ec7eb07704948efba49d4c9ced27a0565e34bc31cc81e10ec19559d3455ad2da79c5117da3f2d84f2cdd080cf97d5c14e6d02f707 +doccontainersize 14024508 +doccontainerchecksum a2ec4befb238f3cc51593e0aa145d02f40e3e792d4ee13147cf58baf366f9e019fb874179940b7beedf859c9d756a8fde2b6f65e8c6c20e9c2964e980e7dfabc +docfiles size=3792 + RELOC/doc/generic/knuth/errata/cm85.bug + RELOC/doc/generic/knuth/errata/errata.pdf + RELOC/doc/generic/knuth/errata/errorlog.pdf + RELOC/doc/generic/knuth/errata/mf84.bug + RELOC/doc/generic/knuth/errata/tex82.bug + RELOC/doc/generic/knuth/etc/vftovp.pdf + RELOC/doc/generic/knuth/etc/vptovf.pdf + RELOC/doc/generic/knuth/mf/mf.pdf + RELOC/doc/generic/knuth/mf/trapman.pdf + RELOC/doc/generic/knuth/mfware/gftodvi.pdf + RELOC/doc/generic/knuth/mfware/gftopk.pdf + RELOC/doc/generic/knuth/mfware/gftype.pdf + RELOC/doc/generic/knuth/mfware/mft.pdf + RELOC/doc/generic/knuth/tex/glue.pdf + RELOC/doc/generic/knuth/tex/tex.pdf + RELOC/doc/generic/knuth/tex/tripman.pdf + RELOC/doc/generic/knuth/texware/dvitype.pdf + RELOC/doc/generic/knuth/texware/pltotf.pdf + RELOC/doc/generic/knuth/texware/pooltype.pdf + RELOC/doc/generic/knuth/texware/tftopl.pdf + RELOC/doc/generic/knuth/web/tangle.pdf + RELOC/doc/generic/knuth/web/weave.pdf + RELOC/doc/generic/knuth/web/webman.pdf +srccontainersize 171420 +srccontainerchecksum a5e53275149199e9bbf88f6f6f03759b39ab0401eaf1fee4cc9875eee62a82178bb3f79deea9cbddf5e3153366dd57e43733f583bd66327e73b2e78b0765964b +srcfiles size=157 + RELOC/source/generic/knuth/errata/errata.eight + RELOC/source/generic/knuth/errata/errata.eleven + RELOC/source/generic/knuth/errata/errata.five + RELOC/source/generic/knuth/errata/errata.four + RELOC/source/generic/knuth/errata/errata.nine + RELOC/source/generic/knuth/errata/errata.one + RELOC/source/generic/knuth/errata/errata.seven + RELOC/source/generic/knuth/errata/errata.six + RELOC/source/generic/knuth/errata/errata.ten + RELOC/source/generic/knuth/errata/errata.tex + RELOC/source/generic/knuth/errata/errata.three + RELOC/source/generic/knuth/errata/errata.two + RELOC/source/generic/knuth/errata/errorlog.tex + RELOC/source/generic/knuth/errata/logmac.tex + RELOC/source/generic/knuth/tex/glue.web + RELOC/source/generic/knuth/web/webman.tex +catalogue-ctan /systems/knuth/dist/errata +catalogue-date 2017-01-28 13:06:02 +0100 +catalogue-license knuth +catalogue-topics doc-errata name knuth-lib category Package revision 35820 -shortdesc A small library of MetaFont sources. +shortdesc A small library of Metafont sources relocated 1 -longdesc A collection of miscellaneous MetaFont source, including the -longdesc means to generate the logo font that is used for MetaFont and -longdesc MetaPost. +longdesc The collection of core TeX and Metafont macro files from DEK, +longdesc including the plain format, plain base, and the MF logo fonts. +containersize 30424 +containerchecksum 8925cee55d97e93e9947e62581bdad06cece4448b94516c72cdc8826ecb8148fd393c0621f57eb92dbc4752626a38029bcfb30963b618027e0fb5459e0b29bd0 runfiles size=47 RELOC/fonts/source/public/knuth-lib/3test.mf RELOC/fonts/source/public/knuth-lib/6test.mf @@ -87328,18 +140650,21 @@ runfiles size=47 RELOC/tex/plain/knuth-lib/testfont.tex RELOC/tex/plain/knuth-lib/webmac.tex catalogue-ctan /systems/knuth/dist/lib -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-01-28 13:27:32 +0100 catalogue-license knuth +catalogue-topics collection name knuth-local category Package -revision 33147 -shortdesc Knuth's local information. +revision 38627 +shortdesc Knuth's local information relocated 1 longdesc A collection of experimental programs and developments based longdesc on, or complementary to, the matter in his distribution longdesc directories. -runfiles size=50 +containersize 23056 +containerchecksum 8ff3f05e2584cbc5301ce6fe74e469db70438f689323617ab0cd762af9f66fcc8db10ef687dbe5a97deb0771a75320ab099cfd8cb7a900f5ce6c65e2f6fc9edc +runfiles size=52 RELOC/fonts/source/public/knuth-local/black.mf RELOC/fonts/source/public/knuth-local/blackaps.mf RELOC/fonts/source/public/knuth-local/blackimagen.mf @@ -87365,285 +140690,56 @@ runfiles size=50 RELOC/fonts/source/public/knuth-local/slantlj4.mf RELOC/fonts/source/public/knuth-local/snfont.mf RELOC/fonts/tfm/public/knuth-local/domino.tfm + RELOC/fonts/tfm/public/knuth-local/logod10.tfm + RELOC/fonts/tfm/public/knuth-local/logosl9.tfm RELOC/fonts/tfm/public/knuth-local/random.tfm RELOC/fonts/tfm/public/knuth-local/snfont.tfm RELOC/mft/knuth-local/e.mft RELOC/tex/plain/knuth-local/xepsf.tex catalogue-ctan /systems/knuth/local -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-01-28 12:48:42 +0100 catalogue-license knuth - -name knuthotherfonts -category Package -revision 13293 -relocated 1 -runfiles size=22 - RELOC/fonts/source/public/knuthotherfonts/committee/font1.mf - RELOC/fonts/source/public/knuthotherfonts/committee/font1base.mf - RELOC/fonts/source/public/knuthotherfonts/halftone/aphalf.mf - RELOC/fonts/source/public/knuthotherfonts/halftone/ddhalf.mf - RELOC/fonts/source/public/knuthotherfonts/halftone/ddralf.mf - RELOC/fonts/source/public/knuthotherfonts/halftone/halftone.mf - RELOC/fonts/source/public/knuthotherfonts/halftone/imhalf.mf - RELOC/fonts/source/public/knuthotherfonts/halftone/imralf.mf - RELOC/fonts/source/public/knuthotherfonts/mfbook/logobase.mf - RELOC/fonts/source/public/knuthotherfonts/mfbook/metafon.mf - -name knuth -category Package -revision 32899 -catalogue knuth-errata -shortdesc Knuth's published errata. -relocated 1 -longdesc These files record details of problems reported in the -longdesc 'Computers and Typesetting' series of books, for the Computer -longdesc Modern fonts, and for TeX, MetaFont and related programs. -docfiles size=3792 - RELOC/doc/generic/knuth/errata/cm85.bug - RELOC/doc/generic/knuth/errata/errata.pdf - RELOC/doc/generic/knuth/errata/errorlog.pdf - RELOC/doc/generic/knuth/errata/mf84.bug - RELOC/doc/generic/knuth/errata/tex82.bug - RELOC/doc/generic/knuth/etc/vftovp.pdf - RELOC/doc/generic/knuth/etc/vptovf.pdf - RELOC/doc/generic/knuth/mf/mf.pdf - RELOC/doc/generic/knuth/mf/trapman.pdf - RELOC/doc/generic/knuth/mfware/gftodvi.pdf - RELOC/doc/generic/knuth/mfware/gftopk.pdf - RELOC/doc/generic/knuth/mfware/gftype.pdf - RELOC/doc/generic/knuth/mfware/mft.pdf - RELOC/doc/generic/knuth/tex/glue.pdf - RELOC/doc/generic/knuth/tex/tex.pdf - RELOC/doc/generic/knuth/tex/tripman.pdf - RELOC/doc/generic/knuth/texware/dvitype.pdf - RELOC/doc/generic/knuth/texware/pltotf.pdf - RELOC/doc/generic/knuth/texware/pooltype.pdf - RELOC/doc/generic/knuth/texware/tftopl.pdf - RELOC/doc/generic/knuth/web/tangle.pdf - RELOC/doc/generic/knuth/web/weave.pdf - RELOC/doc/generic/knuth/web/webman.pdf -srcfiles size=157 - RELOC/source/generic/knuth/errata/errata.eight - RELOC/source/generic/knuth/errata/errata.eleven - RELOC/source/generic/knuth/errata/errata.five - RELOC/source/generic/knuth/errata/errata.four - RELOC/source/generic/knuth/errata/errata.nine - RELOC/source/generic/knuth/errata/errata.one - RELOC/source/generic/knuth/errata/errata.seven - RELOC/source/generic/knuth/errata/errata.six - RELOC/source/generic/knuth/errata/errata.ten - RELOC/source/generic/knuth/errata/errata.tex - RELOC/source/generic/knuth/errata/errata.three - RELOC/source/generic/knuth/errata/errata.two - RELOC/source/generic/knuth/errata/errorlog.tex - RELOC/source/generic/knuth/errata/logmac.tex - RELOC/source/generic/knuth/tex/glue.web - RELOC/source/generic/knuth/web/webman.tex -catalogue-ctan /systems/knuth/dist/errata -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license knuth - -name komacv -category Package -revision 34906 -shortdesc Typesetting a beuatiful CV with various style options. -relocated 1 -longdesc The class simplifies the creation of beautiful CV. The user may -longdesc choose between different styles, and may adjust settings to -longdesc tune the output. -runfiles size=10 - RELOC/tex/latex/komacv/komacv-casual.sty - RELOC/tex/latex/komacv/komacv-classic.sty - RELOC/tex/latex/komacv/komacv-oldstyle.sty - RELOC/tex/latex/komacv/komacv.cls -docfiles size=184 - RELOC/doc/latex/komacv/README - RELOC/doc/latex/komacv/examples/jeyre.jpg - RELOC/doc/latex/komacv/examples/komacv.bib - RELOC/doc/latex/komacv/examples/komacv_example.tex - RELOC/doc/latex/komacv/examples/komacv_example_casual.pdf - RELOC/doc/latex/komacv/examples/komacv_example_classic.pdf - RELOC/doc/latex/komacv/examples/komacv_example_oldstyle.pdf - RELOC/doc/latex/komacv/komacv.pdf -srcfiles size=18 - RELOC/source/latex/komacv/komacv.dtx - RELOC/source/latex/komacv/komacv.ins -catalogue-ctan /macros/latex/contrib/komacv -catalogue-date 2015-03-30 22:55:45 +0200 -catalogue-license lppl1.3 -catalogue-version 1.0.1 +catalogue-topics collection name koma-moderncvclassic category Package revision 25025 -shortdesc Makes the style and command of moderncv (style classic) available for koma-classes and thus compatible with biblatex. +shortdesc Makes the style and command of moderncv (style classic) available for koma-classes and thus compatible with BibLaTeX relocated 1 longdesc This package provides an imitation of the moderncv class with longdesc the classic style (by Xavier Danaux), to be used in conjunction longdesc with the koma-classes. Thus it is possible to configure longdesc pagelayout, headings etc. the way it is done in koma-classes. -longdesc Moreover, it is possible to use biblatex, while the original -longdesc moderncv-class is incompatible with biblatex. -runfiles size=4 - RELOC/tex/latex/koma-moderncvclassic/koma-moderncvclassic.sty +longdesc Moreover, it is possible to use BibLaTeX, while the original +longdesc moderncv-class is incompatible with BibLaTeX. +containersize 3972 +containerchecksum 68aa7ea875f46a4c1d1bbf29d4abb77f4ec729242fab41f3e79caf95a925a076ec3d37ce7d98b44aecaaf9edce541d1673780238786b36cee0621acf4212a1ef +doccontainersize 191168 +doccontainerchecksum 968f5303bc7b5fa3df39a2a44c38b63e54059a94ac7df2349b45cbc0855d22ec64ec39feaafd761515720d306d5e5ea8a223ca74790ba160bd093f989d8b69c0 docfiles size=50 - RELOC/doc/latex/koma-moderncvclassic/README + RELOC/doc/latex/koma-moderncvclassic/README details="Readme" RELOC/doc/latex/koma-moderncvclassic/changelog - RELOC/doc/latex/koma-moderncvclassic/cvbasic.pdf - RELOC/doc/latex/koma-moderncvclassic/cvbasic.tex + RELOC/doc/latex/koma-moderncvclassic/cvbasic.pdf details="Example output" + RELOC/doc/latex/koma-moderncvclassic/cvbasic.tex details="Example input" +runfiles size=4 + RELOC/tex/latex/koma-moderncvclassic/koma-moderncvclassic.sty +catalogue-also moderncv koma-script catalogue-ctan /macros/latex/contrib/koma-moderncvclassic -catalogue-date 2012-01-05 01:27:26 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 -catalogue-version v0.5 - -name koma-script-examples -category Package -revision 34243 -shortdesc Examples from the KOMA-Script book. -relocated 1 -longdesc This package contains some examples from the 5th edition of the -longdesc book >>KOMA-Script<<, >>Eine Sammlung von Klassen und Paketen -longdesc fur LaTeX2e<< by Markus Kohm, published by Lehmanns Media. -longdesc There are no further descriptions of these examples. -docfiles size=419 - RELOC/doc/latex/koma-script-examples/Anhang-B/result/chapterthumbexample.pdf - RELOC/doc/latex/koma-script-examples/Anhang-B/source/chapterthumb.sty - RELOC/doc/latex/koma-script-examples/Anhang-B/source/chapterthumbexample.tex - RELOC/doc/latex/koma-script-examples/Anhang-C/result/floattrick.pdf - RELOC/doc/latex/koma-script-examples/Anhang-C/source/floattrick.tex - RELOC/doc/latex/koma-script-examples/Anhang-D/result/briefDIN.pdf - RELOC/doc/latex/koma-script-examples/Anhang-D/result/briefSN.pdf - RELOC/doc/latex/koma-script-examples/Anhang-D/result/briefbak3.pdf - RELOC/doc/latex/koma-script-examples/Anhang-D/result/briefdup.pdf - RELOC/doc/latex/koma-script-examples/Anhang-D/result/brieflft.pdf - RELOC/doc/latex/koma-script-examples/Anhang-D/result/brieflfu.pdf - RELOC/doc/latex/koma-script-examples/Anhang-D/result/briefnow.pdf - RELOC/doc/latex/koma-script-examples/Anhang-D/result/briefrag2.pdf - RELOC/doc/latex/koma-script-examples/Anhang-D/result/briefwbk.pdf - RELOC/doc/latex/koma-script-examples/Anhang-D/result/briefwbk2.pdf - RELOC/doc/latex/koma-script-examples/Anhang-D/result/briefwbt2.pdf - RELOC/doc/latex/koma-script-examples/Anhang-D/result/letter-nipponA.pdf - RELOC/doc/latex/koma-script-examples/Anhang-D/result/letter-nipponB.pdf - RELOC/doc/latex/koma-script-examples/Anhang-D/source/CaptainHook-1.pdf - RELOC/doc/latex/koma-script-examples/Anhang-D/source/SNslhead.lco - RELOC/doc/latex/koma-script-examples/Anhang-D/source/asymTypB.lco - RELOC/doc/latex/koma-script-examples/Anhang-D/source/briefDIN.tex - RELOC/doc/latex/koma-script-examples/Anhang-D/source/briefSN.tex - RELOC/doc/latex/koma-script-examples/Anhang-D/source/briefbak3.tex - RELOC/doc/latex/koma-script-examples/Anhang-D/source/briefdup.tex - RELOC/doc/latex/koma-script-examples/Anhang-D/source/brieflft.tex - RELOC/doc/latex/koma-script-examples/Anhang-D/source/brieflfu.tex - RELOC/doc/latex/koma-script-examples/Anhang-D/source/briefnow.tex - RELOC/doc/latex/koma-script-examples/Anhang-D/source/briefrag2.tex - RELOC/doc/latex/koma-script-examples/Anhang-D/source/brieftemplate.tex - RELOC/doc/latex/koma-script-examples/Anhang-D/source/briefwbk.tex - RELOC/doc/latex/koma-script-examples/Anhang-D/source/briefwbk2.tex - RELOC/doc/latex/koma-script-examples/Anhang-D/source/briefwbt2.tex - RELOC/doc/latex/koma-script-examples/Anhang-D/source/dateup.lco - RELOC/doc/latex/koma-script-examples/Anhang-D/source/letter-nipponA.tex - RELOC/doc/latex/koma-script-examples/Anhang-D/source/letter-nipponB.tex - RELOC/doc/latex/koma-script-examples/Anhang-D/source/nowindow.lco - RELOC/doc/latex/koma-script-examples/Anhang-E/result/letter-label.pdf - RELOC/doc/latex/koma-script-examples/Anhang-E/source/labelbasic.lco - RELOC/doc/latex/koma-script-examples/Anhang-E/source/letter-label.tex - RELOC/doc/latex/koma-script-examples/Anhang-E/source/settleford600label.lco - RELOC/doc/latex/koma-script-examples/Kapitel-11/result/scrjuraexample.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-11/source/scrjuraexample.tex - RELOC/doc/latex/koma-script-examples/Kapitel-15/result/remarkexample.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-15/source/remarkbox.sty - RELOC/doc/latex/koma-script-examples/Kapitel-15/source/remarkexample.tex - RELOC/doc/latex/koma-script-examples/Kapitel-19/result/scrlayer-notecolumn-example.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-19/source/scrlayer-notecolumn-example.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-0.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-1.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-10.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-11.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-12.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-13.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-14.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-15.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-16.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-17.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-18.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-19.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-2.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-20.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-21.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-22.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-23.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-3.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-4.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-5.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-6.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-7.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-8.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-9.pdf - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/ich.lco - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-0.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-1.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-10.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-11.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-12.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-13.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-14.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-15.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-16.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-17.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-18.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-19.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-2.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-20.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-21.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-22.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-23.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-3.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-4.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-5.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-6.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-7.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-8.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-9.tex - RELOC/doc/latex/koma-script-examples/Kapitel-4/source/musterlogo.pdf - RELOC/doc/latex/koma-script-examples/LEGAL.txt - RELOC/doc/latex/koma-script-examples/LEGAL_DE.txt - RELOC/doc/latex/koma-script-examples/LIESMICH.txt - RELOC/doc/latex/koma-script-examples/README -catalogue-ctan /info/examples/KOMA-Script-5 -catalogue-date 2014-05-23 11:15:36 +0200 -catalogue-license lppl - -name koma-script-sfs -category Package -revision 26137 -shortdesc Koma-script letter class option for Finnish. -relocated 1 -longdesc A koma-script parameter set for letters on A4 paper, complying -longdesc with Finnish standards SFS 2486, 2487 and 2488; suitable for -longdesc window envelopes with window on the left size in the sizes C5, -longdesc C65, E5 and E65 (although, because the address window is -longdesc smaller, for sizes E5 and E65 the address may not fit within -longdesc the window, but ordinary 3-line address should fit). -runfiles size=2 - RELOC/tex/latex/koma-script-sfs/SFS.lco -docfiles size=12 - RELOC/doc/latex/koma-script-sfs/README - RELOC/doc/latex/koma-script-sfs/SFSesim.pdf - RELOC/doc/latex/koma-script-sfs/SFSesim.tex -catalogue-ctan /macros/latex/contrib/koma-script-SFS -catalogue-date 2012-05-08 12:20:07 +0200 -catalogue-license lppl -catalogue-version 1.0 +catalogue-topics cv +catalogue-version 0.5 name koma-script category TLCore -revision 37734 +revision 49929 shortdesc A bundle of versatile classes and packages relocated 1 longdesc The KOMA-Script bundle provides replacements for the article, longdesc report, and book classes with emphasis on typography and longdesc versatility. There is also a letter class. The bundle also longdesc offers: a package for calculating type areas in the way laid -longdesc down by the typographer Jan Tschichold, a package for easily +longdesc down by the typographer Jan Tschichold, packages for easily longdesc changing and defining page styles, a package scrdate for longdesc getting not only the current date but also the name of the day, longdesc and a package scrtime for getting the current time. All these @@ -87652,7 +140748,9 @@ longdesc with the standard classes. Since every package has its own longdesc version number, the version number quoted only refers to the longdesc version of scrbook, scrreprt, scrartcl, scrlttr2 and typearea longdesc (which are the main parts of the bundle). -runfiles size=4894 +containersize 13756660 +containerchecksum d74028ac12eaf367fbffc4656512c5b7b85b7f00737fa5b72967aecd3d564c6a8aaa4845ba0d1c65e64061474894e3f372bd78337975e0f40ce35b38206a66ff +runfiles size=5663 RELOC/doc/latex/koma-script/INSTALL.txt RELOC/doc/latex/koma-script/INSTALLD.txt RELOC/doc/latex/koma-script/README @@ -87674,8 +140772,7 @@ runfiles size=4894 RELOC/doc/latex/koma-script/scrguien.html RELOC/doc/latex/koma-script/scrguien.pdf RELOC/doc/latex/koma-script/scrhack.html - RELOC/doc/latex/koma-script/scrhack.pdf - RELOC/doc/latex/koma-script/scrjura.pdf + RELOC/doc/latex/koma-script/scrlayer-fancyhdr.pdf RELOC/doc/latex/koma-script/scrlayer-notecolumn.html RELOC/doc/latex/koma-script/scrlayer-scrpage.html RELOC/doc/latex/koma-script/scrlayer.html @@ -87702,22 +140799,22 @@ runfiles size=4894 RELOC/source/latex/koma-script/doc/english/Makefile RELOC/source/latex/koma-script/doc/english/adrconvnote.tex RELOC/source/latex/koma-script/doc/english/authorpart.tex - RELOC/source/latex/koma-script/doc/english/common-0.tex - RELOC/source/latex/koma-script/doc/english/common-1.tex - RELOC/source/latex/koma-script/doc/english/common-12.tex - RELOC/source/latex/koma-script/doc/english/common-13.tex - RELOC/source/latex/koma-script/doc/english/common-14.tex - RELOC/source/latex/koma-script/doc/english/common-15.tex - RELOC/source/latex/koma-script/doc/english/common-2.tex - RELOC/source/latex/koma-script/doc/english/common-20.tex - RELOC/source/latex/koma-script/doc/english/common-21.tex - RELOC/source/latex/koma-script/doc/english/common-3.tex - RELOC/source/latex/koma-script/doc/english/common-4.tex - RELOC/source/latex/koma-script/doc/english/common-5.tex - RELOC/source/latex/koma-script/doc/english/common-6.tex - RELOC/source/latex/koma-script/doc/english/common-7.tex - RELOC/source/latex/koma-script/doc/english/common-8.tex - RELOC/source/latex/koma-script/doc/english/common-9.tex + RELOC/source/latex/koma-script/doc/english/common-compatibility.tex + RELOC/source/latex/koma-script/doc/english/common-dictum.tex + RELOC/source/latex/koma-script/doc/english/common-draftmode.tex + RELOC/source/latex/koma-script/doc/english/common-fontsize.tex + RELOC/source/latex/koma-script/doc/english/common-footnotes.tex + RELOC/source/latex/koma-script/doc/english/common-headfootheight.tex + RELOC/source/latex/koma-script/doc/english/common-interleafpage.tex + RELOC/source/latex/koma-script/doc/english/common-lists.tex + RELOC/source/latex/koma-script/doc/english/common-marginpar.tex + RELOC/source/latex/koma-script/doc/english/common-oddorevenpage.tex + RELOC/source/latex/koma-script/doc/english/common-options.tex + RELOC/source/latex/koma-script/doc/english/common-pagestylemanipulation.tex + RELOC/source/latex/koma-script/doc/english/common-parmarkup.tex + RELOC/source/latex/koma-script/doc/english/common-textmarkup.tex + RELOC/source/latex/koma-script/doc/english/common-titles.tex + RELOC/source/latex/koma-script/doc/english/common-typearea.tex RELOC/source/latex/koma-script/doc/english/expertpart.tex RELOC/source/latex/koma-script/doc/english/guide-english.tex RELOC/source/latex/koma-script/doc/english/guide.tex @@ -87734,6 +140831,7 @@ runfiles size=4894 RELOC/source/latex/koma-script/doc/english/scrextend.tex RELOC/source/latex/koma-script/doc/english/scrhack.tex RELOC/source/latex/koma-script/doc/english/scrjura.tex + RELOC/source/latex/koma-script/doc/english/scrjuraexample.tex RELOC/source/latex/koma-script/doc/english/scrlayer-notecolumn-example.tex RELOC/source/latex/koma-script/doc/english/scrlayer-notecolumn.tex RELOC/source/latex/koma-script/doc/english/scrlayer-scrpage-experts.tex @@ -87756,22 +140854,22 @@ runfiles size=4894 RELOC/source/latex/koma-script/doc/ngerman/Makefile RELOC/source/latex/koma-script/doc/ngerman/adrconvnote.tex RELOC/source/latex/koma-script/doc/ngerman/authorpart.tex - RELOC/source/latex/koma-script/doc/ngerman/common-0.tex - RELOC/source/latex/koma-script/doc/ngerman/common-1.tex - RELOC/source/latex/koma-script/doc/ngerman/common-12.tex - RELOC/source/latex/koma-script/doc/ngerman/common-13.tex - RELOC/source/latex/koma-script/doc/ngerman/common-14.tex - RELOC/source/latex/koma-script/doc/ngerman/common-15.tex - RELOC/source/latex/koma-script/doc/ngerman/common-2.tex - RELOC/source/latex/koma-script/doc/ngerman/common-20.tex - RELOC/source/latex/koma-script/doc/ngerman/common-21.tex - RELOC/source/latex/koma-script/doc/ngerman/common-3.tex - RELOC/source/latex/koma-script/doc/ngerman/common-4.tex - RELOC/source/latex/koma-script/doc/ngerman/common-5.tex - RELOC/source/latex/koma-script/doc/ngerman/common-6.tex - RELOC/source/latex/koma-script/doc/ngerman/common-7.tex - RELOC/source/latex/koma-script/doc/ngerman/common-8.tex - RELOC/source/latex/koma-script/doc/ngerman/common-9.tex + RELOC/source/latex/koma-script/doc/ngerman/common-compatibility.tex + RELOC/source/latex/koma-script/doc/ngerman/common-dictum.tex + RELOC/source/latex/koma-script/doc/ngerman/common-draftmode.tex + RELOC/source/latex/koma-script/doc/ngerman/common-fontsize.tex + RELOC/source/latex/koma-script/doc/ngerman/common-footnotes.tex + RELOC/source/latex/koma-script/doc/ngerman/common-headfootheight.tex + RELOC/source/latex/koma-script/doc/ngerman/common-interleafpage.tex + RELOC/source/latex/koma-script/doc/ngerman/common-lists.tex + RELOC/source/latex/koma-script/doc/ngerman/common-marginpar.tex + RELOC/source/latex/koma-script/doc/ngerman/common-oddorevenpage.tex + RELOC/source/latex/koma-script/doc/ngerman/common-options.tex + RELOC/source/latex/koma-script/doc/ngerman/common-pagestylemanipulation.tex + RELOC/source/latex/koma-script/doc/ngerman/common-parmarkup.tex + RELOC/source/latex/koma-script/doc/ngerman/common-textmarkup.tex + RELOC/source/latex/koma-script/doc/ngerman/common-titles.tex + RELOC/source/latex/koma-script/doc/ngerman/common-typearea.tex RELOC/source/latex/koma-script/doc/ngerman/expertpart.tex RELOC/source/latex/koma-script/doc/ngerman/guide-ngerman.tex RELOC/source/latex/koma-script/doc/ngerman/guide.tex @@ -87787,6 +140885,7 @@ runfiles size=4894 RELOC/source/latex/koma-script/doc/ngerman/scrextend.tex RELOC/source/latex/koma-script/doc/ngerman/scrhack.tex RELOC/source/latex/koma-script/doc/ngerman/scrjura.tex + RELOC/source/latex/koma-script/doc/ngerman/scrjuraexample.tex RELOC/source/latex/koma-script/doc/ngerman/scrlayer-notecolumn-example.tex RELOC/source/latex/koma-script/doc/ngerman/scrlayer-notecolumn.tex RELOC/source/latex/koma-script/doc/ngerman/scrlayer-scrpage-experts.tex @@ -87853,9 +140952,11 @@ runfiles size=4894 RELOC/source/latex/koma-script/scrkernel-pseudolengths.dtx RELOC/source/latex/koma-script/scrkernel-sections.dtx RELOC/source/latex/koma-script/scrkernel-title.dtx + RELOC/source/latex/koma-script/scrkernel-tocstyle.dtx RELOC/source/latex/koma-script/scrkernel-typearea.dtx RELOC/source/latex/koma-script/scrkernel-variables.dtx RELOC/source/latex/koma-script/scrkernel-version.dtx + RELOC/source/latex/koma-script/scrlayer-fancyhdr.dtx RELOC/source/latex/koma-script/scrlayer-notecolumn.dtx RELOC/source/latex/koma-script/scrlayer-scrpage.dtx RELOC/source/latex/koma-script/scrlayer.dtx @@ -87888,6 +140989,8 @@ runfiles size=4894 RELOC/tex/latex/koma-script/floatrow.hak RELOC/tex/latex/koma-script/hyperref.hak RELOC/tex/latex/koma-script/listings.hak + RELOC/tex/latex/koma-script/lscape.hak + RELOC/tex/latex/koma-script/nomencl.hak RELOC/tex/latex/koma-script/scraddr.sty RELOC/tex/latex/koma-script/scrartcl.cls RELOC/tex/latex/koma-script/scrbase.sty @@ -87899,6 +141002,7 @@ runfiles size=4894 RELOC/tex/latex/koma-script/scrhack.sty RELOC/tex/latex/koma-script/scrjura.sty RELOC/tex/latex/koma-script/scrkbase.sty + RELOC/tex/latex/koma-script/scrlayer-fancyhdr.sty RELOC/tex/latex/koma-script/scrlayer-notecolumn.sty RELOC/tex/latex/koma-script/scrlayer-scrpage.sty RELOC/tex/latex/koma-script/scrlayer.sty @@ -87918,22 +141022,259 @@ runfiles size=4894 RELOC/tex/latex/koma-script/typearea.sty RELOC/tex/latex/koma-script/visualize.lco catalogue-also scrartcl scrbook +catalogue-contact-home http://www.komascript.de/ catalogue-ctan /macros/latex/contrib/koma-script -catalogue-date 2015-07-02 16:31:08 +0200 -catalogue-license lppl1.3 +catalogue-date 2019-02-03 20:31:24 +0100 +catalogue-license lppl1.3c catalogue-topics class letter book-pub page-hf geometry -catalogue-version 3.18 +catalogue-version 3.26b + +name koma-script-examples +category Package +revision 47523 +shortdesc Examples from the KOMA-Script book +relocated 1 +longdesc This package contains some examples from the 6th edition of the +longdesc book >>KOMA-Script<<, >>Eine Sammlung von Klassen und Paketen +longdesc fur LaTeX2e<< by Markus Kohm, published by Lehmanns Media. +longdesc There are no further descriptions of these examples. +containersize 540 +containerchecksum df9ccc215a2693454b3f8e1cbce816708415e987451cb652c1b3c2121ff073b7dd0311e3a61de493b5591923edd7688edf66e061467d28a5c3ea437f912568f9 +doccontainersize 563260 +doccontainerchecksum 6cdd548d21897f33927ee33be350b77b317777464ce3c7be24223cf10b6200ffb73944d72d0ea8491795de71c9554881ee52ae157a035b667f8c2c74aa1c3641 +docfiles size=416 + RELOC/doc/latex/koma-script-examples/Anhang-B/result/chapterthumbexample.pdf + RELOC/doc/latex/koma-script-examples/Anhang-B/source/chapterthumb.sty + RELOC/doc/latex/koma-script-examples/Anhang-B/source/chapterthumbexample.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/result/briefDIN.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/result/briefSN.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/result/briefbak3.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/result/briefdup.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/result/brieflft.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/result/brieflfu.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/result/briefnow.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/result/briefrag2.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/result/briefwbk.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/result/briefwbk2.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/result/briefwbt2.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/result/letter-nipponA.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/result/letter-nipponB.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/source/CaptainHook-1.pdf + RELOC/doc/latex/koma-script-examples/Anhang-C/source/SNslhead.lco + RELOC/doc/latex/koma-script-examples/Anhang-C/source/asymTypB.lco + RELOC/doc/latex/koma-script-examples/Anhang-C/source/briefDIN.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/briefSN.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/briefbak3.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/briefdup.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/brieflft.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/brieflfu.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/briefnow.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/briefrag2.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/brieftemplate.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/briefwbk.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/briefwbk2.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/briefwbt2.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/dateup.lco + RELOC/doc/latex/koma-script-examples/Anhang-C/source/letter-nipponA.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/letter-nipponB.tex + RELOC/doc/latex/koma-script-examples/Anhang-C/source/nowindow.lco + RELOC/doc/latex/koma-script-examples/Kapitel-11/result/scrjuraexample.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-11/source/scrjuraexample.tex + RELOC/doc/latex/koma-script-examples/Kapitel-15/result/remarkexample.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-15/source/remarkbox.sty + RELOC/doc/latex/koma-script-examples/Kapitel-15/source/remarkexample.tex + RELOC/doc/latex/koma-script-examples/Kapitel-19/result/scrlayer-notecolumn-example.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-19/source/scrlayer-notecolumn-example.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-0.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-1.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-10.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-11.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-12.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-13.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-14.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-15.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-16.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-17.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-18.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-19.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-2.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-20.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-21.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-22.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-23.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-3.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-4.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-5.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-6.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-7.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-8.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/result/letter-9.pdf + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/ich.lco + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-0.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-1.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-10.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-11.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-12.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-13.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-14.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-15.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-16.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-17.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-18.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-19.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-2.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-20.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-21.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-22.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-23.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-3.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-4.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-5.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-6.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-7.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-8.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/letter-9.tex + RELOC/doc/latex/koma-script-examples/Kapitel-4/source/musterlogo.pdf + RELOC/doc/latex/koma-script-examples/LEGAL.txt + RELOC/doc/latex/koma-script-examples/LEGAL_DE.txt + RELOC/doc/latex/koma-script-examples/LIESMICH.txt details="German Readme" language="de" + RELOC/doc/latex/koma-script-examples/README.txt details="English Readme" language="en" +catalogue-contact-home http://www.komascript.de/ +catalogue-ctan /info/examples/KOMA-Script-6 +catalogue-date 2018-04-23 05:04:11 +0200 +catalogue-license lppl1.3c +catalogue-topics book-ex + +name koma-script-sfs +category Package +revision 26137 +shortdesc Koma-script letter class option for Finnish +relocated 1 +longdesc A koma-script parameter set for letters on A4 paper, complying +longdesc with Finnish standards SFS 2486, 2487 and 2488; suitable for +longdesc window envelopes with window on the left size in the sizes C5, +longdesc C65, E5 and E65 (although, because the address window is +longdesc smaller, for sizes E5 and E65 the address may not fit within +longdesc the window, but ordinary 3-line address should fit). +containersize 3400 +containerchecksum 3b281a1e94c73e1d8224f6ae552be91e3df344f9031e139334fd7256e38dc70bed4132164935845c710bef9dfe0e8c439c229d3415ff835e48777aea182e7fae +doccontainersize 37524 +doccontainerchecksum 84f7fb5c11c9b40029bc481d34ef7cca39baa2a3872f22fd5b656e324aa5cc0becf3ff6d894ceaf26e8ddea0d8cc14d428a140e1f19ff2e060c6d32390d51070 +docfiles size=12 + RELOC/doc/latex/koma-script-sfs/README details="Readme" + RELOC/doc/latex/koma-script-sfs/SFSesim.pdf details="Package documentation (Finnish)" language="fi" + RELOC/doc/latex/koma-script-sfs/SFSesim.tex +runfiles size=2 + RELOC/tex/latex/koma-script-sfs/SFS.lco +catalogue-ctan /macros/latex/contrib/koma-script-SFS +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics letter +catalogue-version 1.0 + +name komacv +category Package +revision 43902 +shortdesc Typesetting a beautiful CV with various style options +relocated 1 +longdesc The class simplifies the creation of beautiful CV. The user may +longdesc choose between different styles, and may adjust settings to +longdesc tune the output. +containersize 7016 +containerchecksum 007ff84d143bf46d2c5d0772111e26a459be663ab40c785a8dbc8b787202f4ccff15060fa7d52cb547348ae1b128a9f66256259c2f72775d4278ae0f4e04c0bb +doccontainersize 539504 +doccontainerchecksum 58548f1dc27a80a65a275140bef757329a49255353eb09c0c41e7824985603799620b696fcb4af454d85e90b61a6bdc6965cd0f3f2f603674064be502674cec4 +docfiles size=259 + RELOC/doc/latex/komacv/README details="Readme" + RELOC/doc/latex/komacv/examples/jeyre.jpg + RELOC/doc/latex/komacv/examples/komacv.bib + RELOC/doc/latex/komacv/examples/komacv_example.pdf details="Example of use (basic)" + RELOC/doc/latex/komacv/examples/komacv_example.tex + RELOC/doc/latex/komacv/examples/komacv_example_casual.pdf details="Example of use (casual)" + RELOC/doc/latex/komacv/examples/komacv_example_classic.pdf details="Example of use (classic)" + RELOC/doc/latex/komacv/examples/komacv_example_oldstyle.pdf details="Example of use (old style)" + RELOC/doc/latex/komacv/komacv.pdf details="Package documentation" +srccontainersize 17812 +srccontainerchecksum eacfb8e12e043f30daf41c3ce7b4a72bf46170a1c5f9be5accc5c8b414a2a8a69b3460d26832806eca69c3285d0ff87014e50a411f8bf6ea1d7d82fec250ba9e +srcfiles size=20 + RELOC/source/latex/komacv/komacv.dtx + RELOC/source/latex/komacv/komacv.ins +runfiles size=11 + RELOC/tex/latex/komacv/komacv-casual.sty + RELOC/tex/latex/komacv/komacv-classic.sty + RELOC/tex/latex/komacv/komacv-oldstyle.sty + RELOC/tex/latex/komacv/komacv.cls +catalogue-ctan /macros/latex/contrib/komacv +catalogue-date 2017-04-17 20:41:03 +0200 +catalogue-license lppl1.3 +catalogue-topics cv class +catalogue-version 1.1.1 + +name komacv-rg +category Package +revision 49064 +shortdesc LaTeX packages that aid in creating CVs based on the komacv class and creating related documents +relocated 1 +longdesc The komacv-rg bundle provides packages that aid in creating CVs +longdesc based on the komacv class and creating related documents, such +longdesc as cover letters and cover sheets for job applications. +longdesc Concretely, the bundle consists of three packages: +longdesc komacv-addons, komacv-lco, and komacv-multilang. komacv-addons +longdesc is a small collection of add-ons and fixes for the komacv +longdesc class; komacv-lco enables the use of letter class options from +longdesc scrlttr2 also in komacv-based and other non-scrlttr2-based +longdesc documents; komacv-multilang enables the provisioning of CVs in +longdesc multiple languages and the selection of a language via babel or +longdesc polyglossia. +containersize 3308 +containerchecksum 6d400b0f228d42aaabf9527bbd3447fdf92eeff81f1fb7978cf90c3afa9835e4731a9da938bbece65034476ac2e2f7afff19000d9012ddd76b6f65618bea7223 +doccontainersize 856680 +doccontainerchecksum 58236086df2335cd167a5d475cb0e223747d43d81d23c0c0ace1cd711a19ca371426d36e199d69a9fd5414a33872dc4ab3725850a6677440484daba0e55d5208 +docfiles size=224 + RELOC/doc/latex/komacv-rg/README.md details="Readme" + RELOC/doc/latex/komacv-rg/komacv-addons.pdf details="Package documentation komacv-addons" + RELOC/doc/latex/komacv-rg/komacv-lco.pdf details="Package documentation komacv-lco" + RELOC/doc/latex/komacv-rg/komacv-multilang.pdf details="Package documentation komacv-multilang" +srccontainersize 14452 +srccontainerchecksum 512fbddc0b233061afd3a2af20846e8eefcb9d1dc00b29669e45499b62289d842053201b208819536af0a2a7db56cfbf2346210775412035fcd13d2b2593dcf1 +srcfiles size=18 + RELOC/source/latex/komacv-rg/komacv-addons.dtx + RELOC/source/latex/komacv-rg/komacv-lco.dtx + RELOC/source/latex/komacv-rg/komacv-multilang.dtx + RELOC/source/latex/komacv-rg/komacv-rg.ins +runfiles size=4 + RELOC/tex/latex/komacv-rg/komacv-addons.sty + RELOC/tex/latex/komacv-rg/komacv-lco.sty + RELOC/tex/latex/komacv-rg/komacv-multilang.sty +catalogue-contact-bugs https://github.com/Ri-Ga/komacv-rg/issues/ +catalogue-contact-repository https://github.com/Ri-Ga/komacv-rg/ +catalogue-ctan /macros/latex/contrib/komacv-rg +catalogue-date 2018-11-03 14:37:45 +0100 +catalogue-license lppl1.2 +catalogue-topics cv +catalogue-version 0.9.2 name kotex-oblivoir category Package -revision 38033 +revision 43130 shortdesc A LaTeX document class for typesetting Korean documents relocated 1 longdesc The class is based on memoir, and is adapted to typesetting longdesc Korean documents. The bundle (of class and associated packages) -longdesc belongs to the ko.TeX bundle. +longdesc belongs to the ko.TeX bundle. It depends on memoir and +longdesc kotex-utf to function. depend memoir depend kotex-utf +containersize 35736 +containerchecksum 37aa00c2558500c5c308f7ab5c0d8af0277009ddba2615229f718f4e7f954708dd8d3942e03f5fbeebf29a7bd49b81c24c8364fb17468ca0e998d3235bb68791 +doccontainersize 265564 +doccontainerchecksum 907fe884a715e82367ade24d3053a9cf4bd06ab276cffb4622932de1d485813ba9ebcf631680963e926ab80d18838f3c078434843c398000df9a7bbea5543f4a +docfiles size=98 + RELOC/doc/latex/kotex-oblivoir/ChangeLog + RELOC/doc/latex/kotex-oblivoir/README details="Readme" + RELOC/doc/latex/kotex-oblivoir/doc/oblivoir-simpledoc.pdf details="Package documentation" language="ko" + RELOC/doc/latex/kotex-oblivoir/doc/oblivoir-simpledoc.tex + RELOC/doc/latex/kotex-oblivoir/doc/oblivoir-test.tex runfiles size=60 RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/10_5.sty RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/fapapersize.sty @@ -87962,50 +141303,67 @@ runfiles size=60 RELOC/tex/latex/kotex-oblivoir/oblivoir-xlua.cls RELOC/tex/latex/kotex-oblivoir/oblivoir.cls RELOC/tex/latex/kotex-oblivoir/xoblivoir.cls -docfiles size=98 - RELOC/doc/latex/kotex-oblivoir/ChangeLog - RELOC/doc/latex/kotex-oblivoir/README - RELOC/doc/latex/kotex-oblivoir/doc/oblivoir-simpledoc.pdf - RELOC/doc/latex/kotex-oblivoir/doc/oblivoir-simpledoc.tex - RELOC/doc/latex/kotex-oblivoir/doc/oblivoir-test.tex catalogue-ctan /language/korean/kotex-oblivoir -catalogue-date 2015-08-03 16:37:48 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl1.3 catalogue-topics korean class -catalogue-version 2.1.4 +catalogue-version 2.1.8 name kotex-plain category Package -revision 36990 -shortdesc Macros for typesetting Korean under Plain TeX. +revision 38630 +shortdesc Macros for typesetting Korean under Plain TeX relocated 1 longdesc The package provides macros for typesetting Hangul, the native longdesc alphabet of the Korean language, using plain *TeX. Input Korean longdesc text should be encoded in UTF-8. The package is belongs to the longdesc ko.TeX bundle. +containersize 9052 +containerchecksum f04333a7b7ffa7bee44b2d74bc1c4b0eb22fc57fe0721db0ed3bf260fddd68a6c10d92a041e42fe0ab1f897b5869cd7ff67da168336a708f03d072b4c4cedd68 +doccontainersize 1712 +doccontainerchecksum 55b16054d06f079a5d8bf6baa32155a0114e2a12b0269e1ba07ba988e733ad16cdebc1c991033f7bedbc3a180ef24fa84bb463c07e138136ffd89bab0c48b0e4 +docfiles size=2 + RELOC/doc/plain/kotex-plain/ChangeLog + RELOC/doc/plain/kotex-plain/README details="Readme" runfiles size=11 RELOC/tex/plain/kotex-plain/hangulcweb.tex RELOC/tex/plain/kotex-plain/kotexplain.tex RELOC/tex/plain/kotex-plain/kotexutf-core.tex RELOC/tex/plain/kotex-plain/kotexutf.tex -docfiles size=2 - RELOC/doc/plain/kotex-plain/ChangeLog - RELOC/doc/plain/kotex-plain/README catalogue-ctan /language/korean/kotex-plain -catalogue-date 2015-04-21 20:34:41 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 -catalogue-version 2.1.0 +catalogue-topics korean plain-ext enc-juggle +catalogue-version 2.1.1a name kotex-utf category Package -revision 37900 -shortdesc Typeset Hangul, coded in UTF-8. +revision 38558 +shortdesc Typeset Hangul, coded in UTF-8 relocated 1 longdesc The package typesets Hangul, which is the native alphabet of -longdesc the Korean language; input Korean text should be encoded in UTF- -longdesc 8. The bundle (of class and associated packages) belongs to the -longdesc ko.TeX bundle. +longdesc the Korean language; input Korean text should be encoded in +longdesc UTF-8. The bundle (of class and associated packages) belongs to +longdesc the ko.TeX bundle. depend cjk-ko +containersize 20496 +containerchecksum 65ce36703d824ae483a53ac6a3550a8d71d140bdeb67d3c9ddd343255cedbb74739c1688b05ae4742703c6c46b3e46deef5c6a7c5571cfe8f8a4003d56aac446 +doccontainersize 6849784 +doccontainerchecksum 692a2d90f404c571aa0dea436436f72139bf2024dc6f3be0b9e48cb57b60e36d1abb79d7e51fb88b5efc83176417b8f74c8b945fbd236c0832873ad8fa65f410 +docfiles size=2066 + RELOC/doc/latex/kotex-utf/ChangeLog + RELOC/doc/latex/kotex-utf/README details="Readme" + RELOC/doc/latex/kotex-utf/fig/allowbreak-dhucs.pdf + RELOC/doc/latex/kotex-utf/fig/fntexp.pdf + RELOC/doc/latex/kotex-utf/fig/fntnormal.pdf + RELOC/doc/latex/kotex-utf/fig/histkotex.jpg + RELOC/doc/latex/kotex-utf/fig/linebreaktest.pdf + RELOC/doc/latex/kotex-utf/fig/testdhucsallowbreak.pdf + RELOC/doc/latex/kotex-utf/kotexdoc.pdf details="Package documentation (Korean)" language="ko" + RELOC/doc/latex/kotex-utf/kotexdoc.tex + RELOC/doc/latex/kotex-utf/sample-finemath-setup.tex + RELOC/doc/latex/kotex-utf/yettext.tex + RELOC/doc/latex/kotex-utf/yettext.txt runfiles size=38 RELOC/tex/latex/kotex-utf/contrib/dhucs-cmap.sty RELOC/tex/latex/kotex-utf/contrib/dhucs-enumerate.sty @@ -88031,109 +141389,240 @@ runfiles size=38 RELOC/tex/latex/kotex-utf/tex4ht/dhucs.4ht RELOC/tex/latex/kotex-utf/tex4ht/dhucs.cfg RELOC/tex/latex/kotex-utf/tex4ht/kosections-utf.4ht -docfiles size=2066 - RELOC/doc/latex/kotex-utf/ChangeLog - RELOC/doc/latex/kotex-utf/README - RELOC/doc/latex/kotex-utf/fig/allowbreak-dhucs.pdf - RELOC/doc/latex/kotex-utf/fig/fntexp.pdf - RELOC/doc/latex/kotex-utf/fig/fntnormal.pdf - RELOC/doc/latex/kotex-utf/fig/histkotex.jpg - RELOC/doc/latex/kotex-utf/fig/linebreaktest.pdf - RELOC/doc/latex/kotex-utf/fig/testdhucsallowbreak.pdf - RELOC/doc/latex/kotex-utf/kotexdoc.pdf - RELOC/doc/latex/kotex-utf/kotexdoc.tex - RELOC/doc/latex/kotex-utf/sample-finemath-setup.tex - RELOC/doc/latex/kotex-utf/yettext.tex - RELOC/doc/latex/kotex-utf/yettext.txt catalogue-ctan /language/korean/kotex-utf -catalogue-date 2015-07-19 06:11:23 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 catalogue-topics korean -catalogue-version 2.1.1 +catalogue-version 2.1.2 name kotex-utils category Package -revision 36210 -shortdesc Utility scripts and support files for typesetting Korean. +revision 38727 +shortdesc Utility scripts and support files for typesetting Korean longdesc The bundle provides scripts and support files for index longdesc generation in Korean language typesetting. The files belong to longdesc the ko.TeX bundle. depend kotex-utf depend kotex-utils.ARCH -runfiles size=74 +containersize 30480 +containerchecksum 569e9677ef0f346e5a53f4cc84302a8ddf2b4ad85708f4ab8ba7d076ebf339ec60998a41fa92fa815167e9bfc37085ebfd921dd13a60b017a0574e4a5d205802 +doccontainersize 45472 +doccontainerchecksum a46c5d09d119fa2fe8b9acea87a37776536e3216b776af6b7037fc5b0a522af5c1a58baf081e60f06c9a4054e8ac2372458c276c779038a030dc92efdfa3aef6 +docfiles size=153 + texmf-dist/doc/latex/kotex-utils/ChangeLog + texmf-dist/doc/latex/kotex-utils/README details="Readme" + texmf-dist/doc/latex/kotex-utils/utf8-lang.xdy + texmf-dist/doc/latex/kotex-utils/utf8.xdy +runfiles size=75 texmf-dist/makeindex/kotex-utils/kotex.ist texmf-dist/makeindex/kotex-utils/memucs-manual.ist texmf-dist/scripts/kotex-utils/jamo-normalize.pl texmf-dist/scripts/kotex-utils/komkindex.pl texmf-dist/scripts/kotex-utils/ttf2kotexfont.pl -docfiles size=153 - texmf-dist/doc/latex/kotex-utils/ChangeLog - texmf-dist/doc/latex/kotex-utils/README - texmf-dist/doc/latex/kotex-utils/utf8-lang.xdy - texmf-dist/doc/latex/kotex-utils/utf8.xdy catalogue-ctan /language/korean/kotex-utils -catalogue-date 2015-02-04 13:49:23 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl -catalogue-version 2.0.1 +catalogue-topics korean index +catalogue-version 2.1.0 + +name kotex-utils.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of kotex-utils +containersize 416 +containerchecksum c347a6c71c70d63ea4c47393c7239c9a7ba305e924e02f98d522eb637fd58abb15087d52383e2386a2ab200c0f3bc2e9a22e075e8c66e7c5f2db62a3130c8a33 +binfiles arch=aarch64-linux size=3 + bin/aarch64-linux/jamo-normalize + bin/aarch64-linux/komkindex + bin/aarch64-linux/ttf2kotexfont + +name kotex-utils.amd64-freebsd +category Package +revision 32101 +shortdesc amd64-freebsd files of kotex-utils +containersize 416 +containerchecksum 0970758d9e97a13a64307a800c405b0230a54696d07d4d168f36fcbea0fae41309b53917b11f8c0f627f6ca0b58ebd07ae6270efafc452b5523b96c2f69a12df +binfiles arch=amd64-freebsd size=3 + bin/amd64-freebsd/jamo-normalize + bin/amd64-freebsd/komkindex + bin/amd64-freebsd/ttf2kotexfont + +name kotex-utils.amd64-netbsd +category Package +revision 32101 +shortdesc amd64-netbsd files of kotex-utils +containersize 412 +containerchecksum 80b1daea5c759d65747ebe67c8c1e639de57e4c529cf16b08f7e1eadc95f1a9444f653bb2f9f79c39075e17eb74889c179314b7a02b657792f33557638f8e915 +binfiles arch=amd64-netbsd size=3 + bin/amd64-netbsd/jamo-normalize + bin/amd64-netbsd/komkindex + bin/amd64-netbsd/ttf2kotexfont + +name kotex-utils.armhf-linux +category Package +revision 32101 +shortdesc armhf-linux files of kotex-utils +containersize 416 +containerchecksum a74beb9db4b6dbdb7fade6cd1316865a9392fd78a20a90be90731f545e86b0deede6992e0114bd52c5220b896fb9b3fb569a5ecd9d3302ba237bdf97dd2a2f9f +binfiles arch=armhf-linux size=3 + bin/armhf-linux/jamo-normalize + bin/armhf-linux/komkindex + bin/armhf-linux/ttf2kotexfont + +name kotex-utils.i386-cygwin +category Package +revision 32101 +shortdesc i386-cygwin files of kotex-utils +containersize 412 +containerchecksum d8348558ed0c70ed50ed4abd115bdcbdf9cf72fd6f4ad0579cc55255505f186749d3e4d86d83e777df153e1668cb759aa71a6d383590662bdf5639bd2196393a +binfiles arch=i386-cygwin size=3 + bin/i386-cygwin/jamo-normalize + bin/i386-cygwin/komkindex + bin/i386-cygwin/ttf2kotexfont + +name kotex-utils.i386-freebsd +category Package +revision 32101 +shortdesc i386-freebsd files of kotex-utils +containersize 412 +containerchecksum 52a3eb750c6a2460a20d0da32cfccd8a87196169bc5c79803df690850124ecb56966b597fbbb7c616f0564aaa3d83250a935aa6a23394588b08a1943a84f4765 +binfiles arch=i386-freebsd size=3 + bin/i386-freebsd/jamo-normalize + bin/i386-freebsd/komkindex + bin/i386-freebsd/ttf2kotexfont name kotex-utils.i386-linux category Package revision 32101 shortdesc i386-linux files of kotex-utils +containersize 412 +containerchecksum b19dbadebc01e4d119ebff23e4281f030a12d64c7f05cf87a0c9673e6169def2748963b0f014e7da2875bc97c64704dadb7e59784bcc78580df37b78407bc660 binfiles arch=i386-linux size=3 bin/i386-linux/jamo-normalize bin/i386-linux/komkindex bin/i386-linux/ttf2kotexfont +name kotex-utils.i386-netbsd +category Package +revision 32101 +shortdesc i386-netbsd files of kotex-utils +containersize 416 +containerchecksum 640c5960d3e1e6c5166ed9477c657d6e45c91f1fd8204590ae8ab2cfcee1b9614f36c0f5eb98621503bf6a31a98a3fa708571d4614f5cc27f1af6fce5250df1d +binfiles arch=i386-netbsd size=3 + bin/i386-netbsd/jamo-normalize + bin/i386-netbsd/komkindex + bin/i386-netbsd/ttf2kotexfont + +name kotex-utils.i386-solaris +category Package +revision 32101 +shortdesc i386-solaris files of kotex-utils +containersize 416 +containerchecksum 6e70615d22c310b70316e64644d518030567bc1bdc712c07e6d69f5d90eee164afc1ceb1582ae3cf96bdc6e19ffcec01e1a851baf3f0f901674d3aba11ed6a17 +binfiles arch=i386-solaris size=3 + bin/i386-solaris/jamo-normalize + bin/i386-solaris/komkindex + bin/i386-solaris/ttf2kotexfont + +name kotex-utils.win32 +category Package +revision 32101 +shortdesc win32 files of kotex-utils +containersize 744 +containerchecksum 73514a29441619841d3a341e7c60f9fc94aa93a334ffc226d53acdd0b9d0452e4b19b54b717cd93c01ccde7c89e39d852643019c0b2eb12bc1e99c1d8c59d87c +binfiles arch=win32 size=3 + bin/win32/jamo-normalize.exe + bin/win32/komkindex.exe + bin/win32/ttf2kotexfont.exe + +name kotex-utils.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of kotex-utils +containersize 416 +containerchecksum 62d276da2630c77f59e42c8a88c8bb836e8ac4e8177fee91179aadf36b9072aba6119868c0897401e32e30758f71ffef0eff1b3204e8ffcb50b922490f1cd0f4 +binfiles arch=x86_64-cygwin size=3 + bin/x86_64-cygwin/jamo-normalize + bin/x86_64-cygwin/komkindex + bin/x86_64-cygwin/ttf2kotexfont + +name kotex-utils.x86_64-darwin +category Package +revision 32101 +shortdesc x86_64-darwin files of kotex-utils +containersize 416 +containerchecksum 77356f764c0e304d3fc03329200e3974b57d1bcf67d2b7c11171c5274c77b027e1420d4866287efbb656f70fd659b7ae88ada64dfc7cb4f9542b8b15241244e6 +binfiles arch=x86_64-darwin size=3 + bin/x86_64-darwin/jamo-normalize + bin/x86_64-darwin/komkindex + bin/x86_64-darwin/ttf2kotexfont + +name kotex-utils.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of kotex-utils +containersize 420 +containerchecksum 45ba49a39305148081d6e730fc2a4c586f6add6075bc799589c1010d19a854c6ec0c6f3aa79dc8d708ab413e1d8f74eeae2eaa90697a9bc0eace5c9f99357845 +binfiles arch=x86_64-darwinlegacy size=3 + bin/x86_64-darwinlegacy/jamo-normalize + bin/x86_64-darwinlegacy/komkindex + bin/x86_64-darwinlegacy/ttf2kotexfont + +name kotex-utils.x86_64-linux +category Package +revision 32101 +shortdesc x86_64-linux files of kotex-utils +containersize 412 +containerchecksum bee0a36e462e675a8e3d3754d4e923942db879b86cef43c90d0a1d33a97041f6bf2fae7312a3a0d5ccb8233c7c9c0eee988f1fdc2173c51f9e15f3306c31379f +binfiles arch=x86_64-linux size=3 + bin/x86_64-linux/jamo-normalize + bin/x86_64-linux/komkindex + bin/x86_64-linux/ttf2kotexfont + +name kotex-utils.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of kotex-utils +containersize 420 +containerchecksum 91adc24c3517696de501c00a99f861e71a354556e6b1b8ae360a74b7c789f7e351d961324de1d3801359de4160aca7a925237aa60e915b658bb3f02a1dbc959b +binfiles arch=x86_64-linuxmusl size=3 + bin/x86_64-linuxmusl/jamo-normalize + bin/x86_64-linuxmusl/komkindex + bin/x86_64-linuxmusl/ttf2kotexfont + +name kotex-utils.x86_64-solaris +category Package +revision 32101 +shortdesc x86_64-solaris files of kotex-utils +containersize 416 +containerchecksum 04e5eea5de887ce1bbb477a895086a5d1f8e6aff12c1dbd3145a1328ec774153f36d535edd9424a8aeea667ad666decca04def61a2e75e57937cf5eca4790a60 +binfiles arch=x86_64-solaris size=3 + bin/x86_64-solaris/jamo-normalize + bin/x86_64-solaris/komkindex + bin/x86_64-solaris/ttf2kotexfont + name kpathsea category TLCore -revision 37193 -shortdesc Path searching library for TeX-related files. +revision 51016 +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. +longdesc searching facilities for TeX file types, including the +longdesc self-locating feature required for movable installations, +longdesc layered on top of a general search mechanism. It is not +longdesc distributed separately, but rather is released and maintained +longdesc as part of the TeX live sources. depend kpathsea.ARCH -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 -docfiles size=539 +containersize 31480 +containerchecksum 12676ea4b26af792c1abc2a3189c103357b6af4994d3131d8d98e507af24f5d9666bfe4d8abba0ec984eec1ba8c99ab7a6d35813c8e053c79c82a7baa88c973d +doccontainersize 1068236 +doccontainerchecksum bd13bb8a5740df0abda5d5f546138504bf3b6bd54caa95e5f1758cc540af4bbbd055e3868c494f65e9bebe108038205d8537fcffbc821a8f17bc51119e5d479c +docfiles size=571 texmf-dist/doc/info/dir texmf-dist/doc/info/kpathsea.info texmf-dist/doc/info/tds.info texmf-dist/doc/info/web2c.info texmf-dist/doc/kpathsea/kpathsea.html - texmf-dist/doc/kpathsea/kpathsea.pdf + texmf-dist/doc/kpathsea/kpathsea.pdf details="Package documentation" texmf-dist/doc/man/man1/kpseaccess.1 texmf-dist/doc/man/man1/kpseaccess.man1.pdf texmf-dist/doc/man/man1/kpsereadlink.1 @@ -88160,14 +141649,173 @@ docfiles size=539 texmf-dist/doc/man/man1/texhash.man1.pdf texmf-dist/doc/web2c/web2c.html texmf-dist/doc/web2c/web2c.pdf -catalogue-date 2015-03-27 13:27:34 +0100 -catalogue-license lgpl +runfiles size=51 + texmf-dist/web2c/amiga-pl.tcx + texmf-dist/web2c/cp1250cs.tcx + texmf-dist/web2c/cp1250pl.tcx + texmf-dist/web2c/cp1250t1.tcx + texmf-dist/web2c/cp227.tcx + texmf-dist/web2c/cp852-cs.tcx + texmf-dist/web2c/cp852-pl.tcx + texmf-dist/web2c/cp8bit.tcx + texmf-dist/web2c/empty.tcx + texmf-dist/web2c/fmtutil.cnf + texmf-dist/web2c/il1-t1.tcx + texmf-dist/web2c/il2-cs.tcx + texmf-dist/web2c/il2-pl.tcx + texmf-dist/web2c/il2-t1.tcx + texmf-dist/web2c/kam-cs.tcx + texmf-dist/web2c/kam-t1.tcx + texmf-dist/web2c/macce-pl.tcx + texmf-dist/web2c/macce-t1.tcx + texmf-dist/web2c/maz-pl.tcx + texmf-dist/web2c/mktex.cnf + texmf-dist/web2c/mktex.opt + texmf-dist/web2c/mktexdir + texmf-dist/web2c/mktexdir.opt + texmf-dist/web2c/mktexnam + texmf-dist/web2c/mktexnam.opt + texmf-dist/web2c/mktexupd + texmf-dist/web2c/natural.tcx + texmf-dist/web2c/tcvn-t5.tcx + texmf-dist/web2c/texmf.cnf + texmf-dist/web2c/viscii-t5.tcx +catalogue-contact-bugs http://lists.tug.org/tex-k +catalogue-contact-home http://tug.org/kpathsea +catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/kpathsea/ +catalogue-contact-support http://lists.tug.org/tex-k +catalogue-date 2019-01-05 09:54:55 +0100 +catalogue-license lgpl2.1 +catalogue-topics sys-supp + +name kpathsea.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of kpathsea +containersize 42112 +containerchecksum 32f181736e13eaaa6b70cfddf2c700a8a64f539c04e0801f82079f2a262c1f3d69e45b570d9ae033d6cd2442b71e5003de311ddd97eb44f931589773a1f809de +binfiles arch=aarch64-linux size=43 + bin/aarch64-linux/kpseaccess + bin/aarch64-linux/kpsereadlink + bin/aarch64-linux/kpsestat + bin/aarch64-linux/kpsewhich + bin/aarch64-linux/mkocp + bin/aarch64-linux/mkofm + bin/aarch64-linux/mktexfmt + bin/aarch64-linux/mktexlsr + bin/aarch64-linux/mktexmf + bin/aarch64-linux/mktexpk + bin/aarch64-linux/mktextfm + bin/aarch64-linux/texhash + +name kpathsea.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of kpathsea +containersize 50232 +containerchecksum 1d96a9f8714e2cb6ad1b42fdcdb432b5336b2461c3d1ac6f6779fdbe68891314bb6e92caf2a108f4bc8421759cffb7d205e4d101f06c51fa32188bf34863deac +binfiles arch=amd64-freebsd size=43 + bin/amd64-freebsd/kpseaccess + bin/amd64-freebsd/kpsereadlink + bin/amd64-freebsd/kpsestat + bin/amd64-freebsd/kpsewhich + bin/amd64-freebsd/mkocp + bin/amd64-freebsd/mkofm + bin/amd64-freebsd/mktexfmt + bin/amd64-freebsd/mktexlsr + bin/amd64-freebsd/mktexmf + bin/amd64-freebsd/mktexpk + bin/amd64-freebsd/mktextfm + bin/amd64-freebsd/texhash + +name kpathsea.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of kpathsea +containersize 45988 +containerchecksum 3796ac183b8d74c0173f28f7ccb7bb0620b45b576ceaec6783e9856c34a06bf1f027e6275b28d4d24e07ab74a453769834c88db5c322e2fc722b15e8bd2242da +binfiles arch=amd64-netbsd size=47 + bin/amd64-netbsd/kpseaccess + bin/amd64-netbsd/kpsereadlink + bin/amd64-netbsd/kpsestat + bin/amd64-netbsd/kpsewhich + bin/amd64-netbsd/mkocp + bin/amd64-netbsd/mkofm + bin/amd64-netbsd/mktexfmt + bin/amd64-netbsd/mktexlsr + bin/amd64-netbsd/mktexmf + bin/amd64-netbsd/mktexpk + bin/amd64-netbsd/mktextfm + bin/amd64-netbsd/texhash + +name kpathsea.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of kpathsea +containersize 40356 +containerchecksum 4853e80b8b51249ffb4ad2e5571add7c0fca2105a3d484d588b9eb2c351224d7ff7d52c933f81de911346c0646d8364daa0efa8bf93305bbb32030f1dbfd7ad8 +binfiles arch=armhf-linux size=38 + bin/armhf-linux/kpseaccess + bin/armhf-linux/kpsereadlink + bin/armhf-linux/kpsestat + bin/armhf-linux/kpsewhich + bin/armhf-linux/mkocp + bin/armhf-linux/mkofm + bin/armhf-linux/mktexfmt + bin/armhf-linux/mktexlsr + bin/armhf-linux/mktexmf + bin/armhf-linux/mktexpk + bin/armhf-linux/mktextfm + bin/armhf-linux/texhash + +name kpathsea.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of kpathsea +containersize 55144 +containerchecksum dcf722763c25d69c31465b64b159af5fbf3cb0e898fb01647aac157c0aff4c4aba8dbed064aaf53ef0788e88cce51f2767bd89ea098e5e59188371f7f37e79ca +binfiles arch=i386-cygwin size=53 + bin/i386-cygwin/cygkpathsea-6.dll + bin/i386-cygwin/kpseaccess.exe + bin/i386-cygwin/kpsereadlink.exe + bin/i386-cygwin/kpsestat.exe + bin/i386-cygwin/kpsewhich.exe + bin/i386-cygwin/mkocp + bin/i386-cygwin/mkofm + bin/i386-cygwin/mktexfmt + bin/i386-cygwin/mktexlsr + bin/i386-cygwin/mktexmf + bin/i386-cygwin/mktexpk + bin/i386-cygwin/mktextfm + bin/i386-cygwin/texhash + +name kpathsea.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of kpathsea +containersize 44332 +containerchecksum f4804ffd0dc53bbbb5156ca2a72ae1ca8458fe8cd8a8e46da1d35ee10eb1bf64adea6feb1b0be472d5f7bffdfc6b439d9b92999cbf7368186cb362d54c0cdfb3 +binfiles arch=i386-freebsd size=38 + bin/i386-freebsd/kpseaccess + bin/i386-freebsd/kpsereadlink + bin/i386-freebsd/kpsestat + bin/i386-freebsd/kpsewhich + bin/i386-freebsd/mkocp + bin/i386-freebsd/mkofm + bin/i386-freebsd/mktexfmt + bin/i386-freebsd/mktexlsr + bin/i386-freebsd/mktexmf + bin/i386-freebsd/mktexpk + bin/i386-freebsd/mktextfm + bin/i386-freebsd/texhash name kpathsea.i386-linux category TLCore -revision 37207 +revision 50281 shortdesc i386-linux files of kpathsea -binfiles arch=i386-linux size=47 +containersize 50296 +containerchecksum 2b7857298dfc2477c600d74d399f401ae3171b12de9abfb12ce72c2ed0d4bd61b4e9dc879e8204a77a5abda2a4bc8dda5cca54fd4a917252e509c95797e7b2cc +binfiles arch=i386-linux size=43 bin/i386-linux/kpseaccess bin/i386-linux/kpsereadlink bin/i386-linux/kpsestat @@ -88181,10 +141829,195 @@ binfiles arch=i386-linux size=47 bin/i386-linux/mktextfm bin/i386-linux/texhash +name kpathsea.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of kpathsea +containersize 42852 +containerchecksum adec1647b7a2fe45679af2276e23a234542229a1dcbaa8b20110fad29327ca4c7602b899b1d194088393b5f1b612bd52b2a96702f49fe8e8fde3773ef1e0d8fa +binfiles arch=i386-netbsd size=45 + bin/i386-netbsd/kpseaccess + bin/i386-netbsd/kpsereadlink + bin/i386-netbsd/kpsestat + bin/i386-netbsd/kpsewhich + bin/i386-netbsd/mkocp + bin/i386-netbsd/mkofm + bin/i386-netbsd/mktexfmt + bin/i386-netbsd/mktexlsr + bin/i386-netbsd/mktexmf + bin/i386-netbsd/mktexpk + bin/i386-netbsd/mktextfm + bin/i386-netbsd/texhash + +name kpathsea.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of kpathsea +containersize 49056 +containerchecksum 7e1fa5d433977a672ae47d15e6b677b735dc8f2af8de189380ab117ec334d0af8e65c8128348e14822dc69181c92f5a5b0fae5cfef75c5ad94b4f41d3cc71a6a +binfiles arch=i386-solaris size=40 + bin/i386-solaris/kpseaccess + bin/i386-solaris/kpsereadlink + bin/i386-solaris/kpsestat + bin/i386-solaris/kpsewhich + bin/i386-solaris/mkocp + bin/i386-solaris/mkofm + bin/i386-solaris/mktexfmt + bin/i386-solaris/mktexlsr + bin/i386-solaris/mktexmf + bin/i386-solaris/mktexpk + bin/i386-solaris/mktextfm + bin/i386-solaris/texhash + +name kpathsea.win32 +category TLCore +revision 50155 +shortdesc win32 files of kpathsea +containersize 508428 +containerchecksum 2d8990e05d041d1df3bbc782c6f899e4d7901e111ce64bcab7e0981d53e3ac76698171366cf8f8f52e97c480be616ffff9446ccf00a5030f3104bbf10d190a91 +binfiles arch=win32 size=362 + bin/win32/kpathsea631.dll + bin/win32/kpseaccess.exe + bin/win32/kpsereadlink.exe + bin/win32/kpsestat.exe + bin/win32/kpsewhich.exe + bin/win32/mkocp.exe + bin/win32/mkofm.exe + bin/win32/mktexfmt.exe + bin/win32/mktexlsr.exe + bin/win32/mktexmf.exe + bin/win32/mktexpk.exe + bin/win32/mktextfm.exe + bin/win32/mktexupd.exe + bin/win32/msvcp140.dll + bin/win32/msvcr100.dll + bin/win32/texhash.exe + +name kpathsea.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of kpathsea +containersize 53416 +containerchecksum a33e4136676406b283c916734bc1d500a651646e818e1b9e7e1968e075c2d3019d994d4fb9019c9416f123ccf3ca2b4aca36ae33989abdf64b1c700757e468b4 +binfiles arch=x86_64-cygwin size=50 + bin/x86_64-cygwin/cygkpathsea-6.dll + bin/x86_64-cygwin/kpseaccess.exe + bin/x86_64-cygwin/kpsereadlink.exe + bin/x86_64-cygwin/kpsestat.exe + bin/x86_64-cygwin/kpsewhich.exe + bin/x86_64-cygwin/mkocp + bin/x86_64-cygwin/mkofm + bin/x86_64-cygwin/mktexfmt + bin/x86_64-cygwin/mktexlsr + bin/x86_64-cygwin/mktexmf + bin/x86_64-cygwin/mktexpk + bin/x86_64-cygwin/mktextfm + bin/x86_64-cygwin/texhash + +name kpathsea.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of kpathsea +containersize 48648 +containerchecksum 8c238d28effd8b2b6987c3ce7cef820e6627cdd7d1e52e2f2412094a9136df73bfb95db9fe59c0691b0bdde6b723da77a89afe14a223f3398a24d098a612c6b2 +binfiles arch=x86_64-darwin size=44 + bin/x86_64-darwin/kpseaccess + bin/x86_64-darwin/kpsereadlink + bin/x86_64-darwin/kpsestat + bin/x86_64-darwin/kpsewhich + bin/x86_64-darwin/mkocp + bin/x86_64-darwin/mkofm + bin/x86_64-darwin/mktexfmt + bin/x86_64-darwin/mktexlsr + bin/x86_64-darwin/mktexmf + bin/x86_64-darwin/mktexpk + bin/x86_64-darwin/mktextfm + bin/x86_64-darwin/texhash + +name kpathsea.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of kpathsea +containersize 47484 +containerchecksum 864e09fd9ac1e144a95bb6c2b1dc3d85f4e47b5310a8b4906e3875aab081f3d3fdfe8fc67bd784ffeb2a7b2b70cbefe06121e6c59b369600094c78967cc4066b +binfiles arch=x86_64-darwinlegacy size=44 + bin/x86_64-darwinlegacy/kpseaccess + bin/x86_64-darwinlegacy/kpsereadlink + bin/x86_64-darwinlegacy/kpsestat + bin/x86_64-darwinlegacy/kpsewhich + bin/x86_64-darwinlegacy/mkocp + bin/x86_64-darwinlegacy/mkofm + bin/x86_64-darwinlegacy/mktexfmt + bin/x86_64-darwinlegacy/mktexlsr + bin/x86_64-darwinlegacy/mktexmf + bin/x86_64-darwinlegacy/mktexpk + bin/x86_64-darwinlegacy/mktextfm + bin/x86_64-darwinlegacy/texhash + +name kpathsea.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of kpathsea +containersize 47944 +containerchecksum 1df82d2ed4eb65c82e41a16e64144ece82b81dac2f88952cb9ef41263db9d33e0f4fcd2f6b6f4fda60572396c494b5fa3a3dbacc4df7b90ac2b7da785351c99f +binfiles arch=x86_64-linux size=40 + bin/x86_64-linux/kpseaccess + bin/x86_64-linux/kpsereadlink + bin/x86_64-linux/kpsestat + bin/x86_64-linux/kpsewhich + bin/x86_64-linux/mkocp + bin/x86_64-linux/mkofm + bin/x86_64-linux/mktexfmt + bin/x86_64-linux/mktexlsr + bin/x86_64-linux/mktexmf + bin/x86_64-linux/mktexpk + bin/x86_64-linux/mktextfm + bin/x86_64-linux/texhash + +name kpathsea.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of kpathsea +containersize 52276 +containerchecksum e4b8b1968e18512017c20e80a3f884cc7c2d52e601ed9014bf10d5719d37e85587dd73a1d4d7fde7ef0735455bc105e3458e83b1d4e9932d086ac0ff5fa717cb +binfiles arch=x86_64-linuxmusl size=47 + bin/x86_64-linuxmusl/kpseaccess + bin/x86_64-linuxmusl/kpsereadlink + bin/x86_64-linuxmusl/kpsestat + bin/x86_64-linuxmusl/kpsewhich + bin/x86_64-linuxmusl/mkocp + bin/x86_64-linuxmusl/mkofm + bin/x86_64-linuxmusl/mktexfmt + bin/x86_64-linuxmusl/mktexlsr + bin/x86_64-linuxmusl/mktexmf + bin/x86_64-linuxmusl/mktexpk + bin/x86_64-linuxmusl/mktextfm + bin/x86_64-linuxmusl/texhash + +name kpathsea.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of kpathsea +containersize 52392 +containerchecksum 428b8334a89e45c7a7d204deb71d57951f8e6fa6fcd44f620313e4aee7e8ffd2bc7179557e222090f70c5e109450024c2149a392b5d021877bc48600e017eb3c +binfiles arch=x86_64-solaris size=46 + bin/x86_64-solaris/kpseaccess + bin/x86_64-solaris/kpsereadlink + bin/x86_64-solaris/kpsestat + bin/x86_64-solaris/kpsewhich + bin/x86_64-solaris/mkocp + bin/x86_64-solaris/mkofm + bin/x86_64-solaris/mktexfmt + bin/x86_64-solaris/mktexlsr + bin/x86_64-solaris/mktexmf + bin/x86_64-solaris/mktexpk + bin/x86_64-solaris/mktextfm + bin/x86_64-solaris/texhash + name kpfonts category Package -revision 29803 -shortdesc A complete set of fonts for text and mathematics. +revision 48470 +shortdesc A complete set of fonts for text and mathematics relocated 1 longdesc The family contains text fonts in roman, sans-serif and longdesc monospaced shapes, with true small caps and old-style numbers; @@ -88202,71 +142035,32 @@ longdesc originally derived from URW Palladio (with URW's agreement) longdesc though the fonts are very clearly different in appearance from longdesc their parent. execute addMap kpfonts.map -runfiles size=3918 - RELOC/fonts/afm/public/kpfonts/jkpbit8a.afm - RELOC/fonts/afm/public/kpfonts/jkpbitc.afm - RELOC/fonts/afm/public/kpfonts/jkpbite.afm - RELOC/fonts/afm/public/kpfonts/jkpbn8a.afm - RELOC/fonts/afm/public/kpfonts/jkpbnc.afm - RELOC/fonts/afm/public/kpfonts/jkpbne.afm - RELOC/fonts/afm/public/kpfonts/jkpbsc8a.afm - RELOC/fonts/afm/public/kpfonts/jkpbsce.afm - RELOC/fonts/afm/public/kpfonts/jkpkbsc.afm - RELOC/fonts/afm/public/kpfonts/jkpkmsc.afm - RELOC/fonts/afm/public/kpfonts/jkplbit8a.afm - RELOC/fonts/afm/public/kpfonts/jkplbitc.afm - RELOC/fonts/afm/public/kpfonts/jkplbite.afm - RELOC/fonts/afm/public/kpfonts/jkplbn8a.afm - RELOC/fonts/afm/public/kpfonts/jkplbnc.afm - RELOC/fonts/afm/public/kpfonts/jkplbne.afm - RELOC/fonts/afm/public/kpfonts/jkplbsc8a.afm - RELOC/fonts/afm/public/kpfonts/jkplbsce.afm - RELOC/fonts/afm/public/kpfonts/jkplkbsc.afm - RELOC/fonts/afm/public/kpfonts/jkplkmsc.afm - RELOC/fonts/afm/public/kpfonts/jkplmit8a.afm - RELOC/fonts/afm/public/kpfonts/jkplmitc.afm - RELOC/fonts/afm/public/kpfonts/jkplmite.afm - RELOC/fonts/afm/public/kpfonts/jkplmn8a.afm - RELOC/fonts/afm/public/kpfonts/jkplmnc.afm - RELOC/fonts/afm/public/kpfonts/jkplmne.afm - RELOC/fonts/afm/public/kpfonts/jkplmsc8a.afm - RELOC/fonts/afm/public/kpfonts/jkplmsce.afm - RELOC/fonts/afm/public/kpfonts/jkpmit8a.afm - RELOC/fonts/afm/public/kpfonts/jkpmitc.afm - RELOC/fonts/afm/public/kpfonts/jkpmite.afm - RELOC/fonts/afm/public/kpfonts/jkpmn8a.afm - RELOC/fonts/afm/public/kpfonts/jkpmnc.afm - RELOC/fonts/afm/public/kpfonts/jkpmne.afm - RELOC/fonts/afm/public/kpfonts/jkpmsc8a.afm - RELOC/fonts/afm/public/kpfonts/jkpmsce.afm - RELOC/fonts/afm/public/kpfonts/jkpssbn8a.afm - RELOC/fonts/afm/public/kpfonts/jkpssbnc.afm - RELOC/fonts/afm/public/kpfonts/jkpssbne.afm - RELOC/fonts/afm/public/kpfonts/jkpssbsc8a.afm - RELOC/fonts/afm/public/kpfonts/jkpssbsce.afm - RELOC/fonts/afm/public/kpfonts/jkpsskbsc.afm - RELOC/fonts/afm/public/kpfonts/jkpsskmsc.afm - RELOC/fonts/afm/public/kpfonts/jkpssmn8a.afm - RELOC/fonts/afm/public/kpfonts/jkpssmnc.afm - RELOC/fonts/afm/public/kpfonts/jkpssmne.afm - RELOC/fonts/afm/public/kpfonts/jkpssmsc8a.afm - RELOC/fonts/afm/public/kpfonts/jkpssmsce.afm - RELOC/fonts/afm/public/kpfonts/jkpttbn8a.afm - RELOC/fonts/afm/public/kpfonts/jkpttbnc.afm - RELOC/fonts/afm/public/kpfonts/jkpttbne.afm - RELOC/fonts/afm/public/kpfonts/jkpttmn8a.afm - RELOC/fonts/afm/public/kpfonts/jkpttmnc.afm - RELOC/fonts/afm/public/kpfonts/jkpttmne.afm +containersize 2224664 +containerchecksum 65cb12b6d10c91605db91de58fd33597720a4d8a7cded8a4b60c5bb3c1f2e7220c5354488a75e5a25ed0f8162d42689b6877b3a7efe5c1a0758dab237564c5ae +doccontainersize 1759296 +doccontainerchecksum 5157ad4e67bfb1f0ba54cb34c2896a856d167bdd89a9f4bc4d69ad0b6f4899ec53cb1d22582b352adbf28d7af9458e2d78147580740e7c41437855eb30557a17 +docfiles size=544 + RELOC/doc/fonts/kpfonts/Kpfonts-Doc-French.pdf details="Package documentation (French)" language="fr" + RELOC/doc/fonts/kpfonts/Kpfonts-Doc-French.tex + RELOC/doc/fonts/kpfonts/README.txt details="Readme" + RELOC/doc/fonts/kpfonts/christophe.cls + RELOC/doc/fonts/kpfonts/kpfonts-abstract.pdf details="Summary of features" + RELOC/doc/fonts/kpfonts/kpfonts-abstract.tex + RELOC/doc/fonts/kpfonts/kpfonts-math-symbols-tables.pdf + RELOC/doc/fonts/kpfonts/kpfonts-math-symbols-tables.tex + RELOC/doc/fonts/kpfonts/kpfonts.pdf details="Package documentation (English)" language="en" + RELOC/doc/fonts/kpfonts/kpfonts.tex +srccontainersize 223556 +srccontainerchecksum f70870ffa7dd55da69af7d8274fd3089c047191197f4f4afef4908a93e56e9f1b8b1655cf8042138ddaf95c24240df73549bafc6e2a3b3002b0653bb2e2ac592 +srcfiles size=76 + RELOC/source/fonts/kpfonts/afm.zip + RELOC/source/fonts/kpfonts/kpfonts-fontinst.zip +runfiles size=3713 RELOC/fonts/enc/dvips/kpfonts/kpfonts-expert-sc.enc RELOC/fonts/enc/dvips/kpfonts/kpfonts-expert-tt.enc RELOC/fonts/enc/dvips/kpfonts/kpfonts-expert.enc RELOC/fonts/enc/dvips/kpfonts/kpfonts-large-sc.enc - RELOC/fonts/enc/pdftex/kpfonts/kpfonts-expert-sc.enc - RELOC/fonts/enc/pdftex/kpfonts/kpfonts-expert-tt.enc - RELOC/fonts/enc/pdftex/kpfonts/kpfonts-expert.enc - RELOC/fonts/enc/pdftex/kpfonts/kpfonts-large-sc.enc RELOC/fonts/map/dvips/kpfonts/kpfonts.map - RELOC/fonts/source/public/kpfonts/kpfonts-fontinst.zip RELOC/fonts/tfm/public/kpfonts/jkpbex.tfm RELOC/fonts/tfm/public/kpfonts/jkpbexa.tfm RELOC/fonts/tfm/public/kpfonts/jkpbit7c.tfm @@ -90117,72 +143911,180 @@ runfiles size=3918 RELOC/tex/latex/kpfonts/ujkpsyc.fd RELOC/tex/latex/kpfonts/ujkpsyd.fd RELOC/tex/latex/kpfonts/ujkpsydw.fd -docfiles size=567 - RELOC/doc/fonts/kpfonts/Kpfonts-Doc-French.pdf - RELOC/doc/fonts/kpfonts/Kpfonts-Doc-French.tex - RELOC/doc/fonts/kpfonts/christophe.cls - RELOC/doc/fonts/kpfonts/kpfonts-abstract.pdf - RELOC/doc/fonts/kpfonts/kpfonts-abstract.tex - RELOC/doc/fonts/kpfonts/kpfonts-math-symbols-tables.pdf - RELOC/doc/fonts/kpfonts/kpfonts-math-symbols-tables.tex - RELOC/doc/fonts/kpfonts/kpfonts.pdf - RELOC/doc/fonts/kpfonts/kpfonts.tex - RELOC/doc/fonts/kpfonts/readme.txt catalogue-ctan /fonts/kpfonts -catalogue-date 2014-05-10 17:23:39 +0200 +catalogue-date 2018-08-23 18:35:53 +0200 catalogue-license gpl -catalogue-version 3.31 +catalogue-topics font font-type1 font-serif font-sans font-mono font-maths +catalogue-version 3.33 name ksfh_nat category Package revision 24825 catalogue ksfh-nat -shortdesc BibTeX style for KSFH Munich. +shortdesc BibTeX style for KSFH Munich relocated 1 longdesc The package supports bibliographies as standard for KSFH longdesc (Katholische Stiftungsfachhochschule) Munich. BibTeX entries in longdesc article, book, inbook, incollection and misc formats are longdesc supported. +containersize 3968 +containerchecksum 8893133ed49c9b4ba7472bc80a4e5583ec2546838e261fa2cf9aee188a0b00bca45de05c4e969af0b6f222a9668c3a7fac0caadbb180c10500fc53ae8c9f56c6 runfiles size=6 RELOC/bibtex/bst/ksfh_nat/ksfh_nat.bst -catalogue-ctan /biblio/bibtex/contrib/ksfh_nat/ksfh_nat.bst -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-ctan /biblio/bibtex/contrib/ksfh_nat +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics bibtex-sty catalogue-version 1.1 +name ksp-thesis +category Package +revision 39080 +shortdesc A LaTeX class for theses published with KIT Scientific Publishing +relocated 1 +longdesc This package provides a LaTeX class intended for authors who +longdesc want to publish their thesis or other scientific work with KIT +longdesc Scientific Publishing (KSP). The class is based on the scrbook +longdesc class of the KOMA-script bundle in combination with the +longdesc ClassicThesis and ArsClassica packages. It modifies some of the +longdesc layout and style definitions of these packages in order to +longdesc provide a document layout that should be compatible with the +longdesc requirements by KSP. +containersize 4340 +containerchecksum 3a250167d8810e3e81c5b6f86dad57e191a2a8387b5c7701e9b176cb007ebed79bd11867caa63e9cb9d3412fd59baeca7ff8e7589b11c4ef1144678552957216 +doccontainersize 146928 +doccontainerchecksum ea4ff7ccabb237b113511b58ff767b494b213cec1382467ea8b95b72abe9c0d361f39781940c976075157bae93e8e32364f716cdba2a07b8a7d72c0970a31cf9 +docfiles size=94 + RELOC/doc/latex/ksp-thesis/LISTOFFILES + RELOC/doc/latex/ksp-thesis/README.md details="Readme" + RELOC/doc/latex/ksp-thesis/demo/full/content/appendix.tex + RELOC/doc/latex/ksp-thesis/demo/full/content/appendix/bibliography.tex + RELOC/doc/latex/ksp-thesis/demo/full/content/appendix/lists.tex + RELOC/doc/latex/ksp-thesis/demo/full/content/docinfo.tex + RELOC/doc/latex/ksp-thesis/demo/full/content/front/abstract.tex + RELOC/doc/latex/ksp-thesis/demo/full/content/front/acknowledgments.tex + RELOC/doc/latex/ksp-thesis/demo/full/content/front/dirtytitle.tex + RELOC/doc/latex/ksp-thesis/demo/full/content/front/lists.tex + RELOC/doc/latex/ksp-thesis/demo/full/content/front/publications.tex + RELOC/doc/latex/ksp-thesis/demo/full/content/front/titlepage.tex + RELOC/doc/latex/ksp-thesis/demo/full/content/front/toc.tex + RELOC/doc/latex/ksp-thesis/demo/full/content/frontmatter.tex + RELOC/doc/latex/ksp-thesis/demo/full/content/mainmatter.tex + RELOC/doc/latex/ksp-thesis/demo/full/example.tex + RELOC/doc/latex/ksp-thesis/demo/full/preamble/layout.tex + RELOC/doc/latex/ksp-thesis/demo/minimal/example.tex + RELOC/doc/latex/ksp-thesis/ksp-thesis.pdf details="Package documentation" + RELOC/doc/latex/ksp-thesis/ksp-thesis.tex +runfiles size=4 + RELOC/tex/latex/ksp-thesis/ksp-thesis.cls +catalogue-contact-repository https://github.com/GORywwyN/ksp-thesis/tree/master/release/ +catalogue-ctan /macros/latex/contrib/ksp-thesis +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics class dissertation +catalogue-version 1.0.2 + name ktv-texdata category Package revision 27369 -shortdesc Extract subsets of documents. +shortdesc Extract subsets of documents relocated 1 longdesc The package defines an exercice environment which numbers every longdesc exercise, and a command \get to extract a collection whose longdesc argument is a comma-separated set of exercise index numbers. longdesc While the package was designed for teachers constructing tables longdesc of exercises, it plainly has more general application. -runfiles size=3 - RELOC/tex/latex/ktv-texdata/ktv-buildnum.sty - RELOC/tex/latex/ktv-texdata/ktv-texdata.sty +containersize 2832 +containerchecksum c2f3e86494993e6e56f131b9e7105ee2d15179b96580982ae7fba9e32c3e9889159ae767d96d95111f2eb052bd61f0c3c15406ae3af70b359e3b5ce081a6978a +doccontainersize 192368 +doccontainerchecksum d930db31105dbcfe3df4184422115d82fda7efa93d00eb8f9fefa0eff3893602fb4db9e7be26d2a44c0b3cb56e8e9810f61bc660c15e49c23880c3f0cd44025b docfiles size=60 - RELOC/doc/latex/ktv-texdata/README + RELOC/doc/latex/ktv-texdata/README details="Readme" RELOC/doc/latex/ktv-texdata/README.txt.doc RELOC/doc/latex/ktv-texdata/ktv-data.tex RELOC/doc/latex/ktv-texdata/ktv-test.KTVhint RELOC/doc/latex/ktv-texdata/ktv-test.tex RELOC/doc/latex/ktv-texdata/ktv-texdata.ktvnum - RELOC/doc/latex/ktv-texdata/ktv-texdata.pdf + RELOC/doc/latex/ktv-texdata/ktv-texdata.pdf details="Package documentation" +srccontainersize 14640 +srccontainerchecksum 1f7eebfcdbdeae66dbff4037a01173bc9383f75b5d7704755a10c442d63380d286bb4532546e036d5c558dc399defe3f9d3d035bc67a5ba90f8482e427b507ce srcfiles size=15 RELOC/source/latex/ktv-texdata/ktv-texdata.dtx RELOC/source/latex/ktv-texdata/ktv-texdata.ins +runfiles size=3 + RELOC/tex/latex/ktv-texdata/ktv-buildnum.sty + RELOC/tex/latex/ktv-texdata/ktv-texdata.sty catalogue-ctan /macros/latex/contrib/ktv-texdata -catalogue-date 2012-08-13 12:34:19 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics data-sel catalogue-version 05.34 +name ku-template +category Package +revision 45935 +shortdesc Copenhagen University or faculty logo for front page +relocated 1 +longdesc A comprehensive package for adding University of Copenhagen or +longdesc faculty logo to your front page. For use by student or staff at +longdesc University of Copenhagen (Kobenhavns Universitet). +containersize 1012 +containerchecksum 4603e59129f749b0eb065283bff9cddcafcd1096627f196749be09c19a4a79848564ee9343f14f31dddb2e37a01e222bf08531d5b3237bb906cf88efb427fdb9 +doccontainersize 226880 +doccontainerchecksum 6b8535ef84bd1ccf70d16f7098826b5acea602b22cd461df66cdda64c4afe36f9ef6c4386227c5317a31767e4694c388f7a2fd87fe8fe06697af4bf5202b29bc +docfiles size=128 + RELOC/doc/latex/ku-template/README.txt details="Readme" + RELOC/doc/latex/ku-template/images/hum-da.pdf + RELOC/doc/latex/ku-template/images/hum-en.pdf + RELOC/doc/latex/ku-template/images/jur-da.pdf + RELOC/doc/latex/ku-template/images/jur-en.pdf + RELOC/doc/latex/ku-template/images/ku-da.pdf + RELOC/doc/latex/ku-template/images/ku-en.pdf + RELOC/doc/latex/ku-template/images/sam-da.pdf + RELOC/doc/latex/ku-template/images/sam-en.pdf + RELOC/doc/latex/ku-template/images/sci-da.pdf + RELOC/doc/latex/ku-template/images/sci-en.pdf + RELOC/doc/latex/ku-template/images/sun-da.pdf + RELOC/doc/latex/ku-template/images/sun-en.pdf + RELOC/doc/latex/ku-template/images/teo-da.pdf + RELOC/doc/latex/ku-template/images/teo-en.pdf +runfiles size=1 + RELOC/tex/latex/ku-template/ku-template.sty +catalogue-ctan /macros/latex/contrib/ku-template +catalogue-date 2017-11-28 10:44:33 +0100 +catalogue-license mit +catalogue-topics logo +catalogue-version 0.02 + +name kurdishlipsum +category Package +revision 47518 +shortdesc A 'lipsum' package for the Kurdish language +relocated 1 +longdesc This package provides lipsum-like facilities for the Kurdish +longdesc language. The package gives you easy access to the Kurdish +longdesc poetry and balladry texts of the Diwany Vafaiy, Ahmedy Xani, +longdesc Naly, Mahwy,.... The package needs to be run under XeLaTeX. +containersize 34900 +containerchecksum d7160d78d7f0d8d7771740f030cf1c76b57aa9ec2d179887fe4065337e35bef528b522c666eca0974aea6696033678dec5446a9a198fb139f2d2469c8cd47eff +doccontainersize 55448 +doccontainerchecksum 6af516595f4cc5b090398078977bb37e97a5aa4b28a578c068931eff7d34fa2cac379b53e70c8bcf270c998fa6fbcbe354b56d0299657fcce9a4e076a87b36d9 +docfiles size=17 + RELOC/doc/xelatex/kurdishlipsum/README details="Readme" + RELOC/doc/xelatex/kurdishlipsum/kurdishlipsum.pdf details="Package documentation" + RELOC/doc/xelatex/kurdishlipsum/kurdishlipsum.tex +runfiles size=38 + RELOC/tex/xelatex/kurdishlipsum/kurdishlipsum.sty +catalogue-ctan /macros/xetex/latex/kurdishlipsum +catalogue-date 2018-05-07 04:39:01 +0200 +catalogue-license lppl +catalogue-topics macro-supp dummy-gen kurdish xetex +catalogue-version 1.1 + name kurier category Package revision 19612 -shortdesc A two-element sans-serif typeface. +shortdesc A two-element sans-serif typeface relocated 1 longdesc Kurier is a two-element sans-serif typeface. It was designed longdesc for a diploma in typeface design at the Warsaw Academy of Fine @@ -90197,6 +144099,24 @@ longdesc T2 (abc), and OT2--Cyrillic, T5 (Vietnamese), OT4, QX, texansi longdesc and--nonstandard (IL2 for the Czech fonts), as well as longdesc supporting macros and files defining fonts for LaTeX. execute addMap kurier.map +containersize 3862448 +containerchecksum 4f727e8733824e8c516e3ab1286cf0c834413a6ab52bccb5519c9a14a526cd3397a6d0a264679dc8b7d80cfc1d75ab11dcd2c02734ea63d5a2a5cebd3ea3c24c +doccontainersize 465112 +doccontainerchecksum 7fda14c05f105d341a31561e761517ce12b3e5ceabc01e0c5c8552ddaf55be1863a22545b268026c844b23f03e8700350f0dede79ca8fda62e7a2672fa510407 +docfiles size=146 + RELOC/doc/fonts/kurier/00readme.eng details="Outline in English" language="en" + RELOC/doc/fonts/kurier/00readme.pol details="Outline in Polish" language="pl" + RELOC/doc/fonts/kurier/GUST-FONT-LICENSE.txt + RELOC/doc/fonts/kurier/kurier-info-src.zip + RELOC/doc/fonts/kurier/kurier-info.pdf details="Package documentation" + RELOC/doc/fonts/kurier/kurier-latex-cyr.tex + RELOC/doc/fonts/kurier/kurier-latex-math.tex + RELOC/doc/fonts/kurier/kurier-latex-pl.tex + RELOC/doc/fonts/kurier/kurier-latex-t2a.tex + RELOC/doc/fonts/kurier/kurier-latex-t5.tex + RELOC/doc/fonts/kurier/kurier-mathtest.tex + RELOC/doc/fonts/kurier/kurier-table.tex + RELOC/doc/fonts/kurier/manifest.txt runfiles size=4363 RELOC/fonts/afm/nowacki/kurier/kurierb.afm RELOC/fonts/afm/nowacki/kurier/kurierbi.afm @@ -90798,72 +144718,132 @@ runfiles size=4363 RELOC/tex/latex/kurier/ts1kurierl.fd RELOC/tex/latex/kurier/ts1kurierlc.fd RELOC/tex/plain/kurier/kurier-math.tex -docfiles size=146 - RELOC/doc/fonts/kurier/00readme.eng - RELOC/doc/fonts/kurier/00readme.pol - RELOC/doc/fonts/kurier/GUST-FONT-LICENSE.txt - RELOC/doc/fonts/kurier/kurier-info-src.zip - RELOC/doc/fonts/kurier/kurier-info.pdf - RELOC/doc/fonts/kurier/kurier-latex-cyr.tex - RELOC/doc/fonts/kurier/kurier-latex-math.tex - RELOC/doc/fonts/kurier/kurier-latex-pl.tex - RELOC/doc/fonts/kurier/kurier-latex-t2a.tex - RELOC/doc/fonts/kurier/kurier-latex-t5.tex - RELOC/doc/fonts/kurier/kurier-mathtest.tex - RELOC/doc/fonts/kurier/kurier-table.tex - RELOC/doc/fonts/kurier/manifest.txt catalogue-ctan /fonts/kurier -catalogue-date 2014-05-10 17:23:39 +0200 -catalogue-license gfsl +catalogue-date 2018-06-16 10:39:58 +0200 +catalogue-license gfl +catalogue-topics font font-otf font-type1 catalogue-version 0.995b +name kvmap +category Package +revision 48708 +shortdesc Create Karnaugh maps with LaTeX +relocated 1 +longdesc This LaTeX package allows the creation of (even large) Karnaugh +longdesc maps. It provides a tabular-like input syntax and support for +longdesc drawing bundles (implicants) around adjacent values. It is +longdesc based on an answer at StackExchange. +containersize 2640 +containerchecksum e9482c26c7f188d1bf45e5d577899efbadb221485e037460f233ca3b1fdf540f9984a371f62d5dbafb6bd8d9840c6e26ab3173152ec5b128e9a3522540db7912 +doccontainersize 108968 +doccontainerchecksum fe9cb7b39aeda44d826920898c48001406801ba9e651af34ea9d25ec85141e6a0a6cf4eb7f95451c84da5c7716d4214292c7e3f9e442d0ab5aca1c16e17e5c94 +docfiles size=29 + RELOC/doc/latex/kvmap/README.md details="Readme" + RELOC/doc/latex/kvmap/kvmap.pdf details="Package documentation" +srccontainersize 8380 +srccontainerchecksum 07562b173f46aa4787d3e3d279f37f59418260c9c610ecc476c62cd8c96f7f59629a126af024de5664cc8c8dc8620bf7fa5fa00baac009c62575c2ad47008b7d +srcfiles size=9 + RELOC/source/latex/kvmap/kvmap.dtx + RELOC/source/latex/kvmap/kvmap.ins +runfiles size=3 + RELOC/tex/latex/kvmap/kvmap.sty +catalogue-also karnaugh-map karnaughmap +catalogue-contact-bugs https://gitlab.com/benfrank/kvmap/issues +catalogue-contact-home https://gitlab.com/benfrank/kvmap +catalogue-ctan /macros/latex/contrib/kvmap +catalogue-date 2018-09-22 04:58:35 +0200 +catalogue-license lppl1.3c +catalogue-topics maths engineering +catalogue-version 0.3.1 + name l2picfaq category Package revision 19601 -shortdesc LaTeX pictures "how-to" (German). +shortdesc LaTeX pictures "how-to" (German) relocated 1 longdesc The document (in German) is a collection of "how-to" notes longdesc about LaTeX and pictures. The aim of the document is to provide longdesc a solution, in the form of some sample code, for every problem. +containersize 484 +containerchecksum c6ea1d8ac189784d6581eaf9cae83a83beba9adfd32536f43c04633f7cc457353f0dbb69407332a29856633552910bfdd31cf85332c6dfb05da2cbab88ec67a2 +doccontainersize 364380 +doccontainerchecksum e4202740ea2842296338e9d635b27c35801f4a5f8b21eb8dc0c1db572da0718fc5adcefc5c122793618336272606ec27f02f13825f8d2a6cf4b83583ea372288 docfiles size=166 - RELOC/doc/latex/l2picfaq/README + RELOC/doc/latex/l2picfaq/README details="Package README" language="de" RELOC/doc/latex/l2picfaq/ctanlion.pdf RELOC/doc/latex/l2picfaq/gfdl.tex - RELOC/doc/latex/l2picfaq/l2picfaq.pdf + RELOC/doc/latex/l2picfaq/l2picfaq.pdf details="The document itself" language="de" RELOC/doc/latex/l2picfaq/l2picfaq.tex +catalogue-also epslatex catalogue-ctan /info/l2picfaq/german -catalogue-date 2012-04-26 12:50:58 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license fdl +catalogue-topics faq catalogue-version 1.50 +name l2tabu +category Package +revision 39597 +shortdesc Obsolete packages and commands +relocated 1 +longdesc The "sins" of LaTeX users, and how to correct them. The +longdesc document provides a list of obsolete packages and commands. +longdesc This original is in German; it has been translated into +longdesc English, French, Italian, and Spanish. +containersize 500 +containerchecksum 2e94e77ab5c8327396d2ff714f7c6c1e8c91a3ab0f35be411d11f617d39dd815d4bf1c6eb1dd0be5154c1d702697c08b8658c8371dce3dca0349712a5dac2d1b +doccontainersize 245464 +doccontainerchecksum 84673b59100568d1472f3221ff0cc35b8e8512ece38701f35d60265d316aa52186642def2d66885df47e2f613ae042a86972b7958349b7b2b83e754d72163df6 +docfiles size=74 + RELOC/doc/latex/l2tabu/CHANGES + RELOC/doc/latex/l2tabu/README details="Readme" + RELOC/doc/latex/l2tabu/l2tabu.pdf details="The document itself" language="de" + RELOC/doc/latex/l2tabu/l2tabu.tex +catalogue-ctan /info/l2tabu/german +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics german-doc +catalogue-version 2.4 + name l2tabu-english category Package revision 15878 -shortdesc English translation of "Obsolete packages and commands". +shortdesc English translation of "Obsolete packages and commands" relocated 1 longdesc English translation of the l2tabu practical guide to LaTeX2e by longdesc Mark Trettin. A list of obsolete packages and commands. +containersize 444 +containerchecksum 66e1d62c731a021c1be2fb6e9e3034c7dec59edfd03dc2bb0042a37ff6f0d967e59a023fee994f45cf2c9b15e64445b45c48a207e21b7edb81d8a538b6c8eb6b +doccontainersize 266556 +doccontainerchecksum 250ebdbd2a6dd3dd7d05c35cea0ea8fdb969bef983bc0a5f2c804129091f22ac0a499df482a1a990bf278ad94befc774d354341b30f9a0cd67539e1f63074ee4 docfiles size=95 - RELOC/doc/latex/l2tabu-english/l2tabuen.pdf + RELOC/doc/latex/l2tabu-english/l2tabuen.pdf details="The document itself" RELOC/doc/latex/l2tabu-english/l2tabuen.tex catalogue-ctan /info/l2tabu/english -catalogue-date 2012-04-26 12:50:58 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics documentation translation catalogue-version 1.8.5.7 name l2tabu-french category Package revision 31315 -shortdesc French translation of l2tabu. +shortdesc French translation of l2tabu relocated 1 longdesc French translation of l2tabu. +containersize 380 +containerchecksum 8478211e871e38765cbbd36f8f571e63b5cfb9dc652107a4a9178c11a16b419eba7314246878507f22bf7f66818f8c5d1516a527deda5a2dc6c30f9260f23b59 +doccontainersize 269348 +doccontainerchecksum f489b0bd07b60797b53fc9010c699029dabccbf326767948dd815224f1c591cb59d6da7bbac0d0385ddfb6f0e885e187b2385bfcdbb88933588b06dfc34f640c docfiles size=101 - RELOC/doc/latex/l2tabu-french/README - RELOC/doc/latex/l2tabu-french/l2tabufr.pdf + RELOC/doc/latex/l2tabu-french/README details="Readme" + RELOC/doc/latex/l2tabu-french/l2tabufr.pdf details="The document itself" language="fr" RELOC/doc/latex/l2tabu-french/l2tabufr.tex +catalogue-also l2tabu l2tabu-english l2tabu-italian catalogue-ctan /info/l2tabu/french -catalogue-date 2013-07-30 20:12:28 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics french-doc catalogue-version 2.3 name l2tabu-italian @@ -90873,55 +144853,46 @@ shortdesc Italian Translation of Obsolete packages and commands relocated 1 longdesc Italian translation of the l2tabu practical guide to LaTeX2e (a longdesc list of obsolete packages and commands). +containersize 448 +containerchecksum 5b2348bed7ce47d7e2b8de6642e14b24ab440226d0de46a51eab08b3d11a39bada93d890e1ab9e2dbd3ce253b3263460fe7114baf9bc7b5c775a7d806c731ab2 +doccontainersize 257412 +doccontainerchecksum c76981112631423d5d92ee9236d9b5b076e3d71086f9dada77de51362a5d5e01d82d5b018a68950c2b7f4b10eff1882d677243594436bae41bcc6ab996aa900a docfiles size=76 - RELOC/doc/latex/l2tabu-italian/l2tabuit.pdf + RELOC/doc/latex/l2tabu-italian/l2tabuit.pdf details="The document itself" language="it" RELOC/doc/latex/l2tabu-italian/l2tabuit.tex +catalogue-also l2tabu l2tabu-english l2tabu-french catalogue-ctan /info/l2tabu/italian -catalogue-date 2012-02-28 11:54:12 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics italian-doc catalogue-version 2.3 name l2tabu-spanish category Package revision 15878 -shortdesc Spanish translation of "Obsolete packages and commands". +shortdesc Spanish translation of "Obsolete packages and commands" relocated 1 longdesc A Spanish translation of the l2tabu practical guide to LaTeX2e longdesc by Mark Trettin. A list of obsolete packages, commands and longdesc usages. +containersize 448 +containerchecksum 73cecbb031be2d421c25a7d6a5c04d08e30d83a88b4132682d434a879da915f1d4af56980f1bf04f7df5a3e881ecdd940a058a2dcf89b5e9f48c378eb322da06 +doccontainersize 227412 +doccontainerchecksum a6886d54c0f5e1915ff9efbc4974ab1ef7f6dc026d67a0596ed47ac9e94da098e690bc70d5ed3e45a4d8cbd0f877f0cd6cd3a3757288dfc2df284e9c040b7c1e docfiles size=84 - RELOC/doc/latex/l2tabu-spanish/README - RELOC/doc/latex/l2tabu-spanish/l2tabues.pdf + RELOC/doc/latex/l2tabu-spanish/README details="Readme" + RELOC/doc/latex/l2tabu-spanish/l2tabues.pdf details="The document itself" language="es" RELOC/doc/latex/l2tabu-spanish/l2tabues.tex catalogue-ctan /info/l2tabu/spanish -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics spanish-doc catalogue-version 1.1 -name l2tabu -category Package -revision 24038 -shortdesc Obsolete packages and commands. -relocated 1 -longdesc The "sins" of LaTeX users, and how to correct them. The -longdesc document provides a list of obsolete packages and commands -longdesc (this original is in German; it has been translated into -longdesc English, French, Italian and Spanish). -docfiles size=76 - RELOC/doc/latex/l2tabu/CHANGES - RELOC/doc/latex/l2tabu/README - RELOC/doc/latex/l2tabu/l2tabu.pdf - RELOC/doc/latex/l2tabu/l2tabu.tex -catalogue-ctan /info/l2tabu/german -catalogue-date 2012-04-26 12:50:58 +0200 -catalogue-license gpl -catalogue-version 2.3 - name l3build category Package -revision 38376 +revision 49994 shortdesc A testing and building system for (La)TeX -relocated 1 longdesc The build system supports testing and building LaTeX3 code, on longdesc Linux, Mac OS X and Windows systems. The package offers: A unit longdesc testing system for (La)TeX code (whether kernel code or @@ -90930,24 +144901,197 @@ longdesc documentation; and An automated process for creating CTAN longdesc releases. The package is essentially independent of other longdesc material released by the LaTeX3 team, and may be updated on a longdesc different schedule. -runfiles size=15 - RELOC/tex/latex/l3build/l3build.lua - RELOC/tex/latex/l3build/regression-test.tex -docfiles size=147 - RELOC/doc/latex/l3build/README.md - RELOC/doc/latex/l3build/l3build.pdf -srcfiles size=15 - RELOC/source/latex/l3build/l3build.dtx - RELOC/source/latex/l3build/l3build.ins +depend l3build.ARCH +containersize 30808 +containerchecksum 08e95f4a371e4d672ead485efa28305b17df53ef49a2d7238852d870068616cd503d1dc435816f7d16d6446361ae10eab19d168fb91a16248d4eed608a9d7b2f +doccontainersize 708924 +doccontainerchecksum 737be43fff2f777333d0c75bc24d86d17936c027595a13a531292d3ae9834c606f95bdb495419493c10b83f71148e8abacc89eb8ee4be84510e7b69648d11d35 +docfiles size=179 + texmf-dist/doc/latex/l3build/CHANGELOG.md + texmf-dist/doc/latex/l3build/CONTRIBUTING.md + texmf-dist/doc/latex/l3build/README.md details="Readme" + texmf-dist/doc/latex/l3build/l3build.pdf details="Package documentation" + texmf-dist/doc/man/man1/l3build.1 + texmf-dist/doc/man/man1/l3build.man1.pdf +srccontainersize 27240 +srccontainerchecksum 4aadd193bfe4a7e9deb9913938ea872947a517716ff0f9bb73ea0b78334417b8e45ed2b5fb2bb73f6a3dc953c49ec4040971a54f052db44d5dd25e619470833d +srcfiles size=25 + texmf-dist/source/latex/l3build/l3build.dtx + texmf-dist/source/latex/l3build/l3build.ins +runfiles size=40 + texmf-dist/scripts/l3build/l3build-arguments.lua + texmf-dist/scripts/l3build/l3build-aux.lua + texmf-dist/scripts/l3build/l3build-check.lua + texmf-dist/scripts/l3build/l3build-clean.lua + texmf-dist/scripts/l3build/l3build-ctan.lua + texmf-dist/scripts/l3build/l3build-file-functions.lua + texmf-dist/scripts/l3build/l3build-help.lua + texmf-dist/scripts/l3build/l3build-install.lua + texmf-dist/scripts/l3build/l3build-manifest-setup.lua + texmf-dist/scripts/l3build/l3build-manifest.lua + texmf-dist/scripts/l3build/l3build-stdmain.lua + texmf-dist/scripts/l3build/l3build-tagging.lua + texmf-dist/scripts/l3build/l3build-typesetting.lua + texmf-dist/scripts/l3build/l3build-unpack.lua + texmf-dist/scripts/l3build/l3build-upload.lua + texmf-dist/scripts/l3build/l3build-variables.lua + texmf-dist/scripts/l3build/l3build.lua + texmf-dist/tex/latex/l3build/regression-test.tex +catalogue-contact-bugs https://github.com/latex3/l3build/issues +catalogue-contact-home https://www.latex-project.org +catalogue-contact-repository https://github.com/latex3/l3build catalogue-ctan /macros/latex/contrib/l3build -catalogue-date 2015-09-14 17:31:25 +0200 -catalogue-license lppl1.3 +catalogue-date 2019-02-10 11:26:31 +0100 +catalogue-license lppl1.3c catalogue-topics package-devel macro-supp -catalogue-version SVN 6007 + +name l3build.aarch64-linux +category Package +revision 46894 +shortdesc aarch64-linux files of l3build +containersize 344 +containerchecksum 3c605cbffce8611677121270ff4b28f80650daffcd0e04205fa8cbac59f844e25337f388ac578a982b2d526c78b6ff8eb4588007ba940fc7e1dcd1e693c679af +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/l3build + +name l3build.amd64-freebsd +category Package +revision 46894 +shortdesc amd64-freebsd files of l3build +containersize 344 +containerchecksum ec78f487b2addf06cb67b4e3191b0e3cc2339b5ce43010983a614f84f00807aa8978629ce770aa06114f3b63dca5abc6c5c0c03db2a83417512848d39ecc4c7e +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/l3build + +name l3build.amd64-netbsd +category Package +revision 46894 +shortdesc amd64-netbsd files of l3build +containersize 340 +containerchecksum 6a4df908510e843755e3ab05102d0409fb98de494a9c1066148be92fb6c8e84195bc5917f3cb4db50e646eb4bae778cca67510b98bce4a8a527cac0161b73824 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/l3build + +name l3build.armhf-linux +category Package +revision 46894 +shortdesc armhf-linux files of l3build +containersize 340 +containerchecksum 2feec116d36c90f13f9e4a0be3dee8ae3a0a9bd949bf266e80f456dc960cf30bff65a1cc6ebb9a7c936be56b1d16d527da0ee9f278c3bb7f40c1ee3f98c6136d +binfiles arch=armhf-linux size=1 + bin/armhf-linux/l3build + +name l3build.i386-cygwin +category Package +revision 46894 +shortdesc i386-cygwin files of l3build +containersize 340 +containerchecksum 1cbda214e44cc4f67c50339f7b68ddeddbe7b1388da85acd1d415e9ae88c50b720e50033d17f595146e9b506e5a267332621fb18f2dc95e2155e8c2ed0de2af1 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/l3build + +name l3build.i386-freebsd +category Package +revision 46894 +shortdesc i386-freebsd files of l3build +containersize 340 +containerchecksum 074bd0e8d8ade724a5f221966434819cb3f791667be22af607be201765cb1851d144c1f89fffe7c91c8d169f719475c85b50d2212fc12c4f4edb9144bcb366f6 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/l3build + +name l3build.i386-linux +category Package +revision 46894 +shortdesc i386-linux files of l3build +containersize 340 +containerchecksum f3835781d950f70ac5f23c56c67d28a9ab5dccc60af6a82112bf557b9d54a2692af87a2fd348f8208049aac8bd0bad31a6eb2ddf09d4dd61a88846cd4dddcf50 +binfiles arch=i386-linux size=1 + bin/i386-linux/l3build + +name l3build.i386-netbsd +category Package +revision 46894 +shortdesc i386-netbsd files of l3build +containersize 340 +containerchecksum 6ebd218b4ba4cf03a626b77cc86aa92476e32eb78b9412b61ddcfd82cadaff7e29c0a4a0e13ace1823dceac76f0a1a8c0fab9f48291095c08ad367101eff1234 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/l3build + +name l3build.i386-solaris +category Package +revision 46894 +shortdesc i386-solaris files of l3build +containersize 340 +containerchecksum 3cba7bcd8492d07c8373f6342f623b483927201e8767a436f30dd0f740383e00426c85e3ed303f9473cf82937419106b9bd0a5878c9f33034d0c9746f939805f +binfiles arch=i386-solaris size=1 + bin/i386-solaris/l3build + +name l3build.win32 +category Package +revision 46894 +shortdesc win32 files of l3build +containersize 684 +containerchecksum 796aeecde79f2c21f414e647539e8c6f40f4dc91c335570a42d75f95fcbd06232b9621b5b3a8f94f9ddf3f2248c564afb05047a3e52c95f64774b107aa492d57 +binfiles arch=win32 size=1 + bin/win32/l3build.exe + +name l3build.x86_64-cygwin +category Package +revision 46894 +shortdesc x86_64-cygwin files of l3build +containersize 344 +containerchecksum b175d059d9fca58fc959b545703826c9faecd8a3f67ae20ed43a1a3c99c1492b0b823187715a7e4a7aff29f2cbba7fab77a8447c4538568cf2a399add377e54d +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/l3build + +name l3build.x86_64-darwin +category Package +revision 46894 +shortdesc x86_64-darwin files of l3build +containersize 344 +containerchecksum 32da65b5ae087f7509d7a77ee1b82533a2f8426fefa91ecfc828f14930ab50a1695dad6ff6ff789575f36d16646e65ef4cc2fb79dd5bdf4d1677a266d28763a1 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/l3build + +name l3build.x86_64-darwinlegacy +category Package +revision 46894 +shortdesc x86_64-darwinlegacy files of l3build +containersize 348 +containerchecksum 4b51cf696b12f3c914c697d97b96cd05238531649c7732f9bcde5e6369a79b2644fa5850689d4ce67398b61ed2ec02b836a20d36ffb3d44e357eb7ebb32bde9d +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/l3build + +name l3build.x86_64-linux +category Package +revision 46894 +shortdesc x86_64-linux files of l3build +containersize 340 +containerchecksum 0f29977ad0a457e82bbb9c77dfceb72a7408d3a6bc2279bfe7c3b2064b28ab8d62fc5ed6c74b5f34af75317ca8fec2ffa218f3c879e7d4349330057259d778a7 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/l3build + +name l3build.x86_64-linuxmusl +category Package +revision 46894 +shortdesc x86_64-linuxmusl files of l3build +containersize 344 +containerchecksum 25433705644d5e3f4b054b834355a5daca126839688ec4dfdeec420032b52a61c12970a87c35577fb2424aaa157d2cb1cc13d48bf53f3f5510900da1a07aa9b5 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/l3build + +name l3build.x86_64-solaris +category Package +revision 46894 +shortdesc x86_64-solaris files of l3build +containersize 340 +containerchecksum f1b37e6e1f544c742ef7587ae1b84c1103fa196066c89a38e32ce78e7076aed900bb67eec6d976e094529c88ab7f7a58fde3f37a3c40ab17f95ea227ae6c63a0 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/l3build name l3experimental category Package -revision 38360 +revision 50972 shortdesc Experimental LaTeX3 concepts relocated 1 longdesc The l3experimental packages are a collection of experimental @@ -90955,24 +145099,70 @@ longdesc implementations for aspects of the LaTeX3 kernel, dealing with longdesc higher-level ideas such as the Designer Interface. Some of them longdesc work as stand alone packages, providing new functionality, and longdesc can be used on top of LaTeX2e with no changes to the existing -longdesc kernel. The present release includes: xgalley, which controls -longdesc boxes receiving text for typesetting. l3regex: kernel support -longdesc for regular expression search and replace operations; l3sort: -longdesc kernel support for sorting sequences, token lists or comma- -longdesc lists, according to user-specified comparison criteria; l3str: -longdesc kernel support for string manipulation; l3tl-build: kernel -longdesc support for token list building; l3tl_analysis: kernel support -longdesc for token list analysis; and xcoffins, which allows the -longdesc alignment of boxes using a series of 'handle' positions, -longdesc supplementing the simple TeX reference point. All the files of -longdesc the bundle are also available in the Subversion (SVN) -longdesc repository of the LaTeX3 Project. The bundle on CTAN is based -longdesc on a snapshot of the SVN repository on 2015-09-11. -runfiles size=116 - RELOC/tex/latex/l3experimental/l3sort/l3sort.sty - RELOC/tex/latex/l3experimental/l3str/l3flag.sty - RELOC/tex/latex/l3experimental/l3str/l3regex-trace.sty - RELOC/tex/latex/l3experimental/l3str/l3regex.sty +longdesc kernel. The present release includes: l3benchmark for measuring +longdesc the time taken by TeX to run certain code; l3cctab, support for +longdesc saving and restoring category codes en masse in a table; +longdesc l3color, support for setting colors using a range of color +longdesc models; l3draw, a code-level interface for constructing +longdesc drawings; l3str, support for string manipulation; l3sys-shell, +longdesc which provides abstractions for common shell functions like +longdesc file deletion and copying; xcoffins, which allows the alignment +longdesc of boxes using a series of 'handle' positions, supplementing +longdesc the simple TeX reference point; xgalley, which controls boxes +longdesc receiving text for typesetting. +containersize 31284 +containerchecksum 4f03a312643c50a841a14433981187a89f943994a246bea3c235d9da9de727be713deb1aaa9b3671039806400aa973cb0f3db9f6741ba32f56ea3955f5118e2f +doccontainersize 3497100 +doccontainerchecksum 0a45fdf44a4e03be67ffaf313391748054b140817abc403459975e7398d7b951d8eda3ec7439b02d8e85991c1f68e6fa3d11672efb219be9b3ab41427d9bd5d2 +docfiles size=1038 + RELOC/doc/latex/l3experimental/CHANGELOG.md + RELOC/doc/latex/l3experimental/README.md details="Readme" + RELOC/doc/latex/l3experimental/l3benchmark/l3benchmark.pdf details="l3benchmark documentation" + RELOC/doc/latex/l3experimental/l3cctab/l3cctab.pdf details="l3cctab documentation" + RELOC/doc/latex/l3experimental/l3color/l3color.pdf details="l3color documentation" + RELOC/doc/latex/l3experimental/l3draw/l3draw-code.pdf + RELOC/doc/latex/l3experimental/l3draw/l3draw-code.tex + RELOC/doc/latex/l3experimental/l3draw/l3draw.pdf details="l3draw documentation" + RELOC/doc/latex/l3experimental/l3str/l3str-convert.pdf details="l3str-convert documentation" + RELOC/doc/latex/l3experimental/l3str/l3str-format.pdf details="l3str-format documentation" + RELOC/doc/latex/l3experimental/l3sys-shell/l3sys-shell.pdf details="l3sys-shell documentation" + RELOC/doc/latex/l3experimental/xcoffins/xcoffins.pdf details="xcoffins documentation" + RELOC/doc/latex/l3experimental/xgalley/l3galley.pdf + RELOC/doc/latex/l3experimental/xgalley/xgalley.pdf details="xgalley documentation" +srccontainersize 97624 +srccontainerchecksum 78ac9e77f9c07cbb7218354afa2a6c25e5bbc020319500fcd66711a8474a1e8b515dfcccae62878d316875f33b0acb9357d326ecb884d24080282ded714cdbb5 +srcfiles size=153 + RELOC/source/latex/l3experimental/l3benchmark/l3benchmark.dtx + RELOC/source/latex/l3experimental/l3benchmark/l3benchmark.ins + RELOC/source/latex/l3experimental/l3cctab/l3cctab.dtx + RELOC/source/latex/l3experimental/l3cctab/l3cctab.ins + RELOC/source/latex/l3experimental/l3color/l3color.dtx + RELOC/source/latex/l3experimental/l3color/l3color.ins + RELOC/source/latex/l3experimental/l3draw/l3draw-boxes.dtx + RELOC/source/latex/l3experimental/l3draw/l3draw-layers.dtx + RELOC/source/latex/l3experimental/l3draw/l3draw-paths.dtx + RELOC/source/latex/l3experimental/l3draw/l3draw-points.dtx + RELOC/source/latex/l3experimental/l3draw/l3draw-scopes.dtx + RELOC/source/latex/l3experimental/l3draw/l3draw-softpath.dtx + RELOC/source/latex/l3experimental/l3draw/l3draw-state.dtx + RELOC/source/latex/l3experimental/l3draw/l3draw-transforms.dtx + RELOC/source/latex/l3experimental/l3draw/l3draw.dtx + RELOC/source/latex/l3experimental/l3draw/l3draw.ins + RELOC/source/latex/l3experimental/l3str/l3str-convert.dtx + RELOC/source/latex/l3experimental/l3str/l3str-format.dtx + RELOC/source/latex/l3experimental/l3str/l3str.ins + RELOC/source/latex/l3experimental/l3sys-shell/l3sys-shell.dtx + RELOC/source/latex/l3experimental/l3sys-shell/l3sys-shell.ins + RELOC/source/latex/l3experimental/xcoffins/xcoffins.dtx + RELOC/source/latex/l3experimental/xcoffins/xcoffins.ins + RELOC/source/latex/l3experimental/xgalley/l3galley.dtx + RELOC/source/latex/l3experimental/xgalley/xgalley.dtx + RELOC/source/latex/l3experimental/xgalley/xgalley.ins +runfiles size=78 + RELOC/tex/latex/l3experimental/l3benchmark/l3benchmark.sty + RELOC/tex/latex/l3experimental/l3cctab/l3cctab.sty + RELOC/tex/latex/l3experimental/l3color/l3color.sty + RELOC/tex/latex/l3experimental/l3draw/l3draw.sty RELOC/tex/latex/l3experimental/l3str/l3str-convert.sty RELOC/tex/latex/l3experimental/l3str/l3str-enc-iso88591.def RELOC/tex/latex/l3experimental/l3str/l3str-enc-iso885910.def @@ -90997,108 +145187,52 @@ runfiles size=116 RELOC/tex/latex/l3experimental/l3str/l3str-esc-string.def RELOC/tex/latex/l3experimental/l3str/l3str-esc-url.def RELOC/tex/latex/l3experimental/l3str/l3str-format.sty - RELOC/tex/latex/l3experimental/l3str/l3str.sty - RELOC/tex/latex/l3experimental/l3str/l3tl-analysis.sty - RELOC/tex/latex/l3experimental/l3str/l3tl-build.sty + RELOC/tex/latex/l3experimental/l3sys-shell/l3sys-shell.sty RELOC/tex/latex/l3experimental/xcoffins/xcoffins.sty RELOC/tex/latex/l3experimental/xgalley/l3galley.sty RELOC/tex/latex/l3experimental/xgalley/xgalley.sty -docfiles size=1039 - RELOC/doc/latex/l3experimental/README.md - RELOC/doc/latex/l3experimental/l3sort/l3sort.pdf - RELOC/doc/latex/l3experimental/l3str/l3flag.pdf - RELOC/doc/latex/l3experimental/l3str/l3regex.pdf - RELOC/doc/latex/l3experimental/l3str/l3str-convert.pdf - RELOC/doc/latex/l3experimental/l3str/l3str-expl.pdf - RELOC/doc/latex/l3experimental/l3str/l3str-format.pdf - RELOC/doc/latex/l3experimental/l3str/l3tl-analysis.pdf - RELOC/doc/latex/l3experimental/l3str/l3tl-build.pdf - RELOC/doc/latex/l3experimental/xcoffins/xcoffins.pdf - RELOC/doc/latex/l3experimental/xgalley/l3galley.pdf - RELOC/doc/latex/l3experimental/xgalley/xgalley.pdf -srcfiles size=180 - RELOC/source/latex/l3experimental/l3sort/l3sort.dtx - RELOC/source/latex/l3experimental/l3sort/l3sort.ins - RELOC/source/latex/l3experimental/l3str/l3flag.dtx - RELOC/source/latex/l3experimental/l3str/l3regex.dtx - RELOC/source/latex/l3experimental/l3str/l3str-convert.dtx - RELOC/source/latex/l3experimental/l3str/l3str-expl.dtx - RELOC/source/latex/l3experimental/l3str/l3str-format.dtx - RELOC/source/latex/l3experimental/l3str/l3str.ins - RELOC/source/latex/l3experimental/l3str/l3tl-analysis.dtx - RELOC/source/latex/l3experimental/l3str/l3tl-build.dtx - RELOC/source/latex/l3experimental/xcoffins/xcoffins.dtx - RELOC/source/latex/l3experimental/xcoffins/xcoffins.ins - RELOC/source/latex/l3experimental/xgalley/l3galley.dtx - RELOC/source/latex/l3experimental/xgalley/xgalley.dtx - RELOC/source/latex/l3experimental/xgalley/xgalley.ins catalogue-also l3kernel l3packages +catalogue-contact-home http://www.latex-project.org/code.html catalogue-ctan /macros/latex/contrib/l3experimental -catalogue-date 2015-09-12 09:51:31 +0200 -catalogue-license lppl1.3 +catalogue-date 2019-05-03 18:17:45 +0200 +catalogue-license lppl1.3c catalogue-topics macro-supp layout latex3 pre-release -catalogue-version SVN 6001 name l3kernel category Package -revision 38371 +revision 51060 shortdesc LaTeX3 programming conventions relocated 1 longdesc The l3kernel bundle provides an implementation of the LaTeX3 longdesc programmers' interface, as a set of packages that run under -longdesc LaTeX 2e. The interface provides the foundation on which the +longdesc LaTeX2e. The interface provides the foundation on which the longdesc LaTeX3 kernel and other future code are built: it is an API for longdesc TeX programmers. The packages are set up so that the LaTeX3 -longdesc conventions can be used with regular LaTeX 2e packages. All the -longdesc files of the bundle are also available in the project's -longdesc Subversion (SVN) repository -runfiles size=222 - RELOC/tex/latex/l3kernel/expl3-code.tex - RELOC/tex/latex/l3kernel/expl3-generic.tex - RELOC/tex/latex/l3kernel/expl3.sty - RELOC/tex/latex/l3kernel/l3basics.sty - RELOC/tex/latex/l3kernel/l3bootstrap.sty - RELOC/tex/latex/l3kernel/l3box.sty - RELOC/tex/latex/l3kernel/l3candidates.sty - RELOC/tex/latex/l3kernel/l3clist.sty - RELOC/tex/latex/l3kernel/l3coffins.sty - RELOC/tex/latex/l3kernel/l3color.sty - RELOC/tex/latex/l3kernel/l3doc.cls - RELOC/tex/latex/l3kernel/l3docstrip.tex - RELOC/tex/latex/l3kernel/l3dvipdfmx.def - RELOC/tex/latex/l3kernel/l3dvips.def - RELOC/tex/latex/l3kernel/l3expan.sty - RELOC/tex/latex/l3kernel/l3file.sty - RELOC/tex/latex/l3kernel/l3fp.sty - RELOC/tex/latex/l3kernel/l3int.sty - RELOC/tex/latex/l3kernel/l3keys.sty - RELOC/tex/latex/l3kernel/l3msg.sty - RELOC/tex/latex/l3kernel/l3names.sty - RELOC/tex/latex/l3kernel/l3pdfmode.def - RELOC/tex/latex/l3kernel/l3prg.sty - RELOC/tex/latex/l3kernel/l3prop.sty - RELOC/tex/latex/l3kernel/l3quark.sty - RELOC/tex/latex/l3kernel/l3seq.sty - RELOC/tex/latex/l3kernel/l3skip.sty - RELOC/tex/latex/l3kernel/l3tl.sty - RELOC/tex/latex/l3kernel/l3token.sty - RELOC/tex/latex/l3kernel/l3unicode-data.def - RELOC/tex/latex/l3kernel/l3xdvipdfmx.def -docfiles size=1836 - RELOC/doc/latex/l3kernel/README.md - RELOC/doc/latex/l3kernel/expl3.pdf - RELOC/doc/latex/l3kernel/interface3.pdf +longdesc conventions can be used with regular LaTeX2e packages. +containersize 144940 +containerchecksum ee7e64ee630df11d380492555c5b9143ff570ff2058eab8eeead178aec42fea03767d02219361afed6fee60430b673fb86c5d817069f85c02a916cf7a5c1c2d7 +doccontainersize 7980600 +doccontainerchecksum 8c7b82a78c408014fd723659f10769994cf811582d840692dce3ad61d84da0aac44a310b9b3424f663953c8b3cd8832f7a2de2e3f3e6081f6346e997ff163a95 +docfiles size=2203 + RELOC/doc/latex/l3kernel/CHANGELOG.md + RELOC/doc/latex/l3kernel/README.md details="Readme" + RELOC/doc/latex/l3kernel/expl3.pdf details="The LaTeX3 Programming Language" + RELOC/doc/latex/l3kernel/interface3.pdf details="The LaTeX3 interfaces" RELOC/doc/latex/l3kernel/interface3.tex RELOC/doc/latex/l3kernel/l3docstrip.pdf RELOC/doc/latex/l3kernel/l3obsolete.txt - RELOC/doc/latex/l3kernel/l3styleguide.pdf + RELOC/doc/latex/l3kernel/l3styleguide.pdf details="LaTeX3 style guide" RELOC/doc/latex/l3kernel/l3styleguide.tex - RELOC/doc/latex/l3kernel/l3syntax-changes.pdf + RELOC/doc/latex/l3kernel/l3syntax-changes.pdf details="Syntax changes" RELOC/doc/latex/l3kernel/l3syntax-changes.tex + RELOC/doc/latex/l3kernel/l3term-glossary.pdf + RELOC/doc/latex/l3kernel/l3term-glossary.tex RELOC/doc/latex/l3kernel/source3.pdf RELOC/doc/latex/l3kernel/source3.tex RELOC/doc/latex/l3kernel/source3body.tex -srcfiles size=572 +srccontainersize 526928 +srccontainerchecksum 37ddd696b72c9a8ab6541d35749f0cfe26fede5397ca6c1e01b7fbc739932e26ed25186683bbb7475ff1276a859cb2221a132ba88d0ec2ad42e1c82ddee04c46 +srcfiles size=819 RELOC/source/latex/l3kernel/expl3.dtx RELOC/source/latex/l3kernel/l3.ins RELOC/source/latex/l3kernel/l3alloc.dtx @@ -91108,13 +145242,21 @@ srcfiles size=572 RELOC/source/latex/l3kernel/l3candidates.dtx RELOC/source/latex/l3kernel/l3clist.dtx RELOC/source/latex/l3kernel/l3coffins.dtx - RELOC/source/latex/l3kernel/l3color.dtx + RELOC/source/latex/l3kernel/l3color-base.dtx + RELOC/source/latex/l3kernel/l3deprecation.dtx RELOC/source/latex/l3kernel/l3doc.dtx RELOC/source/latex/l3kernel/l3docstrip.dtx + RELOC/source/latex/l3kernel/l3drivers-basics.dtx + RELOC/source/latex/l3kernel/l3drivers-box.dtx + RELOC/source/latex/l3kernel/l3drivers-color.dtx + RELOC/source/latex/l3kernel/l3drivers-draw.dtx + RELOC/source/latex/l3kernel/l3drivers-graphics.dtx + RELOC/source/latex/l3kernel/l3drivers-pdf.dtx RELOC/source/latex/l3kernel/l3drivers.dtx RELOC/source/latex/l3kernel/l3expan.dtx RELOC/source/latex/l3kernel/l3file.dtx RELOC/source/latex/l3kernel/l3final.dtx + RELOC/source/latex/l3kernel/l3flag.dtx RELOC/source/latex/l3kernel/l3format.ins RELOC/source/latex/l3kernel/l3fp-assign.dtx RELOC/source/latex/l3kernel/l3fp-aux.dtx @@ -91124,138 +145266,151 @@ srcfiles size=572 RELOC/source/latex/l3kernel/l3fp-extended.dtx RELOC/source/latex/l3kernel/l3fp-logic.dtx RELOC/source/latex/l3kernel/l3fp-parse.dtx + RELOC/source/latex/l3kernel/l3fp-random.dtx RELOC/source/latex/l3kernel/l3fp-round.dtx RELOC/source/latex/l3kernel/l3fp-traps.dtx RELOC/source/latex/l3kernel/l3fp-trig.dtx RELOC/source/latex/l3kernel/l3fp.dtx + RELOC/source/latex/l3kernel/l3fparray.dtx RELOC/source/latex/l3kernel/l3int.dtx + RELOC/source/latex/l3kernel/l3intarray.dtx + RELOC/source/latex/l3kernel/l3kernel-functions.dtx RELOC/source/latex/l3kernel/l3keys.dtx + RELOC/source/latex/l3kernel/l3legacy.dtx RELOC/source/latex/l3kernel/l3luatex.dtx RELOC/source/latex/l3kernel/l3msg.dtx RELOC/source/latex/l3kernel/l3names.dtx - RELOC/source/latex/l3kernel/l3oldmodules.dtx RELOC/source/latex/l3kernel/l3prg.dtx RELOC/source/latex/l3kernel/l3prop.dtx RELOC/source/latex/l3kernel/l3quark.dtx + RELOC/source/latex/l3kernel/l3regex.dtx RELOC/source/latex/l3kernel/l3seq.dtx RELOC/source/latex/l3kernel/l3skip.dtx + RELOC/source/latex/l3kernel/l3sort.dtx RELOC/source/latex/l3kernel/l3str.dtx RELOC/source/latex/l3kernel/l3sys.dtx + RELOC/source/latex/l3kernel/l3tl-analysis.dtx RELOC/source/latex/l3kernel/l3tl.dtx RELOC/source/latex/l3kernel/l3token.dtx - RELOC/source/latex/l3kernel/l3unicode-data.dtx + RELOC/source/latex/l3kernel/l3unicode.dtx +runfiles size=300 + RELOC/tex/latex/l3kernel/expl3-code.tex + RELOC/tex/latex/l3kernel/expl3-generic.tex + RELOC/tex/latex/l3kernel/expl3.lua + RELOC/tex/latex/l3kernel/expl3.sty + RELOC/tex/latex/l3kernel/l3doc.cls + RELOC/tex/latex/l3kernel/l3docstrip.tex + RELOC/tex/latex/l3kernel/l3dvipdfmx.def + RELOC/tex/latex/l3kernel/l3dvips.def + RELOC/tex/latex/l3kernel/l3dvisvgm.def + RELOC/tex/latex/l3kernel/l3pdfmode.def + RELOC/tex/latex/l3kernel/l3xdvipdfmx.def catalogue-also l3packages l3experimental +catalogue-contact-bugs https://github.com/latex3/latex3/issues +catalogue-contact-home http://www.latex-project.org/code.html +catalogue-contact-repository https://github.com/latex3/latex3 catalogue-ctan /macros/latex/contrib/l3kernel -catalogue-date 2015-09-12 08:20:42 +0200 -catalogue-license lppl1.3 +catalogue-date 2019-05-09 19:32:50 +0200 +catalogue-license lppl1.3c catalogue-topics format latex3 pre-release -catalogue-version SVN 6002 name l3packages category Package -revision 38360 +revision 50972 shortdesc High-level LaTeX3 concepts relocated 1 -longdesc The bundle holds prototype implementations of concepts for a -longdesc LaTeX designer interface, to be used with the experimental -longdesc LaTeX kernel as programming tools and kernel support. Packages -longdesc provided in this release are: l3keys2e, which makes the -longdesc facilities of the kernel module l3keys available for use by -longdesc LaTeX 2e packages; xfrac, which provides flexible split-level -longdesc fractions; xparse, which provides a high-level interface for -longdesc declaring document commands; and xtemplate, which provides a -longdesc means of defining generic functions using a key-value syntax. -longdesc All the files of the bundle are also available in the -longdesc Subversion (SVN) repository of the LaTeX3 Project. The bundle -longdesc on CTAN is based on a snapshot of the SVN repository; it should -longdesc be used with copies of the l3kernel at SVN version 6001 or -longdesc later. -runfiles size=33 - RELOC/tex/latex/l3packages/l3keys2e/l3keys2e.sty - RELOC/tex/latex/l3packages/xfrac/xfrac.sty - RELOC/tex/latex/l3packages/xparse/xparse.sty - RELOC/tex/latex/l3packages/xtemplate/xtemplate.sty -docfiles size=418 - RELOC/doc/latex/l3packages/README.md +longdesc This collection contains implementations for aspects of the +longdesc LaTeX3 kernel, dealing with higher-level ideas such as the +longdesc Designer Interface. The packages here are considered broadly +longdesc stable (The LaTeX3 Project does not expect the interfaces to +longdesc alter radically). These packages are built on LaTeX2e +longdesc conventions at the interface level, and so may not migrate in +longdesc the current form to a stand-alone LaTeX3 format. Packages +longdesc provided: xparse, which provides a high-level interface for +longdesc declaring document commands xfp, an expandable IEEE 754 FPU for +longdesc LaTeX l3keys2e, which makes the facilities of the kernel module +longdesc l3keys available for use by LaTeX 2e packages xtemplate, which +longdesc provides a means of defining generic functions using a +longdesc key-value syntax xfrac, which provides flexible split-level +longdesc fractions +containersize 19824 +containerchecksum a457e7c8b72d50aeecd49510d19635083b7822b994dcae8316c10b7fb646298ef962bff26a69ef3cab85b1061e7bb3398a7d75efcd1885a97e3c7314915f0b41 +doccontainersize 1755600 +doccontainerchecksum 06b2c8bb8daa09a01b099bc712d69619f7cc4680bc1dcfbc7983214447f3c8ef55ad9a501b6fbb542bc360242d935c9c440e22a0817a5562063b6377afa7a137 +docfiles size=502 + RELOC/doc/latex/l3packages/CHANGELOG.md + RELOC/doc/latex/l3packages/README.md details="Readme" RELOC/doc/latex/l3packages/l3keys2e/l3keys2e-demo.tex - RELOC/doc/latex/l3packages/l3keys2e/l3keys2e.pdf - RELOC/doc/latex/l3packages/xfrac/xfrac.pdf - RELOC/doc/latex/l3packages/xparse/xparse.pdf - RELOC/doc/latex/l3packages/xtemplate/xtemplate.pdf -srcfiles size=73 + RELOC/doc/latex/l3packages/l3keys2e/l3keys2e.pdf details="l3keys2e documentation" + RELOC/doc/latex/l3packages/xfp/xfp.pdf details="xfp documentation" + RELOC/doc/latex/l3packages/xfrac/xfrac.pdf details="xfrac documentation" + RELOC/doc/latex/l3packages/xparse/xparse.pdf details="xparse documentation" + RELOC/doc/latex/l3packages/xtemplate/xtemplate.pdf details="xtemplate documentation" +srccontainersize 64524 +srccontainerchecksum 832b00128ee1c050dbd97ee88b32354bdc104fccfb2f4ec633c0f22cb555f65adcd703e1de1f1ec76e1471cad516e273613d8df1445366f9b957fd4effb92139 +srcfiles size=89 RELOC/source/latex/l3packages/l3keys2e/l3keys2e.dtx RELOC/source/latex/l3packages/l3keys2e/l3keys2e.ins + RELOC/source/latex/l3packages/xfp/xfp.dtx + RELOC/source/latex/l3packages/xfp/xfp.ins RELOC/source/latex/l3packages/xfrac/xfrac.dtx RELOC/source/latex/l3packages/xfrac/xfrac.ins RELOC/source/latex/l3packages/xparse/xparse.dtx RELOC/source/latex/l3packages/xparse/xparse.ins RELOC/source/latex/l3packages/xtemplate/xtemplate.dtx RELOC/source/latex/l3packages/xtemplate/xtemplate.ins +runfiles size=39 + RELOC/tex/latex/l3packages/l3keys2e/l3keys2e.sty + RELOC/tex/latex/l3packages/xfp/xfp.sty + RELOC/tex/latex/l3packages/xfrac/xfrac.sty + RELOC/tex/latex/l3packages/xparse/xparse.sty + RELOC/tex/latex/l3packages/xtemplate/xtemplate.sty catalogue-also l3kernel l3experimental +catalogue-contact-home http://www.latex-project.org/code.html catalogue-ctan /macros/latex/contrib/l3packages -catalogue-date 2015-09-12 09:01:48 +0200 -catalogue-license lppl1.3 +catalogue-date 2019-05-03 17:45:41 +0200 +catalogue-license lppl1.3c catalogue-topics macro-supp latex3 pre-release -catalogue-version SVN 6001 name labbook category Package revision 15878 -shortdesc Typeset laboratory journals. +shortdesc Typeset laboratory journals relocated 1 longdesc This class is designed to typeset laboratory journals that longdesc contain chronologically ordered records about experiments. From longdesc the sectioning commands, an experiment index is generated. The longdesc class is based on the KOMA-Script class scrbook.cls. There can longdesc be several index entries for one experiment. -runfiles size=5 - RELOC/tex/latex/labbook/labbook.cls +containersize 4180 +containerchecksum 92bd582cc729bcd3cea6979771e934d5a4a194536ff89a475309d3999ab0a2ab70d5ba5be6f0353e97498ab4e971e3209df9a3ca4ac99a8c9de27586a0f4a3b0 +doccontainersize 210236 +doccontainerchecksum 98758f4cc186df470e8a16b2e9365f3bec585be18c0fa8700df238befe052ad69b697357c7d89b19233a9cf2b308c29a54bf84215fa3ca8859111b0214971ed2 docfiles size=70 - RELOC/doc/latex/labbook/README + RELOC/doc/latex/labbook/README details="Readme" RELOC/doc/latex/labbook/boilerplates.tex RELOC/doc/latex/labbook/examplde.tex RELOC/doc/latex/labbook/examplen.tex - RELOC/doc/latex/labbook/labboode.pdf + RELOC/doc/latex/labbook/labboode.pdf details="Package documentation (German)" language="de" RELOC/doc/latex/labbook/labboode.tex RELOC/doc/latex/labbook/labbook.el - RELOC/doc/latex/labbook/labbook.pdf + RELOC/doc/latex/labbook/labbook.pdf details="Package documentation (English)" language="en" +srccontainersize 23192 +srccontainerchecksum 23b9f993dbd431328590617c6715bb082cd1dac757db003b05296d318a002e85c8c541f5ce6a45703fa2cc481c7af98fe41e483c77b5025e50de324b68fcf525 srcfiles size=21 RELOC/source/latex/labbook/labbook.dtx RELOC/source/latex/labbook/labbook.ins +runfiles size=5 + RELOC/tex/latex/labbook/labbook.cls catalogue-ctan /macros/latex/contrib/labbook -catalogue-date 2014-10-10 17:17:15 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl - -name labelcas -category Package -revision 15878 -shortdesc Check the existence of labels, and fork accordingly. -relocated 1 -longdesc The package defines two commands: \eachlabelcase, which -longdesc distinguishes whether a set of labels is defined, and for each -longdesc label either queues action accordingly, or appends the action -longdesc to a macro; and \lotlabelcase, which takes a comma-separated -longdesc list of label names, and distinguishes the resulting action on -longdesc whether all were defined, whether none were defined, whether -longdesc not all were defined, or whether the lest is empty (again, the -longdesc action resulting from \lotlabelcase may be written to a macro). -runfiles size=2 - RELOC/tex/latex/labelcas/labelcas.sty -docfiles size=73 - RELOC/doc/latex/labelcas/README - RELOC/doc/latex/labelcas/labelcas.pdf -srcfiles size=19 - RELOC/source/latex/labelcas/labelcas.dtx - RELOC/source/latex/labelcas/labelcas.ins -catalogue-ctan /macros/latex/contrib/labelcas -catalogue-date 2014-10-19 22:42:06 +0200 -catalogue-license lppl1.3 -catalogue-version 1.12 +catalogue-topics record-keep class name labels category Package revision 15878 -shortdesc Print sheets of sticky labels. +shortdesc Print sheets of sticky labels relocated 1 longdesc A LaTeX package to print a regular grid of ragged-right labels longdesc on a page, suitable for sheets of labels which can be fed @@ -91265,9 +145420,10 @@ longdesc useful is a feature for making multiple copies of a single longdesc label, e.g., return address stickers to go with the labels. longdesc Rows, columns, borders can all be specified to match the label longdesc sheet being used. -runfiles size=6 - RELOC/tex/latex/labels/labels.sty - RELOC/tex/latex/labels/olabels.sty +containersize 3536 +containerchecksum b1cd175e1c5ece09926ad3fb5ef3b2dbc528435e26c81df563f674388083b481e6a6f072724254302c243a640960a942a6b356664675f4041c94962155f5ee62 +doccontainersize 177412 +doccontainerchecksum 0ac61f3a1ec027dd3631a4e6ffabdbf71ca27eb19c877a0beef8d7d991989d613769474e99770e9edc74dffc8b59981da8666e5dcb26450717be37b098a028b9 docfiles size=87 RELOC/doc/latex/labels/README RELOC/doc/latex/labels/labels.pdf @@ -91306,80 +145462,301 @@ docfiles size=87 RELOC/doc/latex/labels/test/testnew8.tex RELOC/doc/latex/labels/test/testnew9.tex RELOC/doc/latex/labels/test/zwekform.tex +srccontainersize 14888 +srccontainerchecksum debc22ed66f978aed88c84a0756677cc5faed39ef47ad37f8fcd4d6dcd02ce6b3a582ea6edc73ddd96ae04e7a50d43eddaba8404ceadb8c49439927f41f8c210 srcfiles size=13 RELOC/source/latex/labels/labels.dtx RELOC/source/latex/labels/labels.ins +runfiles size=6 + RELOC/tex/latex/labels/labels.sty + RELOC/tex/latex/labels/olabels.sty catalogue-ctan /macros/latex/contrib/labels -catalogue-date 2011-12-16 16:22:52 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 -catalogue-version 13 +catalogue-topics labels +catalogue-version .13 + +name labels4easylist +category Package +revision 51124 +shortdesc Add reference labels to easylist items +relocated 1 +longdesc This package provides the \itemLabel macro for adding +longdesc configurable reference labels to easylist items. +containersize 1876 +containerchecksum 1f792dfc8c3d51cbb3ec4370e4ea36612d503a9a92d088f0d8b03ccc78c480118308aa48e4dba66dcfd55c8a3442950242742eddd557bd6b44c925e01e361163 +doccontainersize 25184 +doccontainerchecksum 1ca630c5aa01e53d6a7fa65d9ebb4ccf5bc43af7d3cb66a6bbb287398e28764dae0b535eb4b821c2c406e22e239e8a88fc63a010d4e79977ef6e8cfd563afde2 +docfiles size=9 + RELOC/doc/latex/labels4easylist/README details="Readme" + RELOC/doc/latex/labels4easylist/labels4easylist.pdf details="Package documentation" + RELOC/doc/latex/labels4easylist/labels4easylist.tex +runfiles size=1 + RELOC/tex/latex/labels4easylist/labels4easylist.sty +catalogue-contact-bugs https://bitbucket.org/OpCode-eu-org/latex-libs/issues +catalogue-contact-repository https://bitbucket.org/OpCode-eu-org/latex-libs/ +catalogue-ctan /macros/latex/contrib/labels4easylist +catalogue-date 2019-05-14 08:51:33 +0200 +catalogue-license mit +catalogue-topics list +catalogue-version 1.0 + +name labelschanged +category Package +revision 46040 +shortdesc Identify labels which cause endless "may have changed" warnings +relocated 1 +longdesc Several conditions can cause LaTeX labels to keep changing, no +longdesc matter how many times a document is recompiled. This package +longdesc helps diagnose the cause of repeated "Label(s) may have +longdesc changed" warnings. The names and before/after definitions of +longdesc changing labels are printed at the end of each compile. +longdesc Multiply-defined labels are printed as well. +containersize 1060 +containerchecksum e9cbb45a636fa75c9b9c8d8400fd9a0cf0ef2a46f998d650631e9874907daa7b4deeb4c99d1610eefc343436d164ace717b32cb1d0c45e860e64d69e4c827a07 +doccontainersize 195592 +doccontainerchecksum 130c0e5f27f0de161949fca202f73bce3486e9346a48584ce1b8636c16367eb3398b36f0145e37531d64933698c201132ba90ca3b5d5b011978d0fad0cc5ad63 +docfiles size=49 + RELOC/doc/latex/labelschanged/README.txt details="Readme" + RELOC/doc/latex/labelschanged/labelschanged.pdf details="Package documentation" +srccontainersize 4164 +srccontainerchecksum 59c1cd3371e97542f6f1cd8fcd14b3cadfabffbecad635bcea33eb535e45ba8b174e9e392e135c799afec08c195b867477255d1336c281a1e9dffe7c1c457cd3 +srcfiles size=4 + RELOC/source/latex/labelschanged/labelschanged.dtx + RELOC/source/latex/labelschanged/labelschanged.ins +runfiles size=1 + RELOC/tex/latex/labelschanged/labelschanged.sty +catalogue-contact-home http://bdtechconcepts.com/ +catalogue-ctan /macros/latex/contrib/labelschanged +catalogue-date 2017-12-13 18:27:49 +0100 +catalogue-license pd +catalogue-topics misc-support label-ref +catalogue-version 1.0 name labyrinth category Package revision 33454 -shortdesc Draw labyrinths and solution paths. +shortdesc Draw labyrinths and solution paths relocated 1 longdesc The labyrinth package provides code and an environment for longdesc typesetting simple labyrinths with LaTeX, and generating an longdesc automatic or manual solution path. -runfiles size=2 - RELOC/tex/latex/labyrinth/labyrinth.sty +containersize 2348 +containerchecksum 06c61f5a0a2b39d644d5b741877f445dea48fefaaddfb7f60251ecb328f16ba2ec6f09731608ac5ca7b288fe77fc193984dad25b8f0ad0da5f35bdd43fb2f8ee +doccontainersize 228388 +doccontainerchecksum 980a3bef8b8eb51cd454c835ba09205f8dedab92f747db9704c72d5433db75f68df298ee4ca06c6d68e0cb4c4b733c882d14bbbb9d877406163b0f95730a10ce docfiles size=63 - RELOC/doc/latex/labyrinth/README + RELOC/doc/latex/labyrinth/README details="Readme" RELOC/doc/latex/labyrinth/classic-en.ist - RELOC/doc/latex/labyrinth/labyrinth.pdf + RELOC/doc/latex/labyrinth/labyrinth.pdf details="Package documentation" RELOC/doc/latex/labyrinth/labyrinth.tex RELOC/doc/latex/labyrinth/lstlocal.cfg +runfiles size=2 + RELOC/tex/latex/labyrinth/labyrinth.sty catalogue-ctan /macros/latex/contrib/labyrinth -catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics games catalogue-version 1.0 name lacheck category TLCore -revision 37078 -shortdesc LaTeX checker. +revision 50602 +shortdesc LaTeX checker longdesc Lacheck is a tool for finding common mistakes in LaTeX longdesc documents. The distribution includes sources, and executables longdesc for OS/2 and Win32 environments. depend lacheck.ARCH -docfiles size=3 +containersize 464 +containerchecksum 7b8c4c7d15618b7e0d860afce675124372d31bc11b5e89ba169c355401714929c2c192912e7d666a3ca98c805e2f4942bd6173763a5a9265d1f19467a29223d2 +doccontainersize 21132 +doccontainerchecksum 59202286440ad95fc96576f6915843adfb2b3f0092509175c759c690069e36c0ce1ae66ef46c1dc1b9c33e42e7819b1f3490b45d3c3933233201d3e86eeb5746 +docfiles size=7 texmf-dist/doc/man/man1/lacheck.1 texmf-dist/doc/man/man1/lacheck.man1.pdf +catalogue-also l2tabu nag catalogue-ctan /support/lacheck -catalogue-date 2015-03-27 20:49:39 +0100 +catalogue-date 2017-06-27 04:58:12 +0200 catalogue-license gpl +catalogue-topics latex-qual + +name lacheck.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of lacheck +containersize 19324 +containerchecksum 20151c2e5b98216dd7842b95b18b06de0b2aed39d3b8e15f2e4f8485e659b6d1da6142a6d5b2f30366d6499af74abf9d5d2b9b1c803b7c2d97dea2ccd213df66 +binfiles arch=aarch64-linux size=16 + bin/aarch64-linux/lacheck + +name lacheck.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of lacheck +containersize 22112 +containerchecksum 39fed1164f08ecd17d6bdcbc330ab3ed9954638afbf214ef3f9efc293ed313e3190532e9f7116d805d24ec1438f38d2e870d66017b775043a44010234ac38431 +binfiles arch=amd64-freebsd size=16 + bin/amd64-freebsd/lacheck + +name lacheck.amd64-netbsd +category TLCore +revision 48698 +shortdesc amd64-netbsd files of lacheck +containersize 21024 +containerchecksum 8bc7c1e2b362cc7ea68beabf9301b86fe473e8d322c1d679528a6e0b8c55517624b05eeab6e191bea71489d175b40288dc0583cbae74fdaafe275867afecfc44 +binfiles arch=amd64-netbsd size=17 + bin/amd64-netbsd/lacheck + +name lacheck.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of lacheck +containersize 18836 +containerchecksum 7e531f271caad17b9e9073b037ad324c2b18fc573c3cadff4940ce2aa10ee8d46370967c482d3ad57f7ca229be774d9572eb5351b884a1bb45974dcf1e18b37c +binfiles arch=armhf-linux size=15 + bin/armhf-linux/lacheck + +name lacheck.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of lacheck +containersize 19516 +containerchecksum ef04f1df19845c433cee4dae8e060d007b2aa82d3d64b657bd863ac1097dea862a092faf253b9d19126cbf4e258f8ad5dfdea5eb4b71c11d006c4949cfc53346 +binfiles arch=i386-cygwin size=16 + bin/i386-cygwin/lacheck.exe + +name lacheck.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of lacheck +containersize 18020 +containerchecksum 1d5441ee75194a64c1f5e5a19dd542d60f34de15a5d51b877abf0e430a4fae58c6d4008e09f1655849a8b555117db773ea88a8b4d3683cd1955203a96a0c9fc2 +binfiles arch=i386-freebsd size=14 + bin/i386-freebsd/lacheck name lacheck.i386-linux category TLCore -revision 37340 +revision 50281 shortdesc i386-linux files of lacheck -binfiles arch=i386-linux size=16 +containersize 19672 +containerchecksum 8f2302fa055f70ff78dca96e2c0f0ec62ef58b4d40a987f9775c0a2fa532cd2f6ab4adfaca8e7e531d9fe7d5237d7980e73e77e0e6d5412800db9a84bdc11825 +binfiles arch=i386-linux size=15 bin/i386-linux/lacheck -name lambda-lists -category Package -revision 31402 -shortdesc Lists in TeX's mouth. -relocated 1 -longdesc These list-processing macros avoid the reassignments employed -longdesc in the macros shown in Appendix D of the TeXbook: all the -longdesc manipulations take place in what Knuth is pleased to call -longdesc "TeX's mouth". -runfiles size=1 - RELOC/tex/plain/lambda-lists/lambda.sty -docfiles size=45 - RELOC/doc/plain/lambda-lists/README - RELOC/doc/plain/lambda-lists/lambda-lists.pdf - RELOC/doc/plain/lambda-lists/lambda-lists.tex -catalogue-ctan /macros/generic/lambda-lists -catalogue-date 2013-08-20 11:39:33 +0200 -catalogue-license lppl +name lacheck.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of lacheck +containersize 17616 +containerchecksum 6a963a4d0a1883e8c9d86679c6e348d0bcd2dea2f8acda24c6ec1a696539ff7ba8364e77a66df6b07d0f3f2045c5e1be1829a96f4296bd23e644bcb3b3fe4fbc +binfiles arch=i386-netbsd size=15 + bin/i386-netbsd/lacheck + +name lacheck.i386-solaris +category TLCore +revision 48732 +shortdesc i386-solaris files of lacheck +containersize 19984 +containerchecksum 9b7ffa77580d9161bc8aec9267434870d4d4a2410589ea8e579b47624a9cbc6f4fd4c48215e40eb861c9e955e784c20c7cc7eb825825214150b97fbdd9d73a4a +binfiles arch=i386-solaris size=15 + bin/i386-solaris/lacheck + +name lacheck.win32 +category TLCore +revision 50155 +shortdesc win32 files of lacheck +containersize 19160 +containerchecksum b83102e2fd8e96d4295d06f474631d351478acecd38c9ebf9d76121e6f5cf819f9520984ace0a05b54c502dad93d44178da4161efc609b5a81bc7bd56749b83a +binfiles arch=win32 size=15 + bin/win32/lacheck.exe + +name lacheck.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of lacheck +containersize 21772 +containerchecksum e4a89edb7f89edf75658808f97d70b1e8c8466a597bc2ccfc7d3c4118e2c6914c3c97828cbdd02d4a2689d83dba2231bbec3cc6306afa661ea3626f571804d00 +binfiles arch=x86_64-cygwin size=16 + bin/x86_64-cygwin/lacheck.exe + +name lacheck.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of lacheck +containersize 21148 +containerchecksum 47e6822fb252fe731d441cd3b57fc9ba68b772c0b3bba74e1fbf7d94a5a1ddcb77835849fcf220f68482a891b9366c3643ad588777d670b4d481ad03ee1f9d35 +binfiles arch=x86_64-darwin size=16 + bin/x86_64-darwin/lacheck + +name lacheck.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of lacheck +containersize 19912 +containerchecksum 845d7f2bcba5e46666c406e5cb07378ec55ab9b4edd69cfe87b5f122933c94fc049ebdf7cf2232c55cd926061cadf00f7cd40d928739e7e93c32129e9152e0e2 +binfiles arch=x86_64-darwinlegacy size=15 + bin/x86_64-darwinlegacy/lacheck + +name lacheck.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of lacheck +containersize 22176 +containerchecksum 2218ea13de76a49bdc5972173e4d25758a8e0fa78cf863c7dce80c352f345122e63f7b4cbd7608e537383acd9d71f97e4336a0e5593a98f5e46985fac280d8d7 +binfiles arch=x86_64-linux size=16 + bin/x86_64-linux/lacheck + +name lacheck.x86_64-linuxmusl +category TLCore +revision 46840 +shortdesc x86_64-linuxmusl files of lacheck +containersize 22908 +containerchecksum 760e2214b4f34eda3f6aa9b416325c88ed36f92ad54313d53c9dedb89466a5ca3d4fa183974f0bbf33843e4503c29e9542d8ca5ba56ee1cf36ae466c55d29d62 +binfiles arch=x86_64-linuxmusl size=17 + bin/x86_64-linuxmusl/lacheck + +name lacheck.x86_64-solaris +category TLCore +revision 48732 +shortdesc x86_64-solaris files of lacheck +containersize 23636 +containerchecksum 3dec43f2172f9b52d1cfc9659ec350f6df6e8371f47242bf4b0139c3ecf08055e71f2d14e1ef5e0ac9a893a17360e1e9f7afad14d73ab041c9888b8a1a3b08b6 +binfiles arch=x86_64-solaris size=17 + bin/x86_64-solaris/lacheck + +name ladder +category Package +revision 44394 +shortdesc Draw simple ladder diagrams using TikZ +relocated 1 +longdesc This package permits the creation of simple ladder diagrams +longdesc within LaTeX documents. Required packages are tikz, ifthen, and +longdesc calc. +containersize 1412 +containerchecksum bbe2f94442a4f308a416e9d849f9e4b8af12387e59e73931b563d5daaee312dbdf82a99f5122de897cb069a54f3bc13619e719ed717b38db4aebcac72c2c4f93 +doccontainersize 214124 +doccontainerchecksum 1cf2a2a2267e819c9ee723af9cf51d711f778c3583c859eb01f2b2faebfd0f7a6fc4f4ab6caa83a9df6a797175ec27d29f0debbeaeb39387954070623ab60b29 +docfiles size=55 + RELOC/doc/latex/ladder/README.md details="Readme" + RELOC/doc/latex/ladder/ladder.pdf details="Package documentation" + RELOC/doc/latex/ladder/ladder.tex +runfiles size=2 + RELOC/tex/latex/ladder/ladder.sty +catalogue-contact-bugs https://github.com/AurelienC/tex-ladder/issues +catalogue-contact-development https://github.com/AurelienC/tex-ladder/graphs/contributors +catalogue-contact-repository https://github.com/AurelienC/tex-ladder +catalogue-ctan /graphics/pgf/contrib/ladder +catalogue-date 2017-10-09 07:03:21 +0200 +catalogue-license mit +catalogue-topics pgf-tikz diagram-circ name lambda category Package -revision 28669 +revision 45756 +shortdesc LaTeX for Omega and Aleph relocated 1 +containersize 47360 +containerchecksum 54da97daf172e3dae434e75425b80d1c617ddc9991f6ee804cd812e2c4bd70b49eb1a01318e243c10998870877d4f76e084b5ef0b0eaa89afa66f77a124a7c02 runfiles size=85 RELOC/tex/lambda/base/UT1cmr.fd RELOC/tex/lambda/base/UT1omlgc.fd @@ -91409,10 +145786,34 @@ runfiles size=85 RELOC/tex/lambda/config/lambda.ini RELOC/tex/lambda/config/language.dat +name lambda-lists +category Package +revision 31402 +shortdesc Lists in TeX's mouth +relocated 1 +longdesc These list-processing macros avoid the reassignments employed +longdesc in the macros shown in Appendix D of the TeXbook: all the +longdesc manipulations take place in what Knuth is pleased to call +longdesc "TeX's mouth". +containersize 1548 +containerchecksum caeb3a547eb68d3e255d729cb6ec390cfaeb3bd9d4b4b6e8f877140fe24f4ee3ff0ddccd4107fa836faf5163d3d71209fed4a9e052d3329ff22a892d62b43b92 +doccontainersize 130024 +doccontainerchecksum 846c403f99194a19cd21e4d7367a1b43a8ad608055315bb36a1113fb37dd3d922dd8c5cb8474ae52ed3006be520b7e9023680e85f0dbb17f69a41c8c17e81a5c +docfiles size=45 + RELOC/doc/plain/lambda-lists/README + RELOC/doc/plain/lambda-lists/lambda-lists.pdf + RELOC/doc/plain/lambda-lists/lambda-lists.tex +runfiles size=1 + RELOC/tex/plain/lambda-lists/lambda.sty +catalogue-ctan /macros/generic/lambda-lists +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics macro-supp + name langcode category Package revision 27764 -shortdesc Simple language-dependent settings based on language codes. +shortdesc Simple language-dependent settings based on language codes relocated 1 longdesc The package provides a command \uselangcode{} to adjust longdesc language-dependent settings such as key words, typographical @@ -91422,24 +145823,120 @@ longdesc code, for preparing a document that is to be separately typeset longdesc in different laguages. The package is dependent on the plainpkg longdesc package, and is already in use in the morehype and catcodes longdesc packages. -runfiles size=2 - RELOC/tex/generic/langcode/langcode.sty +containersize 3032 +containerchecksum bc3e601701732d3ff533a7415446c2aaf7306732fdd6a8ac8aee6571cbdfc02b38f51fffde3a80cf5df6b0dd5e649971406f76d394500a74f1830139ea0bc0bb +doccontainersize 313268 +doccontainerchecksum 7ac261071a2902d1e24cbe4bd43bf1baef418bdeb4d3c1dbee4db273d29918649f346e97b5ead3e3de2820110c0cd11dc58c78f765dbd07f7221f28ede5242a8 docfiles size=87 - RELOC/doc/generic/langcode/README + RELOC/doc/generic/langcode/README details="Readme" RELOC/doc/generic/langcode/SrcFILEs.txt - RELOC/doc/generic/langcode/langcode.pdf + RELOC/doc/generic/langcode/langcode.pdf details="Package documentation" +srccontainersize 2064 +srccontainerchecksum 60baef83840b42deb38d8ae66e18484e4a0431fedd23b1a8dc96c426840ee57f37ab613d93409c3ad8660eef2e759757daf39ec9aace30350623accbd21d2de8 srcfiles size=2 RELOC/source/generic/langcode/langcode.tex RELOC/source/generic/langcode/srcfiles.tex +runfiles size=2 + RELOC/tex/generic/langcode/langcode.sty +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html catalogue-ctan /macros/generic/langcode -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-05-06 08:29:51 +0200 catalogue-license lppl1.3 +catalogue-topics multilingual macro-gen catalogue-version 0.2 +name langsci +category Package +revision 50706 +shortdesc Typeset books for publication with Language Science Press +relocated 1 +longdesc This packages allows you to typeset monographs and edited +longdesc volumes for publication with Language Science Press +longdesc (http://www.langsci-press.org). It includes all necessary files +longdesc for title pages, frontmatter, main content, list of references +longdesc and indexes. Dust jackets for BoD and Createspace +longdesc (print-on-demand service providers) can also be produced. +containersize 89588 +containerchecksum de35684ed71408adbda8f7238c80bd4e453761e18dd4083ec4680ac8cae711dfd0aa8339cc0ee211c231b17729d6e85316845586f6f6ee70e5c0577d84b1c9ad +doccontainersize 201980 +doccontainerchecksum 439ac71163f1dad47fd4f2eb533f4a17a84bf3258f31baecf941242ea845d37b55ee88e8b879b3cdd070caca8f98b6b5d591c07889214ec1d64e32c3112d8476 +docfiles size=85 + RELOC/doc/xelatex/langsci/README.md details="README.md" + RELOC/doc/xelatex/langsci/ccby.eps + RELOC/doc/xelatex/langsci/ccbynd.eps + RELOC/doc/xelatex/langsci/documentation/langsci-doc.pdf details="Package documentation" + RELOC/doc/xelatex/langsci/documentation/langsci-doc.tex + RELOC/doc/xelatex/langsci/examples/langsci-test.bib + RELOC/doc/xelatex/langsci/examples/samplemonograph.tex + RELOC/doc/xelatex/langsci/examples/samplepaper.tex + RELOC/doc/xelatex/langsci/examples/samplevolume.tex + RELOC/doc/xelatex/langsci/labphon-logo.pdf + RELOC/doc/xelatex/langsci/storagelogo.pdf +runfiles size=107 + RELOC/tex/xelatex/langsci/langsci-advertisement.tex + RELOC/tex/xelatex/langsci/langsci-avm.sty + RELOC/tex/xelatex/langsci/langsci-basic.sty + RELOC/tex/xelatex/langsci/langsci-bidi.sty + RELOC/tex/xelatex/langsci/langsci-cgloss.sty + RELOC/tex/xelatex/langsci/langsci-colors.def + RELOC/tex/xelatex/langsci/langsci-forest-setup.sty + RELOC/tex/xelatex/langsci/langsci-gb4e.sty + RELOC/tex/xelatex/langsci/langsci-glyphs.sty + RELOC/tex/xelatex/langsci/langsci-hyphenation-de.tex + RELOC/tex/xelatex/langsci/langsci-hyphenation-fr.tex + RELOC/tex/xelatex/langsci/langsci-hyphenation-pt.tex + RELOC/tex/xelatex/langsci/langsci-hyphenation-universal.tex + RELOC/tex/xelatex/langsci/langsci-lgr.sty + RELOC/tex/xelatex/langsci/langsci-linguex.sty + RELOC/tex/xelatex/langsci/langsci-optional.sty + RELOC/tex/xelatex/langsci/langsci-series.def + RELOC/tex/xelatex/langsci/langsci-subparts.sty + RELOC/tex/xelatex/langsci/langsci-tbls.sty + RELOC/tex/xelatex/langsci/langsci-textipa.sty + RELOC/tex/xelatex/langsci/langsci-tikz.sty + RELOC/tex/xelatex/langsci/langsci-tobi.sty + RELOC/tex/xelatex/langsci/langsci-unified.bbx + RELOC/tex/xelatex/langsci/langsci-unified.cbx + RELOC/tex/xelatex/langsci/langsci_logo_nocolor.pdf + RELOC/tex/xelatex/langsci/langsci_spinelogo_nocolor.pdf + RELOC/tex/xelatex/langsci/langscibook.cls + RELOC/tex/xelatex/langsci/tbls-alarm.pdf + RELOC/tex/xelatex/langsci/tbls-book.eps + RELOC/tex/xelatex/langsci/tbls-book.pdf + RELOC/tex/xelatex/langsci/tbls-bulb.eps + RELOC/tex/xelatex/langsci/tbls-bulb.pdf + RELOC/tex/xelatex/langsci/tbls-bulbon.pdf + RELOC/tex/xelatex/langsci/tbls-code.pdf + RELOC/tex/xelatex/langsci/tbls-explore.pdf + RELOC/tex/xelatex/langsci/tbls-filter.pdf + RELOC/tex/xelatex/langsci/tbls-glass.eps + RELOC/tex/xelatex/langsci/tbls-glass.pdf + RELOC/tex/xelatex/langsci/tbls-glass2.pdf + RELOC/tex/xelatex/langsci/tbls-law.eps + RELOC/tex/xelatex/langsci/tbls-law.pdf + RELOC/tex/xelatex/langsci/tbls-more.pdf + RELOC/tex/xelatex/langsci/tbls-pencil.pdf + RELOC/tex/xelatex/langsci/tbls-people.pdf + RELOC/tex/xelatex/langsci/tbls-plus.pdf + RELOC/tex/xelatex/langsci/tbls-r.pdf + RELOC/tex/xelatex/langsci/tbls-receipt.pdf + RELOC/tex/xelatex/langsci/tbls-refresh.pdf + RELOC/tex/xelatex/langsci/tbls-report.pdf + RELOC/tex/xelatex/langsci/tbls-test.pdf + RELOC/tex/xelatex/langsci/tbls-tree.pdf +catalogue-contact-bugs https://github.com/langsci/langscibook/issues +catalogue-contact-home http://www.langsci-press.org +catalogue-contact-repository https://github.com/langsci/langscibook +catalogue-contact-support mailto:support@langsci-press.org +catalogue-ctan /macros/xetex/latex/langsci +catalogue-date 2019-04-02 09:46:01 +0200 +catalogue-license lppl1.3 +catalogue-topics journalpub book-pub class + name lapdf category Package revision 23806 -shortdesc PDF drawing directly in TeX documents. +shortdesc PDF drawing directly in TeX documents relocated 1 longdesc The package provides the means to use PDF drawing primitives to longdesc produce high quality, colored graphics. It uses Bezier curves @@ -91451,10 +145948,12 @@ longdesc grids with many specs; it can rotate, clip and do many nice longdesc things easily it has two looping commands for programming and longdesc many instructive example files. The package requires pdfTeX but longdesc otherwise only depends on the calc package. -runfiles size=16 - RELOC/tex/latex/lapdf/lapdf.sty +containersize 11828 +containerchecksum 10bb6891b82334f7dad4a1cf48c78b2b55c3b4a8939628a26576e99495f00e2bb8ee82028b13db4de6224e58e421402794feb2591842030cd47898506589ff6d +doccontainersize 2533132 +doccontainerchecksum 6e561e0d513f7b18e4e40d11fc1f077a061e6cb08ed072de1d186bb86ab1fbd3905af6a79f9dbb0c201e437a1a8716706a83f1709d580c293961ae454699c9c0 docfiles size=819 - RELOC/doc/latex/lapdf/README + RELOC/doc/latex/lapdf/README details="Readme" RELOC/doc/latex/lapdf/arcs.pdf RELOC/doc/latex/lapdf/arcs.tex RELOC/doc/latex/lapdf/bezier.pdf @@ -91491,7 +145990,7 @@ docfiles size=819 RELOC/doc/latex/lapdf/grids.tex RELOC/doc/latex/lapdf/hippo.pdf RELOC/doc/latex/lapdf/hippo.tex - RELOC/doc/latex/lapdf/lapdf.pdf + RELOC/doc/latex/lapdf/lapdf.pdf details="Package documentation" RELOC/doc/latex/lapdf/lapdf.tex RELOC/doc/latex/lapdf/licence.txt RELOC/doc/latex/lapdf/line.pdf @@ -91531,208 +146030,483 @@ docfiles size=819 RELOC/doc/latex/lapdf/turtle.tex RELOC/doc/latex/lapdf/vector.pdf RELOC/doc/latex/lapdf/vector.tex +runfiles size=16 + RELOC/tex/latex/lapdf/lapdf.sty catalogue-ctan /macros/latex/contrib/lapdf -catalogue-date 2014-10-17 21:54:02 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics graphics-in-tex catalogue-version 1.1 name lastpackage category Package revision 34481 -shortdesc Indicates the last loaded package. +shortdesc Indicates the last loaded package relocated 1 longdesc This package may be used to define the last point where some longdesc code shall be executed. Its provides a package name for use in longdesc package-placing commands from the author's templatetools. Usage longdesc examples are provided in the documentation. -runfiles size=1 - RELOC/tex/latex/lastpackage/lastpackage.sty +containersize 980 +containerchecksum f4d30e327704b32afe1bcb81023a247095203a9b47357f9a6dc4b631f4bb669255ba899cf1c8378b42ebd16f2608d8a649a0999f26e3d05c963eced1cc955ee2 +doccontainersize 254872 +doccontainerchecksum f31731b5a93c154db123e66699ac5175fb63b965522bb511d344577645f9b8ac6d78c6a1a108cad8914b1c01b1c7a6e656743b075a03322c306aaa5417f62be2 docfiles size=64 - RELOC/doc/latex/lastpackage/README - RELOC/doc/latex/lastpackage/lastpackage.pdf + RELOC/doc/latex/lastpackage/README details="Readme" + RELOC/doc/latex/lastpackage/lastpackage.pdf details="Package documentation" +srccontainersize 2580 +srccontainerchecksum f894a701e4f30797039bf60e98f9f9e6cc730a167fcccf88075802c0a5a0244eefce9f854b95207b7a0714984592030965f818ecd72c98af199c07f3400eb74d srcfiles size=3 RELOC/source/latex/lastpackage/lastpackage.dtx RELOC/source/latex/lastpackage/lastpackage.ins +runfiles size=1 + RELOC/tex/latex/lastpackage/lastpackage.sty catalogue-ctan /macros/latex/contrib/lastpackage -catalogue-date 2014-07-01 22:21:53 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics preamble-admin catalogue-version 0.1 name lastpage category Package revision 36680 -shortdesc Reference last page for Page N of M type footers. +shortdesc Reference last page for Page N of M type footers relocated 1 longdesc Reference the number of pages in your LaTeX document through longdesc the introduction of a new label which can be referenced like longdesc \pageref{LastPage} to give a reference to the last page of a longdesc document. It is particularly useful in the page footer that longdesc says: Page N of M. -runfiles size=4 - RELOC/tex/latex/lastpage/lastpage.sty - RELOC/tex/latex/lastpage/lastpage209.sty +containersize 3556 +containerchecksum adcd9319022ecf2a5b959ede5d5ce8c5d6a3e7efe1aae5f84abfa7d138162e24a403c6d50604cb6bf8bc80a918837f6d78dee60a452397e7a495cc4d15e52956 +doccontainersize 547124 +doccontainerchecksum 2eb7e8457918e2ed51abf6f48d5f5d93157eff19b8e320a782bc204b44c58a684cdeb2dd3b1c28f5a8de7434b6da9af49ffb2d939ae80875234797149a80c2ab docfiles size=139 - RELOC/doc/latex/lastpage/README - RELOC/doc/latex/lastpage/lastpage-example.pdf + RELOC/doc/latex/lastpage/README details="Readme" + RELOC/doc/latex/lastpage/lastpage-example.pdf details="Package examples" RELOC/doc/latex/lastpage/lastpage-example.tex - RELOC/doc/latex/lastpage/lastpage.pdf + RELOC/doc/latex/lastpage/lastpage.pdf details="Package documentation" +srccontainersize 19772 +srccontainerchecksum 53b1f86deddefe6f61b270ae18cc705a8ec1360a98a5e5338730aa7cb1653383062cede821dc670c5a9db0064e2989961d2604491bd6a5df9fd90f6e18ba0ae0 srcfiles size=22 RELOC/source/latex/lastpage/lastpage.drv RELOC/source/latex/lastpage/lastpage.dtx RELOC/source/latex/lastpage/lastpage.ins +runfiles size=4 + RELOC/tex/latex/lastpage/lastpage.sty + RELOC/tex/latex/lastpage/lastpage209.sty +catalogue-also totpages catalogue-ctan /macros/latex/contrib/lastpage -catalogue-date 2015-03-30 14:40:12 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics label-ref catalogue-version 1.2m -name latex2e-help-texinfo-spanish -category Package -revision 37356 -relocated 1 -docfiles size=753 - RELOC/doc/info/latex2e-es.info - RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.dbk - RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.html - RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.pdf - RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.texi - RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.txt - RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.xml - -name latex2e-help-texinfo -category Package -revision 37355 -shortdesc Unofficial reference manual covering LaTeX2e. -relocated 1 -longdesc The manual is provided as Texinfo source (which was originally -longdesc derived from the VMS help file in the DECUS TeX distribution of -longdesc 1990, with many subsequent changes). This is a collaborative -longdesc development, and details of getting involved are to be found on -longdesc the package home page. All the other formats in the -longdesc distribution are derived from the Texinfo source, as usual. -docfiles size=754 - RELOC/doc/info/latex2e.info - RELOC/doc/latex/latex2e-help-texinfo/ChangeLog - RELOC/doc/latex/latex2e-help-texinfo/Makefile - RELOC/doc/latex/latex2e-help-texinfo/NEWS - RELOC/doc/latex/latex2e-help-texinfo/README - RELOC/doc/latex/latex2e-help-texinfo/aspell.en.pws - RELOC/doc/latex/latex2e-help-texinfo/latex2e.dbk - RELOC/doc/latex/latex2e-help-texinfo/latex2e.html - RELOC/doc/latex/latex2e-help-texinfo/latex2e.pdf - RELOC/doc/latex/latex2e-help-texinfo/latex2e.texi - RELOC/doc/latex/latex2e-help-texinfo/latex2e.txt - RELOC/doc/latex/latex2e-help-texinfo/latex2e.xml - RELOC/doc/latex/latex2e-help-texinfo/ltx-help.el -catalogue-ctan /info/latex2e-help-texinfo -catalogue-date 2015-05-12 19:22:39 +0200 -catalogue-license other-free - -name latex2man -category Package -revision 31989 -shortdesc Translate LaTeX-based manual pages into Unix man format. -longdesc A tool to translate UNIX manual pages written with LaTeX into a -longdesc man-page format understood by the Unix man(1) command. -longdesc Alternatively HTML or TexInfo code can be produced. Output of -longdesc parts of the text may be supressed using the conditional text -longdesc feature. -depend latex2man.ARCH -runfiles size=16 - texmf-dist/scripts/latex2man/latex2man - texmf-dist/tex/latex/latex2man/latex2man.cfg - texmf-dist/tex/latex/latex2man/latex2man.sty -docfiles size=117 - texmf-dist/doc/info/latex2man.info - texmf-dist/doc/man/man1/latex2man.1 - texmf-dist/doc/man/man1/latex2man.man1.pdf - texmf-dist/doc/support/latex2man/CHANGES - texmf-dist/doc/support/latex2man/INSTALL - texmf-dist/doc/support/latex2man/Makefile - texmf-dist/doc/support/latex2man/README - texmf-dist/doc/support/latex2man/THIS-IS-VERSION-1.24 - texmf-dist/doc/support/latex2man/latex2man-CHANGES.html - texmf-dist/doc/support/latex2man/latex2man.css - texmf-dist/doc/support/latex2man/latex2man.html - texmf-dist/doc/support/latex2man/latex2man.pdf - texmf-dist/doc/support/latex2man/latex2man.tex - texmf-dist/doc/support/latex2man/latex2man.texi - texmf-dist/doc/support/latex2man/latex2man.trans - texmf-dist/doc/support/latex2man/latex2man.txt -catalogue-ctan /support/latex2man -catalogue-date 2012-06-09 10:33:16 +0200 -catalogue-license lppl -catalogue-version 1.24 - -name latex2man.i386-linux -category Package -revision 13663 -shortdesc i386-linux files of latex2man -binfiles arch=i386-linux size=1 - bin/i386-linux/latex2man - -name latex4wp-it -category Package -revision 36000 -shortdesc LaTeX guide for word processor users, in Italian. -relocated 1 -longdesc The package provides a version of the document in Italian -docfiles size=250 - RELOC/doc/latex/latex4wp-it/COME-COMPORRE - RELOC/doc/latex/latex4wp-it/README - RELOC/doc/latex/latex4wp-it/dat2tex - RELOC/doc/latex/latex4wp-it/exa.sty - RELOC/doc/latex/latex4wp-it/gnuplot.gp - RELOC/doc/latex/latex4wp-it/gnuplot.pdf - RELOC/doc/latex/latex4wp-it/inkscape-tb.png - RELOC/doc/latex/latex4wp-it/inkscape.png - RELOC/doc/latex/latex4wp-it/latex4wp-it.pdf - RELOC/doc/latex/latex4wp-it/latex4wp-it.tex - RELOC/doc/latex/latex4wp-it/midifile.mid - RELOC/doc/latex/latex4wp-it/tbx.eps - RELOC/doc/latex/latex4wp-it/tbx.pdf - RELOC/doc/latex/latex4wp-it/tbx.tex -catalogue-ctan /info/latex4wp-it -catalogue-date 2015-01-08 16:57:57 +0100 -catalogue-license fdl -catalogue-version 1.0.10 - -name latex4wp +name latex category Package -revision 35999 -shortdesc A LaTeX guide specifically designed for word processor users. +revision 49390 +shortdesc A TeX macro package that defines LaTeX relocated 1 -longdesc "LaTeX for Word Processor Users" is a guide that helps -longdesc converting knowledge and techniques of word processing into the -longdesc LaTeX typesetting environment. It aims at helping WP users use -longdesc LaTeX instead. -docfiles size=240 - RELOC/doc/latex/latex4wp/HOW-TO-TYPESET - RELOC/doc/latex/latex4wp/README - RELOC/doc/latex/latex4wp/dat2tex.sh - RELOC/doc/latex/latex4wp/exa.sty - RELOC/doc/latex/latex4wp/gnuplot.gp - RELOC/doc/latex/latex4wp/gnuplot.pdf - RELOC/doc/latex/latex4wp/inkscape-tb.png - RELOC/doc/latex/latex4wp/inkscape.png - RELOC/doc/latex/latex4wp/latex4wp.pdf - RELOC/doc/latex/latex4wp/latex4wp.tex - RELOC/doc/latex/latex4wp/midifile.mid - RELOC/doc/latex/latex4wp/tbx.eps - RELOC/doc/latex/latex4wp/tbx.pdf - RELOC/doc/latex/latex4wp/tbx.tex -catalogue-ctan /info/latex4wp -catalogue-date 2015-01-08 16:51:57 +0100 -catalogue-license fdl -catalogue-version 1.0.10 +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 157692 +containerchecksum 9a457a0f8eacc9fd46aec1cd8b2636b497f88445f0790c308e94fbfefab111ba3db9ee82c17250fb75d44492d1f064f85bfc2fb239b71912b764f8bb113ad8fb +doccontainersize 13653776 +doccontainerchecksum 1acba8ad2cca66c7f3009ec5c5f99f8d109f98418a3649d8bbdb8749e7394d113ff67c85ffe5b3e991cb49eec3c42507eaf56f2bec204f6b9c100d4bc148f49b +docfiles size=4040 + RELOC/doc/latex/base/README.txt + RELOC/doc/latex/base/TEMPLATE-IncludeInRelease.txt + RELOC/doc/latex/base/alltt.pdf + RELOC/doc/latex/base/bugs.txt + RELOC/doc/latex/base/cfgguide.pdf + RELOC/doc/latex/base/cfgguide.tex + RELOC/doc/latex/base/changes-doc.txt + RELOC/doc/latex/base/changes.old.txt + RELOC/doc/latex/base/changes.txt + RELOC/doc/latex/base/classes.pdf + RELOC/doc/latex/base/clsguide.pdf + RELOC/doc/latex/base/clsguide.tex + RELOC/doc/latex/base/cmfonts.pdf + RELOC/doc/latex/base/cyrguide.pdf + RELOC/doc/latex/base/cyrguide.tex + RELOC/doc/latex/base/doc.pdf + RELOC/doc/latex/base/docstrip.pdf + RELOC/doc/latex/base/encguide.pdf + RELOC/doc/latex/base/encguide.tex + RELOC/doc/latex/base/exscale.pdf + RELOC/doc/latex/base/fix-cm.pdf + RELOC/doc/latex/base/fntguide.pdf + RELOC/doc/latex/base/fntguide.tex + RELOC/doc/latex/base/fontdef.pdf + RELOC/doc/latex/base/github-0049.pdf + RELOC/doc/latex/base/github-0081.pdf + RELOC/doc/latex/base/github-0081b.pdf + RELOC/doc/latex/base/graphpap.pdf + RELOC/doc/latex/base/ifthen.pdf + RELOC/doc/latex/base/inputenc.pdf + RELOC/doc/latex/base/latexchanges.pdf + RELOC/doc/latex/base/latexchanges.tex + RELOC/doc/latex/base/latexrelease.pdf + RELOC/doc/latex/base/latexsym.pdf + RELOC/doc/latex/base/lb2.err + RELOC/doc/latex/base/lb2.pdf + RELOC/doc/latex/base/legal.txt + RELOC/doc/latex/base/letter.pdf + RELOC/doc/latex/base/lgc2.err + RELOC/doc/latex/base/lgc2.pdf + RELOC/doc/latex/base/lppl-1-0.txt + RELOC/doc/latex/base/lppl-1-1.txt + RELOC/doc/latex/base/lppl-1-2.txt + RELOC/doc/latex/base/lppl.pdf + RELOC/doc/latex/base/lppl.tex + RELOC/doc/latex/base/lppl.txt + RELOC/doc/latex/base/ltclass.pdf + RELOC/doc/latex/base/ltluatex.pdf + RELOC/doc/latex/base/ltnews.pdf + RELOC/doc/latex/base/ltnews.tex + RELOC/doc/latex/base/ltx3info.pdf + RELOC/doc/latex/base/ltx3info.tex + RELOC/doc/latex/base/ltxdoc.pdf + RELOC/doc/latex/base/makeindx.pdf + RELOC/doc/latex/base/manifest.txt + RELOC/doc/latex/base/manual.err + RELOC/doc/latex/base/manual.pdf + RELOC/doc/latex/base/modguide.pdf + RELOC/doc/latex/base/modguide.tex + RELOC/doc/latex/base/nfssfont.pdf + RELOC/doc/latex/base/proc.pdf + RELOC/doc/latex/base/slides.pdf + RELOC/doc/latex/base/slifonts.pdf + RELOC/doc/latex/base/source2e.pdf + RELOC/doc/latex/base/source2e.tex + RELOC/doc/latex/base/syntonly.pdf + RELOC/doc/latex/base/tex2.txt + RELOC/doc/latex/base/texpert.txt + RELOC/doc/latex/base/tlb1144.pdf + RELOC/doc/latex/base/tlc2.err + RELOC/doc/latex/base/tlc2.pdf + RELOC/doc/latex/base/tulm.pdf + RELOC/doc/latex/base/usrguide.pdf + RELOC/doc/latex/base/usrguide.tex + RELOC/doc/latex/base/utf8ienc.pdf + RELOC/doc/latex/base/webcomp.err + RELOC/doc/latex/base/webcomp.pdf +srccontainersize 536864 +srccontainerchecksum 8d4846d43b72d0546d6db98ad8b59f1bf4b9b621ba465758e5de2a99ce34e2e8df8e2a88fbb471e93b29e3a1641361402657d941355986f95ca27f1f728cfbbe +srcfiles size=786 + RELOC/source/latex/base/alltt.dtx + RELOC/source/latex/base/alltt.ins + RELOC/source/latex/base/classes.dtx + RELOC/source/latex/base/classes.ins + RELOC/source/latex/base/cmextra.ins + RELOC/source/latex/base/cmfonts.fdd + RELOC/source/latex/base/cmfonts.ins + RELOC/source/latex/base/doc.dtx + RELOC/source/latex/base/docstrip.dtx + RELOC/source/latex/base/docstrip.ins + RELOC/source/latex/base/ec.ins + RELOC/source/latex/base/exscale.dtx + RELOC/source/latex/base/exscale.ins + RELOC/source/latex/base/fix-cm.dtx + RELOC/source/latex/base/fix-cm.ins + RELOC/source/latex/base/fontdef.dtx + RELOC/source/latex/base/format.ins + RELOC/source/latex/base/graphpap.dtx + RELOC/source/latex/base/graphpap.ins + RELOC/source/latex/base/ifthen.dtx + RELOC/source/latex/base/ifthen.ins + RELOC/source/latex/base/inputenc.dtx + RELOC/source/latex/base/inputenc.ins + RELOC/source/latex/base/latex209.dtx + RELOC/source/latex/base/latex209.ins + RELOC/source/latex/base/latexrelease.dtx + RELOC/source/latex/base/latexrelease.ins + RELOC/source/latex/base/latexsym.dtx + RELOC/source/latex/base/latexsym.ins + RELOC/source/latex/base/letter.dtx + RELOC/source/latex/base/letter.ins + RELOC/source/latex/base/ltalloc.dtx + RELOC/source/latex/base/ltbibl.dtx + RELOC/source/latex/base/ltboxes.dtx + RELOC/source/latex/base/ltclass.dtx + RELOC/source/latex/base/ltcntrl.dtx + RELOC/source/latex/base/ltcounts.dtx + RELOC/source/latex/base/ltdefns.dtx + RELOC/source/latex/base/ltdirchk.dtx + RELOC/source/latex/base/lterror.dtx + RELOC/source/latex/base/ltfiles.dtx + RELOC/source/latex/base/ltfinal.dtx + RELOC/source/latex/base/ltfloat.dtx + RELOC/source/latex/base/ltfntcmd.dtx + RELOC/source/latex/base/ltfssbas.dtx + RELOC/source/latex/base/ltfsscmp.dtx + RELOC/source/latex/base/ltfssdcl.dtx + RELOC/source/latex/base/ltfssini.dtx + RELOC/source/latex/base/ltfsstrc.dtx + RELOC/source/latex/base/lthyphen.dtx + RELOC/source/latex/base/ltidxglo.dtx + RELOC/source/latex/base/ltlength.dtx + RELOC/source/latex/base/ltlists.dtx + RELOC/source/latex/base/ltlogos.dtx + RELOC/source/latex/base/ltluatex.dtx + RELOC/source/latex/base/ltmath.dtx + RELOC/source/latex/base/ltmiscen.dtx + RELOC/source/latex/base/ltnews01.tex + RELOC/source/latex/base/ltnews02.tex + RELOC/source/latex/base/ltnews03.tex + RELOC/source/latex/base/ltnews04.tex + RELOC/source/latex/base/ltnews05.tex + RELOC/source/latex/base/ltnews06.tex + RELOC/source/latex/base/ltnews07.tex + RELOC/source/latex/base/ltnews08.tex + RELOC/source/latex/base/ltnews09.tex + RELOC/source/latex/base/ltnews10.tex + RELOC/source/latex/base/ltnews11.tex + RELOC/source/latex/base/ltnews12.tex + RELOC/source/latex/base/ltnews13.tex + RELOC/source/latex/base/ltnews14.tex + RELOC/source/latex/base/ltnews15.tex + RELOC/source/latex/base/ltnews16.tex + RELOC/source/latex/base/ltnews17.tex + RELOC/source/latex/base/ltnews18.tex + RELOC/source/latex/base/ltnews19.tex + RELOC/source/latex/base/ltnews20.tex + RELOC/source/latex/base/ltnews21.tex + RELOC/source/latex/base/ltnews22.tex + RELOC/source/latex/base/ltnews23.tex + RELOC/source/latex/base/ltnews24.tex + RELOC/source/latex/base/ltnews25.tex + RELOC/source/latex/base/ltnews26.tex + RELOC/source/latex/base/ltnews27.tex + RELOC/source/latex/base/ltnews28.tex + RELOC/source/latex/base/ltnews29.tex + RELOC/source/latex/base/ltoutenc.dtx + RELOC/source/latex/base/ltoutenc.ins + RELOC/source/latex/base/ltoutput.dtx + RELOC/source/latex/base/ltpage.dtx + RELOC/source/latex/base/ltpageno.dtx + RELOC/source/latex/base/ltpar.dtx + RELOC/source/latex/base/ltpictur.dtx + RELOC/source/latex/base/ltplain.dtx + RELOC/source/latex/base/ltsect.dtx + RELOC/source/latex/base/ltspace.dtx + RELOC/source/latex/base/lttab.dtx + RELOC/source/latex/base/ltthm.dtx + RELOC/source/latex/base/ltvers.dtx + RELOC/source/latex/base/ltxdoc.dtx + RELOC/source/latex/base/ltxref.dtx + RELOC/source/latex/base/makeindx.dtx + RELOC/source/latex/base/makeindx.ins + RELOC/source/latex/base/newdc.ins + RELOC/source/latex/base/newlfont.dtx + RELOC/source/latex/base/nfssfont.dtx + RELOC/source/latex/base/nfssfont.ins + RELOC/source/latex/base/olddc.ins + RELOC/source/latex/base/oldlfont.dtx + RELOC/source/latex/base/preload.dtx + RELOC/source/latex/base/proc.dtx + RELOC/source/latex/base/proc.ins + RELOC/source/latex/base/slides.dtx + RELOC/source/latex/base/slides.ins + RELOC/source/latex/base/slifonts.fdd + RELOC/source/latex/base/syntonly.dtx + RELOC/source/latex/base/syntonly.ins + RELOC/source/latex/base/tulm.fdd + RELOC/source/latex/base/tulm.ins + RELOC/source/latex/base/unpack.ins + RELOC/source/latex/base/utf8ienc.dtx +runfiles size=413 + RELOC/makeindex/latex/gglo.ist + RELOC/makeindex/latex/gind.ist + RELOC/tex/latex/base/alltt.sty + RELOC/tex/latex/base/ansinew.def + RELOC/tex/latex/base/applemac.def + RELOC/tex/latex/base/article.cls + RELOC/tex/latex/base/article.sty + RELOC/tex/latex/base/ascii.def + RELOC/tex/latex/base/bezier.sty + RELOC/tex/latex/base/bk10.clo + RELOC/tex/latex/base/bk11.clo + RELOC/tex/latex/base/bk12.clo + RELOC/tex/latex/base/book.cls + RELOC/tex/latex/base/book.sty + RELOC/tex/latex/base/cp1250.def + RELOC/tex/latex/base/cp1252.def + RELOC/tex/latex/base/cp1257.def + RELOC/tex/latex/base/cp437.def + RELOC/tex/latex/base/cp437de.def + RELOC/tex/latex/base/cp850.def + RELOC/tex/latex/base/cp852.def + RELOC/tex/latex/base/cp858.def + RELOC/tex/latex/base/cp865.def + RELOC/tex/latex/base/decmulti.def + RELOC/tex/latex/base/doc.sty + RELOC/tex/latex/base/docstrip.tex + RELOC/tex/latex/base/exscale.sty + RELOC/tex/latex/base/fix-cm.sty + RELOC/tex/latex/base/fixltx2e.sty + RELOC/tex/latex/base/flafter.sty + RELOC/tex/latex/base/fleqn.clo + RELOC/tex/latex/base/fleqn.sty + RELOC/tex/latex/base/fltrace.sty + RELOC/tex/latex/base/fontenc.sty + RELOC/tex/latex/base/fontmath.cfg + RELOC/tex/latex/base/fontmath.ltx + RELOC/tex/latex/base/fonttext.cfg + RELOC/tex/latex/base/fonttext.ltx + RELOC/tex/latex/base/graphpap.sty + RELOC/tex/latex/base/hyphen.ltx + RELOC/tex/latex/base/idx.tex + RELOC/tex/latex/base/ifthen.sty + RELOC/tex/latex/base/inputenc.sty + RELOC/tex/latex/base/lablst.tex + RELOC/tex/latex/base/latex.ltx + RELOC/tex/latex/base/latex209.def + RELOC/tex/latex/base/latexrelease.sty + RELOC/tex/latex/base/latexsym.sty + RELOC/tex/latex/base/latin1.def + RELOC/tex/latex/base/latin10.def + RELOC/tex/latex/base/latin2.def + RELOC/tex/latex/base/latin3.def + RELOC/tex/latex/base/latin4.def + RELOC/tex/latex/base/latin5.def + RELOC/tex/latex/base/latin9.def + RELOC/tex/latex/base/lcyenc.dfu + RELOC/tex/latex/base/leqno.clo + RELOC/tex/latex/base/leqno.sty + RELOC/tex/latex/base/letter.cls + RELOC/tex/latex/base/letter.sty + RELOC/tex/latex/base/ltluatex.lua + RELOC/tex/latex/base/ltluatex.tex + RELOC/tex/latex/base/ltnews.cls + RELOC/tex/latex/base/ltxcheck.tex + RELOC/tex/latex/base/ltxdoc.cls + RELOC/tex/latex/base/ltxguide.cls + RELOC/tex/latex/base/ly1enc.dfu + RELOC/tex/latex/base/macce.def + RELOC/tex/latex/base/makeidx.sty + RELOC/tex/latex/base/minimal.cls + RELOC/tex/latex/base/newlfont.sty + RELOC/tex/latex/base/next.def + RELOC/tex/latex/base/nfssfont.tex + RELOC/tex/latex/base/oldlfont.sty + RELOC/tex/latex/base/omlcmm.fd + RELOC/tex/latex/base/omlcmr.fd + RELOC/tex/latex/base/omlenc.def + RELOC/tex/latex/base/omllcmm.fd + RELOC/tex/latex/base/omscmr.fd + RELOC/tex/latex/base/omscmsy.fd + RELOC/tex/latex/base/omsenc.def + RELOC/tex/latex/base/omsenc.dfu + RELOC/tex/latex/base/omslcmsy.fd + RELOC/tex/latex/base/omxcmex.fd + RELOC/tex/latex/base/omxlcmex.fd + RELOC/tex/latex/base/openbib.sty + RELOC/tex/latex/base/ot1cmdh.fd + RELOC/tex/latex/base/ot1cmfib.fd + RELOC/tex/latex/base/ot1cmfr.fd + RELOC/tex/latex/base/ot1cmr.fd + RELOC/tex/latex/base/ot1cmss.fd + RELOC/tex/latex/base/ot1cmtt.fd + RELOC/tex/latex/base/ot1cmvtt.fd + RELOC/tex/latex/base/ot1enc.def + RELOC/tex/latex/base/ot1enc.dfu + RELOC/tex/latex/base/ot1lcmss.fd + RELOC/tex/latex/base/ot1lcmtt.fd + RELOC/tex/latex/base/ot2enc.dfu + RELOC/tex/latex/base/ot4enc.def + RELOC/tex/latex/base/preload.cfg + RELOC/tex/latex/base/preload.ltx + RELOC/tex/latex/base/proc.cls + RELOC/tex/latex/base/proc.sty + RELOC/tex/latex/base/report.cls + RELOC/tex/latex/base/report.sty + RELOC/tex/latex/base/sample2e.tex + RELOC/tex/latex/base/sfonts.def + RELOC/tex/latex/base/shortvrb.sty + RELOC/tex/latex/base/showidx.sty + RELOC/tex/latex/base/size10.clo + RELOC/tex/latex/base/size11.clo + RELOC/tex/latex/base/size12.clo + RELOC/tex/latex/base/slides.cls + RELOC/tex/latex/base/slides.def + RELOC/tex/latex/base/slides.sty + RELOC/tex/latex/base/small2e.tex + RELOC/tex/latex/base/syntonly.sty + RELOC/tex/latex/base/t1cmdh.fd + RELOC/tex/latex/base/t1cmfib.fd + RELOC/tex/latex/base/t1cmfr.fd + RELOC/tex/latex/base/t1cmr.fd + RELOC/tex/latex/base/t1cmss.fd + RELOC/tex/latex/base/t1cmtt.fd + RELOC/tex/latex/base/t1cmvtt.fd + RELOC/tex/latex/base/t1enc.def + RELOC/tex/latex/base/t1enc.dfu + RELOC/tex/latex/base/t1enc.sty + RELOC/tex/latex/base/t1lcmss.fd + RELOC/tex/latex/base/t1lcmtt.fd + RELOC/tex/latex/base/t2aenc.dfu + RELOC/tex/latex/base/t2benc.dfu + RELOC/tex/latex/base/t2cenc.dfu + RELOC/tex/latex/base/testpage.tex + RELOC/tex/latex/base/texsys.cfg + RELOC/tex/latex/base/textcomp.sty + RELOC/tex/latex/base/tracefnt.sty + RELOC/tex/latex/base/ts1cmr.fd + RELOC/tex/latex/base/ts1cmss.fd + RELOC/tex/latex/base/ts1cmtt.fd + RELOC/tex/latex/base/ts1cmvtt.fd + RELOC/tex/latex/base/ts1enc.def + RELOC/tex/latex/base/ts1enc.dfu + RELOC/tex/latex/base/tuenc.def + RELOC/tex/latex/base/tulmdh.fd + RELOC/tex/latex/base/tulmr.fd + RELOC/tex/latex/base/tulmss.fd + RELOC/tex/latex/base/tulmssq.fd + RELOC/tex/latex/base/tulmtt.fd + RELOC/tex/latex/base/tulmvtt.fd + RELOC/tex/latex/base/ucmr.fd + RELOC/tex/latex/base/ucmss.fd + RELOC/tex/latex/base/ucmtt.fd + RELOC/tex/latex/base/ulasy.fd + RELOC/tex/latex/base/ullasy.fd + RELOC/tex/latex/base/utf8.def + RELOC/tex/latex/base/utf8enc.dfu + RELOC/tex/latex/base/x2enc.dfu +catalogue-contact-home http://www.latex-project.org/ +catalogue-date 2018-12-11 00:04:50 +0100 +catalogue-license lppl1.3 +catalogue-topics format name latex-bib-ex category Package revision 25831 -shortdesc Examples for the book Bibliografien mit LaTeX. +shortdesc Examples for the book Bibliografien mit LaTeX relocated 1 longdesc The bundle provides a collection of files containing every -longdesc example in the book "Bibliografien mit LaTeX" (ISBN 978- -longdesc 3865414151), by the package author. +longdesc example in the book "Bibliografien mit LaTeX" (ISBN +longdesc 978-3865414151), by the package author. +containersize 464 +containerchecksum 9f91b724d8fb1bf1c3140632c4ba485350defdfc926dd3d558d2a318affb5b6d56cfb1d0f8651d0af878f165148a5a1f06c82f71b8033187ca485fee1bb6ec0d +doccontainersize 49548 +doccontainerchecksum 127f8ef52da49a348e79b062e16dc6a5f2b1728fd553ec3eaf824117e764e11d8e9dc63d34c0eb86417ddeda5e7f53403fe2361d8f959acb697330148f5d64a6 docfiles size=233 RELOC/doc/latex/latex-bib-ex/01-01-1.ltx RELOC/doc/latex/latex-bib-ex/01-01-2.ltx @@ -91896,7 +146670,7 @@ docfiles size=233 RELOC/doc/latex/latex-bib-ex/08-06-2.ltx RELOC/doc/latex/latex-bib-ex/08-06-3.ltx RELOC/doc/latex/latex-bib-ex/08-06-4.ltx - RELOC/doc/latex/latex-bib-ex/README + RELOC/doc/latex/latex-bib-ex/README details="Readme" RELOC/doc/latex/latex-bib-ex/UTF8.bib RELOC/doc/latex/latex-bib-ex/articles.bib RELOC/doc/latex/latex-bib-ex/bibA.bib @@ -91933,48 +146707,546 @@ docfiles size=233 RELOC/doc/latex/latex-bib-ex/plainDemo.bst RELOC/doc/latex/latex-bib-ex/vanBib.bib catalogue-ctan /info/examples/LaTeX-Bib -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics book-ex + +name latex-bib2-ex +category Package +revision 40098 +shortdesc Examples for the book Bibliografien mit LaTeX +relocated 1 +longdesc The bundle provides a collection of files containing every +longdesc example in the second edition of "Bibliografien mit LaTeX", by +longdesc the package author. +containersize 456 +containerchecksum cabd865b67e6e41b3b0745557b25d03cc15da1f1de41c79f92274c05e6d07718a598554b25c096a4261b202a20134abbd788f578e279ce6d57efaf1dc133eaf7 +doccontainersize 180084 +doccontainerchecksum 2b5f1cecb8cb5d3ed78b10846b6f5ae38e02b930c2012353e7064b12865b155019924aaf48d995910b6cb7594928276e896421e85e71bef17822237f8350dfde +docfiles size=502 + RELOC/doc/latex/latex-bib2-ex/01-01-1.lualtx + RELOC/doc/latex/latex-bib2-ex/01-01-2.lualtx + RELOC/doc/latex/latex-bib2-ex/01-02-1.ltx6 + RELOC/doc/latex/latex-bib2-ex/01-02-2.lualtx + RELOC/doc/latex/latex-bib2-ex/01-02-3.lualtx + RELOC/doc/latex/latex-bib2-ex/01-03-1.lualtx + RELOC/doc/latex/latex-bib2-ex/01-03-2.ltx2 + RELOC/doc/latex/latex-bib2-ex/01-03-3.ltx + RELOC/doc/latex/latex-bib2-ex/01-03-4.ltx + RELOC/doc/latex/latex-bib2-ex/01-03-5.ltx + RELOC/doc/latex/latex-bib2-ex/02-02-1.ltx + RELOC/doc/latex/latex-bib2-ex/02-02-2.ltx + RELOC/doc/latex/latex-bib2-ex/02-03-1.ltx + RELOC/doc/latex/latex-bib2-ex/02-04-1.ltx + RELOC/doc/latex/latex-bib2-ex/02-04-2.ltx + RELOC/doc/latex/latex-bib2-ex/02-04-3.ltx + RELOC/doc/latex/latex-bib2-ex/02-04-4.ltx + RELOC/doc/latex/latex-bib2-ex/02-04-5.ltx + RELOC/doc/latex/latex-bib2-ex/02-04-6.ltx + RELOC/doc/latex/latex-bib2-ex/02-06-1.lualtx + RELOC/doc/latex/latex-bib2-ex/02-06-2.lualtx + RELOC/doc/latex/latex-bib2-ex/02-06-3.ltx + RELOC/doc/latex/latex-bib2-ex/02-06-4.lualtx + RELOC/doc/latex/latex-bib2-ex/02-07-1.lualtx + RELOC/doc/latex/latex-bib2-ex/02-08-1.ltx + RELOC/doc/latex/latex-bib2-ex/03-05-1.ltx2crop + RELOC/doc/latex/latex-bib2-ex/03-05-2.ltx2crop + RELOC/doc/latex/latex-bib2-ex/03-06-1.ltx + RELOC/doc/latex/latex-bib2-ex/03-06-2.ltx + RELOC/doc/latex/latex-bib2-ex/03-06-3.ltx + RELOC/doc/latex/latex-bib2-ex/03-06-4.ltx + RELOC/doc/latex/latex-bib2-ex/03-06-5.ltx + RELOC/doc/latex/latex-bib2-ex/03-06-6.ltx + RELOC/doc/latex/latex-bib2-ex/03-06-7.ltx + RELOC/doc/latex/latex-bib2-ex/03-06-8.ltx + RELOC/doc/latex/latex-bib2-ex/03-06-9.ltx + RELOC/doc/latex/latex-bib2-ex/03-08-1.ltx + RELOC/doc/latex/latex-bib2-ex/03-08-2.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-1.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-10.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-11.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-12.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-13.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-14.ltx2crop + RELOC/doc/latex/latex-bib2-ex/03-09-15.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-16.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-17.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-18.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-19.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-2.ltx2 + RELOC/doc/latex/latex-bib2-ex/03-09-20.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-21.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-22.ltx5 + RELOC/doc/latex/latex-bib2-ex/03-09-23.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-24.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-25.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-26.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-27.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-28.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-29.ltx2 + RELOC/doc/latex/latex-bib2-ex/03-09-3.ltx2 + RELOC/doc/latex/latex-bib2-ex/03-09-30.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-31.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-32.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-33.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-34.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-35.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-36.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-37.ltx + RELOC/doc/latex/latex-bib2-ex/03-09-4.ltx2 + RELOC/doc/latex/latex-bib2-ex/03-09-5.ltx2 + RELOC/doc/latex/latex-bib2-ex/03-09-6.ltx2 + RELOC/doc/latex/latex-bib2-ex/03-09-7.ltx2 + RELOC/doc/latex/latex-bib2-ex/03-09-8.ltx2 + RELOC/doc/latex/latex-bib2-ex/03-09-9.ltx + RELOC/doc/latex/latex-bib2-ex/04-02-1.ltx2 + RELOC/doc/latex/latex-bib2-ex/04-02-10.ltx2 + RELOC/doc/latex/latex-bib2-ex/04-02-11.ltx + RELOC/doc/latex/latex-bib2-ex/04-02-12.ltx + RELOC/doc/latex/latex-bib2-ex/04-02-13.ltx + RELOC/doc/latex/latex-bib2-ex/04-02-14.ltx + RELOC/doc/latex/latex-bib2-ex/04-02-15.ltx + RELOC/doc/latex/latex-bib2-ex/04-02-16.ltx + RELOC/doc/latex/latex-bib2-ex/04-02-17.ltx + RELOC/doc/latex/latex-bib2-ex/04-02-18.ltx + RELOC/doc/latex/latex-bib2-ex/04-02-19.ltx + RELOC/doc/latex/latex-bib2-ex/04-02-2.ltx + RELOC/doc/latex/latex-bib2-ex/04-02-20.ltx + RELOC/doc/latex/latex-bib2-ex/04-02-21.ltx + RELOC/doc/latex/latex-bib2-ex/04-02-22.ltx + RELOC/doc/latex/latex-bib2-ex/04-02-23.ltx + RELOC/doc/latex/latex-bib2-ex/04-02-24.ltx2 + RELOC/doc/latex/latex-bib2-ex/04-02-25.ltx2 + RELOC/doc/latex/latex-bib2-ex/04-02-26.ltx2 + RELOC/doc/latex/latex-bib2-ex/04-02-3.ltx + RELOC/doc/latex/latex-bib2-ex/04-02-4.ltx2 + RELOC/doc/latex/latex-bib2-ex/04-02-5.ltx + RELOC/doc/latex/latex-bib2-ex/04-02-6.ltx2 + RELOC/doc/latex/latex-bib2-ex/04-02-7.ltx + RELOC/doc/latex/latex-bib2-ex/04-02-8.ltx + RELOC/doc/latex/latex-bib2-ex/04-02-9.ltx + RELOC/doc/latex/latex-bib2-ex/04-03-1.ltx + RELOC/doc/latex/latex-bib2-ex/04-03-10.ltx + RELOC/doc/latex/latex-bib2-ex/04-03-11.ltx + RELOC/doc/latex/latex-bib2-ex/04-03-2.ltx + RELOC/doc/latex/latex-bib2-ex/04-03-3.ltx + RELOC/doc/latex/latex-bib2-ex/04-03-4.ltx + RELOC/doc/latex/latex-bib2-ex/04-03-5.ltx + RELOC/doc/latex/latex-bib2-ex/04-03-6.ltx + RELOC/doc/latex/latex-bib2-ex/04-03-7.ltx + RELOC/doc/latex/latex-bib2-ex/04-03-8.ltx + RELOC/doc/latex/latex-bib2-ex/04-03-9.ltx + RELOC/doc/latex/latex-bib2-ex/04-04-1.ltx2 + RELOC/doc/latex/latex-bib2-ex/04-04-2.ltx2 + RELOC/doc/latex/latex-bib2-ex/04-04-3.ltx2 + RELOC/doc/latex/latex-bib2-ex/04-04-4.ltx2 + RELOC/doc/latex/latex-bib2-ex/04-04-5.ltx2 + RELOC/doc/latex/latex-bib2-ex/04-05-1.ltx + RELOC/doc/latex/latex-bib2-ex/04-05-2.dbx + RELOC/doc/latex/latex-bib2-ex/04-05-2.lualtx + RELOC/doc/latex/latex-bib2-ex/04-06-1.ltx + RELOC/doc/latex/latex-bib2-ex/04-06-2.ltx + RELOC/doc/latex/latex-bib2-ex/04-06-3.ltx + RELOC/doc/latex/latex-bib2-ex/04-06-4.ltx + RELOC/doc/latex/latex-bib2-ex/04-06-5.ltx + RELOC/doc/latex/latex-bib2-ex/04-07-1.lualtx2 + RELOC/doc/latex/latex-bib2-ex/04-07-2.lualtx2 + RELOC/doc/latex/latex-bib2-ex/04-07-3.ltx + RELOC/doc/latex/latex-bib2-ex/04-07-4.ltx + RELOC/doc/latex/latex-bib2-ex/04-08-1.ltx + RELOC/doc/latex/latex-bib2-ex/04-08-10.ltx + RELOC/doc/latex/latex-bib2-ex/04-08-11.ltx + RELOC/doc/latex/latex-bib2-ex/04-08-12.ltx + RELOC/doc/latex/latex-bib2-ex/04-08-13.ltx + RELOC/doc/latex/latex-bib2-ex/04-08-14.ltx + RELOC/doc/latex/latex-bib2-ex/04-08-15.ltx + RELOC/doc/latex/latex-bib2-ex/04-08-16.lualtx + RELOC/doc/latex/latex-bib2-ex/04-08-2.ltx + RELOC/doc/latex/latex-bib2-ex/04-08-3.ltx + RELOC/doc/latex/latex-bib2-ex/04-08-4.ltx + RELOC/doc/latex/latex-bib2-ex/04-08-5.ltx + RELOC/doc/latex/latex-bib2-ex/04-08-6.ltx + RELOC/doc/latex/latex-bib2-ex/04-08-7.ltx + RELOC/doc/latex/latex-bib2-ex/04-08-8.ltx + RELOC/doc/latex/latex-bib2-ex/04-08-9.ltx + RELOC/doc/latex/latex-bib2-ex/04-09-1.ltx2 + RELOC/doc/latex/latex-bib2-ex/04-09-2.lualtx2 + RELOC/doc/latex/latex-bib2-ex/04-09-3.lualtx + RELOC/doc/latex/latex-bib2-ex/04-09-4.lualtx + RELOC/doc/latex/latex-bib2-ex/04-10-1.ltx + RELOC/doc/latex/latex-bib2-ex/04-10-10.lualtx + RELOC/doc/latex/latex-bib2-ex/04-10-11.ltx + RELOC/doc/latex/latex-bib2-ex/04-10-12.ltx + RELOC/doc/latex/latex-bib2-ex/04-10-13.ltx + RELOC/doc/latex/latex-bib2-ex/04-10-14.ltx + RELOC/doc/latex/latex-bib2-ex/04-10-15.ltx + RELOC/doc/latex/latex-bib2-ex/04-10-16.ltx + RELOC/doc/latex/latex-bib2-ex/04-10-17.ltx + RELOC/doc/latex/latex-bib2-ex/04-10-18.ltx + RELOC/doc/latex/latex-bib2-ex/04-10-19.ltx + RELOC/doc/latex/latex-bib2-ex/04-10-2.ltx + RELOC/doc/latex/latex-bib2-ex/04-10-20.ltx + RELOC/doc/latex/latex-bib2-ex/04-10-21.ltx2 + RELOC/doc/latex/latex-bib2-ex/04-10-22.lualtx + RELOC/doc/latex/latex-bib2-ex/04-10-23.ltx + RELOC/doc/latex/latex-bib2-ex/04-10-24.ltx + RELOC/doc/latex/latex-bib2-ex/04-10-25.ltx + RELOC/doc/latex/latex-bib2-ex/04-10-26.ltx + RELOC/doc/latex/latex-bib2-ex/04-10-27.ltx + RELOC/doc/latex/latex-bib2-ex/04-10-28.ltx6 + RELOC/doc/latex/latex-bib2-ex/04-10-3.ltx + RELOC/doc/latex/latex-bib2-ex/04-10-4.ltx + RELOC/doc/latex/latex-bib2-ex/04-10-5.ltx + RELOC/doc/latex/latex-bib2-ex/04-10-6.ltx + RELOC/doc/latex/latex-bib2-ex/04-10-7.lualtx + RELOC/doc/latex/latex-bib2-ex/04-10-8.lualtx + RELOC/doc/latex/latex-bib2-ex/04-10-9.lualtx + RELOC/doc/latex/latex-bib2-ex/04-11-1.dbx + RELOC/doc/latex/latex-bib2-ex/04-11-1.lualtx + RELOC/doc/latex/latex-bib2-ex/05-04-1.lualtx + RELOC/doc/latex/latex-bib2-ex/08-02-1.lualtx + RELOC/doc/latex/latex-bib2-ex/08-02-2.lualtx + RELOC/doc/latex/latex-bib2-ex/DEexa.sty + RELOC/doc/latex/latex-bib2-ex/DEoptions.sty + RELOC/doc/latex/latex-bib2-ex/LaTeXRef.bib + RELOC/doc/latex/latex-bib2-ex/README details="Readme" + RELOC/doc/latex/latex-bib2-ex/SCRarticle.cls + RELOC/doc/latex/latex-bib2-ex/UTF8-2.bib + RELOC/doc/latex/latex-bib2-ex/UTF8.bib + RELOC/doc/latex/latex-bib2-ex/VDI.bib + RELOC/doc/latex/latex-bib2-ex/articles.bib + RELOC/doc/latex/latex-bib2-ex/beispiel.cls + RELOC/doc/latex/latex-bib2-ex/bibA.bib + RELOC/doc/latex/latex-bib2-ex/bibB.bib + RELOC/doc/latex/latex-bib2-ex/biblatex-gost-examples.bib + RELOC/doc/latex/latex-bib2-ex/biblatex-ieee.bib + RELOC/doc/latex/latex-bib2-ex/bibtool.bib + RELOC/doc/latex/latex-bib2-ex/bibtool2.bib + RELOC/doc/latex/latex-bib2-ex/books.bib + RELOC/doc/latex/latex-bib2-ex/bspcalweekly.cls + RELOC/doc/latex/latex-bib2-ex/bspdvdcoll.cls + RELOC/doc/latex/latex-bib2-ex/bspfont.cls + RELOC/doc/latex/latex-bib2-ex/buch.bib + RELOC/doc/latex/latex-bib2-ex/buch2.bib + RELOC/doc/latex/latex-bib2-ex/buch3.bib + RELOC/doc/latex/latex-bib2-ex/case.bib + RELOC/doc/latex/latex-bib2-ex/case2.bib + RELOC/doc/latex/latex-bib2-ex/case3.bib + RELOC/doc/latex/latex-bib2-ex/case4.bib + RELOC/doc/latex/latex-bib2-ex/crossref.bib + RELOC/doc/latex/latex-bib2-ex/crossref2.bib + RELOC/doc/latex/latex-bib2-ex/crossref3.bib + RELOC/doc/latex/latex-bib2-ex/data/alpha2.bst + RELOC/doc/latex/latex-bib2-ex/data/citavi.bib + RELOC/doc/latex/latex-bib2-ex/data/citavi0.bib + RELOC/doc/latex/latex-bib2-ex/data/endnote-fehler.txt + RELOC/doc/latex/latex-bib2-ex/data/endnote-mit-keys.bib + RELOC/doc/latex/latex-bib2-ex/data/endnote-orig.bib + RELOC/doc/latex/latex-bib2-ex/de-examples-dw.bib + RELOC/doc/latex/latex-bib2-ex/demo.bib + RELOC/doc/latex/latex-bib2-ex/demo10.bib + RELOC/doc/latex/latex-bib2-ex/demo11.bib + RELOC/doc/latex/latex-bib2-ex/demo2.bib + RELOC/doc/latex/latex-bib2-ex/demo3.bib + RELOC/doc/latex/latex-bib2-ex/demo4.bib + RELOC/doc/latex/latex-bib2-ex/demo4.bl2 + RELOC/doc/latex/latex-bib2-ex/demo5.bib + RELOC/doc/latex/latex-bib2-ex/demo6.bib + RELOC/doc/latex/latex-bib2-ex/demo7.bib + RELOC/doc/latex/latex-bib2-ex/demo8.bib + RELOC/doc/latex/latex-bib2-ex/demo9.bib + RELOC/doc/latex/latex-bib2-ex/doc_data.txt + RELOC/doc/latex/latex-bib2-ex/dw-examples.bib + RELOC/doc/latex/latex-bib2-ex/easy.bst + RELOC/doc/latex/latex-bib2-ex/exa-fontconfig.tex + RELOC/doc/latex/latex-bib2-ex/exaarticle.cls + RELOC/doc/latex/latex-bib2-ex/exaarticle2.cls + RELOC/doc/latex/latex-bib2-ex/exaartplain.cls + RELOC/doc/latex/latex-bib2-ex/exabeamer.cls + RELOC/doc/latex/latex-bib2-ex/exabook.cls + RELOC/doc/latex/latex-bib2-ex/exabook2.cls + RELOC/doc/latex/latex-bib2-ex/exadante.cls + RELOC/doc/latex/latex-bib2-ex/examargin.cls + RELOC/doc/latex/latex-bib2-ex/examemoir.cls + RELOC/doc/latex/latex-bib2-ex/examinimal.cls + RELOC/doc/latex/latex-bib2-ex/examples-dw.bib + RELOC/doc/latex/latex-bib2-ex/examples.bib + RELOC/doc/latex/latex-bib2-ex/examplesA.bib + RELOC/doc/latex/latex-bib2-ex/examplesB.bib + RELOC/doc/latex/latex-bib2-ex/examplesC.bib + RELOC/doc/latex/latex-bib2-ex/exareport.cls + RELOC/doc/latex/latex-bib2-ex/exasymbol.cls + RELOC/doc/latex/latex-bib2-ex/exaxetex.cls + RELOC/doc/latex/latex-bib2-ex/fiwi-examples.bib + RELOC/doc/latex/latex-bib2-ex/fontDemo-E.tex + RELOC/doc/latex/latex-bib2-ex/fontDemo.tex + RELOC/doc/latex/latex-bib2-ex/kap1.tex + RELOC/doc/latex/latex-bib2-ex/kap2.tex + RELOC/doc/latex/latex-bib2-ex/kap3.tex + RELOC/doc/latex/latex-bib2-ex/kap4.tex + RELOC/doc/latex/latex-bib2-ex/kap5.tex + RELOC/doc/latex/latex-bib2-ex/kap6.tex + RELOC/doc/latex/latex-bib2-ex/klassiker.bib + RELOC/doc/latex/latex-bib2-ex/literaturquellenFrank.bib + RELOC/doc/latex/latex-bib2-ex/literaturquellenYuri.bib + RELOC/doc/latex/latex-bib2-ex/musuos-bsp.bib + RELOC/doc/latex/latex-bib2-ex/natbib.cfg + RELOC/doc/latex/latex-bib2-ex/natbibdemo.bib + RELOC/doc/latex/latex-bib2-ex/philosophy-examples.bib + RELOC/doc/latex/latex-bib2-ex/plainDemo.bst + RELOC/doc/latex/latex-bib2-ex/screxa.cls + RELOC/doc/latex/latex-bib2-ex/screxabook.cls + RELOC/doc/latex/latex-bib2-ex/screxareport.cls + RELOC/doc/latex/latex-bib2-ex/test.bbx + RELOC/doc/latex/latex-bib2-ex/test.cbx + RELOC/doc/latex/latex-bib2-ex/vanBib.bib + RELOC/doc/latex/latex-bib2-ex/xmlexamples.xml +catalogue-ctan /info/examples/LaTeX-Bib2 +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics book-ex name latex-bin category TLCore -revision 37078 -shortdesc LaTeX executables and man pages. +revision 50602 +shortdesc LaTeX executables and man pages depend latex +depend babel +depend cm +depend hyphen-base +depend latex-fonts +depend tex-ini-files +depend dehyph +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" -execute AddFormat name=pdflatex engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx *pdflatex.ini" -execute AddFormat name=dvilualatex engine=luatex patterns=language.dat,language.dat.lua options="dvilualatex.ini" -execute AddFormat name=lualatex engine=luatex patterns=language.dat,language.dat.lua options="lualatex.ini" -execute AddFormat name=luajitlatex mode=disabled engine=luajittex patterns=language.dat,language.dat.lua options="lualatex.ini" -docfiles size=9 +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,dehyph,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,dehyph,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 524 +containerchecksum d06524764c097f26b80a82d53ca02d2648cf6292a0d346cea6c52029c3838829cc2a3f1d4ba410f009648a1cac0c851bde40955fecdbd25146293fa63ee99af1 +doccontainersize 53284 +doccontainerchecksum 90a9668373a99610db35b748aa44b34cb56a0c02cbecf483e93af106b0ce2745bfc03aa2d41eece3038e9c9ca0b1e1428ea38c2606be6a607dea01d4aa46a5b5 +docfiles size=32 + texmf-dist/doc/man/man1/dvilualatex.1 + texmf-dist/doc/man/man1/dvilualatex.man1.pdf texmf-dist/doc/man/man1/latex.1 texmf-dist/doc/man/man1/latex.man1.pdf + texmf-dist/doc/man/man1/lualatex.1 + texmf-dist/doc/man/man1/lualatex.man1.pdf texmf-dist/doc/man/man1/pdflatex.1 texmf-dist/doc/man/man1/pdflatex.man1.pdf +name latex-bin.aarch64-linux +category TLCore +revision 46208 +shortdesc aarch64-linux files of latex-bin +containersize 368 +containerchecksum 8ae2b96e82b9f8954839352b19dd2562bcab468af90cbb29b2d0446e6606c6c31b7d4165eaf5240156b01ed6e456711f67aca9b2fc5520203a100de4142c031f +binfiles arch=aarch64-linux size=4 + bin/aarch64-linux/dvilualatex + bin/aarch64-linux/latex + bin/aarch64-linux/lualatex + bin/aarch64-linux/pdflatex + +name latex-bin.amd64-freebsd +category TLCore +revision 16472 +shortdesc amd64-freebsd files of latex-bin +containersize 372 +containerchecksum f19293c655a25cc59b4e3adcc71bc4512032deda3d508fffcc79404031e6aa9e8dcbf5d77cd84f9ace6191e8dec12c4f4f6b93cc68e2eabff312250f3c5b39bb +binfiles arch=amd64-freebsd size=4 + bin/amd64-freebsd/dvilualatex + bin/amd64-freebsd/latex + bin/amd64-freebsd/lualatex + bin/amd64-freebsd/pdflatex + +name latex-bin.amd64-netbsd +category TLCore +revision 30191 +shortdesc amd64-netbsd files of latex-bin +containersize 372 +containerchecksum 76f5976db5c56c6c980614182a061f92bcc77e69ad7aad1bae9909939911c26d822d34cb04c7875c2328dead2aacbd2c81ff8c4b5b1a1e71861024a12d45a988 +binfiles arch=amd64-netbsd size=4 + bin/amd64-netbsd/dvilualatex + bin/amd64-netbsd/latex + bin/amd64-netbsd/lualatex + bin/amd64-netbsd/pdflatex + +name latex-bin.armhf-linux +category TLCore +revision 30015 +shortdesc armhf-linux files of latex-bin +containersize 368 +containerchecksum 3a3a1bfb582350c02a6453643ba8ecd22e4808ae40a9a0966ae6087db124cbe5a86309b18559252e31434cfddc2d2ffc25a2de5e05d5d5d47e1ee7f39e763cb3 +binfiles arch=armhf-linux size=4 + bin/armhf-linux/dvilualatex + bin/armhf-linux/latex + bin/armhf-linux/lualatex + bin/armhf-linux/pdflatex + +name latex-bin.i386-cygwin +category TLCore +revision 14050 +shortdesc i386-cygwin files of latex-bin +containersize 372 +containerchecksum 151b81c43224dbde78764227d053fbe6848f675a9b97be06fde935d2267cbbb2e831dc9487d63083112272f269bbbe6fdc68a3ebc0087f176ae762ab29d65227 +binfiles arch=i386-cygwin size=4 + bin/i386-cygwin/dvilualatex + bin/i386-cygwin/latex + bin/i386-cygwin/lualatex + bin/i386-cygwin/pdflatex + +name latex-bin.i386-freebsd +category TLCore +revision 16472 +shortdesc i386-freebsd files of latex-bin +containersize 372 +containerchecksum b43c9f82b4eba5116a102866e43a0477d6f877a26e779fa28df659468c77626a63ea287ca332693028d4140db5e2a8c9b6a79d5d11133c963a87cdd5a0a39186 +binfiles arch=i386-freebsd size=4 + bin/i386-freebsd/dvilualatex + bin/i386-freebsd/latex + bin/i386-freebsd/lualatex + bin/i386-freebsd/pdflatex + name latex-bin.i386-linux category TLCore revision 14050 shortdesc i386-linux files of latex-bin +containersize 368 +containerchecksum 747c80bc0049c596f57005da7c6203042f78fba1b1b0ea137ae051632be1613c42030492da49779c8447cbdee737cdaea371904a9ad7bff6a9551ed011b5d814 binfiles arch=i386-linux size=4 bin/i386-linux/dvilualatex bin/i386-linux/latex bin/i386-linux/lualatex bin/i386-linux/pdflatex +name latex-bin.i386-netbsd +category TLCore +revision 30191 +shortdesc i386-netbsd files of latex-bin +containersize 368 +containerchecksum fc89a4860c8e2ba11b6a3b2bf100253da0e584baf23c79c8165f54e9ad99701b2d7cfc2d00ef22d6066afd74404bfad2f113cf1da51d689cb849d9efc49c5a09 +binfiles arch=i386-netbsd size=4 + bin/i386-netbsd/dvilualatex + bin/i386-netbsd/latex + bin/i386-netbsd/lualatex + bin/i386-netbsd/pdflatex + +name latex-bin.i386-solaris +category TLCore +revision 14050 +shortdesc i386-solaris files of latex-bin +containersize 372 +containerchecksum 1e8ec75f7a0ab769e92f29a07ce9f93c05255d5a184b72a2611b2eb324272ec59794aec9db4e79ee28dc4094bc369e9e15c2184b50eaea887dd2d6874e2586b1 +binfiles arch=i386-solaris size=4 + bin/i386-solaris/dvilualatex + bin/i386-solaris/latex + bin/i386-solaris/lualatex + bin/i386-solaris/pdflatex + +name latex-bin.win32 +category TLCore +revision 36810 +shortdesc win32 files of latex-bin +containersize 924 +containerchecksum 69524716a18b2fa0d1096da7dcab04481f01dec80b9326ddc634cc951b6b9364d63536c4f4cf694e779511cc2a1c3d48787514d3112dc4389841a4edd8915d9a +binfiles arch=win32 size=4 + bin/win32/dvilualatex.exe + bin/win32/latex.exe + bin/win32/lualatex.exe + bin/win32/pdflatex.exe + +name latex-bin.x86_64-cygwin +category TLCore +revision 33557 +shortdesc x86_64-cygwin files of latex-bin +containersize 376 +containerchecksum 0894774aa2c200ab9f6569d2085e699f8e15b4af6c16138c447ff9953c13e2d82f5b0a5e409380799ad13e604d6f8af49e65387aaceb8152302b58fae3c3ca52 +binfiles arch=x86_64-cygwin size=4 + bin/x86_64-cygwin/dvilualatex + bin/x86_64-cygwin/latex + bin/x86_64-cygwin/lualatex + bin/x86_64-cygwin/pdflatex + +name latex-bin.x86_64-darwin +category TLCore +revision 18441 +shortdesc x86_64-darwin files of latex-bin +containersize 372 +containerchecksum c1239a4a0a60d7fb93604c16e0d2cb045ff74a855093f71c18ef7099fd597025cb01f0dfec73f540a93474aae2144c8e6445c828bded327bb6e502b9a7c670c0 +binfiles arch=x86_64-darwin size=4 + bin/x86_64-darwin/dvilualatex + bin/x86_64-darwin/latex + bin/x86_64-darwin/lualatex + bin/x86_64-darwin/pdflatex + +name latex-bin.x86_64-darwinlegacy +category TLCore +revision 43871 +shortdesc x86_64-darwinlegacy files of latex-bin +containersize 380 +containerchecksum f0b09c5b950b81e429ffe5f0e97cdfecf278ed31a9ff39b955919446138bd1898fd198887be6ae3c7dfd9dddcf2cab6c6f74d779066ec39dbf4fced04121ad51 +binfiles arch=x86_64-darwinlegacy size=4 + bin/x86_64-darwinlegacy/dvilualatex + bin/x86_64-darwinlegacy/latex + bin/x86_64-darwinlegacy/lualatex + bin/x86_64-darwinlegacy/pdflatex + +name latex-bin.x86_64-linux +category TLCore +revision 14050 +shortdesc x86_64-linux files of latex-bin +containersize 368 +containerchecksum 26615c613598e7be645bcdc76e71cf2a3d815c9eabba8be35b2044af836986839de72bb63482dc94a8077f4bb99727f71ab55ffc98652513a965a3cfcef50582 +binfiles arch=x86_64-linux size=4 + bin/x86_64-linux/dvilualatex + bin/x86_64-linux/latex + bin/x86_64-linux/lualatex + bin/x86_64-linux/pdflatex + +name latex-bin.x86_64-linuxmusl +category TLCore +revision 46840 +shortdesc x86_64-linuxmusl files of latex-bin +containersize 376 +containerchecksum f955fabb3b88c906f1e0a0f20f4c0da5179c749b7ad1b60170ab8cf1a6020e3558bb8505ec8e8c8e542f71a5162512b0fa21c64738a01973a998ca064ae07c8d +binfiles arch=x86_64-linuxmusl size=4 + bin/x86_64-linuxmusl/dvilualatex + bin/x86_64-linuxmusl/latex + bin/x86_64-linuxmusl/lualatex + bin/x86_64-linuxmusl/pdflatex + +name latex-bin.x86_64-solaris +category TLCore +revision 18442 +shortdesc x86_64-solaris files of latex-bin +containersize 372 +containerchecksum c1c4493a3d384200d2525947011921afd997834983cc0d14e5508c5591cfe424606ebdde6c2181f600a13f418b21648fe818fba2e5aae648718f309102b6733a +binfiles arch=x86_64-solaris size=4 + bin/x86_64-solaris/dvilualatex + bin/x86_64-solaris/latex + bin/x86_64-solaris/lualatex + bin/x86_64-solaris/pdflatex + name latex-brochure category Package -revision 28916 -shortdesc A publicity flyer for LaTeX. +revision 40612 +shortdesc A publicity flyer for LaTeX relocated 1 longdesc The document is designed as a publicity flyer for LaTeX, but longdesc also serves as an interesting showcase of what LaTeX can do. longdesc The flyer is designed for printing, double-sided, on A3 paper, longdesc which would then be folded once. +containersize 500 +containerchecksum de98a91947d5cb919b6a2c6e6a87f63499c8c5975992d039bb8d2a4662ed597cbdad99668b006cf775f71af936e5ad285958b48b57eac61783460fe37ed76298 +doccontainersize 6200016 +doccontainerchecksum f057b86b61ee1f50430cdb83a56c27896e052047bbc93c4f09884b7d76f16f73cb1b570341faa2b8c771c0d42bb4d6450b8715c921fe866a57727eb4ffdd329a docfiles size=2752 - RELOC/doc/latex/latex-brochure/README - RELOC/doc/latex/latex-brochure/README.pdf + RELOC/doc/latex/latex-brochure/README details="Readme" + RELOC/doc/latex/latex-brochure/README.pdf details="Readme (PDF format)" RELOC/doc/latex/latex-brochure/brochure-a3folderFB.pdf RELOC/doc/latex/latex-brochure/brochure-a3folderIN.pdf RELOC/doc/latex/latex-brochure/brochure-a4.pdf @@ -91982,7 +147254,7 @@ docfiles size=2752 RELOC/doc/latex/latex-brochure/brochure-ledgerfolderIN.pdf RELOC/doc/latex/latex-brochure/brochure-letter.pdf RELOC/doc/latex/latex-brochure/brochure.bib - RELOC/doc/latex/latex-brochure/brochure.pdf + RELOC/doc/latex/latex-brochure/brochure.pdf details="The document itself" RELOC/doc/latex/latex-brochure/brochure.sty RELOC/doc/latex/latex-brochure/brochure.tex RELOC/doc/latex/latex-brochure/build @@ -91995,291 +147267,69 @@ docfiles size=2752 RELOC/doc/latex/latex-brochure/sample-crop.pdf RELOC/doc/latex/latex-brochure/typo-degraded.eps RELOC/doc/latex/latex-brochure/typo-degraded.png +catalogue-also latex-veryshortguide catalogue-ctan /info/latex-brochure -catalogue-date 2015-02-23 19:51:42 +0100 -catalogue-license lppl - -name latexcheat-de -category Package -revision 35702 -shortdesc A LaTeX cheat sheet, in German. -relocated 1 -longdesc This is a translation to German of Winston Chang's LaTeX cheat -longdesc sheet (a reference sheet for writing scientific papers). It has -longdesc been adapted to German standards using the KOMA script document -longdesc classes. -docfiles size=136 - RELOC/doc/latex/latexcheat-de/README - RELOC/doc/latex/latexcheat-de/latexsheet-de.pdf - RELOC/doc/latex/latexcheat-de/latexsheet-de.tex -catalogue-ctan /info/latexcheat/latexcheat-de -catalogue-date 2014-12-02 11:18:30 +0100 -catalogue-license lppl - -name latexcheat-esmx -category Package -revision 36866 -shortdesc A LaTeX cheat sheet, in Spanish. -relocated 1 -longdesc This is a translation to Spanish (Castellano) of Winston -longdesc Chang's LaTeX cheat sheet (a reference sheet for writing -longdesc scientific papers). -docfiles size=130 - RELOC/doc/latex/latexcheat-esmx/README - RELOC/doc/latex/latexcheat-esmx/latexsheet-esmx.pdf - RELOC/doc/latex/latexcheat-esmx/latexsheet-esmx.tex -catalogue-ctan /info/latexcheat/latexcheat-esmx -catalogue-date 2015-04-14 17:58:23 +0200 -catalogue-license lppl -catalogue-version 2.00 - -name latexcheat-ptbr -category Package -revision 15878 -shortdesc A LaTeX cheat sheet, in Brazilian Portuguese. -relocated 1 -longdesc This is a translation to Brazilian Portuguese of Winston -longdesc Chang's LaTeX cheat sheet -docfiles size=68 - RELOC/doc/latex/latexcheat-ptbr/README-ptbr - RELOC/doc/latex/latexcheat-ptbr/latexsheet-ptbr.pdf - RELOC/doc/latex/latexcheat-ptbr/latexsheet-ptbr.tex -catalogue-ctan /info/latexcheat/latexcheat-ptbr -catalogue-date 2014-11-30 08:04:14 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl -catalogue-version 1.13 - -name latexcheat -category Package -revision 15878 -shortdesc A LaTeX cheat sheet. -relocated 1 -longdesc A LaTeX reference sheet for writing scientific papers. Unlike -longdesc many other such sheets, this sheet does not focus on -longdesc typesetting mathematics (though it does list some symbols). -docfiles size=50 - RELOC/doc/latex/latexcheat/README - RELOC/doc/latex/latexcheat/latexsheet.pdf - RELOC/doc/latex/latexcheat/latexsheet.tex -catalogue-ctan /info/latexcheat/latexcheat -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.13 - -name latexconfig -category Package -revision 38205 -relocated 1 -runfiles size=15 - RELOC/tex/latex/latexconfig/color.cfg - RELOC/tex/latex/latexconfig/dvilualatex.ini - RELOC/tex/latex/latexconfig/epstopdf-sys.cfg - RELOC/tex/latex/latexconfig/graphics.cfg - RELOC/tex/latex/latexconfig/hyperref.cfg - RELOC/tex/latex/latexconfig/latex.ini - RELOC/tex/latex/latexconfig/lualatex-patch-kernel.tex - RELOC/tex/latex/latexconfig/lualatex-reset-codes.tex - RELOC/tex/latex/latexconfig/lualatex.ini - RELOC/tex/latex/latexconfig/lualatexiniconfig.tex - RELOC/tex/latex/latexconfig/lualatexquotejobname.lua - RELOC/tex/latex/latexconfig/lualatexquotejobname.tex - RELOC/tex/latex/latexconfig/mllatex.ini - RELOC/tex/latex/latexconfig/pdflatex.ini - RELOC/tex/latex/latexconfig/xelatex.ini - -name latexcourse-rug -category Package -revision 35544 -shortdesc A LaTeX course book. -relocated 1 -longdesc The package provides the book and practice files for a LaTeX -longdesc course that the author has give several times at the -longdesc Rijksuniversiteit Groningen (Netherlands). -docfiles size=1222 - RELOC/doc/latex/latexcourse-rug/README - RELOC/doc/latex/latexcourse-rug/latexcourse-rug-sources.zip - RELOC/doc/latex/latexcourse-rug/latexcourse-rug.pdf - RELOC/doc/latex/latexcourse-rug/practice.zip -catalogue-ctan /info/latexcourse-rug -catalogue-date 2015-03-30 22:55:45 +0200 -catalogue-license other-free -catalogue-version 1.05 +catalogue-topics advert name latex-course category Package revision 25505 -shortdesc A LaTeX course as a projected presentation. +shortdesc A LaTeX course as a projected presentation relocated 1 longdesc A brief Beamer-based slide presentation on LaTeX, based on longdesc Rupprecht's LaTeX 2.09 course, which the author has translated longdesc to English and taken to LaTeX2e/Beamer. Additional material was longdesc taken from the Short Introduction to LaTeX. +containersize 512 +containerchecksum 9af9e8a2ff7663ba89538a93e45e27098451be4ccb9380b0deb002a9a42613467184b5a4d38ff8222c7ec5e3c722128222976aade12000c447ff7f8ab42c0656 +doccontainersize 600116 +doccontainerchecksum 772ecca6e71a9af7c31b9c5fd48cce88a7dd880a98b0885e9e5084247f64049234a8d123fe985e247ae706f1d0da1f58bae9e62082defe1acf9345bc252b03b7 docfiles size=248 RELOC/doc/latex/latex-course/Graphics/Ross-Siegel.png RELOC/doc/latex/latex-course/Graphics/Thumbs.db RELOC/doc/latex/latex-course/Graphics/campus3.png - RELOC/doc/latex/latex-course/LaTeX-Course.pdf + RELOC/doc/latex/latex-course/LaTeX-Course.pdf details="The course itself" RELOC/doc/latex/latex-course/LaTeX-Course.tex RELOC/doc/latex/latex-course/LaTeX-course.prj - RELOC/doc/latex/latex-course/README + RELOC/doc/latex/latex-course/README details="Readme" RELOC/doc/latex/latex-course/beamercolorthemeross.sty catalogue-ctan /info/latex-course -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics course-material tut-latex catalogue-version 2 -name latexdemo -category Package -revision 34481 -shortdesc Demonstrate LaTeX code with its resulting output. -relocated 1 -longdesc The package provides configurable tools to print out LaTeX code -longdesc and the resulting output in the same document. It also supports -longdesc printing the result inside a conditional sequence; thus one may -longdesc suppress printing if the code would not compile. -runfiles size=2 - RELOC/tex/latex/latexdemo/latexdemo.sty -docfiles size=114 - RELOC/doc/latex/latexdemo/README - RELOC/doc/latex/latexdemo/latexdemo.pdf -srcfiles size=6 - RELOC/source/latex/latexdemo/latexdemo.dtx - RELOC/source/latex/latexdemo/latexdemo.ins -catalogue-ctan /macros/latex/contrib/latexdemo -catalogue-date 2015-03-30 22:55:45 +0200 -catalogue-license lppl1.3 -catalogue-version 0.1 - -name latexdiff -category Package -revision 36943 -shortdesc Determine and mark up significant differences between LaTeX files. -longdesc Latexdiff is a Perl script for visual mark up and revision of -longdesc significant differences between two LaTeX files. Various -longdesc options are available for visual markup using standard LaTeX -longdesc packages such as color. Changes not directly affecting visible -longdesc text, for example in formatting commands, are still marked in -longdesc the LaTeX source. A rudimentary revision facilility is provided -longdesc by another Perl script, latexrevise, which accepts or rejects -longdesc all changes. Manual editing of the difference file can be used -longdesc to override this default behaviour and accept or reject -longdesc selected changes only. -depend latexdiff.ARCH -runfiles size=52 - texmf-dist/scripts/latexdiff/latexdiff-vc.pl - texmf-dist/scripts/latexdiff/latexdiff.pl - texmf-dist/scripts/latexdiff/latexrevise.pl -docfiles size=206 - texmf-dist/doc/man/man1/latexdiff-vc.1 - texmf-dist/doc/man/man1/latexdiff-vc.man1.pdf - texmf-dist/doc/man/man1/latexdiff.1 - texmf-dist/doc/man/man1/latexdiff.man1.pdf - texmf-dist/doc/man/man1/latexrevise.1 - texmf-dist/doc/man/man1/latexrevise.man1.pdf - texmf-dist/doc/support/latexdiff/COPYING - texmf-dist/doc/support/latexdiff/Makefile - texmf-dist/doc/support/latexdiff/README - texmf-dist/doc/support/latexdiff/contrib/README.latexchanges - texmf-dist/doc/support/latexdiff/contrib/latexchanges.py - texmf-dist/doc/support/latexdiff/contrib/latexdiff-wrap - texmf-dist/doc/support/latexdiff/contrib/latexdiff.spec - texmf-dist/doc/support/latexdiff/doc/example-diff.tex - texmf-dist/doc/support/latexdiff/doc/latexdiff-man.pdf - texmf-dist/doc/support/latexdiff/doc/latexdiff-man.tex - texmf-dist/doc/support/latexdiff/example/example-draft.tex - texmf-dist/doc/support/latexdiff/example/example-rev.tex - texmf-dist/doc/support/latexdiff/latexdiff - texmf-dist/doc/support/latexdiff/latexdiff-fast -catalogue-ctan /support/latexdiff -catalogue-date 2015-04-15 06:59:28 +0200 -catalogue-license gpl3 -catalogue-version 1.1.0 - -name latexdiff.i386-linux -category Package -revision 16420 -shortdesc i386-linux files of latexdiff -binfiles arch=i386-linux size=3 - bin/i386-linux/latexdiff - bin/i386-linux/latexdiff-vc - bin/i386-linux/latexrevise - name latex-doc-ptr category Package revision 15878 -shortdesc A direction-finder for LaTeX documentation. +shortdesc A direction-finder for LaTeX documentation relocated 1 longdesc A two-page set of recommendations for users who need on-line longdesc documentation of LaTeX. The document supports the need for longdesc documentation of LaTeX itself, in distributions. For example, longdesc it could be used in the command texdoc latex, in the TeX Live longdesc distribution. +containersize 500 +containerchecksum dfdaaea00e167fa3e4183b6e6a223996d1364707a7cdfc0bb8cc76d02a0c5b3739d8171979dd80540edb571cef84167b24639b265349fc9646d5570e6c48dc61 +doccontainersize 130636 +doccontainerchecksum e5ccf3968aa02ecdedc2a64f0c53b2eccfa3c4df66da5255068248de013753ec4be67937d9c41552f302979edabc53ce64d902a9f13e4174d67f39909adf9735 docfiles size=44 RELOC/doc/latex/latex-doc-ptr/Makefile - RELOC/doc/latex/latex-doc-ptr/README - RELOC/doc/latex/latex-doc-ptr/latex-doc-ptr.pdf + RELOC/doc/latex/latex-doc-ptr/README details="Readme" + RELOC/doc/latex/latex-doc-ptr/latex-doc-ptr.pdf details="The document itself" RELOC/doc/latex/latex-doc-ptr/latex-doc-ptr.sty RELOC/doc/latex/latex-doc-ptr/latex-doc-ptr.tex catalogue-ctan /info/latex-doc-ptr -catalogue-date 2015-02-23 19:52:18 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd - -name latexfileinfo-pkgs -category Package -revision 26760 -shortdesc A comparison of packages showing LaTeX file information. -relocated 1 -longdesc The package provides an HTML file that lists and compares CTAN -longdesc packages that display LaTeX source file information from -longdesc \ProvidesClass, \ProvidesFile, and \ProvidesPackage commands in -longdesc the LaTeX file. Five packages of the author's, and several -longdesc other packages are discussed; revision control systems are -longdesc mentioned briefly. -runfiles size=1 - RELOC/tex/latex/latexfileinfo-pkgs/latexfileinfo_pkgs.RLS -docfiles size=8 - RELOC/doc/latex/latexfileinfo-pkgs/README - RELOC/doc/latex/latexfileinfo-pkgs/latexfileinfo_pkgs.htm -srcfiles size=8 - RELOC/source/latex/latexfileinfo-pkgs/SrcFILEs.txt - RELOC/source/latex/latexfileinfo-pkgs/latexfileinfo_pkgs.tex - RELOC/source/latex/latexfileinfo-pkgs/mkht_ltxfinfo_pkgs.tex -catalogue-ctan /info/latexfileinfo-pkgs -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.22 - -name latexfileversion -category Package -revision 29349 -shortdesc Prints the version and date of a LaTeX class or style file. -longdesc This simple shell script prints the version and date of a LaTeX -longdesc class or style file. Syntax: latexfileversion This -longdesc programme handles style files (extension .sty), class files -longdesc (extension .cls), and other TeX input files. The file extension -longdesc must be given. -depend latexfileversion.ARCH -runfiles size=1 - texmf-dist/scripts/latexfileversion/latexfileversion -docfiles size=2 - texmf-dist/doc/support/latexfileversion/ChangeLog - texmf-dist/doc/support/latexfileversion/README -catalogue-ctan /support/latexfileversion -catalogue-date 2015-01-19 06:46:02 +0100 -catalogue-license lppl -catalogue-version v0.3 - -name latexfileversion.i386-linux -category Package -revision 25012 -shortdesc i386-linux files of latexfileversion -binfiles arch=i386-linux size=1 - bin/i386-linux/latexfileversion +catalogue-topics latex-doc name latex-fonts category Package revision 28888 -shortdesc A collection of fonts used in LaTeX distributions. +shortdesc A collection of fonts used in LaTeX distributions relocated 1 longdesc This is a collection of fonts for use with standard LaTeX longdesc packages and classes. It includes 'invisible' fonts (for use @@ -92291,6 +147341,13 @@ longdesc amsfonts distribution, are also necessary. The fonts are longdesc available as Metafont source, and metric (tfm) files are also longdesc provided. Most of the fonts are also available in Adobe Type 1 longdesc format, in the amsfonts distribution. +containersize 17972 +containerchecksum 98549dd0c7b29511abc3a1a6b6803a86af0b48121d47e292066f3b67e4b5847efbb7025352c1ec996778c7ea3a5cba552385e9b4dfd6ab005d716f503e37a26e +doccontainersize 1128 +doccontainerchecksum 4d3162776a17f31caa8e6a0fe05eed9447b681d77e653371cb5fa5d8dd2f01bddddc9f95ca916f233c11f8ec7d15e02fe575dc953fdd18c34ba877829a142bea +docfiles size=2 + RELOC/doc/fonts/latex-fonts/README details="Readme" + RELOC/doc/fonts/latex-fonts/legal.txt runfiles size=61 RELOC/fonts/source/public/latex-fonts/circle.mf RELOC/fonts/source/public/latex-fonts/icmcsc10.mf @@ -92343,52 +147400,197 @@ runfiles size=61 RELOC/fonts/tfm/public/latex-fonts/lcmssi8.tfm RELOC/fonts/tfm/public/latex-fonts/line10.tfm RELOC/fonts/tfm/public/latex-fonts/linew10.tfm -docfiles size=2 - RELOC/doc/fonts/latex-fonts/README - RELOC/doc/fonts/latex-fonts/legal.txt catalogue-ctan /fonts/latex -catalogue-date 2015-01-19 21:21:21 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-symbol font-mf name latex-git-log category Package revision 30983 -shortdesc Typeset git log information. +shortdesc Typeset git log information longdesc The program is run within a git repository, and outputs the longdesc entire version history, as a LaTeX table. That output will longdesc typically be redirected to a file; the author recommends longdesc typesetting in landscape orientation. depend latex-git-log.ARCH -runfiles size=3 - texmf-dist/scripts/latex-git-log/latex-git-log +containersize 4856 +containerchecksum 7277bd2160cfbab8daa88144b384cd03647192d516114d692af232906a39ea44ae5721ff0b935e7dd6425ec5514851220787827b819af71ae3f0c57b29d0d924 +doccontainersize 91528 +doccontainerchecksum 34c96eaa3950f9577ddf63fb42aac51080f8e92c55f02b217d2b680353f97b1fa6bcdd59158fa9e81d48dbe63d35859b52285912ceac4b523a8ae34ec894a1ac docfiles size=31 texmf-dist/doc/man/man1/latex-git-log.1 texmf-dist/doc/man/man1/latex-git-log.man1.pdf - texmf-dist/doc/support/latex-git-log/README + texmf-dist/doc/support/latex-git-log/README details="Readme" texmf-dist/doc/support/latex-git-log/example-output.tex texmf-dist/doc/support/latex-git-log/example.pdf texmf-dist/doc/support/latex-git-log/example.tex texmf-dist/doc/support/latex-git-log/po/de.po +runfiles size=3 + texmf-dist/scripts/latex-git-log/latex-git-log +catalogue-contact-repository https://github.com/ypid/typesetting/tree/master/scripts/latex-git-log catalogue-ctan /support/latex-git-log -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license gpl3 +catalogue-topics project-mgmt catalogue-version 0.9 +name latex-git-log.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of latex-git-log +containersize 344 +containerchecksum bacded72ad18ddcf10a9227cfc38aa7c8328aa14596323e8bbcdcaa5bb6f84f4a78e2016134eb9284845411112f2d34eae7a995ee29e181be4ec806dc400bf49 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/latex-git-log + +name latex-git-log.amd64-freebsd +category Package +revision 30983 +shortdesc amd64-freebsd files of latex-git-log +containersize 348 +containerchecksum 4dce70741e2d013ee78baa940a76d4dcbdcee3455afa3ee069fbb343f2b7f647249e11b02a15e51104889bfed79b2097dc852b46f7962b62747622cae8c587c4 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/latex-git-log + +name latex-git-log.amd64-netbsd +category Package +revision 30983 +shortdesc amd64-netbsd files of latex-git-log +containersize 344 +containerchecksum 7717dbba51eba449dcb471fe5d999c185cfd9ded5f216b243c13d3ea9e1133667814cd756ce865c8d9206862717f0e63c478fdf5efad31ef62a587c97b3c447f +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/latex-git-log + +name latex-git-log.armhf-linux +category Package +revision 30983 +shortdesc armhf-linux files of latex-git-log +containersize 344 +containerchecksum 390d256dda4dbe4c04a61df18a5f2c7f67c245fb0604cb83621536515a592d546bebcecd8e55573cbf7b31409d7d089b5acc99867bf33da944b92e6d378ede8e +binfiles arch=armhf-linux size=1 + bin/armhf-linux/latex-git-log + +name latex-git-log.i386-cygwin +category Package +revision 30983 +shortdesc i386-cygwin files of latex-git-log +containersize 340 +containerchecksum 1521059195d4613781302c9cb7439c634905712b2d2d10d9d1667f83ece1f4448490ee532c201e7c632d10c206bb8a153f826fde5447332bee4fbf78eaaa5dd8 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/latex-git-log + +name latex-git-log.i386-freebsd +category Package +revision 30983 +shortdesc i386-freebsd files of latex-git-log +containersize 344 +containerchecksum 18f83eb16c0776bf224b94a7298d3bdeca6b9d247bdd3f7d254fc1c1400ee33df4616684a0d2c837579ae6202f49b3eb5ea14c4a3504fdb113fe89cab925fb5c +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/latex-git-log + name latex-git-log.i386-linux category Package revision 30983 shortdesc i386-linux files of latex-git-log +containersize 344 +containerchecksum 60b4b3125bcc5697e4b3d027a0f0eac774ee6780f2b2adac57af11bee05a0876bb2e8014fc334bd9aee21997b5228b0fbe6fbc509c0c255f75f2374e9943a4e8 binfiles arch=i386-linux size=1 bin/i386-linux/latex-git-log +name latex-git-log.i386-netbsd +category Package +revision 30983 +shortdesc i386-netbsd files of latex-git-log +containersize 344 +containerchecksum 4ab85ef9c4d38aa35e3df93959cc60532b6ee1eddd4805fbed4f59611de055e2fbe6e97e6b4e4c655a226e61f2cbe1ba5389422ec8db5921fa15a408ac48545e +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/latex-git-log + +name latex-git-log.i386-solaris +category Package +revision 30983 +shortdesc i386-solaris files of latex-git-log +containersize 344 +containerchecksum a9c63a2c8c72769da719a3ee09ef3ca2dbe4f2cd8909acb7f1dc84e3cb742baaf7134b2d90b35bc110d45470999c4b4e24ca996059363e51339d6addbdba50e5 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/latex-git-log + +name latex-git-log.win32 +category Package +revision 30983 +shortdesc win32 files of latex-git-log +containersize 692 +containerchecksum f1e8bc5f5290151660dcb98176cc55fd940baed882b036d83c88eac2b8488ebde7c4706f21da6246ee8fb7775fe66b517b2e3cc5800a479128b587396e125800 +binfiles arch=win32 size=1 + bin/win32/latex-git-log.exe + +name latex-git-log.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of latex-git-log +containersize 344 +containerchecksum 5dd3d49ac9aa6f648c40ae18bac9e015fb9057d7ee1340b3e7f963ec7c29cc70611070f70e03f8e568c3f1d95d1079b6515c80eecab171eef65db81aed1c16d7 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/latex-git-log + +name latex-git-log.x86_64-darwin +category Package +revision 30983 +shortdesc x86_64-darwin files of latex-git-log +containersize 344 +containerchecksum 241ce58409750a88c66be39b06cc874445b005becfbd7620af8b149ced9a004f61ed55b3d1f809965006d0a91f97dd9c4d84871d3325f53dfb4dd7a9f5c4a578 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/latex-git-log + +name latex-git-log.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of latex-git-log +containersize 352 +containerchecksum e2294139a7d6e66e0a192bb8b8a23c0cdc9a23ef393a5aaeb0bfe78cee3bdd3a009a85120b9167f6dbfa204327f4139df6a6df1decc977dc23fe0a9d5fb3d2b3 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/latex-git-log + +name latex-git-log.x86_64-linux +category Package +revision 30983 +shortdesc x86_64-linux files of latex-git-log +containersize 344 +containerchecksum 6438cdf0fddf8c4f9b4cf949bb291de784958f217cc3dbc6bb0ce131172e6f8c560e27d53f006cf1e4d18877cfe0e4570f28da6823d5834a1a084e19b2364c79 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/latex-git-log + +name latex-git-log.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of latex-git-log +containersize 348 +containerchecksum 6e53a7bce5f1ea5f25656085797cf4d89677caced997e0d5cf9ea5a737a41b12573fb4fb44a563c8579dc1fdfaecf04a61d5c9a6564b0b36a3a03dc5ed23723b +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/latex-git-log + +name latex-git-log.x86_64-solaris +category Package +revision 30983 +shortdesc x86_64-solaris files of latex-git-log +containersize 344 +containerchecksum d66b328c6d3892abfda6a4416ced62379ab29059d6a82aef07c2b4cba1a534384f5bc923810c9efc634e5bdf714d26cd003c8aa57bfd967de611e3a1b0517bf6 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/latex-git-log + name latex-graphics-companion category Package revision 29235 catalogue lgc-examples -shortdesc Examples from The LaTeX Graphics Companion. +shortdesc Examples from The LaTeX Graphics Companion relocated 1 longdesc The source of the examples printed in the book, together with longdesc necessary supporting files. +containersize 436 +containerchecksum 3148a646539db3622096f9aeefd7ca2d44b0cf83cd454673893978897d07cfe7107b8f5bc745bc6b60734d4ad3429be1ffc2edaa8c9dd1721b41bfe913fa0dbe +doccontainersize 61484 +doccontainerchecksum ab9d885c811af3964e8cdd8576349059bd45d660e6b9a7e931697f7c7fa5282c725e044817de8f2648ded59519d1592945e0804ba7cbe0054ce2bd4d44606af5 docfiles size=447 RELOC/doc/latex/latex-graphics-companion/1-4-1.ltx RELOC/doc/latex/latex-graphics-companion/1-4-10.pic @@ -92793,7 +147995,7 @@ docfiles size=447 RELOC/doc/latex/latex-graphics-companion/9-3-9.inl RELOC/doc/latex/latex-graphics-companion/A-1-1.inl RELOC/doc/latex/latex-graphics-companion/Makefile - RELOC/doc/latex/latex-graphics-companion/README + RELOC/doc/latex/latex-graphics-companion/README details="Readme" RELOC/doc/latex/latex-graphics-companion/ages.dat RELOC/doc/latex/latex-graphics-companion/bar.ini RELOC/doc/latex/latex-graphics-companion/chap.dat @@ -92828,79 +148030,14 @@ docfiles size=447 RELOC/doc/latex/latex-graphics-companion/years.wom RELOC/doc/latex/latex-graphics-companion/yearw.dat catalogue-ctan /info/examples/lgc -catalogue-date 2012-05-22 11:10:15 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl - -name latexindent -category Package -revision 36955 -shortdesc Indent a LaTeX document, highlighting the programming structure. -longdesc The Perl script (also available as a windows executable) -longdesc processes a LaTeX file, indenting parts so as to highlight the -longdesc structure for the reader. -depend latexindent.ARCH -runfiles size=22 - texmf-dist/scripts/latexindent/defaultSettings.yaml - texmf-dist/scripts/latexindent/latexindent.pl -docfiles size=217 - texmf-dist/doc/support/latexindent/README - texmf-dist/doc/support/latexindent/documentation/manual.pdf - texmf-dist/doc/support/latexindent/documentation/manual.tex - texmf-dist/doc/support/latexindent/indent.yaml - texmf-dist/doc/support/latexindent/success/alignmentoutsideEnvironments.tex - texmf-dist/doc/support/latexindent/success/bigTest.tex - texmf-dist/doc/support/latexindent/success/braceTest.tex - texmf-dist/doc/support/latexindent/success/braceTestsmall.tex - texmf-dist/doc/support/latexindent/success/conditional.tex - texmf-dist/doc/support/latexindent/success/environments.tex - texmf-dist/doc/support/latexindent/success/figureValign.tex - texmf-dist/doc/support/latexindent/success/filecontents.tex - texmf-dist/doc/support/latexindent/success/ifelsefi.tex - texmf-dist/doc/support/latexindent/success/ifelsefiONE.tex - texmf-dist/doc/support/latexindent/success/matrix.tex - texmf-dist/doc/support/latexindent/success/multipleBraces.tex - texmf-dist/doc/support/latexindent/success/nestedalignment.tex - texmf-dist/doc/support/latexindent/success/nestedalignment1.tex - texmf-dist/doc/support/latexindent/success/outputfile.tex - texmf-dist/doc/support/latexindent/success/preamble.tex - texmf-dist/doc/support/latexindent/success/pstricks1.tex - texmf-dist/doc/support/latexindent/success/pstricks2.tex - texmf-dist/doc/support/latexindent/success/pstricks3.tex - texmf-dist/doc/support/latexindent/success/sampleAFTER.tex - texmf-dist/doc/support/latexindent/success/sampleBEFORE.tex - texmf-dist/doc/support/latexindent/success/stylefile.tex - texmf-dist/doc/support/latexindent/success/table1.tex - texmf-dist/doc/support/latexindent/success/table2.tex - texmf-dist/doc/support/latexindent/success/table3.tex - texmf-dist/doc/support/latexindent/success/testHeadings.tex - texmf-dist/doc/support/latexindent/success/testHeadings1.tex - texmf-dist/doc/support/latexindent/success/testItems.tex - texmf-dist/doc/support/latexindent/success/testcls.cls - texmf-dist/doc/support/latexindent/success/theorem.tex - texmf-dist/doc/support/latexindent/success/tikz1.tex - texmf-dist/doc/support/latexindent/success/tikz2.tex - texmf-dist/doc/support/latexindent/success/tikz3.tex - texmf-dist/doc/support/latexindent/success/tikz4.tex - texmf-dist/doc/support/latexindent/success/tikz5.tex - texmf-dist/doc/support/latexindent/success/torusPGF.tex - texmf-dist/doc/support/latexindent/success/torusPSTricks.tex - texmf-dist/doc/support/latexindent/success/trailingComments.tex -catalogue-ctan /support/latexindent -catalogue-date 2015-04-19 08:04:09 +0200 -catalogue-license gpl3 -catalogue-version 2.1R - -name latexindent.i386-linux -category Package -revision 32150 -shortdesc i386-linux files of latexindent -binfiles arch=i386-linux size=1 - bin/i386-linux/latexindent +catalogue-topics book-ex name latex-make category Package -revision 35357 -shortdesc Easy compiling of complex (and simple) LaTeX documents. +revision 48925 +shortdesc Easy compiling of complex (and simple) LaTeX documents relocated 1 longdesc This package provides several tools that aim to simplify the longdesc compilation of LaTeX documents: LaTeX.mk: a Makefile snippet to @@ -92914,6 +148051,25 @@ longdesc (with \includegraphics{file.fig}). It can interact with longdesc LaTeX.mk so that the latter automatically invokes transfig if longdesc needed. And various helper tools for LaTeX.mk This package longdesc requires GNUmake (>= 3.81). +containersize 9172 +containerchecksum cb48ad252c77ca6271a527718872f95f28d64664aa62aca9ed11d73b1fdf29dec1cefa6c2fc07f0c95e16495a0a2410b59087e88a889b1047ce24bff71495ee4 +doccontainersize 751040 +doccontainerchecksum bfe0143040544987d9e89827b79a847657f9b705ef3607ec2757ab7d5a8b4e005c64060ba5d3cf4066c4f21e622cafaf5e7c442aadd53f6583230e7f276c317a +docfiles size=216 + RELOC/doc/support/latex-make/LaTeX.mk + RELOC/doc/support/latex-make/LaTeX.mk.conf + RELOC/doc/support/latex-make/README details="Readme" + RELOC/doc/support/latex-make/figlatex.pdf details="figlatex Package documentation" + RELOC/doc/support/latex-make/latex-make.pdf details="Package documentation" + RELOC/doc/support/latex-make/texdepends.pdf details="texdepends Package documentation" +srccontainersize 28480 +srccontainerchecksum c437e31d4cb28c8ad838545aa0afe053318986a8fd9efb8dea0500d544b94bcb2a6b89c96d079ddc640477bba845b84f7f1fd8cf86ad689c04628e274352738b +srcfiles size=36 + RELOC/source/support/latex-make/figlatex.dtx + RELOC/source/support/latex-make/latex-make.dtx + RELOC/source/support/latex-make/latex-make.ins + RELOC/source/support/latex-make/pdfswitch.dtx + RELOC/source/support/latex-make/texdepends.dtx runfiles size=16 RELOC/scripts/latex-make/figdepth.py RELOC/scripts/latex-make/gensubfig.py @@ -92925,61 +148081,61 @@ runfiles size=16 RELOC/tex/latex/latex-make/pdfswitch.sty RELOC/tex/latex/latex-make/texdepends.sty RELOC/tex/latex/latex-make/texgraphicx.sty -docfiles size=213 - RELOC/doc/support/latex-make/LaTeX.mk - RELOC/doc/support/latex-make/LaTeX.mk.conf - RELOC/doc/support/latex-make/README - RELOC/doc/support/latex-make/figlatex.pdf - RELOC/doc/support/latex-make/latex-make.pdf - RELOC/doc/support/latex-make/texdepends.pdf -srcfiles size=34 - RELOC/source/support/latex-make/figlatex.dtx - RELOC/source/support/latex-make/latex-make.dtx - RELOC/source/support/latex-make/latex-make.ins - RELOC/source/support/latex-make/pdfswitch.dtx - RELOC/source/support/latex-make/texdepends.dtx +catalogue-contact-home http://gforge.inria.fr/projects/latex-utils/ catalogue-ctan /support/latex-make -catalogue-date 2014-10-13 11:02:00 +0200 +catalogue-date 2018-10-17 20:25:35 +0200 catalogue-license gpl -catalogue-version 2.1.19.1 - -name latexmp -category Package -revision 15878 -shortdesc Interface for LaTeX-based typesetting in MetaPost -relocated 1 -longdesc The MetaPost package latexMP implements a user-friendly -longdesc interface to access LaTeX-based typesetting capabilities in -longdesc MetaPost. The text to be typeset is given as string. This -longdesc allows even dynamic text elements, for example counters, to be -longdesc used in labels. Compared to other implementations it is much -longdesc more flexible, since it can be used as direct replacement for -longdesc btex..etex, and much faster, compared for example to the -longdesc solution provided by tex.mp -runfiles size=4 - RELOC/metapost/latexmp/latexmp.mp -docfiles size=44 - RELOC/doc/metapost/latexmp/README - RELOC/doc/metapost/latexmp/latexmp.pdf -catalogue-ctan /graphics/metapost/contrib/macros/latexmp -catalogue-date 2012-07-07 15:54:01 +0200 -catalogue-license pd -catalogue-version 1.2.1 +catalogue-topics compilation +catalogue-version 2.3.0 + +name latex-mr +category Package +revision 44601 +shortdesc A practical guide to LaTeX and Polyglossia for Marathi and other Indian languages +relocated 1 +longdesc The package provides a short guide to LaTeX and specifically to +longdesc the polyglossia package. This document aims to introduce LaTeX +longdesc and polyglossia for Indian languages. Though the document often +longdesc discusses the language Marathi, the discussion applies to other +longdesc India languages also, with some minute changes which are +longdesc described in Section 1.2. We assume that the user of this +longdesc document knows basic (La)TeX or has, at least, tried her hand +longdesc on it. This document is not very suitable for first time users. +containersize 716 +containerchecksum 3c5b806bb100cd7280d4a7e97104f21b4260372292aba60264f88fe9a7230fb42365ffea15a948d4334f8f74683d9a79ca40cb9b87c49066d61a2b0f101dfb8c +doccontainersize 357060 +doccontainerchecksum 6022c2e3642928e716e6ed2536c849fade08dd26138312567b139a450032ec75d029ea5f1103bfbfdbdb7bec4b35d972c08e866da8d5eea89012b7a1fc414678 +docfiles size=135 + RELOC/doc/latex/latex-mr/Leslie_Lamport.jpg + RELOC/doc/latex/latex-mr/README.md details="Readme" + RELOC/doc/latex/latex-mr/latex-mr.pdf details="Package documentation" + RELOC/doc/latex/latex-mr/latex-mr.tex +catalogue-contact-announce https://sites.google.com/site/homerdholkar/other/latex-poly-mr +catalogue-contact-home https://sites.google.com/site/homerdholkar/other/latex-poly-mr +catalogue-ctan /info/latex-mr +catalogue-date 2017-06-16 08:43:03 +0200 +catalogue-license lppl1.3 +catalogue-topics tut-latex +catalogue-version 1.0 name latex-notes-zh-cn category Package revision 15878 -shortdesc Chinese Introduction to TeX and LaTeX. +shortdesc Chinese Introduction to TeX and LaTeX relocated 1 longdesc The document is an introduction to TeX/LaTeX, in Chinese. It longdesc covers basic text typesetting, mathematics, graphics, tables, longdesc Chinese language & fonts, and some miscellaneous features longdesc (hyperlinks, long documents, bibliographies, indexes and page longdesc layout). +containersize 532 +containerchecksum 5e5b3bb01456fec3dc22cb5d0d4f521b4d4f5f8f3119fdd76ea9cc55a70a2ad8a2b72e36471894ee448c1d40d887d20ac8fda39c4a3fe2cd111d2850eec12071 +doccontainersize 693120 +doccontainerchecksum 477df31445a2991db3c2b8cafaa97662d722f3f7171c2f756cf025717cb3b896c1773adadbc42c22cb360f7542a0e658547f15cd71c54e9b79f76fb1e2097e90 docfiles size=603 - RELOC/doc/generic/latex-notes-zh-cn/README + RELOC/doc/generic/latex-notes-zh-cn/README details="Readme" RELOC/doc/generic/latex-notes-zh-cn/history.txt - RELOC/doc/generic/latex-notes-zh-cn/latex-notes-zh-cn.pdf + RELOC/doc/generic/latex-notes-zh-cn/latex-notes-zh-cn.pdf details="The document itself" language="zh" RELOC/doc/generic/latex-notes-zh-cn/license.txt RELOC/doc/generic/latex-notes-zh-cn/src/basics.tex RELOC/doc/generic/latex-notes-zh-cn/src/dscf4684.jpg @@ -93031,45 +148187,193 @@ docfiles size=603 RELOC/doc/generic/latex-notes-zh-cn/src/reading.bib RELOC/doc/generic/latex-notes-zh-cn/src/tables.tex catalogue-ctan /info/latex-notes-zh-cn -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics chinese-doc catalogue-version 1.20 -name latexpand -category Package -revision 37592 -shortdesc Expand \input and \include in a LaTeX document. -longdesc Latexpand is a Perl script that simply replaces \input and -longdesc \include commands with the content of the file input/included. -longdesc The script does not deal with \includeonly commands. -depend latexpand.ARCH +name latex-papersize +category Package +revision 42296 +shortdesc Calculate LaTeX settings for any font and paper size +longdesc The package is a Python script, whose typical use is when +longdesc preparing printed material for users with low vision. The most +longdesc effective way of doing this is to print on (notional) small +longdesc paper, and then to magnify the result; the script calculates +longdesc the settings for various font and paper sizes. More details are +longdesc to be read in the script itself. +depend latex-papersize.ARCH +containersize 4612 +containerchecksum cc3c6b563e16f70cab0ec113068d7f870a266c090ef518c06b4e3eced8e8fd9cb7aaa3544ef362ffd4af7f1d033a104daa48d47416061c3a73ba8329cc9a0fbb +doccontainersize 596 +doccontainerchecksum 662d7a890978bb772a79db7a1d406ce6958970f6cdec352f78347d9ad8df47734ddae444370fa9e93582d4030568cd516ca32125b2d1e0f60aac3ce1c9b930e9 +docfiles size=1 + texmf-dist/doc/support/latex-papersize/README details="Readme" runfiles size=3 - texmf-dist/scripts/latexpand/latexpand -docfiles size=3 - texmf-dist/doc/support/latexpand/README - texmf-dist/doc/support/latexpand/version.txt -catalogue-ctan /support/latexpand -catalogue-date 2015-05-24 17:15:23 +0200 -catalogue-license bsd -catalogue-topics file-mgmt -catalogue-version 1.2 + texmf-dist/scripts/latex-papersize/latex-papersize.py +catalogue-ctan /support/latex-papersize +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license apache2 +catalogue-topics layout +catalogue-version 1.62 -name latexpand.i386-linux -category Package -revision 27025 -shortdesc i386-linux files of latexpand +name latex-papersize.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of latex-papersize +containersize 348 +containerchecksum dea8679fed21c394b12424f6d66ed8b1dd02c32164357c2dc68115120f2e94f01dc0cc9e29bfaeac1c91d04df80397870da5a2597b50787603ba4175dca8a783 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/latex-papersize + +name latex-papersize.amd64-freebsd +category Package +revision 42296 +shortdesc amd64-freebsd files of latex-papersize +containersize 348 +containerchecksum d8b8d0bd58132d787e60c30f1a5a5ce953e41b5e05551204acc1b0bf88e315db7bd5028cd8f4182b7ccade9ce3b3d06435eced459eacc85b9f2e04fc791a293e +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/latex-papersize + +name latex-papersize.amd64-netbsd +category Package +revision 42296 +shortdesc amd64-netbsd files of latex-papersize +containersize 348 +containerchecksum de16029133293cbe644a8f462ab8ae19e85d8a1d27fa3931b7e24b051d3ea075e31027b5611999244fb7c7a8b0c80a7b6aca1ac4fa2a1b5b3208435bbbbd2221 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/latex-papersize + +name latex-papersize.armhf-linux +category Package +revision 42296 +shortdesc armhf-linux files of latex-papersize +containersize 348 +containerchecksum 0276bf7f34e4c18c75a3397d70713290c401a4dc2ef9bc15790709e235a73ba56e6f5de15f456b85b98478bd1ee6a092cc32eace113f0653f218455cf5e781ef +binfiles arch=armhf-linux size=1 + bin/armhf-linux/latex-papersize + +name latex-papersize.i386-cygwin +category Package +revision 42296 +shortdesc i386-cygwin files of latex-papersize +containersize 344 +containerchecksum a851ceebda55e9e474090291df9dd1feb21f7ba8b7850418bbc74125c4670b17d93a9cf9c63c1a44d953d2f9ff1103f034b8fb904fa414f7c7b2ded1fbb3574a +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/latex-papersize + +name latex-papersize.i386-freebsd +category Package +revision 42296 +shortdesc i386-freebsd files of latex-papersize +containersize 348 +containerchecksum ae3b48c030940406afc51378bc7ff005ab2688523c39ad02fc43f668c297c7a29b027f87683d7ef2a025b0d56f21abb5b1b1c86886d0424e576eaee25550e4c2 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/latex-papersize + +name latex-papersize.i386-linux +category Package +revision 42296 +shortdesc i386-linux files of latex-papersize +containersize 348 +containerchecksum 7119b2619202265e7c4d0f92a90a90bdc3dec72f96860f85ca66ff165fc8c108196dc683f1adc777731012062a8cfee70fffda2ba9922dd25ecd11441f6e9fed binfiles arch=i386-linux size=1 - bin/i386-linux/latexpand + bin/i386-linux/latex-papersize + +name latex-papersize.i386-netbsd +category Package +revision 42296 +shortdesc i386-netbsd files of latex-papersize +containersize 344 +containerchecksum 6f2de48f0dcbd1e06a97ca8e2e28a8d5aeb7bc943374f238a93e37927a01c50523d483cf6776493289f0e5ce6753c456c521f1f3b3fbcb6d23555d6a85f2b206 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/latex-papersize + +name latex-papersize.i386-solaris +category Package +revision 42296 +shortdesc i386-solaris files of latex-papersize +containersize 348 +containerchecksum 3713462310302a08d694e44f3947a738b06fd0464a231d62d1560acce8ea45d6e176160ef93c4c45c576f841ba6a277ea23cc986a67deb1f3904ae57278db242 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/latex-papersize + +name latex-papersize.win32 +category Package +revision 42296 +shortdesc win32 files of latex-papersize +containersize 688 +containerchecksum 68ae3e1aa0a98182b798b09cffc265117deda073cdb7209c351921fe3db5300553a00e7c8951833f5a1aa732e3ad2d09db9fe3b813ac7ec7820bbf37759f1c8c +binfiles arch=win32 size=1 + bin/win32/latex-papersize.exe + +name latex-papersize.x86_64-cygwin +category Package +revision 42296 +shortdesc x86_64-cygwin files of latex-papersize +containersize 348 +containerchecksum 1508c9d6eb1ed71fd0ac0d2cd2a0b3cf7d0957632fc2f78689db9ca83fa14de40dfd7757bab0e6b743270dd808e66553e3052dcf316dec2a1374a9c96bddbd8d +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/latex-papersize + +name latex-papersize.x86_64-darwin +category Package +revision 42296 +shortdesc x86_64-darwin files of latex-papersize +containersize 348 +containerchecksum 828c7e845428ce87114a7e7f5b79ecd6dbe3bd18fd6d19417222c47d434f67f540be8ba3ad3edd2b59dd7476ec40467324f7f31a7f6f6e52adb9f2928361326b +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/latex-papersize + +name latex-papersize.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of latex-papersize +containersize 352 +containerchecksum f4e6a82e14f35c0ffbc77de43889f1ddea20b53b3ba5ee184a57dd044ab5a626d93f2465ac5d71049594b29a760404334a64efcd95570e255bc025f574fcd5f5 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/latex-papersize + +name latex-papersize.x86_64-linux +category Package +revision 42296 +shortdesc x86_64-linux files of latex-papersize +containersize 344 +containerchecksum b509a7ee1aaf8ac9e54f0ea32e823c4b3353060fe905b52bbd64a1e8350b1c89d83ce3c2e9f2ca2e112e41d5f6e4712d67705f5a0b3e6ca61113c25fc8f10963 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/latex-papersize + +name latex-papersize.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of latex-papersize +containersize 348 +containerchecksum 42f96aa36fa7f3d95170bda04a7431bb98ddfcf7fed1c8895460d51e16879faeb3da311b4ef372f909a12480d7c640c33604e30af7eee671779c2ef4ca38f8a9 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/latex-papersize + +name latex-papersize.x86_64-solaris +category Package +revision 42296 +shortdesc x86_64-solaris files of latex-papersize +containersize 348 +containerchecksum 3d428f378217621dcff2900ccfb8627c8d416f356e35093b85d94daa726caabfe6d79a404e05c5300f902e6252fe06219ba025b3f097d955f73e791379a3a2ce +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/latex-papersize name latex-referenz category Package revision 36671 -shortdesc Examples from the book "LaTeX Referenz". +shortdesc Examples from the book "LaTeX Referenz" relocated 1 longdesc This bundle contains all the examples, as source, eps and pdf, longdesc of the author's book "LaTeX Referenz" (2nd ed.), published by longdesc DANTE/Lehmanns. The examples can be run, using the example longdesc class (ttctexa.cls) in the distribution. +containersize 520 +containerchecksum b61dfd5317eaf0ef7add1f80506492390d5ba0c01480e83d384e60ac0aff39710945ab81e030e7882fafa77a2913d88efd31f3cf05729ddc09c63243e825260f +doccontainersize 98676 +doccontainerchecksum e71abe8a8384be7b0e343657e992b7703d30b38bfcb1dfb689954bdf84581336e099059bdb14af464c951777a8a6809f1161955868dd2f3b219fee3d2046ef94 docfiles size=285 RELOC/doc/latex/latex-referenz/01-03-1.xltx RELOC/doc/latex/latex-referenz/01-04-1.lux @@ -93260,7 +148564,7 @@ docfiles size=285 RELOC/doc/latex/latex-referenz/10-03-9.ltx RELOC/doc/latex/latex-referenz/DEexa.sty RELOC/doc/latex/latex-referenz/DEoptions.sty - RELOC/doc/latex/latex-referenz/README + RELOC/doc/latex/latex-referenz/README details="Readme" language="de" RELOC/doc/latex/latex-referenz/UTF8.bib RELOC/doc/latex/latex-referenz/bspfont.cls RELOC/doc/latex/latex-referenz/caspervector.bib @@ -93292,16 +148596,52 @@ docfiles size=285 RELOC/doc/latex/latex-referenz/screxareport.cls RELOC/doc/latex/latex-referenz/textdemo.sty catalogue-ctan /info/examples/LaTeX-Referenz -catalogue-date 2015-03-28 21:49:28 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics book-ex catalogue-version 2 +name latex-refsheet +category Package +revision 45076 +shortdesc LaTeX Reference Sheet for a thesis with KOMA-Script +relocated 1 +longdesc This LaTeX Reference Sheet is for writing a thesis using the +longdesc KOMA-Script document classes (scrartcl, scrreprt, scrbook) and +longdesc all the packages needed for a thesis in natural sciences. +containersize 480 +containerchecksum ea6751fc09aada1b8ebcca08ecdb10279b6df881b3b373b04e8c238609de92b4cdc4f1e7321f178b15637c0b712e9781317af07030f2f9297a3ce23a5f46cb32 +doccontainersize 5020492 +doccontainerchecksum 77149dabb1fe5c4a46591b3b307d02b2e2b33a07267afcdb44b77a2a823dcea9ea76b4be5ddad530151b638cfbcaf5d87ed0fed59a9e8ed99acb0895717bc71a +docfiles size=1818 + RELOC/doc/latex/latex-refsheet/LaTeX_RefSheet.pdf details="The document itself" + RELOC/doc/latex/latex-refsheet/LaTeX_RefSheet.tex + RELOC/doc/latex/latex-refsheet/README.md details="Readme" + RELOC/doc/latex/latex-refsheet/acknowledgements.pdf + RELOC/doc/latex/latex-refsheet/acknowledgements.tex + RELOC/doc/latex/latex-refsheet/header-graph.pdf + RELOC/doc/latex/latex-refsheet/header-graph.tex + RELOC/doc/latex/latex-refsheet/layout.pdf + RELOC/doc/latex/latex-refsheet/logo.png + RELOC/doc/latex/latex-refsheet/thesis.bib + RELOC/doc/latex/latex-refsheet/thesis.pdf + RELOC/doc/latex/latex-refsheet/thesis.tex +catalogue-ctan /info/latex-refsheet +catalogue-date 2017-08-21 05:22:57 +0200 +catalogue-license lppl1.3c +catalogue-topics tut-cheat +catalogue-version 1.2 + name latex-tabellen category Package revision 16979 -shortdesc LaTeX Tabellen. +shortdesc LaTeX Tabellen relocated 1 longdesc The examples from the book <>, 2nd ed. +containersize 384 +containerchecksum ca056b194690d7b71429022c4b80b9d171cd7aa2e580921eed556a11fc2e3162106a06d61333dc69495d801120c35528fdc74b9c282cb6baa3391595e5f28d76 +doccontainersize 45788 +doccontainerchecksum 7f3f4ee26f1f9f6bd6d27cbde4193d8e2607a34ee2ebcbc44934b17673b60375a566828461ce672fe8d4404e32784cc62a54b51873645592079aedaa7c82e081 docfiles size=324 RELOC/doc/latex/latex-tabellen/01-01-1.ltxps RELOC/doc/latex/latex-tabellen/01-01-10.ltx @@ -93626,24 +148966,31 @@ docfiles size=324 RELOC/doc/latex/latex-tabellen/07-03-2.ltx2 RELOC/doc/latex/latex-tabellen/README catalogue-ctan /info/examples/Tabellen2 -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics book-ex name latex-tds category Package -revision 35577 -shortdesc A structured copy of the LaTeX distribution. -relocated 1 -longdesc This bundle provides a set of zip file modules containing TDS- -longdesc compliant trees for items of the LaTeX distribution (both the -longdesc base system and required packages), together with 'user- -longdesc friendly' documentation (PDF files with navigation support -longdesc using bookmarks and links). A further module (knuth) performs -longdesc the same service for Knuth's software distribution. +revision 40613 +shortdesc A structured copy of the LaTeX distribution +relocated 1 +longdesc This bundle provides a set of zip file modules containing +longdesc TDS-compliant trees for items of the LaTeX distribution (both +longdesc the base system and required packages), together with +longdesc 'user-friendly' documentation (PDF files with navigation +longdesc support using bookmarks and links). A further module (knuth) +longdesc performs the same service for Knuth's software distribution. +containersize 588 +containerchecksum a688c4e6790460f3155110f31c36c240fc1d9e9b8c3b2641a1a186c54d7939bbb4f779e80cb125d34036b64ce8da26d3460365d34d23d49067bf8438816cdaa3 +doccontainersize 84088 +doccontainerchecksum cc4928fd82e07cc0b601c702444a84475978671e3c86280cc8aac334ca562f3841a9f8c191bc174522f5c00e45cad519e6ceec1344e229f4b125611f60e43766 docfiles size=50 - RELOC/doc/latex/latex-tds/README + RELOC/doc/latex/latex-tds/README details="Readme" RELOC/doc/latex/latex-tds/README.html RELOC/doc/latex/latex-tds/README.pdf +srccontainersize 128300 +srccontainerchecksum 0f1b88a565c417a238476ab3c91bef40d265388458473f1ff3b4dd5e6b6897e8d8cdcd15f9eab17606aadfd5ce5ac978b81385618d8d3906defe4d13d438f72c srcfiles size=112 RELOC/source/latex/latex-tds/README-docinfo.html RELOC/source/latex/latex-tds/README.asciidoc @@ -93695,409 +149042,130 @@ srcfiles size=112 RELOC/source/latex/latex-tds/tex/tools-overview.cls RELOC/source/latex/latex-tds/tex/tools.tex catalogue-ctan /macros/latex/contrib/latex-tds -catalogue-date 2014-11-13 10:01:29 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 - -name latex -category Package -revision 37789 -shortdesc A TeX macro package that defines LaTeX. -relocated 1 -longdesc LaTeX is a widely-used macro package for TeX, providing many -longdesc basic document formating commands extended by a wide range of -longdesc packages. It is a development of Leslie Lamport's LaTeX 2.09, -longdesc and superseded the older system in June 1994. The basic -longdesc distribution is catalogued separately, at latex-base; apart -longdesc from a large set of contributed packages and third-party -longdesc documentation (elsewhere on the archive), the distribution -longdesc includes: - a bunch of required packages, which LaTeX authors -longdesc are "entitled to assume" will be present on any system running -longdesc LaTeX; and - a minimal set of documentation detailing -longdesc differences from the 'old' version of LaTeX in the areas of -longdesc user commands, font selection and control, class and package -longdesc writing, font encodings, configuration options and modification -longdesc of LaTeX. For downloading details, see the linked catalogue -longdesc entries above. -depend luatex -depend pdftex -depend latexconfig -depend latex-fonts -runfiles size=1613 - RELOC/makeindex/latex/gglo.ist - RELOC/makeindex/latex/gind.ist - RELOC/tex/latex/base/alltt.sty - RELOC/tex/latex/base/ansinew.def - RELOC/tex/latex/base/applemac.def - RELOC/tex/latex/base/article.cls - RELOC/tex/latex/base/article.sty - RELOC/tex/latex/base/ascii.def - RELOC/tex/latex/base/bezier.sty - RELOC/tex/latex/base/bk10.clo - RELOC/tex/latex/base/bk11.clo - RELOC/tex/latex/base/bk12.clo - RELOC/tex/latex/base/book.cls - RELOC/tex/latex/base/book.sty - RELOC/tex/latex/base/cp1250.def - RELOC/tex/latex/base/cp1252.def - RELOC/tex/latex/base/cp1257.def - RELOC/tex/latex/base/cp437.def - RELOC/tex/latex/base/cp437de.def - RELOC/tex/latex/base/cp850.def - RELOC/tex/latex/base/cp852.def - RELOC/tex/latex/base/cp858.def - RELOC/tex/latex/base/cp865.def - RELOC/tex/latex/base/decmulti.def - RELOC/tex/latex/base/doc.sty - RELOC/tex/latex/base/docstrip.tex - RELOC/tex/latex/base/exscale.sty - RELOC/tex/latex/base/fix-cm.sty - RELOC/tex/latex/base/fixltx2e.sty - RELOC/tex/latex/base/flafter.sty - RELOC/tex/latex/base/fleqn.clo - RELOC/tex/latex/base/fleqn.sty - RELOC/tex/latex/base/fltrace.sty - RELOC/tex/latex/base/fontenc.sty - RELOC/tex/latex/base/fontmath.cfg - RELOC/tex/latex/base/fontmath.ltx - RELOC/tex/latex/base/fonttext.cfg - RELOC/tex/latex/base/fonttext.ltx - RELOC/tex/latex/base/graphpap.sty - RELOC/tex/latex/base/hyphen.ltx - RELOC/tex/latex/base/idx.tex - RELOC/tex/latex/base/ifthen.sty - RELOC/tex/latex/base/inputenc.sty - RELOC/tex/latex/base/lablst.tex - RELOC/tex/latex/base/latex.ltx - RELOC/tex/latex/base/latex209.def - RELOC/tex/latex/base/latexbug.tex - RELOC/tex/latex/base/latexrelease.sty - RELOC/tex/latex/base/latexsym.sty - RELOC/tex/latex/base/latin1.def - RELOC/tex/latex/base/latin10.def - RELOC/tex/latex/base/latin2.def - RELOC/tex/latex/base/latin3.def - RELOC/tex/latex/base/latin4.def - RELOC/tex/latex/base/latin5.def - RELOC/tex/latex/base/latin9.def - RELOC/tex/latex/base/lcyenc.dfu - RELOC/tex/latex/base/leqno.clo - RELOC/tex/latex/base/leqno.sty - RELOC/tex/latex/base/letter.cls - RELOC/tex/latex/base/letter.sty - RELOC/tex/latex/base/lppl.tex - RELOC/tex/latex/base/ltnews.cls - RELOC/tex/latex/base/ltpatch.ltx - RELOC/tex/latex/base/ltxcheck.tex - RELOC/tex/latex/base/ltxdoc.cls - RELOC/tex/latex/base/ltxguide.cls - RELOC/tex/latex/base/ly1enc.dfu - RELOC/tex/latex/base/macce.def - RELOC/tex/latex/base/makeidx.sty - RELOC/tex/latex/base/minimal.cls - RELOC/tex/latex/base/newlfont.sty - RELOC/tex/latex/base/next.def - RELOC/tex/latex/base/nfssfont.tex - RELOC/tex/latex/base/oldlfont.sty - RELOC/tex/latex/base/omlcmm.fd - RELOC/tex/latex/base/omlcmr.fd - RELOC/tex/latex/base/omlenc.def - RELOC/tex/latex/base/omllcmm.fd - RELOC/tex/latex/base/omscmr.fd - RELOC/tex/latex/base/omscmsy.fd - RELOC/tex/latex/base/omsenc.def - RELOC/tex/latex/base/omsenc.dfu - RELOC/tex/latex/base/omslcmsy.fd - RELOC/tex/latex/base/omxcmex.fd - RELOC/tex/latex/base/omxlcmex.fd - RELOC/tex/latex/base/openbib.sty - RELOC/tex/latex/base/ot1cmdh.fd - RELOC/tex/latex/base/ot1cmfib.fd - RELOC/tex/latex/base/ot1cmfr.fd - RELOC/tex/latex/base/ot1cmr.fd - RELOC/tex/latex/base/ot1cmss.fd - RELOC/tex/latex/base/ot1cmtt.fd - RELOC/tex/latex/base/ot1cmvtt.fd - RELOC/tex/latex/base/ot1enc.def - RELOC/tex/latex/base/ot1enc.dfu - RELOC/tex/latex/base/ot1lcmss.fd - RELOC/tex/latex/base/ot1lcmtt.fd - RELOC/tex/latex/base/ot2enc.dfu - RELOC/tex/latex/base/ot4enc.def - RELOC/tex/latex/base/preload.cfg - RELOC/tex/latex/base/preload.ltx - RELOC/tex/latex/base/proc.cls - RELOC/tex/latex/base/proc.sty - RELOC/tex/latex/base/report.cls - RELOC/tex/latex/base/report.sty - RELOC/tex/latex/base/sample2e.tex - RELOC/tex/latex/base/sfonts.def - RELOC/tex/latex/base/shortvrb.sty - RELOC/tex/latex/base/showidx.sty - RELOC/tex/latex/base/size10.clo - RELOC/tex/latex/base/size11.clo - RELOC/tex/latex/base/size12.clo - RELOC/tex/latex/base/slides.cls - RELOC/tex/latex/base/slides.def - RELOC/tex/latex/base/slides.sty - RELOC/tex/latex/base/small2e.tex - RELOC/tex/latex/base/source2e.tex - RELOC/tex/latex/base/syntonly.sty - RELOC/tex/latex/base/t1cmdh.fd - RELOC/tex/latex/base/t1cmfib.fd - RELOC/tex/latex/base/t1cmfr.fd - RELOC/tex/latex/base/t1cmr.fd - RELOC/tex/latex/base/t1cmss.fd - RELOC/tex/latex/base/t1cmtt.fd - RELOC/tex/latex/base/t1cmvtt.fd - RELOC/tex/latex/base/t1enc.def - RELOC/tex/latex/base/t1enc.dfu - RELOC/tex/latex/base/t1enc.sty - RELOC/tex/latex/base/t1lcmss.fd - RELOC/tex/latex/base/t1lcmtt.fd - RELOC/tex/latex/base/t2aenc.dfu - RELOC/tex/latex/base/t2benc.dfu - RELOC/tex/latex/base/t2cenc.dfu - RELOC/tex/latex/base/testpage.tex - RELOC/tex/latex/base/texsys.cfg - RELOC/tex/latex/base/textcomp.sty - RELOC/tex/latex/base/tracefnt.sty - RELOC/tex/latex/base/ts1cmr.fd - RELOC/tex/latex/base/ts1cmss.fd - RELOC/tex/latex/base/ts1cmtt.fd - RELOC/tex/latex/base/ts1cmvtt.fd - RELOC/tex/latex/base/ts1enc.def - RELOC/tex/latex/base/ts1enc.dfu - RELOC/tex/latex/base/ucmr.fd - RELOC/tex/latex/base/ucmss.fd - RELOC/tex/latex/base/ucmtt.fd - RELOC/tex/latex/base/ulasy.fd - RELOC/tex/latex/base/ullasy.fd - RELOC/tex/latex/base/unicode-letters.def - RELOC/tex/latex/base/utf8-test.tex - RELOC/tex/latex/base/utf8.def - RELOC/tex/latex/base/utf8enc.dfu - RELOC/tex/latex/base/utf8test.tex - RELOC/tex/latex/base/x2enc.dfu -docfiles size=3629 - RELOC/doc/latex/base/README - RELOC/doc/latex/base/alltt.pdf - RELOC/doc/latex/base/bugs.txt - RELOC/doc/latex/base/cfgguide.pdf - RELOC/doc/latex/base/cfgguide.tex - RELOC/doc/latex/base/changes-doc.txt - RELOC/doc/latex/base/changes.old.txt - RELOC/doc/latex/base/changes.txt - RELOC/doc/latex/base/classes.pdf - RELOC/doc/latex/base/clsguide.pdf - RELOC/doc/latex/base/clsguide.tex - RELOC/doc/latex/base/cmfonts.pdf - RELOC/doc/latex/base/cyrguide.pdf - RELOC/doc/latex/base/cyrguide.tex - RELOC/doc/latex/base/doc.pdf - RELOC/doc/latex/base/docstrip.pdf - RELOC/doc/latex/base/encguide.pdf - RELOC/doc/latex/base/encguide.tex - RELOC/doc/latex/base/exscale.pdf - RELOC/doc/latex/base/fix-cm.pdf - RELOC/doc/latex/base/fntguide.pdf - RELOC/doc/latex/base/fntguide.tex - RELOC/doc/latex/base/graphpap.pdf - RELOC/doc/latex/base/ifthen.pdf - RELOC/doc/latex/base/inputenc.pdf - RELOC/doc/latex/base/latexchanges.pdf - RELOC/doc/latex/base/latexchanges.tex - RELOC/doc/latex/base/latexrelease.pdf - RELOC/doc/latex/base/latexsym.pdf - RELOC/doc/latex/base/lb2.err - RELOC/doc/latex/base/lb2.pdf - RELOC/doc/latex/base/legal.txt - RELOC/doc/latex/base/letter.pdf - RELOC/doc/latex/base/lgc2.err - RELOC/doc/latex/base/lgc2.pdf - RELOC/doc/latex/base/lppl-1-0.txt - RELOC/doc/latex/base/lppl-1-1.txt - RELOC/doc/latex/base/lppl-1-2.txt - RELOC/doc/latex/base/lppl.pdf - RELOC/doc/latex/base/lppl.txt - RELOC/doc/latex/base/ltnews.pdf - RELOC/doc/latex/base/ltnews.tex - RELOC/doc/latex/base/ltunicode.pdf - RELOC/doc/latex/base/ltx3info.pdf - RELOC/doc/latex/base/ltx3info.tex - RELOC/doc/latex/base/ltxdoc.pdf - RELOC/doc/latex/base/makeindx.pdf - RELOC/doc/latex/base/manifest.txt - RELOC/doc/latex/base/manual.err - RELOC/doc/latex/base/manual.pdf - RELOC/doc/latex/base/modguide.pdf - RELOC/doc/latex/base/modguide.tex - RELOC/doc/latex/base/nfssfont.pdf - RELOC/doc/latex/base/patches.txt - RELOC/doc/latex/base/proc.pdf - RELOC/doc/latex/base/slides.pdf - RELOC/doc/latex/base/slifonts.pdf - RELOC/doc/latex/base/source2e.pdf - RELOC/doc/latex/base/syntonly.pdf - RELOC/doc/latex/base/tex2.txt - RELOC/doc/latex/base/texpert.txt - RELOC/doc/latex/base/tlc2.err - RELOC/doc/latex/base/tlc2.pdf - RELOC/doc/latex/base/usrguide.pdf - RELOC/doc/latex/base/usrguide.tex - RELOC/doc/latex/base/utf8ienc.pdf - RELOC/doc/latex/base/webcomp.err - RELOC/doc/latex/base/webcomp.pdf -srcfiles size=704 - RELOC/source/latex/base/alltt.dtx - RELOC/source/latex/base/alltt.ins - RELOC/source/latex/base/classes.dtx - RELOC/source/latex/base/classes.ins - RELOC/source/latex/base/cmextra.ins - RELOC/source/latex/base/cmfonts.fdd - RELOC/source/latex/base/cmfonts.ins - RELOC/source/latex/base/doc.dtx - RELOC/source/latex/base/docstrip.dtx - RELOC/source/latex/base/docstrip.ins - RELOC/source/latex/base/ec.ins - RELOC/source/latex/base/exscale.dtx - RELOC/source/latex/base/exscale.ins - RELOC/source/latex/base/fix-cm.dtx - RELOC/source/latex/base/fix-cm.ins - RELOC/source/latex/base/fontdef.dtx - RELOC/source/latex/base/format.ins - RELOC/source/latex/base/graphpap.dtx - RELOC/source/latex/base/graphpap.ins - RELOC/source/latex/base/ifthen.dtx - RELOC/source/latex/base/ifthen.ins - RELOC/source/latex/base/inputenc.dtx - RELOC/source/latex/base/inputenc.ins - RELOC/source/latex/base/latex209.dtx - RELOC/source/latex/base/latex209.ins - RELOC/source/latex/base/latexrelease.dtx - RELOC/source/latex/base/latexrelease.ins - RELOC/source/latex/base/latexsym.dtx - RELOC/source/latex/base/latexsym.ins - RELOC/source/latex/base/letter.dtx - RELOC/source/latex/base/letter.ins - RELOC/source/latex/base/ltalloc.dtx - RELOC/source/latex/base/ltbibl.dtx - RELOC/source/latex/base/ltboxes.dtx - RELOC/source/latex/base/ltclass.dtx - RELOC/source/latex/base/ltcntrl.dtx - RELOC/source/latex/base/ltcounts.dtx - RELOC/source/latex/base/ltdefns.dtx - RELOC/source/latex/base/ltdirchk.dtx - RELOC/source/latex/base/lterror.dtx - RELOC/source/latex/base/ltfiles.dtx - RELOC/source/latex/base/ltfinal.dtx - RELOC/source/latex/base/ltfloat.dtx - RELOC/source/latex/base/ltfntcmd.dtx - RELOC/source/latex/base/ltfssbas.dtx - RELOC/source/latex/base/ltfsscmp.dtx - RELOC/source/latex/base/ltfssdcl.dtx - RELOC/source/latex/base/ltfssini.dtx - RELOC/source/latex/base/ltfsstrc.dtx - RELOC/source/latex/base/lthyphen.dtx - RELOC/source/latex/base/ltidxglo.dtx - RELOC/source/latex/base/ltlength.dtx - RELOC/source/latex/base/ltlists.dtx - RELOC/source/latex/base/ltlogos.dtx - RELOC/source/latex/base/ltmath.dtx - RELOC/source/latex/base/ltmiscen.dtx - RELOC/source/latex/base/ltnews01.tex - RELOC/source/latex/base/ltnews02.tex - RELOC/source/latex/base/ltnews03.tex - RELOC/source/latex/base/ltnews04.tex - RELOC/source/latex/base/ltnews05.tex - RELOC/source/latex/base/ltnews06.tex - RELOC/source/latex/base/ltnews07.tex - RELOC/source/latex/base/ltnews08.tex - RELOC/source/latex/base/ltnews09.tex - RELOC/source/latex/base/ltnews10.tex - RELOC/source/latex/base/ltnews11.tex - RELOC/source/latex/base/ltnews12.tex - RELOC/source/latex/base/ltnews13.tex - RELOC/source/latex/base/ltnews14.tex - RELOC/source/latex/base/ltnews15.tex - RELOC/source/latex/base/ltnews16.tex - RELOC/source/latex/base/ltnews17.tex - RELOC/source/latex/base/ltnews18.tex - RELOC/source/latex/base/ltnews19.tex - RELOC/source/latex/base/ltnews20.tex - RELOC/source/latex/base/ltnews21.tex - RELOC/source/latex/base/ltnews22.tex - RELOC/source/latex/base/ltoutenc.dtx - RELOC/source/latex/base/ltoutenc.ins - RELOC/source/latex/base/ltoutput.dtx - RELOC/source/latex/base/ltpage.dtx - RELOC/source/latex/base/ltpageno.dtx - RELOC/source/latex/base/ltpar.dtx - RELOC/source/latex/base/ltpictur.dtx - RELOC/source/latex/base/ltplain.dtx - RELOC/source/latex/base/ltsect.dtx - RELOC/source/latex/base/ltspace.dtx - RELOC/source/latex/base/lttab.dtx - RELOC/source/latex/base/ltthm.dtx - RELOC/source/latex/base/ltunicode.dtx - RELOC/source/latex/base/ltvers.dtx - RELOC/source/latex/base/ltxdoc.dtx - RELOC/source/latex/base/ltxref.dtx - RELOC/source/latex/base/makeindx.dtx - RELOC/source/latex/base/makeindx.ins - RELOC/source/latex/base/newdc.ins - RELOC/source/latex/base/newlfont.dtx - RELOC/source/latex/base/nfssfont.dtx - RELOC/source/latex/base/nfssfont.ins - RELOC/source/latex/base/olddc.ins - RELOC/source/latex/base/oldlfont.dtx - RELOC/source/latex/base/preload.dtx - RELOC/source/latex/base/proc.dtx - RELOC/source/latex/base/proc.ins - RELOC/source/latex/base/slides.dtx - RELOC/source/latex/base/slides.ins - RELOC/source/latex/base/slifonts.fdd - RELOC/source/latex/base/syntonly.dtx - RELOC/source/latex/base/syntonly.ins - RELOC/source/latex/base/unpack.ins - RELOC/source/latex/base/utf8ienc.dtx -catalogue-date 2015-07-02 19:23:11 +0200 -catalogue-license lppl1.3 -catalogue-topics format +catalogue-topics distribution + +name latex-uni8 +category Package +revision 49729 +shortdesc Universal inputenc, fontenc, and babel for pdfLaTeX and LuaLaTeX +relocated 1 +longdesc This package provides a LaTeX style file which makes it easy to +longdesc use input encoding (UTF-8 by default, can be changed), +longdesc fontspec.sty (optional), font encoding (T1 if fontspec.sty is +longdesc not used), babel (English language by default), hyphenation, +longdesc underline (with soul.sty), default text and math fonts +longdesc (Computer Modern or Times), and paper sizes correctly with both +longdesc pdfLaTeX and LuaLaTeX. +containersize 4112 +containerchecksum 1e98eb60547932eb218f30cc713b94e8c7ee5861e66cc600b01f577a37e318a5b440b65c2aef1c770ef94bb4c4cf86d5d1636943de60f78049d2286a92ba5d81 +doccontainersize 3380 +doccontainerchecksum 201de55826ce4911153f079e1107e2f4d2399d3d3cca95bc669cd958d09839ed7de778d644502cb6af8429818834027c9d3f3255fe58f95c985d1a96e4682f22 +docfiles size=16 + RELOC/doc/latex/latex-uni8/README.txt details="Readme" + RELOC/doc/latex/latex-uni8/example_fl.tex + RELOC/doc/latex/latex-uni8/example_flr.tex + RELOC/doc/latex/latex-uni8/example_fm.tex + RELOC/doc/latex/latex-uni8/example_fmr.tex + RELOC/doc/latex/latex-uni8/example_fu.tex + RELOC/doc/latex/latex-uni8/example_fur.tex + RELOC/doc/latex/latex-uni8/example_fut.tex + RELOC/doc/latex/latex-uni8/example_futr.tex + RELOC/doc/latex/latex-uni8/example_pl.tex + RELOC/doc/latex/latex-uni8/example_plr.tex + RELOC/doc/latex/latex-uni8/example_pm.tex + RELOC/doc/latex/latex-uni8/example_pmr.tex + RELOC/doc/latex/latex-uni8/example_pu.tex + RELOC/doc/latex/latex-uni8/example_pur.tex +runfiles size=3 + RELOC/tex/latex/latex-uni8/uni8.sty +catalogue-contact-repository https://github.com/pts/latex-uni8 +catalogue-contact-support https://github.com/pts/latex-uni8/issues +catalogue-ctan /macros/latex/contrib/latex-uni8 +catalogue-date 2019-01-20 05:31:27 +0100 +catalogue-license lppl +catalogue-topics inputenc fontenc unicode misc-support +catalogue-version 0.03 name latex-veryshortguide category Package -revision 29803 -shortdesc The Very Short Guide to LaTeX. +revision 41844 +shortdesc The Very Short Guide to LaTeX relocated 1 longdesc This is a 4-page reminder of what LaTeX does. It is designed longdesc for printing on A4 paper, double-sided, and folding once to A5. -longdesc (Such an 'imposed' version of the document is provided in the -longdesc distribution, as PDF.) -docfiles size=473 - RELOC/doc/latex/latex-veryshortguide/README - RELOC/doc/latex/latex-veryshortguide/build - RELOC/doc/latex/latex-veryshortguide/index.html - RELOC/doc/latex/latex-veryshortguide/menno-a.eps - RELOC/doc/latex/latex-veryshortguide/menno-a.jpg - RELOC/doc/latex/latex-veryshortguide/veryshortguide-imposed.pdf - RELOC/doc/latex/latex-veryshortguide/veryshortguide.pdf +longdesc Such an 'imposed' version of the document is provided in the +longdesc distribution, as PDF. An analogous version is provided in +longdesc 'legal' format. +containersize 576 +containerchecksum 239b6ae896eb109fb61aaa96149e3b3962fab250a4e017baf81da0ba7836837c1920456eec8fd20999535c96fe415115a621e73e639cbebf64cc2b14989c93cb +doccontainersize 975444 +doccontainerchecksum aa58ce07f56dd819b6a3b618a518384547350a4582828020f5b45752c1dbb88d5f36c5b5bb831129352489bba8f5c19f89d38c99585da9253f01311ea63d3232 +docfiles size=564 + RELOC/doc/latex/latex-veryshortguide/MANIFEST + RELOC/doc/latex/latex-veryshortguide/README.md details="Readme" + RELOC/doc/latex/latex-veryshortguide/menno-a.png + RELOC/doc/latex/latex-veryshortguide/veryshortguide-A4-imposed.pdf details="The document itself, imposed for 1 sheet of A4 paper" + RELOC/doc/latex/latex-veryshortguide/veryshortguide-Legal-imposed.pdf details="The document itself, imposed for 1 sheet of legal paper" + RELOC/doc/latex/latex-veryshortguide/veryshortguide.bib + RELOC/doc/latex/latex-veryshortguide/veryshortguide.pdf details="The document itself" RELOC/doc/latex/latex-veryshortguide/veryshortguide.tex - RELOC/doc/latex/latex-veryshortguide/vsg-1.jpg - RELOC/doc/latex/latex-veryshortguide/vsg-2.jpg - RELOC/doc/latex/latex-veryshortguide/vsg-3.jpg - RELOC/doc/latex/latex-veryshortguide/vsg-4.jpg + RELOC/doc/latex/latex-veryshortguide/vsg.cls + RELOC/doc/latex/latex-veryshortguide/vsg.dtx + RELOC/doc/latex/latex-veryshortguide/vsg.ins + RELOC/doc/latex/latex-veryshortguide/vsg.pdf +catalogue-also latex-brochure +catalogue-contact-home http://latex.silmaril.ie/veryshortguide/ catalogue-ctan /info/latex-veryshortguide -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics tut-latex + +name latex-via-exemplos +category Package +revision 48038 +shortdesc A LaTeX course written in brazilian portuguese language +relocated 1 +longdesc This is a LaTeX2e course written in brazilian portuguese +longdesc language. +containersize 428 +containerchecksum b97ef8694d0b414cd80f4ee140c6e64f9277f4bbe9124685df5859c09cf458fedc279f84973ee94a93ce801cb26879f35cf2b9a415d473ec45926294c76822ef +doccontainersize 1678160 +doccontainerchecksum d6646fb8671a13a9229176a30c96ea5237c4e386c49afff9dcb9ce57c8753930adbd5b5c0082a0e469dfa127788e1052ccb305141bd3261a8144c18fa8f1c7ea +docfiles size=567 + RELOC/doc/latex/latex-via-exemplos/README.md details="Readme" + RELOC/doc/latex/latex-via-exemplos/changelog.txt + RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos-certificado.tex + RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos-fig.tex + RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos-lista-nomes.csv + RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos-oneside.pdf details="The document itself (oneside)" + RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos-oneside.tex + RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos-poster.tex + RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos-slides.tex + RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos.bib + RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos.pdf details="The document itself (twoside)" + RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos.tex + RELOC/doc/latex/latex-via-exemplos/makedoc.sh +catalogue-also lshort-portuguese-br +catalogue-ctan /info/latex-via-exemplos +catalogue-date 2018-06-17 12:37:18 +0200 +catalogue-license gpl2+ +catalogue-topics portuguese-doc tut-latex +catalogue-version 0.5.2 name latex-web-companion category Package revision 29349 catalogue lwc-examples -shortdesc Examples from The LaTeX Web Companion. +shortdesc Examples from The LaTeX Web Companion relocated 1 longdesc The source of the examples printed in the book, together with longdesc necessary supporting files. +containersize 432 +containerchecksum 5f45c7f74a0e97b938009ada69146875e141edd556165b62185553b0ce5f590d5ca6f93a875dae1c546ebc788156d5cfc69c46535000adfe6933abe79a2fb06d +doccontainersize 272788 +doccontainerchecksum a972860f65d763c6fb45e9726e5dd7b8234509b90634f45b8b25e090da92d0ac577bf8b33ea7b0a0f91e4e5639bf62c07086dc36708ae697c1e16e644acc83f0 docfiles size=372 RELOC/doc/latex/latex-web-companion/apa/README.apa RELOC/doc/latex/latex-web-companion/apa/latexexa-raw.xml @@ -94255,13 +149323,2045 @@ docfiles size=372 RELOC/doc/latex/latex-web-companion/ch7/xsl.xml RELOC/doc/latex/latex-web-companion/ch7/xslexa1.xsl catalogue-ctan /info/examples/lwc -catalogue-date 2012-07-10 08:38:43 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics book-ex + +name latex2e-help-texinfo +category Package +revision 48918 +shortdesc Unofficial reference manual covering LaTeX2e +relocated 1 +longdesc The manual is provided as Texinfo source (which was originally +longdesc derived from the VMS help file in the DECUS TeX distribution of +longdesc 1990, with many subsequent changes). This is a collaborative +longdesc development, and details of getting involved are to be found on +longdesc the package home page. A French translation is available as a +longdesc separate package. All the other formats in the distribution are +longdesc derived from the Texinfo source, as usual. +containersize 728 +containerchecksum dabdf3a20bcc6740b7feea1c444b2423dc54a97d0118411d44acfaca31259782eb49bf68b144ab553a9f865ec47557bcd47503b1f1dcbb69ae3302d94bdce715 +doccontainersize 1725896 +doccontainerchecksum 0a3cd8f22e15709b056d6ace9fe0c8d348ac8bc808fe8cc98498b3d14747eba9f6e9838375b0ab8226694ac8dd45027c62ffc1949c3e1a42f9f182f346df0123 +docfiles size=1700 + RELOC/doc/info/latex2e.info + RELOC/doc/latex/latex2e-help-texinfo/ChangeLog + RELOC/doc/latex/latex2e-help-texinfo/Makefile + RELOC/doc/latex/latex2e-help-texinfo/NEWS + RELOC/doc/latex/latex2e-help-texinfo/README details="Package Readme" + RELOC/doc/latex/latex2e-help-texinfo/aspell.en.pws + RELOC/doc/latex/latex2e-help-texinfo/common.texi + RELOC/doc/latex/latex2e-help-texinfo/graphics/README details="Package Readme" + RELOC/doc/latex/latex2e-help-texinfo/graphics/asy/list.asy + RELOC/doc/latex/latex2e-help-texinfo/latex2e-figures/list.eps + RELOC/doc/latex/latex2e-help-texinfo/latex2e-figures/list.pdf + RELOC/doc/latex/latex2e-help-texinfo/latex2e-figures/list.png + RELOC/doc/latex/latex2e-help-texinfo/latex2e-figures/list.txt + RELOC/doc/latex/latex2e-help-texinfo/latex2e.css + RELOC/doc/latex/latex2e-help-texinfo/latex2e.dbk + RELOC/doc/latex/latex2e-help-texinfo/latex2e.html details="HTML conversion of the source (English)" + RELOC/doc/latex/latex2e-help-texinfo/latex2e.pdf details="PDF conversion of the source (English)" + RELOC/doc/latex/latex2e-help-texinfo/latex2e.texi + RELOC/doc/latex/latex2e-help-texinfo/latex2e.txt + RELOC/doc/latex/latex2e-help-texinfo/latex2e.xml + RELOC/doc/latex/latex2e-help-texinfo/ltx-help.el +catalogue-contact-bugs https://puszcza.gnu.org.ua/bugs/?group=latexrefman +catalogue-contact-home http://puszcza.gnu.org.ua/projects/latexrefman/ +catalogue-contact-support http://lists.tug.org/latexrefman +catalogue-ctan /info/latex2e-help-texinfo +catalogue-date 2018-10-16 05:44:44 +0200 +catalogue-license pd +catalogue-topics ref-latex documentation spanish-doc + +name latex2e-help-texinfo-fr +category Package +revision 44997 +shortdesc A French translation of "latex2e-help-texinfo" +relocated 1 +longdesc This package provides a complete French translation of +longdesc latex2e-help-texinfo. +containersize 472 +containerchecksum 6023d1aaf419519fb35f916be296e9681dd2e2912b35d92da5b59d5ab279154eb71813f49b159c01bad045246a293c8e6552d2a469cb69916d169ac1b60d9daa +doccontainersize 1178656 +doccontainerchecksum bb1ad23b5a46e00193b4e807aecd0a439d1d5f7c15736e748b002168441b5c7fccbcd8f7f6361a1c5fa3175344c9aa1c0ec77e20be450e653a0354a87643b9eb +docfiles size=1241 + RELOC/doc/info/latex2e-fr.info + RELOC/doc/latex/latex2e-help-texinfo-fr/ChangeLog + RELOC/doc/latex/latex2e-help-texinfo-fr/Makefile + RELOC/doc/latex/latex2e-help-texinfo-fr/NEWS-fr + RELOC/doc/latex/latex2e-help-texinfo-fr/README details="Readme" + RELOC/doc/latex/latex2e-help-texinfo-fr/aspell.fr.pws + RELOC/doc/latex/latex2e-help-texinfo-fr/common.texi + RELOC/doc/latex/latex2e-help-texinfo-fr/latex2e-fr.dbk + RELOC/doc/latex/latex2e-help-texinfo-fr/latex2e-fr.html details="HTML conversion of the source (French)" language="fr" + RELOC/doc/latex/latex2e-help-texinfo-fr/latex2e-fr.pdf details="PDF conversion of the source (French)" language="fr" + RELOC/doc/latex/latex2e-help-texinfo-fr/latex2e-fr.texi + RELOC/doc/latex/latex2e-help-texinfo-fr/latex2e-fr.txt + RELOC/doc/latex/latex2e-help-texinfo-fr/latex2e-fr.xml + RELOC/doc/latex/latex2e-help-texinfo-fr/ltx-help.el +catalogue-contact-bugs http://lists.tug.org/latexrefman +catalogue-contact-home https://puszcza.gnu.org.ua/software/latexrefman/ +catalogue-ctan /info/latex2e-help-texinfo-fr +catalogue-date 2017-08-09 19:37:09 +0200 +catalogue-license pd +catalogue-topics ref-latex documentation french-doc + +name latex2e-help-texinfo-spanish +category Package +revision 49023 +catalogue latex2e-help-texinfo +shortdesc Unofficial reference manual covering LaTeX2e +relocated 1 +longdesc The manual is provided as Texinfo source (which was originally +longdesc derived from the VMS help file in the DECUS TeX distribution of +longdesc 1990, with many subsequent changes). This is a collaborative +longdesc development, and details of getting involved are to be found on +longdesc the package home page. A French translation is available as a +longdesc separate package. All the other formats in the distribution are +longdesc derived from the Texinfo source, as usual. +containersize 736 +containerchecksum 65faa42d1ee01399e1f8c34cdcd1a5d1ce6841f144e7b582aa4c3586ad1426d879c60427944a9524f16d48c8340028f1929dddc04f9ca4f8e634ffe29eeebf72 +doccontainersize 873268 +doccontainerchecksum b6f612ef87c52c9b67c65ed79f8b2e4b7e089baff3da617951288b57124d63f53acd4f48edebbcd7f27855b3bfff14dd00aa5a2c277b4f89b8f49426abb49c6b +docfiles size=758 + RELOC/doc/info/latex2e-es.info + RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.dbk + RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.html details="HTML conversion of the source (Spanish)" language="es" + RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.pdf + RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.texi + RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.txt + RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.xml +catalogue-contact-bugs https://puszcza.gnu.org.ua/bugs/?group=latexrefman +catalogue-contact-home http://puszcza.gnu.org.ua/projects/latexrefman/ +catalogue-contact-support http://lists.tug.org/latexrefman +catalogue-ctan /info/latex2e-help-texinfo +catalogue-date 2018-10-16 05:44:44 +0200 +catalogue-license pd +catalogue-topics ref-latex documentation spanish-doc + +name latex2man +category Package +revision 49249 +shortdesc Translate LaTeX-based manual pages into Unix man format +longdesc Latex2man is a tool to translate UNIX manual pages written with +longdesc LaTeX into the troff format understood by the UNIX man(1) +longdesc command. Alternatively HTML, TexInfo, or LaTeX code can be +longdesc produced too. Output of parts of the text may be supressed +longdesc using the conditional text feature (for this, LaTeX generation +longdesc may be used). There is a LaTeX package (latex2man.sty) for +longdesc writing the man page and a Perl script (latex2man) that does +longdesc the actual translation. +depend latex2man.ARCH +containersize 14088 +containerchecksum 9ce1870958d7de7625fe73dfb735488d2512b048c8c06fed3f87255db0914080675017d24c88a97ec71ddb9cfe6f5769ea378f099d8787e447837a1ff5167436 +doccontainersize 369336 +doccontainerchecksum 214685e6982c7a9c694d74a73d37c58f3947d7304637d2ed44fc616cece6026e5d02763f26e280ab21212d18a962c31b4ac5315fa840f10bf1efcfb782f4dd2a +docfiles size=146 + texmf-dist/doc/info/latex2man.info + texmf-dist/doc/man/man1/latex2man.1 + texmf-dist/doc/man/man1/latex2man.man1.pdf + texmf-dist/doc/support/latex2man/CHANGES + texmf-dist/doc/support/latex2man/INSTALL + texmf-dist/doc/support/latex2man/Makefile + texmf-dist/doc/support/latex2man/README details="Readme" + texmf-dist/doc/support/latex2man/THIS-IS-VERSION-1.29 + texmf-dist/doc/support/latex2man/latex2man-CHANGES.html + texmf-dist/doc/support/latex2man/latex2man.css + texmf-dist/doc/support/latex2man/latex2man.html details="Package documentation (HTML)" + texmf-dist/doc/support/latex2man/latex2man.inc + texmf-dist/doc/support/latex2man/latex2man.pdf details="Package documentation (PDF)" + texmf-dist/doc/support/latex2man/latex2man.tex + texmf-dist/doc/support/latex2man/latex2man.texi + texmf-dist/doc/support/latex2man/latex2man.trans + texmf-dist/doc/support/latex2man/latex2man.txt +runfiles size=17 + texmf-dist/scripts/latex2man/latex2man + texmf-dist/tex/latex/latex2man/latex2man.cfg + texmf-dist/tex/latex/latex2man/latex2man.sty +catalogue-contact-home http://www.informatik-vollmer.de/software/latex2man.php +catalogue-ctan /support/latex2man +catalogue-date 2018-11-25 17:55:57 +0100 +catalogue-license lppl1 +catalogue-topics cvt-other +catalogue-version 1.29 + +name latex2man.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of latex2man +containersize 340 +containerchecksum 8bcbf3dc3e171ff2a322f7cfa99f46bfdfbf78d99700e09cde1cb871bab2b99bdb4433322fcfa0b3e95afb36176c5f73a0e81ed4ec6e30a08bf13674988ca42a +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/latex2man + +name latex2man.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of latex2man +containersize 340 +containerchecksum acac883579a058c814642a87c62446c129b8e122afbc30b4b1873e1b96722deb75045a95415dba40bb3bb35939a2ede3680c973a27b53490c62c4212e6a58838 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/latex2man + +name latex2man.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of latex2man +containersize 340 +containerchecksum 8af7e9322c78713096d7bc31ca93ca692eda7f60164ed2d284ed7d08007261c04c595d8f6b6c222da05214c2e945f4ede1d8cf81c38862a5321a8748d4063e52 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/latex2man + +name latex2man.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of latex2man +containersize 340 +containerchecksum d70dbf4a9a31a1d36dc1f31cca6162206b0ebd033f615cf1dcf4fb1f1c9fcdd0c06155c753924d59d777376a6a52f3424ce228ee47cea507edb5885c734bbea4 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/latex2man + +name latex2man.i386-cygwin +category Package +revision 13717 +shortdesc i386-cygwin files of latex2man +containersize 336 +containerchecksum e91746e3b185d2dfc04b25adcc7ec3ef6bc1aa485abab5ed139927ac372ad8cd9705912915bc494030b0b2fd14deba207b96c65e12af9b6800276959797eca62 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/latex2man + +name latex2man.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of latex2man +containersize 340 +containerchecksum 6f00dd032eb3a93e243846652a84697821a717b9dbf94d22334fd9995acaff9218d9befab64e85c9fe74b3f8b06200ec79fbaf78758245f0460704b4ea19a31c +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/latex2man + +name latex2man.i386-linux +category Package +revision 13663 +shortdesc i386-linux files of latex2man +containersize 340 +containerchecksum be4ff3e4917489c368278817c886d15712c17f95aa3a1fce3a4d00c82e8888d86fd34f59fe6e24f7268a5aa9695b591cc1ce849bd257e9aca27ce915665b1dd7 +binfiles arch=i386-linux size=1 + bin/i386-linux/latex2man + +name latex2man.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of latex2man +containersize 340 +containerchecksum 72ffbdef52f47f3a5c2095f74fa737e9e2f584c01bef2e45ce0b7994a37cc2e164fc301e340f22f79d811a6d5b70d0b3c24b22118ee20a96b8ff6b0005d6ddfe +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/latex2man + +name latex2man.i386-solaris +category Package +revision 13898 +shortdesc i386-solaris files of latex2man +containersize 340 +containerchecksum ef7b3d1022eebd31274e51d767416f0b2fa44d5f7d6fa13de6b3ad814b3318335375c2b6895f9b9d9dc505466f832de74b3c07d808bf4ddfb25774ea574b96a5 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/latex2man + +name latex2man.win32 +category Package +revision 15404 +shortdesc win32 files of latex2man +containersize 684 +containerchecksum 1cafd038a94c11980b17f6828e4bcf454fa14457391a017c574476d403405f82192a075a4f0a71db5a756349028b2dba75d142efaa872815867d9e3d42ddafa4 +binfiles arch=win32 size=1 + bin/win32/latex2man.exe + +name latex2man.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of latex2man +containersize 340 +containerchecksum 1de55422d1e375c1da424b12d538ba97e504d309fe2914412e5a0782029a6fbac78a72e8a752ebbc3eab3bffdb378c84114a98165427278416818172b2372ff8 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/latex2man + +name latex2man.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of latex2man +containersize 340 +containerchecksum f41b73bbfd56ff0512e6e12f408c1030e2f3ea4e655021baabf5ec5d92116014f84c287e04c7679b737f50431e9bad696c829f17bdf1a70ceab5403dc84369c7 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/latex2man + +name latex2man.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of latex2man +containersize 348 +containerchecksum 41ead27fc16025fce6ab463780524ad1facc78fbcaa58aceb44df8f3d3715a9ea79fe737b825ad6738569bc5fc6710bb3950b7321d23e236c1de7c6b960f1719 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/latex2man + +name latex2man.x86_64-linux +category Package +revision 13777 +shortdesc x86_64-linux files of latex2man +containersize 340 +containerchecksum a3442935d1017436450bdfd166968fee6df1343ead96c24a952d46133f8a69390e8934d1f2f3cab22b30e7cf61d0f09d7c2631f69557183e2dd2b04a078cf098 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/latex2man + +name latex2man.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of latex2man +containersize 344 +containerchecksum c2713d8a140923fff24e3547bd976ca73c191deb5b3c0c2c6f7641c05f235411afe39dc713c5cb2168d69d8ee1ca12b948fdecbb93fbd9afb31809b8b12f89f1 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/latex2man + +name latex2man.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of latex2man +containersize 340 +containerchecksum 977d379c2cde1dd46ae65a0ecc87d6c1f40a4d37f093ae749de2d8df36169a85cc091b7b3dea192d29bc4cce57f9e4771f5e999a31833725491b6b89f9609c56 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/latex2man + +name latex2nemeth +category Package +revision 45934 +shortdesc Convert LaTeX source to Braille with math in Nemeth +longdesc After many failed attempts to transcribe real math notes and +longdesc books to Braille/Nemeth in order to deal with a real situation +longdesc (blind student in Math Dept.), we decided to develop a new +longdesc program that follows a direct, from LaTeX to Braille/Nemeth, +longdesc approach. Other attempts (such as tex4ht) failed because they +longdesc all needed an extra step to go from xml to Braille, and this +longdesc step (say, with liblouis) produced incomprehensible output +longdesc (liblouis focuses in Office apps). Our main target was the +longdesc Greek language which is only Braille level 1, but English at +longdesc level 1 is supported as well. Simple pictures in PSTricks are +longdesc also supported in order to produce tactile graphics with +longdesc specialized equipment. Note that embossing will need +longdesc LibreOffice and odt2braille as this project does not deal with +longdesc embossers' drivers. +depend latex2nemeth.ARCH +containersize 7113440 +containerchecksum ee82b11dfd3ede3b926a034ce8a7f46ae2bdd065f648fc0375a62392a8be605e391c64726eea03efc439b7a01fcd3cecfd70106335c72927e45c70ef0c8aa48f +doccontainersize 26732 +doccontainerchecksum a674eac6b80811890433c613f7ec9c6fc4667791c5b4692606e88d3e38ee59a3b68951e5f19b26d2b9f9de3b79002d17f4c539fdcfce37b82c3dfea5cb811086 +docfiles size=42 + texmf-dist/doc/support/latex2nemeth/README details="Readme" + texmf-dist/doc/support/latex2nemeth/encodings/polytonic.json + texmf-dist/doc/support/latex2nemeth/examples/mathpics.tex + texmf-dist/doc/support/latex2nemeth/examples/mathtest.tex + texmf-dist/doc/support/latex2nemeth/examples/nemeth.json + texmf-dist/doc/support/latex2nemeth/gpl-3.0.txt +runfiles size=1945 + texmf-dist/scripts/latex2nemeth/latex2nemeth + texmf-dist/scripts/latex2nemeth/latex2nemeth-v1.0.1.jar +catalogue-contact-home http://myria.math.aegean.gr/labs/dt/braille/index-en.html +catalogue-ctan /support/latex2nemeth +catalogue-date 2017-11-28 11:33:20 +0100 +catalogue-license gpl3 +catalogue-topics cvt-other maths accessible +catalogue-version 1.0.1 + +name latex2nemeth.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of latex2nemeth +containersize 344 +containerchecksum 6ae7620a7ddd20dd9eaf175b879db5a22274881327e4185092d5260fcb17d1b9e814cafbcbcac1b0166b45151110904443de06005bc439892c6bc1740972e937 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/latex2nemeth + +name latex2nemeth.amd64-freebsd +category Package +revision 42300 +shortdesc amd64-freebsd files of latex2nemeth +containersize 344 +containerchecksum 38d6b5f1cc8ce766fc8de1441bff0b4bb00dbd48b5236bc2fcbc569e4677c46f6ff55dddc368043a0094d85f080f0cdf363e6f60d6a5bb1f0ccf2bf2c99ef6fa +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/latex2nemeth + +name latex2nemeth.amd64-netbsd +category Package +revision 42300 +shortdesc amd64-netbsd files of latex2nemeth +containersize 344 +containerchecksum 294b49ba6c18d7d53d5cfb8da1969889358caa57839b1460bb18a2de085c33675a9da930ddc21b73eeed3bd70c3686d0dfe1e35c46826d26b9ae03ec7d327a9a +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/latex2nemeth + +name latex2nemeth.armhf-linux +category Package +revision 42300 +shortdesc armhf-linux files of latex2nemeth +containersize 340 +containerchecksum f76abf0ab25b94f918604d5e2fbd52b651ee05a73d03a8c8a8cc5eb65746942f8ced3f20cb5d8b39fcf454ca406f272a496baf1daa16441af9ecfde3bab5edbb +binfiles arch=armhf-linux size=1 + bin/armhf-linux/latex2nemeth + +name latex2nemeth.i386-cygwin +category Package +revision 42300 +shortdesc i386-cygwin files of latex2nemeth +containersize 340 +containerchecksum ac144ec03445736c785b2a652b46a8c95033781e8989e780ba4c732eba934141b09866a5b51338147c89ffef8340c594d2f9060223f24d700d954ba94b63a025 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/latex2nemeth + +name latex2nemeth.i386-freebsd +category Package +revision 42300 +shortdesc i386-freebsd files of latex2nemeth +containersize 344 +containerchecksum 2d31d8de13e0a52f80c42c95f72166ec8580020852f482ac38678ea621b6330c01d0ec9a702e82370ba6f8e3025edc0ccfbc43552846747b4f37ce9df453b7e9 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/latex2nemeth + +name latex2nemeth.i386-linux +category Package +revision 42300 +shortdesc i386-linux files of latex2nemeth +containersize 344 +containerchecksum d6f3876cc46169500342c55918548f6fe348f642b800de018363168c419c5ff882b8c3a45cc0ed6600f084c18bc1533ee8878229b5cd2b5d0673d802b0e39226 +binfiles arch=i386-linux size=1 + bin/i386-linux/latex2nemeth + +name latex2nemeth.i386-netbsd +category Package +revision 42300 +shortdesc i386-netbsd files of latex2nemeth +containersize 344 +containerchecksum 530972fadfd2ffee63a82b6f7fbd8c82c43eb156af47d7b8b1451866384675a09ccbcd4fd2f36949ee20eedafaffa4fe74c40546ea2862aedec560afc7af1632 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/latex2nemeth + +name latex2nemeth.i386-solaris +category Package +revision 42300 +shortdesc i386-solaris files of latex2nemeth +containersize 340 +containerchecksum 714617caf7e5a6313581670e7e6b1ecdda02ce25f42e9416df3650620c366a2c53bd1eeb1134a40e9f4b6ef35be43079e0df639d32c0c5162271c2b35a9bfc81 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/latex2nemeth + +name latex2nemeth.win32 +category Package +revision 42300 +shortdesc win32 files of latex2nemeth +containersize 688 +containerchecksum 742ca9f2d901077a554c4114c6fca696bc3b677dd8d5b579a9c4e4537cef99de1b6a3a801c8cb3e15764d35ad3592aae81a0ed5ef19bb1531920ff542846ce2c +binfiles arch=win32 size=1 + bin/win32/latex2nemeth.exe + +name latex2nemeth.x86_64-cygwin +category Package +revision 42300 +shortdesc x86_64-cygwin files of latex2nemeth +containersize 344 +containerchecksum 4a2155bca9cd2be553d23e268f07484acf28950e0c582c6e91210609d8b40c678aa72bf06a6cb9383b310f3a13ed87cf23ee2e6db3aeb76f2e81f2e4d4a1e720 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/latex2nemeth + +name latex2nemeth.x86_64-darwin +category Package +revision 42300 +shortdesc x86_64-darwin files of latex2nemeth +containersize 344 +containerchecksum cfc6f1688b241034c8a0f1f406fc236aa20c7cf70042468f00afccabcc0aa15994de3180a74c56259823a308138f4db09939407494aacd8ee5c6c6a06f42f34a +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/latex2nemeth + +name latex2nemeth.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of latex2nemeth +containersize 348 +containerchecksum 259d02b352b3d206289672d98eeedfeefcf4f2941d16d0882ab9562b0a4d181258f836f73555720f73342f6e35a2ab48f4a2133e67b1715087dc7f9604b3e095 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/latex2nemeth + +name latex2nemeth.x86_64-linux +category Package +revision 42300 +shortdesc x86_64-linux files of latex2nemeth +containersize 340 +containerchecksum 70d0de15e6be915561e04ad3d230e3daf00f01cefdfe877bda998f0c5abf2937f24b33dff92134a3f590c54ea5fc5192bffaf58f4c838c6a7fe6ca42082ad034 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/latex2nemeth + +name latex2nemeth.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of latex2nemeth +containersize 348 +containerchecksum 3f9c75fa418a2b413d4ead1bda658c75831afafc85e5017a33ac5f5ac93bd1b1d9c6314fb0856708ee89ee4e853a2c9990f31c3dbfacac828e6ee16abf6e3923 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/latex2nemeth + +name latex2nemeth.x86_64-solaris +category Package +revision 42300 +shortdesc x86_64-solaris files of latex2nemeth +containersize 344 +containerchecksum 863e687e95ce383cf356f18bcd8f0f508f3e88471f7a1eb12546fec55adb9e04481e54524f6b8e5d5b78d8a6b9f66bf07ec5ee30ef404cb01b72c8b12c51becc +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/latex2nemeth + +name latex4musicians +category Package +revision 49759 +shortdesc A guide for combining LaTeX and music +relocated 1 +longdesc This guide, "LaTeX for Musicians", explains how to create LaTeX +longdesc documents that include several kinds of music elements: music +longdesc symbols, song lyrics, guitar chords diagrams, lead sheets, +longdesc music excerpts, guitar tablatures, multi-page scores. +containersize 524 +containerchecksum a37c75d55857e9680b8e4b0f59f1889f3b5198477212ea531aa6bbf9ea11dbae06fef7fdba9e706f016c6c0618eebe4ddb81ba73b48979683a22592a0adb119a +doccontainersize 1340360 +doccontainerchecksum 738c2c467d9df87cb1eccf0442b5c94a97a3c4c2b329d78d80b05d2adf9e3be11aaf2fb407ebc29f07e6455e6533464d981ae65122b080aebabdfaa29cf71b61 +docfiles size=705 + RELOC/doc/latex/latex4musicians/Figures/Makefile.sb + RELOC/doc/latex/latex4musicians/Figures/abctab.abc + RELOC/doc/latex/latex4musicians/Figures/abctab.ly + RELOC/doc/latex/latex4musicians/Figures/bravura.tex + RELOC/doc/latex/latex4musicians/Figures/breeches.abc + RELOC/doc/latex/latex4musicians/Figures/chordii.cho + RELOC/doc/latex/latex4musicians/Figures/chords.tex + RELOC/doc/latex/latex4musicians/Figures/drowsy.abc + RELOC/doc/latex/latex4musicians/Figures/fellow.abc + RELOC/doc/latex/latex4musicians/Figures/gchords.tex + RELOC/doc/latex/latex4musicians/Figures/gcschemes.tex + RELOC/doc/latex/latex4musicians/Figures/gdiagram.tex + RELOC/doc/latex/latex4musicians/Figures/glyphs.tex + RELOC/doc/latex/latex4musicians/Figures/glyphs_ls.tex + RELOC/doc/latex/latex4musicians/Figures/gtablature.ly + RELOC/doc/latex/latex4musicians/Figures/gtrcrd.tex + RELOC/doc/latex/latex4musicians/Figures/guitar.tex + RELOC/doc/latex/latex4musicians/Figures/guitartabs.tex + RELOC/doc/latex/latex4musicians/Figures/happyb.abc + RELOC/doc/latex/latex4musicians/Figures/jingle.ly + RELOC/doc/latex/latex4musicians/Figures/julia.abc + RELOC/doc/latex/latex4musicians/Figures/kyrie.gabc + RELOC/doc/latex/latex4musicians/Figures/kyrie.tex + RELOC/doc/latex/latex4musicians/Figures/leadsheets.tex + RELOC/doc/latex/latex4musicians/Figures/lilyglyphs.tex + RELOC/doc/latex/latex4musicians/Figures/lilytab.ly + RELOC/doc/latex/latex4musicians/Figures/mtxlatex.sty + RELOC/doc/latex/latex4musicians/Figures/musicography.tex + RELOC/doc/latex/latex4musicians/Figures/musixguit.tex + RELOC/doc/latex/latex4musicians/Figures/musixtab.tex + RELOC/doc/latex/latex4musicians/Figures/notes.abc + RELOC/doc/latex/latex4musicians/Figures/pdfcrop.sh + RELOC/doc/latex/latex4musicians/Figures/sample-abc-all.tex + RELOC/doc/latex/latex4musicians/Figures/sample-abc.abc + RELOC/doc/latex/latex4musicians/Figures/sample-abc.tex + RELOC/doc/latex/latex4musicians/Figures/sample-all.tex + RELOC/doc/latex/latex4musicians/Figures/sample-includeall.tex + RELOC/doc/latex/latex4musicians/Figures/sample-latexmtx.ltx + RELOC/doc/latex/latex4musicians/Figures/sample-lilybook.lytex + RELOC/doc/latex/latex4musicians/Figures/sample-lilypond.ly + RELOC/doc/latex/latex4musicians/Figures/sample-lyluatex.tex + RELOC/doc/latex/latex4musicians/Figures/sample-mlatex.tex + RELOC/doc/latex/latex4musicians/Figures/sample-mtex.tex + RELOC/doc/latex/latex4musicians/Figures/sample-mtx.mtx + RELOC/doc/latex/latex4musicians/Figures/sample-mtx.pmx + RELOC/doc/latex/latex4musicians/Figures/sample-mtx.tex + RELOC/doc/latex/latex4musicians/Figures/sample-mup.mup + RELOC/doc/latex/latex4musicians/Figures/sample-musixtex-tab.tex + RELOC/doc/latex/latex4musicians/Figures/sample-pmw.pmw + RELOC/doc/latex/latex4musicians/Figures/sample-songbook.orig.tex + RELOC/doc/latex/latex4musicians/Figures/sample-songbook.tex + RELOC/doc/latex/latex4musicians/Figures/scale.mtx + RELOC/doc/latex/latex4musicians/Figures/scale.pmx + RELOC/doc/latex/latex4musicians/Figures/scale.tex + RELOC/doc/latex/latex4musicians/Figures/scale1.abc + RELOC/doc/latex/latex4musicians/Figures/shave.abc + RELOC/doc/latex/latex4musicians/Figures/shave.ly + RELOC/doc/latex/latex4musicians/Figures/sheet.abc + RELOC/doc/latex/latex4musicians/Figures/songbook.tex + RELOC/doc/latex/latex4musicians/Figures/songs.tex + RELOC/doc/latex/latex4musicians/Figures/songs_all.tex + RELOC/doc/latex/latex4musicians/Figures/songs_g.tex + RELOC/doc/latex/latex4musicians/Figures/twinkle.abc + RELOC/doc/latex/latex4musicians/Figures/verses-chords.tex + RELOC/doc/latex/latex4musicians/Figures/warm.abc + RELOC/doc/latex/latex4musicians/HOW-TO-TYPESET.md + RELOC/doc/latex/latex4musicians/Makefile + RELOC/doc/latex/latex4musicians/README details="Readme" + RELOC/doc/latex/latex4musicians/TODO + RELOC/doc/latex/latex4musicians/abctab.pdf + RELOC/doc/latex/latex4musicians/bravura.pdf + RELOC/doc/latex/latex4musicians/chordii.pdf + RELOC/doc/latex/latex4musicians/chords.pdf + RELOC/doc/latex/latex4musicians/crop.sh + RELOC/doc/latex/latex4musicians/gchords.pdf + RELOC/doc/latex/latex4musicians/gcschemes.pdf + RELOC/doc/latex/latex4musicians/gdiagram.pdf + RELOC/doc/latex/latex4musicians/glyphs.pdf + RELOC/doc/latex/latex4musicians/glyphs_ls.pdf + RELOC/doc/latex/latex4musicians/gtablature.pdf + RELOC/doc/latex/latex4musicians/gtrcrd.pdf + RELOC/doc/latex/latex4musicians/guidopiper.jpeg + RELOC/doc/latex/latex4musicians/guitar.pdf + RELOC/doc/latex/latex4musicians/guitartabs.pdf + RELOC/doc/latex/latex4musicians/jingle.midi + RELOC/doc/latex/latex4musicians/jingle.pdf + RELOC/doc/latex/latex4musicians/kyrie.pdf + RELOC/doc/latex/latex4musicians/latex4musicians.pdf details="The document itself" + RELOC/doc/latex/latex4musicians/latex4musicians.tex + RELOC/doc/latex/latex4musicians/leadsheets.pdf + RELOC/doc/latex/latex4musicians/lilyglyphs.pdf + RELOC/doc/latex/latex4musicians/lilytab.pdf + RELOC/doc/latex/latex4musicians/musicography.pdf + RELOC/doc/latex/latex4musicians/musixguit.pdf + RELOC/doc/latex/latex4musicians/params.tex + RELOC/doc/latex/latex4musicians/pdfcrop.sh + RELOC/doc/latex/latex4musicians/pdfl.sh + RELOC/doc/latex/latex4musicians/pdfx.sh + RELOC/doc/latex/latex4musicians/sample-abc-all.pdf + RELOC/doc/latex/latex4musicians/sample-abc.pdf + RELOC/doc/latex/latex4musicians/sample-all.pdf + RELOC/doc/latex/latex4musicians/sample-latexmtx.pdf + RELOC/doc/latex/latex4musicians/sample-lilybook.pdf + RELOC/doc/latex/latex4musicians/sample-lyluatex.pdf + RELOC/doc/latex/latex4musicians/sample-mlatex.pdf + RELOC/doc/latex/latex4musicians/sample-mtex.pdf + RELOC/doc/latex/latex4musicians/sample-mtx.pdf + RELOC/doc/latex/latex4musicians/sample-musixtex-tab.pdf + RELOC/doc/latex/latex4musicians/sample-pmw.pdf + RELOC/doc/latex/latex4musicians/sample-songbook.pdf + RELOC/doc/latex/latex4musicians/sheet.pdf + RELOC/doc/latex/latex4musicians/songbook.pdf + RELOC/doc/latex/latex4musicians/songs.pdf + RELOC/doc/latex/latex4musicians/songs_g.pdf + RELOC/doc/latex/latex4musicians/verses-chords.pdf +catalogue-ctan /info/latex4musicians +catalogue-date 2019-01-19 09:48:34 +0100 +catalogue-license fdl +catalogue-topics music tutorial tut-latex +catalogue-version 1.0.1 + +name latex4wp +category Package +revision 35999 +shortdesc A LaTeX guide specifically designed for word processor users +relocated 1 +longdesc "LaTeX for Word Processor Users" is a guide that helps +longdesc converting knowledge and techniques of word processing into the +longdesc LaTeX typesetting environment. It aims at helping WP users use +longdesc LaTeX instead. +containersize 504 +containerchecksum 64ce122ac380c4f2c06d3afe2cf1aa2af2dd6d29fc451ced9df05206c97dc0343e6867d770d9b4e1c0425ea41ef89cb2d0a003d43cddf82ea19a7b33d383b7ca +doccontainersize 785532 +doccontainerchecksum e8f22deb966044c87e7414d828ae3d8bfabfda40bdebb4b26b712692020c785ad8688595cced27ea5993c8b8f34f7fbe0cc86180d2ff8bfcc44cc009fd52e936 +docfiles size=240 + RELOC/doc/latex/latex4wp/HOW-TO-TYPESET + RELOC/doc/latex/latex4wp/README details="Readme" + RELOC/doc/latex/latex4wp/dat2tex.sh + RELOC/doc/latex/latex4wp/exa.sty + RELOC/doc/latex/latex4wp/gnuplot.gp + RELOC/doc/latex/latex4wp/gnuplot.pdf + RELOC/doc/latex/latex4wp/inkscape-tb.png + RELOC/doc/latex/latex4wp/inkscape.png + RELOC/doc/latex/latex4wp/latex4wp.pdf details="The document itself" + RELOC/doc/latex/latex4wp/latex4wp.tex + RELOC/doc/latex/latex4wp/midifile.mid + RELOC/doc/latex/latex4wp/tbx.eps + RELOC/doc/latex/latex4wp/tbx.pdf + RELOC/doc/latex/latex4wp/tbx.tex +catalogue-ctan /info/latex4wp +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license fdl +catalogue-topics documentation fac-survey +catalogue-version 1.0.10 + +name latex4wp-it +category Package +revision 36000 +shortdesc LaTeX guide for word processor users, in Italian +relocated 1 +longdesc The package provides a version of the document in Italian +containersize 420 +containerchecksum 691d8936d71ca825da3a5fb193f8f7067480981b1b9bc93100f54834a7f9500e66785a216110cb1eb5cdd41b538333b693dab8e0e855e546a3eab90c43c48630 +doccontainersize 816780 +doccontainerchecksum c0c527bc7e9e71038316be5c6a57f4200ed69e7ed6fa0f066923cb14d14e20e90213cf0b989d3ba746bdb3e2263cf1daba56db3073017a0d7582e40640d35fd3 +docfiles size=250 + RELOC/doc/latex/latex4wp-it/COME-COMPORRE + RELOC/doc/latex/latex4wp-it/README details="Readme" language="it" + RELOC/doc/latex/latex4wp-it/dat2tex + RELOC/doc/latex/latex4wp-it/exa.sty + RELOC/doc/latex/latex4wp-it/gnuplot.gp + RELOC/doc/latex/latex4wp-it/gnuplot.pdf + RELOC/doc/latex/latex4wp-it/inkscape-tb.png + RELOC/doc/latex/latex4wp-it/inkscape.png + RELOC/doc/latex/latex4wp-it/latex4wp-it.pdf details="The document itself" language="it" + RELOC/doc/latex/latex4wp-it/latex4wp-it.tex + RELOC/doc/latex/latex4wp-it/midifile.mid + RELOC/doc/latex/latex4wp-it/tbx.eps + RELOC/doc/latex/latex4wp-it/tbx.pdf + RELOC/doc/latex/latex4wp-it/tbx.tex +catalogue-ctan /info/latex4wp-it +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license fdl +catalogue-topics italian-doc fac-survey +catalogue-version 1.0.10 + +name latexbangla +category Package +revision 42409 +shortdesc Enhanced LaTeX integration for Bangla +relocated 1 +longdesc This package simplifies the process of writing Bangla in LaTeX +longdesc and addresses most of the associated typesetting issues. +longdesc Notable features: Automated transition from Bangla to English +longdesc and vice versa. Patch for the unproportionate whitespace issue +longdesc in popular Bangla fonts. Full support for all the common +longdesc commands and environments. Bangla numbering for page, section, +longdesc chapter, footnotes etc. (extending polyglossia's support). New +longdesc theorem, problems, example, solution and other environments, +longdesc all of which are in Bangla. +containersize 3288 +containerchecksum 97e4a88b3028f3836a82c80bee739393c0ebdd219ac3b78acfa00f84f5b5857334605ee4719c8dd40d1cfcb44a4f9f821d711401d091a3ab46204d2457559fd4 +doccontainersize 147412 +doccontainerchecksum dd88aa9630a08992348699e71c1e1ac7a697c0279a83daa333f0bd0c098d564b730f7bff829e7489000ce09331c9f13a804badd4bc253dc181b09646f8c0b991 +docfiles size=41 + RELOC/doc/latex/latexbangla/README details="Readme" + RELOC/doc/latex/latexbangla/latexbangla.pdf details="Package documentation" + RELOC/doc/latex/latexbangla/latexbangla.tex +runfiles size=2 + RELOC/tex/latex/latexbangla/latexbangla.sty +catalogue-ctan /language/bengali/latexbangla +catalogue-date 2016-11-06 05:41:03 +0100 +catalogue-license lppl1.3 +catalogue-topics indic +catalogue-version 0.2 + +name latexbug +category Package +revision 49573 +shortdesc Bug-classification for LaTeX related bugs +relocated 1 +longdesc The package is written in order to help identifying the +longdesc rightful addressee for a bug report. The LaTeX team asks that +longdesc it will be loaded in any test file that is intended to be sent +longdesc to the LaTeX bug database as part of a bug report. +containersize 4760 +containerchecksum 9e3504cfc30ac63e1c0a7465db604652fd1ca9d60464bbaf653e8259d1cac3b1302efcc12a0eb1500d5a9bc9e1f0044bf266a78c0490bbb1ded516f63785c6be +doccontainersize 186472 +doccontainerchecksum e5df624c67b0bb1ea2358314326a898c0cef69906a2c96d1359b3ac21e0fb2d3ee5373024a114bb94f66b1602611cf77aab7662e656931c7c8f0c9ded4de2e77 +docfiles size=48 + RELOC/doc/latex/latexbug/README.md details="Readme" + RELOC/doc/latex/latexbug/changes.txt + RELOC/doc/latex/latexbug/latexbug.pdf details="Package documentation" +srccontainersize 8852 +srccontainerchecksum 2a259615f3f9ff3c69cf62ed43e297680d6c99e5bbd39c511c9cb7cd0a8df04bc98bb9857754e314496f8acebc21b570583cc1d1e38a1c33f1f3bec7ad8bf528 +srcfiles size=9 + RELOC/source/latex/latexbug/latexbug.dtx + RELOC/source/latex/latexbug/latexbug.ins +runfiles size=5 + RELOC/tex/latex/latexbug/latexbug.sty +catalogue-contact-repository https://github.com/latex3/latexbug +catalogue-ctan /macros/latex/required/latexbug +catalogue-date 2018-12-31 21:24:55 +0100 +catalogue-license lppl1.3c +catalogue-topics latex-doc latex-devel +catalogue-version 1.0e + +name latexcheat +category Package +revision 15878 +shortdesc A LaTeX cheat sheet +relocated 1 +longdesc A LaTeX reference sheet for writing scientific papers. Unlike +longdesc many other such sheets, this sheet does not focus on +longdesc typesetting mathematics (though it does list some symbols). +containersize 464 +containerchecksum 530041d286048809968d91b20fd40c5ec41eb440fec25bf08f92af0f0fd5e1481a1344ba3c659da4477de353d222f3cb160d75eea2241ccf19b05e63e059ed6f +doccontainersize 155812 +doccontainerchecksum 28abbdc3b53c245b0cfb6ab68549661a72d37df004a5c760f5021e91b1df892b02872c7e20f328c7dd4624edff96f3b1fadfb46cf35d080c6b7c5635dc36adfc +docfiles size=50 + RELOC/doc/latex/latexcheat/README details="Readme" + RELOC/doc/latex/latexcheat/latexsheet.pdf details="The document itself" + RELOC/doc/latex/latexcheat/latexsheet.tex +catalogue-ctan /info/latexcheat/latexcheat +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics tut-cheat +catalogue-version 1.13 + +name latexcheat-de +category Package +revision 35702 +shortdesc A LaTeX cheat sheet, in German +relocated 1 +longdesc This is a translation to German of Winston Chang's LaTeX cheat +longdesc sheet (a reference sheet for writing scientific papers). It has +longdesc been adapted to German standards using the KOMA script document +longdesc classes. +containersize 544 +containerchecksum 84de8075c1ba86467c8b34ed614462953ca8b9a237bb84453b2f9a1482eebfdb628c3e460d38da126416cc111387d68d3f479c5806ecbf06d079e47c35b88ca6 +doccontainersize 528444 +doccontainerchecksum dda8002178b55e155f7ce1f49f57f928b6c5097007daf36aa473c1a2d07aef4c3ec5e1c238537c0531731af0cb0d51804b0c0310be63954f112f266e737c7d37 +docfiles size=136 + RELOC/doc/latex/latexcheat-de/README details="Readme (in German)" language="de" + RELOC/doc/latex/latexcheat-de/latexsheet-de.pdf details="The document itself" language="de" + RELOC/doc/latex/latexcheat-de/latexsheet-de.tex +catalogue-contact-repository https://github.com/tammon/Deutsches-LaTeX-Cheat-Sheet +catalogue-ctan /info/latexcheat/latexcheat-de +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl +catalogue-topics german-doc tut-cheat + +name latexcheat-esmx +category Package +revision 36866 +shortdesc A LaTeX cheat sheet, in Spanish +relocated 1 +longdesc This is a translation to Spanish (Castellano) of Winston +longdesc Chang's LaTeX cheat sheet (a reference sheet for writing +longdesc scientific papers). +containersize 460 +containerchecksum ab9965189096647e8af9aa58a937fa15595bed32055b3819bfd12334cf60e01d18b12563de8169ea28e3c0a7768864e51631c29bbbe47d45e09ffb2b87c5d524 +doccontainersize 467256 +doccontainerchecksum a45f2db2445e2daec8b31e995669a189c1d201f457e06de7fc2a85ad85686b31fcf70040e7840e1168e29b2e5caf796c45b6ce934780fa5982d0750438263606 +docfiles size=130 + RELOC/doc/latex/latexcheat-esmx/README details="Readme" language="es" + RELOC/doc/latex/latexcheat-esmx/latexsheet-esmx.pdf details="The document itself" language="es" + RELOC/doc/latex/latexcheat-esmx/latexsheet-esmx.tex +catalogue-ctan /info/latexcheat/latexcheat-esmx +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics spanish-doc tut-cheat +catalogue-version 2.00 + +name latexcheat-ptbr +category Package +revision 15878 +shortdesc A LaTeX cheat sheet, in Brazilian Portuguese +relocated 1 +longdesc This is a translation to Brazilian Portuguese of Winston +longdesc Chang's LaTeX cheat sheet +containersize 424 +containerchecksum e50cd94941704f1a620a7411624ffd61d47aa4ef2944220ef0bfa9fbc428d8ea46be17bb3b18b30d645dcddf3c8091dafa9532f809dee7af230e2133c86b9bf5 +doccontainersize 143516 +doccontainerchecksum 00369fce725567a85310afd3063a4a20e670d8a0c57ef7e4515579ee0f91157f44bac2471b076c2ba51253e2c172447cc4b915877d80b0c43874c4e125f5f9d4 +docfiles size=68 + RELOC/doc/latex/latexcheat-ptbr/README-ptbr details="Readme (in Brazilian Portuguese)" language="pt" + RELOC/doc/latex/latexcheat-ptbr/latexsheet-ptbr.pdf details="The document itself" language="pt" + RELOC/doc/latex/latexcheat-ptbr/latexsheet-ptbr.tex +catalogue-ctan /info/latexcheat/latexcheat-ptbr +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics portuguese-doc tut-cheat +catalogue-version 1.13 + +name latexcolors +category Package +revision 49888 +shortdesc Use color definitions from latexcolor.com +relocated 1 +longdesc Built on top of the xcolor package, the latexcolors package +longdesc defines the set of colors shown on latexcolor.com for use in +longdesc documents typeset with LaTeX & friends. +containersize 7712 +containerchecksum b22521df5572411a33ba84b2d7560f0735a6f3a3bab0c6d7ca460e19333fba20ec8852becc618274ca7b7461fac1c42d0e6ce7fb9b7e4349c74bd05e8e1b5faf +doccontainersize 374576 +doccontainerchecksum 5f6f26c2ece42c07b2b2e634308a2a417e12a105d9856d630f483443825615d770ed35f7322f59904b1d8fea9425e0222fe9deff27451a5aec52fac39eb9369e +docfiles size=93 + RELOC/doc/latex/latexcolors/README.md details="Readme" + RELOC/doc/latex/latexcolors/latexcolors.pdf details="Package documentation" +srccontainersize 12256 +srccontainerchecksum 369c0cb2c019ef227c41d38a193f82ca1417158065cf6f0f913d9e4bb7030e6ff3b34fb49157d3e81b9917bd38db454194c3576009be76d9293b365e59619a59 +srcfiles size=17 + RELOC/source/latex/latexcolors/Makefile + RELOC/source/latex/latexcolors/latexcolors.dtx + RELOC/source/latex/latexcolors/latexcolors.ins +runfiles size=10 + RELOC/tex/latex/latexcolors/latexcolors.sty +catalogue-contact-bugs https://github.com/tcpluess/latexcolors/issues +catalogue-contact-repository https://github.com/tcpluess/latexcolors +catalogue-ctan /macros/latex/contrib/latexcolors +catalogue-date 2019-01-30 22:22:09 +0100 +catalogue-license lppl1.3 +catalogue-topics colour +catalogue-version 0.1a + +name latexconfig +category Package +revision 45777 +shortdesc configuration files for LaTeX-related formats +relocated 1 +containersize 4828 +containerchecksum 6138c8cb0fc06ad2f91c822aed3321e3607aa8906a35141b206255de66112b2db18aebc5cbab8e40fa2fb7522917ed20badbb1358ce88b30c40878f7ab1b9ea4 +runfiles size=10 + RELOC/tex/latex/latexconfig/epstopdf-sys.cfg + RELOC/tex/latex/latexconfig/hyperref.cfg + RELOC/tex/latex/latexconfig/latex.ini + RELOC/tex/latex/latexconfig/lualatex-patch-kernel.tex + RELOC/tex/latex/latexconfig/lualatex-reset-codes.tex + RELOC/tex/latex/latexconfig/lualatexiniconfig.tex + RELOC/tex/latex/latexconfig/lualatexquotejobname.lua + RELOC/tex/latex/latexconfig/lualatexquotejobname.tex + RELOC/tex/latex/latexconfig/mllatex.ini + RELOC/tex/latex/latexconfig/pdflatex.ini + +name latexcourse-rug +category Package +revision 39026 +shortdesc A LaTeX course book +relocated 1 +longdesc The package provides the book and practice files for a LaTeX +longdesc course that the author has give several times at the +longdesc Rijksuniversiteit Groningen (Netherlands). +containersize 464 +containerchecksum ab31ee52beb0fe100f4798e6e42673d5284f6f85ccdecf8875f4d058928cab7363507f8cafe6c3c6f437a682f3e0017923d138ff671eea118ca8d2339627fbe0 +doccontainersize 5200392 +doccontainerchecksum aeaeeef2c43a5ddf782a91152c9e2e18f00d9b3e18b7023837920a53eb390652d7ea85afcae338519a00b84a972a723eedd7819e73944ef7015f8c028822fea9 +docfiles size=1438 + RELOC/doc/latex/latexcourse-rug/README details="Readme" + RELOC/doc/latex/latexcourse-rug/latexcourse-rug-sources.zip + RELOC/doc/latex/latexcourse-rug/latexcourse-rug.pdf details="Printable copy of the course" + RELOC/doc/latex/latexcourse-rug/practice.zip +catalogue-ctan /info/latexcourse-rug +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license other-free +catalogue-topics course-material +catalogue-version 1.1 + +name latexdemo +category Package +revision 34481 +shortdesc Demonstrate LaTeX code with its resulting output +relocated 1 +longdesc The package provides configurable tools to print out LaTeX code +longdesc and the resulting output in the same document. It also supports +longdesc printing the result inside a conditional sequence; thus one may +longdesc suppress printing if the code would not compile. +containersize 2476 +containerchecksum d8b6ceb9aed4b2edbb4fc9e939dbc2dc5b6989fd04703dce2e504135d2c1bda46c8dd78e995d41a7e8727563c72b4f77979a52513ab0d49d8c95f80246a94fa9 +doccontainersize 459344 +doccontainerchecksum 34a0ed1b5e9ce5f2b71d67384427b4a7d69439ac4eb5113e1b8e270618164f883b05bf7cbdff9da57fe2bec7cf43bed844ec77b90da00efe30fe9061b3ca0339 +docfiles size=114 + RELOC/doc/latex/latexdemo/README + RELOC/doc/latex/latexdemo/latexdemo.pdf details="Package documentation" +srccontainersize 6176 +srccontainerchecksum 7416fda5909c8488b2e7aa6fce9b1c0e747577e82a2fcb44df617c493e768b3d86310b1817ccfd96edd22aafdee45d32eba1495949c44aa9c1e252abece321be +srcfiles size=6 + RELOC/source/latex/latexdemo/latexdemo.dtx + RELOC/source/latex/latexdemo/latexdemo.ins +runfiles size=2 + RELOC/tex/latex/latexdemo/latexdemo.sty +catalogue-ctan /macros/latex/contrib/latexdemo +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics listing +catalogue-version 0.1 + +name latexdiff +category Package +revision 48926 +shortdesc Determine and mark up significant differences between LaTeX files +longdesc Latexdiff is a Perl script for visual mark up and revision of +longdesc significant differences between two LaTeX files. Various +longdesc options are available for visual markup using standard LaTeX +longdesc packages such as color. Changes not directly affecting visible +longdesc text, for example in formatting commands, are still marked in +longdesc the LaTeX source. A rudimentary revision facilility is provided +longdesc by another Perl script, latexrevise, which accepts or rejects +longdesc all changes. Manual editing of the difference file can be used +longdesc to override this default behaviour and accept or reject +longdesc selected changes only. +depend latexdiff.ARCH +containersize 67752 +containerchecksum 64b3c9906ade859568f67b235192ff29b70cd4ba94006a86cd1f7872d88ec7cf274fe89a5d292737d86295d7f92ff9be7be46936192eef2e5f99aabd116e9479 +doccontainersize 472600 +doccontainerchecksum 665d2029e8fa0eb6c1fbf3f9d99d6ae92e43e422bc59da6cc64b5119f3ffc46c6310acf8a95861ff3bc4d5ab6ac5fe78290c0454f9bcb4ffe2e815872f6b8c55 +docfiles size=255 + texmf-dist/doc/man/man1/latexdiff-vc.1 + texmf-dist/doc/man/man1/latexdiff-vc.man1.pdf + texmf-dist/doc/man/man1/latexdiff.1 + texmf-dist/doc/man/man1/latexdiff.man1.pdf + texmf-dist/doc/man/man1/latexrevise.1 + texmf-dist/doc/man/man1/latexrevise.man1.pdf + texmf-dist/doc/support/latexdiff/COPYING + texmf-dist/doc/support/latexdiff/Makefile + texmf-dist/doc/support/latexdiff/README details="Package Readme" + texmf-dist/doc/support/latexdiff/contrib/README.latexchanges + texmf-dist/doc/support/latexdiff/contrib/latexchanges.py + texmf-dist/doc/support/latexdiff/contrib/latexdiff-wrap + texmf-dist/doc/support/latexdiff/contrib/latexdiff.spec + texmf-dist/doc/support/latexdiff/doc/example-diff.tex + texmf-dist/doc/support/latexdiff/doc/latexdiff-man.pdf details="Package manual" + texmf-dist/doc/support/latexdiff/doc/latexdiff-man.tex + texmf-dist/doc/support/latexdiff/example/example-draft.tex + texmf-dist/doc/support/latexdiff/example/example-rev.tex + texmf-dist/doc/support/latexdiff/latexdiff + texmf-dist/doc/support/latexdiff/latexdiff-fast +runfiles size=69 + texmf-dist/scripts/latexdiff/latexdiff-vc.pl + texmf-dist/scripts/latexdiff/latexdiff.pl + texmf-dist/scripts/latexdiff/latexrevise.pl +catalogue-contact-repository https://github.com/ftilmann/latexdiff/ +catalogue-ctan /support/latexdiff +catalogue-date 2018-10-16 23:19:48 +0200 +catalogue-license gpl3 +catalogue-topics doc-mgmt +catalogue-version 1.3.0 + +name latexdiff.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of latexdiff +containersize 384 +containerchecksum 0a27f7270c784deaa292a419b1f4bda42b671713632b423cd3233f573604c99259dd24376ef67db085092ac125ed5fc939cfbc8dd6deec9104090354e7f30d91 +binfiles arch=aarch64-linux size=3 + bin/aarch64-linux/latexdiff + bin/aarch64-linux/latexdiff-vc + bin/aarch64-linux/latexrevise + +name latexdiff.amd64-freebsd +category Package +revision 16484 +shortdesc amd64-freebsd files of latexdiff +containersize 388 +containerchecksum a7b06456252578203ca46b299cfa74c8f0755895b92f1d63181dcb87bc588255f7733b8dfaf62d09567478de267b32e420d429598ca21ad5fe4a3d199e1cea10 +binfiles arch=amd64-freebsd size=3 + bin/amd64-freebsd/latexdiff + bin/amd64-freebsd/latexdiff-vc + bin/amd64-freebsd/latexrevise + +name latexdiff.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of latexdiff +containersize 384 +containerchecksum f5ca158ddca2c751dc97c35ee95aac6d996feb58429e5d823ff6555aa6e729c8d822e729934576aeab3507335c91e97772f3762ca149e90513fdd54a098c63eb +binfiles arch=amd64-netbsd size=3 + bin/amd64-netbsd/latexdiff + bin/amd64-netbsd/latexdiff-vc + bin/amd64-netbsd/latexrevise + +name latexdiff.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of latexdiff +containersize 384 +containerchecksum 908eab874a56315a640e1e83489f05784cfdc7dcab3c4990e3c707a4cfbfac84107bea4ff033043de4691267e1c0126830261e1b106a45234faa001cd4da0dd5 +binfiles arch=armhf-linux size=3 + bin/armhf-linux/latexdiff + bin/armhf-linux/latexdiff-vc + bin/armhf-linux/latexrevise + +name latexdiff.i386-cygwin +category Package +revision 16420 +shortdesc i386-cygwin files of latexdiff +containersize 384 +containerchecksum 23e6f9e796dc1c2e3c4202c6dab5d01d60022d4ba6fbae1f51f79087668ce3d5120866d16b1f0d540b3e7e2fdf994a3fe4c388ca4a32395b8783d3859dc097e1 +binfiles arch=i386-cygwin size=3 + bin/i386-cygwin/latexdiff + bin/i386-cygwin/latexdiff-vc + bin/i386-cygwin/latexrevise + +name latexdiff.i386-freebsd +category Package +revision 16484 +shortdesc i386-freebsd files of latexdiff +containersize 388 +containerchecksum 3787606ca422dd52aab970a68722b8edae6baa0c3cf11a8f728e984109a629af50b920648555957569d5660ea9879c2eef919269875396efc4e701e2c3c85598 +binfiles arch=i386-freebsd size=3 + bin/i386-freebsd/latexdiff + bin/i386-freebsd/latexdiff-vc + bin/i386-freebsd/latexrevise + +name latexdiff.i386-linux +category Package +revision 16420 +shortdesc i386-linux files of latexdiff +containersize 384 +containerchecksum 3a91eabf737c0c416585748c52297ae679d4fcc53175cdf73648697f88852773c603e20ed3d977b9f7a51a8c83bd9559fb27dc6ea2aa67bba847ccd0643c329b +binfiles arch=i386-linux size=3 + bin/i386-linux/latexdiff + bin/i386-linux/latexdiff-vc + bin/i386-linux/latexrevise + +name latexdiff.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of latexdiff +containersize 384 +containerchecksum 8e7dfbe8b25ad7878e6c3aff2a27a19da6d95e53d02d8c03cc1d188f9bedb2b780bc6172680a4948953775a501f9b190b066f69847610173fa32c4369234ff68 +binfiles arch=i386-netbsd size=3 + bin/i386-netbsd/latexdiff + bin/i386-netbsd/latexdiff-vc + bin/i386-netbsd/latexrevise + +name latexdiff.i386-solaris +category Package +revision 16420 +shortdesc i386-solaris files of latexdiff +containersize 384 +containerchecksum cccc859fbd6295deacdb85b38712d62b2c96f7bf9111488148cedde4a344b0b4a30c595649ae1b7ca876640b6928cbbb64b2ae2564670cad7c950904d0014687 +binfiles arch=i386-solaris size=3 + bin/i386-solaris/latexdiff + bin/i386-solaris/latexdiff-vc + bin/i386-solaris/latexrevise + +name latexdiff.win32 +category Package +revision 16726 +shortdesc win32 files of latexdiff +containersize 716 +containerchecksum acadc4bfcbec0bc4f628115e605b4574867a799b96d7d7099002b42bf96a9429513aea31613408be93ea8bf8bf8235c479589637f581d8ba7ce4141d20c844a0 +binfiles arch=win32 size=3 + bin/win32/latexdiff-vc.exe + bin/win32/latexdiff.exe + bin/win32/latexrevise.exe + +name latexdiff.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of latexdiff +containersize 388 +containerchecksum eb3d7db6d71c0b0f41f330041a94452531a5e41d6c1e9fe77427bb597dfe8c5754e56a22ac64a51536a4cf46a48674d5ca8184064d7aedfea186a7693f3dbf6a +binfiles arch=x86_64-cygwin size=3 + bin/x86_64-cygwin/latexdiff + bin/x86_64-cygwin/latexdiff-vc + bin/x86_64-cygwin/latexrevise + +name latexdiff.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of latexdiff +containersize 388 +containerchecksum 33fd2e88203cc7d0c1c55adc1df450099db1864a90f6f1331c4d282ecd362f837a36d22bde1e2de52657ae6212773b39eec89b7248f2a53fe5cc74ae3f3ec081 +binfiles arch=x86_64-darwin size=3 + bin/x86_64-darwin/latexdiff + bin/x86_64-darwin/latexdiff-vc + bin/x86_64-darwin/latexrevise + +name latexdiff.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of latexdiff +containersize 400 +containerchecksum 98ce8c7065fe6ab92155af391ce55aeef292a81c8464ae6d043263784161a1891225c8aa7d604745a9a00d1e48b8528680ba1eb0bfdc54bb5c84d91e694cadc5 +binfiles arch=x86_64-darwinlegacy size=3 + bin/x86_64-darwinlegacy/latexdiff + bin/x86_64-darwinlegacy/latexdiff-vc + bin/x86_64-darwinlegacy/latexrevise + +name latexdiff.x86_64-linux +category Package +revision 16420 +shortdesc x86_64-linux files of latexdiff +containersize 384 +containerchecksum 37f34e90a572e49f4643e10f429e8256b4d0dd236123823ce35b8681b68322988632bb0294d806755b21ed8742757e77b4e157f202a1b781be2826a717e08618 +binfiles arch=x86_64-linux size=3 + bin/x86_64-linux/latexdiff + bin/x86_64-linux/latexdiff-vc + bin/x86_64-linux/latexrevise + +name latexdiff.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of latexdiff +containersize 392 +containerchecksum 4d6417b1c39a1de56187e86bf7ba0be9a2118f55512b3a074f94cf1bc92caf430b8840973bad79efe3fcf0691fdf76605463b95b6b74aeae5f8264a2dff1b30e +binfiles arch=x86_64-linuxmusl size=3 + bin/x86_64-linuxmusl/latexdiff + bin/x86_64-linuxmusl/latexdiff-vc + bin/x86_64-linuxmusl/latexrevise + +name latexdiff.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of latexdiff +containersize 384 +containerchecksum 800ff14bd4efc55d1c46b3214a1bbf2164efab679f9e30d68854c1f7711e2c139c48bb30bf70914835d28ed847ad42dbd25ea5d289ca7f8ea795fa9d5be52d00 +binfiles arch=x86_64-solaris size=3 + bin/x86_64-solaris/latexdiff + bin/x86_64-solaris/latexdiff-vc + bin/x86_64-solaris/latexrevise + +name latexfileinfo-pkgs +category Package +revision 26760 +shortdesc A comparison of packages showing LaTeX file information +relocated 1 +longdesc The package provides an HTML file that lists and compares CTAN +longdesc packages that display LaTeX source file information from +longdesc \ProvidesClass, \ProvidesFile, and \ProvidesPackage commands in +longdesc the LaTeX file. Five packages of the author's, and several +longdesc other packages are discussed; revision control systems are +longdesc mentioned briefly. +containersize 856 +containerchecksum b08fbfeb87299273a0e087e7cfe0e9df9bf50b95503a3110b9b329a9a41931f34f65661e219c6adf377e3448536d5aac8199799821f7057a67a4680a24f30ad0 +doccontainersize 8008 +doccontainerchecksum af5ff5d84fbbaf299be548d13163c8e5e83b73ce795bc1236a204f4025e34d9ef0c587702ea5d6b234791e16e7cd1930a63f3839c20caefad7610de125a583e6 +docfiles size=8 + RELOC/doc/latex/latexfileinfo-pkgs/README details="Readme" + RELOC/doc/latex/latexfileinfo-pkgs/latexfileinfo_pkgs.htm details="The document itself" +srccontainersize 8120 +srccontainerchecksum b204065af499edadaf997f6a6cb1be474d02d03c1e37f94b33dc7d290f934c4a453fb648588482821f52f7b0b80f5edafa9a034f8eb2a9287ef06e753b8c1e96 +srcfiles size=8 + RELOC/source/latex/latexfileinfo-pkgs/SrcFILEs.txt + RELOC/source/latex/latexfileinfo-pkgs/latexfileinfo_pkgs.tex + RELOC/source/latex/latexfileinfo-pkgs/mkht_ltxfinfo_pkgs.tex +runfiles size=1 + RELOC/tex/latex/latexfileinfo-pkgs/latexfileinfo_pkgs.RLS +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html +catalogue-ctan /info/latexfileinfo-pkgs +catalogue-date 2017-05-06 08:32:59 +0200 +catalogue-license lppl1.3 +catalogue-topics review-document +catalogue-version 0.22 + +name latexfileversion +category Package +revision 29349 +shortdesc Prints the version and date of a LaTeX class or style file +longdesc This simple shell script prints the version and date of a LaTeX +longdesc class or style file. Syntax: latexfileversion This +longdesc programme handles style files (extension .sty), class files +longdesc (extension .cls), and other TeX input files. The file extension +longdesc must be given. +depend latexfileversion.ARCH +containersize 1652 +containerchecksum 3a017b8a367864358370f0063957c301014df2aa039566ef33ae78dcf428235ccc2a88e19c917c940e186371e2c0b747887cb04e7cb78b9a04ac1720dbd94cf9 +doccontainersize 928 +doccontainerchecksum b1df01f8bc7daed937cd20d1ab7cce443a3d1fbb58e04cb18f0c0b30ef0795c988cf51bf49ace2f960c173f6a95fe982ee9d29d7650dcde21784c788165094c1 +docfiles size=2 + texmf-dist/doc/support/latexfileversion/ChangeLog + texmf-dist/doc/support/latexfileversion/README details="Readme" +runfiles size=1 + texmf-dist/scripts/latexfileversion/latexfileversion +catalogue-ctan /support/latexfileversion +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics file-mgmt +catalogue-version 0.3 + +name latexfileversion.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of latexfileversion +containersize 344 +containerchecksum a55404bffe968a65e6c20abbce25be1ecfca595738e35774bf81793ed27fe4fddeba7f671d7d1328fda95fbe7d2bed3af6ee31e4cd5f556bb3c08773ba777e3d +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/latexfileversion + +name latexfileversion.amd64-freebsd +category Package +revision 25012 +shortdesc amd64-freebsd files of latexfileversion +containersize 344 +containerchecksum 158a052116cd0e42145903ea74b0dd600c21d04bdc3306101873774f955c1560f8046c155c88efba0c9da6654a838d97016668c9147593bb915cdc2ea07bebe5 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/latexfileversion + +name latexfileversion.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of latexfileversion +containersize 344 +containerchecksum ea1e8f49eebcd8ada0a76d6d7039a25c1db28de9dae1f843e04ddfdb7426f2376658f03972954579757bc06a6fd4cbfd2f58bfb9b9b5d55aa1614dd989047cb1 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/latexfileversion + +name latexfileversion.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of latexfileversion +containersize 344 +containerchecksum 411a423f3f653ccdee5b0892a918f31f44a02fda74e4e50087545deeac8490b81bb41022b5f0dfc4f7eac568a8179826991d2fc6e773b9d5d5ab255320ee5836 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/latexfileversion + +name latexfileversion.i386-cygwin +category Package +revision 25012 +shortdesc i386-cygwin files of latexfileversion +containersize 340 +containerchecksum 1cf639adfef41bf56594a2c116761670ca973dbf883252c5ce446244154df9b27360043f0f0ca0fe9f9074e66074b03a5c1874f077f4ed0ca9fe7c9fbc996bfb +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/latexfileversion + +name latexfileversion.i386-freebsd +category Package +revision 25012 +shortdesc i386-freebsd files of latexfileversion +containersize 344 +containerchecksum b7e6990bb8fca1395191ec52878472f80d66364ab96e253077234f6b907884d262445af587250ecd8c6c7274b30b7e055bac2430bd355129f7ffade4ae230db4 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/latexfileversion + +name latexfileversion.i386-linux +category Package +revision 25012 +shortdesc i386-linux files of latexfileversion +containersize 344 +containerchecksum a792fc857b7a1b5473359d6d810520662a6ee3d211234668f1076d9e38f768f492e5d47bd674cea3498890f2594107060fec830efdb301557dd3a70bfbb08521 +binfiles arch=i386-linux size=1 + bin/i386-linux/latexfileversion + +name latexfileversion.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of latexfileversion +containersize 344 +containerchecksum ebc2d721218be48404a22cdd891af1256a294cc6ba2e7a41332b444358a72ad64fcf319e474cd24d2eca839f4e77b4c0c75673e6c134e766bebcf961126c5996 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/latexfileversion + +name latexfileversion.i386-solaris +category Package +revision 25012 +shortdesc i386-solaris files of latexfileversion +containersize 344 +containerchecksum 9f3a18dcd1b8671df84a475b927f9c12a835915b0af6851f8db26f2d155b04fbfeb15295fe59e876739a10e0389fe225574cb447bb2c12c279a093db14e02953 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/latexfileversion + +name latexfileversion.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of latexfileversion +containersize 344 +containerchecksum ecc825f100326551704fcdfca9f3c14cb676f40f91df27368026ab4ece59fdce05fa04824e525adba08e4e703c05420f5b25172321d35c10b064104cc9644341 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/latexfileversion + +name latexfileversion.x86_64-darwin +category Package +revision 25012 +shortdesc x86_64-darwin files of latexfileversion +containersize 344 +containerchecksum b743164099973a256c12afb1b9981f02c582bdf2054cd92893a6b17c142509a9fd2c448c6689760c7e5390330235f193f09a693d9c1c97470595d0c4b9848c43 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/latexfileversion + +name latexfileversion.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of latexfileversion +containersize 352 +containerchecksum 1355ffb0a79c49768424d3d02d537d6893ca12bfccc131b9a548f3ad3bef4054d0989164c4c2480099a51c8737b62502bad048b5baf69e2c3aac68d769c01280 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/latexfileversion + +name latexfileversion.x86_64-linux +category Package +revision 25012 +shortdesc x86_64-linux files of latexfileversion +containersize 344 +containerchecksum fa4ce4e4c60a730e741685db51699749327a23789f92795703e5815dbc4ab4e49664785c5c3c7b1b73b1cbadc21c9b9e64d9f605d257abc8083cf9c0dda53d3f +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/latexfileversion + +name latexfileversion.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of latexfileversion +containersize 348 +containerchecksum 77f7acc80e0c1ef2a2535b8f82d2c2fe27bd422c507342cb65ece4c17a9df70b3021028072b6583edef16ed470b38a8278db91e4f1a1bf71838defc1571fc94b +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/latexfileversion + +name latexfileversion.x86_64-solaris +category Package +revision 25012 +shortdesc x86_64-solaris files of latexfileversion +containersize 344 +containerchecksum cd174cab426807ca8fa1f8c25f0e52b8b8f13163328b4cfc67141bd1a7a3d52bc38d6575956c03eb59b3a34d5f1b6012541fac9543b92d5eeb8b044bd17577f5 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/latexfileversion + +name latexgit +category Package +revision 41920 +shortdesc A LaTeX git wrapper +relocated 1 +longdesc This package provides several macros to fetch git information +longdesc and typeset it. The macros defined by LaTeXgit can be helpful +longdesc to documentation authors and others to whom clear document +longdesc versioning is important. +containersize 1716 +containerchecksum 5076ebf74361a6997536988c5204a72ffd761a40c33acac03bf2a104bfac3661c91b320f47bd264d607df7dceff41a18670e7c18cf19cbb27fba1d5f273c58ca +doccontainersize 438680 +doccontainerchecksum dafc932c2d0184c848b7f7ca549a300f273fc7e358c6bfbc6b5698aaeded12071a722c856255889438e1dafd1c64d6c2adcd60766f8e1a1652a74591d5e74161 +docfiles size=115 + RELOC/doc/latex/latexgit/LICENSE + RELOC/doc/latex/latexgit/README.md details="Readme" + RELOC/doc/latex/latexgit/latexgit.pdf details="Package documentation" +srccontainersize 4856 +srccontainerchecksum 58097f88d70518c49bb0900c595eea40241a600745a8fb8a9c6f47a3deccc97aacb195305ec48fb54acbb95324b2ef27b35467bf90c27c88a960efd6d579a0ca +srcfiles size=5 + RELOC/source/latex/latexgit/latexgit.dtx + RELOC/source/latex/latexgit/latexgit.ins +runfiles size=2 + RELOC/tex/latex/latexgit/latexgit.sty +catalogue-ctan /macros/latex/contrib/latexgit +catalogue-date 2016-08-31 04:53:42 +0200 +catalogue-license gpl3 +catalogue-topics version-control doc-mgmt + +name latexindent +category Package +revision 51015 +shortdesc Indent a LaTeX document, highlighting the programming structure +longdesc The Perl script (also available as a windows executable) +longdesc processes a LaTeX file, indenting parts so as to highlight the +longdesc structure for the reader. +depend latexindent.ARCH +containersize 53160 +containerchecksum e8f6f5dd0cab6f203014a57d455996794acb84a18e690acad00f1740264b28da6e4a6f8aa0b1525c44fab01c9bd8bb9292a8bf9cacc5cd049a06c11bff57df78 +doccontainersize 755148 +doccontainerchecksum 89d85ccc7faf8890b09c9e4818a07f706c0be9b39b035bbcdaf278016a78222cfaae0292d92b13f27febaf8d4c0d1e5078295bbaf08f3d17219c495c05c1ac69 +docfiles size=259 + texmf-dist/doc/support/latexindent/README details="Readme" + texmf-dist/doc/support/latexindent/appendices.tex + texmf-dist/doc/support/latexindent/cmhlistings.tex + texmf-dist/doc/support/latexindent/figure-schematic.tex + texmf-dist/doc/support/latexindent/latexindent-module-installer.pl + texmf-dist/doc/support/latexindent/latexindent.pdf details="Package documentation" + texmf-dist/doc/support/latexindent/latexindent.tex + texmf-dist/doc/support/latexindent/logo.tex + texmf-dist/doc/support/latexindent/references.tex + texmf-dist/doc/support/latexindent/sec-conclusions-know-limitations.tex + texmf-dist/doc/support/latexindent/sec-default-user-local.tex + texmf-dist/doc/support/latexindent/sec-demonstration.tex + texmf-dist/doc/support/latexindent/sec-how-to-use.tex + texmf-dist/doc/support/latexindent/sec-indent-config-and-settings.tex + texmf-dist/doc/support/latexindent/sec-introduction.tex + texmf-dist/doc/support/latexindent/sec-the-m-switch.tex + texmf-dist/doc/support/latexindent/subsec-commands-and-their-options.tex + texmf-dist/doc/support/latexindent/subsec-conflicting-poly-switches.tex + texmf-dist/doc/support/latexindent/subsec-noAdditionalIndent-indentRules.tex + texmf-dist/doc/support/latexindent/subsec-partnering-poly-switches.tex + texmf-dist/doc/support/latexindent/subsubsec-commands-with-arguments.tex + texmf-dist/doc/support/latexindent/subsubsec-environments-and-their-arguments.tex + texmf-dist/doc/support/latexindent/subsubsec-environments-with-items.tex + texmf-dist/doc/support/latexindent/subsubsec-headings.tex + texmf-dist/doc/support/latexindent/subsubsec-ifelsefi.tex + texmf-dist/doc/support/latexindent/subsubsec-no-add-remaining-code-blocks.tex + texmf-dist/doc/support/latexindent/subsubsec-special.tex + texmf-dist/doc/support/latexindent/title.tex +runfiles size=112 + texmf-dist/scripts/latexindent/LatexIndent/AlignmentAtAmpersand.pm + texmf-dist/scripts/latexindent/LatexIndent/Arguments.pm + texmf-dist/scripts/latexindent/LatexIndent/BackUpFileProcedure.pm + texmf-dist/scripts/latexindent/LatexIndent/BlankLines.pm + texmf-dist/scripts/latexindent/LatexIndent/Braces.pm + texmf-dist/scripts/latexindent/LatexIndent/Command.pm + texmf-dist/scripts/latexindent/LatexIndent/Document.pm + texmf-dist/scripts/latexindent/LatexIndent/DoubleBackSlash.pm + texmf-dist/scripts/latexindent/LatexIndent/Else.pm + texmf-dist/scripts/latexindent/LatexIndent/Environment.pm + texmf-dist/scripts/latexindent/LatexIndent/FileContents.pm + texmf-dist/scripts/latexindent/LatexIndent/FileExtension.pm + texmf-dist/scripts/latexindent/LatexIndent/GetYamlSettings.pm + texmf-dist/scripts/latexindent/LatexIndent/Heading.pm + texmf-dist/scripts/latexindent/LatexIndent/HiddenChildren.pm + texmf-dist/scripts/latexindent/LatexIndent/HorizontalWhiteSpace.pm + texmf-dist/scripts/latexindent/LatexIndent/IfElseFi.pm + texmf-dist/scripts/latexindent/LatexIndent/Indent.pm + texmf-dist/scripts/latexindent/LatexIndent/Item.pm + texmf-dist/scripts/latexindent/LatexIndent/KeyEqualsValuesBraces.pm + texmf-dist/scripts/latexindent/LatexIndent/LogFile.pm + texmf-dist/scripts/latexindent/LatexIndent/MandatoryArgument.pm + texmf-dist/scripts/latexindent/LatexIndent/ModifyLineBreaks.pm + texmf-dist/scripts/latexindent/LatexIndent/NamedGroupingBracesBrackets.pm + texmf-dist/scripts/latexindent/LatexIndent/OptionalArgument.pm + texmf-dist/scripts/latexindent/LatexIndent/Preamble.pm + texmf-dist/scripts/latexindent/LatexIndent/RoundBrackets.pm + texmf-dist/scripts/latexindent/LatexIndent/Sentence.pm + texmf-dist/scripts/latexindent/LatexIndent/Special.pm + texmf-dist/scripts/latexindent/LatexIndent/Switches.pm + texmf-dist/scripts/latexindent/LatexIndent/Tokens.pm + texmf-dist/scripts/latexindent/LatexIndent/TrailingComments.pm + texmf-dist/scripts/latexindent/LatexIndent/UnNamedGroupingBracesBrackets.pm + texmf-dist/scripts/latexindent/LatexIndent/Verbatim.pm + texmf-dist/scripts/latexindent/LatexIndent/Version.pm + texmf-dist/scripts/latexindent/defaultSettings.yaml + texmf-dist/scripts/latexindent/latexindent.pl +catalogue-contact-bugs https://github.com/cmhughes/latexindent.pl/issues +catalogue-contact-development https://github.com/cmhughes/latexindent.pl/tree/develop +catalogue-contact-repository https://github.com/cmhughes/latexindent.pl +catalogue-ctan /support/latexindent +catalogue-date 2019-05-05 10:47:05 +0200 +catalogue-license gpl3 +catalogue-topics code-layout +catalogue-version 3.6 + +name latexindent.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of latexindent +containersize 344 +containerchecksum 911581ebf63ae01d914b5e35bf384d17e4346727f5e22e881bdce4dbb8d32cfbe9821b60dd6d74544f090389c54bf200188b240026640c01f9b0c8477289d891 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/latexindent + +name latexindent.amd64-freebsd +category Package +revision 32150 +shortdesc amd64-freebsd files of latexindent +containersize 344 +containerchecksum 0a6914e16876836c40f26c307e3f1bc49392d14be92e89e7fef1cd59d776cd5284cfd8b73b3024ea7c426cc2151c64ecbbde9903e620249e81ceb034a2a246ea +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/latexindent + +name latexindent.amd64-netbsd +category Package +revision 32150 +shortdesc amd64-netbsd files of latexindent +containersize 344 +containerchecksum 68388830b1fefea213cfce682aa5ad4200bf03df6771b2bee8d7dd7bf39cd30cf155599d4b00618c91b0caf6cf6ec51f278eb7df76c96c73d5e296d48589b9b4 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/latexindent + +name latexindent.armhf-linux +category Package +revision 32150 +shortdesc armhf-linux files of latexindent +containersize 344 +containerchecksum 183a78fc54bdcc152ee38d905bd67763744882234fa735ca1b3103f620f0a3400cbfd4dfa225520f0f328883e23c579334d1dfcf874af1e069d7f4ee17a9f808 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/latexindent + +name latexindent.i386-cygwin +category Package +revision 32150 +shortdesc i386-cygwin files of latexindent +containersize 340 +containerchecksum 63c36a9ae80ccd699769a86701aa3aca56d78039b11afbf180a1efad365d6ef7833c1b315c26dcd6594f5f16fada469716a6e57f6324330841e879b8ec359d93 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/latexindent + +name latexindent.i386-freebsd +category Package +revision 32150 +shortdesc i386-freebsd files of latexindent +containersize 344 +containerchecksum 4ab806e5a95bca15ea8305d5e68229a432d8860a36a4e807088f43463b99ef29b7175f96342d93224c1c973e0a3641dd945f7aa40742f7ba691f5264e1bd6fe9 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/latexindent + +name latexindent.i386-linux +category Package +revision 32150 +shortdesc i386-linux files of latexindent +containersize 344 +containerchecksum a7d824e960f5ddfc2e21483a9d09b398589f63c8736d47dc8735414aa98180f1a44f763896f2000d2c194a30f867c0ee758413f2949db973b03766e02d020b5d +binfiles arch=i386-linux size=1 + bin/i386-linux/latexindent + +name latexindent.i386-netbsd +category Package +revision 32150 +shortdesc i386-netbsd files of latexindent +containersize 344 +containerchecksum a040a1deeda39767b9004f0c821b7c045c47bd46447399fcc8b3a4110c5795cdd49cf394a1f9b64bdd8749d746dc21e48b34bd9b2c97d2638230f41bd39aae3d +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/latexindent + +name latexindent.i386-solaris +category Package +revision 32150 +shortdesc i386-solaris files of latexindent +containersize 344 +containerchecksum 3b3fa0574d67c0261a4d0c4fdee3ebb61183ec1897a16c477434e6c5fc645b61c5891339183734133684f7d7472cc7734d596e945351e9ee5479c6a107c1ac60 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/latexindent + +name latexindent.win32 +category Package +revision 51015 +shortdesc win32 files of latexindent +containersize 8053932 +containerchecksum 03c8f213cf9c06880776ebbda7190ce43f5e21a0116a6a3b9c93a08072938ba37d9194568822f5447afcb1a8b61594d91e564b7756dbc772b38dd5e46ac81eee +binfiles arch=win32 size=2799 + bin/win32/latexindent.exe + +name latexindent.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of latexindent +containersize 344 +containerchecksum 1e129afadfe4d59a9bf49e4c1ac328ac4d558053b7308158ddbfe7de61ab430f84209f159210a9ccd7b01338d87cf05675abbfd0b37494cc3df5e6cfba88a42f +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/latexindent + +name latexindent.x86_64-darwin +category Package +revision 32150 +shortdesc x86_64-darwin files of latexindent +containersize 344 +containerchecksum 9b425d8bc1e304344864689eecc3de33c17bb6f30663b42959fb2c9821533f524181585961e428734831ac6e87a1499e641d10e5d97f0f78a0795fc7d445fd8b +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/latexindent + +name latexindent.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of latexindent +containersize 352 +containerchecksum 9f3237f9e942bd3909e1db65cb719d5f7d4132daff735c66b23e1536da3695359e1a85ffc8704f9124ac0960ba3593c2f86836739a1203c6aaa3e7c8bd665e82 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/latexindent + +name latexindent.x86_64-linux +category Package +revision 32150 +shortdesc x86_64-linux files of latexindent +containersize 344 +containerchecksum 36a953e50a6c83edb3e7644a3fca247c7d50df862a55421153a5be62e1484de350f67033bb07bddba8f62698e7f70ce050533a6134bf62b24b7b767cf7646c8d +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/latexindent + +name latexindent.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of latexindent +containersize 348 +containerchecksum 6f10b12904497f5b928cfcec56d0066069d631189afbd2fa7213d7a0483c2003e36888a2f05e8faaf0dd4a0f638a75e49f08c0a78a0ba4c19487fc30de72dd8f +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/latexindent + +name latexindent.x86_64-solaris +category Package +revision 32150 +shortdesc x86_64-solaris files of latexindent +containersize 344 +containerchecksum 1d02fcaf6b976ad6df0fe19717efd36bf7456f62ee64b025a6e218b232c7eef76788c1e627c0c5ce2e3e02bb49d0083b0bcb9133f6f04d9953f58b50af0846bf +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/latexindent + +name latexmk +category Package +revision 50472 +shortdesc Fully automated LaTeX document generation +longdesc Latexmk completely automates the process of generating a LaTeX +longdesc document. Given the source files for a document, latexmk issues +longdesc the appropriate sequence of commands to generate a .dvi, .ps, +longdesc .pdf or hardcopy version of the document. An important feature +longdesc is the "preview continuous mode", where the script watches all +longdesc of the source files (primary file and included TeX and graphics +longdesc files), and reruns LaTeX, etc., whenever a source file has +longdesc changed. Thus a previewer can offer a display of the document's +longdesc latest state. +depend latexmk.ARCH +containersize 91284 +containerchecksum 7d87287a3e79af839f1cd91ff1ee77af493202c7eaab43bef1130fe0a9c5316a6a962c7f01e78149661ea758fa48701add4cfaaf6928a4bd3dacf6b762a96232 +doccontainersize 461660 +doccontainerchecksum 4e963edfd4656d1d45f75281d0029e83a43f8b348b3e723d6fc12d3fbdfdcb4414d70be94b87561be428bed0f0994444dfe63e76fe031e397419f3bb3d508d10 +docfiles size=246 + texmf-dist/doc/man/man1/latexmk.1 + texmf-dist/doc/man/man1/latexmk.man1.pdf + texmf-dist/doc/support/latexmk/CHANGES + texmf-dist/doc/support/latexmk/COPYING + texmf-dist/doc/support/latexmk/INSTALL + texmf-dist/doc/support/latexmk/README details="Readme" + texmf-dist/doc/support/latexmk/example_rcfiles/README-latexmk-rcfiles + texmf-dist/doc/support/latexmk/example_rcfiles/asymptote_latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/bib2gls_latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/clean_pattern_latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/exceltex1.sty + texmf-dist/doc/support/latexmk/example_rcfiles/exceltex_latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/fix-aux.latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/glossary_latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/lualatex_latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/mpost_latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/nomenclature_latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/pdflatexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/pythontex-latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/sagetex_latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/sweave_latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/tex4ht-latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/texinfo-latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/tikz-externalized-latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/xelatex_latexmkrc + texmf-dist/doc/support/latexmk/extra-scripts/README-latexmk-scripts + texmf-dist/doc/support/latexmk/extra-scripts/dvipdfm_call + texmf-dist/doc/support/latexmk/extra-scripts/dvipdfm_call.bat + texmf-dist/doc/support/latexmk/extra-scripts/dvipdfmx_call + texmf-dist/doc/support/latexmk/extra-scripts/dvipdfmx_call.bat + texmf-dist/doc/support/latexmk/extra-scripts/htlatexonly + texmf-dist/doc/support/latexmk/extra-scripts/kickxdvi + texmf-dist/doc/support/latexmk/extra-scripts/l1 + texmf-dist/doc/support/latexmk/extra-scripts/l2 + texmf-dist/doc/support/latexmk/extra-scripts/myhtlatex2 + texmf-dist/doc/support/latexmk/extra-scripts/pst2pdf_for_latexmk + texmf-dist/doc/support/latexmk/extra-scripts/pst2pdf_for_latexmk_README.txt + texmf-dist/doc/support/latexmk/extra-scripts/startacroread + texmf-dist/doc/support/latexmk/latexmk.pdf details="Manual page, PDF" + texmf-dist/doc/support/latexmk/latexmk.txt details="Manual page, text format" +srccontainersize 492 +srccontainerchecksum b981c989b54db10f5ae1d6d0c2086679899179a0649e8692e26d887788cad7847acc8c11fa9324127951cdc38716b566f74611a1877b88ca2ad89e3559f7694c +srcfiles size=1 + texmf-dist/source/support/latexmk/latexmk.bat +runfiles size=98 + texmf-dist/scripts/latexmk/latexmk.pl +catalogue-also latexn prv arara +catalogue-ctan /support/latexmk +catalogue-date 2019-03-18 21:33:46 +0100 +catalogue-license gpl2 +catalogue-topics compilation +catalogue-version 4.63b + +name latexmk.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of latexmk +containersize 340 +containerchecksum 0b397c69945221fc6575c719ba1b9a28cdec5c3e24ac2e5be0eee434f64c9be0fd8be7078cb374b8fc81a8fa97d28ecd3febbe58f35cac749281f4399d9d0f4e +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/latexmk + +name latexmk.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of latexmk +containersize 340 +containerchecksum 222eacdaca92d0299ab50705ea96b1a52e4531b1d9d653c12cdbf5da0bb295f7d62ab7338c818b47035cfd0628fc66904871ae70da0b2cafa80d731b88e4cdbd +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/latexmk + +name latexmk.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of latexmk +containersize 340 +containerchecksum dd7c0aec7485e6f52e5be18a351ddad8a57f9bacf61d5ff63b0a6aab28423ee586f5ca7c9823ae65b7170ffa767a97bbb8b5073377df2fb43bfff5e89645db77 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/latexmk + +name latexmk.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of latexmk +containersize 340 +containerchecksum 949c63fb461fba492c97e06df99c916b0071a445d3155b8e4181d33b1b21672c61c543295fa2e4bba127b42f9c6e7ce60c829b7269e44665809380f652be5241 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/latexmk + +name latexmk.i386-cygwin +category Package +revision 13717 +shortdesc i386-cygwin files of latexmk +containersize 336 +containerchecksum 5d0a0736b1a75abe2fa24a3c0b60666d96e639aed2e8267adff3666ca354dfe5b79bd326966efb9a53e2342eb7f6923f0bbb009ebfcef8d874dc3fd087b34b73 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/latexmk + +name latexmk.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of latexmk +containersize 340 +containerchecksum 77a4836e1f98ed39383075da59cbe64c3ad062dc3bba4f619518255ba576e079b5879ea5d1209c987cf982ec8a9e333c9263c4453086637378b038db3f6f2bfd +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/latexmk + +name latexmk.i386-linux +category Package +revision 10937 +shortdesc i386-linux files of latexmk +containersize 340 +containerchecksum 11ac633bf4e6551a761e3bd023c09473458f550bcd40104b48fb647f6237376c9015239dbce7a995dddf209e72c45c00e779d6eaf6fbf9810869aedf521e7b63 +binfiles arch=i386-linux size=1 + bin/i386-linux/latexmk + +name latexmk.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of latexmk +containersize 336 +containerchecksum 8aaf7efa646d8a2acdbe07a2679c2e3bfdadc359f21249e23ba3dc30c76d1709e964cb2b18c300815b463b6323c1cc68b62d77ec2879cd67bb9e1ad4e7b431b5 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/latexmk + +name latexmk.i386-solaris +category Package +revision 10937 +shortdesc i386-solaris files of latexmk +containersize 340 +containerchecksum ef40fe8a764c3ca88828efe38dfdf3d2f29f15bd0d66c8f5d9a9fb6115f28ce0f12651fd8a8f316c6a418e4d3d9cd6a4f85c9a34c05899c4818e5fce09dfcf70 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/latexmk + +name latexmk.win32 +category Package +revision 15404 +shortdesc win32 files of latexmk +containersize 684 +containerchecksum 6ffbaea9c44da9fc73228a44f55d98219e8515ed595fafeda03a2794f3c7dc1f96bff22b4e7dcdc6c5ce4ee0ce8ca07f15150ed00b8ecfcbdd12b89b685be616 +binfiles arch=win32 size=1 + bin/win32/latexmk.exe + +name latexmk.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of latexmk +containersize 340 +containerchecksum ac96bd49dca426d6b00e9cec228da0096294f89dcc8668b68cda2757b108195004e808ad1c997389ea895fb70a29e6c2ff9e54118780aa13283126260802c083 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/latexmk + +name latexmk.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of latexmk +containersize 340 +containerchecksum cfa6e95b417eae131d32823d4bbc882dbf3d5eebee74646a098afda793202f4d2d919791113db74c197da93f3db425ff51792026b300ad6639660b953c091cc3 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/latexmk + +name latexmk.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of latexmk +containersize 348 +containerchecksum 8dd10b88f495218dc9acb3a1e05dcbe4d5747df8334408094a8cdb2e5a92dd9111900ea615f038a083bff22847ba2bf5a59b405e3a31f60c37bec8b9db2ea48e +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/latexmk + +name latexmk.x86_64-linux +category Package +revision 10937 +shortdesc x86_64-linux files of latexmk +containersize 340 +containerchecksum d0d78524ebd8aecbd3f2646030150d37283be92d852aadc75c1efa33b08e1b73c6365ce4e41e86eb5626d819e75140c7fe4caf772f472b51810b7b0868f0aa4d +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/latexmk + +name latexmk.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of latexmk +containersize 344 +containerchecksum 193cec5c8d3b1bd86ca97f9f29778d5e0522995a53107112fde4d43ebe68585c486f342bb81b704d4d502f5e9a7251fd52b8203abf4fe5c0ff35c100b6168184 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/latexmk + +name latexmk.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of latexmk +containersize 340 +containerchecksum 0a951b32faa7a5c3e664c7873b0250272852a1f64ecf8d8eef0eb44a0aa962adfc06cecf78df72d978639a91b7354e70e797eda529434cc9852cc5f8afec23b3 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/latexmk + +name latexmp +category Package +revision 15878 +shortdesc Interface for LaTeX-based typesetting in MetaPost +relocated 1 +longdesc The MetaPost package latexMP implements a user-friendly +longdesc interface to access LaTeX-based typesetting capabilities in +longdesc MetaPost. The text to be typeset is given as string. This +longdesc allows even dynamic text elements, for example counters, to be +longdesc used in labels. Compared to other implementations it is much +longdesc more flexible, since it can be used as direct replacement for +longdesc btex..etex, and much faster, compared for example to the +longdesc solution provided by tex.mp +containersize 5284 +containerchecksum e63d213969434907df862dba2684ea76f8603a8283764ff431edace0802a61cbf3eadea6a532a21cc83d722359ac39680e716a24859b85f526dcfd809ca319d9 +doccontainersize 147444 +doccontainerchecksum 7668afd5cc1dd365811f8e4290392037adcf5f3bb220e062588a446827f1d39510137185699d4b667f2b452809704d3c08caa889bb52cecafd0e190b0e7c49a5 +docfiles size=44 + RELOC/doc/metapost/latexmp/README details="Readme" + RELOC/doc/metapost/latexmp/latexmp.pdf details="Package documentation" +runfiles size=4 + RELOC/metapost/latexmp/latexmp.mp +catalogue-ctan /graphics/metapost/contrib/macros/latexmp +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics graphics-text +catalogue-version 1.2.1 + +name latexpand +category Package +revision 50079 +shortdesc Expand \input and \include in a LaTeX document +longdesc Latexpand is a Perl script that simply replaces \input and +longdesc \include commands with the content of the input or included +longdesc file. The script does not deal with \includeonly commands. +depend latexpand.ARCH +containersize 5752 +containerchecksum 9248c63fa16b9f9ccfb0243bdc6d56bb80b9887e26d8f1cae53092ecef94f046f554d8c5b9ed6cacf7202dd5be212472f8bddf9eb740f4ce54e521c9baaf75dd +doccontainersize 3072 +doccontainerchecksum faf4b269446a008ba77d37d8f51ab123171a3cc56d59dc6fae9c5274833e97276c24392064f6f95e8e8eb5b88717d1c4433a915208cd81788364d382aae200c5 +docfiles size=4 + texmf-dist/doc/support/latexpand/LICENCE + texmf-dist/doc/support/latexpand/README details="Readme" + texmf-dist/doc/support/latexpand/version.txt +runfiles size=5 + texmf-dist/scripts/latexpand/latexpand +catalogue-contact-repository https://gitlab.com/latexpand/latexpand +catalogue-ctan /support/latexpand +catalogue-date 2019-02-20 20:34:48 +0100 +catalogue-license bsd +catalogue-topics file-mgmt +catalogue-version 1.5 + +name latexpand.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of latexpand +containersize 340 +containerchecksum e01996eb076bcd2045509b6296d35cb476e64e2bc3fffeeb6fd73f257916e7ddcb90e7134cc3cdea8e2946fff8747e9241e0234257311fd01f172de096e1e061 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/latexpand + +name latexpand.amd64-freebsd +category Package +revision 27025 +shortdesc amd64-freebsd files of latexpand +containersize 340 +containerchecksum c86d80784c888907e13dfc5c1fc45e64fd8f9621e604457ff5456fccef927b7ef49ecaa04e5c8e4b364c49b7f73d9cc62689ae87dab8a6e9eaeb7131d9f00a78 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/latexpand + +name latexpand.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of latexpand +containersize 340 +containerchecksum 0e4eb847fa6863aac11bd3788359d2a4f1922bbe6e6a0213284e5b27c5ec92b92e8de8b0de140026a8761b4321c01f9f38b8193344b0f7fe70cdfc51a279f991 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/latexpand + +name latexpand.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of latexpand +containersize 336 +containerchecksum 639827d3b54121c42d6a2b0a46787a335897d9c883500534c6eacc8f91ba90a969e5261d3ba026dc51687c31c307849ca87859ebf413994bdddd1c78c569ff67 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/latexpand + +name latexpand.i386-cygwin +category Package +revision 27025 +shortdesc i386-cygwin files of latexpand +containersize 336 +containerchecksum 23e8f1ed6bd3079f95f20b2d9bfeaa2cc918593a8e8a28654ef8bcabb7d7816b7b23f1e32fa90680c3e47462db05e58497ee36e32cf33e59b5e259507158a7c9 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/latexpand + +name latexpand.i386-freebsd +category Package +revision 27025 +shortdesc i386-freebsd files of latexpand +containersize 340 +containerchecksum 7300e33a318c9638390be9f47407fc2fd36a0e3acc50117f8b42eeba7a99fbee813ebae3e1f0b71f9b4f4adacce5c6e35dfbc34f494dbbb8b76387a6831eafe6 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/latexpand + +name latexpand.i386-linux +category Package +revision 27025 +shortdesc i386-linux files of latexpand +containersize 340 +containerchecksum 925c90b542dfedb1c4d29ed039a32f3cf97ec6ccc51592b6070f5ec25407d54d0d54a50d439d4e29d408230fff592798e1d3f2eb84ae8629ce0ed2b19b6a04c5 +binfiles arch=i386-linux size=1 + bin/i386-linux/latexpand + +name latexpand.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of latexpand +containersize 336 +containerchecksum 5f8d61a5316e020fca5187e28d57c24d041f8f794a67f1894043c63fa58baf7594d56b1fa2731524b7f4df4e25cf72562547334446ec41ff7d814c3af17c8b89 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/latexpand + +name latexpand.i386-solaris +category Package +revision 27025 +shortdesc i386-solaris files of latexpand +containersize 340 +containerchecksum fbf1283bbf71aeb6cc9e38fe8562c1bf57855e5d1f3d163c367c58092c59761b489ba20897abead3e6c20a3dbcbe69f6feb0a18fd9148c49cbf6db3770877400 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/latexpand + +name latexpand.win32 +category Package +revision 27025 +shortdesc win32 files of latexpand +containersize 680 +containerchecksum 21c9edc74fe645c4e2ccb7a24196c71710d9e4ca730069bbaffc3012f804623a92bca4e6d491d773a398d42d8ddc118a57c078b98b35d481cd8da45865c88bbf +binfiles arch=win32 size=1 + bin/win32/latexpand.exe + +name latexpand.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of latexpand +containersize 340 +containerchecksum a2dcab5e90c37ce8686d4fbc5902b89528619738f41d507bf90d69e1c6e06263fe33d30f33c33899b9d0895d92c981b95c561c19807758b67ca4c4fd9b494055 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/latexpand + +name latexpand.x86_64-darwin +category Package +revision 27025 +shortdesc x86_64-darwin files of latexpand +containersize 340 +containerchecksum 0517c43e0ab1ab4881955bc8b7a61aefe51019f5be8af58766e451f6b504f0c797e9ec45f75ed3fcebfcf4cd32044d5169b769d184963b63217674cac293d980 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/latexpand + +name latexpand.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of latexpand +containersize 344 +containerchecksum c741381ee39621d1416b1e5cec65407b5c73f0c41b161db2c096ba03c52dd20947224bafd31814f38b3abd01ade9ce9773d0d5b5c6d45f8f865bc8c4d26b565c +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/latexpand + +name latexpand.x86_64-linux +category Package +revision 27025 +shortdesc x86_64-linux files of latexpand +containersize 336 +containerchecksum fd892c3d6faf3e3b42fe1789e7dbe99aa571f3f6be1bf38d7b8dc0936c9374061a855268fbedc5107e35bd0f7eb29e8dd160f67bae49aa4bc082c14f75902cb1 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/latexpand + +name latexpand.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of latexpand +containersize 344 +containerchecksum 4f92b83c54340c4b5e5a23935e122b056265ed73566a337d91d16538f113bcac5949bd8b7567753276308b4a29b0f5c33c3ae26aaf88180b1437dd8a96cb38a2 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/latexpand + +name latexpand.x86_64-solaris +category Package +revision 27025 +shortdesc x86_64-solaris files of latexpand +containersize 340 +containerchecksum d9b69e3f9d1799d7305bafc6b377e1c95c186f951fe353bfb464bbe08bc226f7e1876a028c4e6f743a5c9cf001440fa51960d19065f155edfcb6b239138b5032 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/latexpand name lato category Package -revision 24986 -shortdesc Lato font family and LaTeX support. +revision 45576 +shortdesc Lato font family and LaTeX support relocated 1 longdesc Lato is a sanserif typeface family designed in the Summer 2010 longdesc by Warsaw-based designer Lukasz Dziedzic for the tyPoland @@ -94273,270 +151373,1787 @@ longdesc LaTeX. It includes the original TrueType fonts, as well as Type longdesc 1 versions, converted for this package using FontForge for full longdesc support with Dvips. execute addMap lato.map -runfiles size=1022 - RELOC/fonts/afm/public/lato/Lato-Bla-LCDFJ.afm - RELOC/fonts/afm/public/lato/Lato-Bla.afm - RELOC/fonts/afm/public/lato/Lato-BlaIta-LCDFJ.afm - RELOC/fonts/afm/public/lato/Lato-BlaIta.afm - RELOC/fonts/afm/public/lato/Lato-Bol-LCDFJ.afm - RELOC/fonts/afm/public/lato/Lato-Bol.afm - RELOC/fonts/afm/public/lato/Lato-BolIta-LCDFJ.afm - RELOC/fonts/afm/public/lato/Lato-BolIta.afm - RELOC/fonts/afm/public/lato/Lato-Hai-LCDFJ.afm - RELOC/fonts/afm/public/lato/Lato-Hai.afm - RELOC/fonts/afm/public/lato/Lato-HaiIta-LCDFJ.afm - RELOC/fonts/afm/public/lato/Lato-HaiIta.afm - RELOC/fonts/afm/public/lato/Lato-Lig-LCDFJ.afm - RELOC/fonts/afm/public/lato/Lato-Lig.afm - RELOC/fonts/afm/public/lato/Lato-LigIta-LCDFJ.afm - RELOC/fonts/afm/public/lato/Lato-LigIta.afm - RELOC/fonts/afm/public/lato/Lato-Reg-LCDFJ.afm - RELOC/fonts/afm/public/lato/Lato-Reg.afm - RELOC/fonts/afm/public/lato/Lato-RegIta-LCDFJ.afm - RELOC/fonts/afm/public/lato/Lato-RegIta.afm - RELOC/fonts/enc/dvips/lato/lato-01.enc - RELOC/fonts/enc/dvips/lato/lato-02.enc - RELOC/fonts/enc/dvips/lato/lato-dotlessj.enc - RELOC/fonts/map/dvips/lato/lato.map - RELOC/fonts/tfm/public/lato/Lato-Bla-01.tfm - RELOC/fonts/tfm/public/lato/Lato-Bla-02.tfm - RELOC/fonts/tfm/public/lato/Lato-Bla-SmallCaps-ot1.tfm - RELOC/fonts/tfm/public/lato/Lato-Bla-SmallCaps-t1.tfm - RELOC/fonts/tfm/public/lato/Lato-Bla-dotlessj.tfm - RELOC/fonts/tfm/public/lato/Lato-Bla-ot1.tfm - RELOC/fonts/tfm/public/lato/Lato-Bla-t1.tfm - RELOC/fonts/tfm/public/lato/Lato-Bla-ts1.tfm - RELOC/fonts/tfm/public/lato/Lato-BlaIta-01.tfm - RELOC/fonts/tfm/public/lato/Lato-BlaIta-02.tfm - RELOC/fonts/tfm/public/lato/Lato-BlaIta-SmallCaps-ot1.tfm - RELOC/fonts/tfm/public/lato/Lato-BlaIta-SmallCaps-t1.tfm - RELOC/fonts/tfm/public/lato/Lato-BlaIta-dotlessj.tfm - RELOC/fonts/tfm/public/lato/Lato-BlaIta-ot1.tfm - RELOC/fonts/tfm/public/lato/Lato-BlaIta-t1.tfm - RELOC/fonts/tfm/public/lato/Lato-BlaIta-ts1.tfm - RELOC/fonts/tfm/public/lato/Lato-Bol-01.tfm - RELOC/fonts/tfm/public/lato/Lato-Bol-02.tfm - RELOC/fonts/tfm/public/lato/Lato-Bol-SmallCaps-ot1.tfm - RELOC/fonts/tfm/public/lato/Lato-Bol-SmallCaps-t1.tfm - RELOC/fonts/tfm/public/lato/Lato-Bol-dotlessj.tfm - RELOC/fonts/tfm/public/lato/Lato-Bol-ot1.tfm - RELOC/fonts/tfm/public/lato/Lato-Bol-t1.tfm - RELOC/fonts/tfm/public/lato/Lato-Bol-ts1.tfm - RELOC/fonts/tfm/public/lato/Lato-BolIta-01.tfm - RELOC/fonts/tfm/public/lato/Lato-BolIta-02.tfm - RELOC/fonts/tfm/public/lato/Lato-BolIta-SmallCaps-ot1.tfm - RELOC/fonts/tfm/public/lato/Lato-BolIta-SmallCaps-t1.tfm - RELOC/fonts/tfm/public/lato/Lato-BolIta-dotlessj.tfm - RELOC/fonts/tfm/public/lato/Lato-BolIta-ot1.tfm - RELOC/fonts/tfm/public/lato/Lato-BolIta-t1.tfm - RELOC/fonts/tfm/public/lato/Lato-BolIta-ts1.tfm - RELOC/fonts/tfm/public/lato/Lato-Hai-01.tfm - RELOC/fonts/tfm/public/lato/Lato-Hai-02.tfm - RELOC/fonts/tfm/public/lato/Lato-Hai-SmallCaps-ot1.tfm - RELOC/fonts/tfm/public/lato/Lato-Hai-SmallCaps-t1.tfm - RELOC/fonts/tfm/public/lato/Lato-Hai-dotlessj.tfm - RELOC/fonts/tfm/public/lato/Lato-Hai-ot1.tfm - RELOC/fonts/tfm/public/lato/Lato-Hai-t1.tfm - RELOC/fonts/tfm/public/lato/Lato-Hai-ts1.tfm - RELOC/fonts/tfm/public/lato/Lato-HaiIta-01.tfm - RELOC/fonts/tfm/public/lato/Lato-HaiIta-02.tfm - RELOC/fonts/tfm/public/lato/Lato-HaiIta-SmallCaps-ot1.tfm - RELOC/fonts/tfm/public/lato/Lato-HaiIta-SmallCaps-t1.tfm - RELOC/fonts/tfm/public/lato/Lato-HaiIta-dotlessj.tfm - RELOC/fonts/tfm/public/lato/Lato-HaiIta-ot1.tfm - RELOC/fonts/tfm/public/lato/Lato-HaiIta-t1.tfm - RELOC/fonts/tfm/public/lato/Lato-HaiIta-ts1.tfm - RELOC/fonts/tfm/public/lato/Lato-Lig-01.tfm - RELOC/fonts/tfm/public/lato/Lato-Lig-02.tfm - RELOC/fonts/tfm/public/lato/Lato-Lig-SmallCaps-ot1.tfm - RELOC/fonts/tfm/public/lato/Lato-Lig-SmallCaps-t1.tfm - RELOC/fonts/tfm/public/lato/Lato-Lig-dotlessj.tfm - RELOC/fonts/tfm/public/lato/Lato-Lig-ot1.tfm - RELOC/fonts/tfm/public/lato/Lato-Lig-t1.tfm - RELOC/fonts/tfm/public/lato/Lato-Lig-ts1.tfm - RELOC/fonts/tfm/public/lato/Lato-LigIta-01.tfm - RELOC/fonts/tfm/public/lato/Lato-LigIta-02.tfm - RELOC/fonts/tfm/public/lato/Lato-LigIta-SmallCaps-ot1.tfm - RELOC/fonts/tfm/public/lato/Lato-LigIta-SmallCaps-t1.tfm - RELOC/fonts/tfm/public/lato/Lato-LigIta-dotlessj.tfm - RELOC/fonts/tfm/public/lato/Lato-LigIta-ot1.tfm - RELOC/fonts/tfm/public/lato/Lato-LigIta-t1.tfm - RELOC/fonts/tfm/public/lato/Lato-LigIta-ts1.tfm - RELOC/fonts/tfm/public/lato/Lato-Reg-01.tfm - RELOC/fonts/tfm/public/lato/Lato-Reg-02.tfm - RELOC/fonts/tfm/public/lato/Lato-Reg-SmallCaps-ot1.tfm - RELOC/fonts/tfm/public/lato/Lato-Reg-SmallCaps-t1.tfm - RELOC/fonts/tfm/public/lato/Lato-Reg-dotlessj.tfm - RELOC/fonts/tfm/public/lato/Lato-Reg-ot1.tfm - RELOC/fonts/tfm/public/lato/Lato-Reg-t1.tfm - RELOC/fonts/tfm/public/lato/Lato-Reg-ts1.tfm - RELOC/fonts/tfm/public/lato/Lato-RegIta-01.tfm - RELOC/fonts/tfm/public/lato/Lato-RegIta-02.tfm - RELOC/fonts/tfm/public/lato/Lato-RegIta-SmallCaps-ot1.tfm - RELOC/fonts/tfm/public/lato/Lato-RegIta-SmallCaps-t1.tfm - RELOC/fonts/tfm/public/lato/Lato-RegIta-dotlessj.tfm - RELOC/fonts/tfm/public/lato/Lato-RegIta-ot1.tfm - RELOC/fonts/tfm/public/lato/Lato-RegIta-t1.tfm - RELOC/fonts/tfm/public/lato/Lato-RegIta-ts1.tfm - RELOC/fonts/truetype/public/lato/Lato-Bla.ttf - RELOC/fonts/truetype/public/lato/Lato-BlaIta.ttf - RELOC/fonts/truetype/public/lato/Lato-Bol.ttf - RELOC/fonts/truetype/public/lato/Lato-BolIta.ttf - RELOC/fonts/truetype/public/lato/Lato-Hai.ttf - RELOC/fonts/truetype/public/lato/Lato-HaiIta.ttf - RELOC/fonts/truetype/public/lato/Lato-Lig.ttf - RELOC/fonts/truetype/public/lato/Lato-LigIta.ttf - RELOC/fonts/truetype/public/lato/Lato-Reg.ttf - RELOC/fonts/truetype/public/lato/Lato-RegIta.ttf - RELOC/fonts/type1/public/lato/Lato-Bla-LCDFJ.pfb - RELOC/fonts/type1/public/lato/Lato-Bla.pfb - RELOC/fonts/type1/public/lato/Lato-BlaIta-LCDFJ.pfb - RELOC/fonts/type1/public/lato/Lato-BlaIta.pfb - RELOC/fonts/type1/public/lato/Lato-Bol-LCDFJ.pfb - RELOC/fonts/type1/public/lato/Lato-Bol.pfb - RELOC/fonts/type1/public/lato/Lato-BolIta-LCDFJ.pfb - RELOC/fonts/type1/public/lato/Lato-BolIta.pfb - RELOC/fonts/type1/public/lato/Lato-Hai-LCDFJ.pfb - RELOC/fonts/type1/public/lato/Lato-Hai.pfb - RELOC/fonts/type1/public/lato/Lato-HaiIta-LCDFJ.pfb - RELOC/fonts/type1/public/lato/Lato-HaiIta.pfb - RELOC/fonts/type1/public/lato/Lato-Lig-LCDFJ.pfb - RELOC/fonts/type1/public/lato/Lato-Lig.pfb - RELOC/fonts/type1/public/lato/Lato-LigIta-LCDFJ.pfb - RELOC/fonts/type1/public/lato/Lato-LigIta.pfb - RELOC/fonts/type1/public/lato/Lato-Reg-LCDFJ.pfb - RELOC/fonts/type1/public/lato/Lato-Reg.pfb - RELOC/fonts/type1/public/lato/Lato-RegIta-LCDFJ.pfb - RELOC/fonts/type1/public/lato/Lato-RegIta.pfb - RELOC/fonts/vf/public/lato/Lato-Bla-SmallCaps-ot1.vf - RELOC/fonts/vf/public/lato/Lato-Bla-SmallCaps-t1.vf - RELOC/fonts/vf/public/lato/Lato-Bla-ot1.vf - RELOC/fonts/vf/public/lato/Lato-Bla-t1.vf - RELOC/fonts/vf/public/lato/Lato-Bla-ts1.vf - RELOC/fonts/vf/public/lato/Lato-BlaIta-SmallCaps-ot1.vf - RELOC/fonts/vf/public/lato/Lato-BlaIta-SmallCaps-t1.vf - RELOC/fonts/vf/public/lato/Lato-BlaIta-ot1.vf - RELOC/fonts/vf/public/lato/Lato-BlaIta-t1.vf - RELOC/fonts/vf/public/lato/Lato-BlaIta-ts1.vf - RELOC/fonts/vf/public/lato/Lato-Bol-SmallCaps-ot1.vf - RELOC/fonts/vf/public/lato/Lato-Bol-SmallCaps-t1.vf - RELOC/fonts/vf/public/lato/Lato-Bol-ot1.vf - RELOC/fonts/vf/public/lato/Lato-Bol-t1.vf - RELOC/fonts/vf/public/lato/Lato-Bol-ts1.vf - RELOC/fonts/vf/public/lato/Lato-BolIta-SmallCaps-ot1.vf - RELOC/fonts/vf/public/lato/Lato-BolIta-SmallCaps-t1.vf - RELOC/fonts/vf/public/lato/Lato-BolIta-ot1.vf - RELOC/fonts/vf/public/lato/Lato-BolIta-t1.vf - RELOC/fonts/vf/public/lato/Lato-BolIta-ts1.vf - RELOC/fonts/vf/public/lato/Lato-Hai-SmallCaps-ot1.vf - RELOC/fonts/vf/public/lato/Lato-Hai-SmallCaps-t1.vf - RELOC/fonts/vf/public/lato/Lato-Hai-ot1.vf - RELOC/fonts/vf/public/lato/Lato-Hai-t1.vf - RELOC/fonts/vf/public/lato/Lato-Hai-ts1.vf - RELOC/fonts/vf/public/lato/Lato-HaiIta-SmallCaps-ot1.vf - RELOC/fonts/vf/public/lato/Lato-HaiIta-SmallCaps-t1.vf - RELOC/fonts/vf/public/lato/Lato-HaiIta-ot1.vf - RELOC/fonts/vf/public/lato/Lato-HaiIta-t1.vf - RELOC/fonts/vf/public/lato/Lato-HaiIta-ts1.vf - RELOC/fonts/vf/public/lato/Lato-Lig-SmallCaps-ot1.vf - RELOC/fonts/vf/public/lato/Lato-Lig-SmallCaps-t1.vf - RELOC/fonts/vf/public/lato/Lato-Lig-ot1.vf - RELOC/fonts/vf/public/lato/Lato-Lig-t1.vf - RELOC/fonts/vf/public/lato/Lato-Lig-ts1.vf - RELOC/fonts/vf/public/lato/Lato-LigIta-SmallCaps-ot1.vf - RELOC/fonts/vf/public/lato/Lato-LigIta-SmallCaps-t1.vf - RELOC/fonts/vf/public/lato/Lato-LigIta-ot1.vf - RELOC/fonts/vf/public/lato/Lato-LigIta-t1.vf - RELOC/fonts/vf/public/lato/Lato-LigIta-ts1.vf - RELOC/fonts/vf/public/lato/Lato-Reg-SmallCaps-ot1.vf - RELOC/fonts/vf/public/lato/Lato-Reg-SmallCaps-t1.vf - RELOC/fonts/vf/public/lato/Lato-Reg-ot1.vf - RELOC/fonts/vf/public/lato/Lato-Reg-t1.vf - RELOC/fonts/vf/public/lato/Lato-Reg-ts1.vf - RELOC/fonts/vf/public/lato/Lato-RegIta-SmallCaps-ot1.vf - RELOC/fonts/vf/public/lato/Lato-RegIta-SmallCaps-t1.vf - RELOC/fonts/vf/public/lato/Lato-RegIta-ot1.vf - RELOC/fonts/vf/public/lato/Lato-RegIta-t1.vf - RELOC/fonts/vf/public/lato/Lato-RegIta-ts1.vf - RELOC/tex/latex/lato/lato.sty - RELOC/tex/latex/lato/ot1fla.fd - RELOC/tex/latex/lato/t1fla.fd - RELOC/tex/latex/lato/ts1fla.fd -docfiles size=100 +containersize 22564508 +containerchecksum 2e6142904eeedb1bf1b7abfcc52dc615a548a435ff8fcaefde45c6b5e8aa5fb0eccf3b90849ed948abb2864d2a4aadae6daeaab2abb55aa3a2de87e1a0991fb9 +doccontainersize 1920384 +doccontainerchecksum 3f78805bcbbd0b979b5877297e2b0d6451a25831f2277cc30973fec031590adb202c714acc31e004087e54ca1a6cbde3c5725de3d9d385361d513f917d4929b2 +docfiles size=496 RELOC/doc/fonts/lato/CHANGES - RELOC/doc/fonts/lato/README - RELOC/doc/fonts/lato/lato-samples.pdf + RELOC/doc/fonts/lato/README details="Readme" + RELOC/doc/fonts/lato/lato-samples.pdf details="Font samples" RELOC/doc/fonts/lato/lato-samples.tex - RELOC/doc/fonts/lato/lato.pdf + RELOC/doc/fonts/lato/lato.pdf details="Package documentation" RELOC/doc/fonts/lato/lato.tex RELOC/doc/fonts/lato/manifest.txt -srcfiles size=14 - RELOC/source/fonts/lato/Makefile - RELOC/source/fonts/lato/lato-01.etx - RELOC/source/fonts/lato/lato-02.etx - RELOC/source/fonts/lato/lato-dotlessj.etx - RELOC/source/fonts/lato/lato-drv.tex - RELOC/source/fonts/lato/lato-fixlatin.mtx - RELOC/source/fonts/lato/lato-fixtextcomp.mtx - RELOC/source/fonts/lato/lato-map.tex - RELOC/source/fonts/lato/ttf2type1.pe +runfiles size=14001 + RELOC/fonts/enc/dvips/lato/a_2crngg.enc + RELOC/fonts/enc/dvips/lato/a_2mat6d.enc + RELOC/fonts/enc/dvips/lato/a_2nnrle.enc + RELOC/fonts/enc/dvips/lato/a_3amarq.enc + RELOC/fonts/enc/dvips/lato/a_4rrhyw.enc + RELOC/fonts/enc/dvips/lato/a_576ays.enc + RELOC/fonts/enc/dvips/lato/a_6yrmjt.enc + RELOC/fonts/enc/dvips/lato/a_72pcjj.enc + RELOC/fonts/enc/dvips/lato/a_as3d7g.enc + RELOC/fonts/enc/dvips/lato/a_awj6io.enc + RELOC/fonts/enc/dvips/lato/a_byeiol.enc + RELOC/fonts/enc/dvips/lato/a_cl5fci.enc + RELOC/fonts/enc/dvips/lato/a_csihup.enc + RELOC/fonts/enc/dvips/lato/a_ctv25v.enc + RELOC/fonts/enc/dvips/lato/a_dhpcmg.enc + RELOC/fonts/enc/dvips/lato/a_dorwc5.enc + RELOC/fonts/enc/dvips/lato/a_ejjc4w.enc + RELOC/fonts/enc/dvips/lato/a_foh2p7.enc + RELOC/fonts/enc/dvips/lato/a_hckf57.enc + RELOC/fonts/enc/dvips/lato/a_hr5pmb.enc + RELOC/fonts/enc/dvips/lato/a_kxxqs7.enc + RELOC/fonts/enc/dvips/lato/a_kzqx6e.enc + RELOC/fonts/enc/dvips/lato/a_m6hzhe.enc + RELOC/fonts/enc/dvips/lato/a_osqgsk.enc + RELOC/fonts/enc/dvips/lato/a_p45uqa.enc + RELOC/fonts/enc/dvips/lato/a_pgvvar.enc + RELOC/fonts/enc/dvips/lato/a_qmhr5f.enc + RELOC/fonts/enc/dvips/lato/a_spmrut.enc + RELOC/fonts/enc/dvips/lato/a_vrywxr.enc + RELOC/fonts/enc/dvips/lato/a_vu5rq2.enc + RELOC/fonts/enc/dvips/lato/a_w6akef.enc + RELOC/fonts/enc/dvips/lato/a_wn4snn.enc + RELOC/fonts/map/dvips/lato/lato.map + RELOC/fonts/tfm/typoland/lato/Lato-Black-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Black-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BlackItalic-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Bold-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-BoldItalic-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Hairline-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HairlineItalic-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Heavy-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-HeavyItalic-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Italic-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Light-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-LightItalic-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Medium-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-MediumItalic-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Regular-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Semibold-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-SemiboldItalic-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-Thin-X2-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-LGR-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-LGR-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-LGR-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-LGR-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-OT1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-OT1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-OT1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-OT1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-OT1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-OT1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-OT1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-OT1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2A-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2A-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2A-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2A-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2A-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2A-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2A-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2A-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2B-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2B-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2B-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2B-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2B-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2B-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2B-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2B-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2C-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2C-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2C-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2C-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2C-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2C-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2C-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-T2C-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-TS1-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-TS1-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-TS1-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-TS1-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-TS1-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-TS1-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-TS1-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-TS1-TOsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-X2-LF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-X2-LF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-X2-OsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-X2-OsF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-X2-TLF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-X2-TLF.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-X2-TOsF--base.tfm + RELOC/fonts/tfm/typoland/lato/Lato-ThinItalic-X2-TOsF.tfm + RELOC/fonts/truetype/typoland/lato/Lato-Black.ttf + RELOC/fonts/truetype/typoland/lato/Lato-BlackItalic.ttf + RELOC/fonts/truetype/typoland/lato/Lato-Bold.ttf + RELOC/fonts/truetype/typoland/lato/Lato-BoldItalic.ttf + RELOC/fonts/truetype/typoland/lato/Lato-Hairline.ttf + RELOC/fonts/truetype/typoland/lato/Lato-HairlineItalic.ttf + RELOC/fonts/truetype/typoland/lato/Lato-Heavy.ttf + RELOC/fonts/truetype/typoland/lato/Lato-HeavyItalic.ttf + RELOC/fonts/truetype/typoland/lato/Lato-Italic.ttf + RELOC/fonts/truetype/typoland/lato/Lato-Light.ttf + RELOC/fonts/truetype/typoland/lato/Lato-LightItalic.ttf + RELOC/fonts/truetype/typoland/lato/Lato-Medium.ttf + RELOC/fonts/truetype/typoland/lato/Lato-MediumItalic.ttf + RELOC/fonts/truetype/typoland/lato/Lato-Regular.ttf + RELOC/fonts/truetype/typoland/lato/Lato-Semibold.ttf + RELOC/fonts/truetype/typoland/lato/Lato-SemiboldItalic.ttf + RELOC/fonts/truetype/typoland/lato/Lato-Thin.ttf + RELOC/fonts/truetype/typoland/lato/Lato-ThinItalic.ttf + RELOC/fonts/type1/typoland/lato/Lato-Black.pfb + RELOC/fonts/type1/typoland/lato/Lato-BlackItalic.pfb + RELOC/fonts/type1/typoland/lato/Lato-Bold.pfb + RELOC/fonts/type1/typoland/lato/Lato-BoldItalic.pfb + RELOC/fonts/type1/typoland/lato/Lato-Hairline.pfb + RELOC/fonts/type1/typoland/lato/Lato-HairlineItalic.pfb + RELOC/fonts/type1/typoland/lato/Lato-Heavy.pfb + RELOC/fonts/type1/typoland/lato/Lato-HeavyItalic.pfb + RELOC/fonts/type1/typoland/lato/Lato-Italic.pfb + RELOC/fonts/type1/typoland/lato/Lato-Light.pfb + RELOC/fonts/type1/typoland/lato/Lato-LightItalic.pfb + RELOC/fonts/type1/typoland/lato/Lato-Medium.pfb + RELOC/fonts/type1/typoland/lato/Lato-MediumItalic.pfb + RELOC/fonts/type1/typoland/lato/Lato-Regular.pfb + RELOC/fonts/type1/typoland/lato/Lato-Semibold.pfb + RELOC/fonts/type1/typoland/lato/Lato-SemiboldItalic.pfb + RELOC/fonts/type1/typoland/lato/Lato-Thin.pfb + RELOC/fonts/type1/typoland/lato/Lato-ThinItalic.pfb + RELOC/fonts/vf/typoland/lato/Lato-Black-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Black-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BlackItalic-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Bold-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-BoldItalic-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Hairline-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HairlineItalic-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Heavy-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-HeavyItalic-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Italic-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Light-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-LightItalic-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Medium-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-MediumItalic-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Regular-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Semibold-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-SemiboldItalic-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-Thin-X2-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-OT1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-OT1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-OT1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-OT1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T2A-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T2A-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T2A-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T2A-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T2B-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T2B-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T2B-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T2B-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T2C-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T2C-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T2C-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-T2C-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-TS1-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-TS1-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-TS1-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-TS1-TOsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-X2-LF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-X2-OsF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-X2-TLF.vf + RELOC/fonts/vf/typoland/lato/Lato-ThinItalic-X2-TOsF.vf + RELOC/tex/latex/lato/LGRfla.fd + RELOC/tex/latex/lato/LGRlato-LF.fd + RELOC/tex/latex/lato/LGRlato-OsF.fd + RELOC/tex/latex/lato/LGRlato-TLF.fd + RELOC/tex/latex/lato/LGRlato-TOsF.fd + RELOC/tex/latex/lato/OT1fla.fd + RELOC/tex/latex/lato/OT1lato-LF.fd + RELOC/tex/latex/lato/OT1lato-OsF.fd + RELOC/tex/latex/lato/OT1lato-TLF.fd + RELOC/tex/latex/lato/OT1lato-TOsF.fd + RELOC/tex/latex/lato/T1fla.fd + RELOC/tex/latex/lato/T1lato-LF.fd + RELOC/tex/latex/lato/T1lato-OsF.fd + RELOC/tex/latex/lato/T1lato-TLF.fd + RELOC/tex/latex/lato/T1lato-TOsF.fd + RELOC/tex/latex/lato/T2Afla.fd + RELOC/tex/latex/lato/T2Alato-LF.fd + RELOC/tex/latex/lato/T2Alato-OsF.fd + RELOC/tex/latex/lato/T2Alato-TLF.fd + RELOC/tex/latex/lato/T2Alato-TOsF.fd + RELOC/tex/latex/lato/T2Bfla.fd + RELOC/tex/latex/lato/T2Blato-LF.fd + RELOC/tex/latex/lato/T2Blato-OsF.fd + RELOC/tex/latex/lato/T2Blato-TLF.fd + RELOC/tex/latex/lato/T2Blato-TOsF.fd + RELOC/tex/latex/lato/T2Cfla.fd + RELOC/tex/latex/lato/T2Clato-LF.fd + RELOC/tex/latex/lato/T2Clato-OsF.fd + RELOC/tex/latex/lato/T2Clato-TLF.fd + RELOC/tex/latex/lato/T2Clato-TOsF.fd + RELOC/tex/latex/lato/TS1fla.fd + RELOC/tex/latex/lato/TS1lato-LF.fd + RELOC/tex/latex/lato/TS1lato-OsF.fd + RELOC/tex/latex/lato/TS1lato-TLF.fd + RELOC/tex/latex/lato/TS1lato-TOsF.fd + RELOC/tex/latex/lato/X2fla.fd + RELOC/tex/latex/lato/X2lato-LF.fd + RELOC/tex/latex/lato/X2lato-OsF.fd + RELOC/tex/latex/lato/X2lato-TLF.fd + RELOC/tex/latex/lato/X2lato-TOsF.fd + RELOC/tex/latex/lato/lato.sty +catalogue-contact-home http://www.latofonts.com/ catalogue-ctan /fonts/lato -catalogue-date 2014-05-07 18:10:38 +0200 +catalogue-date 2017-10-22 17:59:47 +0200 catalogue-license lppl1.3 -catalogue-version 2.2 +catalogue-topics font font-type1 font-ttf font-sans +catalogue-version 3.0 name layaureo category Package revision 19087 -shortdesc A package to improve the A4 page layout. +shortdesc A package to improve the A4 page layout relocated 1 longdesc This package produces a wide page layout for documents that use longdesc A4 paper size. Moreover, LayAureo provides both a simple hook longdesc for leaving an empty space which is required if pages are longdesc bundled by a press binding (use option binding=length), and an longdesc option called big which it forces typearea to become maximum. -runfiles size=1 - RELOC/tex/latex/layaureo/layaureo.sty +containersize 1748 +containerchecksum 849b0e0fbd15b45cb31ed4856b0eaa190c26437a1965da2c860af62b65cbb000b590320611e96c5a6c4cc63c029c31fb352ec44d96e0704eb52c70ee460abcd3 +doccontainersize 126876 +doccontainerchecksum b4333e1361b352689dfd67e13a694a304449eac61ef8189957356bd94e5745f4c15fa38bc21219c8a21805dbecd44a51e719bbcd884b850ba1276759bdebeb94 docfiles size=37 - RELOC/doc/latex/layaureo/README - RELOC/doc/latex/layaureo/layaureo.pdf + RELOC/doc/latex/layaureo/README details="Readme and summary" + RELOC/doc/latex/layaureo/layaureo.pdf details="Package documentation" language="it" +srccontainersize 8972 +srccontainerchecksum 054df6aade854320987e605aad0a641778336ef918ef086dd097db8d1a2fc8d623f0335aa4ffb98942e157438ba06b6e75411b48db541779fc2a6e08e5b1c594 srcfiles size=7 RELOC/source/latex/layaureo/layaureo.dtx RELOC/source/latex/layaureo/layaureo.ins +runfiles size=1 + RELOC/tex/latex/layaureo/layaureo.sty catalogue-ctan /macros/latex/contrib/layaureo -catalogue-date 2012-07-05 12:56:27 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics layout catalogue-version 0.2 name layouts category Package -revision 15878 -shortdesc Display various elements of a document's layout. +revision 42428 +shortdesc Display various elements of a document's layout relocated 1 longdesc Display information about a document, including: text longdesc positioning on a page; disposition of floats; layout of longdesc paragraphs, lists, footnotes, table of contents, and sectional longdesc headings; font boxes. Facilities are provided for a document longdesc designer to experiment with the layout parameters. -runfiles size=26 - RELOC/tex/latex/layouts/layouts.sty +containersize 13564 +containerchecksum 9db14862ac1bea22096130ddac071a9b058e4cc1309917d2f8e8c536f280d2f4efc9a8dad9a5dbec0824b94f92c290e82820ec1628f0e4b72aa8fa617b72d981 +doccontainersize 477556 +doccontainerchecksum aa6639c5ca0029efda9af523a0a075ef2b60ae9e031bd68232ee03792bb2f7452e2201e7223735e83b7979f2c057674fcedde4ed416254ab4b5b8a6cd9bb002e docfiles size=143 - RELOC/doc/latex/layouts/README - RELOC/doc/latex/layouts/layman.pdf + RELOC/doc/latex/layouts/README details="Readme" + RELOC/doc/latex/layouts/layman.pdf details="Package documentation" RELOC/doc/latex/layouts/layouts.pdf +srccontainersize 40952 +srccontainerchecksum 1abb95aa76cb3dc55d7426b8f98923662b48fa91ae8e5e2c3c01fb14dc28c8ceae90c01c9a22b1f59103e56d1818675d6da6223be6771083562ebc50ceff07b6 srcfiles size=63 RELOC/source/latex/layouts/layman.tex RELOC/source/latex/layouts/layouts.dtx RELOC/source/latex/layouts/layouts.ins +runfiles size=26 + RELOC/tex/latex/layouts/layouts.sty +catalogue-also layout catalogue-ctan /macros/latex/contrib/layouts -catalogue-date 2012-04-27 12:45:13 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics geometry layout-show catalogue-version 2.6d name lazylist category Package revision 17691 -shortdesc Lists in TeX's "mouth". +shortdesc Lists in TeX's "mouth" relocated 1 longdesc The package was developed to provide flexible lists, whose longdesc ordering can be altered on the fly. The implementation involves @@ -94545,21 +153162,91 @@ longdesc incredibly obtuse nature. The TUGboat paper serves as a manual longdesc for the macros. Having said all of which, confidence is longdesc enhanced by the knowledge that the TeX code was formally longdesc verified. -runfiles size=1 - RELOC/tex/latex/lazylist/lazylist.sty +containersize 1680 +containerchecksum 5ceccebce9cf3ff0574c471141f94b919d14a7faf1b5c7b5e09eb079aee11cb95bdfa7d8b26fb83e99875818d842cbd64733ab7cf7b7024f04f661f732a3fb04 +doccontainersize 120736 +doccontainerchecksum 1ecf491370fd7ba0fcd3ef1ce11df768509c32bc9bf14978e3d6f36e39094570144b897337bbc481bfeb8b74354b36f66d561a33e255ba50aae0a5c42f002e7e docfiles size=43 - RELOC/doc/latex/lazylist/lazylist.pdf + RELOC/doc/latex/lazylist/lazylist.pdf details="Paper prepared for TUGboat" RELOC/doc/latex/lazylist/lazylist.tex +runfiles size=1 + RELOC/tex/latex/lazylist/lazylist.sty catalogue-ctan /macros/latex/contrib/lazylist -catalogue-date 2012-05-10 17:39:23 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics list catalogue-version 1.0a +name lccaps +category Package +revision 46432 +shortdesc Lowercased (spaced) small capitals +relocated 1 +longdesc This little package serves the purpose of providing a uniform +longdesc method to use lowercased small capitals and spaced lowercased +longdesc small capitals. It relies on the iftex, textcase, and microtype +longdesc packages and comes with four new user macros: \textlcc, the +longdesc main feature: lowercased small capitals; \spacedcaps, a prefix +longdesc to small capitals text commands to slightly increase their +longdesc spacing; \textslcc and \textssc, which are shortcuts for +longdesc \spacedcaps\textlcc and \spacedcaps\textsc (accordingly). +containersize 1544 +containerchecksum 98d57c77a3ca19a067c04c9cef06d632e56f42daaa70ec729a7cbf3ff68ef3e7ab95e1d0d25cf853d85dd1916668dd5601ba6feb889d1eda344b3ebcb31da333 +doccontainersize 151000 +doccontainerchecksum ce14177476624831de64a12ef858516a2df28a3e194748a1c759d7a41743a93e03a7d96bff3acd85f9db0f5d4c96a53aff7b73077e131bc6fa807c8b36844bef +docfiles size=38 + RELOC/doc/latex/lccaps/README.md details="Readme" + RELOC/doc/latex/lccaps/lccaps.pdf details="Package documentation" +srccontainersize 2980 +srccontainerchecksum cb0f4f8400542d9d15e55dd8d9b55ecc1aad60dfda5de9ab342e8e02d075123e9b32b1c19dbed700ad8626d754a11be6e694a86b6eef757db3a6f47f9f5a22d8 +srcfiles size=3 + RELOC/source/latex/lccaps/lccaps.dtx + RELOC/source/latex/lccaps/lccaps.ins +runfiles size=1 + RELOC/tex/latex/lccaps/lccaps.sty +catalogue-contact-bugs https://github.com/giannotr/lccaps/issues +catalogue-contact-home https://github.com/giannotr/lccaps +catalogue-contact-repository https://github.com/giannotr/lccaps.git +catalogue-ctan /macros/latex/contrib/lccaps +catalogue-date 2018-01-26 07:47:53 +0100 +catalogue-license lppl1.3c +catalogue-topics font-supp +catalogue-version 1.0 + +name lcd +category Package +revision 16549 +shortdesc Alphanumerical LCD-style displays +relocated 1 +longdesc A LaTeX package that will display text as on an (early) LCD +longdesc display (the output is very visibly pixellated). Assumes 8-bit +longdesc input in its internal verbatim-style environment. +containersize 3220 +containerchecksum 829c0fbed639619707023c1df1fa511d584e4805aa4f26b0ba5e5c5dd85d927901f4ad949e4a171d9765995c9ccfd34e5d45aa44dfef2508d5ec84c27712e05a +doccontainersize 64288 +doccontainerchecksum 385df3ec85fdbaa579b15f0ef0fa2347e15cb796a84265b1cc7a9e2bc520c0c98d0703615ed28c68ce5ab7cbca6f2699502ec26a31297c14b0039dd4b584fd86 +docfiles size=21 + RELOC/doc/latex/lcd/00readme details="Package README" + RELOC/doc/latex/lcd/example.pdf details="Examples" + RELOC/doc/latex/lcd/example.tex +srccontainersize 10796 +srccontainerchecksum 1d788d589c959240c92775455ee3272b8014a9491f2299c4d6f4d9aff66681100a6352bfbb644e0c4cb770e27152bb5b3fdf0f347aff489c172189c542a02e58 +srcfiles size=11 + RELOC/source/latex/lcd/lcd.dtx + RELOC/source/latex/lcd/lcd.ins +runfiles size=3 + RELOC/tex/latex/lcd/lcd.sty +catalogue-ctan /macros/latex/contrib/lcd +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-in-tex +catalogue-version 0.3 + name lcdftypetools category TLCore -revision 37078 +revision 50602 catalogue lcdf-typetools -shortdesc A bundle of outline font manipulation tools. +shortdesc A bundle of outline font manipulation tools longdesc This bundle of tools comprises: Cfftot1, which translates a longdesc Compact Font Format (CFF) font, or a PostScript-flavored longdesc OpenType font, into PostScript Type 1 format. It correctly @@ -94580,7 +153267,11 @@ longdesc you specify; and T1testpage, which creates a PostScript proof longdesc for a Type 1 font. It is preliminary software. depend glyphlist depend lcdftypetools.ARCH -docfiles size=65 +containersize 1000 +containerchecksum 90e2fd4cfdd5b7dcdcd3eb395630e534220ad406135acd251d9c2dd35d7078bf0d781ea9d7019a38f698fa045d6f03738ae25bff80df12218f8d64a88079835c +doccontainersize 258784 +doccontainerchecksum 2093330ede2753b383d57454c9fade7b89915985be4168677081ad2841ec1735c9d5ebefaeb3d53f49721d81f39d55ea01a42a0188ff79a986fed7530f3220e9 +docfiles size=105 texmf-dist/doc/man/man1/cfftot1.1 texmf-dist/doc/man/man1/cfftot1.man1.pdf texmf-dist/doc/man/man1/mmafm.1 @@ -94603,15 +153294,133 @@ docfiles size=65 texmf-dist/doc/man/man1/t1testpage.man1.pdf texmf-dist/doc/man/man1/ttftotype42.1 texmf-dist/doc/man/man1/ttftotype42.man1.pdf +catalogue-contact-home http://www.lcdf.org/type/ catalogue-ctan /fonts/utilities/lcdf-typetools -catalogue-date 2015-03-27 19:31:19 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license gpl +catalogue-topics font-devel + +name lcdftypetools.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of lcdftypetools +containersize 647236 +containerchecksum 36e5765293777bf6985081e26ee4d238fbd9a21a16efacabb3b6dc918bac4d502fb39c031dd8b989d6fe8b5b08d8b302d65795a5d7716d75a2c14d4ee32d8005 +binfiles arch=aarch64-linux size=1205 + bin/aarch64-linux/cfftot1 + bin/aarch64-linux/mmafm + bin/aarch64-linux/mmpfb + bin/aarch64-linux/otfinfo + bin/aarch64-linux/otftotfm + bin/aarch64-linux/t1dotlessj + bin/aarch64-linux/t1lint + bin/aarch64-linux/t1rawafm + bin/aarch64-linux/t1reencode + bin/aarch64-linux/t1testpage + bin/aarch64-linux/ttftotype42 + +name lcdftypetools.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of lcdftypetools +containersize 635200 +containerchecksum 941f89b8733a667554be17deb29caa7e852075297e404b966a73f76071498fb6835992af37b9ebb6a6944f6fd6033f9b86a656db869bc1954e3e857952172130 +binfiles arch=amd64-freebsd size=973 + bin/amd64-freebsd/cfftot1 + bin/amd64-freebsd/mmafm + bin/amd64-freebsd/mmpfb + bin/amd64-freebsd/otfinfo + bin/amd64-freebsd/otftotfm + bin/amd64-freebsd/t1dotlessj + bin/amd64-freebsd/t1lint + bin/amd64-freebsd/t1rawafm + bin/amd64-freebsd/t1reencode + bin/amd64-freebsd/t1testpage + bin/amd64-freebsd/ttftotype42 + +name lcdftypetools.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of lcdftypetools +containersize 669868 +containerchecksum cbd5a5dcc27db7468db0aa555878f07ec5d8ac6d383819928797d58f0b0f381e2b35519655d5b1d803b6eb8970c90e3c5f852b876e8cd9900e690194b719a710 +binfiles arch=amd64-netbsd size=1253 + bin/amd64-netbsd/cfftot1 + bin/amd64-netbsd/mmafm + bin/amd64-netbsd/mmpfb + bin/amd64-netbsd/otfinfo + bin/amd64-netbsd/otftotfm + bin/amd64-netbsd/t1dotlessj + bin/amd64-netbsd/t1lint + bin/amd64-netbsd/t1rawafm + bin/amd64-netbsd/t1reencode + bin/amd64-netbsd/t1testpage + bin/amd64-netbsd/ttftotype42 + +name lcdftypetools.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of lcdftypetools +containersize 503304 +containerchecksum d14a8b3eb496f9b2c8c74df584d4467230155ed53bc59b9381b609e6595975d9dc32d1246faf24111ab47bf787f18683c483aecc4ef563a0de259a6a3545dd9c +binfiles arch=armhf-linux size=914 + bin/armhf-linux/cfftot1 + bin/armhf-linux/mmafm + bin/armhf-linux/mmpfb + bin/armhf-linux/otfinfo + bin/armhf-linux/otftotfm + bin/armhf-linux/t1dotlessj + bin/armhf-linux/t1lint + bin/armhf-linux/t1rawafm + bin/armhf-linux/t1reencode + bin/armhf-linux/t1testpage + bin/armhf-linux/ttftotype42 + +name lcdftypetools.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of lcdftypetools +containersize 570700 +containerchecksum d0e717334c7e08bcf08f0820ea0aafcaeeb1907143aa8b55c9d28d2d32c1ef0b29bf8434b4d17560b8de74441466dc52cb700f50cdd019d3f69d98380546d287 +binfiles arch=i386-cygwin size=1046 + bin/i386-cygwin/cfftot1.exe + bin/i386-cygwin/mmafm.exe + bin/i386-cygwin/mmpfb.exe + bin/i386-cygwin/otfinfo.exe + bin/i386-cygwin/otftotfm.exe + bin/i386-cygwin/t1dotlessj.exe + bin/i386-cygwin/t1lint.exe + bin/i386-cygwin/t1rawafm.exe + bin/i386-cygwin/t1reencode.exe + bin/i386-cygwin/t1testpage.exe + bin/i386-cygwin/ttftotype42.exe + +name lcdftypetools.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of lcdftypetools +containersize 622236 +containerchecksum 06bf3e9783639ca12b89c0f62423e0825f499232121b86f469815684ac0a5497cf4877937351ccab8c698c016dc21a65af2956c3f29f78dfea65fb91722046c8 +binfiles arch=i386-freebsd size=890 + bin/i386-freebsd/cfftot1 + bin/i386-freebsd/mmafm + bin/i386-freebsd/mmpfb + bin/i386-freebsd/otfinfo + bin/i386-freebsd/otftotfm + bin/i386-freebsd/t1dotlessj + bin/i386-freebsd/t1lint + bin/i386-freebsd/t1rawafm + bin/i386-freebsd/t1reencode + bin/i386-freebsd/t1testpage + bin/i386-freebsd/ttftotype42 name lcdftypetools.i386-linux category TLCore -revision 36790 +revision 50281 shortdesc i386-linux files of lcdftypetools -binfiles arch=i386-linux size=1298 +containersize 694408 +containerchecksum 4e90da4d05c584371d358c0fb00979200bc691e06d5693d6739c462bdf57f31b7d7828f463ba19ca1ab3a010123941605d8182ef2b0ef7caf2dcc078a7e419d4 +binfiles arch=i386-linux size=1133 bin/i386-linux/cfftot1 bin/i386-linux/mmafm bin/i386-linux/mmpfb @@ -94624,57 +153433,229 @@ binfiles arch=i386-linux size=1298 bin/i386-linux/t1testpage bin/i386-linux/ttftotype42 -name lcd -category Package -revision 16549 -shortdesc Alphanumerical LCD-style displays. -relocated 1 -longdesc A LaTeX package that will display text as on an (early) LCD -longdesc display (the output is very visibly pixellated). Assumes 8-bit -longdesc input in its internal verbatim-style environment. -runfiles size=3 - RELOC/tex/latex/lcd/lcd.sty -docfiles size=21 - RELOC/doc/latex/lcd/00readme - RELOC/doc/latex/lcd/example.pdf - RELOC/doc/latex/lcd/example.tex -srcfiles size=11 - RELOC/source/latex/lcd/lcd.dtx - RELOC/source/latex/lcd/lcd.ins -catalogue-ctan /macros/latex/contrib/lcd -catalogue-date 2012-08-30 22:39:52 +0200 -catalogue-license lppl -catalogue-version 0.3 +name lcdftypetools.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of lcdftypetools +containersize 649356 +containerchecksum f57059fa9a5b4aa23137a92b1ff653640c4e346d8633d809a911f516ffb143566aeb88d99609242c44d5826bc2abc5da690ec476048decb740f50282118f296b +binfiles arch=i386-netbsd size=1130 + bin/i386-netbsd/cfftot1 + bin/i386-netbsd/mmafm + bin/i386-netbsd/mmpfb + bin/i386-netbsd/otfinfo + bin/i386-netbsd/otftotfm + bin/i386-netbsd/t1dotlessj + bin/i386-netbsd/t1lint + bin/i386-netbsd/t1rawafm + bin/i386-netbsd/t1reencode + bin/i386-netbsd/t1testpage + bin/i386-netbsd/ttftotype42 + +name lcdftypetools.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of lcdftypetools +containersize 822980 +containerchecksum 9c02b355bec7785f28cbef5c0460f4728a34c2099a12cea8b54409dd9f8d9afd18c48a4c8e0f2ffdf1046b97fa28e36243c3405bd46d85ed061609a64dc6f579 +binfiles arch=i386-solaris size=1297 + bin/i386-solaris/cfftot1 + bin/i386-solaris/mmafm + bin/i386-solaris/mmpfb + bin/i386-solaris/otfinfo + bin/i386-solaris/otftotfm + bin/i386-solaris/t1dotlessj + bin/i386-solaris/t1lint + bin/i386-solaris/t1rawafm + bin/i386-solaris/t1reencode + bin/i386-solaris/t1testpage + bin/i386-solaris/ttftotype42 + +name lcdftypetools.win32 +category TLCore +revision 50155 +shortdesc win32 files of lcdftypetools +containersize 702512 +containerchecksum c8c9072189ba991868b12f3d934a2e31325bbf1243e94b151ed83430435ff6107edd66ceb2e3dee2a35ee081259582a09efab49e143ae6267f898faceb575fe4 +binfiles arch=win32 size=940 + bin/win32/cfftot1.exe + bin/win32/mmafm.exe + bin/win32/mmpfb.exe + bin/win32/otfinfo.exe + bin/win32/otftotfm.exe + bin/win32/t1dotlessj.exe + bin/win32/t1lint.exe + bin/win32/t1rawafm.exe + bin/win32/t1reencode.exe + bin/win32/t1testpage.exe + bin/win32/ttftotype42.exe + +name lcdftypetools.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of lcdftypetools +containersize 581712 +containerchecksum cce7d2517a73daa0ab87e38071b94863dfd9e6d75df558515b69a09244c68a51b77a976dc84457a0b9fb1a220eda27228e2513050529e474597c4686e96af482 +binfiles arch=x86_64-cygwin size=1013 + bin/x86_64-cygwin/cfftot1.exe + bin/x86_64-cygwin/mmafm.exe + bin/x86_64-cygwin/mmpfb.exe + bin/x86_64-cygwin/otfinfo.exe + bin/x86_64-cygwin/otftotfm.exe + bin/x86_64-cygwin/t1dotlessj.exe + bin/x86_64-cygwin/t1lint.exe + bin/x86_64-cygwin/t1rawafm.exe + bin/x86_64-cygwin/t1reencode.exe + bin/x86_64-cygwin/t1testpage.exe + bin/x86_64-cygwin/ttftotype42.exe + +name lcdftypetools.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of lcdftypetools +containersize 654876 +containerchecksum aca4ab289d231aed04ff77801203b52234bbcadb6bee6431ab67e0c0310dd7964aaa235bdecf84b0b508f56f2e898ef5aaa00add8e9fe51accf23f5c9495e04a +binfiles arch=x86_64-darwin size=955 + bin/x86_64-darwin/cfftot1 + bin/x86_64-darwin/mmafm + bin/x86_64-darwin/mmpfb + bin/x86_64-darwin/otfinfo + bin/x86_64-darwin/otftotfm + bin/x86_64-darwin/t1dotlessj + bin/x86_64-darwin/t1lint + bin/x86_64-darwin/t1rawafm + bin/x86_64-darwin/t1reencode + bin/x86_64-darwin/t1testpage + bin/x86_64-darwin/ttftotype42 + +name lcdftypetools.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of lcdftypetools +containersize 654088 +containerchecksum b763fdd4efd8885c5f29a6a1df9c3633608d6e01a26cc7e0a81149a3b64fe731417e310593933d2028a71a27811d8cd5a1a475dad57fc93f427d71c17dc2250b +binfiles arch=x86_64-darwinlegacy size=882 + bin/x86_64-darwinlegacy/cfftot1 + bin/x86_64-darwinlegacy/mmafm + bin/x86_64-darwinlegacy/mmpfb + bin/x86_64-darwinlegacy/otfinfo + bin/x86_64-darwinlegacy/otftotfm + bin/x86_64-darwinlegacy/t1dotlessj + bin/x86_64-darwinlegacy/t1lint + bin/x86_64-darwinlegacy/t1rawafm + bin/x86_64-darwinlegacy/t1reencode + bin/x86_64-darwinlegacy/t1testpage + bin/x86_64-darwinlegacy/ttftotype42 + +name lcdftypetools.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of lcdftypetools +containersize 679632 +containerchecksum 1c8965934e922531d5b02b3e38453ef4bca8cb188eae9d75f6c614ae80c4ff607840ca9acb580e6c98a61affa68da9f00beafb8db9ffeda96e5eb03290378099 +binfiles arch=x86_64-linux size=1120 + bin/x86_64-linux/cfftot1 + bin/x86_64-linux/mmafm + bin/x86_64-linux/mmpfb + bin/x86_64-linux/otfinfo + bin/x86_64-linux/otftotfm + bin/x86_64-linux/t1dotlessj + bin/x86_64-linux/t1lint + bin/x86_64-linux/t1rawafm + bin/x86_64-linux/t1reencode + bin/x86_64-linux/t1testpage + bin/x86_64-linux/ttftotype42 + +name lcdftypetools.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of lcdftypetools +containersize 792864 +containerchecksum 4424cfd7254c5d555f692c1e1bfe789046bbdb84ab9fa73984e3509e6b00a7905dbe25c5466e2fbf931c50a57e2929b432b274f581f6462bc73c33be9a70ae9b +binfiles arch=x86_64-linuxmusl size=1234 + bin/x86_64-linuxmusl/cfftot1 + bin/x86_64-linuxmusl/mmafm + bin/x86_64-linuxmusl/mmpfb + bin/x86_64-linuxmusl/otfinfo + bin/x86_64-linuxmusl/otftotfm + bin/x86_64-linuxmusl/t1dotlessj + bin/x86_64-linuxmusl/t1lint + bin/x86_64-linuxmusl/t1rawafm + bin/x86_64-linuxmusl/t1reencode + bin/x86_64-linuxmusl/t1testpage + bin/x86_64-linuxmusl/ttftotype42 + +name lcdftypetools.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of lcdftypetools +containersize 842596 +containerchecksum e119f2119096d62720cd40995d49d18d8b85813597af18d0d5b5c8dddfbb8b27f00f02f796b41f09bc7f2b0466ccde207b68f08279f40aa256dcc559e9088322 +binfiles arch=x86_64-solaris size=1403 + bin/x86_64-solaris/cfftot1 + bin/x86_64-solaris/mmafm + bin/x86_64-solaris/mmpfb + bin/x86_64-solaris/otfinfo + bin/x86_64-solaris/otftotfm + bin/x86_64-solaris/t1dotlessj + bin/x86_64-solaris/t1lint + bin/x86_64-solaris/t1rawafm + bin/x86_64-solaris/t1reencode + bin/x86_64-solaris/t1testpage + bin/x86_64-solaris/ttftotype42 name lcg category Package revision 31474 -shortdesc Generate random integers. +shortdesc Generate random integers relocated 1 longdesc The lcg package generates random numbers (integers) via a longdesc linear congruential generator (Schrage's method). The random longdesc numbers are written to a counter. The keyval package is used longdesc for the user to provide values for the range and a seed, and longdesc for the name of the counter to be used. -runfiles size=2 - RELOC/tex/latex/lcg/lcg.sty +containersize 2668 +containerchecksum 6ca6f347b6ca4104ec376554ff7ba5d19002b2b4174fa491f3fec87d6c75c3ed11c1d13b9e7d30e6c086b2a12dc3013f21ee10b482c95b177f0eaff02d953fee +doccontainersize 247496 +doccontainerchecksum 5674612693481265f72420ae10914329029f9af2f526e6b59ba2614d4d2994a0033cb3393d2751064987698f819cca8e0fa3783555db3fa6cc5849f337b1cfd5 docfiles size=65 - RELOC/doc/latex/lcg/lcg.pdf + RELOC/doc/latex/lcg/lcg.pdf details="Package documentation" +srccontainersize 6444 +srccontainerchecksum b26dc9e706b14c304a282d2b5abc2d0fdb81799238c3951badb6152f8c83f6a2ace579ea0c2fb782bdfe0d02448cf716e77c3114ff0be594b12bcabbe138b17a srcfiles size=7 RELOC/source/latex/lcg/lcg.dtx RELOC/source/latex/lcg/lcg.ins +runfiles size=2 + RELOC/tex/latex/lcg/lcg.sty +catalogue-also random catalogue-ctan /macros/latex/contrib/lcg -catalogue-date 2014-01-04 14:18:29 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics calculation random catalogue-version 1.3 name lcyw category Package revision 15878 -shortdesc Make Classic Cyrillic CM fonts accessible in LaTeX. +shortdesc Make Classic Cyrillic CM fonts accessible in LaTeX relocated 1 longdesc The package makes the classic CM Cyrillic fonts accessible for longdesc use with LaTeX. +containersize 3996 +containerchecksum 324a9eb8f1a68124888ad7d4f35dd0446c917e643e2cdcfa041ca26b719ccdc541b9b89857aa05dea2d599912c506561c762d288ccc86d637fd927cc70bf910d +doccontainersize 107760 +doccontainerchecksum c063b6b5d23bd0a7197f5bd3121c93237c24f0a77fbc72cb370a7cd535282151731ef03098c36d8152707c50808c1b996fd1adaf16185bd3d0e3589e85b67981 +docfiles size=29 + RELOC/doc/latex/lcyw/README details="Readme" + RELOC/doc/latex/lcyw/README.koi8-r + RELOC/doc/latex/lcyw/example-lcyw.tex + RELOC/doc/latex/lcyw/lcyw.pdf details="Package documentation" +srccontainersize 7420 +srccontainerchecksum 5303052e625fa1e07a3e54a682a11469f0b14697fad5658f2eb6d0266dfa25e6f66bd752265a3ca99dab138200711b48cadb29d8b1a1a878a59f5c5e112aa860 +srcfiles size=10 + RELOC/source/latex/lcyw/lcyw.dtx + RELOC/source/latex/lcyw/lcyw.ins + RELOC/source/latex/lcyw/lcywfd.fdd runfiles size=10 RELOC/tex/latex/lcyw/cmap-cyr-vf.sty RELOC/tex/latex/lcyw/koi7a.cmap @@ -94683,54 +153664,63 @@ runfiles size=10 RELOC/tex/latex/lcyw/lcywcmssq.fd RELOC/tex/latex/lcyw/lcywcmtt.fd RELOC/tex/latex/lcyw/lcywenc.def -docfiles size=29 - RELOC/doc/latex/lcyw/README - RELOC/doc/latex/lcyw/README.koi8-r - RELOC/doc/latex/lcyw/example-lcyw.tex - RELOC/doc/latex/lcyw/lcyw.pdf -srcfiles size=10 - RELOC/source/latex/lcyw/lcyw.dtx - RELOC/source/latex/lcyw/lcyw.ins - RELOC/source/latex/lcyw/lcywfd.fdd catalogue-ctan /macros/latex/contrib/lcyw -catalogue-date 2012-07-05 15:17:31 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 -catalogue-version v1.1 +catalogue-topics font-supp +catalogue-version 1.1 name leading category Package revision 15878 -shortdesc Define leading with a length. +shortdesc Define leading with a length relocated 1 longdesc The package defines a command \leading, whose argument is a longdesc that specifies the nominal distance between longdesc consecutive baselines of typeset text. The command replaces the longdesc rather more difficult LaTeX command \linespread{}, where longdesc the leading is specified by reference to the font size. -runfiles size=1 - RELOC/tex/latex/leading/leading.sty +containersize 1140 +containerchecksum c326950e6c4b07782148ee4c9ac5b22f7e42512e0bc6e5e1f75be6ed757ca90ebf2bb6b30b91ceaac32c761d595ba5799f0f40ca15954f150d481ea366f1c72d +doccontainersize 84128 +doccontainerchecksum 3ede6910ccb0a30c3ae9c78b86cf00cd7e2c5d8905b648861d2113d0af6225b2ffdc30509a72a5f69dd9e1164525c3225cd4ecaa04471ddf5c346a862fe097e4 docfiles size=24 - RELOC/doc/latex/leading/README - RELOC/doc/latex/leading/leading.pdf + RELOC/doc/latex/leading/README details="Readme" + RELOC/doc/latex/leading/leading.pdf details="Package documentation" +srccontainersize 3576 +srccontainerchecksum b42b230efc2508f4b3901de791424251c6e0ff003bb342fa11ea282f46b2dfd5c68a63c95fbb9aee146839944586218a3cec0ef182575a9760d3ed3f5924d78f srcfiles size=4 RELOC/source/latex/leading/leading.dtx RELOC/source/latex/leading/leading.ins +runfiles size=1 + RELOC/tex/latex/leading/leading.sty catalogue-ctan /macros/latex/contrib/leading -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics typesetting layout catalogue-version 0.3 name leadsheets category Package -revision 37982 -shortdesc Typesetting leadsheets and songbooks. +revision 45405 +shortdesc Typesetting leadsheets and songbooks relocated 1 longdesc This LaTeX package offers support for typesetting simple longdesc leadsheets of songs, i.e. song lyrics and the corresponding longdesc chords. -runfiles size=24 +containersize 16928 +containerchecksum ba860408c4cc2fef172139539d199490efce617571f8483693274c981ce8bbc70aef8a696f6c9067c799458fbba0538d69a27d2b68329eb2c8bbc253cfe06f6d +doccontainersize 958804 +doccontainerchecksum 798cc9328123f4ded6096286501dd6a83cca2d74efaa5d26b7b0acf8db718230ae5013c34fa5da43b5695984f2bf6df826e39373e679fe4f8656df24a6707815 +docfiles size=255 + RELOC/doc/latex/leadsheets/README details="Readme" + RELOC/doc/latex/leadsheets/leadsheets_en.pdf details="Package documentation" + RELOC/doc/latex/leadsheets/leadsheets_en.tex +runfiles size=33 + RELOC/tex/latex/leadsheets/leadsheet.cls RELOC/tex/latex/leadsheets/leadsheets.library.chordnames.code.tex RELOC/tex/latex/leadsheets/leadsheets.library.chords.code.tex + RELOC/tex/latex/leadsheets/leadsheets.library.external.code.tex RELOC/tex/latex/leadsheets/leadsheets.library.musejazz.code.tex RELOC/tex/latex/leadsheets/leadsheets.library.musicsymbols.code.tex RELOC/tex/latex/leadsheets/leadsheets.library.properties.code.tex @@ -94740,21 +153730,19 @@ runfiles size=24 RELOC/tex/latex/leadsheets/leadsheets.library.translations.code.tex RELOC/tex/latex/leadsheets/leadsheets.library.transposing.code.tex RELOC/tex/latex/leadsheets/leadsheets.sty -docfiles size=225 - RELOC/doc/latex/leadsheets/README - RELOC/doc/latex/leadsheets/leadsheets_en.pdf - RELOC/doc/latex/leadsheets/leadsheets_en.tex catalogue-also songs songbook +catalogue-contact-bugs https://github.com/cgnieder/leadsheets/issues +catalogue-contact-repository https://github.com/cgnieder/leadsheets catalogue-ctan /macros/latex/contrib/leadsheets -catalogue-date 2015-07-28 14:20:08 +0200 +catalogue-date 2017-09-26 16:41:35 +0200 catalogue-license lppl1.3 catalogue-topics music chords -catalogue-version 0.3 +catalogue-version 0.5b name leaflet category Package -revision 32093 -shortdesc Create small handouts (flyers). +revision 43523 +shortdesc Create small handouts (flyers) relocated 1 longdesc A document class to create small hand-outs (flyers) that fit on longdesc a single sheet of paper which is then folded twice. Pages are @@ -94762,25 +153750,32 @@ longdesc rearranged by LaTeX so that they print correctly on a single longdesc sheet -- no external script is necessary. (Works with longdesc PostScript and PDF.) This is a complete reimplementation with longdesc permission of the original author Jurgen Schlegelmilch. -runfiles size=5 - RELOC/tex/latex/leaflet/leaflet.cls +containersize 5480 +containerchecksum b819cae65ac9f38d7170f4aec4f94adfc547afdeadc345091fad170def744247ed46d653975e493aa64a28117e89a5414463f693a4b2f7e28b9bf998b8859915 +doccontainersize 339136 +doccontainerchecksum d2355c9b93ae490f4087bca09ed3acc815abb714fa7508b64155d8b5994c967b7296b79f8b3d68cd59d082d7d3d7c618c0d4d0fa50df23724ed50718f0433f8d docfiles size=86 - RELOC/doc/latex/leaflet/README - RELOC/doc/latex/leaflet/leaflet-manual.pdf + RELOC/doc/latex/leaflet/README.md details="Readme" + RELOC/doc/latex/leaflet/leaflet-manual.pdf details="Package manual (as a leaflet)" RELOC/doc/latex/leaflet/leaflet-manual.tex - RELOC/doc/latex/leaflet/leaflet.pdf + RELOC/doc/latex/leaflet/leaflet.pdf details="Documented source" +srccontainersize 13800 +srccontainerchecksum 38cdcd9b452afc6ff98e946d162119615e44f372322664894a479130035a2a05520b7b1e7f616f17b04914c5caac6910ff18fd71c06a31dae9d4e044c6106627 srcfiles size=13 RELOC/source/latex/leaflet/leaflet.dtx RELOC/source/latex/leaflet/leaflet.ins +runfiles size=5 + RELOC/tex/latex/leaflet/leaflet.cls catalogue-ctan /macros/latex/contrib/leaflet -catalogue-date 2014-10-10 23:56:29 +0200 +catalogue-date 2017-03-17 18:23:39 +0100 catalogue-license lppl -catalogue-version 1.0e +catalogue-topics layout class +catalogue-version 1.1b name lecturer category Package revision 23916 -shortdesc On-screen presentations for (almost) all formats. +shortdesc On-screen presentations for (almost) all formats relocated 1 longdesc The package creates slides for on-screen presentations based on longdesc PDF features without manipulating TeX's typesetting process. @@ -94802,16 +153797,10 @@ longdesc designed to work with all formats, but presently fails with longdesc ConTeXt MkIV (because of clashes in management of PDF objects, longdesc probably), works only with pdfTeX and LuaTeX for the time longdesc being, and requires texapi and yax, both v.1.02. -runfiles size=23 - RELOC/tex/generic/lecturer/lecturer.sty - RELOC/tex/generic/lecturer/lecturer.tex - RELOC/tex/generic/lecturer/ltr-areas.tex - RELOC/tex/generic/lecturer/ltr-graphics.tex - RELOC/tex/generic/lecturer/ltr-job.tex - RELOC/tex/generic/lecturer/ltr-navigation.tex - RELOC/tex/generic/lecturer/ltr-slides.tex - RELOC/tex/generic/lecturer/ltr-steps.tex - RELOC/tex/generic/lecturer/t-lecturer.tex +containersize 18668 +containerchecksum e0c217ed089dccb7cb526e62456bf72d186bf8cdc69b2014bd4210b6f1225277d1afb514f381e4581727900c6ebf34780bb4df01c3682580cea0418fa9caa1db +doccontainersize 1126000 +doccontainerchecksum 97892442ebe9263cbdc8e35ecbc2f3acebdaa886e5fe814bcc0ada98b0cecd9e140a0d103adc9eb0aab1e5e48e9d7f4ab42e786d52f8fcc96d03db17c51fc17b docfiles size=1022 RELOC/doc/generic/lecturer/LecturerDemo-BeamerCambridgeUS.pdf RELOC/doc/generic/lecturer/LecturerDemo-BeamerCambridgeUS.tex @@ -94825,35 +153814,71 @@ docfiles size=1022 RELOC/doc/generic/lecturer/LecturerDemo-SquaresOfAs.tex RELOC/doc/generic/lecturer/LecturerDemo-ThePoodleLectures.pdf RELOC/doc/generic/lecturer/LecturerDemo-ThePoodleLectures.tex - RELOC/doc/generic/lecturer/LecturerDemo-VisualDoc.pdf + RELOC/doc/generic/lecturer/LecturerDemo-VisualDoc.pdf details="Visual package documentation" RELOC/doc/generic/lecturer/LecturerDemo-VisualDoc.tex - RELOC/doc/generic/lecturer/README - RELOC/doc/generic/lecturer/lecturer-doc.pdf + RELOC/doc/generic/lecturer/README details="Readme" + RELOC/doc/generic/lecturer/lecturer-doc.pdf details="Package documentation" RELOC/doc/generic/lecturer/lecturer-doc.tex RELOC/doc/generic/lecturer/universe.jpg +runfiles size=23 + RELOC/tex/generic/lecturer/lecturer.sty + RELOC/tex/generic/lecturer/lecturer.tex + RELOC/tex/generic/lecturer/ltr-areas.tex + RELOC/tex/generic/lecturer/ltr-graphics.tex + RELOC/tex/generic/lecturer/ltr-job.tex + RELOC/tex/generic/lecturer/ltr-navigation.tex + RELOC/tex/generic/lecturer/ltr-slides.tex + RELOC/tex/generic/lecturer/ltr-steps.tex + RELOC/tex/generic/lecturer/t-lecturer.tex catalogue-ctan /macros/generic/lecturer -catalogue-date 2014-10-10 18:20:36 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics presentation + +name lectures +category Package +revision 49863 +shortdesc Lectures - A document class for quickly drafting nice looking lecture notes +relocated 1 +longdesc This LaTeX documentclass provides a number of gimmicks to draft +longdesc nice looking lecture notes, such as a number of theorem +longdesc environments, automatic spacing and alignment of figures and +longdesc much more. More information is available in the package readme. +containersize 6228 +containerchecksum 54e2b55fb43bf548a0d20dd6c98b3478cac25bff27c013353c1e0b693990bd3afde432d07ec4b0f48054f5e923c70bf5aa60ca5f5d79abbf12d36ff7949948e1 +doccontainersize 2080 +doccontainerchecksum 45788814da746bcc2c00f3c33541fbc4d0114aa03676971b038ec38686d833e698cc1e255aafcd06d6d5029f835e93674f0dc544a8ef267703ecbcbc96da64a3 +docfiles size=2 + RELOC/doc/latex/lectures/LICENSE + RELOC/doc/latex/lectures/README.md details="Readme" +runfiles size=6 + RELOC/tex/latex/lectures/lectures.cls +catalogue-contact-bugs https://github.com/LucaCappelletti94/lectures/issues +catalogue-contact-repository https://github.com/LucaCappelletti94/lectures +catalogue-ctan /macros/latex/contrib/lectures +catalogue-date 2019-01-29 06:09:06 +0100 +catalogue-license mit +catalogue-topics class presentation teaching +catalogue-version 1.0.2 name ledmac category Package -revision 37908 -shortdesc Typeset scholarly editions. +revision 41811 +shortdesc Typeset scholarly editions relocated 1 longdesc A macro package for typesetting scholarly critical editions. longdesc The ledmac package is a LaTeX port of the plain TeX EDMAC longdesc macros. It supports indexing by page and line number and simple longdesc tabular- and array-style environments. The package is longdesc distributed with the related ledpar and ledarab packages. The -longdesc package is now superseded by eledmac. -runfiles size=41 - RELOC/tex/latex/ledmac/afoot.sty - RELOC/tex/latex/ledmac/ledarab.sty - RELOC/tex/latex/ledmac/ledmac.sty - RELOC/tex/latex/ledmac/ledpar.sty +longdesc package is now superseded by reledmac. +containersize 25456 +containerchecksum b465117d5634dc4eeaefbc2c12a4d0fb892f4a27ed66057938701fe51e4dedfb5b7f28d796145d89a59b2667cf61c7175803f72e5970cf81244329130d173136 +doccontainersize 2362392 +doccontainerchecksum 7e7fa49106457f13aed11bcf80a1e38f000f5161e9a67bdbb174371db63a3953109f26da3cef8781d2c13abb4b86d5cb0c2b1b41e6f2cd3584512bed1a67cf6a docfiles size=822 RELOC/doc/latex/ledmac/Makefile - RELOC/doc/latex/ledmac/README + RELOC/doc/latex/ledmac/README details="Readme" RELOC/doc/latex/ledmac/djd17nov.tex RELOC/doc/latex/ledmac/djd17novL.eps RELOC/doc/latex/ledmac/djd17novR.eps @@ -94879,12 +153904,14 @@ docfiles size=822 RELOC/doc/latex/ledmac/ledfeat.tex RELOC/doc/latex/ledmac/ledioc.eps RELOC/doc/latex/ledmac/ledioc.tex - RELOC/doc/latex/ledmac/ledmac.pdf + RELOC/doc/latex/ledmac/ledmac.pdf details="Package documentation" RELOC/doc/latex/ledmac/ledmixed.eps RELOC/doc/latex/ledmac/ledmixed.tex RELOC/doc/latex/ledmac/ledpar.pdf RELOC/doc/latex/ledmac/villon.eps RELOC/doc/latex/ledmac/villon.tex +srccontainersize 142344 +srccontainerchecksum 918f3009f11e3fa2b5531c5cf8ffe9d835e331793abe1241f01f01b14d990ffd1f3aac6ec153b17f77099f38c284965209cff8f9105c340bfdadc85f78fd5d5c srcfiles size=176 RELOC/source/latex/ledmac/ledarab.dtx RELOC/source/latex/ledmac/ledarab.ins @@ -94892,119 +153919,147 @@ srcfiles size=176 RELOC/source/latex/ledmac/ledmac.ins RELOC/source/latex/ledmac/ledpar.dtx RELOC/source/latex/ledmac/ledpar.ins +runfiles size=41 + RELOC/tex/latex/ledmac/afoot.sty + RELOC/tex/latex/ledmac/ledarab.sty + RELOC/tex/latex/ledmac/ledmac.sty + RELOC/tex/latex/ledmac/ledpar.sty catalogue-also ednotes poemscol +catalogue-contact-bugs https://github.com/bidi-tex/ledmac/issues +catalogue-contact-repository https://github.com/bidi-tex/ledmac catalogue-ctan /macros/latex/contrib/ledmac -catalogue-date 2015-07-19 23:14:58 +0200 +catalogue-date 2018-11-28 20:05:21 +0100 catalogue-license lppl1.3 catalogue-topics crit-ed -catalogue-version 0.19.2a +catalogue-version 0.19.4 name leftidx category Package revision 15878 -shortdesc Left and right subscripts and superscripts in math mode. +shortdesc Left and right subscripts and superscripts in math mode relocated 1 longdesc Left and right subscripts and superscripts are automatically longdesc raised for better fitting to the symbol they belong to. -runfiles size=1 - RELOC/tex/latex/leftidx/leftidx.sty +containersize 944 +containerchecksum a01d085af4ac4048b5659e7f2f1692dd787b7c4cc9a0c06acf9852ad9d5aaa9790bdad6db7a76ec2f1a268af520ac35975a7fc55ef0d6373f244c85b8b6e116c +doccontainersize 50916 +doccontainerchecksum 1e372c7d307b4bae8fc5673c9654785db1fc7c510e188e7e0945e01dd502580479b7910e19132c7b8b169acf7d9de84504de2aa9fb580c9a526a5700114f009e docfiles size=18 - RELOC/doc/latex/leftidx/README - RELOC/doc/latex/leftidx/leftidx.pdf + RELOC/doc/latex/leftidx/README details="Readme" + RELOC/doc/latex/leftidx/leftidx.pdf details="Package documentation" +srccontainersize 3176 +srccontainerchecksum 3339968b569bf6fba6d7332399d0727148add95c1c0dc2ae06626269c156a4e365dbbf672b652d3c5d097d0570b0955e6cb34255e3f8383f05ea52fa2c12e375 srcfiles size=4 RELOC/source/latex/leftidx/Makefile RELOC/source/latex/leftidx/leftidx.dtx RELOC/source/latex/leftidx/leftidx.ins +runfiles size=1 + RELOC/tex/latex/leftidx/leftidx.sty catalogue-ctan /macros/latex/contrib/leftidx -catalogue-date 2012-06-01 21:24:39 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics subsup-pos maths name leipzig category Package -revision 34902 -shortdesc Typeset and index linguistic gloss abbreviations. +revision 44625 +shortdesc Typeset and index linguistic gloss abbreviations relocated 1 longdesc The leipzig package provides a set of macros for standard longdesc glossing abbreviations, with options to create new ones. They longdesc are mnemonic (e.g. \Acc{} for accusative, abbreviated acc). longdesc These abbre can be used alone or on top of the glossaries longdesc package for easy indexing and glossary printing. -runfiles size=4 - RELOC/tex/latex/leipzig/leipzig.sty - RELOC/tex/latex/leipzig/leipzig.tex -docfiles size=117 - RELOC/doc/latex/leipzig/README - RELOC/doc/latex/leipzig/README.txt - RELOC/doc/latex/leipzig/leipzig.pdf -srcfiles size=12 +containersize 5648 +containerchecksum 100370c145aae1b2fe8e13bfaf9f5aec54417392f9eefe4f17dd40e82856267b8dc7877d0d9836ac8fcc9fdfcca452c2b93d72fd7f6d61f0eeef4cdf0acd8a62 +doccontainersize 592484 +doccontainerchecksum 90a5f6a4c4f2afa690c1ce722fe83b047aa0d342a8ce09939c0e6cf1df6df789daa366539befff57c1ba273572fd4e39cfef04521903e8794d130611115d963b +docfiles size=149 + RELOC/doc/latex/leipzig/README.md details="Readme" + RELOC/doc/latex/leipzig/leipzig.acn + RELOC/doc/latex/leipzig/leipzig.bno + RELOC/doc/latex/leipzig/leipzig.pdf details="Package documentation" +srccontainersize 25340 +srccontainerchecksum f8b737a91ddba393947039cb2660beb4bdcd62b4bb4d7dd9c347e7f1b55d83971b2472619ffb611d96ed9e7ec0053a52c064bba8a9230e208e218a93ea668b56 +srcfiles size=26 RELOC/source/latex/leipzig/leipzig.dtx RELOC/source/latex/leipzig/leipzig.ins +runfiles size=7 + RELOC/makeindex/leipzig/leipzig.ist + RELOC/tex/latex/leipzig/leipzig.sty + RELOC/tex/latex/leipzig/leipzig.tex +catalogue-contact-repository https://github.com/natalieweber/leipzig catalogue-ctan /macros/latex/contrib/leipzig -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-06-17 09:57:56 +0200 catalogue-license lppl1.3 -catalogue-version 1.1 +catalogue-topics linguistic +catalogue-version 2.0 name lengthconvert category Package revision 30867 -shortdesc Express lengths in arbitrary units. +shortdesc Express lengths in arbitrary units relocated 1 longdesc The package provides a command to convert a length to any of a longdesc large selection of units. The package relies on the LaTeX 3 longdesc programming environment. -runfiles size=2 - RELOC/tex/latex/lengthconvert/lengthconvert.sty +containersize 2036 +containerchecksum 71441058a60d5c642fc7f162952f8e7e696f25ed40e56d5b61177efe6e0f4bb3f55a8ab616e52f2555836d5205f1c09cc75307ca3d0f4fa964347d731c6924e1 +doccontainersize 443500 +doccontainerchecksum 756564bef540ac96195b9846d79cfdc8a553c25e83313c3cd22b7926010e65033e0eee56899a0ec1deb92eb34a1c7c74ea541e4881962d6bbf34a16ab5462b49 docfiles size=109 - RELOC/doc/latex/lengthconvert/lengthconvert.pdf + RELOC/doc/latex/lengthconvert/lengthconvert.pdf details="Package documentation" +srccontainersize 4164 +srccontainerchecksum fd9f190b1b388e17fa0bc9d8307bf1dd654184c3da7ee69534b7fab2d686b5dc096fa3656d0620ccfdc1da40f581ab1bd163f82d2f0071062fd48468200f39a2 srcfiles size=5 RELOC/source/latex/lengthconvert/lengthconvert.dtx RELOC/source/latex/lengthconvert/lengthconvert.ins +runfiles size=2 + RELOC/tex/latex/lengthconvert/lengthconvert.sty +catalogue-also printlen catalogue-ctan /macros/latex/contrib/lengthconvert -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics misc-conv catalogue-version 1.0a name lettre category Package -revision 35145 -shortdesc Letters and faxes in French. +revision 44950 +shortdesc Letters and faxes in French relocated 1 longdesc Developed from the ancestor of the standard letter class, at longdesc the Observatoire de Geneve. -runfiles size=12 - RELOC/tex/latex/lettre/default.ins - RELOC/tex/latex/lettre/lettre.cls -docfiles size=248 - RELOC/doc/latex/lettre/2.353-release-notes +containersize 13328 +containerchecksum 7e50bf7d6109fcf0e128c35ebaa034c3301668f6e3bd8536b4a37c7e721592e28561911f922cfdf740d0c397a8375113dce0b7a00388a11bc4196b4b33fc04dd +doccontainersize 943804 +doccontainerchecksum 308122fdd634c278f6e05e85a3a052e4255f06339db0f744fdd4859f6bc2983b7150c8fbb5d85fa71c39bf71ca6aec9d6c3d27707da0f95252beb2fb09dfafc7 +docfiles size=315 + RELOC/doc/latex/lettre/3.000-release-notes.txt RELOC/doc/latex/lettre/ALIRE_TDS RELOC/doc/latex/lettre/README_TDS - RELOC/doc/latex/lettre/amg.ins - RELOC/doc/latex/lettre/amgmono.eps - RELOC/doc/latex/lettre/ecusson55.ps - RELOC/doc/latex/lettre/letdoc2.tex - RELOC/doc/latex/lettre/letdocmain.tex - RELOC/doc/latex/lettre/letex1.tex - RELOC/doc/latex/lettre/letex2.tex - RELOC/doc/latex/lettre/letex3.tex - RELOC/doc/latex/lettre/letex4.tex - RELOC/doc/latex/lettre/letex5.tex - RELOC/doc/latex/lettre/letex6.tex - RELOC/doc/latex/lettre/letex7.tex - RELOC/doc/latex/lettre/letex8.tex - RELOC/doc/latex/lettre/lettre.pdf - RELOC/doc/latex/lettre/lettre.tex - RELOC/doc/latex/lettre/sondes.tex - RELOC/doc/latex/lettre/testfaxd.tex - RELOC/doc/latex/lettre/testfaxe.tex - RELOC/doc/latex/lettre/testfaxf.tex + RELOC/doc/latex/lettre/lettre.pdf details="Package documentation" language="fr" +runfiles size=21 + RELOC/tex/latex/lettre/lettre-USenglish.ldf + RELOC/tex/latex/lettre/lettre-amg.cfg + RELOC/tex/latex/lettre/lettre-default.cfg + RELOC/tex/latex/lettre/lettre-english.ldf + RELOC/tex/latex/lettre/lettre-french.ldf + RELOC/tex/latex/lettre/lettre-german.ldf + RELOC/tex/latex/lettre/lettre-obs.cfg + RELOC/tex/latex/lettre/lettre-romand.ldf + RELOC/tex/latex/lettre/lettre.cls +catalogue-contact-bugs https://puszcza.gnu.org.ua/bugs/?group=latex-lettre +catalogue-contact-home https://puszcza.gnu.org.ua/projects/latex-lettre catalogue-ctan /macros/latex/contrib/lettre -catalogue-date 2014-09-10 15:48:52 +0200 +catalogue-date 2017-08-04 13:56:57 +0200 catalogue-license lppl1.3 -catalogue-version 2.353 +catalogue-topics letter french +catalogue-version 3.000 name lettrine category Package -revision 38268 +revision 50847 shortdesc Typeset dropped capitals relocated 1 longdesc The lettrine package supports various dropped capitals styles, @@ -95012,7 +154067,28 @@ longdesc typically those described in the French typographic books. In longdesc particular, it has facilities for the paragraph text's left longdesc edge to follow the outline of capitals that have a regular longdesc shape (such as "A" and "V"). -runfiles size=11 +containersize 7036 +containerchecksum 6d52341ea517e94128da35dfcfec9344e08a23fd933ef18e1830ce014e6906bd248be4161439cb4d48e1bee64d3b9896cb866a78233c86ce72f87ac5a788e98e +doccontainersize 372992 +doccontainerchecksum 4f12fa28940188c95a3d707a97b18c7b30803d188bf7c5c46dd74a13589ca15609f47bffc309474c43966c3c2ba0fc6df09db2d85af1385b82ffd0a10e148c59 +docfiles size=108 + RELOC/doc/latex/lettrine/README details="Readme" + RELOC/doc/latex/lettrine/demo-de.pdf details="Package examples (German)" language="de" + RELOC/doc/latex/lettrine/demo-de.tex + RELOC/doc/latex/lettrine/demo.pdf details="Package examples (French)" language="fr" + RELOC/doc/latex/lettrine/demo.tex + RELOC/doc/latex/lettrine/lettrine.pdf details="Package documentation" +srccontainersize 16564 +srccontainerchecksum d77bc694777fe902889aa15ff12396dbc388c73fd89c815a17bd4557a340deb2f1547b357bf270c4cedf7f97edb4f33faffcb65efde9e36978ad5b6c81b76356 +srcfiles size=20 + RELOC/source/latex/lettrine/contrib.dtx + RELOC/source/latex/lettrine/contrib.ins + RELOC/source/latex/lettrine/lettrine.dtx + RELOC/source/latex/lettrine/lettrine.ins +runfiles size=19 + RELOC/tex/latex/lettrine/lettrine-2006-03-17.sty + RELOC/tex/latex/lettrine/lettrine-2015-08-31.sty + RELOC/tex/latex/lettrine/lettrine-2018-08-18.sty RELOC/tex/latex/lettrine/lettrine.cfg RELOC/tex/latex/lettrine/lettrine.sty RELOC/tex/latex/lettrine/optfile.cfl @@ -95020,34 +154096,38 @@ runfiles size=11 RELOC/tex/latex/lettrine/padl.cfl RELOC/tex/latex/lettrine/pzc2.cfl RELOC/tex/latex/lettrine/pzc3.cfl -docfiles size=143 - RELOC/doc/latex/lettrine/README - RELOC/doc/latex/lettrine/W.eps - RELOC/doc/latex/lettrine/W.pdf - RELOC/doc/latex/lettrine/demo-de.pdf - RELOC/doc/latex/lettrine/demo-de.tex - RELOC/doc/latex/lettrine/demo.pdf - RELOC/doc/latex/lettrine/demo.tex - RELOC/doc/latex/lettrine/lettrine.pdf -srcfiles size=11 - RELOC/source/latex/lettrine/lettrine.dtx - RELOC/source/latex/lettrine/lettrine.ins +catalogue-contact-home http://daniel.flipo.free.fr/lettrine catalogue-ctan /macros/latex/contrib/lettrine -catalogue-date 2015-09-01 14:20:07 +0200 -catalogue-license lppl1.3 +catalogue-date 2019-04-07 14:25:55 +0200 +catalogue-license lppl1.3c catalogue-topics lettrine -catalogue-version 1.9 +catalogue-version 2.22 name levy category Package revision 21750 catalogue levy-font -shortdesc Fonts for typesetting classical greek. +shortdesc Fonts for typesetting classical greek relocated 1 longdesc These fonts are derivatives of Kunth's CM fonts. Macros for use longdesc with Plain TeX are included in the package; for use with LaTeX, longdesc see lgreek (with English documentation) or levy (with German longdesc documentation). +containersize 34736 +containerchecksum a71294df1b2bdb1402892ebc0c82dd60275cf41f6844cdd284e1ba73c8515e98258118c5a1e5158fb6d09acdc53427eb4e3f62f24591fd2eafc90d0bb69b71ea +doccontainersize 24736 +doccontainerchecksum e69a1e2e421100a50416f86bda40702aa9a4d5c5b0b8c783e328e56e1ce587f832cad984fee2cad259603e893413155bc4539e853e1df0d95c89e9167c67b2e1 +docfiles size=24 + RELOC/doc/fonts/levy/README details="Readme" + RELOC/doc/fonts/levy/digits.mf-old + RELOC/doc/fonts/levy/g.mf-old + RELOC/doc/fonts/levy/greekhist.tex + RELOC/doc/fonts/levy/greekuse.tex + RELOC/doc/fonts/levy/grinstall.tex + RELOC/doc/fonts/levy/grtestfont.tex + RELOC/doc/fonts/levy/makeall + RELOC/doc/fonts/levy/makefont + RELOC/doc/fonts/levy/testfont runfiles size=82 RELOC/fonts/source/public/levy/a.mf RELOC/fonts/source/public/levy/b.mf @@ -95098,60 +154178,60 @@ runfiles size=82 RELOC/fonts/tfm/public/levy/grreg9.tfm RELOC/tex/generic/levy/greekmacros.tex RELOC/tex/generic/levy/slgreek.sty -docfiles size=24 - RELOC/doc/fonts/levy/README - RELOC/doc/fonts/levy/digits.mf-old - RELOC/doc/fonts/levy/g.mf-old - RELOC/doc/fonts/levy/greekhist.tex - RELOC/doc/fonts/levy/greekuse.tex - RELOC/doc/fonts/levy/grinstall.tex - RELOC/doc/fonts/levy/grtestfont.tex - RELOC/doc/fonts/levy/makeall - RELOC/doc/fonts/levy/makefont - RELOC/doc/fonts/levy/testfont catalogue-ctan /fonts/greek/levy -catalogue-date 2014-05-11 22:11:06 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl2 +catalogue-topics font font-mf font-greek name lewis category Package revision 15878 -shortdesc Draw Lewis structures. +shortdesc Draw Lewis structures relocated 1 longdesc The package provides rudimentary support for drawing Lewis longdesc Structures. Support is limited to elements that support the longdesc octet rule. +containersize 1028 +containerchecksum 7dbe24061df0d0bb4762e7d308c895c99d8f9a9105137bce8c4e589c7fdc80f989aa8c3ebbe40708a8b6fa2a2df5542ce25fb16f528344ca46d50c47724e006a +doccontainersize 40844 +doccontainerchecksum b267e3c79dfacdd7ed8c931a0e5954c9fd2ea0cfc12beceef3b40bbbed30bbb421d29afd263a25a5b0b5b77a6bc74ddf38e609262485eecae065d65e23200bff +docfiles size=13 + RELOC/doc/latex/lewis/README details="Readme" + RELOC/doc/latex/lewis/lewis.pdf details="Package documentation" runfiles size=1 RELOC/tex/latex/lewis/lewis.sty -docfiles size=13 - RELOC/doc/latex/lewis/README - RELOC/doc/latex/lewis/lewis.pdf catalogue-ctan /macros/latex/contrib/lewis -catalogue-date 2012-07-05 22:19:39 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics chemistry catalogue-version 0.1 name lexikon category Package revision 17364 -shortdesc Macros for a two language dictionary. +shortdesc Macros for a two language dictionary relocated 1 -runfiles size=2 - RELOC/tex/latex/lexikon/lexikon.sty +containersize 2196 +containerchecksum 7c0642f9e727d34175898138d27a838f0432a68659acd7986acb0b74183f28467351c169c52ab057daf46546d8ef9f9bdf30dcb1846b458b6b718ae38633b275 +doccontainersize 180172 +doccontainerchecksum 4f1329d49d92d93743127e4f3ad9401e07529d31d2d68af86373f08b56ae69c22c70b89151461548aefb7fc1f7eca66cc1a4ac73407d82b65bd007f3372243cf docfiles size=48 - RELOC/doc/latex/lexikon/lexikon-doc.pdf + RELOC/doc/latex/lexikon/lexikon-doc.pdf details="Package documentation" RELOC/doc/latex/lexikon/lexikon-doc.tex RELOC/doc/latex/lexikon/lexikon.tex - RELOC/doc/latex/lexikon/lexikon.upl + RELOC/doc/latex/lexikon/lexikon.upl details="Upload note" +runfiles size=2 + RELOC/tex/latex/lexikon/lexikon.sty catalogue-ctan /macros/latex/contrib/lexikon -catalogue-date 2012-08-30 22:39:52 +0200 +catalogue-date 2016-06-18 16:48:54 +0200 catalogue-license lppl +catalogue-topics dictionary catalogue-version 1.0c name lexref category Package revision 36026 -shortdesc Convenient and uniform references to legal provisions. +shortdesc Convenient and uniform references to legal provisions relocated 1 longdesc The package is aimed at continental lawyers (especially those longdesc in Switzerland and Germany), allowing the user to make @@ -95160,21 +154240,26 @@ longdesc package also allows the user to add cited Acts to a longdesc nomenclature list (automatically), and to build specific longdesc indexes for each cited Act. The package is still under longdesc development, and should be treated as an 'alpha'-release. -runfiles size=5 - RELOC/tex/latex/lexref/lexref.sty +containersize 4008 +containerchecksum f9bf7792ac09a6b5a69ae642e0becbcb1ed0c2eea3254b31da62bb9b7e3e161c24109e0bcacc8b89e3d03426710378f04e13a05be467115eaea2be028f8e5812 +doccontainersize 386412 +doccontainerchecksum 6a348acfd0e0701954195210bc717666308743f5f282b9efb7a253ab860a0372ed383cc2c8811527eeb2ed72c46be95cfb9e133d156fe8b906b67ed5140437af docfiles size=101 - RELOC/doc/latex/lexref/README - RELOC/doc/latex/lexref/lexref.pdf + RELOC/doc/latex/lexref/README details="Readme" + RELOC/doc/latex/lexref/lexref.pdf details="Package documentation" RELOC/doc/latex/lexref/lexref.tex +runfiles size=5 + RELOC/tex/latex/lexref/lexref.sty catalogue-ctan /macros/latex/contrib/lexref -catalogue-date 2015-01-11 13:56:16 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics legal catalogue-version 1.1a name lfb category Package revision 15878 -shortdesc A Greek font with normal and bold variants. +shortdesc A Greek font with normal and bold variants relocated 1 longdesc This is a Greek font written in Metafont, with inspiration from longdesc the Bodoni typefaces in old books. It is stylistically a little @@ -95185,6 +154270,16 @@ longdesc with Computer Modern. There is a ligature scheme which longdesc automatically inserts the breathings required for ancient longdesc texts, making the input text more readable than in some longdesc schemes. +containersize 18296 +containerchecksum 5b1386321f8c24673531b48d996a20cea9ed527ae60e608f63a790a2cbbea573d01e0351c1ef695b11f14d31d5c482ffa02b337ea04e649b7b758eef713f3bf6 +doccontainersize 35492 +doccontainerchecksum 59eef59a1be002d28ce802617ee638b6c0e74efb391a502fa9593bf19e54f563f819f45442714b46a2e97f49bd561d2a2df631e53ad3847b48a881c8762d2d9d +docfiles size=19 + RELOC/doc/fonts/lfb/README details="Package README" + RELOC/doc/fonts/lfb/example.pdf details="Example of text in lfb" language="el" + RELOC/doc/fonts/lfb/example.tex + RELOC/doc/fonts/lfb/lfb.make + RELOC/doc/fonts/lfb/lfbacc.tex runfiles size=83 RELOC/fonts/source/public/lfb/accents.mf RELOC/fonts/source/public/lfb/alpha.mf @@ -95250,148 +154345,206 @@ runfiles size=83 RELOC/fonts/tfm/public/lfb/lfbb7.tfm RELOC/fonts/tfm/public/lfb/lfbb8.tfm RELOC/fonts/tfm/public/lfb/lfbb9.tfm -docfiles size=19 - RELOC/doc/fonts/lfb/README - RELOC/doc/fonts/lfb/example.pdf - RELOC/doc/fonts/lfb/example.tex - RELOC/doc/fonts/lfb/lfb.make - RELOC/doc/fonts/lfb/lfbacc.tex catalogue-ctan /fonts/greek/lfb -catalogue-date 2014-05-11 22:11:06 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-mf font-greek catalogue-version 1.0 name lgreek category Package revision 21818 -shortdesc LaTeX macros for using Silvio Levy's Greek fonts. +shortdesc LaTeX macros for using Silvio Levy's Greek fonts relocated 1 longdesc A conversion of Silvio Levy's Plain TeX macros for use with longdesc LaTeX. +containersize 1724 +containerchecksum f0b5cc9b7267aa07dc0b0f8c6d23a164bc239591fd13b5d77c5c840d33e131546c63c63a3bbbee2851000bda2e8593e7617f8a7ae381e7cd0561302a667acac1 +doccontainersize 203112 +doccontainerchecksum 915df985f4766f492a70a35342e086567d17c155ea0dfce5514c6edebaf1dacb78998dc4bf5cc44415fef580a7779083bc2261a22dfd668e8f2023f1f15bff35 +docfiles size=57 + RELOC/doc/latex/lgreek/README details="Readme" + RELOC/doc/latex/lgreek/lgreekuse.pdf details="Package documentation" + RELOC/doc/latex/lgreek/lgreekuse.tex runfiles size=4 RELOC/tex/latex/lgreek/LGcmr.fd RELOC/tex/latex/lgreek/LGcmtt.fd RELOC/tex/latex/lgreek/LGenc.def RELOC/tex/latex/lgreek/lgreek.sty -docfiles size=57 - RELOC/doc/latex/lgreek/README - RELOC/doc/latex/lgreek/lgreekuse.pdf - RELOC/doc/latex/lgreek/lgreekuse.tex +catalogue-also levy-latex catalogue-ctan /macros/latex/contrib/lgreek -catalogue-date 2012-04-27 17:19:37 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl2 - -name lhcyr -category Package -revision 31795 -shortdesc A non-standard Cyrillic input scheme. -relocated 1 -longdesc A collection of three LaTeX 2e styles intended for typesetting -longdesc Russian and bilingual English-Russian documents, using the lh -longdesc fonts and without the benefit of babel's language-switching -longdesc mechanisms. The packages (lhcyralt and lhcyrwin for use under -longdesc emTeX, and lhcyrkoi for use under teTeX) provide mappings -longdesc between the input encoding and the font encoding (which is -longdesc described as OT1). The way this is done does not match the way -longdesc inputenc would do the job, for output via fontenc to one of the -longdesc T2 series of font encodings. -runfiles size=73 - RELOC/tex/latex/lhcyr/karabas.tex - RELOC/tex/latex/lhcyr/kniga.tex - RELOC/tex/latex/lhcyr/lhcyralt/README - RELOC/tex/latex/lhcyr/lhcyralt/lhcyralt-hyphen.cfg - RELOC/tex/latex/lhcyr/lhcyralt/lhcyralt-rhyphen.tex - RELOC/tex/latex/lhcyr/lhcyralt/lhcyralt.sty - RELOC/tex/latex/lhcyr/lhcyralt/ot1lhdh.fd - RELOC/tex/latex/lhcyr/lhcyralt/ot1lhfib.fd - RELOC/tex/latex/lhcyr/lhcyralt/ot1lhfr.fd - RELOC/tex/latex/lhcyr/lhcyralt/ot1lhr.fd - RELOC/tex/latex/lhcyr/lhcyralt/ot1lhss.fd - RELOC/tex/latex/lhcyr/lhcyralt/ot1lhtt.fd - RELOC/tex/latex/lhcyr/lhcyralt/ot1lhvtt.fd - RELOC/tex/latex/lhcyr/lhcyrkoi/README - RELOC/tex/latex/lhcyr/lhcyrkoi/kcmf.tgz - RELOC/tex/latex/lhcyr/lhcyrkoi/lhcyrkoi-hyphen.cfg - RELOC/tex/latex/lhcyr/lhcyrkoi/lhcyrkoi-rhyphen.tex - RELOC/tex/latex/lhcyr/lhcyrkoi/lhcyrkoi.sty - RELOC/tex/latex/lhcyr/lhcyrkoi/maketfms.sh - RELOC/tex/latex/lhcyr/lhcyrkoi/ot1kcdh.fd - RELOC/tex/latex/lhcyr/lhcyrkoi/ot1kcfib.fd - RELOC/tex/latex/lhcyr/lhcyrkoi/ot1kcfr.fd - RELOC/tex/latex/lhcyr/lhcyrkoi/ot1kcr.fd - RELOC/tex/latex/lhcyr/lhcyrkoi/ot1kcss.fd - RELOC/tex/latex/lhcyr/lhcyrkoi/ot1kctt.fd - RELOC/tex/latex/lhcyr/lhcyrkoi/ot1kcvtt.fd - RELOC/tex/latex/lhcyr/lhcyrkoi/special.kc - RELOC/tex/latex/lhcyr/lhcyrwin/README - RELOC/tex/latex/lhcyr/lhcyrwin/lhcyrwin-hyphen.cfg - RELOC/tex/latex/lhcyr/lhcyrwin/lhcyrwin-rhyphen.tex - RELOC/tex/latex/lhcyr/lhcyrwin/lhcyrwin.sty - RELOC/tex/latex/lhcyr/lhcyrwin/ot1wcdh.fd - RELOC/tex/latex/lhcyr/lhcyrwin/ot1wcfib.fd - RELOC/tex/latex/lhcyr/lhcyrwin/ot1wcfr.fd - RELOC/tex/latex/lhcyr/lhcyrwin/ot1wcr.fd - RELOC/tex/latex/lhcyr/lhcyrwin/ot1wcss.fd - RELOC/tex/latex/lhcyr/lhcyrwin/ot1wctt.fd - RELOC/tex/latex/lhcyr/lhcyrwin/ot1wcvtt.fd - RELOC/tex/latex/lhcyr/otchet.tex - RELOC/tex/latex/lhcyr/pismo.tex - RELOC/tex/latex/lhcyr/rusfonts.tex - RELOC/tex/latex/lhcyr/statya.tex -srcfiles size=4 - RELOC/source/latex/lhcyr/README - RELOC/source/latex/lhcyr/dvidrv.mfj - RELOC/source/latex/lhcyr/lhjob.mfj - RELOC/source/latex/lhcyr/wcjob.mfj -catalogue-ctan /macros/latex/contrib/lhcyr -catalogue-date 2014-05-11 22:11:06 +0200 -catalogue-license other-free - -name lhelp -category Package -revision 23638 -shortdesc Miscellaneous helper packages. -relocated 1 -longdesc This package defines macros which are useful for many -longdesc documents. It is a large collection of simple 'little helpers' -longdesc which do not really warrant a separate package on their own. -longdesc Included are, among other things, definitions of common units -longdesc with preceeding thinspaces, framed boxes where both width and -longdesc height can be specified, starting new odd or even pages, draft -longdesc markers, notes, conditional includes, including EPS files, and -longdesc versions of enumerate and itemize which allow the horizontal -longdesc and vertical spacing to be changed. -runfiles size=5 - RELOC/tex/latex/lhelp/lhelp.sty -docfiles size=64 - RELOC/doc/latex/lhelp/Makefile - RELOC/doc/latex/lhelp/lhelp.pdf -srcfiles size=22 - RELOC/source/latex/lhelp/lhelp.drv - RELOC/source/latex/lhelp/lhelp.dtx - RELOC/source/latex/lhelp/lhelp.ins -catalogue-ctan /macros/latex/contrib/lhelp -catalogue-date 2012-05-22 11:10:15 +0200 -catalogue-license gpl -catalogue-version 2.0 +catalogue-topics font-use greek name lh category Package revision 15878 -shortdesc Cyrillic fonts that support LaTeX standard encodings. +shortdesc Cyrillic fonts that support LaTeX standard encodings relocated 1 longdesc The LH fonts address the problem of the wide variety of longdesc alphabets that are written with Cyrillic-style characters. The longdesc fonts are the original basis of the set of T2* and X2 encodings longdesc that are now used when LaTeX users need to write in Cyrillic longdesc languages. Macro support in standard LaTeX encodings is offered -longdesc through the cyrillic and t2 bundles, and the package itself -longdesc offers support for other (more traditional) encodings. The -longdesc fonts, in the standard T2* and X2 encodings are available in -longdesc Adobe Type 1 format, in the CM-Super family of fonts. The +longdesc through the latex-cyrillic and t2 bundles, and the package +longdesc itself offers support for other (more traditional) encodings. +longdesc The fonts, in the standard T2* and X2 encodings are available +longdesc in Adobe Type 1 format, in the CM-Super family of fonts. The longdesc package also offers its own LaTeX support for OT2 encoded longdesc fonts, CM bright shaped fonts and Concrete shaped fonts. depend ec +containersize 172080 +containerchecksum 265aeba5ee99cbec2eca77a273a9e4857d78280e0ff17089a358e7f85d0595025e259b2edd471ce5287479531fe37cfeeaeba405ac9cabc7ac9616242815b6cf +doccontainersize 55428 +doccontainerchecksum 33f1cd39b2e68caa750ca5867bebbbc43c9948a7606f6fe44ba3bd8be84661fb562b5472ec57ccc3f6c18ef2823188c2f81ca4444b562f935e6f041d8ec0f39d +docfiles size=104 + RELOC/doc/fonts/lh/README details="Readme" + RELOC/doc/fonts/lh/beresta/beresta.tex + RELOC/doc/fonts/lh/beresta/berestax.tex + RELOC/doc/fonts/lh/beresta/lacodes.tex + RELOC/doc/fonts/lh/beresta/lbcodes.tex + RELOC/doc/fonts/lh/beresta/lccodes.tex + RELOC/doc/fonts/lh/beresta/ldcodes.tex + RELOC/doc/fonts/lh/beresta/rxcodes.tex + RELOC/doc/fonts/lh/beresta/txcodes.tex + RELOC/doc/fonts/lh/beresta/yycodes.tex + RELOC/doc/fonts/lh/fonttest/allenc.tex + RELOC/doc/fonts/lh/fonttest/allenc0.tex + RELOC/doc/fonts/lh/fonttest/allenc1.tex + RELOC/doc/fonts/lh/fonttest/allenc2.tex + RELOC/doc/fonts/lh/fonttest/allenc3.tex + RELOC/doc/fonts/lh/fonttest/allenc4.tex + RELOC/doc/fonts/lh/fonttest/katalog-beresta.tex + RELOC/doc/fonts/lh/fonttest/katalog-short.t2 + RELOC/doc/fonts/lh/fonttest/katalog.lh + RELOC/doc/fonts/lh/fonttest/katalog.t2 + RELOC/doc/fonts/lh/fonttest/katalog1.lh + RELOC/doc/fonts/lh/fonttest/katalog1.t2 + RELOC/doc/fonts/lh/fonttest/katalog2.lh + RELOC/doc/fonts/lh/fonttest/katalog2.t2 + RELOC/doc/fonts/lh/fonttest/katalog3.t2 + RELOC/doc/fonts/lh/fonttest/katalog4.t2 + RELOC/doc/fonts/lh/fonttest/katalog5.t2 + RELOC/doc/fonts/lh/fonttest/katalog6.t2 + RELOC/doc/fonts/lh/fonttest/katalog7.t2 + RELOC/doc/fonts/lh/fonttest/lh-fmap.tex + RELOC/doc/fonts/lh/fonttest/lh-text.tex + RELOC/doc/fonts/lh/fonttest/lh-texx.tex + RELOC/doc/fonts/lh/fonttest/lh-texy.tex + RELOC/doc/fonts/lh/fonttest/t2a-fmap-short.tex + RELOC/doc/fonts/lh/fonttest/t2a-fmap.tex + RELOC/doc/fonts/lh/fonttest/t2a-text.tex + RELOC/doc/fonts/lh/fonttest/t2b-fmap.tex + RELOC/doc/fonts/lh/fonttest/t2b-text.tex + RELOC/doc/fonts/lh/fonttest/t2c-fmap.tex + RELOC/doc/fonts/lh/fonttest/t2c-text.tex + RELOC/doc/fonts/lh/fonttest/t2d-fmap.tex + RELOC/doc/fonts/lh/fonttest/t2d-text.tex + RELOC/doc/fonts/lh/fonttest/testLHtxt.tex + RELOC/doc/fonts/lh/fonttest/uc-fmap.tex + RELOC/doc/fonts/lh/fonttest/wn-comp.tex + RELOC/doc/fonts/lh/fonttest/wn-fmap.tex + RELOC/doc/fonts/lh/fonttest/wn-text.tex + RELOC/doc/fonts/lh/fonttest/x2-fmap.tex + RELOC/doc/fonts/lh/fonttest/x2-text.tex + RELOC/doc/fonts/lh/fonttest/xsl-fmap.tex + RELOC/doc/fonts/lh/fonttest/xsl-text.tex + RELOC/doc/fonts/lh/install + RELOC/doc/fonts/lh/lhfonts/T1inT2.en + RELOC/doc/fonts/lh/lhfonts/fonttest.en + RELOC/doc/fonts/lh/lhfonts/lhfont35.en + RELOC/doc/fonts/lh/lhfonts/lhfont35.ru + RELOC/doc/fonts/lh/lhfonts/lhfonts.hst + RELOC/doc/fonts/lh/manifest.txt + RELOC/doc/fonts/lh/readme35c.1st + RELOC/doc/fonts/lh/readme35g.1st + RELOC/doc/fonts/lh/samples/lh-lcy.tex + RELOC/doc/fonts/lh/samples/lh-lcytext.tex + RELOC/doc/fonts/lh/samples/lh-ot2.tex + RELOC/doc/fonts/lh/samples/lh-ot2text.tex + RELOC/doc/fonts/lh/samples/lh-t2a.tex + RELOC/doc/fonts/lh/samples/lh-t2atext.tex +srccontainersize 41756 +srccontainerchecksum a81d3d7295101718dc4e66c6daafca8c480b281d7219956b0007adb4fd7e0f35959277931254fc778bf69c581b7d15ccf445f5037b589cee937211c39f59529e +srcfiles size=130 + RELOC/source/fonts/lh/dvidrv.mfj + RELOC/source/fonts/lh/dvidrvlh.mfj + RELOC/source/fonts/lh/tex/00readme.txt + RELOC/source/fonts/lh/tex/01cm-lh.tex + RELOC/source/fonts/lh/tex/03cm-wn.tex + RELOC/source/fonts/lh/tex/04cm-vf.tex + RELOC/source/fonts/lh/tex/11ex-rs.tex + RELOC/source/fonts/lh/tex/11ex-rx.tex + RELOC/source/fonts/lh/tex/12ex-la.tex + RELOC/source/fonts/lh/tex/13ex-lb.tex + RELOC/source/fonts/lh/tex/14ex-lc.tex + RELOC/source/fonts/lh/tex/15ex-ld.tex + RELOC/source/fonts/lh/tex/20cm-ct.tex + RELOC/source/fonts/lh/tex/21cm-ic.tex + RELOC/source/fonts/lh/tex/22cm-wc.tex + RELOC/source/fonts/lh/tex/23cm-mc.tex + RELOC/source/fonts/lh/tex/24cm-kc.tex + RELOC/source/fonts/lh/tex/25cm-uc.tex + RELOC/source/fonts/lh/tex/30cm-lx.tex + RELOC/source/fonts/lh/tex/31cm-ix.tex + RELOC/source/fonts/lh/tex/32cm-wx.tex + RELOC/source/fonts/lh/tex/33cm-mx.tex + RELOC/source/fonts/lh/tex/34cm-kx.tex + RELOC/source/fonts/lh/tex/46cm-ly.tex + RELOC/source/fonts/lh/tex/46cm-lz.tex + RELOC/source/fonts/lh/tex/47ex-tx.tex + RELOC/source/fonts/lh/tex/91berest.tex + RELOC/source/fonts/lh/tex/92check.tex + RELOC/source/fonts/lh/tex/92cm-xx.tex + RELOC/source/fonts/lh/tex/99-CMstd.tex + RELOC/source/fonts/lh/tex/99-T2enc.tex + RELOC/source/fonts/lh/tex/99allenc.tex + RELOC/source/fonts/lh/tex/99tstenc.tex + RELOC/source/fonts/lh/tex/cfhead.tex + RELOC/source/fonts/lh/tex/cfstdedt.tex + RELOC/source/fonts/lh/tex/cod-edt.tex + RELOC/source/fonts/lh/tex/enc-t2.tex + RELOC/source/fonts/lh/tex/fntaddcm.tex + RELOC/source/fonts/lh/tex/fntaddec.tex + RELOC/source/fonts/lh/tex/fntallcm.tex + RELOC/source/fonts/lh/tex/fntallec.tex + RELOC/source/fonts/lh/tex/fntbasec.tex + RELOC/source/fonts/lh/tex/fntbercm.tex + RELOC/source/fonts/lh/tex/fntberec.tex + RELOC/source/fonts/lh/tex/fntbricm.tex + RELOC/source/fonts/lh/tex/fntbriec.tex + RELOC/source/fonts/lh/tex/fntconcm.tex + RELOC/source/fonts/lh/tex/fntconec.tex + RELOC/source/fonts/lh/tex/fntinvcm.tex + RELOC/source/fonts/lh/tex/fntinvec.tex + RELOC/source/fonts/lh/tex/fntmincm.tex + RELOC/source/fonts/lh/tex/fntminec.tex + RELOC/source/fonts/lh/tex/fnttstcm.tex + RELOC/source/fonts/lh/tex/fnttstec.tex + RELOC/source/fonts/lh/tex/likerdat.tex + RELOC/source/fonts/lh/tex/likergrp.tex + RELOC/source/fonts/lh/tex/likermac.tex + RELOC/source/fonts/lh/tex/rliker.tex + RELOC/source/fonts/lh/tex/setter.tex + RELOC/source/fonts/lh/tex/wrk/lh-XSlav/00readme + RELOC/source/fonts/lh/tex/wrk/lh-lcy/00readme + RELOC/source/fonts/lh/tex/wrk/lh-ot2/00readme + RELOC/source/fonts/lh/tex/wrk/lh-t2a/00readme + RELOC/source/fonts/lh/tex/wrk/lh-t2b/00readme + RELOC/source/fonts/lh/tex/wrk/lh-t2c/00readme + RELOC/source/fonts/lh/tex/wrk/lh-t2d/00readme + RELOC/source/fonts/lh/tex/wrk/lh-x2/00readme + RELOC/source/fonts/lh/tex/wrk/lh_temp/00readme + RELOC/source/latex/lh/00readme.txt + RELOC/source/latex/lh/lcyfonts.fdd + RELOC/source/latex/lh/lcyfonts.ins + RELOC/source/latex/lh/nfssfox.dtx + RELOC/source/latex/lh/nfssfox.ins + RELOC/source/latex/lh/ot2fonts.fdd + RELOC/source/latex/lh/ot2fonts.ins + RELOC/source/latex/lh/t2ccfonts.fdd + RELOC/source/latex/lh/t2ccfonts.ins runfiles size=1023 RELOC/fonts/source/lh/base/fikparm.mf RELOC/fonts/source/lh/base/lcyrbeg.mf @@ -95953,160 +155106,124 @@ runfiles size=1023 RELOC/tex/latex/lh/nfssfox.tex RELOC/tex/plain/lh/testfox.tex RELOC/tex/plain/lh/testkern.tex -docfiles size=104 - RELOC/doc/fonts/lh/README - RELOC/doc/fonts/lh/beresta/beresta.tex - RELOC/doc/fonts/lh/beresta/berestax.tex - RELOC/doc/fonts/lh/beresta/lacodes.tex - RELOC/doc/fonts/lh/beresta/lbcodes.tex - RELOC/doc/fonts/lh/beresta/lccodes.tex - RELOC/doc/fonts/lh/beresta/ldcodes.tex - RELOC/doc/fonts/lh/beresta/rxcodes.tex - RELOC/doc/fonts/lh/beresta/txcodes.tex - RELOC/doc/fonts/lh/beresta/yycodes.tex - RELOC/doc/fonts/lh/fonttest/allenc.tex - RELOC/doc/fonts/lh/fonttest/allenc0.tex - RELOC/doc/fonts/lh/fonttest/allenc1.tex - RELOC/doc/fonts/lh/fonttest/allenc2.tex - RELOC/doc/fonts/lh/fonttest/allenc3.tex - RELOC/doc/fonts/lh/fonttest/allenc4.tex - RELOC/doc/fonts/lh/fonttest/katalog-beresta.tex - RELOC/doc/fonts/lh/fonttest/katalog-short.t2 - RELOC/doc/fonts/lh/fonttest/katalog.lh - RELOC/doc/fonts/lh/fonttest/katalog.t2 - RELOC/doc/fonts/lh/fonttest/katalog1.lh - RELOC/doc/fonts/lh/fonttest/katalog1.t2 - RELOC/doc/fonts/lh/fonttest/katalog2.lh - RELOC/doc/fonts/lh/fonttest/katalog2.t2 - RELOC/doc/fonts/lh/fonttest/katalog3.t2 - RELOC/doc/fonts/lh/fonttest/katalog4.t2 - RELOC/doc/fonts/lh/fonttest/katalog5.t2 - RELOC/doc/fonts/lh/fonttest/katalog6.t2 - RELOC/doc/fonts/lh/fonttest/katalog7.t2 - RELOC/doc/fonts/lh/fonttest/lh-fmap.tex - RELOC/doc/fonts/lh/fonttest/lh-text.tex - RELOC/doc/fonts/lh/fonttest/lh-texx.tex - RELOC/doc/fonts/lh/fonttest/lh-texy.tex - RELOC/doc/fonts/lh/fonttest/t2a-fmap-short.tex - RELOC/doc/fonts/lh/fonttest/t2a-fmap.tex - RELOC/doc/fonts/lh/fonttest/t2a-text.tex - RELOC/doc/fonts/lh/fonttest/t2b-fmap.tex - RELOC/doc/fonts/lh/fonttest/t2b-text.tex - RELOC/doc/fonts/lh/fonttest/t2c-fmap.tex - RELOC/doc/fonts/lh/fonttest/t2c-text.tex - RELOC/doc/fonts/lh/fonttest/t2d-fmap.tex - RELOC/doc/fonts/lh/fonttest/t2d-text.tex - RELOC/doc/fonts/lh/fonttest/testLHtxt.tex - RELOC/doc/fonts/lh/fonttest/uc-fmap.tex - RELOC/doc/fonts/lh/fonttest/wn-comp.tex - RELOC/doc/fonts/lh/fonttest/wn-fmap.tex - RELOC/doc/fonts/lh/fonttest/wn-text.tex - RELOC/doc/fonts/lh/fonttest/x2-fmap.tex - RELOC/doc/fonts/lh/fonttest/x2-text.tex - RELOC/doc/fonts/lh/fonttest/xsl-fmap.tex - RELOC/doc/fonts/lh/fonttest/xsl-text.tex - RELOC/doc/fonts/lh/install - RELOC/doc/fonts/lh/lhfonts/T1inT2.en - RELOC/doc/fonts/lh/lhfonts/fonttest.en - RELOC/doc/fonts/lh/lhfonts/lhfont35.en - RELOC/doc/fonts/lh/lhfonts/lhfont35.ru - RELOC/doc/fonts/lh/lhfonts/lhfonts.hst - RELOC/doc/fonts/lh/manifest.txt - RELOC/doc/fonts/lh/readme35c.1st - RELOC/doc/fonts/lh/readme35g.1st - RELOC/doc/fonts/lh/samples/lh-lcy.tex - RELOC/doc/fonts/lh/samples/lh-lcytext.tex - RELOC/doc/fonts/lh/samples/lh-ot2.tex - RELOC/doc/fonts/lh/samples/lh-ot2text.tex - RELOC/doc/fonts/lh/samples/lh-t2a.tex - RELOC/doc/fonts/lh/samples/lh-t2atext.tex -srcfiles size=130 - RELOC/source/fonts/lh/dvidrv.mfj - RELOC/source/fonts/lh/dvidrvlh.mfj - RELOC/source/fonts/lh/tex/00readme.txt - RELOC/source/fonts/lh/tex/01cm-lh.tex - RELOC/source/fonts/lh/tex/03cm-wn.tex - RELOC/source/fonts/lh/tex/04cm-vf.tex - RELOC/source/fonts/lh/tex/11ex-rs.tex - RELOC/source/fonts/lh/tex/11ex-rx.tex - RELOC/source/fonts/lh/tex/12ex-la.tex - RELOC/source/fonts/lh/tex/13ex-lb.tex - RELOC/source/fonts/lh/tex/14ex-lc.tex - RELOC/source/fonts/lh/tex/15ex-ld.tex - RELOC/source/fonts/lh/tex/20cm-ct.tex - RELOC/source/fonts/lh/tex/21cm-ic.tex - RELOC/source/fonts/lh/tex/22cm-wc.tex - RELOC/source/fonts/lh/tex/23cm-mc.tex - RELOC/source/fonts/lh/tex/24cm-kc.tex - RELOC/source/fonts/lh/tex/25cm-uc.tex - RELOC/source/fonts/lh/tex/30cm-lx.tex - RELOC/source/fonts/lh/tex/31cm-ix.tex - RELOC/source/fonts/lh/tex/32cm-wx.tex - RELOC/source/fonts/lh/tex/33cm-mx.tex - RELOC/source/fonts/lh/tex/34cm-kx.tex - RELOC/source/fonts/lh/tex/46cm-ly.tex - RELOC/source/fonts/lh/tex/46cm-lz.tex - RELOC/source/fonts/lh/tex/47ex-tx.tex - RELOC/source/fonts/lh/tex/91berest.tex - RELOC/source/fonts/lh/tex/92check.tex - RELOC/source/fonts/lh/tex/92cm-xx.tex - RELOC/source/fonts/lh/tex/99-CMstd.tex - RELOC/source/fonts/lh/tex/99-T2enc.tex - RELOC/source/fonts/lh/tex/99allenc.tex - RELOC/source/fonts/lh/tex/99tstenc.tex - RELOC/source/fonts/lh/tex/cfhead.tex - RELOC/source/fonts/lh/tex/cfstdedt.tex - RELOC/source/fonts/lh/tex/cod-edt.tex - RELOC/source/fonts/lh/tex/enc-t2.tex - RELOC/source/fonts/lh/tex/fntaddcm.tex - RELOC/source/fonts/lh/tex/fntaddec.tex - RELOC/source/fonts/lh/tex/fntallcm.tex - RELOC/source/fonts/lh/tex/fntallec.tex - RELOC/source/fonts/lh/tex/fntbasec.tex - RELOC/source/fonts/lh/tex/fntbercm.tex - RELOC/source/fonts/lh/tex/fntberec.tex - RELOC/source/fonts/lh/tex/fntbricm.tex - RELOC/source/fonts/lh/tex/fntbriec.tex - RELOC/source/fonts/lh/tex/fntconcm.tex - RELOC/source/fonts/lh/tex/fntconec.tex - RELOC/source/fonts/lh/tex/fntinvcm.tex - RELOC/source/fonts/lh/tex/fntinvec.tex - RELOC/source/fonts/lh/tex/fntmincm.tex - RELOC/source/fonts/lh/tex/fntminec.tex - RELOC/source/fonts/lh/tex/fnttstcm.tex - RELOC/source/fonts/lh/tex/fnttstec.tex - RELOC/source/fonts/lh/tex/likerdat.tex - RELOC/source/fonts/lh/tex/likergrp.tex - RELOC/source/fonts/lh/tex/likermac.tex - RELOC/source/fonts/lh/tex/rliker.tex - RELOC/source/fonts/lh/tex/setter.tex - RELOC/source/fonts/lh/tex/wrk/lh-XSlav/00readme - RELOC/source/fonts/lh/tex/wrk/lh-lcy/00readme - RELOC/source/fonts/lh/tex/wrk/lh-ot2/00readme - RELOC/source/fonts/lh/tex/wrk/lh-t2a/00readme - RELOC/source/fonts/lh/tex/wrk/lh-t2b/00readme - RELOC/source/fonts/lh/tex/wrk/lh-t2c/00readme - RELOC/source/fonts/lh/tex/wrk/lh-t2d/00readme - RELOC/source/fonts/lh/tex/wrk/lh-x2/00readme - RELOC/source/fonts/lh/tex/wrk/lh_temp/00readme - RELOC/source/latex/lh/00readme.txt - RELOC/source/latex/lh/lcyfonts.fdd - RELOC/source/latex/lh/lcyfonts.ins - RELOC/source/latex/lh/nfssfox.dtx - RELOC/source/latex/lh/nfssfox.ins - RELOC/source/latex/lh/ot2fonts.fdd - RELOC/source/latex/lh/ot2fonts.ins - RELOC/source/latex/lh/t2ccfonts.fdd - RELOC/source/latex/lh/t2ccfonts.ins +catalogue-also ccfonts cmbright concrete ecc catalogue-ctan /fonts/cyrillic/lh -catalogue-date 2014-05-11 22:11:06 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-mf font-cyrillic catalogue-version 3.5g +name lhcyr +category Package +revision 31795 +shortdesc A non-standard Cyrillic input scheme +relocated 1 +longdesc A collection of three LaTeX 2e styles intended for typesetting +longdesc Russian and bilingual English-Russian documents, using the lh +longdesc fonts and without the benefit of babel's language-switching +longdesc mechanisms. The packages (lhcyralt and lhcyrwin for use under +longdesc emTeX, and lhcyrkoi for use under teTeX) provide mappings +longdesc between the input encoding and the font encoding (which is +longdesc described as OT1). The way this is done does not match the way +longdesc inputenc would do the job, for output via fontenc to one of the +longdesc T2 series of font encodings. +containersize 36192 +containerchecksum 55cf81c051e8f23fe4f085990bc72a5b1dfc276e3ae1721680ad033deae1e3eafb1b9dcff3380ee20b72623b1ab8f117aca66f61441387d914dc29dc91c78448 +srccontainersize 2352 +srccontainerchecksum 18fc370261acff25634107705a36d06ec6367da95526a79fdd78c887234a2f2a6a17147eb317e97effa2ae8fe8e21e8df71cff3da5572055356386d26d2b06d8 +srcfiles size=4 + RELOC/source/latex/lhcyr/README + RELOC/source/latex/lhcyr/dvidrv.mfj + RELOC/source/latex/lhcyr/lhjob.mfj + RELOC/source/latex/lhcyr/wcjob.mfj +runfiles size=73 + RELOC/tex/latex/lhcyr/karabas.tex + RELOC/tex/latex/lhcyr/kniga.tex + RELOC/tex/latex/lhcyr/lhcyralt/README + RELOC/tex/latex/lhcyr/lhcyralt/lhcyralt-hyphen.cfg + RELOC/tex/latex/lhcyr/lhcyralt/lhcyralt-rhyphen.tex + RELOC/tex/latex/lhcyr/lhcyralt/lhcyralt.sty + RELOC/tex/latex/lhcyr/lhcyralt/ot1lhdh.fd + RELOC/tex/latex/lhcyr/lhcyralt/ot1lhfib.fd + RELOC/tex/latex/lhcyr/lhcyralt/ot1lhfr.fd + RELOC/tex/latex/lhcyr/lhcyralt/ot1lhr.fd + RELOC/tex/latex/lhcyr/lhcyralt/ot1lhss.fd + RELOC/tex/latex/lhcyr/lhcyralt/ot1lhtt.fd + RELOC/tex/latex/lhcyr/lhcyralt/ot1lhvtt.fd + RELOC/tex/latex/lhcyr/lhcyrkoi/README + RELOC/tex/latex/lhcyr/lhcyrkoi/kcmf.tgz + RELOC/tex/latex/lhcyr/lhcyrkoi/lhcyrkoi-hyphen.cfg + RELOC/tex/latex/lhcyr/lhcyrkoi/lhcyrkoi-rhyphen.tex + RELOC/tex/latex/lhcyr/lhcyrkoi/lhcyrkoi.sty + RELOC/tex/latex/lhcyr/lhcyrkoi/maketfms.sh + RELOC/tex/latex/lhcyr/lhcyrkoi/ot1kcdh.fd + RELOC/tex/latex/lhcyr/lhcyrkoi/ot1kcfib.fd + RELOC/tex/latex/lhcyr/lhcyrkoi/ot1kcfr.fd + RELOC/tex/latex/lhcyr/lhcyrkoi/ot1kcr.fd + RELOC/tex/latex/lhcyr/lhcyrkoi/ot1kcss.fd + RELOC/tex/latex/lhcyr/lhcyrkoi/ot1kctt.fd + RELOC/tex/latex/lhcyr/lhcyrkoi/ot1kcvtt.fd + RELOC/tex/latex/lhcyr/lhcyrkoi/special.kc + RELOC/tex/latex/lhcyr/lhcyrwin/README + RELOC/tex/latex/lhcyr/lhcyrwin/lhcyrwin-hyphen.cfg + RELOC/tex/latex/lhcyr/lhcyrwin/lhcyrwin-rhyphen.tex + RELOC/tex/latex/lhcyr/lhcyrwin/lhcyrwin.sty + RELOC/tex/latex/lhcyr/lhcyrwin/ot1wcdh.fd + RELOC/tex/latex/lhcyr/lhcyrwin/ot1wcfib.fd + RELOC/tex/latex/lhcyr/lhcyrwin/ot1wcfr.fd + RELOC/tex/latex/lhcyr/lhcyrwin/ot1wcr.fd + RELOC/tex/latex/lhcyr/lhcyrwin/ot1wcss.fd + RELOC/tex/latex/lhcyr/lhcyrwin/ot1wctt.fd + RELOC/tex/latex/lhcyr/lhcyrwin/ot1wcvtt.fd + RELOC/tex/latex/lhcyr/otchet.tex + RELOC/tex/latex/lhcyr/pismo.tex + RELOC/tex/latex/lhcyr/rusfonts.tex + RELOC/tex/latex/lhcyr/statya.tex +catalogue-also koi8 +catalogue-ctan /macros/latex/contrib/lhcyr +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics multilingual font-supp + +name lhelp +category Package +revision 23638 +shortdesc Miscellaneous helper packages +relocated 1 +longdesc This package defines macros which are useful for many +longdesc documents. It is a large collection of simple 'little helpers' +longdesc which do not really warrant a separate package on their own. +longdesc Included are, among other things, definitions of common units +longdesc with preceeding thinspaces, framed boxes where both width and +longdesc height can be specified, starting new odd or even pages, draft +longdesc markers, notes, conditional includes, including EPS files, and +longdesc versions of enumerate and itemize which allow the horizontal +longdesc and vertical spacing to be changed. +containersize 5988 +containerchecksum 3a5bb1d95c300e9546b67c48cc2c3e1a5c3089c4430d76172a8d7f3cdc59fe03de1fafc6a1babeacc9259444e09e85e02a64f3b3f8ddfe3883511482b9ff0985 +doccontainersize 225808 +doccontainerchecksum 2411bd37dba9c4afe1ac4251c9897c99e5934938bd802dbe89993d5b6ec0d19e1cba8b143ee5febd9ad73f0ef823eb79f34587e6885250a2bce8eebbdbf06fd6 +docfiles size=64 + RELOC/doc/latex/lhelp/Makefile + RELOC/doc/latex/lhelp/lhelp.pdf details="Package documentation" +srccontainersize 22548 +srccontainerchecksum 42e419f41c8d8c00a4d27b4bd4499097b7c4c2b8b2e75c68fedd224796dcc9b9dd09054f90cc525286ea6b72a579120c3fc027239bd0f0630ec471bc870ec02b +srcfiles size=22 + RELOC/source/latex/lhelp/lhelp.drv + RELOC/source/latex/lhelp/lhelp.dtx + RELOC/source/latex/lhelp/lhelp.ins +runfiles size=5 + RELOC/tex/latex/lhelp/lhelp.sty +catalogue-ctan /macros/latex/contrib/lhelp +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics macro-supp +catalogue-version 2.0 + name libertine category Package -revision 36815 -shortdesc Use of Linux Libertine and Biolinum fonts with LaTeX. +revision 51174 +shortdesc Use of Linux Libertine and Biolinum fonts with LaTeX relocated 1 longdesc The package provides the Libertine and Biolinum fonts in both longdesc Type 1 and OTF styles, together with support macros for their @@ -96115,22 +155232,49 @@ longdesc also included, in OTF style, only. The mweights package is used longdesc to manage the selection of font weights. The package supersedes longdesc both the libertineotf and the libertine-legacy packages. execute addMap libertine.map -runfiles size=5858 +containersize 13944824 +containerchecksum 22c376288f7feeca3201a0eb8150571e733acedeff62feaa1573a90d22c11b5cd1db34e5911bac9f6b86728ff47ab3f9ab94114fb829a83c77eb702ea7f453aa +doccontainersize 1119080 +doccontainerchecksum b65834e2903e8c11b1bda92a2d9f21e764db4828f5b63df7b14f28cf2ee791cd3000728858b262a2bc7536f9d536c4470089c7bfa8b0d5a961ba81775544f8bd +docfiles size=305 + RELOC/doc/fonts/libertine/Bugs.txt + RELOC/doc/fonts/libertine/ChangeLog.txt + RELOC/doc/fonts/libertine/ChangeLogLaTeX.txt + RELOC/doc/fonts/libertine/GPL.txt + RELOC/doc/fonts/libertine/LICENCE.txt + RELOC/doc/fonts/libertine/README details="Readme" + RELOC/doc/fonts/libertine/ToDo.txt + RELOC/doc/fonts/libertine/g2ntotex.c + RELOC/doc/fonts/libertine/libertine.pdf details="Package documentation" + RELOC/doc/fonts/libertine/libertine.tex + RELOC/doc/fonts/libertine/rename_enc + RELOC/doc/fonts/libertine/samples.pdf details="Font samples" + RELOC/doc/fonts/libertine/samples.tex +runfiles size=8280 RELOC/fonts/enc/dvips/libertine/lbtn_25tcsq.enc RELOC/fonts/enc/dvips/libertine/lbtn_2exa4z.enc RELOC/fonts/enc/dvips/libertine/lbtn_2ezly2.enc RELOC/fonts/enc/dvips/libertine/lbtn_2jy62z.enc + RELOC/fonts/enc/dvips/libertine/lbtn_2lhpup.enc + RELOC/fonts/enc/dvips/libertine/lbtn_2mruj6.enc RELOC/fonts/enc/dvips/libertine/lbtn_2or2lf.enc + RELOC/fonts/enc/dvips/libertine/lbtn_2vtnkl.enc RELOC/fonts/enc/dvips/libertine/lbtn_2xw2fz.enc + RELOC/fonts/enc/dvips/libertine/lbtn_2yk3ov.enc RELOC/fonts/enc/dvips/libertine/lbtn_3acize.enc RELOC/fonts/enc/dvips/libertine/lbtn_3c7nkx.enc - RELOC/fonts/enc/dvips/libertine/lbtn_3csahh.enc + RELOC/fonts/enc/dvips/libertine/lbtn_3dk467.enc RELOC/fonts/enc/dvips/libertine/lbtn_3gqkkc.enc + RELOC/fonts/enc/dvips/libertine/lbtn_3i7fl4.enc + RELOC/fonts/enc/dvips/libertine/lbtn_3ocgcu.enc RELOC/fonts/enc/dvips/libertine/lbtn_3r2fe2.enc + RELOC/fonts/enc/dvips/libertine/lbtn_3zs4uy.enc + RELOC/fonts/enc/dvips/libertine/lbtn_44kw74.enc + RELOC/fonts/enc/dvips/libertine/lbtn_4fqbzh.enc RELOC/fonts/enc/dvips/libertine/lbtn_4gizrm.enc RELOC/fonts/enc/dvips/libertine/lbtn_4h5nuw.enc RELOC/fonts/enc/dvips/libertine/lbtn_4ifdhd.enc - RELOC/fonts/enc/dvips/libertine/lbtn_4jqvtd.enc + RELOC/fonts/enc/dvips/libertine/lbtn_4lzzdn.enc RELOC/fonts/enc/dvips/libertine/lbtn_4p7cpr.enc RELOC/fonts/enc/dvips/libertine/lbtn_4pa5s6.enc RELOC/fonts/enc/dvips/libertine/lbtn_4qdwcl.enc @@ -96143,6 +155287,7 @@ runfiles size=5858 RELOC/fonts/enc/dvips/libertine/lbtn_67ud6q.enc RELOC/fonts/enc/dvips/libertine/lbtn_6fbtzc.enc RELOC/fonts/enc/dvips/libertine/lbtn_6icwtb.enc + RELOC/fonts/enc/dvips/libertine/lbtn_6igaju.enc RELOC/fonts/enc/dvips/libertine/lbtn_6koeqx.enc RELOC/fonts/enc/dvips/libertine/lbtn_6mhf45.enc RELOC/fonts/enc/dvips/libertine/lbtn_6p6dn5.enc @@ -96154,13 +155299,18 @@ runfiles size=5858 RELOC/fonts/enc/dvips/libertine/lbtn_7fko2h.enc RELOC/fonts/enc/dvips/libertine/lbtn_7gfcac.enc RELOC/fonts/enc/dvips/libertine/lbtn_7grukw.enc + RELOC/fonts/enc/dvips/libertine/lbtn_7gvbi7.enc RELOC/fonts/enc/dvips/libertine/lbtn_7ukmos.enc + RELOC/fonts/enc/dvips/libertine/lbtn_7wxhd7.enc RELOC/fonts/enc/dvips/libertine/lbtn_7yry24.enc + RELOC/fonts/enc/dvips/libertine/lbtn_7zzaqc.enc + RELOC/fonts/enc/dvips/libertine/lbtn_a6mubu.enc + RELOC/fonts/enc/dvips/libertine/lbtn_a7ysm3.enc RELOC/fonts/enc/dvips/libertine/lbtn_ac44fr.enc RELOC/fonts/enc/dvips/libertine/lbtn_afusau.enc - RELOC/fonts/enc/dvips/libertine/lbtn_agarrr.enc RELOC/fonts/enc/dvips/libertine/lbtn_aiatc4.enc RELOC/fonts/enc/dvips/libertine/lbtn_ashjgg.enc + RELOC/fonts/enc/dvips/libertine/lbtn_avrf3y.enc RELOC/fonts/enc/dvips/libertine/lbtn_azutla.enc RELOC/fonts/enc/dvips/libertine/lbtn_b7buxp.enc RELOC/fonts/enc/dvips/libertine/lbtn_b7tf5m.enc @@ -96168,60 +155318,76 @@ runfiles size=5858 RELOC/fonts/enc/dvips/libertine/lbtn_bgqvqi.enc RELOC/fonts/enc/dvips/libertine/lbtn_bkwvsw.enc RELOC/fonts/enc/dvips/libertine/lbtn_bvtjwh.enc + RELOC/fonts/enc/dvips/libertine/lbtn_bxcpwt.enc RELOC/fonts/enc/dvips/libertine/lbtn_c3m4uk.enc RELOC/fonts/enc/dvips/libertine/lbtn_c4mbat.enc - RELOC/fonts/enc/dvips/libertine/lbtn_c6xmqr.enc + RELOC/fonts/enc/dvips/libertine/lbtn_c5qhbu.enc RELOC/fonts/enc/dvips/libertine/lbtn_c6yh3y.enc + RELOC/fonts/enc/dvips/libertine/lbtn_c7hqsr.enc RELOC/fonts/enc/dvips/libertine/lbtn_c7kyj5.enc - RELOC/fonts/enc/dvips/libertine/lbtn_cetbgr.enc - RELOC/fonts/enc/dvips/libertine/lbtn_cg3sqm.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ccye3h.enc RELOC/fonts/enc/dvips/libertine/lbtn_coqhcm.enc RELOC/fonts/enc/dvips/libertine/lbtn_crxz7j.enc RELOC/fonts/enc/dvips/libertine/lbtn_ctsnwr.enc RELOC/fonts/enc/dvips/libertine/lbtn_d4efeo.enc + RELOC/fonts/enc/dvips/libertine/lbtn_d5t6d3.enc RELOC/fonts/enc/dvips/libertine/lbtn_d6jdyt.enc RELOC/fonts/enc/dvips/libertine/lbtn_dc4jmj.enc RELOC/fonts/enc/dvips/libertine/lbtn_dgc7p3.enc RELOC/fonts/enc/dvips/libertine/lbtn_dgwfac.enc RELOC/fonts/enc/dvips/libertine/lbtn_dh3kuf.enc + RELOC/fonts/enc/dvips/libertine/lbtn_dhi6qf.enc RELOC/fonts/enc/dvips/libertine/lbtn_djk3hd.enc RELOC/fonts/enc/dvips/libertine/lbtn_dm3bvq.enc RELOC/fonts/enc/dvips/libertine/lbtn_dobmnc.enc RELOC/fonts/enc/dvips/libertine/lbtn_doxsfd.enc RELOC/fonts/enc/dvips/libertine/lbtn_drc7cb.enc + RELOC/fonts/enc/dvips/libertine/lbtn_dukpkt.enc + RELOC/fonts/enc/dvips/libertine/lbtn_dvvysc.enc RELOC/fonts/enc/dvips/libertine/lbtn_dylq3g.enc RELOC/fonts/enc/dvips/libertine/lbtn_e2nnp6.enc + RELOC/fonts/enc/dvips/libertine/lbtn_edcawa.enc RELOC/fonts/enc/dvips/libertine/lbtn_ee6wgp.enc - RELOC/fonts/enc/dvips/libertine/lbtn_eesn4m.enc RELOC/fonts/enc/dvips/libertine/lbtn_eh2cuc.enc RELOC/fonts/enc/dvips/libertine/lbtn_ehpgim.enc RELOC/fonts/enc/dvips/libertine/lbtn_ek5o26.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ep5ow4.enc RELOC/fonts/enc/dvips/libertine/lbtn_etetpy.enc RELOC/fonts/enc/dvips/libertine/lbtn_ew6fhv.enc RELOC/fonts/enc/dvips/libertine/lbtn_ewm74v.enc RELOC/fonts/enc/dvips/libertine/lbtn_ezf25l.enc + RELOC/fonts/enc/dvips/libertine/lbtn_f3437j.enc RELOC/fonts/enc/dvips/libertine/lbtn_f4vjgq.enc RELOC/fonts/enc/dvips/libertine/lbtn_f75mth.enc RELOC/fonts/enc/dvips/libertine/lbtn_fah7mx.enc RELOC/fonts/enc/dvips/libertine/lbtn_fdphbq.enc RELOC/fonts/enc/dvips/libertine/lbtn_ffhb5a.enc + RELOC/fonts/enc/dvips/libertine/lbtn_fgflse.enc + RELOC/fonts/enc/dvips/libertine/lbtn_flx7j2.enc + RELOC/fonts/enc/dvips/libertine/lbtn_fmcq3c.enc + RELOC/fonts/enc/dvips/libertine/lbtn_fte2ql.enc + RELOC/fonts/enc/dvips/libertine/lbtn_fygcup.enc RELOC/fonts/enc/dvips/libertine/lbtn_g3iycs.enc RELOC/fonts/enc/dvips/libertine/lbtn_g3y3rv.enc - RELOC/fonts/enc/dvips/libertine/lbtn_g73f77.enc RELOC/fonts/enc/dvips/libertine/lbtn_gannye.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ggtxir.enc RELOC/fonts/enc/dvips/libertine/lbtn_gj2vz5.enc + RELOC/fonts/enc/dvips/libertine/lbtn_glqt35.enc RELOC/fonts/enc/dvips/libertine/lbtn_gppru4.enc RELOC/fonts/enc/dvips/libertine/lbtn_gw5dl2.enc + RELOC/fonts/enc/dvips/libertine/lbtn_gwx7x5.enc RELOC/fonts/enc/dvips/libertine/lbtn_gzistf.enc RELOC/fonts/enc/dvips/libertine/lbtn_h7zthp.enc RELOC/fonts/enc/dvips/libertine/lbtn_hj4mhx.enc RELOC/fonts/enc/dvips/libertine/lbtn_hk6flg.enc + RELOC/fonts/enc/dvips/libertine/lbtn_hmhe76.enc RELOC/fonts/enc/dvips/libertine/lbtn_hraow7.enc RELOC/fonts/enc/dvips/libertine/lbtn_hrou5r.enc - RELOC/fonts/enc/dvips/libertine/lbtn_htcja3.enc RELOC/fonts/enc/dvips/libertine/lbtn_hx6qbg.enc + RELOC/fonts/enc/dvips/libertine/lbtn_hxgvkt.enc RELOC/fonts/enc/dvips/libertine/lbtn_i5uqjc.enc RELOC/fonts/enc/dvips/libertine/lbtn_igd6cx.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ijo4o4.enc RELOC/fonts/enc/dvips/libertine/lbtn_ilz2ox.enc RELOC/fonts/enc/dvips/libertine/lbtn_imzna7.enc RELOC/fonts/enc/dvips/libertine/lbtn_indkeb.enc @@ -96230,35 +155396,46 @@ runfiles size=5858 RELOC/fonts/enc/dvips/libertine/lbtn_iqbcqn.enc RELOC/fonts/enc/dvips/libertine/lbtn_ism4pi.enc RELOC/fonts/enc/dvips/libertine/lbtn_itwafr.enc + RELOC/fonts/enc/dvips/libertine/lbtn_j3xg3k.enc RELOC/fonts/enc/dvips/libertine/lbtn_j6rzs3.enc RELOC/fonts/enc/dvips/libertine/lbtn_jbwhst.enc RELOC/fonts/enc/dvips/libertine/lbtn_jk65vs.enc RELOC/fonts/enc/dvips/libertine/lbtn_jkqd5u.enc RELOC/fonts/enc/dvips/libertine/lbtn_jm7hzd.enc RELOC/fonts/enc/dvips/libertine/lbtn_jnah33.enc + RELOC/fonts/enc/dvips/libertine/lbtn_jr2l53.enc RELOC/fonts/enc/dvips/libertine/lbtn_jtbvjr.enc RELOC/fonts/enc/dvips/libertine/lbtn_jtta5h.enc RELOC/fonts/enc/dvips/libertine/lbtn_jubyw6.enc RELOC/fonts/enc/dvips/libertine/lbtn_jvhpxk.enc + RELOC/fonts/enc/dvips/libertine/lbtn_jx6jsy.enc + RELOC/fonts/enc/dvips/libertine/lbtn_k2din5.enc RELOC/fonts/enc/dvips/libertine/lbtn_ka7zfp.enc RELOC/fonts/enc/dvips/libertine/lbtn_ki75ao.enc + RELOC/fonts/enc/dvips/libertine/lbtn_kijugd.enc + RELOC/fonts/enc/dvips/libertine/lbtn_kmbcyi.enc RELOC/fonts/enc/dvips/libertine/lbtn_kozgsn.enc + RELOC/fonts/enc/dvips/libertine/lbtn_kqi56g.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ks2ukx.enc RELOC/fonts/enc/dvips/libertine/lbtn_kuli6n.enc RELOC/fonts/enc/dvips/libertine/lbtn_kvn6mi.enc RELOC/fonts/enc/dvips/libertine/lbtn_l4ygyh.enc RELOC/fonts/enc/dvips/libertine/lbtn_l5ekfx.enc - RELOC/fonts/enc/dvips/libertine/lbtn_l7w3c6.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ldz4vi.enc + RELOC/fonts/enc/dvips/libertine/lbtn_lmduqq.enc RELOC/fonts/enc/dvips/libertine/lbtn_lqfkm2.enc RELOC/fonts/enc/dvips/libertine/lbtn_lrrvac.enc - RELOC/fonts/enc/dvips/libertine/lbtn_lu6v53.enc RELOC/fonts/enc/dvips/libertine/lbtn_lu7m2n.enc + RELOC/fonts/enc/dvips/libertine/lbtn_lyu3x3.enc RELOC/fonts/enc/dvips/libertine/lbtn_m4ul6s.enc RELOC/fonts/enc/dvips/libertine/lbtn_m7vdvu.enc RELOC/fonts/enc/dvips/libertine/lbtn_mdetlm.enc + RELOC/fonts/enc/dvips/libertine/lbtn_mlkyly.enc RELOC/fonts/enc/dvips/libertine/lbtn_mmutss.enc RELOC/fonts/enc/dvips/libertine/lbtn_mx3chd.enc RELOC/fonts/enc/dvips/libertine/lbtn_mywn7m.enc RELOC/fonts/enc/dvips/libertine/lbtn_n3ddym.enc + RELOC/fonts/enc/dvips/libertine/lbtn_n3gv2c.enc RELOC/fonts/enc/dvips/libertine/lbtn_n3xw57.enc RELOC/fonts/enc/dvips/libertine/lbtn_n7uljd.enc RELOC/fonts/enc/dvips/libertine/lbtn_naooyc.enc @@ -96267,71 +155444,91 @@ runfiles size=5858 RELOC/fonts/enc/dvips/libertine/lbtn_nifh3d.enc RELOC/fonts/enc/dvips/libertine/lbtn_o3jfbt.enc RELOC/fonts/enc/dvips/libertine/lbtn_o3v7gd.enc + RELOC/fonts/enc/dvips/libertine/lbtn_o7ljol.enc + RELOC/fonts/enc/dvips/libertine/lbtn_oexx6f.enc RELOC/fonts/enc/dvips/libertine/lbtn_oie7e6.enc + RELOC/fonts/enc/dvips/libertine/lbtn_okxbyw.enc RELOC/fonts/enc/dvips/libertine/lbtn_omcwp2.enc - RELOC/fonts/enc/dvips/libertine/lbtn_otwoau.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ooant5.enc RELOC/fonts/enc/dvips/libertine/lbtn_ouu7z6.enc RELOC/fonts/enc/dvips/libertine/lbtn_ov2e4f.enc - RELOC/fonts/enc/dvips/libertine/lbtn_owz7oq.enc - RELOC/fonts/enc/dvips/libertine/lbtn_p657rp.enc + RELOC/fonts/enc/dvips/libertine/lbtn_owmg2c.enc RELOC/fonts/enc/dvips/libertine/lbtn_pagsao.enc + RELOC/fonts/enc/dvips/libertine/lbtn_pc62jw.enc + RELOC/fonts/enc/dvips/libertine/lbtn_pfnu67.enc RELOC/fonts/enc/dvips/libertine/lbtn_pjjyzv.enc RELOC/fonts/enc/dvips/libertine/lbtn_pjxd67.enc + RELOC/fonts/enc/dvips/libertine/lbtn_pkft74.enc + RELOC/fonts/enc/dvips/libertine/lbtn_pq6qgt.enc RELOC/fonts/enc/dvips/libertine/lbtn_prxh5x.enc + RELOC/fonts/enc/dvips/libertine/lbtn_puhpfk.enc RELOC/fonts/enc/dvips/libertine/lbtn_pwsgbx.enc - RELOC/fonts/enc/dvips/libertine/lbtn_pznusu.enc RELOC/fonts/enc/dvips/libertine/lbtn_q2zrjv.enc RELOC/fonts/enc/dvips/libertine/lbtn_q6vmp6.enc RELOC/fonts/enc/dvips/libertine/lbtn_qac756.enc RELOC/fonts/enc/dvips/libertine/lbtn_qacof3.enc RELOC/fonts/enc/dvips/libertine/lbtn_qgimbz.enc RELOC/fonts/enc/dvips/libertine/lbtn_qlw4xk.enc + RELOC/fonts/enc/dvips/libertine/lbtn_qnd5b5.enc RELOC/fonts/enc/dvips/libertine/lbtn_qwz7uv.enc - RELOC/fonts/enc/dvips/libertine/lbtn_qzi2b5.enc RELOC/fonts/enc/dvips/libertine/lbtn_r4tgzq.enc RELOC/fonts/enc/dvips/libertine/lbtn_rat5le.enc + RELOC/fonts/enc/dvips/libertine/lbtn_rh4gvg.enc RELOC/fonts/enc/dvips/libertine/lbtn_roevjg.enc RELOC/fonts/enc/dvips/libertine/lbtn_rvmawp.enc - RELOC/fonts/enc/dvips/libertine/lbtn_s5bq4i.enc RELOC/fonts/enc/dvips/libertine/lbtn_sakzps.enc - RELOC/fonts/enc/dvips/libertine/lbtn_sc4wfs.enc RELOC/fonts/enc/dvips/libertine/lbtn_sdmuhw.enc RELOC/fonts/enc/dvips/libertine/lbtn_sfn3yq.enc RELOC/fonts/enc/dvips/libertine/lbtn_sjkbhb.enc - RELOC/fonts/enc/dvips/libertine/lbtn_snmbym.enc RELOC/fonts/enc/dvips/libertine/lbtn_soyanm.enc + RELOC/fonts/enc/dvips/libertine/lbtn_sruc5m.enc + RELOC/fonts/enc/dvips/libertine/lbtn_suv2ur.enc RELOC/fonts/enc/dvips/libertine/lbtn_t62t6h.enc - RELOC/fonts/enc/dvips/libertine/lbtn_tctjin.enc + RELOC/fonts/enc/dvips/libertine/lbtn_tk3eej.enc RELOC/fonts/enc/dvips/libertine/lbtn_tltjc6.enc RELOC/fonts/enc/dvips/libertine/lbtn_tlukpt.enc RELOC/fonts/enc/dvips/libertine/lbtn_tnngrt.enc + RELOC/fonts/enc/dvips/libertine/lbtn_trvg3w.enc RELOC/fonts/enc/dvips/libertine/lbtn_txfk5t.enc RELOC/fonts/enc/dvips/libertine/lbtn_u442ab.enc + RELOC/fonts/enc/dvips/libertine/lbtn_u4pufl.enc RELOC/fonts/enc/dvips/libertine/lbtn_u7qtuy.enc RELOC/fonts/enc/dvips/libertine/lbtn_ufdkzv.enc RELOC/fonts/enc/dvips/libertine/lbtn_ulngvd.enc + RELOC/fonts/enc/dvips/libertine/lbtn_uqwtgw.enc RELOC/fonts/enc/dvips/libertine/lbtn_urpt4g.enc + RELOC/fonts/enc/dvips/libertine/lbtn_usa6cb.enc RELOC/fonts/enc/dvips/libertine/lbtn_utckyy.enc + RELOC/fonts/enc/dvips/libertine/lbtn_uwivlq.enc RELOC/fonts/enc/dvips/libertine/lbtn_v2xmgd.enc RELOC/fonts/enc/dvips/libertine/lbtn_v3uc42.enc RELOC/fonts/enc/dvips/libertine/lbtn_vezqth.enc RELOC/fonts/enc/dvips/libertine/lbtn_vfdxlw.enc + RELOC/fonts/enc/dvips/libertine/lbtn_vhl5ch.enc RELOC/fonts/enc/dvips/libertine/lbtn_vm42ve.enc RELOC/fonts/enc/dvips/libertine/lbtn_voilzo.enc RELOC/fonts/enc/dvips/libertine/lbtn_volajt.enc RELOC/fonts/enc/dvips/libertine/lbtn_vp3gac.enc RELOC/fonts/enc/dvips/libertine/lbtn_vpeqwl.enc + RELOC/fonts/enc/dvips/libertine/lbtn_vpjqew.enc RELOC/fonts/enc/dvips/libertine/lbtn_vsrqlo.enc + RELOC/fonts/enc/dvips/libertine/lbtn_vump27.enc + RELOC/fonts/enc/dvips/libertine/lbtn_vyzecs.enc RELOC/fonts/enc/dvips/libertine/lbtn_w5h3ip.enc RELOC/fonts/enc/dvips/libertine/lbtn_w6afmj.enc RELOC/fonts/enc/dvips/libertine/lbtn_wcay2e.enc RELOC/fonts/enc/dvips/libertine/lbtn_weuxsp.enc - RELOC/fonts/enc/dvips/libertine/lbtn_wfw7lb.enc RELOC/fonts/enc/dvips/libertine/lbtn_wnipxy.enc + RELOC/fonts/enc/dvips/libertine/lbtn_wruwpj.enc + RELOC/fonts/enc/dvips/libertine/lbtn_wyfdnl.enc RELOC/fonts/enc/dvips/libertine/lbtn_wzgokb.enc RELOC/fonts/enc/dvips/libertine/lbtn_x4bvel.enc + RELOC/fonts/enc/dvips/libertine/lbtn_x4urtl.enc + RELOC/fonts/enc/dvips/libertine/lbtn_xapzkq.enc RELOC/fonts/enc/dvips/libertine/lbtn_xc6c72.enc RELOC/fonts/enc/dvips/libertine/lbtn_xeech7.enc + RELOC/fonts/enc/dvips/libertine/lbtn_xie3od.enc + RELOC/fonts/enc/dvips/libertine/lbtn_xnyvcl.enc RELOC/fonts/enc/dvips/libertine/lbtn_xogrpz.enc RELOC/fonts/enc/dvips/libertine/lbtn_xpavo4.enc RELOC/fonts/enc/dvips/libertine/lbtn_xsgxhq.enc @@ -96340,12 +155537,15 @@ runfiles size=5858 RELOC/fonts/enc/dvips/libertine/lbtn_y6cxei.enc RELOC/fonts/enc/dvips/libertine/lbtn_y6gumo.enc RELOC/fonts/enc/dvips/libertine/lbtn_yea32d.enc + RELOC/fonts/enc/dvips/libertine/lbtn_yfflrw.enc RELOC/fonts/enc/dvips/libertine/lbtn_yruotg.enc RELOC/fonts/enc/dvips/libertine/lbtn_yvenhr.enc RELOC/fonts/enc/dvips/libertine/lbtn_z254vq.enc + RELOC/fonts/enc/dvips/libertine/lbtn_z3bmga.enc RELOC/fonts/enc/dvips/libertine/lbtn_zacdtl.enc RELOC/fonts/enc/dvips/libertine/lbtn_zajy4r.enc - RELOC/fonts/enc/dvips/libertine/lbtn_zauseh.enc + RELOC/fonts/enc/dvips/libertine/lbtn_zkaele.enc + RELOC/fonts/enc/dvips/libertine/lbtn_zlmmkb.enc RELOC/fonts/enc/dvips/libertine/lbtn_zoexom.enc RELOC/fonts/enc/dvips/libertine/lbtn_zp73k3.enc RELOC/fonts/enc/dvips/libertine/lbtn_zq22hj.enc @@ -96358,6 +155558,7 @@ runfiles size=5858 RELOC/fonts/opentype/public/libertine/LinBiolinum_RB.otf RELOC/fonts/opentype/public/libertine/LinBiolinum_RBO.otf RELOC/fonts/opentype/public/libertine/LinBiolinum_RI.otf + RELOC/fonts/opentype/public/libertine/LinLibertineMBnew.otf RELOC/fonts/opentype/public/libertine/LinLibertine_DR.otf RELOC/fonts/opentype/public/libertine/LinLibertine_I.otf RELOC/fonts/opentype/public/libertine/LinLibertine_M.otf @@ -96370,6 +155571,230 @@ runfiles size=5858 RELOC/fonts/opentype/public/libertine/LinLibertine_RI.otf RELOC/fonts/opentype/public/libertine/LinLibertine_RZ.otf RELOC/fonts/opentype/public/libertine/LinLibertine_RZI.otf + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumO-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOB-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumOI-tosf-ts1.tfm RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-ly1--base.tfm RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-ly1.tfm RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-ot1--base.tfm @@ -96658,13 +156083,6 @@ runfiles size=5858 RELOC/fonts/tfm/public/libertine/LinLibertineIT-lf-t1.tfm RELOC/fonts/tfm/public/libertine/LinLibertineIT-lf-ts1--base.tfm RELOC/fonts/tfm/public/libertine/LinLibertineIT-lf-ts1.tfm - RELOC/fonts/tfm/public/libertine/LinLibertineIT-osf-ly1--base.tfm - RELOC/fonts/tfm/public/libertine/LinLibertineIT-osf-ly1.tfm - RELOC/fonts/tfm/public/libertine/LinLibertineIT-osf-ot1.tfm - RELOC/fonts/tfm/public/libertine/LinLibertineIT-osf-t1--base.tfm - RELOC/fonts/tfm/public/libertine/LinLibertineIT-osf-t1.tfm - RELOC/fonts/tfm/public/libertine/LinLibertineIT-osf-ts1--base.tfm - RELOC/fonts/tfm/public/libertine/LinLibertineIT-osf-ts1.tfm RELOC/fonts/tfm/public/libertine/LinLibertineIT-tlf-ly1--base.tfm RELOC/fonts/tfm/public/libertine/LinLibertineIT-tlf-ly1.tfm RELOC/fonts/tfm/public/libertine/LinLibertineIT-tlf-ot1.tfm @@ -96672,6 +156090,13 @@ runfiles size=5858 RELOC/fonts/tfm/public/libertine/LinLibertineIT-tlf-t1.tfm RELOC/fonts/tfm/public/libertine/LinLibertineIT-tlf-ts1--base.tfm RELOC/fonts/tfm/public/libertine/LinLibertineIT-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-lf-ts1.tfm RELOC/fonts/tfm/public/libertine/LinLibertineMT-sup-ly1--base.tfm RELOC/fonts/tfm/public/libertine/LinLibertineMT-sup-ly1.tfm RELOC/fonts/tfm/public/libertine/LinLibertineMT-sup-ot1.tfm @@ -96684,6 +156109,13 @@ runfiles size=5858 RELOC/fonts/tfm/public/libertine/LinLibertineMT-tlf-t1.tfm RELOC/fonts/tfm/public/libertine/LinLibertineMT-tlf-ts1--base.tfm RELOC/fonts/tfm/public/libertine/LinLibertineMT-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-lf-ts1.tfm RELOC/fonts/tfm/public/libertine/LinLibertineMTB-sup-ly1--base.tfm RELOC/fonts/tfm/public/libertine/LinLibertineMTB-sup-ly1.tfm RELOC/fonts/tfm/public/libertine/LinLibertineMTB-sup-ot1.tfm @@ -96696,6 +156128,13 @@ runfiles size=5858 RELOC/fonts/tfm/public/libertine/LinLibertineMTB-tlf-t1.tfm RELOC/fonts/tfm/public/libertine/LinLibertineMTB-tlf-ts1--base.tfm RELOC/fonts/tfm/public/libertine/LinLibertineMTB-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-lf-ts1.tfm RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-sup-ly1--base.tfm RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-sup-ly1.tfm RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-sup-ot1.tfm @@ -96708,6 +156147,13 @@ runfiles size=5858 RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-tlf-t1.tfm RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-tlf-ts1--base.tfm RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-lf-ts1.tfm RELOC/fonts/tfm/public/libertine/LinLibertineMTO-sup-ly1--base.tfm RELOC/fonts/tfm/public/libertine/LinLibertineMTO-sup-ly1.tfm RELOC/fonts/tfm/public/libertine/LinLibertineMTO-sup-ot1.tfm @@ -96720,6 +156166,338 @@ runfiles size=5858 RELOC/fonts/tfm/public/libertine/LinLibertineMTO-tlf-t1.tfm RELOC/fonts/tfm/public/libertine/LinLibertineMTO-tlf-ts1--base.tfm RELOC/fonts/tfm/public/libertine/LinLibertineMTO-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineO-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOB-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOBI-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOI-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZ-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineOZI-tosf-ts1.tfm RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-ly1--base.tfm RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-ly1.tfm RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-ot1--base.tfm @@ -97091,12 +156869,130 @@ runfiles size=5858 RELOC/fonts/type1/public/libertine/LinLibertineMTB.pfb RELOC/fonts/type1/public/libertine/LinLibertineMTBO.pfb RELOC/fonts/type1/public/libertine/LinLibertineMTO.pfb + RELOC/fonts/type1/public/libertine/LinLibertineO.pfb + RELOC/fonts/type1/public/libertine/LinLibertineOB.pfb + RELOC/fonts/type1/public/libertine/LinLibertineOBI.pfb + RELOC/fonts/type1/public/libertine/LinLibertineOI.pfb + RELOC/fonts/type1/public/libertine/LinLibertineOZ.pfb + RELOC/fonts/type1/public/libertine/LinLibertineOZI.pfb RELOC/fonts/type1/public/libertine/LinLibertineT.pfb RELOC/fonts/type1/public/libertine/LinLibertineTB.pfb RELOC/fonts/type1/public/libertine/LinLibertineTBI.pfb RELOC/fonts/type1/public/libertine/LinLibertineTI.pfb RELOC/fonts/type1/public/libertine/LinLibertineTZ.pfb RELOC/fonts/type1/public/libertine/LinLibertineTZI.pfb + RELOC/fonts/vf/public/libertine/LinBiolinumO-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumO-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOB-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOBO-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumOI-tosf-ts1.vf RELOC/fonts/vf/public/libertine/LinBiolinumT-lf-ly1.vf RELOC/fonts/vf/public/libertine/LinBiolinumT-lf-ot1.vf RELOC/fonts/vf/public/libertine/LinBiolinumT-lf-sc-ly1.vf @@ -97238,32 +157134,205 @@ runfiles size=5858 RELOC/fonts/vf/public/libertine/LinLibertineIT-lf-ly1.vf RELOC/fonts/vf/public/libertine/LinLibertineIT-lf-t1.vf RELOC/fonts/vf/public/libertine/LinLibertineIT-lf-ts1.vf - RELOC/fonts/vf/public/libertine/LinLibertineIT-osf-ly1.vf - RELOC/fonts/vf/public/libertine/LinLibertineIT-osf-t1.vf - RELOC/fonts/vf/public/libertine/LinLibertineIT-osf-ts1.vf RELOC/fonts/vf/public/libertine/LinLibertineIT-tlf-ly1.vf RELOC/fonts/vf/public/libertine/LinLibertineIT-tlf-t1.vf RELOC/fonts/vf/public/libertine/LinLibertineIT-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMT-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMT-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMT-lf-ts1.vf RELOC/fonts/vf/public/libertine/LinLibertineMT-sup-ly1.vf RELOC/fonts/vf/public/libertine/LinLibertineMT-sup-t1.vf RELOC/fonts/vf/public/libertine/LinLibertineMT-tlf-ly1.vf RELOC/fonts/vf/public/libertine/LinLibertineMT-tlf-t1.vf RELOC/fonts/vf/public/libertine/LinLibertineMT-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTB-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTB-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTB-lf-ts1.vf RELOC/fonts/vf/public/libertine/LinLibertineMTB-sup-ly1.vf RELOC/fonts/vf/public/libertine/LinLibertineMTB-sup-t1.vf RELOC/fonts/vf/public/libertine/LinLibertineMTB-tlf-ly1.vf RELOC/fonts/vf/public/libertine/LinLibertineMTB-tlf-t1.vf RELOC/fonts/vf/public/libertine/LinLibertineMTB-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTBO-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTBO-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTBO-lf-ts1.vf RELOC/fonts/vf/public/libertine/LinLibertineMTBO-sup-ly1.vf RELOC/fonts/vf/public/libertine/LinLibertineMTBO-sup-t1.vf RELOC/fonts/vf/public/libertine/LinLibertineMTBO-tlf-ly1.vf RELOC/fonts/vf/public/libertine/LinLibertineMTBO-tlf-t1.vf RELOC/fonts/vf/public/libertine/LinLibertineMTBO-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTO-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTO-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineMTO-lf-ts1.vf RELOC/fonts/vf/public/libertine/LinLibertineMTO-sup-ly1.vf RELOC/fonts/vf/public/libertine/LinLibertineMTO-sup-t1.vf RELOC/fonts/vf/public/libertine/LinLibertineMTO-tlf-ly1.vf RELOC/fonts/vf/public/libertine/LinLibertineMTO-tlf-t1.vf RELOC/fonts/vf/public/libertine/LinLibertineMTO-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineO-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOB-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOBI-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOI-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZ-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineOZI-tosf-ts1.vf RELOC/fonts/vf/public/libertine/LinLibertineT-lf-ly1.vf RELOC/fonts/vf/public/libertine/LinLibertineT-lf-ot1.vf RELOC/fonts/vf/public/libertine/LinLibertineT-lf-sc-ly1.vf @@ -97440,6 +157509,10 @@ runfiles size=5858 RELOC/fonts/vf/public/libertine/LinLibertineTZI-tosf-t1.vf RELOC/fonts/vf/public/libertine/LinLibertineTZI-tosf-ts1.vf RELOC/tex/latex/libertine/LKey.tex + RELOC/tex/latex/libertine/LY1LinuxBiolinumO-LF.fd + RELOC/tex/latex/libertine/LY1LinuxBiolinumO-OsF.fd + RELOC/tex/latex/libertine/LY1LinuxBiolinumO-TLF.fd + RELOC/tex/latex/libertine/LY1LinuxBiolinumO-TOsF.fd RELOC/tex/latex/libertine/LY1LinuxBiolinumT-LF.fd RELOC/tex/latex/libertine/LY1LinuxBiolinumT-OsF.fd RELOC/tex/latex/libertine/LY1LinuxBiolinumT-Sup.fd @@ -97453,8 +157526,13 @@ runfiles size=5858 RELOC/tex/latex/libertine/LY1LinuxLibertineInitialsT-LF.fd RELOC/tex/latex/libertine/LY1LinuxLibertineInitialsT-OsF.fd RELOC/tex/latex/libertine/LY1LinuxLibertineInitialsT-TLF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineMonoT-LF.fd RELOC/tex/latex/libertine/LY1LinuxLibertineMonoT-Sup.fd RELOC/tex/latex/libertine/LY1LinuxLibertineMonoT-TLF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineO-LF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineO-OsF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineO-TLF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineO-TOsF.fd RELOC/tex/latex/libertine/LY1LinuxLibertineT-LF.fd RELOC/tex/latex/libertine/LY1LinuxLibertineT-OsF.fd RELOC/tex/latex/libertine/LY1LinuxLibertineT-Sup.fd @@ -97464,6 +157542,10 @@ runfiles size=5858 RELOC/tex/latex/libertine/LinBiolinum_R.tex RELOC/tex/latex/libertine/LinLibertine_I.tex RELOC/tex/latex/libertine/LinLibertine_R.tex + RELOC/tex/latex/libertine/OT1LinuxBiolinumO-LF.fd + RELOC/tex/latex/libertine/OT1LinuxBiolinumO-OsF.fd + RELOC/tex/latex/libertine/OT1LinuxBiolinumO-TLF.fd + RELOC/tex/latex/libertine/OT1LinuxBiolinumO-TOsF.fd RELOC/tex/latex/libertine/OT1LinuxBiolinumT-LF.fd RELOC/tex/latex/libertine/OT1LinuxBiolinumT-OsF.fd RELOC/tex/latex/libertine/OT1LinuxBiolinumT-Sup.fd @@ -97477,13 +157559,22 @@ runfiles size=5858 RELOC/tex/latex/libertine/OT1LinuxLibertineInitialsT-LF.fd RELOC/tex/latex/libertine/OT1LinuxLibertineInitialsT-OsF.fd RELOC/tex/latex/libertine/OT1LinuxLibertineInitialsT-TLF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineMonoT-LF.fd RELOC/tex/latex/libertine/OT1LinuxLibertineMonoT-Sup.fd RELOC/tex/latex/libertine/OT1LinuxLibertineMonoT-TLF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineO-LF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineO-OsF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineO-TLF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineO-TOsF.fd RELOC/tex/latex/libertine/OT1LinuxLibertineT-LF.fd RELOC/tex/latex/libertine/OT1LinuxLibertineT-OsF.fd RELOC/tex/latex/libertine/OT1LinuxLibertineT-Sup.fd RELOC/tex/latex/libertine/OT1LinuxLibertineT-TLF.fd RELOC/tex/latex/libertine/OT1LinuxLibertineT-TOsF.fd + RELOC/tex/latex/libertine/T1LinuxBiolinumO-LF.fd + RELOC/tex/latex/libertine/T1LinuxBiolinumO-OsF.fd + RELOC/tex/latex/libertine/T1LinuxBiolinumO-TLF.fd + RELOC/tex/latex/libertine/T1LinuxBiolinumO-TOsF.fd RELOC/tex/latex/libertine/T1LinuxBiolinumT-LF.fd RELOC/tex/latex/libertine/T1LinuxBiolinumT-OsF.fd RELOC/tex/latex/libertine/T1LinuxBiolinumT-Sup.fd @@ -97497,13 +157588,22 @@ runfiles size=5858 RELOC/tex/latex/libertine/T1LinuxLibertineInitialsT-LF.fd RELOC/tex/latex/libertine/T1LinuxLibertineInitialsT-OsF.fd RELOC/tex/latex/libertine/T1LinuxLibertineInitialsT-TLF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineMonoT-LF.fd RELOC/tex/latex/libertine/T1LinuxLibertineMonoT-Sup.fd RELOC/tex/latex/libertine/T1LinuxLibertineMonoT-TLF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineO-LF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineO-OsF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineO-TLF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineO-TOsF.fd RELOC/tex/latex/libertine/T1LinuxLibertineT-LF.fd RELOC/tex/latex/libertine/T1LinuxLibertineT-OsF.fd RELOC/tex/latex/libertine/T1LinuxLibertineT-Sup.fd RELOC/tex/latex/libertine/T1LinuxLibertineT-TLF.fd RELOC/tex/latex/libertine/T1LinuxLibertineT-TOsF.fd + RELOC/tex/latex/libertine/TS1LinuxBiolinumO-LF.fd + RELOC/tex/latex/libertine/TS1LinuxBiolinumO-OsF.fd + RELOC/tex/latex/libertine/TS1LinuxBiolinumO-TLF.fd + RELOC/tex/latex/libertine/TS1LinuxBiolinumO-TOsF.fd RELOC/tex/latex/libertine/TS1LinuxBiolinumT-LF.fd RELOC/tex/latex/libertine/TS1LinuxBiolinumT-OsF.fd RELOC/tex/latex/libertine/TS1LinuxBiolinumT-TLF.fd @@ -97515,65 +157615,2025 @@ runfiles size=5858 RELOC/tex/latex/libertine/TS1LinuxLibertineInitialsT-LF.fd RELOC/tex/latex/libertine/TS1LinuxLibertineInitialsT-OsF.fd RELOC/tex/latex/libertine/TS1LinuxLibertineInitialsT-TLF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineMonoT-LF.fd RELOC/tex/latex/libertine/TS1LinuxLibertineMonoT-TLF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineO-LF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineO-OsF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineO-TLF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineO-TOsF.fd RELOC/tex/latex/libertine/TS1LinuxLibertineT-LF.fd RELOC/tex/latex/libertine/TS1LinuxLibertineT-OsF.fd RELOC/tex/latex/libertine/TS1LinuxLibertineT-TLF.fd RELOC/tex/latex/libertine/TS1LinuxLibertineT-TOsF.fd + RELOC/tex/latex/libertine/biolinum-otf.sty RELOC/tex/latex/libertine/biolinum-type1.sty RELOC/tex/latex/libertine/biolinum.sty + RELOC/tex/latex/libertine/libertine-otf.sty RELOC/tex/latex/libertine/libertine-type1.sty RELOC/tex/latex/libertine/libertine.sty RELOC/tex/latex/libertine/libertineMono-type1.sty RELOC/tex/latex/libertine/libertineMono.sty RELOC/tex/latex/libertine/libertineRoman.sty RELOC/tex/latex/libertine/libertineotf.sty -docfiles size=303 - RELOC/doc/fonts/libertine/Bugs.txt - RELOC/doc/fonts/libertine/ChangeLog.txt - RELOC/doc/fonts/libertine/GPL.txt - RELOC/doc/fonts/libertine/LICENCE.txt - RELOC/doc/fonts/libertine/README - RELOC/doc/fonts/libertine/ToDo.txt - RELOC/doc/fonts/libertine/g2ntotex.c - RELOC/doc/fonts/libertine/libertine.pdf - RELOC/doc/fonts/libertine/libertine.tex - RELOC/doc/fonts/libertine/rename_enc - RELOC/doc/fonts/libertine/samples.pdf - RELOC/doc/fonts/libertine/samples.tex catalogue-ctan /fonts/libertine -catalogue-date 2015-04-10 14:08:41 +0200 -catalogue-license lppl +catalogue-date 2019-05-21 15:30:34 +0200 +catalogue-license gplofllppl +catalogue-topics font font-body font-serif font-sans font-mono font-otf font-type1 font-supp font-t1enc catalogue-version 5.3.0 +name libertinegc +category Package +revision 44616 +shortdesc Libertine add-on to support Greek and Cyrillic +relocated 1 +longdesc The package provides LaTeX support files to access the Greek +longdesc and Cyrillic glyphs in LinuxLibertine. It functions as an +longdesc add-on to the libertine package, using filenames and macro +longdesc names that are compatible with that package. Supported +longdesc encodings: LGR, T2A, T2B, T2C, OT2. +execute addMap libertinegc.map +containersize 39208 +containerchecksum 0af71c5bd17a2c89d85c2df056e76e4f8ff98b24de40dd306a9c4207c15dbe9dfd08864736a3a45f1c82f51717396ea843082f6798b89f7e9ea8c316453a707f +doccontainersize 302488 +doccontainerchecksum 010db594b034a5e401fd17a7772dd3dbf95c37d533fad97f7b1568336beca31523384da1eab42e74b2e8bf294b25a8d19df7469eddd65cc1bb61abd5dbe79d03 +docfiles size=76 + RELOC/doc/fonts/libertinegc/README details="Readme" + RELOC/doc/fonts/libertinegc/libertinegc-doc.pdf details="Package documentation" + RELOC/doc/fonts/libertinegc/libertinegc-doc.tex +runfiles size=152 + RELOC/fonts/enc/dvips/libertinegc/lib-ot2.enc + RELOC/fonts/enc/dvips/libertinegc/lib-t2a.enc + RELOC/fonts/enc/dvips/libertinegc/lib-t2a1.enc + RELOC/fonts/enc/dvips/libertinegc/lib-t2a2.enc + RELOC/fonts/enc/dvips/libertinegc/lib-t2b.enc + RELOC/fonts/enc/dvips/libertinegc/lib-t2b1.enc + RELOC/fonts/enc/dvips/libertinegc/lib-t2b2.enc + RELOC/fonts/enc/dvips/libertinegc/lib-t2c.enc + RELOC/fonts/enc/dvips/libertinegc/lib-t2c1.enc + RELOC/fonts/enc/dvips/libertinegc/lib-t2c2.enc + RELOC/fonts/enc/dvips/libertinegc/lib1-ot2.enc + RELOC/fonts/enc/dvips/libertinegc/libosf-lgr.enc + RELOC/fonts/enc/dvips/libertinegc/libtlf-lgr.enc + RELOC/fonts/map/dvips/libertinegc/libertinegc.map + RELOC/fonts/tfm/public/libertinegc/LinLIbertineT-ot2.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineT-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineT-t2a.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineT-t2b.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineT-t2c.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineT-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTB-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTB-ot2.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTB-t2a.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTB-t2b.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTB-t2c.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTB-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTBI-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTBI-ot2.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTBI-t2a.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTBI-t2b.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTBI-t2c.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTBI-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTBO-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTBO-ot2.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTBO-t2a.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTBO-t2b.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTBO-t2c.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTBO-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTI-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTI-ot2.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTI-t2a.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTI-t2b.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTI-t2c.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTI-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTO-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTO-ot2.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTO-t2a.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTO-t2b.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTO-t2c.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTO-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZ-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZ-ot2.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZ-t2a.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZ-t2b.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZ-t2c.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZ-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZI-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZI-ot2.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZI-t2a.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZI-t2b.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZI-t2c.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZI-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZO-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZO-ot2.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZO-t2a.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZO-t2b.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZO-t2c.tfm + RELOC/fonts/tfm/public/libertinegc/LinLibertineTZO-tlf-lgr.tfm + RELOC/tex/latex/libertinegc/LGRLinuxLibertineT-LF.fd + RELOC/tex/latex/libertinegc/LGRLinuxLibertineT-OsF.fd + RELOC/tex/latex/libertinegc/LGRLinuxLibertineT-TLF.fd + RELOC/tex/latex/libertinegc/LGRLinuxLibertineT-TOsF.fd + RELOC/tex/latex/libertinegc/OT2LinuxLibertineT-LF.fd + RELOC/tex/latex/libertinegc/OT2LinuxLibertineT-OsF.fd + RELOC/tex/latex/libertinegc/OT2LinuxLibertineT-TLF.fd + RELOC/tex/latex/libertinegc/OT2LinuxLibertineT-TOsF.fd + RELOC/tex/latex/libertinegc/T2ALinuxLibertineT-LF.fd + RELOC/tex/latex/libertinegc/T2ALinuxLibertineT-OsF.fd + RELOC/tex/latex/libertinegc/T2ALinuxLibertineT-TLF.fd + RELOC/tex/latex/libertinegc/T2ALinuxLibertineT-TOsF.fd + RELOC/tex/latex/libertinegc/T2BLinuxLibertineT-LF.fd + RELOC/tex/latex/libertinegc/T2BLinuxLibertineT-OsF.fd + RELOC/tex/latex/libertinegc/T2BLinuxLibertineT-TLF.fd + RELOC/tex/latex/libertinegc/T2BLinuxLibertineT-TOsF.fd + RELOC/tex/latex/libertinegc/T2CLinuxLibertineT-LF.fd + RELOC/tex/latex/libertinegc/T2CLinuxLibertineT-OsF.fd + RELOC/tex/latex/libertinegc/T2CLinuxLibertineT-TLF.fd + RELOC/tex/latex/libertinegc/T2CLinuxLibertineT-TOsF.fd + RELOC/tex/latex/libertinegc/libertinegc.sty +catalogue-also libertine +catalogue-ctan /fonts/libertinegc +catalogue-date 2017-06-16 19:52:45 +0200 +catalogue-license lppl1.3 +catalogue-topics font font-cyrillic font-greek font-multilingual font-serif +catalogue-version 1.01 + +name libertinus +category Package +revision 48588 +shortdesc Wrapper to use the correct libertinus package according to the used TeX engine +relocated 1 +longdesc This package is only a wrapper for the the two packages +longdesc libertinus-type1 (pdfLaTeX) and libertinus-otf +longdesc (LuaLaTeX/XeLaTeX). The Libertinus fonts are similiar to +longdesc Libertine and Biolinum, but come with math symbols. +containersize 1032 +containerchecksum ac413716b5316b11d09c30613461ebe432502d4f6b776aa3931a6e8e15ec1afe56d60632a5d9f941ce4acdb89e45914f2b072c95d8160fa1132819b8a0c67bc2 +doccontainersize 18704 +doccontainerchecksum 4a01523a5d8211138e873e15c9ab7c7b1f62900d64c7c75c08daae3114cea4fea5ae3a18d81b3210be78866887ec1cb9d38fe0d4b7e9c7e498f75d65f3eef5dd +docfiles size=8 + RELOC/doc/fonts/libertinus/Changes + RELOC/doc/fonts/libertinus/README.md details="Readme" + RELOC/doc/fonts/libertinus/libertinus-doc.pdf details="Package documentation" + RELOC/doc/fonts/libertinus/libertinus-doc.tex +runfiles size=1 + RELOC/tex/latex/libertinus/libertinus.sty +catalogue-ctan /fonts/libertinus +catalogue-date 2018-09-14 05:26:10 +0200 +catalogue-license lppl1.3 +catalogue-topics font-serif font-sans font-mono font-maths font-otf +catalogue-version 0.01 + +name libertinus-fonts +category Package +revision 50742 +shortdesc The Libertinus font family +relocated 1 +longdesc This is a fork of the Linux Libertine and Linux Biolinum fonts +longdesc that started as an OpenType math companion of the Libertine +longdesc font family, but grown as a full fork to address some of the +longdesc bugs in the fonts. The family consists of: Libertinus Serif: +longdesc forked from Linux Libertine. Libertinus Sans: forked from Linux +longdesc Biolinum. Libertinus Mono: forked from Linux Libertine Mono. +longdesc Libertinus Math: an OpenType math font for use in OpenType +longdesc math-capable applications like LuaTeX, XeTeX or MS Word 2007+. +containersize 1826788 +containerchecksum c54e4966a6f1e44c9d840298cdc6944ae4585a1104032a2bf47c276caf83c0848bcbf34a38509111a75febfa5b4bc97dea6642b82bbc265a660dbe02636718aa +doccontainersize 4021080 +doccontainerchecksum 49e99ae9d00200472632929683c940a685e00db67384a6091e5a6081749eba8b76ee27c65a0185193476b6ddc4194313b637d5420ef8cb6f6c9ef6f35b0883e9 +docfiles size=1224 + RELOC/doc/fonts/libertinus-fonts/AUTHORS.txt + RELOC/doc/fonts/libertinus-fonts/FONTLOG.txt + RELOC/doc/fonts/libertinus-fonts/LibertinusKeyboard-Regular-Table.pdf + RELOC/doc/fonts/libertinus-fonts/LibertinusMath-Regular-Table.pdf + RELOC/doc/fonts/libertinus-fonts/LibertinusMono-Regular-Table.pdf + RELOC/doc/fonts/libertinus-fonts/LibertinusSans-Bold-Table.pdf + RELOC/doc/fonts/libertinus-fonts/LibertinusSans-Italic-Table.pdf + RELOC/doc/fonts/libertinus-fonts/LibertinusSans-Regular-Table.pdf + RELOC/doc/fonts/libertinus-fonts/LibertinusSerif-Bold-Table.pdf + RELOC/doc/fonts/libertinus-fonts/LibertinusSerif-BoldItalic-Table.pdf + RELOC/doc/fonts/libertinus-fonts/LibertinusSerif-Italic-Table.pdf + RELOC/doc/fonts/libertinus-fonts/LibertinusSerif-Regular-Table.pdf + RELOC/doc/fonts/libertinus-fonts/LibertinusSerif-Semibold-Table.pdf + RELOC/doc/fonts/libertinus-fonts/LibertinusSerif-SemiboldItalic-Table.pdf + RELOC/doc/fonts/libertinus-fonts/LibertinusSerifDisplay-Regular-Table.pdf + RELOC/doc/fonts/libertinus-fonts/LibertinusSerifInitials-Regular-Table.pdf + RELOC/doc/fonts/libertinus-fonts/Math-Sample.pdf + RELOC/doc/fonts/libertinus-fonts/OFL.txt + RELOC/doc/fonts/libertinus-fonts/Opentype-Features.pdf + RELOC/doc/fonts/libertinus-fonts/README.txt details="Readme" + RELOC/doc/fonts/libertinus-fonts/Sample.pdf details="Font samples" +runfiles size=1390 + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusKeyboard-Regular.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusMath-Regular.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusMono-Regular.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusSans-Bold.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusSans-Italic.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusSans-Regular.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusSerif-Bold.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusSerif-BoldItalic.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusSerif-Italic.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusSerif-Regular.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusSerif-Semibold.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusSerif-SemiboldItalic.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusSerifDisplay-Regular.otf + RELOC/fonts/opentype/public/libertinus-fonts/LibertinusSerifInitials-Regular.otf +catalogue-contact-bugs https://github.com/libertinus-fonts/libertinus/issues +catalogue-contact-repository https://github.com/libertinus-fonts/libertinus +catalogue-ctan /fonts/libertinus-fonts +catalogue-date 2019-04-03 20:16:31 +0200 +catalogue-license ofl +catalogue-topics font font-body font-proportional font-mono font-serif font-sans font-multilingual font-maths font-otf +catalogue-version 6.8 + +name libertinus-otf +category Package +revision 50783 +shortdesc Support for Libertinus OpenType +relocated 1 +longdesc This package offers LuaLaTeX/XeLaTeX support for the Libertinus +longdesc OpenType fonts maintained by Khaled Hosny. Furthermore +longdesc math-bold, mono-bold, mono-oblique, and mono-bold-oblique font +longdesc styles are provided, which have been derived from the ones in +longdesc the libertinus-fonts package itself. The Libertinus fonts are +longdesc similiar to Libertine and Biolinum, but come with math symbols. +containersize 1447944 +containerchecksum 13a81146f4e73633c9ff4f9eb651b0daa3d75f32203ff831bfc5ad57475c775c0527cae2d5a4b367fa1f9c0dd3d0c0303c227f9fa1145eef495483e2d69ef9c8 +doccontainersize 436252 +doccontainerchecksum 4b8a8e7aa26101bcadf4fe4526990d55b89d55a08af053e5cbca7fbc0a4b89311e4540144088d8d772fcc82965b00cfef0ad5135482be7a928ae6ad73caa84b0 +docfiles size=118 + RELOC/doc/fonts/libertinus-otf/Changes + RELOC/doc/fonts/libertinus-otf/README.md details="Readme" + RELOC/doc/fonts/libertinus-otf/libertinus-otf-doc.pdf details="Package documentation" + RELOC/doc/fonts/libertinus-otf/libertinus-otf-doc.tex +runfiles size=1027 + RELOC/fonts/opentype/public/libertinus-otf/LibertinusMath-Bold.otf + RELOC/fonts/opentype/public/libertinus-otf/LibertinusMono-Bold.otf + RELOC/fonts/opentype/public/libertinus-otf/LibertinusMono-BoldOblique.otf + RELOC/fonts/opentype/public/libertinus-otf/LibertinusMono-Oblique.otf + RELOC/fonts/opentype/public/libertinus-otf/LibertinusSans-BoldOblique.otf + RELOC/tex/latex/libertinus-otf/libertinus-otf.sty +catalogue-ctan /fonts/libertinus-otf +catalogue-date 2019-04-05 09:38:28 +0200 +catalogue-license lppl1.3ofl +catalogue-topics font font-otf font-supp font-sans font-mono font-maths +catalogue-version 0.14 + +name libertinus-type1 +category Package +revision 49979 +shortdesc Support for using Libertinus fonts with LaTeX/pdfLaTeX +relocated 1 +longdesc This package provides support for use of Libertinus fonts with +longdesc traditional processing engines (LaTeX with dvips or dvipdfmx, +longdesc or pdfLaTeX). +execute addMap libertinus.map +containersize 9576380 +containerchecksum 4b8784ce45d64c80184378fd335f6b5a0a9d25186cc7184e5a899ac5f261155932a93b3877bf4f56c1dbd16a18ed5a74022de1fa7833b8928aef1cb3380c6fa9 +doccontainersize 346928 +doccontainerchecksum 46145193c8f0e1d25d98afaae0a749250d657086cc8363b42af5d3eb61ed4b9c3b4e1ffeb1490788900e873a6e9c27c888420905e350a280bcc78f4c88a2233c +docfiles size=90 + RELOC/doc/fonts/libertinus-type1/OFL.txt + RELOC/doc/fonts/libertinus-type1/README details="Readme" + RELOC/doc/fonts/libertinus-type1/libertinus-samples.pdf + RELOC/doc/fonts/libertinus-type1/libertinus-samples.tex + RELOC/doc/fonts/libertinus-type1/libertinus-type1.pdf details="Package documentation" + RELOC/doc/fonts/libertinus-type1/libertinus-type1.tex +runfiles size=4470 + RELOC/fonts/enc/dvips/libertinus-type1/lbts_22hofm.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_22iyup.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_2d4fhl.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_2kou35.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_2p3rrf.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_2rwzfi.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_2sbkkv.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_36oex4.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_376cxq.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_37i5h5.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_3gfumm.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_3gs6yd.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_3m7bys.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_3moi3m.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_3mq75u.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_3ssu23.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_3vhq7b.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_3ybmid.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_42aln2.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_46rbre.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_47oi23.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_4egtw6.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_4gceqv.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_4i5t65.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_4q6kep.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_4tketz.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_4xoyfg.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_4yzvqq.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_573lib.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_5fuzob.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_5pdmhn.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_5wvmwa.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_63tsdq.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_6amfm6.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_6gletg.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_6pl7yx.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_6sywqw.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_6tl5xe.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_6tz3vl.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_72youc.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_7ficyx.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_7gkjl4.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_7lw7kx.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_7pin74.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_adzav7.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ag3a4j.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ap2fgr.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_aymuug.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_b64lhe.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_b76fqn.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_bcewm3.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_bfrh3u.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_bjutzr.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_bkfo5b.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_bneph7.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_br2tsn.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_bua3iz.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_cq7dn5.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_crxz7j.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_csfn4l.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ctvofw.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_czfy4i.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_czm6jm.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ddnbc3.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_dkpgn2.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_drnsbw.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_dsubmo.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_dt73vg.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_egblwn.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ehfwrd.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ejafn4.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_eonu6h.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ephf57.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_evywuf.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_f2rmlp.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_f4xkm6.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_f7ews6.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_fa7dut.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_foum63.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_fvnwfw.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_fx3ovj.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_g3forg.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_g4fafx.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_g7zjne.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_gc5t3w.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_gctpdf.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_gduok3.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_go4zi7.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_griwsq.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_gubvu6.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_gug7nq.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_gvbg5u.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_gzya5k.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_h5jgdl.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_hb6pi6.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_hbxbgt.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_hdd7l5.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_hnrhad.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_hovgac.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_hqg4ws.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_hrxco3.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_i2crm7.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_i2n3eb.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_i3sg2p.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ia2ohl.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_iamrh4.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_iexo2p.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ii54oc.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_il5aws.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_il5lus.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_imcqgw.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_imrz6m.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_iqa5xc.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_iztbwv.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_j3ojun.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_jrb5jy.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_kdhwty.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_kef6ja.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_kp3aiy.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ktul4p.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_l32su2.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_l5raak.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_l7hfkn.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_lb6uul.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_li6k7w.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_lvgwrq.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_lwctjd.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_lx4rqk.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_m4ldle.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_m4soy3.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_m5y4zq.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_m7vdvu.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_mdtra7.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_mgikwc.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_mhdvfs.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_mkuu3z.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_mrzbt4.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_mti5mz.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_mtklv4.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_mtpndz.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_my4iyi.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_mysatf.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_n35f3u.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_n4qp5d.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_n5tbl3.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_n6ec3w.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ni2rsi.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ni4y55.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_njp2hy.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_noylzd.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ny6brf.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_o3hts2.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_o5ngqz.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_obs2vg.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ochdma.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_oeoa22.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_oj6oah.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_omojrd.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_on7osu.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_oovmnk.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_opk5af.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_oqjfjh.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ou2wku.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_owmfru.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_p4o4ey.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_p5tv2z.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_pgtfah.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_pgytxo.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_phpzhz.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_pknsnt.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_pltgnk.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_pqn55s.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_pqrdp3.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ptmvz4.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ptnx64.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_pw5ase.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_qcfvgl.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_qdsuzv.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_qgawzl.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_qi3hl2.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_qmmcsp.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_qqjyhh.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_qrshd2.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_qu7bnb.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_qylzkl.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ridgvo.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_rjemmz.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_rpeiua.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_rpfbgy.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_rqhkdi.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_rwfvav.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_rzo7w4.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_s4s5lq.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_s7zcjn.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_scef7n.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_svjehw.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_svm4ex.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_t7fqn6.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_tbcdcm.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_tcn5am.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_tom5os.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_tsn5xh.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_u6it6q.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ucnelj.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_uhwxqu.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_uiwbla.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_uj7hpc.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ukbbxp.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ultakb.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_urp2sz.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_uso3jf.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_uuxwwo.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_uvpgbl.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_uxmejx.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_vcrloh.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ve3dza.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_vhpbx6.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_vnpq6p.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_vq4hhp.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_vvpxfm.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_vvzoei.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_vyu7o7.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_w3rzkl.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_waefnx.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_wdey5j.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_wdlo4c.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_wjxvqi.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_wkekkp.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_wn2abg.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_wrg6fm.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_wxtutk.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_wzjxus.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_x3gkbo.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_x6hh3d.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_xbsnch.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_xhkqji.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_xmzeub.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_xt3ev3.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_xxme2m.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_xydcvl.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ycm2gi.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_yjork3.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_yprr2x.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_yqulsv.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_yras7y.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_yt5vb5.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_ytdn6p.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_yyrqy7.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_yyut2b.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_yz65wh.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_z2peeg.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_z6ew44.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_zazpgx.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_zpq4t3.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_zstqnx.enc + RELOC/fonts/enc/dvips/libertinus-type1/lbts_zxqtyn.enc + RELOC/fonts/map/dvips/libertinus-type1/libertinus.map + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-lf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-lf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-sup-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-sup-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoBold-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoBold-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoBold-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoBoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusMonoItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-sup-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-sup-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-sup-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-sup-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-lf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-lf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-osf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-osf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-osf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-osf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-osf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-sup-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-sup-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tosf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tosf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-sup-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-sup-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-sup-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-sup-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-sup-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-sup-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-sup-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-lf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-lf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-lf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-osf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-osf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-osf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-osf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-osf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-osf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-sup-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-sup-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tlf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tosf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tosf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-lf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-lf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-lf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-lf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-lf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-lf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-osf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-osf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-osf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-osf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-osf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-osf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-sup-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-sup-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-sup-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-sup-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-sup-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-tosf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-tosf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-tosf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-tlf-lgr.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-tlf-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-tlf-ts1.tfm + RELOC/fonts/type1/public/libertinus-type1/LibertinusMono.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusMonoBold.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusMonoBoldItalic.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusMonoItalic.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusSans-Bold.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusSans-BoldItalic.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusSans-Italic.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusSans.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusSerif-Bold.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusSerif-BoldItalic.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusSerif-Italic.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusSerif-Semibold.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusSerif-SemiboldItalic.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusSerif.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusSerifDisplay.pfb + RELOC/fonts/type1/public/libertinus-type1/LibertinusSerifInitials.pfb + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-lf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-lf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-sup-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-sup-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-tlf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-tlf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMonoBold-tlf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMonoBold-tlf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMonoBold-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMonoBold-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMonoBoldItalic-tlf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMonoBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMonoBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMonoBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMonoItalic-tlf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMonoItalic-tlf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMonoItalic-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusMonoItalic-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-lf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-lf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-lf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-osf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-osf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-osf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-osf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-osf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-sup-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-sup-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tlf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tosf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tosf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-lf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-lf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-osf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-osf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-sup-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-sup-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-sup-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tlf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-lf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-lf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-lf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-osf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-osf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-osf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-osf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-osf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-sup-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-sup-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-tlf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-tlf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-tlf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-tosf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-tosf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-tosf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-tosf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-tosf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-lf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-lf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-osf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-osf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-osf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-osf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-sup-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-sup-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tlf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tosf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tosf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-sup-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-lf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-lf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-osf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-osf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-osf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-osf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-sup-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-sup-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tlf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tosf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tosf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-lf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-lf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-osf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-osf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-osf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-osf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-sup-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-sup-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tlf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tlf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tosf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tosf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tosf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tosf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-osf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-lf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-lf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-lf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-osf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-osf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-osf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-osf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-osf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-sup-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-sup-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-tlf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-tlf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-tlf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-tosf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-tosf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-tosf-sc-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-tosf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-tosf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-lf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-lf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-lf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-lf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-osf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-osf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-osf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-osf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-sup-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-sup-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-sup-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-tlf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-tlf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-tlf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-tosf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-tosf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-tosf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-tosf-ts1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifInitials-tlf-lgr.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifInitials-tlf-ly1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifInitials-tlf-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerifInitials-tlf-ts1.vf + RELOC/tex/latex/libertinus-type1/LGRLibertinusSans-LF.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSans-OsF.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSans-Sup.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSans-TLF.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSans-TOsF.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSerif-LF.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSerif-OsF.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSerif-Sup.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSerif-TLF.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSerif-TOsF.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSerifDisplay-LF.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSerifDisplay-OsF.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSerifDisplay-Sup.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSerifDisplay-TLF.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSerifDisplay-TOsF.fd + RELOC/tex/latex/libertinus-type1/LGRLibertinusSerifInitials-TLF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusMono-LF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusMono-Sup.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusMono-TLF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSans-LF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSans-OsF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSans-Sup.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSans-TLF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSans-TOsF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSerif-LF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSerif-OsF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSerif-Sup.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSerif-TLF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSerif-TOsF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSerifDisplay-LF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSerifDisplay-OsF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSerifDisplay-Sup.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSerifDisplay-TLF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSerifDisplay-TOsF.fd + RELOC/tex/latex/libertinus-type1/LY1LibertinusSerifInitials-TLF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusMono-LF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusMono-Sup.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusMono-TLF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSans-LF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSans-OsF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSans-Sup.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSans-TLF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSans-TOsF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSerif-LF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSerif-OsF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSerif-Sup.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSerif-TLF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSerif-TOsF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSerifDisplay-LF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSerifDisplay-OsF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSerifDisplay-Sup.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSerifDisplay-TLF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSerifDisplay-TOsF.fd + RELOC/tex/latex/libertinus-type1/OT1LibertinusSerifInitials-TLF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusMono-LF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusMono-Sup.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusMono-TLF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSans-LF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSans-OsF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSans-Sup.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSans-TLF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSans-TOsF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSerif-LF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSerif-OsF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSerif-Sup.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSerif-TLF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSerif-TOsF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSerifDisplay-LF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSerifDisplay-OsF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSerifDisplay-Sup.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSerifDisplay-TLF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSerifDisplay-TOsF.fd + RELOC/tex/latex/libertinus-type1/T1LibertinusSerifInitials-TLF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusMono-LF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusMono-TLF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSans-LF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSans-OsF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSans-TLF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSans-TOsF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSerif-LF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSerif-OsF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSerif-TLF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSerif-TOsF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSerifDisplay-LF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSerifDisplay-OsF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSerifDisplay-TLF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSerifDisplay-TOsF.fd + RELOC/tex/latex/libertinus-type1/TS1LibertinusSerifInitials-TLF.fd + RELOC/tex/latex/libertinus-type1/libertinus-type1.sty +catalogue-ctan /fonts/libertinus-type1 +catalogue-date 2019-02-07 13:26:50 +0100 +catalogue-license gpl2lpplofl +catalogue-topics font font-type1 font-sans font-mono font-t1enc font-supp + +name libertinust1math +category Package +revision 48862 +shortdesc A Type 1 font and LaTeX support for Libertinus Math +relocated 1 +longdesc The package provides a Type1 version of Libertinus Math, with a +longdesc number of additions and changes, plus LaTeX support files that +longdesc allow it to serve as a math accompaniment to Libertine under +longdesc LaTeX. In addition, with option sansmath, it can function as a +longdesc standalone math font with sans serif Roman and Greek letters. +execute addMap libertinust1math.map +containersize 1011772 +containerchecksum e1495d0bd0e0082b54748cc6536a2ba0c0664da049f3ea99cf3df3cf60066fef11854738fe89f477bea879db9dc49199fcd2e8c3c4676cd3bf135122e011bd10 +doccontainersize 1329644 +doccontainerchecksum 8816d8592f613f9776d57bf1c71a0b4018a056647be658268f8d13135deb2903b7b31e4be11098b6aedeca852bbb889b23110f76c98bbee7cfd26a2c0ad29359 +docfiles size=1193 + RELOC/doc/fonts/libertinust1math/FONTLOG.txt + RELOC/doc/fonts/libertinust1math/LibertinusT1Math-doc.pdf details="Package documentation" + RELOC/doc/fonts/libertinust1math/LibertinusT1Math-doc.tex + RELOC/doc/fonts/libertinust1math/OFL.txt + RELOC/doc/fonts/libertinust1math/README details="Readme" + RELOC/doc/fonts/libertinust1math/sample1-crop.pdf + RELOC/doc/fonts/libertinust1math/sample1.pdf + RELOC/doc/fonts/libertinust1math/sample1.tex + RELOC/doc/fonts/libertinust1math/sample10-crop.pdf + RELOC/doc/fonts/libertinust1math/sample10.pdf + RELOC/doc/fonts/libertinust1math/sample10.tex + RELOC/doc/fonts/libertinust1math/sample11-crop.pdf + RELOC/doc/fonts/libertinust1math/sample11.pdf + RELOC/doc/fonts/libertinust1math/sample11.tex + RELOC/doc/fonts/libertinust1math/sample2-crop.pdf + RELOC/doc/fonts/libertinust1math/sample2.pdf + RELOC/doc/fonts/libertinust1math/sample2.tex + RELOC/doc/fonts/libertinust1math/sample3-crop.pdf + RELOC/doc/fonts/libertinust1math/sample3.pdf + RELOC/doc/fonts/libertinust1math/sample3.tex + RELOC/doc/fonts/libertinust1math/sample4-crop.pdf + RELOC/doc/fonts/libertinust1math/sample4.pdf + RELOC/doc/fonts/libertinust1math/sample4.tex + RELOC/doc/fonts/libertinust1math/sample5-crop.pdf + RELOC/doc/fonts/libertinust1math/sample5.pdf + RELOC/doc/fonts/libertinust1math/sample5.tex + RELOC/doc/fonts/libertinust1math/sample6-crop.pdf + RELOC/doc/fonts/libertinust1math/sample6.pdf + RELOC/doc/fonts/libertinust1math/sample6.tex + RELOC/doc/fonts/libertinust1math/sample7-crop.pdf + RELOC/doc/fonts/libertinust1math/sample7.pdf + RELOC/doc/fonts/libertinust1math/sample7.tex + RELOC/doc/fonts/libertinust1math/sample8-crop.pdf + RELOC/doc/fonts/libertinust1math/sample8.pdf + RELOC/doc/fonts/libertinust1math/sample8.tex + RELOC/doc/fonts/libertinust1math/sample9-crop.pdf + RELOC/doc/fonts/libertinust1math/sample9.pdf + RELOC/doc/fonts/libertinust1math/sample9.tex +runfiles size=455 + RELOC/fonts/afm/public/libertinust1math/BDXsfmi-bol.afm + RELOC/fonts/afm/public/libertinust1math/BDXsfmi-reg.afm + RELOC/fonts/afm/public/libertinust1math/BDXsfmr-bol.afm + RELOC/fonts/afm/public/libertinust1math/BDXsfmr-reg.afm + RELOC/fonts/afm/public/libertinust1math/LibertinusT1Math.afm + RELOC/fonts/enc/dvips/libertinust1math/libusBB.enc + RELOC/fonts/enc/dvips/libertinust1math/libusBMI.enc + RELOC/fonts/enc/dvips/libertinust1math/libusBMR.enc + RELOC/fonts/enc/dvips/libertinust1math/libusEX.enc + RELOC/fonts/enc/dvips/libertinust1math/libusFRK.enc + RELOC/fonts/enc/dvips/libertinust1math/libusMI.enc + RELOC/fonts/enc/dvips/libertinust1math/libusMR.enc + RELOC/fonts/enc/dvips/libertinust1math/libusSF.enc + RELOC/fonts/enc/dvips/libertinust1math/libusSFB.enc + RELOC/fonts/enc/dvips/libertinust1math/libusSFI.enc + RELOC/fonts/enc/dvips/libertinust1math/libusSYM.enc + RELOC/fonts/enc/dvips/libertinust1math/libussfMI.enc + RELOC/fonts/enc/dvips/libertinust1math/libussfMR.enc + RELOC/fonts/map/dvips/libertinust1math/libertinust1math.map + RELOC/fonts/tfm/public/libertinust1math/BDXsfmi-bol.tfm + RELOC/fonts/tfm/public/libertinust1math/BDXsfmi-reg.tfm + RELOC/fonts/tfm/public/libertinust1math/BDXsfmr-bol.tfm + RELOC/fonts/tfm/public/libertinust1math/BDXsfmr-reg.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathbb.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathex.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathit-bold.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathit.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathrm-bold.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathrm.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathsfit-bold.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathsfit.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathsfrm-bold.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathsfrm.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathsym.tfm + RELOC/fonts/type1/public/libertinust1math/BDXsfmi-bol.pfb + RELOC/fonts/type1/public/libertinust1math/BDXsfmi-reg.pfb + RELOC/fonts/type1/public/libertinust1math/BDXsfmr-bol.pfb + RELOC/fonts/type1/public/libertinust1math/BDXsfmr-reg.pfb + RELOC/fonts/type1/public/libertinust1math/LibertinusT1Math.pfb + RELOC/fonts/vf/public/libertinust1math/libertinust1-mathsfit-bold.vf + RELOC/fonts/vf/public/libertinust1math/libertinust1-mathsfit.vf + RELOC/fonts/vf/public/libertinust1math/libertinust1-mathsfrm-bold.vf + RELOC/fonts/vf/public/libertinust1math/libertinust1-mathsfrm.vf + RELOC/tex/latex/libertinust1math/libertinust1math.sty + RELOC/tex/latex/libertinust1math/ls1libertinust1math.fd + RELOC/tex/latex/libertinust1math/ls1libertinust1mathbb.fd + RELOC/tex/latex/libertinust1math/ls1libertinust1mathsf.fd + RELOC/tex/latex/libertinust1math/ls2libertinust1mathex.fd + RELOC/tex/latex/libertinust1math/ls2libertinust1mathsym.fd + RELOC/tex/latex/libertinust1math/ot1libertinust1mathsf.fd +catalogue-ctan /fonts/libertinust1math +catalogue-date 2018-10-08 07:53:35 +0200 +catalogue-license ofllppl +catalogue-topics font-serif font-sans font-maths font-type1 +catalogue-version 1.1.9 + name libgreek category Package revision 27789 -shortdesc Use Libertine or Biolinum Greek glyphs in mathematics. +shortdesc Use Libertine or Biolinum Greek glyphs in mathematics relocated 1 longdesc The package is for LaTeX users who wish to use the Libertine or longdesc Biolinum font for the Greek letters in math mode. It is not longdesc necessary to load the libertine package itself, but of course longdesc the Linux-Libertine/Biolinum fonts and LaTeX support files must longdesc have been installed. -runfiles size=3 - RELOC/tex/latex/libgreek/libgreek.sty +containersize 2244 +containerchecksum 0547ebdd180554fd00a7ad96932816e13744886457c84960b8abba06125f68ec9391ffb03c7bb7ad039a2654a1b73c2c378b8eee2130107a02e25881581c8139 +doccontainersize 46148 +doccontainerchecksum 105ad6a6d557213c6918b2160dfc70449d496155e3a0fe1e683b2186b8d10d3067a85b05e3ee26f01ccdb6f70c2f864d09439eb4b8347dc3217482e17600f79d docfiles size=16 - RELOC/doc/latex/libgreek/README - RELOC/doc/latex/libgreek/libgreek.pdf + RELOC/doc/latex/libgreek/README details="Readme" + RELOC/doc/latex/libgreek/libgreek.pdf details="Package documentation" RELOC/doc/latex/libgreek/libgreekcheck.tex +srccontainersize 4748 +srccontainerchecksum 41e1629949d8fbe9cbef5a153bd9ffe2ed354789a4c80d518e5ef7bb4bb9f5152c024f190a4ad8d22eb58a69852d3fa63d7670aa1fa78001cac5d46c3891e025 srcfiles size=5 RELOC/source/latex/libgreek/libgreek.dtx RELOC/source/latex/libgreek/libgreek.ins +runfiles size=3 + RELOC/tex/latex/libgreek/libgreek.sty catalogue-ctan /macros/latex/contrib/libgreek -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics font-maths font-supp catalogue-version 1.0 name librarian category Package revision 19880 -shortdesc Tools to create bibliographies in TeX. +shortdesc Tools to create bibliographies in TeX relocated 1 longdesc The package extracts information in bib files, makes it longdesc available in the current document, and sorts lists of entries @@ -97586,25 +159646,30 @@ longdesc the distribution includes a third-party file for ConTeXt and a longdesc style file for LaTeX. As an example of use, an Author (Year) longdesc style is given in a separate file and explained in the longdesc documentation. -runfiles size=10 - RELOC/tex/generic/librarian/librarian.sty - RELOC/tex/generic/librarian/librarian.tex - RELOC/tex/generic/librarian/t-librarian.tex +containersize 6860 +containerchecksum 2a01755bec49fa8c78680b0599b58649b803694f339383ad168bdc06554dabeab3047d1b17d63f7487860a5d0102dd8f68a78d5ad5ba94a2f8b29db7329e1ebb +doccontainersize 162064 +doccontainerchecksum 6d95e43b1f9965fe016bd9fc7ba3f9df56716d8f6c89948417643bffc4b9e89f8a5e6cb045e873daff819a16cc10cd61e74e73e98119a076580967187338be37 docfiles size=54 - RELOC/doc/generic/librarian/README + RELOC/doc/generic/librarian/README details="Readme" RELOC/doc/generic/librarian/authoryear.tex - RELOC/doc/generic/librarian/librarian-doc.pdf + RELOC/doc/generic/librarian/librarian-doc.pdf details="Package documentation" RELOC/doc/generic/librarian/librarian-doc.tex RELOC/doc/generic/librarian/librarian.bib +runfiles size=10 + RELOC/tex/generic/librarian/librarian.sty + RELOC/tex/generic/librarian/librarian.tex + RELOC/tex/generic/librarian/t-librarian.tex catalogue-ctan /macros/generic/librarian -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics biblio catalogue-version 1.0 name librebaskerville category Package revision 31741 -shortdesc LaTeX support for the Libre Baskerville family of fonts. +shortdesc LaTeX support for the Libre Baskerville family of fonts relocated 1 longdesc Libre Baskerville is designed by Pablo Impallari. It is longdesc primarily intended to be a web font but is also attractive as a @@ -97612,6 +159677,16 @@ longdesc TeX font. As there is currently no bold italic variant, an longdesc artificially slanted version of the bold variant has been longdesc generated. execute addMap LibreBaskerville.map +containersize 562716 +containerchecksum 03f47456269d8fba252415fd2d13faef8efdd3895405dd0385eeb2bd44a9ffdcbf410c5cc0f63a2f9df349b940408a1bbe492bb8c8c71e756ab184b6ff75743c +doccontainersize 35464 +doccontainerchecksum c6fde0f97c5f5ce27172fb3d9b41499c45679fe65ad980916b0d4af5e6bc9a0c91eeb33b2a30967267887197628218772761e5a909703d1807d2b4d8f34fd4f6 +docfiles size=13 + RELOC/doc/fonts/librebaskerville/FONTLOG.txt + RELOC/doc/fonts/librebaskerville/OFL.txt + RELOC/doc/fonts/librebaskerville/README details="Readme" + RELOC/doc/fonts/librebaskerville/librebaskerville-samples.pdf details="Font samples" + RELOC/doc/fonts/librebaskerville/librebaskerville-samples.tex runfiles size=397 RELOC/fonts/enc/dvips/librebaskerville/lbsk_5rmxhc.enc RELOC/fonts/enc/dvips/librebaskerville/lbsk_7c5ufm.enc @@ -97707,20 +159782,165 @@ runfiles size=397 RELOC/tex/latex/librebaskerville/T1LibreBaskerville-TLF.fd RELOC/tex/latex/librebaskerville/TS1LibreBaskerville-TLF.fd RELOC/tex/latex/librebaskerville/librebaskerville.sty -docfiles size=13 - RELOC/doc/fonts/librebaskerville/FONTLOG.txt - RELOC/doc/fonts/librebaskerville/OFL.txt - RELOC/doc/fonts/librebaskerville/README - RELOC/doc/fonts/librebaskerville/librebaskerville-samples.pdf - RELOC/doc/fonts/librebaskerville/librebaskerville-samples.tex catalogue-ctan /fonts/librebaskerville -catalogue-date 2014-05-11 22:01:43 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-otf font-type1 + +name librebodoni +category Package +revision 39375 +shortdesc Libre Bodoni fonts with LaTeX support +relocated 1 +longdesc The Libre Bodoni fonts are designed by Pablo Impallari and +longdesc Rodrigo Fuenzalida, based on the 19th century Morris Fuller +longdesc Benton's. +execute addMap LibreBodoni.map +containersize 547364 +containerchecksum eebacf9b045b46df1a8c806deebbd94742e2c1615e45da85946c83cbb82a3a2ff278a6a0bdf47059c5713ed1c2dfce8988ff82c4682aeeadc05772c49426372f +doccontainersize 20164 +doccontainerchecksum 5cad86257fd423e1f7551a014f888c28d4b61a9fea14aabb0128458fa17ad81372668f247d9e7a81ab0801d9ece0a0529a304d16ae2f06dae5598048bef4d036 +docfiles size=9 + RELOC/doc/fonts/librebodoni/OFL.txt + RELOC/doc/fonts/librebodoni/README details="Readme" + RELOC/doc/fonts/librebodoni/librebodoni-samples.pdf details="Package documentation" + RELOC/doc/fonts/librebodoni/librebodoni-samples.tex +runfiles size=316 + RELOC/fonts/enc/dvips/librebodoni/lbd_2nc6ly.enc + RELOC/fonts/enc/dvips/librebodoni/lbd_dwvqiv.enc + RELOC/fonts/enc/dvips/librebodoni/lbd_fttd7q.enc + RELOC/fonts/enc/dvips/librebodoni/lbd_gxeqsi.enc + RELOC/fonts/enc/dvips/librebodoni/lbd_k2dfwc.enc + RELOC/fonts/enc/dvips/librebodoni/lbd_oaf34p.enc + RELOC/fonts/enc/dvips/librebodoni/lbd_pcwse4.enc + RELOC/fonts/enc/dvips/librebodoni/lbd_rpuqof.enc + RELOC/fonts/enc/dvips/librebodoni/lbd_yeotsr.enc + RELOC/fonts/enc/dvips/librebodoni/lbd_zpaflu.enc + RELOC/fonts/map/dvips/librebodoni/LibreBodoni.map + RELOC/fonts/opentype/impallari/librebodoni/LibreBodoni-Bold.otf + RELOC/fonts/opentype/impallari/librebodoni/LibreBodoni-BoldItalic.otf + RELOC/fonts/opentype/impallari/librebodoni/LibreBodoni-Italic.otf + RELOC/fonts/opentype/impallari/librebodoni/LibreBodoni-Regular.otf + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-inf-ly1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-inf-ot1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-inf-t1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-sup-t1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-inf-ly1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-inf-ot1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-inf-t1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-inf-ly1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-inf-ot1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-inf-t1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-sup-t1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librebodoni/LibreBodoni-Regular-tlf-ts1.tfm + RELOC/fonts/type1/impallari/librebodoni/LibreBodoni-Bold.pfb + RELOC/fonts/type1/impallari/librebodoni/LibreBodoni-BoldItalic.pfb + RELOC/fonts/type1/impallari/librebodoni/LibreBodoni-Italic.pfb + RELOC/fonts/type1/impallari/librebodoni/LibreBodoni-Regular.pfb + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Bold-inf-ly1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Bold-inf-t1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Bold-sup-ly1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Bold-sup-t1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Bold-tlf-ly1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Bold-tlf-t1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Bold-tlf-ts1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-BoldItalic-inf-t1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-BoldItalic-sup-t1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Italic-inf-ly1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Italic-inf-t1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Italic-sup-ly1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Italic-sup-t1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Italic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Italic-tlf-t1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Italic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Regular-inf-ly1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Regular-inf-t1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Regular-sup-ly1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Regular-sup-t1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Regular-tlf-ly1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Regular-tlf-t1.vf + RELOC/fonts/vf/impallari/librebodoni/LibreBodoni-Regular-tlf-ts1.vf + RELOC/tex/latex/librebodoni/LY1LibreBodoni-Inf.fd + RELOC/tex/latex/librebodoni/LY1LibreBodoni-Sup.fd + RELOC/tex/latex/librebodoni/LY1LibreBodoni-TLF.fd + RELOC/tex/latex/librebodoni/LibreBodoni.sty + RELOC/tex/latex/librebodoni/OT1LibreBodoni-Inf.fd + RELOC/tex/latex/librebodoni/OT1LibreBodoni-Sup.fd + RELOC/tex/latex/librebodoni/OT1LibreBodoni-TLF.fd + RELOC/tex/latex/librebodoni/T1LibreBodoni-Inf.fd + RELOC/tex/latex/librebodoni/T1LibreBodoni-Sup.fd + RELOC/tex/latex/librebodoni/T1LibreBodoni-TLF.fd + RELOC/tex/latex/librebodoni/TS1LibreBodoni-TLF.fd +catalogue-ctan /fonts/librebodoni +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license ofl +catalogue-topics font font-otf font-type1 name librecaslon category Package revision 31929 -shortdesc Libre Caslon fonts, with LaTeX support. +shortdesc Libre Caslon fonts, with LaTeX support relocated 1 longdesc The Libre Caslon fonts are designed by Pablo Impallari. longdesc Although they have been designed for use as web fonts, they @@ -97728,6 +159948,15 @@ longdesc work well as conventional text fonts. A bold italic variant is longdesc not currently available. As a stopgap, an artificially slanted longdesc bold variant has been created and treated as italic. execute addMap LibreCaslon.map +containersize 971956 +containerchecksum 22dffd59928c3b27c99613f357f877c272929a9dba9fd9d27a475f5014f94bc490da38d75a212404e3050cc60b717f8dc7b6a638ee4c72a1963065f910dcfc30 +doccontainersize 123008 +doccontainerchecksum 26aa271bc25eea81a3c72310d8be1a3d89bb81281e8bc01f9346b1dea359742e64fa365d5b890218b8da4c216fab44ac388fdc5ffa5204c420d9f0bd7b652449 +docfiles size=34 + RELOC/doc/fonts/librecaslon/OFL.txt + RELOC/doc/fonts/librecaslon/README details="Readme" + RELOC/doc/fonts/librecaslon/samples.pdf details="Font samples" + RELOC/doc/fonts/librecaslon/samples.tex runfiles size=731 RELOC/fonts/enc/dvips/librecaslon/lcsl_3cl4ql.enc RELOC/fonts/enc/dvips/librecaslon/lcsl_4g75lz.enc @@ -97873,27 +160102,538 @@ runfiles size=731 RELOC/tex/latex/librecaslon/TS1LibreCaslonText-OsF.fd RELOC/tex/latex/librecaslon/TS1LibreCaslonText-TLF.fd RELOC/tex/latex/librecaslon/librecaslon.sty -docfiles size=34 - RELOC/doc/fonts/librecaslon/OFL.txt - RELOC/doc/fonts/librecaslon/README - RELOC/doc/fonts/librecaslon/samples.pdf - RELOC/doc/fonts/librecaslon/samples.tex +catalogue-contact-home https://github.com/impallari/Libre-Caslon-Text catalogue-ctan /fonts/librecaslon -catalogue-date 2014-05-11 22:01:43 +0200 +catalogue-date 2018-04-11 17:13:51 +0200 catalogue-license ofl +catalogue-topics font font-type1 font-otf + +name librefranklin +category Package +revision 51100 +shortdesc LaTeX support for the Libre-Franklin family of fonts +relocated 1 +longdesc Libre Franklin is an interpretation and expansion based on the +longdesc 1912 Morris Fuller Benton's classic, designed by Pablo +longdesc Impallari, Rodrigo Fuenzalida and Nhung Nguyen. +execute addMap LibreFranklin.map +containersize 2995308 +containerchecksum 1d60e5fb8afe84200872de5adbabdca3b9969771864c5b24554110f5ab831acf84c2ba0a4b6a29542c0feba11938343a9dc34505883eccdc3f4ed51ce9cee772 +doccontainersize 31676 +doccontainerchecksum 0cbb5d3fb9853fe9d6cd4a974225f49659b4ecd36f4a9abb607386969d0ca9ce16cb7644d31d38302be55384d98253da723d57a4e878e142f6d7705bb8df39d5 +docfiles size=13 + RELOC/doc/fonts/librefranklin/OFL.txt + RELOC/doc/fonts/librefranklin/README details="Readme" + RELOC/doc/fonts/librefranklin/librefranklin-samples.pdf details="Package documentation" + RELOC/doc/fonts/librefranklin/librefranklin-samples.tex +runfiles size=1538 + RELOC/fonts/enc/dvips/librefranklin/lbfr_5xld5w.enc + RELOC/fonts/enc/dvips/librefranklin/lbfr_f6scsm.enc + RELOC/fonts/enc/dvips/librefranklin/lbfr_hau3x5.enc + RELOC/fonts/enc/dvips/librefranklin/lbfr_kctjno.enc + RELOC/fonts/enc/dvips/librefranklin/lbfr_ljoz2a.enc + RELOC/fonts/enc/dvips/librefranklin/lbfr_wpyws4.enc + RELOC/fonts/enc/dvips/librefranklin/lbfr_yhzmyq.enc + RELOC/fonts/map/dvips/librefranklin/LibreFranklin.map + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-Black.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-BlackItalic.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-Bold.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-BoldItalic.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-ExtraBold.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-ExtraBoldItalic.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-ExtraLight.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-ExtraLightItalic.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-Italic.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-Light.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-LightItalic.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-Medium.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-MediumItalic.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-Regular.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-SemiBold.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-SemiBoldItalic.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-Thin.otf + RELOC/fonts/opentype/impallari/librefranklin/LibreFranklin-ThinItalic.otf + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Black-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Light-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-sup-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-ts1.tfm + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-Black.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-BlackItalic.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-Bold.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-BoldItalic.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-ExtraBold.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-ExtraBoldItalic.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-ExtraLight.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-ExtraLightItalic.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-Italic.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-Light.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-LightItalic.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-Medium.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-MediumItalic.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-Regular.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-SemiBold.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-SemiBoldItalic.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-Thin.pfb + RELOC/fonts/type1/impallari/librefranklin/LibreFranklin-ThinItalic.pfb + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Black-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Black-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Black-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Black-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Black-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Black-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Black-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BlackItalic-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BlackItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BlackItalic-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Bold-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Bold-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Bold-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Bold-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Bold-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Bold-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Bold-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BoldItalic-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BoldItalic-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBold-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBold-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBold-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLight-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLight-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLightItalic-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLightItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Italic-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Italic-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Italic-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Italic-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Italic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Italic-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Italic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Light-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Light-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Light-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Light-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Light-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Light-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Light-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-LightItalic-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-LightItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-LightItalic-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-LightItalic-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-LightItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Medium-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Medium-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Medium-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Medium-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Medium-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Medium-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Medium-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-MediumItalic-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-MediumItalic-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Regular-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Regular-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Regular-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Regular-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Regular-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Regular-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Regular-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBold-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBold-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBold-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBold-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBold-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBoldItalic-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Thin-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Thin-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Thin-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Thin-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Thin-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Thin-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-Thin-tlf-ts1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ThinItalic-sup-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ThinItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ThinItalic-sup-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-lgr.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/librefranklin/LibreFranklin-ThinItalic-tlf-ts1.vf + RELOC/tex/latex/librefranklin/LY1LibreFranklin-Sup.fd + RELOC/tex/latex/librefranklin/LY1LibreFranklin-TLF.fd + RELOC/tex/latex/librefranklin/OT1LibreFranklin-Sup.fd + RELOC/tex/latex/librefranklin/OT1LibreFranklin-TLF.fd + RELOC/tex/latex/librefranklin/T1LibreFranklin-Sup.fd + RELOC/tex/latex/librefranklin/T1LibreFranklin-TLF.fd + RELOC/tex/latex/librefranklin/TS1LibreFranklin-TLF.fd + RELOC/tex/latex/librefranklin/librefranklin.sty +catalogue-contact-home https://github.com/impallari/Libre-Franklin +catalogue-ctan /fonts/librefranklin +catalogue-date 2019-05-11 18:46:20 +0200 +catalogue-license lpplofl +catalogue-topics font font-sans font-proportional font-body font-otf font-type1 font-t1enc name libris category Package revision 19409 -shortdesc Libris ADF fonts, with LaTeX support. +shortdesc Libris ADF fonts, with LaTeX support relocated 1 longdesc LibrisADF is a sans-serif family designed to mimic Lydian. The longdesc bundle includes: fonts, in Adobe Type 1, TrueType and OpenType longdesc formats, and LaTeX support macros, for use with the Type 1 -longdesc versions of the fonts. The LaTeX macros depend on the nfssext- -longdesc cfr bundle. GPL licensing applies the fonts themselves; the -longdesc support macros are distributed under LPPL licensing. +longdesc versions of the fonts. The LaTeX macros depend on the +longdesc nfssext-cfr bundle. GPL licensing applies the fonts themselves; +longdesc the support macros are distributed under LPPL licensing. execute addMap yly.map +containersize 239832 +containerchecksum 1a754d896846d0db358cf4f878928dcb511d76a7de6e7dfabee71970908e3ed7caab98f854695318ead334e052282b690712069597f42505b00c41e328ad141d +doccontainersize 502560 +doccontainerchecksum 04378b8461d6ea0284f038974fed6ae6fc48fc362f63dfb8b8d57a81a721da7bf17ca3aeabb198c373a68a4c8e5516b66f12c240e081dabcf1b9c79fd2d2b388 +docfiles size=138 + RELOC/doc/fonts/libris/COPYING + RELOC/doc/fonts/libris/NOTICE.txt + RELOC/doc/fonts/libris/README details="Readme" + RELOC/doc/fonts/libris/librisadf.pdf details="Details of distribution" + RELOC/doc/fonts/libris/librisadf.tex + RELOC/doc/fonts/libris/manifest.txt +srccontainersize 10060 +srccontainerchecksum 8ccb8a6beb30c508d582dc905136cc8b1b053a8d71a7701bdeccb0ff1eecfa69e32d7167b871d4e38eb0c98ef49c8ee9a00a9ea3bbc30e51c8a81d903ac147ff +srcfiles size=34 + RELOC/source/fonts/libris/libris-supp.etx + RELOC/source/fonts/libris/reglyph-yly.tex + RELOC/source/fonts/libris/resetalt.mtx + RELOC/source/fonts/libris/t1-cfr.etx + RELOC/source/fonts/libris/t1-libris.etx + RELOC/source/fonts/libris/t1-librisswash.etx + RELOC/source/fonts/libris/ts1-euro.etx + RELOC/source/fonts/libris/yly-drv.tex + RELOC/source/fonts/libris/yly-map.tex runfiles size=169 RELOC/fonts/afm/arkandis/libris/ylyb8a.afm RELOC/fonts/afm/arkandis/libris/ylybi8a.afm @@ -97952,116 +160692,30 @@ runfiles size=169 RELOC/tex/latex/libris/t1ylyw.fd RELOC/tex/latex/libris/ts1yly.fd RELOC/tex/latex/libris/ts1ylyw.fd -docfiles size=138 - RELOC/doc/fonts/libris/COPYING - RELOC/doc/fonts/libris/NOTICE.txt - RELOC/doc/fonts/libris/README - RELOC/doc/fonts/libris/librisadf.pdf - RELOC/doc/fonts/libris/librisadf.tex - RELOC/doc/fonts/libris/manifest.txt -srcfiles size=34 - RELOC/source/fonts/libris/libris-supp.etx - RELOC/source/fonts/libris/reglyph-yly.tex - RELOC/source/fonts/libris/resetalt.mtx - RELOC/source/fonts/libris/t1-cfr.etx - RELOC/source/fonts/libris/t1-libris.etx - RELOC/source/fonts/libris/t1-librisswash.etx - RELOC/source/fonts/libris/ts1-euro.etx - RELOC/source/fonts/libris/yly-drv.tex - RELOC/source/fonts/libris/yly-map.tex +catalogue-contact-home http://arkandis.tuxfamily.org/tugfonts.htm catalogue-ctan /fonts/libris -catalogue-date 2015-01-20 20:54:34 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license gpl +catalogue-topics font font-type1 font-supp catalogue-version 1.007 name lilyglyphs category Package revision 33164 -shortdesc Access lilypond fragments and glyphs, in LaTeX. +shortdesc Access lilypond fragments and glyphs, in LaTeX longdesc The package provides the means to include arbitrary elements of longdesc Lilypond notation, including symbols from Lilypond's Emmentaler longdesc font, in a LaTeX document. The package uses OpenType fonts, and longdesc as a result must be compiled with LuaLaTeX or XeLaTeX. depend lilyglyphs.ARCH -runfiles size=526 - texmf-dist/fonts/opentype/public/lilyglyphs/FONTLOG - texmf-dist/fonts/opentype/public/lilyglyphs/LICENSE.OFL - texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-11.otf - texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-13.otf - texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-14.otf - texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-16.otf - texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-18.otf - texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-20.otf - texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-23.otf - texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-26.otf - texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-brace.otf - texmf-dist/scripts/lilyglyphs/lily-glyph-commands.py - texmf-dist/scripts/lilyglyphs/lily-image-commands.py - texmf-dist/scripts/lilyglyphs/lily-rebuild-pdfs.py - texmf-dist/scripts/lilyglyphs/lilyglyphs_common.py - texmf-dist/tex/lualatex/lilyglyphs/README-tex - texmf-dist/tex/lualatex/lilyglyphs/commands/README-commands - texmf-dist/tex/lualatex/lilyglyphs/commands/accidentals.inp - texmf-dist/tex/lualatex/lilyglyphs/commands/accordion.inp - texmf-dist/tex/lualatex/lilyglyphs/commands/beamednotes.inp - texmf-dist/tex/lualatex/lilyglyphs/commands/clefs.inp - texmf-dist/tex/lualatex/lilyglyphs/commands/dynamics.inp - texmf-dist/tex/lualatex/lilyglyphs/commands/fancyexamples.inp - texmf-dist/tex/lualatex/lilyglyphs/commands/noteheads.inp - texmf-dist/tex/lualatex/lilyglyphs/commands/numbers.inp - texmf-dist/tex/lualatex/lilyglyphs/commands/rests.inp - texmf-dist/tex/lualatex/lilyglyphs/commands/scripts.inp - texmf-dist/tex/lualatex/lilyglyphs/commands/singlenotes.inp - texmf-dist/tex/lualatex/lilyglyphs/commands/timesignatures.inp - texmf-dist/tex/lualatex/lilyglyphs/core/README-core - texmf-dist/tex/lualatex/lilyglyphs/core/dotted.inp - texmf-dist/tex/lualatex/lilyglyphs/core/genericAccess.inp - texmf-dist/tex/lualatex/lilyglyphs/core/keyval.inp - texmf-dist/tex/lualatex/lilyglyphs/core/opticals.inp - texmf-dist/tex/lualatex/lilyglyphs/lilyglyphs.sty - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-crescHairpin.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-crotchet.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-crotchetDotted.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-crotchetDottedDouble.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-crotchetDottedDoubleDown.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-crotchetDottedDown.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-crotchetDown.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-decrescHairpin.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-demisemiquaver.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-demisemiquaverDotted.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-demisemiquaverDottedDouble.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-demisemiquaverDottedDoubleDown.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-demisemiquaverDottedDown.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-demisemiquaverDown.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-fancyExample.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-halfNote.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-halfNoteDotted.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-halfNoteDottedDouble.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-halfNoteDottedDoubleDown.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-halfNoteDottedDown.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-halfNoteDown.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-quaver.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-quaverDotted.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-quaverDottedDouble.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-quaverDottedDoubleDdown.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-quaverDottedDoubleDown.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-quaverDottedDown.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-quaverDown.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-semiquaver.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-semiquaverDotted.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-semiquaverDottedDouble.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-semiquaverDottedDoubleDown.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-semiquaverDottedDown.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-semiquaverDown.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-threeBeamedQuavers.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-threeBeamedQuaversI.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-threeBeamedQuaversII.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-threeBeamedQuaversIII.pdf - texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-twoBeamedQuavers.pdf +containersize 370220 +containerchecksum 8d0d8b994628731e23b1a579a141cee66043838bf254306af91f9edfe2848379492baddddd1018b7a8b7c5fc7de33f4895884412b21d1b6825856f19b7da4a57 +doccontainersize 1160956 +doccontainerchecksum 8c834cb3ca5bff9538218112523537417bc41b05e34f6f6a1670c3f6eb573cc223ec8be121c7df79ebc746afe427520eef6d1ab0f4e569339b542ee67a6549fa docfiles size=463 texmf-dist/doc/lualatex/lilyglyphs/CHANGES.md texmf-dist/doc/lualatex/lilyglyphs/INSTALL - texmf-dist/doc/lualatex/lilyglyphs/README + texmf-dist/doc/lualatex/lilyglyphs/README details="Readme" texmf-dist/doc/lualatex/lilyglyphs/README-scripts texmf-dist/doc/lualatex/lilyglyphs/VERSION texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs-example-400.png @@ -98071,7 +160725,7 @@ docfiles size=463 texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs-example.pdf texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs-example.png texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs-example.tex - texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs.pdf + texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs.pdf details="Package documentation" texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs.tex texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs_logo/lilyglyphs_logo.pdf texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs_logo/lilyglyphs_logo.png @@ -98109,6 +160763,8 @@ docfiles size=463 texmf-dist/doc/lualatex/lilyglyphs/license/COPYING.LPPL texmf-dist/doc/lualatex/lilyglyphs/license/MANIFEST texmf-dist/doc/lualatex/lilyglyphs/license/license-preamble.inp +srccontainersize 158028 +srccontainerchecksum 810c33637a1a8484e28b4a3b60c4a5ec281928d049024c2e24aa0200738a9d07eb9d63f2d5f2263c90376ab071dd8b4d8ed40db6d5ebefd8f49ac2aadee869df srcfiles size=91 texmf-dist/source/luatex/lilyglyphs/fonts/README-emmentaler texmf-dist/source/luatex/lilyglyphs/fonts/emmentaler-2-18-0.zip @@ -98158,49 +160814,357 @@ srcfiles size=91 texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversII.ly texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversIII.ly texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-twoBeamedQuavers.ly +runfiles size=526 + texmf-dist/fonts/opentype/public/lilyglyphs/FONTLOG + texmf-dist/fonts/opentype/public/lilyglyphs/LICENSE.OFL + texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-11.otf + texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-13.otf + texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-14.otf + texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-16.otf + texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-18.otf + texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-20.otf + texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-23.otf + texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-26.otf + texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-brace.otf + texmf-dist/scripts/lilyglyphs/lily-glyph-commands.py + texmf-dist/scripts/lilyglyphs/lily-image-commands.py + texmf-dist/scripts/lilyglyphs/lily-rebuild-pdfs.py + texmf-dist/scripts/lilyglyphs/lilyglyphs_common.py + texmf-dist/tex/lualatex/lilyglyphs/README-tex + texmf-dist/tex/lualatex/lilyglyphs/commands/README-commands + texmf-dist/tex/lualatex/lilyglyphs/commands/accidentals.inp + texmf-dist/tex/lualatex/lilyglyphs/commands/accordion.inp + texmf-dist/tex/lualatex/lilyglyphs/commands/beamednotes.inp + texmf-dist/tex/lualatex/lilyglyphs/commands/clefs.inp + texmf-dist/tex/lualatex/lilyglyphs/commands/dynamics.inp + texmf-dist/tex/lualatex/lilyglyphs/commands/fancyexamples.inp + texmf-dist/tex/lualatex/lilyglyphs/commands/noteheads.inp + texmf-dist/tex/lualatex/lilyglyphs/commands/numbers.inp + texmf-dist/tex/lualatex/lilyglyphs/commands/rests.inp + texmf-dist/tex/lualatex/lilyglyphs/commands/scripts.inp + texmf-dist/tex/lualatex/lilyglyphs/commands/singlenotes.inp + texmf-dist/tex/lualatex/lilyglyphs/commands/timesignatures.inp + texmf-dist/tex/lualatex/lilyglyphs/core/README-core + texmf-dist/tex/lualatex/lilyglyphs/core/dotted.inp + texmf-dist/tex/lualatex/lilyglyphs/core/genericAccess.inp + texmf-dist/tex/lualatex/lilyglyphs/core/keyval.inp + texmf-dist/tex/lualatex/lilyglyphs/core/opticals.inp + texmf-dist/tex/lualatex/lilyglyphs/lilyglyphs.sty + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-crescHairpin.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-crotchet.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-crotchetDotted.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-crotchetDottedDouble.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-crotchetDottedDoubleDown.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-crotchetDottedDown.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-crotchetDown.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-decrescHairpin.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-demisemiquaver.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-demisemiquaverDotted.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-demisemiquaverDottedDouble.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-demisemiquaverDottedDoubleDown.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-demisemiquaverDottedDown.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-demisemiquaverDown.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-fancyExample.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-halfNote.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-halfNoteDotted.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-halfNoteDottedDouble.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-halfNoteDottedDoubleDown.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-halfNoteDottedDown.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-halfNoteDown.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-quaver.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-quaverDotted.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-quaverDottedDouble.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-quaverDottedDoubleDdown.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-quaverDottedDoubleDown.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-quaverDottedDown.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-quaverDown.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-semiquaver.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-semiquaverDotted.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-semiquaverDottedDouble.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-semiquaverDottedDoubleDown.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-semiquaverDottedDown.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-semiquaverDown.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-threeBeamedQuavers.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-threeBeamedQuaversI.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-threeBeamedQuaversII.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-threeBeamedQuaversIII.pdf + texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-twoBeamedQuavers.pdf +catalogue-also context-lilypond +catalogue-contact-repository https://github.com/uliska/lilyglyphs catalogue-ctan /macros/luatex/latex/lilyglyphs -catalogue-date 2014-05-11 22:01:43 +0200 +catalogue-date 2017-04-18 10:50:41 +0200 catalogue-license lppl1.3 +catalogue-topics font font-otf font-music music catalogue-version 0.2.3 +name lilyglyphs.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of lilyglyphs +containersize 404 +containerchecksum a5200b374de074f1e2d63198f9ecf360be654b601e0289fec9006805e9f82d257ca7199d044c5b2ffdd9c17aa5564d6aadf60a1ec85f15960f793d098b3ae4a8 +binfiles arch=aarch64-linux size=3 + bin/aarch64-linux/lily-glyph-commands + bin/aarch64-linux/lily-image-commands + bin/aarch64-linux/lily-rebuild-pdfs + +name lilyglyphs.amd64-freebsd +category Package +revision 31696 +shortdesc amd64-freebsd files of lilyglyphs +containersize 404 +containerchecksum a2b3d005022db99e0aea3a91e3fe0871ebe455c086214bf13988afd10f486038beb5286082220d493313ab10c3e68672326cc93dd9f38c17730efdcd22495aa2 +binfiles arch=amd64-freebsd size=3 + bin/amd64-freebsd/lily-glyph-commands + bin/amd64-freebsd/lily-image-commands + bin/amd64-freebsd/lily-rebuild-pdfs + +name lilyglyphs.amd64-netbsd +category Package +revision 31696 +shortdesc amd64-netbsd files of lilyglyphs +containersize 404 +containerchecksum 0063b43e5bf9d7bbb87a27a60bb37001ff4d5a30102d1d4dbf49e3fbe3eca657d6efe677e5959874e523794391fc94cef0aa39a69ac9916016dfc8669b661042 +binfiles arch=amd64-netbsd size=3 + bin/amd64-netbsd/lily-glyph-commands + bin/amd64-netbsd/lily-image-commands + bin/amd64-netbsd/lily-rebuild-pdfs + +name lilyglyphs.armhf-linux +category Package +revision 31696 +shortdesc armhf-linux files of lilyglyphs +containersize 404 +containerchecksum f8a6eabed374f6448c1fd549301bec605f96c0c6e2e31271527faca577fb1d9b86068356aa07881c6e6cf9f517c25de1deac1d591b51e5db705f4082aa914daa +binfiles arch=armhf-linux size=3 + bin/armhf-linux/lily-glyph-commands + bin/armhf-linux/lily-image-commands + bin/armhf-linux/lily-rebuild-pdfs + +name lilyglyphs.i386-cygwin +category Package +revision 31696 +shortdesc i386-cygwin files of lilyglyphs +containersize 404 +containerchecksum 65a794e629817fb861f6f7798d9c1d02a7bfc3c1cc92ca706127363bfb7b155a96d1a70857cfcf7930d854be4df68381b4f6d0f1df6e34b00e8035631d9f45c0 +binfiles arch=i386-cygwin size=3 + bin/i386-cygwin/lily-glyph-commands + bin/i386-cygwin/lily-image-commands + bin/i386-cygwin/lily-rebuild-pdfs + +name lilyglyphs.i386-freebsd +category Package +revision 31696 +shortdesc i386-freebsd files of lilyglyphs +containersize 404 +containerchecksum e06b480001d525e4cae20e3683ce54597f7e40a679edf4f74028d0cf71d57a82e2b8251a8843e37db269f67396c90f6e54d971d423256edb0668dcab62d5c5a2 +binfiles arch=i386-freebsd size=3 + bin/i386-freebsd/lily-glyph-commands + bin/i386-freebsd/lily-image-commands + bin/i386-freebsd/lily-rebuild-pdfs + name lilyglyphs.i386-linux category Package revision 31696 shortdesc i386-linux files of lilyglyphs +containersize 404 +containerchecksum 5ad48d5b181e3fc95b97fce32da24b853859e938925943c73351eb5cf95df7b3f8af4af85fafe1d11daa4f58b347fd3e66e7432acdac4359e34c5cabd61523e9 binfiles arch=i386-linux size=3 bin/i386-linux/lily-glyph-commands bin/i386-linux/lily-image-commands bin/i386-linux/lily-rebuild-pdfs +name lilyglyphs.i386-netbsd +category Package +revision 31696 +shortdesc i386-netbsd files of lilyglyphs +containersize 404 +containerchecksum a454ad99c48c161ee6d60f759aca7d553cb724116678808d0043aab7b66707fb32534fe79f5ac15f4568beb4fe0388f178204f4e6b7dc4dc6eb70d5b4dd92165 +binfiles arch=i386-netbsd size=3 + bin/i386-netbsd/lily-glyph-commands + bin/i386-netbsd/lily-image-commands + bin/i386-netbsd/lily-rebuild-pdfs + +name lilyglyphs.i386-solaris +category Package +revision 31696 +shortdesc i386-solaris files of lilyglyphs +containersize 400 +containerchecksum ddd15685c4cebe98b78fa237bf3f91230aee7b5c9da91f7b44fa4729e4611da0329bcb580e2acc133cbd7ce8a663e8f29bd44e22617bbf512539d20e6614a0fc +binfiles arch=i386-solaris size=3 + bin/i386-solaris/lily-glyph-commands + bin/i386-solaris/lily-image-commands + bin/i386-solaris/lily-rebuild-pdfs + +name lilyglyphs.win32 +category Package +revision 31696 +shortdesc win32 files of lilyglyphs +containersize 736 +containerchecksum b27fc290cd7bd198aa814ae3513ca849377cb76db2920d3b32e007d78b64e7e8af385e7a207558525948d382b670419e5156b02ba9fc4bc5516734732de66801 +binfiles arch=win32 size=3 + bin/win32/lily-glyph-commands.exe + bin/win32/lily-image-commands.exe + bin/win32/lily-rebuild-pdfs.exe + +name lilyglyphs.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of lilyglyphs +containersize 404 +containerchecksum 44c64b5b98d9b75ea56d32d722e34486f7d1a9cf1c572a57c12a4a8c755f83aa400d4bcf04501bae757635dfd00bd749adb3f53f7b4b20a84c113cfa16d56d63 +binfiles arch=x86_64-cygwin size=3 + bin/x86_64-cygwin/lily-glyph-commands + bin/x86_64-cygwin/lily-image-commands + bin/x86_64-cygwin/lily-rebuild-pdfs + +name lilyglyphs.x86_64-darwin +category Package +revision 31696 +shortdesc x86_64-darwin files of lilyglyphs +containersize 404 +containerchecksum 6d8b990b7af57d59c75c7cb46ff2dcab4f34021a97047f58c9999a7e0f1d7f33b16bc60a6dcf16b8b66f1078322f9a11aea834263b704683338b78abfb125c72 +binfiles arch=x86_64-darwin size=3 + bin/x86_64-darwin/lily-glyph-commands + bin/x86_64-darwin/lily-image-commands + bin/x86_64-darwin/lily-rebuild-pdfs + +name lilyglyphs.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of lilyglyphs +containersize 412 +containerchecksum 1ee5dd286264a85f5aa6793ff8868891aadcd67a2a9f0ec19689ad07804233b5d045f82e5b15a65157e4d03e8d8e24020a99aa11a3007b42c0066556a0c7c8af +binfiles arch=x86_64-darwinlegacy size=3 + bin/x86_64-darwinlegacy/lily-glyph-commands + bin/x86_64-darwinlegacy/lily-image-commands + bin/x86_64-darwinlegacy/lily-rebuild-pdfs + +name lilyglyphs.x86_64-linux +category Package +revision 31696 +shortdesc x86_64-linux files of lilyglyphs +containersize 404 +containerchecksum 1062cc314fc280c861d048eb04631e2148e3c45a4c2d86c47a9956f93f35e07d0319167c608e81bb78313f95fc0efb9995e4662d41a4fdbbb10f2e8c553e436a +binfiles arch=x86_64-linux size=3 + bin/x86_64-linux/lily-glyph-commands + bin/x86_64-linux/lily-image-commands + bin/x86_64-linux/lily-rebuild-pdfs + +name lilyglyphs.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of lilyglyphs +containersize 408 +containerchecksum 9599ff3f642f4897182924e02bb1c51eca3246e3c738f59515df5653dfb963ab0a74367e42a66d03de0a274ac2874aeac8dcb9098a4ca386338c7eb3e8c7b4e7 +binfiles arch=x86_64-linuxmusl size=3 + bin/x86_64-linuxmusl/lily-glyph-commands + bin/x86_64-linuxmusl/lily-image-commands + bin/x86_64-linuxmusl/lily-rebuild-pdfs + +name lilyglyphs.x86_64-solaris +category Package +revision 31696 +shortdesc x86_64-solaris files of lilyglyphs +containersize 404 +containerchecksum 974ef7a2ff1fe230f18bb779558ad04cdde8772b9fb8a815f2656576fd47f85eb41bc09f42647dfb7446efc4b51e9d5f7e035ae8c29b059fb01e8e075aec6a71 +binfiles arch=x86_64-solaris size=3 + bin/x86_64-solaris/lily-glyph-commands + bin/x86_64-solaris/lily-image-commands + bin/x86_64-solaris/lily-rebuild-pdfs + name limap category Package -revision 15878 -shortdesc Typeset maps and blocks according to the Information Mapping method. +revision 44863 +shortdesc Typeset maps and blocks according to the Information Mapping(r) method relocated 1 -longdesc The Information Mapping method provides a methodology for +longdesc The Information Mapping(r) method provides a methodology for longdesc structuring and presenting information. It claims to be useful longdesc for readers who are more concerned about finding the right longdesc information than reading the document as a whole. Thus short, longdesc highly structured, and context free pieces of information are longdesc used. A LaTeX style and a LaTeX class are provided. The style longdesc contains definitions to typeset maps and blocks according to -longdesc the Information Mapping method. The class provides all +longdesc the Information Mapping(r) method. The class provides all longdesc definitions to typeset a whole document. -runfiles size=6 - RELOC/tex/latex/limap/limap.cls - RELOC/tex/latex/limap/limap.sty -srcfiles size=13 - RELOC/source/latex/limap/Makefile +containersize 4524 +containerchecksum eae51f72a65d407b091244ed926ec98a7bf02ed8c360fcea2d614011555195992d315bb22b3697c8220f8e91f34a1c2f88092f34697dc9ac42f757e066198650 +doccontainersize 263404 +doccontainerchecksum 748504c008704d2aa1c763920c03c72372c89368e245fbf4172b442b6e9efe11b3754f37c37a864ab19301c8822aa31f0d25f80edbe26405c043aab8a0382739 +docfiles size=131 + RELOC/doc/latex/limap/Makefile + RELOC/doc/latex/limap/README.md details="Readme" + RELOC/doc/latex/limap/limap.pdf details="Package documentation" + RELOC/doc/latex/limap/lppl.txt + RELOC/doc/latex/limap/samples/boxed-toc.ltx + RELOC/doc/latex/limap/samples/boxed-toc.pdf + RELOC/doc/latex/limap/samples/hyper.ltx + RELOC/doc/latex/limap/samples/hyper.pdf + RELOC/doc/latex/limap/samples/nolines.ltx + RELOC/doc/latex/limap/samples/nolines.pdf + RELOC/doc/latex/limap/samples/sample.ltx + RELOC/doc/latex/limap/samples/sample.pdf +srccontainersize 18916 +srccontainerchecksum 2fd49d1313293fdda8726c84438a742095ef9a917369d8ac62d619507f540b4a9ced794472441f8d48edd5a5cc575ac2ac8ff43b3a50ccff70af0416808dd611 +srcfiles size=22 RELOC/source/latex/limap/limap.dtx RELOC/source/latex/limap/limap.ins +runfiles size=7 + RELOC/tex/latex/limap/limap.cls + RELOC/tex/latex/limap/limap.sty +catalogue-contact-home http://gerd-neugebauer.de/software/TeX/limap/ +catalogue-contact-repository https://sourceforge.net/p/gene-tex-lib/svn/HEAD/tree/limap/ catalogue-ctan /macros/latex/contrib/gene/limap -catalogue-date 2012-04-03 18:09:05 +0200 -catalogue-license lppl +catalogue-date 2017-07-21 20:55:15 +0200 +catalogue-license lppl1.3c +catalogue-topics struc-mkup class article-like report-like book-pub +catalogue-version 2.2 -name lineara +name limecv +category Package +revision 45906 +shortdesc A (Xe/Lua)LaTeX document class for curriculum vitae +relocated 1 +longdesc limecv is a (Xe/Lua)LaTeX document class to write curriculum +longdesc vitae. It is designed with the following design rules: simple, +longdesc elegant and clean. To this end, it offers several environments +longdesc and macros for convenience. +containersize 7568 +containerchecksum 385f144eb64f9ad6ba13f42e75ae9ce5701265c3bb2641523bbeaaed086781e92f7cc03f25a576dea97fe533bb08adf8c24672e6237363d37f7ea598138fb40d +doccontainersize 528880 +doccontainerchecksum c375f4e700e19fac6334df88100776b93df315000efa11189567d3ae0e6d542c3acf3d21dc29b541f7067d8cfb32fd74197e02569fe5275eb0277fc645e182e9 +docfiles size=163 + RELOC/doc/latex/limecv/LICENSE + RELOC/doc/latex/limecv/README.md details="Readme" + RELOC/doc/latex/limecv/examples/limecv-icon.pdf + RELOC/doc/latex/limecv/examples/mwe-latex.pdf + RELOC/doc/latex/limecv/examples/mwe-latex.tex + RELOC/doc/latex/limecv/examples/mwe-lualatex.pdf + RELOC/doc/latex/limecv/examples/mwe-lualatex.tex + RELOC/doc/latex/limecv/examples/mwe-xelatex.pdf details="Example of use" + RELOC/doc/latex/limecv/examples/mwe-xelatex.tex + RELOC/doc/latex/limecv/examples/picture.png + RELOC/doc/latex/limecv/limecv.pdf details="Package documentation" +srccontainersize 17444 +srccontainerchecksum 22953f4f1dca7a88f1f6aa359056d88944cf86010683b3b5cd1b9e0053b5501c4e98cce2abd66081f5053d75707a43749e78523b640097b9cc219b945665b481 +srcfiles size=21 + RELOC/source/latex/limecv/limecv.dtx + RELOC/source/latex/limecv/limecv.ins +runfiles size=9 + RELOC/tex/latex/limecv/limecv.cls +catalogue-contact-bugs https://github.com/opieters/limecv/issues +catalogue-contact-home https://olivierpieters.be/projects/limecv +catalogue-contact-repository https://github.com/opieters/limecv +catalogue-ctan /macros/latex/contrib/limecv +catalogue-date 2018-01-07 12:02:30 +0100 +catalogue-license lppl1.3c +catalogue-topics cv +catalogue-version 0.1.3 + +name linearA category Package revision 15878 -shortdesc Linear A script fonts. +shortdesc Linear A script fonts relocated 1 longdesc The linearA package provides a simple interface to two fonts longdesc which include all known symbols, simple and complex, of the @@ -98209,6 +161173,18 @@ longdesc "texts" using modern typographic technology. Note that the longdesc Linear A script has not been deciphered yet and probably never longdesc will be deciphered. execute addMap linearA.map +containersize 151816 +containerchecksum 5fc18101f389b2576b8e035e2f3bc79a37c11cdd64783df288f7776d1dc99ebc5c56a61d727de2dc57a9af4a4d0634b5ec6564513aea369fb1c8e4ce4eb407b5 +doccontainersize 165064 +doccontainerchecksum ca6749644b81bd4e6407acf0ea99f2de57a408b8fd332725dc8319888ae05e8e27cec2c3201c49e51f2cab22221ebabd8f980c627c7ce9f836bff2cb0a2cd575 +docfiles size=47 + RELOC/doc/fonts/linearA/README details="Readme" + RELOC/doc/fonts/linearA/linearA_glyphs.pdf details="Font samples" +srccontainersize 3804 +srccontainerchecksum ffbf77f9c3f97acc3bed0445dc3d7c92b9d4cd095e117a2f9ff1ba54cc1c3f96c734c1d22951fd520a194ca3f385504db06821a0797a4394079fb221d650fb7e +srcfiles size=8 + RELOC/source/fonts/linearA/linearA.dtx + RELOC/source/fonts/linearA/linearA.ins runfiles size=53 RELOC/fonts/afm/public/linearA/LinearA.afm RELOC/fonts/afm/public/linearA/LinearACmplxSigns.afm @@ -98218,82 +161194,116 @@ runfiles size=53 RELOC/fonts/type1/public/linearA/LinearA.pfb RELOC/fonts/type1/public/linearA/LinearACmplxSigns.pfb RELOC/tex/latex/linearA/linearA.sty -docfiles size=47 - RELOC/doc/fonts/linearA/README - RELOC/doc/fonts/linearA/linearA_glyphs.pdf -srcfiles size=8 - RELOC/source/fonts/linearA/linearA.dtx - RELOC/source/fonts/linearA/linearA.ins catalogue-ctan /fonts/archaic/linearA -catalogue-date 2015-02-28 14:55:42 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-type1 font-archaic name linegoal category Package revision 21523 -shortdesc A "dimen" that returns the space left on the line. +shortdesc A "dimen" that returns the space left on the line relocated 1 longdesc The linegoal package provides a macro \linegoal to be used with longdesc \setlength: \setlength\linegoal will set to the horizontal length of the remainder of the line. -longdesc This is achieved using the \pdfsavepos primitive of pdftex, +longdesc This is achieved using the \pdfsavepos primitive of pdfTeX, longdesc through the zref-savepos package. Example: Some text: longdesc \begin{tabularx}\linegoal{|l|X|} \hline one & two \\ three & longdesc four \\\hline \end{tabularx} will position the table after the longdesc initial text, and make the table fill the rest of the line. -runfiles size=1 - RELOC/tex/latex/linegoal/linegoal.sty +containersize 1988 +containerchecksum 87a062513ff7674f315472cc46e13fbce99057c3b7083a2b9c93b92f09d538af29f5d1e3664dd5273080b9037ac232dc0d7491753b83136d2d3558ada1b81976 +doccontainersize 138308 +doccontainerchecksum 9c61ec4fa6bc63a57f7b272c7dfc55035e8e4f14225bbd2763157915fd351a2bb4f179150801f06682fd9bd59f756edbb127e7bd68592ffee5c1cfbac91b10a6 docfiles size=48 - RELOC/doc/latex/linegoal/README - RELOC/doc/latex/linegoal/linegoal.pdf + RELOC/doc/latex/linegoal/README details="Readme" + RELOC/doc/latex/linegoal/linegoal.pdf details="Package documentation" +srccontainersize 10356 +srccontainerchecksum 69133c573e53608e6b341abd7e745ba6b532eba05bb9a2ff2105bb9da69e31bf590fdc3f06241e5b667ec7f0c9458a908f5ad72304c7a5c9e412c0057611c5cc srcfiles size=11 RELOC/source/latex/linegoal/linegoal.drv RELOC/source/latex/linegoal/linegoal.dtx RELOC/source/latex/linegoal/linegoal.ins +runfiles size=1 + RELOC/tex/latex/linegoal/linegoal.sty catalogue-ctan /macros/latex/contrib/linegoal -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics layout catalogue-version 2.9 name lineno category Package revision 21442 -shortdesc Line numbers on paragraphs. +shortdesc Line numbers on paragraphs relocated 1 longdesc Adds line numbers to selected paragraphs with reference longdesc possible through the LaTeX \ref and \pageref cross reference longdesc mechanism. Line numbering may be extended to footnote lines, longdesc using the fnlineno package. -runfiles size=60 - RELOC/tex/latex/lineno/ednmath0.sty - RELOC/tex/latex/lineno/edtable.sty - RELOC/tex/latex/lineno/fnlineno.sty - RELOC/tex/latex/lineno/lineno.sty - RELOC/tex/latex/lineno/vplref.sty +containersize 62308 +containerchecksum c98bb4c84d6473c3038a359872442ff8387ad8f111ce1d82021728d9bb8e29ca08cc65d5705261bb347a2da2fc27594cbcdc8accbd59aa03c91f0c25312578fb +doccontainersize 649992 +doccontainerchecksum da4fc0ca69d434c6d97cb87390247b3efd3463f5dcfa7e828d2bc840d2636036c097d6d54bb2e89b5d9b5f2a95a41db89af415d08ceacddbc4642883ebc134dc docfiles size=218 RELOC/doc/latex/lineno/CHANGEs.txt RELOC/doc/latex/lineno/COPYING.txt RELOC/doc/latex/lineno/README - RELOC/doc/latex/lineno/README.txt + RELOC/doc/latex/lineno/README.txt details="Readme" RELOC/doc/latex/lineno/SRCFILEs.txt RELOC/doc/latex/lineno/fnlineno.pdf - RELOC/doc/latex/lineno/lineno.pdf - RELOC/doc/latex/lineno/lnosuppl.pdf - RELOC/doc/latex/lineno/ulineno.pdf + RELOC/doc/latex/lineno/lineno.pdf details="Package documentation:" + RELOC/doc/latex/lineno/lnosuppl.pdf details="Supplementary files as PDF" + RELOC/doc/latex/lineno/ulineno.pdf details="User manual:" +srccontainersize 44284 +srccontainerchecksum 9598996c2796de011a31a8b8ebd38fa343ce856fc6d291426074da40bc557359e9ff40039cc48faaf6b4a3d039ae091bb7d7dfea530e449a0be3a34dba1c997d srcfiles size=40 RELOC/source/latex/lineno/fnlineno.tex RELOC/source/latex/lineno/lineno.tex RELOC/source/latex/lineno/lnosuppl.tex RELOC/source/latex/lineno/ulineno.tex +runfiles size=60 + RELOC/tex/latex/lineno/ednmath0.sty + RELOC/tex/latex/lineno/edtable.sty + RELOC/tex/latex/lineno/fnlineno.sty + RELOC/tex/latex/lineno/lineno.sty + RELOC/tex/latex/lineno/vplref.sty +catalogue-also numline edmac ledmac ednotes manyfoot poemscol +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html catalogue-ctan /macros/latex/contrib/lineno -catalogue-date 2012-04-21 20:14:11 +0200 +catalogue-date 2017-05-06 08:37:04 +0200 catalogue-license lppl +catalogue-topics typesetting catalogue-version 4.41 +name ling-macros +category Package +revision 42268 +shortdesc Macros for typesetting formal linguistics +relocated 1 +longdesc This package contains macros for typesetting glosses and formal +longdesc expressions. It covers a range of subfields in formal +longdesc linguistics. +containersize 5428 +containerchecksum 686dbb33df2670af909a80863943a8870ecef128679ab679f3d90d1747042b752c9aea15660c962b0f02418233d4d152e64357d5b57884a2fc2371acb3d90a52 +doccontainersize 306420 +doccontainerchecksum fe424a7db4be743168c4b1016fc25c95d33cf9d66767b39db0e79a5ba1bb667c76b9b5f10b23a08449362a3fef281d60f0b53e2b0f196846efe9f4765f3f08c6 +docfiles size=81 + RELOC/doc/latex/ling-macros/README.txt details="Readme" + RELOC/doc/latex/ling-macros/ling-macros-doc.pdf details="Package documentation" + RELOC/doc/latex/ling-macros/ling-macros-doc.tex +runfiles size=5 + RELOC/tex/latex/ling-macros/ling-macros.sty +catalogue-ctan /macros/latex/contrib/ling-macros +catalogue-date 2016-10-17 05:04:23 +0200 +catalogue-license lppl1.3 +catalogue-topics linguistic + name linguex category Package revision 30815 -shortdesc Format linguists' examples. +shortdesc Format linguists' examples relocated 1 longdesc This bundle comprises two packages: The linguex package longdesc facilitates the formatting of linguist examples, automatically @@ -98302,64 +161312,282 @@ longdesc brackets, and the '*' in grammaticality judgments. The ps-trees longdesc package provides linguistic trees, building on the macros of longdesc tree-dvips, but overcoming some of the older package's longdesc shortcomings. -runfiles size=8 - RELOC/tex/latex/linguex/linguex.sty - RELOC/tex/latex/linguex/linguho.sty - RELOC/tex/latex/linguex/ps-trees.sty +containersize 6924 +containerchecksum 36fab316a894029feba86bf771d4e600b3e7f5d766deb9d844605979b066483500c8fa0a425718d22e9a2bc14d74aada16ca8deb7ee744a81e18fee8c77a7b50 +doccontainersize 274676 +doccontainerchecksum 7a5d84d5425031d341deea8f37f1d8a9f6eaee820ef66661e8e38eafad2b20a5e9b04b81b1a0db0b11ab70fb0adc9c81cef886978626008eba6aa3c32bc0c848 docfiles size=77 RELOC/doc/latex/linguex/README - RELOC/doc/latex/linguex/linguex-doc.pdf + RELOC/doc/latex/linguex/linguex-doc.pdf details="Linguex manual" RELOC/doc/latex/linguex/linguex-doc.tex - RELOC/doc/latex/linguex/ps-trees-doc.pdf + RELOC/doc/latex/linguex/ps-trees-doc.pdf details="PS-trees manual" RELOC/doc/latex/linguex/ps-trees-doc.tex +runfiles size=8 + RELOC/tex/latex/linguex/linguex.sty + RELOC/tex/latex/linguex/linguho.sty + RELOC/tex/latex/linguex/ps-trees.sty catalogue-ctan /macros/latex/contrib/linguex -catalogue-date 2014-10-10 23:56:29 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics linguistic tree catalogue-version 4.3 +name linguisticspro +category Package +revision 51106 +shortdesc LinguisticsPro fonts with LaTeX support +relocated 1 +longdesc The package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the LinguisticsPro family of fonts. This family is +longdesc derived from the Utopia Nova font family, by Andreas Nolda. +execute addMap LinguisticsPro.map +containersize 1373356 +containerchecksum 9fe4ada7a970f8e77e385a54c5e9fd16bf109519e4e0b56a83987b091cabb157e9bdd83cd62429dc52384578ed92889c178d5a5bc259cbd4bec4225b01ccab26 +doccontainersize 31828 +doccontainerchecksum 5f5838f1e5f4ebb468cdece762b234f0febe883622124401bdfd3c244012948ce82eef390f59c5eab819b3ff4c16a564e19ae9e932b30118f0fb2094308f3299 +docfiles size=12 + RELOC/doc/fonts/linguisticspro/README details="Readme" + RELOC/doc/fonts/linguisticspro/SILOpenFontLicense.txt + RELOC/doc/fonts/linguisticspro/linguisticspro-samples.pdf details="Package documentation" + RELOC/doc/fonts/linguisticspro/linguisticspro-samples.tex +runfiles size=549 + RELOC/fonts/enc/dvips/linguisticspro/lngp_2mxmes.enc + RELOC/fonts/enc/dvips/linguisticspro/lngp_2mzpfv.enc + RELOC/fonts/enc/dvips/linguisticspro/lngp_2qubfx.enc + RELOC/fonts/enc/dvips/linguisticspro/lngp_2xdvfx.enc + RELOC/fonts/enc/dvips/linguisticspro/lngp_6ld6ag.enc + RELOC/fonts/enc/dvips/linguisticspro/lngp_6ziuek.enc + RELOC/fonts/enc/dvips/linguisticspro/lngp_7uckuc.enc + RELOC/fonts/enc/dvips/linguisticspro/lngp_ahcczi.enc + RELOC/fonts/enc/dvips/linguisticspro/lngp_c4erun.enc + RELOC/fonts/enc/dvips/linguisticspro/lngp_c5y55d.enc + RELOC/fonts/enc/dvips/linguisticspro/lngp_d5t37n.enc + RELOC/fonts/enc/dvips/linguisticspro/lngp_dwnhrk.enc + RELOC/fonts/enc/dvips/linguisticspro/lngp_elz76p.enc + RELOC/fonts/enc/dvips/linguisticspro/lngp_gfxdpt.enc + RELOC/fonts/enc/dvips/linguisticspro/lngp_hfxavb.enc + RELOC/fonts/enc/dvips/linguisticspro/lngp_hhs5ij.enc + RELOC/fonts/enc/dvips/linguisticspro/lngp_j3dqtl.enc + RELOC/fonts/enc/dvips/linguisticspro/lngp_lf4b4x.enc + RELOC/fonts/enc/dvips/linguisticspro/lngp_olwjlf.enc + RELOC/fonts/enc/dvips/linguisticspro/lngp_pq5q4e.enc + RELOC/fonts/enc/dvips/linguisticspro/lngp_rvtqhi.enc + RELOC/fonts/enc/dvips/linguisticspro/lngp_rwq5kg.enc + RELOC/fonts/enc/dvips/linguisticspro/lngp_thgs7l.enc + RELOC/fonts/enc/dvips/linguisticspro/lngp_thp4tj.enc + RELOC/fonts/map/dvips/linguisticspro/LinguisticsPro.map + RELOC/fonts/opentype/public/linguisticspro/LinguisticsPro-Bold.otf + RELOC/fonts/opentype/public/linguisticspro/LinguisticsPro-BoldItalic.otf + RELOC/fonts/opentype/public/linguisticspro/LinguisticsPro-Italic.otf + RELOC/fonts/opentype/public/linguisticspro/LinguisticsPro-Regular.otf + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-tosf-t2a.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-tosf-t2b.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-tosf-t2c.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-tosf-t2a.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-tosf-t2b.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-tosf-t2c.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-swash-lgr.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-swash-ot1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-swash-t2a.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-swash-t2b.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-swash-t2c.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-t2a.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-t2b.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-t2c.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/linguisticspro/LinguisticsPro-Regular-tosf-ts1.tfm + RELOC/fonts/type1/public/linguisticspro/LinguisticsPro-Bold.pfb + RELOC/fonts/type1/public/linguisticspro/LinguisticsPro-BoldItalic.pfb + RELOC/fonts/type1/public/linguisticspro/LinguisticsPro-Italic.pfb + RELOC/fonts/type1/public/linguisticspro/LinguisticsPro-Regular.pfb + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Bold-tosf-t1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Italic-tosf-t1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Regular-tosf-swash-t1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Regular-tosf-t1.vf + RELOC/fonts/vf/public/linguisticspro/LinguisticsPro-Regular-tosf-ts1.vf + RELOC/tex/latex/linguisticspro/LGRLinguisticsPro-TOsF.fd + RELOC/tex/latex/linguisticspro/LY1LinguisticsPro-TOsF.fd + RELOC/tex/latex/linguisticspro/OT1LinguisticsPro-TOsF.fd + RELOC/tex/latex/linguisticspro/T1LinguisticsPro-TOsF.fd + RELOC/tex/latex/linguisticspro/T2ALinguisticsPro-TOsF.fd + RELOC/tex/latex/linguisticspro/T2BLinguisticsPro-TOsF.fd + RELOC/tex/latex/linguisticspro/T2CLinguisticsPro-TOsF.fd + RELOC/tex/latex/linguisticspro/TS1LinguisticsPro-TOsF.fd + RELOC/tex/latex/linguisticspro/linguisticspro.sty +catalogue-contact-home https://www.fontsquirrel.com/fonts/linguistics-pro +catalogue-ctan /fonts/linguisticspro +catalogue-date 2019-05-12 18:45:00 +0200 +catalogue-license lpplofl +catalogue-topics font font-sans font-proportional font-body font-otf font-type1 font-t1enc + +name linop +category Package +revision 41304 +shortdesc Typeset linear operators as they appear in quantum theory or linear algebra +relocated 1 +longdesc This small package aims to provide two simple commands and many +longdesc options to easily write linear operators as they appear in +longdesc many-body physics, quantum theory, and linear algebra, in any +longdesc of the ways commonly in use. +containersize 1376 +containerchecksum ba0c5e053399c44203d6eff42252854a16ccbf12132ee6e26fa577587554234b36ed31a63f1a6c40059e0aab8d9367a5b6aa6f34d552d64866b46e68478c36b4 +doccontainersize 226748 +doccontainerchecksum e63f09e370a53dadc92591d105c677f2a5eea4cbcbc4e3133448df64b10abf2eae1d76cdeed5e288f610be13eb4baf8f248a6e9df92ab79066078ee165b9fdc8 +docfiles size=63 + RELOC/doc/latex/linop/README.md details="Readme" + RELOC/doc/latex/linop/compact.png + RELOC/doc/latex/linop/linop.pdf details="Package documentation" + RELOC/doc/latex/linop/linop.tex +runfiles size=1 + RELOC/tex/latex/linop/linop.sty +catalogue-ctan /macros/latex/contrib/linop +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics maths physics +catalogue-version 0.1 + +name lion-msc +category Package +revision 51143 +shortdesc LaTeX class for B.Sc. and M.Sc. reports at Leiden Institute of Physics (LION) +relocated 1 +longdesc LaTeX class for B.Sc. and M.Sc. reports at Leiden Institute of +longdesc Physics (LION). The purpose of this class is twofold: It +longdesc creates a uniform layout of the student theses from our +longdesc department. More importantly it contains several fields on the +longdesc front-page that the user needs to fill that are used in the +longdesc university administration (name, student number and name of +longdesc supervisor) Students are free to change the layout of the text +longdesc but should leave the title page as it is. +containersize 45424 +containerchecksum 93a6800c371a2444c34de2888d09076cd41b9cb773b39af1c6772928087f4c0438e85a58267e9a0afd309722b5eb16907a553c23d2cba008a65b6e2f3b3edda0 +doccontainersize 1466404 +doccontainerchecksum d3df6b66fe429e565b9f336b2d864458de759a907fe1c0ea88e002738fa7d7122a3dae0951f596c56192ec5b44023eb604eed7cce357521e8295431675bf2e67 +docfiles size=446 + RELOC/doc/latex/lion-msc/4photon.bib + RELOC/doc/latex/lion-msc/AlexanderPRA.tex + RELOC/doc/latex/lion-msc/Fig1.png + RELOC/doc/latex/lion-msc/Fig2.png + RELOC/doc/latex/lion-msc/Fig3a.png + RELOC/doc/latex/lion-msc/Fig3b.png + RELOC/doc/latex/lion-msc/Fig4.png + RELOC/doc/latex/lion-msc/LICENSE + RELOC/doc/latex/lion-msc/README.md details="Readme" + RELOC/doc/latex/lion-msc/lion-msc.layout + RELOC/doc/latex/lion-msc/lion-msc.pdf details="Package documentation" + RELOC/doc/latex/lion-msc/lion-msc.tex + RELOC/doc/latex/lion-msc/minimal.pdf + RELOC/doc/latex/lion-msc/minimal.tex +runfiles size=20 + RELOC/bibtex/bst/lion-msc/lion-msc.bst + RELOC/tex/latex/lion-msc/lion-msc-logo.pdf + RELOC/tex/latex/lion-msc/lion-msc.cls +catalogue-ctan /macros/latex/contrib/lion-msc +catalogue-date 2019-05-15 23:06:58 +0200 +catalogue-license lppl1.3 +catalogue-topics class dissertation class class class +catalogue-version 0.28 + name lipsum category Package -revision 34800 -shortdesc Easy access to the Lorem Ipsum dummy text. +revision 49610 +shortdesc Easy access to the Lorem Ipsum dummy text relocated 1 longdesc This package gives you easy access to the Lorem Ipsum dummy longdesc text; an option is available to separate the paragraphs of the longdesc dummy text into TeX-paragraphs. All the paragraphs are taken longdesc with permission from http://lipsum.com/. -runfiles size=26 - RELOC/tex/latex/lipsum/lipsum.sty -docfiles size=106 - RELOC/doc/latex/lipsum/README - RELOC/doc/latex/lipsum/lipsum.pdf -srcfiles size=29 +containersize 75600 +containerchecksum f5d2454f160162fd1272f5a43e021e1050947b527614c6450a87e1ba8aaa8151dad281cd962142d5ad39cec9f44ac7b313fdcc44da94db0256ab9a2e14b75b0e +doccontainersize 802516 +doccontainerchecksum fae8e8002b33c26ab34c53d09e1bbb76f46164e2fa8a59517dad19e81c1b84505170e675cc2d9072e30d5e5314f7ea7b72d61e273de9ca9f898d97ec2143e3fa +docfiles size=198 + RELOC/doc/latex/lipsum/README.txt details="Readme" + RELOC/doc/latex/lipsum/lipsum.pdf details="Package documentation" +srccontainersize 87100 +srccontainerchecksum 1ac058c3c83d14701b54238aa78aac52c1495038985e30584e948842d5a6486436c733df790fb56b405e99033496921d9401e6d73ee485685e46586a01edba00 +srcfiles size=77 RELOC/source/latex/lipsum/lipsum.dtx RELOC/source/latex/lipsum/lipsum.ins +runfiles size=65 + RELOC/tex/latex/lipsum/cicero.ltd.tex + RELOC/tex/latex/lipsum/lipsum.ltd.tex + RELOC/tex/latex/lipsum/lipsum.sty +catalogue-also blindtext kantlipsum +catalogue-contact-bugs https://github.com/patta42/lipsum/issues +catalogue-contact-repository https://github.com/patta42/lipsum/ catalogue-ctan /macros/latex/contrib/lipsum -catalogue-date 2014-07-29 10:30:46 +0200 -catalogue-license lppl -catalogue-version v1.3 +catalogue-date 2019-01-04 14:16:03 +0100 +catalogue-license lppl1.3 +catalogue-topics macro-supp dummy-gen +catalogue-version 2.2 name lisp-on-tex category Package -revision 34578 -shortdesc Execute LISP code in a LaTeX document. +revision 38722 +shortdesc Execute LISP code in a LaTeX document relocated 1 longdesc The package provides a LISP interpreter written using TeX longdesc macros; it is provided as a LaTeX package. The interpreter longdesc static scoping, dynamic typing, and eager evaluation. -runfiles size=17 - RELOC/tex/latex/lisp-on-tex/lisp-arith.sty - RELOC/tex/latex/lisp-on-tex/lisp-cast.sty - RELOC/tex/latex/lisp-on-tex/lisp-latexutil.sty - RELOC/tex/latex/lisp-on-tex/lisp-mod-fpnum.sty - RELOC/tex/latex/lisp-on-tex/lisp-on-tex.sty - RELOC/tex/latex/lisp-on-tex/lisp-prim.sty - RELOC/tex/latex/lisp-on-tex/lisp-read.sty - RELOC/tex/latex/lisp-on-tex/lisp-string.sty - RELOC/tex/latex/lisp-on-tex/lisp-util.sty -docfiles size=205 +containersize 13164 +containerchecksum 67817d9894ac5bc8d456ce2b114eba81b0c444bf53422c4acb5066b42cd5cd55d73c46fb2b443db9fe3b13bebb58d6fd7f2bb31686dc4ac2295447285295c602 +doccontainersize 142988 +doccontainerchecksum fb3a8ef4ada38d910b3055f408059daf700946c84b17873846175e6cd3075ad7f3889d2af154adc3a7898ac33646251bdbe0d8cda17ccf354dee526a96476432 +docfiles size=47 RELOC/doc/latex/lisp-on-tex/LICENSE - RELOC/doc/latex/lisp-on-tex/README + RELOC/doc/latex/lisp-on-tex/README.md details="Readme" + RELOC/doc/latex/lisp-on-tex/examples/div2.pdf + RELOC/doc/latex/lisp-on-tex/examples/div2.tex RELOC/doc/latex/lisp-on-tex/examples/fact.pdf RELOC/doc/latex/lisp-on-tex/examples/fact.tex RELOC/doc/latex/lisp-on-tex/examples/fpnummodule-mandelbrot.pdf @@ -98371,80 +161599,292 @@ docfiles size=205 RELOC/doc/latex/lisp-on-tex/examples/rocket.tex RELOC/doc/latex/lisp-on-tex/examples/showfont.pdf RELOC/doc/latex/lisp-on-tex/examples/showfont.tex - RELOC/doc/latex/lisp-on-tex/test.tex - RELOC/doc/latex/lisp-on-tex/tug2013/bench/expl3/asts.tex - RELOC/doc/latex/lisp-on-tex/tug2013/bench/expl3/mandel.pdf - RELOC/doc/latex/lisp-on-tex/tug2013/bench/expl3/mandel.tex - RELOC/doc/latex/lisp-on-tex/tug2013/bench/expl3/tarai.pdf - RELOC/doc/latex/lisp-on-tex/tug2013/bench/expl3/tarai.tex - RELOC/doc/latex/lisp-on-tex/tug2013/bench/latex/ast.tex - RELOC/doc/latex/lisp-on-tex/tug2013/bench/latex/mandel.pdf - RELOC/doc/latex/lisp-on-tex/tug2013/bench/latex/mandel.tex - RELOC/doc/latex/lisp-on-tex/tug2013/bench/latex/tarai.pdf - RELOC/doc/latex/lisp-on-tex/tug2013/bench/latex/tarai.tex - RELOC/doc/latex/lisp-on-tex/tug2013/bench/lot/asts.pdf - RELOC/doc/latex/lisp-on-tex/tug2013/bench/lot/asts.tex - RELOC/doc/latex/lisp-on-tex/tug2013/bench/lot/mandel.pdf - RELOC/doc/latex/lisp-on-tex/tug2013/bench/lot/mandel.tex - RELOC/doc/latex/lisp-on-tex/tug2013/bench/lot/tarai.pdf - RELOC/doc/latex/lisp-on-tex/tug2013/bench/lot/tarai.tex - RELOC/doc/latex/lisp-on-tex/tug2013/bench/luatex/asts.pdf - RELOC/doc/latex/lisp-on-tex/tug2013/bench/luatex/asts.tex - RELOC/doc/latex/lisp-on-tex/tug2013/bench/luatex/mandel.pdf - RELOC/doc/latex/lisp-on-tex/tug2013/bench/luatex/mandel.tex - RELOC/doc/latex/lisp-on-tex/tug2013/bench/luatex/tarai.pdf - RELOC/doc/latex/lisp-on-tex/tug2013/bench/luatex/tarai.tex - RELOC/doc/latex/lisp-on-tex/tug2013/bench/perltex/ast.pdf - RELOC/doc/latex/lisp-on-tex/tug2013/bench/perltex/ast.tex - RELOC/doc/latex/lisp-on-tex/tug2013/bench/perltex/mandel.pdf - RELOC/doc/latex/lisp-on-tex/tug2013/bench/perltex/mandel.tex - RELOC/doc/latex/lisp-on-tex/tug2013/bench/perltex/tarai.pdf - RELOC/doc/latex/lisp-on-tex/tug2013/bench/perltex/tarai.tex - RELOC/doc/latex/lisp-on-tex/tug2013/slide.pdf - RELOC/doc/latex/lisp-on-tex/tug2013/slide.tex +runfiles size=22 + RELOC/tex/latex/lisp-on-tex/lisp-arith.sty + RELOC/tex/latex/lisp-on-tex/lisp-gc.sty + RELOC/tex/latex/lisp-on-tex/lisp-latexutil.sty + RELOC/tex/latex/lisp-on-tex/lisp-mod-fpnum.sty + RELOC/tex/latex/lisp-on-tex/lisp-mod-l3regex.sty + RELOC/tex/latex/lisp-on-tex/lisp-on-tex.sty + RELOC/tex/latex/lisp-on-tex/lisp-prim.sty + RELOC/tex/latex/lisp-on-tex/lisp-read.sty + RELOC/tex/latex/lisp-on-tex/lisp-simple-alloc.sty + RELOC/tex/latex/lisp-on-tex/lisp-string.sty + RELOC/tex/latex/lisp-on-tex/lisp-util.sty catalogue-ctan /macros/latex/contrib/lisp-on-tex -catalogue-date 2014-07-12 15:52:58 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license bsd -catalogue-version 1.3 +catalogue-topics exec-foreign +catalogue-version 2.0 name listbib category Package revision 29349 -shortdesc Lists contents of BibTeX files. +shortdesc Lists contents of BibTeX files longdesc Generates listings of bibliographic data bases in BibTeX format longdesc -- for example for archival purposes. Included is a listbib.bst longdesc which is better suited for this purpose than the standard longdesc styles. depend listbib.ARCH -runfiles size=22 - texmf-dist/bibtex/bst/listbib/listbib.bst - texmf-dist/scripts/listbib/listbib - texmf-dist/tex/latex/listbib/listbib.cfg - texmf-dist/tex/latex/listbib/listbib.sty - texmf-dist/tex/latex/listbib/listbib.tex +containersize 21348 +containerchecksum e71bda783acbb8ab6ccab3d8af535034caf0eea919bbd175685fe50585970b87613e0df5ed076967aca395cd8c7f1317e805fb1cf765897b03d6cc131d3d98b8 +doccontainersize 332236 +doccontainerchecksum 0ec0970f591fd3a840c27730d41f0b817f631727c9c7219880b45209c21fe0d3aa616eb6eb94bc7016a9acabfe9c50846d872d3b36a104e1f4eb74dd003a16d3 docfiles size=87 - texmf-dist/doc/latex/listbib/listbib-doc.pdf + texmf-dist/doc/latex/listbib/listbib-doc.pdf details="Package documentation" +srccontainersize 14012 +srccontainerchecksum 441b13ec75d91c68b8e7253a5dc9a6e515c5bb0df81a4784dd414b1956be6f2c9189051ae9090a04bd4d11919945a38ad6563f41c27d1b8d03ad283f71c9a19d srcfiles size=13 texmf-dist/source/latex/listbib/listbib-doc.drv texmf-dist/source/latex/listbib/listbib.drv texmf-dist/source/latex/listbib/listbib.dtx texmf-dist/source/latex/listbib/listbib.ins +runfiles size=22 + texmf-dist/bibtex/bst/listbib/listbib.bst + texmf-dist/scripts/listbib/listbib + texmf-dist/tex/latex/listbib/listbib.cfg + texmf-dist/tex/latex/listbib/listbib.sty + texmf-dist/tex/latex/listbib/listbib.tex +catalogue-also biblist catalogue-ctan /macros/latex/contrib/listbib -catalogue-date 2012-04-21 20:14:11 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics bibtex-util catalogue-version 2.2 +name listbib.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of listbib +containersize 340 +containerchecksum abca96d626e6fec49fa5954e866797c7401820622c494f5c14995f43e4ce5a365d5a543e6f82182f8466d842d550ca088d4f1dfdc84c6b41d3f898d3efec6d10 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/listbib + +name listbib.amd64-freebsd +category Package +revision 26126 +shortdesc amd64-freebsd files of listbib +containersize 340 +containerchecksum 6cc2bf085862e4e07b92cb28b781e93cf08a358ad7ecbba968119d69a3489d16a348ffd8cee96fa2aea51cd2cff70d2ae8146183e330850408a7dcc33cfd8bad +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/listbib + +name listbib.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of listbib +containersize 336 +containerchecksum 5bb93c1cf4caaffb2feac9a0ab5832c60f99ea9b5b5a655e25207ac11b29d925e0932c08102dd4fb8a355c54968a1142dccd4543b1d4ed233339dd26acc20974 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/listbib + +name listbib.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of listbib +containersize 340 +containerchecksum b19ca72dd2069f64a48c7bdaca8c32c83569ddf7081cfdb66ce362545130cbf9a37c53384c777c5cbdad61ee10c14e0a5a93a7afb86f4eb3af5ae786681853d8 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/listbib + +name listbib.i386-cygwin +category Package +revision 26126 +shortdesc i386-cygwin files of listbib +containersize 336 +containerchecksum 1df42825226c3f3ac8fed15a36b35b3d22c9db086978242cbcb78227c970c58eeacb3d35eedf51bf3fddeb8dfa5b5c31383f47970087998d28a02a95b69097ed +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/listbib + +name listbib.i386-freebsd +category Package +revision 26126 +shortdesc i386-freebsd files of listbib +containersize 340 +containerchecksum 51cb34bd0067d82a7c1cc92c19a35ec9f44776a6a06628406e83735e0fb56091c2e3d7d98ec023313a59ba2867715a44722857b0b54259daeae9012d6484503c +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/listbib + name listbib.i386-linux category Package revision 26126 shortdesc i386-linux files of listbib +containersize 336 +containerchecksum 9f05b1008794bfb4c18a296e7b0058bb8ebac921568b2a2980fb74f992867b68d533e8ba8a66b3503c24fe434e93f5671fcf9f45ccfe54064443390c881d1172 binfiles arch=i386-linux size=1 bin/i386-linux/listbib +name listbib.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of listbib +containersize 336 +containerchecksum 9eba071267d485cb612a22347e77f4487d6c8eed6231829cbebbb4de16999d3f9715f411ffa91f02ca47b401c1eb9b28367412674a8b7685130ac3adb7915b88 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/listbib + +name listbib.i386-solaris +category Package +revision 26126 +shortdesc i386-solaris files of listbib +containersize 336 +containerchecksum d8478c54609efed39b74e8496fd22906844e0b5d926638a4a273e00ff540c9ce1d33519d7167130e46eb3ae31972188457a7d7703da5cc48af5eda9a8e77ba23 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/listbib + +name listbib.win32 +category Package +revision 26126 +shortdesc win32 files of listbib +containersize 684 +containerchecksum 3560ce0556b5a8f066a8975373e68cbc9ea1d611002e32f23994acacc27e60c6a3481af035bb2c01625150417f7dc7e826360ed0fd5311613ffe7d50bdb1f32f +binfiles arch=win32 size=1 + bin/win32/listbib.exe + +name listbib.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of listbib +containersize 340 +containerchecksum 07e253f5d3eda53b9d7d895dba016121cfbb59fe3280361c642256afb70b06b1f2d7597c7c51ac9280675dc9e848a196f203f0ea8325fb4aa1adeee272c6f432 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/listbib + +name listbib.x86_64-darwin +category Package +revision 26126 +shortdesc x86_64-darwin files of listbib +containersize 340 +containerchecksum 4338beeda96eee2d43b4297f93e623d2c4b3c254bd52c0ed6401b7fe4de0687359fd5f1552be297d57c7c2f2768ba93352be06e0ed6151154d657c9667376b2f +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/listbib + +name listbib.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of listbib +containersize 348 +containerchecksum d4e755bb806dde5a2ed5f700f9b150525a39247d4a27cd0617eac0893dd211a26ba5fcefbe33cfee548644a8c9bfbcd71dcb938587cbb2d01c4c8741e0aa2176 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/listbib + +name listbib.x86_64-linux +category Package +revision 26126 +shortdesc x86_64-linux files of listbib +containersize 336 +containerchecksum 8f10bcb3425cc8f12bef08f7d13d1ddb9ce2fae6275e14cfda204affbb25347246630a355413c03dedc3cd39f2e8dbf1ab5051f70b9b027d92c41a457a0ceed0 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/listbib + +name listbib.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of listbib +containersize 340 +containerchecksum 0a52a51bf78fc77629f0d02fd846d72e0a6c3004bfd20b23160976322c649df1fc61270d908089762d6d1de272dfb3af829bbb229908535f74d19ac61886c1cb +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/listbib + +name listbib.x86_64-solaris +category Package +revision 26126 +shortdesc x86_64-solaris files of listbib +containersize 340 +containerchecksum cf66d179f32992ed024d150bde0d745563f31d833fe783edc1f61a7a205952463621ce28ce5d4a7fd665e73b6f6fdbcb294360e8e0094ef6dc81d852041adcff +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/listbib + +name listing +category Package +revision 17373 +shortdesc Produce formatted program listings +relocated 1 +longdesc The listing environment is provided and is similar to figure +longdesc and table, although it is not a floating environment. Includes +longdesc support for \caption, \label, \ref, and introduces +longdesc \listoflistings, \listingname, \listlistingname. It produces a +longdesc .lol file. It does not change \@makecaption (unless the option +longdesc bigcaptions is used), so packages that change the layout of +longdesc \caption still work. +containersize 1968 +containerchecksum 154a9eb9da19d4a1d9f6ed421bc13f1f83279cd456b95ab8b7d84f9c48d6aae5548b7357e46041580d4b457758aa090e6352aca9d9e20f1739dc589d4fa24bdd +doccontainersize 259240 +doccontainerchecksum 11ef594d55ee823dab2a88ad5882e1ea89d7741f1038d3782ac43fa43cce948c1ed72096ddd11d1efbcc3b43ac9bc4dd23713f725aa71807ea174548d9a5c968 +docfiles size=66 + RELOC/doc/latex/listing/listing.pdf details="Package documentation" + RELOC/doc/latex/listing/listing.tex +runfiles size=1 + RELOC/tex/latex/listing/listing.sty +catalogue-also listings +catalogue-ctan /macros/latex/contrib/listing +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl +catalogue-topics listing +catalogue-version 1.2 + +name listings +category Package +revision 50175 +shortdesc Typeset source code listings using LaTeX +relocated 1 +longdesc The package enables the user to typeset programs (programming +longdesc code) within LaTeX; the source code is read directly by TeX--no +longdesc front-end processor is needed. Keywords, comments and strings +longdesc can be typeset using different styles (default is bold for +longdesc keywords, italic for comments and no special style for +longdesc strings). Support for hyperref is provided. To use, +longdesc \usepackage{listings}, identify the language of the object to +longdesc typeset, using a construct like: \lstset{language=Python}, then +longdesc use environment lstlisting for inline code. External files may +longdesc be formatted using \lstinputlisting to process a given file in +longdesc the form appropriate for the current language. Short (in-line) +longdesc listings are also available, using either \lstinline|...| or +longdesc |...| (after defining the | token with the \lstMakeShortInline +longdesc command). +containersize 146048 +containerchecksum cc8807b431562d998cdfb4879d51a1e236ab6813a9b696e3ebf5641f94c46dcba625beea227dd49dcbfee106f298252b1df133665a84c555f50b1fa1492033c6 +doccontainersize 2173544 +doccontainerchecksum 8acd3906a0e3a26a2a300e7c69fa8a368fa9cc58b0041d788c4e182913fd960bfc43b3a7a3a80c7b0630d708f7684613d0a84ce5956de0513f0c665d2999472d +docfiles size=602 + RELOC/doc/latex/listings/README details="Package Readme" + RELOC/doc/latex/listings/listings-devel.pdf + RELOC/doc/latex/listings/listings.pdf details="Package documentation" + RELOC/doc/latex/listings/lstdrvrs.pdf details="Language drivers details" +srccontainersize 265848 +srccontainerchecksum eb3007f72a1c028449d3941716228a42ff144b53e183d855b516da47730e07286179849ce7842de570c6bf7d318b2a955a4904d431a3070f9462e823f0019beb +srcfiles size=273 + RELOC/source/latex/listings/Makefile + RELOC/source/latex/listings/listings.dtx + RELOC/source/latex/listings/listings.ins + RELOC/source/latex/listings/lstdrvrs.dtx + RELOC/source/latex/listings/lstdrvrs.ins +runfiles size=145 + RELOC/tex/latex/listings/listings-acm.prf + RELOC/tex/latex/listings/listings-bash.prf + RELOC/tex/latex/listings/listings-fortran.prf + RELOC/tex/latex/listings/listings-hansl.prf + RELOC/tex/latex/listings/listings-lua.prf + RELOC/tex/latex/listings/listings-python.prf + RELOC/tex/latex/listings/listings.cfg + RELOC/tex/latex/listings/listings.sty + RELOC/tex/latex/listings/lstdoc.sty + RELOC/tex/latex/listings/lstlang1.sty + RELOC/tex/latex/listings/lstlang2.sty + RELOC/tex/latex/listings/lstlang3.sty + RELOC/tex/latex/listings/lstmisc.sty +catalogue-also listing +catalogue-ctan /macros/latex/contrib/listings +catalogue-date 2019-02-27 23:09:36 +0100 +catalogue-license lppl1.3c +catalogue-topics listing synt-hlt +catalogue-version 1.8b + name listings-ext category Package revision 29349 -shortdesc Automated input of source. +shortdesc Automated input of source longdesc The package provides a means of marking a source, so that longdesc samples of it may be included in a document (by means of the longdesc listings package) in a stable fashion, regardless of any change @@ -98453,11 +161893,12 @@ longdesc blocks of source. These tags are processed by a shell script to longdesc make a steering file that is used by the package when LaTeX is longdesc being run.y depend listings-ext.ARCH -runfiles size=5 - texmf-dist/scripts/listings-ext/listings-ext.sh - texmf-dist/tex/latex/listings-ext/listings-ext.sty +containersize 4856 +containerchecksum c68752d0e7a1ffb7d08f153bf337849164d0287f20ff8f092635ad7083b2e5a6c487bcd9dff913dd029f4ea92750768d23583eed53a0c2d3bf012e4db059708c +doccontainersize 103704 +doccontainerchecksum 82491f81dfc89950d085f7cc41dabdf7b895b23c8a69f80c1b4f4c420fe8f036ac181b56e3ab60496910d0f1165ce19b2f94c5e268dc1d59e352ab6747e3bee5 docfiles size=48 - texmf-dist/doc/latex/listings-ext/README + texmf-dist/doc/latex/listings-ext/README details="Readme" texmf-dist/doc/latex/listings-ext/THIS_IS_VERSION_v67 texmf-dist/doc/latex/listings-ext/getversion.tex texmf-dist/doc/latex/listings-ext/hyperref.cfg @@ -98465,7 +161906,7 @@ docfiles size=48 texmf-dist/doc/latex/listings-ext/listings-ext.el texmf-dist/doc/latex/listings-ext/listings-ext.makemake texmf-dist/doc/latex/listings-ext/listings-ext.mk - texmf-dist/doc/latex/listings-ext/listings-ext.pdf + texmf-dist/doc/latex/listings-ext/listings-ext.pdf details="Package documentation" texmf-dist/doc/latex/listings-ext/listings-ext_exmpl_a.java texmf-dist/doc/latex/listings-ext/listings-ext_exmpl_b.java texmf-dist/doc/latex/listings-ext/listings-ext_exmpl_c.java @@ -98474,91 +161915,154 @@ docfiles size=48 texmf-dist/doc/latex/listings-ext/listings-ext_test_a.tex texmf-dist/doc/latex/listings-ext/listings-ext_test_d.tex texmf-dist/doc/latex/listings-ext/listings.cfg +srccontainersize 22652 +srccontainerchecksum fab34f07d6384a5474f3ac30e2e00a75398418668134ac1041cabded6209c9521244e1637e4037e7346bc70b3247ebcd90526d5e34fc3c4e388fa978382bf228 srcfiles size=21 texmf-dist/source/latex/listings-ext/listings-ext.dtx texmf-dist/source/latex/listings-ext/listings-ext.ins +runfiles size=5 + texmf-dist/scripts/listings-ext/listings-ext.sh + texmf-dist/tex/latex/listings-ext/listings-ext.sty catalogue-ctan /macros/latex/contrib/listings-ext -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics listing catalogue-version 67 +name listings-ext.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of listings-ext +containersize 348 +containerchecksum 9ad6b78ddb87f51cad45c81c9b56932317377ea5505c375cadbe98eb9daffb307af92ca12bc9fc4c2cc0ad95672352be770fc8e23960a82d3d56fcc4c30bcb66 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/listings-ext.sh + +name listings-ext.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of listings-ext +containersize 348 +containerchecksum b80dfc71414939ad42dda24f42673015c947b1a8cba739e51a04705a5dfa87a55b3c3add4a426cd3d5c268c1692f4658741cffc71b2023b6a82b0128f3fba3b0 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/listings-ext.sh + +name listings-ext.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of listings-ext +containersize 344 +containerchecksum ce53c3548c196b33bcdf4f901ee8571c3d7c9a01f8af6c6d7617050a3d73ed15f6bf43e2e86d92d8ffb4386b2dafb252e8d230090dabba93f80c42553a7b48f9 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/listings-ext.sh + +name listings-ext.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of listings-ext +containersize 344 +containerchecksum ccf346eccda0dbaaf893accd61f362fdfcafbe9dfbb34535cd8f7a2c72456b8f03a89233a4b372fe1c900eeefd68f0251461444d38f89ced7e1bb480906bc511 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/listings-ext.sh + +name listings-ext.i386-cygwin +category Package +revision 15093 +shortdesc i386-cygwin files of listings-ext +containersize 344 +containerchecksum ef158c9ae28ee5c32268bb332b6d14907fa3aa34e9f458b667720713f0a76e374ef1ac72d46189649a1f8129b0ad05017b8a8b683d85290f6bcee12c3bdd5bed +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/listings-ext.sh + +name listings-ext.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of listings-ext +containersize 344 +containerchecksum f61b8b153ad174c88cd856357dae2195980f32f694b02fdc0bf8d739d81df25c72e692990625931f9f6e9918e2c479032142faf2ae3bff1cb5ed39e72c010f25 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/listings-ext.sh + name listings-ext.i386-linux category Package revision 15093 shortdesc i386-linux files of listings-ext +containersize 344 +containerchecksum 382fb61532b3c86a8fe94d4d3487c9f4bb53f3989f9b3a068761b0927e763dd555c8cb48cfd60ea6f6d91309c46a8ab3fedc849f9e482c86bcba23a5ffb89f3c binfiles arch=i386-linux size=1 bin/i386-linux/listings-ext.sh -name listings +name listings-ext.i386-netbsd category Package -revision 37534 -shortdesc Typeset source code listings using LaTeX. -relocated 1 -longdesc The package enables the user to typeset programs (programming -longdesc code) within LaTeX; the source code is read directly by TeX--no -longdesc front-end processor is needed. Keywords, comments and strings -longdesc can be typeset using different styles (default is bold for -longdesc keywords, italic for comments and no special style for -longdesc strings). Support for hyperref is provided. To use, -longdesc \usepackage{listings}, identify the language of the object to -longdesc typeset, using a construct like: \lstset{language=Python}, then -longdesc use environment lstlisting for inline code. External files may -longdesc be formatted using \lstinputlisting to process a given file in -longdesc the form appropriate for the current language. Short (in-line) -longdesc listings are also available, using either \lstinline|...| or -longdesc |...| (after defining the | token with the \lstMakeShortInline -longdesc command). -runfiles size=117 - RELOC/tex/latex/listings/listings-acm.prf - RELOC/tex/latex/listings/listings-bash.prf - RELOC/tex/latex/listings/listings-fortran.prf - RELOC/tex/latex/listings/listings-lua.prf - RELOC/tex/latex/listings/listings-python.prf - RELOC/tex/latex/listings/listings.cfg - RELOC/tex/latex/listings/listings.sty - RELOC/tex/latex/listings/lstdoc.sty - RELOC/tex/latex/listings/lstlang1.sty - RELOC/tex/latex/listings/lstlang2.sty - RELOC/tex/latex/listings/lstlang3.sty - RELOC/tex/latex/listings/lstmisc.sty -docfiles size=305 - RELOC/doc/latex/listings/Makefile - RELOC/doc/latex/listings/README - RELOC/doc/latex/listings/listings.pdf - RELOC/doc/latex/listings/lstdrvrs.pdf -srcfiles size=239 - RELOC/source/latex/listings/listings.dtx - RELOC/source/latex/listings/listings.ins - RELOC/source/latex/listings/lstdrvrs.dtx - RELOC/source/latex/listings/lstdrvrs.ins -catalogue-also listing -catalogue-ctan /macros/latex/contrib/listings -catalogue-date 2015-06-05 00:14:30 +0200 -catalogue-license lppl1.3 -catalogue-topics listing synt-hlt -catalogue-version 1.6 +revision 30191 +shortdesc i386-netbsd files of listings-ext +containersize 344 +containerchecksum b989452f6a89536bd223f0d343b3a8cbd3561635ec1628fa1c75a6d0d66cb6b489a9296f2173b6047353470c9ba334aab8c1ce351ea542f4dce049b6eb339b64 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/listings-ext.sh -name listing +name listings-ext.i386-solaris category Package -revision 17373 -shortdesc Produce formatted program listings. -relocated 1 -longdesc The listing environment is provided and is similar to figure -longdesc and table, although it is not a floating environment. Includes -longdesc support for \caption, \label, \ref, and introduces -longdesc \listoflistings, \listingname, \listlistingname. It produces a -longdesc .lol file. It does not change \@makecaption (unless the option -longdesc bigcaptions is used), so packages that change the layout of -longdesc \caption still work. -runfiles size=1 - RELOC/tex/latex/listing/listing.sty -docfiles size=66 - RELOC/doc/latex/listing/listing.pdf - RELOC/doc/latex/listing/listing.tex -catalogue-ctan /macros/latex/contrib/listing -catalogue-date 2012-04-21 20:16:35 +0200 -catalogue-license lppl -catalogue-version 1.2 +revision 15093 +shortdesc i386-solaris files of listings-ext +containersize 344 +containerchecksum d5dcb1bc9bca0931832d6d7ab6c6452499dfe53ec7d31cf4a883221f113ac157d46672ea395e7720b5e83c8ea4223ed1397f53576ffaaa0420f34acc366aab0d +binfiles arch=i386-solaris size=1 + bin/i386-solaris/listings-ext.sh + +name listings-ext.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of listings-ext +containersize 344 +containerchecksum 55385dec2cd06b98e0f7bf336bf4a1e7d7852e83b559e4e50bf92d33fca5be354254e686a82655ccddf5cd62e1e752b3ecd3b32d9cc5a624d60be5332b7668e7 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/listings-ext.sh + +name listings-ext.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of listings-ext +containersize 348 +containerchecksum 03a682771e5d575f43bac6fcffba92610b5a131cb425693c9829f959d1db19d62d562dfd5964b8019c9995660489b6d8c5c3fe3d048939da7fe4009c8af1afd4 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/listings-ext.sh + +name listings-ext.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of listings-ext +containersize 352 +containerchecksum acb898dce5b2dabba230f3035259bf9495e05fe979534f4073083c2f7004d83fc206749498364db8f6445709218fabbbb9fb76adc01f65e26253e837192a8a0f +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/listings-ext.sh + +name listings-ext.x86_64-linux +category Package +revision 15093 +shortdesc x86_64-linux files of listings-ext +containersize 344 +containerchecksum 0bedc989d08718d49eac6f7557ec3b3e6737d1cc40f458fdf07cd207ab100800bb1370da3d300edc6653ff11a7f19b1fd95747eaeda09e1043377c7a161cf00c +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/listings-ext.sh + +name listings-ext.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of listings-ext +containersize 348 +containerchecksum 4f0908c6b6734ebc6eab54155d22d6be930bdf8cc803f3c1bfc6b1b4b96baf9cc33b7ab074c758f1e3d8d0882fbe0c1c3b8f2060c0dfd80ef7f22bb077ad2ebd +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/listings-ext.sh + +name listings-ext.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of listings-ext +containersize 344 +containerchecksum 955c0a92f70eb43883ee0adec5f8c3f1990f8552f89a9dede9ee9ca58afaa737aa6ef81133a19d07db326bf6677c176788093270a10d0986be4040d3823a8a1a +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/listings-ext.sh name listlbls category Package @@ -98572,43 +162076,95 @@ longdesc to have additional LaTeX runs to get the references right. ) longdesc This package is based on an answer David Carlisle gave on longdesc TeX/Stackexchange in the thread 'List of all labels with longdesc hyperlinks'. -runfiles size=1 - RELOC/tex/latex/listlbls/listlbls.sty +containersize 1908 +containerchecksum b5c2e7e168b07aa288c911dbf5c1fa8b56d2a73d38babf0140b77bbf783334f2da42b2bfa8d951e166f7184345cea26a908d12ff4a07ef89b85a7d7772d645e1 +doccontainersize 74316 +doccontainerchecksum 225837c7a5c80b5a01739c20011f4b4c76b0cdeaf26e3f8f44fcafee3e439a104c6eb1a47660a788b96a3cd63f3e19d1384ecada059380773850c7a4109d3269 docfiles size=23 RELOC/doc/latex/listlbls/Makefile - RELOC/doc/latex/listlbls/README + RELOC/doc/latex/listlbls/README details="Readme" RELOC/doc/latex/listlbls/README.md RELOC/doc/latex/listlbls/README.txt RELOC/doc/latex/listlbls/listlbls.hd - RELOC/doc/latex/listlbls/listlbls.pdf + RELOC/doc/latex/listlbls/listlbls.pdf details="Package documentation" +srccontainersize 5048 +srccontainerchecksum 3b35fa88f640d4f2a13f0cc888a7ab7bb09052ab080454d398f0edc27caa11728152e24bf5184d54aeb1bc86e599aa8a4bbfff6a6efd790e11277f99da2f27e6 srcfiles size=5 RELOC/source/latex/listlbls/listlbls.dtx RELOC/source/latex/listlbls/listlbls.ins +runfiles size=1 + RELOC/tex/latex/listlbls/listlbls.sty catalogue-ctan /macros/latex/contrib/listlbls -catalogue-date 2014-08-04 17:20:17 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics label-ref debug-supp catalogue-version 1.03 name listliketab category Package revision 15878 -shortdesc Typeset lists as tables. +shortdesc Typeset lists as tables relocated 1 longdesc The listliketab package helps the user make list-like tabulars, longdesc i.e., a tabular that is indistinguishable from an itemize or longdesc enumerate environment. The advantage of using a tabular is that longdesc the user can add additional columns to each entry in the list. -runfiles size=1 - RELOC/tex/latex/listliketab/listliketab.sty +containersize 1416 +containerchecksum 0aead2b70e314639aeb98c199d051fb0701570df0263f452bb2e65408678d437c7eb071c41d8674971e42a0961da30754696a58eaaa41dc32d33ded58a833153 +doccontainersize 120912 +doccontainerchecksum 70ceddb9c59981319ec33fba05c663ecaf549b5dab56f29fa07f9c314d97d999c762ee1efff0d20b5e35b39e89b031458fdde4c5c708e0a1c2dbfdf17d710c2e docfiles size=36 - RELOC/doc/latex/listliketab/README - RELOC/doc/latex/listliketab/listliketab.pdf + RELOC/doc/latex/listliketab/README details="Package Readme" + RELOC/doc/latex/listliketab/listliketab.pdf details="Package documentation" +srccontainersize 6696 +srccontainerchecksum 68b75e9dcce30acb59d928f4ff95732cd7e37061d31625f8c1835ef6b8da85ef39f4d8ee86b50e299e71cace2ca5307c25641042f325a93a93bd04bf804ec5b4 srcfiles size=6 RELOC/source/latex/listliketab/listliketab.dtx RELOC/source/latex/listliketab/listliketab.ins +runfiles size=1 + RELOC/tex/latex/listliketab/listliketab.sty catalogue-ctan /macros/latex/contrib/listliketab -catalogue-date 2014-08-04 17:04:41 +0200 -catalogue-license lppl +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics list table + +name listofitems +category Package +revision 51159 +shortdesc Grab items in lists using user-specified sep char +relocated 1 +longdesc This simple package is designed to read a list of items whose +longdesc parsing character may be selected by the user. Once the list is +longdesc read, its items are stored in a structure that behaves as a +longdesc dimensioned array. As such, it becomes very easy to access an +longdesc item in the list by its number. For example, if the list is +longdesc stored in the macro \foo, the item #3 is designated by \foo[3]. +longdesc A component may, in turn, be a list with a parsing delimiter +longdesc different from the parent list, paving the way for nesting and +longdesc employing a syntax reminiscent of an array of several +longdesc dimensions of the type \foo[3,2] to access the item #2 of the +longdesc list contained within the item #3 of the top-tier list. +containersize 8272 +containerchecksum d493acf17a8cde700f917a62cbdc980357590dcc194c6fd165335035ed65e727fe9162e8734302763d7784427de12dd3b9d0ac887f447f0e6c18ac4737ccfe2a +doccontainersize 801724 +doccontainerchecksum 7bc6c17ec3b95ba8aadf39a528c8ec04d0edb033090803b86109a3fb0fceef218d1ee702017f207c03670364c7bb53644c32a1cb12ad16a007c1d8c876018ddf +docfiles size=224 + RELOC/doc/generic/listofitems/README details="Readme" + RELOC/doc/generic/listofitems/listofitems-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/listofitems/listofitems-en.tex + RELOC/doc/generic/listofitems/listofitems-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/generic/listofitems/listofitems-fr.tex +runfiles size=15 + RELOC/tex/generic/listofitems/listofitems.sty + RELOC/tex/generic/listofitems/listofitems.tex + RELOC/tex/generic/listofitems/listofitemsold.tex +catalogue-contact-bugs https://framagit.org/unbonpetit/listofitems/issues +catalogue-contact-repository https://framagit.org/unbonpetit/listofitems/tree/master +catalogue-ctan /macros/generic/listofitems +catalogue-date 2019-05-17 22:06:13 +0200 +catalogue-license lppl1.3c +catalogue-topics text-manip list +catalogue-version 1.62 name listofsymbols category Package @@ -98625,31 +162181,49 @@ longdesc chance that symbols will be changed at some stage. The package longdesc is more or less a combination of what the packages nomencl and longdesc formula do. The concept of creating the list of symbols, longdesc though, is different from the way nomencl.sty does it. -runfiles size=2 - RELOC/tex/latex/listofsymbols/listofsymbols.sty +containersize 2552 +containerchecksum dd32fbcd59fa9ec599b0a06672d2e810b5b8172a96a4170cad03a93be3da21a02a036967d0e7e3a617bad6535aca2b1a34a114c383b5ed1aca22bc45239266d2 +doccontainersize 50936 +doccontainerchecksum ff8bb87ee326f0b0df175eb41d634d67cf2f1ecb76f1f8dacf2e19d061e54c4f5cf8e01c7e8c41087ca6b69a04f5a3184ee8ee39f00758d3df2f24a4b2e372d3 docfiles size=16 - RELOC/doc/latex/listofsymbols/README - RELOC/doc/latex/listofsymbols/listofsymbols.pdf + RELOC/doc/latex/listofsymbols/README details="Readme" + RELOC/doc/latex/listofsymbols/listofsymbols.pdf details="Package documentation" +srccontainersize 6188 +srccontainerchecksum b232671411ada9bee8e9408ac9f7bb94e57010a39d916beb78d3f04dd1826203b37f8b8d4f040cce5bf0cc6b7ca97eab97d6f764ffe370b09c361a44af530837 srcfiles size=7 RELOC/source/latex/listofsymbols/listofsymbols.dtx RELOC/source/latex/listofsymbols/listofsymbols.ins +runfiles size=2 + RELOC/tex/latex/listofsymbols/listofsymbols.sty catalogue-ctan /macros/latex/contrib/listofsymbols -catalogue-date 2012-07-07 16:18:52 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics toc-etc catalogue-version 0.2 name lithuanian category Package -revision 22722 -shortdesc Lithuanian language support. +revision 46039 +shortdesc Lithuanian language support relocated 1 -longdesc This language support package provides: Lithuanian language -longdesc hyphenation patterns; Lithuanian support for Babel; Lithuanian -longdesc mapping and metrics for using the URW base-35 Type 1 fonts; -longdesc examples for making Lithuanian fonts with fontinst; and extra -longdesc tools for intputenc and fontinst. +longdesc This language support package provides: Lithuanian adds for +longdesc Babel: lithuanian.ldf lithuanian.sty Lithuanian TeX fonts for +longdesc URW family map, enc, fd, tfm extra code page definitions for +longdesc inputenc: cp772, cp774, cp775, cpKBL, cpRIM execute addMap l7x-urwvn.map -runfiles size=99 +containersize 67136 +containerchecksum 228fa0f588bb0293778a71a910401575e20aaa8a184d54d51dcf1bebc8bb6b0c0ea81cb1d3e0f2d36b6a0abf830dbd328caa6053fca7f40a83bb292f76b83918 +doccontainersize 55944 +doccontainerchecksum e4b01bf2174854d95f348caeb5e5b88ec436420178eb06a78cb9157bad23bcd34584e9bde451e3963f4de59e66162820f9487ca4d166b2bd898b2cef17e63ee4 +docfiles size=25 + RELOC/doc/latex/lithuanian/COPYING + RELOC/doc/latex/lithuanian/ChangeLog + RELOC/doc/latex/lithuanian/Copyright + RELOC/doc/latex/lithuanian/README details="Readme" + RELOC/doc/latex/lithuanian/latin7x.pdf + RELOC/doc/latex/lithuanian/testlt-urw.tex + RELOC/doc/latex/lithuanian/testlt.tex +runfiles size=98 RELOC/fonts/enc/dvips/lithuanian/latin7x.enc RELOC/fonts/map/dvips/lithuanian/l7x-urwvn.map RELOC/fonts/tfm/public/lithuanian/l7x-uagd.tfm @@ -98704,118 +162278,99 @@ runfiles size=99 RELOC/tex/latex/lithuanian/latin7.def RELOC/tex/latex/lithuanian/lithuanian.ldf RELOC/tex/latex/lithuanian/lithuanian.sty -docfiles size=43 - RELOC/doc/latex/lithuanian/COPYING - RELOC/doc/latex/lithuanian/ChangeLog - RELOC/doc/latex/lithuanian/Copyright - RELOC/doc/latex/lithuanian/README.lithuanian - RELOC/doc/latex/lithuanian/latin7lt.tex - RELOC/doc/latex/lithuanian/latin7x.etx - RELOC/doc/latex/lithuanian/latin7x.mtx - RELOC/doc/latex/lithuanian/latin7x.pdf - RELOC/doc/latex/lithuanian/makeLT.html - RELOC/doc/latex/lithuanian/makelt.tex - RELOC/doc/latex/lithuanian/makeltmap.tex - RELOC/doc/latex/lithuanian/testlt-urw.tex - RELOC/doc/latex/lithuanian/testlt.tex catalogue-ctan /language/lithuanian -catalogue-date 2014-10-19 22:42:06 +0200 -catalogue-license lppl +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl1.3c +catalogue-topics lithuanian font-proc font-supp name liturg category Package revision 15878 -shortdesc Support for typesetting Catholic liturgical texts. +shortdesc Support for typesetting Catholic liturgical texts relocated 1 longdesc The packages offers simple macros for typesetting Catholic longdesc liturgical texts, particularly Missal and Breviary texts. The longdesc package assumes availability of Latin typesetting packages. -runfiles size=5 - RELOC/tex/latex/liturg/liturg.sty +containersize 6508 +containerchecksum e97da4e9046fbd60ac2b22bc3753db7a75b5b6aeeb6c37293c5dd1e4e8fffd18b32818b9038b816a405033ff74d9c19ec2443b0169721656af687f1c5d62cf9d +doccontainersize 115684 +doccontainerchecksum 6b342e85917d5a70dc32461de01ae3c6ac66ca247b4ba3d812b7645f1cd1d961c914e584cabf743bb03ea74cac144ec05b03cc09d0c23cf7bbf4b8ce7d01937c docfiles size=34 - RELOC/doc/latex/liturg/README - RELOC/doc/latex/liturg/liturg.pdf + RELOC/doc/latex/liturg/README details="Readme" + RELOC/doc/latex/liturg/liturg.pdf details="Package documentation" RELOC/doc/latex/liturg/test.tex +srccontainersize 924 +srccontainerchecksum 07bfbe684ae7584cac1dceb3d9012607ee24639a0e4e858d2f570f4aa3c21280bb6116123910a111c729dab794e568c05f8778d3b71612ebc288b0c268eab920 srcfiles size=1 RELOC/source/latex/liturg/liturg.ins +runfiles size=5 + RELOC/tex/latex/liturg/liturg.sty catalogue-ctan /macros/latex/contrib/liturg -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics theology catalogue-version 1.0 name lkproof category Package revision 20021 -shortdesc LK Proof figure macros. +shortdesc LK Proof figure macros relocated 1 longdesc The package defines a pair of commands \infer and \deduce, that longdesc are used in constructing LK proof diagrams. -runfiles size=2 - RELOC/tex/latex/lkproof/proof.sty +containersize 2732 +containerchecksum 58c211cf1ed20b36e69ceffc8568fc1cbdb51cb812af79d16a64cbe8a8e7e672a2d49e672501b2cb23ef72c4a04c59017e17e538061159c8b9e797624f8334ca +doccontainersize 258344 +doccontainerchecksum 01c3f1b50147c73294dabf83d79811862d4742f5a76f69ff6f6a1d5a2b0a8462e3728ba6e4d6fea57d3703c638f6cf04568948d45d4ec8d1dfe59571ff2933b6 docfiles size=65 - RELOC/doc/latex/lkproof/lkproof-doc.pdf + RELOC/doc/latex/lkproof/lkproof-doc.pdf details="Summary documentation" RELOC/doc/latex/lkproof/lkproof-doc.tex RELOC/doc/latex/lkproof/proofeg.tex +runfiles size=2 + RELOC/tex/latex/lkproof/proof.sty +catalogue-also proofs +catalogue-contact-home http://research.nii.ac.jp/~tatsuta/index-e.html catalogue-ctan /macros/latex/contrib/lkproof -catalogue-date 2014-05-12 06:57:13 +0200 +catalogue-date 2018-02-03 19:33:36 +0100 catalogue-license gpl +catalogue-topics logic catalogue-version 3.1 -name lmake -category Package -revision 25552 -shortdesc Process lists to do repetitive actions. -relocated 1 -longdesc The package provides commands to simplify processing of -longdesc sequential list-like structures, such as making a series of -longdesc 'similar' commands from a list of names. +name llncsconf +category Package +revision 46707 +shortdesc LaTeX package extending Springer's llncs class +relocated 1 +longdesc The package extends Springer's llncs class for adding +longdesc additional notes describing the status of the paper (submitted, +longdesc accepted) as well as for creating author-archived versions that +longdesc include the references to the official version hosted by +longdesc Springer (as requested by the copyright transfer agreement for +longdesc Springer's LNCS series). +containersize 2112 +containerchecksum 9df2b2ab5fa1434263f4df8a4f5c5329d38bff47a3f9178b2b220b50d34e410ce2904df5177076131ecff1a5a20cdb9cfd6cf84d986210df1ede7ee61f73b255 +doccontainersize 126076 +doccontainerchecksum a0a9ee4372d9afc48fcaa16959a9c54a3d10216d6196be963f9b35c66f13c970a4cb4a01996cb2397a10a6ea36c445a75541f7bdb9608c759e611faffce56574 +docfiles size=35 + RELOC/doc/latex/llncsconf/CHANGELOG.md + RELOC/doc/latex/llncsconf/LICENSE + RELOC/doc/latex/llncsconf/README.md details="Readme" + RELOC/doc/latex/llncsconf/example.pdf details="Package documentation" + RELOC/doc/latex/llncsconf/example.tex runfiles size=2 - RELOC/tex/latex/lmake/lmake.sty -docfiles size=72 - RELOC/doc/latex/lmake/README - RELOC/doc/latex/lmake/lmake.pdf -srcfiles size=6 - RELOC/source/latex/lmake/lmake.dtx - RELOC/source/latex/lmake/lmake.ins -catalogue-ctan /macros/latex/contrib/lmake -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.2 -catalogue-version 1.0 - -name lm-math -category Package -revision 36915 -shortdesc OpenType maths fonts for Latin Modern. -relocated 1 -longdesc Latin Modern Math is a maths companion for the Latin Modern -longdesc family of fonts, in OpenType format. For use with LuaLaTeX or -longdesc XeLaTeX, support is available from the unicode-math package. -runfiles size=180 - RELOC/fonts/opentype/public/lm-math/latinmodern-math.otf -docfiles size=37 - RELOC/doc/fonts/lm-math/GUST-FONT-LICENSE.txt - RELOC/doc/fonts/lm-math/INSTALL.txt - RELOC/doc/fonts/lm-math/MANIFEST-Latin-Modern-Math.txt - RELOC/doc/fonts/lm-math/README-Latin-Modern-Math.txt - RELOC/doc/fonts/lm-math/math-test-context.tex - RELOC/doc/fonts/lm-math/math-test.tex - RELOC/doc/fonts/lm-math/test-context-latinmodern_math.pdf - RELOC/doc/fonts/lm-math/test-context-latinmodern_math.tex - RELOC/doc/fonts/lm-math/test-lualatex-latinmodern_math.pdf - RELOC/doc/fonts/lm-math/test-lualatex-latinmodern_math.tex - RELOC/doc/fonts/lm-math/test-word-latinmodern_math.docx - RELOC/doc/fonts/lm-math/test-word-latinmodern_math.pdf - RELOC/doc/fonts/lm-math/test-xelatex-latinmodern_math.pdf - RELOC/doc/fonts/lm-math/test-xelatex-latinmodern_math.tex -catalogue-ctan /fonts/lm-math -catalogue-date 2015-04-18 13:48:19 +0200 -catalogue-license gfl -catalogue-version 1.959 + RELOC/tex/latex/llncsconf/llncsconf.sty +catalogue-contact-bugs https://github.com/adbrucker/llncsconf/issues +catalogue-contact-repository https://github.com/adbrucker/llncsconf +catalogue-ctan /macros/latex/contrib/llncsconf +catalogue-date 2018-04-25 15:30:25 +0200 +catalogue-license lppl1 +catalogue-topics journalpub archival +catalogue-version 1.0.0 name lm category Package -revision 28119 -shortdesc Latin modern fonts in outline formats. +revision 48145 +shortdesc Latin modern fonts in outline formats relocated 1 longdesc The Latin Modern family of fonts consists of 72 text fonts and longdesc 20 mathematics fonts, and is based on the Computer Modern fonts @@ -98824,11 +162379,35 @@ longdesc The lm font set contains a lot of additional characters, mainly longdesc accented ones, but not exclusively. There is one set of fonts, longdesc available both in Adobe Type 1 format (*.pfb) and in OpenType longdesc format (*.otf). There are five sets of TeX Font Metric files, -longdesc corresponding to: Cork encoding (cork-*.tfm); QX encoding (qx- -longdesc *.tfm); TeX'n'ANSI aka LY1 encoding (texnansi-*.tfm); T5 +longdesc corresponding to: Cork encoding (cork-*.tfm); QX encoding +longdesc (qx-*.tfm); TeX'n'ANSI aka LY1 encoding (texnansi-*.tfm); T5 longdesc (Vietnamese) encoding (t5-*.tfm); and Text Companion for EC longdesc fonts aka TS1 (ts1-*.tfm). execute addMap lm.map +containersize 11944808 +containerchecksum f94af6c169ee05d3a2dceb00794feffb7808a4bedc05da7655ea74fbbf675047661f49f4f2542373e5fef60fc0f91ea9931b25bb10c1449f593b84ebf65cd154 +doccontainersize 1630284 +doccontainerchecksum baa33984a243c1000fbccb73f853dfab7c935e2da5f68294cff38db950d85f09ae9ab63f01178028c5f77d00c03b919487e73eca78dbcca60b9ade73a0773b18 +docfiles size=657 + RELOC/doc/fonts/lm/GUST-FONT-LICENSE.TXT + RELOC/doc/fonts/lm/MANIFEST-Latin-Modern.TXT + RELOC/doc/fonts/lm/README-Latin-Modern.TXT + RELOC/doc/fonts/lm/lm-hist.txt + RELOC/doc/fonts/lm/lm-info.pdf + RELOC/doc/fonts/lm/tstlmot1.pdf + RELOC/doc/fonts/lm/tstlmot1.tex + RELOC/doc/fonts/lm/tstlmot4.pdf + RELOC/doc/fonts/lm/tstlmot4.tex + RELOC/doc/fonts/lm/tstlmqx.pdf + RELOC/doc/fonts/lm/tstlmqx.tex + RELOC/doc/fonts/lm/tstlmt1.pdf + RELOC/doc/fonts/lm/tstlmt1.tex + RELOC/doc/fonts/lm/tstlmts1.pdf + RELOC/doc/fonts/lm/tstlmts1.tex +srccontainersize 4811364 +srccontainerchecksum 954d7cf62a32a4cff318c9e51f0f9d5e4b2de358e7f8830b1dd6e4515806b9e446d6f1f0b074bc8a7a8cb20ab5f8dbe715bb0ca8b77c4c8265d868d821335c72 +srcfiles size=1204 + RELOC/source/latex/lm/lm2004mt1.zip runfiles size=10645 RELOC/fonts/afm/public/lm/lmb10.afm RELOC/fonts/afm/public/lm/lmbo10.afm @@ -99908,39 +163487,133 @@ runfiles size=10645 RELOC/tex/latex/lm/ts1lmssq.fd RELOC/tex/latex/lm/ts1lmtt.fd RELOC/tex/latex/lm/ts1lmvtt.fd -docfiles size=657 - RELOC/doc/fonts/lm/GUST-FONT-LICENSE.TXT - RELOC/doc/fonts/lm/MANIFEST-Latin-Modern.TXT - RELOC/doc/fonts/lm/README-Latin-Modern.TXT - RELOC/doc/fonts/lm/lm-hist.txt - RELOC/doc/fonts/lm/lm-info.pdf - RELOC/doc/fonts/lm/tstlmot1.pdf - RELOC/doc/fonts/lm/tstlmot1.tex - RELOC/doc/fonts/lm/tstlmot4.pdf - RELOC/doc/fonts/lm/tstlmot4.tex - RELOC/doc/fonts/lm/tstlmqx.pdf - RELOC/doc/fonts/lm/tstlmqx.tex - RELOC/doc/fonts/lm/tstlmt1.pdf - RELOC/doc/fonts/lm/tstlmt1.tex - RELOC/doc/fonts/lm/tstlmts1.pdf - RELOC/doc/fonts/lm/tstlmts1.tex -srcfiles size=1204 - RELOC/source/latex/lm/lm2004mt1.zip +catalogue-contact-home http://www.gust.org.pl/projects/e-foundry/latin-modern catalogue-ctan /fonts/lm -catalogue-date 2014-07-11 15:31:42 +0200 -catalogue-license gfsl +catalogue-date 2018-06-16 10:44:42 +0200 +catalogue-license gfl +catalogue-topics font font-proportional font-mono font-type1 font-otf font-cm catalogue-version 2.004 +name lm-math +category Package +revision 36915 +shortdesc OpenType maths fonts for Latin Modern +relocated 1 +longdesc Latin Modern Math is a maths companion for the Latin Modern +longdesc family of fonts, in OpenType format. For use with LuaLaTeX or +longdesc XeLaTeX, support is available from the unicode-math package. +containersize 377816 +containerchecksum f2424f917e13aa9805f6738ceed376d6063713dd4c58a5953b5456da4ba81eaba3f0f97963ecf36ead4f68b1311c4c9e30f064002ab8bbf0f5ed3a67db3ead4a +doccontainersize 94656 +doccontainerchecksum 262a99ab29fd22976334eabaed77d3326e87b63014d9e640ef8ea31b14382b273a6435f3059aa235c50f9f829ec28adf754763e17a945265495e9a54e7ee53fa +docfiles size=37 + RELOC/doc/fonts/lm-math/GUST-FONT-LICENSE.txt + RELOC/doc/fonts/lm-math/INSTALL.txt + RELOC/doc/fonts/lm-math/MANIFEST-Latin-Modern-Math.txt + RELOC/doc/fonts/lm-math/README-Latin-Modern-Math.txt + RELOC/doc/fonts/lm-math/math-test-context.tex + RELOC/doc/fonts/lm-math/math-test.tex + RELOC/doc/fonts/lm-math/test-context-latinmodern_math.pdf + RELOC/doc/fonts/lm-math/test-context-latinmodern_math.tex + RELOC/doc/fonts/lm-math/test-lualatex-latinmodern_math.pdf + RELOC/doc/fonts/lm-math/test-lualatex-latinmodern_math.tex + RELOC/doc/fonts/lm-math/test-word-latinmodern_math.docx + RELOC/doc/fonts/lm-math/test-word-latinmodern_math.pdf + RELOC/doc/fonts/lm-math/test-xelatex-latinmodern_math.pdf + RELOC/doc/fonts/lm-math/test-xelatex-latinmodern_math.tex +runfiles size=180 + RELOC/fonts/opentype/public/lm-math/latinmodern-math.otf +catalogue-contact-home http://www.gust.org.pl/projects/e-foundry/latin-modern +catalogue-ctan /fonts/lm-math +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license gfl +catalogue-topics font font-maths font-otf +catalogue-version 1.959 + +name lmake +category Package +revision 25552 +shortdesc Process lists to do repetitive actions +relocated 1 +longdesc The package provides commands to simplify processing of +longdesc sequential list-like structures, such as making a series of +longdesc 'similar' commands from a list of names. +containersize 2016 +containerchecksum 3613e9d53808b2d1e326175c28acb672c1f244b2e00ea1d544e1e05c73e2a93e49b5e8b187a8a73e87ffbb00c22235781983a2c0a733a6ae5598db12c278a763 +doccontainersize 269032 +doccontainerchecksum 08fa487d9151ea6a49a73044d1f6b41ed0c636a69e04a2c9f04bce996f915e9d267383a6fc374f3292c01244981fdebf6d9fc462ee0fc151ded2601e4554593b +docfiles size=72 + RELOC/doc/latex/lmake/README details="Readme" + RELOC/doc/latex/lmake/lmake.pdf details="Package documentation" +srccontainersize 6828 +srccontainerchecksum d18894108d2b4b5d46d4e212648b6c7d76894faf4dd45555371d17df5f6d186d4d2b5c8878e745520441eba2459c5fce320bef28e23bb59c09f01fee44a6041e +srcfiles size=6 + RELOC/source/latex/lmake/lmake.dtx + RELOC/source/latex/lmake/lmake.ins +runfiles size=2 + RELOC/tex/latex/lmake/lmake.sty +catalogue-ctan /macros/latex/contrib/lmake +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.2 +catalogue-topics macro-supp +catalogue-version 1.0 + +name lni +category Package +revision 50754 +shortdesc Official class for the "Lecture Notes in Informatics" +relocated 1 +longdesc This is the official version of the class "lni" for submissions +longdesc to the Lecture Notes in Informatics published by the +longdesc Gesellschaft fur Informatik. To use it, download the file +longdesc lni-author-template.tex and edit it in your favorite LaTeX +longdesc editor. +containersize 11648 +containerchecksum 388109e3e6dd7eeba8cdebd9af9ec172ea0939f890f3120443130908fe57d33bf3cbb6858174c4417d4ab44585153bc953c8e1c509da7bc9cfbc6b11b7cea0c8 +doccontainersize 361576 +doccontainerchecksum 60ecf7795b1077754b05b4251bec6614fec3daf7e9abbcb7ff6aad83585aadff953a03ec3ab34e7bcf343e4c6ff91773b5d2a6e532468cecd37dbc93321fc07b +docfiles size=91 + RELOC/doc/latex/lni/CHANGELOG.md + RELOC/doc/latex/lni/CONTRIBUTING.md + RELOC/doc/latex/lni/README.md details="Readme" + RELOC/doc/latex/lni/lni.pdf details="Package documentation" +srccontainersize 24320 +srccontainerchecksum 3249c4fa191992f32396bd96c292e90e85cd5754ff8ceac76a110dc03e749151f962f7c69464704878780d0d44c85c7c14a9bcea9fc636e324fd719b79a6546e +srcfiles size=24 + RELOC/source/latex/lni/lni.dtx + RELOC/source/latex/lni/lni.ins +runfiles size=17 + RELOC/bibtex/bst/lni/lni.bst + RELOC/bibtex/bst/lni/lnig.bst + RELOC/tex/latex/lni/lni.cls +catalogue-also biblatex-lni +catalogue-contact-bugs https://github.com/gi-ev/LNI/issues +catalogue-contact-repository https://github.com/gi-ev/LNI +catalogue-ctan /macros/latex/contrib/lni +catalogue-date 2019-04-04 10:35:48 +0200 +catalogue-license lppl1.3c +catalogue-topics journalpub class +catalogue-version 1.5 + name lobster2 category Package revision 32617 -shortdesc Lobster Two fonts, with support for all LaTeX engines. +shortdesc Lobster Two fonts, with support for all LaTeX engines relocated 1 longdesc Lobster Two is a family of script fonts designed bt Pablo longdesc Impallari. It has many ligatures and terminal forms, but most longdesc of these can be accessed only using XeLaTeX or LuaLaTeX. Font longdesc access and use is supported in LaTeX. execute addMap LobsterTwo.map +containersize 777892 +containerchecksum 97692ee9293dd7fce8a3ca01f29a11daca837baef5d55b2c85339e1b2656430d009b5beccf7f04c5eaaf9b1643624fa259e353bf7f8afd6ad78df00999c252ba +doccontainersize 39176 +doccontainerchecksum 4efa18df18dc64cdc88d52b3b4bd9936f021a039e62eeeb2b028461328f2c3fc5b0bb0b661bcb3d2db155c48c270dcf1c2dcc2fa4951666597277e8ab1195494 +docfiles size=13 + RELOC/doc/fonts/lobster2/OFL.txt + RELOC/doc/fonts/lobster2/README details="Readme" + RELOC/doc/fonts/lobster2/lobster2-samples.pdf details="Package documentation" + RELOC/doc/fonts/lobster2/lobster2-samples.tex runfiles size=577 RELOC/fonts/enc/dvips/lobster2/lbst2_2vl4dw.enc RELOC/fonts/enc/dvips/lobster2/lbst2_5uiiua.enc @@ -100028,107 +163701,131 @@ runfiles size=577 RELOC/tex/latex/lobster2/OT1LobsterTwo-LF.fd RELOC/tex/latex/lobster2/T1LobsterTwo-LF.fd RELOC/tex/latex/lobster2/TS1LobsterTwo-LF.fd -docfiles size=13 - RELOC/doc/fonts/lobster2/OFL.txt - RELOC/doc/fonts/lobster2/README - RELOC/doc/fonts/lobster2/lobster2-samples.pdf - RELOC/doc/fonts/lobster2/lobster2-samples.tex +catalogue-contact-repository https://github.com/impallari/The-Lobster-Font catalogue-ctan /fonts/lobster2 -catalogue-date 2015-01-20 20:56:28 +0100 +catalogue-date 2018-04-23 05:03:07 +0200 catalogue-license ofl +catalogue-topics font font-calligraphic font-type1 font-ttf name locality category Package revision 20422 -shortdesc Various macros for keeping things local. +shortdesc Various macros for keeping things local relocated 1 longdesc A toolbox of macros designed to allow the LaTeX programmer to longdesc work around some of the restrictions of the TeX grouping longdesc mechanisms. The present release offers a preliminary view of longdesc the package; not all of its facilities are working optimally -runfiles size=3 - RELOC/tex/latex/locality/locality.sty +containersize 2412 +containerchecksum c7fde4ad74b339d340a046a4f59ff73da45942631c6b68275d365c18ee80b213d18b84540b8ee535f012aa18ef559e88b1df3fcff4560d241ee1147695824a2e +doccontainersize 175696 +doccontainerchecksum 5b7fde689fc764dc75930522416cfeb51ec30eec64080b289c085be4b00a0da1c5d6d79d2734502ca8a329bc2935216a8b298495e0ad1ac8331c6d3a5718bb5f docfiles size=48 - RELOC/doc/latex/locality/README + RELOC/doc/latex/locality/README details="Readme" RELOC/doc/latex/locality/changes.txt - RELOC/doc/latex/locality/locality.pdf + RELOC/doc/latex/locality/locality.pdf details="Package documentation" +srccontainersize 6612 +srccontainerchecksum bb1e55107d9b16460b8990f35461bbe775c674ecb2dabb78d19514e365cc97f0b03ad5884b310edc60f2fea9366ee2633ddf4280165cab562038e024ea9267fd srcfiles size=8 RELOC/source/latex/locality/locality.dtx RELOC/source/latex/locality/locality.ins +runfiles size=3 + RELOC/tex/latex/locality/locality.sty catalogue-ctan /macros/latex/contrib/locality -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics macro-supp catalogue-version 0.2 name localloc category Package revision 21934 -shortdesc Macros for localizing TeX register allocations. +shortdesc Macros for localizing TeX register allocations relocated 1 longdesc This package approaches the problem of the shortage of longdesc registers, by providing a mechanism for local allocation. The longdesc package works with Plain TeX, LaTeX and LaTeX 2.09. -runfiles size=2 - RELOC/tex/latex/localloc/localloc.sty +containersize 2464 +containerchecksum ff1e797efe69f372e61272d187e758e303e505128549e02d8fe45c621a28e55337d13b0fdbf6065ef97d4f8c51018ead4e97c1c4b2d9a76f9a6d299136f510eb +doccontainersize 241316 +doccontainerchecksum 13e03c65221c892acf80a51bedd6a18232e9e9adc7ba92f34399e678a2d88d7050b94f8047087c891075c2098bc759c79f1276ab2ee8cfe08dd7723f2ede6f74 docfiles size=66 - RELOC/doc/latex/localloc/localloc.README - RELOC/doc/latex/localloc/localloc.pdf + RELOC/doc/latex/localloc/localloc.README details="Package Readme" + RELOC/doc/latex/localloc/localloc.pdf details="Package documentation" RELOC/doc/latex/localloc/localtst.tex +srccontainersize 11680 +srccontainerchecksum 04da29e24ad627fff42fc88a5fcc480ba42eec235ab2e283a89efcdc87082bed4b4b988dffb5ea2456212cdfebe9f66937c54ca799a3253c76884e86b13f2d0f srcfiles size=11 RELOC/source/latex/localloc/localloc.drv RELOC/source/latex/localloc/localloc.dtx +runfiles size=2 + RELOC/tex/latex/localloc/localloc.sty catalogue-ctan /macros/latex/contrib/localloc -catalogue-date 2012-07-16 18:45:50 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics macro-supp name logbox category Package revision 24499 -shortdesc e-TeX showbox facilities for exploration purposes. +shortdesc e-TeX showbox facilities for exploration purposes relocated 1 longdesc The command \logbox does \showbox without stopping the longdesc compilation. The package's main command is \viewbox*: the box longdesc is typeset (copied) with its dimensions, and its contents are longdesc logged in the .log file. -runfiles size=1 - RELOC/tex/latex/logbox/logbox.sty +containersize 1444 +containerchecksum 0c6f9d401c81344465d6eaa6eb6e655443c4af1622bfb6751db508638e2625aba7b5e77780fbb6453eee40b8a7ddba84d70ceca8882049779db61f83e7a15aee +doccontainersize 588824 +doccontainerchecksum 21f379c88638ee8499e7e47abb0850822a08d520aabb352e0f85ed0c38950aa71b4f9b3d430c31193de5640a915d0c84dc28fba71443d3f2e461a2dac53e2b9a docfiles size=160 - RELOC/doc/latex/logbox/README - RELOC/doc/latex/logbox/logbox.pdf + RELOC/doc/latex/logbox/README details="Readme" + RELOC/doc/latex/logbox/logbox.pdf details="Package documentation" RELOC/doc/latex/logbox/logbox.png +srccontainersize 7324 +srccontainerchecksum 3123ed1fef39d4a252159c65e0cf938933f2ab4c693d8f7364f20e60accb20e32fcd9da8828019a8cefae1fb874605ffbcf88dd7123fff91871858cb5694a985 srcfiles size=8 RELOC/source/latex/logbox/logbox.drv RELOC/source/latex/logbox/logbox.dtx RELOC/source/latex/logbox/logbox.ins +runfiles size=1 + RELOC/tex/latex/logbox/logbox.sty catalogue-ctan /macros/latex/contrib/logbox -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics macro-supp catalogue-version 1.0 name logical-markup-utils category Package revision 15878 -shortdesc Packages for language-dependent inline quotes and dashes. +shortdesc Packages for language-dependent inline quotes and dashes relocated 1 longdesc The bundle contains two packages: quoted, for inserting longdesc quotation marks; and onedash, for inserting dashes. Each longdesc package takes a language name as an option; accepted language longdesc options are american, british, german and polish. -runfiles size=2 - RELOC/tex/latex/logical-markup-utils/onedash.sty - RELOC/tex/latex/logical-markup-utils/quoted.sty +containersize 1884 +containerchecksum 87f7fc345935804705ab25ab010376fb72bc4722c75bb115b0c9dd0e0a51fc8bdd6dd4051b76dd083ec07d80b8c59c5d18423da55e0430db7a9f94ad0bd45906 +doccontainersize 12844 +doccontainerchecksum 80c44068a6e474071e40a0bf3dc67f0201b21eb84a041fad8423c59c9e34ce138833c54ead638979357dc3026eea55da034daa05e71a56ecabe701ebf53faf24 docfiles size=11 RELOC/doc/latex/logical-markup-utils/COPYING - RELOC/doc/latex/logical-markup-utils/README + RELOC/doc/latex/logical-markup-utils/README details="Readme" RELOC/doc/latex/logical-markup-utils/TODO +runfiles size=2 + RELOC/tex/latex/logical-markup-utils/onedash.sty + RELOC/tex/latex/logical-markup-utils/quoted.sty +catalogue-also csquotes catalogue-ctan /macros/latex/contrib/logical-markup-utils -catalogue-date 2014-10-19 22:42:06 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl3 +catalogue-topics quote-marks name logicproof category Package revision 33254 -shortdesc Box proofs for propositional and predicate logic. +shortdesc Box proofs for propositional and predicate logic relocated 1 longdesc A common style of proof used in propositional and predicate longdesc logic is Fitch proofs, in which each line of the proof has a @@ -100137,22 +163834,29 @@ longdesc proof have boxes around them. The package provides environments longdesc for typesetting such proofs and boxes. It creates proofs in a longdesc style similar to that used in "Logic in Computer Science" by longdesc Huth and Ryan. -runfiles size=2 - RELOC/tex/latex/logicproof/logicproof.sty +containersize 2016 +containerchecksum d5b15ee5f35a9ef94618f8b092e97ccc4f1959a617c2e604b99ba56eef14c4a1a078d66f2c77d02239289e30878293ea6c9ff4134bd003331fc41fd3db19cec5 +doccontainersize 54576 +doccontainerchecksum bf8a33c5db05a30cb4f520fa2f73f572a90c3803c4b6dc1709f9e2c80f67e32e7665ce898852dedcd3daa8974bf909034d06f805ce473318f0f512645ceaf9da docfiles size=15 - RELOC/doc/latex/logicproof/README - RELOC/doc/latex/logicproof/logicproof.pdf + RELOC/doc/latex/logicproof/README details="Readme" + RELOC/doc/latex/logicproof/logicproof.pdf details="Package documentation" +srccontainersize 7728 +srccontainerchecksum 4cde464059a65161c6ab069ef0c8905e4e6cefb7ebfd8c7c3b2af909209af4a911dd1bb0daee5b27868305660601187fe7a105660b395de98ae3d30864f012ea srcfiles size=8 RELOC/source/latex/logicproof/logicproof.dtx RELOC/source/latex/logicproof/logicproof.ins +runfiles size=2 + RELOC/tex/latex/logicproof/logicproof.sty catalogue-ctan /macros/latex/contrib/logicproof -catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics logic name logicpuzzle category Package revision 34491 -shortdesc Typeset (grid-based) logic puzzles. +shortdesc Typeset (grid-based) logic puzzles relocated 1 longdesc The package allows the user to typeset various logic puzzles. longdesc At the moment the following puzzles are supported: 2D-Sudoku @@ -100179,68 +163883,82 @@ longdesc Sternenschlacht, ...), Stars and Arrows (aka Sternenhimmel, longdesc ...), Sudoku, Sun and Moon (aka Sternenhaufen, Munraito, ...), longdesc Tents and Trees (aka Zeltlager, Zeltplatz, Camping, ...), and longdesc Tunnel. +containersize 15228 +containerchecksum 2c642c7aa6d6f12e51228432f8bd9fab906ff4dd3354a49f636582a065bff0f534222161ce11306ff6bf3e354a9ca6f6394cf9826b321ac94e9ef5ee8c0621ff +doccontainersize 810144 +doccontainerchecksum 872a72ed13f7dcb43df3bd2f2b7bd504e3e430030115faadf0a130d2fd94331a335c4853e37c78e4b8aa7c59a44bfd87ad2a484b1b836c2a7526b97ef26ddd56 +docfiles size=284 + RELOC/doc/latex/logicpuzzle/README details="Readme" + RELOC/doc/latex/logicpuzzle/logicpuzzle.dtx + RELOC/doc/latex/logicpuzzle/logicpuzzle.pdf details="Package documentation" + RELOC/doc/latex/logicpuzzle/manifest.txt + RELOC/doc/latex/logicpuzzle/qrcode.png runfiles size=32 RELOC/scripts/logicpuzzle/createlpsudoku RELOC/scripts/logicpuzzle/lpsmag RELOC/scripts/logicpuzzle/simple.smc RELOC/tex/latex/logicpuzzle/logicpuzzle.sty RELOC/tex/latex/logicpuzzle/lpenv.sty -docfiles size=284 - RELOC/doc/latex/logicpuzzle/README - RELOC/doc/latex/logicpuzzle/logicpuzzle.dtx - RELOC/doc/latex/logicpuzzle/logicpuzzle.pdf - RELOC/doc/latex/logicpuzzle/manifest.txt - RELOC/doc/latex/logicpuzzle/qrcode.png +catalogue-contact-repository https://bitbucket.org/kleberj/logicpuzzle/ catalogue-ctan /graphics/pgf/contrib/logicpuzzle -catalogue-date 2014-06-16 07:11:42 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 +catalogue-topics pgf-tikz games catalogue-version 2.5 name logpap category Package revision 15878 -shortdesc Generate logarithmic graph paper with LaTeX. -relocated 1 -longdesc The logpap package provides four macros for drawing logarithmic- -longdesc logarithmic, logarithmic-linear, linear-logarithmic and -longdesc (because it was easy to implement) linear-linear graph paper -longdesc with LaTeX. -runfiles size=7 - RELOC/tex/latex/logpap/logpap.sty +shortdesc Generate logarithmic graph paper with LaTeX +relocated 1 +longdesc The logpap package provides four macros for drawing +longdesc logarithmic-logarithmic, logarithmic-linear, linear-logarithmic +longdesc and (because it was easy to implement) linear-linear graph +longdesc paper with LaTeX. +containersize 5880 +containerchecksum 159876dc23e96f65fbb29278e30baa497489331fcf52ebda2adcb19098c2519044ce54ee590c3d91f80bf27b6df0a49aff455da54748c3e04c7e81c2be108e4b +doccontainersize 67724 +doccontainerchecksum f85a52b9d95247ce5eb537cc677aff184a434a41fa9c3433955b43eec3e3cf2deaa701718fe77dd3b3cfad5811c5275a097d980e157130705ad5cd3f14276dff docfiles size=23 - RELOC/doc/latex/logpap/README - RELOC/doc/latex/logpap/example.pdf + RELOC/doc/latex/logpap/README details="Package Readme" + RELOC/doc/latex/logpap/example.pdf details="Package documentation" RELOC/doc/latex/logpap/example.tex +srccontainersize 22100 +srccontainerchecksum c6c2127c2789c2717072d8d08043ac73a86248d71dd542d38dcedb3a36947f7ceb99f0246787e279b22fa03dea554a6afde6438ffda3fda6143027a7e6f1d78a srcfiles size=28 RELOC/source/latex/logpap/logpap.dtx RELOC/source/latex/logpap/logpap.ins +runfiles size=7 + RELOC/tex/latex/logpap/logpap.sty catalogue-ctan /macros/latex/contrib/logpap -catalogue-date 2012-07-17 13:06:42 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics diagram catalogue-version 0.6 name logreq category Package revision 19640 -shortdesc Support for automation of the LaTeX workflow. +shortdesc Support for automation of the LaTeX workflow relocated 1 longdesc The package helps to automate a typical LaTeX workflow that longdesc involves running LaTeX several times, running tools such as longdesc BibTeX or makeindex, and so on. It will log requests like longdesc "please rerun LaTeX" or "please run BibTeX on file X" to an -longdesc external XML file which lists all open tasks in a machine- -longdesc readable format. Compiler scripts and integrated LaTeX editing -longdesc environments may parse this file to determine the next steps in -longdesc the workflow in a way that is more efficient than parsing the -longdesc main log file. In sum, the package will do two things: enable -longdesc package authors to use LaTeX commands to issue requests, -longdesc collect all requests from all packages and write them to an -longdesc external XML file at the end of the document. -runfiles size=3 - RELOC/tex/latex/logreq/logreq.def - RELOC/tex/latex/logreq/logreq.sty +longdesc external XML file which lists all open tasks in a +longdesc machine-readable format. Compiler scripts and integrated LaTeX +longdesc editing environments may parse this file to determine the next +longdesc steps in the workflow in a way that is more efficient than +longdesc parsing the main log file. In sum, the package will do two +longdesc things: enable package authors to use LaTeX commands to issue +longdesc requests, collect all requests from all packages and write them +longdesc to an external XML file at the end of the document. +containersize 3204 +containerchecksum 4c9e5f42869e690768515d49f62aa5ef7ff2d9de2f42bd1b574f95b7903958a0506d334300f89b38955fce0c47bc65e4c3e17cfd04c5b6df95406e6b78ecaa2e +doccontainersize 3792 +doccontainerchecksum 5addb710e2948e67f6369763a74d31bd3cb20d847df6cccef739fad3b34abea8663d00e7304cf47309baa74086a5cfd581bf46610ed3d7123ff74c426fec0131 docfiles size=12 - RELOC/doc/latex/logreq/README + RELOC/doc/latex/logreq/README details="Readme" RELOC/doc/latex/logreq/examples/01-basic.run.xml RELOC/doc/latex/logreq/examples/01-basic.tex RELOC/doc/latex/logreq/examples/02-index.run.xml @@ -100251,15 +163969,19 @@ docfiles size=12 RELOC/doc/latex/logreq/examples/04-biblatex+bibtex+refsections.tex RELOC/doc/latex/logreq/examples/05-biblatex+biber.run.xml RELOC/doc/latex/logreq/examples/05-biblatex+biber.tex +runfiles size=3 + RELOC/tex/latex/logreq/logreq.def + RELOC/tex/latex/logreq/logreq.sty catalogue-ctan /macros/latex/contrib/logreq -catalogue-date 2014-10-17 21:54:02 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics compilation catalogue-version 1.0 name lollipop category Package -revision 33676 -shortdesc TeX made easy. +revision 45678 +shortdesc TeX made easy longdesc Lollipop is "TeX made easy" -- it is a macro package that longdesc functions as a toolbox for writing TeX macros. Its main aim is longdesc to make macro writing so easy that implementing a fully new @@ -100272,32 +163994,16 @@ longdesc switch to WYSIWYG packages for the freedom that such a longdesc mechanism offers. In addition, development of support for longdesc Lollipop documents written in RTL languages (such as Persian) longdesc is underway. +depend cm +depend hyphen-base depend lollipop.ARCH -execute AddFormat name=lollipop engine=pdftex options="-translate-file=cp227.tcx *lollipop.ini" -execute AddFormat name=lualollipop engine=luatex options="lualollipop.ini" -execute AddFormat name=xelollipop engine=xetex options="-etex xelollipop.ini" -execute AddFormat name=dvilollipop mode=disabled engine=pdftex options="-translate-file=cp227.tcx *lollipop.ini" -execute AddFormat name=dvilualollipop mode=disabled engine=luatex options="-translate-file=cp227.tcx lualollipop.ini" -runfiles size=59 - texmf-dist/tex/lollipop/dvilollipop.ini - texmf-dist/tex/lollipop/dvilualollipop.ini - texmf-dist/tex/lollipop/lollipop-define.tex - texmf-dist/tex/lollipop/lollipop-document.tex - texmf-dist/tex/lollipop/lollipop-float.tex - texmf-dist/tex/lollipop/lollipop-fontdefs.tex - texmf-dist/tex/lollipop/lollipop-fonts.tex - texmf-dist/tex/lollipop/lollipop-heading.tex - texmf-dist/tex/lollipop/lollipop-lists.tex - texmf-dist/tex/lollipop/lollipop-output.tex - texmf-dist/tex/lollipop/lollipop-plain.tex - texmf-dist/tex/lollipop/lollipop-text.tex - texmf-dist/tex/lollipop/lollipop-tools.tex - texmf-dist/tex/lollipop/lollipop.ini - texmf-dist/tex/lollipop/lollipop.tex - texmf-dist/tex/lollipop/lualollipop.ini - texmf-dist/tex/lollipop/xelollipop.ini -docfiles size=137 - texmf-dist/doc/otherformats/lollipop/README +execute AddFormat name=lollipop engine=tex options="lollipop.ini" fmttriggers=cm,hyphen-base +containersize 51304 +containerchecksum 81557b83acfa4ad42dfa6fb1a65ea42bc33885da444ee23bc3c67a899df7b3ac2c19a1607305b5ec10b503980365c5d29ac3598339fc186a05417ea5bca60a78 +doccontainersize 341356 +doccontainerchecksum 206dee2be733e3ac04b5b259862b60fb3641fc44ea182da601ca54a010ff8e42f254dd01c03be7bcdd2a6258110c567a596ee82b4eb74d04ca8ed70e50cd6a86 +docfiles size=136 + texmf-dist/doc/otherformats/lollipop/README details="Readme" texmf-dist/doc/otherformats/lollipop/manual/address.tex texmf-dist/doc/otherformats/lollipop/manual/appendix.tex texmf-dist/doc/otherformats/lollipop/manual/btxmac.tex @@ -100308,7 +164014,7 @@ docfiles size=137 texmf-dist/doc/otherformats/lollipop/manual/head.tex texmf-dist/doc/otherformats/lollipop/manual/list.tex texmf-dist/doc/otherformats/lollipop/manual/lollipop-manual.bib - texmf-dist/doc/otherformats/lollipop/manual/lollipop-manual.pdf + texmf-dist/doc/otherformats/lollipop/manual/lollipop-manual.pdf details="Package manual" texmf-dist/doc/otherformats/lollipop/manual/lollipop-manual.tex texmf-dist/doc/otherformats/lollipop/manual/mandefs.tex texmf-dist/doc/otherformats/lollipop/manual/opt.tex @@ -100318,46 +164024,267 @@ docfiles size=137 texmf-dist/doc/otherformats/lollipop/manual/titlepag.tex texmf-dist/doc/otherformats/lollipop/manual/trace.tex texmf-dist/doc/otherformats/lollipop/tex-inde.xen +runfiles size=57 + texmf-dist/tex/lollipop/lollipop-define.tex + texmf-dist/tex/lollipop/lollipop-document.tex + texmf-dist/tex/lollipop/lollipop-float.tex + texmf-dist/tex/lollipop/lollipop-fontdefs.tex + texmf-dist/tex/lollipop/lollipop-fonts.tex + texmf-dist/tex/lollipop/lollipop-heading.tex + texmf-dist/tex/lollipop/lollipop-lists.tex + texmf-dist/tex/lollipop/lollipop-output.tex + texmf-dist/tex/lollipop/lollipop-plain.tex + texmf-dist/tex/lollipop/lollipop-text.tex + texmf-dist/tex/lollipop/lollipop-tools.tex + texmf-dist/tex/lollipop/lollipop.ini + texmf-dist/tex/lollipop/lollipop.tex +catalogue-contact-bugs https://github.com/bidi-tex/lollipop/issues +catalogue-contact-repository https://github.com/bidi-tex/lollipop catalogue-ctan /macros/lollipop -catalogue-date 2014-09-06 10:36:15 +0200 +catalogue-date 2018-11-28 20:22:09 +0100 catalogue-license gpl3 -catalogue-version 1.03 +catalogue-topics format +catalogue-version 1.07 + +name lollipop.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of lollipop +containersize 324 +containerchecksum 4fa520616bbd96b729e4988991ea19480b239b667528f074ffb455ec863824dde0c718b9f8974a6d087e6bee616f5fac66ccff76773ec641ae6be1b2a31dc23f +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/lollipop + +name lollipop.amd64-freebsd +category Package +revision 41465 +shortdesc amd64-freebsd files of lollipop +containersize 324 +containerchecksum 31c133cbe8fd563b8eba0c9d2623b514a95d7cb827e19b78962c326b89282d1e766d1ac83c867c18a3208f259fd5270946ef6efebaa3e09cf6f4696dc5d3c602 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/lollipop + +name lollipop.amd64-netbsd +category Package +revision 41257 +shortdesc amd64-netbsd files of lollipop +containersize 320 +containerchecksum 25386e918e90ef4aecc84c8688d6e1fdcbe7e4204c6f8ee6dbae82afd9e347ee1bc0acaed06f0de6f5e57018c9bf4d06ed4f05723893341e328474d98bc61bdf +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/lollipop + +name lollipop.armhf-linux +category Package +revision 41465 +shortdesc armhf-linux files of lollipop +containersize 324 +containerchecksum dc1d8af1f8ffd5a4dbe56b89845f99cf1b0ea384f53f42ec84edf313340122d7dbdf9a6b5efb94969b35734b564a0d39dc2075591da94b46089fb5a902dffa42 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/lollipop + +name lollipop.i386-cygwin +category Package +revision 41465 +shortdesc i386-cygwin files of lollipop +containersize 324 +containerchecksum 2247ebd3a3ecca18db6c8565bfa8d6172b0de35645edb640f679fe1f974efa0036a3915a176b8d7c5105999fa6fd3889c10a473ed7b013bb0b0650b912aed840 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/lollipop + +name lollipop.i386-freebsd +category Package +revision 41465 +shortdesc i386-freebsd files of lollipop +containersize 324 +containerchecksum 5a129efeb208acf4fb3e87d8b2c34fa0922130f5a10e6aecdc57e7c0cb4b15c4f859ead760c4e71942b5fe8da4b1a421c1155e1f8363023222b900a4ad30cc04 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/lollipop name lollipop.i386-linux category Package -revision 33658 +revision 41465 shortdesc i386-linux files of lollipop -binfiles arch=i386-linux size=3 +containersize 320 +containerchecksum 943855ec5e30857ccd4d7b2ade241d8eb32f5ff270633b3c89e34f574066462064917124901183fc35467946d1a487fa818fe09aef07f1c890b6db28f3a8c9f6 +binfiles arch=i386-linux size=1 bin/i386-linux/lollipop - bin/i386-linux/lualollipop - bin/i386-linux/xelollipop + +name lollipop.i386-netbsd +category Package +revision 41221 +shortdesc i386-netbsd files of lollipop +containersize 320 +containerchecksum d002ea134db014dbd0f8784ac631b06e1badefa81f90452ca2e0333b855e3f2548ccf35ede4341ec90b9c853651508f206bfce2cd8f8bc67c4d249d44b3a809a +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/lollipop + +name lollipop.i386-solaris +category Package +revision 41465 +shortdesc i386-solaris files of lollipop +containersize 320 +containerchecksum 69bcbfd6aa39870f22e42993e2fd3c1016b7c460afe89e9938174726f2cc983232b39b6910fdcce8c208e4ec55f1d2a735a9de96568c43b07f4c746a6f789f21 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/lollipop + +name lollipop.win32 +category Package +revision 41464 +shortdesc win32 files of lollipop +containersize 872 +containerchecksum f45c79116c827b7d5a917fe5812f7eb482f448acc44dae5657ca5c1f2adad98ba7ed5b93041fc1ab9d05c06b8555cda0af05f1f0282ccd3bdcaf37237a65e9da +binfiles arch=win32 size=1 + bin/win32/lollipop.exe + +name lollipop.x86_64-cygwin +category Package +revision 41465 +shortdesc x86_64-cygwin files of lollipop +containersize 324 +containerchecksum dd4f5dda60dd193038f01a4cca31e6e848f3e2b034d8db864545e041195ce8b05675ab73a23d429db69a54ab3dc77fd63ffe2b07bb2dd90493eb644a161346b2 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/lollipop + +name lollipop.x86_64-darwin +category Package +revision 41465 +shortdesc x86_64-darwin files of lollipop +containersize 324 +containerchecksum 2c2379e24dad2558d127fd35946d13dca17abc50bd1c802d53b42baa6b13dec4f79e349d820c9f7073d07ebebf2bd2c364f4300bde562bfa807048b028c0b7e1 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/lollipop + +name lollipop.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of lollipop +containersize 332 +containerchecksum 5d86c49a27dc63564322e81340970b31c235681c6b5d86fd63e461b0c99c51ced95d25cae77bc37ba14ed027b35ab249073a84bf6a6929dfb7d988cdc58f791b +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/lollipop + +name lollipop.x86_64-linux +category Package +revision 41465 +shortdesc x86_64-linux files of lollipop +containersize 320 +containerchecksum 130f488f1cfbe67d8192d1c52e08ac6a31a79386f5081ec2c45adf13aed3e6f7764d275aa078e230e1e6c385d698f7aaafaacf664e4eb741cdf2fc5754710ea0 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/lollipop + +name lollipop.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of lollipop +containersize 328 +containerchecksum 5a0d093f8abf3beb0c3f6112b6bdabdeb9e7c1f27a3c5f1e9392ccbb73ba7e5ddf6cdbb12f34a2b2fb47c3f04d5324fd5990251d15e4400a4d281785ad4f7fc4 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/lollipop + +name lollipop.x86_64-solaris +category Package +revision 41465 +shortdesc x86_64-solaris files of lollipop +containersize 324 +containerchecksum 526966d10b71de15c56097a94fd9f03a25bb5ba2072aa4ae0c4eb67db4f6c9db06e809e04a0fe852d5a1821fdaca260e0efc930ac00366be334de0cd4359eaca +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/lollipop + +name longdivision +category Package +revision 50586 +shortdesc Typesets long division +relocated 1 +longdesc This package executes the long division algorithm and typesets +longdesc the solutions. The dividend must be a positive decimal number +longdesc and the divisor must be a positive integer. Repeating decimals +longdesc is handled correctly, putting a bar over the repeated part of +longdesc the decimal. Dividends up to 20 digits long are handled +longdesc gracefully (though the typeset result will take up about a +longdesc page), and dividends between 20 and 60 digits long slightly +longdesc less gracefully. The package defines two macros, \longdivision +longdesc and \intlongdivision. Each takes two arguments, a dividend and +longdesc a divisor. \longdivision keeps dividing until the remainder is +longdesc zero, or it encounters a repeated remainder. \intlongdivision +longdesc stops when the dividend stops (though the dividend doesn't have +longdesc to be an integer). This package depends on the xparse package +longdesc from the l3packages bundle. +containersize 7912 +containerchecksum 64669ae90bcf3c98d4e58e9ff016bd03e151f57a83c6a98e71eff714017c4e9bab95694d33fef3edde79001f0f90a54e4f64514488b00d1e373122914064d8b1 +doccontainersize 124208 +doccontainerchecksum 679f3766529588f5319f511178ab84e636d9e888a3f2cffdb6d94384042bcc7deca14821fb5010e7bec65614bab9adf336346bdcc38bc8908a29a6e9266cdaf6 +docfiles size=37 + RELOC/doc/latex/longdivision/README.md details="Readme" + RELOC/doc/latex/longdivision/longdivision_manual.pdf details="Package documentation" + RELOC/doc/latex/longdivision/longdivision_manual.tex +runfiles size=8 + RELOC/tex/latex/longdivision/longdivision.sty +catalogue-also longdiv +catalogue-contact-repository https://github.com/hoodmane/longdivision +catalogue-ctan /macros/latex/contrib/longdivision +catalogue-date 2019-03-25 11:05:39 +0100 +catalogue-license lppl +catalogue-topics maths arithmetic +catalogue-version 1.1.0 + +name longfbox +category Package +revision 39028 +shortdesc Draw framed boxes with standard CSS attributes that can break over multiple pages +relocated 1 +longdesc The longfbox package provides framed boxes that can be +longdesc customized using standard CSS attributes. It was written to +longdesc support precise rendering of Madoko documents in LaTeX. +containersize 17084 +containerchecksum 43164941fd7ad91fa304aee01c3d34ec1faf8672549ae3b2711bdd4c91ae57ecbdcd8b29080d6c96cc64a73f7d7fd74c8621a70604a29dc1474f3c922c34a4c7 +doccontainersize 339604 +doccontainerchecksum fb319a679631e56122535b99a187d3c2ad5400d4a1f00275b73420c43f98e8b421a4b86f77b868c68edb39870132117de3310a00bde82f6387559c6adf34a8a7 +docfiles size=146 + RELOC/doc/latex/longfbox/README details="Readme" + RELOC/doc/latex/longfbox/longfbox.html + RELOC/doc/latex/longfbox/longfbox.pdf details="Package documentation" +runfiles size=23 + RELOC/tex/latex/longfbox/longbox.sty + RELOC/tex/latex/longfbox/longfbox.sty +catalogue-ctan /macros/latex/contrib/longfbox +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics boxing decoration +catalogue-version 1.0 name longfigure category Package revision 34302 -shortdesc Provides a figure-like environment that break over pages. -relocated 1 -longdesc The longfigure package uses and relabels components of the well- -longdesc known longtable package, written by David Carlisle, to provide -longdesc a table-like environment that can display a stream of figures -longdesc as a single figure that can break across pages. -runfiles size=4 - RELOC/tex/latex/longfigure/longfigure.sty +shortdesc Provides a figure-like environment that break over pages +relocated 1 +longdesc The longfigure package uses and relabels components of the +longdesc well-known longtable package, written by David Carlisle, to +longdesc provide a table-like environment that can display a stream of +longdesc figures as a single figure that can break across pages. +containersize 4512 +containerchecksum 984f10c8a2196b490dbffb015f2aa6449e8db6475c2f02dd71c92d5a3f6cb5dccb98a4c4f923f6efd3bbb1056aa8e64f324e3d8a051c11879677addaed8d3f06 +doccontainersize 443792 +doccontainerchecksum 1f949e3ada113710f40b6d2960bb01ffffd3f9d26a65fd0482644da2a20c5375454c430e1c7d3b74cf872cbe486ccab9a4e71567592da5d39ad9e72102c382db docfiles size=111 - RELOC/doc/latex/longfigure/README - RELOC/doc/latex/longfigure/longfigure.pdf + RELOC/doc/latex/longfigure/README details="Readme" + RELOC/doc/latex/longfigure/longfigure.pdf details="Package documentation" +srccontainersize 8468 +srccontainerchecksum 03d73c0d0c30d0c69f1fb878dcf843b26480c5005d88034e6f09fce485db3cf249240f2e39f591acd13556cf06677bd567857ceaaf96ec9cd0178f8216323be8 srcfiles size=8 RELOC/source/latex/longfigure/longfigure.dtx RELOC/source/latex/longfigure/longfigure.ins +runfiles size=4 + RELOC/tex/latex/longfigure/longfigure.sty catalogue-ctan /macros/latex/contrib/longfigure -catalogue-date 2014-06-26 11:21:29 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics table table-long graphics-incl catalogue-version 1.0 name longnamefilelist category Package revision 27889 -shortdesc Tidy \listfiles with long file names. +shortdesc Tidy \listfiles with long file names relocated 1 longdesc The package equips LaTeX's \listfiles command with an optional longdesc argument for the number of characters in the longest base @@ -100365,37 +164292,50 @@ longdesc filename. This way you get a neatly aligned file list even when longdesc it contains files whose base names have more than 8 characters. longdesc The package can be combined with the myfilist package as longdesc explained in the documentation. -runfiles size=2 - RELOC/tex/latex/longnamefilelist/longnamefilelist.sty +containersize 3620 +containerchecksum 1d16ee9c76784c5124de3abe62b6e916d0f65e979a18a721ef688a960e5d20382dc976de0b68d95c47e9651ad71a67ca97a828f1bdfba8e4a77ac084d7561386 +doccontainersize 309272 +doccontainerchecksum d909908d763342790b8ab56d333e60d7047894472f3922a2554581a5455539845af72d3867d0a55f5a27e982aa8128ae1a948f40e106fa127f2d01156b55ccf6 docfiles size=85 - RELOC/doc/latex/longnamefilelist/README + RELOC/doc/latex/longnamefilelist/README details="Readme" RELOC/doc/latex/longnamefilelist/SrcFILEs.txt - RELOC/doc/latex/longnamefilelist/longnamefilelist.pdf + RELOC/doc/latex/longnamefilelist/longnamefilelist.pdf details="Package documentation" +srccontainersize 1652 +srccontainerchecksum af1383755b422a3bdbf7af7437b732a39aaf666c7244e75d498b1252d3644e58a18115a744c4b4c7fe1433f415b40886868faeb064b13647452d444f64fd6f9b srcfiles size=2 RELOC/source/latex/longnamefilelist/longnamefilelist.tex RELOC/source/latex/longnamefilelist/srcfiles.tex +runfiles size=2 + RELOC/tex/latex/longnamefilelist/longnamefilelist.sty +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html catalogue-ctan /macros/latex/contrib/longnamefilelist -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-05-06 08:40:41 +0200 catalogue-license lppl1.3 +catalogue-topics doc-mgmt catalogue-version 0.2 name loops category Package revision 30704 -shortdesc General looping macros for use with LaTeX. +shortdesc General looping macros for use with LaTeX relocated 1 longdesc The package provides efficient looping macros for processing longdesc both csv (separated-values) and nsv/tsv (non-separated values) longdesc lists. CSV lists which have associated parsers may be processed longdesc with the tools of the package. -runfiles size=13 - RELOC/tex/latex/loops/loops.sty +containersize 11928 +containerchecksum 60ee6999e43ba9082c5a283dac5a930c9075b24f6bc7cd3f719b0336b01dfcb17fb2d5e3c82b9f1636c9bb3e6c923607a3d9237d08fbaf17bbfc1196d0a75281 +doccontainersize 8240 +doccontainerchecksum 9d70b3ae88d64bf2710157db88113224a95947aa03f11a2eb659c61109a451e2a93b2aa5ffd6ce9cf2f1b5fc8e0ef815850a0a9f27c7ec5ddbfbff1fe98ecaa4 docfiles size=8 - RELOC/doc/latex/loops/README + RELOC/doc/latex/loops/README details="Readme" RELOC/doc/latex/loops/loops-pokayoke1.tex +runfiles size=13 + RELOC/tex/latex/loops/loops.sty catalogue-ctan /macros/latex/contrib/loops -catalogue-date 2014-09-23 18:36:08 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics list-supp macro-supp csv-support catalogue-version 1.3 name lpform @@ -100411,20 +164351,25 @@ longdesc spacing, texts and equation tags) are also customizable. longdesc Besides linear programming formulations, this package can also longdesc be used to display any series of aligned equations with easy longdesc labeling/referencing and other customization options. -runfiles size=2 - RELOC/tex/generic/lpform/lpform.sty +containersize 1564 +containerchecksum 91d5748629ad72ca421834ffc61c13f71240bbcaedf9f0e4279bc6aa0bbdc817f093c24cf5a9c50d5a4a132208969bd356642fc5704ebd5c4ef2b7eef23f27ac +doccontainersize 269288 +doccontainerchecksum 92ddf3b473e13fe8b77ad955d55acbe7a6da34381bfaac78184342a900f2c9bb1e0981d5ebdb440cf0f44affe2eb0dd862f9b51d2a40c9abd90f1dbe81584c9d docfiles size=74 - RELOC/doc/generic/lpform/README - RELOC/doc/generic/lpform/lpform-doc.pdf + RELOC/doc/generic/lpform/README details="Readme" + RELOC/doc/generic/lpform/lpform-doc.pdf details="Package documentation" RELOC/doc/generic/lpform/lpform-doc.tex +runfiles size=2 + RELOC/tex/generic/lpform/lpform.sty catalogue-ctan /macros/generic/lpform -catalogue-date 2015-04-18 17:41:05 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics maths name lpic category Package revision 20843 -shortdesc Put LaTeX material over included graphics. +shortdesc Put LaTeX material over included graphics relocated 1 longdesc The package defines a convenient interface to put any LaTeX longdesc material on top of included graphics. The LaTeX material may @@ -100435,156 +164380,230 @@ longdesc is rescaled, the LaTeX annotations stay at their right places longdesc (unless you do something extreme). In a draft mode, the package longdesc enables you to draw a coordinate grid over the picture for easy longdesc adjustment of positions of the annotations. -runfiles size=6 - RELOC/tex/latex/lpic/lpic.sty +containersize 5308 +containerchecksum d918fdc8744a9f5e0d24f6ba4f19bbc4cbd9a5ba4b3c559ab1321c36a9e3599ccf6ee849bd7f2ef6c3156cec6e526a44d27bc033b7dc5b217e289fdbff0bf149 +doccontainersize 96860 +doccontainerchecksum 307109b75129099c191a65a7632ad0cbc903cb2b621b199dcceb7cab5ab5ddeff7ee504d7da3afd653e1aac04236efb6a3c1225f9e533a777295052bcc28d2ba docfiles size=36 - RELOC/doc/latex/lpic/README + RELOC/doc/latex/lpic/README details="Readme" RELOC/doc/latex/lpic/instructions-differential.eps RELOC/doc/latex/lpic/instructions-differential.pdf - RELOC/doc/latex/lpic/instructions.pdf + RELOC/doc/latex/lpic/instructions.pdf details="Package documentation" RELOC/doc/latex/lpic/instructions.tex +runfiles size=6 + RELOC/tex/latex/lpic/lpic.sty +catalogue-also overpic catalogue-ctan /macros/latex/contrib/lpic -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics graphics-text catalogue-version 0.8 name lplfitch category Package revision 31077 -shortdesc Fitch-style natural deduction proofs. +shortdesc Fitch-style natural deduction proofs relocated 1 longdesc The package provides macros for typesetting natural deduction longdesc proofs in "Fitch" style, with subproofs indented and offset by longdesc scope lines. The proofs from use of the package are in the longdesc format used in the textbook Language, Proof, and Logic by Dave longdesc Barker-Plummer, Jon Barwise, and John Etchemendy. -runfiles size=2 - RELOC/tex/latex/lplfitch/lplfitch.sty +containersize 1964 +containerchecksum 189b9d6000d4b762a3c64652bb05f9465d5c789b7e2413e8f0ca281a8d4729a3044aa955ad7eb82c7b8513bd547bb76c2ad2b609e902b07f8f4f018698e17071 +doccontainersize 227352 +doccontainerchecksum a690ee2c1f9cf5eb36693a4a9385c047a31d29387930211bf6384d7cbedb3d1f1696c0c04269b02ef29b13ebccc69bbc329772f3fee209a1b1d51768484f9a50 docfiles size=57 - RELOC/doc/latex/lplfitch/README - RELOC/doc/latex/lplfitch/lplfitch.pdf + RELOC/doc/latex/lplfitch/README details="Readme" + RELOC/doc/latex/lplfitch/lplfitch.pdf details="Package documentation" +srccontainersize 8048 +srccontainerchecksum b06b45d992045111d1a8aed78267519f8b959415b00b94f75602b35cb7d37c47092e726db881d9094e82d3e25492513db66b210603730f8119d10e60819ec89e srcfiles size=8 RELOC/source/latex/lplfitch/lplfitch.dtx RELOC/source/latex/lplfitch/lplfitch.ins +runfiles size=2 + RELOC/tex/latex/lplfitch/lplfitch.sty +catalogue-contact-repository https://github.com/rzach/lplfitch catalogue-ctan /macros/latex/contrib/lplfitch -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 +catalogue-topics maths catalogue-version 0.9 name lps category Package revision 21322 -shortdesc Class for "Logic and Philosophy of Science". +shortdesc Class for "Logic and Philosophy of Science" relocated 1 longdesc The 'Logic and Philosophy of Science' journal is an online longdesc publication of the University of Trieste (Italy). The class longdesc builds on the standard article class to offer a format that longdesc LaTeX authors may use when submitting to the journal. -runfiles size=2 - RELOC/tex/latex/lps/lps.cls +containersize 2252 +containerchecksum 8bc59b5d8874fca88bfe62822f2050f5dee0461523d853a1c92a051e854ddd6a8b2ce235a674bda383f26ad01d6e18a83cac87db2ea73b4af7e22e74ff823d0e +doccontainersize 162420 +doccontainerchecksum a8ad542b5d2c28a9a02b5e4d4a43a13e2f3469512cf7264eb7ed78e2c5a29228531de3be7e84e557e3cc8a9ad60e59ca426da3d5e034dae6b40088ee99d2fd94 docfiles size=66 - RELOC/doc/latex/lps/README - RELOC/doc/latex/lps/lps.pdf + RELOC/doc/latex/lps/README details="Readme" + RELOC/doc/latex/lps/lps.pdf details="Package documentation" RELOC/doc/latex/lps/lpstemplate.tex +srccontainersize 7840 +srccontainerchecksum d1ae82c4a55280183a85fb3eec77306990f694f85c5d6b543b4ce4bbaf87a01b7fae2d6892bbf23587738079be503ac94b6a68b372ca1948863ceab826975a85 srcfiles size=7 RELOC/source/latex/lps/lps.dtx RELOC/source/latex/lps/lps.ins +runfiles size=2 + RELOC/tex/latex/lps/lps.cls catalogue-ctan /macros/latex/contrib/lps -catalogue-date 2014-10-11 08:59:27 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics journalpub class catalogue-version 0.7 +name lroundrect +category Package +revision 39804 +shortdesc LaTeX macros for utilizing the roundrect MetaPost routines +relocated 1 +longdesc This LaTeX package provides ways to use the extremely +longdesc configurable rounded rectangles of the roundrect MetaPost +longdesc package with LaTeX. It is chiefly useful for examples, but also +longdesc has macros for particular types of boxes which are useful on +longdesc their own. +containersize 2604 +containerchecksum 6e4968db6d4593fb0ad66c58b7977b77cfc5ad29a8ae8648bfa0f7844d71a809e0b381acfa4563cb1795177374963ddc10e8fad8a62c1523ea82288c7bd02087 +doccontainersize 252820 +doccontainerchecksum 12e6bccf3875f4045558df6e274a13f60fb7845a998de2e8a722168cbef2d9003224f02e379bcf0752770542aed15ec1d1e680a54e347763b554535ffc2e1042 +docfiles size=67 + RELOC/doc/latex/lroundrect/README details="Readme" + RELOC/doc/latex/lroundrect/lppl.txt + RELOC/doc/latex/lroundrect/lroundrect.pdf details="Package documentation" +srccontainersize 6836 +srccontainerchecksum cf39670d2c17420b2283be3264b163f7d4df70288b6c974674cb0ca4d52e3d7f99766f9f0c5b8636348aaad2ca851d1c4b3d530a2a85567a1bec2804ac5d70a4 +srcfiles size=7 + RELOC/source/latex/lroundrect/lroundrect.dtx + RELOC/source/latex/lroundrect/lroundrect.ins +runfiles size=2 + RELOC/tex/latex/lroundrect/lroundrect.sty +catalogue-ctan /macros/latex/contrib/lroundrect +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics boxing +catalogue-version 1.0 + name lsc category Package revision 15878 -shortdesc Typesetting Live Sequence Charts. +shortdesc Typesetting Live Sequence Charts relocated 1 longdesc This package is similar to the msc package in that it provides longdesc macros for typesetting a variant of sequence diagrams, in this longdesc case the Live Sequence Charts of Damm and Harel. The package longdesc supports the full LSC language of the original LSC paper, the -longdesc Klose-extensions for formal verification and some of the Harel- -longdesc extensions for the Play-In/Play-Out approach (cf. the manual). +longdesc Klose-extensions for formal verification and some of the +longdesc Harel-extensions for the Play-In/Play-Out approach (cf. the +longdesc manual). +containersize 14224 +containerchecksum f61d81a49c25972e03120cbf6557d356d6df6937af6e0443e47305312485217b6bb5c0818adf248fb860ec5d42c07fc22fdc0c54f9dd1f3bdcb12486350316da +doccontainersize 187204 +doccontainerchecksum 5d0550421ee0657c378cc1ad8159e16e43644f533e3d8a013d917c494bbb8d11cba79b99fcaa7bdcf8ef5f5deb88d144ed64d75a5682fe4c4187c60c634297f5 +docfiles size=73 + RELOC/doc/latex/lsc/README details="Readme" + RELOC/doc/latex/lsc/lsc.pdf details="Package documentation" + RELOC/doc/latex/lsc/lsc.tex runfiles size=16 RELOC/bibtex/bib/lsc/lsc.bib RELOC/tex/latex/lsc/lsc.sty -docfiles size=73 - RELOC/doc/latex/lsc/README - RELOC/doc/latex/lsc/lsc.pdf - RELOC/doc/latex/lsc/lsc.tex catalogue-ctan /macros/latex/contrib/lsc -catalogue-date 2012-07-16 18:45:50 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics comp-net name lshort-bulgarian category Package revision 15878 -shortdesc Bulgarian translation of the "Short Introduction to LaTeX2e". +shortdesc Bulgarian translation of the "Short Introduction to LaTeX2e" relocated 1 longdesc The source files, PostScript and PDF files of the Bulgarian longdesc translation of the "Short Introduction to LaTeX 2e". +containersize 424 +containerchecksum b528c16903ca8ed5ce69f5e2397dff8f05b13016384bc1304980cad71d86bbb55004d41db92dc29dd412a12b9a0a1b1ea99afcbea621a25bb20da4639d008776 +doccontainersize 1899640 +doccontainerchecksum 7cd22cad45d7ef2972679cf2a3653c3bbcb1d9bcfe94a65fb9dac23760de05b659470ca45cf8be13513924fa1cbb98599a304a51bc18f8f4d6631f082e662bc4 docfiles size=639 - RELOC/doc/latex/lshort-bulgarian/README - RELOC/doc/latex/lshort-bulgarian/lshort-bg.pdf + RELOC/doc/latex/lshort-bulgarian/README details="Readme" + RELOC/doc/latex/lshort-bulgarian/lshort-bg.pdf details="The document itself" language="bg" RELOC/doc/latex/lshort-bulgarian/src/lshort-bg.src.zip catalogue-ctan /info/lshort/bulgarian -catalogue-date 2012-07-16 17:38:59 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics tut-latex bulgarian name lshort-chinese category Package -revision 15878 +revision 50986 catalogue lshort-zh-cn -shortdesc Introduction to LaTeX, in Chinese. -relocated 1 -longdesc A translation to Chinese of the not so short introduction to -longdesc LaTeX2e, presented by the Chinese TeX Society CTeX. The -longdesc processed output is created by use of XeTeX. -docfiles size=526 - RELOC/doc/latex/lshort-chinese/README - RELOC/doc/latex/lshort-chinese/lshort-zh-cn.pdf +shortdesc Introduction to LaTeX, in Chinese +relocated 1 +longdesc A Chinese edition of the not so short introduction to LaTeX2e, +longdesc with additional information of typesetting Chinese language. +containersize 500 +containerchecksum 29c47ba7c96ea569e85df3b94962bb60e9d81259c9a30e04ff2d51bf667bab0fdbebb658f432907f4cc813bdf0f14acc0cb28b24e35f98a9e4278e1c591e6b4f +doccontainersize 1134828 +doccontainerchecksum 5365dc7936d87d7af00909d9f3f3cbf4f0423777862407cb264a6a2d73ab9ab90586f7396ef606baf94ac95257742fba43aa1a4b48f59f01cf33bc15ae62b572 +docfiles size=354 + RELOC/doc/latex/lshort-chinese/README-zh.md details="Readme (Chinese)" language="zh" + RELOC/doc/latex/lshort-chinese/README.md details="Readme" + RELOC/doc/latex/lshort-chinese/lshort-zh-cn.pdf details="The document itself" language="zh" + RELOC/doc/latex/lshort-chinese/src/INSTRUCTIONS.md + RELOC/doc/latex/lshort-chinese/src/Makefile + RELOC/doc/latex/lshort-chinese/src/app.A.install.tex + RELOC/doc/latex/lshort-chinese/src/app.B.error.help.tex RELOC/doc/latex/lshort-chinese/src/biblio.tex - RELOC/doc/latex/lshort-chinese/src/contrib.tex - RELOC/doc/latex/lshort-chinese/src/custom.tex - RELOC/doc/latex/lshort-chinese/src/fancyhea.sty - RELOC/doc/latex/lshort-chinese/src/graphic.tex - RELOC/doc/latex/lshort-chinese/src/lshort-a5.tex - RELOC/doc/latex/lshort-chinese/src/lshort-base.tex - RELOC/doc/latex/lshort-chinese/src/lshort.sty - RELOC/doc/latex/lshort-chinese/src/lshort.tex - RELOC/doc/latex/lshort-chinese/src/lssym.tex - RELOC/doc/latex/lshort-chinese/src/math.tex - RELOC/doc/latex/lshort-chinese/src/myclass.sty - RELOC/doc/latex/lshort-chinese/src/mylayout.sty - RELOC/doc/latex/lshort-chinese/src/overview.tex - RELOC/doc/latex/lshort-chinese/src/spec.tex - RELOC/doc/latex/lshort-chinese/src/test.tex - RELOC/doc/latex/lshort-chinese/src/things.tex - RELOC/doc/latex/lshort-chinese/src/title.tex - RELOC/doc/latex/lshort-chinese/src/typeset.tex - RELOC/doc/latex/lshort-chinese/src/usefulmacros.sty - RELOC/doc/latex/lshort-chinese/src/zhfont.sty - RELOC/doc/latex/lshort-chinese/src/zhmath.sty - RELOC/doc/latex/lshort-chinese/src/zhspacing.sty - RELOC/doc/latex/lshort-chinese/src/zhulem.sty + RELOC/doc/latex/lshort-chinese/src/chap.01.basics.tex + RELOC/doc/latex/lshort-chinese/src/chap.02.text.tex + RELOC/doc/latex/lshort-chinese/src/chap.03.elements.tex + RELOC/doc/latex/lshort-chinese/src/chap.04.math.tex + RELOC/doc/latex/lshort-chinese/src/chap.05.style.tex + RELOC/doc/latex/lshort-chinese/src/chap.06.spec.tex + RELOC/doc/latex/lshort-chinese/src/chap.07.graphic.tex + RELOC/doc/latex/lshort-chinese/src/chap.08.custom.tex + RELOC/doc/latex/lshort-chinese/src/fdl.tex + RELOC/doc/latex/lshort-chinese/src/latexmkrc + RELOC/doc/latex/lshort-chinese/src/lshort-zh-cn-layout.tex + RELOC/doc/latex/lshort-chinese/src/lshort-zh-cn-style.sty + RELOC/doc/latex/lshort-chinese/src/lshort-zh-cn.ist + RELOC/doc/latex/lshort-chinese/src/lshort-zh-cn.tex + RELOC/doc/latex/lshort-chinese/src/make.bat + RELOC/doc/latex/lshort-chinese/src/preface.contrib.tex + RELOC/doc/latex/lshort-chinese/src/preface.overview.tex + RELOC/doc/latex/lshort-chinese/src/sec.symbol.table.tex + RELOC/doc/latex/lshort-chinese/src/titlepage.tex +catalogue-contact-bugs https://github.com/CTeX-org/lshort-zh-cn/issues +catalogue-contact-repository https://github.com/CTeX-org/lshort-zh-cn catalogue-ctan /info/lshort/chinese -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license gpl -catalogue-version 4.20 +catalogue-date 2019-04-17 17:56:49 +0200 +catalogue-license fdl +catalogue-topics tut-latex chinese-doc +catalogue-version 6.01 name lshort-czech category Package revision 29803 -shortdesc Czech translation of the "Short Introduction to LaTeX2e". +shortdesc Czech translation of the "Short Introduction to LaTeX2e" relocated 1 longdesc This is the Czech translation of "A Short Introduction to longdesc LaTeX2e". +containersize 412 +containerchecksum feeb9c7244f686767c5f72ab3da8aa2bca69af7e6446e1bd8eb4dd858ef92e4a4eb6f42cf8d429127a20e84cac894732f0e05a360b47af02f67340b09311e495 +doccontainersize 1644616 +doccontainerchecksum 03295ea4bed83fb67a370ae547945335f51f6441ef913aba0ac3364f258153c6f5013d57e6579f3be6a9746a22cc4f34762871569d9d68c0b0d2acf40127fd80 docfiles size=637 RELOC/doc/latex/lshort-czech/CHANGES RELOC/doc/latex/lshort-czech/MANIFEST RELOC/doc/latex/lshort-czech/Makefile - RELOC/doc/latex/lshort-czech/README - RELOC/doc/latex/lshort-czech/lshort-cs.pdf + RELOC/doc/latex/lshort-czech/README details="Readme" + RELOC/doc/latex/lshort-czech/lshort-cs.pdf details="The document itself" RELOC/doc/latex/lshort-czech/src/appendix.tex RELOC/doc/latex/lshort-czech/src/biblio.tex RELOC/doc/latex/lshort-czech/src/contrib.tex @@ -100606,59 +164625,114 @@ docfiles size=637 RELOC/doc/latex/lshort-czech/src/title.tex RELOC/doc/latex/lshort-czech/src/typeset.tex catalogue-ctan /info/lshort/czech -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics tut-latex czech-doc catalogue-version 4.27 name lshort-dutch category Package revision 15878 -shortdesc Introduction to LaTeX in Dutch. +shortdesc Introduction to LaTeX in Dutch relocated 1 longdesc This is the Dutch (Nederlands) translation of the Short longdesc Introduction to LaTeX2e. +containersize 412 +containerchecksum c8635db5888817d392706b8b65aa5158a4973cf236dad7fe31a9545857daab15a6c1f2f82ab06e71e50a4af94824b17ac89c394a759721e192966a1f78433d47 +doccontainersize 777012 +doccontainerchecksum 29fc8b6a2645f241e8af437de3a295be8d56a088bd7c7666c35b14f104f242e68ecef2757d62a393400d9f337eb685e48ebac06769259c723d634312a7288ab9 docfiles size=272 - RELOC/doc/latex/lshort-dutch/LEESMIJ + RELOC/doc/latex/lshort-dutch/LEESMIJ details="Readme" language="nl" RELOC/doc/latex/lshort-dutch/README RELOC/doc/latex/lshort-dutch/WIJZIGINGEN - RELOC/doc/latex/lshort-dutch/lshort-nl-1.3.pdf + RELOC/doc/latex/lshort-dutch/lshort-nl-1.3.pdf details="The document itself" language="nl" RELOC/doc/latex/lshort-dutch/lshort-nl-1.3.src.zip catalogue-ctan /info/lshort/dutch -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics tut-latex dutch-doc catalogue-version 1.3 name lshort-english category Package -revision 37892 -shortdesc A (Not So) Short Introduction to LaTeX2e. +revision 46763 +shortdesc A (Not So) Short Introduction to LaTeX2e relocated 1 longdesc The document derives from a German introduction ('lkurz'), longdesc which was translated and updated; it continues to be updated. longdesc This translation has, in its turn, been translated into several longdesc other languages; see the lshort catalogue entry for the current longdesc list. -docfiles size=464 +containersize 564 +containerchecksum 88214b8addd6169f3bb1168e2b3eaaf9786e0c20e9261ed403f8ee6c95a22252426438b75d0ef74770ec26cce1da012ce0d908df03fcf1aa0458294e8e6bb603 +doccontainersize 711536 +doccontainerchecksum 14a1bd61570b2445bc8f38595260aa791760a0bce82419acfcce0109698b5600b727c78233edf3cce25b1e2b17dad97cbd8829b072fa7b33d71a3949fc74f303 +docfiles size=182 RELOC/doc/latex/lshort-english/CHANGES - RELOC/doc/latex/lshort-english/README - RELOC/doc/latex/lshort-english/lshort-5.05.src.tar.gz - RELOC/doc/latex/lshort-english/lshort.pdf + RELOC/doc/latex/lshort-english/README details="Readme" + RELOC/doc/latex/lshort-english/lshort-6.2.src.tar.gz + RELOC/doc/latex/lshort-english/lshort.pdf details="The document itself" +catalogue-contact-home http://tobi.oetiker.ch/ catalogue-ctan /info/lshort/english -catalogue-date 2015-07-18 13:32:39 +0200 +catalogue-date 2018-02-28 14:19:41 +0100 catalogue-license gpl2 catalogue-topics tut-latex documentation -catalogue-version 5.0.5 +catalogue-version 6.2 + +name lshort-estonian +category Package +revision 39323 +shortdesc Estonian introduction to LaTeX +relocated 1 +longdesc This is the Estonian translation of Short Introduction to +longdesc LaTeX2e. +containersize 400 +containerchecksum 6bd3c07c1e5f9d543b0f67a5585cc33252567cc346a8d7feca050baf8ab437be97e73d2c4b4b159102e9c4772f8cce2abcbc25486d73e976b83a3d2f4b9e9487 +doccontainersize 2940172 +doccontainerchecksum e16397fac3e6cefa699b412ada1851c7792520da8af1230274fa1a337b890629b68f71d94b3894044f28e687c6aa60d766377e12232d0e522e82e18dc97428e3 +docfiles size=867 + RELOC/doc/latex/lshort-estonian/README details="Readme" + RELOC/doc/latex/lshort-estonian/lshort-ee-a5.pdf + RELOC/doc/latex/lshort-estonian/lshort-ee.pdf details="The document itself" language="et" + RELOC/doc/latex/lshort-estonian/src/appendix.tex + RELOC/doc/latex/lshort-estonian/src/biblio.tex + RELOC/doc/latex/lshort-estonian/src/contrib.tex + RELOC/doc/latex/lshort-estonian/src/custom.tex + RELOC/doc/latex/lshort-estonian/src/graphic.tex + RELOC/doc/latex/lshort-estonian/src/lshort-base.tex + RELOC/doc/latex/lshort-estonian/src/lshort-ee-a5.ind + RELOC/doc/latex/lshort-estonian/src/lshort-ee-a5.tex + RELOC/doc/latex/lshort-estonian/src/lshort-ee.ind + RELOC/doc/latex/lshort-estonian/src/lshort-ee.tex + RELOC/doc/latex/lshort-estonian/src/lshort.sty + RELOC/doc/latex/lshort-estonian/src/lssym.tex + RELOC/doc/latex/lshort-estonian/src/math.tex + RELOC/doc/latex/lshort-estonian/src/overview.tex + RELOC/doc/latex/lshort-estonian/src/preamble.tex + RELOC/doc/latex/lshort-estonian/src/spec.tex + RELOC/doc/latex/lshort-estonian/src/things.tex + RELOC/doc/latex/lshort-estonian/src/title.tex + RELOC/doc/latex/lshort-estonian/src/typeset.tex +catalogue-ctan /info/lshort/estonian +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl2 +catalogue-topics tut-latex estonian +catalogue-version 5.05 name lshort-finnish category Package revision 15878 -shortdesc Finnish introduction to LaTeX. +shortdesc Finnish introduction to LaTeX relocated 1 longdesc This is the Finnish translation of Short Introduction to longdesc LaTeX2e, with added coverage of Finnish typesetting rules. +containersize 424 +containerchecksum 997db393d16942e78e4f52eef886ac7b14cba7ec3fd0c88f8c2cc74fb6b35f3802c58c51ac0112cc2b086f9c3b965b5f8d508ea81a36edb7da1ce84ef83cd203 +doccontainersize 1681088 +doccontainerchecksum 71c2e5c4d49a779f529a527cda5fcc6e55cfa0149fc2d9272ae7e69aecf2a8a361b057bcfdf5deaa7791073bc6252c3101f5ce0b8d231c779e99c34910a3343f docfiles size=601 - RELOC/doc/latex/lshort-finnish/README - RELOC/doc/latex/lshort-finnish/lyhyt2e.pdf + RELOC/doc/latex/lshort-finnish/README details="Readme" + RELOC/doc/latex/lshort-finnish/lyhyt2e.pdf details="The document itself" language="fi" RELOC/doc/latex/lshort-finnish/src/asiat.tex RELOC/doc/latex/lshort-finnish/src/erikois.tex RELOC/doc/latex/lshort-finnish/src/esipuhe.tex @@ -100676,31 +164750,41 @@ docfiles size=601 RELOC/doc/latex/lshort-finnish/src/typeset.tex RELOC/doc/latex/lshort-finnish/src/viritys.tex catalogue-ctan /info/lshort/finnish -catalogue-date 2012-07-16 17:38:59 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics tut-latex finnish-doc name lshort-french category Package revision 23332 -shortdesc Short introduction to LaTeX, French translation. +shortdesc Short introduction to LaTeX, French translation relocated 1 longdesc French version of A Short Introduction to LaTeX2e. +containersize 404 +containerchecksum 1b2ab00e9e69eb058afd96c1ed099b8c783bb97bb52411cc907afcc82d43167ad6e2023a95671e90d059ee43ae335dae3401cc0d1b53c19c186992756aad5060 +doccontainersize 2147688 +doccontainerchecksum 2974f067584486528adf42a13cad28afd205f2f52680e89e8de33c4c0debdccb2d0d9d8259d6e2adaa5f86af0b9451232450d40ffacd9f63c43af2519cd8a06a docfiles size=690 - RELOC/doc/latex/lshort-french/README + RELOC/doc/latex/lshort-french/README details="Readme" RELOC/doc/latex/lshort-french/historique RELOC/doc/latex/lshort-french/lshort-fr-5.01fr-0.tgz - RELOC/doc/latex/lshort-french/lshort-fr.pdf + RELOC/doc/latex/lshort-french/lshort-fr.pdf details="The document itself" language="fr" catalogue-ctan /info/lshort/french -catalogue-date 2012-07-16 17:38:59 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics tut-latex french-doc catalogue-version 5.01fr-0 name lshort-german category Package -revision 37499 -shortdesc German version of A Short Introduction to LaTeX2e: LaTeX2e-Kurzbeschreibung. +revision 47401 +shortdesc German version of A Short Introduction to LaTeX2e: LaTeX2e-Kurzbeschreibung relocated 1 -docfiles size=320 +containersize 432 +containerchecksum 92795389c811be26f98af6df5bde8c521ceecef1861facab67622811a9d6859ac83daa78f0f37257588318a87214f1ece3f0ada40790661d09938914b0cea437 +doccontainersize 951712 +doccontainerchecksum 11a2745ff16418ad28dbe1cf4b88225a86899c30d102ea8fa6f3775aabab102772173335cd4985b8fa9b53e324e060ee11d8d31ededf0f6b7f5020443c835331 +docfiles size=328 RELOC/doc/latex/lshort-german/CHANGES RELOC/doc/latex/lshort-german/README.l2kurz RELOC/doc/latex/lshort-german/allgemeines.tex @@ -100722,18 +164806,24 @@ docfiles size=320 RELOC/doc/latex/lshort-german/seitenaufbau.tex RELOC/doc/latex/lshort-german/spezialitaeten.tex RELOC/doc/latex/lshort-german/textsatz.tex +catalogue-contact-repository https://github.com/texdoc/l2kurz catalogue-ctan /info/lshort/german -catalogue-date 2015-06-10 19:06:14 +0200 +catalogue-date 2018-04-09 00:59:18 +0200 catalogue-license opl -catalogue-version 3.0a +catalogue-topics tut-latex german-doc +catalogue-version 3.0c name lshort-italian category Package revision 15878 -shortdesc Introduction to LaTeX in Italian. +shortdesc Introduction to LaTeX in Italian relocated 1 longdesc This is the Italian translation of the Short Introduction to longdesc LaTeX2e. +containersize 396 +containerchecksum b92c1566d1a7c9a079d3d770e9d5bc8e33e61da53100c3cb4617e37765076accd16b89210da12ff954e25a97c55d8a2168f81789ab31c05f66bcd6a19168f719 +doccontainersize 685672 +doccontainerchecksum 2f46613ff2ebaad079a8f2bea6756932aa9dd0840977dcbb8ee195072c1d8c590549e362dc979e9bd373a46ec44d21303aab72f351d799d2a7a3f5b6883e2c06 docfiles size=282 RELOC/doc/latex/lshort-italian/CHANGES RELOC/doc/latex/lshort-italian/MANIFEST @@ -100741,17 +164831,22 @@ docfiles size=282 RELOC/doc/latex/lshort-italian/README RELOC/doc/latex/lshort-italian/TRANSLATIONS RELOC/doc/latex/lshort-italian/fixdate.pl - RELOC/doc/latex/lshort-italian/itlshort.pdf + RELOC/doc/latex/lshort-italian/itlshort.pdf details="The document itself" language="it" RELOC/doc/latex/lshort-italian/src.zip catalogue-ctan /info/lshort/italian -catalogue-date 2012-07-16 17:38:59 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics tut-latex italian-doc name lshort-japanese category Package revision 36207 shortdesc Japanese version of A Short Introduction to LaTeX2e relocated 1 +containersize 368 +containerchecksum 25de64f37ca5811ce39c8efc3e895c1deea317c8dd02ac3e091a41ff11ab7a4730a0e476d323d8375c41fd60401cf441c2c15d614a090092d66413701500d43c +doccontainersize 515744 +doccontainerchecksum 83292d42fa21614a055420eeb372ae5cf21a9a15b999e0b39f1063f63ee7fe53f77ce771a8aa649e860827214138fbd435161cb3dc4b3fdf2b75775979d904cd docfiles size=132 RELOC/doc/latex/lshort-japanese/00README RELOC/doc/latex/lshort-japanese/CHANGES.jp @@ -100759,41 +164854,50 @@ docfiles size=132 RELOC/doc/latex/lshort-japanese/jlshort-1.00.src.tar.gz RELOC/doc/latex/lshort-japanese/jlshort.pdf catalogue-ctan /info/lshort/japanese -catalogue-date 2012-07-16 17:38:59 +0200 +catalogue-date 2016-06-18 16:48:54 +0200 catalogue-license gpl +catalogue-topics tut-latex japanese-doc name lshort-korean category Package -revision 15878 -shortdesc Korean introduction to LaTeX. +revision 51035 +shortdesc Korean introduction to LaTeX relocated 1 longdesc A translation of Oetiker's original (not so) short longdesc introduction. -docfiles size=383 - RELOC/doc/latex/lshort-korean/README.ko - RELOC/doc/latex/lshort-korean/lshort-kr-src.tar.gz - RELOC/doc/latex/lshort-korean/lshort-kr.pdf +containersize 400 +containerchecksum 3353534a09681a9f1187156bb6cd9a3b4586b135328a7ce606a0e3ef15844d57ac76b5b55ee7cd42b1dfe3d67f784d4f0682c3ad0af0468ec2433452127b52ff +doccontainersize 1260504 +doccontainerchecksum 046095e09db9664f68b985882ac92da51895342c79a34f8045853df40d868a2d60c1189b93e47843ffe6fd4ecaa5e7144eeb68bb2954190a9d6bd99e9bd50de4 +docfiles size=315 + RELOC/doc/latex/lshort-korean/README.md details="Readme" + RELOC/doc/latex/lshort-korean/lshort-ko-src-20190507.tar.gz + RELOC/doc/latex/lshort-korean/lshort-ko.pdf details="The document itself" language="ko" catalogue-ctan /info/lshort/korean -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2019-05-07 16:46:37 +0200 catalogue-license fdl -catalogue-version 4.17 +catalogue-topics tut-latex korean-doc name lshort-mongol category Package revision 15878 -shortdesc Short introduction to LaTeX, in Mongolian. +shortdesc Short introduction to LaTeX, in Mongolian relocated 1 longdesc A translation of Oetiker's Not so short introduction. +containersize 412 +containerchecksum 464b6638ca4bf859ff178238625ecdb7016598fc98c476d3e4b2a24e2f34e6096edef5864ab325ab4df21bcf309a8467deda80b385b624685b38b538a0d40b8d +doccontainersize 1693292 +doccontainerchecksum cb60632992b187e5cc80973b9e9848675b464b075b13356db171c1a7613c94dd9bf8ea53df47e0c36c910772316f4c43857c8e638819d8ece7c1ce1790fc9d29 docfiles size=615 RELOC/doc/latex/lshort-mongol/00README RELOC/doc/latex/lshort-mongol/CHANGES RELOC/doc/latex/lshort-mongol/MANIFEST RELOC/doc/latex/lshort-mongol/Makefile - RELOC/doc/latex/lshort-mongol/README + RELOC/doc/latex/lshort-mongol/README details="Readme" RELOC/doc/latex/lshort-mongol/TODO RELOC/doc/latex/lshort-mongol/TRANSLATIONS RELOC/doc/latex/lshort-mongol/fixdate.pl - RELOC/doc/latex/lshort-mongol/lshort-mn.pdf + RELOC/doc/latex/lshort-mongol/lshort-mn.pdf details="The document itself" language="mn" RELOC/doc/latex/lshort-mongol/src/appendix.tex RELOC/doc/latex/lshort-mongol/src/biblio.tex RELOC/doc/latex/lshort-mongol/src/contrib.tex @@ -100813,19 +164917,24 @@ docfiles size=615 RELOC/doc/latex/lshort-mongol/src/title.tex RELOC/doc/latex/lshort-mongol/src/typeset.tex catalogue-ctan /info/lshort/mongolian/lshort-mongol -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics mongolian-doc tut-latex catalogue-version 4.26 name lshort-persian category Package revision 31296 -shortdesc Persian (Farsi) introduction to LaTeX. +shortdesc Persian (Farsi) introduction to LaTeX relocated 1 longdesc A Persian (Farsi) translation of Oetiker's (not so) short longdesc introduction. +containersize 404 +containerchecksum 6430462b11786fe3703e78efc9f1486da78db15601ae31e72a95d516d10a098c8b4c5dc9079490e652c57369698d3b4fe4d75b32c44ddd2a470aa5cbc79ab492 +doccontainersize 849972 +doccontainerchecksum 9e7c43f3df8299db4bfad3c0b270c5b54a1448370e6782d095dd9a9b82ccc186aae98da86b2efe71c34031a5f4a07f54f4640de6d8b6fad913252979d440ccd1 docfiles size=288 - RELOC/doc/latex/lshort-persian/README + RELOC/doc/latex/lshort-persian/README details="Readme" RELOC/doc/latex/lshort-persian/appendix.tex RELOC/doc/latex/lshort-persian/biblio.tex RELOC/doc/latex/lshort-persian/contrib.tex @@ -100833,7 +164942,7 @@ docfiles size=288 RELOC/doc/latex/lshort-persian/graphic.tex RELOC/doc/latex/lshort-persian/lshort-a5.tex RELOC/doc/latex/lshort-persian/lshort-base.tex - RELOC/doc/latex/lshort-persian/lshort.pdf + RELOC/doc/latex/lshort-persian/lshort.pdf details="The document itself" language="fa" RELOC/doc/latex/lshort-persian/lshort.sty RELOC/doc/latex/lshort-persian/lshort.tex RELOC/doc/latex/lshort-persian/lssym.tex @@ -100847,76 +164956,101 @@ docfiles size=288 RELOC/doc/latex/lshort-persian/transpreface.tex RELOC/doc/latex/lshort-persian/typeset.tex catalogue-ctan /info/lshort/persian -catalogue-date 2013-07-28 14:28:30 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics persian-doc catalogue-version 5.01 name lshort-polish category Package revision 15878 -shortdesc Introduction to LaTeX in Polish. +shortdesc Introduction to LaTeX in Polish relocated 1 longdesc This is the Polish translation of A Short Introduction to longdesc LaTeX2e. +containersize 400 +containerchecksum 13c52981d80ae9f9da34dbd14abedc166bb0abfe3dd31ba11f684b5912869be62e61a28d57d93dd81fe46f4d694429b3406bef774fa8b18b9918989fb839bf31 +doccontainersize 1116836 +doccontainerchecksum a284230f6599cef5fadacad2a3cac07f829cc8ba35a64b798fc76839b57a8867f745ecebf75d41a0c3bce05b3b868451ee141c65fe0dd8365d1807a38b8dc237 docfiles size=372 - RELOC/doc/latex/lshort-polish/README + RELOC/doc/latex/lshort-polish/README details="Readme" RELOC/doc/latex/lshort-polish/lshort2e.pdf RELOC/doc/latex/lshort-polish/src.zip catalogue-ctan /info/lshort/polish -catalogue-date 2012-08-25 14:43:44 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics polish-doc tut-latex name lshort-portuguese category Package revision 22569 -shortdesc Introduction to LaTeX in Portuguese. +shortdesc Introduction to LaTeX in Portuguese relocated 1 longdesc This is the Portuguese translation of A Short Introduction to longdesc LaTeX2e. +containersize 412 +containerchecksum 2c2d56eb0313dff9c2c102ef9d80d8e6029e35ab1ed8df5442c68b80fe4d746b3fb36b91b40cd831127e3004e1015ef61bb4b1c655d4e521f699ffc301f6d98c +doccontainersize 2187228 +doccontainerchecksum d9519e2dc7632c1d933c62696aec95402ba0cce9fe6ab74758073f23ff474cede7af24d97c9a480e734f801547c062956cd4541dd61064d004f00410de88bc15 docfiles size=710 RELOC/doc/latex/lshort-portuguese/pt-lshort-5.01.0.src.tar.gz RELOC/doc/latex/lshort-portuguese/pt-lshort.pdf catalogue-ctan /info/lshort/portuguese -catalogue-date 2012-08-25 10:03:02 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics portuguese-doc tut-latex catalogue-version 5.01.0 name lshort-russian category Package revision 18906 -shortdesc Russian introduction to LaTeX. +shortdesc Russian introduction to LaTeX relocated 1 longdesc Russian version of A Short Introduction to LaTeX2e. +containersize 380 +containerchecksum 71e40e2502db0706d5ea1776c49888a05229771eefea3d17b8260d489099249c59ff3b94f53eed14fb7b53806e1c29f99386cb4118bc28e2bacc3dc3875eaec4 +doccontainersize 1307888 +doccontainerchecksum 65183cee479c3f3afc909616f39c6e8a51c4032ed67563709713d8c1d9a6d2f681914c2ace4bacc88cbf37a4bab4fb400b2ec108b257b4e3e67c0f0611de6eb3 docfiles size=513 RELOC/doc/latex/lshort-russian/lshortru.pdf RELOC/doc/latex/lshort-russian/lshortru.zip catalogue-ctan /info/lshort/russian -catalogue-date 2012-08-25 10:03:02 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics russian-doc tut-latex name lshort-slovak category Package revision 15878 -shortdesc Slovak introduction to LaTeX. +shortdesc Slovak introduction to LaTeX relocated 1 longdesc A Slovak translation of Oetiker's (not so) short introduction. +containersize 392 +containerchecksum bf3821d0846701c2e45d89578625f517567d401d613f5aa7aaa4cdfdf8c4c4f87abec22d6fccac21b274afdba9c29c21a6918fabef77f4cca506071341b7cdbe +doccontainersize 708848 +doccontainerchecksum 8ee79c17e5ccc9dbb9f833b4f8927b22e7ce368f49f4d016fb936d2a5ec964791d9473b679a037d704efb269dc6caa1344168927a90a8e859527c64b0410996b docfiles size=221 RELOC/doc/latex/lshort-slovak/slshorte.pdf RELOC/doc/latex/lshort-slovak/src.zip catalogue-ctan /info/lshort/slovak -catalogue-date 2012-08-25 10:03:02 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics slovak tut-latex name lshort-slovenian category Package revision 15878 -shortdesc Slovenian translation of lshort. +shortdesc Slovenian translation of lshort relocated 1 longdesc A Slovenian translation of the Not So Short Introduction to longdesc LaTeX 2e. +containersize 452 +containerchecksum 933781a7b3b3481ad955aa346fd1011f9e6f8b27cdb4461f081a31331e8dd5fdcde72851b44aebfd9707a422c133099790d1f304c9f24f35d9fe2e12927061e8 +doccontainersize 1390728 +doccontainerchecksum 21a7611b67d9baa0065df15e86b38872f057bd4b3ed2a337e19f52a5ec49b409f4b1297d7d0ec951f40d0b1b4cd18cba1f1ae33228142ac27178520579659065 docfiles size=500 - RELOC/doc/latex/lshort-slovenian/README - RELOC/doc/latex/lshort-slovenian/lshort-slovenian.pdf + RELOC/doc/latex/lshort-slovenian/README details="Readme" + RELOC/doc/latex/lshort-slovenian/lshort-slovenian.pdf details="The document itself" RELOC/doc/latex/lshort-slovenian/src/biblio.tex RELOC/doc/latex/lshort-slovenian/src/contrib.tex RELOC/doc/latex/lshort-slovenian/src/custom.tex @@ -100934,18 +165068,24 @@ docfiles size=500 RELOC/doc/latex/lshort-slovenian/src/things.tex RELOC/doc/latex/lshort-slovenian/src/title.tex RELOC/doc/latex/lshort-slovenian/src/typeset.tex +catalogue-contact-home http://www-lp.fmf.uni-lj.si/plestenjak/vaje/latex/latex.htm catalogue-ctan /info/lshort/slovenian -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license gpl +catalogue-topics slovenian tut-latex catalogue-version 4.20 name lshort-spanish category Package revision 35050 -shortdesc Short introduction to LaTeX, Spanish translation. +shortdesc Short introduction to LaTeX, Spanish translation relocated 1 longdesc A Spanish translation of the Short Introduction to LaTeX2e, longdesc version 20. +containersize 412 +containerchecksum 127fc2d598f16d38b075b4a9668ded064537f7056aae34bdde22f89aa8d301d77cca818976e22aa036f47867929d30cc47e02ed3f724ea26279ecba723e5baf4 +doccontainersize 1538720 +doccontainerchecksum f968352fe1e32a918c1d5ebfce16d3975c436539349af22b32bfae1ab06061ac2b2b85feaed3e8a28da89956f4d5948e7d1a6426766144b0c0ebec72ecfe99cb docfiles size=583 RELOC/doc/latex/lshort-spanish/fuente/CAMBIOS RELOC/doc/latex/lshort-spanish/fuente/LEAME.utf8 @@ -100970,66 +165110,86 @@ docfiles size=583 RELOC/doc/latex/lshort-spanish/fuente/src/things.tex RELOC/doc/latex/lshort-spanish/fuente/src/title.tex RELOC/doc/latex/lshort-spanish/fuente/src/typeset.tex - RELOC/doc/latex/lshort-spanish/lshort-a4.pdf + RELOC/doc/latex/lshort-spanish/lshort-a4.pdf details="The document itself (A4 paper)" language="es" catalogue-ctan /info/lshort/spanish -catalogue-date 2014-08-27 19:21:34 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics spanish-doc tut-latex catalogue-version 0.5 name lshort-thai category Package revision 15878 -shortdesc Introduction to LaTeX in Thai. +shortdesc Introduction to LaTeX in Thai relocated 1 longdesc This is the Thai translation of the Short Introduction to longdesc LaTeX2e. +containersize 400 +containerchecksum 924081bb5ec18ffa92e92f71a5eb6da893ffe0b7460f757360e3bfdf15c08d4cbcad79b4d45cff702915b98ecea16212c4d5ab237c11410376677de527af71aa +doccontainersize 474892 +doccontainerchecksum a9522c99f62a8f51eb751d220495526f40cc7581b8d0fb120d6e9510b1af68e2c97158ec54fb220dbab4fc8d0070c93027741b549d01cfc3892bf373e3320f4f docfiles size=135 - RELOC/doc/latex/lshort-thai/lsh132.pdf + RELOC/doc/latex/lshort-thai/lsh132.pdf details="The document itself" RELOC/doc/latex/lshort-thai/lsh132.zip - RELOC/doc/latex/lshort-thai/readme + RELOC/doc/latex/lshort-thai/readme details="Readme" catalogue-ctan /info/lshort/thai -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics thai tut-latex catalogue-version 1.32 name lshort-turkish category Package revision 15878 -shortdesc Turkish introduction to LaTeX. +shortdesc Turkish introduction to LaTeX relocated 1 longdesc A Turkish translation of Oetiker's (not so) short introduction. +containersize 400 +containerchecksum 769036083d282ab95c5f1fed08d669dd4fb1d2dd7937e5a4e2fad54e20cf56ce3d5100b7aa612cc59dca50b6ff67fbbd5bbe05c085b6121654f873fcb991609c +doccontainersize 1427680 +doccontainerchecksum 3aad40a5de5eee9e59064b15fe3e9c6a2585146fc21fdaf4683bfcba6786366c4ff1b3c38b6932426f53a6a9211809d4173f688f0878cbf2011d8982e3732834 docfiles size=447 RELOC/doc/latex/lshort-turkish/README - RELOC/doc/latex/lshort-turkish/lshort-tr.pdf + RELOC/doc/latex/lshort-turkish/lshort-tr.pdf details="The document itself" language="tr" RELOC/doc/latex/lshort-turkish/trlshort-src.zip catalogue-ctan /info/lshort/turkish -catalogue-date 2012-08-17 13:10:56 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics tut-latex turkish catalogue-version 4.20 name lshort-ukr category Package revision 15878 -shortdesc Ukrainian version of the LaTeX introduction. +shortdesc Ukrainian version of the LaTeX introduction relocated 1 longdesc Ukrainian version of A Short Introduction to LaTeX2e. +containersize 396 +containerchecksum 18754d10f48df3ff86d644b772daf7f6530c4e03f0bd3373ccb12df2181aac26b4b5cef6bb673674b576a07fad2f3a13a5fde954a389090622f4d6f5ba9a4bac +doccontainersize 2085896 +doccontainerchecksum 03b8947d0e1d6e9d331c6ce6d60ae485bfab1b73ed936086a21f26b3d87116de99e535cd42f16561d3b839c84cbd343f8fa3167b1c478d6f8d0df3964d800e56 docfiles size=639 RELOC/doc/latex/lshort-ukr/lshort-ukr-4.12.src.tar.gz - RELOC/doc/latex/lshort-ukr/lshort-ukr.pdf + RELOC/doc/latex/lshort-ukr/lshort-ukr.pdf details="The document itself" catalogue-ctan /info/lshort/ukrainian -catalogue-date 2012-01-22 15:56:38 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics tut-latex ukrainian catalogue-version 4.00 name lshort-vietnamese category Package revision 15878 -shortdesc Vietnamese version of the LaTeX introduction. +shortdesc Vietnamese version of the LaTeX introduction relocated 1 longdesc Vietnamese version of A Short Introduction to LaTeX2e. +containersize 396 +containerchecksum ab9369125fa7283dc2a2b58999f57db3e5767e1e6810000fb71f2f0abdb693a60c2133703cf3427d35732769e393cf389733694aaa6d9e41f9ecf28073d06112 +doccontainersize 1569572 +doccontainerchecksum ba2fc0eeb69f845ca306c7a03c7f7a46cacd3304c420c048284d248202a12f34b176d91244ca25892a64f6ab734e852ea83ad888684cdafb644da7d665a02b2e docfiles size=599 - RELOC/doc/latex/lshort-vietnamese/README - RELOC/doc/latex/lshort-vietnamese/lshort-vi.pdf + RELOC/doc/latex/lshort-vietnamese/README details="Readme" + RELOC/doc/latex/lshort-vietnamese/lshort-vi.pdf details="The document itself" RELOC/doc/latex/lshort-vietnamese/src/LocalVariables RELOC/doc/latex/lshort-vietnamese/src/Makefile RELOC/doc/latex/lshort-vietnamese/src/README.txt @@ -101052,98 +165212,220 @@ docfiles size=599 RELOC/doc/latex/lshort-vietnamese/src/title.tex RELOC/doc/latex/lshort-vietnamese/src/typeset.tex catalogue-ctan /info/lshort/vietnamese -catalogue-date 2012-07-24 16:30:52 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics tut-latex vietnamese-doc catalogue-version 4.00 name lstaddons category Package revision 26196 -shortdesc Add-on packages for listings: autogobble and line background. +shortdesc Add-on packages for listings: autogobble and line background relocated 1 longdesc The bundle contains a small collection of add-on packages for longdesc the listings package. Current packages are: lstlinebgrd: colour longdesc the background of some or all lines of a listing; and longdesc lstautogobble: set the standard "gobble" option to the indent longdesc of the first line of the code. -runfiles size=2 - RELOC/tex/latex/lstaddons/lstautogobble.sty - RELOC/tex/latex/lstaddons/lstlinebgrd.sty +containersize 2208 +containerchecksum 8b2b14b28bcc4a3b4f26d2f48bbb59c111d4fd33d5479c20f7e03ac838c6b6631b99b1a5211b383e58dec74d70d9130af2a38e3b85407c4376f81e1b52c212b5 +doccontainersize 366356 +doccontainerchecksum 82bb6745b9f2342628bc83f356313c0de52148eef25ed3ade22f899693abe190de1a09347ebd2d03b06a5976d8c6f42994e2495eb7c4e513ddfa8244ca258cfd docfiles size=99 - RELOC/doc/latex/lstaddons/README - RELOC/doc/latex/lstaddons/lstautogobble.pdf - RELOC/doc/latex/lstaddons/lstlinebgrd.pdf + RELOC/doc/latex/lstaddons/README details="Readme" + RELOC/doc/latex/lstaddons/lstautogobble.pdf details="lstautogobble package documentation" + RELOC/doc/latex/lstaddons/lstlinebgrd.pdf details="lstlinebgrd package documentation" +srccontainersize 5576 +srccontainerchecksum 048555cb2355366b87d527a39ab64ca91226d366d52e2352c1f4d503daced739508e217893dd0d0b405e99b5927efdda0f68c780215c392494dcde20b30a88d9 srcfiles size=7 RELOC/source/latex/lstaddons/lstaddons.ins RELOC/source/latex/lstaddons/lstautogobble.dtx RELOC/source/latex/lstaddons/lstlinebgrd.dtx +runfiles size=2 + RELOC/tex/latex/lstaddons/lstautogobble.sty + RELOC/tex/latex/lstaddons/lstlinebgrd.sty +catalogue-contact-repository https://bitbucket.org/martin_scharrer/lstaddons catalogue-ctan /macros/latex/contrib/lstaddons -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 +catalogue-topics listing catalogue-version 0.1 +name lstbayes +category Package +revision 48160 +shortdesc Listings language driver for Bayesian modeling languages +relocated 1 +longdesc The package provides language drivers for the listings package +longdesc for several languages not included in that package: BUGS, JAGS, +longdesc and Stan. +containersize 2920 +containerchecksum 8089546f54a849fdd2b8cd1bb2430927a03249f1acb72bd9d37e9ce42770be2413c6ba8186a45eda8f52a3ba2f34e01e6073ed7acce5883d9407e4ccd86cc12e +doccontainersize 269280 +doccontainerchecksum 9e256d20493164eb1ed01bb6f7dc7f555d9617492fe14688c0852b85e27c1f8f7f1978b1352ea3294bea41f77ce505c6a5bf2910514240e62ce19c47c8da0ee6 +docfiles size=72 + RELOC/doc/latex/lstbayes/Makefile + RELOC/doc/latex/lstbayes/README.md details="Readme" + RELOC/doc/latex/lstbayes/examples.pdf details="Examples of use" + RELOC/doc/latex/lstbayes/examples.tex + RELOC/doc/latex/lstbayes/lstbayes.pdf details="Package documentation" +srccontainersize 4168 +srccontainerchecksum 9378291c820b65d1f1f126a47d6db40ad757009d71327f84e5b78fc4309d77272231cc892fb6881426130d6571b0e7caca7ee910117a9e2660cef42f6f0d7827 +srcfiles size=5 + RELOC/source/latex/lstbayes/lstbayes.dtx + RELOC/source/latex/lstbayes/lstbayes.ins +runfiles size=3 + RELOC/tex/latex/lstbayes/lstbayes.sty +catalogue-ctan /macros/latex/contrib/lstbayes +catalogue-date 2018-07-07 10:31:36 +0200 +catalogue-license lppl1.3 +catalogue-topics listing + +name lstfiracode +category Package +revision 49503 +shortdesc Use Fira Code font for listings +relocated 1 +longdesc The lstfiracode package defines FiraCodeStyle for the use with +longdesc the listings package. This style contains almost all ligatures +longdesc in Nikita Prokopov's Fira Code family of fonts. +containersize 2268 +containerchecksum d2752c177194f4926191245f6397ca1ad613e66708e245b29ed6719bfb7438cbbde8dc69a639bdaf7a4447d7737909a5dfdb465a0f0b446c0d30900b7d279c6c +doccontainersize 57084 +doccontainerchecksum ab396312abc4174267184dc2d5f4dd61e4510d3b70bcf1b6b84685cbe2e5941d6325d4abeb1d08f85cef62adc953d4a59ebc5d99fe9d7c643f7d25c3d36bfde7 +docfiles size=18 + RELOC/doc/latex/lstfiracode/README.md details="Readme" + RELOC/doc/latex/lstfiracode/lstfiracode.pdf details="Package documentation" + RELOC/doc/latex/lstfiracode/lstfiracode.tex +runfiles size=2 + RELOC/tex/latex/lstfiracode/lstfiracode.sty +catalogue-also fira +catalogue-contact-home https://github.com/RuixiZhang42/lstfiracode +catalogue-contact-support https://github.com/RuixiZhang42/lstfiracode/issues +catalogue-ctan /macros/latex/contrib/lstfiracode +catalogue-date 2018-12-24 23:12:37 +0100 +catalogue-license lppl1.3c +catalogue-topics listing +catalogue-version 0.1c + name lt3graph category Package -revision 35085 -shortdesc Provide a graph datastructure for experimental LaTeX3. +revision 45913 +shortdesc Provide a graph datastructure for experimental LaTeX3 relocated 1 longdesc The package defines a 'graph' data structure, for use in longdesc documents that are using the experimental LaTeX 3 syntax. +containersize 10864 +containerchecksum 9a3137a56952d18f41337f3ea1412180d6a0d7732178fe4855d23647d01648ddefd57859f786534c5bf39cb622da11e113a028135429ca38e6ea3bcfde41b5ca +doccontainersize 576392 +doccontainerchecksum efa314f54f3d7444931f4b7410c406fc89c35fc318882683cc97cd479faae00d3aeb58be06c9b174e59bbcc2bae57ff712983ba0c216a270441490866646fcfa +docfiles size=145 + RELOC/doc/latex/lt3graph/README details="Readme" + RELOC/doc/latex/lt3graph/lt3graph.pdf details="Package documentation" + RELOC/doc/latex/lt3graph/lt3graph.tex runfiles size=18 RELOC/tex/latex/lt3graph/lt3graph-dry.sty RELOC/tex/latex/lt3graph/lt3graph-packagedoc.cls RELOC/tex/latex/lt3graph/lt3graph.sty -docfiles size=142 - RELOC/doc/latex/lt3graph/README - RELOC/doc/latex/lt3graph/lt3graph.pdf - RELOC/doc/latex/lt3graph/lt3graph.tex +catalogue-contact-bugs https://github.com/mhelvens/latex-lt3graph/issues +catalogue-contact-repository https://github.com/mhelvens/latex-lt3graph catalogue-ctan /macros/latex/contrib/lt3graph -catalogue-date 2014-09-01 06:05:44 +0200 +catalogue-date 2017-11-26 00:48:38 +0100 catalogue-license lppl1.3 -catalogue-version 0.1.4 +catalogue-topics macro-supp expl3 +catalogue-version 0.1.9 name ltablex category Package revision 34923 -shortdesc Table package extensions. +shortdesc Table package extensions relocated 1 longdesc Modifies the tabularx environment to combine the features of longdesc the tabularx package (auto-sized columns in a fixed width longdesc table) with those of the longtable package (multi-page tables). -runfiles size=2 - RELOC/tex/latex/ltablex/ltablex.sty +containersize 2492 +containerchecksum 5a64bd2904338fc45d6150c6be6497d56cf2e190c41018527a59ef075db41f94378f8981d4b92e211f60f2d641408144c546f2de0bbe4a8e94b0a3cadf4311a8 +doccontainersize 233152 +doccontainerchecksum c3ab3559880077f63523c84cfc5cf363cf9f1d2c4d8aa9cb173b4a2dd07e5afbbdc9b1ea1b29cb50b64c68d65f4470dd9c1656703e0a1ac8955b72b87e33e804 docfiles size=60 - RELOC/doc/latex/ltablex/README - RELOC/doc/latex/ltablex/ltablex.pdf + RELOC/doc/latex/ltablex/README details="README file" + RELOC/doc/latex/ltablex/ltablex.pdf details="Package documentation" RELOC/doc/latex/ltablex/ltablex.tex +runfiles size=2 + RELOC/tex/latex/ltablex/ltablex.sty +catalogue-also xltabular catalogue-ctan /macros/latex/contrib/ltablex -catalogue-date 2014-08-13 20:58:38 +0200 +catalogue-date 2017-09-28 09:30:00 +0200 catalogue-license lppl +catalogue-topics table table-long catalogue-version 1.1 name ltabptch category Package revision 17533 -shortdesc Bug fix for longtable. +shortdesc Bug fix for longtable relocated 1 longdesc A patch for LaTeX bugs tools/3180 and tools/3480. The patch longdesc applies to version 4.11 of longtable. -runfiles size=3 - RELOC/tex/latex/ltabptch/ltabptch.sty +containersize 4740 +containerchecksum 15c839c34935ee27b0b741325a13cbe6ec2f918b007ddd691029ce341173d12ca0e5cdef3a0111c3148257babf686815c5f81c92b6019cbbb022608535f17283 +doccontainersize 267928 +doccontainerchecksum d85ff06112e540d5bd3cac2bc6100d7d922e44d3388d247e521119ee4145716ef52889515b640e85c8a21405a35fbf63b168af09253e772e826572b0560305ac docfiles size=73 - RELOC/doc/latex/ltabptch/README - RELOC/doc/latex/ltabptch/ltabptch.pdf + RELOC/doc/latex/ltabptch/README details="Readme" + RELOC/doc/latex/ltabptch/ltabptch.pdf details="Package documentation" RELOC/doc/latex/ltabptch/ltabptch.tex RELOC/doc/latex/ltabptch/ltabtest.tex +runfiles size=3 + RELOC/tex/latex/ltabptch/ltabptch.sty +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html catalogue-ctan /macros/latex/contrib/ltabptch -catalogue-date 2012-07-10 11:52:24 +0200 +catalogue-date 2017-05-06 08:44:32 +0200 catalogue-license lppl +catalogue-topics table-long catalogue-version 1.74d +name ltb2bib +category Package +revision 43746 +shortdesc Converts amsrefs' .ltb bibliographical databases to BibTeX format +relocated 1 +longdesc This package implements a LaTeX command that converts an +longdesc amsrefs bibliographical database (.ltb) to a BibTeX +longdesc bibliographical database (.bib). ltb2bib is the reverse of the +longdesc "amsxport" option in amsrefs. Typical uses are: produce bib +longdesc entries for some publishers which don't accept amsrefs (Taylor +longdesc & Francis, for example); import an ltb database in a database +longdesc management program, e.g. for sorting; access one's ltb database +longdesc within emacs's RefTeX mode. +containersize 2420 +containerchecksum 42e634e7c3018b87825e2bae40513eeb757520e1dba1b1b20244bee2d0fadc4663cbfa0dfdf74fa71f7821f47c41bb7c873a64cc68e153f9b7207f6a8bf3f8a9 +doccontainersize 42552 +doccontainerchecksum c26b018043c14022acc64bfaff6377988b5e40d09ac10916479079550bdbcfa5219df13988327679e7647c4a679490645376ed23be0601dc4df0528d45725325 +docfiles size=15 + RELOC/doc/latex/ltb2bib/README details="Readme" + RELOC/doc/latex/ltb2bib/bibdest.bib + RELOC/doc/latex/ltb2bib/doltb2bib.tex + RELOC/doc/latex/ltb2bib/ltb2bib.pdf details="Package documentation" + RELOC/doc/latex/ltb2bib/ltbsource.ltb +srccontainersize 4568 +srccontainerchecksum 0ed23f0084e3afbf51cb6a5c6079db62fd8dca9ef12a159b4be1d68ede6b632155ebc0ee9d6fc91cf93d2cddb5463b5d52b14cb72e7c1d61b975c891f710af3f +srcfiles size=5 + RELOC/source/latex/ltb2bib/ltb2bib.dtx + RELOC/source/latex/ltb2bib/ltb2bib.ins +runfiles size=2 + RELOC/tex/latex/ltb2bib/ltb2bib.sty +catalogue-also amsrefs +catalogue-ctan /biblio/bibtex/utils/ltb2bib +catalogue-date 2018-01-07 12:06:50 +0100 +catalogue-license lppl1.3 +catalogue-topics biblio +catalogue-version 0.01 + name ltxdockit category Package revision 21869 -shortdesc Documentation support. +shortdesc Documentation support relocated 1 longdesc This bundle, consisting of a simple wrapper class and some longdesc packages, forms a small LaTeX/BibTeX documentation kit; the @@ -101153,23 +165435,28 @@ longdesc capable of dealing with problems unaided. (The actual purpose longdesc of releasing the package is to make it possible for third longdesc parties to compile the documentation of other packages, should longdesc that be necessary.) +containersize 6272 +containerchecksum 1144bd68bec92b4ac9ec8763e2e7df7c6018cd8b88c7ed2f02e7597c3bc13608a562551d80fab2a41b8aa9881848fa1b3501da7ae9c39edaae3720875ff65bd8 +doccontainersize 968 +doccontainerchecksum a47852f464e8c31d9a2926e55d62c090292337acad6398568c7082012899045ce32163b798b25ac090e7fbd6ebec95f17a83ee1fdfe5f1f33d0b423dbeed94a1 +docfiles size=1 + RELOC/doc/latex/ltxdockit/README details="Readme" runfiles size=8 RELOC/tex/latex/ltxdockit/btxdockit.sty RELOC/tex/latex/ltxdockit/ltxdockit.cfg RELOC/tex/latex/ltxdockit/ltxdockit.cls RELOC/tex/latex/ltxdockit/ltxdockit.def RELOC/tex/latex/ltxdockit/ltxdockit.sty -docfiles size=1 - RELOC/doc/latex/ltxdockit/README catalogue-ctan /macros/latex/contrib/ltxdockit -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics doc-supp catalogue-version 1.2d name ltxfileinfo category Package -revision 36121 -shortdesc Print version information for a LaTeX file. +revision 38663 +shortdesc Print version information for a LaTeX file longdesc ltxfileinfo displays version information for LaTeX files. If no longdesc path information is given, the file is searched using longdesc kpsewhich. As an extra, for developers, the script will (use @@ -101177,55 +165464,365 @@ longdesc the --star or --color options) check the valididity of the longdesc \Provides... statements in the files. The script uses code from longdesc Uwe Luck's readprov.sty. depend ltxfileinfo.ARCH +containersize 5168 +containerchecksum ca078af6b822747e9b337eb5694c1b019444e55f5f9f9dbdf59fa1a65c9445b19a62b0d610514c9231365017d3ea95ad9288a37b62b400c12df74c0c7f774a44 +doccontainersize 37612 +doccontainerchecksum 0020ffc5874e0545c7ae4d1f6f9c0d5d598786444f4e98369e0c5fc872c5d63f235222594a9b0f5d2def5c3dcafc5ad660a4fd5a9e4551dd7717bc6ac06189d5 +docfiles size=11 + texmf-dist/doc/support/ltxfileinfo/README details="README" + texmf-dist/doc/support/ltxfileinfo/ltxfileinfo.pdf details="Package documentation" runfiles size=4 texmf-dist/scripts/ltxfileinfo/ltxfileinfo -docfiles size=11 - texmf-dist/doc/support/ltxfileinfo/README - texmf-dist/doc/support/ltxfileinfo/ltxfileinfo.pdf catalogue-ctan /support/ltxfileinfo -catalogue-date 2015-01-22 20:57:55 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl -catalogue-version 2.02 +catalogue-topics file-mgmt +catalogue-version 2.04 + +name ltxfileinfo.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of ltxfileinfo +containersize 340 +containerchecksum 3c9c4aec2c0f28ace8bf14a2b0e66176d2487c512fef920521316fabdb15335302e5a3acde00d96db68afcacd3f0d8e6930b27116c91b0bff712cd1c2e8bff55 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/ltxfileinfo + +name ltxfileinfo.amd64-freebsd +category Package +revision 29005 +shortdesc amd64-freebsd files of ltxfileinfo +containersize 344 +containerchecksum 665445cc3fbdcc60f623bb0246dda8ce3bc39debf2b9e17bf96859f935f5d58f1611d125d6ad5cc2492148538e201073ac5316c76482219ea288a9b353be57ac +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/ltxfileinfo + +name ltxfileinfo.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of ltxfileinfo +containersize 340 +containerchecksum 29fead6afcd834dc67ffd5c39c1e89f2289bbc345cfa64baf3099dc5d8a6f44d91ed9fe98de0961bd55690591dc85ca3b9afcc89402ff17c5e869243a4ba3787 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/ltxfileinfo + +name ltxfileinfo.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of ltxfileinfo +containersize 340 +containerchecksum 446b416521942f5f6ae2ec496d86546420cafd8db029359c0b61e4445c831e16e19cd914f2650eaccb10abc36628f246e92de894b97a93b334c7555a5e2ad4c9 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/ltxfileinfo + +name ltxfileinfo.i386-cygwin +category Package +revision 29005 +shortdesc i386-cygwin files of ltxfileinfo +containersize 340 +containerchecksum 838a102b9643b368ea9a8a2c7bb2b516a4bd4ed46932ea290cd3d55670a8fa59127c3508512cc86955efb8064517007b0c7473d291da523513589ca378435166 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/ltxfileinfo + +name ltxfileinfo.i386-freebsd +category Package +revision 29005 +shortdesc i386-freebsd files of ltxfileinfo +containersize 340 +containerchecksum 07431a9fa68ef11962070eddd44588e75412c80b0ce2eaf2847f9c7d23a0c50b3d31eecf4c136d646abc27e8054a47824fbe309a311387bf1c8337d8db190da8 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/ltxfileinfo name ltxfileinfo.i386-linux category Package revision 29005 shortdesc i386-linux files of ltxfileinfo +containersize 340 +containerchecksum 9569ebd9bd49f02a5561820d0b6b9216b848458ae6fbaeca807efebd6cd73538ff1024886f29171e0194e15c69b977a693aa2f914b29342705cc01eb5b26ba03 binfiles arch=i386-linux size=1 bin/i386-linux/ltxfileinfo +name ltxfileinfo.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of ltxfileinfo +containersize 340 +containerchecksum 103a20f329949665145a00a92b2f0507588d3205c46b9e1e98d51f8086885da5e5a13bf86e38c221cae4886a249791105765ed18773a6d3bc4ddea4c7a95a603 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/ltxfileinfo + +name ltxfileinfo.i386-solaris +category Package +revision 29005 +shortdesc i386-solaris files of ltxfileinfo +containersize 340 +containerchecksum dbb0089483f077b63b1bd76bb323005d711d9b8d88ec2cf8cda9975b55aaa75a504f95264c9ca420a0bf80c976c3ccd9e4a759523f2e52f16c10a2ef2161bc76 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/ltxfileinfo + +name ltxfileinfo.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of ltxfileinfo +containersize 344 +containerchecksum 4e2bb3fecb3068e56fb78de0e5369a36bd2e32b842cbcbcd8a66906f3b8c286991da922ecb6b2b2db908cb71237c1a6b8651db7a769b75183cbe297ed9d9ded0 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/ltxfileinfo + +name ltxfileinfo.x86_64-darwin +category Package +revision 29005 +shortdesc x86_64-darwin files of ltxfileinfo +containersize 344 +containerchecksum 4e09984ba98638dbfc2ce403a8aa73d47e7e6df26ab93ea0c3e8389954e40842fd4d85917d8c1e70b02beb469cf0d38ba5e867386a3df61437e79621f4026431 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/ltxfileinfo + +name ltxfileinfo.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of ltxfileinfo +containersize 348 +containerchecksum ddda5dcb7651ddb1aeb0c80bff0805bc638013e12dbf9b092a1d1742a56389e0558339e92644646e62fbc8abe7ae2db49d38d91cd60c4a4b7de8d54ffcc4af42 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/ltxfileinfo + +name ltxfileinfo.x86_64-linux +category Package +revision 29005 +shortdesc x86_64-linux files of ltxfileinfo +containersize 340 +containerchecksum abbc2a59304e287db2317ad375aaadce33afb258202263d49727e0b1c1d91dc7112d9ec40deed43373b8da5029719bcb8d453974b22f8eec525b19509749811f +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/ltxfileinfo + +name ltxfileinfo.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of ltxfileinfo +containersize 344 +containerchecksum cbbb67d45a7bfe3dad5843f95d31e394cd8aee926f3ea3c680fe722797d626c6f8e9efd87c011f7dce1a65ce4946f92f6a9422f85f9467e9f907f4b504ad2fca +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/ltxfileinfo + +name ltxfileinfo.x86_64-solaris +category Package +revision 29005 +shortdesc x86_64-solaris files of ltxfileinfo +containersize 340 +containerchecksum 2da7662f2f819dc7a67b882b4439a7d0ac1ce44b52a5083cea70fde9f7a2b734ba7b647d835c4eef4a52eb9eb94a2b8263503203e54998105387af03a1be5f1f +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/ltxfileinfo + +name ltxguidex +category Package +revision 50992 +shortdesc An extended ltxguide class +relocated 1 +longdesc The ltxguidex document class extends ltxguide with a set of +longdesc environments and commands that make writing beautiful LaTeX +longdesc documentation easier and more natural. +containersize 2792 +containerchecksum bb808c7fc1d3fdc7a4d065822a5ff67113bd9fa47a60762b5674040c52149cad14ecd2d0612216b15bcb9684e65e9b51312f83f14030e66de37ee30dabbad434 +doccontainersize 75384 +doccontainerchecksum 534e51a54903e1bbc783b5120015178c48a1a9ff3b06b2121bc9f79c95b7fdc1bc64c374af27a357a44c67df45bb70699d788c150c625d7d949acdce5b109a3a +docfiles size=27 + RELOC/doc/latex/ltxguidex/LICENSE.txt + RELOC/doc/latex/ltxguidex/README.md details="Readme" + RELOC/doc/latex/ltxguidex/ltxguidex.pdf details="Package documentation" + RELOC/doc/latex/ltxguidex/ltxguidex.tex +runfiles size=2 + RELOC/tex/latex/ltxguidex/ltxguidex.cls +catalogue-contact-bugs https://github.com/9999years/ltxguidex/issues +catalogue-contact-home https://github.com/9999years/ltxguidex +catalogue-ctan /macros/latex/contrib/ltxguidex +catalogue-date 2019-04-15 21:59:07 +0200 +catalogue-license lppl1.3c +catalogue-topics class +catalogue-version 0.2.0 + name ltximg category Package -revision 37006 -shortdesc Split LaTeX files to sanitise a conversion process. -longdesc The package provides a Perl script that extracts all TikZ and -longdesc PStricks environments for separate processing to produce images -longdesc (in eps, pdf, png or jpg format) for use by a converter or the -longdesc preview bundle. +revision 47568 +shortdesc Extract LaTeX environments into separate image files +longdesc ltximg is a Perl script that automates the process of +longdesc extracting and converting environments provided by TikZ, +longdesc PStricks and other packages from input file to image formats in +longdesc individual files using ghostscript and poppler-utils. It +longdesc generates a file with only extracted environments, and another +longdesc with environments converted to \includegraphics. depend ltximg.ARCH -runfiles size=9 +containersize 15896 +containerchecksum 388b4826e49a57071f5dc8718d02d9f62f1c4f85368ee9e2f3f435fecd80c698cd3acde79d0dc9edcdda46e1cb2386e6efefc12a25b79f6ed73c0b5e5ce1dca6 +doccontainersize 189772 +doccontainerchecksum 2c5af9f2b1a843f5e27f96759cdca8d92dec87013cdfadceeafacbf77eed00e2db9dc286ecc7316cc6838fb85f59c399457490529426fb2ef7daf02f393fb622 +docfiles size=50 + texmf-dist/doc/support/ltximg/CHANGUES.md + texmf-dist/doc/support/ltximg/README.md details="Readme" + texmf-dist/doc/support/ltximg/ltximg-doc.pdf details="Package documentation" +srccontainersize 15552 +srccontainerchecksum 0fc1d77f977324b8e01d20f33201850596f93b99e10df9fe9da1a4e2c95a3cec816d6b3bc5fdcd4471a4d81224cc5a176c7a3ca633578c0f00703a5cc4839860 +srcfiles size=15 + texmf-dist/source/support/ltximg/ltximg-doc.dtx +runfiles size=16 texmf-dist/scripts/ltximg/ltximg.pl -docfiles size=90 - texmf-dist/doc/support/ltximg/CHANGES - texmf-dist/doc/support/ltximg/README - texmf-dist/doc/support/ltximg/ltximg-doc.pdf - texmf-dist/doc/support/ltximg/ltximg-doc.tex +catalogue-contact-bugs https://github.com/pablgonz/ltximg/issues +catalogue-contact-home https://github.com/pablgonz/ltximg +catalogue-contact-repository https://github.com/pablgonz/ltximg catalogue-ctan /support/ltximg -catalogue-date 2015-04-22 19:16:32 +0200 -catalogue-license gpl2 -catalogue-version 1.2 +catalogue-date 2018-04-19 15:27:23 +0200 +catalogue-license gpl3+ +catalogue-topics chunks +catalogue-version 1.5 + +name ltximg.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of ltximg +containersize 340 +containerchecksum cfec1a93aa4a23513f8e1acca4892e24c624b06ca543eba072e1be45137283359360d62ce46f649404e5c9018a0c73b2041783685648257c3ab36b9056eecec5 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/ltximg + +name ltximg.amd64-freebsd +category Package +revision 32346 +shortdesc amd64-freebsd files of ltximg +containersize 340 +containerchecksum 0f29b47cb8984405c2354e9f334dbbaa7b3f50c08c62471060e7ab5bf8aedc32a7e8b37bc5bc5040926da7f7572fb3b4eabf35e118e1516a902a06b637c57ec1 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/ltximg + +name ltximg.amd64-netbsd +category Package +revision 32346 +shortdesc amd64-netbsd files of ltximg +containersize 340 +containerchecksum 0bd635e60b54384324cecf677972ebf027c5d1ed0cd701034b787ef2fd74dad1a52048b7e5fa347dc0d7983c07afc41985f073817f7102f00244e492daa94fec +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/ltximg + +name ltximg.armhf-linux +category Package +revision 32346 +shortdesc armhf-linux files of ltximg +containersize 340 +containerchecksum 700488f3b916340e88c1743532b99a877d78f4fa42cc2c3401178c906a114ef4344f51a84fa89e1b42b9f3af7790b68f537dc1c0c65279646b85ae23251cb701 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/ltximg + +name ltximg.i386-cygwin +category Package +revision 32346 +shortdesc i386-cygwin files of ltximg +containersize 340 +containerchecksum feace8a7e90a96d84869963bde27e0f4982ad8a604ec83b9d1c2886c25914fd55c380d8e5bdc968a5ba5b81b6e45adedff09f3741b33d6e8d42b4aa5f81c634d +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/ltximg + +name ltximg.i386-freebsd +category Package +revision 32346 +shortdesc i386-freebsd files of ltximg +containersize 340 +containerchecksum 584acccfc0166b116465f99615da5d264ec9ef548a81ca807ee090031d2607efe4fcf15e18276437716e3cf8d4230bc1f87f9020e906b345355c278cffd5ed22 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/ltximg name ltximg.i386-linux category Package revision 32346 shortdesc i386-linux files of ltximg +containersize 340 +containerchecksum f1861921acd65556a6b4780869c9f1e56817fe08b9970e0c14e92ec7c604d8e484c505b65f44daf25bb13868104d205a520115cc50bcd1e8b258369774965cb8 binfiles arch=i386-linux size=1 bin/i386-linux/ltximg +name ltximg.i386-netbsd +category Package +revision 32346 +shortdesc i386-netbsd files of ltximg +containersize 340 +containerchecksum bf8e09d026e97c5c8eabd082f2002d80ef1647a5a43ab65fc4c114360400d880608430dda96bca423c2185eb59c58060b3e82df90e20bc07bcda9c3bded64d51 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/ltximg + +name ltximg.i386-solaris +category Package +revision 32346 +shortdesc i386-solaris files of ltximg +containersize 340 +containerchecksum 905a20bb870fa268ce3c35ec3e375ecc561b5394d01f9c643a9cce1b72b894501ce0ae0006aa6b5f86c85ac623e5ff8b183ba098d9d6e8e0be694f6ec85aba44 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/ltximg + +name ltximg.win32 +category Package +revision 32346 +shortdesc win32 files of ltximg +containersize 680 +containerchecksum 136d56035fcd5b7eb708a651709eb559f21bd926cfa115f7314ea3c2636d0d1e51c3587c7ae10c8f2448aa3c77728f628d62bf80ad6025573f676e25ad5ff7a9 +binfiles arch=win32 size=1 + bin/win32/ltximg.exe + +name ltximg.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of ltximg +containersize 344 +containerchecksum 6e0d8d4b234b0fb1ea219a6bab8b5606659c541a6b2fdfae15e7b7552f61e92a8c353a13733fc42feb901f977fdf18da50120583fb5cd0cff378e2de083bc4d4 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/ltximg + +name ltximg.x86_64-darwin +category Package +revision 32346 +shortdesc x86_64-darwin files of ltximg +containersize 340 +containerchecksum 876f146ba83a28e92be0266ab894411c79c4c821e8f9f4d2ad4d68e31dc23f2daf430e7d789f69b456bd9554c67ac7ad693f1d184b732bee78cff7fefe28c55c +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/ltximg + +name ltximg.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of ltximg +containersize 348 +containerchecksum 36239e69b7e9364b99ca0f7fe2bdcb8b42d9b0978e8310df0977266ec2a3659da90659c48f81deca11b83658b6c70b81de81e06a9aaa9bdb1473ee2cb3eefb3e +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/ltximg + +name ltximg.x86_64-linux +category Package +revision 32346 +shortdesc x86_64-linux files of ltximg +containersize 340 +containerchecksum 2ef55ccc1cf5cd9bea41f8276d9004ce2377bde570f858322af12cee0fba495f8870351d34db9a57123f5777ec09e08c0de23c1c2ec167ce6d8228108a4a7540 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/ltximg + +name ltximg.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of ltximg +containersize 344 +containerchecksum 8777adbca91cfe95be9841dfb24b2dc64fb820f9d26f846dfd63fbf9e655b7e9d730d1b16b8a46bc8160d60ed32b53d0a3ee562f6ccd6e59e25117d7b26bc626 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/ltximg + +name ltximg.x86_64-solaris +category Package +revision 32346 +shortdesc x86_64-solaris files of ltximg +containersize 340 +containerchecksum edc764c41fda822146c93c07cd22b334dfbf66a1a1c5d7c3e1e0c49bef164c1f9ae06884a1c70b4bd5f443f5f93bdea4861f5debd379c5483c1ca9525ed5a1f4 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/ltximg + name ltxindex category Package revision 15878 -shortdesc A LaTeX package to typeset indices with GNU's Texindex. +shortdesc A LaTeX package to typeset indices with GNU's Texindex relocated 1 longdesc A LaTeX package that allows the user to make indexes with GNU's longdesc Texindex program, instead of makeindex. It provides the @@ -101233,23 +165830,30 @@ longdesc indexing commands available in Texinfo by default, but only longdesc defines the concept index (cp) by default -- the user must longdesc define other standard indexes, and there is no provision for longdesc custom indexes. The package is not currently maintained. -runfiles size=2 - RELOC/tex/latex/ltxindex/ltxindex.sty +containersize 2592 +containerchecksum ff757a44f29820ab29946f66766b11a928db11b90269781b8039428aab4bf0b243b317176aebc92cfe95bf2e390be125012daa72ac4b8bfaab81477ed8129ba7 +doccontainersize 76096 +doccontainerchecksum 119f18b8337b365e09b5d6a22ab447bcd0d4d516514c7bc6622d8b1f30aec5746f45d81cfbc07a81aed9de7f47627797b9c7cac3015092f7ca72acd79d5263ec docfiles size=26 - RELOC/doc/latex/ltxindex/README + RELOC/doc/latex/ltxindex/README details="Readme" RELOC/doc/latex/ltxindex/copying.txt - RELOC/doc/latex/ltxindex/ltxindex.pdf + RELOC/doc/latex/ltxindex/ltxindex.pdf details="Package documentation" +srccontainersize 5908 +srccontainerchecksum efadcca7c0224c4bb3814588947f7dc507140dc3624c5cdb3c7a788afa763c1cae5f607bcd4a67872dad97e725afe7e9f99f3a694c8398aebfaacc31f2b737ae srcfiles size=5 RELOC/source/latex/ltxindex/ltxindex.dtx +runfiles size=2 + RELOC/tex/latex/ltxindex/ltxindex.sty catalogue-ctan /macros/latex/contrib/ltxindex -catalogue-date 2014-06-05 22:40:19 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics index catalogue-version 0.1c name ltxkeys category Package revision 28332 -shortdesc A robust key parser for LaTeX. +shortdesc A robust key parser for LaTeX relocated 1 longdesc The package provides facilities for creating and managing keys longdesc in the sense of the keyval and xkeyval packages, but it is @@ -101261,25 +165865,33 @@ longdesc package is faster than xkeyval package because (among other longdesc things) it avoids character-wise parsing of key values (called longdesc "selective sanitization" by the xkeyval package). The package longdesc also provides functions for defining and managing keys. -runfiles size=34 - RELOC/tex/latex/ltxkeys/ltxkeys.sty +containersize 25344 +containerchecksum f99008a8d6d18697d095721dfd741ed2dc48f6edad09b15d39ce2c37f05e6f9c9d613a4ca7ba7fce8755f9dc5659e21f7e7961a7e38dbe17b7114c2337103d8f +doccontainersize 722900 +doccontainerchecksum ab28eae4955de3e5a23be1d718fd1e23384ec0e4a8c4b86348bd83ff501ec2e51a3981c60babd478bca0c115ba524367f77f3cabd3f733b82a9fe4cc5fc06878 docfiles size=351 - RELOC/doc/latex/ltxkeys/README + RELOC/doc/latex/ltxkeys/README details="Readme" RELOC/doc/latex/ltxkeys/ltxkeys-guide-table1.tex RELOC/doc/latex/ltxkeys/ltxkeys-guide.cfg - RELOC/doc/latex/ltxkeys/ltxkeys-guide.pdf + RELOC/doc/latex/ltxkeys/ltxkeys-guide.pdf details="Package documentation" RELOC/doc/latex/ltxkeys/ltxkeys-guide.tex RELOC/doc/latex/ltxkeys/ltxkeys-test-20121122.tex +runfiles size=34 + RELOC/tex/latex/ltxkeys/ltxkeys.sty +catalogue-also xkeyval catalogue-ctan /macros/latex/contrib/ltxkeys -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics keyval catalogue-version 0.0.3c name ltxmisc category Package revision 21927 -shortdesc Miscellaneous LaTeX packages, etc. +shortdesc Miscellaneous LaTeX packages, etc relocated 1 +containersize 15384 +containerchecksum 3433a283f52c41f198b944eaf58a961751e7fd3c0991960a2516fd72af61671e776f48c6a5e241e379b54a08af6fba732ab1c35e42b8c93a62937b5a38cdb767 runfiles size=17 RELOC/tex/latex/ltxmisc/abstbook.cls RELOC/tex/latex/ltxmisc/beletter.cls @@ -101293,13 +165905,14 @@ runfiles size=17 RELOC/tex/latex/ltxmisc/topcapt.sty RELOC/tex/latex/ltxmisc/vrbexin.sty catalogue-ctan /macros/latex/contrib/misc -catalogue-date 2012-07-10 13:36:48 +0200 +catalogue-date 2016-06-18 16:48:54 +0200 catalogue-license collection +catalogue-topics collection name ltxnew category Package revision 21586 -shortdesc A simple means of creating commands. +shortdesc A simple means of creating commands relocated 1 longdesc The package ltxnew provides \new, \renew and \provide prefixes longdesc for checking definitions. It is designed to work with e-TeX @@ -101309,26 +165922,39 @@ longdesc muskips, boxes, tokens and marks are provided by the etex longdesc package. \new and \renew as well as \provide may be used for longdesc all kind of control sequences. Please refer to the section longdesc "Using \new" of the PDF documentation. -runfiles size=3 - RELOC/tex/latex/ltxnew/ltxnew.sty +containersize 2828 +containerchecksum 7dda3fd3638ddf528adda0430cbd32cd8fe410a743b7af5bf76e651ee98b10f2481723665a19fda2f2b468ca5c4a838144cbd6e9c457f50362f7b0e83106de26 +doccontainersize 153768 +doccontainerchecksum 91e07169ac377570382b9bc7044c0d66b61268fca38e2fcff4d7075322dbed0d3151976848c93b5d0a2088676e67f3a79d2a555829f170ca61a37b7c40fbdf66 docfiles size=63 - RELOC/doc/latex/ltxnew/README - RELOC/doc/latex/ltxnew/ltxnew.pdf + RELOC/doc/latex/ltxnew/README details="Readme" + RELOC/doc/latex/ltxnew/ltxnew.pdf details="Package documentation" +srccontainersize 10704 +srccontainerchecksum 0718785df4355f264738d8929128e4024eae629dcc1fc51e0d408ace6be8688b9281bc0e352e401a6fba71b0a3f376610fdbea7520443233d088e93740e0dbc7 srcfiles size=10 RELOC/source/latex/ltxnew/ltxnew.dtx RELOC/source/latex/ltxnew/ltxnew.ins +runfiles size=3 + RELOC/tex/latex/ltxnew/ltxnew.sty catalogue-ctan /macros/latex/contrib/ltxnew -catalogue-date 2012-07-10 13:36:48 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics macro-def catalogue-version 1.3 name ltxtools category Package revision 24897 -shortdesc A collection of LaTeX API macros. +shortdesc A collection of LaTeX API macros relocated 1 longdesc This is a bundle of macros that the author uses in the coding longdesc of others of his macro files. +containersize 51564 +containerchecksum aed74d79bd9da7f7303cd14db5c2a74aab51de03e87a84986b294019a971eb68a445cace8af2394631fc4ec6963ad32347c47a80612f70a7427adeb689d3cf36 +doccontainersize 1024 +doccontainerchecksum e0a8b28f512a15fec379aeb3350c0611a77652531a66ee5a39010400fe5d1416c40bf6bd89d4e967851b09ad5d11b1d83ead675a0a722255a0e941980d74d1d5 +docfiles size=1 + RELOC/doc/latex/ltxtools/README details="Readme" runfiles size=73 RELOC/tex/latex/ltxtools/ltxtools-base.sty RELOC/tex/latex/ltxtools/ltxtools-doc.sty @@ -101338,17 +165964,110 @@ runfiles size=73 RELOC/tex/latex/ltxtools/ltxtools-review.sty RELOC/tex/latex/ltxtools/ltxtools-trace.sty RELOC/tex/latex/ltxtools/ltxtools.sty -docfiles size=1 - RELOC/doc/latex/ltxtools/README catalogue-ctan /macros/latex/contrib/ltxtools -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics macro-supp catalogue-version 0.0.1a +name lua-alt-getopt +category Package +revision 29349 +shortdesc Process application arguments the same way as getopt_long +relocated 1 +longdesc lua_altgetopt is a MIT-licensed module for Lua, for processing +longdesc application arguments in the same way as BSD/GNU getopt_long(3) +longdesc functions do. This module is made available for lua script +longdesc writers to have consistent command line parsing routines. +containersize 2028 +containerchecksum 94d186ff2dbaae126995eb2ee71e52145e88b32ed1fa765a6011c0d3935f19dcf41692e47699abd176f680ba8ebed58142cdad7be19526f7b8c249dac43bf3d4 +doccontainersize 3320 +doccontainerchecksum b7cbb2dff24692038f38e6185fbd6471a6979dfd8b659fbd972c810cb701aca59aeaa4d30c510333003819ff08921f3d57b9c43a7044827a35472ee54e3990fd +docfiles size=7 + RELOC/doc/support/lua-alt-getopt/ChangeLog + RELOC/doc/support/lua-alt-getopt/Makefile + RELOC/doc/support/lua-alt-getopt/NEWS + RELOC/doc/support/lua-alt-getopt/README details="Readme" + RELOC/doc/support/lua-alt-getopt/alt_getopt + RELOC/doc/support/lua-alt-getopt/tests/test.out + RELOC/doc/support/lua-alt-getopt/tests/test.sh +runfiles size=1 + RELOC/scripts/lua-alt-getopt/alt_getopt.lua +catalogue-contact-repository https://github.com/cheusov/lua-alt-getopt +catalogue-ctan /support/lua/lua-alt-getopt +catalogue-date 2018-05-16 04:58:43 +0200 +catalogue-license mit +catalogue-topics lua-supp +catalogue-version 0.7.0 + +name lua-check-hyphen +category Package +revision 47527 +shortdesc Mark hyphenations in a document, for checking +relocated 1 +longdesc The package looks at all hyphenation breaks in the document, +longdesc comparing them against a white-list prepared by the author. If +longdesc a hyphenation break is found, for which there is no entry in +longdesc the white-list, the package flags the line where the break +longdesc starts. The author may then either add the hyphenation to the +longdesc white-list, or adjust the document to avoid the break. +containersize 3628 +containerchecksum 89cd0a13578d386bbf584f3c74c6c3ee1a45a7c0bf40480e5396f86b2af29b26abe3ab8aac69be0f1fe23cceb6da33237ea38384854fdfc7be6939832a8cad08 +doccontainersize 116564 +doccontainerchecksum cd756e0356b36ccd26d1d78c67026f5a27272ac383bdfc6f44ddb630f58d067c05fb9152f1ed9793d71a63af6607107b8d4b5af311563e2c3d966079b2d3e0c1 +docfiles size=35 + RELOC/doc/lualatex/lua-check-hyphen/doc/README.md details="Readme" + RELOC/doc/lualatex/lua-check-hyphen/doc/luacheckhyphenmanual.pdf details="Package documentation" + RELOC/doc/lualatex/lua-check-hyphen/doc/luacheckhyphenmanual.tex + RELOC/doc/lualatex/lua-check-hyphen/doc/mit-license.txt + RELOC/doc/lualatex/lua-check-hyphen/doc/sample.pdf details="Sample of use" + RELOC/doc/lualatex/lua-check-hyphen/doc/sample.tex +runfiles size=4 + RELOC/tex/lualatex/lua-check-hyphen/lua-check-hyphen.lua + RELOC/tex/lualatex/lua-check-hyphen/lua-check-hyphen.sty +catalogue-contact-bugs https://github.com/pgundlach/lua-check-hyphen/issues +catalogue-contact-repository https://github.com/pgundlach/lua-check-hyphen +catalogue-ctan /macros/luatex/latex/lua-check-hyphen +catalogue-date 2018-04-19 21:24:30 +0200 +catalogue-license mit +catalogue-topics hyphenation luatex +catalogue-version 0.7a + +name lua-visual-debug +category Package +revision 49634 +shortdesc Visual debugging with LuaLaTeX +relocated 1 +longdesc The package uses lua code to provide visible indications of +longdesc boxes, glues, kerns and penalties in the PDF output. The +longdesc package is known to work in LaTeX and Plain TeX documents. +containersize 3228 +containerchecksum 2b809e240570105b46f361ffcc031719f4afcdba45d14b4e51d4cbca10a7d189b385c00c9b277180bed4ceae45b8ad58e2145ac6f8de5d0568ff5f86b67c2cc5 +doccontainersize 289328 +doccontainerchecksum 814f650ce8505338b41a91e1e7e55872f1f35252ed5f1c3c74f73379b4c60c62e40d48a2cc5eab62b4a726db29fce70761ad7a2a0a17b7d5019859fcd72098f5 +docfiles size=101 + RELOC/doc/luatex/lua-visual-debug/README.md details="Readme" + RELOC/doc/luatex/lua-visual-debug/lvdebug-doc.pdf details="Package documentation" + RELOC/doc/luatex/lua-visual-debug/lvdebug-doc.tex + RELOC/doc/luatex/lua-visual-debug/lvdebugdetail1-num.png + RELOC/doc/luatex/lua-visual-debug/sample-plain.pdf + RELOC/doc/luatex/lua-visual-debug/sample-plain.tex + RELOC/doc/luatex/lua-visual-debug/sample.pdf details="Sample output" + RELOC/doc/luatex/lua-visual-debug/sample.tex + RELOC/doc/luatex/lua-visual-debug/strut.png +runfiles size=3 + RELOC/tex/luatex/lua-visual-debug/lua-visual-debug.lua + RELOC/tex/luatex/lua-visual-debug/lua-visual-debug.sty +catalogue-ctan /macros/luatex/generic/lua-visual-debug +catalogue-date 2019-01-07 11:02:34 +0100 +catalogue-license mit +catalogue-topics debug-supp luatex +catalogue-version 0.7 + name lua2dox category Package revision 29349 -shortdesc Auto-documentation of lua code. +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 @@ -101360,14 +166079,14 @@ 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 -runfiles size=7 - texmf-dist/scripts/lua2dox/lua.def - texmf-dist/scripts/lua2dox/lua2dox.lua - texmf-dist/scripts/lua2dox/lua2dox_filter +containersize 7592 +containerchecksum 24b6cf17ee55a9699077aac82263e442f1ba3e7843742baf425a4d4c514cb2f4b1ea8a4af9165997559560f2ed060ef818d3a57f71a79d6238ed29ccd263d787 +doccontainersize 505640 +doccontainerchecksum 96746e4d0401cb0bb9cfdf7a44d2935d4e257dafb0f5099faf647aec0b385745518f160bfad8ae54a1ec018e0afcf4a7dc998cf9b7f310e0ba867bd2e6213960 docfiles size=518 texmf-dist/doc/support/lua2dox/ChangeLog texmf-dist/doc/support/lua2dox/Doxyfile - texmf-dist/doc/support/lua2dox/README + texmf-dist/doc/support/lua2dox/README details="Readme" texmf-dist/doc/support/lua2dox/docs/html/annotated.html texmf-dist/doc/support/lua2dox/docs/html/bc_s.png texmf-dist/doc/support/lua2dox/docs/html/bdwn.png @@ -101573,197 +166292,386 @@ docfiles size=518 texmf-dist/doc/support/lua2dox/examples/php/main.php texmf-dist/doc/support/lua2dox/install.bat texmf-dist/doc/support/lua2dox/install.sh - texmf-dist/doc/support/lua2dox/lua2dox-refm.pdf + texmf-dist/doc/support/lua2dox/lua2dox-refm.pdf details="Package documentation" texmf-dist/doc/support/lua2dox/lua2dox-refm.tex +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 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics litprog catalogue-version 0.2 +name lua2dox.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of lua2dox +containersize 344 +containerchecksum 961604d780a300c53a564a3d732ba5fb11cce0c6838ab8d058f386e45fb00ca4ade64090ac3520a0d01c9248d7c8715e52fe993947061787e61d0246fba896bd +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/lua2dox_filter + +name lua2dox.amd64-freebsd +category Package +revision 29053 +shortdesc amd64-freebsd files of lua2dox +containersize 348 +containerchecksum 0eb4fc6eb77a872b786a05fc9b5572a7578cd752bf496f44a896385b4f045ce61e55e0ba4aa133d58c92732b1c0ac9ace4f51ff6d644360f56f30454895acf6e +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/lua2dox_filter + +name lua2dox.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of lua2dox +containersize 344 +containerchecksum bc1b98987e4bbc34b31151d2ce36315a17a43c84b2103d183eceffc3cfe7f428b6bd48ba38eb075e6a5fb52b52d5701982be3c60c3bbe9889af90a446945a56b +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/lua2dox_filter + +name lua2dox.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of lua2dox +containersize 344 +containerchecksum 033c3c381bf88166bf8bcdbd80933b3e5a718b8f9071e853b2038d928c2c4479cd77029c78918bde419f92ee0ec958a7f7d4e092c84cad20be852a3e20a7685e +binfiles arch=armhf-linux size=1 + bin/armhf-linux/lua2dox_filter + +name lua2dox.i386-cygwin +category Package +revision 29053 +shortdesc i386-cygwin files of lua2dox +containersize 344 +containerchecksum 2a43b2eac043dd7a0cd4119f8a286e2142ea005e660411cd458ed44d760cf690b179a32c7ee95bba0ce9d894de48666cdd12280a72f31d35cfdadff1cb9d60fe +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/lua2dox_filter + +name lua2dox.i386-freebsd +category Package +revision 29053 +shortdesc i386-freebsd files of lua2dox +containersize 344 +containerchecksum 0512d7732e8624952dd099dd310df91302ed3d1269aa45c7381e56cb418336ef2952f224dd1ecfeeba4afc9d7f6cbaa4164fccfe8ec615c41039265f809b4225 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/lua2dox_filter + name lua2dox.i386-linux category Package revision 29053 shortdesc i386-linux files of lua2dox +containersize 344 +containerchecksum 7f641eaf7b64345c4c99e64d04756614535d9a0380b56e8090b11d07f1a875dbdb1a4efadab7512747453ab5ea861f0667958f56f9464c6b2570f75a726ab57e binfiles arch=i386-linux size=1 bin/i386-linux/lua2dox_filter -name lua-alt-getopt +name lua2dox.i386-netbsd category Package -revision 29349 -shortdesc Process application arguments the same way as getopt_long. -relocated 1 -longdesc lua_altgetopt is a MIT-licensed module for Lua, for processing -longdesc application arguments in the same way as BSD/GNU getopt_long(3) -longdesc functions do. This module is made available for lua script -longdesc writers to have consistent command line parsing routines. -runfiles size=1 - RELOC/scripts/lua-alt-getopt/alt_getopt.lua -docfiles size=7 - RELOC/doc/support/lua-alt-getopt/ChangeLog - RELOC/doc/support/lua-alt-getopt/Makefile - RELOC/doc/support/lua-alt-getopt/NEWS - RELOC/doc/support/lua-alt-getopt/README - RELOC/doc/support/lua-alt-getopt/alt_getopt - RELOC/doc/support/lua-alt-getopt/tests/test.out - RELOC/doc/support/lua-alt-getopt/tests/test.sh -catalogue-ctan /support/lua/lua-alt-getopt -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license other-free -catalogue-version 0.7.0 +revision 30191 +shortdesc i386-netbsd files of lua2dox +containersize 344 +containerchecksum 641c582c7ff847e1ba93bd744e5374884c0548757d1c263b13afc4ff91f1ff4d58042f8df69eefc40fc8c85401c32c965500500ee0faff849a637f14756262b9 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/lua2dox_filter + +name lua2dox.i386-solaris +category Package +revision 29053 +shortdesc i386-solaris files of lua2dox +containersize 344 +containerchecksum c1dc81bbc56bb96fc6aba576994dfab0b96713ba9b70a6e11c08d0c355971aadf097aa2f6decd78ff425ffb86c4fcb36e5d43ebe4757a75035cbb3a4fc38a024 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/lua2dox_filter + +name lua2dox.win32 +category Package +revision 29053 +shortdesc win32 files of lua2dox +containersize 788 +containerchecksum cf7b6f6aa46ffa8a4c9838500fd0e361a2b177adbec5c90be6c0a5f71197eebd100108678c89b589086512e5899bb64331bfae66f616a3ba3038502bbf0985b4 +binfiles arch=win32 size=1 + bin/win32/lua2dox_filter.bat + +name lua2dox.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of lua2dox +containersize 348 +containerchecksum 80d65390ed5d1ee241b7487c9766c4bac8ab240d6e029f349c3770d3c6f04d6778708f2b4c47a4e443d0ba733fe37fced002ff43c5cefbdbb11712a2f7efa0d5 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/lua2dox_filter + +name lua2dox.x86_64-darwin +category Package +revision 29053 +shortdesc x86_64-darwin files of lua2dox +containersize 348 +containerchecksum 0fc1d5b8f6313066646bd66a23dcff7945e078211afd4f6f978aa29e1eb74f0950e415d8fec45e2473942e3d329628cbdfbd4ac29b51b82a125dd2f409b411f0 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/lua2dox_filter + +name lua2dox.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of lua2dox +containersize 352 +containerchecksum 2c1ce322433d26a029fc79099bcd8c852ec8c13eb1abe234f9b8a42f56435735f1b391f73d2b8f84925799858c53b52130ac27573a22e915c77f8d9e9e2dd83e +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/lua2dox_filter + +name lua2dox.x86_64-linux +category Package +revision 29053 +shortdesc x86_64-linux files of lua2dox +containersize 344 +containerchecksum cb3c0bdc19c6e69a4a013479096376ad7411750e2ee0df3078180ef4179aa69c4be09605c24feb2ca1c653962bb060268dd7e0f40fc44450f60b17821270bc64 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/lua2dox_filter + +name lua2dox.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of lua2dox +containersize 348 +containerchecksum fb83cb46bd2cd47cf5373296c827b18702bf486e56f21c0d84579a69ce0f86de5e3c6b1b8b53de7e0ce680c77bd37b94f2fd81a20c87b1aa7f152f6074024071 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/lua2dox_filter + +name lua2dox.x86_64-solaris +category Package +revision 29053 +shortdesc x86_64-solaris files of lua2dox +containersize 344 +containerchecksum 7f22927816b93396bb2e2184b71652a3931e9406fe8cae3ba4ff6e3391e81fa66f563974ce861a5276fc8de63023e8a3f68972f8ea79305143f500d18d15b799 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/lua2dox_filter name luabibentry category Package revision 31783 -shortdesc Repeat BibTeX entries in a LuaLaTeX document body. +shortdesc Repeat BibTeX entries in a LuaLaTeX document body relocated 1 longdesc The package reimplements bibentry, for use in LuaLaTeX. -runfiles size=2 - RELOC/tex/lualatex/luabibentry/luabibentry.lua - RELOC/tex/lualatex/luabibentry/luabibentry.sty +containersize 2368 +containerchecksum 00349f5a6f5ecd5478bb718bcfc419953db4f90c9b2a70aab2e2bbce4395d189066b39cca743e5b790f588a3f2a17047a6e233258c4ef389ad6fc5338184af69 +doccontainersize 144328 +doccontainerchecksum 9ec19b99275e3117f07e445e2c039bd504537fd470f62fb7f7f7fc428842ba86ebdbf0bd6a6be7a3b1b99100d209c6c47a9795c776287206afe331601222acad docfiles size=41 RELOC/doc/lualatex/luabibentry/News - RELOC/doc/lualatex/luabibentry/README - RELOC/doc/lualatex/luabibentry/luabibentry.pdf + RELOC/doc/lualatex/luabibentry/README details="Readme" + RELOC/doc/lualatex/luabibentry/luabibentry.pdf details="Package documentation" +srccontainersize 5428 +srccontainerchecksum 628ff69779b5eba6056bb49b3bdb4017a10c3c4afd710319de9ac3168ffa44782969ed67399f8c1a945cbf77f1bc44ea33b0776a9f1f14aa2e5e29afb8cea544 srcfiles size=4 RELOC/source/lualatex/luabibentry/Makefile RELOC/source/lualatex/luabibentry/luabibentry.dtx +runfiles size=2 + RELOC/tex/lualatex/luabibentry/luabibentry.lua + RELOC/tex/lualatex/luabibentry/luabibentry.sty +catalogue-contact-repository https://github.com/latextemplates/luabibentry +catalogue-contact-support https://github.com/latextemplates/luabibentry/issues catalogue-ctan /macros/luatex/latex/luabibentry -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-03-08 15:27:25 +0100 catalogue-license lppl1.3 +catalogue-topics cite-supp luatex use-lua catalogue-version 0.1a name luabidi category Package revision 30790 -shortdesc Bidirectional typesetting with LuaLaTeX. +shortdesc Bidirectional typesetting with LuaLaTeX relocated 1 -longdesc The package attempts to emulate the XeTeX bidi package, in teh +longdesc The package attempts to emulate the XeTeX bidi package, in the longdesc context of LuaTeX. +containersize 2248 +containerchecksum 270da3ba601daa28769a21ed85ce5d41f7c4a451f32d10400680399efbc7e7dcc52148a9df092ebfeade6055326e83a0841bca314ed08df89a9f4c569af25c5a +doccontainersize 632 +doccontainerchecksum 3d3a62c47a4d1bba9b148cc05ed137665533eb58791db1a4032bded74a3f4442aebb22319e8a29a9dcb1afe5ba1d3472c6ae054c950fa89e13ba641fedcd0473 +docfiles size=2 + RELOC/doc/lualatex/luabidi/README details="Readme" + RELOC/doc/lualatex/luabidi/test.tex runfiles size=4 RELOC/tex/lualatex/luabidi/arabmaths.tex RELOC/tex/lualatex/luabidi/autofootnoterule.tex RELOC/tex/lualatex/luabidi/luabidi.sty RELOC/tex/lualatex/luabidi/textwidthfootnoterule.tex -docfiles size=2 - RELOC/doc/lualatex/luabidi/README - RELOC/doc/lualatex/luabidi/test.tex +catalogue-contact-bugs https://github.com/bidi-tex/luabidi/issues +catalogue-contact-repository https://github.com/bidi-tex/luabidi catalogue-ctan /macros/luatex/latex/luabidi -catalogue-date 2014-09-06 10:41:29 +0200 +catalogue-date 2018-11-28 20:29:19 +0100 catalogue-license lppl1.3 +catalogue-topics typesetting luatex catalogue-version 0.2 -name lua-check-hyphen -category Package -revision 34810 -shortdesc Mark hyphenations in a document, for checking. -relocated 1 -longdesc The package looks at all hyphenation breaks in the document, -longdesc comparing them against a white-list prepared by the author. If -longdesc a hyphenation break is found, for which there is no entry in -longdesc the white-list, the package flags the line where the break -longdesc starts. The author may then either add the hyphenation to the -longdesc white-list, or adjust the document to avoid the break. -runfiles size=3 - RELOC/tex/lualatex/lua-check-hyphen/lua-check-hyphen.lua - RELOC/tex/lualatex/lua-check-hyphen/lua-check-hyphen.sty -docfiles size=34 - RELOC/doc/lualatex/lua-check-hyphen/doc/README.md - RELOC/doc/lualatex/lua-check-hyphen/doc/luacheckhyphenmanual.pdf - RELOC/doc/lualatex/lua-check-hyphen/doc/luacheckhyphenmanual.tex - RELOC/doc/lualatex/lua-check-hyphen/doc/sample.pdf - RELOC/doc/lualatex/lua-check-hyphen/doc/sample.tex -catalogue-ctan /macros/luatex/latex/lua-check-hyphen -catalogue-date 2015-01-05 20:19:10 +0100 -catalogue-license other-free -catalogue-version 0.3 - name luacode category Package revision 25193 -shortdesc Helper for executing lua code from within TeX. +shortdesc Helper for executing lua code from within TeX relocated 1 longdesc Executing Lua code from within TeX with directlua can sometimes longdesc be tricky: there is no easy way to use the percent character, longdesc counting backslashes may be hard, and Lua comments don't work longdesc the way you expect. The package provides the \luaexec command longdesc and the luacode(*) environments to help with these problems. -runfiles size=2 - RELOC/tex/lualatex/luacode/luacode.sty +containersize 2188 +containerchecksum b107c9cf774608782c1ba1ce3ebea8d330ff9762046eaa9b9de112b704df1d0da1bd7e33b15e9d847f232b7594d53fb2678cdb78b23d87aaac73cc2517ac8e1e +doccontainersize 412328 +doccontainerchecksum 622a2417490fb818d5021bb519ea7ac8d886df5002534c4d269268ca4d2119ccc15b029111edb42d04a546e7a46a60bc8eaa6a0a108e9231cc49fc2141ed8ec7 docfiles size=103 RELOC/doc/lualatex/luacode/News - RELOC/doc/lualatex/luacode/README - RELOC/doc/lualatex/luacode/luacode.pdf + RELOC/doc/lualatex/luacode/README details="Readme" + RELOC/doc/lualatex/luacode/luacode.pdf details="Package documentation" +srccontainersize 9016 +srccontainerchecksum fe53aa46157e24f7f637584faa0c18de62ce3857d9841598f51e09a03354e9cd44bb8fc150e91d5b9ad6d1ca150a065fb1507847cc385ca67bf67679669d7ef0 srcfiles size=7 RELOC/source/lualatex/luacode/Makefile RELOC/source/lualatex/luacode/luacode.dtx +runfiles size=2 + RELOC/tex/lualatex/luacode/luacode.sty catalogue-ctan /macros/luatex/latex/luacode -catalogue-date 2015-01-05 20:19:10 +0100 +catalogue-date 2016-06-24 19:18:15 +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 +relocated 1 +longdesc Preloading hyphenation patterns (or 'hyphen rules.) into any +longdesc format based upon LuaTeX is not required in LuaTeX and recent +longdesc releases of babel don't do it anyway. This package is addressed +longdesc to those who just want to select the languages and load their +longdesc patterns by means of `language.dat` without loading `babel`. +containersize 2388 +containerchecksum f1486d23a51111023fca3771ae530ca058c582640ddfc17281a66ec055b05aaf24021c724566f5e9c9a5bd674eb8724964fae78762dab30182d8a95333293efd +doccontainersize 39052 +doccontainerchecksum 152f690268e3b1c6073b36a66965c84b6bc6f45050b2887b7a2ed67be9497ea7b1708cfa1335fcf296d6a2feb11924120336cd89ff3017cb7e77808e9927e9c6 +docfiles size=12 + RELOC/doc/lualatex/luahyphenrules/README.md details="Readme" + RELOC/doc/lualatex/luahyphenrules/luahyphenrules.pdf details="Package documentation" + RELOC/doc/lualatex/luahyphenrules/luahyphenrules.tex +runfiles size=2 + RELOC/tex/lualatex/luahyphenrules/luahyphenrules.sty +catalogue-ctan /macros/luatex/latex/luahyphenrules +catalogue-date 2016-12-17 05:41:03 +0100 +catalogue-license lppl1.3 +catalogue-topics hyphenation luatex +catalogue-version 1.0 + +name luaimageembed +category Package +revision 50788 +shortdesc Embed images as base64-encoded strings +relocated 1 +longdesc This package allows to embed images directly as base64-encoded +longdesc strings into an LuaLaTeX document. This can be useful, e. g. to +longdesc package a document with images into a single TeX file, or with +longdesc automatically generated graphics. +containersize 1416 +containerchecksum c0ba8a3164f1a87cd12a5699e9caa23ff7a85debed9881798502436bbb594d48a2e15a135e3a18efb9f3d825af98303a46495148142c810e4601641fdf925654 +doccontainersize 1524 +doccontainerchecksum 188049c30c2c845d18e1a20af3d5ee009eab6064321b1f09aee4b77c3111317755e698e28876561440695c910cbfea6f67e41a5195a5f7b50d45831d7b78d76b +docfiles size=2 + RELOC/doc/lualatex/luaimageembed/LICENSE + RELOC/doc/lualatex/luaimageembed/README.md details="Readme" +runfiles size=1 + RELOC/tex/lualatex/luaimageembed/luaimageembed.sty +catalogue-also inline-images +catalogue-contact-announce https://github.com/csachs/luaimageembed/releases +catalogue-contact-bugs https://github.com/csachs/luaimageembed/issues +catalogue-contact-home https://github.com/csachs/luaimageembed +catalogue-ctan /macros/luatex/latex/luaimageembed +catalogue-date 2019-04-05 15:52:51 +0200 +catalogue-license mit +catalogue-topics image-supp lua-supp +catalogue-version 0.1 + name luaindex category Package revision 25882 -shortdesc Create index using lualatex. +shortdesc Create index using LuaLaTeX relocated 1 longdesc Luaindex provides (yet another) index processor, written in longdesc Lua. -runfiles size=6 - RELOC/scripts/luaindex/luaindex.lua - RELOC/tex/lualatex/luaindex/luaindex.sty +containersize 4488 +containerchecksum baafe2dbcfcc07293ec04f775becef7b59a2349ed5c98333c5a4e680fb3f8561f8749a6abadc6901cfbeae1b6e9a47cca05e8ae76064372585b7d7f4978dc844 +doccontainersize 160892 +doccontainerchecksum c90deae24da8584170bc2247d5f6ee22ba522c21d3d0e05a6ec2b9594645a022eed1fcf12c3ffbaa03ce0d92a16f75550dc7e0694920ef58b17bdacae02d6fc7 docfiles size=45 - RELOC/doc/lualatex/luaindex/README + RELOC/doc/lualatex/luaindex/README details="Readme" RELOC/doc/lualatex/luaindex/luaindex-example.ldx RELOC/doc/lualatex/luaindex/luaindex-example.ltx RELOC/doc/lualatex/luaindex/luaindex-example.pdf RELOC/doc/lualatex/luaindex/luaindex.ltx - RELOC/doc/lualatex/luaindex/luaindex.pdf + RELOC/doc/lualatex/luaindex/luaindex.pdf details="Package documentation" +srccontainersize 13392 +srccontainerchecksum aa97d6618e7af11a7d5aaee332736aa60a8ba5a2cf796296368736c7d12b1e6eeccbd5c807cc2129fd3e4310617dd92e14aeac053753fe7267899b9b3459d8db srcfiles size=15 RELOC/source/lualatex/luaindex/luaindex.dtx +runfiles size=6 + RELOC/scripts/luaindex/luaindex.lua + RELOC/tex/lualatex/luaindex/luaindex.sty catalogue-ctan /macros/luatex/latex/luaindex -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +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. +shortdesc Replacing inputenc for use in LuaTeX relocated 1 longdesc LuaTeX operates by default in UTF-8 input; thus LaTeX documents longdesc that need 8-bit character-sets need special treatment. (In -longdesc fact, LaTeX documents using UTF-8 with "traditional" -- 256- -longdesc glyph -- fonts also need support from this package.) The +longdesc fact, LaTeX documents using UTF-8 with "traditional" -- +longdesc 256-glyph -- fonts also need support from this package.) The longdesc package, therefore, replaces the LaTeX standard inputenc for longdesc use under LuaTeX. With a current LuaTeX,the package has the longdesc same behaviour with LuaTeX as inputenc has under pdfTeX. -runfiles size=8 - RELOC/tex/lualatex/luainputenc/luainputenc.lua - RELOC/tex/lualatex/luainputenc/luainputenc.sty - RELOC/tex/lualatex/luainputenc/lutf8.def - RELOC/tex/lualatex/luainputenc/lutf8x.def +containersize 5036 +containerchecksum bc3f05260800cc537436377c1f9fbcfc6a1a60a7fd892af23ab323171208b083c08c8bb2a5d299e4ce09468f66197d43f68717a57e649c50caf74b736cdb06db +doccontainersize 405692 +doccontainerchecksum 7c6093b3fa622007aa7e6cc852076090e1bcc64e9b890d1ff0cf6ae552a21e930e791d32cdc2238a0f60c605c92a2192dad7e9d423a2d6e013582926957da58f docfiles size=103 RELOC/doc/lualatex/luainputenc/NEWS - RELOC/doc/lualatex/luainputenc/README + RELOC/doc/lualatex/luainputenc/README details="Readme" RELOC/doc/lualatex/luainputenc/inputenc.sty.diff - RELOC/doc/lualatex/luainputenc/luainputenc.pdf + RELOC/doc/lualatex/luainputenc/luainputenc.pdf details="Package documentation" RELOC/doc/lualatex/luainputenc/test.tex +srccontainersize 12408 +srccontainerchecksum a9ae3dcacf7ed85f5ff63e32c9fd66ad6860e149c3d2737bcfad870137b242797b8a3f62e90f290931e6884c74f70a0716c72f2e5414cb8406e5ec0141f13831 srcfiles size=12 RELOC/source/lualatex/luainputenc/Makefile RELOC/source/lualatex/luainputenc/luainputenc.dtx +runfiles size=8 + RELOC/tex/lualatex/luainputenc/luainputenc.lua + RELOC/tex/lualatex/luainputenc/luainputenc.sty + RELOC/tex/lualatex/luainputenc/lutf8.def + RELOC/tex/lualatex/luainputenc/lutf8x.def +catalogue-contact-repository https://github.com/lualatex/luainputenc catalogue-ctan /macros/luatex/latex/luainputenc -catalogue-date 2015-01-05 20:19:10 +0100 +catalogue-date 2017-04-18 05:31:40 +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". +shortdesc Examples from the book "Einfuhrung in LuaTeX und LuaLaTeX" relocated 1 longdesc The bundle provides source of all the examples published in the longdesc German book "Einfuhrung in LuaTeX und LuaLaTeX", published by longdesc Lehmans Media and DANTE, Berlin. +containersize 468 +containerchecksum 2585639b6a7b93019f8fe4dd353332dabbbfb5663b84b1c92df397e940392a1b3bb2ddcec203bbb1b0f4244ac26b62f9745fdf50cb7512f96e5c12af8c08335b +doccontainersize 30328 +doccontainerchecksum 47de79cdc637810757b7879956cf758a77cde95e77060ce74829b438d13b58e23cbc8e9b328d0850b44fd8de8da90fa9fda206ff0e206918f1bccdf5d71d2c38 docfiles size=211 RELOC/doc/luatex/luaintro/01-01-1.lua RELOC/doc/luatex/luaintro/01-02-1.lualtx @@ -101944,7 +166852,7 @@ docfiles size=211 RELOC/doc/luatex/luaintro/Letter.ist RELOC/doc/luatex/luaintro/LetterC.ist RELOC/doc/luatex/luaintro/LoadFonts.tex - RELOC/doc/luatex/luaintro/README + RELOC/doc/luatex/luaintro/README details="Readme" RELOC/doc/luatex/luaintro/beispiel.cls RELOC/doc/luatex/luaintro/bspcalweekly.cls RELOC/doc/luatex/luaintro/bspdvdcoll.cls @@ -101976,53 +166884,66 @@ docfiles size=211 RELOC/doc/luatex/luaintro/screxabook.cls RELOC/doc/luatex/luaintro/screxareport.cls catalogue-ctan /info/examples/luaintro -catalogue-date 2014-10-30 20:45:40 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics book-ex catalogue-version 0.03 -name lualatex-doc-de -category Package -revision 30474 -shortdesc Guide to LuaLaTeX (German translation). -relocated 1 -longdesc The document is a German translation of the map/guide to the -longdesc world of LuaLaTeX. Coverage supports both new users and package -longdesc developers. Apart from the introductory material, the document -longdesc gathers information from several sources, and offers links to -longdesc others. -docfiles size=42 - RELOC/doc/latex/lualatex-doc-de/lualatex-doc-DE.pdf - RELOC/doc/latex/lualatex-doc-de/lualatex-doc-DE.tex -catalogue-ctan /info/luatex/lualatex-doc-de -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license fdl -catalogue-version 1.0 - name lualatex-doc category Package revision 30473 -shortdesc A guide to use of LaTeX with LuaTeX. +shortdesc A guide to use of LaTeX with LuaTeX relocated 1 longdesc The document is a map/guide to the world of LuaLaTeX. Coverage longdesc supports both new users and package developers. Apart from the longdesc introductory material, the document gathers information from longdesc several sources, and offers links to others. +containersize 508 +containerchecksum a1d98422b13a26aa844213df2929629889ed6bfe3fa16c27f6376f00f038a50dd32c5128a27ecdd872d3fce8372fb93ec603c0c92edb8692325f1e76fca685d1 +doccontainersize 112928 +doccontainerchecksum 0756a0183d0b7b302f24cd16a8957915a69a3db3fe4a8a4fc301e246a0563f9fe81ce2af667b7bcfa45717b605be163cc5fd4c170d8584028f2ee7b2120390c6 docfiles size=41 RELOC/doc/lualatex/lualatex-doc/News - RELOC/doc/lualatex/lualatex-doc/README - RELOC/doc/lualatex/lualatex-doc/lualatex-doc.pdf + RELOC/doc/lualatex/lualatex-doc/README details="Readme" + RELOC/doc/lualatex/lualatex-doc/lualatex-doc.pdf details="The document itself" +srccontainersize 15188 +srccontainerchecksum a18a7644b50ad608dbb2bbfc15f2672fe7b9a48505c3224dcb46aa97b2d57b5a007c928dd5b76518c8963970bb1b8b56bed8e5c374ba5cb18a9521528dfdd58f srcfiles size=12 RELOC/source/lualatex/lualatex-doc/Makefile RELOC/source/lualatex/lualatex-doc/lltxdoc.cls RELOC/source/lualatex/lualatex-doc/lualatex-doc.tex catalogue-ctan /info/luatex/lualatex-doc -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license fdl +catalogue-topics luatex-doc + +name lualatex-doc-de +category Package +revision 30474 +shortdesc Guide to LuaLaTeX (German translation) +relocated 1 +longdesc The document is a German translation of the map/guide to the +longdesc world of LuaLaTeX. Coverage supports both new users and package +longdesc developers. Apart from the introductory material, the document +longdesc gathers information from several sources, and offers links to +longdesc others. +containersize 536 +containerchecksum c1bf1c7f367e5d15cb1a5ba0878a4f02dfe25772bed22b48f7376e8448569247233ee41ee8b58c156494d9cf0c0956dc23f4576f053cc349896247de0a96444b +doccontainersize 137620 +doccontainerchecksum b615887d8b543af1c125b6e9fb9c533f52816f8087075a8bd4e6ef752ff48f51169f5945ccb067228612cbdeb10dbeb298a090bdb93d201b9629b128b0c5a466 +docfiles size=42 + RELOC/doc/latex/lualatex-doc-de/lualatex-doc-DE.pdf details="The translated document itself" + RELOC/doc/latex/lualatex-doc-de/lualatex-doc-DE.tex +catalogue-ctan /info/luatex/lualatex-doc-de +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license fdl +catalogue-topics luatex-doc german +catalogue-version 1.0 name lualatex-math category Package -revision 34982 -shortdesc Fixes for mathematics-related LuaLaTeX issues. +revision 49904 +shortdesc Fixes for mathematics-related LuaLaTeX issues relocated 1 longdesc The package patches a few commands of the LaTeX2e kernel and longdesc the amsmath and mathtools packages to be more compatible with @@ -102031,42 +166952,90 @@ 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. -runfiles size=4 - RELOC/tex/lualatex/lualatex-math/lualatex-math.lua - RELOC/tex/lualatex/lualatex-math/lualatex-math.sty -docfiles size=116 - RELOC/doc/lualatex/lualatex-math/README - RELOC/doc/lualatex/lualatex-math/lualatex-math-de.pdf - RELOC/doc/lualatex/lualatex-math/lualatex-math.pdf - RELOC/doc/lualatex/lualatex-math/test-amsmath.pdf - RELOC/doc/lualatex/lualatex-math/test-icomma-unicode.pdf - RELOC/doc/lualatex/lualatex-math/test-icomma.pdf - RELOC/doc/lualatex/lualatex-math/test-kernel-alloc.pdf - RELOC/doc/lualatex/lualatex-math/test-kernel-style.pdf - RELOC/doc/lualatex/lualatex-math/test-kernel.pdf - RELOC/doc/lualatex/lualatex-math/test-unicode.pdf -srcfiles size=16 +containersize 3092 +containerchecksum 931421eb1cfa64bb14050efc449e9d600ebbecfd524bea0162c1e20100345a85eee0d45764c8e1ada7429fd59ea6124b757f9361eb4183b2a295b87c62cbab7b +doccontainersize 185264 +doccontainerchecksum 33da41b1515fc58b68fd8354304ae454b0abdd5f41475260b762012216595025a28db60f2997e5d36553ce551f13450024e9c017b9971219667aac57df84a2ce +docfiles size=49 + RELOC/doc/lualatex/lualatex-math/MANIFEST + RELOC/doc/lualatex/lualatex-math/README details="Readme" + RELOC/doc/lualatex/lualatex-math/lualatex-math.pdf details="Package documentation" language="en" +srccontainersize 8860 +srccontainerchecksum 1b05c3b7c1ca0d8e34f2f0a4f70c8b27996db61313117b63232a8b0164ff981fa59d932aed6ef8ba41f2b82c35a11d90525a246f12dfc935c8a87380525a1a13 +srcfiles size=8 RELOC/source/lualatex/lualatex-math/lualatex-math.dtx RELOC/source/lualatex/lualatex-math/lualatex-math.ins +runfiles size=3 + RELOC/tex/lualatex/lualatex-math/lualatex-math.lua + RELOC/tex/lualatex/lualatex-math/lualatex-math.sty +catalogue-contact-bugs https://github.com/phst/lualatex-math/issues +catalogue-contact-repository https://github.com/phst/lualatex-math catalogue-ctan /macros/luatex/latex/lualatex-math -catalogue-date 2014-08-19 18:28:08 +0200 -catalogue-license lppl1.3 -catalogue-version 1.4 +catalogue-date 2019-01-31 22:55:21 +0100 +catalogue-license lppl1.3c +catalogue-topics maths luatex +catalogue-version 1.8 + +name lualatex-truncate +category Package +revision 48469 +shortdesc A wrapper for using the truncate package with LuaLaTeX +relocated 1 +longdesc This package provides a wrapper for the truncate package, thus +longdesc fixing issues related to LuaTeX's hyphenation algorithm. +containersize 1932 +containerchecksum f4de38427798b565aacdb127152cd7ac8a42b441c555f742f5bf90480f7cdf8e182745a5882a9c8e0645c529d27647a056f26b7493dadb13216972794e617341 +doccontainersize 62752 +doccontainerchecksum 704b34da4b8ab787c53f2af21fd17a29d6c8e1d42024de2ff0e65d434a502b47022fa2a506e149b67ee5cb542f2f4835babda315b1dded598f63dca353aa78b1 +docfiles size=17 + RELOC/doc/lualatex/lualatex-truncate/README.md details="Readme" + RELOC/doc/lualatex/lualatex-truncate/lualatex-truncate-doc.pdf details="Package documentation" +srccontainersize 5392 +srccontainerchecksum bffd59b8b5a7d02f40f4ff2f4d028aa98ae26b3d9d9cb432f531211fbcf65d18814653fed07b68e4d34f65d514f7aacfe6bd5aea956a12f7fac2e088841ca02d +srcfiles size=6 + RELOC/source/lualatex/lualatex-truncate/lualatex-truncate-doc.dtx + RELOC/source/lualatex/lualatex-truncate/lualatex-truncate.dtx + RELOC/source/lualatex/lualatex-truncate/lualatex-truncate.ins +runfiles size=1 + RELOC/tex/lualatex/lualatex-truncate/lualatex-truncate.sty +catalogue-also truncate +catalogue-contact-bugs https://gitlab.com/SFr682k/lualatex-truncate/issues +catalogue-contact-repository https://gitlab.com/SFr682k/lualatex-truncate +catalogue-ctan /macros/luatex/latex/lualatex-truncate +catalogue-date 2018-08-22 22:23:58 +0200 +catalogue-license lppl1.3c +catalogue-topics layout luatex +catalogue-version 1.1 name lualibs category Package -revision 34736 -shortdesc Additional Lua functions for LuaTeX macro programmers. +revision 51167 +shortdesc Additional Lua functions for LuaTeX macro programmers relocated 1 longdesc Lualibs is a collection of Lua modules useful for general longdesc programming. The bundle is based on lua modules shipped with -longdesc ConTeXt, and are made available in this bundle for use -longdesc independent of ConTeXt. -runfiles size=104 +longdesc ConTeXt, and made available in this bundle for use independent +longdesc of ConTeXt. +containersize 117104 +containerchecksum 365fb5632825b1861007bb70c8f1165af01bfd9c8145a09dd2fd94c4544898e3c837c4b43afacf9c7136b03ffab79afa1d725c81cad4c649cab887410bdfcb36 +doccontainersize 87456 +doccontainerchecksum 8617ff4efaf22c8881a3f4af1e7ea198a871a3a7bd0a2035bf96a9d640c23b35a9dbedc4f1e4ba8663474b7cc2673e5f9c5b2273facc649878133fe5ec474a59 +docfiles size=28 + RELOC/doc/luatex/lualibs/LICENSE + RELOC/doc/luatex/lualibs/NEWS + RELOC/doc/luatex/lualibs/README details="Readme" + RELOC/doc/luatex/lualibs/lualibs.pdf details="Package documentation" +srccontainersize 8520 +srccontainerchecksum 192cd08c0755458ddbf3281a2b900d8762b825fc4319ec735baa6ffc85be08d8e293a3c828af0982f517adfca9bd106219b71ea5314a68fcb42f8afd8476b46e +srcfiles size=7 + RELOC/source/luatex/lualibs/lualibs.dtx +runfiles size=181 + RELOC/tex/luatex/lualibs/lualibs-basic-merged.lua RELOC/tex/luatex/lualibs/lualibs-basic.lua RELOC/tex/luatex/lualibs/lualibs-boolean.lua RELOC/tex/luatex/lualibs/lualibs-compat.lua RELOC/tex/luatex/lualibs/lualibs-dir.lua + RELOC/tex/luatex/lualibs/lualibs-extended-merged.lua RELOC/tex/luatex/lualibs/lualibs-extended.lua RELOC/tex/luatex/lualibs/lualibs-file.lua RELOC/tex/luatex/lualibs/lualibs-function.lua @@ -102087,7 +167056,7 @@ runfiles size=104 RELOC/tex/luatex/lualibs/lualibs-url.lua RELOC/tex/luatex/lualibs/lualibs-util-deb.lua RELOC/tex/luatex/lualibs/lualibs-util-dim.lua - RELOC/tex/luatex/lualibs/lualibs-util-fmt.lua + RELOC/tex/luatex/lualibs/lualibs-util-fil.lua RELOC/tex/luatex/lualibs/lualibs-util-jsn.lua RELOC/tex/luatex/lualibs/lualibs-util-lua.lua RELOC/tex/luatex/lualibs/lualibs-util-prs.lua @@ -102097,64 +167066,187 @@ runfiles size=104 RELOC/tex/luatex/lualibs/lualibs-util-tab.lua RELOC/tex/luatex/lualibs/lualibs-util-tpl.lua RELOC/tex/luatex/lualibs/lualibs.lua -docfiles size=28 - RELOC/doc/luatex/lualibs/LICENSE - RELOC/doc/luatex/lualibs/NEWS - RELOC/doc/luatex/lualibs/README - RELOC/doc/luatex/lualibs/lualibs.pdf -srcfiles size=11 - RELOC/source/luatex/lualibs/Makefile - RELOC/source/luatex/lualibs/lualibs.dtx - RELOC/source/luatex/lualibs/test-lualibs.lua - RELOC/source/luatex/lualibs/whatsnew.lua +catalogue-contact-bugs https://github.com/u-fischer/lualibs/issues +catalogue-contact-repository https://github.com/u-fischer/lualibs +catalogue-contact-support https://github.com/u-fischer/lualibs/issues catalogue-ctan /macros/luatex/generic/lualibs -catalogue-date 2015-01-05 20:19:10 +0100 +catalogue-date 2019-05-19 18:09:19 +0200 catalogue-license gpl2 -catalogue-version 2.2 +catalogue-topics lua-supp luatex +catalogue-version 2.65 + +name luamesh +category Package +revision 43814 +shortdesc Computes and draws 2D Delaunay triangulation +relocated 1 +longdesc The package allows to compute and draw 2D Delaunay +longdesc triangulation. The algorithm is written with lua, and depending +longdesc upon the choice of the engine, the drawing is done by MetaPost +longdesc (with luamplib) or by TikZ. The Delaunay triangulation +longdesc algorithm is the Bowyer and Watson algorithm. Several macros +longdesc are provided to draw the global mesh, the set of points, or a +longdesc particular step of the algorithm. +containersize 11704 +containerchecksum f9ae2e27725aa78c7a6c7d049d0c25f4a4fef260dd2a813a9cd6a4f49f5ef1a786540c77c88c0778c5ebda5f188ca8b62be8335d5bcf0ee1a5f22df193875cc3 +doccontainersize 220808 +doccontainerchecksum f25df210662af9d91229a99228a7f15bfc58510adfa2f5a91c586b4ec30b2482ed044b30db40cff0a5c70dfc70ab560367efa96bc077bf412d536e15f1e32e0f +docfiles size=159 + RELOC/doc/lualatex/luamesh/README details="Readme" + RELOC/doc/lualatex/luamesh/animation-crop.pdf + RELOC/doc/lualatex/luamesh/biblio.bib + RELOC/doc/lualatex/luamesh/dum.tex + RELOC/doc/lualatex/luamesh/fond.mp + RELOC/doc/lualatex/luamesh/fond.pdf + RELOC/doc/lualatex/luamesh/lltxdoc.cls + RELOC/doc/lualatex/luamesh/luamesh-doc.listing + RELOC/doc/lualatex/luamesh/luamesh-doc.pdf details="Package documentation" + RELOC/doc/lualatex/luamesh/luamesh-doc.tex + RELOC/doc/lualatex/luamesh/luamesh-title.pdf + RELOC/doc/lualatex/luamesh/maillage.geo + RELOC/doc/lualatex/luamesh/maillage.msh + RELOC/doc/lualatex/luamesh/mesh.txt + RELOC/doc/lualatex/luamesh/meshgarde.txt +runfiles size=26 + RELOC/scripts/luamesh/luamesh-polygon.lua + RELOC/scripts/luamesh/luamesh-tex.lua + RELOC/scripts/luamesh/luamesh.lua + RELOC/tex/lualatex/luamesh/luamesh.sty +catalogue-ctan /macros/luatex/latex/luamesh +catalogue-date 2017-04-15 18:56:47 +0200 +catalogue-license lppl1.3 +catalogue-topics luatex +catalogue-version 0.51 name luamplib category Package -revision 38019 -shortdesc Use LuaTeX's built-in MetaPost interpreter. +revision 50608 +shortdesc Use LuaTeX's built-in MetaPost interpreter relocated 1 longdesc The package enables the user to specify MetaPost diagrams longdesc (which may include colour specifications from the color or longdesc xcolor packages) into a document, using LuaTeX's built-in longdesc MetaPost library. The facility is only available in PDF mode. -runfiles size=12 - RELOC/tex/luatex/luamplib/luamplib.lua - RELOC/tex/luatex/luamplib/luamplib.sty -docfiles size=40 +containersize 11792 +containerchecksum 233e6ebf8f6ce9c249b142435475591ed82bc8bd2b60ba12d97baf1c542edc819e240e9de5f86a20500befa8aed6e2fa2b0dfff3dd6b3c1da8f43f9552f666b1 +doccontainersize 151692 +doccontainerchecksum 592be60c38e77f17130f751b4e05a872e9bc49c62cbaff4502c29e61a81dc6b947db9bce3bf784248efbba3327d0ead5935c857d1c3cf4ae1d5ae1e69b908c02 +docfiles size=42 RELOC/doc/luatex/luamplib/NEWS - RELOC/doc/luatex/luamplib/README - RELOC/doc/luatex/luamplib/luamplib.pdf + RELOC/doc/luatex/luamplib/README details="Readme" + RELOC/doc/luatex/luamplib/luamplib.pdf details="Package documentation" RELOC/doc/luatex/luamplib/test-luamplib-latex.tex RELOC/doc/luatex/luamplib/test-luamplib-plain.tex -srcfiles size=22 +srccontainersize 26480 +srccontainerchecksum 0a3bed424acc4a492698be14be7c6784d74c524fbe6faaf91d94ad6aee6c0c3dfa99382a607b99000d7850198e5dfaee2d1a03feb7c09c8022a97d5baaf6419a +srcfiles size=24 RELOC/source/luatex/luamplib/Makefile RELOC/source/luatex/luamplib/luamplib.dtx +runfiles size=12 + RELOC/tex/luatex/luamplib/luamplib.lua + RELOC/tex/luatex/luamplib/luamplib.sty +catalogue-contact-bugs https://github.com/lualatex/luamplib/issues +catalogue-contact-repository http://github.com/lualatex/luamplib catalogue-ctan /macros/luatex/generic/luamplib -catalogue-date 2015-08-01 16:12:44 +0200 +catalogue-date 2019-03-26 13:13:24 +0100 catalogue-license gpl2 catalogue-topics mp-use graphics-in-tex luatex -catalogue-version 2.11.0 +catalogue-version 2.20.1 name luaotfload category Package -revision 35328 -shortdesc OpenType 'loader' for Plain TeX and LaTeX. +revision 51190 +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 -runfiles size=619 +containersize 551448 +containerchecksum 11c6779e01431f0629042066d2cf8cd5d1328c842a332a269e1928900947c497345e799bf38490a8451903c96591dfa61dd41aee55f932c4fc42809ef5fddd63 +doccontainersize 466308 +doccontainerchecksum 13572f48194166542ae11820591c5fa6ce86d7a0f9766c14f74a22350627155a15fccd55406bab0a3b0b1c0fe2b635164919793544fe55e8d14e83d098af7445 +docfiles size=210 + texmf-dist/doc/luatex/luaotfload/COPYING + texmf-dist/doc/luatex/luaotfload/NEWS + texmf-dist/doc/luatex/luaotfload/README.md details="Readme" + texmf-dist/doc/luatex/luaotfload/filegraph.pdf + texmf-dist/doc/luatex/luaotfload/filegraph.tex + texmf-dist/doc/luatex/luaotfload/luaotfload-conf.pdf + texmf-dist/doc/luatex/luaotfload/luaotfload-latex.pdf details="Package documentation" + texmf-dist/doc/luatex/luaotfload/luaotfload-latex.tex + texmf-dist/doc/luatex/luaotfload/luaotfload-main.tex + texmf-dist/doc/luatex/luaotfload/luaotfload-tool.pdf + texmf-dist/doc/luatex/luaotfload/luaotfload-tool.rst + texmf-dist/doc/luatex/luaotfload/luaotfload.conf.example + texmf-dist/doc/luatex/luaotfload/luaotfload.conf.rst + texmf-dist/doc/man/man1/luaotfload-tool.1 + texmf-dist/doc/man/man1/luaotfload-tool.man1.pdf + texmf-dist/doc/man/man5/luaotfload.conf.5 + texmf-dist/doc/man/man5/luaotfload.conf.man5.pdf +srccontainersize 6604 +srccontainerchecksum 384b7a54b856ae7567a2c39985c2398d8d48ed2be2b3bd57b30e2326c7ca1658d1a11aa7954e212a2fcf8adf3d338e02bb6ddc781df93ac051ac42020338c488 +srcfiles size=6 + texmf-dist/source/luatex/luaotfload/fontloader-reference-load-order.lua + texmf-dist/source/luatex/luaotfload/fontloader-reference-load-order.tex +runfiles size=1756 texmf-dist/scripts/luaotfload/luaotfload-tool.lua - texmf-dist/scripts/luaotfload/mkcharacters - texmf-dist/scripts/luaotfload/mkglyphlist - texmf-dist/scripts/luaotfload/mkstatus + texmf-dist/tex/luatex/luaotfload/fontloader-2019-05-18.lua + texmf-dist/tex/luatex/luaotfload/fontloader-basics-chr.lua + texmf-dist/tex/luatex/luaotfload/fontloader-basics-gen.lua + texmf-dist/tex/luatex/luaotfload/fontloader-basics-nod.lua + texmf-dist/tex/luatex/luaotfload/fontloader-data-con.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-afk.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-cff.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-cid.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-con.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-def.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-dsp.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-imp-effects.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-imp-italics.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-imp-ligatures.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-imp-tex.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-ini.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-lua.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-map.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-ocl.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-one.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-onr.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-osd.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-ota.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-otc.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-oti.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-otj.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-otl.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-oto.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-otr.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-ots.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-ott.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-oup.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-ttf.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-vfc.lua + texmf-dist/tex/luatex/luaotfload/fontloader-fonts-def.lua + texmf-dist/tex/luatex/luaotfload/fontloader-fonts-enc.lua + texmf-dist/tex/luatex/luaotfload/fontloader-fonts-ext.lua + texmf-dist/tex/luatex/luaotfload/fontloader-fonts-gbn.lua + texmf-dist/tex/luatex/luaotfload/fontloader-fonts-lig.lua + texmf-dist/tex/luatex/luaotfload/fontloader-fonts-mis.lua + texmf-dist/tex/luatex/luaotfload/fontloader-fonts-syn.lua + texmf-dist/tex/luatex/luaotfload/fontloader-fonts-tfm.lua + texmf-dist/tex/luatex/luaotfload/fontloader-l-boolean.lua + texmf-dist/tex/luatex/luaotfload/fontloader-l-file.lua + texmf-dist/tex/luatex/luaotfload/fontloader-l-function.lua + texmf-dist/tex/luatex/luaotfload/fontloader-l-io.lua + texmf-dist/tex/luatex/luaotfload/fontloader-l-lpeg.lua + texmf-dist/tex/luatex/luaotfload/fontloader-l-lua.lua + texmf-dist/tex/luatex/luaotfload/fontloader-l-math.lua + texmf-dist/tex/luatex/luaotfload/fontloader-l-string.lua + texmf-dist/tex/luatex/luaotfload/fontloader-l-table.lua + texmf-dist/tex/luatex/luaotfload/fontloader-l-unicode.lua + texmf-dist/tex/luatex/luaotfload/fontloader-reference.lua + texmf-dist/tex/luatex/luaotfload/fontloader-util-fil.lua + texmf-dist/tex/luatex/luaotfload/fontloader-util-str.lua texmf-dist/tex/luatex/luaotfload/luaotfload-auxiliary.lua - texmf-dist/tex/luatex/luaotfload/luaotfload-basics-gen.lua - texmf-dist/tex/luatex/luaotfload/luaotfload-basics-nod.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 @@ -102162,94 +167254,643 @@ runfiles size=619 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-fontloader.lua - texmf-dist/tex/luatex/luaotfload/luaotfload-fonts-cbk.lua - texmf-dist/tex/luatex/luaotfload/luaotfload-fonts-def.lua - texmf-dist/tex/luatex/luaotfload/luaotfload-fonts-enc.lua - texmf-dist/tex/luatex/luaotfload/luaotfload-fonts-ext.lua - texmf-dist/tex/luatex/luaotfload/luaotfload-fonts-inj.lua - texmf-dist/tex/luatex/luaotfload/luaotfload-fonts-lua.lua - texmf-dist/tex/luatex/luaotfload/luaotfload-fonts-otn.lua - texmf-dist/tex/luatex/luaotfload/luaotfload-fonts-tfm.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-filelist.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-override.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 -docfiles size=83 - texmf-dist/doc/luatex/luaotfload/COPYING - texmf-dist/doc/luatex/luaotfload/NEWS - texmf-dist/doc/luatex/luaotfload/README - texmf-dist/doc/luatex/luaotfload/filegraph.pdf - texmf-dist/doc/luatex/luaotfload/luaotfload.conf.example - texmf-dist/doc/luatex/luaotfload/luaotfload.pdf - texmf-dist/doc/luatex/luaotfload/valgrind-kpse-suppression.sup - texmf-dist/doc/man/man1/luaotfload-tool.1 - texmf-dist/doc/man/man1/luaotfload-tool.man1.pdf - texmf-dist/doc/man/man5/luaotfload.conf.5 - texmf-dist/doc/man/man5/luaotfload.conf.man5.pdf -srcfiles size=31 - texmf-dist/source/luatex/luaotfload/Makefile - texmf-dist/source/luatex/luaotfload/filegraph.dot - texmf-dist/source/luatex/luaotfload/luaotfload-latex.tex - texmf-dist/source/luatex/luaotfload/luaotfload-main.tex - texmf-dist/source/luatex/luaotfload/luaotfload-tool.rst - texmf-dist/source/luatex/luaotfload/luaotfload.conf.rst +catalogue-contact-repository https://github.com/u-fischer/luaotfload +catalogue-contact-support https://github.com/u-fischer/luaotfload/issues catalogue-ctan /macros/luatex/generic/luaotfload -catalogue-date 2015-01-14 14:32:11 +0100 +catalogue-date 2019-05-19 17:23:20 +0200 catalogue-license gpl2 -catalogue-version 2.5-4 +catalogue-topics font-use luatex +catalogue-version 2.97 + +name luaotfload.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of luaotfload +containersize 348 +containerchecksum 5a2141f4e940e971f11151776503faeb7834ea23fdd2600dcc0aca333854459a3a3dbcb38b4e6d0fe25a953470022958af319c170cb30ceedf1394656a447e2f +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/luaotfload-tool + +name luaotfload.amd64-freebsd +category Package +revision 34647 +shortdesc amd64-freebsd files of luaotfload +containersize 352 +containerchecksum 85b1add815f50f96d6d6c3235c3c70e262a224e7b479080c21a6d14c69be124443afb1c1b7e14f8ac3ca2a0b58a89893554e4686e3757fc1a89cb1f749ec5090 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/luaotfload-tool + +name luaotfload.amd64-netbsd +category Package +revision 34647 +shortdesc amd64-netbsd files of luaotfload +containersize 348 +containerchecksum ceae21f4907dfa5b3b31f72bd2739b9ff47ee55dc144de4a71ba07a92ba58b0924eb88e61276c72b1958071d498f49efbb13b5b433cf21242f855710441b761a +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/luaotfload-tool + +name luaotfload.armhf-linux +category Package +revision 34647 +shortdesc armhf-linux files of luaotfload +containersize 348 +containerchecksum d25da611b9a631404ba4a4ea4204fb693975f34239f523afcb9fe642a6632d042ca88fd97743b1baa2a6572e41b246f6cb32a3a8977d5ed6100f13dffeef8222 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/luaotfload-tool + +name luaotfload.i386-cygwin +category Package +revision 34647 +shortdesc i386-cygwin files of luaotfload +containersize 344 +containerchecksum 0fc30716362f4947447f76c33d6be39ee42323c424fec84c90e8dd41da665f14aea780d1ed93d0c3411371fce3104a2fe570fad2ba07dbc65082c93c32a68bb7 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/luaotfload-tool + +name luaotfload.i386-freebsd +category Package +revision 34647 +shortdesc i386-freebsd files of luaotfload +containersize 348 +containerchecksum 32e32f5c5677b8868b420a9b3099498faa358693f38c078842d7a6c848a7035b47a33650e417c995659dab1f15f99408a02ce7b8bce5b1e1e288996a4a7bfba3 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/luaotfload-tool name luaotfload.i386-linux category Package revision 34647 shortdesc i386-linux files of luaotfload +containersize 348 +containerchecksum 9dd324942ac4d3cb947eca41497bbb269f0551b776bed378a4b04848397330d9127cf2c9f7f860ca1b1d9aa31bb5cddba43eba5c38c09652bb45edad4eb3cabc binfiles arch=i386-linux size=1 bin/i386-linux/luaotfload-tool +name luaotfload.i386-netbsd +category Package +revision 34647 +shortdesc i386-netbsd files of luaotfload +containersize 348 +containerchecksum f60f2a88256bf6ebc818abe234da60f97d17e3618f711798940cb31b48bbe6e84dd5be08869113894086b0fc6c9fc5c09b4d93101dc1156fd94f408d73128dac +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/luaotfload-tool + +name luaotfload.i386-solaris +category Package +revision 34647 +shortdesc i386-solaris files of luaotfload +containersize 348 +containerchecksum a7f29092c97e105cf453412145e4b1396e18b5609851b95c461101ceda47e0c97e1a33a11c07c23d0303b6390c65b5ed404ec3bd08917633a2bf9902eba2bb43 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/luaotfload-tool + +name luaotfload.win32 +category Package +revision 34647 +shortdesc win32 files of luaotfload +containersize 692 +containerchecksum 63131e841af17292f1f0794688c90752864478afb827f6ce47ca11574b139b877e0f045db2bf8d25ceb4a9bb03c8228c36b81f9efae697532c01017e999d0b77 +binfiles arch=win32 size=1 + bin/win32/luaotfload-tool.exe + +name luaotfload.x86_64-cygwin +category Package +revision 34647 +shortdesc x86_64-cygwin files of luaotfload +containersize 348 +containerchecksum 7fd37caad46fd0a31bc31e1faad46a42d5475081332c4e151cdf208e1d738d039fc0acef6c2a75310e4e7d89917714207b548136a84912a9e09d553724728657 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/luaotfload-tool + +name luaotfload.x86_64-darwin +category Package +revision 34647 +shortdesc x86_64-darwin files of luaotfload +containersize 348 +containerchecksum ef2bb4f426e735a23f3914117e898618e07e0591b1354013eabe53840abec90ea4259e172ea2e4824bd7833d04ef72f92397513b0f822177ee58309b44756f2c +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/luaotfload-tool + +name luaotfload.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of luaotfload +containersize 356 +containerchecksum 3abb02929645129c6a25268e608ed6b57db0b4e4c387a17c862cc00f32ed8cc2a3f311200848fe5f26df2d4e733ce9f15345b9d0e801bafdf9928c7138d301d3 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/luaotfload-tool + +name luaotfload.x86_64-linux +category Package +revision 34647 +shortdesc x86_64-linux files of luaotfload +containersize 348 +containerchecksum 88d1a0e7f084beab1c8d28d25ed0ce3d355619b5d33fa5e7fb312e4b689532c47ac11fb5ddb5df0790c44200b8fc1fbde72d411717183d3796bbd20158265e8d +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/luaotfload-tool + +name luaotfload.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of luaotfload +containersize 352 +containerchecksum 48d897b4126b0caf93dc7d721351cfefb7f16dcc60a834c656ff90c44264193c5c95f9d621ee17cd960a8723938e09aeeae22677a3ca8b70156f949e36309e40 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/luaotfload-tool + +name luaotfload.x86_64-solaris +category Package +revision 34647 +shortdesc x86_64-solaris files of luaotfload +containersize 348 +containerchecksum 031b1d7fa386c3f51e6b3a8ad22e8996806faefbad682939a9b8c1c63b8ee2ded3ee92b052582c24cb5568b84a1935b4bf433d8bf2df13963e28edb7c41ea28a +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/luaotfload-tool + +name luapackageloader +category Package +revision 44865 +shortdesc Allow LuaTeX to load external Lua packages +relocated 1 +longdesc This package allows LuaTeX to load packages from the default +longdesc package.path and package.cpath locations. This could be useful +longdesc to load external Lua modules, including modules installed via +longdesc LuaRocks. This package requires ifluatex. +containersize 1700 +containerchecksum a89cbcb445b1a73d0fe1c5e241745d1572df9713bd867076c1390a302860891b5f08eb0aa3000d064df0a5cdc6135eeed53f5ef6f2801da17c84fc343005010f +doccontainersize 35468 +doccontainerchecksum 5e1de43c58d0bfd6b8bcd9c068d3b1084df398ca843ec341b29e55c646bba6a18fa9075a9f6cac737f0698f6bcf9626948e9be2c28f6210156d71ca00e1ef916 +docfiles size=11 + RELOC/doc/luatex/luapackageloader/README.md details="Readme" + RELOC/doc/luatex/luapackageloader/luapackageloader.pdf details="Package documentation" + RELOC/doc/luatex/luapackageloader/luapackageloader.tex +runfiles size=2 + RELOC/tex/luatex/luapackageloader/luapackageloader.lua + RELOC/tex/luatex/luapackageloader/luapackageloader.sty +catalogue-contact-bugs https://github.com/deepakjois/luapackageloader/issues +catalogue-contact-repository https://github.com/deepakjois/luapackageloader +catalogue-ctan /macros/luatex/generic/luapackageloader +catalogue-date 2017-06-07 05:22:03 +0200 +catalogue-license lppl1.3c +catalogue-topics luatex lua-supp use-lua +catalogue-version 0.1 + +name luarandom +category Package +revision 49419 +shortdesc Create lists of random numbers +relocated 1 +longdesc This package can create lists of random numbers for any given +longdesc interval [a;b]. It is possible to get lists with or without +longdesc multiple numbers. The random generator will be initialized by +longdesc the system time. The package can only be used with LuaLaTeX! +containersize 1392 +containerchecksum 54019dd968b2cf3b6ab9a3777e609789c04a0d369b1ae938df152ded3bf54607140fe6265b81ca2a75f458e9b8144000f0bf2e9d77fb00aa923f7ce9569c423f +doccontainersize 50272 +doccontainerchecksum f7fa30cd6668674cfee8116bdacd3c457fe6e1a3ef4a1c0da603db2fbaae77d187bfc5b4867aea0410a906238769d7138672b89b51eccc9fc4d110a079784092 +docfiles size=16 + RELOC/doc/lualatex/luarandom/Changes + RELOC/doc/lualatex/luarandom/README details="Readme" + RELOC/doc/lualatex/luarandom/luarandom-doc.pdf details="Package documentation" + RELOC/doc/lualatex/luarandom/luarandom-doc.tex +runfiles size=1 + RELOC/tex/lualatex/luarandom/luarandom.sty +catalogue-ctan /macros/luatex/latex/luarandom +catalogue-date 2018-12-19 05:04:41 +0100 +catalogue-license lppl1.3 +catalogue-topics luatex random calculation +catalogue-version 0.01 + name luasseq category Package revision 37877 -shortdesc Drawing spectral sequences in LuaLaTeX. +shortdesc Drawing spectral sequences in LuaLaTeX relocated 1 longdesc The package is an update of the author's sseq package, for use longdesc with LuaLaTeX. This version uses less memory, and operates longdesc faster than the original; it also offers several enhancements. -runfiles size=11 - RELOC/scripts/luasseq/luasseq.lua - RELOC/tex/lualatex/luasseq/luasseq.sty +containersize 10232 +containerchecksum 400e95fd898152e8d8e989084ca9cd115516850edb6e8d102eddaaf278f29213c8a4828dde01ca202db68d6cd2b2685bda71f63ad7a92eb586a4c303d2e9d02b +doccontainersize 224504 +doccontainerchecksum 7ac8f5df74cede5734c9c47048cbb3b079155910a89ebf0c7adb169b4b61751f6255b2c07614d44a55e8dad43bb35693bf224d0f750bff28987c7c5f1a8a5bc4 docfiles size=56 RELOC/doc/lualatex/luasseq/README - RELOC/doc/lualatex/luasseq/luasseq.pdf + RELOC/doc/lualatex/luasseq/luasseq.pdf details="Package documentation" +srccontainersize 10964 +srccontainerchecksum 4946e994a3ce2712e6da73a9969cbf2634726191845332e4464ce8d446c09235e94798c878e9e060e3a7b3bc3a27c37a299b9d30f1da6368b67875b551ee9d0d srcfiles size=11 RELOC/source/lualatex/luasseq/luasseq.dtx RELOC/source/lualatex/luasseq/luasseq.ins +runfiles size=11 + RELOC/scripts/luasseq/luasseq.lua + RELOC/tex/lualatex/luasseq/luasseq.sty catalogue-ctan /macros/luatex/latex/luasseq -catalogue-date 2015-07-16 14:41:10 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl catalogue-topics maths luatex +name luatex +category TLCore +revision 50602 +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 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,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,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,plain,tex-ini-files,unicode-data +containersize 12932 +containerchecksum 4706ab295a8cc72b6fbafa92132bbef82be4241f2b6b04a20230f763ae52e1a3be112b951d0537ef1c0fd64acb81be6726e71151b45332e90d70b05f3f8c2ccd +doccontainersize 1681640 +doccontainerchecksum 5084702c17f70541fb6def483908cdf9f60cde4c142501aad47498547acba117580284f00c502f7feba0d27dc8e5939d9d8c92e11f498ee03ad654b4be9d8ae0 +docfiles size=591 + texmf-dist/doc/luatex/base/luatex-backend.tex + texmf-dist/doc/luatex/base/luatex-callbacks.tex + texmf-dist/doc/luatex/base/luatex-contents.tex + texmf-dist/doc/luatex/base/luatex-enhancements.tex + texmf-dist/doc/luatex/base/luatex-export-titlepage.tex + texmf-dist/doc/luatex/base/luatex-firstpage.tex + texmf-dist/doc/luatex/base/luatex-fontloader.tex + texmf-dist/doc/luatex/base/luatex-fonts.tex + texmf-dist/doc/luatex/base/luatex-graphics.tex + texmf-dist/doc/luatex/base/luatex-introduction.tex + texmf-dist/doc/luatex/base/luatex-languages.tex + texmf-dist/doc/luatex/base/luatex-logos.tex + texmf-dist/doc/luatex/base/luatex-lua.tex + texmf-dist/doc/luatex/base/luatex-math.tex + texmf-dist/doc/luatex/base/luatex-modifications.tex + texmf-dist/doc/luatex/base/luatex-nodes.tex + texmf-dist/doc/luatex/base/luatex-preamble.tex + texmf-dist/doc/luatex/base/luatex-registers.tex + texmf-dist/doc/luatex/base/luatex-statistics.tex + texmf-dist/doc/luatex/base/luatex-style.tex + texmf-dist/doc/luatex/base/luatex-tex.tex + texmf-dist/doc/luatex/base/luatex-titlepage.tex + texmf-dist/doc/luatex/base/luatex.pdf details="LuaTeX Reference" + texmf-dist/doc/luatex/base/luatex.tex + texmf-dist/doc/man/man1/luatex.1 + texmf-dist/doc/man/man1/luatex.man1.pdf + texmf-dist/doc/man/man1/texlua.1 + texmf-dist/doc/man/man1/texlua.man1.pdf + texmf-dist/doc/man/man1/texluac.1 + texmf-dist/doc/man/man1/texluac.man1.pdf +runfiles size=37 + texmf-dist/tex/generic/config/luatex-unicode-letters.tex + texmf-dist/tex/generic/config/luatexiniconfig.tex + texmf-dist/web2c/texmfcnf.lua +catalogue-contact-bugs http://lists.tug.org/tex-k +catalogue-contact-home http://luatex.org +catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/luatexdir +catalogue-contact-support http://lists.tug.org/luatex +catalogue-date 2018-12-31 06:11:12 +0100 +catalogue-license gpl2 +catalogue-topics engine + +name luatex.aarch64-linux +category TLCore +revision 50887 +shortdesc aarch64-linux files of luatex +containersize 2076552 +containerchecksum b3739570e6b849bb63a28c471a0836fa6102815f838890e4b662d24b15d0de9d656f40572b0f9f7f5f5ae31ab0e1a77d6b683d7d522c1762f55dec2b73124cf5 +binfiles arch=aarch64-linux size=3307 + bin/aarch64-linux/dviluatex + bin/aarch64-linux/luajittex + bin/aarch64-linux/luatex + bin/aarch64-linux/texlua + bin/aarch64-linux/texluac + bin/aarch64-linux/texluajit + bin/aarch64-linux/texluajitc + +name luatex.amd64-freebsd +category TLCore +revision 50887 +shortdesc amd64-freebsd files of luatex +containersize 2501184 +containerchecksum 0f2dee3f4175ae742493ccfeb6d26a754b55a6e2c218996f97e7e965a7ebe02e1ebc959eded49888484207985c249ad738c9e9f61fe3bf3296971fda0b4d9a5e +binfiles arch=amd64-freebsd size=3428 + bin/amd64-freebsd/dviluatex + bin/amd64-freebsd/luajittex + bin/amd64-freebsd/luatex + bin/amd64-freebsd/texlua + bin/amd64-freebsd/texluac + bin/amd64-freebsd/texluajit + bin/amd64-freebsd/texluajitc + +name luatex.amd64-netbsd +category TLCore +revision 50892 +shortdesc amd64-netbsd files of luatex +containersize 2682880 +containerchecksum 89fd21ded40967c05fe05e1684936fdc2070b2c0b02918995c1258fd10a1be0911944ceacfda4e85735aa5aa0608a0df23dd9bf48ccedb57f038aaeb9443d6f7 +binfiles arch=amd64-netbsd size=4018 + bin/amd64-netbsd/dviluatex + bin/amd64-netbsd/luajittex + bin/amd64-netbsd/luatex + bin/amd64-netbsd/texlua + bin/amd64-netbsd/texluac + bin/amd64-netbsd/texluajit + bin/amd64-netbsd/texluajitc + +name luatex.armhf-linux +category TLCore +revision 50893 +shortdesc armhf-linux files of luatex +containersize 1897356 +containerchecksum c9209cb170e09b488bf6eeef54ef8c78053a39c9824b013a4e1c4b48455fa0118bdd87d88d6c436c7249b1305d5394cbfe5f5224bba685d439b0f1615b619e49 +binfiles arch=armhf-linux size=2841 + bin/armhf-linux/dviluatex + bin/armhf-linux/luajittex + bin/armhf-linux/luatex + bin/armhf-linux/texlua + bin/armhf-linux/texluac + bin/armhf-linux/texluajit + bin/armhf-linux/texluajitc + +name luatex.i386-cygwin +category TLCore +revision 50888 +shortdesc i386-cygwin files of luatex +containersize 2297044 +containerchecksum 0377016b8ff797ab8e7b73edaa3aa3b8c02b8f4d60355d5f8307e3b48f92d3ff4d4e74609d9a7b5a2ee6aface472ef72b2a8578cdd7ac3c6edf1a1b849528aa5 +binfiles arch=i386-cygwin size=3249 + bin/i386-cygwin/cygtexlua53-5.dll + bin/i386-cygwin/cygtexluajit-2.dll + bin/i386-cygwin/dviluatex + bin/i386-cygwin/luajittex.exe + bin/i386-cygwin/luatex.exe + bin/i386-cygwin/texlua + bin/i386-cygwin/texluac + bin/i386-cygwin/texluajit + bin/i386-cygwin/texluajitc + +name luatex.i386-freebsd +category TLCore +revision 50887 +shortdesc i386-freebsd files of luatex +containersize 2195360 +containerchecksum 842202d9c0ee900e69ed7a9f854fff1937840469d3ec2020d051ec4b69da4c5908d74470b5929b973ceae1cc84ef647fac575b5476034970991418a39d9c7efc +binfiles arch=i386-freebsd size=3042 + bin/i386-freebsd/dviluatex + bin/i386-freebsd/luajittex + bin/i386-freebsd/luatex + bin/i386-freebsd/texlua + bin/i386-freebsd/texluac + bin/i386-freebsd/texluajit + bin/i386-freebsd/texluajitc + +name luatex.i386-linux +category TLCore +revision 50893 +shortdesc i386-linux files of luatex +containersize 2419272 +containerchecksum 35b232770c09dbf2b45f2dc73ce144f90fd89b00ace8aacf0ec48d2fd8cf5737cfdad2faa47d86ebdb8ecb9e739cc3c7bc463c0fae5708f9a5ec44e1a5bc8adc +binfiles arch=i386-linux size=3420 + bin/i386-linux/dviluatex + bin/i386-linux/luajittex + bin/i386-linux/luatex + bin/i386-linux/texlua + bin/i386-linux/texluac + bin/i386-linux/texluajit + bin/i386-linux/texluajitc + +name luatex.i386-netbsd +category TLCore +revision 50892 +shortdesc i386-netbsd files of luatex +containersize 2019152 +containerchecksum 70cb2efefd9acc4fda38d0aa10ec7410edcb744026f69cb1e6f4f4bb2f585a370256ee4a04777b6c164862632490c807aaee8351ec9fc47d7399955ae2f9290a +binfiles arch=i386-netbsd size=3678 + bin/i386-netbsd/dviluatex + bin/i386-netbsd/luajittex + bin/i386-netbsd/luatex + bin/i386-netbsd/texlua + bin/i386-netbsd/texluac + bin/i386-netbsd/texluajit + bin/i386-netbsd/texluajitc + +name luatex.i386-solaris +category TLCore +revision 50887 +shortdesc i386-solaris files of luatex +containersize 2163404 +containerchecksum a12ddd7cfaa3e4fd46529e6be5087c984af9c68d1e368d0cf0a8883320e5136e8eb90a49882d0b55bec1db455f7d485806be68f4ff625058844d1d2ee3b8428d +binfiles arch=i386-solaris size=2905 + bin/i386-solaris/dviluatex + bin/i386-solaris/luajittex + bin/i386-solaris/luatex + bin/i386-solaris/texlua + bin/i386-solaris/texluac + bin/i386-solaris/texluajit + bin/i386-solaris/texluajitc + +name luatex.win32 +category TLCore +revision 50886 +shortdesc win32 files of luatex +containersize 2501172 +containerchecksum ebfdd069d018a2744a15937a9dcfd429b03585c9ba977d03a9a3d06d14e0d608c5e30d3069eb535670f8079e0dfebf8ff9391a1dab4bdadf140b732f51e719ce +binfiles arch=win32 size=3114 + bin/win32/api-ms-win-core-file-l1-2-0.dll + bin/win32/api-ms-win-core-file-l2-1-0.dll + bin/win32/api-ms-win-core-localization-l1-2-0.dll + bin/win32/api-ms-win-core-processthreads-l1-1-1.dll + bin/win32/api-ms-win-core-synch-l1-2-0.dll + bin/win32/api-ms-win-core-timezone-l1-1-0.dll + bin/win32/api-ms-win-crt-convert-l1-1-0.dll + bin/win32/api-ms-win-crt-environment-l1-1-0.dll + bin/win32/api-ms-win-crt-filesystem-l1-1-0.dll + bin/win32/api-ms-win-crt-heap-l1-1-0.dll + bin/win32/api-ms-win-crt-locale-l1-1-0.dll + bin/win32/api-ms-win-crt-math-l1-1-0.dll + bin/win32/api-ms-win-crt-multibyte-l1-1-0.dll + bin/win32/api-ms-win-crt-process-l1-1-0.dll + bin/win32/api-ms-win-crt-runtime-l1-1-0.dll + bin/win32/api-ms-win-crt-stdio-l1-1-0.dll + bin/win32/api-ms-win-crt-string-l1-1-0.dll + bin/win32/api-ms-win-crt-time-l1-1-0.dll + bin/win32/api-ms-win-crt-utility-l1-1-0.dll + bin/win32/dviluatex.exe + bin/win32/lua53.dll + bin/win32/luajit51.dll + bin/win32/luajittex.dll + bin/win32/luajittex.exe + bin/win32/luatex.dll + bin/win32/luatex.exe + bin/win32/pdfddeservername.txt + bin/win32/texlua.exe + bin/win32/texluac.exe + bin/win32/texluajit.exe + bin/win32/texluajitc.exe + bin/win32/ucrtbase.dll + bin/win32/vcruntime140.dll + +name luatex.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of luatex +containersize 2178436 +containerchecksum 096792e75d28d78519b69d8bd797c6e71e91d03b4840604d8ec30278405bef2f6a4812818d738ff2ff5cd947c5b55570b475857f38429916df69afc43b3d57ca +binfiles arch=x86_64-cygwin size=3160 + bin/x86_64-cygwin/cygtexlua53-5.dll + bin/x86_64-cygwin/cygtexluajit-2.dll + bin/x86_64-cygwin/dviluatex + bin/x86_64-cygwin/luajittex.exe + bin/x86_64-cygwin/luatex.exe + bin/x86_64-cygwin/texlua + bin/x86_64-cygwin/texluac + bin/x86_64-cygwin/texluajit + bin/x86_64-cygwin/texluajitc + +name luatex.x86_64-darwin +category TLCore +revision 50893 +shortdesc x86_64-darwin files of luatex +containersize 2296228 +containerchecksum ca80631f09cdf1ddaa68dd779acb7017e6290e223d821044b9aca098bbf1c7adb60bd6389bf3fefb88dd02ae1b4ad7b9cae0aa1cb736049ecfcd3646389170bf +binfiles arch=x86_64-darwin size=3202 + bin/x86_64-darwin/dviluatex + bin/x86_64-darwin/luajittex + bin/x86_64-darwin/luatex + bin/x86_64-darwin/texlua + bin/x86_64-darwin/texluac + bin/x86_64-darwin/texluajit + bin/x86_64-darwin/texluajitc + +name luatex.x86_64-darwinlegacy +category TLCore +revision 50887 +shortdesc x86_64-darwinlegacy files of luatex +containersize 2103840 +containerchecksum 793d6bc07ba606d432ed0473b3a30dd733d5e7b50ee07404b8a0a5211d518b11b857c4afc19a8e4571be8855e7318c27abb940412160d50e186bceaee115c305 +binfiles arch=x86_64-darwinlegacy size=2973 + bin/x86_64-darwinlegacy/dviluatex + bin/x86_64-darwinlegacy/luajittex + bin/x86_64-darwinlegacy/luatex + bin/x86_64-darwinlegacy/texlua + bin/x86_64-darwinlegacy/texluac + bin/x86_64-darwinlegacy/texluajit + bin/x86_64-darwinlegacy/texluajitc + +name luatex.x86_64-linux +category TLCore +revision 50893 +shortdesc x86_64-linux files of luatex +containersize 2383256 +containerchecksum ab3687214a53d27f379f6c3501f6c79965183ae95e5f859449607d9684f175bc0ec2679e596fa425df642ea77a90318519274356ea8d86aa77c0cf9a8d47fea1 +binfiles arch=x86_64-linux size=3244 + bin/x86_64-linux/dviluatex + bin/x86_64-linux/luajittex + bin/x86_64-linux/luatex + bin/x86_64-linux/texlua + bin/x86_64-linux/texluac + bin/x86_64-linux/texluajit + bin/x86_64-linux/texluajitc + +name luatex.x86_64-linuxmusl +category TLCore +revision 50893 +shortdesc x86_64-linuxmusl files of luatex +containersize 2497644 +containerchecksum bfd419f2b1c278825cd20cf8a9638a094e2c641aedaaf58d9e83290e89359dbddab2cb709af2170f9bab7d441291885ea07aeaac77ec91d2d85546ce891021df +binfiles arch=x86_64-linuxmusl size=3652 + bin/x86_64-linuxmusl/dviluatex + bin/x86_64-linuxmusl/luajittex + bin/x86_64-linuxmusl/luatex + bin/x86_64-linuxmusl/texlua + bin/x86_64-linuxmusl/texluac + bin/x86_64-linuxmusl/texluajit + bin/x86_64-linuxmusl/texluajitc + +name luatex.x86_64-solaris +category TLCore +revision 50887 +shortdesc x86_64-solaris files of luatex +containersize 1771224 +containerchecksum 67596bcaf2b0cdcb637c612f5125d9435e178065b46fc0546e918923db2a7fd2ae3af39a023460a410c3532374c404eebcfb3edef9ddba80b2970ff84e8cd9d4 +binfiles arch=x86_64-solaris size=1605 + bin/x86_64-solaris/dviluatex + bin/x86_64-solaris/luatex + bin/x86_64-solaris/texlua + bin/x86_64-solaris/texluac + +name luatex85 +category Package +revision 41456 +shortdesc pdfTeX aliases for LuaTeX +relocated 1 +longdesc The package provides emulation of pdfTeX primitives for LuaTeX +longdesc v0.85+. +containersize 1740 +containerchecksum fbc1306d40e1c329a106d7ec4ef79ebb99b2869ce72c45212b87fa03f66a18b1636324dafc739a33500be77bee2c71ebeff02c97c42f85716f5bded4dcebc021 +doccontainersize 171144 +doccontainerchecksum 4bf353f60c305ea76e66848920e521dec0c66c80f71ebdfb0593acfc9e2914eac272eba3d69f63f43fe8be903cfbb2da7edd82cbc3d38a897934d91f1ac276b7 +docfiles size=43 + RELOC/doc/generic/luatex85/README.md details="Readme" + RELOC/doc/generic/luatex85/luatex85.pdf details="Package documentation" +srccontainersize 3788 +srccontainerchecksum 40f2732ba0eea372d084c7a9096e12de76a6f7c4ee2c8c9c042ae51696ca46fb527aa73dfb37b7c6a1a75f9753ed32b28fb9d3f2474cfd54528336b4a3cc95e6 +srcfiles size=4 + RELOC/source/generic/luatex85/luatex85.dtx + RELOC/source/generic/luatex85/luatex85.ins +runfiles size=2 + RELOC/tex/generic/luatex85/luatex85.sty +catalogue-ctan /macros/generic/luatex85 +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics lua-supp +catalogue-version 1.4 + name luatexbase category Package -revision 30562 -shortdesc Basic resource management for LuaTeX code. -relocated 1 -longdesc The bundle provides basic facilities for LuaTeX macro -longdesc programmers, mostly resource allocation and convenience -longdesc packages. Provided are: luatexbase-attr: attribute allocation; -longdesc luatexbase-cctb: catcode table allocation; luatexbase-compat: -longdesc compatibility helpers; luatexbase-loader: Lua module loading; -longdesc luatexbase-modutils: Lua module declaration; luatexbase-mcb: -longdesc callbacks extension; and luatexbase-regs: allocation of -longdesc registers and the like. In addition, the (unadorned) luatexbase -longdesc package loads all the above in one fell swoop. -runfiles size=19 - RELOC/tex/luatex/luatexbase/attr.lua - RELOC/tex/luatex/luatexbase/cctb.lua +revision 38550 +shortdesc Basic resource management for LuaTeX code +relocated 1 +longdesc The LaTeX kernel (LaTeX2e 2015/10/01 onward) builds in support +longdesc for LuaTeX functionality, also available as ltluatex.tex for +longdesc users of plain TeX and those with older LaTeX kernel +longdesc implementations. This support is based on ideas taken from the +longdesc original luatexbase package, but there are interface +longdesc differences. This 'stub' package provides a compatibility layer +longdesc to allow existing packages to upgrade smoothly to the new +longdesc support structure. +containersize 3500 +containerchecksum 5a369840242a429cc7b827126120f38656684d554e06882af8174c009272f0de88a11effa881fca338cb3e7f32aa80fc16acf24d3fc10fac2c2391ce2f2f6972 +doccontainersize 263756 +doccontainerchecksum 4e7a3e00d5063996058bd85bdc11f3469bb90f16bdc5c6ecf1077189718950053d660a86988f1bf4f203bc8f91da0e9f79d76a327e0d2fc38dfbd1aafab20028 +docfiles size=66 + RELOC/doc/luatex/luatexbase/README.md details="Readme" + RELOC/doc/luatex/luatexbase/luatexbase.pdf details="Package documentation" +srccontainersize 8444 +srccontainerchecksum bf461aac2cea7282fa4be8beae1254fdd2260b34205b012bb2ab1780af387a6855634c87005ce58b5031c863b857f56f88f436f262f192ff6c3a16bea5acc919 +srcfiles size=9 + RELOC/source/luatex/luatexbase/luatexbase.dtx + RELOC/source/luatex/luatexbase/luatexbase.ins +runfiles size=11 RELOC/tex/luatex/luatexbase/luatexbase-attr.sty RELOC/tex/luatex/luatexbase/luatexbase-cctb.sty RELOC/tex/luatex/luatexbase/luatexbase-compat.sty @@ -102259,68 +167900,74 @@ runfiles size=19 RELOC/tex/luatex/luatexbase/luatexbase-regs.sty RELOC/tex/luatex/luatexbase/luatexbase.loader.lua RELOC/tex/luatex/luatexbase/luatexbase.sty - RELOC/tex/luatex/luatexbase/mcb.lua - RELOC/tex/luatex/luatexbase/modutils.lua -docfiles size=963 - RELOC/doc/luatex/luatexbase/NEWS - RELOC/doc/luatex/luatexbase/README - RELOC/doc/luatex/luatexbase/TODO - RELOC/doc/luatex/luatexbase/luatexbase-attr.pdf - RELOC/doc/luatex/luatexbase/luatexbase-cctb.pdf - RELOC/doc/luatex/luatexbase/luatexbase-compat.pdf - RELOC/doc/luatex/luatexbase/luatexbase-loader.pdf - RELOC/doc/luatex/luatexbase/luatexbase-mcb.pdf - RELOC/doc/luatex/luatexbase/luatexbase-modutils.pdf - RELOC/doc/luatex/luatexbase/luatexbase-regs.pdf - RELOC/doc/luatex/luatexbase/luatexbase.pdf - RELOC/doc/luatex/luatexbase/test-attr-latex.tex - RELOC/doc/luatex/luatexbase/test-attr-plain.tex - RELOC/doc/luatex/luatexbase/test-base-latex.tex - RELOC/doc/luatex/luatexbase/test-base-plain.tex - RELOC/doc/luatex/luatexbase/test-cctb-latex.tex - RELOC/doc/luatex/luatexbase/test-cctb-plain.tex - RELOC/doc/luatex/luatexbase/test-compat-latex.tex - RELOC/doc/luatex/luatexbase/test-compat-plain.tex - RELOC/doc/luatex/luatexbase/test-loader-latex.tex - RELOC/doc/luatex/luatexbase/test-loader-plain.tex - RELOC/doc/luatex/luatexbase/test-loader.lua - RELOC/doc/luatex/luatexbase/test-loader.sub.lua - RELOC/doc/luatex/luatexbase/test-mcb-aux.tex - RELOC/doc/luatex/luatexbase/test-mcb-latex.tex - RELOC/doc/luatex/luatexbase/test-mcb-plain.tex - RELOC/doc/luatex/luatexbase/test-mcb.lua - RELOC/doc/luatex/luatexbase/test-modutils-latex.tex - RELOC/doc/luatex/luatexbase/test-modutils-plain.tex - RELOC/doc/luatex/luatexbase/test-modutils.lua - RELOC/doc/luatex/luatexbase/test-regs-latex.tex - RELOC/doc/luatex/luatexbase/test-regs-plain.tex -srcfiles size=43 - RELOC/source/luatex/luatexbase/Makefile - RELOC/source/luatex/luatexbase/luatexbase-attr.dtx - RELOC/source/luatex/luatexbase/luatexbase-cctb.dtx - RELOC/source/luatex/luatexbase/luatexbase-compat.dtx - RELOC/source/luatex/luatexbase/luatexbase-loader.dtx - RELOC/source/luatex/luatexbase/luatexbase-mcb.dtx - RELOC/source/luatex/luatexbase/luatexbase-modutils.dtx - RELOC/source/luatex/luatexbase/luatexbase-regs.dtx - RELOC/source/luatex/luatexbase/luatexbase.dtx catalogue-ctan /macros/luatex/generic/luatexbase -catalogue-date 2015-04-05 06:37:50 +0200 -catalogue-license pd -catalogue-version 0.6 +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics luatex +catalogue-version 1.3 name luatexja category Package -revision 38309 +revision 50978 shortdesc Typeset Japanese with Lua(La)TeX relocated 1 longdesc The package offers support for typesetting Japanese documents longdesc with LuaTeX. Either of the Plain and LaTeX2e formats may be longdesc used with the package. -runfiles size=340 +containersize 193180 +containerchecksum d524e3e5a24228de35610e6da75b0a1b1922919729e9253d3cb7db4e8760e4d6c48e2a3abbc6dbc2062714f549d11d531463fc720ec7b8e95a35f49ba8c7cc83 +doccontainersize 3433596 +doccontainerchecksum da96727fd12c39ee6b2f48abeab03a63195f252e4237d672cc870895ed718ca4e769ce1f5218d0928a0662efd5f27809a376bdc769caae27df9849c55585685a +docfiles size=986 + RELOC/doc/luatex/luatexja/COPYING + RELOC/doc/luatex/luatexja/README details="Readme" + RELOC/doc/luatex/luatexja/jfm-test.lua + RELOC/doc/luatex/luatexja/jfm-ujisc33.lua + RELOC/doc/luatex/luatexja/lltjp-geometry.pdf + RELOC/doc/luatex/luatexja/lltjp-geometry.tex + RELOC/doc/luatex/luatexja/ltjclasses.pdf + RELOC/doc/luatex/luatexja/ltjltxdoc.pdf + RELOC/doc/luatex/luatexja/ltjsclasses.pdf + RELOC/doc/luatex/luatexja/luatexja-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/luatex/luatexja/luatexja-ja.pdf details="Package documentation (Japanese)" language="ja" + RELOC/doc/luatex/luatexja/luatexja-ruby.pdf + RELOC/doc/luatex/luatexja/luatexja-ruby.tex + RELOC/doc/luatex/luatexja/luatexja-zhfonts.pdf + RELOC/doc/luatex/luatexja/luatexja-zhfonts.tex + RELOC/doc/luatex/luatexja/luatexja.dtx + RELOC/doc/luatex/luatexja/luatexja.ins +srccontainersize 83936 +srccontainerchecksum e47d4731b4f48ad220422f305bc6c017f0c405f414a9e2a5fde2823e285d935e918aa2f1b0c748a0743fc82b2c3e620d0f9f8eb59b8747b8a984f6b2da188451 +srcfiles size=121 + RELOC/source/luatex/luatexja/ltj-kinsoku_make.tex + RELOC/source/luatex/luatexja/ltjclasses.dtx + RELOC/source/luatex/luatexja/ltjclasses.ins + RELOC/source/luatex/luatexja/ltjltxdoc.dtx + RELOC/source/luatex/luatexja/ltjltxdoc.ins + RELOC/source/luatex/luatexja/ltjsclasses.dtx + RELOC/source/luatex/luatexja/ltjsclasses.ins + RELOC/source/luatex/luatexja/tool/blocks2defcharrange.rb + RELOC/source/luatex/luatexja/tool/chars2defcharrange.rb + RELOC/source/luatex/luatexja/tool/function_uax50.lua + RELOC/source/luatex/luatexja/tool/ivslist.tex + RELOC/source/luatex/luatexja/tool/jfm-convert.lua + RELOC/source/luatex/luatexja/tool/jfm-readable.rb + RELOC/source/luatex/luatexja/tool/kyoikukanji.txt + RELOC/source/luatex/luatexja/tool/kyoikukanjiChars.tex + RELOC/source/luatex/luatexja/tool/ltj-unicode-ccfix_make2.pl + RELOC/source/luatex/luatexja/tool/otf-AdobeMingStd-Light.txt + RELOC/source/luatex/luatexja/tool/otf-AdobeMyungjoStd-Medium.txt + RELOC/source/luatex/luatexja/tool/otf-AdobeSongStd-Light.txt + RELOC/source/luatex/luatexja/tool/otf-KozMinPr6N-Regular.txt + RELOC/source/luatex/luatexja/tool/table_ivd_aj1.lua + RELOC/source/luatex/luatexja/tool/table_jisx0208.lua + RELOC/source/luatex/luatexja/tool/unicodeBlocks.tex +runfiles size=443 RELOC/tex/luatex/luatexja/addons/luatexja-adjust.sty RELOC/tex/luatex/luatexja/addons/luatexja-ajmacros.sty - RELOC/tex/luatex/luatexja/addons/luatexja-fontspec-24.sty + RELOC/tex/luatex/luatexja/addons/luatexja-fontspec-25c.sty + RELOC/tex/luatex/luatexja/addons/luatexja-fontspec-26h.sty + RELOC/tex/luatex/luatexja/addons/luatexja-fontspec-27c.sty RELOC/tex/luatex/luatexja/addons/luatexja-fontspec.sty RELOC/tex/luatex/luatexja/addons/luatexja-otf.sty RELOC/tex/luatex/luatexja/addons/luatexja-preset.sty @@ -102343,17 +167990,17 @@ runfiles size=340 RELOC/tex/luatex/luatexja/ltj-base.lua RELOC/tex/luatex/luatexja/ltj-base.sty RELOC/tex/luatex/luatexja/ltj-charrange.lua - RELOC/tex/luatex/luatexja/ltj-compat-ptex.sty RELOC/tex/luatex/luatexja/ltj-compat.lua RELOC/tex/luatex/luatexja/ltj-debug.lua RELOC/tex/luatex/luatexja/ltj-direction.lua - RELOC/tex/luatex/luatexja/ltj-infomute.lua RELOC/tex/luatex/luatexja/ltj-inputbuf.lua + RELOC/tex/luatex/luatexja/ltj-ivd_aj1.lua RELOC/tex/luatex/luatexja/ltj-jfmglue.lua RELOC/tex/luatex/luatexja/ltj-jfont.lua RELOC/tex/luatex/luatexja/ltj-jisx0208.lua RELOC/tex/luatex/luatexja/ltj-kinsoku.lua RELOC/tex/luatex/luatexja/ltj-latex.sty + RELOC/tex/luatex/luatexja/ltj-lineskip.lua RELOC/tex/luatex/luatexja/ltj-math.lua RELOC/tex/luatex/luatexja/ltj-otf.lua RELOC/tex/luatex/luatexja/ltj-plain.sty @@ -102362,7 +168009,6 @@ runfiles size=340 RELOC/tex/luatex/luatexja/ltj-ruby.lua RELOC/tex/luatex/luatexja/ltj-setwidth.lua RELOC/tex/luatex/luatexja/ltj-stack.lua - RELOC/tex/luatex/luatexja/ltj-tangle.lua RELOC/tex/luatex/luatexja/ltj-unicode-ccfix.lua RELOC/tex/luatex/luatexja/ltjarticle.cls RELOC/tex/luatex/luatexja/ltjbk10.clo @@ -102378,6 +168024,7 @@ runfiles size=340 RELOC/tex/luatex/luatexja/ltjsize12.clo RELOC/tex/luatex/luatexja/ltjskiyou.cls RELOC/tex/luatex/luatexja/ltjspf.cls + RELOC/tex/luatex/luatexja/ltjsreport.cls RELOC/tex/luatex/luatexja/ltjtarticle.cls RELOC/tex/luatex/luatexja/ltjtbk10.clo RELOC/tex/luatex/luatexja/ltjtbk11.clo @@ -102394,163 +168041,100 @@ runfiles size=340 RELOC/tex/luatex/luatexja/patches/lltjcore.sty RELOC/tex/luatex/luatexja/patches/lltjdefs.sty RELOC/tex/luatex/luatexja/patches/lltjfont.sty + RELOC/tex/luatex/luatexja/patches/lltjp-array.sty RELOC/tex/luatex/luatexja/patches/lltjp-fontspec.sty RELOC/tex/luatex/luatexja/patches/lltjp-footmisc.sty RELOC/tex/luatex/luatexja/patches/lltjp-geometry.sty RELOC/tex/luatex/luatexja/patches/lltjp-listings.sty + RELOC/tex/luatex/luatexja/patches/lltjp-microtype.sty + RELOC/tex/luatex/luatexja/patches/lltjp-preview.sty + RELOC/tex/luatex/luatexja/patches/lltjp-siunitx.sty RELOC/tex/luatex/luatexja/patches/lltjp-stfloats.sty RELOC/tex/luatex/luatexja/patches/lltjp-tascmac.sty RELOC/tex/luatex/luatexja/patches/lltjp-unicode-math.sty RELOC/tex/luatex/luatexja/patches/lltjp-xunicode.sty -docfiles size=1048 - RELOC/doc/luatex/luatexja/COPYING - RELOC/doc/luatex/luatexja/README - RELOC/doc/luatex/luatexja/jfm-test.lua - RELOC/doc/luatex/luatexja/jfm-ujisc33.lua - RELOC/doc/luatex/luatexja/lltjp-geometry.pdf - RELOC/doc/luatex/luatexja/lltjp-geometry.tex - RELOC/doc/luatex/luatexja/ltjclasses.pdf - RELOC/doc/luatex/luatexja/ltjltxdoc.pdf - RELOC/doc/luatex/luatexja/ltjsclasses.pdf - RELOC/doc/luatex/luatexja/luatexja-en.pdf - RELOC/doc/luatex/luatexja/luatexja-ja.pdf - RELOC/doc/luatex/luatexja/luatexja-ruby.pdf - RELOC/doc/luatex/luatexja/luatexja-ruby.tex - RELOC/doc/luatex/luatexja/luatexja-zhfonts.pdf - RELOC/doc/luatex/luatexja/luatexja-zhfonts.tex - RELOC/doc/luatex/luatexja/luatexja.dtx - RELOC/doc/luatex/luatexja/luatexja.ins -srcfiles size=106 - RELOC/source/luatex/luatexja/ltj-kinsoku_make.tex - RELOC/source/luatex/luatexja/ltjclasses.dtx - RELOC/source/luatex/luatexja/ltjclasses.ins - RELOC/source/luatex/luatexja/ltjltxdoc.dtx - RELOC/source/luatex/luatexja/ltjltxdoc.ins - RELOC/source/luatex/luatexja/ltjsclasses.dtx - RELOC/source/luatex/luatexja/ltjsclasses.ins - RELOC/source/luatex/luatexja/tool/blocks2defcharrange.rb - RELOC/source/luatex/luatexja/tool/chars2defcharrange.rb - RELOC/source/luatex/luatexja/tool/ivslist.tex - RELOC/source/luatex/luatexja/tool/jfm-convert.lua - RELOC/source/luatex/luatexja/tool/jfm-readable.rb - RELOC/source/luatex/luatexja/tool/jisx0208table.tex - RELOC/source/luatex/luatexja/tool/kyoikukanji.txt - RELOC/source/luatex/luatexja/tool/kyoikukanjiChars.tex - RELOC/source/luatex/luatexja/tool/ltj-unicode-ccfix_make2.pl - RELOC/source/luatex/luatexja/tool/otf-AdobeMingStd-Light.txt - RELOC/source/luatex/luatexja/tool/otf-AdobeMyungjoStd-Medium.txt - RELOC/source/luatex/luatexja/tool/otf-AdobeSongStd-Light.txt - RELOC/source/luatex/luatexja/tool/otf-KozMinPr6N-Regular.txt - RELOC/source/luatex/luatexja/tool/unicodeBlocks.tex +catalogue-contact-bugs https://osdn.net/projects/luatex-ja/ticket/ +catalogue-contact-home https://osdn.net/projects/luatex-ja/wiki/FrontPage(en) +catalogue-contact-repository https://osdn.net/projects/luatex-ja/scm/git/luatexja/ catalogue-ctan /macros/luatex/generic/luatexja -catalogue-date 2015-09-06 09:23:59 +0200 +catalogue-date 2019-05-04 15:57:00 +0200 catalogue-license bsd catalogue-topics japanese luatex class -catalogue-version 20150906.0 +catalogue-version 20190504.0 name luatexko category Package -revision 37775 -shortdesc Typeset Korean with Lua(La)TeX. +revision 50924 +shortdesc Typeset Korean with Lua(La)TeX relocated 1 longdesc This is a Lua(La)TeX macro package that supports typesetting -longdesc Korean documents. LuaTeX version 0.76+ and luaotfload package -longdesc version 2.2+ are required. This package also requires both cjk- -longdesc ko and xetexko packages for its full functionality. -runfiles size=32 - RELOC/tex/luatex/luatexko/luatexko-core.sty +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 19436 +containerchecksum d0e3ab2f81f719c4065c0c39e0262c9b8cf9d8e7bcd96a8dd6d9f57dd3ca8c053f4760846d325600bcbb48fa39e8caeb30f8c11cab3acfc5d96235652c249c1f +doccontainersize 281064 +doccontainerchecksum b1bdce50e6c95999422df7e0eb317dc02c55a38175824024d3662c7c56976077f63fb73857ee3d3137f78072066dccc90203736cc0d7d57fd1693359cc83837a +docfiles size=77 + RELOC/doc/luatex/luatexko/ChangeLog + RELOC/doc/luatex/luatexko/README details="Readme" + RELOC/doc/luatex/luatexko/luatexko-doc.pdf details="Package documentation" + RELOC/doc/luatex/luatexko/luatexko-doc.tex +runfiles size=26 RELOC/tex/luatex/luatexko/luatexko-normalize.lua RELOC/tex/luatex/luatexko/luatexko-uhc2utf8.lua RELOC/tex/luatex/luatexko/luatexko.lua RELOC/tex/luatex/luatexko/luatexko.sty -docfiles size=62 - RELOC/doc/luatex/luatexko/ChangeLog - RELOC/doc/luatex/luatexko/README - RELOC/doc/luatex/luatexko/luatexko-doc.pdf - RELOC/doc/luatex/luatexko/luatexko-doc.tex +catalogue-contact-bugs https://github.com/dohyunkim/luatexko/issues +catalogue-contact-repository https://github.com/dohyunkim/luatexko catalogue-ctan /macros/luatex/generic/luatexko -catalogue-date 2015-07-02 20:51:48 +0200 -catalogue-license lppl1.3 +catalogue-date 2019-05-02 08:43:42 +0200 +catalogue-license lppl1.3c catalogue-topics luatex korean -catalogue-version 1.9 - -name luatex -category TLCore -revision 37242 -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 luatex.ARCH -execute AddFormat name=luatex engine=luatex patterns=language.def,language.dat.lua options="luatex.ini" -execute AddFormat name=dviluatex engine=luatex patterns=language.def,language.dat.lua options="dviluatex.ini" -execute AddFormat name=luajittex engine=luajittex patterns=language.def,language.dat.lua options="luatex.ini" -runfiles size=37 - texmf-dist/tex/generic/config/luatex-unicode-letters.tex - texmf-dist/tex/generic/config/luatexiniconfig.tex - texmf-dist/web2c/texmfcnf.lua -docfiles size=339 - texmf-dist/doc/luatex/base/luatexref-env.tex - texmf-dist/doc/luatex/base/luatexref-t.pdf - texmf-dist/doc/luatex/base/luatexref-t.tex - texmf-dist/doc/man/man1/luatex.1 - texmf-dist/doc/man/man1/luatex.man1.pdf - texmf-dist/doc/man/man1/texlua.1 - texmf-dist/doc/man/man1/texlua.man1.pdf - texmf-dist/doc/man/man1/texluac.1 - texmf-dist/doc/man/man1/texluac.man1.pdf -catalogue-date 2015-04-04 16:29:12 +0200 -catalogue-license gpl2 - -name luatex.i386-linux -category TLCore -revision 37340 -shortdesc i386-linux files of luatex -binfiles arch=i386-linux size=6108 - bin/i386-linux/dviluatex - bin/i386-linux/luajittex - bin/i386-linux/luatex - bin/i386-linux/texlua - bin/i386-linux/texluac - bin/i386-linux/texluajit - bin/i386-linux/texluajitc +catalogue-version 2.0 name luatextra category Package revision 20747 -shortdesc Additional macros for Plain TeX and LaTeX in LuaTeX. +shortdesc Additional macros for Plain TeX and LaTeX in LuaTeX relocated 1 longdesc The package provides a coherent extended programming -longdesc environment for use with luaTeX. It loads packages fontspec, +longdesc 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. -runfiles size=1 - RELOC/tex/lualatex/luatextra/luatextra.sty +containersize 1056 +containerchecksum 03c95a5e42d8fc0ed88704799a36624ebb48b9c7606acbc09de29e5da845ede3f239a6dda43cbfb4377971cecb55b1f5280cf0ea1aae5057f3ab8df2e0870745 +doccontainersize 317312 +doccontainerchecksum f1c0d31fbd66f4e78eb638a9bb336f49de3d19b29bf276fb6fd0d976ba2f33599c1536ec82f7887af1c1ee359b48b1048d400b7faf0cd8016b914f4c5318c849 docfiles size=80 RELOC/doc/lualatex/luatextra/News - RELOC/doc/lualatex/luatextra/README - RELOC/doc/lualatex/luatextra/luatextra.pdf + RELOC/doc/lualatex/luatextra/README details="Readme" + RELOC/doc/lualatex/luatextra/luatextra.pdf details="Package documentation" RELOC/doc/lualatex/luatextra/test.tex +srccontainersize 3492 +srccontainerchecksum 2050bf6c907f6f4e210b400cc93b1786a7ea8407eb64e90054b2ac8408d31689fdb1ffcf4859f1bf6c24c298e5d07fcbd201574b9b397de192609dda504502e0 srcfiles size=3 RELOC/source/lualatex/luatextra/Makefile RELOC/source/lualatex/luatextra/luatextra.dtx +runfiles size=1 + RELOC/tex/lualatex/luatextra/luatextra.sty +catalogue-contact-repository https://github.com/lualatex/luatextra catalogue-ctan /macros/luatex/latex/luatextra -catalogue-date 2014-04-30 15:31:14 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license pd +catalogue-topics luatex catalogue-version 1.0.1 name luatodonotes category Package -revision 36505 -shortdesc Add editing annotations in a LuaLaTeX document. +revision 45454 +shortdesc Add editing annotations in a LuaLaTeX document relocated 1 longdesc The package allows the user to insert comments into a document longdesc that suggest (for example) further editing that may be needed. @@ -102559,81 +168143,732 @@ 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. -runfiles size=33 +containersize 26228 +containerchecksum df5879d73d416054a5146919a59c2bcc7564f6895cd32b3a93e287c62f406f7d53dca0f6dc3da1e1380027e8403aebea75076dc50517dc697b8f9fb2279cab47 +doccontainersize 206800 +doccontainerchecksum bf2f0e49cd323e7439c1ce98c76deb0384c9b9a540764eccf3322da50ae939e855e5a002b41fd00e280aaf8d135959ec87b05830e9634e8d1bc701df97568852 +docfiles size=53 + RELOC/doc/lualatex/luatodonotes/README.md details="Readme" + RELOC/doc/lualatex/luatodonotes/luatodonotes.pdf details="Package documentation" +srccontainersize 20308 +srccontainerchecksum 6c7c1a9669405da4e07dc218ac84c23018923314dc3fc77a89a2755ab458fca7a3a35b6fd17dfbd4e7bd5deaab63bcb09af8e81d83680246eff43bf7a2b177c9 +srcfiles size=22 + RELOC/source/lualatex/luatodonotes/luatodonotes.dtx + RELOC/source/lualatex/luatodonotes/luatodonotes.ins +runfiles size=34 RELOC/tex/lualatex/luatodonotes/inspect.lua RELOC/tex/lualatex/luatodonotes/luatodonotes.lua RELOC/tex/lualatex/luatodonotes/luatodonotes.sty RELOC/tex/lualatex/luatodonotes/path_line.lua RELOC/tex/lualatex/luatodonotes/path_point.lua -docfiles size=49 - RELOC/doc/lualatex/luatodonotes/README.md - RELOC/doc/lualatex/luatodonotes/luatodonotes.pdf -srcfiles size=19 - RELOC/source/lualatex/luatodonotes/luatodonotes.dtx - RELOC/source/lualatex/luatodonotes/luatodonotes.ins +catalogue-also todonotes +catalogue-contact-bugs https://github.com/fabianlipp/luatodonotes/issues +catalogue-contact-repository https://github.com/fabianlipp/luatodonotes catalogue-ctan /macros/luatex/latex/luatodonotes -catalogue-date 2015-03-13 17:59:28 +0100 +catalogue-date 2017-10-01 23:18:24 +0200 catalogue-license lppl1.2 -catalogue-version 0.2 - -name lua-visual-debug -category Package -revision 25881 -shortdesc Visual debugging with LuaLaTeX. -relocated 1 -longdesc The package uses lua code to provide visible indications of -longdesc boxes, glues, kerns and penalties in the PDF output. The -longdesc package is known to work in LaTeX and Plain TeX documents. -runfiles size=3 - RELOC/tex/luatex/lua-visual-debug/lua-visual-debug.lua - RELOC/tex/luatex/lua-visual-debug/lua-visual-debug.sty -docfiles size=149 - RELOC/doc/luatex/lua-visual-debug/README - RELOC/doc/luatex/lua-visual-debug/README.doc - RELOC/doc/luatex/lua-visual-debug/lvdebug-doc.pdf - RELOC/doc/luatex/lua-visual-debug/lvdebug-doc.tex - RELOC/doc/luatex/lua-visual-debug/lvdebugdetail1-num.png - RELOC/doc/luatex/lua-visual-debug/sample-plain.pdf - RELOC/doc/luatex/lua-visual-debug/sample-plain.tex - RELOC/doc/luatex/lua-visual-debug/sample.pdf - RELOC/doc/luatex/lua-visual-debug/sample.tex - RELOC/doc/luatex/lua-visual-debug/strut.png -catalogue-ctan /macros/luatex/generic/lua-visual-debug -catalogue-date 2015-01-14 14:35:56 +0100 -catalogue-license other-free +catalogue-topics notes editorial luatex use-lua catalogue-version 0.4 +name luavlna +category Package +revision 50993 +shortdesc Prevent line breaks after single letter words, units, or adademic titles +relocated 1 +longdesc In some languages, like Czech or Polish, there should be no +longdesc single letter words at the end of a line, according to +longdesc typographical norms. This package handles such situations using +longdesc LuaTeX's callback mechanism. In doing this, the package can +longdesc detect languages used in the text and insert spaces only in +longdesc parts of the document where languages requiring this feature +longdesc are used. Another feature of this package is the inclusion of +longdesc non-breakable space after initials (like in personal names), +longdesc after or before academic degrees, and between numbers and +longdesc units. The package supports both plain LuaTeX and LuaLaTeX. +longdesc BTW: "vlna" is the Czech word for "wave" or "curl" and also +longdesc denotes the tilde which, in TeX, is used for "unbreakable +longdesc spaces". +containersize 5512 +containerchecksum 532172433fe45c3b6a81d7b788f6202f46ba0685da373698629c11177d298ea81a30d967310b52c9055fe2dce6589e2ea67f08be9d1d3da5dc1488542feedaf9 +doccontainersize 90488 +doccontainerchecksum 6e6c7b0d9701804b557605156b391815497bc7b78d7d3aeba172ad89e3f83d4cba7462e3f045d390d4f7a458f9b344083caaa27821a774f68b8e9cde476e9bda +docfiles size=26 + RELOC/doc/luatex/luavlna/README.md details="Readme" + RELOC/doc/luatex/luavlna/luavlna-doc.pdf details="Package documentation" + RELOC/doc/luatex/luavlna/luavlna-doc.tex + RELOC/doc/luatex/luavlna/luavlna.tex +runfiles size=11 + RELOC/tex/luatex/luavlna/luavlna-csplain-langs.lua + RELOC/tex/luatex/luavlna/luavlna-langno.lua + RELOC/tex/luatex/luavlna/luavlna-predegrees.lua + RELOC/tex/luatex/luavlna/luavlna-presi.lua + RELOC/tex/luatex/luavlna/luavlna-si.lua + RELOC/tex/luatex/luavlna/luavlna-sufdegrees.lua + RELOC/tex/luatex/luavlna/luavlna.4ht + RELOC/tex/luatex/luavlna/luavlna.lua + RELOC/tex/luatex/luavlna/luavlna.sty +catalogue-also encxvlna xevlna +catalogue-contact-bugs https://github.com/michal-h21/luavlna/issues +catalogue-contact-repository https://github.com/michal-h21/luavlna +catalogue-ctan /macros/luatex/generic/luavlna +catalogue-date 2019-04-16 17:43:34 +0200 +catalogue-license lppl1.3 +catalogue-topics typesetting czech slovak polish luatex +catalogue-version 0.1c + name luaxml category Package -revision 32741 -shortdesc Lua library for reading and serialising XML files. -relocated 1 -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. -runfiles size=13 - RELOC/tex/luatex/luaxml/dom-sample.lua +revision 49663 +shortdesc Lua library for reading and serialising XML files +relocated 1 +longdesc LuaXML is pure lua library for reading and serializing of the +longdesc XML files. Current release is aimed mainly as support for the +longdesc odsfile package. The documentation was created by automatic +longdesc conversion of original documentation in the source code. +containersize 28028 +containerchecksum 5cba95689de7c3afae3882158045ef467038bacdf04b0c5c7fe455ea4c4de2d69f80890b44ca4e5b7da3eca9bce6ce995c30be750816739074e2d69718aa3918 +doccontainersize 101740 +doccontainerchecksum 4be0165dacf83fa7636a7234a0bf2f73f2c2b366e55acb72fe8cc396ea9eba42b3199dee0ca7b783f2a250e8755b0010d94fa8f117ee5a072fa0b1336a0b45fc +docfiles size=32 + RELOC/doc/luatex/luaxml/README details="Readme" + RELOC/doc/luatex/luaxml/luaxml.pdf details="Package documentation" + RELOC/doc/luatex/luaxml/luaxml.tex +runfiles size=31 + RELOC/tex/luatex/luaxml/luaxml-cssquery.lua + RELOC/tex/luatex/luaxml/luaxml-domobject.lua + RELOC/tex/luatex/luaxml/luaxml-entities.lua RELOC/tex/luatex/luaxml/luaxml-mod-handler.lua RELOC/tex/luatex/luaxml/luaxml-mod-xml.lua + RELOC/tex/luatex/luaxml/luaxml-namedentities.lua + RELOC/tex/luatex/luaxml/luaxml-parse-query.lua RELOC/tex/luatex/luaxml/luaxml-pretty.lua - RELOC/tex/luatex/luaxml/luaxml-selectors.lua RELOC/tex/luatex/luaxml/luaxml-stack.lua RELOC/tex/luatex/luaxml/luaxml-testxml.lua -docfiles size=32 - RELOC/doc/luatex/luaxml/README - RELOC/doc/luatex/luaxml/luaxml.pdf - RELOC/doc/luatex/luaxml/luaxml.tex +catalogue-contact-repository https://github.com/michal-h21/LuaXML catalogue-ctan /macros/luatex/generic/luaxml -catalogue-date 2015-01-05 20:19:10 +0100 +catalogue-date 2019-01-10 13:13:34 +0100 catalogue-license other-free -catalogue-version 0.0.2 +catalogue-topics foreign-import luatex use-lua +catalogue-version 0.1h + +name lwarp +category Package +revision 50914 +shortdesc Converts LaTeX to HTML +longdesc This package converts LaTeX to HTML by using LaTeX to process +longdesc the user's document and generate HTML tags. External utility +longdesc programs are only used for the final conversion of text and +longdesc images. Math may be represented by SVG files or MathJax. +longdesc Hundreds of LaTeX packages are supported, and their load order +longdesc is automatically verified. Documents may be produced by LaTeX, +longdesc LuaLaTeX, XeLaTeX, and by several CJK engines, classes, and +longdesc packages. A texlua script automates compilation, index, +longdesc glossary, and batch image processing, and also supports +longdesc latexmk. Configuration is semi-automatic at the first manual +longdesc compile. Support files are self-generated. Print and HTML +longdesc versions of each document may coexist. Assistance is provided +longdesc for HTML import into EPUB conversion software and word +longdesc processors. Requirements include the commonly-available Poppler +longdesc utilities, and Perl. Detailed installation instructions are +longdesc included for each of the major operating systems and TeX +longdesc distributions. A quick-start tutorial is provided. +depend lwarp.ARCH +containersize 140180 +containerchecksum 7127a0597e5651a6c5ba4c95c36d8610081765eded09dbffdbb7e10a650f8eda557e9b988358117c481064cb2d7f17f43833031bead0104de61e0cd1975282e1 +doccontainersize 2347764 +doccontainerchecksum 1fb6f6ae26007beee446aca7b198bc766c33dde3ad4c104a6e1586741c1250a97e0dd280ac3e09e8947822712d00a67ce836210baf189341b10cc81fca43eb5c +docfiles size=598 + texmf-dist/doc/latex/lwarp/README.txt details="Readme" + texmf-dist/doc/latex/lwarp/lwarp.pdf details="Package documentation" + texmf-dist/doc/latex/lwarp/lwarp_tutorial.txt details="Quick-start tutorial" +srccontainersize 328420 +srccontainerchecksum 1e6612b35ab117e9cdee8828f1daab404e79495de6e50e8db3bafb60b83dc2a3b7c0890fb26437b83c4a3af2c1e2ce878a47d67d368686e6f113057e838c7aed +srcfiles size=479 + texmf-dist/source/latex/lwarp/lwarp.dtx + texmf-dist/source/latex/lwarp/lwarp.ins +runfiles size=558 + texmf-dist/scripts/lwarp/lwarpmk.lua + texmf-dist/tex/latex/lwarp/lwarp-2in1.sty + texmf-dist/tex/latex/lwarp/lwarp-2up.sty + texmf-dist/tex/latex/lwarp/lwarp-CJK.sty + texmf-dist/tex/latex/lwarp/lwarp-CJKutf8.sty + texmf-dist/tex/latex/lwarp/lwarp-SIunits.sty + texmf-dist/tex/latex/lwarp/lwarp-a4.sty + texmf-dist/tex/latex/lwarp/lwarp-a4wide.sty + texmf-dist/tex/latex/lwarp/lwarp-a5comb.sty + texmf-dist/tex/latex/lwarp/lwarp-abstract.sty + texmf-dist/tex/latex/lwarp/lwarp-academicons.sty + texmf-dist/tex/latex/lwarp/lwarp-accsupp.sty + texmf-dist/tex/latex/lwarp/lwarp-acro.sty + texmf-dist/tex/latex/lwarp/lwarp-acronym.sty + texmf-dist/tex/latex/lwarp/lwarp-addlines.sty + texmf-dist/tex/latex/lwarp/lwarp-adjmulticol.sty + texmf-dist/tex/latex/lwarp/lwarp-afterpage.sty + texmf-dist/tex/latex/lwarp/lwarp-algorithm2e.sty + texmf-dist/tex/latex/lwarp/lwarp-algorithmicx.sty + texmf-dist/tex/latex/lwarp/lwarp-alltt.sty + texmf-dist/tex/latex/lwarp/lwarp-amsmath.sty + texmf-dist/tex/latex/lwarp/lwarp-amsthm.sty + texmf-dist/tex/latex/lwarp/lwarp-anonchap.sty + texmf-dist/tex/latex/lwarp/lwarp-anysize.sty + texmf-dist/tex/latex/lwarp/lwarp-appendix.sty + texmf-dist/tex/latex/lwarp/lwarp-ar.sty + texmf-dist/tex/latex/lwarp/lwarp-arabicfront.sty + texmf-dist/tex/latex/lwarp/lwarp-array.sty + texmf-dist/tex/latex/lwarp/lwarp-arydshln.sty + texmf-dist/tex/latex/lwarp/lwarp-asymptote.sty + texmf-dist/tex/latex/lwarp/lwarp-atbegshi.sty + texmf-dist/tex/latex/lwarp/lwarp-attachfile.sty + texmf-dist/tex/latex/lwarp/lwarp-attachfile2.sty + texmf-dist/tex/latex/lwarp/lwarp-authblk.sty + texmf-dist/tex/latex/lwarp/lwarp-autonum.sty + texmf-dist/tex/latex/lwarp/lwarp-axessibility.sty + texmf-dist/tex/latex/lwarp/lwarp-axodraw2.sty + texmf-dist/tex/latex/lwarp/lwarp-backref.sty + texmf-dist/tex/latex/lwarp/lwarp-balance.sty + texmf-dist/tex/latex/lwarp/lwarp-bbding.sty + texmf-dist/tex/latex/lwarp/lwarp-biblatex.sty + texmf-dist/tex/latex/lwarp/lwarp-bibunits.sty + texmf-dist/tex/latex/lwarp/lwarp-bigdelim.sty + texmf-dist/tex/latex/lwarp/lwarp-bigfoot.sty + texmf-dist/tex/latex/lwarp/lwarp-bigstrut.sty + texmf-dist/tex/latex/lwarp/lwarp-bitpattern.sty + texmf-dist/tex/latex/lwarp/lwarp-blowup.sty + texmf-dist/tex/latex/lwarp/lwarp-booklet.sty + texmf-dist/tex/latex/lwarp/lwarp-bookmark.sty + texmf-dist/tex/latex/lwarp/lwarp-booktabs.sty + texmf-dist/tex/latex/lwarp/lwarp-bophook.sty + texmf-dist/tex/latex/lwarp/lwarp-bounddvi.sty + texmf-dist/tex/latex/lwarp/lwarp-boxedminipage2e.sty + texmf-dist/tex/latex/lwarp/lwarp-breakurl.sty + texmf-dist/tex/latex/lwarp/lwarp-breqn.sty + texmf-dist/tex/latex/lwarp/lwarp-bsheaders.sty + texmf-dist/tex/latex/lwarp/lwarp-bxpapersize.sty + texmf-dist/tex/latex/lwarp/lwarp-bytefield.sty + texmf-dist/tex/latex/lwarp/lwarp-cancel.sty + texmf-dist/tex/latex/lwarp/lwarp-canoniclayout.sty + texmf-dist/tex/latex/lwarp/lwarp-caption.sty + texmf-dist/tex/latex/lwarp/lwarp-cases.sty + texmf-dist/tex/latex/lwarp/lwarp-changebar.sty + texmf-dist/tex/latex/lwarp/lwarp-changelayout.sty + texmf-dist/tex/latex/lwarp/lwarp-changepage.sty + texmf-dist/tex/latex/lwarp/lwarp-changes.sty + texmf-dist/tex/latex/lwarp/lwarp-chappg.sty + texmf-dist/tex/latex/lwarp/lwarp-chapterbib.sty + texmf-dist/tex/latex/lwarp/lwarp-chemfig.sty + texmf-dist/tex/latex/lwarp/lwarp-chemformula.sty + texmf-dist/tex/latex/lwarp/lwarp-chemgreek.sty + texmf-dist/tex/latex/lwarp/lwarp-chemmacros.sty + texmf-dist/tex/latex/lwarp/lwarp-chemnum.sty + texmf-dist/tex/latex/lwarp/lwarp-chkfloat.sty + texmf-dist/tex/latex/lwarp/lwarp-chngpage.sty + texmf-dist/tex/latex/lwarp/lwarp-cite.sty + texmf-dist/tex/latex/lwarp/lwarp-clrdblpg.sty + texmf-dist/tex/latex/lwarp/lwarp-cmdtrack.sty + texmf-dist/tex/latex/lwarp/lwarp-color.sty + texmf-dist/tex/latex/lwarp/lwarp-colortbl.sty + texmf-dist/tex/latex/lwarp/lwarp-common-multimedia.sty + texmf-dist/tex/latex/lwarp/lwarp-continue.sty + texmf-dist/tex/latex/lwarp/lwarp-copyrightbox.sty + texmf-dist/tex/latex/lwarp/lwarp-crop.sty + texmf-dist/tex/latex/lwarp/lwarp-ctable.sty + texmf-dist/tex/latex/lwarp/lwarp-cuted.sty + texmf-dist/tex/latex/lwarp/lwarp-cutwin.sty + texmf-dist/tex/latex/lwarp/lwarp-dblfloatfix.sty + texmf-dist/tex/latex/lwarp/lwarp-dblfnote.sty + texmf-dist/tex/latex/lwarp/lwarp-dcolumn.sty + texmf-dist/tex/latex/lwarp/lwarp-diagbox.sty + texmf-dist/tex/latex/lwarp/lwarp-dingbat.sty + texmf-dist/tex/latex/lwarp/lwarp-dprogress.sty + texmf-dist/tex/latex/lwarp/lwarp-draftcopy.sty + texmf-dist/tex/latex/lwarp/lwarp-draftfigure.sty + texmf-dist/tex/latex/lwarp/lwarp-draftwatermark.sty + texmf-dist/tex/latex/lwarp/lwarp-easy-todo.sty + texmf-dist/tex/latex/lwarp/lwarp-ebook.sty + texmf-dist/tex/latex/lwarp/lwarp-ed.sty + texmf-dist/tex/latex/lwarp/lwarp-ellipsis.sty + texmf-dist/tex/latex/lwarp/lwarp-embrac.sty + texmf-dist/tex/latex/lwarp/lwarp-emptypage.sty + texmf-dist/tex/latex/lwarp/lwarp-endfloat.sty + texmf-dist/tex/latex/lwarp/lwarp-endheads.sty + texmf-dist/tex/latex/lwarp/lwarp-endnotes.sty + texmf-dist/tex/latex/lwarp/lwarp-enumerate.sty + texmf-dist/tex/latex/lwarp/lwarp-enumitem.sty + texmf-dist/tex/latex/lwarp/lwarp-epigraph.sty + texmf-dist/tex/latex/lwarp/lwarp-epsfig.sty + texmf-dist/tex/latex/lwarp/lwarp-epstopdf-base.sty + texmf-dist/tex/latex/lwarp/lwarp-epstopdf.sty + texmf-dist/tex/latex/lwarp/lwarp-eqlist.sty + texmf-dist/tex/latex/lwarp/lwarp-eqparbox.sty + texmf-dist/tex/latex/lwarp/lwarp-errata.sty + texmf-dist/tex/latex/lwarp/lwarp-eso-pic.sty + texmf-dist/tex/latex/lwarp/lwarp-eurosym.sty + texmf-dist/tex/latex/lwarp/lwarp-everypage.sty + texmf-dist/tex/latex/lwarp/lwarp-everyshi.sty + texmf-dist/tex/latex/lwarp/lwarp-extramarks.sty + texmf-dist/tex/latex/lwarp/lwarp-fancybox.sty + texmf-dist/tex/latex/lwarp/lwarp-fancyhdr.sty + texmf-dist/tex/latex/lwarp/lwarp-fancyref.sty + texmf-dist/tex/latex/lwarp/lwarp-fancytabs.sty + texmf-dist/tex/latex/lwarp/lwarp-fancyvrb.sty + texmf-dist/tex/latex/lwarp/lwarp-figcaps.sty + texmf-dist/tex/latex/lwarp/lwarp-figsize.sty + texmf-dist/tex/latex/lwarp/lwarp-fitbox.sty + texmf-dist/tex/latex/lwarp/lwarp-fix2col.sty + texmf-dist/tex/latex/lwarp/lwarp-fixme.sty + texmf-dist/tex/latex/lwarp/lwarp-fixmetodonotes.sty + texmf-dist/tex/latex/lwarp/lwarp-flafter.sty + texmf-dist/tex/latex/lwarp/lwarp-flippdf.sty + texmf-dist/tex/latex/lwarp/lwarp-float.sty + texmf-dist/tex/latex/lwarp/lwarp-floatflt.sty + texmf-dist/tex/latex/lwarp/lwarp-floatpag.sty + texmf-dist/tex/latex/lwarp/lwarp-floatrow.sty + texmf-dist/tex/latex/lwarp/lwarp-fltrace.sty + texmf-dist/tex/latex/lwarp/lwarp-flushend.sty + texmf-dist/tex/latex/lwarp/lwarp-fnbreak.sty + texmf-dist/tex/latex/lwarp/lwarp-fncychap.sty + texmf-dist/tex/latex/lwarp/lwarp-fnlineno.sty + texmf-dist/tex/latex/lwarp/lwarp-fnpos.sty + texmf-dist/tex/latex/lwarp/lwarp-fontawesome.sty + texmf-dist/tex/latex/lwarp/lwarp-fontawesome5.sty + texmf-dist/tex/latex/lwarp/lwarp-fontenc.sty + texmf-dist/tex/latex/lwarp/lwarp-footmisc.sty + texmf-dist/tex/latex/lwarp/lwarp-footnote.sty + texmf-dist/tex/latex/lwarp/lwarp-footnotebackref.sty + texmf-dist/tex/latex/lwarp/lwarp-footnotehyper.sty + texmf-dist/tex/latex/lwarp/lwarp-footnoterange.sty + texmf-dist/tex/latex/lwarp/lwarp-footnpag.sty + texmf-dist/tex/latex/lwarp/lwarp-foreign.sty + texmf-dist/tex/latex/lwarp/lwarp-forest.sty + texmf-dist/tex/latex/lwarp/lwarp-framed.sty + texmf-dist/tex/latex/lwarp/lwarp-ftcap.sty + texmf-dist/tex/latex/lwarp/lwarp-ftnright.sty + texmf-dist/tex/latex/lwarp/lwarp-fullminipage.sty + texmf-dist/tex/latex/lwarp/lwarp-fullpage.sty + texmf-dist/tex/latex/lwarp/lwarp-fullwidth.sty + texmf-dist/tex/latex/lwarp/lwarp-fwlw.sty + texmf-dist/tex/latex/lwarp/lwarp-gentombow.sty + texmf-dist/tex/latex/lwarp/lwarp-geometry.sty + texmf-dist/tex/latex/lwarp/lwarp-gloss.sty + texmf-dist/tex/latex/lwarp/lwarp-glossaries.sty + texmf-dist/tex/latex/lwarp/lwarp-gmeometric.sty + texmf-dist/tex/latex/lwarp/lwarp-graphics.sty + texmf-dist/tex/latex/lwarp/lwarp-graphicx.sty + texmf-dist/tex/latex/lwarp/lwarp-grffile.sty + texmf-dist/tex/latex/lwarp/lwarp-grid-system.sty + texmf-dist/tex/latex/lwarp/lwarp-grid.sty + texmf-dist/tex/latex/lwarp/lwarp-gridset.sty + texmf-dist/tex/latex/lwarp/lwarp-hang.sty + texmf-dist/tex/latex/lwarp/lwarp-hanging.sty + texmf-dist/tex/latex/lwarp/lwarp-hypcap.sty + texmf-dist/tex/latex/lwarp/lwarp-hypdestopt.sty + texmf-dist/tex/latex/lwarp/lwarp-hypernat.sty + texmf-dist/tex/latex/lwarp/lwarp-hyperref.sty + texmf-dist/tex/latex/lwarp/lwarp-hyperxmp.sty + texmf-dist/tex/latex/lwarp/lwarp-hyphenat.sty + texmf-dist/tex/latex/lwarp/lwarp-idxlayout.sty + texmf-dist/tex/latex/lwarp/lwarp-ifoddpage.sty + texmf-dist/tex/latex/lwarp/lwarp-imakeidx.sty + texmf-dist/tex/latex/lwarp/lwarp-index.sty + texmf-dist/tex/latex/lwarp/lwarp-inputtrc.sty + texmf-dist/tex/latex/lwarp/lwarp-intopdf.sty + texmf-dist/tex/latex/lwarp/lwarp-karnaugh-map.sty + texmf-dist/tex/latex/lwarp/lwarp-keyfloat.sty + texmf-dist/tex/latex/lwarp/lwarp-layaureo.sty + texmf-dist/tex/latex/lwarp/lwarp-layout.sty + texmf-dist/tex/latex/lwarp/lwarp-layouts.sty + texmf-dist/tex/latex/lwarp/lwarp-leading.sty + texmf-dist/tex/latex/lwarp/lwarp-letterspace.sty + texmf-dist/tex/latex/lwarp/lwarp-lettrine.sty + texmf-dist/tex/latex/lwarp/lwarp-lineno.sty + texmf-dist/tex/latex/lwarp/lwarp-lips.sty + texmf-dist/tex/latex/lwarp/lwarp-listings.sty + texmf-dist/tex/latex/lwarp/lwarp-listliketab.sty + texmf-dist/tex/latex/lwarp/lwarp-lltjext.sty + texmf-dist/tex/latex/lwarp/lwarp-longtable.sty + texmf-dist/tex/latex/lwarp/lwarp-lscape.sty + texmf-dist/tex/latex/lwarp/lwarp-ltablex.sty + texmf-dist/tex/latex/lwarp/lwarp-ltcaption.sty + texmf-dist/tex/latex/lwarp/lwarp-ltxgrid.sty + texmf-dist/tex/latex/lwarp/lwarp-ltxtable.sty + texmf-dist/tex/latex/lwarp/lwarp-lua-check-hyphen.sty + texmf-dist/tex/latex/lwarp/lwarp-lua-visual-debug.sty + texmf-dist/tex/latex/lwarp/lwarp-luacolor.sty + texmf-dist/tex/latex/lwarp/lwarp-luatodonotes.sty + texmf-dist/tex/latex/lwarp/lwarp-magaz.sty + texmf-dist/tex/latex/lwarp/lwarp-makeidx.sty + texmf-dist/tex/latex/lwarp/lwarp-manyfoot.sty + texmf-dist/tex/latex/lwarp/lwarp-marginal.sty + texmf-dist/tex/latex/lwarp/lwarp-marginfit.sty + texmf-dist/tex/latex/lwarp/lwarp-marginfix.sty + texmf-dist/tex/latex/lwarp/lwarp-marginnote.sty + texmf-dist/tex/latex/lwarp/lwarp-marvosym.sty + texmf-dist/tex/latex/lwarp/lwarp-mathtools.sty + texmf-dist/tex/latex/lwarp/lwarp-mcaption.sty + texmf-dist/tex/latex/lwarp/lwarp-mdframed.sty + texmf-dist/tex/latex/lwarp/lwarp-media9.sty + texmf-dist/tex/latex/lwarp/lwarp-memhfixc.sty + texmf-dist/tex/latex/lwarp/lwarp-metalogo.sty + texmf-dist/tex/latex/lwarp/lwarp-metalogox.sty + texmf-dist/tex/latex/lwarp/lwarp-mhchem.sty + texmf-dist/tex/latex/lwarp/lwarp-microtype.sty + texmf-dist/tex/latex/lwarp/lwarp-midfloat.sty + texmf-dist/tex/latex/lwarp/lwarp-midpage.sty + texmf-dist/tex/latex/lwarp/lwarp-minitoc.sty + texmf-dist/tex/latex/lwarp/lwarp-morefloats.sty + texmf-dist/tex/latex/lwarp/lwarp-moreverb.sty + texmf-dist/tex/latex/lwarp/lwarp-movie15.sty + texmf-dist/tex/latex/lwarp/lwarp-mparhack.sty + texmf-dist/tex/latex/lwarp/lwarp-multicap.sty + texmf-dist/tex/latex/lwarp/lwarp-multicol.sty + texmf-dist/tex/latex/lwarp/lwarp-multicolrule.sty + texmf-dist/tex/latex/lwarp/lwarp-multimedia.sty + texmf-dist/tex/latex/lwarp/lwarp-multirow.sty + texmf-dist/tex/latex/lwarp/lwarp-multitoc.sty + texmf-dist/tex/latex/lwarp/lwarp-musicography.sty + texmf-dist/tex/latex/lwarp/lwarp-nameauth.sty + texmf-dist/tex/latex/lwarp/lwarp-nameref.sty + texmf-dist/tex/latex/lwarp/lwarp-natbib.sty + texmf-dist/tex/latex/lwarp/lwarp-nccfancyhdr.sty + texmf-dist/tex/latex/lwarp/lwarp-needspace.sty + texmf-dist/tex/latex/lwarp/lwarp-nextpage.sty + texmf-dist/tex/latex/lwarp/lwarp-nicefrac.sty + texmf-dist/tex/latex/lwarp/lwarp-niceframe.sty + texmf-dist/tex/latex/lwarp/lwarp-nomencl.sty + texmf-dist/tex/latex/lwarp/lwarp-nonfloat.sty + texmf-dist/tex/latex/lwarp/lwarp-nonumonpart.sty + texmf-dist/tex/latex/lwarp/lwarp-nopageno.sty + texmf-dist/tex/latex/lwarp/lwarp-notes.sty + texmf-dist/tex/latex/lwarp/lwarp-notespages.sty + texmf-dist/tex/latex/lwarp/lwarp-nowidow.sty + texmf-dist/tex/latex/lwarp/lwarp-ntheorem.sty + texmf-dist/tex/latex/lwarp/lwarp-octave.sty + texmf-dist/tex/latex/lwarp/lwarp-overpic.sty + texmf-dist/tex/latex/lwarp/lwarp-pagegrid.sty + texmf-dist/tex/latex/lwarp/lwarp-pagenote.sty + texmf-dist/tex/latex/lwarp/lwarp-pagesel.sty + texmf-dist/tex/latex/lwarp/lwarp-paralist.sty + texmf-dist/tex/latex/lwarp/lwarp-parnotes.sty + texmf-dist/tex/latex/lwarp/lwarp-parskip.sty + texmf-dist/tex/latex/lwarp/lwarp-patch-komascript.sty + texmf-dist/tex/latex/lwarp/lwarp-patch-memoir.sty + texmf-dist/tex/latex/lwarp/lwarp-pbox.sty + texmf-dist/tex/latex/lwarp/lwarp-pdfcomment.sty + texmf-dist/tex/latex/lwarp/lwarp-pdflscape.sty + texmf-dist/tex/latex/lwarp/lwarp-pdfmarginpar.sty + texmf-dist/tex/latex/lwarp/lwarp-pdfpages.sty + texmf-dist/tex/latex/lwarp/lwarp-pdfprivacy.sty + texmf-dist/tex/latex/lwarp/lwarp-pdfrender.sty + texmf-dist/tex/latex/lwarp/lwarp-pdfsync.sty + texmf-dist/tex/latex/lwarp/lwarp-pdftricks.sty + texmf-dist/tex/latex/lwarp/lwarp-pdfx.sty + texmf-dist/tex/latex/lwarp/lwarp-perpage.sty + texmf-dist/tex/latex/lwarp/lwarp-pfnote.sty + texmf-dist/tex/latex/lwarp/lwarp-phfqit.sty + texmf-dist/tex/latex/lwarp/lwarp-pifont.sty + texmf-dist/tex/latex/lwarp/lwarp-placeins.sty + texmf-dist/tex/latex/lwarp/lwarp-plarydshln.sty + texmf-dist/tex/latex/lwarp/lwarp-plext.sty + texmf-dist/tex/latex/lwarp/lwarp-plextarydshln.sty + texmf-dist/tex/latex/lwarp/lwarp-plextcolorbl.sty + texmf-dist/tex/latex/lwarp/lwarp-prelim2e.sty + texmf-dist/tex/latex/lwarp/lwarp-prettyref.sty + texmf-dist/tex/latex/lwarp/lwarp-preview.sty + texmf-dist/tex/latex/lwarp/lwarp-psfrag.sty + texmf-dist/tex/latex/lwarp/lwarp-psfragx.sty + texmf-dist/tex/latex/lwarp/lwarp-pst-eps.sty + texmf-dist/tex/latex/lwarp/lwarp-pstool.sty + texmf-dist/tex/latex/lwarp/lwarp-pstricks.sty + texmf-dist/tex/latex/lwarp/lwarp-pxatbegshi.sty + texmf-dist/tex/latex/lwarp/lwarp-pxeveryshi.sty + texmf-dist/tex/latex/lwarp/lwarp-pxftnright.sty + texmf-dist/tex/latex/lwarp/lwarp-pxjahyper.sty + texmf-dist/tex/latex/lwarp/lwarp-quotchap.sty + texmf-dist/tex/latex/lwarp/lwarp-quoting.sty + texmf-dist/tex/latex/lwarp/lwarp-ragged2e.sty + texmf-dist/tex/latex/lwarp/lwarp-realscripts.sty + texmf-dist/tex/latex/lwarp/lwarp-refcheck.sty + texmf-dist/tex/latex/lwarp/lwarp-register.sty + texmf-dist/tex/latex/lwarp/lwarp-relsize.sty + texmf-dist/tex/latex/lwarp/lwarp-repeatindex.sty + texmf-dist/tex/latex/lwarp/lwarp-resizegather.sty + texmf-dist/tex/latex/lwarp/lwarp-rmpage.sty + texmf-dist/tex/latex/lwarp/lwarp-romanbar.sty + texmf-dist/tex/latex/lwarp/lwarp-romanbarpagenumber.sty + texmf-dist/tex/latex/lwarp/lwarp-rotating.sty + texmf-dist/tex/latex/lwarp/lwarp-rotfloat.sty + texmf-dist/tex/latex/lwarp/lwarp-rviewport.sty + texmf-dist/tex/latex/lwarp/lwarp-savetrees.sty + texmf-dist/tex/latex/lwarp/lwarp-scalefnt.sty + texmf-dist/tex/latex/lwarp/lwarp-schemata.sty + texmf-dist/tex/latex/lwarp/lwarp-scrextend.sty + texmf-dist/tex/latex/lwarp/lwarp-scrhack.sty + texmf-dist/tex/latex/lwarp/lwarp-scrlayer-notecolumn.sty + texmf-dist/tex/latex/lwarp/lwarp-scrlayer-scrpage.sty + texmf-dist/tex/latex/lwarp/lwarp-scrlayer.sty + texmf-dist/tex/latex/lwarp/lwarp-scrpage2.sty + texmf-dist/tex/latex/lwarp/lwarp-section.sty + texmf-dist/tex/latex/lwarp/lwarp-sectionbreak.sty + texmf-dist/tex/latex/lwarp/lwarp-sectsty.sty + texmf-dist/tex/latex/lwarp/lwarp-semantic-markup.sty + texmf-dist/tex/latex/lwarp/lwarp-setspace.sty + texmf-dist/tex/latex/lwarp/lwarp-shadow.sty + texmf-dist/tex/latex/lwarp/lwarp-showidx.sty + texmf-dist/tex/latex/lwarp/lwarp-showkeys.sty + texmf-dist/tex/latex/lwarp/lwarp-showtags.sty + texmf-dist/tex/latex/lwarp/lwarp-sidecap.sty + texmf-dist/tex/latex/lwarp/lwarp-sidenotes.sty + texmf-dist/tex/latex/lwarp/lwarp-siunitx.sty + texmf-dist/tex/latex/lwarp/lwarp-soul.sty + texmf-dist/tex/latex/lwarp/lwarp-soulpos.sty + texmf-dist/tex/latex/lwarp/lwarp-soulutf8.sty + texmf-dist/tex/latex/lwarp/lwarp-splitidx.sty + texmf-dist/tex/latex/lwarp/lwarp-srcltx.sty + texmf-dist/tex/latex/lwarp/lwarp-srctex.sty + texmf-dist/tex/latex/lwarp/lwarp-stabular.sty + texmf-dist/tex/latex/lwarp/lwarp-stfloats.sty + texmf-dist/tex/latex/lwarp/lwarp-struktex.sty + texmf-dist/tex/latex/lwarp/lwarp-subcaption.sty + texmf-dist/tex/latex/lwarp/lwarp-subfig.sty + texmf-dist/tex/latex/lwarp/lwarp-subfigure.sty + texmf-dist/tex/latex/lwarp/lwarp-supertabular.sty + texmf-dist/tex/latex/lwarp/lwarp-syntonly.sty + texmf-dist/tex/latex/lwarp/lwarp-tablefootnote.sty + texmf-dist/tex/latex/lwarp/lwarp-tabls.sty + texmf-dist/tex/latex/lwarp/lwarp-tabularx.sty + texmf-dist/tex/latex/lwarp/lwarp-tabulary.sty + texmf-dist/tex/latex/lwarp/lwarp-tascmac.sty + texmf-dist/tex/latex/lwarp/lwarp-textarea.sty + texmf-dist/tex/latex/lwarp/lwarp-textcomp.sty + texmf-dist/tex/latex/lwarp/lwarp-textfit.sty + texmf-dist/tex/latex/lwarp/lwarp-textpos.sty + texmf-dist/tex/latex/lwarp/lwarp-theorem.sty + texmf-dist/tex/latex/lwarp/lwarp-thinsp.sty + texmf-dist/tex/latex/lwarp/lwarp-threadcol.sty + texmf-dist/tex/latex/lwarp/lwarp-threeparttable.sty + texmf-dist/tex/latex/lwarp/lwarp-threeparttablex.sty + texmf-dist/tex/latex/lwarp/lwarp-thumb.sty + texmf-dist/tex/latex/lwarp/lwarp-thumbs.sty + texmf-dist/tex/latex/lwarp/lwarp-tikz.sty + texmf-dist/tex/latex/lwarp/lwarp-titleps.sty + texmf-dist/tex/latex/lwarp/lwarp-titleref.sty + texmf-dist/tex/latex/lwarp/lwarp-titlesec.sty + texmf-dist/tex/latex/lwarp/lwarp-titletoc.sty + texmf-dist/tex/latex/lwarp/lwarp-titling.sty + texmf-dist/tex/latex/lwarp/lwarp-tocbasic.sty + texmf-dist/tex/latex/lwarp/lwarp-tocbibind.sty + texmf-dist/tex/latex/lwarp/lwarp-tocdata.sty + texmf-dist/tex/latex/lwarp/lwarp-tocenter.sty + texmf-dist/tex/latex/lwarp/lwarp-tocloft.sty + texmf-dist/tex/latex/lwarp/lwarp-tocstyle.sty + texmf-dist/tex/latex/lwarp/lwarp-todo.sty + texmf-dist/tex/latex/lwarp/lwarp-todonotes.sty + texmf-dist/tex/latex/lwarp/lwarp-topcapt.sty + texmf-dist/tex/latex/lwarp/lwarp-tram.sty + texmf-dist/tex/latex/lwarp/lwarp-transparent.sty + texmf-dist/tex/latex/lwarp/lwarp-trimclip.sty + texmf-dist/tex/latex/lwarp/lwarp-trivfloat.sty + texmf-dist/tex/latex/lwarp/lwarp-truncate.sty + texmf-dist/tex/latex/lwarp/lwarp-turnthepage.sty + texmf-dist/tex/latex/lwarp/lwarp-twoup.sty + texmf-dist/tex/latex/lwarp/lwarp-typearea.sty + texmf-dist/tex/latex/lwarp/lwarp-typicons.sty + texmf-dist/tex/latex/lwarp/lwarp-ulem.sty + texmf-dist/tex/latex/lwarp/lwarp-umoline.sty + texmf-dist/tex/latex/lwarp/lwarp-underscore.sty + texmf-dist/tex/latex/lwarp/lwarp-units.sty + texmf-dist/tex/latex/lwarp/lwarp-unitsdef.sty + texmf-dist/tex/latex/lwarp/lwarp-upref.sty + texmf-dist/tex/latex/lwarp/lwarp-url.sty + texmf-dist/tex/latex/lwarp/lwarp-uspace.sty + texmf-dist/tex/latex/lwarp/lwarp-verse.sty + texmf-dist/tex/latex/lwarp/lwarp-versonotes.sty + texmf-dist/tex/latex/lwarp/lwarp-vertbars.sty + texmf-dist/tex/latex/lwarp/lwarp-vmargin.sty + texmf-dist/tex/latex/lwarp/lwarp-vowel.sty + texmf-dist/tex/latex/lwarp/lwarp-vpe.sty + texmf-dist/tex/latex/lwarp/lwarp-vwcol.sty + texmf-dist/tex/latex/lwarp/lwarp-wallpaper.sty + texmf-dist/tex/latex/lwarp/lwarp-watermark.sty + texmf-dist/tex/latex/lwarp/lwarp-widows-and-orphans.sty + texmf-dist/tex/latex/lwarp/lwarp-wrapfig.sty + texmf-dist/tex/latex/lwarp/lwarp-xbmks.sty + texmf-dist/tex/latex/lwarp/lwarp-xcolor.sty + texmf-dist/tex/latex/lwarp/lwarp-xechangebar.sty + texmf-dist/tex/latex/lwarp/lwarp-xellipsis.sty + texmf-dist/tex/latex/lwarp/lwarp-xetexko-vertical.sty + texmf-dist/tex/latex/lwarp/lwarp-xfakebold.sty + texmf-dist/tex/latex/lwarp/lwarp-xfrac.sty + texmf-dist/tex/latex/lwarp/lwarp-xltabular.sty + texmf-dist/tex/latex/lwarp/lwarp-xltxtra.sty + texmf-dist/tex/latex/lwarp/lwarp-xmpincl.sty + texmf-dist/tex/latex/lwarp/lwarp-xpiano.sty + texmf-dist/tex/latex/lwarp/lwarp-xpinyin.sty + texmf-dist/tex/latex/lwarp/lwarp-xtab.sty + texmf-dist/tex/latex/lwarp/lwarp-xunicode.sty + texmf-dist/tex/latex/lwarp/lwarp-xurl.sty + texmf-dist/tex/latex/lwarp/lwarp-xy.sty + texmf-dist/tex/latex/lwarp/lwarp-zhlineskip.sty + texmf-dist/tex/latex/lwarp/lwarp-zwpagelayout.sty + texmf-dist/tex/latex/lwarp/lwarp.sty + texmf-dist/tex/latex/lwarp/lwarp_baseline_marker.eps + texmf-dist/tex/latex/lwarp/lwarp_baseline_marker.png +catalogue-also latex2html +catalogue-contact-home http://bdtechconcepts.com/ +catalogue-ctan /macros/latex/contrib/lwarp +catalogue-date 2019-04-29 10:17:00 +0200 +catalogue-license lppl1.3 +catalogue-topics cvt-html +catalogue-version 0.71 + +name lwarp.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of lwarp +containersize 344 +containerchecksum 39f42fa4ae9f9a88c93ad3e87ed7fd79a0f8078b830716c0a36d25b570d9a292e0c3e2a5e39ca1f3c4ee4c60672d97d397c423ef4bd270d5bf7fd382f148b95a +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/lwarpmk + +name lwarp.amd64-freebsd +category Package +revision 43292 +shortdesc amd64-freebsd files of lwarp +containersize 344 +containerchecksum 4300593fc1772ca52c0b9d7574602f7372fa256fa828ade2556b2e18c4b37c289b1691e09288573e65dcc670e62100becaf442ef979967240fa8f61955ce84d4 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/lwarpmk + +name lwarp.amd64-netbsd +category Package +revision 43292 +shortdesc amd64-netbsd files of lwarp +containersize 344 +containerchecksum 4e9433ae32cae8134fdcbca351fd18d0e93970e1ef505663e28ecf8a4d4497a4890cbc7938fbb12f55bc17806250ad643527e57c0471098336e35767f5227a2f +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/lwarpmk + +name lwarp.armhf-linux +category Package +revision 43292 +shortdesc armhf-linux files of lwarp +containersize 344 +containerchecksum 3a990691d24fac32523b0611350b12b10e80646a9e313ae5fb35bcf7322f9a720e329a41b91f4cb63a444113f4776fd4bc2bd0985b8786e4d09837baff3c46d8 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/lwarpmk + +name lwarp.i386-cygwin +category Package +revision 43292 +shortdesc i386-cygwin files of lwarp +containersize 340 +containerchecksum 2ef0e651a6a23f5242851471e93846135c666ad3782e6e909a6e9aac4e0a328ad10a3df0202883bd95a0fcf83af9e74824d7ca19abd28786624d20c106a4265a +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/lwarpmk + +name lwarp.i386-freebsd +category Package +revision 43292 +shortdesc i386-freebsd files of lwarp +containersize 344 +containerchecksum 240e84d3a5f4b66eb4c149c8b17fde6c3006082529fe5f2ddb2ec9466c30c889d389432c89db984e8d8fb90996b50c6aa25dce427b8f0336086aa547fd9feac3 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/lwarpmk + +name lwarp.i386-linux +category Package +revision 43292 +shortdesc i386-linux files of lwarp +containersize 344 +containerchecksum 8ac301601e3c45010350eb324811f5a9ef9d8bc9aa77db425c1ba0fb09566fb9a8e3c5f92788e0e25dd1bdd765cb934db9b3b0dbd2949f790547b97d8d407d07 +binfiles arch=i386-linux size=1 + bin/i386-linux/lwarpmk + +name lwarp.i386-netbsd +category Package +revision 43292 +shortdesc i386-netbsd files of lwarp +containersize 344 +containerchecksum 2a2cd380563f5dd6703bea12c7f7e75911d729e831c09e2641a976a81db491c13551df4437d25932e6053bbc34c1e4e37cb7d29972c028e947ecdea81d7e8b7b +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/lwarpmk + +name lwarp.i386-solaris +category Package +revision 43292 +shortdesc i386-solaris files of lwarp +containersize 340 +containerchecksum 5addf274d20094647bfe94519f13c54e4f9d63e33edef1074e4bf826daac0c91ad6d7753cdb76f57025004cd377d2547a3a626337b6d13a70ada8ebd94533950 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/lwarpmk + +name lwarp.win32 +category Package +revision 43292 +shortdesc win32 files of lwarp +containersize 684 +containerchecksum 2ce2508febb001d0c1a7a4c1224161b001571a6fa7145b47bf4ed9e4c1280e195c9bdd241048630ddeaaf19f6c8efc894e31b3a14cceb6a339be94590d0fe15d +binfiles arch=win32 size=1 + bin/win32/lwarpmk.exe + +name lwarp.x86_64-cygwin +category Package +revision 43292 +shortdesc x86_64-cygwin files of lwarp +containersize 344 +containerchecksum b9345083e9a2a891976a78aa3e45583ade42e0246eb238ce72a11efeeeceab85cef7bc215268785a87d5281d8f173029dbf3fb9f0fe0f84ee3a589bdafcdff49 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/lwarpmk + +name lwarp.x86_64-darwin +category Package +revision 43292 +shortdesc x86_64-darwin files of lwarp +containersize 344 +containerchecksum 2446c059df08d8dea58d1eb760fea945b1c935c44eb2c2fcb559d2612a8b42d4fe60522ec6c964ed589822aa779b83c6191d78348c102faa74378f6fb550f615 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/lwarpmk + +name lwarp.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of lwarp +containersize 352 +containerchecksum 15261b4e3196a23d2c6a3c68ce960dd34c9b2a5a594213d5173acfa315b07372209a9efc7b9493f93c4f7d3f688a847e5e31195755bd2bcdee40eea61c9cecf0 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/lwarpmk + +name lwarp.x86_64-linux +category Package +revision 43292 +shortdesc x86_64-linux files of lwarp +containersize 344 +containerchecksum 0e66d45202b359e9e6f8b7e49eef79fd12aee54dfbc03b8d59723f7d964feaa6babd6da8b202af2226f4a596dbe40a4a9031ae8ae75f47763f8f62ae87071a92 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/lwarpmk + +name lwarp.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of lwarp +containersize 348 +containerchecksum 2d2175bfc5bf95914d724359d815827f68bba9e2f8dfdffb4e3fc12471d0877be32af5d6f4f9034a9d7c540f5ec527605ec68fd9e484bbc14c47831f2c3a19eb +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/lwarpmk + +name lwarp.x86_64-solaris +category Package +revision 43292 +shortdesc x86_64-solaris files of lwarp +containersize 344 +containerchecksum b63d886b49719963d5ad7aaa7a02ed3bfb05e16429907aaffa418469b4589f82eb9686cd06925253edaf175242e981cd83043004f6378f685e61bd884267d6a1 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/lwarpmk name lxfonts category Package revision 32354 -shortdesc Set of slide fonts based on CM. +shortdesc Set of slide fonts based on CM relocated 1 longdesc The bundle contains the traditional slides fonts revised to be longdesc completely usable both as text fonts and mathematics fonts; @@ -102641,6 +168876,21 @@ longdesc they are fully integrate with the new operators, letters, longdesc symbols and extensible delimiter fonts, as well as with the AMS longdesc fonts, all redone with the same stylistic parameters. execute addMixedMap lxfonts.map +containersize 930860 +containerchecksum aa732f403af1adc898e6ac462412a59e4d2c8821ef47807ec5d8c1ce565a73299d472377117bca3fb30add468b546280b1603feff95d35090b338f87b279bdf4 +doccontainersize 530100 +doccontainerchecksum fed48ea91eb5ad414463d3b929dd4deb5cf433be63aa2753acc251aa1e8b85f0db7307a0ea96ea0bf9c4d9b14d0b90d26cde703bed2761a4a1b789ab3d117eba +docfiles size=139 + RELOC/doc/fonts/lxfonts/LXfonts-demo.pdf details="Package outline and samples" + RELOC/doc/fonts/lxfonts/LXfonts-demo.tex + RELOC/doc/fonts/lxfonts/LXfonts.readme details="Readme" + RELOC/doc/fonts/lxfonts/README details="Readme" + RELOC/doc/fonts/lxfonts/lxfonts.pdf + RELOC/doc/fonts/lxfonts/manifest.txt +srccontainersize 9164 +srccontainerchecksum 18da6f216135745887160dcc1df6ed72eb0e49f60a445e45326c84bed8fd98cd66316e21a6e0e7528d551917092f9715641fc68e02371b609690e00403ca5d96 +srcfiles size=8 + RELOC/source/fonts/lxfonts/lxfonts.dtx runfiles size=397 RELOC/fonts/map/dvips/lxfonts/lxfonts.map RELOC/fonts/source/public/lxfonts/lamsya.mf @@ -102738,24 +168988,16 @@ runfiles size=397 RELOC/tex/latex/lxfonts/ulllasy.fd RELOC/tex/latex/lxfonts/ulmsa.fd RELOC/tex/latex/lxfonts/ulmsb.fd -docfiles size=139 - RELOC/doc/fonts/lxfonts/LXfonts-demo.pdf - RELOC/doc/fonts/lxfonts/LXfonts-demo.tex - RELOC/doc/fonts/lxfonts/LXfonts.readme - RELOC/doc/fonts/lxfonts/README - RELOC/doc/fonts/lxfonts/lxfonts.pdf - RELOC/doc/fonts/lxfonts/manifest.txt -srcfiles size=8 - RELOC/source/fonts/lxfonts/lxfonts.dtx catalogue-ctan /fonts/lxfonts -catalogue-date 2014-05-14 00:24:01 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-mf font-type1 font-sans font-maths catalogue-version 2.0b name ly1 category Package -revision 21086 -shortdesc Support for LY1 LaTeX encoding. +revision 47848 +shortdesc Support for LY1 LaTeX encoding relocated 1 longdesc The Y&Y 'texnansi' (TeX and ANSI, for Microsoft interpretations longdesc of ANSI standards) encoding lives on, even after the decease of @@ -102763,6 +169005,12 @@ longdesc the company; it is known in the LaTeX scheme of things as LY1 longdesc encoding. This bundle includes metrics and LaTeX macros to use longdesc the basic three (Times, Helvetica and Courier) Adobe Type 1 longdesc fonts in LaTeX using LY1 encoding. +containersize 54896 +containerchecksum 8b170d04aef1c95b345440b60e5aca56442374d897e4a64ea4fefff4506e133d4c06350b5ea86a81eb9a015a1fe32b2bd8c433401a9bf6433e279cc700d0b8ae +doccontainersize 3632 +doccontainerchecksum c1bbaff6124984b0c582cb86e3e8f729e2b2c256808dc621de2c12da94c7b67c673c70fbd3d17c723292a90c60638e32fd79ece9915648347a7469caea040d7b +docfiles size=2 + RELOC/doc/fonts/ly1/README details="Outline of usage" runfiles size=104 RELOC/fonts/enc/dvips/ly1/texnansi.enc RELOC/fonts/map/dvips/ly1/pag8y.map @@ -102835,16 +169083,299 @@ runfiles size=104 RELOC/tex/latex/ly1/ly1pzc.fd RELOC/tex/latex/ly1/texnansi.sty RELOC/tex/plain/ly1/texnansi.tex -docfiles size=2 - RELOC/doc/fonts/ly1/README catalogue-ctan /fonts/psfonts/ly1 -catalogue-date 2012-07-10 08:38:43 +0200 -catalogue-license lppl +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font-supp + +name lyluatex +category Package +revision 47584 +shortdesc Commands to include lilypond scores within a (Lua)LaTeX document +relocated 1 +longdesc This package provides macros for the inclusion of LilyPond +longdesc scores within LuaLaTeX. It calls LilyPond to compile scores, +longdesc then includes the produced files. +containersize 13972 +containerchecksum fb715d0c668827823f5e0ba715613a113972be222814ef7c51ba9bd80fb63481d94e8bd8b493d26ab5c3ddfad419e4ff131f1833ebfd812673f6c4f52b3a82ba +doccontainersize 878768 +doccontainerchecksum 4dc273f44f5258ff04f1efbcfbf65e70fe9215c8c5d66bb08bb78a63cf995d40fb17d17918a59b1e7c880d15f99031e27472c7afdd73fed0b5a8b90bc28d76e6 +docfiles size=436 + RELOC/doc/support/lyluatex/Contributors.md + RELOC/doc/support/lyluatex/LICENSE + RELOC/doc/support/lyluatex/README.md details="Readme" + RELOC/doc/support/lyluatex/latexmkrc + RELOC/doc/support/lyluatex/ly/eight-systems.ly + RELOC/doc/support/lyluatex/ly/fonts.ly + RELOC/doc/support/lyluatex/lyluatex.pdf details="Package documentation" + RELOC/doc/support/lyluatex/lyluatex.tex + RELOC/doc/support/lyluatex/lyluatexbase.cls + RELOC/doc/support/lyluatex/lyluatexmanual.cls +runfiles size=13 + RELOC/scripts/lyluatex/lyluatex.lua + RELOC/tex/luatex/lyluatex/lyluatex.sty +catalogue-contact-bugs https://github.com/jperon/lyluatex/issues +catalogue-contact-repository https://github.com/jperon/lyluatex +catalogue-ctan /support/lyluatex +catalogue-date 2018-03-13 21:10:05 +0100 +catalogue-license mit +catalogue-topics luatex music music-extinp +catalogue-version 1.0b + +name m-tx +category Package +revision 50602 +shortdesc A preprocessor for pmx +longdesc M-Tx is a preprocessor to pmx, which is itself a preprocessor +longdesc to musixtex, a music typesetting system. The prime motivation +longdesc to the development of M-Tx was to provide lyrics for music to +longdesc be typeset. In fact, pmx now provides a lyrics interface, but +longdesc M-Tx continues in use by those who prefer its language. +depend m-tx.ARCH +containersize 4544 +containerchecksum 055839d04921e71aa0a83309485ba2506feaf2d3bcb919073cb011bdff8ba1f623c2c7af6fc4008badf8faad17e41dc4aa55f9aa47b0065af65fd2fb5dd6ae89 +doccontainersize 739508 +doccontainerchecksum c1470ffebb9b86958bdb68cf50e1fe18847e11cf1c28feca36ba0de68ce0fa72daa80c1df9312319d9cb5a42bfb250e7aa3a1e2ec8e093780b170b4d6d1b619c +docfiles size=259 + texmf-dist/doc/generic/m-tx/Makefile + texmf-dist/doc/generic/m-tx/README details="Readme" + texmf-dist/doc/generic/m-tx/README.documentation + texmf-dist/doc/generic/m-tx/borup.mtx + texmf-dist/doc/generic/m-tx/borup.pdf + texmf-dist/doc/generic/m-tx/buildmtxdoc.lua + texmf-dist/doc/generic/m-tx/buildzip.lua + texmf-dist/doc/generic/m-tx/chord.mtx + texmf-dist/doc/generic/m-tx/dertod.mtx + texmf-dist/doc/generic/m-tx/dona.mtx + texmf-dist/doc/generic/m-tx/dwoman.mta + texmf-dist/doc/generic/m-tx/dwoman.mtb + texmf-dist/doc/generic/m-tx/dwoman.mtx + texmf-dist/doc/generic/m-tx/halleluja.ltx + texmf-dist/doc/generic/m-tx/halleluja.pdf + texmf-dist/doc/generic/m-tx/hallelujashort.ltx + texmf-dist/doc/generic/m-tx/kanons.ltx + texmf-dist/doc/generic/m-tx/kanons.pdf + texmf-dist/doc/generic/m-tx/kroonhom.mtx + texmf-dist/doc/generic/m-tx/loofnou.mtx + texmf-dist/doc/generic/m-tx/lyrics.tex + texmf-dist/doc/generic/m-tx/macro.mtx + texmf-dist/doc/generic/m-tx/make-dvi + texmf-dist/doc/generic/m-tx/make-pdf + texmf-dist/doc/generic/m-tx/make-target + texmf-dist/doc/generic/m-tx/melisma.mta + texmf-dist/doc/generic/m-tx/melisma1.mtb + texmf-dist/doc/generic/m-tx/melisma1.mtx + texmf-dist/doc/generic/m-tx/melisma2.mtb + texmf-dist/doc/generic/m-tx/melisma2.mtx + texmf-dist/doc/generic/m-tx/melisma3.mtb + texmf-dist/doc/generic/m-tx/melisma3.mtx + texmf-dist/doc/generic/m-tx/melisma4.mtb + texmf-dist/doc/generic/m-tx/melisma4.mtx + texmf-dist/doc/generic/m-tx/melisma5.mtb + texmf-dist/doc/generic/m-tx/melisma5.mtx + texmf-dist/doc/generic/m-tx/melisma6.mtb + texmf-dist/doc/generic/m-tx/melisma6.mtx + texmf-dist/doc/generic/m-tx/meter.mtx + texmf-dist/doc/generic/m-tx/mozart.mtx + texmf-dist/doc/generic/m-tx/mozart0.mtx + texmf-dist/doc/generic/m-tx/mtx-install.pdf + texmf-dist/doc/generic/m-tx/mtx-install.tex + texmf-dist/doc/generic/m-tx/mtxdoc.ltx + texmf-dist/doc/generic/m-tx/mtxdoc.pdf details="Package documentation" + texmf-dist/doc/generic/m-tx/mtxdoc.sty + texmf-dist/doc/generic/m-tx/mtxindex.tex + texmf-dist/doc/generic/m-tx/netfirst.mtx + texmf-dist/doc/generic/m-tx/netsoos.mta + texmf-dist/doc/generic/m-tx/netsoos1.mtb + texmf-dist/doc/generic/m-tx/netsoos1.mtx + texmf-dist/doc/generic/m-tx/netsoos2.mtb + texmf-dist/doc/generic/m-tx/netsoos2.mtx + texmf-dist/doc/generic/m-tx/notes.tex + texmf-dist/doc/generic/m-tx/pdfcat + texmf-dist/doc/generic/m-tx/prepmx.pdf + texmf-dist/doc/generic/m-tx/psalm42.mtx + texmf-dist/doc/generic/m-tx/sanctus.mtx + texmf-dist/doc/generic/m-tx/title.mtx + texmf-dist/doc/generic/m-tx/title1.mtx + texmf-dist/doc/generic/m-tx/viva.mtx + texmf-dist/doc/generic/m-tx/volta.mtx + texmf-dist/doc/man/man1/prepmx.1 + texmf-dist/doc/man/man1/prepmx.man1.pdf +runfiles size=4 + texmf-dist/scripts/m-tx/m-tx.lua + texmf-dist/tex/generic/m-tx/mtx.tex + texmf-dist/tex/latex/m-tx/mtxlatex.sty +catalogue-contact-home http://icking-music-archive.org/software/indexmt6.html +catalogue-ctan /support/m-tx +catalogue-date 2019-01-24 14:47:00 +0100 +catalogue-license mit +catalogue-topics music +catalogue-version 0.63c + +name m-tx.aarch64-linux +category Package +revision 48789 +shortdesc aarch64-linux files of m-tx +containersize 39596 +containerchecksum 1012a55f7aab57231b6cdfd780a252ed77e52fd8fee569b986920d0f34add89d534dd76dc18cfa3c687b3e686fd0e8ddb1d4e2b7e9601b4bb987b51c0a11ea7e +binfiles arch=aarch64-linux size=31 + bin/aarch64-linux/m-tx + bin/aarch64-linux/prepmx + +name m-tx.amd64-freebsd +category Package +revision 50445 +shortdesc amd64-freebsd files of m-tx +containersize 41928 +containerchecksum 14f6c411f7b386036e29d1653615426a4097c8561bcbe6dc72abf26ec2b3bff40213d3f1c70bcab5bd0f101a142c864ada67ed86978cb225c87c8a2cc2c1797e +binfiles arch=amd64-freebsd size=32 + bin/amd64-freebsd/m-tx + bin/amd64-freebsd/prepmx + +name m-tx.amd64-netbsd +category Package +revision 48698 +shortdesc amd64-netbsd files of m-tx +containersize 39468 +containerchecksum 1d47bd43d2af3e4939b5b19be18e9ed189cc7fb276f0d30d85aab1a1351bd04b521bb38222ce3a74a5945409850420e0d4b86c03478c79d1d51ee3edc42958ae +binfiles arch=amd64-netbsd size=37 + bin/amd64-netbsd/m-tx + bin/amd64-netbsd/prepmx + +name m-tx.armhf-linux +category Package +revision 50150 +shortdesc armhf-linux files of m-tx +containersize 35660 +containerchecksum f084d4159ae2e94677ad6a03e86d73f43fff6d134f8bb13b4fc95c04142f8c302345610d632e6fb8855adb7df0cf0a225d14afef8f8d08e9574e91626882373c +binfiles arch=armhf-linux size=28 + bin/armhf-linux/m-tx + bin/armhf-linux/prepmx + +name m-tx.i386-cygwin +category Package +revision 50455 +shortdesc i386-cygwin files of m-tx +containersize 42592 +containerchecksum a89c8560405f4d9e5a638c6cae2ef5e372b1fdcf486cdf38a92024231d96b45cfbbb31b4164e1676a9391d80636915fd4ae5418342d1e330bb82721be27c0725 +binfiles arch=i386-cygwin size=33 + bin/i386-cygwin/m-tx + bin/i386-cygwin/prepmx.exe + +name m-tx.i386-freebsd +category Package +revision 50473 +shortdesc i386-freebsd files of m-tx +containersize 36580 +containerchecksum 6b6fc3661457fbf9d9cafc16bcf962caa06ed93c90719f13adbd6c8eed2b61d6bc407a5909a1abda37d9ec923efb720fc624db6c0b84cb423f68556709e6bf34 +binfiles arch=i386-freebsd size=27 + bin/i386-freebsd/m-tx + bin/i386-freebsd/prepmx + +name m-tx.i386-linux +category Package +revision 50281 +shortdesc i386-linux files of m-tx +containersize 46916 +containerchecksum 889b67c4b63b96398e4db51ec137522f873e853898503e9186b3f9af23a7cae2a4e81a22681cf99e39b47b625f0122128e83137855bb5dfe4f1d4d907d79413c +binfiles arch=i386-linux size=34 + bin/i386-linux/m-tx + bin/i386-linux/prepmx + +name m-tx.i386-netbsd +category Package +revision 50171 +shortdesc i386-netbsd files of m-tx +containersize 37176 +containerchecksum 23276ef47e0c836e5c30b0681cfbc772af70a89d30f890da7eaf2379f638c17a6f54ea1bd3163de8f55fcdc607064b00715d2c6980ad9c2605b44f53401f1007 +binfiles arch=i386-netbsd size=34 + bin/i386-netbsd/m-tx + bin/i386-netbsd/prepmx + +name m-tx.i386-solaris +category Package +revision 48732 +shortdesc i386-solaris files of m-tx +containersize 42976 +containerchecksum ec7852ea1a6158f088871872f079baa5bd70e4472cc267de8bc5c7fa19d572829866e10a2a4a3578d93f05ef1b3472ca3ebc083621ea276635fbece43a7e08a1 +binfiles arch=i386-solaris size=31 + bin/i386-solaris/m-tx + bin/i386-solaris/prepmx + +name m-tx.win32 +category Package +revision 50155 +shortdesc win32 files of m-tx +containersize 41140 +containerchecksum 36b11e687c9952975c0d03598b7d8cdba4697c5c626e107a4880db460b74384a23943ca92796733713a2cddb8047bab2cbff1b182191acc7eef74e2def32e978 +binfiles arch=win32 size=29 + bin/win32/m-tx.exe + bin/win32/prepmx.exe + +name m-tx.x86_64-cygwin +category Package +revision 50889 +shortdesc x86_64-cygwin files of m-tx +containersize 43488 +containerchecksum 1324b6f5adfcc8034426003ff9e99cbcd678e670c08cfbff03ef76c8d7c708c9dfbdf62cd12fd5808db1316b4009b2dca6531656ca24c9bb858dc0cd9ae8fe9f +binfiles arch=x86_64-cygwin size=31 + bin/x86_64-cygwin/m-tx + bin/x86_64-cygwin/prepmx.exe + +name m-tx.x86_64-darwin +category Package +revision 50150 +shortdesc x86_64-darwin files of m-tx +containersize 45872 +containerchecksum 0605071014a275acc183317d82c4d977d87bc99ca17d01af83fb4ae08c112d3303fe612ec205fccdf205abd625ddf4acae051253bd1eef71ac5f616cf8a336c4 +binfiles arch=x86_64-darwin size=33 + bin/x86_64-darwin/m-tx + bin/x86_64-darwin/prepmx + +name m-tx.x86_64-darwinlegacy +category Package +revision 50282 +shortdesc x86_64-darwinlegacy files of m-tx +containersize 43588 +containerchecksum 41f5c9992ac49a1cc796b1dc16cd2eccfbd2e88b9a9f2aaa3bf9b129b7b031c35e99ecd54e4cc827df02a67e2db8fb7cf038964c141e0fc80b3baffbccc40dbb +binfiles arch=x86_64-darwinlegacy size=32 + bin/x86_64-darwinlegacy/m-tx + bin/x86_64-darwinlegacy/prepmx + +name m-tx.x86_64-linux +category Package +revision 50281 +shortdesc x86_64-linux files of m-tx +containersize 43488 +containerchecksum 6ec3b3b05be7d8aa20b975085dc0834e0fbac26f937b03317ff39bec4928f95add0ee49a2b21ffd876e7e7d902858052d4abd5ef480d313f87739d9fd1a26ff5 +binfiles arch=x86_64-linux size=33 + bin/x86_64-linux/m-tx + bin/x86_64-linux/prepmx + +name m-tx.x86_64-linuxmusl +category Package +revision 47647 +shortdesc x86_64-linuxmusl files of m-tx +containersize 46856 +containerchecksum c9eb1e2ebaea5376c4c9964ea7119c7c6ff4678f6d8e1f6396411d88976373f4e43b69a6c729b55c8337e46130991477a0fc8f0c7aa7fcd04cfdac0cc3f79a92 +binfiles arch=x86_64-linuxmusl size=35 + bin/x86_64-linuxmusl/m-tx + bin/x86_64-linuxmusl/prepmx + +name m-tx.x86_64-solaris +category Package +revision 48732 +shortdesc x86_64-solaris files of m-tx +containersize 47196 +containerchecksum 48b9e1e4709685ac7418311dece129bc47b199da1b7f634076afbb633301c23181a5ed308ce72b9237b1ef074ab6646584451c06a88b0d94e30902e47acb77ee +binfiles arch=x86_64-solaris size=35 + bin/x86_64-solaris/m-tx + bin/x86_64-solaris/prepmx name macros2e category Package -revision 23236 -shortdesc A list of internal LaTeX2e macros. +revision 46026 +shortdesc A list of internal LaTeX2e macros relocated 1 longdesc This document lists the internal macros defined by the LaTeX2e longdesc base files which can also be useful to package authors. The @@ -102852,105 +169383,140 @@ longdesc macros are hyper-linked to their description in source2e. For longdesc this to work both PDFs must be inside the same directory. This longdesc document is not yet complete in content and format and may miss longdesc some macros. -docfiles size=53 - RELOC/doc/latex/macros2e/macros2e.pdf +containersize 828 +containerchecksum 5bb8ea01d851272306a4d9aa1897d879eef53a1f7262c83a8cec81a7e00334a495eb89926683d42af29f38aadfd1461893ad7bd72cae3993f1ea63a7475dcded +doccontainersize 185624 +doccontainerchecksum 0a089e411cce517581166b359ff092b7c98d09502afc83a4935269ed2520ffbb044921e5432238e999cfe85c72371bf8a45bedc07c6ecccc14cba2f4e7b6b6c7 +docfiles size=55 + RELOC/doc/latex/macros2e/Makefile + RELOC/doc/latex/macros2e/README details="Readme" + RELOC/doc/latex/macros2e/macros2e.pdf details="The macro list itself" RELOC/doc/latex/macros2e/macros2e.tex +runfiles size=1 + RELOC/tex/latex/macros2e/extlabels.sty +catalogue-contact-bugs https://bitbucket.org/martin_scharrer/macros2e/issues +catalogue-contact-repository https://bitbucket.org/martin_scharrer/macros2e catalogue-ctan /info/macros2e -catalogue-date 2015-03-22 20:18:57 +0100 -catalogue-license lppl -catalogue-version v0.4 +catalogue-date 2017-12-09 15:32:14 +0100 +catalogue-license lppl1.3c +catalogue-topics latex-doc +catalogue-version 0.4a name macroswap category Package revision 31498 -shortdesc Swap the definitions of two LaTeX macros. +shortdesc Swap the definitions of two LaTeX macros relocated 1 longdesc The package provides simple utility methods to swap the meaning longdesc (token expansion) of two macros by name. -runfiles size=1 - RELOC/tex/latex/macroswap/macroswap.sty +containersize 1052 +containerchecksum 39af1bcf247986c1f7559e1523d1d33680270602bda1d904404db0700452d203f950eadb2d9808a1cd3098bccf070218bd791fdbe5be4a3b0f539f013ef226a6 +doccontainersize 163332 +doccontainerchecksum 4e46c824a6a5909fca7d8a4628c87cc7a372ae5eab0d2f5110dc1f205e072e53a817043cbead53dde55e71c7c1c0e23695ba963c27e46bc70e2f84d430b656d7 docfiles size=42 RELOC/doc/latex/macroswap/Makefile - RELOC/doc/latex/macroswap/README - RELOC/doc/latex/macroswap/macroswap.pdf + RELOC/doc/latex/macroswap/README details="Readme" + RELOC/doc/latex/macroswap/macroswap.pdf details="Package documentation" +srccontainersize 3172 +srccontainerchecksum 43ac07d97c89b821f89f7308acc21521d025bad0dcc82f281e011254b163a54cc457db5bc0dc74419cc5bdfc4297e18cc886bbb1b22715dcb7d41e6bcc0c2374 srcfiles size=3 RELOC/source/latex/macroswap/macroswap.dtx RELOC/source/latex/macroswap/macroswap.ins +runfiles size=1 + RELOC/tex/latex/macroswap/macroswap.sty catalogue-ctan /macros/latex/contrib/macroswap -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics macro-supp catalogue-version 1.1 name mafr category Package revision 15878 -shortdesc Mathematics in accord with French usage. +shortdesc Mathematics in accord with French usage relocated 1 longdesc The package provides settings and macros for typesetting longdesc mathematics with LaTeX in compliance with French usage. It longdesc comes with two document classes, 'fiche' and 'cours', useful to longdesc create short high school documents such as tests or lessons. longdesc The documentation is in French. -runfiles size=3 - RELOC/tex/latex/mafr/cours.cls - RELOC/tex/latex/mafr/fiche.cls - RELOC/tex/latex/mafr/mafr.sty +containersize 2196 +containerchecksum 802d108e7deaaa1a42b7f1eca5059f9547f0f4edb2eb5f8f3f0b68d03c05662f37d2bf7b25844dcec6b89d6d1f0babe93614cbc87fe1e2ca0ac2153602c0cad7 +doccontainersize 60024 +doccontainerchecksum 5e3a0c42944944fc467e09751c1881dfd16ee526c78e509acbad394725703771893770d11e5aa16b09b6b5d1059331b72ce0f1e85c6ec61677d101276398624c docfiles size=26 - RELOC/doc/latex/mafr/ALIRE + RELOC/doc/latex/mafr/ALIRE details="Package ALIRE" language="fr" RELOC/doc/latex/mafr/COPYING - RELOC/doc/latex/mafr/README - RELOC/doc/latex/mafr/docmafr.pdf + RELOC/doc/latex/mafr/README details="Package README" language="en" + RELOC/doc/latex/mafr/docmafr.pdf details="Package documentation" language="fr" RELOC/doc/latex/mafr/docmafr.tex RELOC/doc/latex/mafr/triangle.eps +runfiles size=3 + RELOC/tex/latex/mafr/cours.cls + RELOC/tex/latex/mafr/fiche.cls + RELOC/tex/latex/mafr/mafr.sty catalogue-ctan /macros/latex/contrib/mafr -catalogue-date 2012-05-21 14:42:12 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics maths french exercise catalogue-version 1.0 name magaz category Package revision 24694 -shortdesc Magazine layout. +shortdesc Magazine layout relocated 1 longdesc The current version does special formatting for the first line longdesc of text in a paragraph. The package is part of a larger body of longdesc tools which remain in preparation. -runfiles size=3 - RELOC/tex/latex/magaz/magaz.sty +containersize 4416 +containerchecksum 5c35baa39a8b26911b2c2dd875576a0f875f5edc37fb497dbd403720855861219fdced11ee3fbbdee8e63f0817b6c2ee6a20e6ec3bcc9a5183465c22caf7735d +doccontainersize 231644 +doccontainerchecksum 78c9163951f269a489f6e8a48cce7d9ca46aa5c7f2f2567f8e50627ddc32920a8a5b54bf141ae881c2863de6bad4f7a954588fef9469291f18e65b7fadbf051b docfiles size=62 - RELOC/doc/latex/magaz/magaz.pdf + RELOC/doc/latex/magaz/magaz.pdf details="Package documentation" RELOC/doc/latex/magaz/magaz.tex +runfiles size=3 + RELOC/tex/latex/magaz/magaz.sty catalogue-ctan /macros/latex/contrib/magaz -catalogue-date 2013-11-21 21:33:57 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics layout typesetting catalogue-version 0.4 name mailing category Package revision 15878 -shortdesc Macros for mail merging. +shortdesc Macros for mail merging relocated 1 longdesc This package is for use when sending a large number of letters, longdesc all with the same body text. The package's \addressfile command longdesc is used to specify who the letter is to be sent to; the body of longdesc the \mailingtext command specifies the text of the letters, longdesc possibly using macros defined in the \addressfile. -runfiles size=1 - RELOC/tex/latex/mailing/mailing.sty +containersize 1784 +containerchecksum 33fca4d77b34e3390de647e7e39d6240344f2a90c6067275bdb0e7dd1a3deaf5d5cdaa84dc4a49a0c817bc6923eb593602653b0d0ae4b794510a272b78498be9 +doccontainersize 58464 +doccontainerchecksum 2fd2d4dd5c1896d0849294a1911ae3682b7331cfa574bd46aa047f118fdcb09b4da3e29f6d5412d23ea49f776cd042694508e8b5492ec53cb44a6acafec110c5 docfiles size=18 - RELOC/doc/latex/mailing/mailing.pdf + RELOC/doc/latex/mailing/mailing.pdf details="Package documentation" RELOC/doc/latex/mailing/manifest.txt +srccontainersize 3524 +srccontainerchecksum 5adf58b4bc60e939906b8ae587829937afffc54af81623e640a513ed8522984c2308d3af1631857f4469a5774a844e3655bc3a9ca8ee09445b545d10dbcfea5c srcfiles size=4 RELOC/source/latex/mailing/mailing.dtx RELOC/source/latex/mailing/mailing.ins +runfiles size=1 + RELOC/tex/latex/mailing/mailing.sty catalogue-ctan /macros/latex/contrib/mailing -catalogue-date 2012-05-25 22:58:30 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics mailing name mailmerge category Package revision 15878 -shortdesc Repeating text field substitution. +shortdesc Repeating text field substitution relocated 1 longdesc The package mailmerge provides an interface to produce text longdesc from a template, where fields are replaced by actual data, as @@ -102958,62 +169524,247 @@ longdesc in a database. The package may be used to produce several longdesc letters from a template, certificates or other such documents. longdesc It allows access to the entry number, number of entries and so longdesc on. -runfiles size=1 - RELOC/tex/latex/mailmerge/mailmerge.sty +containersize 1928 +containerchecksum 1930b0c554dfa36514d0c0b33749d506d6e5acfcf65e3c1dde3ed75a7c45bafb74db8d83f1b286c1a623acb32b2047dcab566ad85e3676c67c0ce1f7722d24f4 +doccontainersize 91936 +doccontainerchecksum 3e8aa80211af8f59289b87dece6cc2a1c5eccf02805e3e7927c78cdac66cdb6afaacb07b1114f8c67105289e4d4f7188043cc28f00365c1f5c3f353a53f14922 docfiles size=27 - RELOC/doc/latex/mailmerge/README - RELOC/doc/latex/mailmerge/mailmerge.pdf + RELOC/doc/latex/mailmerge/README details="Readme" + RELOC/doc/latex/mailmerge/mailmerge.pdf details="Package documentation" +srccontainersize 4236 +srccontainerchecksum d894133e294ea440e1916a04f28a738930ea0ae80ad96e148434c84a02a388735d00778ff4850306ba7336c915a9b2992f41c496149447e6189db82c59a66138 srcfiles size=4 RELOC/source/latex/mailmerge/mailmerge.dtx RELOC/source/latex/mailmerge/mailmerge.ins +runfiles size=1 + RELOC/tex/latex/mailmerge/mailmerge.sty +catalogue-also mailing merge postcards catalogue-ctan /macros/latex/contrib/mailmerge -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics mailing catalogue-version 1.0 name make4ht category Package -revision 37750 -shortdesc A build system for tex4ht. -longdesc make4ht is a simple build system for tex4ht. It is both -longdesc executable, which simplifies tex4ht execution, and a library -longdesc which can be used to create customized conversion programs. +revision 50511 +shortdesc A build system for tex4ht +longdesc make4ht is a simple build system for tex4ht, a TeX to XML +longdesc converter. It provides a command line tool that drives the +longdesc conversion process. It also provides a library which can be +longdesc used to create customized conversion tools. depend make4ht.ARCH -runfiles size=16 +containersize 33116 +containerchecksum 3ec2a5d5dd5dd32072a77b2c6dc83e54bf1d8aac3b5a4e7570fdbd7ccff98016fe131e54344d1a06d96a7651d3fb9aab4e45f048159cbf58bd20f8dfd4cb96ca +doccontainersize 128140 +doccontainerchecksum 15ef078e220d054f40e149f8f0012ed90d65c9b6b4103dec0684d5c4852c3c9571154075307d05995359706bc7808bba1fb92edd547e1184e4b6af3eefc28ed2 +docfiles size=50 + texmf-dist/doc/support/make4ht/README details="Readme" + texmf-dist/doc/support/make4ht/changelog.tex + texmf-dist/doc/support/make4ht/make4ht-doc.pdf details="Package documentation" + texmf-dist/doc/support/make4ht/make4ht-doc.tex + texmf-dist/doc/support/make4ht/readme.tex +runfiles size=59 + texmf-dist/scripts/make4ht/domfilters/make4ht-aeneas.lua + texmf-dist/scripts/make4ht/domfilters/make4ht-fixinlines.lua + texmf-dist/scripts/make4ht/domfilters/make4ht-idcolons.lua + texmf-dist/scripts/make4ht/domfilters/make4ht-joincharacters.lua + texmf-dist/scripts/make4ht/domfilters/make4ht-joincolors.lua + texmf-dist/scripts/make4ht/domfilters/make4ht-odtimagesize.lua + texmf-dist/scripts/make4ht/domfilters/make4ht-t4htlinks.lua + texmf-dist/scripts/make4ht/extensions/common_domfilters.lua + texmf-dist/scripts/make4ht/extensions/common_filters.lua + texmf-dist/scripts/make4ht/extensions/dvisvgm_hashes.lua + texmf-dist/scripts/make4ht/extensions/join_colors.lua + texmf-dist/scripts/make4ht/extensions/latexmk_build.lua + texmf-dist/scripts/make4ht/extensions/mathjaxnode.lua + texmf-dist/scripts/make4ht/extensions/odttemplate.lua + texmf-dist/scripts/make4ht/extensions/staticsite.lua + texmf-dist/scripts/make4ht/extensions/tidy.lua texmf-dist/scripts/make4ht/filters/make4ht-cleanspan-nat.lua texmf-dist/scripts/make4ht/filters/make4ht-cleanspan.lua + texmf-dist/scripts/make4ht/filters/make4ht-domfilter.lua + texmf-dist/scripts/make4ht/filters/make4ht-entities-to-unicode.lua texmf-dist/scripts/make4ht/filters/make4ht-entities.lua texmf-dist/scripts/make4ht/filters/make4ht-filter.lua + texmf-dist/scripts/make4ht/filters/make4ht-fix-links.lua texmf-dist/scripts/make4ht/filters/make4ht-fixligatures.lua texmf-dist/scripts/make4ht/filters/make4ht-hruletohr.lua + texmf-dist/scripts/make4ht/filters/make4ht-mathjaxnode.lua + texmf-dist/scripts/make4ht/filters/make4ht-odttemplate.lua + texmf-dist/scripts/make4ht/filters/make4ht-staticsite.lua + texmf-dist/scripts/make4ht/filters/make4ht-svg-height.lua + texmf-dist/scripts/make4ht/formats/docbook.lua + texmf-dist/scripts/make4ht/formats/html5.lua + texmf-dist/scripts/make4ht/formats/odt.lua + texmf-dist/scripts/make4ht/formats/tei.lua + texmf-dist/scripts/make4ht/formats/xhtml.lua texmf-dist/scripts/make4ht/lapp-mk4.lua texmf-dist/scripts/make4ht/make4ht + texmf-dist/scripts/make4ht/make4ht-aeneas-config.lua + texmf-dist/scripts/make4ht/make4ht-config.lua + texmf-dist/scripts/make4ht/make4ht-dvireader.lua + texmf-dist/scripts/make4ht/make4ht-filterlib.lua texmf-dist/scripts/make4ht/make4ht-lib.lua + texmf-dist/scripts/make4ht/make4ht-xtpipes.lua + texmf-dist/scripts/make4ht/mathnode.lua texmf-dist/scripts/make4ht/mkparams.lua texmf-dist/scripts/make4ht/mkutils.lua -docfiles size=24 - texmf-dist/doc/support/make4ht/README.md - texmf-dist/doc/support/make4ht/changelog.tex - texmf-dist/doc/support/make4ht/make4ht-doc.pdf - texmf-dist/doc/support/make4ht/make4ht-doc.tex - texmf-dist/doc/support/make4ht/readme.tex +catalogue-contact-repository https://github.com/michal-h21/make4ht catalogue-ctan /support/make4ht -catalogue-date 2015-07-02 05:28:32 +0200 +catalogue-date 2019-03-21 19:55:33 +0100 catalogue-license lppl1.3 catalogue-topics cvt-html -catalogue-version 0.1 +catalogue-version 0.2f + +name make4ht.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of make4ht +containersize 340 +containerchecksum 00213df4b1b5188283a5205e2d375509cb73f2495a8c3959fc9ea4da4e86c03280cdd88314dee0be473d343ea81760289b729b6226c51b338bc2b3a74d9be3f2 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/make4ht + +name make4ht.amd64-freebsd +category Package +revision 37750 +shortdesc amd64-freebsd files of make4ht +containersize 340 +containerchecksum caa60837bf5314b44ce3da043136d770e766a924c0fac2a50d78566fae9ba36ed08101d8435406bf6ca72873a74dead99dc55385f5c659c0de15790be4e1c1d1 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/make4ht + +name make4ht.amd64-netbsd +category Package +revision 37750 +shortdesc amd64-netbsd files of make4ht +containersize 340 +containerchecksum 262783e6643eefa2e6b2ee528d37cb6af18a1807b964665942475ec1e799639029957a133ed466c43a81cbb0753c0978982fda0928ff9040ac91564121fa47a4 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/make4ht + +name make4ht.armhf-linux +category Package +revision 37750 +shortdesc armhf-linux files of make4ht +containersize 340 +containerchecksum 92d2ae6412b862dbf491e3790f3b5163ed18a91bf98eac1b14735e83bbfecc67d4f6bb87660cfb02323ec55ece1a39669a2dc8cd1f37e39851c340609db64052 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/make4ht + +name make4ht.i386-cygwin +category Package +revision 37750 +shortdesc i386-cygwin files of make4ht +containersize 336 +containerchecksum f45b35e91a9ab26c9b0350a81e02ec928b95e8d25aca6ed084dde6097ae89a9359fdc4d3fa24ccc82e4fdd67aa6685ffa8ea671b58d7a7e9286906e5ff8820e6 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/make4ht + +name make4ht.i386-freebsd +category Package +revision 37750 +shortdesc i386-freebsd files of make4ht +containersize 340 +containerchecksum c0e4d6147181d162827d212cae5043bd2db23de71fe2ebc7fe4db7191ba8229564eaba1211bfa84c6767fb26070cc04e53dbfad8ca5b3b0a991a511486542191 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/make4ht name make4ht.i386-linux category Package revision 37750 shortdesc i386-linux files of make4ht +containersize 340 +containerchecksum 8c27229730bfcad799d0917f86eb8ecf9b7c6d510041319ad433a2707735286c9424e7fe29bfb122e94bea4662ab36b64f1ef701449371471d7226b3ccf7460f binfiles arch=i386-linux size=1 bin/i386-linux/make4ht +name make4ht.i386-netbsd +category Package +revision 37750 +shortdesc i386-netbsd files of make4ht +containersize 336 +containerchecksum 6130dcb01f4ba01fa3d15b9b8e8f23aef34ac708ada1ca27577a00d4d4754442a6b6844e1b4f8657a7831034b0395b3ae67145e203d189750b92bd9cca4cd4be +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/make4ht + +name make4ht.i386-solaris +category Package +revision 37750 +shortdesc i386-solaris files of make4ht +containersize 340 +containerchecksum 67357edb17545347681a99e3cebc55816c161c74411c9011187e073c5d47d797202e0410971f003ca0a50dbd57b0e87336be0247684c2ec94ef21fc0cb8a7f5a +binfiles arch=i386-solaris size=1 + bin/i386-solaris/make4ht + +name make4ht.win32 +category Package +revision 37750 +shortdesc win32 files of make4ht +containersize 680 +containerchecksum 33360e5e61ecfbea02edbc76021b2c74fa464cc8ab1a8af304314d95a7f3e27e6c5e74b3088162bafd76275ee29aee0bc57a17e0f5a1c8aa6774cb3e3be3ca25 +binfiles arch=win32 size=1 + bin/win32/make4ht.exe + +name make4ht.x86_64-cygwin +category Package +revision 37750 +shortdesc x86_64-cygwin files of make4ht +containersize 340 +containerchecksum 976ae0c43f307104ffb572e56b9b69fe74c7d899780af31f963c3d95dfc062ca240915c8f8c91c0d104859af25de57fcecb62b0998ba1198b9cb0fc6733da6d6 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/make4ht + +name make4ht.x86_64-darwin +category Package +revision 37750 +shortdesc x86_64-darwin files of make4ht +containersize 340 +containerchecksum dd1cceaec9dcc4e5d3318d64cdc4e9be2a0440389ab0045aafd7d4f28e14096302910162dfab80c799de1181a18f76ebed0f293ea0a30d5fc2276d34663debe8 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/make4ht + +name make4ht.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of make4ht +containersize 348 +containerchecksum c0e5511da4e2da45341323de091f1b0d87697ea53496d74bd33887745cc6fd0dab3a35553023a02e578cab457d386a1cfbe617dbf07ec550cb0484b415b3a528 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/make4ht + +name make4ht.x86_64-linux +category Package +revision 37750 +shortdesc x86_64-linux files of make4ht +containersize 336 +containerchecksum 05f458a5b67c1a30e6632aa4bd5f22aa28799b73722567558715ce0da72d89b34fce923a0e28e548d09857b90f070b7c008d1409b537fe90881a7095b78f1f41 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/make4ht + +name make4ht.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of make4ht +containersize 340 +containerchecksum 7dd62bde71d9f4946d17c16ab72ba24420c46830088cbb1ae0831fcf87506c1f2da1c54995b8f80553e3194af9c2b7064f84843747ef71cac6e20aeca8ef8723 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/make4ht + +name make4ht.x86_64-solaris +category Package +revision 37750 +shortdesc x86_64-solaris files of make4ht +containersize 340 +containerchecksum 84a21e3cebf77651c82e3b2002f4ba9863f979ffb2af44d5cdf1659c5b162804230d98ef1e4f2a5cbb16cd800016a657ecb637b3b68806c8e26352a91ed61418 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/make4ht + name makebarcode category Package revision 15878 -shortdesc Print various kinds 2/5 and Code 39 bar codes. +shortdesc Print various kinds 2/5 and Code 39 bar codes relocated 1 longdesc The package contains macros for printing various 2/5 bar codes longdesc and Code 39 bar codes. The macros do not use fonts but create @@ -103022,48 +169773,94 @@ longdesc possible to vary width to height ratio, ratio of thin and thick longdesc bars. The package is therefore convenient for printing ITF bar longdesc codes as well as bar codes for identification labels for HP longdesc storage media. -runfiles size=5 - RELOC/tex/latex/makebarcode/makebarcode.sty +containersize 4928 +containerchecksum a19268b5e63e577b4df9255e4c0eac640c73ac9e08f6d4b4baaff7920f714b7dd961f8143587b59478df2d854dc2f363312833c7636d08c2aab644a25b54bb40 +doccontainersize 272060 +doccontainerchecksum ecd0121f679d7e4ffb162c151dc4b60acc78f9297d3bf0003882b914f0b1a10a52b43e844c5bb085d73ac08f9f0aa2e768ec4fe7374067ae2fcf304e842a29e3 docfiles size=79 RELOC/doc/latex/makebarcode/License.txt - RELOC/doc/latex/makebarcode/README - RELOC/doc/latex/makebarcode/makebarcode.pdf + RELOC/doc/latex/makebarcode/README details="Readme" + RELOC/doc/latex/makebarcode/makebarcode.pdf details="Package documentation" RELOC/doc/latex/makebarcode/makebarcode.tex +runfiles size=5 + RELOC/tex/latex/makebarcode/makebarcode.sty catalogue-ctan /macros/latex/contrib/makebarcode -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics barcode catalogue-version 1.0 +name makebase +category Package +revision 41012 +shortdesc Typeset counters in a different base +relocated 1 +longdesc This package typesets a LaTeX counter such as page in an +longdesc arbitrary base (default 16). It does not change font or +longdesc typeface. The package extends the functionality of the existing +longdesc hex LaTeX 2.09 package and provides documentation. However, the +longdesc author is not a mathematician, and suggestions for rewriting +longdesc the code are welcomed. Warning: this is alpha software and may +longdesc contain bugs. Please report problems to the author. +containersize 1316 +containerchecksum cf36d0bad24180f48a7cddae8fa19c6260ceb5076b21f05e48360a30ec259b342e6a17f1c5d299ce5fe02a8dc5ed7934dd55c5529118bb24dd13cd36242b0d6a +doccontainersize 450432 +doccontainerchecksum 2f7eabf88fe3777ebb1455caed5a339c3b56e0e7a97d34aac0b4c461e7ccf6450de936678ce00e64e39f308167ec55a6b3ec42f7428a7a9c87d2607570e1576b +docfiles size=114 + RELOC/doc/latex/makebase/MANIFEST + RELOC/doc/latex/makebase/README.md details="Readme" + RELOC/doc/latex/makebase/makebase-test.tex + RELOC/doc/latex/makebase/makebase.pdf details="Package documentation" +srccontainersize 15000 +srccontainerchecksum 734e05be1aa54da7bf484fb9211b1f5d6d076c9a87c3287ebd1fe0fa965f542e4e8e14a6df767ccaa23063fc263e66d52b42df54fe3c3142bcf0b3d7f7fd8de0 +srcfiles size=13 + RELOC/source/latex/makebase/makebase.dtx + RELOC/source/latex/makebase/makebase.ins +runfiles size=1 + RELOC/tex/latex/makebase/makebase.sty +catalogue-ctan /macros/latex/contrib/makebase +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics numbers +catalogue-version 0.2 + name makebox category Package revision 15878 -shortdesc Defines a \makebox* command. +shortdesc Defines a \makebox* command relocated 1 longdesc Define a \makebox* command that does the same as a \makebox longdesc command, except that the width is given by a sample text longdesc instead of an explicit length measure. -runfiles size=1 - RELOC/tex/latex/makebox/makebox.sty +containersize 952 +containerchecksum 918052ed5c358e12ac7ca7c93f25a43fcfa8f7ba261fdf652d7ccbbcc27e3e0f822813d8297d3b75450c443687bd97e93416624b51da61572557d6a337638bc7 +doccontainersize 272640 +doccontainerchecksum 807d495fdef601fff666acb79c7f3fa43d1aeebf8aed77bebc02f90dca4fb9c36ae1bc911a9af1009538f3d3e2c4c7f9ceb0111d091dd4c1691a1520e089a697 docfiles size=74 RELOC/doc/latex/makebox/ChangeLog - RELOC/doc/latex/makebox/README + RELOC/doc/latex/makebox/README details="Package Readme" RELOC/doc/latex/makebox/getversion.tex - RELOC/doc/latex/makebox/makebox.pdf + RELOC/doc/latex/makebox/makebox.pdf details="Package documentation" RELOC/doc/latex/makebox/makebox.xml RELOC/doc/latex/makebox/testmakebox.tex +srccontainersize 2892 +srccontainerchecksum 04ab9a02882a505f4393288ae8e5d6be374bdd6aa8a4472da1fb7e2c9e3b4bfc58132921a3287a4c8fe4d8d3fb91ddc33496a088431862407988ade1f716ee85 srcfiles size=4 RELOC/source/latex/makebox/Makefile RELOC/source/latex/makebox/makebox.dtx RELOC/source/latex/makebox/makebox.ins +runfiles size=1 + RELOC/tex/latex/makebox/makebox.sty catalogue-ctan /macros/latex/contrib/makebox -catalogue-date 2012-04-03 18:09:05 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics boxing catalogue-version 0.1 name makecell category Package revision 15878 -shortdesc Tabular column heads and multilined cells. +shortdesc Tabular column heads and multilined cells relocated 1 longdesc This package supports common layouts for tabular column heads longdesc in whole documents, based on one-column tabular environment. In @@ -103075,24 +169872,31 @@ longdesc macros for multirow cells, which use the facilities of the longdesc multirow package; macros to number rows in tables, or to skip longdesc cells; diagonally divided cells; horizontal lines in tabular longdesc environments with defined thickness. -runfiles size=4 - RELOC/tex/latex/makecell/makecell.sty +containersize 4460 +containerchecksum ba32b6a68b0a4cd6df36d460832e5cd9664a9c305c24dbca93a4fce69e97b6db3d86e3f219a0511c7d70378ddd9424d3685d60cabbc8554077c6bfbd8847789b +doccontainersize 690256 +doccontainerchecksum 7c762852f1c7b4609fa823117e765d2b42ad857e2ffa1ca84aa3df74497c88dfc0a2cf05747f11f14453873ee70c4b0f2f890112c567d04ad0d61ada37e14335 docfiles size=209 - RELOC/doc/latex/makecell/README - RELOC/doc/latex/makecell/makecell-rus.pdf + RELOC/doc/latex/makecell/README details="README file" + RELOC/doc/latex/makecell/makecell-rus.pdf details="Package documentation" language="ru" RELOC/doc/latex/makecell/makecell-rus.tex - RELOC/doc/latex/makecell/makecell.pdf + RELOC/doc/latex/makecell/makecell.pdf details="Package documentation" language="en" +srccontainersize 14792 +srccontainerchecksum bb2d33b674b612e67bbbc1bf04a68f3804fc37b9e22e19c9af05746efa869ef52db48c5828724b88de130b15120e9ae003f49ea6389f7add98c712550af87d4e srcfiles size=17 RELOC/source/latex/makecell/makecell.dtx +runfiles size=4 + RELOC/tex/latex/makecell/makecell.sty catalogue-ctan /macros/latex/contrib/makecell -catalogue-date 2014-10-15 23:41:14 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics table catalogue-version 0.1e name makecirc category Package revision 15878 -shortdesc A MetaPost library for drawing electrical circuit diagrams. +shortdesc A MetaPost library for drawing electrical circuit diagrams relocated 1 longdesc MakeCirc is a MetaPost library that contains diverse symbols longdesc for use in circuit diagrams. MakeCirc offers a high quality @@ -103100,94 +169904,324 @@ longdesc tool, with a simple syntax. MakeCirc is completely integrated longdesc with LaTeX documents and with other MetaPost drawing/graphic. longdesc Its output is a PostScript file. MakeCirc only requires (La)TeX longdesc and MetaPost to work. +containersize 12296 +containerchecksum 9bba91e5139b90201e232aa3fa21254c5bf8d989aedaec8310209ae6b772d24d7b8c3be379909f04c2c7ff079cca10f43a1f74091a77bb1b8ca637a0743a2ef2 +doccontainersize 473276 +doccontainerchecksum 25190b3a5d911de1d02fa596f604527006f3adf7512afae397e5ba15ab62d6471ab834f92437d35a9f37ed83c8b84990d79ef0fd9ce2b0edfffdfaa2ec97a345 +docfiles size=141 + RELOC/doc/metapost/makecirc/MakeCirc-en.pdf details="Package documentation in English" language="en" + RELOC/doc/metapost/makecirc/MakeCirc.pdf details="Package documentation in Spanish" language="es" + RELOC/doc/metapost/makecirc/README details="Readme" + RELOC/doc/metapost/makecirc/ejemplos.pdf runfiles size=15 RELOC/metapost/makecirc/ejemplos.mp RELOC/metapost/makecirc/latex.mp RELOC/metapost/makecirc/makecirc.mp -docfiles size=141 - RELOC/doc/metapost/makecirc/MakeCirc-en.pdf - RELOC/doc/metapost/makecirc/MakeCirc.pdf - RELOC/doc/metapost/makecirc/README - RELOC/doc/metapost/makecirc/ejemplos.pdf catalogue-ctan /graphics/metapost/contrib/macros/makecirc -catalogue-date 2012-06-14 16:39:06 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics diagram-circ name makecmds category Package revision 15878 -shortdesc The new \makecommand command always (re)defines a command. +shortdesc The new \makecommand command always (re)defines a command relocated 1 longdesc The package provides a \makecommand command, which is like longdesc \(re)newcommand except it always (re)defines a command. There longdesc is also \makeenvironment and \provideenvironment for longdesc environments. -runfiles size=1 - RELOC/tex/latex/makecmds/makecmds.sty +containersize 1340 +containerchecksum fb63fdc9cc0aaa531b25417f0c23348971c306b1a93d99e7efdbbfd7c3907b50f28c67f36a88bb2a94154bcbde937e63246ece577ee2440ad4f5c2935eb25b99 +doccontainersize 115620 +doccontainerchecksum f69dbf682df7e3089727570417be3624b496b5ad7db627b344d32b106606cab5299dd23497e137770fdfb9f940503a65e1074e06dd67e0561b36729ab6c3d428 docfiles size=34 - RELOC/doc/latex/makecmds/README + RELOC/doc/latex/makecmds/README details="Readme" RELOC/doc/latex/makecmds/makecmds.pdf +srccontainersize 5288 +srccontainerchecksum 380eca4f5fed0ae72cded8f6d3a201cacb05a57851c4c207f086dd17762689cd53a6b27daa23d8043c311adc9baed32808d2c7eb1855892f8113ec7f13c02946 srcfiles size=5 RELOC/source/latex/makecmds/makecmds.dtx RELOC/source/latex/makecmds/makecmds.ins +runfiles size=1 + RELOC/tex/latex/makecmds/makecmds.sty catalogue-ctan /macros/latex/contrib/makecmds -catalogue-date 2012-05-25 22:58:30 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics macro-supp + +name makecookbook +category Package +revision 49311 +shortdesc Make a Cookbook +relocated 1 +longdesc The makecookbook bundle contains the files needed to create a +longdesc nice quality family cookbook in a form ready to submit to most +longdesc print-on-demand companies. Modifiable choices have been made +longdesc regarding standard book features such as trim size, margins, +longdesc headers/footers, chapter heading formatting, front matter +longdesc (copyright page, table of contents, etc.) and back matter +longdesc (index). Commands and environments have been created to format +longdesc the food stories and recipes. The user will need to: supply +longdesc their own food stories and recipes(!), and install the needed +longdesc fonts. We assume a LuaTeX compile. Please note that no new +longdesc document class or package is included here. Rather, we provide +longdesc a modifiable preamble and a small number of other files that, +longdesc together, fully support creation of all of the internal pages +longdesc of a cookbook (i.e., everything except the cover art). +containersize 880 +containerchecksum a4fdb7a7553a08b51d15c038187ef621ca6852c20a033b1751c544634c3092f93c3db5c1f4d744732ff6696509d8fa406251e9d14e619397ca4202b55c1b9c64 +doccontainersize 463616 +doccontainerchecksum 84c97dd438e3d3abedce031da5841f789f3b8c28672c9e3b6c53929e2e781a9d51adaec6d883d0008b42f1eae2ed5bbf992ec229bb8b2f7f510346d10dbc31fb +docfiles size=191 + RELOC/doc/lualatex/makecookbook/README.old + RELOC/doc/lualatex/makecookbook/README.txt details="Readme" + RELOC/doc/lualatex/makecookbook/makecookbook-doc.pdf details="Package documentation" + RELOC/doc/lualatex/makecookbook/makecookbook-doc.tex + RELOC/doc/lualatex/makecookbook/mycookbook/cb-idxstyle.ist + RELOC/doc/lualatex/makecookbook/mycookbook/cb-lettrine.cfl + RELOC/doc/lualatex/makecookbook/mycookbook/cb-preamble.tex + RELOC/doc/lualatex/makecookbook/mycookbook/img/image-a.jpg + RELOC/doc/lualatex/makecookbook/mycookbook/img/image-b.jpg + RELOC/doc/lualatex/makecookbook/mycookbook/makecookbook.pdf + RELOC/doc/lualatex/makecookbook/mycookbook/makecookbook.tex + RELOC/doc/lualatex/makecookbook/mycookbook/tex/cb-chapterA.tex + RELOC/doc/lualatex/makecookbook/mycookbook/tex/cb-chapterB.tex + RELOC/doc/lualatex/makecookbook/mycookbook/tex/cb-frontmatter.tex +catalogue-ctan /macros/luatex/latex/makecookbook +catalogue-date 2018-12-06 07:49:18 +0100 +catalogue-license lppl1.3c +catalogue-topics book-pub cooking luatex +catalogue-version 0.85 name makedtx category Package -revision 15878 +revision 46702 shortdesc Perl script to help generate dtx and ins files -relocated 1 longdesc The makedtx bundle is provided to help LaTeX2e developers to longdesc write the code and documentation in separate files, and then longdesc combine them into a single .dtx file for distribution. It longdesc automatically generates the character table, and also writes longdesc the associated installation (.ins) script. -runfiles size=1 - RELOC/tex/latex/makedtx/creatdtx.sty -docfiles size=67 - RELOC/doc/latex/makedtx/CHANGES - RELOC/doc/latex/makedtx/README - RELOC/doc/latex/makedtx/creatdtx.perl - RELOC/doc/latex/makedtx/makedtx-manual.html - RELOC/doc/latex/makedtx/makedtx.pdf - RELOC/doc/latex/makedtx/makedtx.pl -srcfiles size=15 - RELOC/source/latex/makedtx/makedtx.dtx - RELOC/source/latex/makedtx/makedtx.ins +depend makedtx.ARCH +containersize 7784 +containerchecksum e083fa791975cef84b2e2ba3472984e354d5ced50ae7fb96dd8239cfffd379e7a25fdab80abcb721e63dfb10d9557bce69e97c5624d1635f894bcd26e22b5f4d +doccontainersize 269240 +doccontainerchecksum 913f6f02ff478ab5edeed4792846ee6bc06d28c16fd3d7396d394f4a964d6f39a12c8163d66a50a5bf53add151317184b09a712dfd32f9ff783bda7f520c7eef +docfiles size=78 + texmf-dist/doc/support/makedtx/CHANGES.org + texmf-dist/doc/support/makedtx/README.txt details="Readme" + texmf-dist/doc/support/makedtx/latexmkrc.pl + texmf-dist/doc/support/makedtx/makedtx-version.tex + texmf-dist/doc/support/makedtx/makedtx.pdf details="Package documentation (PDF format)" +srccontainersize 16152 +srccontainerchecksum 84e12e7798c37a598a2d37fa7faa206ffb6f5c1f9c21af7130a9f05bebf9857f2a4fb7988be55a9936199694a0d74595ff75a1261187d81fd06beda5e0628931 +srcfiles size=16 + texmf-dist/source/support/makedtx/makedtx.dtx + texmf-dist/source/support/makedtx/makedtx.ins +runfiles size=8 + texmf-dist/scripts/makedtx/makedtx.pl + texmf-dist/tex/latex/makedtx/createdtx.sty +catalogue-also sty2dtx +catalogue-contact-bugs https://puszcza.gnu.org.ua/bugs/?group=latex-makedtx +catalogue-contact-development https://puszcza.gnu.org.ua/project/memberlist.php?group=latex-makedtx +catalogue-contact-home https://puszcza.gnu.org.ua/projects/latex-makedtx +catalogue-contact-repository https://puszcza.gnu.org.ua/svn/?group=latex-makedtx catalogue-ctan /support/makedtx -catalogue-date 2012-05-21 14:42:12 +0200 +catalogue-date 2018-02-21 20:29:09 +0100 catalogue-license lppl -catalogue-version 0.94b +catalogue-topics package-devel +catalogue-version 1.2 + +name makedtx.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of makedtx +containersize 340 +containerchecksum 47343181e09d6c7b5d60293984eae06c68b2670135378fbbe8ad79cf87f6b815769dbcc10c9dad868992b42f9065aa766cd3ea8c7e989f838f4ec61892d1186c +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/makedtx + +name makedtx.amd64-freebsd +category Package +revision 38769 +shortdesc amd64-freebsd files of makedtx +containersize 344 +containerchecksum 17242395b75ddae478f02f0dd6f8841aafdd59b3f1f1233996d05f0e504a50015570a85a1a6b17a62460fb8f35e8fd4d89070d8453df98cf7c5209bbed6c3299 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/makedtx + +name makedtx.amd64-netbsd +category Package +revision 38769 +shortdesc amd64-netbsd files of makedtx +containersize 340 +containerchecksum e91d2b6036f96d574879017383eed865da6b9ce0e442d578c7d31bd461311ffc41c919f8dc80caf37819432fc33e74b57c032fb271570689c31543fbc1e75330 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/makedtx + +name makedtx.armhf-linux +category Package +revision 38769 +shortdesc armhf-linux files of makedtx +containersize 340 +containerchecksum f3faf72357ebd72adf7e204f03cf75ba3d9007ace1bb476de0807aa2aefbeff758d6b0aeb64ddc0e3cf560bdafe2322724daa2486472037cb2533004de9f6e45 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/makedtx + +name makedtx.i386-cygwin +category Package +revision 38769 +shortdesc i386-cygwin files of makedtx +containersize 340 +containerchecksum 946cd60df793ed893925bbc81d4f416c79ad8d11f56368f2eac94f1a41a2c6a30ecb7722f972ed05b05d4efe70ba025e7eb44bfbc50b3e3cb470f80e8fdc2bba +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/makedtx + +name makedtx.i386-freebsd +category Package +revision 38769 +shortdesc i386-freebsd files of makedtx +containersize 344 +containerchecksum c641555a900b8800cbd90332bfa48fcf11377de27e3e60f236aa97425224aa486bdb4b655ba65480944025ed0d6117b63f93963e1f4bb63f6b8e428939e08475 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/makedtx + +name makedtx.i386-linux +category Package +revision 38769 +shortdesc i386-linux files of makedtx +containersize 340 +containerchecksum cb084ba573365cbeb04f21d7f1387183a11dc795e723bc463a28942e7e6246b2c48590a03edb685b998cb8300c4e0490f46fbb29bb350f155a96c002b2a6bb6c +binfiles arch=i386-linux size=1 + bin/i386-linux/makedtx + +name makedtx.i386-netbsd +category Package +revision 38769 +shortdesc i386-netbsd files of makedtx +containersize 340 +containerchecksum 4a53a665201edc83931c568009f74762845b56f3127cdd81e1665ecfa1d4b34e6bf38d9c9366eeecbd4a2370f16c1d7d325df54a3c4b446d3c7c9867b1b55b71 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/makedtx + +name makedtx.i386-solaris +category Package +revision 38769 +shortdesc i386-solaris files of makedtx +containersize 340 +containerchecksum 6f9d12603eefae901d64de9971fb7b7ef3bb2fa476d889399bd20e9a0de21a6d7385f26e5edcc331915b907bdf7797d72b81a54d62910f016dd7d12cbb1b70e8 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/makedtx + +name makedtx.win32 +category Package +revision 38769 +shortdesc win32 files of makedtx +containersize 684 +containerchecksum 106f9a088b5d507c8771039ef2c89fde62e404d55e417c284532a6ba5a5fe46e50a25a1237b152ef2fdf8cd8f3f1b03bd399d6dde8af3bda7c9538bf13bce62a +binfiles arch=win32 size=1 + bin/win32/makedtx.exe + +name makedtx.x86_64-cygwin +category Package +revision 38769 +shortdesc x86_64-cygwin files of makedtx +containersize 344 +containerchecksum ed5700da12eda85b45478c91f9c344dcd57f9ba522776704eaf0302cebbf99c1439137a32de4f6e6180c5a09fffc8580f3d99de92d26c492cde765effaa2055e +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/makedtx + +name makedtx.x86_64-darwin +category Package +revision 38769 +shortdesc x86_64-darwin files of makedtx +containersize 344 +containerchecksum a3ae88768096a7d6c89b2e67e3ed56af5712bba2ab602fd7bef9df595d0fd354cc48d113df7985548260f16cb7e27451e8a621a358d99fae3c228c8e0fffbd57 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/makedtx + +name makedtx.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of makedtx +containersize 348 +containerchecksum 490b03c7dd126f1298cae0de1bc4376567de64c42e0e8f805e22db59a7070a893dddd15aa5c8b66950a3f5866c28fd24b1ea8ffdf746a2f25d95344063bdb133 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/makedtx + +name makedtx.x86_64-linux +category Package +revision 38769 +shortdesc x86_64-linux files of makedtx +containersize 340 +containerchecksum a34185b5a72fc5c0aa70daefc812b0622b1df310e9f6addab8825bb5b90a9cf8ba113593bd628b84926a3cbed5a9bd11df8f948ee01295e44f61bffb6ee4acbc +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/makedtx + +name makedtx.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of makedtx +containersize 344 +containerchecksum f5f49956b5c26ba5feff4c14b95c1ac2ba6899c2c1793c348b177efd934bf5616198f92754fbcb96c40c2b50bf030e3ebb3052599ab2119cb8e8cf3a4cb55b7d +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/makedtx + +name makedtx.x86_64-solaris +category Package +revision 38769 +shortdesc x86_64-solaris files of makedtx +containersize 344 +containerchecksum 2050a2432b66aff927d6f7424c214d72e80be62311f4ac2d16db3950badf6307e1fc6db829a17cdc6ee1c5aa869f1c484b808b7035cfa25d75b27dca3f3d1a71 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/makedtx name makeglos category Package revision 15878 -shortdesc Include a glossary into a document. +shortdesc Include a glossary into a document relocated 1 longdesc The package provides the means to include a glossary into a longdesc document. The glossary is prepared by an external program, such longdesc as xindy or makeindex, in the same way that an index is made. -runfiles size=1 - RELOC/tex/latex/makeglos/makeglos.sty +containersize 808 +containerchecksum 477523d4663e1e4a1fd6bb830e4574d6d116180b06a3199d6ba27f7cf704a1906a2812496e9a7ba8063690a2095fbd5022a5eb8c2448b1e0341c8a961cf05794 +doccontainersize 54248 +doccontainerchecksum c580a23d65422d8405ce011fb6b088f53836811e3da517423f6d0dce098ffbd64c0648318eb9fb74ab637e1796d19247ee87ca8a25c7d306e3dc35a5d6d79f99 docfiles size=18 - RELOC/doc/latex/makeglos/README - RELOC/doc/latex/makeglos/makeglos.pdf + RELOC/doc/latex/makeglos/README details="Readme" + RELOC/doc/latex/makeglos/makeglos.pdf details="Package documentation" RELOC/doc/latex/makeglos/makeglos.tex RELOC/doc/latex/makeglos/makeglos.xdy +runfiles size=1 + RELOC/tex/latex/makeglos/makeglos.sty +catalogue-also nomencl glosstex gloss catalogue-ctan /macros/latex/contrib/makeglos -catalogue-date 2012-07-06 13:09:55 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics glossary name makeindex category Package -revision 37078 +revision 50602 catalogue makeindexk -shortdesc Makeindex development sources. +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 6ddccdfd89e0f362b312c981da16e7e2771035ad03135f7c49998ec7d2b4f7990cc8d3094d2a703277aa1be1d43b332906169d1a6699eee8730a5d6451d9a2e6 +doccontainersize 466008 +doccontainerchecksum 6decf2c8d770fe0cb18c87929f877afac8f2e5baf64cc85c82e575fa0722ed9dc89fb49f08aedff17f26101dc3e7ae42ca6d4a1f2864ec2906c46a960efaf90b +docfiles size=131 + texmf-dist/doc/man/man1/makeindex.1 + texmf-dist/doc/man/man1/makeindex.man1.pdf + texmf-dist/doc/man/man1/mkindex.1 + texmf-dist/doc/man/man1/mkindex.man1.pdf + texmf-dist/doc/support/makeindex/doc-src.zip + texmf-dist/doc/support/makeindex/ind.pdf + texmf-dist/doc/support/makeindex/makeindex.pdf runfiles size=9 texmf-dist/makeindex/base/din.ist texmf-dist/makeindex/base/icase.ist @@ -103197,178 +170231,557 @@ runfiles size=9 texmf-dist/makeindex/base/puncts.ist texmf-dist/makeindex/base/tex.ist texmf-dist/tex/plain/makeindex/idxmac.tex -docfiles size=121 - texmf-dist/doc/man/man1/makeindex.1 - texmf-dist/doc/man/man1/makeindex.man1.pdf - texmf-dist/doc/man/man1/mkindex.1 - texmf-dist/doc/man/man1/mkindex.man1.pdf - texmf-dist/doc/support/makeindex/doc-src.zip - texmf-dist/doc/support/makeindex/ind.pdf - texmf-dist/doc/support/makeindex/makeindex.pdf catalogue-ctan /indexing/makeindexk -catalogue-date 2015-03-27 20:49:07 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics index + +name makeindex.aarch64-linux +category Package +revision 50594 +shortdesc aarch64-linux files of makeindex +containersize 44632 +containerchecksum ee885a9fe71a3dd0c8a829cc0cfb2128868d10276977d14af88d582742d022737dc4a45a6f4eeffe89733021417b6b389e1006ab06509aa642fd7e5ccef1de90 +binfiles arch=aarch64-linux size=38 + bin/aarch64-linux/makeindex + bin/aarch64-linux/mkindex + +name makeindex.amd64-freebsd +category Package +revision 50594 +shortdesc amd64-freebsd files of makeindex +containersize 47984 +containerchecksum 3fa188433a96148996d46b5f4ac6d20ddedd08e248f11eed026f912cbe1de8e9c537fdc3bb31e23532900a33222ed7149b834daaa481fa4d37f67c1f9209c9cc +binfiles arch=amd64-freebsd size=37 + bin/amd64-freebsd/makeindex + bin/amd64-freebsd/mkindex + +name makeindex.amd64-netbsd +category Package +revision 50581 +shortdesc amd64-netbsd files of makeindex +containersize 43788 +containerchecksum 35400bd7ed7018dde4420f6245d478cb93b3ed632011645694241125d86bec66b036ec87e50416fff41629c2793f18890843bdb5bc60b241f4a3115931409742 +binfiles arch=amd64-netbsd size=43 + bin/amd64-netbsd/makeindex + bin/amd64-netbsd/mkindex + +name makeindex.armhf-linux +category Package +revision 50606 +shortdesc armhf-linux files of makeindex +containersize 40488 +containerchecksum 712df066b4d447b42e94b6d5cac7c85fb434357f4f65bd773af3a42a6d322fd6fe3d533f70159a349d9b4d5d1130bfe83e47e7f551901b1516481f298540dd3d +binfiles arch=armhf-linux size=33 + bin/armhf-linux/makeindex + bin/armhf-linux/mkindex + +name makeindex.i386-cygwin +category Package +revision 50603 +shortdesc i386-cygwin files of makeindex +containersize 18736 +containerchecksum 857eca412f4677b0f2dc10a6960f31c1587e1e45193415e642ee67ab94e4442c2e6134f82421a8f2036bcd04b3deee920d95493c42acbbb1ad6bf464bcc92389 +binfiles arch=i386-cygwin size=20 + bin/i386-cygwin/makeindex.exe + bin/i386-cygwin/mkindex + +name makeindex.i386-freebsd +category Package +revision 50594 +shortdesc i386-freebsd files of makeindex +containersize 39664 +containerchecksum 7e8fc928733588a3745125ac60f9ba25e6e99a286759bb8863d03b89e9b48207cb971af17e603868c6edb26417b8f4c9e9b25986d7ce907d9040226fe77a71db +binfiles arch=i386-freebsd size=32 + bin/i386-freebsd/makeindex + bin/i386-freebsd/mkindex name makeindex.i386-linux category Package -revision 36790 +revision 50594 shortdesc i386-linux files of makeindex -binfiles arch=i386-linux size=46 +containersize 50340 +containerchecksum cfe736a2980dfca3ec04fb60daae25f5caa58c3098e1987c2b3633202187efc28a614120cabae24804727d0c68866e47b04a34b33094adb4e85ae7a365bb989d +binfiles arch=i386-linux size=40 bin/i386-linux/makeindex bin/i386-linux/mkindex +name makeindex.i386-netbsd +category Package +revision 50581 +shortdesc i386-netbsd files of makeindex +containersize 38356 +containerchecksum 21cee79c3b3d6b73ba6e9fe37afc9b1cce382292fefc49883e00fb767b0b984a056a21418f336ffdc377b30b3feaf09709a4878a08304bc4f3c1fc0fb5f346b8 +binfiles arch=i386-netbsd size=41 + bin/i386-netbsd/makeindex + bin/i386-netbsd/mkindex + +name makeindex.i386-solaris +category Package +revision 50594 +shortdesc i386-solaris files of makeindex +containersize 45696 +containerchecksum 6f22a9a0ca409fa695bbc640b62d2b65fb6a2f1c09ef1c41bb30162214c00cc540ef4a2bff1f6066798005e1affa0c9944bc60e6d53f74e4ba0de159cb925cad +binfiles arch=i386-solaris size=35 + bin/i386-solaris/makeindex + bin/i386-solaris/mkindex + +name makeindex.win32 +category Package +revision 50525 +shortdesc win32 files of makeindex +containersize 18208 +containerchecksum 6105e9473fefba29667ef8f863e311f61c11e85e666b99b720b1bc59ef6842cc43347851cb837bef68932b8d4fa6b697988799ad364efd748f74f8b748043227 +binfiles arch=win32 size=21 + bin/win32/makeindex.exe + +name makeindex.x86_64-cygwin +category Package +revision 50889 +shortdesc x86_64-cygwin files of makeindex +containersize 21388 +containerchecksum 2eb8c6ac7d94e04e42d5db2e483e983f31ad0a622da8e4e5ae4a89226ef72bc193dbda0bf9a7c0cce2f2977b9690c78e61810287c9a3ca9bf2ac392c8bb03144 +binfiles arch=x86_64-cygwin size=21 + bin/x86_64-cygwin/makeindex.exe + bin/x86_64-cygwin/mkindex + +name makeindex.x86_64-darwin +category Package +revision 50594 +shortdesc x86_64-darwin files of makeindex +containersize 48548 +containerchecksum b61d361dfe4cf7f614be2221a1c0cd8f9567495fa7452bc4e8fee4cb12e81de8d28263ce85f71584de0749dff5a53821d0dadb340a7816aa91050d2252a4f107 +binfiles arch=x86_64-darwin size=36 + bin/x86_64-darwin/makeindex + bin/x86_64-darwin/mkindex + +name makeindex.x86_64-darwinlegacy +category Package +revision 50594 +shortdesc x86_64-darwinlegacy files of makeindex +containersize 46212 +containerchecksum 47c826a699eb4e40b8a029d794f9978c63a054c5abe514029928c13ec0cac6c270fc6592812c26988d450f2a9c452cc7084619978316a6d8d6b1a76ea0fda9fa +binfiles arch=x86_64-darwinlegacy size=35 + bin/x86_64-darwinlegacy/makeindex + bin/x86_64-darwinlegacy/mkindex + +name makeindex.x86_64-linux +category Package +revision 50594 +shortdesc x86_64-linux files of makeindex +containersize 49392 +containerchecksum 79943896f2dc58400bc003bb88713409522ffc2493c4b4634847bfbc8466c8ac074ef1a3772c6f2e03095bb350523838408d765f4671955c926dc2c44185d648 +binfiles arch=x86_64-linux size=37 + bin/x86_64-linux/makeindex + bin/x86_64-linux/mkindex + +name makeindex.x86_64-linuxmusl +category Package +revision 50594 +shortdesc x86_64-linuxmusl files of makeindex +containersize 51324 +containerchecksum eee54d671a774254e102a3efefd69330e25377ef657ec399928c2061ef380dcab4e463328a495ffcebe4a3b6344700f0b3914d993e04a1eb8f82b8d55774e54a +binfiles arch=x86_64-linuxmusl size=40 + bin/x86_64-linuxmusl/makeindex + bin/x86_64-linuxmusl/mkindex + +name makeindex.x86_64-solaris +category Package +revision 50594 +shortdesc x86_64-solaris files of makeindex +containersize 51328 +containerchecksum b161d95bf20bbaa47397a2981a9c1bd8eeddd04ceaa1d088c07a5bf28146201082853183a80f4d32169f840217dbb6bb098e7dd35bdfa44670fae1de9dca6680 +binfiles arch=x86_64-solaris size=39 + bin/x86_64-solaris/makeindex + bin/x86_64-solaris/mkindex + name makeplot category Package revision 15878 -shortdesc Easy plots from Matlab in LaTeX. +shortdesc Easy plots from Matlab in LaTeX relocated 1 longdesc Existing approaches to create EPS files from Matlab (laprint, longdesc mma2ltx, print -eps, etc.) aren't satisfactory; makeplot aims longdesc to resolve this problem. Makeplot is a LaTeX package that uses longdesc the pstricks pst-plot functions to plot data that it takes from longdesc Matlab output files. -runfiles size=5 - RELOC/tex/latex/makeplot/makeplot.sty +containersize 4660 +containerchecksum 366e9ec4ce551e17ae6e77f068b0d2fb46582c033eb27781cd620a87731eba744212db8dde9ce8e50318f280dfe31e61a344ab4232c3bf26040dd7a2290d4fef +doccontainersize 129276 +doccontainerchecksum 9aa863af450a66201e7cb3d3a58d9248430aa26cca9b50de4c71c350314ac9c0f6fe54e5eb1b37917a75030a60ca18102933f154bdeb7831ca02bdaa65b3a6bf docfiles size=40 - RELOC/doc/latex/makeplot/README + RELOC/doc/latex/makeplot/README details="Readme" RELOC/doc/latex/makeplot/data1.mat RELOC/doc/latex/makeplot/data2.mat - RELOC/doc/latex/makeplot/makeplot.pdf + RELOC/doc/latex/makeplot/makeplot.pdf details="Package documentation" RELOC/doc/latex/makeplot/mptest.tex +srccontainersize 11680 +srccontainerchecksum b4f0e0de72c005124b7e83f214111931ca2ba03ae5f1270b5d10ff790c6fd84cb02950aed7377deae2c432de55b7822ddc68b9911b608b0460c7800f375fcecb srcfiles size=12 RELOC/source/latex/makeplot/makeplot.dtx RELOC/source/latex/makeplot/makeplot.ins +runfiles size=5 + RELOC/tex/latex/makeplot/makeplot.sty catalogue-ctan /graphics/pstricks/contrib/makeplot -catalogue-date 2013-07-15 20:25:07 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics graphics-plot catalogue-version 1.0.6 +name maker +category Package +revision 44823 +shortdesc Include Arduino or Processing code in LaTeX documents +relocated 1 +longdesc The first version of the package allows to include Arduino or +longdesc Processing code using three different forms: writing the code +longdesc directly in the LaTeX document writing Arduino or Processing +longdesc commands in line with the text calling to Arduino or Processing +longdesc files All these options support the syntax highlighting of the +longdesc oficial IDE. +containersize 4336 +containerchecksum d8cefc4d4389e4024c448400f02bc0ef0a21146c1d079f804f5e102ee3f2977be7fdd2c1011672b70192af48693ab1fcc38bc1d6f7711fce217792e82f0e5e54 +doccontainersize 692 +doccontainerchecksum fb7f68b4c48de87e6c1e380525a998bd1cf7578c2e4a51551b5ab4909481e66faf38f0a74083f25954b5d05e9eda12e56734351fab063f80955abf24eadc0e21 +docfiles size=2 + RELOC/doc/latex/maker/README details="Readme" + RELOC/doc/latex/maker/README.TEXLIVE +runfiles size=3 + RELOC/tex/latex/maker/maker.sty +catalogue-contact-bugs https://github.com/piratax007/maker_LaTeX_package +catalogue-contact-home https://github.com/piratax007/maker_LaTeX_package +catalogue-contact-repository https://github.com/piratax007/maker_LaTeX_package +catalogue-ctan /macros/latex/contrib/maker +catalogue-date 2017-07-19 05:12:43 +0200 +catalogue-license lppl1.3c +catalogue-topics listing synt-hlt +catalogue-version 1.0 + name makeshape category Package revision 28973 -shortdesc Declare new PGF shapes. +shortdesc Declare new PGF shapes relocated 1 longdesc The package simplifies production of custom shapes with correct longdesc anchor borders, in PGF/TikZ; the only requirement is a PGF path longdesc describing the anchor border. The package also provides macros longdesc that help with the management of shape parameters, and the longdesc definition of anchor points. -runfiles size=2 - RELOC/tex/latex/makeshape/makeshape.sty +containersize 1888 +containerchecksum b13358696b16b41a69e5a207fcfb717b417ec191ae9f6ad4408422b1ce99c3785a3328cf9bd2e87ade3ede4998ba76ddb2f640e06ef5ce88172942e4d0cf2bfe +doccontainersize 750376 +doccontainerchecksum a249c636b414203e75225af611173add2e90af306d4a78c7d865fdd0e76b23637fb3b8eb41f127905bbd0065cc7b941d3d26e3ee73b9aad56e05ed0a44f67d57 docfiles size=220 - RELOC/doc/latex/makeshape/README - RELOC/doc/latex/makeshape/makeshape.pdf - RELOC/doc/latex/makeshape/ontesting.pdf + RELOC/doc/latex/makeshape/README details="Readme" + RELOC/doc/latex/makeshape/makeshape.pdf details="Package documentation" + RELOC/doc/latex/makeshape/ontesting.pdf details="Package test procedure" RELOC/doc/latex/makeshape/sampleshape.tex RELOC/doc/latex/makeshape/testsample.pdf RELOC/doc/latex/makeshape/testsample.tex +srccontainersize 18928 +srccontainerchecksum 43886cdf9c2da20943bcf0403e05fe19c035cd3d49af9afa52212c376a2ecae9ad963a24c257b70e3dcee448f42ee1464e63dcb0c5addd7018234658867d3179 srcfiles size=27 RELOC/source/latex/makeshape/makeshape.dtx RELOC/source/latex/makeshape/makeshape.ins RELOC/source/latex/makeshape/ontesting.dtx +runfiles size=2 + RELOC/tex/latex/makeshape/makeshape.sty catalogue-ctan /graphics/pgf/contrib/makeshape -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics pgf-tikz catalogue-version 2.1 name mandi category Package -revision 35931 -shortdesc Macros for introductory physics and astronomy. +revision 49720 +shortdesc Macros for introductory physics and astronomy relocated 1 longdesc The package contains commands for students and teachers of longdesc introductory physics. Commands for physical quantities longdesc intelligently handle SI units so the user need not do so. There longdesc are other features that should make LaTeX easy for introductory longdesc physics students. -runfiles size=20 - RELOC/tex/latex/mandi/mandi.sty -docfiles size=277 - RELOC/doc/latex/mandi/README - RELOC/doc/latex/mandi/mandi.pdf +containersize 15460 +containerchecksum a22c6cd667b7a256cdb0d1f975d214890811ad047d3eddc96e1289fd22a8ce9035183c5c1f6a876d7bab85bf8bba9626d36c2edbc8abbd060c0ebafca6b84932 +doccontainersize 1321444 +doccontainerchecksum 60cc9d6215525424b3e05af173a533d3781d1eed50d1e89e3d31f80274ab2b91033d45254eb419ec9a9a4e7553f50ac9c737ac82daea8dfbf29ba077d69ce5b2 +docfiles size=331 + RELOC/doc/latex/mandi/README details="Readme" + RELOC/doc/latex/mandi/mandi.pdf details="Package documentation" RELOC/doc/latex/mandi/vdemo.py -srcfiles size=66 +srccontainersize 49568 +srccontainerchecksum 2b05284ec86ac90ae6e136c96b2eeb0215ce3cb7d9b9f85aa14f047c596e7b47c8c618ec5d4ee0a99d624b737fbc8a3f026895bc9a8b2d465fb3dd7fa2ea806e +srcfiles size=86 RELOC/source/latex/mandi/mandi.dtx RELOC/source/latex/mandi/mandi.ins +runfiles size=24 + RELOC/tex/latex/mandi/mandi.sty +catalogue-also siunitx catalogue-ctan /macros/latex/contrib/mandi -catalogue-date 2015-01-05 12:59:16 +0100 +catalogue-date 2019-01-14 21:28:49 +0100 catalogue-license lppl1.3 -catalogue-version 2.4.0 - -name manfnt-font -category Package -revision 35799 -relocated 1 -execute addMixedMap manfnt.map -runfiles size=13 - RELOC/fonts/afm/hoekwater/manfnt-font/manfnt.afm - RELOC/fonts/map/dvips/manfnt-font/manfnt.map - RELOC/fonts/type1/hoekwater/manfnt-font/manfnt.pfb - RELOC/fonts/type1/hoekwater/manfnt-font/manfnt.pfm +catalogue-topics physics +catalogue-version 2.7.5 name manfnt category Package -revision 35799 -shortdesc LaTeX support for the TeX book symbols. +revision 42428 +shortdesc LaTeX support for the TeX book symbols relocated 1 longdesc A LaTeX package for easy access to the symbols of the Knuth's longdesc 'manual' font, such as the Dangerous Bend and Manual-errata longdesc Arrow. -runfiles size=1 - RELOC/tex/latex/manfnt/manfnt.sty +containersize 1440 +containerchecksum 6d4282db5f5baf92e6dfcde9b8a1e78027a5d6bef4e27b8ff35741fd8bcb35ca0a0d4e3db996ffc9a2e50868b1f849f961a4d0179aee0f580b33d79972656d4c +srccontainersize 6648 +srccontainerchecksum 1f8b2acaf18fd350ee0359acb4771245eb3d5d750f92a637745ca01f4100be9526ea323ced82c6a6ff71eb6b9dfdefa2c44b21f5ff9c15f3f2fc68536f5f8ad3 srcfiles size=7 RELOC/source/latex/manfnt/manfnt.dtx RELOC/source/latex/manfnt/manfnt.ins +runfiles size=1 + RELOC/tex/latex/manfnt/manfnt.sty catalogue-ctan /macros/latex/contrib/manfnt -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font-supp + +name manfnt-font +category Package +revision 45777 +catalogue manual +shortdesc Knuth's "manual" fonts +relocated 1 +longdesc Metafont (by Donald Knuth) and Adobe Type 1 (by Taco Hoekwater) +longdesc versions of the font containing the odd symbols Knuth uses in +longdesc his books. LaTeX support is available using the manfnt package +execute addMixedMap manfnt.map +containersize 25916 +containerchecksum fe7ddf667368990f988005a44013aab80af9c097f4f824f717d84fddfd61dfc658f507d5b1bf8f7c076be1bd5a4363f117b388ecd39b0ce2b0ee5fc8aa83fd4c +runfiles size=13 + RELOC/fonts/afm/hoekwater/manfnt-font/manfnt.afm + RELOC/fonts/map/dvips/manfnt-font/manfnt.map + RELOC/fonts/type1/hoekwater/manfnt-font/manfnt.pfb + RELOC/fonts/type1/hoekwater/manfnt-font/manfnt.pfm +catalogue-ctan /fonts/manual +catalogue-date 2016-11-05 08:51:03 +0100 +catalogue-license knuth +catalogue-topics font font-mf font-type1 font-symbol name manuscript category Package revision 36110 -shortdesc Emulate look of a document typed on a typewriter. +shortdesc Emulate look of a document typed on a typewriter relocated 1 longdesc This package is designed for those who have to submit longdesc dissertations, etc., to institutions that still maintain the longdesc typewriter is the summit of non-professional printing. -runfiles size=1 - RELOC/tex/latex/manuscript/manuscript.sty +containersize 1732 +containerchecksum 24e4c800ba6f5089ae76b6d444c81689fa696cd2fd9e62281171d771f8f9f065320b53b058cc6adf836f36d378f6f7fece98e8c09e2b655ecaa8884067bd696a +doccontainersize 53188 +doccontainerchecksum baaa102f870cc307fe96b583f74c19c7ef2c7649f01fe7985c3dcd331539bc9d839f6e34aa238354b6932d14638b77e83b7bf8e62296c36fc2dba18f776271a6 docfiles size=15 RELOC/doc/latex/manuscript/Makefile - RELOC/doc/latex/manuscript/README - RELOC/doc/latex/manuscript/manuscript.pdf + RELOC/doc/latex/manuscript/README details="Readme" + RELOC/doc/latex/manuscript/manuscript.pdf details="Package documentation" +srccontainersize 5636 +srccontainerchecksum 0cc418f2b5538035123d81f6702031d97bf99fa6733d491b306981ae698f3cad9bd121a20410329b8428b5c14749e825052544cdc52b9c8457d7e302dfc64888 srcfiles size=6 RELOC/source/latex/manuscript/manuscript.drv RELOC/source/latex/manuscript/manuscript.dtx RELOC/source/latex/manuscript/manuscript.ins +runfiles size=1 + RELOC/tex/latex/manuscript/manuscript.sty +catalogue-contact-repository https://gitlab.com/mcepl/manuscript catalogue-ctan /macros/latex/contrib/manuscript -catalogue-date 2015-01-23 06:27:26 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl +catalogue-topics typesetting catalogue-version 1.7 +name manyind +category Package +revision 49874 +shortdesc Provides support for many indexes +relocated 1 +longdesc This package provides support for many indexes, leaving all the +longdesc bookkeeping to LaTeX and makeindex. No extra programs or files +longdesc are needed. One runs latex and makeindex as if there is just +longdesc one index. In the main file one puts commands like +longdesc \setindex{main} to steer the flow. Some features of makeindex +longdesc may no longer work. +containersize 2900 +containerchecksum e08291b4cb0d2c18e6b97cf6a287d7cf5b49eb312138910185845b6c0a075981a15548de2dded6f597605aef885e736c17b5306328574473aa56f8f11b6b8288 +doccontainersize 157580 +doccontainerchecksum e8d9c687c1b3525c5e4d218a380781f1b2e7d512b053a583b00c97f0b7eefa1202dea310454065194039841bf8763acc2b0c4712ca8d5e9d31b57cf03c50b928 +docfiles size=43 + RELOC/doc/latex/manyind/README.md details="Readme" + RELOC/doc/latex/manyind/mind.html details="Package documentation" + RELOC/doc/latex/manyind/mindsample.pdf + RELOC/doc/latex/manyind/mindsample.tex +runfiles size=2 + RELOC/tex/latex/manyind/manyind.sty +catalogue-also multind splitindex +catalogue-contact-home https://www.staff.science.uu.nl/~kalle101/mind.html +catalogue-ctan /macros/latex/contrib/manyind +catalogue-date 2019-01-30 10:53:39 +0100 +catalogue-license lppl1.2 +catalogue-topics index-multi + +name marcellus +category Package +revision 51088 +shortdesc Marcellus fonts with LaTeX support +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Marcellus family of fonts, designed by Brian J. +longdesc Bonislawsky. Marcellus is a flared-serif family, inspired by +longdesc classic Roman inscription letterforms. There is currently just +longdesc a regular weight and small-caps. The regular weight will be +longdesc silently substituted for bold. +execute addMap marcellus.map +containersize 181744 +containerchecksum 674625d46f3dba4c7361a151089c65a53137ff3c747beae04cb5e5e2fd41ff4a1de68930d3d07ba296ca03a99467252cba25d90bbb7204f5b40b8b5070acfc81 +doccontainersize 15840 +doccontainerchecksum 73013a182ee587695dacb669d5133fe5d62f40b20f2f89ca5a235a9dfb231b51b532698c2eba03573bdd961cac3bb5f8c4d81093f1f789359ebdaf84dc5d4a19 +docfiles size=8 + RELOC/doc/fonts/marcellus/OFL.txt + RELOC/doc/fonts/marcellus/README details="Readme" + RELOC/doc/fonts/marcellus/marcellus-samples.pdf details="Font samples" + RELOC/doc/fonts/marcellus/marcellus-samples.tex +runfiles size=127 + RELOC/fonts/enc/dvips/marcellus/mrcl_4cvize.enc + RELOC/fonts/enc/dvips/marcellus/mrcl_5ago63.enc + RELOC/fonts/enc/dvips/marcellus/mrcl_5az7w7.enc + RELOC/fonts/enc/dvips/marcellus/mrcl_cvodtw.enc + RELOC/fonts/enc/dvips/marcellus/mrcl_dfyae6.enc + RELOC/fonts/enc/dvips/marcellus/mrcl_hxcgcn.enc + RELOC/fonts/enc/dvips/marcellus/mrcl_l63c5y.enc + RELOC/fonts/enc/dvips/marcellus/mrcl_lo2l42.enc + RELOC/fonts/enc/dvips/marcellus/mrcl_mqz6jr.enc + RELOC/fonts/enc/dvips/marcellus/mrcl_oyecj6.enc + RELOC/fonts/enc/dvips/marcellus/mrcl_pp6sje.enc + RELOC/fonts/enc/dvips/marcellus/mrcl_rfafok.enc + RELOC/fonts/enc/dvips/marcellus/mrcl_rwr7kk.enc + RELOC/fonts/enc/dvips/marcellus/mrcl_tzgqbn.enc + RELOC/fonts/map/dvips/marcellus/marcellus.map + RELOC/fonts/tfm/public/marcellus/Marcellus-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/marcellus/Marcellus-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/marcellus/Marcellus-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/marcellus/Marcellus-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/marcellus/Marcellus-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/marcellus/Marcellus-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/marcellus/Marcellus-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/marcellus/Marcellus-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/marcellus/Marcellus-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/marcellus/Marcellus-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/marcellus/Marcellus-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/marcellus/Marcellus-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/marcellus/MarcellusSmallCaps-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/marcellus/MarcellusSmallCaps-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/marcellus/MarcellusSmallCaps-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/marcellus/MarcellusSmallCaps-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/marcellus/MarcellusSmallCaps-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/marcellus/MarcellusSmallCaps-lf-sc-t1.tfm + RELOC/fonts/tfm/public/marcellus/MarcellusSmallCaps-lf-sc-ts1--base.tfm + RELOC/fonts/tfm/public/marcellus/MarcellusSmallCaps-lf-sc-ts1.tfm + RELOC/fonts/tfm/public/marcellus/MarcellusSmallCaps-sup-sc-ly1--base.tfm + RELOC/fonts/tfm/public/marcellus/MarcellusSmallCaps-sup-sc-ly1.tfm + RELOC/fonts/tfm/public/marcellus/MarcellusSmallCaps-sup-sc-ot1--base.tfm + RELOC/fonts/tfm/public/marcellus/MarcellusSmallCaps-sup-sc-ot1.tfm + RELOC/fonts/tfm/public/marcellus/MarcellusSmallCaps-sup-sc-t1--base.tfm + RELOC/fonts/tfm/public/marcellus/MarcellusSmallCaps-sup-sc-t1.tfm + RELOC/fonts/truetype/public/marcellus/Marcellus-Regular.ttf + RELOC/fonts/truetype/public/marcellus/MarcellusSmallCaps.ttf + RELOC/fonts/type1/public/marcellus/Marcellus-Regular.pfb + RELOC/fonts/type1/public/marcellus/MarcellusSmallCaps.pfb + RELOC/fonts/vf/public/marcellus/Marcellus-Regular-lf-ly1.vf + RELOC/fonts/vf/public/marcellus/Marcellus-Regular-lf-t1.vf + RELOC/fonts/vf/public/marcellus/Marcellus-Regular-lf-ts1.vf + RELOC/fonts/vf/public/marcellus/Marcellus-Regular-sup-ly1.vf + RELOC/fonts/vf/public/marcellus/Marcellus-Regular-sup-t1.vf + RELOC/fonts/vf/public/marcellus/MarcellusSmallCaps-lf-sc-ly1.vf + RELOC/fonts/vf/public/marcellus/MarcellusSmallCaps-lf-sc-ot1.vf + RELOC/fonts/vf/public/marcellus/MarcellusSmallCaps-lf-sc-t1.vf + RELOC/fonts/vf/public/marcellus/MarcellusSmallCaps-lf-sc-ts1.vf + RELOC/fonts/vf/public/marcellus/MarcellusSmallCaps-sup-sc-ly1.vf + RELOC/fonts/vf/public/marcellus/MarcellusSmallCaps-sup-sc-ot1.vf + RELOC/fonts/vf/public/marcellus/MarcellusSmallCaps-sup-sc-t1.vf + RELOC/tex/latex/marcellus/LY1Marcellus-LF.fd + RELOC/tex/latex/marcellus/LY1Marcellus-Sup.fd + RELOC/tex/latex/marcellus/OT1Marcellus-LF.fd + RELOC/tex/latex/marcellus/OT1Marcellus-Sup.fd + RELOC/tex/latex/marcellus/T1Marcellus-LF.fd + RELOC/tex/latex/marcellus/T1Marcellus-Sup.fd + RELOC/tex/latex/marcellus/TS1Marcellus-LF.fd + RELOC/tex/latex/marcellus/marcellus.sty +catalogue-contact-home https://fonts.google.com/specimen/Marcellus +catalogue-ctan /fonts/marcellus +catalogue-date 2019-05-11 20:57:14 +0200 +catalogue-license ofllppl +catalogue-topics font font-body font-proportional font-ttf font-type1 font-t1enc + name margbib category Package revision 15878 -shortdesc Display bibitem tags in the margins. +shortdesc Display bibitem tags in the margins relocated 1 longdesc The package redefines the 'thebibliography' environment to longdesc place the citation key into the margin. -runfiles size=1 - RELOC/tex/latex/margbib/margbib.sty +containersize 1524 +containerchecksum 7f734e46e72badf838397305ca926f4589b9aba7a0e91e21313f6a733f7cd09db959f30e3694490633713b1a77c8d11a521b2892722496fb162d7c25c7b8641a +doccontainersize 188416 +doccontainerchecksum c4f93e442d1337cb5a1825b4f7e6fe5ae0a759c32837a896852ec5592b3c31a9c473789db35c147b67360ed662b1e9ae42a59fed446dde234b174f65e358662c docfiles size=49 - RELOC/doc/latex/margbib/margbib.pdf + RELOC/doc/latex/margbib/margbib.pdf details="Package documentation" +srccontainersize 4220 +srccontainerchecksum 7a9aecd832d34d1225606a905558f5ae33befaaf20f8fa1e6e5263850d2c72273be5a4a05e96d15225b7a2853212e3de28455c856c17e42838406862cadcc344 srcfiles size=3 RELOC/source/latex/margbib/margbib.dtx RELOC/source/latex/margbib/margbib.ins +runfiles size=1 + RELOC/tex/latex/margbib/margbib.sty catalogue-ctan /macros/latex/contrib/margbib -catalogue-date 2012-04-30 16:16:20 +0200 +catalogue-date 2018-09-14 05:26:10 +0200 catalogue-license gpl +catalogue-topics cite-supp marginal catalogue-version 1.0c +name marginfit +category Package +revision 48281 +shortdesc Improved margin notes +relocated 1 +longdesc This package fixes various bugs with the margin paragraph +longdesc implementation of LaTeX. Those bugs include margin notes that +longdesc are attached to the wrong side as well as those that stick out +longdesc of the bottom of the page. This package provides a drop-in +longdesc replacement solution. +containersize 1888 +containerchecksum dafe223cc6120beac7ce419c5f5eb72ece9be2a21992e829a8015f7e05ca22c40d5196d26d21d8febf3459bfa58c7defc797ce7bd4ee1e3dda28761594240b3e +doccontainersize 215180 +doccontainerchecksum fba2ff6febb4acd0dad443221c6146fc2b3818c4948827b827fe2ff2df82f4e2843520f1f4cd41fd64900012d64d973d9b649e65b1c5ee4e74757344ab423dc0 +docfiles size=55 + RELOC/doc/latex/marginfit/Makefile + RELOC/doc/latex/marginfit/README details="Readme" + RELOC/doc/latex/marginfit/marginfit.pdf details="Package documentation" +srccontainersize 5788 +srccontainerchecksum 89892d83570cad7c46b5fafcf8a7d87b660d898afde97c2fed03f82d3cbdcea9bd11baecd19d3aa958305cac0d9f7163e00fe262a0738e7f89b62f7d1bdf0df8 +srcfiles size=7 + RELOC/source/latex/marginfit/marginfit.dtx + RELOC/source/latex/marginfit/marginfit.ins +runfiles size=2 + RELOC/tex/latex/marginfit/marginfit.sty +catalogue-ctan /macros/latex/contrib/marginfit +catalogue-date 2018-07-26 18:47:07 +0200 +catalogue-license lppl1.3 +catalogue-topics marginal +catalogue-version 1.1 + name marginfix category Package revision 31598 -shortdesc Patch \marginpar to avoid overfull margins. +shortdesc Patch \marginpar to avoid overfull margins relocated 1 longdesc Authors using LaTeX to typeset books with significant margin longdesc material often run into the problem of long notes running off @@ -103380,45 +170793,111 @@ longdesc short textual notes, and standard marginpars cannot be mixed longdesc with sidebars. This package implements a solution to make longdesc marginpars "just work" by keeping a list of floating inserts longdesc and arranging them intelligently in the output routine. -runfiles size=4 - RELOC/tex/latex/marginfix/marginfix.sty +containersize 3864 +containerchecksum 9b9649077a93599c653d0e2d46e6814eb378ee8d2b531e2b810fcf0a6b698899bd13041d3b7f4aca5039bced2eff4789ad21587ccc596f70a6105c2efc89ba59 +doccontainersize 243796 +doccontainerchecksum fe547fa6bef7d2417447e4261fed0b43d2f88c944c499a55c5959a2e7d9e169e80a06c9e191edd76f1ce7ab4da9834b8b216f0881d93095e9c41ba5b7741d845 docfiles size=66 - RELOC/doc/latex/marginfix/README - RELOC/doc/latex/marginfix/marginfix.pdf + RELOC/doc/latex/marginfix/README details="Readme" + RELOC/doc/latex/marginfix/marginfix.pdf details="Package documentation" +srccontainersize 18312 +srccontainerchecksum fe914d9e7094f64f3d94969691e02950fc10a69c7237d5ea42158a1ffbc983cce768873ea734d1def8562ab70294af0f13bb1b9cd80a2b1526394f2e151c3b31 srcfiles size=17 RELOC/source/latex/marginfix/marginfix.dtx RELOC/source/latex/marginfix/marginfix.ins +runfiles size=4 + RELOC/tex/latex/marginfix/marginfix.sty catalogue-ctan /macros/latex/contrib/marginfix -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics marginal catalogue-version 1.1 name marginnote category Package -revision 25880 +revision 48383 shortdesc Notes in the margin, even where \marginpar fails relocated 1 longdesc This package provides the command \marginnote that may be used longdesc instead of \marginpar at almost every place where \marginpar longdesc cannot be used, e.g., inside floats, footnotes, or in frames longdesc made with the framed package. -runfiles size=4 - RELOC/tex/latex/marginnote/marginnote.sty -docfiles size=71 - RELOC/doc/latex/marginnote/marginnote.pdf +containersize 3356 +containerchecksum db05524c613df90a75c6545dbd19bccb955d0b3c2c0312686e21ed42e4802d47105726b0e092d178bf484f1585331bf71c604c2d9f039065872e218357d0d07e +doccontainersize 317412 +doccontainerchecksum a9d6a3d7f8de332a5f77d086d552caaf91e5ab4a71288548d6d7ac3318cde208d948a668ac554d2a8f510f984dc9943bcfd0e07a70a2ee00c9bdadd3e148f550 +docfiles size=79 + RELOC/doc/latex/marginnote/README.txt details="Package README" + RELOC/doc/latex/marginnote/marginnote.pdf details="Package documentation" +srccontainersize 10216 +srccontainerchecksum fccae0e44e24059f6ff2cb61b2d52d69ece44287b4183733b37b157ff700f6f251d86d4344c3a10c1417155d6e16ff4105a77ce01a2468e5ba160ca79e25b064 srcfiles size=10 - RELOC/source/latex/marginnote/README RELOC/source/latex/marginnote/marginnote.dtx - RELOC/source/latex/marginnote/marginnote.ins +runfiles size=4 + RELOC/tex/latex/marginnote/marginnote.sty +catalogue-contact-home https://komascript.de/marginnote catalogue-ctan /macros/latex/contrib/marginnote -catalogue-date 2012-04-10 20:26:14 +0200 -catalogue-license lppl -catalogue-version v1.1i +catalogue-date 2018-08-09 12:16:31 +0200 +catalogue-license lppl1.3c +catalogue-topics notes +catalogue-version 1.4b + +name markdown +category Package +revision 50906 +shortdesc A package for converting and rendering markdown documents inside TeX +relocated 1 +longdesc The package provides facilities for the conversion of markdown +longdesc markup to plain TeX. These are provided both in form of a Lua +longdesc module and in form of plain TeX, LaTeX, and ConTeXt macro +longdesc packages that enable the direct inclusion of markdown documents +longdesc inside TeX documents. Architecturally, the package consists of +longdesc the Lunamark Lua module by John MacFarlane, which was slimmed +longdesc down and rewritten for the needs of the package. Lunamark +longdesc provides speedy markdown parsing for the rest of the package. +longdesc On top of Lunamark sits code for the plain TeX, LaTeX, and +longdesc ConTeXt formats by Vit Novotny. +containersize 31404 +containerchecksum c17f37998b3623bdd94f074d4f47fc871e8cbf3ffe961d1933ed2113eb90219cd74105d5e35675597376b64a854e89eef07c629335079a9b131f827c6839713b +doccontainersize 453684 +doccontainerchecksum 34562bf94ae2a4c9dc415b8c4213b6f81d1fab8e92d1b6da057997c6e32fee652fbe7245bc2c7b9bc188bcd9d0b64c7a01eb1795874df473833730a551980cd6 +docfiles size=237 + RELOC/doc/context/third/markdown/examples/context.tex + RELOC/doc/context/third/markdown/examples/example.md + RELOC/doc/context/third/markdown/examples/scientists.csv + RELOC/doc/generic/markdown/markdown.css + RELOC/doc/generic/markdown/markdown.html details="User Manual" + RELOC/doc/generic/markdown/markdown.md + RELOC/doc/generic/markdown/markdown.pdf details="Technical documentation" + RELOC/doc/latex/markdown/examples/example.md + RELOC/doc/latex/markdown/examples/latex.tex + RELOC/doc/latex/markdown/examples/scientists.csv +srccontainersize 67080 +srccontainerchecksum b90130e216957b4612283e3316192d3e0118740a9d43cb205bc429e008832054a23818eff2bcd3b23f12a3f27fe3a72f08e361b15c84cd6efd13173909c61ad6 +srcfiles size=115 + RELOC/source/generic/markdown/docstrip.cfg + RELOC/source/generic/markdown/markdown.dtx + RELOC/source/generic/markdown/markdown.ins +runfiles size=50 + RELOC/scripts/markdown/markdown-cli.lua + RELOC/tex/context/third/markdown/t-markdown.tex + RELOC/tex/generic/markdown/markdown.tex + RELOC/tex/latex/markdown/markdown.sty + RELOC/tex/luatex/markdown/markdown.lua +catalogue-contact-announce https://github.com/Witiko/markdown/releases +catalogue-contact-bugs https://github.com/Witiko/markdown/issues +catalogue-contact-development https://github.com/Witiko/markdown/pulls +catalogue-contact-repository https://github.com/Witiko/markdown +catalogue-ctan /macros/generic/markdown +catalogue-date 2019-04-30 08:22:33 +0200 +catalogue-license lppl1.3 +catalogue-topics markup +catalogue-version 2.8.1 name marvosym category Package revision 29349 -shortdesc Martin Vogel's Symbols (marvosym) font. +shortdesc Martin Vogel's Symbols (marvosym) font relocated 1 longdesc Martin Vogel's Symbol font (marvosym) contains the Euro longdesc currency symbol as defined by the European commission, along @@ -103429,1631 +170908,285 @@ longdesc package contains both the original TrueType font and the longdesc derived Type 1 font, together with support files for TeX longdesc (LaTeX). execute addMap marvosym.map -runfiles size=51 - RELOC/fonts/afm/public/marvosym/marvosym.afm - RELOC/fonts/map/dvips/marvosym/marvosym.map - RELOC/fonts/tfm/public/marvosym/umvs.tfm - RELOC/fonts/truetype/public/marvosym/marvosym.ttf - RELOC/fonts/type1/public/marvosym/marvosym.pfb - RELOC/tex/latex/marvosym/marvosym.sty - RELOC/tex/latex/marvosym/umvs.fd +containersize 133476 +containerchecksum 64093dc5de012c6a50762ef34001ff2305e6b59b667ac7b1ef72cc53f8b0ed3852b4d307a8d421ece996e78f2e32c8871038b6b66659b0866dbdc536445dc7a3 +doccontainersize 426608 +doccontainerchecksum d6f72ee7ed64404acce5c37c216a7e23193f2053c18910d80fc6d5fde73ba86c07045102488f17f4cbeb9e1d148567973713bb4d9ce2cdd3cb166936ba5623e1 docfiles size=127 RELOC/doc/fonts/marvosym/FONTLOG.txt RELOC/doc/fonts/marvosym/Makefile RELOC/doc/fonts/marvosym/OFL-FAQ.txt RELOC/doc/fonts/marvosym/OFL.txt - RELOC/doc/fonts/marvosym/README - RELOC/doc/fonts/marvosym/marvodoc.pdf + RELOC/doc/fonts/marvosym/README details="README" + RELOC/doc/fonts/marvosym/marvodoc.pdf details="Font tables, etc." RELOC/doc/fonts/marvosym/marvodoc.tex RELOC/doc/fonts/marvosym/marvosym-doc.pdf RELOC/doc/fonts/marvosym/marvosym-doc.tex +srccontainersize 1256 +srccontainerchecksum c28a69567c593160c7d04b4fc0fe7f0106db12ab588d3f02139e55ad99a1b4e33f1bba92f5af103b6f2a7e720d243b919d1f39f28031ad95dde3ae7e723f6e36 srcfiles size=3 RELOC/source/fonts/marvosym/generate_marvosym_derivs.sh RELOC/source/fonts/marvosym/patch_marvosym_afm.sed RELOC/source/fonts/marvosym/patch_marvosym_pfb.sed +runfiles size=51 + RELOC/fonts/afm/public/marvosym/marvosym.afm + RELOC/fonts/map/dvips/marvosym/marvosym.map + RELOC/fonts/tfm/public/marvosym/umvs.tfm + RELOC/fonts/truetype/public/marvosym/marvosym.ttf + RELOC/fonts/type1/public/marvosym/marvosym.pfb + RELOC/tex/latex/marvosym/marvosym.sty + RELOC/tex/latex/marvosym/umvs.fd +catalogue-contact-home http://www.marvosym.de catalogue-ctan /fonts/marvosym -catalogue-date 2014-05-14 00:24:01 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license ofl +catalogue-topics font font-mf font-ttf font-symbol font-supp catalogue-version 2.2a +name matc3 +category Package +revision 29845 +shortdesc Commands for MatematicaC3 textbooks +relocated 1 +longdesc The package provides support for the Matematica C3 project to +longdesc produce free mathematical text books for use in Italian high +longdesc schools. +containersize 1692 +containerchecksum 19996040ec55b000d84637070a21fa9fc216eb3cf8ec75f7c408925e0d7a716a7dca0eff4887778f666be3e857b589cd033c53d3859f84226416ad069720f7be +doccontainersize 438856 +doccontainerchecksum 68f65e9171eb03fed79dc9bffadb725dc7324fd9696ff9f6f0a13233327f47474477180c6e17b5bbb9ee2ee02996ebd6213b43eeb7e9b7eb7dca2caac2db470d +docfiles size=109 + RELOC/doc/latex/matc3/Makefile + RELOC/doc/latex/matc3/README details="Readme" + RELOC/doc/latex/matc3/matc3.pdf details="Package documentation (in Italian)" language="it" +srccontainersize 5928 +srccontainerchecksum efc84a936de1ab0905e94937d00c3ab2f371412975786c3816cb3b8fdf98482943c1f18a08422ea95d7a7bda6607ffd1dcb6b5c28101c7f5348260a088cf1233 +srcfiles size=7 + RELOC/source/latex/matc3/matc3.dtx + RELOC/source/latex/matc3/matc3.ins +runfiles size=2 + RELOC/tex/latex/matc3/matc3.sty +catalogue-also matc3mem +catalogue-ctan /macros/latex/contrib/matc3 +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 1.0.1 + name matc3mem category Package revision 35773 -shortdesc Class for MatematicaC3 textbooks. +shortdesc Class for MatematicaC3 textbooks relocated 1 longdesc The class is a development of memoir, with additions longdesc (specifically, mathematical extensions) that provide support longdesc for writing the books for the Matematica C3 project to produce longdesc free mathematical textbooks for use in Italian high schools. -runfiles size=2 - RELOC/tex/latex/matc3mem/matc3mem.cls +containersize 2508 +containerchecksum e0736f75126aca9506e1cfcbd321645e731e2dec7f3ae2c045201dd8c729044689e358724b77ef9d99aaf3ff742802857d488e3f2f78e781b64af711c7fdce12 +doccontainersize 390784 +doccontainerchecksum 2038d84ab20c6763163769b62a35fa4e95dbd3e76b0e2cf1c4a25694488ddb5b9be8b40f81a1702600d918618455bcae46d22fa101a1a95978b996714de41dfe docfiles size=98 RELOC/doc/latex/matc3mem/Makefile - RELOC/doc/latex/matc3mem/README - RELOC/doc/latex/matc3mem/matc3mem.pdf + RELOC/doc/latex/matc3mem/README details="Readme" + RELOC/doc/latex/matc3mem/matc3mem.pdf details="Package documentation (in Italian)" language="it" +srccontainersize 7308 +srccontainerchecksum cd8ad4afa288ca175c06df2de15cb7ae048f3b69ff6b96225f134c022efaaa5223fdba1b2b80f75ad3ab6e3ac79d38b41794cdbfecce1ac6ffd2ed47cfb69649 srcfiles size=7 RELOC/source/latex/matc3mem/matc3mem.dtx RELOC/source/latex/matc3mem/matc3mem.ins +runfiles size=2 + RELOC/tex/latex/matc3mem/matc3mem.cls +catalogue-also matc3 catalogue-ctan /macros/latex/contrib/matc3mem -catalogue-date 2014-12-09 15:59:41 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics maths catalogue-version 1.1 -name matc3 -category Package -revision 29845 -shortdesc Commands for MatematicaC3 textbooks. -relocated 1 -longdesc The package provides support for the Matematica C3 project to -longdesc produce free mathematical text books for use in Italian high -longdesc schools. -runfiles size=2 - RELOC/tex/latex/matc3/matc3.sty -docfiles size=109 - RELOC/doc/latex/matc3/Makefile - RELOC/doc/latex/matc3/README - RELOC/doc/latex/matc3/matc3.pdf -srcfiles size=7 - RELOC/source/latex/matc3/matc3.dtx - RELOC/source/latex/matc3/matc3.ins -catalogue-ctan /macros/latex/contrib/matc3 -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0.1 - name match_parens category Package revision 36270 -shortdesc Find mismatches of parentheses, braces, (angle) brackets, in texts. +shortdesc Find mismatches of parentheses, braces, (angle) brackets, in texts longdesc Mismatches of parentheses, braces, (angle) brackets, especially longdesc in TeX sources which may be rich in those, may be difficult to -longdesc trace. This little script helps you by writing your text to -longdesc standard output, after adding a left margin to your text, which -longdesc will normally be almost empty, but will clearly show any +longdesc trace. This little Ruby script helps you by writing your text +longdesc to standard output, after adding a left margin to your text, +longdesc which will normally be almost empty, but will clearly show any longdesc mismatches. depend match_parens.ARCH +containersize 3328 +containerchecksum 1e03e279e977af436a8f5d5c3d30f046f46f1a31a0fd3de6d8ab458a64f0634b5f3ef8a338954971a898a1c68128f60c6eabd7ca231df9f3ca8ed12e55967dad +doccontainersize 57268 +doccontainerchecksum 60428bc16f65fe820e267852c9d85a5f862c6800ac9c2aae0915a48819da381b2a311fdd3d08096d4aab7311ef86c1c89fabff3d88caf419dacbef515f4dd39a +docfiles size=15 + texmf-dist/doc/support/match_parens/README details="Readme" + texmf-dist/doc/support/match_parens/match_parens.pdf details="Package documentation" runfiles size=2 texmf-dist/scripts/match_parens/match_parens -docfiles size=15 - texmf-dist/doc/support/match_parens/README - texmf-dist/doc/support/match_parens/match_parens.pdf catalogue-ctan /support/match_parens -catalogue-date 2015-02-13 19:31:44 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license gpl +catalogue-topics debug-supp catalogue-version 1.43 +name match_parens.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of match_parens +containersize 344 +containerchecksum e5c1f54440192c467dd90cfe01996b059c45cb9c8fcfd6f83f3c96881b28803c1f0b3da43b34e5b3a8fe92f644d5f4a765edd9b4b693380b1898a1064bc98fe7 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/match_parens + +name match_parens.amd64-freebsd +category Package +revision 23500 +shortdesc amd64-freebsd files of match_parens +containersize 344 +containerchecksum 49cd647b87eefc94c67367550eb656a840cadcab1ccabe3defee8ba01407072e42928030684db032be67123fa00a42889f6c6010cecdad4fcf89631fcee569fb +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/match_parens + +name match_parens.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of match_parens +containersize 344 +containerchecksum 6819d526e8e19208971f56dd0f4f22f1a389d746ce3c09a2b08b394e895b6d4351638e647025577c53da96a9ea4f5f9f6ad3e8010ef416f95b54ce35c1d8e080 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/match_parens + +name match_parens.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of match_parens +containersize 344 +containerchecksum 86b65ed214282101fb7b758c1294c443025f9cdb1dd28fbc48c6e060f49302afbfbace9addbf34252c4cbe8903f4c1b9bbb4782a0b73d274253a5d971ae3fa68 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/match_parens + +name match_parens.i386-cygwin +category Package +revision 23500 +shortdesc i386-cygwin files of match_parens +containersize 340 +containerchecksum 39d00a097e175bf590ee6cc75072dd75790f89de8066631d3999ec416b5ec6151f10c4820b6323a7c7130d06e6a116ee444565dd04a9afb3ed9ce385d72f75b2 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/match_parens + +name match_parens.i386-freebsd +category Package +revision 23500 +shortdesc i386-freebsd files of match_parens +containersize 344 +containerchecksum c1259e70e444e848748f49b77f5bcfb53f325e4699982b9201b31296537d5d9eaa9112e9fedb3826402a7bb9c7da1f1f7c237d4b05111c28ff7e04776c09038a +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/match_parens + name match_parens.i386-linux category Package revision 23500 shortdesc i386-linux files of match_parens +containersize 344 +containerchecksum 322d6cb63b3c536c247e26fb585b753a03a83c5113d8899c0bc26528bf550e58b2ba782f447f0ae526266a9e170dd05b12e16d9744d1a8187d4d6c2e32d20a45 binfiles arch=i386-linux size=1 bin/i386-linux/match_parens -name mathabx +name match_parens.i386-netbsd category Package -revision 15878 -shortdesc Three series of mathematical symbols. -relocated 1 -longdesc Mathabx is a set of 3 mathematical symbols font series: matha, -longdesc mathb and mathx. They are defined by Metafont code and should -longdesc be of reasonable quality (bitmap output). Things change from -longdesc time to time, so there is no claim of stability (encoding, -longdesc metrics, design). The package includes Plain TeX and LaTeX -longdesc support macros. A version of the fonts, in Adobe Type 1 format, -longdesc is also available. -runfiles size=215 - RELOC/fonts/source/public/mathabx/matha10.mf - RELOC/fonts/source/public/mathabx/matha12.mf - RELOC/fonts/source/public/mathabx/matha5.mf - RELOC/fonts/source/public/mathabx/matha6.mf - RELOC/fonts/source/public/mathabx/matha7.mf - RELOC/fonts/source/public/mathabx/matha8.mf - RELOC/fonts/source/public/mathabx/matha9.mf - RELOC/fonts/source/public/mathabx/mathacnt.mf - RELOC/fonts/source/public/mathabx/mathadrv.mf - RELOC/fonts/source/public/mathabx/matharrw.mf - RELOC/fonts/source/public/mathabx/mathastr.mf - RELOC/fonts/source/public/mathabx/mathastrotest10.mf - RELOC/fonts/source/public/mathabx/mathastrotestdrv.mf - RELOC/fonts/source/public/mathabx/mathasym.mf - RELOC/fonts/source/public/mathabx/mathb10.mf - RELOC/fonts/source/public/mathabx/mathb12.mf - RELOC/fonts/source/public/mathabx/mathb5.mf - RELOC/fonts/source/public/mathabx/mathb6.mf - RELOC/fonts/source/public/mathabx/mathb7.mf - RELOC/fonts/source/public/mathabx/mathb8.mf - RELOC/fonts/source/public/mathabx/mathb9.mf - RELOC/fonts/source/public/mathabx/mathbase.mf - RELOC/fonts/source/public/mathabx/mathbdel.mf - RELOC/fonts/source/public/mathabx/mathbdrv.mf - RELOC/fonts/source/public/mathabx/mathbigs.mf - RELOC/fonts/source/public/mathabx/mathbsym.mf - RELOC/fonts/source/public/mathabx/mathc10.mf - RELOC/fonts/source/public/mathabx/mathcall.mf - RELOC/fonts/source/public/mathabx/mathcallgreek.mf - RELOC/fonts/source/public/mathabx/mathcdrv.mf - RELOC/fonts/source/public/mathabx/mathfine.mf - RELOC/fonts/source/public/mathabx/mathgrey.mf - RELOC/fonts/source/public/mathabx/mathhbrw.mf - RELOC/fonts/source/public/mathabx/mathineq.mf - RELOC/fonts/source/public/mathabx/mathltlk.mf - RELOC/fonts/source/public/mathabx/mathmbcb.mf - RELOC/fonts/source/public/mathabx/mathprmt.mf - RELOC/fonts/source/public/mathabx/mathsmsy.mf - RELOC/fonts/source/public/mathabx/mathsubs.mf - RELOC/fonts/source/public/mathabx/mathsymb.mf - RELOC/fonts/source/public/mathabx/mathu10.mf - RELOC/fonts/source/public/mathabx/mathudrv.mf - RELOC/fonts/source/public/mathabx/mathusym.mf - RELOC/fonts/source/public/mathabx/mathux10.mf - RELOC/fonts/source/public/mathabx/mathuxdrv.mf - RELOC/fonts/source/public/mathabx/mathx10.mf - RELOC/fonts/source/public/mathabx/mathx12.mf - RELOC/fonts/source/public/mathabx/mathx5.mf - RELOC/fonts/source/public/mathabx/mathx6.mf - RELOC/fonts/source/public/mathabx/mathx7.mf - RELOC/fonts/source/public/mathabx/mathx8.mf - RELOC/fonts/source/public/mathabx/mathx9.mf - RELOC/fonts/source/public/mathabx/mathxdrv.mf - RELOC/fonts/source/public/mathabx/maydigit.mf - RELOC/fonts/tfm/public/mathabx/matha10.tfm - RELOC/fonts/tfm/public/mathabx/matha12.tfm - RELOC/fonts/tfm/public/mathabx/matha5.tfm - RELOC/fonts/tfm/public/mathabx/matha6.tfm - RELOC/fonts/tfm/public/mathabx/matha7.tfm - RELOC/fonts/tfm/public/mathabx/matha8.tfm - RELOC/fonts/tfm/public/mathabx/matha9.tfm - RELOC/fonts/tfm/public/mathabx/mathastrotest10.tfm - RELOC/fonts/tfm/public/mathabx/mathb10.tfm - RELOC/fonts/tfm/public/mathabx/mathb12.tfm - RELOC/fonts/tfm/public/mathabx/mathb5.tfm - RELOC/fonts/tfm/public/mathabx/mathb6.tfm - RELOC/fonts/tfm/public/mathabx/mathb7.tfm - RELOC/fonts/tfm/public/mathabx/mathb8.tfm - RELOC/fonts/tfm/public/mathabx/mathb9.tfm - RELOC/fonts/tfm/public/mathabx/mathc10.tfm - RELOC/fonts/tfm/public/mathabx/mathu10.tfm - RELOC/fonts/tfm/public/mathabx/mathux10.tfm - RELOC/fonts/tfm/public/mathabx/mathx10.tfm - RELOC/fonts/tfm/public/mathabx/mathx12.tfm - RELOC/fonts/tfm/public/mathabx/mathx5.tfm - RELOC/fonts/tfm/public/mathabx/mathx6.tfm - RELOC/fonts/tfm/public/mathabx/mathx7.tfm - RELOC/fonts/tfm/public/mathabx/mathx8.tfm - RELOC/fonts/tfm/public/mathabx/mathx9.tfm - RELOC/tex/generic/mathabx/mathabx.dcl - RELOC/tex/generic/mathabx/mathabx.sty - RELOC/tex/generic/mathabx/mathabx.tex -docfiles size=193 - RELOC/doc/fonts/mathabx/README - RELOC/doc/fonts/mathabx/mathtest.pdf - RELOC/doc/fonts/mathabx/mathtest.tex - RELOC/doc/fonts/mathabx/testmac.tex -catalogue-ctan /fonts/mathabx -catalogue-date 2014-05-14 16:12:10 +0200 -catalogue-license lppl +revision 30191 +shortdesc i386-netbsd files of match_parens +containersize 344 +containerchecksum 5e253bc70df984cc279488635957ab65d78d8de35050ee3b2b2f3ad399383a33bfe4a59ab17485efc45a65f582c73782060317a3333866c17b8c8bd5eabada59 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/match_parens -name mathabx-type1 +name match_parens.i386-solaris category Package -revision 21129 -shortdesc Outline version of the mathabx fonts. -relocated 1 -longdesc This is an Adobe Type 1 outline version of the mathabx fonts. -depend mathabx -execute addMap mathabx.map -runfiles size=500 - RELOC/fonts/map/dvips/mathabx-type1/mathabx.map - RELOC/fonts/type1/public/mathabx-type1/matha10.pfb - RELOC/fonts/type1/public/mathabx-type1/matha12.pfb - RELOC/fonts/type1/public/mathabx-type1/matha5.pfb - RELOC/fonts/type1/public/mathabx-type1/matha6.pfb - RELOC/fonts/type1/public/mathabx-type1/matha7.pfb - RELOC/fonts/type1/public/mathabx-type1/matha8.pfb - RELOC/fonts/type1/public/mathabx-type1/matha9.pfb - RELOC/fonts/type1/public/mathabx-type1/mathastrotest10.pfb - RELOC/fonts/type1/public/mathabx-type1/mathb10.pfb - RELOC/fonts/type1/public/mathabx-type1/mathb12.pfb - RELOC/fonts/type1/public/mathabx-type1/mathb5.pfb - RELOC/fonts/type1/public/mathabx-type1/mathb6.pfb - RELOC/fonts/type1/public/mathabx-type1/mathb7.pfb - RELOC/fonts/type1/public/mathabx-type1/mathb8.pfb - RELOC/fonts/type1/public/mathabx-type1/mathb9.pfb - RELOC/fonts/type1/public/mathabx-type1/mathc10.pfb - RELOC/fonts/type1/public/mathabx-type1/mathu10.pfb - RELOC/fonts/type1/public/mathabx-type1/mathux10.pfb - RELOC/fonts/type1/public/mathabx-type1/mathx10.pfb - RELOC/fonts/type1/public/mathabx-type1/mathx12.pfb - RELOC/fonts/type1/public/mathabx-type1/mathx5.pfb - RELOC/fonts/type1/public/mathabx-type1/mathx6.pfb - RELOC/fonts/type1/public/mathabx-type1/mathx7.pfb - RELOC/fonts/type1/public/mathabx-type1/mathx8.pfb - RELOC/fonts/type1/public/mathabx-type1/mathx9.pfb -docfiles size=1 - RELOC/doc/fonts/mathabx-type1/README -catalogue-ctan /fonts/ps-type1/mathabx -catalogue-date 2014-05-14 16:12:10 +0200 -catalogue-license lppl +revision 23500 +shortdesc i386-solaris files of match_parens +containersize 344 +containerchecksum 1e32644c13365d5b8ed545e17feb4466b318b0bd76b0265f25b5e73b8fa17eb42cf9c2d5abce9e5767e7bf1d85daea8f75039af9deb9d1181c79d07527139ab8 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/match_parens -name mathalfa +name match_parens.win32 category Package -revision 27199 -shortdesc General package for loading maths alphabets in LaTeX. -relocated 1 -longdesc The package provides means of loading maths alphabets (such as -longdesc are normally addressed via macros \mathcal, \mathbb, \mathfrak -longdesc and \mathscr), offering various features normally missing in -longdesc existing packages for this job. -runfiles size=6 - RELOC/tex/latex/mathalfa/mathalfa.sty -docfiles size=104 - RELOC/doc/latex/mathalfa/README - RELOC/doc/latex/mathalfa/mathalfa.pdf - RELOC/doc/latex/mathalfa/mathalfa.tex -catalogue-ctan /macros/latex/contrib/mathalfa -catalogue-date 2014-03-14 11:26:43 +0100 -catalogue-license lppl1.3 -catalogue-version 1.07 +revision 23500 +shortdesc win32 files of match_parens +containersize 692 +containerchecksum 20f124eca830bd518fc6c37085099f895b5f0e36ba514dfc3f51c09f1c3957f45a09dacd349a2c77712193457da475004664b8068dcdb10c7bc8e61164882f7e +binfiles arch=win32 size=1 + bin/win32/match_parens.exe -name mathastext +name match_parens.x86_64-cygwin category Package -revision 38358 -shortdesc Use the text font in maths mode -relocated 1 -longdesc The package uses a text font (usually the document's text font) -longdesc for the letters of the Latin alphabet needed when typesetting -longdesc mathematics. (Optionally, other characters in the font may also -longdesc be used). This facility makes possible (for a document with -longdesc simple mathematics) a far wider choice of text font, with -longdesc little worry that no specially designed accompanying maths -longdesc fonts are available. The package also offers a simple mechanism -longdesc for using many different choices of (text hence, now, maths) -longdesc font in the same document. Of course, using one font for two -longdesc purposes helps produce smaller PDF files. The package, running -longdesc under LuaTeX, requires the TeX live 2013 distribution (or -longdesc later). -runfiles size=21 - RELOC/tex/latex/mathastext/mathastext.sty -docfiles size=110 - RELOC/doc/latex/mathastext/README.md - RELOC/doc/latex/mathastext/mathastext.pdf - RELOC/doc/latex/mathastext/mathastexttestalphabets.pdf -srcfiles size=76 - RELOC/source/latex/mathastext/mathastext.dtx - RELOC/source/latex/mathastext/mathastext.ins -catalogue-ctan /macros/latex/contrib/mathastext -catalogue-date 2015-09-12 19:34:01 +0200 -catalogue-license lppl1.3 -catalogue-topics font font-maths font-sel -catalogue-version 1.3f +revision 33557 +shortdesc x86_64-cygwin files of match_parens +containersize 344 +containerchecksum ad3c5f4a191792896f4cf5c28c97b3edf0801d214cfeca8fd2ba72bf4200151b791c5970e2637244e4ac2adab0c430a34b73487aa5b4284c5188672fdba619d8 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/match_parens -name mathcomp +name match_parens.x86_64-darwin category Package -revision 15878 -shortdesc Text symbols in maths mode. -relocated 1 -longdesc A package which provides access to some interesting characters -longdesc of the Text Companion fonts (TS1 encoding) in maths mode. -runfiles size=1 - RELOC/tex/latex/mathcomp/mathcomp.sty -docfiles size=44 - RELOC/doc/latex/mathcomp/mathcomp.pdf -srcfiles size=3 - RELOC/source/latex/mathcomp/mathcomp.dtx - RELOC/source/latex/mathcomp/mathcomp.ins -catalogue-ctan /macros/latex/contrib/mathcomp -catalogue-date 2012-05-25 22:58:30 +0200 -catalogue-license lppl -catalogue-version 0.1f +revision 23500 +shortdesc x86_64-darwin files of match_parens +containersize 344 +containerchecksum 4ff65cba5ef31da7ba6b0e51db5cc9623b2dff90471567502d5464ffd9140281eee0fdaa85d8634259528dfe08f331e97fd3328d641010b207dc240b9d86c609 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/match_parens -name mathdesign +name match_parens.x86_64-darwinlegacy category Package -revision 31639 -shortdesc Mathematical fonts to fit with particular text fonts. -relocated 1 -longdesc The Math Design project offers free mathematical fonts that -longdesc match with existing text fonts. To date, three free font -longdesc families are available: Adobe Utopia, URW Garamond and -longdesc Bitstream Charter. Three commercial fonts are also supported: -longdesc Adobe Garamond Pro, Adobe UtopiaStd and ITC Charter. Mathdesign -longdesc covers the whole LaTeX glyph set, including AMS symbols and -longdesc some extra. Both roman and bold versions of these symbols can -longdesc be used. Moreover you can choose between three greek fonts (two -longdesc of them created by the Greek Font Society). -execute addMap mdbch.map -execute addMap mdgreek.map -execute addMap mdici.map -execute addMap mdpgd.map -execute addMap mdpus.map -execute addMap mdput.map -execute addMap mdugm.map -runfiles size=2805 - RELOC/dvips/mathdesign/config.mdbch - RELOC/dvips/mathdesign/config.mdici - RELOC/dvips/mathdesign/config.mdpgd - RELOC/dvips/mathdesign/config.mdpus - RELOC/dvips/mathdesign/config.mdput - RELOC/dvips/mathdesign/config.mdugm - RELOC/fonts/enc/dvips/mathdesign/a_2dncez.enc - RELOC/fonts/enc/dvips/mathdesign/a_2rwgaw.enc - RELOC/fonts/enc/dvips/mathdesign/a_42s2zl.enc - RELOC/fonts/enc/dvips/mathdesign/a_45o73x.enc - RELOC/fonts/enc/dvips/mathdesign/a_4b5i6w.enc - RELOC/fonts/enc/dvips/mathdesign/a_57soyv.enc - RELOC/fonts/enc/dvips/mathdesign/a_csqf63.enc - RELOC/fonts/enc/dvips/mathdesign/a_e65dz6.enc - RELOC/fonts/enc/dvips/mathdesign/a_g2masa.enc - RELOC/fonts/enc/dvips/mathdesign/a_g47ck7.enc - RELOC/fonts/enc/dvips/mathdesign/a_ipzj2o.enc - RELOC/fonts/enc/dvips/mathdesign/a_kld4uc.enc - RELOC/fonts/enc/dvips/mathdesign/a_mdpn2k.enc - RELOC/fonts/enc/dvips/mathdesign/a_n2elaj.enc - RELOC/fonts/enc/dvips/mathdesign/a_oxfbe4.enc - RELOC/fonts/enc/dvips/mathdesign/a_py5znv.enc - RELOC/fonts/enc/dvips/mathdesign/a_qnfjtt.enc - RELOC/fonts/enc/dvips/mathdesign/a_qzg4u4.enc - RELOC/fonts/enc/dvips/mathdesign/a_r2nxhw.enc - RELOC/fonts/enc/dvips/mathdesign/a_rl4tn2.enc - RELOC/fonts/enc/dvips/mathdesign/a_rxz3ga.enc - RELOC/fonts/enc/dvips/mathdesign/a_telfo7.enc - RELOC/fonts/enc/dvips/mathdesign/a_uwwzqd.enc - RELOC/fonts/enc/dvips/mathdesign/a_yezm6g.enc - RELOC/fonts/enc/dvips/mathdesign/md8x.enc - RELOC/fonts/map/dvips/mathdesign/mdbch.map - RELOC/fonts/map/dvips/mathdesign/mdgreek.map - RELOC/fonts/map/dvips/mathdesign/mdici.map - RELOC/fonts/map/dvips/mathdesign/mdpgd.map - RELOC/fonts/map/dvips/mathdesign/mdpus.map - RELOC/fonts/map/dvips/mathdesign/mdput.map - RELOC/fonts/map/dvips/mathdesign/mdugm.map - RELOC/fonts/tfm/public/mathdesign/mdbch/bchb8a.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/bchbc8a.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/bchbc8y.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/bchbi8a.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/bchr8a.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/bchrc8a.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/bchrc8y.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/bchri8a.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chb7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chb7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chb7v.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chb7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chb8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chb8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chb8y.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbc8y.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbi7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbi7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbi8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbi8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbi8y.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbma.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbmb.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbo7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbo8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbo8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbo8y.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chboc8y.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chr7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chr7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chr7v.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chr7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chr8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chr8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chr8y.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chrc8y.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chree.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chri7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chri7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chri8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chri8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chri8y.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chrma.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chrmb.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chro7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chro8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chro8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chro8y.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/md-chroc8y.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchb7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchb7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchb7v.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchb7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchb8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchb8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbfc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbi7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbi7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbi8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbi8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbifc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbma.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbmb.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbo7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbo8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbo8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbofc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchr7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchr7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchr7v.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchr7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchr8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchr8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchrc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchrfc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchri7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchri7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchri8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchri8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchrifc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchrma.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchrmb.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchro7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchro8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchro8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchrofc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdgreek/md-grbb7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdgreek/md-grbbi7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdgreek/md-grbr7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdgreek/md-grbri7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdgreek/md-grdb7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdgreek/md-grdbi7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdgreek/md-grdr7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdgreek/md-grdri7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrbCb7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrbCbi7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrbCr7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrbCri7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrbb7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrbbi7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrbr7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrbri7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrdCb7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrdCbi7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrdCri7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrdb7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrdbi7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrdr7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrdrC7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrdri7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-cib7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-cib7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-cib7v.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-cib7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-cib8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-cib8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-cibee.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-cibi7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-cibi7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-cibi8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-cibi8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-cibma.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-cibmb.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-cir7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-cir7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-cir7v.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-cir7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-cir8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-cir8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-ciree.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-ciri7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-ciri7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-ciri8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-ciri8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-cirma.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/md-cirmb.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicib7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicib7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicib7v.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicib7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicib8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicib8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicibc8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicibc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicibfc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicibi7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicibi7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicibi8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicibi8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicibic8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicibic8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicibifc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicibma.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicibmb.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicic8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicic8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicicc8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicicc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicicfc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicici8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicici8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicicic8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicicic8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicicifc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicir7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicir7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicir7v.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicir7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicir8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicir8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicirc8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicirc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicirfc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdiciri7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdiciri7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdiciri8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdiciri8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdiciric8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdiciric8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicirifc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicirma.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdicirmb.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdwcib7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdwcib7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdwcib8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdwcibc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdwcibi7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdwcibi7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdwcibi8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdwcibic8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdwcic7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdwcic7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdwcic8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdwcicc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdwcici7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdwcici7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdwcici8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdwcicic8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdwcir7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdwcir7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdwcir8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdwcirc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdwciri7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdwciri7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdwciri8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdwciric8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdxcib7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdxcib7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdxcib8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdxcibc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdxcibi7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdxcibi7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdxcibi8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdxcibic8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdxcic7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdxcic7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdxcic8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdxcicc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdxcici7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdxcici7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdxcici8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdxcicic8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdxcir7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdxcir7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdxcir8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdxcirc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdxciri7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdxciri7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdxciri8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdici/mdxciric8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdr7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdr7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdr7v.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdr7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdr8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdr8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdree.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdri7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdri7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdri8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdri8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdrma.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdrmb.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gds7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gds7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gds7v.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gds7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gds8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gds8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdsi7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdsi7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdsi8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdsi8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdsma.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdsmb.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdb8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdb8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdbc8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdbc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdbfc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdbi8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdbi8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdbic8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdbic8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdbifc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdr7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdr7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdr7v.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdr7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdr8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdr8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdrc8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdrc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdrfc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdri7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdri7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdri8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdri8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdric8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdric8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdrifc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdrma.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdrmb.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgds7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgds7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgds7v.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgds7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgds8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgds8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsc8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsfc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsi7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsi7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsi8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsi8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsic8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsic8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsifc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsma.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsmb.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdb7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdb7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdb8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdbc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdbi7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdbi7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdbi8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdbic8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdr7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdr7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdr8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdrc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdri7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdri7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdri8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdric8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgds7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgds7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgds8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdsc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdsi7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdsi7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdsi8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdsic8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdb7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdb7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdb8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdbc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdbi7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdbi7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdbi8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdbic8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdr7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdr7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdr8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdrc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdri7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdri7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdri8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdric8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgds7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgds7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgds8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdsc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdsi7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdsi7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdsi8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdsic8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7t5.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7t6.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7t7.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7t8.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7t9.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7v.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-usree.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri7t5.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri7t6.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri7t7.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri7t8.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri7t9.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-usrma.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-usrmb.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-uss7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-uss7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-uss7v.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-uss7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-uss8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-uss8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-ussi7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-ussi7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-ussi8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-ussi8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-ussma.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/md-ussmb.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusb8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusb8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusbc8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusbc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusbfc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusbi8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusbi8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusbic8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusbic8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusbifc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusr7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusr7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusr7v.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusr7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusr8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusr8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusrc8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusrc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusrfc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusri7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusri7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusri8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusri8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusric8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusric8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusrifc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusrma.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusrmb.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpuss7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpuss7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpuss7v.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpuss7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpuss8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpuss8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussc8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussfc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussi7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussi7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussi8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussi8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussic8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussic8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussifc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussma.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussmb.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusb7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusb7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusb8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusbc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusbi7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusbi7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusbi8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusbic8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusr7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusr7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusr8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusrc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusri7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusri7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusri8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusric8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdwuss7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdwuss7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdwuss8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdwussc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdwussi7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdwussi7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdwussi8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdwussic8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusb7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusb7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusb8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusbc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusbi7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusbi7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusbi8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusbic8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusr7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusr7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusr8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusrc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusri7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusri7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusri8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusric8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdxuss7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdxuss7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdxuss8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdxussc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdxussi7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdxussi7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdxussi8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdpus/mdxussic8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utb7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utb7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utb7v.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utb7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utb8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utb8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utb8y.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utbee.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utbi7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utbi7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utbi8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utbi8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utbi8y.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utbma.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utbmb.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utbo7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utbo8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utbo8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utbo8y.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utr7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utr7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utr7v.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utr7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utr8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utr8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utr8y.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utree.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utri7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utri7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utri8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utri8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utri8y.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utrma.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utrmb.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utro7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utro8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utro8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/md-utro8y.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputb7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputb7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputb7v.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputb7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputb8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputb8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputbc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputbfc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputbi7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputbi7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputbi8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputbi8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputbifc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputbma.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputbmb.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputbo7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputbo8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputbo8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputbofc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputr7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputr7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputr7v.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputr7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputr8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputr8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputrc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputrfc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputri7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputri7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputri8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputri8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputrifc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputrma.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputrmb.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputro7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputro8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputro8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/mdputrofc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/putb8a.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/putb8x.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/putbi8a.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/putr8a.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/putr8x.tfm - RELOC/fonts/tfm/public/mathdesign/mdput/putri8a.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmm7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmm7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmm7v.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmm7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmm8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmm8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmm8y.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmi7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmi7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmi8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmi8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmi8y.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmma.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmmb.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmo7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmo8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmo8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmo8y.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmr7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmr7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmr7v.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmr7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmr8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmr8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmr8y.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmree.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmri7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmri7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmri8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmri8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmri8y.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmrma.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmrmb.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmro7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmro8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmro8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmro8y.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmm7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmm7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmm7v.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmm7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmm8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmm8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmfc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmi7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmi7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmi8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmi8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmifc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmma.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmmb.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmo7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmo8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmo8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmofc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmr7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmr7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmr7v.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmr7y.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmr8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmr8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmrfc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmri7m.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmri7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmri8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmri8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmrifc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmrma.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmrmb.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmro7t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmro8c.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmro8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmrofc8t.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/ugmm8a.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/ugmmi8a.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/ugmr8a.tfm - RELOC/fonts/tfm/public/mathdesign/mdugm/ugmri8a.tfm - RELOC/fonts/type1/public/mathdesign/mdbch/md-chb7m.pfb - RELOC/fonts/type1/public/mathdesign/mdbch/md-chb7t.pfb - RELOC/fonts/type1/public/mathdesign/mdbch/md-chb7v.pfb - RELOC/fonts/type1/public/mathdesign/mdbch/md-chb7y.pfb - RELOC/fonts/type1/public/mathdesign/mdbch/md-chb8c.pfb - RELOC/fonts/type1/public/mathdesign/mdbch/md-chb8t.pfb - RELOC/fonts/type1/public/mathdesign/mdbch/md-chbi7m.pfb - RELOC/fonts/type1/public/mathdesign/mdbch/md-chbi7t.pfb - RELOC/fonts/type1/public/mathdesign/mdbch/md-chbi8c.pfb - RELOC/fonts/type1/public/mathdesign/mdbch/md-chbi8t.pfb - RELOC/fonts/type1/public/mathdesign/mdbch/md-chbma.pfb - RELOC/fonts/type1/public/mathdesign/mdbch/md-chbmb.pfb - RELOC/fonts/type1/public/mathdesign/mdbch/md-chr7m.pfb - RELOC/fonts/type1/public/mathdesign/mdbch/md-chr7t.pfb - RELOC/fonts/type1/public/mathdesign/mdbch/md-chr7v.pfb - RELOC/fonts/type1/public/mathdesign/mdbch/md-chr7y.pfb - RELOC/fonts/type1/public/mathdesign/mdbch/md-chr8c.pfb - RELOC/fonts/type1/public/mathdesign/mdbch/md-chr8t.pfb - RELOC/fonts/type1/public/mathdesign/mdbch/md-chree.pfb - RELOC/fonts/type1/public/mathdesign/mdbch/md-chri7m.pfb - RELOC/fonts/type1/public/mathdesign/mdbch/md-chri7t.pfb - RELOC/fonts/type1/public/mathdesign/mdbch/md-chri8c.pfb - RELOC/fonts/type1/public/mathdesign/mdbch/md-chri8t.pfb - RELOC/fonts/type1/public/mathdesign/mdbch/md-chrma.pfb - RELOC/fonts/type1/public/mathdesign/mdbch/md-chrmb.pfb - RELOC/fonts/type1/public/mathdesign/mdici/UtopiaStd-Regular.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-cib7m.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-cib7t.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-cib7v.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-cib7y.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-cib8c.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-cib8t.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-cibee.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-cibi7m.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-cibi7t.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-cibi8c.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-cibi8t.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-cibma.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-cibmb.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-cir7m.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-cir7t.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-cir7v.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-cir7y.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-cir8c.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-cir8t.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-ciree.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-ciri7m.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-ciri7t.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-ciri8c.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-ciri8t.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-cirma.pfb - RELOC/fonts/type1/public/mathdesign/mdici/md-cirmb.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdr7m.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdr7t.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdr7v.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdr7y.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdr8c.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdr8t.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdree.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdri7m.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdri7t.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdri8c.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdri8t.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdrma.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdrmb.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gds7m.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gds7t.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gds7v.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gds7y.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gds8c.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gds8t.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdsi7m.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdsi7t.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdsi8c.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdsi8t.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdsma.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdsmb.pfb - RELOC/fonts/type1/public/mathdesign/mdpgd/md-utrma.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7m.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7t.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7t5.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7t6.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7t7.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7t8.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7t9.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7v.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7y.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-usr8c.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-usr8t.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-usree.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-usri7m.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-usri7t.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-usri7t5.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-usri7t6.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-usri7t7.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-usri7t8.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-usri7t9.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-usri8c.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-usri8t.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-usrma.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-usrmb.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-uss7m.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-uss7t.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-uss7v.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-uss7y.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-uss8c.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-uss8t.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-ussi7m.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-ussi7t.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-ussi8c.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-ussi8t.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-ussma.pfb - RELOC/fonts/type1/public/mathdesign/mdpus/md-ussmb.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utb7m.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utb7t.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utb7v.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utb7y.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utb8c.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utb8t.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utbee.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utbi7m.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utbi7t.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utbi8c.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utbi8t.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utbma.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utbmb.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utr7m.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utr7t.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utr7v.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utr7y.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utr8c.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utr8t.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utree.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utri7m.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utri7t.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utri8c.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utri8t.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utrma.pfb - RELOC/fonts/type1/public/mathdesign/mdput/md-utrmb.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmm7m.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmm7t.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmm7v.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmm7y.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmm8c.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmm8t.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmmi7m.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmmi7t.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmmi8c.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmmi8t.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmmma.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmmmb.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmr7m.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmr7t.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmr7v.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmr7y.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmr8c.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmr8t.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmree.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmri7m.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmri7t.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmri8c.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmri8t.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmrma.pfb - RELOC/fonts/type1/public/mathdesign/mdugm/md-gmrmb.pfb - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchb7m.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchb7t.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchb7v.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchb7y.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchb8c.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchb8t.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbc8t.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbfc8t.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbi7m.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbi7t.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbi8c.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbi8t.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbifc8t.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbma.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbmb.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbo7t.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbo8c.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbo8t.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbofc8t.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchr7m.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchr7t.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchr7v.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchr7y.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchr8c.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchr8t.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchrc8t.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchrfc8t.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchri7m.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchri7t.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchri8c.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchri8t.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchrifc8t.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchrma.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchrmb.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchro7t.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchro8c.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchro8t.vf - RELOC/fonts/vf/public/mathdesign/mdbch/mdbchrofc8t.vf - RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrbCb7m.vf - RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrbCbi7m.vf - RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrbCr7m.vf - RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrbCri7m.vf - RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrbb7m.vf - RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrbbi7m.vf - RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrbr7m.vf - RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrbri7m.vf - RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrdCb7m.vf - RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrdCbi7m.vf - RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrdCri7m.vf - RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrdb7m.vf - RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrdbi7m.vf - RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrdr7m.vf - RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrdrC7m.vf - RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrdri7m.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicib7m.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicib7t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicib7v.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicib7y.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicib8c.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicib8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicibc8c.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicibc8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicibfc8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicibi7m.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicibi7t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicibi8c.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicibi8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicibic8c.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicibic8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicibifc8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicibiu7m.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicibma.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicibmb.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicibui7m.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicic8c.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicic8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicicc8c.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicicc8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicicfc8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicici8c.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicici8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicicic8c.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicicic8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicicifc8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicir7m.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicir7t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicir7v.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicir7y.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicir8c.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicir8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicirc8c.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicirc8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicirfc8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdiciri7m.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdiciri7t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdiciri8c.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdiciri8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdiciric8c.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdiciric8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicirifc8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdiciriu7m.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicirma.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicirmb.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdicirui7m.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdxcib7y.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdxcib8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdxcibc8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdxcibi7y.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdxcibi8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdxcibic8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdxcic7y.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdxcic8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdxcicc8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdxcici7y.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdxcici8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdxcicic8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdxcir7y.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdxcir8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdxcirc8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdxciri7y.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdxciri8t.vf - RELOC/fonts/vf/public/mathdesign/mdici/mdxciric8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdb8c.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdb8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdbc8c.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdbc8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdbfc8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdbi8c.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdbi8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdbic8c.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdbic8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdbifc8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdr7m.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdr7t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdr7v.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdr7y.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdr8c.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdr8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdrc8c.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdrc8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdrfc8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdri7m.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdri7t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdri8c.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdri8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdric8c.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdric8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdrifc8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdrma.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdrmb.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgds7m.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgds7t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgds7v.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgds7y.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgds8c.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgds8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsc8c.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsc8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsfc8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsi7m.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsi7t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsi8c.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsi8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsic8c.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsic8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsifc8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsma.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsmb.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdb7y.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdb8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdbc8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdbi7y.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdbi8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdbic8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdr7y.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdr8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdrc8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdri7y.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdri8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdric8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgds7y.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgds8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdsc8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdsi7y.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdsi8t.vf - RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdsic8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusb8c.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusb8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusbc8c.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusbc8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusbfc8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusbi8c.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusbi8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusbic8c.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusbic8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusbifc8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusr7m.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusr7t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusr7v.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusr7y.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusr8c.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusr8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusrc8c.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusrc8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusrfc8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusri7m.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusri7t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusri8c.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusri8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusric8c.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusric8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusrifc8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusrma.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpusrmb.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpuss7m.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpuss7t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpuss7v.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpuss7y.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpuss8c.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpuss8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpussc8c.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpussc8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpussfc8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpussi7m.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpussi7t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpussi8c.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpussi8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpussic8c.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpussic8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpussifc8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpussma.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdpussmb.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdxusb7y.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdxusb8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdxusbc8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdxusbi7y.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdxusbi8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdxusbic8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdxusr7y.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdxusr8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdxusrc8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdxusri7y.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdxusri8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdxusric8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdxuss7y.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdxuss8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdxussc8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdxussi7y.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdxussi8t.vf - RELOC/fonts/vf/public/mathdesign/mdpus/mdxussic8t.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputb7m.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputb7t.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputb7v.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputb7y.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputb8c.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputb8t.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputbc8t.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputbfc8t.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputbi7m.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputbi7t.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputbi8c.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputbi8t.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputbifc8t.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputbma.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputbmb.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputbo7t.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputbo8c.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputbo8t.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputbofc8t.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputr7m.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputr7t.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputr7v.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputr7y.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputr8c.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputr8t.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputrc8t.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputrfc8t.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputri7m.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputri7t.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputri8c.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputri8t.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputrifc8t.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputrma.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputrmb.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputro7t.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputro8c.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputro8t.vf - RELOC/fonts/vf/public/mathdesign/mdput/mdputrofc8t.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmm7m.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmm7t.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmm7v.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmm7y.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmm8c.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmm8t.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmfc8t.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmi7m.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmi7t.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmi8c.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmi8t.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmifc8t.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmma.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmmb.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmo7t.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmo8c.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmo8t.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmofc8t.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmr7m.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmr7t.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmr7v.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmr7y.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmr8c.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmr8t.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmrfc8t.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmri7m.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmri7t.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmri8c.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmri8t.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmrifc8t.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmrma.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmrmb.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmro7t.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmro8c.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmro8t.vf - RELOC/fonts/vf/public/mathdesign/mdugm/mdugmrofc8t.vf - RELOC/tex/latex/mathdesign/mathdesign.sty - RELOC/tex/latex/mathdesign/mdacmr.fd - RELOC/tex/latex/mathdesign/mdbch/mdamdbch.fd - RELOC/tex/latex/mathdesign/mdbch/mdbch.cfg - RELOC/tex/latex/mathdesign/mdbch/mdbch.sty - RELOC/tex/latex/mathdesign/mdbch/mdbmdbch.fd - RELOC/tex/latex/mathdesign/mdbch/omlmdbch.fd - RELOC/tex/latex/mathdesign/mdbch/omsmdbch.fd - RELOC/tex/latex/mathdesign/mdbch/omxmdbch.fd - RELOC/tex/latex/mathdesign/mdbch/ot1mdbch.fd - RELOC/tex/latex/mathdesign/mdbch/t1mdbch.fd - RELOC/tex/latex/mathdesign/mdbch/ts1mdbch.fd - RELOC/tex/latex/mathdesign/mdbcmr.fd - RELOC/tex/latex/mathdesign/mdfont.def - RELOC/tex/latex/mathdesign/mdici/mdamdici.fd - RELOC/tex/latex/mathdesign/mdici/mdbmdici.fd - RELOC/tex/latex/mathdesign/mdici/mdici.cfg - RELOC/tex/latex/mathdesign/mdici/mdici.sty - RELOC/tex/latex/mathdesign/mdici/omlmdici.fd - RELOC/tex/latex/mathdesign/mdici/omsmdici.fd - RELOC/tex/latex/mathdesign/mdici/omxmdici.fd - RELOC/tex/latex/mathdesign/mdici/ot1mdici.fd - RELOC/tex/latex/mathdesign/mdici/t1mdici.fd - RELOC/tex/latex/mathdesign/mdici/ts1mdici.fd - RELOC/tex/latex/mathdesign/mdpgd/mdamdpgd.fd - RELOC/tex/latex/mathdesign/mdpgd/mdbmdpgd.fd - RELOC/tex/latex/mathdesign/mdpgd/mdpgd.cfg - RELOC/tex/latex/mathdesign/mdpgd/mdpgd.sty - RELOC/tex/latex/mathdesign/mdpgd/omlmdpgd.fd - RELOC/tex/latex/mathdesign/mdpgd/omsmdpgd.fd - RELOC/tex/latex/mathdesign/mdpgd/omxmdpgd.fd - RELOC/tex/latex/mathdesign/mdpgd/ot1mdpgd.fd - RELOC/tex/latex/mathdesign/mdpgd/t1mdpgd.fd - RELOC/tex/latex/mathdesign/mdpgd/ts1mdpgd.fd - RELOC/tex/latex/mathdesign/mdpus/mdamdpus.fd - RELOC/tex/latex/mathdesign/mdpus/mdbmdpus.fd - RELOC/tex/latex/mathdesign/mdpus/mdpus.cfg - RELOC/tex/latex/mathdesign/mdpus/mdpus.sty - RELOC/tex/latex/mathdesign/mdpus/omlmdpus.fd - RELOC/tex/latex/mathdesign/mdpus/omsmdpus.fd - RELOC/tex/latex/mathdesign/mdpus/omxmdpus.fd - RELOC/tex/latex/mathdesign/mdpus/ot1mdpus.fd - RELOC/tex/latex/mathdesign/mdpus/t1mdpus.fd - RELOC/tex/latex/mathdesign/mdpus/ts1mdpus.fd - RELOC/tex/latex/mathdesign/mdput/mdamdput.fd - RELOC/tex/latex/mathdesign/mdput/mdbmdput.fd - RELOC/tex/latex/mathdesign/mdput/mdput.cfg - RELOC/tex/latex/mathdesign/mdput/mdput.sty - RELOC/tex/latex/mathdesign/mdput/omlmdput.fd - RELOC/tex/latex/mathdesign/mdput/omsmdput.fd - RELOC/tex/latex/mathdesign/mdput/omxmdput.fd - RELOC/tex/latex/mathdesign/mdput/ot1mdput.fd - RELOC/tex/latex/mathdesign/mdput/t1mdput.fd - RELOC/tex/latex/mathdesign/mdput/ts1mdput.fd - RELOC/tex/latex/mathdesign/mdsffont.def - RELOC/tex/latex/mathdesign/mdttfont.def - RELOC/tex/latex/mathdesign/mdugm/mdamdugm.fd - RELOC/tex/latex/mathdesign/mdugm/mdbmdugm.fd - RELOC/tex/latex/mathdesign/mdugm/mdugm.cfg - RELOC/tex/latex/mathdesign/mdugm/mdugm.sty - RELOC/tex/latex/mathdesign/mdugm/omlmdugm.fd - RELOC/tex/latex/mathdesign/mdugm/omsmdugm.fd - RELOC/tex/latex/mathdesign/mdugm/omxmdugm.fd - RELOC/tex/latex/mathdesign/mdugm/ot1mdugm.fd - RELOC/tex/latex/mathdesign/mdugm/t1mdugm.fd - RELOC/tex/latex/mathdesign/mdugm/ts1mdugm.fd - RELOC/tex/latex/mathdesign/omlmdgrb.fd - RELOC/tex/latex/mathdesign/omlmdgrbc.fd - RELOC/tex/latex/mathdesign/omlmdgrd.fd - RELOC/tex/latex/mathdesign/omlmdgrdc.fd -docfiles size=232 - RELOC/doc/fonts/mathdesign/MD-Adobe-Adobe-Garamond-Pro-example.tex - RELOC/doc/fonts/mathdesign/MD-Adobe-Utopia-Std-example.tex - RELOC/doc/fonts/mathdesign/MD-Adobe-Utopia-example.pdf - RELOC/doc/fonts/mathdesign/MD-Adobe-Utopia-example.tex - RELOC/doc/fonts/mathdesign/MD-Bitstream-Bitstream-Charter-example.pdf - RELOC/doc/fonts/mathdesign/MD-Bitstream-Bitstream-Charter-example.tex - RELOC/doc/fonts/mathdesign/MD-itc-Charter-ITC-Std-example.tex - RELOC/doc/fonts/mathdesign/MD-urw-GaramondNo8-example.tex - RELOC/doc/fonts/mathdesign/README - RELOC/doc/fonts/mathdesign/mathdesign-doc.pdf - RELOC/doc/fonts/mathdesign/mathdesign-doc.tex -catalogue-ctan /fonts/mathdesign -catalogue-date 2014-05-14 16:12:10 +0200 -catalogue-license gpl -catalogue-version 2.31 - -name mathdots -category Package -revision 34301 -shortdesc Commands to produce dots in math that respect font size. -relocated 1 -longdesc Redefines \ddots and \vdots, and defines \iddots. The dots -longdesc produced by \iddots slant in the opposite direction to \ddots. -longdesc All the commands are designed to change size appropriately in -longdesc scripts, as well as in response to LaTeX size changing -longdesc commands. The commands may also be used in plain TeX. -runfiles size=3 - RELOC/tex/generic/mathdots/mathdots.sty - RELOC/tex/generic/mathdots/mathdots.tex -docfiles size=106 - RELOC/doc/generic/mathdots/README - RELOC/doc/generic/mathdots/mathdots.pdf - RELOC/doc/generic/mathdots/mdotest.pdf - RELOC/doc/generic/mathdots/mdotest.tex - RELOC/doc/generic/mathdots/plmdotest.tex -srcfiles size=7 - RELOC/source/generic/mathdots/mathdots.dtx - RELOC/source/generic/mathdots/mathdots.ins -catalogue-ctan /macros/generic/mathdots -catalogue-date 2014-06-12 20:30:52 +0200 -catalogue-license lppl -catalogue-version 0.9 - -name math-e -category Package -revision 20062 -shortdesc Examples from the book Typesetting Mathematics with LaTeX. +revision 43871 +shortdesc x86_64-darwinlegacy files of match_parens +containersize 352 +containerchecksum 0c8dde4f76a2f4a041e11135ef47b529197069a974a10bea13693f3af056dd6dc003b4efb128b1ac18408f1d2501b90fa2a349fe42b2bbc0ef8edf6b6ddebd02 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/match_parens + +name match_parens.x86_64-linux +category Package +revision 23500 +shortdesc x86_64-linux files of match_parens +containersize 344 +containerchecksum 9e6b2abaa4a3abe3577c61d06277d1a295136acbeb98719f18d870dd7870525080a0e1bfe5d17f30e3ee6cd239d3a9e7d70c90a1cb278139a4e3503f6ba4a334 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/match_parens + +name match_parens.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of match_parens +containersize 348 +containerchecksum 90308f7aa8dac08a55e2250f45eafd172619683fdfb900ccd8d7cc80152f236b06ece63fe2611990b4866a9268f8a2e67c29d75e1ff40d412801f51711bbec5a +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/match_parens + +name match_parens.x86_64-solaris +category Package +revision 23500 +shortdesc x86_64-solaris files of match_parens +containersize 344 +containerchecksum 51ee8be449fe77fc17fc7eed4b3629fb3de244531471f6dc3bb718b1188356c05d3f9d1b96f8b2981247deee2440a8b1c6d8fe873793d3259c29dfb69ed548f3 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/match_parens + +name math-e +category Package +revision 20062 +shortdesc Examples from the book Typesetting Mathematics with LaTeX relocated 1 longdesc The bundle contains all the examples from the (English) book longdesc "Typesetting Mathematics with LaTeX" (UIT Press, Cambridge, longdesc 2010). The examples are stand alone documents and may be -longdesc separately processed with LaTeX or PDFLaTeX. +longdesc separately processed with LaTeX or pdfLaTeX. +containersize 500 +containerchecksum c51c61baf8a8189fc2facc065d2f80c75026f5dcca8ee79c6d72ae9d71f0dd7fcafd7a230041db55c07e065838e865a56129c79b502c5f65e41ecc7b03e1e5f8 +doccontainersize 52572 +doccontainerchecksum 8f2356c61cf47332ad4b62f2065ba7f16173aae618e0d387c6b5f9f97a47c6b3fa14deba24e93ab7b359571ce732023e9b062342da0effc16aa6ad13fca71c5f docfiles size=515 RELOC/doc/latex/math-e/01-00-1.ltx RELOC/doc/latex/math-e/01-00-2.ltx @@ -105564,53959 +171697,91898 @@ docfiles size=515 RELOC/doc/latex/math-e/11-02-7.ltx RELOC/doc/latex/math-e/11-02-8.ltx RELOC/doc/latex/math-e/11-02-9.ltx - RELOC/doc/latex/math-e/README + RELOC/doc/latex/math-e/README details="Readme" RELOC/doc/latex/math-e/exaarticle.cls RELOC/doc/latex/math-e/exaarticle2.cls RELOC/doc/latex/math-e/exaartplain.cls RELOC/doc/latex/math-e/exareport.cls RELOC/doc/latex/math-e/exasymbol.cls catalogue-ctan /info/examples/Math-E -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics book-ex + +name math-into-latex-4 +category Package +revision 44131 +shortdesc Samples from Math into LaTeX, 4th Edition +relocated 1 +longdesc Samples for the book `(More) Math into LaTeX', 4th edition. In +longdesc addition, there are two excerpts from the book: A Short Course +longdesc to help you get started quickly with LaTeX, including detailed +longdesc instructions on how to install LaTeX on a PC or a Mac; Math and +longdesc Text Symbol Tables. +containersize 548 +containerchecksum d5739155ac3cd6a02f356bbb600f7f76022faa4a5c004a93531678ead3c2f0a9f8e1419044883306ce453ac96ab8726ee45d8e49c86b0fca6a9232010a8927e3 +doccontainersize 1650056 +doccontainerchecksum 5fee7c89fc9f273817b23fa25260733ee0552df7bed0333bbe604c17bdecfc28d7e386478f7b42d3c2aef89f80ce7a1d35215fdc386ea47e4db3a334bc6a9597 +docfiles size=965 + RELOC/doc/latex/math-into-latex-4/README details="Readme" + RELOC/doc/latex/math-into-latex-4/README.TEXLIVE + RELOC/doc/latex/math-into-latex-4/amsart.tpl + RELOC/doc/latex/math-into-latex-4/amsproc.template + RELOC/doc/latex/math-into-latex-4/babybeamer1.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer1.tex + RELOC/doc/latex/math-into-latex-4/babybeamer10.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer10.tex + RELOC/doc/latex/math-into-latex-4/babybeamer2.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer2.tex + RELOC/doc/latex/math-into-latex-4/babybeamer3.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer3.tex + RELOC/doc/latex/math-into-latex-4/babybeamer4.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer4.tex + RELOC/doc/latex/math-into-latex-4/babybeamer5.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer5.tex + RELOC/doc/latex/math-into-latex-4/babybeamer6.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer6.tex + RELOC/doc/latex/math-into-latex-4/babybeamer6block.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer6block.tex + RELOC/doc/latex/math-into-latex-4/babybeamer6mod.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer6mod.tex + RELOC/doc/latex/math-into-latex-4/babybeamer6mod2.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer6mod2.tex + RELOC/doc/latex/math-into-latex-4/babybeamer7.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer7.tex + RELOC/doc/latex/math-into-latex-4/babybeamer8.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer8.tex + RELOC/doc/latex/math-into-latex-4/babybeamer9.pdf + RELOC/doc/latex/math-into-latex-4/babybeamer9.tex + RELOC/doc/latex/math-into-latex-4/basem3-1.eps + RELOC/doc/latex/math-into-latex-4/basem3-1.pdf + RELOC/doc/latex/math-into-latex-4/basem3-2.eps + RELOC/doc/latex/math-into-latex-4/basem3-2.pdf + RELOC/doc/latex/math-into-latex-4/basem3-3.eps + RELOC/doc/latex/math-into-latex-4/basem3-3.pdf + RELOC/doc/latex/math-into-latex-4/basem3-4.eps + RELOC/doc/latex/math-into-latex-4/basem3-4.pdf + RELOC/doc/latex/math-into-latex-4/beamerstructure1.pdf + RELOC/doc/latex/math-into-latex-4/beamerstructure1.tex + RELOC/doc/latex/math-into-latex-4/beamerstructure2.pdf + RELOC/doc/latex/math-into-latex-4/beamerstructure2.tex + RELOC/doc/latex/math-into-latex-4/bibl.tpl + RELOC/doc/latex/math-into-latex-4/cleardoublepage.sty + RELOC/doc/latex/math-into-latex-4/cube.eps + RELOC/doc/latex/math-into-latex-4/cube.pdf + RELOC/doc/latex/math-into-latex-4/fonttbl.tex + RELOC/doc/latex/math-into-latex-4/german.tex + RELOC/doc/latex/math-into-latex-4/gg.tex + RELOC/doc/latex/math-into-latex-4/gg2.tex + RELOC/doc/latex/math-into-latex-4/ggamsart.tpl + RELOC/doc/latex/math-into-latex-4/gratzer + RELOC/doc/latex/math-into-latex-4/inbibl.tpl + RELOC/doc/latex/math-into-latex-4/intrart.tex + RELOC/doc/latex/math-into-latex-4/intrarti.tex + RELOC/doc/latex/math-into-latex-4/intropres.tex + RELOC/doc/latex/math-into-latex-4/legacy-article.tex + RELOC/doc/latex/math-into-latex-4/letter.tex + RELOC/doc/latex/math-into-latex-4/math.tex + RELOC/doc/latex/math-into-latex-4/mathb.tex + RELOC/doc/latex/math-into-latex-4/newlattice.sty + RELOC/doc/latex/math-into-latex-4/notation.pdf + RELOC/doc/latex/math-into-latex-4/note1.tex + RELOC/doc/latex/math-into-latex-4/note1b.tex + RELOC/doc/latex/math-into-latex-4/note2.tex + RELOC/doc/latex/math-into-latex-4/noteslug.tex + RELOC/doc/latex/math-into-latex-4/products.eps + RELOC/doc/latex/math-into-latex-4/products.pdf + RELOC/doc/latex/math-into-latex-4/quickbeamer.pdf + RELOC/doc/latex/math-into-latex-4/quickbeamer.tex + RELOC/doc/latex/math-into-latex-4/quickbeamer1.pdf + RELOC/doc/latex/math-into-latex-4/quickbeamer1.tex + RELOC/doc/latex/math-into-latex-4/quickbeamer2.pdf + RELOC/doc/latex/math-into-latex-4/quickbeamer2.tex + RELOC/doc/latex/math-into-latex-4/sampart-ref.tex + RELOC/doc/latex/math-into-latex-4/sampart.tex + RELOC/doc/latex/math-into-latex-4/sampartb.bib + RELOC/doc/latex/math-into-latex-4/sampartb.tex + RELOC/doc/latex/math-into-latex-4/sampartu.tex + RELOC/doc/latex/math-into-latex-4/sample.cls + RELOC/doc/latex/math-into-latex-4/template.bib + RELOC/doc/latex/math-into-latex-4/topmat.tpl +catalogue-ctan /info/examples/Math_into_LaTeX-4 +catalogue-date 2017-01-13 05:31:26 +0100 +catalogue-license other-free +catalogue-topics book-ex -name mathexam -category Package -revision 15878 -shortdesc Package for typesetting exams. -relocated 1 -longdesc The package can help you typeset exams (mostly in mathematics -longdesc and related disciplines where students are required to show -longdesc their calculations followed by one or more short answers). It -longdesc provides commands for inclusion of space for calculations, as -longdesc well as commands for automatic creation of "answer spaces". In -longdesc addition, the package will automatically create page headers -longdesc and footers, and will let you include instructions and space -longdesc for students to put their name. -runfiles size=1 - RELOC/tex/latex/mathexam/mathexam.sty -docfiles size=47 - RELOC/doc/latex/mathexam/README - RELOC/doc/latex/mathexam/mathexam.pdf - RELOC/doc/latex/mathexam/sample.pdf - RELOC/doc/latex/mathexam/sample.tex -srcfiles size=5 - RELOC/source/latex/mathexam/mathexam.dtx - RELOC/source/latex/mathexam/mathexam.ins -catalogue-ctan /macros/latex/contrib/mathexam -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.00 - -name mathpazo +name mathabx category Package revision 15878 -shortdesc Fonts to typeset mathematics to match Palatino. +shortdesc Three series of mathematical symbols relocated 1 -longdesc The Pazo Math fonts are a family of PostScript fonts suitable -longdesc for typesetting mathematics in combination with the Palatino -longdesc family of text fonts. The Pazo Math family is made up of five -longdesc fonts provided in Adobe Type 1 format (PazoMath, PazoMath- -longdesc Italic, PazoMath-Bold, PazoMath-BoldItalic, and -longdesc PazoMathBlackboardBold). These contain, in designs that match -longdesc Palatino, glyphs that are usually not available in Palatino and -longdesc for which Computer Modern looks odd when combined with -longdesc Palatino. These glyphs include the uppercase Greek alphabet in -longdesc upright and slanted shapes in regular and bold weights, the -longdesc lowercase Greek alphabet in slanted shape in regular and bold -longdesc weights, several mathematical glyphs (partialdiff, summation, -longdesc product, coproduct, emptyset, infinity, and proportional) in -longdesc regular and bold weights, other glyphs (Euro and dotlessj) in -longdesc upright and slanted shapes in regular and bold weights, and the -longdesc uppercase letters commonly used to represent various number -longdesc sets (C, I, N, Q, R, and Z) in blackboard bold. The set also -longdesc includes a set of 'true' small-caps fonts, also suitable for -longdesc use with Palatino (or one of its clones). LaTeX macro support -longdesc (using package mathpazo.sty) is provided in psnfss (a required -longdesc part of any LaTeX distribution). -runfiles size=41 - RELOC/fonts/afm/public/mathpazo/fplmb.afm - RELOC/fonts/afm/public/mathpazo/fplmbb.afm - RELOC/fonts/afm/public/mathpazo/fplmbi.afm - RELOC/fonts/afm/public/mathpazo/fplmr.afm - RELOC/fonts/afm/public/mathpazo/fplmri.afm - RELOC/fonts/tfm/public/mathpazo/fplmb.tfm - RELOC/fonts/tfm/public/mathpazo/fplmbb.tfm - RELOC/fonts/tfm/public/mathpazo/fplmbi.tfm - RELOC/fonts/tfm/public/mathpazo/fplmr.tfm - RELOC/fonts/tfm/public/mathpazo/fplmri.tfm - RELOC/fonts/tfm/public/mathpazo/zplmb7m.tfm - RELOC/fonts/tfm/public/mathpazo/zplmb7t.tfm - RELOC/fonts/tfm/public/mathpazo/zplmb7y.tfm - RELOC/fonts/tfm/public/mathpazo/zplmr7m.tfm - RELOC/fonts/tfm/public/mathpazo/zplmr7t.tfm - RELOC/fonts/tfm/public/mathpazo/zplmr7v.tfm - RELOC/fonts/tfm/public/mathpazo/zplmr7y.tfm - RELOC/fonts/type1/public/mathpazo/fplmb.pfb - RELOC/fonts/type1/public/mathpazo/fplmbb.pfb - RELOC/fonts/type1/public/mathpazo/fplmbi.pfb - RELOC/fonts/type1/public/mathpazo/fplmr.pfb - RELOC/fonts/type1/public/mathpazo/fplmri.pfb - RELOC/fonts/vf/public/mathpazo/zplmb7m.vf - RELOC/fonts/vf/public/mathpazo/zplmb7t.vf - RELOC/fonts/vf/public/mathpazo/zplmb7y.vf - RELOC/fonts/vf/public/mathpazo/zplmr7m.vf - RELOC/fonts/vf/public/mathpazo/zplmr7t.vf - RELOC/fonts/vf/public/mathpazo/zplmr7v.vf - RELOC/fonts/vf/public/mathpazo/zplmr7y.vf -docfiles size=109 - RELOC/doc/latex/mathpazo/README.txt - RELOC/doc/latex/mathpazo/gpl.txt - RELOC/doc/latex/mathpazo/mapfplm.tex - RELOC/doc/latex/mathpazo/mapppl.tex - RELOC/doc/latex/mathpazo/mapzplm.tex - RELOC/doc/latex/mathpazo/pazofnst.tex - RELOC/doc/latex/mathpazo/pazotest.pdf -srcfiles size=117 - RELOC/source/latex/mathpazo/Makefile - RELOC/source/latex/mathpazo/cmbsy10.pl - RELOC/source/latex/mathpazo/cmbx10.pl - RELOC/source/latex/mathpazo/cmex10.pl - RELOC/source/latex/mathpazo/cmmi10.pl - RELOC/source/latex/mathpazo/cmmib10.pl - RELOC/source/latex/mathpazo/cmr10.pl - RELOC/source/latex/mathpazo/cmsy10.pl - RELOC/source/latex/mathpazo/fplmb.inf - RELOC/source/latex/mathpazo/fplmb.mtx - RELOC/source/latex/mathpazo/fplmb.pl - RELOC/source/latex/mathpazo/fplmbb.inf - RELOC/source/latex/mathpazo/fplmbb.mtx - RELOC/source/latex/mathpazo/fplmbb.pl - RELOC/source/latex/mathpazo/fplmbi.inf - RELOC/source/latex/mathpazo/fplmbi.mtx - RELOC/source/latex/mathpazo/fplmbi.pl - RELOC/source/latex/mathpazo/fplmr.inf - RELOC/source/latex/mathpazo/fplmr.mtx - RELOC/source/latex/mathpazo/fplmr.pl - RELOC/source/latex/mathpazo/fplmri.inf - RELOC/source/latex/mathpazo/fplmri.mtx - RELOC/source/latex/mathpazo/fplmri.pl - RELOC/source/latex/mathpazo/haxzplmb.mtx - RELOC/source/latex/mathpazo/haxzplmr.mtx - RELOC/source/latex/mathpazo/inf/fplmb.inf - RELOC/source/latex/mathpazo/inf/fplmbb.inf - RELOC/source/latex/mathpazo/inf/fplmbi.inf - RELOC/source/latex/mathpazo/inf/fplmr.inf - RELOC/source/latex/mathpazo/inf/fplmri.inf - RELOC/source/latex/mathpazo/nokernum.mtx - RELOC/source/latex/mathpazo/omsnames.mtx - RELOC/source/latex/mathpazo/pazofnst/Makefile - RELOC/source/latex/mathpazo/pazofnst/cmbsy10.pl - RELOC/source/latex/mathpazo/pazofnst/cmbx10.pl - RELOC/source/latex/mathpazo/pazofnst/cmex10.pl - RELOC/source/latex/mathpazo/pazofnst/cmmi10.pl - RELOC/source/latex/mathpazo/pazofnst/cmmib10.pl - RELOC/source/latex/mathpazo/pazofnst/cmr10.pl - RELOC/source/latex/mathpazo/pazofnst/cmsy10.pl - RELOC/source/latex/mathpazo/pazofnst/haxzplmb.mtx - RELOC/source/latex/mathpazo/pazofnst/haxzplmr.mtx - RELOC/source/latex/mathpazo/pazofnst/nokernum.mtx - RELOC/source/latex/mathpazo/pazofnst/omsnames.mtx - RELOC/source/latex/mathpazo/pazofnst/pazofnst.tex - RELOC/source/latex/mathpazo/pazofnst/unsetcm4pl.mtx - RELOC/source/latex/mathpazo/pazofnst/unsetint.mtx - RELOC/source/latex/mathpazo/pazofnst/unsetosf.mtx - RELOC/source/latex/mathpazo/pazofnst/unsetpl4cm.mtx - RELOC/source/latex/mathpazo/pazofnst/unsetpunct.mtx - RELOC/source/latex/mathpazo/pazofnst/zplmbgop.mtx - RELOC/source/latex/mathpazo/pazofnst/zplmsum.mtx - RELOC/source/latex/mathpazo/pplr8a.mtx - RELOC/source/latex/mathpazo/unsetcm4pl.mtx - RELOC/source/latex/mathpazo/unsetint.mtx - RELOC/source/latex/mathpazo/unsetosf.mtx - RELOC/source/latex/mathpazo/unsetpl4cm.mtx - RELOC/source/latex/mathpazo/unsetpunct.mtx - RELOC/source/latex/mathpazo/zplmbgop.mtx - RELOC/source/latex/mathpazo/zplmsum.mtx -catalogue-ctan /fonts/mathpazo -catalogue-date 2014-05-14 18:47:06 +0200 -catalogue-license gpl -catalogue-version 1.003 - -name mathspec -category Package -revision 15878 -shortdesc Specify arbitrary fonts for mathematics in XeTeX. -relocated 1 -longdesc The mathspec package provides an interface to typeset -longdesc mathematics in XeLaTeX with arbitrary text fonts using fontspec -longdesc as a backend. The package is under development and later -longdesc versions might to be incompatible with this version, as this -longdesc version is incompatible with earlier versions. The package -longdesc requires at least version 0.9995 of XeTeX. -runfiles size=11 - RELOC/tex/xelatex/mathspec/mathspec.sty -docfiles size=94 - RELOC/doc/xelatex/mathspec/README - RELOC/doc/xelatex/mathspec/mathspec.pdf - RELOC/doc/xelatex/mathspec/mathspec.tex -catalogue-ctan /macros/xetex/latex/mathspec -catalogue-date 2014-05-14 18:47:06 +0200 -catalogue-license lppl -catalogue-version 0.2 - -name mathspic -category Package -revision 31957 -shortdesc A Perl filter program for use with PiCTeX. -longdesc MathsPIC(Perl) is a development of the earlier MathsPIC(DOS) -longdesc program, now implemented as a Perl script, being much more -longdesc portable than the earlier program. MathsPIC parses a plain text -longdesc input file and generates a plain text output-file containing -longdesc commands for drawing a diagram. Version 1.0 produces output -longdesc containing PiCTeX and (La)TeX commands, which may then be -longdesc processed by plain TeX or LaTeX in the usual way. MathsPIC also -longdesc outputs a comprehensive log-file. MathsPIC facilitates creating -longdesc figures using PiCTeX by providing an environment for -longdesc manipulating named points and also allows the use of variables -longdesc and maths (advance, multiply, and divide)--in short--it takes -longdesc the pain out of PiCTeX. Both the original DOS version and the -longdesc new Perl version are available. -depend mathspic.ARCH -runfiles size=33 - texmf-dist/scripts/mathspic/mathspic.pl - texmf-dist/tex/latex/mathspic/mathspic.sty -docfiles size=1303 - texmf-dist/doc/latex/mathspic/HELP.txt - texmf-dist/doc/latex/mathspic/MATHSPIC.BAT - texmf-dist/doc/latex/mathspic/README.txt - texmf-dist/doc/latex/mathspic/grabtexdata.tex - texmf-dist/doc/latex/mathspic/mathsPICfigures.zip - texmf-dist/doc/latex/mathspic/mathsPICmanual.pdf - texmf-dist/doc/latex/mathspic/mathsPICmanual.zip - texmf-dist/doc/latex/mathspic/mathspic.lib - texmf-dist/doc/latex/mathspic/mathspic.sh - texmf-dist/doc/latex/mathspic/sourcecode113.html - texmf-dist/doc/latex/mathspic/sourcecode113.nw - texmf-dist/doc/latex/mathspic/sourcecode113.pdf - texmf-dist/doc/man/man1/mathspic.1 - texmf-dist/doc/man/man1/mathspic.man1.pdf -catalogue-ctan /graphics/mathspic -catalogue-date 2012-05-21 15:40:40 +0200 +longdesc Mathabx is a set of 3 mathematical symbols font series: matha, +longdesc mathb and mathx. They are defined by Metafont code and should +longdesc be of reasonable quality (bitmap output). Things change from +longdesc time to time, so there is no claim of stability (encoding, +longdesc metrics, design). The package includes Plain TeX and LaTeX +longdesc support macros. A version of the fonts, in Adobe Type 1 format, +longdesc is also available. +containersize 102916 +containerchecksum 400bb43207c43192321cfe1b658c85a07410778e7694ab1604b992025d69300bb2d4c2cb7866a255dc4988c843dd3b92c33e527c12f087bb560cba4520115643 +doccontainersize 497084 +doccontainerchecksum e1f9f96794f6d20dd75bd7ceabd40993e56d5315848bbea8a6812a16f74c0fb92ddc6356c71aaa1367c47b1dc26a3711793ec88cf0b90d391f8157fe20f77196 +docfiles size=193 + RELOC/doc/fonts/mathabx/README details="Readme" + RELOC/doc/fonts/mathabx/mathtest.pdf details="Package documentation, including font lists" + RELOC/doc/fonts/mathabx/mathtest.tex + RELOC/doc/fonts/mathabx/testmac.tex +runfiles size=215 + RELOC/fonts/source/public/mathabx/matha10.mf + RELOC/fonts/source/public/mathabx/matha12.mf + RELOC/fonts/source/public/mathabx/matha5.mf + RELOC/fonts/source/public/mathabx/matha6.mf + RELOC/fonts/source/public/mathabx/matha7.mf + RELOC/fonts/source/public/mathabx/matha8.mf + RELOC/fonts/source/public/mathabx/matha9.mf + RELOC/fonts/source/public/mathabx/mathacnt.mf + RELOC/fonts/source/public/mathabx/mathadrv.mf + RELOC/fonts/source/public/mathabx/matharrw.mf + RELOC/fonts/source/public/mathabx/mathastr.mf + RELOC/fonts/source/public/mathabx/mathastrotest10.mf + RELOC/fonts/source/public/mathabx/mathastrotestdrv.mf + RELOC/fonts/source/public/mathabx/mathasym.mf + RELOC/fonts/source/public/mathabx/mathb10.mf + RELOC/fonts/source/public/mathabx/mathb12.mf + RELOC/fonts/source/public/mathabx/mathb5.mf + RELOC/fonts/source/public/mathabx/mathb6.mf + RELOC/fonts/source/public/mathabx/mathb7.mf + RELOC/fonts/source/public/mathabx/mathb8.mf + RELOC/fonts/source/public/mathabx/mathb9.mf + RELOC/fonts/source/public/mathabx/mathbase.mf + RELOC/fonts/source/public/mathabx/mathbdel.mf + RELOC/fonts/source/public/mathabx/mathbdrv.mf + RELOC/fonts/source/public/mathabx/mathbigs.mf + RELOC/fonts/source/public/mathabx/mathbsym.mf + RELOC/fonts/source/public/mathabx/mathc10.mf + RELOC/fonts/source/public/mathabx/mathcall.mf + RELOC/fonts/source/public/mathabx/mathcallgreek.mf + RELOC/fonts/source/public/mathabx/mathcdrv.mf + RELOC/fonts/source/public/mathabx/mathfine.mf + RELOC/fonts/source/public/mathabx/mathgrey.mf + RELOC/fonts/source/public/mathabx/mathhbrw.mf + RELOC/fonts/source/public/mathabx/mathineq.mf + RELOC/fonts/source/public/mathabx/mathltlk.mf + RELOC/fonts/source/public/mathabx/mathmbcb.mf + RELOC/fonts/source/public/mathabx/mathprmt.mf + RELOC/fonts/source/public/mathabx/mathsmsy.mf + RELOC/fonts/source/public/mathabx/mathsubs.mf + RELOC/fonts/source/public/mathabx/mathsymb.mf + RELOC/fonts/source/public/mathabx/mathu10.mf + RELOC/fonts/source/public/mathabx/mathudrv.mf + RELOC/fonts/source/public/mathabx/mathusym.mf + RELOC/fonts/source/public/mathabx/mathux10.mf + RELOC/fonts/source/public/mathabx/mathuxdrv.mf + RELOC/fonts/source/public/mathabx/mathx10.mf + RELOC/fonts/source/public/mathabx/mathx12.mf + RELOC/fonts/source/public/mathabx/mathx5.mf + RELOC/fonts/source/public/mathabx/mathx6.mf + RELOC/fonts/source/public/mathabx/mathx7.mf + RELOC/fonts/source/public/mathabx/mathx8.mf + RELOC/fonts/source/public/mathabx/mathx9.mf + RELOC/fonts/source/public/mathabx/mathxdrv.mf + RELOC/fonts/source/public/mathabx/maydigit.mf + RELOC/fonts/tfm/public/mathabx/matha10.tfm + RELOC/fonts/tfm/public/mathabx/matha12.tfm + RELOC/fonts/tfm/public/mathabx/matha5.tfm + RELOC/fonts/tfm/public/mathabx/matha6.tfm + RELOC/fonts/tfm/public/mathabx/matha7.tfm + RELOC/fonts/tfm/public/mathabx/matha8.tfm + RELOC/fonts/tfm/public/mathabx/matha9.tfm + RELOC/fonts/tfm/public/mathabx/mathastrotest10.tfm + RELOC/fonts/tfm/public/mathabx/mathb10.tfm + RELOC/fonts/tfm/public/mathabx/mathb12.tfm + RELOC/fonts/tfm/public/mathabx/mathb5.tfm + RELOC/fonts/tfm/public/mathabx/mathb6.tfm + RELOC/fonts/tfm/public/mathabx/mathb7.tfm + RELOC/fonts/tfm/public/mathabx/mathb8.tfm + RELOC/fonts/tfm/public/mathabx/mathb9.tfm + RELOC/fonts/tfm/public/mathabx/mathc10.tfm + RELOC/fonts/tfm/public/mathabx/mathu10.tfm + RELOC/fonts/tfm/public/mathabx/mathux10.tfm + RELOC/fonts/tfm/public/mathabx/mathx10.tfm + RELOC/fonts/tfm/public/mathabx/mathx12.tfm + RELOC/fonts/tfm/public/mathabx/mathx5.tfm + RELOC/fonts/tfm/public/mathabx/mathx6.tfm + RELOC/fonts/tfm/public/mathabx/mathx7.tfm + RELOC/fonts/tfm/public/mathabx/mathx8.tfm + RELOC/fonts/tfm/public/mathabx/mathx9.tfm + RELOC/tex/generic/mathabx/mathabx.dcl + RELOC/tex/generic/mathabx/mathabx.sty + RELOC/tex/generic/mathabx/mathabx.tex +catalogue-contact-home http://www-math.univ-poitiers.fr/~phan/ +catalogue-ctan /fonts/mathabx +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl -catalogue-version 1.13 - -name mathspic.i386-linux -category Package -revision 23661 -shortdesc i386-linux files of mathspic -binfiles arch=i386-linux size=1 - bin/i386-linux/mathspic +catalogue-topics font font-mf font-symbol-maths -name maths-symbols +name mathabx-type1 category Package -revision 37763 -shortdesc Summary of mathematical symbols available in LaTeX. +revision 21129 +shortdesc Outline version of the mathabx fonts relocated 1 -longdesc A predecessor of the comprehensive symbols list, covering -longdesc mathematical symbols available in standard LaTeX (including the -longdesc AMS symbols, if available at compile time). -docfiles size=94 - RELOC/doc/latex/maths-symbols/README - RELOC/doc/latex/maths-symbols/maths-symbols.pdf - RELOC/doc/latex/maths-symbols/maths-symbols.tex - RELOC/doc/latex/maths-symbols/scriptfonts.pdf - RELOC/doc/latex/maths-symbols/scriptfonts.tex -catalogue-ctan /info/symbols/math -catalogue-date 2015-07-03 23:43:11 +0200 -catalogue-license lppl1.2 -catalogue-topics font-index -catalogue-version 3.4 +longdesc This is an Adobe Type 1 outline version of the mathabx fonts. +depend mathabx +execute addMap mathabx.map +containersize 1858004 +containerchecksum ae2272ac7d79a3bb1a655000a2d5fa1c3d948363763abe194cbac4084d5ef60492648977660c3d9dfbc2c70bea3c207d031d2147097fb1d7af503aa80f257d1c +doccontainersize 916 +doccontainerchecksum 2504e85d659cba06fa25ae4e154309a6d3dcba2ac8bae0d4066b6637f19081987b0bc774902365e5b723f4b6c35cad07709e316ec1893a018baabc699d755e8b +docfiles size=1 + RELOC/doc/fonts/mathabx-type1/README details="Readme" +runfiles size=500 + RELOC/fonts/map/dvips/mathabx-type1/mathabx.map + RELOC/fonts/type1/public/mathabx-type1/matha10.pfb + RELOC/fonts/type1/public/mathabx-type1/matha12.pfb + RELOC/fonts/type1/public/mathabx-type1/matha5.pfb + RELOC/fonts/type1/public/mathabx-type1/matha6.pfb + RELOC/fonts/type1/public/mathabx-type1/matha7.pfb + RELOC/fonts/type1/public/mathabx-type1/matha8.pfb + RELOC/fonts/type1/public/mathabx-type1/matha9.pfb + RELOC/fonts/type1/public/mathabx-type1/mathastrotest10.pfb + RELOC/fonts/type1/public/mathabx-type1/mathb10.pfb + RELOC/fonts/type1/public/mathabx-type1/mathb12.pfb + RELOC/fonts/type1/public/mathabx-type1/mathb5.pfb + RELOC/fonts/type1/public/mathabx-type1/mathb6.pfb + RELOC/fonts/type1/public/mathabx-type1/mathb7.pfb + RELOC/fonts/type1/public/mathabx-type1/mathb8.pfb + RELOC/fonts/type1/public/mathabx-type1/mathb9.pfb + RELOC/fonts/type1/public/mathabx-type1/mathc10.pfb + RELOC/fonts/type1/public/mathabx-type1/mathu10.pfb + RELOC/fonts/type1/public/mathabx-type1/mathux10.pfb + RELOC/fonts/type1/public/mathabx-type1/mathx10.pfb + RELOC/fonts/type1/public/mathabx-type1/mathx12.pfb + RELOC/fonts/type1/public/mathabx-type1/mathx5.pfb + RELOC/fonts/type1/public/mathabx-type1/mathx6.pfb + RELOC/fonts/type1/public/mathabx-type1/mathx7.pfb + RELOC/fonts/type1/public/mathabx-type1/mathx8.pfb + RELOC/fonts/type1/public/mathabx-type1/mathx9.pfb +catalogue-also mathabx +catalogue-ctan /fonts/ps-type1/mathabx +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font font-type1 font-symbol-maths -name mathtools +name mathalpha category Package -revision 37587 -shortdesc Mathematical tools to use with amsmath. +revision 51179 +shortdesc General package for loading maths alphabets in LaTeX relocated 1 -longdesc Mathtools provides a series of packages designed to enhance the -longdesc appearance of documents containing a lot of mathematics. The -longdesc main backbone is amsmath, so those unfamiliar with this -longdesc required part of the LaTeX system will probably not find the -longdesc packages very useful. Mathtools provides many useful tools for -longdesc mathematical typesetting. It is based on amsmath and fixes -longdesc various deficiencies of amsmath and standard LaTeX. It -longdesc provides: Extensible symbols, such as brackets, arrows, -longdesc harpoons, etc.; Various symbols such as \coloneqq (:=); Easy -longdesc creation of new tag forms; Showing equation numbers only for -longdesc referenced equations; Extensible arrows, harpoons and -longdesc hookarrows; Starred versions of the amsmath matrix environments -longdesc for specifying the column alignment; More building blocks: -longdesc multlined, cases-like environments, new gathered environments; -longdesc Maths versions of \makebox, \llap, \rlap etc.; Cramped math -longdesc styles; and more... Mathtools requires mhsetup. -runfiles size=26 - RELOC/tex/latex/mathtools/empheq.sty - RELOC/tex/latex/mathtools/mathtools.sty - RELOC/tex/latex/mathtools/mhsetup.sty -docfiles size=241 - RELOC/doc/latex/mathtools/README - RELOC/doc/latex/mathtools/empheq.pdf - RELOC/doc/latex/mathtools/mathtools.pdf - RELOC/doc/latex/mathtools/mhsetup.pdf -srcfiles size=93 - RELOC/source/latex/mathtools/empheq.dtx - RELOC/source/latex/mathtools/mathtools.dtx - RELOC/source/latex/mathtools/mhsetup.dtx -catalogue-ctan /macros/latex/contrib/mathtools -catalogue-date 2015-06-17 16:03:17 +0200 +longdesc Package mathalfa was renamed to mathalpha. For backward +longdesc compatibility the old name will continue to be recognized in +longdesc LaTeX documents. The package provides means of loading maths +longdesc alphabets (such as are normally addressed via macros \mathcal, +longdesc \mathbb, \mathfrak and \mathscr), offering various features +longdesc normally missing in existing packages for this job. +containersize 4348 +containerchecksum 44a6053eb3275ac9dbafe9bc4d44d403ee0e33d6faf55cfcce27dbd73c69d4ea8307be64667f61f2fed90afe27921c95cabd3be54d52b145a3e9996ab5b2f337 +doccontainersize 992900 +doccontainerchecksum 909c316ce93aeeeb4d533e777c6d44477261c928af70f17796473c05afdb40e0b0d8ec068396f86daa5cdecc27d8c8a06c5ec42713e1447a639272b541fc322b +docfiles size=248 + RELOC/doc/latex/mathalpha/README details="Readme" + RELOC/doc/latex/mathalpha/mathalpha-doc.pdf details="Package documentation" + RELOC/doc/latex/mathalpha/mathalpha-doc.tex +runfiles size=8 + RELOC/tex/latex/mathalpha/mathalfa.sty + RELOC/tex/latex/mathalpha/mathalpha.sty +catalogue-alias mathalfa +catalogue-ctan /macros/latex/contrib/mathalpha +catalogue-date 2019-05-21 16:52:38 +0200 catalogue-license lppl1.3 catalogue-topics maths -catalogue-version 1.17 +catalogue-version 1.12 -name matlab-prettifier +name mathastext category Package -revision 34323 -shortdesc Pretty-print Matlab source code. +revision 48458 +shortdesc Use the text font in maths mode relocated 1 -longdesc The package extends the facilities of the listings package, to -longdesc pretty-print Matlab and Octave source code. (Note that support -longdesc of Octave syntax is not complete.) -runfiles size=4 - RELOC/tex/latex/matlab-prettifier/matlab-prettifier.sty -docfiles size=164 - RELOC/doc/latex/matlab-prettifier/README - RELOC/doc/latex/matlab-prettifier/matlab-prettifier.pdf -srcfiles size=23 - RELOC/source/latex/matlab-prettifier/matlab-prettifier.dtx - RELOC/source/latex/matlab-prettifier/matlab-prettifier.ins -catalogue-ctan /macros/latex/contrib/matlab-prettifier -catalogue-date 2015-03-30 22:55:45 +0200 +longdesc The package uses a text font (usually the document's text font) +longdesc for the letters of the Latin alphabet needed when typesetting +longdesc mathematics. (Optionally, other characters in the font may also +longdesc be used). This facility makes possible (for a document with +longdesc simple mathematics) a far wider choice of text font, with +longdesc little worry that no specially designed accompanying maths +longdesc fonts are available. The package also offers a simple mechanism +longdesc for using many different choices of (text hence, now, maths) +longdesc font in the same document. Of course, using one font for two +longdesc purposes helps produce smaller PDF files. The package, if +longdesc running under LuaTeX, requires the TeX live 2013 distribution +longdesc (or later). +containersize 14936 +containerchecksum b6ad1a9a2c251dc6a90a116bd45d8b0517d0c0950258b04d98ede6c859c05ece3819533a5f1d3517d71050ec71fe5b976c78cff10c5900b9c2d409d303cdafee +doccontainersize 495868 +doccontainerchecksum 01f033132afe98e838df96d4039ca2c8597932b67a6bef060a04dc2e3ab4b965d01d06094607a611848f32ec1b963ec9ef10e36ec7a5ead0e806d67ab7a5007c +docfiles size=129 + RELOC/doc/latex/mathastext/README.md details="Readme" + RELOC/doc/latex/mathastext/mathastext.pdf details="Package documentation" + RELOC/doc/latex/mathastext/mathastexttestalphabets.pdf details="Output of test script" +srccontainersize 86868 +srccontainerchecksum 64697ac3920745da40a8e44c61c299f87ea92cab736b42b53d0062032c53e60bd7fb858449e3c13741360f490eccd38b7c3ababe4cd194efccc8b9d5f7c8ae16 +srcfiles size=87 + RELOC/source/latex/mathastext/mathastext.dtx + RELOC/source/latex/mathastext/mathastext.ins +runfiles size=22 + RELOC/tex/latex/mathastext/mathastext.sty +catalogue-contact-home http://jf.burnol.free.fr/mathastext.html +catalogue-ctan /macros/latex/contrib/mathastext +catalogue-date 2018-08-22 20:22:54 +0200 catalogue-license lppl1.3 -catalogue-version 0.3 - -name mattens -category Package -revision 17582 -shortdesc Matrices/tensor typesetting. -relocated 1 -longdesc The mattens package contains the definitions to typeset -longdesc matrices, vectors and tensors as used in the engineering -longdesc community for the representation of common vectors and tensors -longdesc such as forces, velocities, moments of inertia, etc. -runfiles size=3 - RELOC/tex/latex/mattens/mattens.sty -docfiles size=191 - RELOC/doc/latex/mattens/README - RELOC/doc/latex/mattens/mattens.pdf - RELOC/doc/latex/mattens/mattens_sample.pdf - RELOC/doc/latex/mattens/mattens_sample_src.zip -srcfiles size=15 - RELOC/source/latex/mattens/mattens.dtx - RELOC/source/latex/mattens/mattens.ins -catalogue-ctan /macros/latex/contrib/mattens -catalogue-date 2012-07-06 17:29:31 +0200 -catalogue-license lppl -catalogue-version 1.3 - -name maybemath -category Package -revision 15878 -shortdesc Make math bold or italic according to context. -relocated 1 -longdesc The \maybebm and \maybeit macros can be used in maths -longdesc expressions to make the arguments typeset as bold or italic -longdesc respectively if the surrounding context is appropriate. They -longdesc are useful for writing user macros for use in general contexts. -longdesc \maybebm is especially appropriate when section titles contain -longdesc math expressions, since the title will appear bold but the -longdesc header and table of contents usually replicate the title in -longdesc normal width. It uses the bm package to make things bold -longdesc \maybeit performs a similar role to \mathrm{} but the maths -longdesc expression will be italicised if the surrounding text is. -longdesc \maybeitsubscript is provided to shift subscripts to the left -longdesc if the expression is italicised. -runfiles size=1 - RELOC/tex/latex/maybemath/maybemath.sty -docfiles size=20 - RELOC/doc/latex/maybemath/README - RELOC/doc/latex/maybemath/maybemath.pdf - RELOC/doc/latex/maybemath/maybemath.tex -catalogue-ctan /macros/latex/contrib/maybemath -catalogue-date 2012-05-10 16:56:05 +0200 -catalogue-license lppl - -name mbenotes -category Package -revision 31813 -shortdesc Notes in tables or images. -relocated 1 -longdesc The package defines a command \tabnote, which stores notes for -longdesc later processing by the command \thetabnotes, and a -longdesc corresponding \imgnote for images. The package is derived from -longdesc mechanisms in the package endnotes. -runfiles size=10 - RELOC/tex/latex/mbenotes/mbenotes.sty -docfiles size=87 - RELOC/doc/latex/mbenotes/README - RELOC/doc/latex/mbenotes/mbenotes.pdf - RELOC/doc/latex/mbenotes/mbenotes.tex -catalogue-ctan /macros/latex/contrib/mbenotes -catalogue-date 2014-04-07 01:03:43 +0200 +catalogue-topics font font-maths font-sel +catalogue-version 1.3t + +name mathcommand +category Package +revision 51105 +shortdesc \newcommand-like commands for defining math macros +relocated 1 +longdesc This package provides functionalities for defining macros that +longdesc have different behaviors depending on whether in math or text +longdesc mode, that absorb Primes, Indices and Exponents (PIE) as extra +longdesc parameters usable in the code; and it offers some iteration +longdesc facilities for defining macros with similar code. The primary +longdesc objective of this package is to be used together with the +longdesc knowledge package for a proper handling of mathematical +longdesc notations. +containersize 3724 +containerchecksum d634a0ce264a634eb4c58fb3a50b0363ad8f2e7664e47bf4600dd50c4de35c6ff1524a3f134a18124a1b420dd03efcd0cc751353fcca5c15273c1ae5bf0c4969 +doccontainersize 442784 +doccontainerchecksum 91d65bc138968046dec666676e98a717d3ef09a38fe77e45f8662728cced67653c025f219d6d70264181fc0e77951ffb2d51bff146ba6bc162cc11f98fb9b51d +docfiles size=111 + RELOC/doc/latex/mathcommand/README.md details="Readme" + RELOC/doc/latex/mathcommand/makefile + RELOC/doc/latex/mathcommand/mathcommand.pdf details="Package documentation" +srccontainersize 9612 +srccontainerchecksum 344eca6d615faa7a138fa8b27755b18c49a15194e6b5dfb11225b784262ab272d9516515f9e247a0574c1c15f09e59c74cce703c3544f7942ec93fd8d2695ed4 +srcfiles size=12 + RELOC/source/latex/mathcommand/mathcommand.dtx + RELOC/source/latex/mathcommand/mathcommand.ins +runfiles size=5 + RELOC/tex/latex/mathcommand/mathcommand.sty +catalogue-ctan /macros/latex/contrib/mathcommand +catalogue-date 2019-05-12 20:55:29 +0200 catalogue-license lppl1.2 -catalogue-version 2 - -name mcaption -category Package -revision 15878 -shortdesc Put captions in the margin. -relocated 1 -longdesc The mcaption package provides an mcaption environment which -longdesc puts figure or table captions in the margin. The package works -longdesc with the standard classes and with the KOMA-Script document -longdesc classes scrartcl, scrreprt and scrbook. The package requires -longdesc the changepage package. -runfiles size=2 - RELOC/tex/latex/mcaption/mcaption.sty -docfiles size=37 - RELOC/doc/latex/mcaption/CHANGES - RELOC/doc/latex/mcaption/README - RELOC/doc/latex/mcaption/example.tex - RELOC/doc/latex/mcaption/mcaption.pdf -srcfiles size=7 - RELOC/source/latex/mcaption/mcaption.dtx - RELOC/source/latex/mcaption/mcaption.ins -catalogue-ctan /macros/latex/contrib/mcaption -catalogue-date 2012-05-16 13:34:59 +0200 -catalogue-license lppl -catalogue-version 3.0 - -name mceinleger -category Package -revision 15878 -shortdesc Creating covers for music cassettes. -relocated 1 -longdesc A package for creating MC-covers on your own. It allows the -longdesc creation of simple covers as well as covers with an additional -longdesc page for more information about the cassette (table of contents -longdesc e.g.). The rotating package is required. -runfiles size=1 - RELOC/tex/latex/mceinleger/mceinleger.sty -docfiles size=15 - RELOC/doc/latex/mceinleger/mceinleger.pdf - RELOC/doc/latex/mceinleger/mceinleger.tex -catalogue-ctan /macros/latex/contrib/mceinleger -catalogue-date 2012-05-28 12:27:21 +0200 -catalogue-license gpl - -name mcf2graph -category Package -revision 38374 -shortdesc Draw chemical structure diagrams with Metafont/MetaPost -relocated 1 -longdesc The Molecular Coding Format (MCF) is a linear notation for -longdesc describing chemical structure diagrams. This package converts -longdesc MCF to graphic files using Metafont / MetaPost. -runfiles size=13 - RELOC/metapost/mcf2graph/mcf2graph.mf -docfiles size=195 - RELOC/doc/metapost/mcf2graph/README - RELOC/doc/metapost/mcf2graph/mcf_exa_soc.mf - RELOC/doc/metapost/mcf2graph/mcf_example.pdf - RELOC/doc/metapost/mcf2graph/mcf_example.tex - RELOC/doc/metapost/mcf2graph/mcf_man_soc-032.eps - RELOC/doc/metapost/mcf2graph/mcf_man_soc.mf - RELOC/doc/metapost/mcf2graph/mcf_manual.pdf - RELOC/doc/metapost/mcf2graph/mcf_manual.tex - RELOC/doc/metapost/mcf2graph/mcf_mplib_exa.pdf - RELOC/doc/metapost/mcf2graph/mcf_mplib_exa.tex -catalogue-ctan /graphics/mcf2graph -catalogue-date 2015-09-14 11:04:55 +0200 -catalogue-license bsd -catalogue-topics graphics graphics-mpost chemistry -catalogue-version 3.63 - -name mciteplus -category Package -revision 31648 -shortdesc Enhanced multiple citations. -relocated 1 -longdesc The mciteplus LaTeX package is an enhanced reimplementation of -longdesc Thorsten Ohl's mcite package which provides support for the -longdesc grouping of multiple citations together as is often done in -longdesc physics journals. An extensive set of features provide for -longdesc other applications such as reference sublisting. -runfiles size=70 - RELOC/bibtex/bst/mciteplus/IEEEtranM.bst - RELOC/bibtex/bst/mciteplus/IEEEtranMN.bst - RELOC/bibtex/bst/mciteplus/apsrevM.bst - RELOC/bibtex/bst/mciteplus/apsrmpM.bst - RELOC/tex/latex/mciteplus/mciteplus.sty -docfiles size=138 - RELOC/doc/latex/mciteplus/README - RELOC/doc/latex/mciteplus/changelog.txt - RELOC/doc/latex/mciteplus/mciteplus_code.txt - RELOC/doc/latex/mciteplus/mciteplus_doc.pdf - RELOC/doc/latex/mciteplus/mciteplus_doc.tex -catalogue-ctan /macros/latex/contrib/mciteplus -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.2 - -name mcite -category Package -revision 18173 -shortdesc Multiple items in a single citation. -relocated 1 -longdesc The mcite package allows the user to collapse multiple -longdesc citations into one, as is customary in physics journals. The -longdesc package requires a customised BibTeX style for its work; the -longdesc documentation explains how to do that customisation. -runfiles size=2 - RELOC/tex/latex/mcite/mcite.sty -docfiles size=45 - RELOC/doc/latex/mcite/COPYING - RELOC/doc/latex/mcite/README - RELOC/doc/latex/mcite/mcite.bib - RELOC/doc/latex/mcite/mcite.pdf -srcfiles size=7 - RELOC/source/latex/mcite/Makefile - RELOC/source/latex/mcite/mcite.drv - RELOC/source/latex/mcite/mcite.dtx - RELOC/source/latex/mcite/mcite.ins -catalogue-ctan /macros/latex/contrib/mcite -catalogue-date 2012-05-10 16:56:05 +0200 -catalogue-license gpl -catalogue-version 1.6 - -name mcmthesis -category Package -revision 37020 -shortdesc Template designed for MCM/ICM -relocated 1 -longdesc The package offers a template for MCM (The Mathematical Contest -longdesc in Modeling) and ICM (The Interdisciplinary Contest in -longdesc Modeling). -runfiles size=2 - RELOC/tex/latex/mcmthesis/mcmthesis.cls -docfiles size=210 - RELOC/doc/latex/mcmthesis/LICENSE.tex - RELOC/doc/latex/mcmthesis/README - RELOC/doc/latex/mcmthesis/README.tex - RELOC/doc/latex/mcmthesis/code/mcmthesis-matlab1.m - RELOC/doc/latex/mcmthesis/code/mcmthesis-sudoku.CPP - RELOC/doc/latex/mcmthesis/figures/mcmthesis-aaa-eps-converted-to.pdf - RELOC/doc/latex/mcmthesis/figures/mcmthesis-aaa.eps - RELOC/doc/latex/mcmthesis/figures/mcmthesis-logo.pdf - RELOC/doc/latex/mcmthesis/mcmthesis-demo.pdf - RELOC/doc/latex/mcmthesis/mcmthesis-demo.tex - RELOC/doc/latex/mcmthesis/mcmthesis.pdf -srcfiles size=10 - RELOC/source/latex/mcmthesis/mcmthesis.dtx -catalogue-ctan /macros/latex/contrib/mcmthesis -catalogue-date 2015-04-23 19:18:37 +0200 -catalogue-license lppl1.3 -catalogue-version 5.1.0f - -name mdframed -category Package -revision 31075 -shortdesc Framed environments that can split at page boundaries. -relocated 1 -longdesc The package develops the facilities of framed in providing -longdesc breakable framed and coloured boxes. The user may instruct the -longdesc package to perform its operations using default LaTeX commands, -longdesc PStricks or TikZ. -runfiles size=54 - RELOC/tex/latex/mdframed/ltxmdf.cls - RELOC/tex/latex/mdframed/md-frame-0.mdf - RELOC/tex/latex/mdframed/md-frame-1.mdf - RELOC/tex/latex/mdframed/md-frame-2.mdf - RELOC/tex/latex/mdframed/md-frame-3.mdf - RELOC/tex/latex/mdframed/mdframed.sty -docfiles size=470 - RELOC/doc/latex/mdframed/README.txt - RELOC/doc/latex/mdframed/ctan-lion.png - RELOC/doc/latex/mdframed/mdframed-example-default.pdf - RELOC/doc/latex/mdframed/mdframed-example-default.tex - RELOC/doc/latex/mdframed/mdframed-example-pstricks.pdf - RELOC/doc/latex/mdframed/mdframed-example-pstricks.tex - RELOC/doc/latex/mdframed/mdframed-example-texsx.pdf - RELOC/doc/latex/mdframed/mdframed-example-texsx.tex - RELOC/doc/latex/mdframed/mdframed-example-tikz.pdf - RELOC/doc/latex/mdframed/mdframed-example-tikz.tex - RELOC/doc/latex/mdframed/mdframed.pdf -srcfiles size=71 - RELOC/source/latex/mdframed/Makefile - RELOC/source/latex/mdframed/mdframed.dtx - RELOC/source/latex/mdframed/mdframed.ins - RELOC/source/latex/mdframed/mdframedmake.bat -catalogue-ctan /macros/latex/contrib/mdframed -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.9b - -name mdputu -category Package -revision 20298 -shortdesc Upright digits in Adobe Utopia Italic. -relocated 1 -longdesc The Annals of Mathematics uses italics for theorems. However, -longdesc slanted digits and parentheses look disturbing when surrounded -longdesc by (upright) mathematics. This package provides virtual fonts -longdesc with italics and upright digits and punctuation, as an -longdesc extension to Mathdesign's Utopia bundle. -runfiles size=29 - RELOC/fonts/tfm/public/mdputu/mdputubi7t.tfm - RELOC/fonts/tfm/public/mdputu/mdputubi8t.tfm - RELOC/fonts/tfm/public/mdputu/mdputuri7t.tfm - RELOC/fonts/tfm/public/mdputu/mdputuri8t.tfm - RELOC/fonts/vf/public/mdputu/mdputubi7t.vf - RELOC/fonts/vf/public/mdputu/mdputubi8t.vf - RELOC/fonts/vf/public/mdputu/mdputuri7t.vf - RELOC/fonts/vf/public/mdputu/mdputuri8t.vf - RELOC/tex/latex/mdputu/mdputu.sty - RELOC/tex/latex/mdputu/ot1mdputu.fd - RELOC/tex/latex/mdputu/t1mdputu.fd -docfiles size=61 - RELOC/doc/latex/mdputu/README - RELOC/doc/latex/mdputu/mdputu.dtx - RELOC/doc/latex/mdputu/mdputu.ins - RELOC/doc/latex/mdputu/mdputu.pdf - RELOC/doc/latex/mdputu/sample.pdf - RELOC/doc/latex/mdputu/sample.tex -catalogue-ctan /fonts/mdputu -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license other-free -catalogue-version 1.2 - -name mdsymbol -category Package -revision 28399 -shortdesc Symbol fonts to match Adobe Myriad Pro. -relocated 1 -longdesc The package provides a font of mathematical symbols, MyriadPro -longdesc The font is designed as a companion to Adobe Myriad Pro, but it -longdesc might also fit well with other contemporary typefaces. -execute addMap mdsymbol.map -runfiles size=469 - RELOC/fonts/enc/dvips/mdsymbol/mdsymbol-a.enc - RELOC/fonts/enc/dvips/mdsymbol/mdsymbol-b.enc - RELOC/fonts/enc/dvips/mdsymbol/mdsymbol-c.enc - RELOC/fonts/enc/dvips/mdsymbol/mdsymbol-d.enc - RELOC/fonts/enc/dvips/mdsymbol/mdsymbol-e.enc - RELOC/fonts/enc/dvips/mdsymbol/mdsymbol-f.enc - RELOC/fonts/map/dvips/mdsymbol/mdsymbol.map - RELOC/fonts/opentype/public/mdsymbol/MdSymbol-Bold.otf - RELOC/fonts/opentype/public/mdsymbol/MdSymbol-Light.otf - RELOC/fonts/opentype/public/mdsymbol/MdSymbol-Regular.otf - RELOC/fonts/opentype/public/mdsymbol/MdSymbol-Semibold.otf - RELOC/fonts/source/public/mdsymbol/MdSymbolA-Bold.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolA-Light.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolA-Regular.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolA-Semibold.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolA.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolB-Bold.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolB-Light.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolB-Regular.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolB-Semibold.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolB.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolC-Bold.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolC-Light.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolC-Regular.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolC-Semibold.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolC.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolD-Bold.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolD-Light.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolD-Regular.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolD-Semibold.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolD.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolE-Bold.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolE-Light.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolE-Regular.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolE-Semibold.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolE.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolF-Bold.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolF-Light.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolF-Regular.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolF-Semibold.mf - RELOC/fonts/source/public/mdsymbol/MdSymbolF.mf - RELOC/fonts/source/public/mdsymbol/mdaccents.mf - RELOC/fonts/source/public/mdsymbol/mdarrows.mf - RELOC/fonts/source/public/mdsymbol/mdbase.mf - RELOC/fonts/source/public/mdsymbol/mddelims.mf - RELOC/fonts/source/public/mdsymbol/mdgeometric.mf - RELOC/fonts/source/public/mdsymbol/mdoperators.mf - RELOC/fonts/source/public/mdsymbol/mdrelations.mf - RELOC/fonts/source/public/mdsymbol/mdturnstile.mf - RELOC/fonts/tfm/public/mdsymbol/MdSymbolA-Bold.tfm - RELOC/fonts/tfm/public/mdsymbol/MdSymbolA-Light.tfm - RELOC/fonts/tfm/public/mdsymbol/MdSymbolA-Regular.tfm - RELOC/fonts/tfm/public/mdsymbol/MdSymbolA-Semibold.tfm - RELOC/fonts/tfm/public/mdsymbol/MdSymbolB-Bold.tfm - RELOC/fonts/tfm/public/mdsymbol/MdSymbolB-Light.tfm - RELOC/fonts/tfm/public/mdsymbol/MdSymbolB-Regular.tfm - RELOC/fonts/tfm/public/mdsymbol/MdSymbolB-Semibold.tfm - RELOC/fonts/tfm/public/mdsymbol/MdSymbolC-Bold.tfm - RELOC/fonts/tfm/public/mdsymbol/MdSymbolC-Light.tfm - RELOC/fonts/tfm/public/mdsymbol/MdSymbolC-Regular.tfm - RELOC/fonts/tfm/public/mdsymbol/MdSymbolC-Semibold.tfm - RELOC/fonts/tfm/public/mdsymbol/MdSymbolD-Bold.tfm - RELOC/fonts/tfm/public/mdsymbol/MdSymbolD-Light.tfm - RELOC/fonts/tfm/public/mdsymbol/MdSymbolD-Regular.tfm - RELOC/fonts/tfm/public/mdsymbol/MdSymbolD-Semibold.tfm - RELOC/fonts/tfm/public/mdsymbol/MdSymbolE-Bold.tfm - RELOC/fonts/tfm/public/mdsymbol/MdSymbolE-Light.tfm - RELOC/fonts/tfm/public/mdsymbol/MdSymbolE-Regular.tfm - RELOC/fonts/tfm/public/mdsymbol/MdSymbolE-Semibold.tfm - RELOC/fonts/tfm/public/mdsymbol/MdSymbolF-Bold.tfm - RELOC/fonts/tfm/public/mdsymbol/MdSymbolF-Light.tfm - RELOC/fonts/tfm/public/mdsymbol/MdSymbolF-Regular.tfm - RELOC/fonts/tfm/public/mdsymbol/MdSymbolF-Semibold.tfm - RELOC/fonts/type1/public/mdsymbol/MdSymbolA-Bold.pfb - RELOC/fonts/type1/public/mdsymbol/MdSymbolA-Light.pfb - RELOC/fonts/type1/public/mdsymbol/MdSymbolA-Regular.pfb - RELOC/fonts/type1/public/mdsymbol/MdSymbolA-Semibold.pfb - RELOC/fonts/type1/public/mdsymbol/MdSymbolB-Bold.pfb - RELOC/fonts/type1/public/mdsymbol/MdSymbolB-Light.pfb - RELOC/fonts/type1/public/mdsymbol/MdSymbolB-Regular.pfb - RELOC/fonts/type1/public/mdsymbol/MdSymbolB-Semibold.pfb - RELOC/fonts/type1/public/mdsymbol/MdSymbolC-Bold.pfb - RELOC/fonts/type1/public/mdsymbol/MdSymbolC-Light.pfb - RELOC/fonts/type1/public/mdsymbol/MdSymbolC-Regular.pfb - RELOC/fonts/type1/public/mdsymbol/MdSymbolC-Semibold.pfb - RELOC/fonts/type1/public/mdsymbol/MdSymbolD-Bold.pfb - RELOC/fonts/type1/public/mdsymbol/MdSymbolD-Light.pfb - RELOC/fonts/type1/public/mdsymbol/MdSymbolD-Regular.pfb - RELOC/fonts/type1/public/mdsymbol/MdSymbolD-Semibold.pfb - RELOC/fonts/type1/public/mdsymbol/MdSymbolE-Bold.pfb - RELOC/fonts/type1/public/mdsymbol/MdSymbolE-Light.pfb - RELOC/fonts/type1/public/mdsymbol/MdSymbolE-Regular.pfb - RELOC/fonts/type1/public/mdsymbol/MdSymbolE-Semibold.pfb - RELOC/fonts/type1/public/mdsymbol/MdSymbolF-Bold.pfb - RELOC/fonts/type1/public/mdsymbol/MdSymbolF-Light.pfb - RELOC/fonts/type1/public/mdsymbol/MdSymbolF-Regular.pfb - RELOC/fonts/type1/public/mdsymbol/MdSymbolF-Semibold.pfb - RELOC/tex/latex/mdsymbol/mdsymbol.sty -docfiles size=100 - RELOC/doc/fonts/mdsymbol/FONTLOG.txt - RELOC/doc/fonts/mdsymbol/OFL.txt - RELOC/doc/latex/mdsymbol/mdsymbol.pdf -srcfiles size=41 - RELOC/source/latex/mdsymbol/mdsymbol.dtx - RELOC/source/latex/mdsymbol/mdsymbol.ins -catalogue-ctan /fonts/mdsymbol -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license ofl -catalogue-version 0.5 - -name mdwtools -category Package -revision 15878 -shortdesc Miscellaneous tools by Mark Wooding. -relocated 1 -longdesc This collection of tools includes: support for short commands -longdesc starting with @, macros to sanitise the OT1 encoding of the -longdesc cmtt fonts; a 'do after' command; improved footnote support; -longdesc mathenv for various alignment in maths; list handling; mdwmath -longdesc which adds some minor changes to LaTeX maths; a rewrite of -longdesc LaTeX's tabular and array environments; verbatim handling; and -longdesc syntax diagrams. -runfiles size=31 - RELOC/tex/latex/mdwtools/at.sty - RELOC/tex/latex/mdwtools/cmtt.sty - RELOC/tex/latex/mdwtools/doafter.sty - RELOC/tex/latex/mdwtools/footnote.sty - RELOC/tex/latex/mdwtools/mTTcmtt.fd - RELOC/tex/latex/mdwtools/mTTenc.def - RELOC/tex/latex/mdwtools/mathenv.sty - RELOC/tex/latex/mdwtools/mdwlist.sty - RELOC/tex/latex/mdwtools/mdwmath.sty - RELOC/tex/latex/mdwtools/mdwtab.sty - RELOC/tex/latex/mdwtools/sverb.sty - RELOC/tex/latex/mdwtools/syntax.sty -docfiles size=514 - RELOC/doc/latex/mdwtools/COPYING - RELOC/doc/latex/mdwtools/README - RELOC/doc/latex/mdwtools/at.pdf - RELOC/doc/latex/mdwtools/cmtt.pdf - RELOC/doc/latex/mdwtools/doafter.pdf - RELOC/doc/latex/mdwtools/doafter.tex - RELOC/doc/latex/mdwtools/footnote.pdf - RELOC/doc/latex/mdwtools/gpl.tex - RELOC/doc/latex/mdwtools/mathenv.tex - RELOC/doc/latex/mdwtools/mdwlist.pdf - RELOC/doc/latex/mdwtools/mdwmath.pdf - RELOC/doc/latex/mdwtools/mdwtab.pdf - RELOC/doc/latex/mdwtools/mdwtools.tex - RELOC/doc/latex/mdwtools/sverb.pdf - RELOC/doc/latex/mdwtools/syntax.pdf -srcfiles size=112 - RELOC/source/latex/mdwtools/at.dtx - RELOC/source/latex/mdwtools/cmtt.dtx - RELOC/source/latex/mdwtools/doafter.dtx - RELOC/source/latex/mdwtools/footnote.dtx - RELOC/source/latex/mdwtools/mdwlist.dtx - RELOC/source/latex/mdwtools/mdwmath.dtx - RELOC/source/latex/mdwtools/mdwtab.dtx - RELOC/source/latex/mdwtools/mdwtools.ins - RELOC/source/latex/mdwtools/sverb.dtx - RELOC/source/latex/mdwtools/syntax.dtx -catalogue-ctan /macros/latex/contrib/mdwtools -catalogue-date 2014-08-20 15:31:56 +0200 -catalogue-license gpl -catalogue-version 1.05.4 - -name media9 -category Package -revision 38267 -shortdesc Multimedia inclusion package with Adobe Reader-9/X compatibility -relocated 1 -longdesc The package provides an interface to embed interactive Flash -longdesc (SWF) and 3D objects (Adobe U3D & PRC), as well as video and -longdesc sound files or streams in the popular MP4, FLV and MP3 formats -longdesc into PDF documents with Acrobat-9/X compatibility. Playback of -longdesc multimedia files uses the built-in Flash Player of Adobe Reader -longdesc and does, therefore, not depend on external plug-ins. Flash -longdesc Player supports the efficient H.264 codec for video -longdesc compression. The package is based on the RichMedia Annotation, -longdesc an Adobe addition to the PDF specification. It replaces the now -longdesc obsolete movie15 package. -runfiles size=495 - RELOC/tex/latex/media9/javascript/3Dmenu.js - RELOC/tex/latex/media9/javascript/3Dspintool.js - RELOC/tex/latex/media9/javascript/animation.js - RELOC/tex/latex/media9/javascript/asylabels.js - RELOC/tex/latex/media9/media9.sty - RELOC/tex/latex/media9/players/APlayer.swf - RELOC/tex/latex/media9/players/APlayer9.swf - RELOC/tex/latex/media9/players/SlideShow.swf - RELOC/tex/latex/media9/players/StrobeMediaPlayback.swf - RELOC/tex/latex/media9/players/VPlayer.swf - RELOC/tex/latex/media9/players/VPlayer9.swf -docfiles size=884 - RELOC/doc/latex/media9/ChangeLog - RELOC/doc/latex/media9/README - RELOC/doc/latex/media9/media9.pdf -srcfiles size=424 - RELOC/source/latex/media9/files/3dsystem.fig - RELOC/source/latex/media9/files/3dsystem.pdf - RELOC/source/latex/media9/files/3dsystem.tex - RELOC/source/latex/media9/files/bird.mp3 - RELOC/source/latex/media9/files/boutona.pdf - RELOC/source/latex/media9/files/boutonb.pdf - RELOC/source/latex/media9/files/boutonc.pdf - RELOC/source/latex/media9/files/boutond.pdf - RELOC/source/latex/media9/files/boutone.pdf - RELOC/source/latex/media9/files/boutonf.pdf - RELOC/source/latex/media9/files/config.xml - RELOC/source/latex/media9/files/cube.asy - RELOC/source/latex/media9/files/cube.mp4 - RELOC/source/latex/media9/files/cubeposter.png - RELOC/source/latex/media9/files/dice.u3d - RELOC/source/latex/media9/files/dice.vws - RELOC/source/latex/media9/files/dice.wrl - RELOC/source/latex/media9/files/epix.asy - RELOC/source/latex/media9/files/epix.prc - RELOC/source/latex/media9/files/epixposter.pdf - RELOC/source/latex/media9/files/mailto.png - RELOC/source/latex/media9/files/malte.js - RELOC/source/latex/media9/files/malte.u3d - RELOC/source/latex/media9/files/random.mp4 - RELOC/source/latex/media9/media9.tex - RELOC/source/latex/media9/players/APlayer.mxml - RELOC/source/latex/media9/players/APlayer9.mxml - RELOC/source/latex/media9/players/BSD-License - RELOC/source/latex/media9/players/SMPfixes.patch - RELOC/source/latex/media9/players/SlideShow.mxml - RELOC/source/latex/media9/players/StrobeMediaPlayback-license - RELOC/source/latex/media9/players/VPlayer.mxml - RELOC/source/latex/media9/players/VPlayer9.mxml -catalogue-ctan /macros/latex/contrib/media9 -catalogue-date 2015-08-18 14:23:05 +0200 -catalogue-license lppl1.3 -catalogue-topics multimedia -catalogue-version 0.58 - -name medstarbeamer -category Package -revision 38231 -shortdesc Beamer document class for MedStar Health Research Institute -relocated 1 -longdesc This is a beamer template for MedStar Health presentations. It -longdesc includes sample presentations using both .tex files and .rnw -longdesc files. The document class is obviously compatible with both. -longdesc The advantage of the .rnw file is that it can be used with -longdesc knitr such that you can weave your R code with your -longdesc presentation. -runfiles size=1 - RELOC/tex/latex/medstarbeamer/medstarbeamer.cls -docfiles size=53 - RELOC/doc/latex/medstarbeamer/README.txt - RELOC/doc/latex/medstarbeamer/medstarpresentation.Rnw - RELOC/doc/latex/medstarbeamer/medstarpresentation.pdf - RELOC/doc/latex/medstarbeamer/presentationtex.pdf -catalogue-ctan /macros/latex/contrib/medstarbeamer -catalogue-date 2015-08-28 06:44:34 +0200 -catalogue-license lppl1.3 -catalogue-topics presentation - -name meetingmins -category Package -revision 31878 -shortdesc Format written minutes of meetings. -relocated 1 -longdesc The class allows formatting of meeting minutes using \section -longdesc commands (which provide hierarchical structure). An agenda can -longdesc also be produced for distribution prior to the meeting, with -longdesc user-selected portions suppressed from printing. -runfiles size=2 - RELOC/tex/latex/meetingmins/meetingmins.cls -docfiles size=199 - RELOC/doc/latex/meetingmins/README - RELOC/doc/latex/meetingmins/meetingmins.pdf - RELOC/doc/latex/meetingmins/samples/agenda.pdf - RELOC/doc/latex/meetingmins/samples/agenda.tex - RELOC/doc/latex/meetingmins/samples/chair.pdf - RELOC/doc/latex/meetingmins/samples/chair.tex - RELOC/doc/latex/meetingmins/samples/department.min - RELOC/doc/latex/meetingmins/samples/minutes.pdf - RELOC/doc/latex/meetingmins/samples/minutes.tex -srcfiles size=8 - RELOC/source/latex/meetingmins/meetingmins.dtx - RELOC/source/latex/meetingmins/meetingmins.ins -catalogue-ctan /macros/latex/contrib/meetingmins -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.6 - -name memdesign -category Package -revision 34157 -shortdesc Notes on book design -relocated 1 -longdesc "A Few Notes on Book Design" provides an introduction to the -longdesc business of book design. It is an extended version of what used -longdesc to be the first part of the memoir users' manual. Please note -longdesc that the compiled copy, supplied in the package, uses -longdesc commercial fonts; the README file contains instructions on how -longdesc to compile the document without these fonts. -docfiles size=494 - RELOC/doc/fonts/memdesign/README - RELOC/doc/fonts/memdesign/memdesign.pdf - RELOC/doc/fonts/memdesign/memdesign.tex - RELOC/doc/fonts/memdesign/memetc.bib -catalogue-ctan /info/memdesign -catalogue-date 2014-05-20 19:24:27 +0200 -catalogue-license lppl1.3 +catalogue-topics maths macro-def macro-iterate +catalogue-version 1.01 -name memexsupp +name mathcomp category Package revision 15878 -shortdesc Experimental memoir support. -relocated 1 -longdesc A package of code proposed as supporting material for memoir. -longdesc The package is intended as a test bed for such code, which may -longdesc in the fullness of time be adopted into the main memoir -longdesc release. -runfiles size=1 - RELOC/tex/latex/memexsupp/memexsupp.sty -docfiles size=35 - RELOC/doc/latex/memexsupp/README - RELOC/doc/latex/memexsupp/memexsupp.pdf - RELOC/doc/latex/memexsupp/memexsupp.tex -catalogue-ctan /macros/latex/contrib/memexsupp -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.1 - -name MemoirChapStyles -category Package -revision 25918 -catalogue memoirchapterstyles -shortdesc Chapter styles in memoir class. -relocated 1 -longdesc A showcase of chapter styles available to users of memoir: the -longdesc six provided in the class itself, plus many from elsewhere (by -longdesc the present author and others). The package's resources apply -longdesc only to memoir, but the package draws from a number of sources -longdesc relating to standard classes, including the fncychap package, -longdesc and Vincent Zoonekynd's tutorial on headings. -docfiles size=461 - RELOC/doc/latex/MemoirChapStyles/MemoirChapStyles.pdf - RELOC/doc/latex/MemoirChapStyles/MemoirChapStyles.tex - RELOC/doc/latex/MemoirChapStyles/README -catalogue-ctan /info/latex-samples/MemoirChapStyles -catalogue-date 2012-04-11 16:14:01 +0200 -catalogue-license lppl -catalogue-version 1.7e - -name memoir -category Package -revision 37809 -shortdesc Typeset fiction, non-fiction and mathematical books. -relocated 1 -longdesc The memoir class is for typesetting poetry, fiction, non- -longdesc fiction, and mathematical works. Permissible document 'base' -longdesc font sizes range from 9 to 60pt. There is a range of page- -longdesc styles and well over a dozen chapter-styles to choose from, as -longdesc well as methods for specifying your own layouts and designs. -longdesc The class also provides the functionality of over thirty of the -longdesc more popular packages, thus simplifying document sources. The -longdesc class automatically loads an associated patch file mempatch; -longdesc the patch file may be updated from time to time, between -longdesc releases of the class itself. (The patch file stays around even -longdesc when there are no extant patches.) Users who wish to use the -longdesc hyperref package, in a document written with the memoir class, -longdesc should also use the memhfixc package (part of this bundle). -longdesc Note, however, that any current version of hyperref actually -longdesc loads the package automatically if it detects that it is -longdesc running under memoir. -runfiles size=119 - RELOC/makeindex/memoir/basic.gst - RELOC/tex/latex/memoir/mem10.clo - RELOC/tex/latex/memoir/mem11.clo - RELOC/tex/latex/memoir/mem12.clo - RELOC/tex/latex/memoir/mem14.clo - RELOC/tex/latex/memoir/mem17.clo - RELOC/tex/latex/memoir/mem20.clo - RELOC/tex/latex/memoir/mem25.clo - RELOC/tex/latex/memoir/mem30.clo - RELOC/tex/latex/memoir/mem36.clo - RELOC/tex/latex/memoir/mem48.clo - RELOC/tex/latex/memoir/mem60.clo - RELOC/tex/latex/memoir/mem9.clo - RELOC/tex/latex/memoir/memhfixc.sty - RELOC/tex/latex/memoir/memoir.cls - RELOC/tex/latex/memoir/mempatch.sty -docfiles size=1067 - RELOC/doc/latex/memoir/Makeidxglo - RELOC/doc/latex/memoir/README - RELOC/doc/latex/memoir/anvil2.mps - RELOC/doc/latex/memoir/memfonts.sty - RELOC/doc/latex/memoir/memlays.sty - RELOC/doc/latex/memoir/memman.gst - RELOC/doc/latex/memoir/memman.ist - RELOC/doc/latex/memoir/memman.pdf - RELOC/doc/latex/memoir/memman.tex - RELOC/doc/latex/memoir/memnoidxnum.tex - RELOC/doc/latex/memoir/memsty.sty - RELOC/doc/latex/memoir/titlepages.sty - RELOC/doc/latex/memoir/trims-example.tex -srcfiles size=306 - RELOC/source/latex/memoir/memoir.dtx - RELOC/source/latex/memoir/memoir.ins - RELOC/source/latex/memoir/mempatch.dtx - RELOC/source/latex/memoir/mempatch.ins -catalogue-also memdesign -catalogue-ctan /macros/latex/contrib/memoir -catalogue-date 2015-07-08 11:02:42 +0200 -catalogue-license lppl1.3 -catalogue-topics book-pub class -catalogue-version 3.7e - -name memory -category Package -revision 30452 -shortdesc Containers for data in LaTeX. +shortdesc Text symbols in maths mode relocated 1 -longdesc The package allows the user to declare single object or array -longdesc containers. -runfiles size=1 - RELOC/tex/latex/memory/memory.sty -docfiles size=9 - RELOC/doc/latex/memory/README - RELOC/doc/latex/memory/memory.pdf +longdesc A package which provides access to some interesting characters +longdesc of the Text Companion fonts (TS1 encoding) in maths mode. +containersize 1176 +containerchecksum 7dca82aff58606afd315bc18c6908946193be75f04ec456e2cede8184867543437007b27f04f4363a026a0db83da3fdf963afecab7330e9419b1ac5376efcdd8 +doccontainersize 166132 +doccontainerchecksum 6135b3d06908c5c359cc432a7406f146ea6b0bb614ba0b983738230ca2073f4348a6ff139bdc4b43325a8b67ef59a6db8e60ecefd88af5c8ff0eddceb0f279fe +docfiles size=44 + RELOC/doc/latex/mathcomp/mathcomp.pdf details="Package documentation" +srccontainersize 3072 +srccontainerchecksum 3578e5e31ac3cfda23381e348dfa9e4da6993a9cefaa73b3746be0f2719d04dd37d04e75925414f4f0083b0971222da5eced4bd582e405031f29899faacecf57 srcfiles size=3 - RELOC/source/latex/memory/memory.dtx - RELOC/source/latex/memory/memory.ins -catalogue-ctan /macros/latex/contrib/memory -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.2 - -name mentis -category Package -revision 15878 -shortdesc A basis for books to be published by Mentis publishers. -relocated 1 -longdesc This LaTeX class loads scrbook and provides changes necessary -longdesc for publishing at Mentis publishers in Paderborn, Germany. It -longdesc is not an official Mentis class, merely one developed by an -longdesc author in close co-operation with Mentis. -runfiles size=4 - RELOC/tex/latex/mentis/mentis.cls -docfiles size=40 - RELOC/doc/latex/mentis/README - RELOC/doc/latex/mentis/mentis.pdf -srcfiles size=14 - RELOC/source/latex/mentis/mentis.dtx - RELOC/source/latex/mentis/mentis.ins -catalogue-ctan /macros/latex/contrib/mentis -catalogue-date 2013-10-30 13:49:16 +0100 + RELOC/source/latex/mathcomp/mathcomp.dtx + RELOC/source/latex/mathcomp/mathcomp.ins +runfiles size=1 + RELOC/tex/latex/mathcomp/mathcomp.sty +catalogue-also textcomp +catalogue-ctan /macros/latex/contrib/mathcomp +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl -catalogue-version 1.5 - -name menukeys -category Package -revision 33151 -shortdesc Format menu sequences, paths and keystrokes from lists. -relocated 1 -longdesc The package allows easy input and formatting of menu sequences, -longdesc using menus set with commands such as \menu{Extras > Settings > -longdesc General}, paths using a command like -longdesc \path{macros/latex/contrib/menukeys} and short cuts such as -longdesc \keys{\ctrl + C}. The output is highly configurable by -longdesc providing different styles and colour themes. -runfiles size=7 - RELOC/tex/latex/menukeys/menukeys.sty -docfiles size=127 - RELOC/doc/latex/menukeys/README - RELOC/doc/latex/menukeys/menukeys.pdf -srcfiles size=18 - RELOC/source/latex/menukeys/menukeys.dtx - RELOC/source/latex/menukeys/menukeys.ins -catalogue-ctan /macros/latex/contrib/menukeys -catalogue-date 2014-03-10 08:48:40 +0100 -catalogue-license lppl1.2 -catalogue-version 1.3 - -name menu -category Package -revision 15878 -shortdesc Typesetting menus. -relocated 1 -longdesc The package defines command \menu which assists typesetting of -longdesc a path through a program's menu. -runfiles size=2 - RELOC/tex/latex/menu/menu.sty -docfiles size=34 - RELOC/doc/latex/menu/README - RELOC/doc/latex/menu/menu.pdf -srcfiles size=6 - RELOC/source/latex/menu/menu.dtx - RELOC/source/latex/menu/menu.ins -catalogue-ctan /macros/latex/contrib/menu -catalogue-date 2012-06-01 16:21:41 +0200 -catalogue-license other-free -catalogue-version 0.994 +catalogue-topics font-supp-maths +catalogue-version 0.1f -name merriweather +name mathdesign category Package -revision 34315 -shortdesc Merriweather and MerriweatherSans fonts, with LaTeX support. +revision 31639 +shortdesc Mathematical fonts to fit with particular text fonts relocated 1 -longdesc Merriweather features a very large x height, slightly condensed -longdesc letterforms, a mild diagonal stress, sturdy serifs and open -longdesc forms. The Sans family closely harmonizes with the weights and -longdesc styles of the serif family. There are four weights and italics -longdesc for each. -execute addMap merriweather.map -runfiles size=1091 - RELOC/fonts/enc/dvips/merriweather/mwth_5q2vgd.enc - RELOC/fonts/enc/dvips/merriweather/mwth_cn5sfl.enc - RELOC/fonts/enc/dvips/merriweather/mwth_fuknsh.enc - RELOC/fonts/enc/dvips/merriweather/mwth_jnnjab.enc - RELOC/fonts/enc/dvips/merriweather/mwth_libw2m.enc - RELOC/fonts/enc/dvips/merriweather/mwth_lnkfbl.enc - RELOC/fonts/enc/dvips/merriweather/mwth_oaf34p.enc - RELOC/fonts/enc/dvips/merriweather/mwth_xz5wux.enc - RELOC/fonts/enc/dvips/merriweather/mwth_ywgpba.enc - RELOC/fonts/enc/dvips/merriweather/mwth_z4e4wk.enc - RELOC/fonts/map/dvips/merriweather/merriweather.map - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Bold-osf-ly1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Bold-osf-ot1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Bold-osf-t1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Bold-osf-t1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Bold-osf-ts1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Bold-osf-ts1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-BoldItalic-osf-ly1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-BoldItalic-osf-ot1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-BoldItalic-osf-t1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-BoldItalic-osf-t1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-BoldItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-BoldItalic-osf-ts1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Italic-osf-ly1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Italic-osf-ot1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Italic-osf-t1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Italic-osf-t1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Italic-osf-ts1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Italic-osf-ts1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Light-osf-ly1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Light-osf-ot1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Light-osf-t1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Light-osf-t1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Light-osf-ts1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Light-osf-ts1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-LightIt-osf-ly1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-LightIt-osf-ot1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-LightIt-osf-t1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-LightIt-osf-t1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-LightIt-osf-ts1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-LightIt-osf-ts1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Regular-osf-ly1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Regular-osf-ot1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Regular-osf-t1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Regular-osf-t1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Regular-osf-ts1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Regular-osf-ts1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-UltraBdIt-osf-ly1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-UltraBdIt-osf-ot1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-UltraBdIt-osf-t1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-UltraBdIt-osf-t1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-UltraBdIt-osf-ts1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-UltraBdIt-osf-ts1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-UltraBold-osf-ly1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-UltraBold-osf-ot1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-UltraBold-osf-t1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-UltraBold-osf-t1.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-UltraBold-osf-ts1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/Merriweather-UltraBold-osf-ts1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Bold-tlf-ly1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Bold-tlf-ot1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Bold-tlf-t1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Bold-tlf-t1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Bold-tlf-ts1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Bold-tlf-ts1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-BoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-BoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-BoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-BoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-BoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-BoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBold-tlf-ly1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBold-tlf-ot1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBold-tlf-t1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBold-tlf-t1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBold-tlf-ts1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBold-tlf-ts1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Italic-tlf-ly1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Italic-tlf-ot1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Italic-tlf-t1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Italic-tlf-t1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Italic-tlf-ts1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Italic-tlf-ts1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Light-tlf-ly1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Light-tlf-ot1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Light-tlf-t1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Light-tlf-t1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Light-tlf-ts1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Light-tlf-ts1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-LightItalic-tlf-ly1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-LightItalic-tlf-ot1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-LightItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-LightItalic-tlf-t1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-LightItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-LightItalic-tlf-ts1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Regular-tlf-ly1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Regular-tlf-ot1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Regular-tlf-t1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Regular-tlf-t1.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Regular-tlf-ts1--base.tfm - RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Regular-tlf-ts1.tfm - RELOC/fonts/truetype/sorkin/merriweather/Merriweather-Bold.ttf - RELOC/fonts/truetype/sorkin/merriweather/Merriweather-BoldIt.ttf - RELOC/fonts/truetype/sorkin/merriweather/Merriweather-Italic.ttf - RELOC/fonts/truetype/sorkin/merriweather/Merriweather-Light.ttf - RELOC/fonts/truetype/sorkin/merriweather/Merriweather-LightIt.ttf - RELOC/fonts/truetype/sorkin/merriweather/Merriweather-Regular.ttf - RELOC/fonts/truetype/sorkin/merriweather/Merriweather-UltraBdIt.ttf - RELOC/fonts/truetype/sorkin/merriweather/Merriweather-UltraBold.ttf - RELOC/fonts/truetype/sorkin/merriweather/MerriweatherSans-Bold.ttf - RELOC/fonts/truetype/sorkin/merriweather/MerriweatherSans-BoldItalic.ttf - RELOC/fonts/truetype/sorkin/merriweather/MerriweatherSans-ExBoldIt.ttf - RELOC/fonts/truetype/sorkin/merriweather/MerriweatherSans-ExtraBold.ttf - RELOC/fonts/truetype/sorkin/merriweather/MerriweatherSans-Italic.ttf - RELOC/fonts/truetype/sorkin/merriweather/MerriweatherSans-Light.ttf - RELOC/fonts/truetype/sorkin/merriweather/MerriweatherSans-LightItalic.ttf - RELOC/fonts/truetype/sorkin/merriweather/MerriweatherSans-Regular.ttf - RELOC/fonts/type1/sorkin/merriweather/Merriweather-Bold.pfb - RELOC/fonts/type1/sorkin/merriweather/Merriweather-BoldIt.pfb - RELOC/fonts/type1/sorkin/merriweather/Merriweather-Italic.pfb - RELOC/fonts/type1/sorkin/merriweather/Merriweather-Light.pfb - RELOC/fonts/type1/sorkin/merriweather/Merriweather-LightIt.pfb - RELOC/fonts/type1/sorkin/merriweather/Merriweather-Regular.pfb - RELOC/fonts/type1/sorkin/merriweather/Merriweather-UltraBdIt.pfb - RELOC/fonts/type1/sorkin/merriweather/Merriweather-UltraBold.pfb - RELOC/fonts/type1/sorkin/merriweather/MerriweatherSans-Bold.pfb - RELOC/fonts/type1/sorkin/merriweather/MerriweatherSans-BoldItalic.pfb - RELOC/fonts/type1/sorkin/merriweather/MerriweatherSans-ExBoldIt.pfb - RELOC/fonts/type1/sorkin/merriweather/MerriweatherSans-ExtraBold.pfb - RELOC/fonts/type1/sorkin/merriweather/MerriweatherSans-Italic.pfb - RELOC/fonts/type1/sorkin/merriweather/MerriweatherSans-Light.pfb - RELOC/fonts/type1/sorkin/merriweather/MerriweatherSans-LightItalic.pfb - RELOC/fonts/type1/sorkin/merriweather/MerriweatherSans-Regular.pfb - RELOC/fonts/vf/sorkin/merriweather/Merriweather-Bold-osf-t1.vf - RELOC/fonts/vf/sorkin/merriweather/Merriweather-Bold-osf-ts1.vf - RELOC/fonts/vf/sorkin/merriweather/Merriweather-BoldItalic-osf-t1.vf - RELOC/fonts/vf/sorkin/merriweather/Merriweather-BoldItalic-osf-ts1.vf - RELOC/fonts/vf/sorkin/merriweather/Merriweather-Italic-osf-t1.vf - RELOC/fonts/vf/sorkin/merriweather/Merriweather-Italic-osf-ts1.vf - RELOC/fonts/vf/sorkin/merriweather/Merriweather-Light-osf-t1.vf - RELOC/fonts/vf/sorkin/merriweather/Merriweather-Light-osf-ts1.vf - RELOC/fonts/vf/sorkin/merriweather/Merriweather-LightIt-osf-t1.vf - RELOC/fonts/vf/sorkin/merriweather/Merriweather-LightIt-osf-ts1.vf - RELOC/fonts/vf/sorkin/merriweather/Merriweather-Regular-osf-t1.vf - RELOC/fonts/vf/sorkin/merriweather/Merriweather-Regular-osf-ts1.vf - RELOC/fonts/vf/sorkin/merriweather/Merriweather-UltraBdIt-osf-t1.vf - RELOC/fonts/vf/sorkin/merriweather/Merriweather-UltraBdIt-osf-ts1.vf - RELOC/fonts/vf/sorkin/merriweather/Merriweather-UltraBold-osf-t1.vf - RELOC/fonts/vf/sorkin/merriweather/Merriweather-UltraBold-osf-ts1.vf - RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-Bold-tlf-t1.vf - RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-Bold-tlf-ts1.vf - RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-BoldItalic-tlf-t1.vf - RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-BoldItalic-tlf-ts1.vf - RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-ExtraBold-tlf-t1.vf - RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-ExtraBold-tlf-ts1.vf - RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-ExtraBoldItalic-tlf-t1.vf - RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-ExtraBoldItalic-tlf-ts1.vf - RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-Italic-tlf-t1.vf - RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-Italic-tlf-ts1.vf - RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-Light-tlf-t1.vf - RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-Light-tlf-ts1.vf - RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-LightItalic-tlf-t1.vf - RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-LightItalic-tlf-ts1.vf - RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-Regular-tlf-t1.vf - RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-Regular-tlf-ts1.vf - RELOC/tex/latex/merriweather/LY1Merriweather-OsF.fd - RELOC/tex/latex/merriweather/LY1MerriweatherSans-TLF.fd - RELOC/tex/latex/merriweather/OT1Merriweather-OsF.fd - RELOC/tex/latex/merriweather/OT1MerriweatherSans-TLF.fd - RELOC/tex/latex/merriweather/T1Merriweather-OsF.fd - RELOC/tex/latex/merriweather/T1MerriweatherSans-TLF.fd - RELOC/tex/latex/merriweather/TS1Merriweather-OsF.fd - RELOC/tex/latex/merriweather/TS1MerriweatherSans-TLF.fd - RELOC/tex/latex/merriweather/merriweather.sty -docfiles size=31 - RELOC/doc/fonts/merriweather/OFL.txt - RELOC/doc/fonts/merriweather/README - RELOC/doc/fonts/merriweather/merriweather-samples.pdf - RELOC/doc/fonts/merriweather/merriweather-samples.tex -catalogue-ctan /fonts/merriweather -catalogue-date 2014-06-19 18:16:57 +0200 -catalogue-license ofl - -name metafont-beginners -category Package -revision 29803 -shortdesc An introductory tutorial for Metafont. -relocated 1 -longdesc An old introduction to the use of Metafont, that has stood the -longdesc test of time. It focuses on using the program, rather than -longdesc designing fonts, but does offer advice about understanding -longdesc errors in other people's fonts. -docfiles size=60 - RELOC/doc/fonts/metafont-beginners/metafont-for-beginners.pdf - RELOC/doc/fonts/metafont-beginners/metafont-for-beginners.tex -catalogue-ctan /info/metafont/beginners -catalogue-date 2012-05-23 16:10:32 +0200 -catalogue-license pd - -name metafont -category Package -revision 37078 -shortdesc A system for specifying fonts. -longdesc The program takes a semi-algorithmic specification of a font, -longdesc and produces a bitmap font (whose properties are defined by a -longdesc set of parameters of the target device), and a set metrics for -longdesc use by TeX. The bitmap output may be converted into a format -longdesc directly usable by a device driver, etc., by the tools provided -longdesc in the parallel mfware distribution. (Third parties have -longdesc developed tools to convert the bitmap output to outline fonts.) -longdesc The distribution includes the source of Knuth's Metafont book; -longdesc this source is there to read, as an example of writing TeX -- -longdesc it should not be processed without Knuth's direct permission. -depend kpathsea -depend metafont.ARCH -execute AddFormat name=mf engine=mf-nowin options="-translate-file=cp227.tcx mf.ini" -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 -docfiles size=15 - texmf-dist/doc/man/man1/mf-nowin.1 - texmf-dist/doc/man/man1/mf-nowin.man1.pdf - texmf-dist/doc/man/man1/mf.1 - texmf-dist/doc/man/man1/mf.man1.pdf -catalogue-ctan /systems/knuth/dist/mf -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license knuth -catalogue-version 2.7182818 - -name metafont.i386-linux -category Package -revision 36790 -shortdesc i386-linux files of metafont -binfiles arch=i386-linux size=220 - bin/i386-linux/inimf - bin/i386-linux/mf - bin/i386-linux/mf-nowin - -name metago -category Package -revision 15878 -shortdesc MetaPost output of Go positions. -relocated 1 -longdesc The package allows you to draw Go game positions with MetaPost. -longdesc Two methods of usage are provided, either using the package -longdesc programmatically, or using the package via a script (which may -longdesc produce several images). -runfiles size=5 - RELOC/metapost/metago/metago.mp -docfiles size=24 - RELOC/doc/metapost/metago/README - RELOC/doc/metapost/metago/example-program.mp - RELOC/doc/metapost/metago/example-program.pdf - RELOC/doc/metapost/metago/example-script-1.pdf - RELOC/doc/metapost/metago/example-script-2.pdf - RELOC/doc/metapost/metago/example-script-3.pdf - RELOC/doc/metapost/metago/example-script-4.pdf - RELOC/doc/metapost/metago/example-script-5.pdf - RELOC/doc/metapost/metago/example-script-6.pdf - RELOC/doc/metapost/metago/example-script-7.pdf - RELOC/doc/metapost/metago/example-script-8.pdf - RELOC/doc/metapost/metago/example-script.mp - RELOC/doc/metapost/metago/script.go -catalogue-ctan /graphics/metapost/contrib/macros/metago -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.9 - -name metalogo -category Package -revision 18611 -shortdesc Extended TeX logo macros. -relocated 1 -longdesc This package exposes spacing parameters for various TeX logos -longdesc to the end user, to optimise the logos for different fonts. -longdesc Written especially for XeLaTeX users. -runfiles size=2 - RELOC/tex/latex/metalogo/metalogo.sty -docfiles size=26 - RELOC/doc/latex/metalogo/README - RELOC/doc/latex/metalogo/TeXoutline.pdf - RELOC/doc/latex/metalogo/eLaToutline.pdf - RELOC/doc/latex/metalogo/metalogo.pdf -srcfiles size=7 - RELOC/source/latex/metalogo/metalogo.dtx - RELOC/source/latex/metalogo/metalogo.ins -catalogue-ctan /macros/latex/contrib/metalogo -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.12 - -name metaobj -category Package -revision 15878 -shortdesc MetaPost package providing high-level objects. -relocated 1 -longdesc METAOBJ is a large metapost package providing high-level -longdesc objects. It implements many of PSTricks' features for node -longdesc connections, but also trees, matrices, and many other things. -longdesc It more or less contains boxes.mp and rboxes.mp. There is a -longdesc large (albeit not complete) documentation distributed with the -longdesc package. It is easily extensible with new objects. -runfiles size=82 - RELOC/metapost/metaobj/connections.mp - RELOC/metapost/metaobj/metaobj.mp - RELOC/metapost/metaobj/mobjstandard.mp - RELOC/metapost/metaobj/proofex.mp - RELOC/metapost/metaobj/pstricksex1.mp - RELOC/metapost/metaobj/pstricksex2.mp - RELOC/metapost/metaobj/pstricksex3.mp - RELOC/metapost/metaobj/pstricksex4.mp -docfiles size=247 - RELOC/doc/metapost/metaobj/README - RELOC/doc/metapost/metaobj/license.txt - RELOC/doc/metapost/metaobj/momanual.pdf -catalogue-ctan /graphics/metapost/contrib/macros/metaobj -catalogue-date 2012-05-23 16:10:32 +0200 -catalogue-license lppl -catalogue-version 0.93 - -name metaplot -category Package -revision 15878 -shortdesc Plot-manipulation macros for use in Metapost. -relocated 1 -longdesc MetaPlot is a set of Metapost macros for manipulating pre- -longdesc generated plots (and similar objects), and formatting them for -longdesc inclusion in a Metapost figure. The intent is that the plots -longdesc can be generated by some outside program, in an abstract manner -longdesc that does not require making decisions about on-page sizing and -longdesc layout, and then they can be imported into MetaPlot and -longdesc arranged using the full capabilities of Metapost. Metaplot also -longdesc includes a very flexible set of macros for generating plot -longdesc axes, which may be useful in other contexts as well. Presently, -longdesc MetaPlot is in something of a pre-release beta state; it is -longdesc quite functional, but the syntax of the commands is still -longdesc potentially in flux. -runfiles size=5 - RELOC/metapost/metaplot/axes.mp - RELOC/metapost/metaplot/metaplot.mp -docfiles size=141 - RELOC/doc/latex/metaplot/README - RELOC/doc/latex/metaplot/examples/cap1.cc - RELOC/doc/latex/metaplot/examples/cap1.mp - RELOC/doc/latex/metaplot/examples/capillary.cc - RELOC/doc/latex/metaplot/examples/cpoint.cc - RELOC/doc/latex/metaplot/examples/cpoint.h - RELOC/doc/latex/metaplot/examples/figure_1.mp - RELOC/doc/latex/metaplot/examples/figures_2-7.mp - RELOC/doc/latex/metaplot/examples/figures_8-9.mp - RELOC/doc/latex/metaplot/examples/gpl.txt - RELOC/doc/latex/metaplot/examples/mc2.mp - RELOC/doc/latex/metaplot/examples/metacontour.cc - RELOC/doc/latex/metaplot/examples/metacontour.h - RELOC/doc/latex/metaplot/examples/metacontour_main.cc - RELOC/doc/latex/metaplot/metaplot_preprint.pdf -catalogue-ctan /graphics/metaplot -catalogue-date 2012-08-30 22:47:45 +0200 -catalogue-license lppl -catalogue-version 0.91 - -name metapost-examples -category Package -revision 15878 -shortdesc Example drawings using MetaPost. -relocated 1 -longdesc These are a few (hundred) example pictures drawn with MetaPost, -longdesc ranging from very simple (lines and circles) to rather -longdesc intricate (uncommon geometric transformations, fractals, -longdesc bitmap, etc). -docfiles size=37 - RELOC/doc/metapost/metapost-examples/Makefile - RELOC/doc/metapost/metapost-examples/README - RELOC/doc/metapost/metapost-examples/data1 - RELOC/doc/metapost/metapost-examples/data2 - RELOC/doc/metapost/metapost-examples/data3 - RELOC/doc/metapost/metapost-examples/examples.mp - RELOC/doc/metapost/metapost-examples/mp2html.pl -catalogue-ctan /info/metapost/examples -catalogue-date 2012-05-28 12:27:21 +0200 -catalogue-license other-free - -name metapost -category Package -revision 37136 -shortdesc A development of Metafont for creating graphics. -longdesc MetaPost uses a language based on that of Metafont to produce -longdesc precise technical illustrations. Its output is scalable -longdesc PostScript or SVG, rather than the bitmaps Metafont creates. -depend kpathsea -depend metapost.ARCH -execute addMap troff-updmap.map -runfiles size=110 - texmf-dist/fonts/afm/metapost/freeeuro.afm - texmf-dist/fonts/afm/metapost/psyrgo.afm - texmf-dist/fonts/afm/metapost/zpzdr-reversed.afm - texmf-dist/fonts/enc/dvips/metapost/groff.enc - texmf-dist/fonts/map/dvips/metapost/troff-updmap.map - texmf-dist/fonts/map/dvips/metapost/troff.map - texmf-dist/fonts/tfm/metapost/freeeuro.tfm - texmf-dist/fonts/tfm/metapost/pagd8g.tfm - texmf-dist/fonts/tfm/metapost/pagdo8g.tfm - texmf-dist/fonts/tfm/metapost/pagk8g.tfm - texmf-dist/fonts/tfm/metapost/pagko8g.tfm - texmf-dist/fonts/tfm/metapost/pbkd8g.tfm - texmf-dist/fonts/tfm/metapost/pbkdi8g.tfm - texmf-dist/fonts/tfm/metapost/pbkl8g.tfm - texmf-dist/fonts/tfm/metapost/pbkli8g.tfm - texmf-dist/fonts/tfm/metapost/pcrb8g.tfm - texmf-dist/fonts/tfm/metapost/pcrbo8g.tfm - texmf-dist/fonts/tfm/metapost/pcrr8g.tfm - texmf-dist/fonts/tfm/metapost/pcrro8g.tfm - texmf-dist/fonts/tfm/metapost/phvb8g.tfm - texmf-dist/fonts/tfm/metapost/phvb8gn.tfm - texmf-dist/fonts/tfm/metapost/phvbo8g.tfm - texmf-dist/fonts/tfm/metapost/phvbo8gn.tfm - texmf-dist/fonts/tfm/metapost/phvr8g.tfm - texmf-dist/fonts/tfm/metapost/phvr8gn.tfm - texmf-dist/fonts/tfm/metapost/phvro8g.tfm - texmf-dist/fonts/tfm/metapost/phvro8gn.tfm - texmf-dist/fonts/tfm/metapost/pncb8g.tfm - texmf-dist/fonts/tfm/metapost/pncbi8g.tfm - texmf-dist/fonts/tfm/metapost/pncr8g.tfm - texmf-dist/fonts/tfm/metapost/pncri8g.tfm - texmf-dist/fonts/tfm/metapost/pplb8g.tfm - texmf-dist/fonts/tfm/metapost/pplbi8g.tfm - texmf-dist/fonts/tfm/metapost/pplr8g.tfm - texmf-dist/fonts/tfm/metapost/pplri8g.tfm - texmf-dist/fonts/tfm/metapost/psyrgo.tfm - texmf-dist/fonts/tfm/metapost/ptmb8g.tfm - texmf-dist/fonts/tfm/metapost/ptmbi8g.tfm - texmf-dist/fonts/tfm/metapost/ptmr8g.tfm - texmf-dist/fonts/tfm/metapost/ptmri8g.tfm - texmf-dist/fonts/tfm/metapost/pzcmi8g.tfm - texmf-dist/fonts/tfm/metapost/zpzdr-reversed.tfm - texmf-dist/fonts/type1/metapost/freeeuro.pfa - texmf-dist/metapost/base/TEX.mp - texmf-dist/metapost/base/boxes.mp - texmf-dist/metapost/base/format.mp - texmf-dist/metapost/base/graph.mp - texmf-dist/metapost/base/marith.mp - texmf-dist/metapost/base/mfplain.mp - texmf-dist/metapost/base/mpost.mp - texmf-dist/metapost/base/plain.mp - texmf-dist/metapost/base/rboxes.mp - texmf-dist/metapost/base/sarith.mp - texmf-dist/metapost/base/string.mp - texmf-dist/metapost/base/texnum.mp - texmf-dist/metapost/base/troffnum.mp - texmf-dist/metapost/config/mfplain.ini - texmf-dist/metapost/misc/null.mp - texmf-dist/metapost/support/charlib/12 - texmf-dist/metapost/support/charlib/14 - texmf-dist/metapost/support/charlib/34 - texmf-dist/metapost/support/charlib/Ao - texmf-dist/metapost/support/charlib/Fi - texmf-dist/metapost/support/charlib/Fl - texmf-dist/metapost/support/charlib/L1 - texmf-dist/metapost/support/charlib/LH - texmf-dist/metapost/support/charlib/Lb - texmf-dist/metapost/support/charlib/Sl - texmf-dist/metapost/support/charlib/ao.x - texmf-dist/metapost/support/charlib/bx - texmf-dist/metapost/support/charlib/ci - texmf-dist/metapost/support/charlib/ff - texmf-dist/metapost/support/charlib/lh.x - texmf-dist/metapost/support/charlib/ob - texmf-dist/metapost/support/charlib/rh - texmf-dist/metapost/support/charlib/sq - texmf-dist/metapost/support/charlib/twiddle - texmf-dist/metapost/support/trchars.adj - texmf-dist/metapost/support/trfonts.map - texmf-dist/tex/generic/metapost/mproof.tex - texmf-dist/tex/generic/metapost/mpsproof.tex -docfiles size=808 - texmf-dist/doc/man/man1/dvitomp.1 - texmf-dist/doc/man/man1/dvitomp.man1.pdf - texmf-dist/doc/man/man1/mpost.1 - texmf-dist/doc/man/man1/mpost.man1.pdf - texmf-dist/doc/metapost/base/CHANGES - texmf-dist/doc/metapost/base/grdemo-doc.pdf - texmf-dist/doc/metapost/base/grdemo.pdf - texmf-dist/doc/metapost/base/mpboxes.pdf - texmf-dist/doc/metapost/base/mpgraph.pdf - texmf-dist/doc/metapost/base/mpintro.pdf - texmf-dist/doc/metapost/base/mplibapi.pdf - texmf-dist/doc/metapost/base/mpman.pdf - texmf-dist/doc/metapost/base/source-manual/Makefile - texmf-dist/doc/metapost/base/source-manual/README - texmf-dist/doc/metapost/base/source-manual/TODO - texmf-dist/doc/metapost/base/source-manual/agepop91.d - texmf-dist/doc/metapost/base/source-manual/agepopm.d - texmf-dist/doc/metapost/base/source-manual/charts.mp - texmf-dist/doc/metapost/base/source-manual/cm2lm.map - texmf-dist/doc/metapost/base/source-manual/countries.d - texmf-dist/doc/metapost/base/source-manual/ctabbing.sty - texmf-dist/doc/metapost/base/source-manual/demo.ms - texmf-dist/doc/metapost/base/source-manual/energy.d - texmf-dist/doc/metapost/base/source-manual/figs.1 - texmf-dist/doc/metapost/base/source-manual/figs.mp - texmf-dist/doc/metapost/base/source-manual/grdemo-doc.ms - texmf-dist/doc/metapost/base/source-manual/grdemo-doc.ps - texmf-dist/doc/metapost/base/source-manual/grdemo.eps - texmf-dist/doc/metapost/base/source-manual/grdemo.mp - texmf-dist/doc/metapost/base/source-manual/grdemo.ms - texmf-dist/doc/metapost/base/source-manual/lead.d - texmf-dist/doc/metapost/base/source-manual/matmul.d - texmf-dist/doc/metapost/base/source-manual/mpboxes.bib - texmf-dist/doc/metapost/base/source-manual/mpboxes.mp - texmf-dist/doc/metapost/base/source-manual/mpboxes.tex - texmf-dist/doc/metapost/base/source-manual/mpgraph.bib - texmf-dist/doc/metapost/base/source-manual/mpgraph.mp - texmf-dist/doc/metapost/base/source-manual/mpgraph.tex - texmf-dist/doc/metapost/base/source-manual/mplibapi.tex - texmf-dist/doc/metapost/base/source-manual/mpman-app-legacy.tex - texmf-dist/doc/metapost/base/source-manual/mpman-app-numbersystems.tex - texmf-dist/doc/metapost/base/source-manual/mpman-app-optab.tex - texmf-dist/doc/metapost/base/source-manual/mpman-app-refman.tex - texmf-dist/doc/metapost/base/source-manual/mpman-charts.mp - texmf-dist/doc/metapost/base/source-manual/mpman.bib - texmf-dist/doc/metapost/base/source-manual/mpman.ist - texmf-dist/doc/metapost/base/source-manual/mpman.mp - texmf-dist/doc/metapost/base/source-manual/mpman.tex - texmf-dist/doc/metapost/base/source-manual/timepop.d - texmf-dist/doc/metapost/base/source-tutorial/Makefile - texmf-dist/doc/metapost/base/source-tutorial/abstract.tex - texmf-dist/doc/metapost/base/source-tutorial/annulus.mp - texmf-dist/doc/metapost/base/source-tutorial/arrows.tex - texmf-dist/doc/metapost/base/source-tutorial/biblio.tex - texmf-dist/doc/metapost/base/source-tutorial/circles.mp - texmf-dist/doc/metapost/base/source-tutorial/commands.tex - texmf-dist/doc/metapost/base/source-tutorial/compilation.tex - texmf-dist/doc/metapost/base/source-tutorial/conclusion.tex - texmf-dist/doc/metapost/base/source-tutorial/data.d - texmf-dist/doc/metapost/base/source-tutorial/data.mp - texmf-dist/doc/metapost/base/source-tutorial/data.tex - texmf-dist/doc/metapost/base/source-tutorial/draw.mp - texmf-dist/doc/metapost/base/source-tutorial/draw.tex - texmf-dist/doc/metapost/base/source-tutorial/fill.mp - texmf-dist/doc/metapost/base/source-tutorial/fill.tex - texmf-dist/doc/metapost/base/source-tutorial/graph.tex - texmf-dist/doc/metapost/base/source-tutorial/inclusion.tex - texmf-dist/doc/metapost/base/source-tutorial/intro.tex - texmf-dist/doc/metapost/base/source-tutorial/label.mp - texmf-dist/doc/metapost/base/source-tutorial/label.tex - texmf-dist/doc/metapost/base/source-tutorial/mpintro.bib - texmf-dist/doc/metapost/base/source-tutorial/mpintro.ltx - texmf-dist/doc/metapost/base/source-tutorial/paperclip.mp - texmf-dist/doc/metapost/base/source-tutorial/parabola.mp - texmf-dist/doc/metapost/base/source-tutorial/previewer.eps - texmf-dist/doc/metapost/base/source-tutorial/previewer.pdf - texmf-dist/doc/metapost/base/source-tutorial/previewer.png -catalogue-date 2015-04-04 16:29:12 +0200 -catalogue-license lgpl - -name metapost.i386-linux -category Package -revision 37340 -shortdesc i386-linux files of metapost -binfiles arch=i386-linux size=1103 - bin/i386-linux/dvitomp - bin/i386-linux/mfplain - bin/i386-linux/mpost - -name metatex -category Package -revision 15878 -shortdesc Incorporate Metafont pictures in TeX source. -relocated 1 -longdesc METATeX is a set of plain TeX and Metafont macros that you can -longdesc use to define both the text and the figures in a single source -longdesc file. Because METATeX sets up two way communication, from TeX -longdesc to Metafont and back from Metafont to TeX, drawing dimensions -longdesc can be controlled by TeX and labels can be located by Metafont. -longdesc Only standard features of TeX and Metafont are used, but two -longdesc runs of TeX and one of Metafont are needed. -runfiles size=2 - RELOC/tex/plain/metatex/metatex.tex -docfiles size=55 - RELOC/doc/plain/metatex/README - RELOC/doc/plain/metatex/gpl.txt - RELOC/doc/plain/metatex/mtmp2pdf.tex - RELOC/doc/plain/metatex/mtpaper.pdf - RELOC/doc/plain/metatex/mtpaper/delay.mf - RELOC/doc/plain/metatex/mtpaper/diagram.tex - RELOC/doc/plain/metatex/mtpaper/frame.tex - RELOC/doc/plain/metatex/mtpaper/mtpaper.tex - RELOC/doc/plain/metatex/mtpaper/shadow.tex -catalogue-ctan /macros/plain/contrib/metatex -catalogue-date 2012-07-06 17:29:31 +0200 -catalogue-license gpl -catalogue-version 1.1 - -name metatype1 -category Package -revision 37105 -shortdesc Generate Type 1 fonts from MetaPost. -relocated 1 -longdesc The system employs scripts, common utility programs, and a set -longdesc of MetaPost macros to provide a means of expressing the details -longdesc outline fonts directly in the MetaPost language. The system was -longdesc employed to generate the Latin Modern fonts, and the -longdesc distribution includes an example development of Knuth's logo -longdesc fonts. -srcfiles size=65 - RELOC/source/metapost/metatype1/README - RELOC/source/metapost/metatype1/logomp03.zip - RELOC/source/metapost/metatype1/metatype1-ver056.inf - RELOC/source/metapost/metatype1/metatype1-ver056.zip -catalogue-ctan /fonts/utilities/metatype1 -catalogue-date 2012-06-01 16:21:41 +0200 -catalogue-license pd -catalogue-version 0.55 - -name metauml -category Package -revision 19692 -shortdesc MetaPost library for typesetting UML diagrams. -relocated 1 -longdesc MetaUML is a MetaPost library for typesetting UML diagrams, -longdesc which provides a usable, human-friendly textual notation for -longdesc UML, offering now support for class, package, activity, state, -longdesc and use case diagrams. -runfiles size=54 - RELOC/metapost/metauml/metauml.mp - RELOC/metapost/metauml/metauml_activity.mp - RELOC/metapost/metauml/metauml_base.mp - RELOC/metapost/metauml/metauml_behavioral_common.mp - RELOC/metapost/metauml/metauml_class.mp - RELOC/metapost/metauml/metauml_class_assoc.mp - RELOC/metapost/metauml/metauml_class_clipart.mp - RELOC/metapost/metauml/metauml_class_relations.mp - RELOC/metapost/metauml/metauml_component.mp - RELOC/metapost/metauml/metauml_component_relations.mp - RELOC/metapost/metauml/metauml_defaults.mp - RELOC/metapost/metauml/metauml_instance.mp - RELOC/metapost/metauml/metauml_links.mp - RELOC/metapost/metauml/metauml_note.mp - RELOC/metapost/metauml/metauml_package.mp - RELOC/metapost/metauml/metauml_package_relations.mp - RELOC/metapost/metauml/metauml_paths.mp - RELOC/metapost/metauml/metauml_skin_simple.mp - RELOC/metapost/metauml/metauml_state.mp - RELOC/metapost/metauml/metauml_stereotype.mp - RELOC/metapost/metauml/metauml_templates.mp - RELOC/metapost/metauml/metauml_usecase.mp - RELOC/metapost/metauml/metauml_usecase_clipart.mp - RELOC/metapost/metauml/util_commons.mp - RELOC/metapost/metauml/util_group.mp - RELOC/metapost/metauml/util_infrastructure.mp - RELOC/metapost/metauml/util_log.mp - RELOC/metapost/metauml/util_margins.mp - RELOC/metapost/metauml/util_object.mp - RELOC/metapost/metauml/util_picture.mp - RELOC/metapost/metauml/util_picture_stack.mp - RELOC/metapost/metauml/util_positioning.mp - RELOC/metapost/metauml/util_shade.mp -docfiles size=184 - RELOC/doc/metapost/metauml/README - RELOC/doc/metapost/metauml/metauml_manual/fig/activity.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/activity_diagrams.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/appetizer.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/boxes_vs_util.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/class.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/class_association.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/class_customization.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/class_customization2.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/class_diagrams.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/class_templates.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/cliparts.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/component.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/group.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/how-links-work.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/instance.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/mptextmp.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/mptrace.tmp - RELOC/doc/metapost/metauml/metauml_manual/fig/note.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/object_stack.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/package.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/paths.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/paths_man.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/picture_info.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/picture_stack.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/positioning.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/properties.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/state.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/statemachine_diagrams.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/test_activity.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/test_class.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/test_class_qual_assoc.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/test_class_templates.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/test_component.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/test_font.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/test_group.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/test_instance.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/test_lars_issues.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/test_lowlevel.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/test_note.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/test_package.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/test_paths.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/test_picture.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/test_picture_stack.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/test_picture_tex_rendering.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/test_positioning.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/test_skins.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/test_skins_global_defaults.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/test_state.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/test_usecase.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/usecase.mp - RELOC/doc/metapost/metauml/metauml_manual/fig/usecase_diagrams.mp - RELOC/doc/metapost/metauml/metauml_manual/gnu-fdl.tex - RELOC/doc/metapost/metauml/metauml_manual/macro.tex - RELOC/doc/metapost/metauml/metauml_manual/metauml_manual.tex - RELOC/doc/metapost/metauml/metauml_manual/my-bib.bib - RELOC/doc/metapost/metauml/metauml_manual/test.mp - RELOC/doc/metapost/metauml/metauml_manual/test_suite.tex - RELOC/doc/metapost/metauml/metauml_manual_0.2.5.pdf -catalogue-ctan /graphics/metapost/contrib/macros/metauml -catalogue-date 2013-10-11 11:29:19 +0200 -catalogue-license gpl -catalogue-version 0.2.5 - -name method -category Package -revision 17485 -shortdesc Typeset method and variable declarations. -relocated 1 -longdesc The package supports typesetting of programming language method -longdesc and variable declarations. It supports declarations in German, -longdesc French and English. -runfiles size=3 - RELOC/tex/latex/method/method.sty -docfiles size=89 - RELOC/doc/latex/method/README - RELOC/doc/latex/method/method.pdf - RELOC/doc/latex/method/methtest.tex -srcfiles size=9 - RELOC/source/latex/method/Makefile - RELOC/source/latex/method/method.dtx - RELOC/source/latex/method/method.ins -catalogue-ctan /macros/latex/contrib/method -catalogue-date 2013-10-03 14:20:59 +0200 -catalogue-license lppl -catalogue-version 2.0b - -name metre -category Package -revision 18489 -shortdesc Support for the work of classicists -relocated 1 -longdesc The package provides classicists with some of the tools that -longdesc are needed for typesetting scholarly publications dealing with -longdesc Greek and Latin texts, with special emphasis on Greek verse. As -longdesc the package's name suggests, its core is a comprehensive set of -longdesc commands for generating metrical schemes and for placing -longdesc prosodical marks on text set in the Latin or the Greek -longdesc alphabet. The rest of the package provides a miscellany of -longdesc commands for symbols (most of them not directly related to -longdesc metre) that are often used in critical editions of classical -longdesc texts. The package does not require any special font: all -longdesc symbols are taken from the Computer Modern fonts (which are -longdesc included in all TeX distributions) and the package's commands -longdesc are based on TeX primitives. -runfiles size=15 - RELOC/tex/latex/metre/metre.sty -docfiles size=99 - RELOC/doc/latex/metre/README - RELOC/doc/latex/metre/demo.pdf - RELOC/doc/latex/metre/demo.tex - RELOC/doc/latex/metre/greek1.tex - RELOC/doc/latex/metre/greek2.tex - RELOC/doc/latex/metre/greek3.tex - RELOC/doc/latex/metre/igreek1.tex - RELOC/doc/latex/metre/igreek2.tex - RELOC/doc/latex/metre/igreek3.tex - RELOC/doc/latex/metre/metre.pdf -srcfiles size=31 - RELOC/source/latex/metre/metre.dtx - RELOC/source/latex/metre/metre.ins -catalogue-ctan /macros/latex/contrib/metre -catalogue-date 2013-09-09 19:04:00 +0200 -catalogue-license lppl -catalogue-version 1.0 - -name metrix -category Package -revision 38280 -shortdesc Typeset metric marks for Latin text -relocated 1 -longdesc The package may be used to type the prosodics/metrics of -longdesc (latin) verse; it provides macros to typeset the symbols -longdesc standing alone, and in combination with symbols, giving -longdesc automatic alignment. The package requires tikz (including the -longdesc calc library, and the xparse package (thus also requiring the -longdesc experimental LaTeX 3 environment). -runfiles size=7 - RELOC/tex/latex/metrix/metrix.sty -docfiles size=125 - RELOC/doc/latex/metrix/README - RELOC/doc/latex/metrix/metrix.pdf -srcfiles size=21 - RELOC/source/latex/metrix/metrix.dtx - RELOC/source/latex/metrix/metrix.ins -catalogue-ctan /macros/latex/contrib/metrix -catalogue-date 2015-09-02 20:53:24 +0200 -catalogue-license lppl1.3 -catalogue-topics latin verse expl3 -catalogue-version 1.2 - -name mex -category Package -revision 22650 -shortdesc Polish formats for TeX. -longdesc MeX is an adaptation of Plain TeX (MeX) and LaTeX209 (LaMeX) -longdesc formats to the Polish language and to Polish printing customs. -longdesc It contains a complete set of Metafont sources of Polish fonts, -longdesc hyphenation rules for the Polish language and sources of -longdesc formats. -depend pl -depend hyphen-polish -depend pdftex -depend tex -depend mex.ARCH -execute AddFormat name=mex engine=pdftex patterns=mexconf.tex options="-translate-file=cp227.tcx *mex.ini" -execute AddFormat name=pdfmex engine=pdftex patterns=mexconf.tex options="-translate-file=cp227.tcx *pdfmex.ini" -execute AddFormat name=utf8mex engine=pdftex patterns=mexconf.tex options="-enc *utf8mex.ini" -runfiles size=13 - texmf-dist/tex/mex/base/lamex.tex - texmf-dist/tex/mex/base/mex.tex - texmf-dist/tex/mex/base/mex1.tex - texmf-dist/tex/mex/base/mex2.tex - texmf-dist/tex/mex/base/mexconf.tex - texmf-dist/tex/mex/config/mex.ini - texmf-dist/tex/mex/config/pdfmex.ini -docfiles size=31 - texmf-dist/doc/mex/base/00readme - texmf-dist/doc/mex/base/mex.html - texmf-dist/doc/mex/base/mexinfo.eng - texmf-dist/doc/mex/base/mexinfo.pol - texmf-dist/doc/mex/base/qq.eps - texmf-dist/doc/mex/base/tstmex.tex -srcfiles size=12 - texmf-dist/source/mex/base/eminst.zip - texmf-dist/source/mex/base/istyles.zip -catalogue-ctan /language/polish/mex105.zip -catalogue-date 2012-04-30 16:45:41 +0200 -catalogue-license pd -catalogue-version 1.05 - -name mex.i386-linux -category Package -revision 3006 -shortdesc i386-linux files of mex -binfiles arch=i386-linux size=3 - bin/i386-linux/mex - bin/i386-linux/pdfmex - bin/i386-linux/utf8mex - -name mf2pt1 -category Package -revision 33802 -shortdesc Produce PostScript Type 1 fonts from Metafont source. -longdesc mf2pt1 facilitates producing PostScript Type 1 fonts from a -longdesc Metafont source file. It is not, as the name may imply, an -longdesc automatic converter of arbitrary Metafont fonts to Type 1 -longdesc format. mf2pt1 imposes a number of restrictions on the Metafont -longdesc input. If these restrictions are met, mf2pt1 will produce valid -longdesc Type 1 output with more accurate control points than can be -longdesc reverse-engineered by TeXtrace, mftrace, and other programs -longdesc which convert bitmaps to outline fonts. -depend mf2pt1.ARCH -runfiles size=14 - texmf-dist/metapost/mf2pt1/mf2pt1.mp - texmf-dist/scripts/mf2pt1/mf2pt1.pl -docfiles size=78 - texmf-dist/doc/info/mf2pt1.info - texmf-dist/doc/support/mf2pt1/ChangeLog - texmf-dist/doc/support/mf2pt1/README - texmf-dist/doc/support/mf2pt1/mf2pt1.pdf - texmf-dist/doc/support/mf2pt1/mf2pt1.texi -catalogue-ctan /support/mf2pt1 -catalogue-date 2014-05-02 06:53:00 +0200 -catalogue-license lppl -catalogue-version 2.5a - -name mf2pt1.i386-linux -category Package -revision 23406 -shortdesc i386-linux files of mf2pt1 -binfiles arch=i386-linux size=1 - bin/i386-linux/mf2pt1 - -name mfirstuc -category Package -revision 38343 -shortdesc Uppercase the first letter of a word -relocated 1 -longdesc The package provides commands \makefirstuc that uppercases the -longdesc first letter in its argument, and \xmakefirstuc which expands -longdesc the argument before uppercasing. -runfiles size=4 - RELOC/scripts/mfirstuc/mfirstuc.perl - RELOC/tex/latex/mfirstuc/mfirstuc-english.sty - RELOC/tex/latex/mfirstuc/mfirstuc.sty -docfiles size=134 - RELOC/doc/latex/mfirstuc/CHANGES - RELOC/doc/latex/mfirstuc/README - RELOC/doc/latex/mfirstuc/mfirstuc-code.pdf - RELOC/doc/latex/mfirstuc/mfirstuc-manual.html - RELOC/doc/latex/mfirstuc/mfirstuc-manual.pdf - RELOC/doc/latex/mfirstuc/mfirstuc-manual.tex - RELOC/doc/latex/mfirstuc/sample-mfirstuc.pdf - RELOC/doc/latex/mfirstuc/sample-mfirstuc.tex -srcfiles size=5 - RELOC/source/latex/mfirstuc/mfirstuc.dtx - RELOC/source/latex/mfirstuc/mfirstuc.ins -catalogue-ctan /macros/latex/contrib/mfirstuc -catalogue-date 2015-09-09 18:23:50 +0200 -catalogue-license lppl1.3 -catalogue-topics macro-supp -catalogue-version 2.0 - -name mflogo-font -category Package -revision 36898 -shortdesc Metafont logo font. -relocated 1 -longdesc These fonts were created in Metafont by Knuth, for his own -longdesc publications. At some stage, the letters 'P' and 'S' were -longdesc added, so that the MetaPost logo could also be expressed. The -longdesc fonts were originally issued (of course) as Metafont source; -longdesc they have since been autotraced and reissued in Adobe Type 1 -longdesc format by Taco Hoekwater. -execute addMixedMap mflogo.map -runfiles size=17 - RELOC/fonts/afm/hoekwater/mflogo-font/logo10.afm - RELOC/fonts/afm/hoekwater/mflogo-font/logo8.afm - RELOC/fonts/afm/hoekwater/mflogo-font/logo9.afm - RELOC/fonts/afm/hoekwater/mflogo-font/logobf10.afm - RELOC/fonts/afm/hoekwater/mflogo-font/logod10.afm - RELOC/fonts/afm/hoekwater/mflogo-font/logosl10.afm - RELOC/fonts/afm/hoekwater/mflogo-font/logosl8.afm - RELOC/fonts/afm/hoekwater/mflogo-font/logosl9.afm - RELOC/fonts/map/dvips/mflogo-font/mflogo.map - RELOC/fonts/type1/hoekwater/mflogo-font/logo10.pfb - RELOC/fonts/type1/hoekwater/mflogo-font/logo8.pfb - RELOC/fonts/type1/hoekwater/mflogo-font/logo9.pfb - RELOC/fonts/type1/hoekwater/mflogo-font/logobf10.pfb - RELOC/fonts/type1/hoekwater/mflogo-font/logod10.pfb - RELOC/fonts/type1/hoekwater/mflogo-font/logosl10.pfb - RELOC/fonts/type1/hoekwater/mflogo-font/logosl8.pfb - RELOC/fonts/type1/hoekwater/mflogo-font/logosl9.pfb -docfiles size=1 - RELOC/doc/fonts/mflogo-font/README -catalogue-ctan /fonts/mflogo/ps-type1/hoekwater -catalogue-date 2014-05-15 23:25:03 +0200 -catalogue-license knuth -catalogue-version 1.002 - -name mflogo -category Package -revision 35821 -shortdesc LaTeX support for Metafont logo fonts. -relocated 1 -longdesc LaTeX package and font definition file to access the Knuthian -longdesc mflogo fonts described in 'The Metafontbook' and to typeset -longdesc Metafont logos in LaTeX documents. -runfiles size=2 - RELOC/tex/latex/mflogo/mflogo.sty - RELOC/tex/latex/mflogo/ulogo.fd -docfiles size=66 - RELOC/doc/latex/mflogo/CATALOGUE - RELOC/doc/latex/mflogo/Makefile - RELOC/doc/latex/mflogo/README - RELOC/doc/latex/mflogo/mflogo.pdf -srcfiles size=5 - RELOC/source/latex/mflogo/mflogo.dtx - RELOC/source/latex/mflogo/mflogo.ins -catalogue-ctan /macros/latex/contrib/mflogo -catalogue-date 2012-06-24 11:08:44 +0200 -catalogue-license lppl -catalogue-version 2.0 - -name mfnfss -category Package -revision 19410 -shortdesc Packages to typeset oldgerman and pandora fonts in LaTeX. -relocated 1 -longdesc This bundle contains two packages: - oldgerm, a package to -longdesc typeset with old german fonts designed by Yannis Haralambous. - -longdesc pandora, a package to typeset with Pandora fonts designed by -longdesc Neena Billawala. Note that support for the Pandora fonts is -longdesc also available via the pandora-latex package. -runfiles size=8 - RELOC/tex/latex/mfnfss/oldgerm.sty - RELOC/tex/latex/mfnfss/ot1panr.fd - RELOC/tex/latex/mfnfss/ot1pss.fd - RELOC/tex/latex/mfnfss/pandora.sty - RELOC/tex/latex/mfnfss/uyfrak.fd - RELOC/tex/latex/mfnfss/uygoth.fd - RELOC/tex/latex/mfnfss/uyinit.fd - RELOC/tex/latex/mfnfss/uyswab.fd -docfiles size=51 - RELOC/doc/latex/mfnfss/changes.txt - RELOC/doc/latex/mfnfss/manifest.txt - RELOC/doc/latex/mfnfss/oldgerm.pdf - RELOC/doc/latex/mfnfss/readme.txt -srcfiles size=14 - RELOC/source/latex/mfnfss/oldgerm.dtx - RELOC/source/latex/mfnfss/oldgerm.ins - RELOC/source/latex/mfnfss/pandora.dtx - RELOC/source/latex/mfnfss/pandora.ins -catalogue-ctan /macros/latex/contrib/mfnfss -catalogue-date 2015-03-30 10:38:12 +0200 -catalogue-license lppl - -name mfpic4ode -category Package -revision 17745 -shortdesc Macros to draw direction fields and solutions of ODEs. -relocated 1 -longdesc The package is a small set of macros for drawing direction -longdesc fields, phase portraits and trajectories of differential -longdesc equations and two dimensional autonomous systems. The Euler, -longdesc Runge-Kutta and 4th order Runge-Kutta algorithms are available -longdesc to solve the ODEs. The picture is translated into mfpic macros -longdesc and MetaPost is used to create the final drawing. The package -longdesc is was designed for use with LaTeX, but it can be used in plain -longdesc TeX as well. Online demonstration of the mfpic4ode macros is -longdesc available on the Mfpic Previewer as Example 6. -runfiles size=3 - RELOC/tex/latex/mfpic4ode/mfpic4ode.sty - RELOC/tex/latex/mfpic4ode/mfpic4ode.tex -docfiles size=172 - RELOC/doc/latex/mfpic4ode/README - RELOC/doc/latex/mfpic4ode/demo/demo-plain.pdf - RELOC/doc/latex/mfpic4ode/demo/demo-plain.tex - RELOC/doc/latex/mfpic4ode/demo/demo.pdf - RELOC/doc/latex/mfpic4ode/demo/demo.tex - RELOC/doc/latex/mfpic4ode/mfpic4ode.pdf -srcfiles size=5 - RELOC/source/latex/mfpic4ode/mfpic4ode.dtx - RELOC/source/latex/mfpic4ode/mfpic4ode.ins -catalogue-ctan /macros/latex/contrib/mfpic4ode -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.4 - -name mfpic -category Package -revision 28444 -shortdesc Draw Metafont/post pictures from (La)TeX commands. -relocated 1 -longdesc Mfpic is a scheme for producing pictures from (La)TeX commands. -longdesc Commands \mfpic and \endmfpic (in LaTeX, the mfpic environment) -longdesc enclose a group in which drawing commands may be placed. The -longdesc commands generate a Meta-language file, which may be processed -longdesc by Metapost (or even Metafont). The resulting image file will -longdesc be read back in to the document to place the picture at the -longdesc point where the original (La)TeX commands appeared. Note that -longdesc the ability to use Metapost here means that the package works -longdesc equally well in LaTeX and PDFLaTeX. -runfiles size=76 - RELOC/metafont/mfpic/grafbase.mf - RELOC/metapost/mfpic/dvipsnam.mp - RELOC/metapost/mfpic/grafbase.mp - RELOC/tex/generic/mfpic/mfpic.sty - RELOC/tex/generic/mfpic/mfpic.tex - RELOC/tex/generic/mfpic/mfpicdef.tex -docfiles size=389 - RELOC/doc/generic/mfpic/README - RELOC/doc/generic/mfpic/changes.txt - RELOC/doc/generic/mfpic/coil.mps - RELOC/doc/generic/mfpic/examples/data.dat - RELOC/doc/generic/mfpic/examples/forfun.tex - RELOC/doc/generic/mfpic/examples/lapictures.tex - RELOC/doc/generic/mfpic/examples/pictures.tex - RELOC/doc/generic/mfpic/install.txt - RELOC/doc/generic/mfpic/lcheadings.ist - RELOC/doc/generic/mfpic/mfpcard.pdf - RELOC/doc/generic/mfpic/mfpcard.tex - RELOC/doc/generic/mfpic/mfpdoc.sty - RELOC/doc/generic/mfpic/mfpguide.pdf - RELOC/doc/generic/mfpic/mfpguide.tex - RELOC/doc/generic/mfpic/mfpic-doc.pdf - RELOC/doc/generic/mfpic/mfpic-doc.tex -srcfiles size=163 - RELOC/source/generic/mfpic/grafbase.dtx - RELOC/source/generic/mfpic/mfpic.dtx - RELOC/source/generic/mfpic/mfpic.ins -catalogue-ctan /graphics/mfpic -catalogue-date 2012-12-04 16:44:12 +0100 -catalogue-license lppl1.3 -catalogue-version 1.10 - -name mftinc -category Package -revision 15878 -shortdesc Pretty-print Metafont source. -relocated 1 -longdesc The mft program pretty-prints Metafont source code into a TeX -longdesc file. The mftinc package facilitates incorporating such files -longdesc into a LaTeX2e document. In addition, mftinc provides routines -longdesc for improved comment formatting and for typesetting font -longdesc tables. -runfiles size=2 - RELOC/tex/latex/mftinc/mftinc.sty -docfiles size=72 - RELOC/doc/latex/mftinc/README - RELOC/doc/latex/mftinc/mftinc.pdf -srcfiles size=16 - RELOC/source/latex/mftinc/mftinc.dtx - RELOC/source/latex/mftinc/mftinc.ins -catalogue-ctan /macros/latex/contrib/mftinc -catalogue-date 2012-06-24 11:08:44 +0200 -catalogue-license lppl -catalogue-version 1.0a - -name mfware -category TLCore -revision 37078 -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 -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 -docfiles size=19 - texmf-dist/doc/man/man1/gftodvi.1 - texmf-dist/doc/man/man1/gftodvi.man1.pdf - texmf-dist/doc/man/man1/gftopk.1 - texmf-dist/doc/man/man1/gftopk.man1.pdf - texmf-dist/doc/man/man1/gftype.1 - texmf-dist/doc/man/man1/gftype.man1.pdf - texmf-dist/doc/man/man1/mft.1 - texmf-dist/doc/man/man1/mft.man1.pdf - texmf-dist/doc/man/man1/pktogf.1 - texmf-dist/doc/man/man1/pktogf.man1.pdf - texmf-dist/doc/man/man1/pktype.1 - texmf-dist/doc/man/man1/pktype.man1.pdf -catalogue-ctan /systems/knuth/dist/mfware -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license knuth - -name mfware.i386-linux -category TLCore -revision 36790 -shortdesc i386-linux files of mfware -binfiles arch=i386-linux size=197 - bin/i386-linux/gftodvi - bin/i386-linux/gftopk - bin/i386-linux/gftype - bin/i386-linux/mft - bin/i386-linux/pktogf - bin/i386-linux/pktype - -name mhchem -category Package -revision 37943 -shortdesc Typeset chemical formulae/equations and Risk and Safety phrases. -relocated 1 -longdesc The bundle provides three packages: The mhchem package provides -longdesc commands for typesetting chemical molecular formulae and -longdesc equations. The hpstatement package provides commands for the -longdesc official hazard statements and precautionary statements (H and -longdesc P statements) that are used to label chemicals. The rsphrase -longdesc package provides commands for the official Risk and Safety (R -longdesc and S) Phrases that are used to label chemicals. The package -longdesc requires the expl3 bundle. -runfiles size=93 - RELOC/tex/latex/mhchem/hpstatement.sty - RELOC/tex/latex/mhchem/mhchem.sty - RELOC/tex/latex/mhchem/rsphrase.sty -docfiles size=115 - RELOC/doc/latex/mhchem/README - RELOC/doc/latex/mhchem/lppl-1-3c.txt - RELOC/doc/latex/mhchem/manifest.txt - RELOC/doc/latex/mhchem/mhchem.pdf - RELOC/doc/latex/mhchem/mhchem.tex -catalogue-also r-und-s -catalogue-ctan /macros/latex/contrib/mhchem -catalogue-date 2015-07-23 23:19:12 +0200 -catalogue-license lppl1.3 -catalogue-topics safety-notice chemistry - -name mhequ -category Package -revision 38224 -shortdesc Multicolumn equations, tags, labels, sub-numbering -relocated 1 -longdesc MHequ simplifies creating multi-column equation environments, -longdesc and tagging the equations therein. It supports sub-numbers of -longdesc blocks of equations (like (1.2a), (1.2b), etc) and references -longdesc to each equation individually (1.2a) or to the whole block -longdesc (1.2). The labels can be shown in draft mode. Comments in the -longdesc package itself describe usage. -runfiles size=3 - RELOC/tex/latex/mhequ/mhequ.sty -docfiles size=27 - RELOC/doc/latex/mhequ/README - RELOC/doc/latex/mhequ/example.pdf - RELOC/doc/latex/mhequ/example.tex -catalogue-ctan /macros/latex/contrib/mhequ -catalogue-date 2015-08-26 07:26:32 +0200 -catalogue-license pd -catalogue-topics maths -catalogue-version 1.7 - -name microtype-de -category Package -revision 24549 -shortdesc Translation into German of the documentation of microtype. -relocated 1 -docfiles size=451 - RELOC/doc/latex/microtype-de/microtype-DE.dtx - RELOC/doc/latex/microtype-de/microtype-DE.pdf -catalogue-ctan /info/translations/microtype/de -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 2.4 - -name microtype -category Package -revision 30755 -shortdesc Subliminal refinements towards typographical perfection. -relocated 1 -longdesc The package provides a LaTeX interface to the micro-typographic -longdesc extensions that were introduced by pdfTeX and have since also -longdesc propagated to XeTeX and LuaTeX: most prominently, character -longdesc protrusion and font expansion, furthermore the adjustment of -longdesc interword spacing and additional kerning, as well as -longdesc hyphenatable letterspacing (tracking) and the possibility to -longdesc disable all or selected ligatures. These features may be -longdesc applied to customisable sets of fonts, and all micro- -longdesc typographic aspects of the fonts can be configured in a -longdesc straight-forward and flexible way. Settings for various fonts -longdesc are provided. Note that character protrusion requires pdfTeX, -longdesc LuaTeX, or XeTeX. Font expansion works with pdfTeX or LuaTeX. -longdesc The package will by default enable protrusion and expansion if -longdesc they can safely be assumed to work. Disabling ligatures -longdesc requires pdfTeX or LuaTeX, while the adjustment of interword -longdesc spacing and of kerning only works with pdfTeX. Letterspacing is -longdesc available with pdfTeX or LuaTeX. The alternative package -longdesc `letterspace', which also works with plain TeX, provides the -longdesc user commands for letterspacing only, omitting support for all -longdesc other extensions. -runfiles size=102 - RELOC/tex/latex/microtype/letterspace.sty - RELOC/tex/latex/microtype/microtype-luatex.def - RELOC/tex/latex/microtype/microtype-pdftex.def - RELOC/tex/latex/microtype/microtype-xetex.def - RELOC/tex/latex/microtype/microtype.cfg - RELOC/tex/latex/microtype/microtype.lua - RELOC/tex/latex/microtype/microtype.sty - RELOC/tex/latex/microtype/mt-CharisSIL.cfg - RELOC/tex/latex/microtype/mt-LatinModernRoman.cfg - RELOC/tex/latex/microtype/mt-PalatinoLinotype.cfg - RELOC/tex/latex/microtype/mt-bch.cfg - RELOC/tex/latex/microtype/mt-blg.cfg - RELOC/tex/latex/microtype/mt-cmr.cfg - RELOC/tex/latex/microtype/mt-euf.cfg - RELOC/tex/latex/microtype/mt-eur.cfg - RELOC/tex/latex/microtype/mt-euroitc.cfg - RELOC/tex/latex/microtype/mt-eus.cfg - RELOC/tex/latex/microtype/mt-msa.cfg - RELOC/tex/latex/microtype/mt-msb.cfg - RELOC/tex/latex/microtype/mt-mvs.cfg - RELOC/tex/latex/microtype/mt-pad.cfg - RELOC/tex/latex/microtype/mt-pmn.cfg - RELOC/tex/latex/microtype/mt-ppl.cfg - RELOC/tex/latex/microtype/mt-ptm.cfg - RELOC/tex/latex/microtype/mt-ugm.cfg - RELOC/tex/latex/microtype/mt-zpeu.cfg -docfiles size=380 - RELOC/doc/latex/microtype/README - RELOC/doc/latex/microtype/microtype.pdf - RELOC/doc/latex/microtype/test-microtype.tex -srcfiles size=161 - RELOC/source/latex/microtype/microtype-utf.dtx - RELOC/source/latex/microtype/microtype.dtx - RELOC/source/latex/microtype/microtype.ins -catalogue-ctan /macros/latex/contrib/microtype -catalogue-date 2013-09-30 14:43:32 +0200 -catalogue-license lppl -catalogue-version 2.5a - -name midnight -category Package -revision 15878 -shortdesc A set of useful macro tools. -relocated 1 -longdesc Included are: quire: making booklets, etc.; gloss: vertically -longdesc align words in consecutive sentences; loop: a looping -longdesc construct; dolines: 'meta'-macros to separate arguments by -longdesc newlines; labels: address labels and bulk mail letters; -longdesc styledef: selectively input part of a file; and border: borders -longdesc around boxes. -runfiles size=17 - RELOC/tex/generic/midnight/border.tex - RELOC/tex/generic/midnight/dolines.tex - RELOC/tex/generic/midnight/gloss.tex - RELOC/tex/generic/midnight/labels.tex - RELOC/tex/generic/midnight/loop.tex - RELOC/tex/generic/midnight/quire.tex - RELOC/tex/generic/midnight/styledef.tex -docfiles size=122 - RELOC/doc/generic/midnight/README - RELOC/doc/generic/midnight/border.doc - RELOC/doc/generic/midnight/dolines.doc - RELOC/doc/generic/midnight/gloss.doc - RELOC/doc/generic/midnight/labels.doc - RELOC/doc/generic/midnight/loop.doc - RELOC/doc/generic/midnight/midnight.pdf - RELOC/doc/generic/midnight/quire.doc - RELOC/doc/generic/midnight/styledef.doc -catalogue-ctan /macros/generic/midnight -catalogue-date 2014-10-18 00:25:23 +0200 -catalogue-license other-free - -name midpage -category Package -revision 17484 -shortdesc Environment for vertical centring. -relocated 1 -longdesc The environment will centre text, if immediately preceded and -longdesc followed by \clearpage. -runfiles size=1 - RELOC/tex/latex/midpage/midpage.sty -docfiles size=49 - RELOC/doc/latex/midpage/midpage.pdf - RELOC/doc/latex/midpage/midpage.tex -catalogue-ctan /macros/latex/contrib/midpage -catalogue-date 2012-05-28 15:41:52 +0200 -catalogue-license lppl -catalogue-version 1.1a - -name mil3 -category Package -revision 21677 -shortdesc Samples from Math into LaTeX, third edition. -relocated 1 -longdesc Examples, samples and templates from the third edition of -longdesc Gratzer's book. -docfiles size=75 - RELOC/doc/latex/mil3/README - RELOC/doc/latex/mil3/ams-alph.bst - RELOC/doc/latex/mil3/ams-pln.bst - RELOC/doc/latex/mil3/amsart.tpl - RELOC/doc/latex/mil3/article.tpl - RELOC/doc/latex/mil3/article2.tpl - RELOC/doc/latex/mil3/contents - RELOC/doc/latex/mil3/fonttbl.tex - RELOC/doc/latex/mil3/gallery.tex - RELOC/doc/latex/mil3/german.tex - RELOC/doc/latex/mil3/ggamsart.tpl - RELOC/doc/latex/mil3/ggart.tpl - RELOC/doc/latex/mil3/ggart2.tpl - RELOC/doc/latex/mil3/gratzer - RELOC/doc/latex/mil3/inbibl.tpl - RELOC/doc/latex/mil3/intrart.tex - RELOC/doc/latex/mil3/intrarti.tex - RELOC/doc/latex/mil3/lattice.sty - RELOC/doc/latex/mil3/letter.tex - RELOC/doc/latex/mil3/master.tex - RELOC/doc/latex/mil3/math.tex - RELOC/doc/latex/mil3/mathb.tex - RELOC/doc/latex/mil3/multline.tpl - RELOC/doc/latex/mil3/note1.tex - RELOC/doc/latex/mil3/note1b.tex - RELOC/doc/latex/mil3/note2.tex - RELOC/doc/latex/mil3/noteslug.tex - RELOC/doc/latex/mil3/sampart.tex - RELOC/doc/latex/mil3/sampartb.bib - RELOC/doc/latex/mil3/sampartb.tex - RELOC/doc/latex/mil3/sampartu.tex - RELOC/doc/latex/mil3/sample.html - RELOC/doc/latex/mil3/svsing2e.sty - RELOC/doc/latex/mil3/svsing6.cls - RELOC/doc/latex/mil3/template.bib - RELOC/doc/latex/mil3/textenv.tpl - RELOC/doc/latex/mil3/topmat.tpl -catalogue-ctan /info/examples/mil3 -catalogue-date 2012-05-28 15:41:52 +0200 -catalogue-license other-free - -name miller -category Package -revision 18789 -shortdesc Typeset miller indices. -relocated 1 -longdesc Typeset miller indices, e.g., <1-20>, that are used in material -longdesc science with an easy syntax. Minus signs are printed as bar -longdesc above the corresponding number. -runfiles size=1 - RELOC/tex/latex/miller/miller.sty -docfiles size=73 - RELOC/doc/latex/miller/ChangeLog - RELOC/doc/latex/miller/Makefile - RELOC/doc/latex/miller/README - RELOC/doc/latex/miller/miller-v.tex - RELOC/doc/latex/miller/miller.pdf - RELOC/doc/latex/miller/millertest.tex -srcfiles size=3 - RELOC/source/latex/miller/miller.dtx - RELOC/source/latex/miller/miller.ins -catalogue-ctan /macros/latex/contrib/miller -catalogue-date 2012-05-25 16:20:41 +0200 -catalogue-license lppl -catalogue-version 1.2 - -name minibox -category Package -revision 30914 -shortdesc A simple type of box for LaTeX. -relocated 1 -longdesc This small package provides a convenient input syntax for boxes -longdesc that don't break their text over lines automatically, but do -longdesc allow manual line breaks. The boxes shrink to the natural width -longdesc of the longest line they contain. -runfiles size=1 - RELOC/tex/latex/minibox/minibox.sty -docfiles size=70 - RELOC/doc/latex/minibox/README - RELOC/doc/latex/minibox/minibox.pdf -srcfiles size=3 - RELOC/source/latex/minibox/minibox.ins - RELOC/source/latex/minibox/minibox.tex -catalogue-ctan /macros/latex/contrib/minibox -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.2a - -name minifp -category Package -revision 32559 -shortdesc Fixed-point real computations to 8 decimals. -relocated 1 -longdesc The package provides basic arithmetic operations to 8 decimal -longdesc places for plain TeX or LaTeX. Results are exact when they fit -longdesc within the digit limits. Along with the basic package is an -longdesc optional extension that adds computation of sin, cos, log, -longdesc sqrt, exp, powers and angles. These are also exact when -longdesc theoretically possible and are otherwise accurate to at least 7 -longdesc decimal places. In addition, the package provides a stack-based -longdesc programing environment. -runfiles size=13 - RELOC/tex/generic/minifp/mfpextra.tex - RELOC/tex/generic/minifp/minifp.sty -docfiles size=116 - RELOC/doc/generic/minifp/README - RELOC/doc/generic/minifp/minifp.pdf - RELOC/doc/generic/minifp/test1.tex - RELOC/doc/generic/minifp/test2.tex -srcfiles size=42 - RELOC/source/generic/minifp/minifp.dtx - RELOC/source/generic/minifp/minifp.ins -catalogue-ctan /macros/generic/minifp -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.96 - -name minipage-marginpar -category Package -revision 15878 -shortdesc Minipages with marginal notes. -relocated 1 -longdesc This package allows \marginpar-commands inside of minipages and -longdesc other boxes. (It takes another approach than marginnote by -longdesc Markus Kohm: it saves all \marginpar-commands and typesets them -longdesc outside (i.e., after) the box.) The package defines an -longdesc environment minipagewithmarginpars (to be used like minipage)-- -longdesc and the internal commands may be used by other packages to -longdesc define similar environments or commands. -runfiles size=2 - RELOC/tex/latex/minipage-marginpar/minipage-marginpar.sty - RELOC/tex/latex/minipage-marginpar/mpgmpar.sty -docfiles size=51 - RELOC/doc/latex/minipage-marginpar/README - RELOC/doc/latex/minipage-marginpar/minipage-marginpar.pdf -srcfiles size=5 - RELOC/source/latex/minipage-marginpar/minipage-marginpar.dtx - RELOC/source/latex/minipage-marginpar/minipage-marginpar.ins -catalogue-ctan /macros/latex/contrib/minipage-marginpar -catalogue-date 2012-06-24 14:49:23 +0200 -catalogue-license lppl -catalogue-version v0.2 - -name miniplot -category Package -revision 17483 -shortdesc A package for easy figure arrangement. -relocated 1 -longdesc MiniPlot is a package to help the LaTeX user typeset EPS -longdesc figures using an easy-to-use interface. Figures can be arranged -longdesc as one-figure-only or as a collection of figures in columns and -longdesc rows which can itself contain sub-figures in columns and rows. -longdesc Wrapped figures are also supported. This package provides -longdesc commands to display a framebox instead of the figure as the -longdesc graphics package does already but additionally it writes useful -longdesc information such as the label and scaling factor into these -longdesc boxes. -runfiles size=11 - RELOC/tex/latex/miniplot/miniplot.sty -docfiles size=68 - RELOC/doc/latex/miniplot/disclaimer.txt - RELOC/doc/latex/miniplot/documentation.zip - RELOC/doc/latex/miniplot/miniplot.pdf - RELOC/doc/latex/miniplot/miniplot.tex -catalogue-ctan /macros/latex/contrib/miniplot -catalogue-date 2012-06-24 14:49:23 +0200 -catalogue-license lppl - -name minitoc -category Package -revision 37852 -shortdesc Produce a table of contents for each chapter, part or section. -relocated 1 -longdesc The minitoc package allows you to add mini-tables-of-contents -longdesc (minitocs) at the beginning of every chapter, part or section. -longdesc There is also provision for mini-lists of figures and of -longdesc tables. At the part level, they are parttocs, partlofs and -longdesc partlots. If the type of document does not use chapters, the -longdesc basic provision is section level secttocs, sectlofs and -longdesc sectlots. The package has provision for language-specific -longdesc configuration of its own "fixed names", using .mld files -longdesc (analagous to babel .ldf files that do that job for LaTeX"s own -longdesc fixed names). -runfiles size=267 - RELOC/tex/latex/minitoc/UKenglish.mld - RELOC/tex/latex/minitoc/USenglish.mld - RELOC/tex/latex/minitoc/acadian.mld - RELOC/tex/latex/minitoc/acadien.mld - RELOC/tex/latex/minitoc/afrikaan.mld - RELOC/tex/latex/minitoc/afrikaans.mld - RELOC/tex/latex/minitoc/albanian.mld - RELOC/tex/latex/minitoc/american.mld - RELOC/tex/latex/minitoc/arab.mld - RELOC/tex/latex/minitoc/arab2.mld - RELOC/tex/latex/minitoc/arabi.mld - RELOC/tex/latex/minitoc/arabic.mld - RELOC/tex/latex/minitoc/armenian.mld - RELOC/tex/latex/minitoc/australian.mld - RELOC/tex/latex/minitoc/austrian.mld - RELOC/tex/latex/minitoc/bahasa.mld - RELOC/tex/latex/minitoc/bahasai.mld - RELOC/tex/latex/minitoc/bahasam.mld - RELOC/tex/latex/minitoc/bangla.mld - RELOC/tex/latex/minitoc/basque.mld - RELOC/tex/latex/minitoc/bengali.mld - RELOC/tex/latex/minitoc/bicig.mld - RELOC/tex/latex/minitoc/bicig2.mld - RELOC/tex/latex/minitoc/bicig3.mld - RELOC/tex/latex/minitoc/bithe.mld - RELOC/tex/latex/minitoc/brazil.mld - RELOC/tex/latex/minitoc/brazilian.mld - RELOC/tex/latex/minitoc/breton.mld - RELOC/tex/latex/minitoc/british.mld - RELOC/tex/latex/minitoc/bulgarian.mld - RELOC/tex/latex/minitoc/bulgarianb.mld - RELOC/tex/latex/minitoc/buryat.mld - RELOC/tex/latex/minitoc/buryat2.mld - RELOC/tex/latex/minitoc/canadian.mld - RELOC/tex/latex/minitoc/canadien.mld - RELOC/tex/latex/minitoc/castillan.mld - RELOC/tex/latex/minitoc/castillian.mld - RELOC/tex/latex/minitoc/catalan.mld - RELOC/tex/latex/minitoc/chinese1.mld - RELOC/tex/latex/minitoc/chinese1.mlo - RELOC/tex/latex/minitoc/chinese2.mld - RELOC/tex/latex/minitoc/chinese2.mlo - RELOC/tex/latex/minitoc/croatian.mld - RELOC/tex/latex/minitoc/czech.mld - RELOC/tex/latex/minitoc/danish.mld - RELOC/tex/latex/minitoc/devanagari.mld - RELOC/tex/latex/minitoc/dutch.mld - RELOC/tex/latex/minitoc/english.mld - RELOC/tex/latex/minitoc/english1.mld - RELOC/tex/latex/minitoc/english2.mld - RELOC/tex/latex/minitoc/esperant.mld - RELOC/tex/latex/minitoc/esperanto.mld - RELOC/tex/latex/minitoc/estonian.mld - RELOC/tex/latex/minitoc/ethiopia.mld - RELOC/tex/latex/minitoc/ethiopian.mld - RELOC/tex/latex/minitoc/ethiopian2.mld - RELOC/tex/latex/minitoc/farsi1.mld - RELOC/tex/latex/minitoc/farsi1.mlo - RELOC/tex/latex/minitoc/farsi2.mld - RELOC/tex/latex/minitoc/farsi2.mlo - RELOC/tex/latex/minitoc/farsi3.mld - RELOC/tex/latex/minitoc/finnish.mld - RELOC/tex/latex/minitoc/finnish2.mld - RELOC/tex/latex/minitoc/francais.mld - RELOC/tex/latex/minitoc/french.mld - RELOC/tex/latex/minitoc/french1.mld - RELOC/tex/latex/minitoc/french2.mld - RELOC/tex/latex/minitoc/frenchb.mld - RELOC/tex/latex/minitoc/frenchle.mld - RELOC/tex/latex/minitoc/frenchpro.mld - RELOC/tex/latex/minitoc/galician.mld - RELOC/tex/latex/minitoc/german.mld - RELOC/tex/latex/minitoc/germanb.mld - RELOC/tex/latex/minitoc/germanb2.mld - RELOC/tex/latex/minitoc/greek-mono.mld - RELOC/tex/latex/minitoc/greek-polydemo.mld - RELOC/tex/latex/minitoc/greek-polykatha.mld - RELOC/tex/latex/minitoc/greek.mld - RELOC/tex/latex/minitoc/guarani.mld - RELOC/tex/latex/minitoc/hangul-u8.mld - RELOC/tex/latex/minitoc/hangul-u8.mlo - RELOC/tex/latex/minitoc/hangul1.mld - RELOC/tex/latex/minitoc/hangul1.mlo - RELOC/tex/latex/minitoc/hangul2.mld - RELOC/tex/latex/minitoc/hangul2.mlo - RELOC/tex/latex/minitoc/hangul3.mld - RELOC/tex/latex/minitoc/hangul3.mlo - RELOC/tex/latex/minitoc/hangul4.mld - RELOC/tex/latex/minitoc/hangul4.mlo - RELOC/tex/latex/minitoc/hanja-u8.mld - RELOC/tex/latex/minitoc/hanja-u8.mlo - RELOC/tex/latex/minitoc/hanja1.mld - RELOC/tex/latex/minitoc/hanja1.mlo - RELOC/tex/latex/minitoc/hanja2.mld - RELOC/tex/latex/minitoc/hanja2.mlo - RELOC/tex/latex/minitoc/hebrew.mld - RELOC/tex/latex/minitoc/hebrew2.mld - RELOC/tex/latex/minitoc/hindi-modern.mld - RELOC/tex/latex/minitoc/hindi.mld - RELOC/tex/latex/minitoc/hungarian.mld - RELOC/tex/latex/minitoc/icelandic.mld - RELOC/tex/latex/minitoc/indon.mld - RELOC/tex/latex/minitoc/indonesian.mld - RELOC/tex/latex/minitoc/interlingua.mld - RELOC/tex/latex/minitoc/irish.mld - RELOC/tex/latex/minitoc/italian.mld - RELOC/tex/latex/minitoc/italian2.mld - RELOC/tex/latex/minitoc/japanese.mld - RELOC/tex/latex/minitoc/japanese.mlo - RELOC/tex/latex/minitoc/japanese2.mld - RELOC/tex/latex/minitoc/japanese2.mlo - RELOC/tex/latex/minitoc/japanese3.mld - RELOC/tex/latex/minitoc/japanese3.mlo - RELOC/tex/latex/minitoc/japanese4.mld - RELOC/tex/latex/minitoc/japanese4.mlo - RELOC/tex/latex/minitoc/japanese5.mld - RELOC/tex/latex/minitoc/japanese5.mlo - RELOC/tex/latex/minitoc/japanese6.mld - RELOC/tex/latex/minitoc/japanese6.mlo - RELOC/tex/latex/minitoc/kannada.mld - RELOC/tex/latex/minitoc/khalkha.mld - RELOC/tex/latex/minitoc/latin.mld - RELOC/tex/latex/minitoc/latin2.mld - RELOC/tex/latex/minitoc/latinc.mld - RELOC/tex/latex/minitoc/latinc2.mld - RELOC/tex/latex/minitoc/latvian.mld - RELOC/tex/latex/minitoc/latvian2.mld - RELOC/tex/latex/minitoc/letton.mld - RELOC/tex/latex/minitoc/letton2.mld - RELOC/tex/latex/minitoc/lithuanian.mld - RELOC/tex/latex/minitoc/lithuanian2.mld - RELOC/tex/latex/minitoc/lowersorbian.mld - RELOC/tex/latex/minitoc/lsorbian.mld - RELOC/tex/latex/minitoc/magyar.mld - RELOC/tex/latex/minitoc/magyar2.mld - RELOC/tex/latex/minitoc/magyar3.mld - RELOC/tex/latex/minitoc/malay.mld - RELOC/tex/latex/minitoc/malayalam-b.mld - RELOC/tex/latex/minitoc/malayalam-keli.mld - RELOC/tex/latex/minitoc/malayalam-keli2.mld - RELOC/tex/latex/minitoc/malayalam-mr.mld - RELOC/tex/latex/minitoc/malayalam-omega.mld - RELOC/tex/latex/minitoc/malayalam-omega.mlo - RELOC/tex/latex/minitoc/malayalam-rachana.mld - RELOC/tex/latex/minitoc/malayalam-rachana2.mld - RELOC/tex/latex/minitoc/malayalam-rachana3.mld - RELOC/tex/latex/minitoc/manju.mld - RELOC/tex/latex/minitoc/mexican.mld - RELOC/tex/latex/minitoc/meyalu.mld - RELOC/tex/latex/minitoc/minitoc.sty - RELOC/tex/latex/minitoc/mongol.mld - RELOC/tex/latex/minitoc/mongolb.mld - RELOC/tex/latex/minitoc/mongolian.mld - RELOC/tex/latex/minitoc/mtcmess.sty - RELOC/tex/latex/minitoc/mtcoff.sty - RELOC/tex/latex/minitoc/mtcpatchmem.sty - RELOC/tex/latex/minitoc/naustrian.mld - RELOC/tex/latex/minitoc/newzealand.mld - RELOC/tex/latex/minitoc/ngerman.mld - RELOC/tex/latex/minitoc/ngermanb.mld - RELOC/tex/latex/minitoc/ngermanb2.mld - RELOC/tex/latex/minitoc/norsk.mld - RELOC/tex/latex/minitoc/norsk2.mld - RELOC/tex/latex/minitoc/nynorsk.mld - RELOC/tex/latex/minitoc/nynorsk2.mld - RELOC/tex/latex/minitoc/occitan.mld - RELOC/tex/latex/minitoc/occitan2.mld - RELOC/tex/latex/minitoc/polish.mld - RELOC/tex/latex/minitoc/polish2.mld - RELOC/tex/latex/minitoc/polski.mld - RELOC/tex/latex/minitoc/portuges.mld - RELOC/tex/latex/minitoc/portuguese.mld - RELOC/tex/latex/minitoc/romanian.mld - RELOC/tex/latex/minitoc/romanian2.mld - RELOC/tex/latex/minitoc/romanian3.mld - RELOC/tex/latex/minitoc/russian-cca.mld - RELOC/tex/latex/minitoc/russian-cca.mlo - RELOC/tex/latex/minitoc/russian-cca1.mld - RELOC/tex/latex/minitoc/russian-cca1.mlo - RELOC/tex/latex/minitoc/russian-lh.mld - RELOC/tex/latex/minitoc/russian-lh.mlo - RELOC/tex/latex/minitoc/russian-lhcyralt.mld - RELOC/tex/latex/minitoc/russian-lhcyralt.mlo - RELOC/tex/latex/minitoc/russian-lhcyrkoi.mld - RELOC/tex/latex/minitoc/russian-lhcyrkoi.mlo - RELOC/tex/latex/minitoc/russian-lhcyrwin.mld - RELOC/tex/latex/minitoc/russian-lhcyrwin.mlo - RELOC/tex/latex/minitoc/russian.mld - RELOC/tex/latex/minitoc/russian2m.mld - RELOC/tex/latex/minitoc/russian2o.mld - RELOC/tex/latex/minitoc/russianb.mld - RELOC/tex/latex/minitoc/russianc.mld - RELOC/tex/latex/minitoc/samin.mld - RELOC/tex/latex/minitoc/scottish.mld - RELOC/tex/latex/minitoc/serbian.mld - RELOC/tex/latex/minitoc/serbianc.mld - RELOC/tex/latex/minitoc/slovak.mld - RELOC/tex/latex/minitoc/slovene.mld - RELOC/tex/latex/minitoc/spanish.mld - RELOC/tex/latex/minitoc/spanish2.mld - RELOC/tex/latex/minitoc/spanish3.mld - RELOC/tex/latex/minitoc/spanish4.mld - RELOC/tex/latex/minitoc/swahili.mld - RELOC/tex/latex/minitoc/swedish.mld - RELOC/tex/latex/minitoc/swedish2.mld - RELOC/tex/latex/minitoc/thai.mld - RELOC/tex/latex/minitoc/thai.mlo - RELOC/tex/latex/minitoc/turkish.mld - RELOC/tex/latex/minitoc/uighur.mld - RELOC/tex/latex/minitoc/uighur2.mld - RELOC/tex/latex/minitoc/uighur3.mld - RELOC/tex/latex/minitoc/ukraineb.mld - RELOC/tex/latex/minitoc/ukrainian.mld - RELOC/tex/latex/minitoc/uppersorbian.mld - RELOC/tex/latex/minitoc/usorbian.mld - RELOC/tex/latex/minitoc/vietnam.mld - RELOC/tex/latex/minitoc/vietnamese.mld - RELOC/tex/latex/minitoc/welsh.mld - RELOC/tex/latex/minitoc/xalx.mld - RELOC/tex/latex/minitoc/xalx2.mld - RELOC/tex/latex/minitoc/xalx3.mld -docfiles size=2339 - RELOC/doc/latex/minitoc/INSTALL - RELOC/doc/latex/minitoc/README - RELOC/doc/latex/minitoc/TODO - RELOC/doc/latex/minitoc/boldsc.sty - RELOC/doc/latex/minitoc/cmk - RELOC/doc/latex/minitoc/dblaccnt.sty - RELOC/doc/latex/minitoc/emk - RELOC/doc/latex/minitoc/en-mtc.bst - RELOC/doc/latex/minitoc/examples/mtc-2c.pdf - RELOC/doc/latex/minitoc/examples/mtc-2c.tex - RELOC/doc/latex/minitoc/examples/mtc-2nd.pdf - RELOC/doc/latex/minitoc/examples/mtc-2nd.tex - RELOC/doc/latex/minitoc/examples/mtc-3co.pdf - RELOC/doc/latex/minitoc/examples/mtc-3co.tex - RELOC/doc/latex/minitoc/examples/mtc-add.bib - RELOC/doc/latex/minitoc/examples/mtc-add.pdf - RELOC/doc/latex/minitoc/examples/mtc-add.tex - RELOC/doc/latex/minitoc/examples/mtc-ads.pdf - RELOC/doc/latex/minitoc/examples/mtc-ads.tex - RELOC/doc/latex/minitoc/examples/mtc-amm.pdf - RELOC/doc/latex/minitoc/examples/mtc-amm.tex - RELOC/doc/latex/minitoc/examples/mtc-apx.pdf - RELOC/doc/latex/minitoc/examples/mtc-apx.tex - RELOC/doc/latex/minitoc/examples/mtc-art.pdf - RELOC/doc/latex/minitoc/examples/mtc-art.tex - RELOC/doc/latex/minitoc/examples/mtc-bk.pdf - RELOC/doc/latex/minitoc/examples/mtc-bk.tex - RELOC/doc/latex/minitoc/examples/mtc-bo.pdf - RELOC/doc/latex/minitoc/examples/mtc-bo.tex - RELOC/doc/latex/minitoc/examples/mtc-ch0.pdf - RELOC/doc/latex/minitoc/examples/mtc-ch0.tex - RELOC/doc/latex/minitoc/examples/mtc-cri.pdf - RELOC/doc/latex/minitoc/examples/mtc-cri.tex - RELOC/doc/latex/minitoc/examples/mtc-fko.pdf - RELOC/doc/latex/minitoc/examples/mtc-fko.tex - RELOC/doc/latex/minitoc/examples/mtc-fo1.pdf - RELOC/doc/latex/minitoc/examples/mtc-fo1.tex - RELOC/doc/latex/minitoc/examples/mtc-fo2.pdf - RELOC/doc/latex/minitoc/examples/mtc-fo2.tex - RELOC/doc/latex/minitoc/examples/mtc-gap.pdf - RELOC/doc/latex/minitoc/examples/mtc-gap.tex - RELOC/doc/latex/minitoc/examples/mtc-hi1.pdf - RELOC/doc/latex/minitoc/examples/mtc-hi1.tex - RELOC/doc/latex/minitoc/examples/mtc-hi2.pdf - RELOC/doc/latex/minitoc/examples/mtc-hi2.tex - RELOC/doc/latex/minitoc/examples/mtc-hia.pdf - RELOC/doc/latex/minitoc/examples/mtc-hia.tex - RELOC/doc/latex/minitoc/examples/mtc-hir.pdf - RELOC/doc/latex/minitoc/examples/mtc-hir.tex - RELOC/doc/latex/minitoc/examples/mtc-hop.pdf - RELOC/doc/latex/minitoc/examples/mtc-hop.tex - RELOC/doc/latex/minitoc/examples/mtc-liv.pdf - RELOC/doc/latex/minitoc/examples/mtc-liv.tex - RELOC/doc/latex/minitoc/examples/mtc-mem.pdf - RELOC/doc/latex/minitoc/examples/mtc-mem.tex - RELOC/doc/latex/minitoc/examples/mtc-mm1.pdf - RELOC/doc/latex/minitoc/examples/mtc-mm1.tex - RELOC/doc/latex/minitoc/examples/mtc-mu.pdf - RELOC/doc/latex/minitoc/examples/mtc-mu.tex - RELOC/doc/latex/minitoc/examples/mtc-nom.pdf - RELOC/doc/latex/minitoc/examples/mtc-nom.tex - RELOC/doc/latex/minitoc/examples/mtc-ocf.pdf - RELOC/doc/latex/minitoc/examples/mtc-ocf.tex - RELOC/doc/latex/minitoc/examples/mtc-ofs.pdf - RELOC/doc/latex/minitoc/examples/mtc-ofs.tex - RELOC/doc/latex/minitoc/examples/mtc-sbf.pdf - RELOC/doc/latex/minitoc/examples/mtc-sbf.tex - RELOC/doc/latex/minitoc/examples/mtc-scr.pdf - RELOC/doc/latex/minitoc/examples/mtc-scr.tex - RELOC/doc/latex/minitoc/examples/mtc-syn.pdf - RELOC/doc/latex/minitoc/examples/mtc-syn.tex - RELOC/doc/latex/minitoc/examples/mtc-tbi.pdf - RELOC/doc/latex/minitoc/examples/mtc-tbi.tex - RELOC/doc/latex/minitoc/examples/mtc-tlc.pdf - RELOC/doc/latex/minitoc/examples/mtc-tlc.tex - RELOC/doc/latex/minitoc/examples/mtc-tsf.pdf - RELOC/doc/latex/minitoc/examples/mtc-tsf.tex - RELOC/doc/latex/minitoc/examples/mtc-vti.pdf - RELOC/doc/latex/minitoc/examples/mtc-vti.tex - RELOC/doc/latex/minitoc/fmk - RELOC/doc/latex/minitoc/fr-mtc.bst - RELOC/doc/latex/minitoc/franc.sty - RELOC/doc/latex/minitoc/frbib.sty - RELOC/doc/latex/minitoc/frnew.sty - RELOC/doc/latex/minitoc/images/lamed3.png - RELOC/doc/latex/minitoc/imk - RELOC/doc/latex/minitoc/minitoc-fr.bib - RELOC/doc/latex/minitoc/minitoc-fr.dtx - RELOC/doc/latex/minitoc/minitoc-fr.ist - RELOC/doc/latex/minitoc/minitoc-fr.lan - RELOC/doc/latex/minitoc/minitoc-fr.pdf - RELOC/doc/latex/minitoc/minitoc.bib - RELOC/doc/latex/minitoc/minitoc.bug - RELOC/doc/latex/minitoc/minitoc.dtx - RELOC/doc/latex/minitoc/minitoc.ins - RELOC/doc/latex/minitoc/minitoc.ist - RELOC/doc/latex/minitoc/minitoc.l - RELOC/doc/latex/minitoc/minitoc.lan - RELOC/doc/latex/minitoc/minitoc.pdf - RELOC/doc/latex/minitoc/minitoc.pre - RELOC/doc/latex/minitoc/minitoc.sum - RELOC/doc/latex/minitoc/mypatches.sty - RELOC/doc/latex/minitoc/pmk - RELOC/doc/latex/minitoc/rmk - RELOC/doc/latex/minitoc/tmk - RELOC/doc/latex/minitoc/xmk -catalogue-ctan /macros/latex/contrib/minitoc -catalogue-date 2015-07-13 19:57:07 +0200 -catalogue-license lppl1.3 -catalogue-topics toc-etc -catalogue-version 61 - -name minorrevision -category Package -revision 32165 -shortdesc Quote and refer to a manuscript for minor revisions. -relocated 1 -longdesc The package supports those who publish articles in peer- -longdesc reviewed journals. In the final stages of the review process, -longdesc the authors typically have to provide an additional document -longdesc (such as a letter to the editors), in which they provide a list -longdesc of modifications that they made to the manuscript. The package -longdesc automatically provides line numbers and quotations from the -longdesc manuscript, for this letter. The package loads the package -longdesc lineno, so (in effect) shares lineno's incompatibilities. -runfiles size=1 - RELOC/tex/latex/minorrevision/minorrevision.sty -docfiles size=44 - RELOC/doc/latex/minorrevision/README - RELOC/doc/latex/minorrevision/minorrevision.pdf - RELOC/doc/latex/minorrevision/minorrevision.tex -catalogue-ctan /macros/latex/contrib/minorrevision -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.2 -catalogue-version 1.1 - -name minted -category Package -revision 38339 -shortdesc Highlighted source code for LaTeX -relocated 1 -longdesc The package that facilitates expressive syntax highlighting in -longdesc LaTeX using the powerful Pygments library. The package also -longdesc provides options to customize the highlighted source code -longdesc output using fancyvrb. -runfiles size=17 - RELOC/tex/latex/minted/minted.sty - RELOC/tex/latex/minted/minted1.sty -docfiles size=167 - RELOC/doc/latex/minted/Makefile - RELOC/doc/latex/minted/README - RELOC/doc/latex/minted/minted.pdf -srcfiles size=50 - RELOC/source/latex/minted/minted.dtx - RELOC/source/latex/minted/minted.ins -catalogue-also texments verbments -catalogue-ctan /macros/latex/contrib/minted -catalogue-date 2015-09-09 23:19:24 +0200 -catalogue-license lppl1.3 -catalogue-topics listing -catalogue-version 2.1 - -name mintspirit -category Package -revision 32069 -shortdesc LaTeX support for MintSpirit font families. -relocated 1 -longdesc The package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX -longdesc support for the MintSpirit and MintSpiritNo2 families of fonts, -longdesc designed by Hirwen Harendal. MintSpirit was originally designed -longdesc for use as a system font on a Linux Mint system. The No. 2 -longdesc variant provides more conventional shapes for some glyphs. -execute addMap mintspirit.map -runfiles size=1255 - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_24uybq.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_2dxuba.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_3vy5j3.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_5cazkt.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_63vcua.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_6x4rw3.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_7ayy44.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_7u5374.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_amdskp.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_biiinc.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_bkoczj.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_dnk3mn.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_eex3ia.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_eqihrw.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_eqrkmo.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_fizmng.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_fm3wlu.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_j4bodc.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_k4fv75.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_l3e5vj.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_lm7mhw.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_lwraz3.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_me5dp6.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_oe76kg.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_ref42g.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_s7rd6p.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_taixll.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_tmtdfz.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt2_ywkmiw.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt_2isll4.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt_3sm7wd.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt_3y5hmb.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt_5lbatd.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt_5yvi6n.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt_675dmr.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt_7enqs3.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt_bjjcsi.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt_f4utek.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt_gcdgcc.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt_gdx47l.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt_girsvq.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt_gr6qqq.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt_imdxi4.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt_lvhuc6.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt_lzc2o4.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt_oj7rfe.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt_opresw.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt_pulfbi.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt_swumq4.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt_v6lq4b.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt_wk34ig.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt_y4xqha.enc - RELOC/fonts/enc/dvips/mintspirit/mntsprt_zt2pqo.enc - RELOC/fonts/map/dvips/mintspirit/mintspirit.map - RELOC/fonts/opentype/arkandis/mintspirit/MintSpirit-Bold.otf - RELOC/fonts/opentype/arkandis/mintspirit/MintSpirit-BoldItalic.otf - RELOC/fonts/opentype/arkandis/mintspirit/MintSpirit-Italic.otf - RELOC/fonts/opentype/arkandis/mintspirit/MintSpirit-Regular.otf - RELOC/fonts/opentype/arkandis/mintspirit/MintSpiritNo2-Bold.otf - RELOC/fonts/opentype/arkandis/mintspirit/MintSpiritNo2-BoldItalic.otf - RELOC/fonts/opentype/arkandis/mintspirit/MintSpiritNo2-Italic.otf - RELOC/fonts/opentype/arkandis/mintspirit/MintSpiritNo2-Regular.otf - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-inf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-inf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-inf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-inf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-inf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-sup-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-sup-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-sup-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-sup-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-sup-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-inf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-inf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-inf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-inf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-inf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-sup-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-sup-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-sup-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-sup-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-sup-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-inf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-inf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-inf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-inf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-inf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-sup-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-sup-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-sup-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-sup-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-sup-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-inf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-inf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-inf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-inf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-inf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-sup-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-sup-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-sup-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-sup-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-sup-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-inf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-inf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-inf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-inf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-inf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-sup-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-sup-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-sup-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-sup-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-sup-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-inf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-inf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-inf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-inf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-inf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-sup-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-sup-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-sup-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-sup-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-sup-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-inf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-inf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-inf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-inf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-inf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-sup-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-sup-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-sup-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-sup-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-sup-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ts1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ly1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ly1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ot1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-t1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-t1.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ts1--base.tfm - RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ts1.tfm - RELOC/fonts/type1/arkandis/mintspirit/MintSpirit-Bold.pfb - RELOC/fonts/type1/arkandis/mintspirit/MintSpirit-BoldItalic.pfb - RELOC/fonts/type1/arkandis/mintspirit/MintSpirit-Italic.pfb - RELOC/fonts/type1/arkandis/mintspirit/MintSpirit-Regular.pfb - RELOC/fonts/type1/arkandis/mintspirit/MintSpiritNo2-Bold.pfb - RELOC/fonts/type1/arkandis/mintspirit/MintSpiritNo2-BoldItalic.pfb - RELOC/fonts/type1/arkandis/mintspirit/MintSpiritNo2-Italic.pfb - RELOC/fonts/type1/arkandis/mintspirit/MintSpiritNo2-Regular.pfb - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-inf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-inf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-lf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-lf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-lf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-osf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-osf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-osf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-sup-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-sup-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-tlf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-tlf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-tlf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-tosf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-tosf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-tosf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-inf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-inf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-lf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-osf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-sup-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-sup-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-inf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-inf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-lf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-lf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-lf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-osf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-osf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-osf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-sup-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-sup-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-tlf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-tlf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-tlf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-tosf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-tosf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-tosf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-inf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-inf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-lf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-lf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-lf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-osf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-osf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-osf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-sup-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-sup-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-tlf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-tlf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-tlf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-tosf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-tosf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-tosf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-inf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-inf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-lf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-osf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-sup-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-sup-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-inf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-inf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-lf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-osf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-sup-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-sup-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-inf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-inf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-lf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-osf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-sup-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-sup-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ts1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ly1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-t1.vf - RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ts1.vf - RELOC/tex/latex/mintspirit/LY1MintSpirit-Inf.fd - RELOC/tex/latex/mintspirit/LY1MintSpirit-LF.fd - RELOC/tex/latex/mintspirit/LY1MintSpirit-OsF.fd - RELOC/tex/latex/mintspirit/LY1MintSpirit-Sup.fd - RELOC/tex/latex/mintspirit/LY1MintSpirit-TLF.fd - RELOC/tex/latex/mintspirit/LY1MintSpirit-TOsF.fd - RELOC/tex/latex/mintspirit/LY1MintSpiritNoTwo-Inf.fd - RELOC/tex/latex/mintspirit/LY1MintSpiritNoTwo-LF.fd - RELOC/tex/latex/mintspirit/LY1MintSpiritNoTwo-OsF.fd - RELOC/tex/latex/mintspirit/LY1MintSpiritNoTwo-Sup.fd - RELOC/tex/latex/mintspirit/LY1MintSpiritNoTwo-TLF.fd - RELOC/tex/latex/mintspirit/LY1MintSpiritNoTwo-TOsF.fd - RELOC/tex/latex/mintspirit/OT1MintSpirit-Inf.fd - RELOC/tex/latex/mintspirit/OT1MintSpirit-LF.fd - RELOC/tex/latex/mintspirit/OT1MintSpirit-OsF.fd - RELOC/tex/latex/mintspirit/OT1MintSpirit-Sup.fd - RELOC/tex/latex/mintspirit/OT1MintSpirit-TLF.fd - RELOC/tex/latex/mintspirit/OT1MintSpirit-TOsF.fd - RELOC/tex/latex/mintspirit/OT1MintSpiritNoTwo-Inf.fd - RELOC/tex/latex/mintspirit/OT1MintSpiritNoTwo-LF.fd - RELOC/tex/latex/mintspirit/OT1MintSpiritNoTwo-OsF.fd - RELOC/tex/latex/mintspirit/OT1MintSpiritNoTwo-Sup.fd - RELOC/tex/latex/mintspirit/OT1MintSpiritNoTwo-TLF.fd - RELOC/tex/latex/mintspirit/OT1MintSpiritNoTwo-TOsF.fd - RELOC/tex/latex/mintspirit/T1MintSpirit-Inf.fd - RELOC/tex/latex/mintspirit/T1MintSpirit-LF.fd - RELOC/tex/latex/mintspirit/T1MintSpirit-OsF.fd - RELOC/tex/latex/mintspirit/T1MintSpirit-Sup.fd - RELOC/tex/latex/mintspirit/T1MintSpirit-TLF.fd - RELOC/tex/latex/mintspirit/T1MintSpirit-TOsF.fd - RELOC/tex/latex/mintspirit/T1MintSpiritNoTwo-Inf.fd - RELOC/tex/latex/mintspirit/T1MintSpiritNoTwo-LF.fd - RELOC/tex/latex/mintspirit/T1MintSpiritNoTwo-OsF.fd - RELOC/tex/latex/mintspirit/T1MintSpiritNoTwo-Sup.fd - RELOC/tex/latex/mintspirit/T1MintSpiritNoTwo-TLF.fd - RELOC/tex/latex/mintspirit/T1MintSpiritNoTwo-TOsF.fd - RELOC/tex/latex/mintspirit/TS1MintSpirit-LF.fd - RELOC/tex/latex/mintspirit/TS1MintSpirit-OsF.fd - RELOC/tex/latex/mintspirit/TS1MintSpirit-TLF.fd - RELOC/tex/latex/mintspirit/TS1MintSpirit-TOsF.fd - RELOC/tex/latex/mintspirit/TS1MintSpiritNoTwo-LF.fd - RELOC/tex/latex/mintspirit/TS1MintSpiritNoTwo-OsF.fd - RELOC/tex/latex/mintspirit/TS1MintSpiritNoTwo-TLF.fd - RELOC/tex/latex/mintspirit/TS1MintSpiritNoTwo-TOsF.fd - RELOC/tex/latex/mintspirit/mintspirit.sty - RELOC/tex/latex/mintspirit/mintspirit2.sty -docfiles size=84 - RELOC/doc/fonts/mintspirit/MintSpirit-Cat.pdf - RELOC/doc/fonts/mintspirit/OFL.txt - RELOC/doc/fonts/mintspirit/README - RELOC/doc/fonts/mintspirit/mintspirit-samples.pdf - RELOC/doc/fonts/mintspirit/mintspirit-samples.tex - RELOC/doc/fonts/mintspirit/mintspirit2-samples.pdf - RELOC/doc/fonts/mintspirit/mintspirit2-samples.tex -catalogue-ctan /fonts/mintspirit -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license ofl - -name minutes -category Package -revision 16350 -shortdesc Typeset the minutes of meetings. -relocated 1 -longdesc Supports the creation of a collection of minutes. Features -longdesc include: Support of tasks (who, schedule, what, time of -longdesc finishing; possibility of creating a list of open tasks; -longdesc inclusion of open tasks from other minutes; Support for -longdesc attachments; Support of schedule dates (in planning: support -longdesc for the calendar package); Different versions ('secret parts'); -longdesc and Macros for votes and decisions (list of decisions). Support -longdesc for minutes in German, Dutch and English is provided. -runfiles size=9 - RELOC/tex/latex/minutes/minutes.sty -docfiles size=91 - RELOC/doc/latex/minutes/MinStyGd.tex - RELOC/doc/latex/minutes/Overview.tex - RELOC/doc/latex/minutes/Protokol.tex - RELOC/doc/latex/minutes/README - RELOC/doc/latex/minutes/Sample.tex - RELOC/doc/latex/minutes/SampleDE.tex - RELOC/doc/latex/minutes/SampleEN.tex - RELOC/doc/latex/minutes/SampleNL.tex - RELOC/doc/latex/minutes/minutes.pdf -srcfiles size=24 - RELOC/source/latex/minutes/minutes.dtx - RELOC/source/latex/minutes/minutes.ins -catalogue-ctan /macros/latex/contrib/minutes -catalogue-date 2014-10-18 00:25:23 +0200 -catalogue-license lppl -catalogue-version 1.8d - -name mkgrkindex -category Package -revision 26313 -catalogue greek-makeindex -shortdesc Makeindex working with Greek. -longdesc Makeindex is resolutely stuck with Latin-based alphabets, so -longdesc will not deal with Greek indexes, unaided. This package -longdesc provides a Perl script that will transmute the index of a Greek -longdesc document in such a way that makeindex will sort the entries -longdesc according to the rules of the Greek alphabet. -depend mkgrkindex.ARCH -runfiles size=4 - texmf-dist/makeindex/mkgrkindex/lowercase-headers.ist - texmf-dist/makeindex/mkgrkindex/uppercase-headers.ist - texmf-dist/scripts/mkgrkindex/mkgrkindex -docfiles size=28 - texmf-dist/doc/support/mkgrkindex/mkgrkindex.nw - texmf-dist/doc/support/mkgrkindex/mkgrkindex.pdf -catalogue-ctan /language/greek/mkgrkindex -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license other-free -catalogue-version 2.0 - -name mkgrkindex.i386-linux -category Package -revision 14428 -shortdesc i386-linux files of mkgrkindex -binfiles arch=i386-linux size=1 - bin/i386-linux/mkgrkindex - -name mkjobtexmf -category Package -revision 29725 -shortdesc Generate a texmf tree for a particular job. -longdesc The package provides a Perl script, which runs a program and -longdesc tries to find the names of file used. Two methods are -longdesc available, option -recorder of (Web2C) TeX and the program -longdesc strace. Then it generates a directory with a texmf tree. It -longdesc checks the found files and tries sort them in this texmf tree. -longdesc The script may be used for archiving purposes or to speed up -longdesc later TeX runs. -depend mkjobtexmf.ARCH -runfiles size=6 - texmf-dist/scripts/mkjobtexmf/mkjobtexmf.pl -docfiles size=37 - texmf-dist/doc/generic/mkjobtexmf/README - texmf-dist/doc/generic/mkjobtexmf/clean-case.pl - texmf-dist/doc/generic/mkjobtexmf/mkjobtexmf.html - texmf-dist/doc/generic/mkjobtexmf/mkjobtexmf.ltx - texmf-dist/doc/generic/mkjobtexmf/mkjobtexmf.pdf - texmf-dist/doc/generic/mkjobtexmf/mkjobtexmf.txt - texmf-dist/doc/generic/mkjobtexmf/version.pl - texmf-dist/doc/man/man1/mkjobtexmf.1 - texmf-dist/doc/man/man1/mkjobtexmf.man1.pdf -srcfiles size=21 - texmf-dist/source/generic/mkjobtexmf/Makefile.in - texmf-dist/source/generic/mkjobtexmf/configure - texmf-dist/source/generic/mkjobtexmf/configure.ac - texmf-dist/source/generic/mkjobtexmf/install-sh -catalogue-ctan /support/mkjobtexmf -catalogue-date 2011-11-16 11:07:17 +0100 -catalogue-license gpl -catalogue-version 0.8 - -name mkjobtexmf.i386-linux -category Package -revision 8457 -shortdesc i386-linux files of mkjobtexmf -binfiles arch=i386-linux size=1 - bin/i386-linux/mkjobtexmf - -name mkpattern -category Package -revision 15878 -shortdesc A utility for making hyphenation patterns. -relocated 1 -longdesc Mkpattern is a general purpose program for the generation of -longdesc hyphenation patterns, with definition of letter sets and -longdesc template-like constructions. It also provides an easy way to -longdesc handle different input and output encodings, and featgures -longdesc generation of clean UTF-8 patterns. The package was used for -longdesc the creation of the Galician patterns. -runfiles size=4 - RELOC/tex/plain/mkpattern/mkpatter.tex -docfiles size=28 - RELOC/doc/plain/mkpattern/README - RELOC/doc/plain/mkpattern/mkpatdoc.tex - RELOC/doc/plain/mkpattern/mkpatter.pdf - RELOC/doc/plain/mkpattern/mkpattern-exmpl.tex -catalogue-ctan /language/hyphenation/utils/mkpattern -catalogue-date 2012-07-16 22:11:02 +0200 -catalogue-license lppl -catalogue-version 1.2 - -name mkpic -category Package -revision 33700 -shortdesc Perl interface to mfpic. -longdesc mkpic provides an easy interface for making small pictures with -longdesc mfpic. To this end you create an input file consisting of -longdesc commands, one per line, with space separated parameters (or you -longdesc modify the DATA section of the mkpic script, which is used if -longdesc you run it without an input file). For an extensive description -longdesc see the file mkpicdoc.pdf, which is part of the distribution. -depend mkpic.ARCH -runfiles size=7 - texmf-dist/scripts/mkpic/mkpic -docfiles size=57 - texmf-dist/doc/support/mkpic/README - texmf-dist/doc/support/mkpic/mkpic.pdf - texmf-dist/doc/support/mkpic/mkpicdoc.pdf - texmf-dist/doc/support/mkpic/mkpicdoc.tex -catalogue-ctan /support/mkpic -catalogue-date 2014-06-16 13:23:51 +0200 -catalogue-license gpl -catalogue-version 1.02 - -name mkpic.i386-linux -category Package -revision 33688 -shortdesc i386-linux files of mkpic -binfiles arch=i386-linux size=1 - bin/i386-linux/mkpic - -name mla-paper -category Package -revision 20885 -shortdesc Proper MLA formatting. -relocated 1 -longdesc The package formats articles using the MLA style. The aim is -longdesc that students and other academics in the humanities should be -longdesc able to typeset their materials, properly, with minimal effort -longdesc on their part. -runfiles size=2 - RELOC/tex/latex/mla-paper/mla.sty -docfiles size=1 - RELOC/doc/latex/mla-paper/README -catalogue-ctan /macros/latex/contrib/mla-paper -catalogue-date 2015-01-20 20:59:42 +0100 -catalogue-license lppl - -name mlist -category Package -revision 15878 -shortdesc Logical markup for lists. -relocated 1 -longdesc The package defines commands that create macros for typesetting -longdesc vectors, matrices and functions, in a logical way. For example, -longdesc logical indexing can then be used to refer to elements or -longdesc arguments without hard-coding the symbols in the document. -runfiles size=4 - RELOC/tex/latex/mlist/mlist.cfg - RELOC/tex/latex/mlist/mlist.sty -docfiles size=53 - RELOC/doc/latex/mlist/README - RELOC/doc/latex/mlist/mlist.pdf -srcfiles size=13 - RELOC/source/latex/mlist/mlist.dtx - RELOC/source/latex/mlist/mlist.ins -catalogue-ctan /macros/latex/contrib/mlist -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.6a - -name mltex -category Package -revision 30214 -shortdesc The MLTeX system. -longdesc MLTeX is a modification of TeX version >=3.0 that allows the -longdesc hyphenation of words with accented letters using ordinary -longdesc Computer Modern (CM) fonts. The system is distributed as a TeX -longdesc change file. -depend latex -depend mltex.ARCH -execute AddFormat name=mllatex engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx -mltex *mllatex.ini" -execute AddFormat name=mltex engine=pdftex options="-translate-file=cp227.tcx -mltex mltex.ini" -runfiles size=8 - texmf-dist/tex/latex/mltex/lo1enc.def - texmf-dist/tex/latex/mltex/mlltxchg.def - texmf-dist/tex/latex/mltex/mltex.sty - texmf-dist/tex/mltex/config/mltex.ini -docfiles size=9 - texmf-dist/doc/latex/mltex/README - texmf-dist/doc/latex/mltex/mltex.txt - texmf-dist/doc/latex/mltex/testmlft.dvi - texmf-dist/doc/latex/mltex/testmlft.tex - texmf-dist/doc/latex/mltex/testmlsw.dvi - texmf-dist/doc/latex/mltex/testmlsw.tex -catalogue-ctan /systems/generic/mltex -catalogue-date 2012-07-16 22:11:02 +0200 -catalogue-license knuth -catalogue-version 2.2 - -name mltex.i386-linux -category Package -revision 3006 -shortdesc i386-linux files of mltex -binfiles arch=i386-linux size=2 - bin/i386-linux/mllatex - bin/i386-linux/mltex - -name mmap -category Package -revision 15878 -shortdesc Include CMap resources in PDF files from PDFTeX. -relocated 1 -longdesc The package is an extension of cmap with improved flexibility -longdesc and coverage, including the ability to re-encode Knuth's basic -longdesc mathematics fonts. -runfiles size=74 - RELOC/tex/latex/mmap/lmr-m.cmap - RELOC/tex/latex/mmap/lmr.cmap - RELOC/tex/latex/mmap/ly1.cmap - RELOC/tex/latex/mmap/mmap.sty - RELOC/tex/latex/mmap/oml-m.cmap - RELOC/tex/latex/mmap/oml.cmap - RELOC/tex/latex/mmap/omlbit-m.cmap - RELOC/tex/latex/mmap/omlbit.cmap - RELOC/tex/latex/mmap/omlmit-m.cmap - RELOC/tex/latex/mmap/omlmit.cmap - RELOC/tex/latex/mmap/oms-m.cmap - RELOC/tex/latex/mmap/oms.cmap - RELOC/tex/latex/mmap/omsb-m.cmap - RELOC/tex/latex/mmap/omx-m.cmap - RELOC/tex/latex/mmap/omx.cmap - RELOC/tex/latex/mmap/ot1-m.cmap - RELOC/tex/latex/mmap/ot1.cmap - RELOC/tex/latex/mmap/ot1rbxit-m.cmap - RELOC/tex/latex/mmap/ot1rbxit.cmap - RELOC/tex/latex/mmap/ot1rbxn-m.cmap - RELOC/tex/latex/mmap/ot1rbxn.cmap - RELOC/tex/latex/mmap/ot1rmit-m.cmap - RELOC/tex/latex/mmap/ot1rmit.cmap - RELOC/tex/latex/mmap/ot1rmn-m.cmap - RELOC/tex/latex/mmap/ot1rmn.cmap - RELOC/tex/latex/mmap/ot1ssbxn-m.cmap - RELOC/tex/latex/mmap/ot1ssbxn.cmap - RELOC/tex/latex/mmap/ot1ssmn-m.cmap - RELOC/tex/latex/mmap/ot1ssmn.cmap - RELOC/tex/latex/mmap/ot1ttmn-m.cmap - RELOC/tex/latex/mmap/ot1ttmn.cmap - RELOC/tex/latex/mmap/ot1xxx-m.cmap - RELOC/tex/latex/mmap/t1-m.cmap - RELOC/tex/latex/mmap/t1.cmap - RELOC/tex/latex/mmap/ueuf-m.cmap - RELOC/tex/latex/mmap/ueufb-m.cmap - RELOC/tex/latex/mmap/ulasy-m.cmap - RELOC/tex/latex/mmap/ulasy.cmap - RELOC/tex/latex/mmap/umsa-m.cmap - RELOC/tex/latex/mmap/umsa.cmap - RELOC/tex/latex/mmap/umsb-m.cmap - RELOC/tex/latex/mmap/umsb.cmap - RELOC/tex/latex/mmap/upsy-m.cmap - RELOC/tex/latex/mmap/upsy.cmap - RELOC/tex/latex/mmap/upzd-m.cmap - RELOC/tex/latex/mmap/upzd.cmap -docfiles size=1 - RELOC/doc/latex/mmap/README -catalogue-ctan /macros/latex/contrib/mmap -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.03 - -name mnotes -category Package -revision 35521 -shortdesc Margin annotation for collaborative writing. -relocated 1 -longdesc The package provides a flexible mechanism for annotating, and -longdesc commenting upon, collaboratively-written documents. -runfiles size=2 - RELOC/tex/latex/mnotes/mnotes.sty -docfiles size=54 - RELOC/doc/latex/mnotes/Makefile - RELOC/doc/latex/mnotes/README - RELOC/doc/latex/mnotes/mnotes.pdf -srcfiles size=5 - RELOC/source/latex/mnotes/mnotes.dtx - RELOC/source/latex/mnotes/mnotes.ins -catalogue-ctan /macros/latex/contrib/mnotes -catalogue-date 2014-11-05 14:07:04 +0100 -catalogue-license lppl1.3 -catalogue-version 0.8 - -name mnras -category Package -revision 37579 -shortdesc Monthly Notices of the Royal Astronomical Society. -relocated 1 -longdesc Package for preparing papers in the journal Monthly Notices of -longdesc the Royal Astronomical Society. -runfiles size=27 - RELOC/bibtex/bst/mnras/mnras.bst - RELOC/tex/latex/mnras/mnras.cls -docfiles size=109 - RELOC/doc/latex/mnras/example.eps - RELOC/doc/latex/mnras/example.png - RELOC/doc/latex/mnras/example.ps - RELOC/doc/latex/mnras/legacy/legacy.txt - RELOC/doc/latex/mnras/legacy/mn2e.bst - RELOC/doc/latex/mnras/legacy/mn2e.cls - RELOC/doc/latex/mnras/mnras_guide.pdf - RELOC/doc/latex/mnras/mnras_guide.tex - RELOC/doc/latex/mnras/mnras_template.tex - RELOC/doc/latex/mnras/readme.txt -catalogue-ctan /macros/latex/contrib/mnras -catalogue-date 2015-05-27 17:22:39 +0200 -catalogue-license lppl1.3 -catalogue-topics journalpub -catalogue-version 3.0 - -name mnsymbol -category Package -revision 18651 -shortdesc Mathematical symbol font for Adobe MinionPro. -relocated 1 -longdesc MnSymbol is a symbol font family, designed to be used in -longdesc conjunction with Adobe Minion Pro (via the MinionPro package). -longdesc Almost all of LaTeX and AMS mathematical symbols are provided; -longdesc remaining coverage is available from the MinionPro font with -longdesc the MinionPro package. The fonts are available both as Metafont -longdesc source and as Adobe Type 1 format, and a comprehensive support -longdesc package is provided. While the fonts were designed to fit with -longdesc Minon Pro, the design should fit well with other renaissance or -longdesc baroque faces: indeed, it will probably work with most fonts -longdesc that are neither too wide nor too thin, for example Palatino or -longdesc Times; it is known to look good with Sabon. There is no package -longdesc designed to configure its use with any font other than Minion -longdesc Pro, but (for example) simply loading mnsymbol after mathpazo -longdesc will probably do what is needed. -execute addMap MnSymbol.map -runfiles size=1656 - RELOC/fonts/enc/dvips/mnsymbol/MnSymbolA.enc - RELOC/fonts/enc/dvips/mnsymbol/MnSymbolB.enc - RELOC/fonts/enc/dvips/mnsymbol/MnSymbolC.enc - RELOC/fonts/enc/dvips/mnsymbol/MnSymbolD.enc - RELOC/fonts/enc/dvips/mnsymbol/MnSymbolE.enc - RELOC/fonts/enc/dvips/mnsymbol/MnSymbolF.enc - RELOC/fonts/enc/dvips/mnsymbol/MnSymbolS.enc - RELOC/fonts/map/dvips/mnsymbol/MnSymbol.map - RELOC/fonts/map/vtex/mnsymbol/MnSymbol.ali - RELOC/fonts/opentype/public/mnsymbol/MnSymbol-Bold10.otf - RELOC/fonts/opentype/public/mnsymbol/MnSymbol-Bold12.otf - RELOC/fonts/opentype/public/mnsymbol/MnSymbol-Bold5.otf - RELOC/fonts/opentype/public/mnsymbol/MnSymbol-Bold6.otf - RELOC/fonts/opentype/public/mnsymbol/MnSymbol-Bold7.otf - RELOC/fonts/opentype/public/mnsymbol/MnSymbol-Bold8.otf - RELOC/fonts/opentype/public/mnsymbol/MnSymbol-Bold9.otf - RELOC/fonts/opentype/public/mnsymbol/MnSymbol10.otf - RELOC/fonts/opentype/public/mnsymbol/MnSymbol12.otf - RELOC/fonts/opentype/public/mnsymbol/MnSymbol5.otf - RELOC/fonts/opentype/public/mnsymbol/MnSymbol6.otf - RELOC/fonts/opentype/public/mnsymbol/MnSymbol7.otf - RELOC/fonts/opentype/public/mnsymbol/MnSymbol8.otf - RELOC/fonts/opentype/public/mnsymbol/MnSymbol9.otf - RELOC/fonts/source/public/mnsymbol/MnSymbol-Parameter.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolA-Bold.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolA-Bold10.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolA-Bold12.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolA-Bold5.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolA-Bold6.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolA-Bold7.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolA-Bold8.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolA-Bold9.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolA.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolA10.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolA12.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolA5.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolA6.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolA7.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolA8.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolA9.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolB-Bold.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolB-Bold10.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolB-Bold12.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolB-Bold5.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolB-Bold6.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolB-Bold7.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolB-Bold8.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolB-Bold9.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolB.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolB10.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolB12.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolB5.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolB6.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolB7.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolB8.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolB9.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolC-Bold.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolC-Bold10.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolC-Bold12.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolC-Bold5.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolC-Bold6.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolC-Bold7.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolC-Bold8.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolC-Bold9.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolC.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolC10.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolC12.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolC5.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolC6.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolC7.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolC8.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolC9.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolD-Bold.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolD-Bold10.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolD-Bold12.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolD-Bold5.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolD-Bold6.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolD-Bold7.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolD-Bold8.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolD-Bold9.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolD.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolD10.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolD12.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolD5.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolD6.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolD7.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolD8.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolD9.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolE-Bold.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolE-Bold10.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolE-Bold12.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolE-Bold5.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolE-Bold6.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolE-Bold7.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolE-Bold8.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolE-Bold9.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolE.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolE10.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolE12.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolE5.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolE6.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolE7.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolE8.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolE9.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolF-Bold.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolF-Bold10.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolF-Bold12.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolF-Bold5.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolF-Bold6.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolF-Bold7.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolF-Bold8.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolF-Bold9.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolF.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolF10.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolF12.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolF5.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolF6.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolF7.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolF8.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolF9.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolS-Bold.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolS-Bold10.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolS-Bold12.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolS-Bold5.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolS-Bold6.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolS-Bold7.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolS-Bold8.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolS-Bold9.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolS.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolS10.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolS12.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolS5.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolS6.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolS7.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolS8.mf - RELOC/fonts/source/public/mnsymbol/MnSymbolS9.mf - RELOC/fonts/source/public/mnsymbol/Sym-Accent.mf - RELOC/fonts/source/public/mnsymbol/Sym-Arrows.mf - RELOC/fonts/source/public/mnsymbol/Sym-Base.mf - RELOC/fonts/source/public/mnsymbol/Sym-Delim.mf - RELOC/fonts/source/public/mnsymbol/Sym-Geometric.mf - RELOC/fonts/source/public/mnsymbol/Sym-Init.mf - RELOC/fonts/source/public/mnsymbol/Sym-Operators.mf - RELOC/fonts/source/public/mnsymbol/Sym-Order.mf - RELOC/fonts/tfm/public/mnsymbol/MnSymbolA-Bold10.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolA-Bold12.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolA-Bold5.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolA-Bold6.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolA-Bold7.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolA-Bold8.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolA-Bold9.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolA10.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolA12.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolA5.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolA6.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolA7.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolA8.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolA9.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolB-Bold10.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolB-Bold12.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolB-Bold5.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolB-Bold6.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolB-Bold7.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolB-Bold8.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolB-Bold9.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolB10.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolB12.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolB5.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolB6.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolB7.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolB8.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolB9.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolC-Bold10.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolC-Bold12.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolC-Bold5.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolC-Bold6.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolC-Bold7.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolC-Bold8.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolC-Bold9.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolC10.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolC12.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolC5.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolC6.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolC7.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolC8.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolC9.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolD-Bold10.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolD-Bold12.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolD-Bold5.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolD-Bold6.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolD-Bold7.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolD-Bold8.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolD-Bold9.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolD10.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolD12.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolD5.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolD6.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolD7.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolD8.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolD9.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolE-Bold10.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolE-Bold12.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolE-Bold5.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolE-Bold6.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolE-Bold7.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolE-Bold8.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolE-Bold9.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolE10.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolE12.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolE5.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolE6.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolE7.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolE8.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolE9.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolF-Bold10.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolF-Bold12.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolF-Bold5.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolF-Bold6.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolF-Bold7.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolF-Bold8.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolF-Bold9.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolF10.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolF12.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolF5.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolF6.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolF7.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolF8.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolF9.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolS-Bold10.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolS-Bold12.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolS-Bold5.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolS-Bold6.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolS-Bold7.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolS-Bold8.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolS-Bold9.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolS10.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolS12.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolS5.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolS6.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolS7.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolS8.tfm - RELOC/fonts/tfm/public/mnsymbol/MnSymbolS9.tfm - RELOC/fonts/type1/public/mnsymbol/MnSymbol-Bold10.pfb - RELOC/fonts/type1/public/mnsymbol/MnSymbol-Bold12.pfb - RELOC/fonts/type1/public/mnsymbol/MnSymbol-Bold5.pfb - RELOC/fonts/type1/public/mnsymbol/MnSymbol-Bold6.pfb - RELOC/fonts/type1/public/mnsymbol/MnSymbol-Bold7.pfb - RELOC/fonts/type1/public/mnsymbol/MnSymbol-Bold8.pfb - RELOC/fonts/type1/public/mnsymbol/MnSymbol-Bold9.pfb - RELOC/fonts/type1/public/mnsymbol/MnSymbol10.pfb - RELOC/fonts/type1/public/mnsymbol/MnSymbol12.pfb - RELOC/fonts/type1/public/mnsymbol/MnSymbol5.pfb - RELOC/fonts/type1/public/mnsymbol/MnSymbol6.pfb - RELOC/fonts/type1/public/mnsymbol/MnSymbol7.pfb - RELOC/fonts/type1/public/mnsymbol/MnSymbol8.pfb - RELOC/fonts/type1/public/mnsymbol/MnSymbol9.pfb - RELOC/tex/latex/mnsymbol/MnSymbol.sty -docfiles size=76 - RELOC/doc/latex/mnsymbol/MnSymbol.pdf - RELOC/doc/latex/mnsymbol/README -srcfiles size=35 - RELOC/source/latex/mnsymbol/MnSymbol.drv - RELOC/source/latex/mnsymbol/MnSymbol.dtx - RELOC/source/latex/mnsymbol/MnSymbol.ins -catalogue-ctan /fonts/mnsymbol -catalogue-date 2014-05-15 23:25:03 +0200 -catalogue-license pd -catalogue-version 1.4 - -name moderncv -category Package -revision 37992 -shortdesc A modern curriculum vitae class. -relocated 1 -longdesc The class provides facilities for typesetting modern -longdesc curriculums vitae, both in a classic and in a casual style. It -longdesc is fairly customizable, allowing you to define your own style -longdesc by changing the colours, the fonts, etc. A number of templates -longdesc are provided in the distribution examples subdirectory. -runfiles size=61 - RELOC/tex/latex/moderncv/moderncv.cls - RELOC/tex/latex/moderncv/moderncvbodyi.sty - RELOC/tex/latex/moderncv/moderncvbodyii.sty - RELOC/tex/latex/moderncv/moderncvbodyiii.sty - RELOC/tex/latex/moderncv/moderncvbodyiv.sty - RELOC/tex/latex/moderncv/moderncvbodyv.sty - RELOC/tex/latex/moderncv/moderncvcollection.sty - RELOC/tex/latex/moderncv/moderncvcolorblack.sty - RELOC/tex/latex/moderncv/moderncvcolorblue.sty - RELOC/tex/latex/moderncv/moderncvcolorburgundy.sty - RELOC/tex/latex/moderncv/moderncvcolorgreen.sty - RELOC/tex/latex/moderncv/moderncvcolorgrey.sty - RELOC/tex/latex/moderncv/moderncvcolororange.sty - RELOC/tex/latex/moderncv/moderncvcolorpurple.sty - RELOC/tex/latex/moderncv/moderncvcolorred.sty - RELOC/tex/latex/moderncv/moderncvcompatibility.sty - RELOC/tex/latex/moderncv/moderncvdebugtools.sty - RELOC/tex/latex/moderncv/moderncvfooti.sty - RELOC/tex/latex/moderncv/moderncvheadi.sty - RELOC/tex/latex/moderncv/moderncvheadii.sty - RELOC/tex/latex/moderncv/moderncvheadiii.sty - RELOC/tex/latex/moderncv/moderncvheadiv.sty - RELOC/tex/latex/moderncv/moderncvheadv.sty - RELOC/tex/latex/moderncv/moderncvheadvi.sty - RELOC/tex/latex/moderncv/moderncviconsawesome.sty - RELOC/tex/latex/moderncv/moderncviconsletters.sty - RELOC/tex/latex/moderncv/moderncviconsmarvosym.sty - RELOC/tex/latex/moderncv/moderncvstylebanking.sty - RELOC/tex/latex/moderncv/moderncvstylecasual.sty - RELOC/tex/latex/moderncv/moderncvstyleclassic.sty - RELOC/tex/latex/moderncv/moderncvstyleempty.sty - RELOC/tex/latex/moderncv/moderncvstylefancy.sty - RELOC/tex/latex/moderncv/moderncvstyleoldstyle.sty - RELOC/tex/latex/moderncv/tweaklist.sty -docfiles size=460 - RELOC/doc/latex/moderncv/CHANGELOG - RELOC/doc/latex/moderncv/KNOWN_BUGS - RELOC/doc/latex/moderncv/README - RELOC/doc/latex/moderncv/examples/Makefile - RELOC/doc/latex/moderncv/examples/picture.eps - RELOC/doc/latex/moderncv/examples/picture.jpg - RELOC/doc/latex/moderncv/examples/publications.bib - RELOC/doc/latex/moderncv/examples/template-es.pdf - RELOC/doc/latex/moderncv/examples/template-es.tex - RELOC/doc/latex/moderncv/examples/template-multibib.pdf - RELOC/doc/latex/moderncv/examples/template-multibib.tex - RELOC/doc/latex/moderncv/examples/template-zh.pdf - RELOC/doc/latex/moderncv/examples/template-zh.tex - RELOC/doc/latex/moderncv/examples/template.tex - RELOC/doc/latex/moderncv/examples/template_banking_red-fullrules-center.pdf - RELOC/doc/latex/moderncv/examples/template_banking_red-norules.pdf - RELOC/doc/latex/moderncv/examples/template_banking_red-shortrules-right.pdf - RELOC/doc/latex/moderncv/examples/template_banking_red.pdf - RELOC/doc/latex/moderncv/examples/template_casual_orange-left.pdf - RELOC/doc/latex/moderncv/examples/template_casual_orange.pdf - RELOC/doc/latex/moderncv/examples/template_classic_green-right.pdf - RELOC/doc/latex/moderncv/examples/template_classic_green.pdf - RELOC/doc/latex/moderncv/examples/template_fancy_purple.pdf - RELOC/doc/latex/moderncv/examples/template_oldstyle_grey.pdf -catalogue-ctan /macros/latex/contrib/moderncv -catalogue-date 2015-07-29 10:05:58 +0200 -catalogue-license lppl1.3 -catalogue-topics cv class -catalogue-version 2.0.0 - -name moderntimeline -category Package -revision 38254 -shortdesc Timelines for use with moderncv -relocated 1 -longdesc The package provides commands to configure and to draw time -longdesc line diagrams; such diagrams are designed to fit into -longdesc Curriculum Vitae documents written using the moderncv class. -runfiles size=2 - RELOC/tex/latex/moderntimeline/moderntimeline.sty -docfiles size=46 - RELOC/doc/latex/moderntimeline/README - RELOC/doc/latex/moderntimeline/moderntimeline.pdf -srcfiles size=6 - RELOC/source/latex/moderntimeline/moderntimeline.dtx - RELOC/source/latex/moderntimeline/moderntimeline.ins -catalogue-ctan /macros/latex/contrib/moderntimeline -catalogue-date 2015-08-31 18:43:19 +0200 -catalogue-license lppl1.3 -catalogue-topics cv diagram -catalogue-version 0.9 - -name modiagram -category Package -revision 37902 -shortdesc Drawing molecular orbital diagrams. -relocated 1 -longdesc The package provides an environment MOdiagram and some -longdesc commands, to create molecular orbital diagrams using TikZ. For -longdesc example, the MO diagram of dihydrogen would be written as: -longdesc \begin{MOdiagram} \atom{left}{ 1s = {0;up} } \atom{right}{ 1s = -longdesc {0;up} } \molecule{ 1sMO = {1;pair, } } \end{MOdiagram} The -longdesc package also needs the l3kernel and l3packages bundles from the -longdesc LaTeX 3 experimental distribution. -runfiles size=20 - RELOC/tex/latex/modiagram/modiagram.sty -docfiles size=169 - RELOC/doc/latex/modiagram/README - RELOC/doc/latex/modiagram/modiagram_en.pdf - RELOC/doc/latex/modiagram/modiagram_en.tex -catalogue-ctan /macros/latex/contrib/modiagram -catalogue-date 2015-07-19 20:42:09 +0200 -catalogue-license lppl1.3 -catalogue-topics chemistry diagram expl3 -catalogue-version 0.2f - -name modref -category Package -revision 15878 -shortdesc Customisation of cross-references in LaTeX. -relocated 1 -longdesc The package contains macros which allow authors to easily -longdesc customise how cross-references appear in their document, both -longdesc in general (across all cross-references) and for particular -longdesc types of references (identified by a prefix in the reference -longdesc label), in a very generic manner. -runfiles size=2 - RELOC/tex/latex/modref/modref.sty -docfiles size=42 - RELOC/doc/latex/modref/README - RELOC/doc/latex/modref/modref.pdf -srcfiles size=15 - RELOC/source/latex/modref/modref.drv - RELOC/source/latex/modref/modref.dtx - RELOC/source/latex/modref/modref.ins -catalogue-ctan /macros/latex/contrib/modref -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 - -name modroman -category Package -revision 29803 -shortdesc Write numbers in lower case roman numerals. -relocated 1 -longdesc This package provides only two macros viz. \modromannumeral -longdesc which writes the number given as argument in lower case roman -longdesc numeral with a 'j' instead of a 'i' as the final letter of -longdesc numbers greater than 1 and \modroman{MyCounter} which writes -longdesc the value of a counter in the same way. You use the first in -longdesc the same way as the TeX primitive \romannumeral and the second -longdesc as LaTeX command \roman. The default option is 'vpourv' with -longdesc which 5 is 'translated' as 'v' and option 'upourv' whith which -longdesc the same 5 is given as 'u'. -runfiles size=2 - RELOC/tex/latex/modroman/modroman.sty -docfiles size=427 - RELOC/doc/latex/modroman/MODRdoctools.sty - RELOC/doc/latex/modroman/modroman-en.pdf - RELOC/doc/latex/modroman/modroman-en.tex - RELOC/doc/latex/modroman/modroman-fr.pdf - RELOC/doc/latex/modroman/modroman-fr.tex - RELOC/doc/latex/modroman/modroman.dtx - RELOC/doc/latex/modroman/modroman.pdf -srcfiles size=19 - RELOC/source/latex/modroman/LISEZMOI - RELOC/source/latex/modroman/Makefile - RELOC/source/latex/modroman/README - RELOC/source/latex/modroman/modroman.dtx - RELOC/source/latex/modroman/modroman.ins -catalogue-ctan /macros/latex/contrib/modroman -catalogue-date 2012-07-07 22:27:26 +0200 -catalogue-license lppl -catalogue-version 1 - -name mongolian-babel -category Package -revision 15878 -shortdesc A language definition file for Mongolian in Babel. -relocated 1 -longdesc This package provides support for Mongolian in a Cyrillic -longdesc alphabet. (The work derives from the earlier Russian work for -longdesc babel.) -runfiles size=6 - RELOC/tex/latex/mongolian-babel/mn.def - RELOC/tex/latex/mongolian-babel/mongolian.ldf - RELOC/tex/latex/mongolian-babel/mongolian.sty -docfiles size=28 - RELOC/doc/latex/mongolian-babel/README - RELOC/doc/latex/mongolian-babel/mongolian.pdf -srcfiles size=12 - RELOC/source/latex/mongolian-babel/mongolian.dtx - RELOC/source/latex/mongolian-babel/mongolian.ins -catalogue-ctan /language/mongolian/babel -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.2 - -name monofill -category Package -revision 28140 -shortdesc Alignment of plain text. -relocated 1 -longdesc The package provides horizontal alignment, as in the LaTeX -longdesc command \listfiles (or the author's longnamefilelist package). -longdesc Uses may include in-text tables, or even code listings. -runfiles size=4 - RELOC/tex/latex/monofill/monofill.RLS - RELOC/tex/latex/monofill/monofill.sty -docfiles size=83 - RELOC/doc/latex/monofill/Announce.txt - RELOC/doc/latex/monofill/README - RELOC/doc/latex/monofill/SrcFILEs.txt - RELOC/doc/latex/monofill/monofill.pdf -srcfiles size=3 - RELOC/source/latex/monofill/monofill.tex - RELOC/source/latex/monofill/srcfiles.tex -catalogue-ctan /macros/latex/contrib/monofill -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.2 - -name montex -category Package -revision 29349 -shortdesc Mongolian LaTeX. -relocated 1 -longdesc MonTeX provides Mongolian and Manju support for the TeX/LaTeX -longdesc community. Mongolian is a language spoken in North East Asia, -longdesc namely Mongolia and the Inner Mongol Autonomous Region of -longdesc China. Today, it is written in an extended Cyrillic alphabet in -longdesc Mongolia whereas the Uighur writing continues to be in use in -longdesc Inner Mongolia, though it is also, legally speaking, the -longdesc official writing system of Mongolia. Manju is another language -longdesc of North East Asia, belonging to the Tungusic branch of the -longdesc Altaic languages. Though it is hardly spoken nowadays, it -longdesc survives in written form as Manju was the native language of -longdesc the rulers of the Qing dynasty (1644-1911) in China. Large -longdesc quantities of documents of the Imperial Archives survive, as -longdesc well as some of the finest dictionaries ever compiled in Asia, -longdesc like the Pentaglot, a dictionary comprising Manju, Tibetan, -longdesc Mongolian, Uighur and Chinese. MonTeX provides all necessary -longdesc characters for writing standard Mongolian in Cyrillic and -longdesc Classical (aka Traditional or Uighur) writing, and Manju as -longdesc well as transliterated Tibetan texts, for which purpose a -longdesc number of additional characters was created. In MonTeX, both -longdesc Mongolian and Manju are entered in romanized form. The -longdesc retransliteration (from Latin input to Mongolian and Manju -longdesc output) is completely realized in TeX/Metafont so that no -longdesc external preprocessor is required. Please note that most of the -longdesc enhanced functions of MonTeX require a working e-LaTeX -longdesc environment. This is especially true when compiling documents -longdesc with Mongolian or Manju as the main document language. It is -longdesc recommended to choose pdfelatex as the resulting PDF files are -longdesc truly portable. Vertical text generated by MonTeX is not -longdesc supported in DVI. -depend cbfonts -execute addMixedMap mongolian.map -runfiles size=848 - RELOC/fonts/map/dvips/montex/mongolian.map - RELOC/fonts/source/public/montex/bcghsb.mf - RELOC/fonts/source/public/montex/bcghsm.mf - RELOC/fonts/source/public/montex/bcghwb.mf - RELOC/fonts/source/public/montex/bcghwm.mf - RELOC/fonts/source/public/montex/bcgvsb.mf - RELOC/fonts/source/public/montex/bcgvsm.mf - RELOC/fonts/source/public/montex/bcgvwb.mf - RELOC/fonts/source/public/montex/bcgvwm.mf - RELOC/fonts/source/public/montex/bicighb.mf - RELOC/fonts/source/public/montex/bicighm.mf - RELOC/fonts/source/public/montex/bicigvb.mf - RELOC/fonts/source/public/montex/bicigvm.mf - RELOC/fonts/source/public/montex/bthhsb.mf - RELOC/fonts/source/public/montex/bthhsm.mf - RELOC/fonts/source/public/montex/bthhwb.mf - RELOC/fonts/source/public/montex/bthhwm.mf - RELOC/fonts/source/public/montex/bthvsb.mf - RELOC/fonts/source/public/montex/bthvsm.mf - RELOC/fonts/source/public/montex/bthvwb.mf - RELOC/fonts/source/public/montex/bthvwm.mf - RELOC/fonts/source/public/montex/bxghsb.mf - RELOC/fonts/source/public/montex/bxghsm.mf - RELOC/fonts/source/public/montex/bxghwb.mf - RELOC/fonts/source/public/montex/bxghwm.mf - RELOC/fonts/source/public/montex/bxgvsb.mf - RELOC/fonts/source/public/montex/bxgvsm.mf - RELOC/fonts/source/public/montex/bxgvwb.mf - RELOC/fonts/source/public/montex/bxgvwm.mf - RELOC/fonts/source/public/montex/cyrmorec.mf - RELOC/fonts/source/public/montex/cyrmorei.mf - RELOC/fonts/source/public/montex/cyrmorel.mf - RELOC/fonts/source/public/montex/cyrmoreu.mf - RELOC/fonts/source/public/montex/kmb10.mf - RELOC/fonts/source/public/montex/kmbx10.mf - RELOC/fonts/source/public/montex/kmbx12.mf - RELOC/fonts/source/public/montex/kmbx5.mf - RELOC/fonts/source/public/montex/kmbx6.mf - RELOC/fonts/source/public/montex/kmbx7.mf - RELOC/fonts/source/public/montex/kmbx8.mf - RELOC/fonts/source/public/montex/kmbx9.mf - RELOC/fonts/source/public/montex/kmbxsl10.mf - RELOC/fonts/source/public/montex/kmbxti10.mf - RELOC/fonts/source/public/montex/kmcsc10.mf - RELOC/fonts/source/public/montex/kmcsc8.mf - RELOC/fonts/source/public/montex/kmcsc9.mf - RELOC/fonts/source/public/montex/kmdunh10.mf - RELOC/fonts/source/public/montex/kmff10.mf - RELOC/fonts/source/public/montex/kmfi10.mf - RELOC/fonts/source/public/montex/kmfib8.mf - RELOC/fonts/source/public/montex/kminch.mf - RELOC/fonts/source/public/montex/kmitt10.mf - RELOC/fonts/source/public/montex/kmr10.mf - RELOC/fonts/source/public/montex/kmr12.mf - RELOC/fonts/source/public/montex/kmr17.mf - RELOC/fonts/source/public/montex/kmr5.mf - RELOC/fonts/source/public/montex/kmr6.mf - RELOC/fonts/source/public/montex/kmr7.mf - RELOC/fonts/source/public/montex/kmr8.mf - RELOC/fonts/source/public/montex/kmr9.mf - RELOC/fonts/source/public/montex/kmsl10.mf - RELOC/fonts/source/public/montex/kmsl12.mf - RELOC/fonts/source/public/montex/kmsl8.mf - RELOC/fonts/source/public/montex/kmsl9.mf - RELOC/fonts/source/public/montex/kmsltt10.mf - RELOC/fonts/source/public/montex/kmss10.mf - RELOC/fonts/source/public/montex/kmss12.mf - RELOC/fonts/source/public/montex/kmss17.mf - RELOC/fonts/source/public/montex/kmss8.mf - RELOC/fonts/source/public/montex/kmss9.mf - RELOC/fonts/source/public/montex/kmssbx10.mf - RELOC/fonts/source/public/montex/kmssdc10.mf - RELOC/fonts/source/public/montex/kmssi10.mf - RELOC/fonts/source/public/montex/kmssi12.mf - RELOC/fonts/source/public/montex/kmssi17.mf - RELOC/fonts/source/public/montex/kmssi8.mf - RELOC/fonts/source/public/montex/kmssi9.mf - RELOC/fonts/source/public/montex/kmssq8.mf - RELOC/fonts/source/public/montex/kmssqi8.mf - RELOC/fonts/source/public/montex/kmtcsc10.mf - RELOC/fonts/source/public/montex/kmti10.mf - RELOC/fonts/source/public/montex/kmti12.mf - RELOC/fonts/source/public/montex/kmti7.mf - RELOC/fonts/source/public/montex/kmti8.mf - RELOC/fonts/source/public/montex/kmti9.mf - RELOC/fonts/source/public/montex/kmtt10.mf - RELOC/fonts/source/public/montex/kmtt12.mf - RELOC/fonts/source/public/montex/kmtt8.mf - RELOC/fonts/source/public/montex/kmtt9.mf - RELOC/fonts/source/public/montex/kmu10.mf - RELOC/fonts/source/public/montex/kmvtt10.mf - RELOC/fonts/source/public/montex/kmvtti10.mf - RELOC/fonts/source/public/montex/lmligs.mf - RELOC/fonts/source/public/montex/macodes.mf - RELOC/fonts/source/public/montex/maglyphs.mf - RELOC/fonts/source/public/montex/mantrlig.mf - RELOC/fonts/source/public/montex/mbatoms.mf - RELOC/fonts/source/public/montex/mbcodes.mf - RELOC/fonts/source/public/montex/mbglyphs.mf - RELOC/fonts/source/public/montex/mbligtbl.mf - RELOC/fonts/source/public/montex/mbnums.mf - RELOC/fonts/source/public/montex/mbparmb.mf - RELOC/fonts/source/public/montex/mbparmm.mf - RELOC/fonts/source/public/montex/mbparms.mf - RELOC/fonts/source/public/montex/mbpunc.mf - RELOC/fonts/source/public/montex/mcccscco.mf - RELOC/fonts/source/public/montex/mccoding.mf - RELOC/fonts/source/public/montex/mctextit.mf - RELOC/fonts/source/public/montex/mcyccsc.mf - RELOC/fonts/source/public/montex/mcyitall.mf - RELOC/fonts/source/public/montex/mcyrill.mf - RELOC/fonts/source/public/montex/mcyrl.mf - RELOC/fonts/source/public/montex/mcyrligs.mf - RELOC/fonts/source/public/montex/mcyrsymb.mf - RELOC/fonts/source/public/montex/mcyru.mf - RELOC/fonts/source/public/montex/mcytitle.mf - RELOC/fonts/source/public/montex/mlscodes.mf - RELOC/fonts/source/public/montex/mocodes.mf - RELOC/fonts/source/public/montex/moglyphs.mf - RELOC/fonts/source/public/montex/montrlig.mf - RELOC/fonts/source/public/montex/mxcodes.mf - RELOC/fonts/source/public/montex/mxglyphs.mf - RELOC/fonts/source/public/montex/mxntrlig.mf - RELOC/fonts/tfm/public/montex/bcghsb.tfm - RELOC/fonts/tfm/public/montex/bcghsm.tfm - RELOC/fonts/tfm/public/montex/bcghwb.tfm - RELOC/fonts/tfm/public/montex/bcghwm.tfm - RELOC/fonts/tfm/public/montex/bcgvsb.tfm - RELOC/fonts/tfm/public/montex/bcgvsm.tfm - RELOC/fonts/tfm/public/montex/bcgvwb.tfm - RELOC/fonts/tfm/public/montex/bcgvwm.tfm - RELOC/fonts/tfm/public/montex/bicighb.tfm - RELOC/fonts/tfm/public/montex/bicighm.tfm - RELOC/fonts/tfm/public/montex/bicigvb.tfm - RELOC/fonts/tfm/public/montex/bicigvm.tfm - RELOC/fonts/tfm/public/montex/bthhsb.tfm - RELOC/fonts/tfm/public/montex/bthhsm.tfm - RELOC/fonts/tfm/public/montex/bthhwb.tfm - RELOC/fonts/tfm/public/montex/bthhwm.tfm - RELOC/fonts/tfm/public/montex/bthvsb.tfm - RELOC/fonts/tfm/public/montex/bthvsm.tfm - RELOC/fonts/tfm/public/montex/bthvwb.tfm - RELOC/fonts/tfm/public/montex/bthvwm.tfm - RELOC/fonts/tfm/public/montex/bxghsb.tfm - RELOC/fonts/tfm/public/montex/bxghsm.tfm - RELOC/fonts/tfm/public/montex/bxghwb.tfm - RELOC/fonts/tfm/public/montex/bxghwm.tfm - RELOC/fonts/tfm/public/montex/bxgvsb.tfm - RELOC/fonts/tfm/public/montex/bxgvsm.tfm - RELOC/fonts/tfm/public/montex/bxgvwb.tfm - RELOC/fonts/tfm/public/montex/bxgvwm.tfm - RELOC/fonts/tfm/public/montex/kmb10.tfm - RELOC/fonts/tfm/public/montex/kmbx10.tfm - RELOC/fonts/tfm/public/montex/kmbx12.tfm - RELOC/fonts/tfm/public/montex/kmbx5.tfm - RELOC/fonts/tfm/public/montex/kmbx6.tfm - RELOC/fonts/tfm/public/montex/kmbx7.tfm - RELOC/fonts/tfm/public/montex/kmbx8.tfm - RELOC/fonts/tfm/public/montex/kmbx9.tfm - RELOC/fonts/tfm/public/montex/kmbxsl10.tfm - RELOC/fonts/tfm/public/montex/kmbxti10.tfm - RELOC/fonts/tfm/public/montex/kmcsc10.tfm - RELOC/fonts/tfm/public/montex/kmcsc8.tfm - RELOC/fonts/tfm/public/montex/kmcsc9.tfm - RELOC/fonts/tfm/public/montex/kmdunh10.tfm - RELOC/fonts/tfm/public/montex/kmff10.tfm - RELOC/fonts/tfm/public/montex/kmfi10.tfm - RELOC/fonts/tfm/public/montex/kmfib8.tfm - RELOC/fonts/tfm/public/montex/kminch.tfm - RELOC/fonts/tfm/public/montex/kmitt10.tfm - RELOC/fonts/tfm/public/montex/kmr10.tfm - RELOC/fonts/tfm/public/montex/kmr12.tfm - RELOC/fonts/tfm/public/montex/kmr17.tfm - RELOC/fonts/tfm/public/montex/kmr5.tfm - RELOC/fonts/tfm/public/montex/kmr6.tfm - RELOC/fonts/tfm/public/montex/kmr7.tfm - RELOC/fonts/tfm/public/montex/kmr8.tfm - RELOC/fonts/tfm/public/montex/kmr9.tfm - RELOC/fonts/tfm/public/montex/kmsl10.tfm - RELOC/fonts/tfm/public/montex/kmsl12.tfm - RELOC/fonts/tfm/public/montex/kmsl8.tfm - RELOC/fonts/tfm/public/montex/kmsl9.tfm - RELOC/fonts/tfm/public/montex/kmsltt10.tfm - RELOC/fonts/tfm/public/montex/kmss10.tfm - RELOC/fonts/tfm/public/montex/kmss12.tfm - RELOC/fonts/tfm/public/montex/kmss17.tfm - RELOC/fonts/tfm/public/montex/kmss8.tfm - RELOC/fonts/tfm/public/montex/kmss9.tfm - RELOC/fonts/tfm/public/montex/kmssbx10.tfm - RELOC/fonts/tfm/public/montex/kmssdc10.tfm - RELOC/fonts/tfm/public/montex/kmssi10.tfm - RELOC/fonts/tfm/public/montex/kmssi12.tfm - RELOC/fonts/tfm/public/montex/kmssi17.tfm - RELOC/fonts/tfm/public/montex/kmssi8.tfm - RELOC/fonts/tfm/public/montex/kmssi9.tfm - RELOC/fonts/tfm/public/montex/kmssq8.tfm - RELOC/fonts/tfm/public/montex/kmssqi8.tfm - RELOC/fonts/tfm/public/montex/kmtcsc10.tfm - RELOC/fonts/tfm/public/montex/kmti10.tfm - RELOC/fonts/tfm/public/montex/kmti12.tfm - RELOC/fonts/tfm/public/montex/kmti7.tfm - RELOC/fonts/tfm/public/montex/kmti8.tfm - RELOC/fonts/tfm/public/montex/kmti9.tfm - RELOC/fonts/tfm/public/montex/kmtt10.tfm - RELOC/fonts/tfm/public/montex/kmtt12.tfm - RELOC/fonts/tfm/public/montex/kmtt8.tfm - RELOC/fonts/tfm/public/montex/kmtt9.tfm - RELOC/fonts/tfm/public/montex/kmu10.tfm - RELOC/fonts/tfm/public/montex/kmvtt10.tfm - RELOC/fonts/tfm/public/montex/kmvtti10.tfm - RELOC/fonts/type1/public/montex/bcghsb.pfb - RELOC/fonts/type1/public/montex/bcghsm.pfb - RELOC/fonts/type1/public/montex/bcghwb.pfb - RELOC/fonts/type1/public/montex/bcghwm.pfb - RELOC/fonts/type1/public/montex/bcgvsb.pfb - RELOC/fonts/type1/public/montex/bcgvsm.pfb - RELOC/fonts/type1/public/montex/bcgvwb.pfb - RELOC/fonts/type1/public/montex/bcgvwm.pfb - RELOC/fonts/type1/public/montex/bicighb.pfb - RELOC/fonts/type1/public/montex/bicighm.pfb - RELOC/fonts/type1/public/montex/bicigvb.pfb - RELOC/fonts/type1/public/montex/bicigvm.pfb - RELOC/fonts/type1/public/montex/bthhsb.pfb - RELOC/fonts/type1/public/montex/bthhsm.pfb - RELOC/fonts/type1/public/montex/bthhwb.pfb - RELOC/fonts/type1/public/montex/bthhwm.pfb - RELOC/fonts/type1/public/montex/bthvsb.pfb - RELOC/fonts/type1/public/montex/bthvsm.pfb - RELOC/fonts/type1/public/montex/bthvwb.pfb - RELOC/fonts/type1/public/montex/bthvwm.pfb - RELOC/fonts/type1/public/montex/bxghsb.pfb - RELOC/fonts/type1/public/montex/bxghsm.pfb - RELOC/fonts/type1/public/montex/bxghwb.pfb - RELOC/fonts/type1/public/montex/bxghwm.pfb - RELOC/fonts/type1/public/montex/bxgvsb.pfb - RELOC/fonts/type1/public/montex/bxgvsm.pfb - RELOC/fonts/type1/public/montex/bxgvwb.pfb - RELOC/fonts/type1/public/montex/bxgvwm.pfb - RELOC/fonts/type1/public/montex/kmbx10.pfb - RELOC/fonts/type1/public/montex/kmr10.pfb - RELOC/fonts/type1/public/montex/kmss10.pfb - RELOC/tex/latex/montex/bicig.def - RELOC/tex/latex/montex/bithe.def - RELOC/tex/latex/montex/buryat.def - RELOC/tex/latex/montex/cpctt.def - RELOC/tex/latex/montex/cpdbk.def - RELOC/tex/latex/montex/cpibmrus.def - RELOC/tex/latex/montex/cpkoi.def - RELOC/tex/latex/montex/cpmls.def - RELOC/tex/latex/montex/cpmnk.def - RELOC/tex/latex/montex/cpmos.def - RELOC/tex/latex/montex/cpncc.def - RELOC/tex/latex/montex/english.def - RELOC/tex/latex/montex/kazakh.def - RELOC/tex/latex/montex/lmabthhs.fd - RELOC/tex/latex/montex/lmabthhw.fd - RELOC/tex/latex/montex/lmabthvs.fd - RELOC/tex/latex/montex/lmabthvw.fd - RELOC/tex/latex/montex/lmaenc.def - RELOC/tex/latex/montex/lmccmdh.fd - RELOC/tex/latex/montex/lmccmfib.fd - RELOC/tex/latex/montex/lmccmfr.fd - RELOC/tex/latex/montex/lmccmiss.fd - RELOC/tex/latex/montex/lmccmr.fd - RELOC/tex/latex/montex/lmccmss.fd - RELOC/tex/latex/montex/lmccmssq.fd - RELOC/tex/latex/montex/lmccmtt.fd - RELOC/tex/latex/montex/lmccmvtt.fd - RELOC/tex/latex/montex/lmcenc.def - RELOC/tex/latex/montex/lmclcmss.fd - RELOC/tex/latex/montex/lmobcghs.fd - RELOC/tex/latex/montex/lmobcghw.fd - RELOC/tex/latex/montex/lmobcgvs.fd - RELOC/tex/latex/montex/lmobcgvw.fd - RELOC/tex/latex/montex/lmoenc.def - RELOC/tex/latex/montex/lmsbcgh.fd - RELOC/tex/latex/montex/lmsbcgv.fd - RELOC/tex/latex/montex/lmsenc.def - RELOC/tex/latex/montex/lmubxghs.fd - RELOC/tex/latex/montex/lmubxghw.fd - RELOC/tex/latex/montex/lmubxgvs.fd - RELOC/tex/latex/montex/lmubxgvw.fd - RELOC/tex/latex/montex/lmuenc.def - RELOC/tex/latex/montex/mls.sty - RELOC/tex/latex/montex/mlsgalig.tex - RELOC/tex/latex/montex/mlstrans.tex - RELOC/tex/latex/montex/mnhyphex.tex - RELOC/tex/latex/montex/rlbicig.sty - RELOC/tex/latex/montex/russian.def - RELOC/tex/latex/montex/xalx.def -docfiles size=504 - RELOC/doc/latex/montex/00README - RELOC/doc/latex/montex/00readme.mfinput.km - RELOC/doc/latex/montex/ANNOUNCE - RELOC/doc/latex/montex/EMTEX - RELOC/doc/latex/montex/HISTORY - RELOC/doc/latex/montex/INSTALL - RELOC/doc/latex/montex/MIKTEX - RELOC/doc/latex/montex/TODO - RELOC/doc/latex/montex/UPDATE - RELOC/doc/latex/montex/cyrename.pl - RELOC/doc/latex/montex/fontlist.tex - RELOC/doc/latex/montex/mfinput/bithe/testfont.input - RELOC/doc/latex/montex/mfinput/bithe/testfont.sh - RELOC/doc/latex/montex/mkmlsmf.pl - RELOC/doc/latex/montex/mls-diag.tex - RELOC/doc/latex/montex/mlsquick.pdf - RELOC/doc/latex/montex/mlsquick.tex - RELOC/doc/latex/montex/mnhyphen.tex - RELOC/doc/latex/montex/montex.pdf - RELOC/doc/latex/montex/montex.tex - RELOC/doc/latex/montex/montex.xml - RELOC/doc/latex/montex/mtdocmac.tex - RELOC/doc/latex/montex/testfont.input - RELOC/doc/latex/montex/testfont.sh - RELOC/doc/latex/montex/zanabazr.pdf - RELOC/doc/latex/montex/zanabazr.tex -catalogue-ctan /language/mongolian/montex -catalogue-date 2012-07-07 22:27:26 +0200 -catalogue-license gpl -catalogue-version IVu.04.092 - -name moreenum -category Package -revision 24479 -shortdesc More enumeration options. -relocated 1 -longdesc The package provides the following new enumerate styles: \greek -longdesc for lowercase Greek letters; \Greek for uppercase Greek -longdesc letters; \enumHex for uppercase hexadecimal enumeration; -longdesc \enumhex for lowercase hexadecimal enumeration; \enumbinary for -longdesc binary enumeration; \enumoctal for octal enumeration; \levelnth -longdesc for "1st", "2nd", "3rd" etc., with the "nth"s on the baseline; -longdesc raisenth for "1st", "2nd", "3rd" etc., with the "nth"s raised; -longdesc \nthwords for "first", "second", "third" etc.; \Nthwords for -longdesc "First", "Second", "Third" etc.; \NTHWORDS for "FIRST", -longdesc "SECOND", "THIRD" etc.; \nwords for "one", "two", "three" etc.; -longdesc \Nwords for "One", "Two", "Three" etc.; and \NWORDS for "ONE", -longdesc "TWO", "THREE" etc. Each of these works with enumitem's -longdesc "starred variant" feature. So -longdesc \begin{enumerate}[label=\enumhex*] will output a hex enumerated -longdesc list. Enumitem provides a start=0 option for starting your -longdesc enumerations at 0. The package requires amsmath, alphalph, -longdesc enumitem (of course), binhex and nth, all of which are widely -longdesc available. -runfiles size=2 - RELOC/tex/latex/moreenum/moreenum.sty -docfiles size=56 - RELOC/doc/latex/moreenum/README - RELOC/doc/latex/moreenum/moreenum-doc.pdf - RELOC/doc/latex/moreenum/moreenum-doc.tex -catalogue-ctan /macros/latex/contrib/moreenum -catalogue-date 2014-10-19 22:46:43 +0200 -catalogue-license lppl1.3 -catalogue-version 1.03 - -name morefloats -category Package -revision 37927 -shortdesc Increase the number of simultaneous LaTeX floats. -relocated 1 -longdesc LaTeX can, by default, only cope with 18 outstanding floats; -longdesc any more, and you get the error "too many unprocessed floats". -longdesc This package releases the limit; TeX itself imposes limits -longdesc (which are independent of the help offered by e-TeX). However, -longdesc if your floats can't be placed anywhere, extending the number -longdesc of floats merely delays the arrival of the inevitable error -longdesc message. -runfiles size=10 - RELOC/tex/latex/morefloats/morefloats.sty -docfiles size=140 - RELOC/doc/latex/morefloats/README - RELOC/doc/latex/morefloats/morefloats-example.pdf - RELOC/doc/latex/morefloats/morefloats-example.tex - RELOC/doc/latex/morefloats/morefloats.pdf -srcfiles size=23 - RELOC/source/latex/morefloats/morefloats.drv - RELOC/source/latex/morefloats/morefloats.dtx - RELOC/source/latex/morefloats/morefloats.ins -catalogue-ctan /macros/latex/contrib/morefloats -catalogue-date 2015-07-22 20:53:33 +0200 -catalogue-license lppl1.3 -catalogue-topics float -catalogue-version 1.0h - -name morehype -category Package -revision 28921 -shortdesc Hypertext tools for use with LaTeX. -relocated 1 -longdesc The bundle provides three packages: texlinks: shorthand macros -longdesc for TeX-related external hyperlinks with hyperref, the blog -longdesc package in the present bundle, etc; hypertoc: adjust the -longdesc presentation of coloured frames in hyperref tables of contents -longdesc (article class only); blog: fast generation of simple HTML by -longdesc expanding LaTeX macros, using the fifinddo package. -runfiles size=62 - RELOC/tex/latex/morehype/atari_ht.fdf - RELOC/tex/latex/morehype/blog.sty - RELOC/tex/latex/morehype/blogdot.cfg - RELOC/tex/latex/morehype/blogdot.sty - RELOC/tex/latex/morehype/blogexec.sty - RELOC/tex/latex/morehype/blogligs.sty - RELOC/tex/latex/morehype/hypertoc.sty - RELOC/tex/latex/morehype/lnavicol.sty - RELOC/tex/latex/morehype/markblog.sty - RELOC/tex/latex/morehype/morehype.RLS - RELOC/tex/latex/morehype/texblog.fdf - RELOC/tex/latex/morehype/texlinks.sty -docfiles size=683 - RELOC/doc/latex/morehype/README - RELOC/doc/latex/morehype/README.pdf - RELOC/doc/latex/morehype/RELEASEs.txt - RELOC/doc/latex/morehype/SrcFILEs.txt - RELOC/doc/latex/morehype/blog.pdf - RELOC/doc/latex/morehype/blogdemo/hellowor/hellowor.htm - RELOC/doc/latex/morehype/blogdemo/hellowor/hellowor.tex - RELOC/doc/latex/morehype/blogdemo/hellowor/mkhellow.tex - RELOC/doc/latex/morehype/blogdemo/writings/makehtml.tex - RELOC/doc/latex/morehype/blogdemo/writings/schreibt.tex - RELOC/doc/latex/morehype/blogdemo/writings/writings.fdf - RELOC/doc/latex/morehype/blogexec.pdf - RELOC/doc/latex/morehype/hypertoc.pdf - RELOC/doc/latex/morehype/markblog.htm - RELOC/doc/latex/morehype/ref_alts.tex - RELOC/doc/latex/morehype/texlinks.pdf - RELOC/doc/latex/morehype/wiki_mwe.pdf - RELOC/doc/latex/morehype/wiki_mwe.tex -srcfiles size=16 - RELOC/source/latex/morehype/README.tex - RELOC/source/latex/morehype/blog.tex - RELOC/source/latex/morehype/blogdot.css - RELOC/source/latex/morehype/blogexec.tex - RELOC/source/latex/morehype/fdatechk.tex - RELOC/source/latex/morehype/hypertoc.tex - RELOC/source/latex/morehype/markblog.tex - RELOC/source/latex/morehype/srcfiles.tex - RELOC/source/latex/morehype/texlinks.tex -catalogue-ctan /macros/latex/contrib/morehype -catalogue-date 2014-10-18 00:25:23 +0200 -catalogue-license lppl1.3 - -name moresize -category Package -revision 17513 -shortdesc Allows font sizes up to 35.83pt. -relocated 1 -longdesc A package for using font sizes up to 35.88pt, for example with -longdesc the EC fonts. New commands \HUGE and \ssmall for selecting font -longdesc sizes are provided together with some options working around -longdesc current LaTeX2e shortcomings in using big font sizes. The -longdesc package also provides options for improving the typesetting of -longdesc paragraphs (or headlines) with embedded math expressions at -longdesc font sizes above 17.28pt. -runfiles size=1 - RELOC/tex/latex/moresize/moresize.sty -docfiles size=68 - RELOC/doc/latex/moresize/moresize.pdf - RELOC/doc/latex/moresize/moresize.upl - RELOC/doc/latex/moresize/msizetst.tex -srcfiles size=8 - RELOC/source/latex/moresize/moresize.dtx - RELOC/source/latex/moresize/moresize.ins -catalogue-ctan /macros/latex/contrib/moresize -catalogue-date 2012-07-17 13:35:08 +0200 -catalogue-license lppl -catalogue-version 1.9 - -name moreverb -category Package -revision 22126 -shortdesc Extended verbatim. -relocated 1 -longdesc A collection of verbatim facilities that provide line-numbered -longdesc verbatim, verbatim that obey's TAB characters, verbatim input -longdesc and verbatim output to file. The package makes use of the LaTeX -longdesc required verbatim package. The package formed from a series of -longdesc small pieces, and is somewhat unstructured. The user who looks -longdesc for thought-through verbatim facilities is advised to consider -longdesc using the fancyvrb package in place of moreverb. -runfiles size=2 - RELOC/tex/latex/moreverb/moreverb.sty -docfiles size=34 - RELOC/doc/latex/moreverb/README - RELOC/doc/latex/moreverb/moreverb.pdf -srcfiles size=6 - RELOC/source/latex/moreverb/moreverb.dtx - RELOC/source/latex/moreverb/moreverb.ins -catalogue-ctan /macros/latex/contrib/moreverb -catalogue-date 2012-07-07 22:19:01 +0200 -catalogue-license lppl -catalogue-version 2.3a - -name morewrites -category Package -revision 28767 -shortdesc Always room for a new write stream. -relocated 1 -longdesc The package aims to solve the error "No room for a new \write", -longdesc which occurs when the user, or when the user's packages have -longdesc 'allocated too many streams using \newwrite (TeX has a fixed -longdesc maximum number - 16 - such streams built-in to its code). The -longdesc package hooks into TeX primitive commands associated with -longdesc writing to files; it should be loaded near the beginning of the -longdesc sequence of loading packages for a document. The package uses -longdesc the l3kernel bundle. -runfiles size=6 - RELOC/tex/latex/morewrites/morewrites.sty - RELOC/tex/latex/morewrites/primargs.sty -docfiles size=275 - RELOC/doc/latex/morewrites/README - RELOC/doc/latex/morewrites/morewrites.pdf - RELOC/doc/latex/morewrites/primargs.pdf -srcfiles size=16 - RELOC/source/latex/morewrites/morewrites.dtx - RELOC/source/latex/morewrites/morewrites.ins - RELOC/source/latex/morewrites/primargs.dtx -catalogue-ctan /macros/latex/contrib/morewrites -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.2e - -name movie15 -category Package -revision 26473 -shortdesc Multimedia inclusion package. -relocated 1 -longdesc The package provides an interface to embed movies, sounds and -longdesc 3D objects into PDF documents for use with LaTeX as well as -longdesc pdfLaTeX. The package defines a command \includemovie with PDF- -longdesc 1.5 compatibility. Option 'autoplay' causes the media clip to -longdesc be started right after the page has loaded. This is useful for -longdesc side by side movie clips to be played back synchronously. The -longdesc package is now superseded by media9 -runfiles size=39 - RELOC/tex/latex/movie15/movie15.sty -docfiles size=196 - RELOC/doc/latex/movie15/README - RELOC/doc/latex/movie15/files/3dsystem.fig - RELOC/doc/latex/movie15/files/3dsystem.pdf - RELOC/doc/latex/movie15/files/3dsystem.tex - RELOC/doc/latex/movie15/files/dice.u3d - RELOC/doc/latex/movie15/files/dice.vws - RELOC/doc/latex/movie15/files/dice.wrl - RELOC/doc/latex/movie15/files/mailto.png - RELOC/doc/latex/movie15/files/random.mpg - RELOC/doc/latex/movie15/javascript/animation.js - RELOC/doc/latex/movie15/javascript/lights.js - RELOC/doc/latex/movie15/javascript/turntable.js - RELOC/doc/latex/movie15/movie15.pdf - RELOC/doc/latex/movie15/movie15.tex - RELOC/doc/latex/movie15/overlay-example.pdf - RELOC/doc/latex/movie15/overlay-example.tex -catalogue-ctan /macros/latex/contrib/movie15 -catalogue-date 2014-01-08 12:40:39 +0100 -catalogue-license lppl - -name mp3d -category Package -revision 29349 -shortdesc 3D animations. -relocated 1 -longdesc Create animations of 3-dimensional objects (such as polyhedra) -longdesc in MetaPost. -runfiles size=26 - RELOC/metapost/mp3d/3d.mp - RELOC/metapost/mp3d/3danim.mp - RELOC/metapost/mp3d/3dgeom.mp - RELOC/metapost/mp3d/3dpoly.mp - RELOC/metapost/mp3d/3dutil.mp - RELOC/metapost/mp3d/animpoly.mp -docfiles size=243 - RELOC/doc/metapost/mp3d/README - RELOC/doc/metapost/mp3d/README.doc - RELOC/doc/metapost/mp3d/create_animation.sh - RELOC/doc/metapost/mp3d/cube10.mp - RELOC/doc/metapost/mp3d/cube4-eng.mp - RELOC/doc/metapost/mp3d/cube5.mp - RELOC/doc/metapost/mp3d/cube6.mp - RELOC/doc/metapost/mp3d/cube7.mp - RELOC/doc/metapost/mp3d/cube8.mp - RELOC/doc/metapost/mp3d/cube9.mp - RELOC/doc/metapost/mp3d/gut2001.pdf - RELOC/doc/metapost/mp3d/gutmp1-eng.mp - RELOC/doc/metapost/mp3d/gutmp1.mp - RELOC/doc/metapost/mp3d/gutmp2-eng.mp - RELOC/doc/metapost/mp3d/gutmp2.mp - RELOC/doc/metapost/mp3d/gutmp3-eng.mp - RELOC/doc/metapost/mp3d/gutmp3.mp - RELOC/doc/metapost/mp3d/gutmp4-eng.mp - RELOC/doc/metapost/mp3d/gutmp4.mp - RELOC/doc/metapost/mp3d/gutmp5-eng.mp - RELOC/doc/metapost/mp3d/gutmp5.mp - RELOC/doc/metapost/mp3d/gutmp6-eng.mp - RELOC/doc/metapost/mp3d/gutmp6.mp - RELOC/doc/metapost/mp3d/gutmp7-eng.mp - RELOC/doc/metapost/mp3d/gutmp7.mp - RELOC/doc/metapost/mp3d/gutmp8-eng.mp - RELOC/doc/metapost/mp3d/gutmp8.mp - RELOC/doc/metapost/mp3d/gutmp9.mp - RELOC/doc/metapost/mp3d/monge-eng.mp - RELOC/doc/metapost/mp3d/monge.mp - RELOC/doc/metapost/mp3d/paper1997corrected.pdf - RELOC/doc/metapost/mp3d/tb57roeg.pdf - RELOC/doc/metapost/mp3d/tb57roegel.ltx - RELOC/doc/metapost/mp3d/tugboat-geometry-space.pdf -catalogue-ctan /graphics/metapost/contrib/macros/mp3d -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.34 - -name mparhack -category Package -revision 15878 -shortdesc Work around a LaTeX bug in marginpars. -relocated 1 -longdesc Works around the LaTeX bug that marginpars will sometimes come -longdesc out at the wrong margin. -runfiles size=2 - RELOC/tex/latex/mparhack/mparhack.sty -docfiles size=23 - RELOC/doc/latex/mparhack/README - RELOC/doc/latex/mparhack/mparhack.pdf -srcfiles size=10 - RELOC/source/latex/mparhack/mparhack.dtx - RELOC/source/latex/mparhack/mparhack.ins -catalogue-ctan /macros/latex/contrib/mparhack -catalogue-date 2012-07-17 13:35:08 +0200 -catalogue-license gpl -catalogue-version 1.4 - -name mpattern -category Package -revision 15878 -shortdesc Patterns in MetaPost. -relocated 1 -longdesc A package for defining and using patterns in MetaPost, using -longdesc the Pattern Color Space available in PostScript Level 2. -runfiles size=2 - RELOC/metapost/mpattern/mpattern.mp -docfiles size=8 - RELOC/doc/metapost/mpattern/README - RELOC/doc/metapost/mpattern/README.PL - RELOC/doc/metapost/mpattern/mpattern_test.pdf - RELOC/doc/metapost/mpattern/mpattern_test.tex - RELOC/doc/metapost/mpattern/test.mp -catalogue-ctan /graphics/metapost/contrib/macros/mpattern -catalogue-date 2012-07-17 13:35:08 +0200 -catalogue-license pd - -name mpcolornames -category Package -revision 23252 -shortdesc Extend list of predefined colour names for MetaPost. -relocated 1 -longdesc The MetaPost format plain.mp provides only five built-in colour -longdesc names (variables), all of which are defined in the RGB model: -longdesc red, green and blue for the primary colours and black and -longdesc white. The package makes more than 500 colour names from -longdesc different colour sets in different colour models available to -longdesc MetaPost. Colour sets include X11, SVG, DVIPS and xcolor -longdesc specifications. -runfiles size=9 - RELOC/metapost/mpcolornames/mpcolornames-spec-dvipsnam-def.mp - RELOC/metapost/mpcolornames/mpcolornames-spec-plain-mp.mp - RELOC/metapost/mpcolornames/mpcolornames-spec-svgnam-def.mp - RELOC/metapost/mpcolornames/mpcolornames-spec-x11nam-def.mp - RELOC/metapost/mpcolornames/mpcolornames-spec-xcolor-sty.mp - RELOC/metapost/mpcolornames/mpcolornames.mp -docfiles size=50 - RELOC/doc/metapost/mpcolornames/CHANGES - RELOC/doc/metapost/mpcolornames/LICENSE - RELOC/doc/metapost/mpcolornames/README - RELOC/doc/metapost/mpcolornames/expl-array-index.mp - RELOC/doc/metapost/mpcolornames/fig-clash-svg-dvips.mp - RELOC/doc/metapost/mpcolornames/mpcolornames.pdf - RELOC/doc/metapost/mpcolornames/mpcolornames.tex - RELOC/doc/metapost/mpcolornames/proof-mpcolornames.mp - RELOC/doc/metapost/mpcolornames/proof-spec-dvipsnam-def.mp - RELOC/doc/metapost/mpcolornames/proof-spec-plain-mp.mp - RELOC/doc/metapost/mpcolornames/proof-spec-svgnam-def.mp - RELOC/doc/metapost/mpcolornames/proof-spec-x11nam-def.mp - RELOC/doc/metapost/mpcolornames/proof-spec-xcolor-sty.mp - RELOC/doc/metapost/mpcolornames/tab-clash-svg-dvips.tex - RELOC/doc/metapost/mpcolornames/tab-spec-dvipsnam-def.tex - RELOC/doc/metapost/mpcolornames/tab-spec-plain-mp.tex - RELOC/doc/metapost/mpcolornames/tab-spec-svgnam-def.tex - RELOC/doc/metapost/mpcolornames/tab-spec-x11nam-def.tex - RELOC/doc/metapost/mpcolornames/tab-spec-xcolor-sty.tex -srcfiles size=8 - RELOC/source/metapost/mpcolornames/Makefile - RELOC/source/metapost/mpcolornames/spec-dvipsnam-def.awk - RELOC/source/metapost/mpcolornames/spec-plain-mp.awk - RELOC/source/metapost/mpcolornames/spec-svgnam-def.awk - RELOC/source/metapost/mpcolornames/spec-x11nam-def.awk - RELOC/source/metapost/mpcolornames/spec-xcolor-sty.awk - RELOC/source/metapost/mpcolornames/tab-clash-svg-dvips.awk -catalogue-ctan /graphics/metapost/contrib/macros/mpcolornames -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.20 - -name mpgraphics -category Package -revision 29776 -shortdesc Process and display MetaPost figures inline. -relocated 1 -longdesc The package allows LaTeX users to typeset MetaPost code inline -longdesc and display figures in their documents with only and only one -longdesc run of LaTeX, PDFLaTeX or XelaTeX (no separate runs of mpost). -longdesc Mpgraphics achieves this by using the shell escape (\write 18) -longdesc feature of current TeX distributions, so that the whole process -longdesc is automatic and the end user is saved the tiresome processing. -runfiles size=4 - RELOC/tex/latex/mpgraphics/mpgraphics.sty -docfiles size=49 - RELOC/doc/latex/mpgraphics/README - RELOC/doc/latex/mpgraphics/mpgraphics-example.ltx - RELOC/doc/latex/mpgraphics/mpgraphics.pdf -srcfiles size=10 - RELOC/source/latex/mpgraphics/mpgraphics.dtx - RELOC/source/latex/mpgraphics/mpgraphics.ins -catalogue-ctan /macros/latex/contrib/mpgraphics -catalogue-date 2014-09-06 11:35:52 +0200 -catalogue-license lppl1.3 -catalogue-version 0.3 - -name mpman-ru -category Package -revision 15878 -shortdesc A Russian translation of the MetaPost manual. -relocated 1 -longdesc A translation of the user manual, as distributed with MetaPost -longdesc itself. -docfiles size=338 - RELOC/doc/metapost/mpman-ru/Makefile - RELOC/doc/metapost/mpman-ru/README - RELOC/doc/metapost/mpman-ru/README.ru.koi8-r - RELOC/doc/metapost/mpman-ru/bm-to-utf16be.awk - RELOC/doc/metapost/mpman-ru/ctabbing.sty - RELOC/doc/metapost/mpman-ru/extract-bm.awk - RELOC/doc/metapost/mpman-ru/idx1.awk - RELOC/doc/metapost/mpman-ru/idx2.awk - RELOC/doc/metapost/mpman-ru/idx3.awk - RELOC/doc/metapost/mpman-ru/manfig-ru.mp - RELOC/doc/metapost/mpman-ru/mpman-optab-ru.tex - RELOC/doc/metapost/mpman-ru/mpman-ru.pdf - RELOC/doc/metapost/mpman-ru/mpman-ru.tex - RELOC/doc/metapost/mpman-ru/mpman.ist -catalogue-ctan /info/metapost/doc/russian/mpman-ru -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license other-free -catalogue-version 1.004 - -name mptopdf -category Package -revision 37777 -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" -runfiles size=43 - texmf-dist/scripts/context/perl/mptopdf.pl - texmf-dist/scripts/context/stubs/mswin/mptopdf.exe - texmf-dist/tex/context/base/supp-mis.mkii - texmf-dist/tex/context/base/supp-mpe.mkii - texmf-dist/tex/context/base/supp-pdf.mkii - texmf-dist/tex/context/base/syst-tex.mkii - texmf-dist/tex/generic/context/mptopdf/mptopdf.tex -docfiles size=3 - texmf-dist/doc/context/scripts/mkii/mptopdf.man - texmf-dist/doc/man/man1/mptopdf.1 - texmf-dist/doc/man/man1/mptopdf.man1.pdf - -name mptopdf.i386-linux -category Package -revision 18674 -shortdesc i386-linux files of mptopdf -binfiles arch=i386-linux size=1 - bin/i386-linux/mptopdf - -name msc -category Package -revision 15878 -shortdesc Draw MSC diagrams. -relocated 1 -longdesc The package should be useful to all people that prepare their -longdesc texts with LaTeX and want to draw Message Sequence Charts in -longdesc their texts. The package is not an MSC editor; it simply takes -longdesc a textual description of an MSC and draws the corresponding -longdesc MSC. The current version of the MSC macro package supports the -longdesc full MSC2000 language. -runfiles size=29 - RELOC/bibtex/bib/msc/biblio.bib - RELOC/tex/latex/msc/msc.sty -docfiles size=151 - RELOC/doc/latex/msc/COPYRIGHT.txt - RELOC/doc/latex/msc/README - RELOC/doc/latex/msc/maintenance.pdf - RELOC/doc/latex/msc/maintenance.tex - RELOC/doc/latex/msc/manual.pdf - RELOC/doc/latex/msc/manual.tex - RELOC/doc/latex/msc/refman.pdf - RELOC/doc/latex/msc/refman.tex -catalogue-ctan /macros/latex/contrib/msc -catalogue-date 2012-05-24 17:58:39 +0200 -catalogue-license lppl -catalogue-version 1.16 - -name msg -category Package -revision 15878 -shortdesc A package for LaTeX localisation. -relocated 1 -longdesc The package is designed to localise any document class or -longdesc package. This should be very useful for end-users who could -longdesc obtain messages in their own preferred language. It is really -longdesc easy to use by writers of other classes and packages. -longdesc Volunteers are urged to test the package, report, and even to -longdesc localise the message file to their own language. Documentation -longdesc is provided in English. -runfiles size=10 - RELOC/tex/latex/msg/french_msg-msg.tex - RELOC/tex/latex/msg/german_msg-msg.tex - RELOC/tex/latex/msg/msg-msg.tex - RELOC/tex/latex/msg/msg.sty - RELOC/tex/latex/msg/norsk_msg-msg.tex -docfiles size=305 - RELOC/doc/latex/msg/CHANGES - RELOC/doc/latex/msg/README - RELOC/doc/latex/msg/README_msg_doc.txt - RELOC/doc/latex/msg/msg.pdf - RELOC/doc/latex/msg/msgguide.pdf - RELOC/doc/latex/msg/msgguide.tex - RELOC/doc/latex/msg/msgtest.tex -srcfiles size=21 - RELOC/source/latex/msg/Makefile - RELOC/source/latex/msg/msg.dtx - RELOC/source/latex/msg/msg.ins - RELOC/source/latex/msg/msgfiles.dtx -catalogue-ctan /macros/latex/contrib/msg -catalogue-date 2012-06-02 15:31:06 +0200 -catalogue-license lppl -catalogue-version 0.40 - -name mslapa -category Package -revision 17514 -shortdesc Michael Landy's APA citation style. -relocated 1 -longdesc LaTeX and BibTeX style files for a respectably close -longdesc approximation to APA (American Psychological Association) -longdesc citation and reference style. -runfiles size=10 - RELOC/bibtex/bst/mslapa/mslapa.bst - RELOC/tex/latex/mslapa/mslapa.sty -docfiles size=75 - RELOC/doc/latex/mslapa/README - RELOC/doc/latex/mslapa/bibfile.bib - RELOC/doc/latex/mslapa/examp.tex - RELOC/doc/latex/mslapa/mslapa.pdf - RELOC/doc/latex/mslapa/mslapa.tex -catalogue-ctan /macros/latex/contrib/mslapa -catalogue-date 2012-05-24 17:58:39 +0200 -catalogue-license other-free - -name ms -category Package -revision 29849 -shortdesc Various LaTeX packages by Martin Schroder. -relocated 1 -longdesc A bundle of LaTeX packages by Martin Schroder; the collection -longdesc comprises: count1to, make use of fixed TeX counters; everysel, -longdesc set commands to execute every time a font is selected; -longdesc everyshi, set commands to execute whenever a page is shipped -longdesc out; multitoc, typeset the table of contents in multiple -longdesc columns; prelim2e, mark typeset pages as preliminary; and -longdesc ragged2e, typeset ragged text and allow hyphenation. -runfiles size=12 - RELOC/tex/latex/ms/count1to.sty - RELOC/tex/latex/ms/everysel.sty - RELOC/tex/latex/ms/everyshi.sty - RELOC/tex/latex/ms/multitoc.sty - RELOC/tex/latex/ms/prelim2e.sty - RELOC/tex/latex/ms/ragged2e.sty -docfiles size=629 - RELOC/doc/latex/ms/count1to.pdf - RELOC/doc/latex/ms/everysel.pdf - RELOC/doc/latex/ms/everyshi.asc - RELOC/doc/latex/ms/everyshi.bug - RELOC/doc/latex/ms/everyshi.pdf - RELOC/doc/latex/ms/multitoc.asc - RELOC/doc/latex/ms/multitoc.bug - RELOC/doc/latex/ms/multitoc.pdf - RELOC/doc/latex/ms/prelim2e.pdf - RELOC/doc/latex/ms/ragged2e.pdf -srcfiles size=49 - RELOC/source/latex/ms/count1to.drv - RELOC/source/latex/ms/count1to.dtx - RELOC/source/latex/ms/count1to.ins - RELOC/source/latex/ms/everysel.drv - RELOC/source/latex/ms/everysel.dtx - RELOC/source/latex/ms/everysel.ins - RELOC/source/latex/ms/everyshi.drv - RELOC/source/latex/ms/everyshi.dtx - RELOC/source/latex/ms/everyshi.ins - RELOC/source/latex/ms/multitoc.drv - RELOC/source/latex/ms/multitoc.dtx - RELOC/source/latex/ms/multitoc.ins - RELOC/source/latex/ms/prelim2e.drv - RELOC/source/latex/ms/prelim2e.dtx - RELOC/source/latex/ms/prelim2e.ins - RELOC/source/latex/ms/ragged2e.drv - RELOC/source/latex/ms/ragged2e.dtx - RELOC/source/latex/ms/ragged2e.ins -catalogue-ctan /macros/latex/contrib/ms -catalogue-date 2014-10-18 00:25:23 +0200 -catalogue-license lppl - -name msu-thesis -category Package -revision 37846 -shortdesc Class for Michigan State University Master's and PhD theses. -relocated 1 -longdesc This is a class file for producing dissertations and theses -longdesc according to the Michigan State University Graduate School -longdesc Guidelines for Electronic Submission of Master's Theses and -longdesc Dissertations. The class should meet all current requirements -longdesc and is updated whenever the university guidelines change. The -longdesc class is based on the memoir document class, and inherits the -longdesc functionality of that class. -runfiles size=6 - RELOC/tex/latex/msu-thesis/gb4e-compat.tex - RELOC/tex/latex/msu-thesis/msu-thesis.cls -docfiles size=98 - RELOC/doc/latex/msu-thesis/README - RELOC/doc/latex/msu-thesis/msu-thesis.pdf - RELOC/doc/latex/msu-thesis/msu-thesis.tex - RELOC/doc/latex/msu-thesis/samples/MSU-thesis-template.pdf - RELOC/doc/latex/msu-thesis/samples/MSU-thesis-template.tex - RELOC/doc/latex/msu-thesis/samples/MSU-thesis-testfile.bib - RELOC/doc/latex/msu-thesis/samples/MSU-thesis-testfile.pdf - RELOC/doc/latex/msu-thesis/samples/MSU-thesis-testfile.tex - RELOC/doc/latex/msu-thesis/samples/unified.bst -catalogue-ctan /macros/latex/contrib/msu-thesis -catalogue-date 2015-07-12 06:15:20 +0200 -catalogue-license lppl1.3 -catalogue-topics dissertation -catalogue-version 2.5c - -name mtgreek -category Package -revision 17967 -shortdesc Use italic and upright greek letters with mathtime. -relocated 1 -longdesc This package is an add-on to the MathTime a style to provide -longdesc TeX support for the use of the MathTime(tm) fonts (formerly -longdesc distributed by YandY, Inc.). The MathTime package has uppercase -longdesc Greek letters hardwired to be upright and only upright; this -longdesc package provides a switch to choose between the two kinds of -longdesc Greek uppercase letters. -runfiles size=1 - RELOC/tex/latex/mtgreek/mtgreek.sty -docfiles size=44 - RELOC/doc/latex/mtgreek/mtgreek.pdf - RELOC/doc/latex/mtgreek/mtgreek.tex - RELOC/doc/latex/mtgreek/mtgtest.tex -srcfiles size=3 - RELOC/source/latex/mtgreek/mtgreek.dtx - RELOC/source/latex/mtgreek/mtgreek.ins -catalogue-ctan /macros/latex/contrib/mtgreek -catalogue-date 2012-06-03 13:49:17 +0200 -catalogue-license lppl -catalogue-version 1.1+ - -name m-tx -category Package -revision 37078 -shortdesc A preprocessor for pmx. -longdesc M-Tx is a preprocessor to pmx, which is itself a preprocessor -longdesc to musixtex, a music typesetting system. The prime motivation -longdesc to the development of M-Tx was to provide lyrics for music to -longdesc be typeset. In fact, pmx now provides a lyrics interface, but M- -longdesc Tx continues in use by those who prefer its language. -depend m-tx.ARCH -runfiles size=4 - texmf-dist/scripts/m-tx/m-tx.lua - texmf-dist/tex/generic/m-tx/mtx.tex -docfiles size=200 - texmf-dist/doc/generic/m-tx/README - texmf-dist/doc/generic/m-tx/m-tx.html - texmf-dist/doc/generic/m-tx/mtx-install.pdf - texmf-dist/doc/generic/m-tx/mtx-install.tex - texmf-dist/doc/generic/m-tx/mtx060.pdf - texmf-dist/doc/generic/m-tx/mtx060/Makefile - texmf-dist/doc/generic/m-tx/mtx060/README.M-Txdoc - texmf-dist/doc/generic/m-tx/mtx060/borup.mtx - texmf-dist/doc/generic/m-tx/mtx060/chord.mtx - texmf-dist/doc/generic/m-tx/mtx060/dertod.mtx - texmf-dist/doc/generic/m-tx/mtx060/docversion - texmf-dist/doc/generic/m-tx/mtx060/dona.mtx - texmf-dist/doc/generic/m-tx/mtx060/dwoman.mta - texmf-dist/doc/generic/m-tx/mtx060/dwoman.mtb - texmf-dist/doc/generic/m-tx/mtx060/halleluja.ltx - texmf-dist/doc/generic/m-tx/mtx060/kanons.ltx - texmf-dist/doc/generic/m-tx/mtx060/kroonhom.mtx - texmf-dist/doc/generic/m-tx/mtx060/loofnou.mtx - texmf-dist/doc/generic/m-tx/mtx060/lyrics.tex - texmf-dist/doc/generic/m-tx/mtx060/macro.mtx - texmf-dist/doc/generic/m-tx/mtx060/make-dvi - texmf-dist/doc/generic/m-tx/mtx060/make-pdf - texmf-dist/doc/generic/m-tx/mtx060/make-target - texmf-dist/doc/generic/m-tx/mtx060/melisma.mta - texmf-dist/doc/generic/m-tx/mtx060/melisma1.mtb - texmf-dist/doc/generic/m-tx/mtx060/melisma2.mtb - texmf-dist/doc/generic/m-tx/mtx060/melisma3.mtb - texmf-dist/doc/generic/m-tx/mtx060/melisma4.mtb - texmf-dist/doc/generic/m-tx/mtx060/melisma5.mtb - texmf-dist/doc/generic/m-tx/mtx060/melisma6.mtb - texmf-dist/doc/generic/m-tx/mtx060/meter.mtx - texmf-dist/doc/generic/m-tx/mtx060/mozart.mtx - texmf-dist/doc/generic/m-tx/mtx060/mozart0.mtx - texmf-dist/doc/generic/m-tx/mtx060/mtxdoc.sty - texmf-dist/doc/generic/m-tx/mtx060/mtxdoc.tex - texmf-dist/doc/generic/m-tx/mtx060/mtxindex.tex - texmf-dist/doc/generic/m-tx/mtx060/mtxlatex.sty - texmf-dist/doc/generic/m-tx/mtx060/netfirst.mtx - texmf-dist/doc/generic/m-tx/mtx060/netsoos.mta - texmf-dist/doc/generic/m-tx/mtx060/netsoos1.mtb - texmf-dist/doc/generic/m-tx/mtx060/netsoos2.mtb - texmf-dist/doc/generic/m-tx/mtx060/notes.tex - texmf-dist/doc/generic/m-tx/mtx060/pdfcat - texmf-dist/doc/generic/m-tx/mtx060/psalm42.mtx - texmf-dist/doc/generic/m-tx/mtx060/sanctus.mtx - texmf-dist/doc/generic/m-tx/mtx060/title.mtx - texmf-dist/doc/generic/m-tx/mtx060/title1.mtx - texmf-dist/doc/generic/m-tx/mtx060/viva.mtx - texmf-dist/doc/generic/m-tx/mtx060/volta.mtx - texmf-dist/doc/generic/m-tx/prepmx.html - texmf-dist/doc/man/man1/m-tx.1 - texmf-dist/doc/man/man1/m-tx.man1.pdf - texmf-dist/doc/man/man1/prepmx.1 - texmf-dist/doc/man/man1/prepmx.man1.pdf -catalogue-ctan /support/m-tx -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license gpl -catalogue-version 0.60d - -name m-tx.i386-linux -category Package -revision 36790 -shortdesc i386-linux files of m-tx -binfiles arch=i386-linux size=35 - bin/i386-linux/m-tx - bin/i386-linux/prepmx - -name mugsthesis -category Package -revision 34878 -shortdesc Thesis class complying with Marquette University Graduate School requirements. -relocated 1 -longdesc The bundle offers a thesis class, based on memoir, that -longdesc complies with Marquette University Graduate School -longdesc requirements. -runfiles size=2 - RELOC/tex/latex/mugsthesis/mugsthesis.cls -docfiles size=103 - RELOC/doc/latex/mugsthesis/README - RELOC/doc/latex/mugsthesis/mugsthesis.pdf - RELOC/doc/latex/mugsthesis/sample/abstract.tex - RELOC/doc/latex/mugsthesis/sample/acknowledgments.tex - RELOC/doc/latex/mugsthesis/sample/appendix1.tex - RELOC/doc/latex/mugsthesis/sample/ch01.tex - RELOC/doc/latex/mugsthesis/sample/ch02.tex - RELOC/doc/latex/mugsthesis/sample/dedication.tex - RELOC/doc/latex/mugsthesis/sample/mugsthesis_sample.pdf - RELOC/doc/latex/mugsthesis/sample/mugsthesis_sample.tex - RELOC/doc/latex/mugsthesis/sample/refs.bib -srcfiles size=7 - RELOC/source/latex/mugsthesis/mugsthesis.dtx - RELOC/source/latex/mugsthesis/mugsthesis.ins -catalogue-ctan /macros/latex/contrib/mugsthesis -catalogue-date 2015-03-30 22:55:45 +0200 -catalogue-license lppl1.3 - -name multenum -category Package -revision 21775 -shortdesc Multi-column enumerated lists. -relocated 1 -longdesc Defines an environment multienumerate, that produces an -longdesc enumerated array in which columns are vertically aligned on the -longdesc counter. The motivation was lists of answers for a text book, -longdesc where there are many rather small items; the multienumerate -longdesc environment goes some way to making such lists look neater. -runfiles size=2 - RELOC/tex/latex/multenum/multienum.sty -docfiles size=37 - RELOC/doc/latex/multenum/README - RELOC/doc/latex/multenum/multienum.article - RELOC/doc/latex/multenum/multienum.pdf - RELOC/doc/latex/multenum/multienum.sample -catalogue-ctan /macros/latex/contrib/multenum -catalogue-date 2012-01-23 15:27:59 +0100 -catalogue-license lppl1 - -name multiaudience -category Package -revision 38035 -shortdesc Several versions of output from the same source -relocated 1 -longdesc This package allows to generate several versions of the same -longdesc document for different audiences. -runfiles size=1 - RELOC/tex/latex/multiaudience/multiaudience.sty -docfiles size=181 - RELOC/doc/latex/multiaudience/Makefile - RELOC/doc/latex/multiaudience/README - RELOC/doc/latex/multiaudience/multiaudience.pdf - RELOC/doc/latex/multiaudience/sample-admins.pdf - RELOC/doc/latex/multiaudience/sample-devs.pdf - RELOC/doc/latex/multiaudience/sample-execs.pdf - RELOC/doc/latex/multiaudience/sample.tex - RELOC/doc/latex/multiaudience/verbatim.tex -srcfiles size=5 - RELOC/source/latex/multiaudience/multiaudience.dtx - RELOC/source/latex/multiaudience/multiaudience.ins -catalogue-ctan /macros/latex/contrib/multiaudience -catalogue-date 2015-08-03 07:57:25 +0200 -catalogue-license lppl1.3 -catalogue-topics cond-comp -catalogue-version 1.03 - -name multibbl -category Package -revision 15878 -shortdesc Multiple bibliographies. -relocated 1 -longdesc The package multibbl redefines the standard bibliographic -longdesc commands so that one can generate multiple reference sections. -longdesc Each section has it own auxiliary file (for use with BibTeX) -longdesc and title. -runfiles size=1 - RELOC/tex/latex/multibbl/multibbl.sty -docfiles size=28 - RELOC/doc/latex/multibbl/multibbl.pdf -srcfiles size=3 - RELOC/source/latex/multibbl/multibbl.dtx - RELOC/source/latex/multibbl/multibbl.ins -catalogue-ctan /macros/latex/contrib/multibbl -catalogue-date 2012-06-03 12:03:29 +0200 -catalogue-license lppl -catalogue-version v1.1 - -name multibibliography -category Package -revision 30939 -shortdesc Multiple versions of a bibliography, with different sort orders. -longdesc Conventional standards for bibliography styles impose a forced -longdesc choice between index and name/year citations, and corresponding -longdesc references. The package avoids this choice, by providing -longdesc alphabetic, sequenced, and even chronological orderings of -longdesc references. Inline citations, that integrate these -longdesc heterogeneous styles, are also supported (and work with other -longdesc bibliography packages). -depend multibibliography.ARCH -runfiles size=10 - texmf-dist/bibtex/bst/multibibliography/chronological.bst - texmf-dist/scripts/multibibliography/multibibliography.pl - texmf-dist/tex/latex/multibibliography/multibibliography.sty -docfiles size=131 - texmf-dist/doc/latex/multibibliography/Makefile - texmf-dist/doc/latex/multibibliography/README - texmf-dist/doc/latex/multibibliography/figure.pdf - texmf-dist/doc/latex/multibibliography/multibibliography.bib - texmf-dist/doc/latex/multibibliography/multibibliography.pdf - texmf-dist/doc/latex/multibibliography/tug-paper.pdf - texmf-dist/doc/latex/multibibliography/tug-paper.tex - texmf-dist/doc/latex/multibibliography/type.bib -srcfiles size=5 - texmf-dist/source/latex/multibibliography/multibibliography.dtx - texmf-dist/source/latex/multibibliography/multibibliography.ins -catalogue-ctan /macros/latex/contrib/multibibliography -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.03 - -name multibibliography.i386-linux -category Package -revision 30534 -shortdesc i386-linux files of multibibliography -binfiles arch=i386-linux size=1 - bin/i386-linux/multibibliography - -name multibib -category Package -revision 15878 -shortdesc Multiple bibliographies within one document. -relocated 1 -longdesc The package the creation of references to multiple -longdesc bibliographies within one document. It thus provides -longdesc complementary functionality to packages like bibunits and -longdesc chapterbib, which allow the creation of one bibliography for -longdesc multiple, but different parts of the document. Multibib is -longdesc compatible with inlinebib, natbib, and koma-script. -runfiles size=20 - RELOC/bibtex/bst/multibib/mbplain.bst - RELOC/bibtex/bst/multibib/mbunsrtdin.bst - RELOC/makeindex/multibib/mbgglo.ist - RELOC/makeindex/multibib/mbgind.ist - RELOC/tex/latex/multibib/multibib.sty -docfiles size=55 - RELOC/doc/latex/multibib/README - RELOC/doc/latex/multibib/bibtexall - RELOC/doc/latex/multibib/multibib.pdf -srcfiles size=13 - RELOC/source/latex/multibib/multibib.dtx - RELOC/source/latex/multibib/multibib.ins -catalogue-ctan /macros/latex/contrib/multibib -catalogue-date 2012-06-03 12:05:00 +0200 -catalogue-license lppl -catalogue-version 1.4 - -name multicap -category Package -revision 15878 -shortdesc Format captions inside multicols -relocated 1 -longdesc This is a package for formatting captions of column figures and -longdesc column tabular material, which cannot be standard floats in a -longdesc multicols environment. The package also provides a convenient -longdesc way to customise your captions, whether they be in multicols or -longdesc not. -runfiles size=1 - RELOC/tex/latex/multicap/multicap.sty -docfiles size=28 - RELOC/doc/latex/multicap/multicap.pdf -srcfiles size=6 - RELOC/source/latex/multicap/multicap.dtx -catalogue-ctan /macros/latex/contrib/multicap -catalogue-date 2012-06-03 13:48:34 +0200 -catalogue-license lppl - -name multido -category Package -revision 18302 -shortdesc A loop facility for Generic TeX. -relocated 1 -longdesc The package provides the \multido command, which was originally -longdesc designed for use with PSTricks. Fixed-point arithmetic is used -longdesc when working on the loop variable, so that the package is -longdesc equally applicable in graphics applications like PSTricks as it -longdesc is with the more common integer loops. -runfiles size=4 - RELOC/tex/generic/multido/multido.tex - RELOC/tex/latex/multido/multido.sty -docfiles size=36 - RELOC/doc/generic/multido/Changes - RELOC/doc/generic/multido/multido-doc.pdf - RELOC/doc/generic/multido/multido-doc.tex - RELOC/doc/generic/multido/multido.pdf -srcfiles size=1 - RELOC/source/generic/multido/Makefile -catalogue-ctan /macros/generic/multido -catalogue-date 2012-06-03 13:49:17 +0200 -catalogue-license lppl -catalogue-version 1.42 - -name multienv -category Package -revision 26544 -shortdesc Multiple environments using a "key=value" syntax. -relocated 1 -longdesc The package provides a multienv environment which permits easy -longdesc addition of multiple environments using a key=value syntax. -longdesc Macros to define environments using this syntax are also -longdesc provided. -runfiles size=2 - RELOC/tex/latex/multienv/multienv.sty -docfiles size=52 - RELOC/doc/latex/multienv/README - RELOC/doc/latex/multienv/multienv.pdf -srcfiles size=6 - RELOC/source/latex/multienv/multienv.dtx - RELOC/source/latex/multienv/multienv.ins -catalogue-ctan /macros/latex/contrib/multienv -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0 - -name multiexpand -category Package -revision 36427 -shortdesc Variations on the primitive command \expandafter. -relocated 1 -longdesc The package provides two user commands; one that performs -longdesc multiple expansions, and one that does multiple \expandafter -longdesc operations, in a single macro call. The package requires eTeX's -longdesc \numexpr command. The author suggests that the same effect -longdesc could be provided by use of the command variant mechanisms of -longdesc LaTeX 3 (see, for example, the interface documentation of the -longdesc experimental LaTeX 3 kernel). -runfiles size=1 - RELOC/tex/latex/multiexpand/multiexpand.sty -docfiles size=93 - RELOC/doc/latex/multiexpand/README - RELOC/doc/latex/multiexpand/multiexpand.pdf -srcfiles size=5 - RELOC/source/latex/multiexpand/multiexpand.dtx -catalogue-ctan /macros/generic/multiexpand -catalogue-date 2015-03-03 19:05:11 +0100 -catalogue-license lppl1.3 -catalogue-version 1.3 - -name multiobjective -category Package -revision 15878 -shortdesc Symbols for multiobjective optimisation etc. -relocated 1 -longdesc The package provides a series of operators commonly used in -longdesc papers related to multiobjective optimisation, multiobjective -longdesc evolutionary algorithms, multicriteria decision making and -longdesc similar fields. -runfiles size=1 - RELOC/tex/latex/multiobjective/multiobjective.sty -docfiles size=29 - RELOC/doc/latex/multiobjective/README - RELOC/doc/latex/multiobjective/multiobjective.pdf -srcfiles size=3 - RELOC/source/latex/multiobjective/multiobjective.dtx - RELOC/source/latex/multiobjective/multiobjective.ins -catalogue-ctan /macros/latex/contrib/multiobjective -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 - -name multirow -category Package -revision 17256 -shortdesc Create tabular cells spanning multiple rows. -relocated 1 -longdesc The package has a lot of flexibility, including an option for -longdesc specifying an entry at the "natural" width of its text. The -longdesc package is distributed with the bigdelim and bigstrut packages, -longdesc which can be used to advantage with \multirow cells. -runfiles size=4 - RELOC/tex/latex/multirow/bigdelim.sty - RELOC/tex/latex/multirow/bigstrut.sty - RELOC/tex/latex/multirow/multirow.sty -docfiles size=77 - RELOC/doc/latex/multirow/README - RELOC/doc/latex/multirow/miscdoc.sty - RELOC/doc/latex/multirow/multirow.pdf - RELOC/doc/latex/multirow/multirow.tex -catalogue-ctan /macros/latex/contrib/multirow -catalogue-date 2012-07-17 16:43:33 +0200 -catalogue-license lppl1 -catalogue-version 1.6 - -name munich -category Package -revision 15878 -shortdesc An alternative authordate bibliography style. -relocated 1 -longdesc The Munich BibTeX style is produced with custom-bib, as a -longdesc German (and, more generally, Continental European) alternative -longdesc to such author-date styles as harvard and oxford. -runfiles size=8 - RELOC/bibtex/bst/munich/munich.bst -docfiles size=75 - RELOC/doc/latex/munich/README - RELOC/doc/latex/munich/documenation_munich_Bibtex_style.pdf - RELOC/doc/latex/munich/documenation_munich_Bibtex_style.tex - RELOC/doc/latex/munich/example_DB.bib - RELOC/doc/latex/munich/example_munich_Bibtex_style.pdf - RELOC/doc/latex/munich/example_munich_Bibtex_style.tex -catalogue-ctan /biblio/bibtex/contrib/munich -catalogue-date 2012-07-17 16:43:33 +0200 -catalogue-license lppl - -name musixguit -category Package -revision 21649 -shortdesc Easy notation for guitar music, in MusixTeX. -relocated 1 -longdesc The package provides commands for typesetting notes for guitar, -longdesc especially for simplifying guitar notation with MusixTeX. -runfiles size=3 - RELOC/tex/latex/musixguit/musixguit.sty -docfiles size=57 - RELOC/doc/latex/musixguit/README - RELOC/doc/latex/musixguit/musixguit_de.pdf - RELOC/doc/latex/musixguit/musixguit_de.tex -catalogue-ctan /macros/latex/contrib/musixguit -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.2.2 - -name musixtex-fnts -category Package -revision 37762 -shortdesc Fonts used by MusixTeX. -relocated 1 -longdesc These are fonts for use with MusixTeX; they are provided both -longdesc as original Metafont source, and as converted Adobe Type 1. The -longdesc bundle renders the older (Type 1 fonts only) bundle musixtex- -longdesc t1fonts obsolete. -execute addMixedMap musix.map -runfiles size=1361 - RELOC/fonts/map/dvips/musixtex-fonts/musix.map - RELOC/fonts/source/public/musixtex-fonts/musexgen.mf - RELOC/fonts/source/public/musixtex-fonts/musix11.mf - RELOC/fonts/source/public/musixtex-fonts/musix13.mf - RELOC/fonts/source/public/musixtex-fonts/musix16.mf - RELOC/fonts/source/public/musixtex-fonts/musix20.mf - RELOC/fonts/source/public/musixtex-fonts/musix24.mf - RELOC/fonts/source/public/musixtex-fonts/musix25.mf - RELOC/fonts/source/public/musixtex-fonts/musix29.mf - RELOC/fonts/source/public/musixtex-fonts/musixgen.mf - RELOC/fonts/source/public/musixtex-fonts/musixsps.mf - RELOC/fonts/source/public/musixtex-fonts/musixspx.mf - RELOC/fonts/source/public/musixtex-fonts/mxsk.mf - RELOC/fonts/source/public/musixtex-fonts/xadf11.mf - RELOC/fonts/source/public/musixtex-fonts/xadf13.mf - RELOC/fonts/source/public/musixtex-fonts/xadf16.mf - RELOC/fonts/source/public/musixtex-fonts/xadf20.mf - RELOC/fonts/source/public/musixtex-fonts/xadf24.mf - RELOC/fonts/source/public/musixtex-fonts/xadf29.mf - RELOC/fonts/source/public/musixtex-fonts/xadfgen.mf - RELOC/fonts/source/public/musixtex-fonts/xdrawsl.mf - RELOC/fonts/source/public/musixtex-fonts/xdrawzl.mf - RELOC/fonts/source/public/musixtex-fonts/xgreg11.mf - RELOC/fonts/source/public/musixtex-fonts/xgreg13.mf - RELOC/fonts/source/public/musixtex-fonts/xgreg16.mf - RELOC/fonts/source/public/musixtex-fonts/xgreg20.mf - RELOC/fonts/source/public/musixtex-fonts/xgreg24.mf - RELOC/fonts/source/public/musixtex-fonts/xgreg25.mf - RELOC/fonts/source/public/musixtex-fonts/xgreg29.mf - RELOC/fonts/source/public/musixtex-fonts/xgreggen.mf - RELOC/fonts/source/public/musixtex-fonts/xppff10.mf - RELOC/fonts/source/public/musixtex-fonts/xppffgen.mf - RELOC/fonts/source/public/musixtex-fonts/xsld11.mf - RELOC/fonts/source/public/musixtex-fonts/xsld11d.mf - RELOC/fonts/source/public/musixtex-fonts/xsld13.mf - RELOC/fonts/source/public/musixtex-fonts/xsld13d.mf - RELOC/fonts/source/public/musixtex-fonts/xsld16.mf - RELOC/fonts/source/public/musixtex-fonts/xsld16d.mf - RELOC/fonts/source/public/musixtex-fonts/xsld20.mf - RELOC/fonts/source/public/musixtex-fonts/xsld20d.mf - RELOC/fonts/source/public/musixtex-fonts/xsld24.mf - RELOC/fonts/source/public/musixtex-fonts/xsld24d.mf - RELOC/fonts/source/public/musixtex-fonts/xsld29.mf - RELOC/fonts/source/public/musixtex-fonts/xsld29d.mf - RELOC/fonts/source/public/musixtex-fonts/xsldd20.mf - RELOC/fonts/source/public/musixtex-fonts/xsldu20.mf - RELOC/fonts/source/public/musixtex-fonts/xslgen.mf - RELOC/fonts/source/public/musixtex-fonts/xslgend.mf - RELOC/fonts/source/public/musixtex-fonts/xslgenu.mf - RELOC/fonts/source/public/musixtex-fonts/xslhd.mf - RELOC/fonts/source/public/musixtex-fonts/xslhd11.mf - RELOC/fonts/source/public/musixtex-fonts/xslhd11d.mf - RELOC/fonts/source/public/musixtex-fonts/xslhd13.mf - RELOC/fonts/source/public/musixtex-fonts/xslhd13d.mf - RELOC/fonts/source/public/musixtex-fonts/xslhd16.mf - RELOC/fonts/source/public/musixtex-fonts/xslhd16d.mf - RELOC/fonts/source/public/musixtex-fonts/xslhd20.mf - RELOC/fonts/source/public/musixtex-fonts/xslhd20d.mf - RELOC/fonts/source/public/musixtex-fonts/xslhd24.mf - RELOC/fonts/source/public/musixtex-fonts/xslhd24d.mf - RELOC/fonts/source/public/musixtex-fonts/xslhd29.mf - RELOC/fonts/source/public/musixtex-fonts/xslhd29d.mf - RELOC/fonts/source/public/musixtex-fonts/xslhu.mf - RELOC/fonts/source/public/musixtex-fonts/xslhu11.mf - RELOC/fonts/source/public/musixtex-fonts/xslhu11d.mf - RELOC/fonts/source/public/musixtex-fonts/xslhu13.mf - RELOC/fonts/source/public/musixtex-fonts/xslhu13d.mf - RELOC/fonts/source/public/musixtex-fonts/xslhu16.mf - RELOC/fonts/source/public/musixtex-fonts/xslhu16d.mf - RELOC/fonts/source/public/musixtex-fonts/xslhu20.mf - RELOC/fonts/source/public/musixtex-fonts/xslhu20d.mf - RELOC/fonts/source/public/musixtex-fonts/xslhu24.mf - RELOC/fonts/source/public/musixtex-fonts/xslhu24d.mf - RELOC/fonts/source/public/musixtex-fonts/xslhu29.mf - RELOC/fonts/source/public/musixtex-fonts/xslhu29d.mf - RELOC/fonts/source/public/musixtex-fonts/xslhz-o.mf - RELOC/fonts/source/public/musixtex-fonts/xslhz.mf - RELOC/fonts/source/public/musixtex-fonts/xslhz20.mf - RELOC/fonts/source/public/musixtex-fonts/xslhz20d.mf - RELOC/fonts/source/public/musixtex-fonts/xslu11.mf - RELOC/fonts/source/public/musixtex-fonts/xslu11d.mf - RELOC/fonts/source/public/musixtex-fonts/xslu13.mf - RELOC/fonts/source/public/musixtex-fonts/xslu13d.mf - RELOC/fonts/source/public/musixtex-fonts/xslu16.mf - RELOC/fonts/source/public/musixtex-fonts/xslu16d.mf - RELOC/fonts/source/public/musixtex-fonts/xslu20.mf - RELOC/fonts/source/public/musixtex-fonts/xslu20d.mf - RELOC/fonts/source/public/musixtex-fonts/xslu24.mf - RELOC/fonts/source/public/musixtex-fonts/xslu24d.mf - RELOC/fonts/source/public/musixtex-fonts/xslu29.mf - RELOC/fonts/source/public/musixtex-fonts/xslu29d.mf - RELOC/fonts/source/public/musixtex-fonts/xslud20.mf - RELOC/fonts/source/public/musixtex-fonts/xslup20.mf - RELOC/fonts/source/public/musixtex-fonts/xslz.mf - RELOC/fonts/source/public/musixtex-fonts/xslz20.mf - RELOC/fonts/source/public/musixtex-fonts/xslz20d.mf - RELOC/fonts/source/public/musixtex-fonts/xtie20.mf - RELOC/fonts/tfm/public/musixtex-fonts/musix11.tfm - RELOC/fonts/tfm/public/musixtex-fonts/musix13.tfm - RELOC/fonts/tfm/public/musixtex-fonts/musix16.tfm - RELOC/fonts/tfm/public/musixtex-fonts/musix20.tfm - RELOC/fonts/tfm/public/musixtex-fonts/musix24.tfm - RELOC/fonts/tfm/public/musixtex-fonts/musix25.tfm - RELOC/fonts/tfm/public/musixtex-fonts/musix29.tfm - RELOC/fonts/tfm/public/musixtex-fonts/musixsps.tfm - RELOC/fonts/tfm/public/musixtex-fonts/musixspx.tfm - RELOC/fonts/tfm/public/musixtex-fonts/mxsk.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xadf11.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xadf13.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xadf16.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xadf20.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xadf24.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xadf29.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xgreg11.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xgreg13.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xgreg16.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xgreg20.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xgreg24.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xgreg29.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xppff10.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xsld11.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xsld11d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xsld13.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xsld13d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xsld16.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xsld16d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xsld20.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xsld20d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xsld24.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xsld24d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xsld29.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xsld29d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xsldd20.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xsldu20.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhd11.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhd11d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhd13.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhd13d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhd16.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhd16d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhd20.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhd20d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhd24.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhd24d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhd29.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhd29d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhu11.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhu11d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhu13.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhu13d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhu16.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhu16d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhu20.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhu20d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhu20m.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhu24.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhu24d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhu29.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhu29d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhz20.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslhz20d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslu11.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslu11d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslu13.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslu13d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslu16.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslu16d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslu20.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslu20d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslu24.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslu24d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslu29.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslu29d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslud20.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslup20.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslz20.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xslz20d.tfm - RELOC/fonts/tfm/public/musixtex-fonts/xtie20.tfm - RELOC/fonts/type1/public/musixtex-fonts/musix11.pfb - RELOC/fonts/type1/public/musixtex-fonts/musix13.pfb - RELOC/fonts/type1/public/musixtex-fonts/musix16.pfb - RELOC/fonts/type1/public/musixtex-fonts/musix20.pfb - RELOC/fonts/type1/public/musixtex-fonts/musix24.pfb - RELOC/fonts/type1/public/musixtex-fonts/musix29.pfb - RELOC/fonts/type1/public/musixtex-fonts/musixsps.pfb - RELOC/fonts/type1/public/musixtex-fonts/musixspx.pfb - RELOC/fonts/type1/public/musixtex-fonts/mxsk.pfb - RELOC/fonts/type1/public/musixtex-fonts/xadf11.pfb - RELOC/fonts/type1/public/musixtex-fonts/xadf13.pfb - RELOC/fonts/type1/public/musixtex-fonts/xadf16.pfb - RELOC/fonts/type1/public/musixtex-fonts/xadf20.pfb - RELOC/fonts/type1/public/musixtex-fonts/xadf24.pfb - RELOC/fonts/type1/public/musixtex-fonts/xadf29.pfb - RELOC/fonts/type1/public/musixtex-fonts/xgreg11.pfb - RELOC/fonts/type1/public/musixtex-fonts/xgreg13.pfb - RELOC/fonts/type1/public/musixtex-fonts/xgreg16.pfb - RELOC/fonts/type1/public/musixtex-fonts/xgreg20.pfb - RELOC/fonts/type1/public/musixtex-fonts/xgreg24.pfb - RELOC/fonts/type1/public/musixtex-fonts/xgreg29.pfb - RELOC/fonts/type1/public/musixtex-fonts/xppff10.pfb - RELOC/fonts/type1/public/musixtex-fonts/xsld11.pfb - RELOC/fonts/type1/public/musixtex-fonts/xsld11d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xsld13.pfb - RELOC/fonts/type1/public/musixtex-fonts/xsld13d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xsld16.pfb - RELOC/fonts/type1/public/musixtex-fonts/xsld16d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xsld20.pfb - RELOC/fonts/type1/public/musixtex-fonts/xsld20d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xsld24.pfb - RELOC/fonts/type1/public/musixtex-fonts/xsld24d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xsld29.pfb - RELOC/fonts/type1/public/musixtex-fonts/xsld29d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xsldd20.pfb - RELOC/fonts/type1/public/musixtex-fonts/xsldu20.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhd11.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhd11d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhd13.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhd13d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhd16.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhd16d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhd20.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhd20d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhd24.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhd24d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhd29.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhd29d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhu11.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhu11d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhu13.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhu13d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhu16.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhu16d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhu20.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhu20d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhu24.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhu24d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhu29.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhu29d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhz20.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslhz20d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslu11.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslu11d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslu13.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslu13d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslu16.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslu16d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslu20.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslu20d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslu24.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslu24d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslu29.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslu29d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslud20.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslup20.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslz20.pfb - RELOC/fonts/type1/public/musixtex-fonts/xslz20d.pfb - RELOC/fonts/type1/public/musixtex-fonts/xtie20.pfb -docfiles size=24 - RELOC/doc/fonts/musixtex-fonts/CHANGES.psfonts - RELOC/doc/fonts/musixtex-fonts/README - RELOC/doc/fonts/musixtex-fonts/README.psfonts - RELOC/doc/fonts/musixtex-fonts/musixtex-fonts-install.pdf - RELOC/doc/fonts/musixtex-fonts/musixtex-fonts-install.tex -catalogue-ctan /fonts/musixtex-fonts -catalogue-date 2015-07-04 20:49:26 +0200 -catalogue-license gpl -catalogue-topics font font-type1 font-music - -name musixtex -category Package -revision 37959 -shortdesc Sophisticated music typesetting -longdesc MusiXTeX provides a set of macros, based on the earlier -longdesc MusicTeX, for typesetting music with TeX. To produce optimal -longdesc spacing, MusixTeX is a three-pass system: etex, musixflx, and -longdesc etex again. (Musixflx is a lua script that is provided in the -longdesc bundle.) The three-pass process, optionally followed by -longdesc processing for printed output, is automated by the musixtex -longdesc wrapper script. The package uses its own specialised fonts, -longdesc which must be available on the system for musixtex to run. This -longdesc version of MusixTeX builds upon work by Andreas Egler, whose -longdesc own version is no longer being developed. The MusiXTeX macros -longdesc are universally acknowledged to be challenging to use directly: -longdesc the pmx preprocessor compiles a simpler input language to -longdesc MusixTeX macros.. -depend musixtex.ARCH -runfiles size=140 - texmf-dist/dvips/musixtex/psslurs.pro - texmf-dist/scripts/musixtex/musixflx.lua - texmf-dist/scripts/musixtex/musixtex.lua - texmf-dist/tex/generic/musixtex/musixadd.tex - texmf-dist/tex/generic/musixtex/musixadf.tex - texmf-dist/tex/generic/musixtex/musixbar.tex - texmf-dist/tex/generic/musixtex/musixbbm.tex - texmf-dist/tex/generic/musixtex/musixblx.tex - texmf-dist/tex/generic/musixtex/musixbm.tex - texmf-dist/tex/generic/musixtex/musixcho.tex - texmf-dist/tex/generic/musixtex/musixcpt.tex - texmf-dist/tex/generic/musixtex/musixcrd.tex - texmf-dist/tex/generic/musixtex/musixdat.tex - texmf-dist/tex/generic/musixtex/musixdbr.tex - texmf-dist/tex/generic/musixtex/musixdia.tex - texmf-dist/tex/generic/musixtex/musixec.tex - texmf-dist/tex/generic/musixtex/musixeng.tex - texmf-dist/tex/generic/musixtex/musixesf.tex - texmf-dist/tex/generic/musixtex/musixevo.tex - texmf-dist/tex/generic/musixtex/musixext.tex - texmf-dist/tex/generic/musixtex/musixfll.tex - texmf-dist/tex/generic/musixtex/musixgre.tex - texmf-dist/tex/generic/musixtex/musixgui.tex - texmf-dist/tex/generic/musixtex/musixhor.tex - texmf-dist/tex/generic/musixtex/musixhou.tex - texmf-dist/tex/generic/musixtex/musixhv.tex - texmf-dist/tex/generic/musixtex/musixinv.tex - texmf-dist/tex/generic/musixtex/musixlit.tex - texmf-dist/tex/generic/musixtex/musixlyr.tex - texmf-dist/tex/generic/musixtex/musixmad.tex - texmf-dist/tex/generic/musixtex/musixper.tex - texmf-dist/tex/generic/musixtex/musixplt.tex - texmf-dist/tex/generic/musixtex/musixpoi.tex - texmf-dist/tex/generic/musixtex/musixppff.tex - texmf-dist/tex/generic/musixtex/musixps.tex - texmf-dist/tex/generic/musixtex/musixref.tex - texmf-dist/tex/generic/musixtex/musixslu.tex - texmf-dist/tex/generic/musixtex/musixsqr.tex - texmf-dist/tex/generic/musixtex/musixste.tex - texmf-dist/tex/generic/musixtex/musixstf.tex - texmf-dist/tex/generic/musixtex/musixstr.tex - texmf-dist/tex/generic/musixtex/musixsty.tex - texmf-dist/tex/generic/musixtex/musixtex.tex - texmf-dist/tex/generic/musixtex/musixtmr.tex - texmf-dist/tex/generic/musixtex/musixtri.tex - texmf-dist/tex/latex/musixtex/musixcpt.sty - texmf-dist/tex/latex/musixtex/musixcrd.sty - texmf-dist/tex/latex/musixtex/musixfll.sty - texmf-dist/tex/latex/musixtex/musixltx.tex - texmf-dist/tex/latex/musixtex/musixtex.sty -docfiles size=1012 - texmf-dist/doc/generic/musixtex/ChangeLog-114.txt - texmf-dist/doc/generic/musixtex/ChangeLog-115.txt - texmf-dist/doc/generic/musixtex/ChangeLog-116.txt - texmf-dist/doc/generic/musixtex/ChangeLog-117.txt - texmf-dist/doc/generic/musixtex/ChangeLog-118.txt - texmf-dist/doc/generic/musixtex/ChangeLog-musixdoc.txt - texmf-dist/doc/generic/musixtex/README - texmf-dist/doc/generic/musixtex/examples/8bitchar.tex - texmf-dist/doc/generic/musixtex/examples/adagio.tex - texmf-dist/doc/generic/musixtex/examples/albinoni.tex - texmf-dist/doc/generic/musixtex/examples/angescam.tex - texmf-dist/doc/generic/musixtex/examples/angescao.tex - texmf-dist/doc/generic/musixtex/examples/angescax.tex - texmf-dist/doc/generic/musixtex/examples/avemaria.tex - texmf-dist/doc/generic/musixtex/examples/avemarid.tex - texmf-dist/doc/generic/musixtex/examples/avemaril.tex - texmf-dist/doc/generic/musixtex/examples/avemario.tex - texmf-dist/doc/generic/musixtex/examples/avemarix.tex - texmf-dist/doc/generic/musixtex/examples/avemaroo.tex - texmf-dist/doc/generic/musixtex/examples/aveverch.tex - texmf-dist/doc/generic/musixtex/examples/aveverdd.tex - texmf-dist/doc/generic/musixtex/examples/aveveruc.tex - texmf-dist/doc/generic/musixtex/examples/aveverud.tex - texmf-dist/doc/generic/musixtex/examples/aveverum.tex - texmf-dist/doc/generic/musixtex/examples/changecontext.tex - texmf-dist/doc/generic/musixtex/examples/chanson.tex - texmf-dist/doc/generic/musixtex/examples/dissonan.tex - texmf-dist/doc/generic/musixtex/examples/fantaisc.tex - texmf-dist/doc/generic/musixtex/examples/fantaisd.tex - texmf-dist/doc/generic/musixtex/examples/fantaisi.tex - texmf-dist/doc/generic/musixtex/examples/fantcmol.tex - texmf-dist/doc/generic/musixtex/examples/fantfuga.tex - texmf-dist/doc/generic/musixtex/examples/fugcmoll.tex - texmf-dist/doc/generic/musixtex/examples/fugue.tex - texmf-dist/doc/generic/musixtex/examples/gloriab.tex - texmf-dist/doc/generic/musixtex/examples/glorias.tex - texmf-dist/doc/generic/musixtex/examples/gloriax.tex - texmf-dist/doc/generic/musixtex/examples/gymnoman.tex - texmf-dist/doc/generic/musixtex/examples/ilestne.tex - texmf-dist/doc/generic/musixtex/examples/ilestnex.tex - texmf-dist/doc/generic/musixtex/examples/ilfaitda.tex - texmf-dist/doc/generic/musixtex/examples/ilfaitdx.tex - texmf-dist/doc/generic/musixtex/examples/kinder.tex - texmf-dist/doc/generic/musixtex/examples/kv315.tex - texmf-dist/doc/generic/musixtex/examples/kv315f.tex - texmf-dist/doc/generic/musixtex/examples/kv315h.tex - texmf-dist/doc/generic/musixtex/examples/kv315o.tex - texmf-dist/doc/generic/musixtex/examples/kv315org.tex - texmf-dist/doc/generic/musixtex/examples/marcello.tex - texmf-dist/doc/generic/musixtex/examples/marcon1.tex - texmf-dist/doc/generic/musixtex/examples/marcon2.tex - texmf-dist/doc/generic/musixtex/examples/marcon3.tex - texmf-dist/doc/generic/musixtex/examples/marconf.tex - texmf-dist/doc/generic/musixtex/examples/marconh.tex - texmf-dist/doc/generic/musixtex/examples/marcono.tex - texmf-dist/doc/generic/musixtex/examples/musixdbrexample.tex - texmf-dist/doc/generic/musixtex/examples/onuitbri.tex - texmf-dist/doc/generic/musixtex/examples/onuitbrr.tex - texmf-dist/doc/generic/musixtex/examples/onuitbrx.tex - texmf-dist/doc/generic/musixtex/examples/ossiaexa.tex - texmf-dist/doc/generic/musixtex/examples/ostinato.tex - texmf-dist/doc/generic/musixtex/examples/pacifiqb.tex - texmf-dist/doc/generic/musixtex/examples/pacifiqn.tex - texmf-dist/doc/generic/musixtex/examples/pacifiqt.tex - texmf-dist/doc/generic/musixtex/examples/parnasum.tex - texmf-dist/doc/generic/musixtex/examples/partitur.tex - texmf-dist/doc/generic/musixtex/examples/prelfug.tex - texmf-dist/doc/generic/musixtex/examples/prelude.tex - texmf-dist/doc/generic/musixtex/examples/pslurvgap.tex - texmf-dist/doc/generic/musixtex/examples/quod.tex - texmf-dist/doc/generic/musixtex/examples/racine.tex - texmf-dist/doc/generic/musixtex/examples/recit.tex - texmf-dist/doc/generic/musixtex/examples/recueil.tex - texmf-dist/doc/generic/musixtex/examples/rests.tex - texmf-dist/doc/generic/musixtex/examples/reves.tex - texmf-dist/doc/generic/musixtex/examples/romances.tex - texmf-dist/doc/generic/musixtex/examples/scale.tex - texmf-dist/doc/generic/musixtex/examples/souvenir.tex - texmf-dist/doc/generic/musixtex/examples/souvenix.tex - texmf-dist/doc/generic/musixtex/examples/tierce.tex - texmf-dist/doc/generic/musixtex/examples/traeumer.tex - texmf-dist/doc/generic/musixtex/examples/widor.tex - texmf-dist/doc/generic/musixtex/examples/widor_16.tex - texmf-dist/doc/generic/musixtex/examples/widor_20.tex - texmf-dist/doc/generic/musixtex/musixcrd/README.musixcrd - texmf-dist/doc/generic/musixtex/musixcrd/doc.pdf - texmf-dist/doc/generic/musixtex/musixdoc.pdf - texmf-dist/doc/generic/musixtex/musixdoc/accidentals.tex - texmf-dist/doc/generic/musixtex/musixdoc/barlines.tex - texmf-dist/doc/generic/musixtex/musixdoc/barnumbering.tex - texmf-dist/doc/generic/musixtex/musixdoc/beams.tex - texmf-dist/doc/generic/musixtex/musixdoc/changing.tex - texmf-dist/doc/generic/musixtex/musixdoc/embedding.tex - texmf-dist/doc/generic/musixtex/musixdoc/examples.tex - texmf-dist/doc/generic/musixtex/musixdoc/extensions.tex - texmf-dist/doc/generic/musixtex/musixdoc/extracting.tex - texmf-dist/doc/generic/musixtex/musixdoc/fonts.tex - texmf-dist/doc/generic/musixtex/musixdoc/frontmatter.tex - texmf-dist/doc/generic/musixtex/musixdoc/index.tex - texmf-dist/doc/generic/musixtex/musixdoc/introduction.tex - texmf-dist/doc/generic/musixtex/musixdoc/layout.tex - texmf-dist/doc/generic/musixtex/musixdoc/lyrics.tex - texmf-dist/doc/generic/musixtex/musixdoc/miscellaneous.tex - texmf-dist/doc/generic/musixtex/musixdoc/musixdoc.sty - texmf-dist/doc/generic/musixtex/musixdoc/musixdoc.tex - texmf-dist/doc/generic/musixtex/musixdoc/parameters.tex - texmf-dist/doc/generic/musixtex/musixdoc/preparing.tex - texmf-dist/doc/generic/musixtex/musixdoc/repeats.tex - texmf-dist/doc/generic/musixtex/musixdoc/rests.tex - texmf-dist/doc/generic/musixtex/musixdoc/settingup.tex - texmf-dist/doc/generic/musixtex/musixdoc/slurstiesTypeK.tex - texmf-dist/doc/generic/musixtex/musixdoc/slurstiesfont.tex - texmf-dist/doc/generic/musixtex/musixdoc/smaller.tex - texmf-dist/doc/generic/musixtex/musixdoc/spacing.tex - texmf-dist/doc/generic/musixtex/musixdoc/staffsize.tex - texmf-dist/doc/generic/musixtex/musixdoc/summary.tex - texmf-dist/doc/generic/musixtex/musixdoc/transposition.tex - texmf-dist/doc/generic/musixtex/musixdoc/writingnotes.tex - texmf-dist/doc/generic/musixtex/musixlyr/README.musixlyr - texmf-dist/doc/generic/musixtex/musixlyr/examples/nonmoriar.pdf - texmf-dist/doc/generic/musixtex/musixlyr/examples/nonmoriar.tex - texmf-dist/doc/generic/musixtex/musixlyr/mxlyrdoc.pdf - texmf-dist/doc/generic/musixtex/musixlyr/mxlyrdoc.tex - texmf-dist/doc/generic/musixtex/musixtex-install.pdf - texmf-dist/doc/generic/musixtex/musixtex-install.tex - texmf-dist/doc/generic/musixtex/notationMistakes/coulhack.tex - texmf-dist/doc/generic/musixtex/notationMistakes/sottieng.pdf - texmf-dist/doc/generic/musixtex/notationMistakes/sottieng.tex - texmf-dist/doc/generic/musixtex/notationMistakes/sottiger.pdf - texmf-dist/doc/generic/musixtex/notationMistakes/sottiger.tex - texmf-dist/doc/generic/musixtex/notationMistakes/sottigra.pdf - texmf-dist/doc/generic/musixtex/notationMistakes/sottigra.tex - texmf-dist/doc/generic/musixtex/psslurs/README.psslurs - texmf-dist/doc/generic/musixtex/psslurs/slurs.pdf - texmf-dist/doc/generic/musixtex/psslurs/slurs.tex - texmf-dist/doc/generic/musixtex/reference/musixre1.pdf - texmf-dist/doc/generic/musixtex/scripts/musixflx.pdf - texmf-dist/doc/generic/musixtex/scripts/musixtex.pdf - texmf-dist/doc/man/man1/musixflx.1 - texmf-dist/doc/man/man1/musixflx.man1.pdf - texmf-dist/doc/man/man1/musixtex.1 - texmf-dist/doc/man/man1/musixtex.man1.pdf -srcfiles size=12 - texmf-dist/source/generic/musixtex/musixcrd/doc.tex - texmf-dist/source/generic/musixtex/musixcrd/makefile - texmf-dist/source/generic/musixtex/musixcrd/musixcrd.dtx - texmf-dist/source/generic/musixtex/musixcrd/readme - texmf-dist/source/generic/musixtex/musixcrd/strip.tex -catalogue-also pmx -catalogue-ctan /macros/musixtex -catalogue-date 2015-07-26 12:12:26 +0200 -catalogue-license gpl2 -catalogue-topics music -catalogue-version 1.18 - -name musixtex.i386-linux -category Package -revision 37026 -shortdesc i386-linux files of musixtex -binfiles arch=i386-linux size=2 - bin/i386-linux/musixflx - bin/i386-linux/musixtex - -name musixtnt -category Package -revision 37078 -shortdesc A MusiXTeX extension library that enables transformations of the effect of notes commands -longdesc The package includes an archive containing a MusiXTeX extension -longdesc library musixtnt and C source code, binaries for Windows (32 -longdesc bit and 64 bit) and MacOSX, and documentation for two programs: -longdesc fixmsxpart and msxlint. musixtnt.tex provides a macro -longdesc \TransformNotes that enables transformations of the effect of -longdesc notes commands such as \notes. In general, the effect of -longdesc \TransformNotes{input}{output} is that notes commands in the -longdesc source will expect their arguments to match the input pattern, -longdesc but the notes will be typeset according to the output pattern. -longdesc An example is extracting single-instrument parts from a multi- -longdesc instrument score. fixmsxpart corrects note spacing in a single- -longdesc part MusiXTeX source (possibly derived from a multi-instrument -longdesc score and as a result having irregular note spacing). msxlint -longdesc detects incorrectly formatted notes lines in a MusiXTeX source -longdesc file. This should be used before using \TransformNotes. -depend musixtex -depend musixtnt.ARCH -runfiles size=1 - texmf-dist/tex/generic/musixtnt/musixtnt.tex -docfiles size=43 - texmf-dist/doc/generic/musixtnt/README - texmf-dist/doc/generic/musixtnt/TransformNotes.3 - texmf-dist/doc/generic/musixtnt/TransformNotes.pdf - texmf-dist/doc/generic/musixtnt/fixmsxpart.pdf - texmf-dist/doc/generic/musixtnt/msxlint.pdf - texmf-dist/doc/generic/musixtnt/musixtnt-2015-02-09.tar.gz - texmf-dist/doc/man/man1/fixmsxpart.1 - texmf-dist/doc/man/man1/fixmsxpart.man1.pdf - texmf-dist/doc/man/man1/msxlint.1 - texmf-dist/doc/man/man1/msxlint.man1.pdf -catalogue-ctan /macros/musixtnt -catalogue-date 2015-02-20 06:52:25 +0100 -catalogue-license gpl2 -catalogue-version 2015-02-18 - -name musixtnt.i386-linux -category Package -revision 37035 -shortdesc i386-linux files of musixtnt -binfiles arch=i386-linux size=12 - bin/i386-linux/fixmsxpart - bin/i386-linux/msxlint - -name musuos -category Package -revision 24857 -shortdesc Typeset papers for the department of music, Osnabruck. -relocated 1 -longdesc The package provides a LaTeX class for typesetting term papers -longdesc at the institute of music and musicology of the University of -longdesc Osnabruck, Germany, according to the specifications of Prof. -longdesc Stefan Hahnheide. A biblatex style is provided. -runfiles size=3 - RELOC/tex/latex/musuos/musuos.cls -docfiles size=127 - RELOC/doc/latex/musuos/README - RELOC/doc/latex/musuos/musuos-doc.ist - RELOC/doc/latex/musuos/musuos.pdf -srcfiles size=14 - RELOC/source/latex/musuos/musuos.dtx - RELOC/source/latex/musuos/musuos.ins -catalogue-ctan /macros/latex/contrib/musuos -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.1d - -name muthesis -category Package -revision 23861 -shortdesc Classes for University of Manchester Dept of Computer Science. -relocated 1 -longdesc The bundle provides thesis and project report document classes -longdesc from the University of Manchester's Department of Computer -longdesc Science. -runfiles size=6 - RELOC/tex/latex/muthesis/muthesis.cls - RELOC/tex/latex/muthesis/third-rep.cls -docfiles size=1 - RELOC/doc/latex/muthesis/README -catalogue-ctan /macros/latex/contrib/muthesis -catalogue-date 2012-02-09 21:58:23 +0100 -catalogue-license lppl - -name mversion -category Package -revision 29370 -shortdesc Keeping track of document versions. -relocated 1 -longdesc The package enables the user to keep track of different -longdesc versions of a LaTeX document. The command \version prints the -longdesc version and build numbers; each time you compile your document, -longdesc the build number is increased by one. By placing \version in -longdesc the header or footer, each page can be marked with the unique -longdesc build number describing the progress of your document. -runfiles size=1 - RELOC/tex/latex/mversion/mVersion.sty -docfiles size=41 - RELOC/doc/latex/mversion/README - RELOC/doc/latex/mversion/mVersion.pdf -srcfiles size=3 - RELOC/source/latex/mversion/mVersion.dtx - RELOC/source/latex/mversion/mVersion.ins -catalogue-ctan /macros/latex/contrib/mversion -catalogue-date 2015-01-20 21:00:32 +0100 -catalogue-license lppl1.2 -catalogue-version 1.0.1 - -name mwcls -category Package -revision 15878 -shortdesc Polish-oriented document classes. -relocated 1 -longdesc mwcls is a set of document classes for LaTeX 2e designed with -longdesc Polish typographical tradition in mind. Classes include: -longdesc 'mwart' (which is a replacement for 'article'), 'mwrep' -longdesc (replacing 'report'), and 'mwbk' (replacing 'book'). Most -longdesc features present in standard classes work with mwcls classes. -longdesc Some extensions/exceptions include: sectioning commands allow -longdesc for second optional argument (it is possible to state different -longdesc texts for running head and for TOC), new environments -longdesc 'itemize*' and 'enumerate*' for lists with long items, page -longdesc styles have variants for normal, opening, closing, and blank -longdesc pages. -runfiles size=41 - RELOC/tex/latex/mwcls/mw10.clo - RELOC/tex/latex/mwcls/mw11.clo - RELOC/tex/latex/mwcls/mw12.clo - RELOC/tex/latex/mwcls/mwart.cls - RELOC/tex/latex/mwcls/mwbk.cls - RELOC/tex/latex/mwcls/mwbk10.clo - RELOC/tex/latex/mwcls/mwbk11.clo - RELOC/tex/latex/mwcls/mwbk12.clo - RELOC/tex/latex/mwcls/mwrep.cls -docfiles size=41 - RELOC/doc/latex/mwcls/CZYTAJ - RELOC/doc/latex/mwcls/ChangeLog - RELOC/doc/latex/mwcls/README - RELOC/doc/latex/mwcls/mwclsdoc.pdf -srcfiles size=37 - RELOC/source/latex/mwcls/mwcls.dtx - RELOC/source/latex/mwcls/mwcls.ins -catalogue-ctan /macros/latex/contrib/mwcls -catalogue-date 2013-10-30 13:56:38 +0100 -catalogue-license lppl -catalogue-version 0.74 - -name mweights -category Package -revision 31268 -shortdesc Support for multiple-weight font packages. -relocated 1 -longdesc Many font families available for use with LaTeX are available -longdesc at multiple weights. Many Type 1-oriented support packages for -longdesc such fonts re-define the standard \mddefault or \bfdefault -longdesc macros. This can create difficulties if the weight desired for -longdesc one font family isn't available for another font family, or if -longdesc it differs from the weight desired for another font family. The -longdesc package provides a solution to these difficulties. -runfiles size=1 - RELOC/tex/latex/mweights/mweights.sty -docfiles size=1 - RELOC/doc/latex/mweights/README -catalogue-ctan /macros/latex/contrib/mweights -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl - -name mwe -category Package -revision 26422 -shortdesc Packages and image files for MWEs. -relocated 1 -longdesc The bundle provides several files useful when creating a -longdesc minimal working example (MWE). The package itself loads a small -longdesc set of packages often used when creating MWEs. In addition, a -longdesc range of images are provided, which will be installed in the -longdesc TEXMF tree, so that they may be used in any (La)TeX document. -longdesc This allows different users to share MWEs which include image -longdesc commands, without the need to share image files or to use -longdesc replacement code. -runfiles size=443 - RELOC/tex/latex/mwe/example-grid-100x100bp.eps - RELOC/tex/latex/mwe/example-grid-100x100bp.jpg - RELOC/tex/latex/mwe/example-grid-100x100bp.pdf - RELOC/tex/latex/mwe/example-grid-100x100bp.png - RELOC/tex/latex/mwe/example-grid-100x100bp.tex - RELOC/tex/latex/mwe/example-grid-100x100pt.eps - RELOC/tex/latex/mwe/example-grid-100x100pt.jpg - RELOC/tex/latex/mwe/example-grid-100x100pt.pdf - RELOC/tex/latex/mwe/example-grid-100x100pt.png - RELOC/tex/latex/mwe/example-grid-100x100pt.tex - RELOC/tex/latex/mwe/example-image-10x16.eps - RELOC/tex/latex/mwe/example-image-10x16.jpg - RELOC/tex/latex/mwe/example-image-10x16.pdf - RELOC/tex/latex/mwe/example-image-10x16.png - RELOC/tex/latex/mwe/example-image-10x16.tex - RELOC/tex/latex/mwe/example-image-16x10.eps - RELOC/tex/latex/mwe/example-image-16x10.jpg - RELOC/tex/latex/mwe/example-image-16x10.pdf - RELOC/tex/latex/mwe/example-image-16x10.png - RELOC/tex/latex/mwe/example-image-16x10.tex - RELOC/tex/latex/mwe/example-image-16x9.eps - RELOC/tex/latex/mwe/example-image-16x9.jpg - RELOC/tex/latex/mwe/example-image-16x9.pdf - RELOC/tex/latex/mwe/example-image-16x9.png - RELOC/tex/latex/mwe/example-image-16x9.tex - RELOC/tex/latex/mwe/example-image-1x1.eps - RELOC/tex/latex/mwe/example-image-1x1.jpg - RELOC/tex/latex/mwe/example-image-1x1.pdf - RELOC/tex/latex/mwe/example-image-1x1.png - RELOC/tex/latex/mwe/example-image-1x1.tex - RELOC/tex/latex/mwe/example-image-4x3.eps - RELOC/tex/latex/mwe/example-image-4x3.jpg - RELOC/tex/latex/mwe/example-image-4x3.pdf - RELOC/tex/latex/mwe/example-image-4x3.png - RELOC/tex/latex/mwe/example-image-4x3.tex - RELOC/tex/latex/mwe/example-image-9x16.eps - RELOC/tex/latex/mwe/example-image-9x16.jpg - RELOC/tex/latex/mwe/example-image-9x16.pdf - RELOC/tex/latex/mwe/example-image-9x16.png - RELOC/tex/latex/mwe/example-image-9x16.tex - RELOC/tex/latex/mwe/example-image-a.eps - RELOC/tex/latex/mwe/example-image-a.jpg - RELOC/tex/latex/mwe/example-image-a.pdf - RELOC/tex/latex/mwe/example-image-a.png - RELOC/tex/latex/mwe/example-image-a.tex - RELOC/tex/latex/mwe/example-image-a3-landscape.pdf - RELOC/tex/latex/mwe/example-image-a3-landscape.tex - RELOC/tex/latex/mwe/example-image-a3.pdf - RELOC/tex/latex/mwe/example-image-a3.tex - RELOC/tex/latex/mwe/example-image-a4-landscape.pdf - RELOC/tex/latex/mwe/example-image-a4-landscape.tex - RELOC/tex/latex/mwe/example-image-a4.pdf - RELOC/tex/latex/mwe/example-image-a4.tex - RELOC/tex/latex/mwe/example-image-a5-landscape.pdf - RELOC/tex/latex/mwe/example-image-a5-landscape.tex - RELOC/tex/latex/mwe/example-image-a5.pdf - RELOC/tex/latex/mwe/example-image-a5.tex - RELOC/tex/latex/mwe/example-image-b.eps - RELOC/tex/latex/mwe/example-image-b.jpg - RELOC/tex/latex/mwe/example-image-b.pdf - RELOC/tex/latex/mwe/example-image-b.png - RELOC/tex/latex/mwe/example-image-b.tex - RELOC/tex/latex/mwe/example-image-c.eps - RELOC/tex/latex/mwe/example-image-c.jpg - RELOC/tex/latex/mwe/example-image-c.pdf - RELOC/tex/latex/mwe/example-image-c.png - RELOC/tex/latex/mwe/example-image-c.tex - RELOC/tex/latex/mwe/example-image-golden-upright.pdf - RELOC/tex/latex/mwe/example-image-golden-upright.tex - RELOC/tex/latex/mwe/example-image-golden.pdf - RELOC/tex/latex/mwe/example-image-golden.tex - RELOC/tex/latex/mwe/example-image-letter-landscape.pdf - RELOC/tex/latex/mwe/example-image-letter-landscape.tex - RELOC/tex/latex/mwe/example-image-letter.pdf - RELOC/tex/latex/mwe/example-image-letter.tex - RELOC/tex/latex/mwe/example-image.eps - RELOC/tex/latex/mwe/example-image.jpg - RELOC/tex/latex/mwe/example-image.pdf - RELOC/tex/latex/mwe/example-image.png - RELOC/tex/latex/mwe/example-image.tex - RELOC/tex/latex/mwe/mwe.sty -docfiles size=101 - RELOC/doc/latex/mwe/INSTALL - RELOC/doc/latex/mwe/README - RELOC/doc/latex/mwe/mwe.pdf -srcfiles size=10 - RELOC/source/latex/mwe/mwe.dtx - RELOC/source/latex/mwe/mwe.ins -catalogue-ctan /macros/latex/contrib/mwe -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.3 - -name mxedruli -category Package -revision 30021 -shortdesc A pair of fonts for different Georgian alphabets. -relocated 1 -longdesc Two Georgian fonts, in both Metafont and Type 1 formats, which -longdesc cover the Mxedruli and the Xucuri alphabets. -execute addMap mxedruli.map -runfiles size=112 - RELOC/fonts/afm/public/mxedruli/mxed10.afm - RELOC/fonts/afm/public/mxedruli/mxedbf10.afm - RELOC/fonts/afm/public/mxedruli/mxedc10.afm - RELOC/fonts/afm/public/mxedruli/mxedi10.afm - RELOC/fonts/afm/public/mxedruli/xuc10.afm - RELOC/fonts/map/dvips/mxedruli/mxedruli.map - RELOC/fonts/source/public/mxedruli/mxed.mf - RELOC/fonts/source/public/mxedruli/mxed10.mf - RELOC/fonts/source/public/mxedruli/mxedacc.mf - RELOC/fonts/source/public/mxedruli/mxedbase.mf - RELOC/fonts/source/public/mxedruli/mxedbf10.mf - RELOC/fonts/source/public/mxedruli/mxedc10.mf - RELOC/fonts/source/public/mxedruli/mxedcaps.mf - RELOC/fonts/source/public/mxedruli/mxedd.mf - RELOC/fonts/source/public/mxedruli/mxedfont.mf - RELOC/fonts/source/public/mxedruli/mxedi10.mf - RELOC/fonts/source/public/mxedruli/mxedp.mf - RELOC/fonts/source/public/mxedruli/xuc.mf - RELOC/fonts/source/public/mxedruli/xuc10.mf - RELOC/fonts/source/public/mxedruli/xucbase.mf - RELOC/fonts/source/public/mxedruli/xucd.mf - RELOC/fonts/source/public/mxedruli/xucfont.mf - RELOC/fonts/source/public/mxedruli/xucl.mf - RELOC/fonts/source/public/mxedruli/xucp.mf - RELOC/fonts/tfm/public/mxedruli/mxed10.tfm - RELOC/fonts/tfm/public/mxedruli/mxedbf10.tfm - RELOC/fonts/tfm/public/mxedruli/mxedc10.tfm - RELOC/fonts/tfm/public/mxedruli/mxedi10.tfm - RELOC/fonts/tfm/public/mxedruli/xuc10.tfm - RELOC/fonts/type1/public/mxedruli/mxed10.pfb - RELOC/fonts/type1/public/mxedruli/mxedbf10.pfb - RELOC/fonts/type1/public/mxedruli/mxedc10.pfb - RELOC/fonts/type1/public/mxedruli/mxedi10.pfb - RELOC/fonts/type1/public/mxedruli/xuc10.pfb - RELOC/tex/latex/mxedruli/mxedruli.sty - RELOC/tex/latex/mxedruli/umxed.fd - RELOC/tex/latex/mxedruli/uxuc.fd - RELOC/tex/latex/mxedruli/xucuri.sty -docfiles size=95 - RELOC/doc/fonts/mxedruli/README - RELOC/doc/fonts/mxedruli/alphabets.tex - RELOC/doc/fonts/mxedruli/mxeddoc.pdf - RELOC/doc/fonts/mxedruli/mxeddoc.tex - RELOC/doc/fonts/mxedruli/ossetic.tex - RELOC/doc/fonts/mxedruli/vepxis.tex -catalogue-ctan /fonts/georgian/mxedruli -catalogue-date 2013-04-18 13:20:04 +0200 -catalogue-license lppl -catalogue-version 3.3c - -name mychemistry -category Package -revision 28611 -shortdesc Create reaction schemes with LaTeX and ChemFig. -relocated 1 -longdesc The package provides commands for typesetting complex chemical -longdesc reaction schemes with LaTeX and ChemFig. The package requires -longdesc the packages ChemFig, mhchem, chemcompounds and (sometimes) -longdesc chemexec. -runfiles size=15 - RELOC/tex/latex/mychemistry/mychemistry.sty -docfiles size=442 - RELOC/doc/latex/mychemistry/README - RELOC/doc/latex/mychemistry/examples.pdf - RELOC/doc/latex/mychemistry/examples.tex - RELOC/doc/latex/mychemistry/mychemistry_en.pdf - RELOC/doc/latex/mychemistry/mychemistry_en.tex -catalogue-ctan /macros/latex/contrib/mychemistry -catalogue-date 2015-03-07 09:51:58 +0100 -catalogue-license lppl1.3 -catalogue-version 1.99b - -name mycv -category Package -revision 26807 -shortdesc A list-driven CV class, allowing TikZ decorations. -relocated 1 -longdesc The class provides a set of functionality for writing -longdesc "curriculum vitae" with different layouts. The idea is that a -longdesc user can write some custom configuration directives, by means -longdesc of which is possible both to produce different c.v. layouts and -longdesc quickly switch among them. In order to process such directives, -longdesc the class uses a set of lists, provided by the package -longdesc etextools. Basic support for using TikZ decorations is also -longdesc provided. -runfiles size=11 - RELOC/scripts/mycv/mycv_split_contents.pl - RELOC/tex/latex/mycv/mycv.cls - RELOC/tex/latex/mycv/mycv_base.def - RELOC/tex/latex/mycv/mycv_dec.sty - RELOC/tex/latex/mycv/mycv_misc.def - RELOC/tex/latex/mycv/mycv_style.sty - RELOC/tex/latex/mycv/mycv_version.def -docfiles size=183 - RELOC/doc/latex/mycv/CHANGELOG - RELOC/doc/latex/mycv/Doc/Images/logo-1.png - RELOC/doc/latex/mycv/Doc/mycv.tex - RELOC/doc/latex/mycv/Examples/Notes.txt - RELOC/doc/latex/mycv/Examples/mycv-example-dpl.pdf - RELOC/doc/latex/mycv/Examples/mycv-example-dpl2.pdf - RELOC/doc/latex/mycv/Examples/mycv-example-spl.pdf - RELOC/doc/latex/mycv/Examples/mycv-example-spl2.pdf - RELOC/doc/latex/mycv/Examples/mycv-examples.dtx - RELOC/doc/latex/mycv/README - RELOC/doc/latex/mycv/checksum.pl - RELOC/doc/latex/mycv/mycv.pdf -srcfiles size=10 - RELOC/source/latex/mycv/mycv.dtx - RELOC/source/latex/mycv/mycv.ins -catalogue-ctan /macros/latex/contrib/mycv -catalogue-date 2014-11-07 14:37:14 +0100 -catalogue-license lppl1.3 -catalogue-version 1.5.6 - -name mylatexformat -category Package -revision 21392 -shortdesc Build a format based on the preamble of a LaTeX file. -relocated 1 -longdesc The use of formats helps to speed up compilations: packages -longdesc which have been dumped in the format are loaded at very high -longdesc speed. This is useful when a document loads many packages -longdesc (including large packages such as pgf-TikZ). The package was -longdesc developed from the work in mylatex, and eliminates many of the -longdesc limitations and problems of that package. -runfiles size=4 - RELOC/tex/latex/mylatexformat/mylatexformat.ltx -docfiles size=51 - RELOC/doc/latex/mylatexformat/README - RELOC/doc/latex/mylatexformat/mylatexformat.pdf -srcfiles size=13 - RELOC/source/latex/mylatexformat/mylatexformat.drv - RELOC/source/latex/mylatexformat/mylatexformat.dtx - RELOC/source/latex/mylatexformat/mylatexformat.ins -catalogue-ctan /macros/latex/contrib/mylatexformat -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 3.4 - -name nag -category Package -revision 24741 -shortdesc Detecting and warning about obsolete LaTeX commands -relocated 1 -longdesc Old habits die hard. All the same, there are commands, classes -longdesc and packages which are outdated and superseded. The nag package -longdesc provides routines to warn the user about the use of such -longdesc obsolete things. As an example, we provide an extension that -longdesc detects many of the "sins" described in l2tabu. -runfiles size=10 - RELOC/tex/latex/nag/nag-abort.cfg - RELOC/tex/latex/nag/nag-experimental.cfg - RELOC/tex/latex/nag/nag-l2tabu.cfg - RELOC/tex/latex/nag/nag-orthodox.cfg - RELOC/tex/latex/nag/nag.sty -docfiles size=110 - RELOC/doc/latex/nag/README - RELOC/doc/latex/nag/nag.pdf - RELOC/doc/latex/nag/nagdemo.tex -srcfiles size=15 - RELOC/source/latex/nag/nag.dtx - RELOC/source/latex/nag/nag.ins -catalogue-ctan /macros/latex/contrib/nag -catalogue-date 2012-06-16 10:11:41 +0200 -catalogue-license lppl -catalogue-version 0.7 - -name nameauth -category Package -revision 37840 -shortdesc Name authority mechanism for consistency in body text and index. -relocated 1 -longdesc Publications, that reference many names, require editors and -longdesc proofreaders to track those names in the text and index. The -longdesc package offers name authority macros that allow authors and -longdesc compilers to normalize occurrences of names, variant name -longdesc forms, and pen names in the text and index. This may help -longdesc minimize writing and production time and cost. -runfiles size=8 - RELOC/tex/latex/nameauth/nameauth.sty -docfiles size=175 - RELOC/doc/latex/nameauth/Makefile - RELOC/doc/latex/nameauth/README - RELOC/doc/latex/nameauth/nameauth.pdf -srcfiles size=34 - RELOC/source/latex/nameauth/nameauth.dtx - RELOC/source/latex/nameauth/nameauth.ins -catalogue-ctan /macros/latex/contrib/nameauth -catalogue-date 2015-07-11 07:20:48 +0200 -catalogue-license lppl1.3 -catalogue-topics editorial editorial-consistency -catalogue-version 1.9 - -name namespc -category Package -revision 15878 -shortdesc Rudimentary C++-like namespaces in LaTeX. -relocated 1 -longdesc The namespc package adds rudimentary C++-like namespace -longdesc functionality to LaTeX. It may be used to declare local LaTeX -longdesc commands, which can be made accessible in a later contexts -longdesc without defining them globally. -runfiles size=1 - RELOC/tex/latex/namespc/namespc.sty -docfiles size=35 - RELOC/doc/latex/namespc/README - RELOC/doc/latex/namespc/namespc.pdf -srcfiles size=3 - RELOC/source/latex/namespc/namespc.dtx -catalogue-ctan /macros/latex/contrib/namespc -catalogue-date 2012-06-16 10:11:41 +0200 -catalogue-license lppl - -name nanumtype1 -category Package -revision 29558 -shortdesc Type1 subfonts of Nanum Korean fonts. -relocated 1 -longdesc Nanum is a unicode font designed especially for Korean-language -longdesc script. The font was designed by Sandoll Communication and -longdesc Fontrix; it includes the sans serif (gothic), serif (myeongjo), -longdesc pen script and brush script typefaces. The package provides -longdesc Type1 subfonts converted from Nanum Myeongjo (Regular and -longdesc ExtraBold) and Nanum Gothic (Regular and Bold) OTFs. C70, LUC, -longdesc T1, and TS1 font definition files are also provided. (The -longdesc package does not include OpenType/TrueType files, which are -longdesc available from Naver) -execute addMap nanumfonts.map -runfiles size=9476 - RELOC/fonts/afm/public/nanumtype1/nanumgtb00.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb01.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb02.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb03.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb04.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb11.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb20.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb21.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb22.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb23.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb24.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb25.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb26.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb27.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb2a.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb30.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb31.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb32.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb33.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb4e.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb4f.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb50.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb51.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb52.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb53.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb54.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb55.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb56.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb57.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb58.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb59.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb5a.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb5b.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb5c.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb5d.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb5e.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb5f.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb60.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb61.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb62.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb63.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb64.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb65.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb66.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb67.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb68.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb69.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb6a.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb6b.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb6c.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb6d.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb6e.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb6f.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb70.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb71.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb72.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb73.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb74.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb75.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb76.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb77.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb78.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb79.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb7a.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb7b.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb7c.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb7d.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb7e.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb7f.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb80.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb81.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb82.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb83.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb84.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb85.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb86.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb87.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb88.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb89.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb8a.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb8b.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb8c.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb8d.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb8e.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb8f.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb90.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb91.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb92.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb93.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb94.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb95.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb96.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb97.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb98.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb99.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb9a.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb9b.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb9c.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb9d.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb9e.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtb9f.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbac.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbad.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbae.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbaf.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbb0.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbb1.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbb2.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbb3.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbb4.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbb5.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbb6.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbb7.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbb8.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbb9.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbba.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbbb.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbbc.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbbd.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbbe.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbbf.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbc0.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbc1.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbc2.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbc3.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbc4.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbc5.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbc6.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbc7.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbc8.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbc9.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbca.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbcb.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbcc.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbcd.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbce.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbcf.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbd0.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbd1.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbd2.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbd3.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbd4.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbd5.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbd6.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbd7.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbf9.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbfa.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtbff.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm00.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm01.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm02.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm03.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm04.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm11.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm20.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm21.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm22.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm23.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm24.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm25.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm26.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm27.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm2a.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm30.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm31.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm32.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm33.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm4e.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm4f.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm50.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm51.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm52.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm53.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm54.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm55.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm56.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm57.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm58.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm59.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm5a.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm5b.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm5c.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm5d.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm5e.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm5f.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm60.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm61.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm62.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm63.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm64.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm65.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm66.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm67.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm68.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm69.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm6a.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm6b.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm6c.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm6d.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm6e.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm6f.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm70.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm71.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm72.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm73.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm74.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm75.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm76.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm77.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm78.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm79.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm7a.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm7b.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm7c.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm7d.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm7e.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm7f.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm80.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm81.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm82.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm83.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm84.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm85.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm86.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm87.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm88.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm89.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm8a.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm8b.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm8c.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm8d.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm8e.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm8f.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm90.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm91.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm92.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm93.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm94.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm95.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm96.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm97.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm98.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm99.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm9a.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm9b.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm9c.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm9d.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm9e.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtm9f.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmac.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmad.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmae.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmaf.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmb0.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmb1.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmb2.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmb3.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmb4.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmb5.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmb6.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmb7.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmb8.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmb9.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmba.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmbb.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmbc.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmbd.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmbe.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmbf.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmc0.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmc1.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmc2.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmc3.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmc4.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmc5.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmc6.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmc7.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmc8.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmc9.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmca.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmcb.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmcc.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmcd.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmce.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmcf.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmd0.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmd1.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmd2.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmd3.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmd4.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmd5.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmd6.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmd7.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmf9.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmfa.afm - RELOC/fonts/afm/public/nanumtype1/nanumgtmff.afm - RELOC/fonts/afm/public/nanumtype1/nanummjb00.afm - RELOC/fonts/afm/public/nanumtype1/nanummjb01.afm - RELOC/fonts/afm/public/nanumtype1/nanummjb02.afm - RELOC/fonts/afm/public/nanumtype1/nanummjb03.afm - RELOC/fonts/afm/public/nanumtype1/nanummjb04.afm - RELOC/fonts/afm/public/nanumtype1/nanummjb20.afm - RELOC/fonts/afm/public/nanumtype1/nanummjb21.afm - RELOC/fonts/afm/public/nanumtype1/nanummjb22.afm - RELOC/fonts/afm/public/nanumtype1/nanummjb23.afm - RELOC/fonts/afm/public/nanumtype1/nanummjb24.afm - RELOC/fonts/afm/public/nanumtype1/nanummjb25.afm - RELOC/fonts/afm/public/nanumtype1/nanummjb26.afm - RELOC/fonts/afm/public/nanumtype1/nanummjb27.afm - RELOC/fonts/afm/public/nanumtype1/nanummjb2a.afm - RELOC/fonts/afm/public/nanumtype1/nanummjb30.afm - RELOC/fonts/afm/public/nanumtype1/nanummjb31.afm - RELOC/fonts/afm/public/nanumtype1/nanummjb32.afm - RELOC/fonts/afm/public/nanumtype1/nanummjb33.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbac.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbad.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbae.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbaf.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbb0.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbb1.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbb2.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbb3.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbb4.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbb5.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbb6.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbb7.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbb8.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbb9.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbba.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbbb.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbbc.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbbd.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbbe.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbbf.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbc0.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbc1.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbc2.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbc3.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbc4.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbc5.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbc6.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbc7.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbc8.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbc9.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbca.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbcb.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbcc.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbcd.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbce.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbcf.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbd0.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbd1.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbd2.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbd3.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbd4.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbd5.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbd6.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbd7.afm - RELOC/fonts/afm/public/nanumtype1/nanummjbff.afm - RELOC/fonts/afm/public/nanumtype1/nanummjm00.afm - RELOC/fonts/afm/public/nanumtype1/nanummjm01.afm - RELOC/fonts/afm/public/nanumtype1/nanummjm02.afm - RELOC/fonts/afm/public/nanumtype1/nanummjm03.afm - RELOC/fonts/afm/public/nanumtype1/nanummjm04.afm - RELOC/fonts/afm/public/nanumtype1/nanummjm20.afm - RELOC/fonts/afm/public/nanumtype1/nanummjm21.afm - RELOC/fonts/afm/public/nanumtype1/nanummjm22.afm - RELOC/fonts/afm/public/nanumtype1/nanummjm23.afm - RELOC/fonts/afm/public/nanumtype1/nanummjm24.afm - RELOC/fonts/afm/public/nanumtype1/nanummjm25.afm - RELOC/fonts/afm/public/nanumtype1/nanummjm26.afm - RELOC/fonts/afm/public/nanumtype1/nanummjm27.afm - RELOC/fonts/afm/public/nanumtype1/nanummjm30.afm - RELOC/fonts/afm/public/nanumtype1/nanummjm31.afm - RELOC/fonts/afm/public/nanumtype1/nanummjm32.afm - RELOC/fonts/afm/public/nanumtype1/nanummjm33.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmac.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmad.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmae.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmaf.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmb0.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmb1.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmb2.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmb3.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmb4.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmb5.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmb6.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmb7.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmb8.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmb9.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmba.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmbb.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmbc.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmbd.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmbe.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmbf.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmc0.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmc1.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmc2.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmc3.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmc4.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmc5.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmc6.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmc7.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmc8.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmc9.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmca.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmcb.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmcc.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmcd.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmce.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmcf.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmd0.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmd1.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmd2.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmd3.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmd4.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmd5.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmd6.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmd7.afm - RELOC/fonts/afm/public/nanumtype1/nanummjmff.afm - RELOC/fonts/afm/public/nanumtype1/t1nanumgtb.afm - RELOC/fonts/afm/public/nanumtype1/t1nanumgtm.afm - RELOC/fonts/afm/public/nanumtype1/t1nanummjb.afm - RELOC/fonts/afm/public/nanumtype1/t1nanummjm.afm - RELOC/fonts/map/dvips/nanumtype1/nanumfonts.map - RELOC/fonts/tfm/public/nanumtype1/nanumgtb00.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb01.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb02.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb03.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb04.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb11.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb20.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb21.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb22.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb23.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb24.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb25.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb26.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb27.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb2a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb30.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb31.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb32.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb33.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb4e.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb4f.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb50.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb51.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb52.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb53.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb54.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb55.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb56.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb57.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb58.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb59.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb5a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb5b.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb5c.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb5d.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb5e.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb5f.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb60.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb61.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb62.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb63.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb64.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb65.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb66.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb67.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb68.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb69.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb6a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb6b.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb6c.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb6d.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb6e.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb6f.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb70.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb71.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb72.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb73.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb74.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb75.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb76.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb77.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb78.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb79.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb7a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb7b.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb7c.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb7d.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb7e.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb7f.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb80.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb81.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb82.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb83.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb84.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb85.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb86.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb87.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb88.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb89.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb8a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb8b.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb8c.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb8d.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb8e.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb8f.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb90.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb91.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb92.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb93.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb94.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb95.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb96.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb97.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb98.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb99.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb9a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb9b.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb9c.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb9d.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb9e.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtb9f.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbac.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbad.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbae.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbaf.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbb0.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbb1.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbb2.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbb3.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbb4.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbb5.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbb6.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbb7.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbb8.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbb9.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbba.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbbb.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbbc.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbbd.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbbe.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbbf.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbc0.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbc1.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbc2.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbc3.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbc4.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbc5.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbc6.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbc7.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbc8.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbc9.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbca.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbcb.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbcc.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbcd.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbce.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbcf.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbd0.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbd1.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbd2.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbd3.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbd4.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbd5.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbd6.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbd7.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbf9.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbfa.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbff.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo00.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo01.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo02.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo03.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo04.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo11.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo20.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo21.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo22.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo23.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo24.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo25.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo26.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo27.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo2a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo30.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo31.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo32.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo33.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo4e.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo4f.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo50.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo51.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo52.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo53.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo54.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo55.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo56.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo57.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo58.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo59.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo5a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo5b.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo5c.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo5d.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo5e.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo5f.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo60.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo61.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo62.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo63.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo64.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo65.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo66.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo67.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo68.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo69.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo6a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo6b.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo6c.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo6d.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo6e.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo6f.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo70.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo71.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo72.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo73.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo74.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo75.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo76.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo77.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo78.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo79.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo7a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo7b.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo7c.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo7d.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo7e.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo7f.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo80.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo81.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo82.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo83.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo84.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo85.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo86.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo87.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo88.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo89.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo8a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo8b.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo8c.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo8d.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo8e.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo8f.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo90.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo91.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo92.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo93.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo94.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo95.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo96.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo97.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo98.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo99.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo9a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo9b.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo9c.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo9d.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo9e.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbo9f.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtboac.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtboad.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtboae.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtboaf.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbob0.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbob1.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbob2.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbob3.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbob4.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbob5.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbob6.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbob7.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbob8.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbob9.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtboba.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbobb.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbobc.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbobd.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbobe.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbobf.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtboc0.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtboc1.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtboc2.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtboc3.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtboc4.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtboc5.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtboc6.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtboc7.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtboc8.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtboc9.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtboca.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbocb.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbocc.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbocd.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtboce.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbocf.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbod0.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbod1.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbod2.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbod3.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbod4.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbod5.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbod6.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbod7.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbof9.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtbofa.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtboff.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm00.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm01.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm02.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm03.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm04.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm11.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm20.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm21.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm22.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm23.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm24.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm25.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm26.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm27.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm2a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm30.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm31.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm32.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm33.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm4e.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm4f.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm50.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm51.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm52.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm53.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm54.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm55.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm56.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm57.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm58.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm59.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm5a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm5b.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm5c.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm5d.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm5e.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm5f.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm60.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm61.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm62.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm63.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm64.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm65.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm66.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm67.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm68.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm69.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm6a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm6b.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm6c.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm6d.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm6e.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm6f.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm70.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm71.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm72.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm73.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm74.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm75.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm76.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm77.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm78.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm79.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm7a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm7b.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm7c.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm7d.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm7e.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm7f.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm80.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm81.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm82.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm83.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm84.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm85.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm86.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm87.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm88.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm89.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm8a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm8b.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm8c.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm8d.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm8e.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm8f.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm90.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm91.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm92.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm93.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm94.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm95.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm96.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm97.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm98.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm99.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm9a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm9b.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm9c.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm9d.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm9e.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtm9f.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmac.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmad.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmae.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmaf.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmb0.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmb1.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmb2.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmb3.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmb4.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmb5.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmb6.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmb7.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmb8.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmb9.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmba.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmbb.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmbc.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmbd.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmbe.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmbf.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmc0.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmc1.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmc2.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmc3.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmc4.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmc5.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmc6.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmc7.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmc8.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmc9.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmca.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmcb.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmcc.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmcd.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmce.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmcf.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmd0.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmd1.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmd2.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmd3.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmd4.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmd5.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmd6.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmd7.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmf9.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmfa.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmff.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo00.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo01.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo02.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo03.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo04.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo11.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo20.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo21.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo22.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo23.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo24.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo25.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo26.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo27.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo2a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo30.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo31.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo32.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo33.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo4e.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo4f.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo50.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo51.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo52.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo53.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo54.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo55.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo56.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo57.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo58.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo59.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo5a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo5b.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo5c.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo5d.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo5e.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo5f.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo60.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo61.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo62.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo63.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo64.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo65.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo66.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo67.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo68.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo69.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo6a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo6b.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo6c.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo6d.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo6e.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo6f.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo70.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo71.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo72.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo73.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo74.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo75.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo76.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo77.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo78.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo79.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo7a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo7b.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo7c.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo7d.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo7e.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo7f.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo80.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo81.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo82.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo83.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo84.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo85.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo86.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo87.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo88.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo89.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo8a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo8b.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo8c.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo8d.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo8e.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo8f.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo90.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo91.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo92.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo93.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo94.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo95.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo96.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo97.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo98.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo99.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo9a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo9b.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo9c.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo9d.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo9e.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmo9f.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmoac.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmoad.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmoae.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmoaf.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmob0.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmob1.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmob2.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmob3.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmob4.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmob5.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmob6.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmob7.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmob8.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmob9.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmoba.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmobb.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmobc.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmobd.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmobe.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmobf.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc0.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc1.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc2.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc3.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc4.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc5.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc6.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc7.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc8.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc9.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmoca.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmocb.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmocc.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmocd.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmoce.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmocf.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmod0.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmod1.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmod2.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmod3.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmod4.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmod5.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmod6.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmod7.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmof9.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmofa.tfm - RELOC/fonts/tfm/public/nanumtype1/nanumgtmoff.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjb00.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjb01.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjb02.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjb03.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjb04.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjb20.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjb21.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjb22.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjb23.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjb24.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjb25.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjb26.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjb27.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjb2a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjb30.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjb31.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjb32.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjb33.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbac.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbad.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbae.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbaf.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbb0.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbb1.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbb2.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbb3.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbb4.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbb5.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbb6.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbb7.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbb8.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbb9.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbba.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbbb.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbbc.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbbd.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbbe.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbbf.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbc0.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbc1.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbc2.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbc3.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbc4.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbc5.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbc6.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbc7.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbc8.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbc9.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbca.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbcb.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbcc.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbcd.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbce.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbcf.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbd0.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbd1.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbd2.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbd3.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbd4.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbd5.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbd6.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbd7.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbff.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbo00.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbo01.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbo02.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbo03.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbo04.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbo20.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbo21.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbo22.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbo23.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbo24.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbo25.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbo26.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbo27.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbo2a.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbo30.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbo31.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbo32.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbo33.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjboac.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjboad.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjboae.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjboaf.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbob0.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbob1.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbob2.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbob3.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbob4.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbob5.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbob6.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbob7.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbob8.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbob9.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjboba.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbobb.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbobc.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbobd.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbobe.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbobf.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjboc0.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjboc1.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjboc2.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjboc3.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjboc4.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjboc5.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjboc6.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjboc7.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjboc8.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjboc9.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjboca.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbocb.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbocc.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbocd.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjboce.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbocf.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbod0.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbod1.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbod2.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbod3.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbod4.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbod5.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbod6.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjbod7.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjboff.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjm00.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjm01.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjm02.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjm03.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjm04.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjm20.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjm21.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjm22.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjm23.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjm24.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjm25.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjm26.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjm27.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjm30.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjm31.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjm32.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjm33.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmac.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmad.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmae.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmaf.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmb0.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmb1.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmb2.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmb3.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmb4.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmb5.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmb6.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmb7.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmb8.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmb9.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmba.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmbb.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmbc.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmbd.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmbe.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmbf.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmc0.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmc1.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmc2.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmc3.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmc4.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmc5.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmc6.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmc7.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmc8.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmc9.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmca.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmcb.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmcc.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmcd.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmce.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmcf.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmd0.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmd1.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmd2.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmd3.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmd4.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmd5.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmd6.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmd7.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmff.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmo00.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmo01.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmo02.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmo03.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmo04.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmo20.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmo21.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmo22.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmo23.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmo24.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmo25.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmo26.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmo27.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmo30.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmo31.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmo32.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmo33.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmoac.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmoad.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmoae.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmoaf.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmob0.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmob1.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmob2.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmob3.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmob4.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmob5.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmob6.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmob7.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmob8.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmob9.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmoba.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmobb.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmobc.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmobd.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmobe.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmobf.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmoc0.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmoc1.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmoc2.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmoc3.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmoc4.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmoc5.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmoc6.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmoc7.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmoc8.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmoc9.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmoca.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmocb.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmocc.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmocd.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmoce.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmocf.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmod0.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmod1.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmod2.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmod3.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmod4.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmod5.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmod6.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmod7.tfm - RELOC/fonts/tfm/public/nanumtype1/nanummjmoff.tfm - RELOC/fonts/tfm/public/nanumtype1/t1nanumgtb.tfm - RELOC/fonts/tfm/public/nanumtype1/t1nanumgtbo.tfm - RELOC/fonts/tfm/public/nanumtype1/t1nanumgtm.tfm - RELOC/fonts/tfm/public/nanumtype1/t1nanumgtmo.tfm - RELOC/fonts/tfm/public/nanumtype1/t1nanummjb.tfm - RELOC/fonts/tfm/public/nanumtype1/t1nanummjbo.tfm - RELOC/fonts/tfm/public/nanumtype1/t1nanummjm.tfm - RELOC/fonts/tfm/public/nanumtype1/t1nanummjmo.tfm - RELOC/fonts/tfm/public/nanumtype1/ts1nanumgtb.tfm - RELOC/fonts/tfm/public/nanumtype1/ts1nanumgtbo.tfm - RELOC/fonts/tfm/public/nanumtype1/ts1nanumgtm.tfm - RELOC/fonts/tfm/public/nanumtype1/ts1nanumgtmo.tfm - RELOC/fonts/tfm/public/nanumtype1/ts1nanummjb.tfm - RELOC/fonts/tfm/public/nanumtype1/ts1nanummjbo.tfm - RELOC/fonts/tfm/public/nanumtype1/ts1nanummjm.tfm - RELOC/fonts/tfm/public/nanumtype1/ts1nanummjmo.tfm - RELOC/fonts/type1/public/nanumtype1/nanumgtb00.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb01.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb02.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb03.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb04.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb11.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb20.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb21.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb22.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb23.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb24.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb25.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb26.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb27.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb2a.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb30.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb31.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb32.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb33.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb4e.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb4f.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb50.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb51.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb52.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb53.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb54.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb55.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb56.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb57.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb58.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb59.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb5a.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb5b.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb5c.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb5d.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb5e.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb5f.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb60.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb61.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb62.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb63.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb64.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb65.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb66.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb67.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb68.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb69.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb6a.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb6b.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb6c.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb6d.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb6e.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb6f.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb70.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb71.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb72.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb73.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb74.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb75.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb76.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb77.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb78.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb79.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb7a.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb7b.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb7c.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb7d.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb7e.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb7f.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb80.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb81.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb82.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb83.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb84.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb85.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb86.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb87.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb88.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb89.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb8a.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb8b.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb8c.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb8d.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb8e.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb8f.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb90.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb91.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb92.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb93.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb94.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb95.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb96.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb97.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb98.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb99.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb9a.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb9b.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb9c.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb9d.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb9e.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtb9f.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbac.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbad.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbae.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbaf.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbb0.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbb1.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbb2.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbb3.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbb4.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbb5.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbb6.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbb7.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbb8.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbb9.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbba.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbbb.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbbc.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbbd.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbbe.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbbf.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbc0.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbc1.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbc2.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbc3.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbc4.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbc5.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbc6.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbc7.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbc8.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbc9.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbca.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbcb.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbcc.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbcd.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbce.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbcf.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbd0.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbd1.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbd2.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbd3.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbd4.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbd5.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbd6.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbd7.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbf9.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbfa.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtbff.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm00.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm01.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm02.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm03.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm04.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm11.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm20.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm21.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm22.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm23.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm24.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm25.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm26.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm27.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm2a.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm30.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm31.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm32.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm33.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm4e.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm4f.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm50.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm51.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm52.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm53.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm54.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm55.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm56.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm57.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm58.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm59.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm5a.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm5b.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm5c.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm5d.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm5e.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm5f.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm60.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm61.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm62.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm63.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm64.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm65.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm66.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm67.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm68.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm69.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm6a.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm6b.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm6c.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm6d.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm6e.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm6f.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm70.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm71.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm72.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm73.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm74.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm75.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm76.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm77.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm78.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm79.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm7a.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm7b.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm7c.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm7d.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm7e.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm7f.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm80.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm81.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm82.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm83.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm84.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm85.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm86.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm87.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm88.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm89.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm8a.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm8b.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm8c.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm8d.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm8e.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm8f.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm90.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm91.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm92.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm93.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm94.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm95.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm96.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm97.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm98.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm99.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm9a.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm9b.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm9c.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm9d.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm9e.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtm9f.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmac.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmad.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmae.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmaf.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmb0.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmb1.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmb2.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmb3.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmb4.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmb5.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmb6.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmb7.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmb8.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmb9.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmba.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmbb.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmbc.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmbd.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmbe.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmbf.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmc0.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmc1.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmc2.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmc3.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmc4.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmc5.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmc6.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmc7.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmc8.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmc9.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmca.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmcb.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmcc.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmcd.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmce.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmcf.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmd0.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmd1.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmd2.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmd3.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmd4.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmd5.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmd6.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmd7.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmf9.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmfa.pfb - RELOC/fonts/type1/public/nanumtype1/nanumgtmff.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjb00.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjb01.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjb02.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjb03.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjb04.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjb20.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjb21.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjb22.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjb23.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjb24.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjb25.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjb26.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjb27.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjb2a.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjb30.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjb31.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjb32.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjb33.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbac.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbad.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbae.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbaf.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbb0.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbb1.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbb2.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbb3.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbb4.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbb5.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbb6.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbb7.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbb8.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbb9.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbba.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbbb.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbbc.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbbd.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbbe.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbbf.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbc0.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbc1.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbc2.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbc3.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbc4.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbc5.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbc6.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbc7.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbc8.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbc9.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbca.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbcb.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbcc.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbcd.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbce.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbcf.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbd0.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbd1.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbd2.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbd3.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbd4.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbd5.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbd6.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbd7.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjbff.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjm00.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjm01.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjm02.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjm03.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjm04.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjm20.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjm21.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjm22.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjm23.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjm24.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjm25.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjm26.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjm27.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjm30.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjm31.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjm32.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjm33.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmac.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmad.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmae.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmaf.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmb0.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmb1.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmb2.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmb3.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmb4.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmb5.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmb6.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmb7.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmb8.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmb9.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmba.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmbb.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmbc.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmbd.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmbe.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmbf.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmc0.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmc1.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmc2.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmc3.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmc4.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmc5.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmc6.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmc7.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmc8.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmc9.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmca.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmcb.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmcc.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmcd.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmce.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmcf.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmd0.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmd1.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmd2.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmd3.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmd4.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmd5.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmd6.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmd7.pfb - RELOC/fonts/type1/public/nanumtype1/nanummjmff.pfb - RELOC/fonts/type1/public/nanumtype1/t1nanumgtb.pfb - RELOC/fonts/type1/public/nanumtype1/t1nanumgtm.pfb - RELOC/fonts/type1/public/nanumtype1/t1nanummjb.pfb - RELOC/fonts/type1/public/nanumtype1/t1nanummjm.pfb - RELOC/fonts/vf/public/nanumtype1/ts1nanumgtb.vf - RELOC/fonts/vf/public/nanumtype1/ts1nanumgtbo.vf - RELOC/fonts/vf/public/nanumtype1/ts1nanumgtm.vf - RELOC/fonts/vf/public/nanumtype1/ts1nanumgtmo.vf - RELOC/fonts/vf/public/nanumtype1/ts1nanummjb.vf - RELOC/fonts/vf/public/nanumtype1/ts1nanummjbo.vf - RELOC/fonts/vf/public/nanumtype1/ts1nanummjm.vf - RELOC/fonts/vf/public/nanumtype1/ts1nanummjmo.vf - RELOC/tex/latex/nanumtype1/c70nanumgt.fd - RELOC/tex/latex/nanumtype1/c70nanummj.fd - RELOC/tex/latex/nanumtype1/c70uhcmj.fd - RELOC/tex/latex/nanumtype1/lucnanumgt.fd - RELOC/tex/latex/nanumtype1/lucnanummj.fd - RELOC/tex/latex/nanumtype1/t1nanumgt.fd - RELOC/tex/latex/nanumtype1/t1nanummj.fd - RELOC/tex/latex/nanumtype1/ts1nanumgt.fd - RELOC/tex/latex/nanumtype1/ts1nanummj.fd -docfiles size=29 - RELOC/doc/fonts/nanumtype1/COPYING - RELOC/doc/fonts/nanumtype1/README - RELOC/doc/fonts/nanumtype1/nanum-sampler.pdf - RELOC/doc/fonts/nanumtype1/nanum-sampler.tex -catalogue-ctan /fonts/nanumtype1 -catalogue-date 2014-05-17 10:22:20 +0200 -catalogue-license ofl -catalogue-version 3.0 - -name nar -category Package -revision 38100 -shortdesc BibTeX style for Nucleic Acid Research -relocated 1 -longdesc This BibTeX bibliography style is for the journal Nucleic Acid -longdesc Research. It was adapted from the standard unsrt.bst style -longdesc file. -runfiles size=6 - RELOC/bibtex/bst/nar/nar.bst -catalogue-ctan /biblio/bibtex/contrib/misc/nar.bst -catalogue-date 2015-08-11 07:28:38 +0200 -catalogue-license other-free -catalogue-topics bibtex-sty journalpub -catalogue-version 3.19 - -name natbib -category Package -revision 20668 -shortdesc Flexible bibliography support. -relocated 1 -longdesc The bundle provides a package that implements both author-year -longdesc and numbered references, as well as much detailed of support -longdesc for other bibliography use. Also Provided are versions of the -longdesc standard BibTeX styles that are compatible with natbib-- -longdesc plainnat, unsrtnat, abbrnat. The bibliography styles produced -longdesc by custom-bib are designed from the start to be compatible with -longdesc natbib. -runfiles size=33 - RELOC/bibtex/bst/natbib/abbrvnat.bst - RELOC/bibtex/bst/natbib/plainnat.bst - RELOC/bibtex/bst/natbib/unsrtnat.bst - RELOC/tex/latex/natbib/bibentry.sty - RELOC/tex/latex/natbib/natbib.sty -docfiles size=123 - RELOC/doc/latex/natbib/README.1st - RELOC/doc/latex/natbib/README.v831b - RELOC/doc/latex/natbib/natbib.ltx - RELOC/doc/latex/natbib/natbib.pdf - RELOC/doc/latex/natbib/natnotes.pdf - RELOC/doc/latex/natbib/natnotes.tex -srcfiles size=70 - RELOC/source/latex/natbib/bibentry.drv - RELOC/source/latex/natbib/bibentry.dtx - RELOC/source/latex/natbib/bibentry.ins - RELOC/source/latex/natbib/natbib.dtx - RELOC/source/latex/natbib/natbib.ins -catalogue-ctan /macros/latex/contrib/natbib -catalogue-date 2012-01-14 11:58:21 +0100 -catalogue-license lppl -catalogue-version 8.31b - -name natded -category Package -revision 32693 -shortdesc Typeset natural deduction proofs. -relocated 1 -longdesc The package provides commands to typeset proofs in the style -longdesc used by Jaskowski, or that of Kalish and Montague. -runfiles size=4 - RELOC/tex/latex/natded/natded.sty -docfiles size=92 - RELOC/doc/latex/natded/README.md - RELOC/doc/latex/natded/extended_doc.pdf - RELOC/doc/latex/natded/extended_doc.tex - RELOC/doc/latex/natded/natded.pdf - RELOC/doc/latex/natded/natded.tex -catalogue-ctan /macros/latex/contrib/natded -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.1 - -name nath -category Package -revision 15878 -shortdesc Natural mathematics notation. -relocated 1 -longdesc Nath is a LaTeX (both 2e and 2.09) style to separate -longdesc presentation and content in mathematical typography. The style -longdesc delivers a particular context-dependent presentation on the -longdesc basis of a rather coarse context-independent notation. -longdesc Highlighted features: depending on the context, the command -longdesc \frac produces either built-up or case or solidus fractions, -longdesc with parentheses added whenever required for preservation of -longdesc the mathematical meaning; delimiters adapt their size to the -longdesc material enclosed, rendering \left and \right almost obsolete. -runfiles size=21 - RELOC/tex/latex/nath/nath.sty -docfiles size=48 - RELOC/doc/latex/nath/README - RELOC/doc/latex/nath/nathguide.pdf - RELOC/doc/latex/nath/nathguide.tex -catalogue-ctan /macros/latex/contrib/nath -catalogue-date 2012-06-16 10:11:41 +0200 -catalogue-license gpl - -name nature -category Package -revision 21819 -shortdesc Prepare papers for the journal Nature. -relocated 1 -longdesc Nature does not accept papers in LaTeX, but it does accept PDF. -longdesc This class and BibTeX style provide what seems to be necessary -longdesc to produce papers in a format acceptable to the publisher. -runfiles size=11 - RELOC/bibtex/bst/nature/naturemag.bst - RELOC/tex/latex/nature/nature.cls -docfiles size=3 - RELOC/doc/latex/nature/README - RELOC/doc/latex/nature/nature-template.tex -catalogue-ctan /macros/latex/contrib/nature -catalogue-date 2012-05-28 15:56:23 +0200 -catalogue-license lppl -catalogue-version 1.0 - -name navigator -category Package -revision 29067 -shortdesc PDF features across formats and engines. -relocated 1 -longdesc Navigator implements PDF features for all formats (with some -longdesc limitations in ConTeXt) with PDFTeX, LuaTeX and XeTeX (i.e. -longdesc xdvipdfmx). Features include: Customizable outlines (i.e. -longdesc bookmarks); Anchors; Links and actions (e.g. JavaScript or user- -longdesc defined PDF actions); File embedding (not in ConTeXt); Document -longdesc information and PDF viewer's display (not in ConTeXt); and -longdesc Commands to create and use raw PDF objects. Navigator requires -longdesc texapi and yax, both version at least 1.03. -runfiles size=8 - RELOC/tex/generic/navigator/navigator.sty - RELOC/tex/generic/navigator/navigator.tex - RELOC/tex/generic/navigator/t-navigator.tex -docfiles size=42 - RELOC/doc/generic/navigator/README - RELOC/doc/generic/navigator/navigator-doc.pdf - RELOC/doc/generic/navigator/navigator-doc.tex -catalogue-ctan /macros/generic/navigator -catalogue-date 2014-10-15 23:31:15 +0200 -catalogue-license lppl -catalogue-version 1.0 - -name ncclatex -category Package -revision 15878 -shortdesc An extended general-purpose class -relocated 1 -longdesc The ncc class provides a framework for a common class to -longdesc replace the standard article, book and report classes, and -longdesc providing a "preprint" class. The class's extensions are -longdesc provided in a number of small packages, some of which may also -longdesc be used with the standard classes. The ncclatex package also -longdesc loads many of the packages of, and requires the latest version -longdesc of the ncctools bundle. -runfiles size=30 - RELOC/tex/latex/ncclatex/cp1251-light.def - RELOC/tex/latex/ncclatex/ncc.cls - RELOC/tex/latex/ncclatex/ncc10.clo - RELOC/tex/latex/ncclatex/ncc11.clo - RELOC/tex/latex/ncclatex/ncc12.clo - RELOC/tex/latex/ncclatex/ncc14.clo - RELOC/tex/latex/ncclatex/nccart.clo - RELOC/tex/latex/ncclatex/nccbiblist.sty - RELOC/tex/latex/ncclatex/nccbook.clo - RELOC/tex/latex/ncclatex/nccdefaults.sty - RELOC/tex/latex/ncclatex/nccfit.clo - RELOC/tex/latex/ncclatex/ncchdr.sty - RELOC/tex/latex/ncclatex/nccheadings.sty - RELOC/tex/latex/ncclatex/nccindex.sty - RELOC/tex/latex/ncclatex/ncclatex.sty - RELOC/tex/latex/ncclatex/nccltrus.sty - RELOC/tex/latex/ncclatex/nccold.sty - RELOC/tex/latex/ncclatex/nccproc.cls - RELOC/tex/latex/ncclatex/nccsections.sty - RELOC/tex/latex/ncclatex/ncctheorems.sty - RELOC/tex/latex/ncclatex/ncctitle.clo - RELOC/tex/latex/ncclatex/ncctitle.sty - RELOC/tex/latex/ncclatex/ncctitlepage.sty - RELOC/tex/latex/ncclatex/sibjnm.cls -docfiles size=172 - RELOC/doc/latex/ncclatex/README - RELOC/doc/latex/ncclatex/changes.txt - RELOC/doc/latex/ncclatex/manifest.txt - RELOC/doc/latex/ncclatex/ncclatex.pdf - RELOC/doc/latex/ncclatex/ncclatex.tex - RELOC/doc/latex/ncclatex/nccnews.pdf -catalogue-ctan /macros/latex/contrib/ncclatex -catalogue-date 2012-02-25 11:15:03 +0100 -catalogue-license lppl -catalogue-version 1.5 - -name ncctools -category Package -revision 15878 -shortdesc A collection of general packages for LaTeX -relocated 1 -longdesc The NCCtools bundle contains many packages for general use -longdesc under LaTeX; many are also used by NCC LaTeX. The bundle -longdesc includes tools for: executing commands after a package is -longdesc loaded; watermarks; counter manipulation (dynamic counters, -longdesc changing counter numbering with another counter); improvements -longdesc to the description environment; hyphenation of compound words; -longdesc new levels of footnotes; space-filling patterns; "poor man's" -longdesc Black Board Bold symbols; alignment of the content of a box; -longdesc use comma as decimal separator; boxes with their own crop -longdesc marks; page cropmarks; improvements to fancy headers; float -longdesc "styles", mini floats, side floats; manually marked footnotes; -longdesc extension of amsmath; control of paragraph skip; an envelope to -longdesc the graphicx package; dashed and multiple rules; alternative -longdesc techniques for declarations of sections, captions, and toc- -longdesc entries; generalised text-stretching; generation of new theorem- -longdesc like environments; control of the text area; centred page -longdesc layouts; and un-numbered top-level section. -runfiles size=43 - RELOC/tex/latex/ncctools/afterpackage.sty - RELOC/tex/latex/ncctools/dcounter.sty - RELOC/tex/latex/ncctools/desclist.sty - RELOC/tex/latex/ncctools/extdash.sty - RELOC/tex/latex/ncctools/manyfoot.sty - RELOC/tex/latex/ncctools/mboxfill.sty - RELOC/tex/latex/ncctools/nccbbb.sty - RELOC/tex/latex/ncctools/nccboxes.sty - RELOC/tex/latex/ncctools/ncccomma.sty - RELOC/tex/latex/ncctools/ncccropbox.sty - RELOC/tex/latex/ncctools/ncccropmark.sty - RELOC/tex/latex/ncctools/nccfancyhdr.sty - RELOC/tex/latex/ncctools/nccfloats.sty - RELOC/tex/latex/ncctools/nccfoots.sty - RELOC/tex/latex/ncctools/nccmath.sty - RELOC/tex/latex/ncctools/nccparskip.sty - RELOC/tex/latex/ncctools/nccpic.sty - RELOC/tex/latex/ncctools/nccrules.sty - RELOC/tex/latex/ncctools/nccsect.sty - RELOC/tex/latex/ncctools/nccstretch.sty - RELOC/tex/latex/ncctools/nccthm.sty - RELOC/tex/latex/ncctools/textarea.sty - RELOC/tex/latex/ncctools/tocenter.sty - RELOC/tex/latex/ncctools/topsection.sty - RELOC/tex/latex/ncctools/watermark.sty -docfiles size=729 - RELOC/doc/latex/ncctools/README - RELOC/doc/latex/ncctools/README.source - RELOC/doc/latex/ncctools/afterpackage.pdf - RELOC/doc/latex/ncctools/changes.txt - RELOC/doc/latex/ncctools/dcounter.pdf - RELOC/doc/latex/ncctools/desclist.pdf - RELOC/doc/latex/ncctools/extdash.pdf - RELOC/doc/latex/ncctools/manifest.txt - RELOC/doc/latex/ncctools/manyfoot.pdf - RELOC/doc/latex/ncctools/mboxfill.pdf - RELOC/doc/latex/ncctools/nccbbb.pdf - RELOC/doc/latex/ncctools/nccboxes.pdf - RELOC/doc/latex/ncctools/ncccomma.pdf - RELOC/doc/latex/ncctools/ncccropbox.pdf - RELOC/doc/latex/ncctools/ncccropmark.pdf - RELOC/doc/latex/ncctools/nccfancyhdr.pdf - RELOC/doc/latex/ncctools/nccfloats.pdf - RELOC/doc/latex/ncctools/nccfoots.pdf - RELOC/doc/latex/ncctools/nccmath.pdf - RELOC/doc/latex/ncctools/nccparskip.pdf - RELOC/doc/latex/ncctools/nccpic.pdf - RELOC/doc/latex/ncctools/nccrules.pdf - RELOC/doc/latex/ncctools/nccsect.pdf - RELOC/doc/latex/ncctools/nccstretch.pdf - RELOC/doc/latex/ncctools/nccthm.pdf - RELOC/doc/latex/ncctools/ncctools.pdf - RELOC/doc/latex/ncctools/ncctools.tex - RELOC/doc/latex/ncctools/textarea.pdf - RELOC/doc/latex/ncctools/tocenter.pdf - RELOC/doc/latex/ncctools/topsection.pdf - RELOC/doc/latex/ncctools/watermark.pdf -srcfiles size=120 - RELOC/source/latex/ncctools/afterpackage.dtx - RELOC/source/latex/ncctools/dcounter.dtx - RELOC/source/latex/ncctools/desclist.dtx - RELOC/source/latex/ncctools/extdash.dtx - RELOC/source/latex/ncctools/manyfoot.dtx - RELOC/source/latex/ncctools/mboxfill.dtx - RELOC/source/latex/ncctools/nccbbb.dtx - RELOC/source/latex/ncctools/nccboxes.dtx - RELOC/source/latex/ncctools/ncccomma.dtx - RELOC/source/latex/ncctools/ncccropbox.dtx - RELOC/source/latex/ncctools/ncccropmark.dtx - RELOC/source/latex/ncctools/nccfancyhdr.dtx - RELOC/source/latex/ncctools/nccfloats.dtx - RELOC/source/latex/ncctools/nccfoots.dtx - RELOC/source/latex/ncctools/nccmath.dtx - RELOC/source/latex/ncctools/nccparskip.dtx - RELOC/source/latex/ncctools/nccpic.dtx - RELOC/source/latex/ncctools/nccrules.dtx - RELOC/source/latex/ncctools/nccsect.dtx - RELOC/source/latex/ncctools/nccstretch.dtx - RELOC/source/latex/ncctools/nccthm.dtx - RELOC/source/latex/ncctools/ncctools.ins - RELOC/source/latex/ncctools/textarea.dtx - RELOC/source/latex/ncctools/tocenter.dtx - RELOC/source/latex/ncctools/topsection.dtx - RELOC/source/latex/ncctools/watermark.dtx -catalogue-ctan /macros/latex/contrib/ncctools -catalogue-date 2014-10-15 23:31:15 +0200 -catalogue-license lppl -catalogue-version 3.5 - -name ncntrsbk -category Package -revision 31835 -catalogue urw-base35 -shortdesc URW "Base 35" font pack for LaTeX. -relocated 1 -longdesc A set of fonts for use as "drop-in" replacements for Adobe's -longdesc basic set, comprising: Century Schoolbook (substituting for -longdesc Adobe's New Century Schoolbook); Dingbats (substituting for -longdesc Adobe's Zapf Dingbats); Nimbus Mono L (substituting for Abobe's -longdesc Courier); Nimbus Roman No9 L (substituting for Adobe's Times); -longdesc Nimbus Sans L (substituting for Adobe's Helvetica); Standard -longdesc Symbols L (substituting for Adobe's Symbol); URW Bookman; URW -longdesc Chancery L Medium Italic (substituting for Adobe's Zapf -longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant -longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). -execute addMap unc.map -runfiles size=305 - RELOC/dvips/ncntrsbk/config.unc - RELOC/fonts/afm/adobe/ncntrsbk/pncb8a.afm - RELOC/fonts/afm/adobe/ncntrsbk/pncbi8a.afm - RELOC/fonts/afm/adobe/ncntrsbk/pncr8a.afm - RELOC/fonts/afm/adobe/ncntrsbk/pncri8a.afm - RELOC/fonts/afm/urw/ncntrsbk/uncb8a.afm - RELOC/fonts/afm/urw/ncntrsbk/uncbi8a.afm - RELOC/fonts/afm/urw/ncntrsbk/uncr8a.afm - RELOC/fonts/afm/urw/ncntrsbk/uncri8a.afm - RELOC/fonts/map/dvips/ncntrsbk/unc.map - RELOC/fonts/tfm/adobe/ncntrsbk/pncb.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncb7t.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncb8c.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncb8r.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncb8t.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncbc.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncbc7t.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncbc8t.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncbi.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncbi7t.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncbi8c.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncbi8r.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncbi8t.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncbo.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncbo7t.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncbo8c.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncbo8r.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncbo8t.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncr.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncr7t.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncr8c.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncr8r.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncr8t.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncrc.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncrc7t.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncrc8t.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncri.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncri7t.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncri8c.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncri8r.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncri8t.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncro.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncro7t.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncro8c.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncro8r.tfm - RELOC/fonts/tfm/adobe/ncntrsbk/pncro8t.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncb7t.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncb8c.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncb8r.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncb8t.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbc7t.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbc8t.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbi7t.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbi8c.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbi8r.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbi8t.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbo7t.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbo8c.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbo8r.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbo8t.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncr7t.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncr8c.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncr8r.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncr8t.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncrc7t.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncrc8t.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncri7t.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncri8c.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncri8r.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncri8t.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncro7t.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncro8c.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncro8r.tfm - RELOC/fonts/tfm/urw35vf/ncntrsbk/uncro8t.tfm - RELOC/fonts/type1/urw/ncntrsbk/uncb8a.pfb - RELOC/fonts/type1/urw/ncntrsbk/uncb8a.pfm - RELOC/fonts/type1/urw/ncntrsbk/uncbi8a.pfb - RELOC/fonts/type1/urw/ncntrsbk/uncbi8a.pfm - RELOC/fonts/type1/urw/ncntrsbk/uncr8a.pfb - RELOC/fonts/type1/urw/ncntrsbk/uncr8a.pfm - RELOC/fonts/type1/urw/ncntrsbk/uncri8a.pfb - RELOC/fonts/type1/urw/ncntrsbk/uncri8a.pfm - RELOC/fonts/vf/adobe/ncntrsbk/pncb.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncb7t.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncb8c.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncb8t.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncbc.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncbc7t.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncbc8t.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncbi.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncbi7t.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncbi8c.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncbi8t.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncbo.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncbo7t.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncbo8c.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncbo8t.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncr.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncr7t.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncr8c.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncr8t.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncrc.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncrc7t.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncrc8t.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncri.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncri7t.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncri8c.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncri8t.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncro.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncro7t.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncro8c.vf - RELOC/fonts/vf/adobe/ncntrsbk/pncro8t.vf - RELOC/fonts/vf/urw35vf/ncntrsbk/uncb7t.vf - RELOC/fonts/vf/urw35vf/ncntrsbk/uncb8c.vf - RELOC/fonts/vf/urw35vf/ncntrsbk/uncb8t.vf - RELOC/fonts/vf/urw35vf/ncntrsbk/uncbc7t.vf - RELOC/fonts/vf/urw35vf/ncntrsbk/uncbc8t.vf - RELOC/fonts/vf/urw35vf/ncntrsbk/uncbi7t.vf - RELOC/fonts/vf/urw35vf/ncntrsbk/uncbi8c.vf - RELOC/fonts/vf/urw35vf/ncntrsbk/uncbi8t.vf - RELOC/fonts/vf/urw35vf/ncntrsbk/uncbo7t.vf - RELOC/fonts/vf/urw35vf/ncntrsbk/uncbo8c.vf - RELOC/fonts/vf/urw35vf/ncntrsbk/uncbo8t.vf - RELOC/fonts/vf/urw35vf/ncntrsbk/uncr7t.vf - RELOC/fonts/vf/urw35vf/ncntrsbk/uncr8c.vf - RELOC/fonts/vf/urw35vf/ncntrsbk/uncr8t.vf - RELOC/fonts/vf/urw35vf/ncntrsbk/uncrc7t.vf - RELOC/fonts/vf/urw35vf/ncntrsbk/uncrc8t.vf - RELOC/fonts/vf/urw35vf/ncntrsbk/uncri7t.vf - RELOC/fonts/vf/urw35vf/ncntrsbk/uncri8c.vf - RELOC/fonts/vf/urw35vf/ncntrsbk/uncri8t.vf - RELOC/fonts/vf/urw35vf/ncntrsbk/uncro7t.vf - RELOC/fonts/vf/urw35vf/ncntrsbk/uncro8c.vf - RELOC/fonts/vf/urw35vf/ncntrsbk/uncro8t.vf - RELOC/tex/latex/ncntrsbk/8runc.fd - RELOC/tex/latex/ncntrsbk/omlunc.fd - RELOC/tex/latex/ncntrsbk/omsunc.fd - RELOC/tex/latex/ncntrsbk/ot1unc.fd - RELOC/tex/latex/ncntrsbk/t1unc.fd - RELOC/tex/latex/ncntrsbk/ts1unc.fd -catalogue-ctan /fonts/urw/base35 -catalogue-date 2014-06-07 20:47:53 +0200 -catalogue-license gpl - -name nddiss -category Package -revision 29349 -shortdesc Notre Dame Dissertation format class. -relocated 1 -longdesc This class file conforms to the requirements of the Graduate -longdesc School of the University of Notre Dame; with it a user can -longdesc format a thesis or dissertation in LaTeX. -runfiles size=13 - RELOC/bibtex/bst/nddiss/nddiss2e.bst - RELOC/tex/latex/nddiss/nddiss2e.cls -docfiles size=142 - RELOC/doc/latex/nddiss/ReadMe.1st.txt - RELOC/doc/latex/nddiss/example-v1.3/LICENSE - RELOC/doc/latex/nddiss/example-v1.3/README.1st.txt - RELOC/doc/latex/nddiss/example-v1.3/README.orig - RELOC/doc/latex/nddiss/example-v1.3/VERSION - RELOC/doc/latex/nddiss/example-v1.3/appendix.tex - RELOC/doc/latex/nddiss/example-v1.3/chapter1.tex - RELOC/doc/latex/nddiss/example-v1.3/chapter2.tex - RELOC/doc/latex/nddiss/example-v1.3/example.bib - RELOC/doc/latex/nddiss/example-v1.3/example.pdf - RELOC/doc/latex/nddiss/example-v1.3/example.tex - RELOC/doc/latex/nddiss/example-v1.3/makefile - RELOC/doc/latex/nddiss/example-v1.3/makefile.chapterbib - RELOC/doc/latex/nddiss/example-v1.3/sample_nd.eps - RELOC/doc/latex/nddiss/example-v1.3/sample_nd.pdf - RELOC/doc/latex/nddiss/ltxdoc.cfg - RELOC/doc/latex/nddiss/nddiss2e.pdf - RELOC/doc/latex/nddiss/process.sh - RELOC/doc/latex/nddiss/template.tex -srcfiles size=20 - RELOC/source/latex/nddiss/nddiss2e.dtx - RELOC/source/latex/nddiss/nddiss2e.ins -catalogue-ctan /macros/latex/contrib/nddiss -catalogue-date 2012-07-17 16:43:33 +0200 -catalogue-license lppl -catalogue-version 3.0 - -name ndsu-thesis -category Package -revision 37996 -shortdesc North Dakota State University disquisition class. -relocated 1 -longdesc A class for generating disquisitions, intended to be in -longdesc compliance with North Dakota State University requirements. -runfiles size=3 - RELOC/tex/latex/ndsu-thesis/ndsu-thesis.cls -docfiles size=37 - RELOC/doc/latex/ndsu-thesis/README - RELOC/doc/latex/ndsu-thesis/ndsu-thesis.pdf - RELOC/doc/latex/ndsu-thesis/ndsu-thesis.tex -catalogue-ctan /macros/latex/contrib/ndsu-thesis -catalogue-date 2015-07-29 19:07:40 +0200 -catalogue-license lppl1.3 -catalogue-topics dissertation class - -name needspace -category Package -revision 29601 -shortdesc Insert pagebreak if not enough space. -relocated 1 -longdesc Provides commands to disable pagebreaking within a given -longdesc vertical space. If there is not enough space between the -longdesc command and the bottom of the page, a new page will be started. -runfiles size=1 - RELOC/tex/latex/needspace/needspace.sty -docfiles size=40 - RELOC/doc/latex/needspace/README - RELOC/doc/latex/needspace/needspace.pdf -srcfiles size=3 - RELOC/source/latex/needspace/needspace.ins - RELOC/source/latex/needspace/needspace.tex -catalogue-ctan /macros/latex/contrib/needspace -catalogue-date 2013-04-02 13:01:06 +0200 -catalogue-license lppl -catalogue-version 1.3d - -name nestquot -category Package -revision 27323 -shortdesc Alternate quotes between double and single with nesting. -relocated 1 -longdesc Provides two new commands: \nlq and \nrq for nesting left and -longdesc right quotes that properly change between double and single -longdesc quotes according to their nesting level. For example, the input -longdesc \nlq Foo \nlq bar\nrq\ bletch\nrq will be typeset as if it had -longdesc been entered as "Foo 'bar' bletch". -runfiles size=1 - RELOC/tex/latex/nestquot/nestquot.sty -catalogue-ctan /macros/latex/contrib/nestquot -catalogue-date 2012-08-13 12:34:19 +0200 -catalogue-license other-free - -name neuralnetwork -category Package -revision 31500 -shortdesc Graph-drawing for neural networks. -relocated 1 -longdesc The package provides facilities for graph-drawing, with -longdesc facilities designed for neural network diagrams. -runfiles size=3 - RELOC/tex/latex/neuralnetwork/neuralnetwork.sty -docfiles size=163 - RELOC/doc/latex/neuralnetwork/examples/neural-networks-ebook.pdf - RELOC/doc/latex/neuralnetwork/examples/neuralnetwork.pdf - RELOC/doc/latex/neuralnetwork/examples/neuralnetwork.tex - RELOC/doc/latex/neuralnetwork/examples/xor.pdf - RELOC/doc/latex/neuralnetwork/examples/xor.tex -catalogue-ctan /graphics/pgf/contrib/neuralnetwork -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license gpl -catalogue-version 1.0 - -name nevelok -category Package -revision 38353 -shortdesc LaTeX package for automatic definite articles for Hungarian -relocated 1 -longdesc LaTeX package for automatic definite articles for Hungarian -runfiles size=1 - RELOC/tex/latex/nevelok/nevelok.sty -docfiles size=47 - RELOC/doc/latex/nevelok/README.md - RELOC/doc/latex/nevelok/nevelok.pdf -srcfiles size=4 - RELOC/source/latex/nevelok/nevelok.dtx - RELOC/source/latex/nevelok/nevelok.ins -catalogue-ctan /macros/latex/contrib/nevelok -catalogue-date 2015-09-10 22:18:39 +0200 -catalogue-license lppl1.3 -catalogue-topics hungarian -catalogue-version 1.00 - -name newcommand -category Package -revision 18704 -shortdesc Generate new LaTeX command definitions. -relocated 1 -longdesc Generating any other than the simple \newcommand-style -longdesc commands, in LaTeX, is tedious (in the least). This script -longdesc allows the specification of commands in a 'natural' style; the -longdesc script then generates macros to define the command. -docfiles size=117 - RELOC/doc/latex/newcommand/README - RELOC/doc/latex/newcommand/newcommand.pdf - RELOC/doc/latex/newcommand/newcommand.py - RELOC/doc/latex/newcommand/newcommand.tex - RELOC/doc/latex/newcommand/spark.py -catalogue-ctan /support/newcommand -catalogue-date 2012-06-06 18:43:10 +0200 -catalogue-license lppl -catalogue-version 2.0 - -name newenviron -category Package -revision 29331 -shortdesc Processing an environment's body. -relocated 1 -longdesc The package offers tools for collecting and executing an -longdesc environment's body. -runfiles size=2 - RELOC/tex/latex/newenviron/newenviron.sty -docfiles size=2 - RELOC/doc/latex/newenviron/README - RELOC/doc/latex/newenviron/newenviron-examples.tex -catalogue-ctan /macros/latex/contrib/newenviron -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0 - -name newfile -category Package -revision 15878 -shortdesc User level management of LaTeX input and output. -relocated 1 -longdesc Commands are defined to manage the limited pool of input and -longdesc output handles provided by TeX. The streams so provided are -longdesc mapped to various of the LaTeX input and output mechanisms. -longdesc Some facilities of the verbatim package are also mapped. -runfiles size=2 - RELOC/tex/latex/newfile/newfile.sty -docfiles size=43 - RELOC/doc/latex/newfile/README - RELOC/doc/latex/newfile/newfile.pdf -srcfiles size=10 - RELOC/source/latex/newfile/newfile.dtx - RELOC/source/latex/newfile/newfile.ins -catalogue-ctan /macros/latex/contrib/newfile -catalogue-date 2012-06-25 23:32:47 +0200 -catalogue-license lppl -catalogue-version 1.0c - -name newlfm -category Package -revision 15878 -shortdesc Write letters, facsimiles, and memos. -relocated 1 -longdesc Integrates the letter class with fancyhdr and geometry to -longdesc automatically make letterhead stationery. Useful for writing -longdesc letters, fax, and memos. You can set up an address book using -longdesc 'wrapper' macros. You put all the information for a person into -longdesc a wrapper and then put the wrapper in a document. The class -longdesc handles letterheads automatically. You place the object for the -longdesc letterhead (picture, information, etc.) in a box and all sizing -longdesc is set automatically. -runfiles size=33 - RELOC/tex/latex/newlfm/addrset.sty - RELOC/tex/latex/newlfm/newlfm.cls - RELOC/tex/latex/newlfm/setdim.sty -docfiles size=298 - RELOC/doc/latex/newlfm/README - RELOC/doc/latex/newlfm/chk1.tex - RELOC/doc/latex/newlfm/demoa.tex - RELOC/doc/latex/newlfm/draft.eps - RELOC/doc/latex/newlfm/draft.pdf - RELOC/doc/latex/newlfm/extracd.tex - RELOC/doc/latex/newlfm/hletrinf.tex - RELOC/doc/latex/newlfm/letrinfo.tex - RELOC/doc/latex/newlfm/lvb.eps - RELOC/doc/latex/newlfm/lvb.pdf - RELOC/doc/latex/newlfm/make_clean - RELOC/doc/latex/newlfm/make_unix - RELOC/doc/latex/newlfm/make_win.bat - RELOC/doc/latex/newlfm/makeclean_win.bat - RELOC/doc/latex/newlfm/manual.pdf - RELOC/doc/latex/newlfm/mintrx.bat - RELOC/doc/latex/newlfm/newlfm.pdf - RELOC/doc/latex/newlfm/newlfm.txt - RELOC/doc/latex/newlfm/palm.eps - RELOC/doc/latex/newlfm/palm.pdf - RELOC/doc/latex/newlfm/problems.tex - RELOC/doc/latex/newlfm/prx.bat - RELOC/doc/latex/newlfm/setup.bat - RELOC/doc/latex/newlfm/sfaxpage.tex - RELOC/doc/latex/newlfm/smemosec.tex - RELOC/doc/latex/newlfm/sprsrls.tex - RELOC/doc/latex/newlfm/test1.tex - RELOC/doc/latex/newlfm/test10.tex - RELOC/doc/latex/newlfm/test11.tex - RELOC/doc/latex/newlfm/test12.tex - RELOC/doc/latex/newlfm/test1alt.tex - RELOC/doc/latex/newlfm/test2.tex - RELOC/doc/latex/newlfm/test2a.tex - RELOC/doc/latex/newlfm/test2alt.tex - RELOC/doc/latex/newlfm/test3.tex - RELOC/doc/latex/newlfm/test3alt.tex - RELOC/doc/latex/newlfm/test4.tex - RELOC/doc/latex/newlfm/test4alt.tex - RELOC/doc/latex/newlfm/test5.tex - RELOC/doc/latex/newlfm/test5alt.tex - RELOC/doc/latex/newlfm/test6.tex - RELOC/doc/latex/newlfm/test6alt.tex - RELOC/doc/latex/newlfm/test7.tex - RELOC/doc/latex/newlfm/test7alt.tex - RELOC/doc/latex/newlfm/test8.tex - RELOC/doc/latex/newlfm/test8alt.tex - RELOC/doc/latex/newlfm/test9.tex - RELOC/doc/latex/newlfm/testms.pdf - RELOC/doc/latex/newlfm/wine.eps - RELOC/doc/latex/newlfm/wine.pdf -srcfiles size=60 - RELOC/source/latex/newlfm/newlfm.dtx - RELOC/source/latex/newlfm/newlfm.ins -catalogue-ctan /macros/latex/contrib/newlfm -catalogue-date 2014-09-12 15:37:42 +0200 -catalogue-license gpl -catalogue-version 9.4 - -name newpx -category Package -revision 38086 -shortdesc Alternative uses of the PX fonts, with improved metrics -relocated 1 -longdesc This package, initially based on pxfonts, provides many fixes -longdesc and enhancements to that package, and splits it in two parts -longdesc (newpxtext and newpxmath) which may be run independently of one -longdesc another. It provides scaling, improved metrics, and other -longdesc options. For proper operation, the packages require that the -longdesc packages newtxmath, pxfonts, and TeXGyrePagella be installed -longdesc and their map files enabled. -execute addMap newpx.map -runfiles size=1232 - RELOC/fonts/afm/public/newpx/zplb.afm - RELOC/fonts/afm/public/newpx/zplbi.afm - RELOC/fonts/afm/public/newpx/zplr.afm - RELOC/fonts/afm/public/newpx/zplri.afm - RELOC/fonts/enc/dvips/newpx/ecsups.enc - RELOC/fonts/enc/dvips/newpx/ot1sups.enc - RELOC/fonts/enc/dvips/newpx/texnansxsups.enc - RELOC/fonts/enc/dvips/newpx/tgpdiff.enc - RELOC/fonts/map/dvips/newpx/newpx.map - RELOC/fonts/map/dvips/newpx/newpxtext.map - RELOC/fonts/opentype/public/newpx/TeXGyrePagellaX-Bold.otf - RELOC/fonts/opentype/public/newpx/TeXGyrePagellaX-BoldItalic.otf - RELOC/fonts/opentype/public/newpx/TeXGyrePagellaX-Italic.otf - RELOC/fonts/opentype/public/newpx/TeXGyrePagellaX-Regular.otf - RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-sc-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-sc-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-sc-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-scl-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-scl-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-scl-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-sc-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-sc-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-sc-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-scl-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-scl-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-scl-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-sc-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-scl-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-scl-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-scl-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-sc-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-scl-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-scl-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-scl-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-scl-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-scl-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-scl-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-scl-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-scl-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-scl-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-scl-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-scl-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-scl-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-scl-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-scl-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-scl-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-sc-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-sc-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-sc-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-scl-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-scl-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-scl-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-sc-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-sc-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-sc-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-scl-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-scl-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-scl-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-th-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-th-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-th-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-sc-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-scl-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-scl-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-scl-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-th-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-th-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-th-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-sc-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-scl-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-scl-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-scl-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-sc-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-sc-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-sc-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-scl-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-scl-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-scl-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-sc-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-sc-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-sc-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-scl-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-scl-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-scl-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-sc-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-sc-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-sc-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-scl-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-scl-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-scl-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-sc-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-sc-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-sc-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-scl-ly1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-scl-ot1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-scl-t1.tfm - RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-t1.tfm - RELOC/fonts/tfm/public/newpx/zplb-x.tfm - RELOC/fonts/tfm/public/newpx/zplbexa.tfm - RELOC/fonts/tfm/public/newpx/zplbexx.tfm - RELOC/fonts/tfm/public/newpx/zplbmi.tfm - RELOC/fonts/tfm/public/newpx/zplbmi1.tfm - RELOC/fonts/tfm/public/newpx/zplbmia.tfm - RELOC/fonts/tfm/public/newpx/zplbsy.tfm - RELOC/fonts/tfm/public/newpx/zplbsyc.tfm - RELOC/fonts/tfm/public/newpx/zplbsym.tfm - RELOC/fonts/tfm/public/newpx/zplexa.tfm - RELOC/fonts/tfm/public/newpx/zplexx.tfm - RELOC/fonts/tfm/public/newpx/zplmi.tfm - RELOC/fonts/tfm/public/newpx/zplmi1.tfm - RELOC/fonts/tfm/public/newpx/zplmia.tfm - RELOC/fonts/tfm/public/newpx/zplr-x.tfm - RELOC/fonts/tfm/public/newpx/zplsups-Bold-ly1.tfm - RELOC/fonts/tfm/public/newpx/zplsups-Bold-ot1.tfm - RELOC/fonts/tfm/public/newpx/zplsups-Bold-t1.tfm - RELOC/fonts/tfm/public/newpx/zplsups-BoldItalic-ly1.tfm - RELOC/fonts/tfm/public/newpx/zplsups-BoldItalic-ot1.tfm - RELOC/fonts/tfm/public/newpx/zplsups-BoldItalic-t1.tfm - RELOC/fonts/tfm/public/newpx/zplsups-Italic-ly1.tfm - RELOC/fonts/tfm/public/newpx/zplsups-Italic-ot1.tfm - RELOC/fonts/tfm/public/newpx/zplsups-Italic-t1.tfm - RELOC/fonts/tfm/public/newpx/zplsups-Regular-ly1.tfm - RELOC/fonts/tfm/public/newpx/zplsups-Regular-ot1.tfm - RELOC/fonts/tfm/public/newpx/zplsups-Regular-t1.tfm - RELOC/fonts/tfm/public/newpx/zplsy.tfm - RELOC/fonts/tfm/public/newpx/zplsyc.tfm - RELOC/fonts/tfm/public/newpx/zplsym.tfm - RELOC/fonts/type1/public/newpx/zplb.pfb - RELOC/fonts/type1/public/newpx/zplbi.pfb - RELOC/fonts/type1/public/newpx/zplr.pfb - RELOC/fonts/type1/public/newpx/zplri.pfb - RELOC/fonts/type1/public/newpx/zplx-bold.pfb - RELOC/fonts/type1/public/newpx/zplx-regular.pfb - RELOC/fonts/vf/public/newpx/zpl-Bold-lf-scl-ly1.vf - RELOC/fonts/vf/public/newpx/zpl-Bold-lf-scl-ot1.vf - RELOC/fonts/vf/public/newpx/zpl-Bold-lf-scl-t1.vf - RELOC/fonts/vf/public/newpx/zpl-Bold-osf-scl-ly1.vf - RELOC/fonts/vf/public/newpx/zpl-Bold-osf-scl-ot1.vf - RELOC/fonts/vf/public/newpx/zpl-Bold-osf-scl-t1.vf - RELOC/fonts/vf/public/newpx/zpl-Bold-tlf-scl-ly1.vf - RELOC/fonts/vf/public/newpx/zpl-Bold-tlf-scl-ot1.vf - RELOC/fonts/vf/public/newpx/zpl-Bold-tlf-scl-t1.vf - RELOC/fonts/vf/public/newpx/zpl-Bold-tosf-scl-ly1.vf - RELOC/fonts/vf/public/newpx/zpl-Bold-tosf-scl-ot1.vf - RELOC/fonts/vf/public/newpx/zpl-Bold-tosf-scl-t1.vf - RELOC/fonts/vf/public/newpx/zpl-BoldItalic-lf-scl-ly1.vf - RELOC/fonts/vf/public/newpx/zpl-BoldItalic-lf-scl-ot1.vf - RELOC/fonts/vf/public/newpx/zpl-BoldItalic-lf-scl-t1.vf - RELOC/fonts/vf/public/newpx/zpl-BoldItalic-osf-scl-ly1.vf - RELOC/fonts/vf/public/newpx/zpl-BoldItalic-osf-scl-ot1.vf - RELOC/fonts/vf/public/newpx/zpl-BoldItalic-osf-scl-t1.vf - RELOC/fonts/vf/public/newpx/zpl-BoldItalic-tlf-scl-ly1.vf - RELOC/fonts/vf/public/newpx/zpl-BoldItalic-tlf-scl-ot1.vf - RELOC/fonts/vf/public/newpx/zpl-BoldItalic-tlf-scl-t1.vf - RELOC/fonts/vf/public/newpx/zpl-BoldItalic-tosf-scl-ly1.vf - RELOC/fonts/vf/public/newpx/zpl-BoldItalic-tosf-scl-ot1.vf - RELOC/fonts/vf/public/newpx/zpl-BoldItalic-tosf-scl-t1.vf - RELOC/fonts/vf/public/newpx/zpl-Italic-lf-scl-ly1.vf - RELOC/fonts/vf/public/newpx/zpl-Italic-lf-scl-ot1.vf - RELOC/fonts/vf/public/newpx/zpl-Italic-lf-scl-t1.vf - RELOC/fonts/vf/public/newpx/zpl-Italic-osf-scl-ly1.vf - RELOC/fonts/vf/public/newpx/zpl-Italic-osf-scl-ot1.vf - RELOC/fonts/vf/public/newpx/zpl-Italic-osf-scl-t1.vf - RELOC/fonts/vf/public/newpx/zpl-Italic-tlf-scl-ly1.vf - RELOC/fonts/vf/public/newpx/zpl-Italic-tlf-scl-ot1.vf - RELOC/fonts/vf/public/newpx/zpl-Italic-tlf-scl-t1.vf - RELOC/fonts/vf/public/newpx/zpl-Italic-tosf-scl-ly1.vf - RELOC/fonts/vf/public/newpx/zpl-Italic-tosf-scl-ot1.vf - RELOC/fonts/vf/public/newpx/zpl-Italic-tosf-scl-t1.vf - RELOC/fonts/vf/public/newpx/zpl-Regular-lf-scl-ly1.vf - RELOC/fonts/vf/public/newpx/zpl-Regular-lf-scl-ot1.vf - RELOC/fonts/vf/public/newpx/zpl-Regular-lf-scl-t1.vf - RELOC/fonts/vf/public/newpx/zpl-Regular-osf-scl-ly1.vf - RELOC/fonts/vf/public/newpx/zpl-Regular-osf-scl-ot1.vf - RELOC/fonts/vf/public/newpx/zpl-Regular-osf-scl-t1.vf - RELOC/fonts/vf/public/newpx/zpl-Regular-tlf-scl-ly1.vf - RELOC/fonts/vf/public/newpx/zpl-Regular-tlf-scl-ot1.vf - RELOC/fonts/vf/public/newpx/zpl-Regular-tlf-scl-t1.vf - RELOC/fonts/vf/public/newpx/zpl-Regular-tosf-scl-ly1.vf - RELOC/fonts/vf/public/newpx/zpl-Regular-tosf-scl-ot1.vf - RELOC/fonts/vf/public/newpx/zpl-Regular-tosf-scl-t1.vf - RELOC/fonts/vf/public/newpx/zplbexa.vf - RELOC/fonts/vf/public/newpx/zplbexx.vf - RELOC/fonts/vf/public/newpx/zplbmi.vf - RELOC/fonts/vf/public/newpx/zplbmi1.vf - RELOC/fonts/vf/public/newpx/zplbmia.vf - RELOC/fonts/vf/public/newpx/zplbsy.vf - RELOC/fonts/vf/public/newpx/zplbsyc.vf - RELOC/fonts/vf/public/newpx/zplbsym.vf - RELOC/fonts/vf/public/newpx/zplexa.vf - RELOC/fonts/vf/public/newpx/zplexx.vf - RELOC/fonts/vf/public/newpx/zplmi.vf - RELOC/fonts/vf/public/newpx/zplmi1.vf - RELOC/fonts/vf/public/newpx/zplmia.vf - RELOC/fonts/vf/public/newpx/zplsy.vf - RELOC/fonts/vf/public/newpx/zplsyc.vf - RELOC/fonts/vf/public/newpx/zplsym.vf - RELOC/tex/latex/newpx/TeXGyrePagellaX.fontspec - RELOC/tex/latex/newpx/ly1npxtt.fd - RELOC/tex/latex/newpx/ly1zpllf.fd - RELOC/tex/latex/newpx/ly1zplosf.fd - RELOC/tex/latex/newpx/ly1zplsups.fd - RELOC/tex/latex/newpx/ly1zpltlf.fd - RELOC/tex/latex/newpx/ly1zpltosf.fd - RELOC/tex/latex/newpx/newpxmath.sty - RELOC/tex/latex/newpx/newpxtext.sty - RELOC/tex/latex/newpx/omlnpxmi.fd - RELOC/tex/latex/newpx/omsnpxsy.fd - RELOC/tex/latex/newpx/ot1npxtt.fd - RELOC/tex/latex/newpx/ot1zpllf.fd - RELOC/tex/latex/newpx/ot1zplosf.fd - RELOC/tex/latex/newpx/ot1zplsups.fd - RELOC/tex/latex/newpx/ot1zpltlf.fd - RELOC/tex/latex/newpx/ot1zpltosf.fd - RELOC/tex/latex/newpx/t1npxtt.fd - RELOC/tex/latex/newpx/t1zpllf.fd - RELOC/tex/latex/newpx/t1zplosf.fd - RELOC/tex/latex/newpx/t1zplsups.fd - RELOC/tex/latex/newpx/t1zpltlf.fd - RELOC/tex/latex/newpx/t1zpltosf.fd - RELOC/tex/latex/newpx/ts1npxtt.fd - RELOC/tex/latex/newpx/ts1zpllf.fd - RELOC/tex/latex/newpx/ts1zplosf.fd - RELOC/tex/latex/newpx/ts1zpltlf.fd - RELOC/tex/latex/newpx/ts1zpltosf.fd - RELOC/tex/latex/newpx/unpxexa.fd - RELOC/tex/latex/newpx/unpxmia.fd - RELOC/tex/latex/newpx/unpxss.fd - RELOC/tex/latex/newpx/unpxsyc.fd - RELOC/tex/latex/newpx/unpxsym.fd - RELOC/tex/latex/newpx/unpxtt.fd -docfiles size=69 - RELOC/doc/fonts/newpx/MANIFEST-newpx.txt - RELOC/doc/fonts/newpx/README - RELOC/doc/fonts/newpx/newpxdoc.pdf - RELOC/doc/fonts/newpx/newpxdoc.tex - RELOC/doc/fonts/newpx/newpxeg-crop.pdf - RELOC/doc/fonts/newpx/pxfontseg-crop.pdf -catalogue-also pxfonts -catalogue-ctan /fonts/newpx -catalogue-date 2015-08-09 07:49:24 +0200 -catalogue-license lppl -catalogue-topics font-maths font font-type1 font-otf -catalogue-version 1.293 - -name newsletr -category Package -revision 15878 -shortdesc Macros for making newsletters with Plain TeX. -relocated 1 -runfiles size=14 - RELOC/tex/plain/newsletr/newsletr.tex -docfiles size=53 - RELOC/doc/plain/newsletr/italic.tex - RELOC/doc/plain/newsletr/lodriver.tex - RELOC/doc/plain/newsletr/losample.tex - RELOC/doc/plain/newsletr/newsletr.txt - RELOC/doc/plain/newsletr/newssamp.pdf - RELOC/doc/plain/newsletr/newssamp.tex - RELOC/doc/plain/newsletr/quote.tex - RELOC/doc/plain/newsletr/read.me - RELOC/doc/plain/newsletr/sample.pdf -catalogue-ctan /macros/plain/contrib/newsletr -catalogue-date 2012-07-17 17:50:51 +0200 -catalogue-license other-free - -name newspaper -category Package -revision 15878 -shortdesc Typeset newsletters to resemble newspapers. -relocated 1 -longdesc The newspaper package redefines the page style and \maketitle -longdesc command to produce a typeset page similar to that of a -longdesc newspaper. It also provides several commands that (when used -longdesc with other packages) simplify the writing of articles in a -longdesc newspaper-style column format. -runfiles size=1 - RELOC/tex/latex/newspaper/newspaper.sty -docfiles size=71 - RELOC/doc/latex/newspaper/Figure1.pdf - RELOC/doc/latex/newspaper/Figure2.pdf - RELOC/doc/latex/newspaper/README - RELOC/doc/latex/newspaper/atom.jpg - RELOC/doc/latex/newspaper/newspaper.pdf - RELOC/doc/latex/newspaper/newspaperExample.tex -srcfiles size=5 - RELOC/source/latex/newspaper/newspaper.dtx -catalogue-ctan /macros/latex/contrib/newspaper -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 - -name newtxsf -category Package -revision 37772 -shortdesc Sans-math fonts for use with newtx -relocated 1 -longdesc The package provides a maths support that amounts to -longdesc modifications of the STIX sans serif Roman and Greek letters -longdesc with most symbols taken from newtxmath (which must of course be -longdesc installed and its map file enabled). -execute addMap newtxsf.map -runfiles size=58 - RELOC/fonts/map/dvips/newtxsf/newtxsf.map - RELOC/fonts/tfm/public/newtxsf/ntxsfbmi.tfm - RELOC/fonts/tfm/public/newtxsf/ntxsfbmia.tfm - RELOC/fonts/tfm/public/newtxsf/ntxsfmi.tfm - RELOC/fonts/tfm/public/newtxsf/ntxsfmia.tfm - RELOC/fonts/tfm/public/newtxsf/zsfmi-bol.tfm - RELOC/fonts/tfm/public/newtxsf/zsfmi-reg.tfm - RELOC/fonts/tfm/public/newtxsf/zsfmia-bol.tfm - RELOC/fonts/tfm/public/newtxsf/zsfmia-reg.tfm - RELOC/fonts/type1/public/newtxsf/zsfmi-bol.pfb - RELOC/fonts/type1/public/newtxsf/zsfmi-reg.pfb - RELOC/fonts/type1/public/newtxsf/zsfmia-bol.pfb - RELOC/fonts/type1/public/newtxsf/zsfmia-reg.pfb - RELOC/fonts/vf/public/newtxsf/ntxsfbmi.vf - RELOC/fonts/vf/public/newtxsf/ntxsfbmia.vf - RELOC/fonts/vf/public/newtxsf/ntxsfmi.vf - RELOC/fonts/vf/public/newtxsf/ntxsfmia.vf - RELOC/tex/latex/newtxsf/newtxsf.sty - RELOC/tex/latex/newtxsf/omlntxsfmi.fd - RELOC/tex/latex/newtxsf/untxsfmia.fd -docfiles size=117 - RELOC/doc/fonts/newtxsf/OFL-FAQ.txt - RELOC/doc/fonts/newtxsf/OFL.txt - RELOC/doc/fonts/newtxsf/README - RELOC/doc/fonts/newtxsf/newtxsf-doc.pdf - RELOC/doc/fonts/newtxsf/newtxsf-doc.tex -catalogue-also newtx stix -catalogue-ctan /fonts/newtxsf -catalogue-date 2015-07-05 05:23:46 +0200 -catalogue-license ofl -catalogue-topics font font-sans font-maths font-type1 -catalogue-version 1.03 - -name newtx -category Package -revision 38255 -shortdesc Alternative uses of the TX fonts, with improved metrics -relocated 1 -longdesc The bundle splits txfonts.sty (from the TX fonts distribution) -longdesc into two independent packages, newtxtext.sty and newtxmath.sty, -longdesc each with fixes and enhancements. newtxmath's metrics have been -longdesc re-evaluated to provide a less tight appearance, and to provide -longdesc a libertine option that substitutes Libertine italic and Greek -longdesc letter for the existing math italic and Greek glyphs, making a -longdesc mathematics package that matches Libertine text quite well. -longdesc newtxmath can also use the maths italic font provided with the -longdesc garamondx package, thus offering a garamond-alike text-with- -longdesc maths combination. -execute addMap newtx.map -runfiles size=1857 - RELOC/fonts/afm/public/newtx/ntxsups-Bold.afm - RELOC/fonts/afm/public/newtx/ntxsups-BoldItalic.afm - RELOC/fonts/afm/public/newtx/ntxsups-Italic.afm - RELOC/fonts/afm/public/newtx/ntxsups-Regular.afm - RELOC/fonts/afm/public/newtx/ntxtmb.afm - RELOC/fonts/afm/public/newtx/ntxtmbi.afm - RELOC/fonts/afm/public/newtx/ntxtmr.afm - RELOC/fonts/afm/public/newtx/ntxtmri.afm - RELOC/fonts/enc/dvips/newtx/alt-mn-greek.enc - RELOC/fonts/enc/dvips/newtx/libcaps.enc - RELOC/fonts/enc/dvips/newtx/libertinealt.enc - RELOC/fonts/enc/dvips/newtx/ntx-ec-lf-sc.enc - RELOC/fonts/enc/dvips/newtx/ntx-ec-lf.enc - RELOC/fonts/enc/dvips/newtx/ntx-ec-osf-sc.enc - RELOC/fonts/enc/dvips/newtx/ntx-ec-osf.enc - RELOC/fonts/enc/dvips/newtx/ntx-ec-tlf-sc.enc - RELOC/fonts/enc/dvips/newtx/ntx-ec-tlf.enc - RELOC/fonts/enc/dvips/newtx/ntx-ec-tosf-sc.enc - RELOC/fonts/enc/dvips/newtx/ntx-ec-tosf.enc - RELOC/fonts/enc/dvips/newtx/ntx-ecth-lf.enc - RELOC/fonts/enc/dvips/newtx/ntx-ecth-osf.enc - RELOC/fonts/enc/dvips/newtx/ntx-ecth-tlf.enc - RELOC/fonts/enc/dvips/newtx/ntx-ecth-tosf.enc - RELOC/fonts/enc/dvips/newtx/ntx-ly1-sc.enc - RELOC/fonts/enc/dvips/newtx/ntx-ot1-lf-sc.enc - RELOC/fonts/enc/dvips/newtx/ntx-ot1-lf.enc - RELOC/fonts/enc/dvips/newtx/ntx-ot1-osf-sc.enc - RELOC/fonts/enc/dvips/newtx/ntx-ot1-osf.enc - RELOC/fonts/enc/dvips/newtx/ntx-ot1-sc.enc - RELOC/fonts/enc/dvips/newtx/ntx-ot1-th-osf.enc - RELOC/fonts/enc/dvips/newtx/ntx-ot1-th-tlf.enc - RELOC/fonts/enc/dvips/newtx/ntx-ot1-tlf-sc.enc - RELOC/fonts/enc/dvips/newtx/ntx-ot1-tlf.enc - RELOC/fonts/enc/dvips/newtx/ntx-ot1-tosf-sc.enc - RELOC/fonts/enc/dvips/newtx/ntx-ot1-tosf.enc - RELOC/fonts/enc/dvips/newtx/ntx-t1-sc.enc - RELOC/fonts/enc/dvips/newtx/ntx-texnansi-lf-sc.enc - RELOC/fonts/enc/dvips/newtx/ntx-texnansi-lf.enc - RELOC/fonts/enc/dvips/newtx/ntx-texnansi-osf-sc.enc - RELOC/fonts/enc/dvips/newtx/ntx-texnansi-osf.enc - RELOC/fonts/enc/dvips/newtx/ntx-texnansi-th-osf.enc - RELOC/fonts/enc/dvips/newtx/ntx-texnansi-th-tlf.enc - RELOC/fonts/enc/dvips/newtx/ntx-texnansi-tlf-sc.enc - RELOC/fonts/enc/dvips/newtx/ntx-texnansi-tlf.enc - RELOC/fonts/enc/dvips/newtx/ntx-texnansi-tosf-sc.enc - RELOC/fonts/enc/dvips/newtx/ntx-texnansi-tosf.enc - RELOC/fonts/enc/dvips/newtx/ntxmiaalt.enc - RELOC/fonts/map/dvips/newtx/newtx.map - RELOC/fonts/map/dvips/newtx/zmn.map - RELOC/fonts/tfm/public/newtx/Libertine-nu.tfm - RELOC/fonts/tfm/public/newtx/LibertineI-5nu.tfm - RELOC/fonts/tfm/public/newtx/LibertineI-7nu.tfm - RELOC/fonts/tfm/public/newtx/LibertineI-nu.tfm - RELOC/fonts/tfm/public/newtx/LibertineTheta-Regular.tfm - RELOC/fonts/tfm/public/newtx/LibertineZ-nu.tfm - RELOC/fonts/tfm/public/newtx/LibertineZI-5nu.tfm - RELOC/fonts/tfm/public/newtx/LibertineZI-7nu.tfm - RELOC/fonts/tfm/public/newtx/LibertineZI-nu.tfm - RELOC/fonts/tfm/public/newtx/MinLibBol-ly1.tfm - RELOC/fonts/tfm/public/newtx/MinLibBol-ot1.tfm - RELOC/fonts/tfm/public/newtx/MinLibBol-t1.tfm - RELOC/fonts/tfm/public/newtx/MinLibBolIta-ly1.tfm - RELOC/fonts/tfm/public/newtx/MinLibBolIta-ot1.tfm - RELOC/fonts/tfm/public/newtx/MinLibBolIta-t1.tfm - RELOC/fonts/tfm/public/newtx/MinLibIta-ly1.tfm - RELOC/fonts/tfm/public/newtx/MinLibIta-ot1.tfm - RELOC/fonts/tfm/public/newtx/MinLibIta-t1.tfm - RELOC/fonts/tfm/public/newtx/MinLibReg-ly1.tfm - RELOC/fonts/tfm/public/newtx/MinLibReg-ot1.tfm - RELOC/fonts/tfm/public/newtx/MinLibReg-t1.tfm - RELOC/fonts/tfm/public/newtx/fxlri-5alt.tfm - RELOC/fonts/tfm/public/newtx/fxlri-5letters.tfm - RELOC/fonts/tfm/public/newtx/fxlri-7alt.tfm - RELOC/fonts/tfm/public/newtx/fxlri-7letters.tfm - RELOC/fonts/tfm/public/newtx/fxlzi-5alt.tfm - RELOC/fonts/tfm/public/newtx/fxlzi-5letters.tfm - RELOC/fonts/tfm/public/newtx/fxlzi-7alt.tfm - RELOC/fonts/tfm/public/newtx/fxlzi-7letters.tfm - RELOC/fonts/tfm/public/newtx/fxlzi-jv.tfm - RELOC/fonts/tfm/public/newtx/fxlzi-jv5.tfm - RELOC/fonts/tfm/public/newtx/fxlzi-jv7.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-sc-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-sc-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-sc-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-scl-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-scl-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-scl-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-sc-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-sc-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-sc-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-scl-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-scl-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-scl-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-sc-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-scl-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-scl-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-scl-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-sc-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-scl-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-scl-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-scl-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-scl-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-scl-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-scl-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-scl-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-scl-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-scl-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-scl-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-scl-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-scl-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-scl-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-scl-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-scl-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-sc-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-sc-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-sc-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-scl-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-scl-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-scl-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-sc-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-sc-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-sc-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-scl-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-scl-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-scl-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-th-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-th-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-th-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-sc-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-scl-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-scl-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-scl-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-th-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-th-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-th-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-sc-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-scl-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-scl-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-scl-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-sc-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-sc-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-sc-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-scl-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-scl-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-scl-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-sc-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-sc-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-sc-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-scl-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-scl-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-scl-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-sc-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-sc-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-sc-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-scl-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-scl-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-scl-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-sc-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-sc-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-sc-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-scl-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-scl-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-scl-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-t1.tfm - RELOC/fonts/tfm/public/newtx/ntxbexa.tfm - RELOC/fonts/tfm/public/newtx/ntxbexb.tfm - RELOC/fonts/tfm/public/newtx/ntxbexmods.tfm - RELOC/fonts/tfm/public/newtx/ntxbexx.tfm - RELOC/fonts/tfm/public/newtx/ntxbmi.tfm - RELOC/fonts/tfm/public/newtx/ntxbmi1.tfm - RELOC/fonts/tfm/public/newtx/ntxbmi15.tfm - RELOC/fonts/tfm/public/newtx/ntxbmi17.tfm - RELOC/fonts/tfm/public/newtx/ntxbmi1x.tfm - RELOC/fonts/tfm/public/newtx/ntxbmi5.tfm - RELOC/fonts/tfm/public/newtx/ntxbmi7.tfm - RELOC/fonts/tfm/public/newtx/ntxbmia.tfm - RELOC/fonts/tfm/public/newtx/ntxbmial1.tfm - RELOC/fonts/tfm/public/newtx/ntxbmials.tfm - RELOC/fonts/tfm/public/newtx/ntxbsy.tfm - RELOC/fonts/tfm/public/newtx/ntxbsy5.tfm - RELOC/fonts/tfm/public/newtx/ntxbsy7.tfm - RELOC/fonts/tfm/public/newtx/ntxbsyc.tfm - RELOC/fonts/tfm/public/newtx/ntxbsym.tfm - RELOC/fonts/tfm/public/newtx/ntxexa.tfm - RELOC/fonts/tfm/public/newtx/ntxexb.tfm - RELOC/fonts/tfm/public/newtx/ntxexmods.tfm - RELOC/fonts/tfm/public/newtx/ntxexx.tfm - RELOC/fonts/tfm/public/newtx/ntxmi.tfm - RELOC/fonts/tfm/public/newtx/ntxmi1.tfm - RELOC/fonts/tfm/public/newtx/ntxmi15.tfm - RELOC/fonts/tfm/public/newtx/ntxmi17.tfm - RELOC/fonts/tfm/public/newtx/ntxmi5.tfm - RELOC/fonts/tfm/public/newtx/ntxmi7.tfm - RELOC/fonts/tfm/public/newtx/ntxmia.tfm - RELOC/fonts/tfm/public/newtx/ntxsups-Bold-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntxsups-Bold-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntxsups-Bold-t1.tfm - RELOC/fonts/tfm/public/newtx/ntxsups-Bold.tfm - RELOC/fonts/tfm/public/newtx/ntxsups-BoldItalic-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntxsups-BoldItalic-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntxsups-BoldItalic-t1.tfm - RELOC/fonts/tfm/public/newtx/ntxsups-BoldItalic.tfm - RELOC/fonts/tfm/public/newtx/ntxsups-Italic-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntxsups-Italic-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntxsups-Italic-t1.tfm - RELOC/fonts/tfm/public/newtx/ntxsups-Italic.tfm - RELOC/fonts/tfm/public/newtx/ntxsups-Regular-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntxsups-Regular-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntxsups-Regular-t1.tfm - RELOC/fonts/tfm/public/newtx/ntxsups-Regular.tfm - RELOC/fonts/tfm/public/newtx/ntxsy.tfm - RELOC/fonts/tfm/public/newtx/ntxsy5.tfm - RELOC/fonts/tfm/public/newtx/ntxsy7.tfm - RELOC/fonts/tfm/public/newtx/ntxsybalt.tfm - RELOC/fonts/tfm/public/newtx/ntxsyc.tfm - RELOC/fonts/tfm/public/newtx/ntxsym.tfm - RELOC/fonts/tfm/public/newtx/ntxsyralt.tfm - RELOC/fonts/tfm/public/newtx/nxlbmi.tfm - RELOC/fonts/tfm/public/newtx/nxlbmi0.tfm - RELOC/fonts/tfm/public/newtx/nxlbmi01.tfm - RELOC/fonts/tfm/public/newtx/nxlbmi015.tfm - RELOC/fonts/tfm/public/newtx/nxlbmi017.tfm - RELOC/fonts/tfm/public/newtx/nxlbmi02.tfm - RELOC/fonts/tfm/public/newtx/nxlbmi025.tfm - RELOC/fonts/tfm/public/newtx/nxlbmi027.tfm - RELOC/fonts/tfm/public/newtx/nxlbmi03.tfm - RELOC/fonts/tfm/public/newtx/nxlbmi035.tfm - RELOC/fonts/tfm/public/newtx/nxlbmi037.tfm - RELOC/fonts/tfm/public/newtx/nxlbmi05.tfm - RELOC/fonts/tfm/public/newtx/nxlbmi07.tfm - RELOC/fonts/tfm/public/newtx/nxlbmi1.tfm - RELOC/fonts/tfm/public/newtx/nxlbmi15.tfm - RELOC/fonts/tfm/public/newtx/nxlbmi17.tfm - RELOC/fonts/tfm/public/newtx/nxlbmi2.tfm - RELOC/fonts/tfm/public/newtx/nxlbmi25.tfm - RELOC/fonts/tfm/public/newtx/nxlbmi27.tfm - RELOC/fonts/tfm/public/newtx/nxlbmi3.tfm - RELOC/fonts/tfm/public/newtx/nxlbmi35.tfm - RELOC/fonts/tfm/public/newtx/nxlbmi37.tfm - RELOC/fonts/tfm/public/newtx/nxlbmi5.tfm - RELOC/fonts/tfm/public/newtx/nxlbmi7.tfm - RELOC/fonts/tfm/public/newtx/nxlbmia.tfm - RELOC/fonts/tfm/public/newtx/nxlbsy5.tfm - RELOC/fonts/tfm/public/newtx/nxlbsy7.tfm - RELOC/fonts/tfm/public/newtx/nxlmi.tfm - RELOC/fonts/tfm/public/newtx/nxlmi0.tfm - RELOC/fonts/tfm/public/newtx/nxlmi01.tfm - RELOC/fonts/tfm/public/newtx/nxlmi015.tfm - RELOC/fonts/tfm/public/newtx/nxlmi017.tfm - RELOC/fonts/tfm/public/newtx/nxlmi02.tfm - RELOC/fonts/tfm/public/newtx/nxlmi025.tfm - RELOC/fonts/tfm/public/newtx/nxlmi027.tfm - RELOC/fonts/tfm/public/newtx/nxlmi03.tfm - RELOC/fonts/tfm/public/newtx/nxlmi035.tfm - RELOC/fonts/tfm/public/newtx/nxlmi037.tfm - RELOC/fonts/tfm/public/newtx/nxlmi05.tfm - RELOC/fonts/tfm/public/newtx/nxlmi07.tfm - RELOC/fonts/tfm/public/newtx/nxlmi1.tfm - RELOC/fonts/tfm/public/newtx/nxlmi15.tfm - RELOC/fonts/tfm/public/newtx/nxlmi17.tfm - RELOC/fonts/tfm/public/newtx/nxlmi2.tfm - RELOC/fonts/tfm/public/newtx/nxlmi25.tfm - RELOC/fonts/tfm/public/newtx/nxlmi27.tfm - RELOC/fonts/tfm/public/newtx/nxlmi3.tfm - RELOC/fonts/tfm/public/newtx/nxlmi35.tfm - RELOC/fonts/tfm/public/newtx/nxlmi37.tfm - RELOC/fonts/tfm/public/newtx/nxlmi5.tfm - RELOC/fonts/tfm/public/newtx/nxlmi7.tfm - RELOC/fonts/tfm/public/newtx/nxlmia.tfm - RELOC/fonts/tfm/public/newtx/nxlsy5.tfm - RELOC/fonts/tfm/public/newtx/nxlsy7.tfm - RELOC/fonts/tfm/public/newtx/qtmr.tfm - RELOC/fonts/tfm/public/newtx/rfxlr-alt.tfm - RELOC/fonts/tfm/public/newtx/rfxlri-alt.tfm - RELOC/fonts/tfm/public/newtx/rfxlri-vw.tfm - RELOC/fonts/tfm/public/newtx/rfxlri-vw5.tfm - RELOC/fonts/tfm/public/newtx/rfxlri-vw7.tfm - RELOC/fonts/tfm/public/newtx/rfxlz-alt.tfm - RELOC/fonts/tfm/public/newtx/rfxlzi-alt.tfm - RELOC/fonts/tfm/public/newtx/rfxlzi-vw.tfm - RELOC/fonts/tfm/public/newtx/rfxlzi-vw5.tfm - RELOC/fonts/tfm/public/newtx/rfxlzi-vw7.tfm - RELOC/fonts/tfm/public/newtx/rntxbmi.tfm - RELOC/fonts/tfm/public/newtx/rntxbmi5.tfm - RELOC/fonts/tfm/public/newtx/rntxbmi7.tfm - RELOC/fonts/tfm/public/newtx/rntxmi.tfm - RELOC/fonts/tfm/public/newtx/rntxmi5.tfm - RELOC/fonts/tfm/public/newtx/rntxmi7.tfm - RELOC/fonts/tfm/public/newtx/rtxbmi-rev.tfm - RELOC/fonts/tfm/public/newtx/rtxbmi-ut.tfm - RELOC/fonts/tfm/public/newtx/rtxbmi5-rev.tfm - RELOC/fonts/tfm/public/newtx/rtxbmi5.tfm - RELOC/fonts/tfm/public/newtx/rtxbmi7-rev.tfm - RELOC/fonts/tfm/public/newtx/rtxbmi7.tfm - RELOC/fonts/tfm/public/newtx/rtxbmio.tfm - RELOC/fonts/tfm/public/newtx/rtxmi-ut.tfm - RELOC/fonts/tfm/public/newtx/rtxmi5.tfm - RELOC/fonts/tfm/public/newtx/rtxmi7.tfm - RELOC/fonts/tfm/public/newtx/rtxmio.tfm - RELOC/fonts/tfm/public/newtx/txbex-bar.tfm - RELOC/fonts/tfm/public/newtx/txbsy5.tfm - RELOC/fonts/tfm/public/newtx/txbsy7.tfm - RELOC/fonts/tfm/public/newtx/txex-bar.tfm - RELOC/fonts/tfm/public/newtx/txsy5.tfm - RELOC/fonts/tfm/public/newtx/txsy7.tfm - RELOC/fonts/tfm/public/newtx/zmn-vw-b.tfm - RELOC/fonts/tfm/public/newtx/zmn-vw-r.tfm - RELOC/fonts/tfm/public/newtx/zutbmi.tfm - RELOC/fonts/tfm/public/newtx/zutmi.tfm - RELOC/fonts/tfm/public/newtx/zxlr-5nums.tfm - RELOC/fonts/tfm/public/newtx/zxlr-7nums.tfm - RELOC/fonts/tfm/public/newtx/zxlr-8r.tfm - RELOC/fonts/tfm/public/newtx/zxlr-caps.tfm - RELOC/fonts/tfm/public/newtx/zxlri-8r.tfm - RELOC/fonts/tfm/public/newtx/zxlz-8r.tfm - RELOC/fonts/tfm/public/newtx/zxlz-caps.tfm - RELOC/fonts/tfm/public/newtx/zxlzi-8r.tfm - RELOC/fonts/type1/public/newtx/Libertine-nu.pfb - RELOC/fonts/type1/public/newtx/LibertineI-5nu.pfb - RELOC/fonts/type1/public/newtx/LibertineI-7nu.pfb - RELOC/fonts/type1/public/newtx/LibertineI-nu.pfb - RELOC/fonts/type1/public/newtx/LibertineTheta-Regular.pfb - RELOC/fonts/type1/public/newtx/LibertineZ-nu.pfb - RELOC/fonts/type1/public/newtx/LibertineZI-5nu.pfb - RELOC/fonts/type1/public/newtx/LibertineZI-7nu.pfb - RELOC/fonts/type1/public/newtx/LibertineZI-nu.pfb - RELOC/fonts/type1/public/newtx/MinLibBol.pfb - RELOC/fonts/type1/public/newtx/MinLibBolIta.pfb - RELOC/fonts/type1/public/newtx/MinLibIta.pfb - RELOC/fonts/type1/public/newtx/MinLibReg.pfb - RELOC/fonts/type1/public/newtx/fxlri-5letters.pfb - RELOC/fonts/type1/public/newtx/fxlri-7letters.pfb - RELOC/fonts/type1/public/newtx/fxlri-vw.pfb - RELOC/fonts/type1/public/newtx/fxlri-vw5.pfb - RELOC/fonts/type1/public/newtx/fxlri-vw7.pfb - RELOC/fonts/type1/public/newtx/fxlzi-5letters.pfb - RELOC/fonts/type1/public/newtx/fxlzi-7letters.pfb - RELOC/fonts/type1/public/newtx/fxlzi-jv.pfb - RELOC/fonts/type1/public/newtx/fxlzi-jv5.pfb - RELOC/fonts/type1/public/newtx/fxlzi-jv7.pfb - RELOC/fonts/type1/public/newtx/fxlzi-vw.pfb - RELOC/fonts/type1/public/newtx/fxlzi-vw5.pfb - RELOC/fonts/type1/public/newtx/fxlzi-vw7.pfb - RELOC/fonts/type1/public/newtx/ntxbexb.pfb - RELOC/fonts/type1/public/newtx/ntxbexmods.pfb - RELOC/fonts/type1/public/newtx/ntxexb.pfb - RELOC/fonts/type1/public/newtx/ntxexmods.pfb - RELOC/fonts/type1/public/newtx/ntxsups-Bold.pfb - RELOC/fonts/type1/public/newtx/ntxsups-BoldItalic.pfb - RELOC/fonts/type1/public/newtx/ntxsups-Italic.pfb - RELOC/fonts/type1/public/newtx/ntxsups-Regular.pfb - RELOC/fonts/type1/public/newtx/ntxsybalt.pfb - RELOC/fonts/type1/public/newtx/ntxsyralt.pfb - RELOC/fonts/type1/public/newtx/ntxtmb.pfb - RELOC/fonts/type1/public/newtx/ntxtmbi.pfb - RELOC/fonts/type1/public/newtx/ntxtmr.pfb - RELOC/fonts/type1/public/newtx/ntxtmri.pfb - RELOC/fonts/type1/public/newtx/rntxbmi.pfb - RELOC/fonts/type1/public/newtx/rntxbmi5.pfb - RELOC/fonts/type1/public/newtx/rntxbmi7.pfb - RELOC/fonts/type1/public/newtx/rntxmi.pfb - RELOC/fonts/type1/public/newtx/rntxmi5.pfb - RELOC/fonts/type1/public/newtx/rntxmi7.pfb - RELOC/fonts/type1/public/newtx/rtxbmi-rev.pfb - RELOC/fonts/type1/public/newtx/rtxbmi5-rev.pfb - RELOC/fonts/type1/public/newtx/rtxbmi5.pfb - RELOC/fonts/type1/public/newtx/rtxbmi7-rev.pfb - RELOC/fonts/type1/public/newtx/rtxbmi7.pfb - RELOC/fonts/type1/public/newtx/rtxmi5.pfb - RELOC/fonts/type1/public/newtx/rtxmi7.pfb - RELOC/fonts/type1/public/newtx/txbex-bar.pfb - RELOC/fonts/type1/public/newtx/txbsy5.pfb - RELOC/fonts/type1/public/newtx/txbsy7.pfb - RELOC/fonts/type1/public/newtx/txex-bar.pfb - RELOC/fonts/type1/public/newtx/txsy5.pfb - RELOC/fonts/type1/public/newtx/txsy7.pfb - RELOC/fonts/type1/public/newtx/zmn-vw-b.pfb - RELOC/fonts/type1/public/newtx/zmn-vw-r.pfb - RELOC/fonts/type1/public/newtx/zxlr-5nums.pfb - RELOC/fonts/type1/public/newtx/zxlr-7nums.pfb - RELOC/fonts/type1/public/newtx/zxlr.pfb - RELOC/fonts/type1/public/newtx/zxlri.pfb - RELOC/fonts/type1/public/newtx/zxlz.pfb - RELOC/fonts/type1/public/newtx/zxlzi.pfb - RELOC/fonts/vf/public/newtx/ntxbexa.vf - RELOC/fonts/vf/public/newtx/ntxbexx.vf - RELOC/fonts/vf/public/newtx/ntxbmi.vf - RELOC/fonts/vf/public/newtx/ntxbmi1.vf - RELOC/fonts/vf/public/newtx/ntxbmi15.vf - RELOC/fonts/vf/public/newtx/ntxbmi17.vf - RELOC/fonts/vf/public/newtx/ntxbmi1x.vf - RELOC/fonts/vf/public/newtx/ntxbmi5.vf - RELOC/fonts/vf/public/newtx/ntxbmi7.vf - RELOC/fonts/vf/public/newtx/ntxbmia.vf - RELOC/fonts/vf/public/newtx/ntxbsy.vf - RELOC/fonts/vf/public/newtx/ntxbsy5.vf - RELOC/fonts/vf/public/newtx/ntxbsy7.vf - RELOC/fonts/vf/public/newtx/ntxbsyc.vf - RELOC/fonts/vf/public/newtx/ntxbsym.vf - RELOC/fonts/vf/public/newtx/ntxexa.vf - RELOC/fonts/vf/public/newtx/ntxexx.vf - RELOC/fonts/vf/public/newtx/ntxmi.vf - RELOC/fonts/vf/public/newtx/ntxmi1.vf - RELOC/fonts/vf/public/newtx/ntxmi15.vf - RELOC/fonts/vf/public/newtx/ntxmi17.vf - RELOC/fonts/vf/public/newtx/ntxmi5.vf - RELOC/fonts/vf/public/newtx/ntxmi7.vf - RELOC/fonts/vf/public/newtx/ntxmia.vf - RELOC/fonts/vf/public/newtx/ntxsy.vf - RELOC/fonts/vf/public/newtx/ntxsy5.vf - RELOC/fonts/vf/public/newtx/ntxsy7.vf - RELOC/fonts/vf/public/newtx/ntxsyc.vf - RELOC/fonts/vf/public/newtx/ntxsym.vf - RELOC/fonts/vf/public/newtx/nxlbmi.vf - RELOC/fonts/vf/public/newtx/nxlbmi0.vf - RELOC/fonts/vf/public/newtx/nxlbmi01.vf - RELOC/fonts/vf/public/newtx/nxlbmi015.vf - RELOC/fonts/vf/public/newtx/nxlbmi017.vf - RELOC/fonts/vf/public/newtx/nxlbmi02.vf - RELOC/fonts/vf/public/newtx/nxlbmi025.vf - RELOC/fonts/vf/public/newtx/nxlbmi027.vf - RELOC/fonts/vf/public/newtx/nxlbmi03.vf - RELOC/fonts/vf/public/newtx/nxlbmi035.vf - RELOC/fonts/vf/public/newtx/nxlbmi037.vf - RELOC/fonts/vf/public/newtx/nxlbmi05.vf - RELOC/fonts/vf/public/newtx/nxlbmi07.vf - RELOC/fonts/vf/public/newtx/nxlbmi1.vf - RELOC/fonts/vf/public/newtx/nxlbmi15.vf - RELOC/fonts/vf/public/newtx/nxlbmi17.vf - RELOC/fonts/vf/public/newtx/nxlbmi2.vf - RELOC/fonts/vf/public/newtx/nxlbmi25.vf - RELOC/fonts/vf/public/newtx/nxlbmi27.vf - RELOC/fonts/vf/public/newtx/nxlbmi3.vf - RELOC/fonts/vf/public/newtx/nxlbmi35.vf - RELOC/fonts/vf/public/newtx/nxlbmi37.vf - RELOC/fonts/vf/public/newtx/nxlbmi5.vf - RELOC/fonts/vf/public/newtx/nxlbmi7.vf - RELOC/fonts/vf/public/newtx/nxlbmia.vf - RELOC/fonts/vf/public/newtx/nxlbsy5.vf - RELOC/fonts/vf/public/newtx/nxlbsy7.vf - RELOC/fonts/vf/public/newtx/nxlmi.vf - RELOC/fonts/vf/public/newtx/nxlmi0.vf - RELOC/fonts/vf/public/newtx/nxlmi01.vf - RELOC/fonts/vf/public/newtx/nxlmi015.vf - RELOC/fonts/vf/public/newtx/nxlmi017.vf - RELOC/fonts/vf/public/newtx/nxlmi02.vf - RELOC/fonts/vf/public/newtx/nxlmi025.vf - RELOC/fonts/vf/public/newtx/nxlmi027.vf - RELOC/fonts/vf/public/newtx/nxlmi03.vf - RELOC/fonts/vf/public/newtx/nxlmi035.vf - RELOC/fonts/vf/public/newtx/nxlmi037.vf - RELOC/fonts/vf/public/newtx/nxlmi05.vf - RELOC/fonts/vf/public/newtx/nxlmi07.vf - RELOC/fonts/vf/public/newtx/nxlmi1.vf - RELOC/fonts/vf/public/newtx/nxlmi15.vf - RELOC/fonts/vf/public/newtx/nxlmi17.vf - RELOC/fonts/vf/public/newtx/nxlmi2.vf - RELOC/fonts/vf/public/newtx/nxlmi25.vf - RELOC/fonts/vf/public/newtx/nxlmi27.vf - RELOC/fonts/vf/public/newtx/nxlmi3.vf - RELOC/fonts/vf/public/newtx/nxlmi35.vf - RELOC/fonts/vf/public/newtx/nxlmi37.vf - RELOC/fonts/vf/public/newtx/nxlmi5.vf - RELOC/fonts/vf/public/newtx/nxlmi7.vf - RELOC/fonts/vf/public/newtx/nxlmia.vf - RELOC/fonts/vf/public/newtx/nxlsy5.vf - RELOC/fonts/vf/public/newtx/nxlsy7.vf - RELOC/fonts/vf/public/newtx/zutbmi.vf - RELOC/fonts/vf/public/newtx/zutmi.vf - RELOC/tex/latex/newtx/ly1minlibertine.fd - RELOC/tex/latex/newtx/ly1ntxlf.fd - RELOC/tex/latex/newtx/ly1ntxosf.fd - RELOC/tex/latex/newtx/ly1ntxsups.fd - RELOC/tex/latex/newtx/ly1ntxtlf.fd - RELOC/tex/latex/newtx/ly1ntxtosf.fd - RELOC/tex/latex/newtx/ly1ntxtt.fd - RELOC/tex/latex/newtx/newtxmath.sty - RELOC/tex/latex/newtx/newtxtext.sty - RELOC/tex/latex/newtx/omlntxmi.fd - RELOC/tex/latex/newtx/omlnxlmi.fd - RELOC/tex/latex/newtx/omlzbvmi.fd - RELOC/tex/latex/newtx/omlzmnmi.fd - RELOC/tex/latex/newtx/omlzutmi.fd - RELOC/tex/latex/newtx/omsntxsy.fd - RELOC/tex/latex/newtx/ot1minlibertine.fd - RELOC/tex/latex/newtx/ot1ntxlf.fd - RELOC/tex/latex/newtx/ot1ntxosf.fd - RELOC/tex/latex/newtx/ot1ntxsups.fd - RELOC/tex/latex/newtx/ot1ntxtlf.fd - RELOC/tex/latex/newtx/ot1ntxtosf.fd - RELOC/tex/latex/newtx/ot1ntxtt.fd - RELOC/tex/latex/newtx/t1fxl1.fd - RELOC/tex/latex/newtx/t1minlibertine.fd - RELOC/tex/latex/newtx/t1ntxlf.fd - RELOC/tex/latex/newtx/t1ntxosf.fd - RELOC/tex/latex/newtx/t1ntxsups.fd - RELOC/tex/latex/newtx/t1ntxtlf.fd - RELOC/tex/latex/newtx/t1ntxtosf.fd - RELOC/tex/latex/newtx/t1ntxtt.fd - RELOC/tex/latex/newtx/ts1ntxlf.fd - RELOC/tex/latex/newtx/ts1ntxosf.fd - RELOC/tex/latex/newtx/ts1ntxtlf.fd - RELOC/tex/latex/newtx/ts1ntxtosf.fd - RELOC/tex/latex/newtx/ts1ntxtt.fd - RELOC/tex/latex/newtx/untxexa.fd - RELOC/tex/latex/newtx/untxmia.fd - RELOC/tex/latex/newtx/untxsyc.fd - RELOC/tex/latex/newtx/untxsym.fd - RELOC/tex/latex/newtx/untxtt.fd - RELOC/tex/latex/newtx/uzmnmia.fd -docfiles size=216 - RELOC/doc/fonts/newtx/MANIFEST-newtx.txt - RELOC/doc/fonts/newtx/README - RELOC/doc/fonts/newtx/implementation.pdf - RELOC/doc/fonts/newtx/implementation.tex - RELOC/doc/fonts/newtx/mathnotes.pdf - RELOC/doc/fonts/newtx/mathnotes.tex - RELOC/doc/fonts/newtx/newtxdoc.pdf - RELOC/doc/fonts/newtx/newtxdoc.tex - RELOC/doc/fonts/newtx/sample-lib-crop.pdf - RELOC/doc/fonts/newtx/sample-libmtp-crop.pdf - RELOC/doc/fonts/newtx/sample-mtp-crop.pdf - RELOC/doc/fonts/newtx/sample-ntx-crop.pdf - RELOC/doc/fonts/newtx/sample-ptmx-crop.pdf - RELOC/doc/fonts/newtx/sample-tx-crop.pdf -catalogue-also minion2newtx -catalogue-ctan /fonts/newtx -catalogue-date 2015-08-31 14:42:17 +0200 -catalogue-license lppl1.3 -catalogue-topics font font-maths font-type1 -catalogue-version 1.46 - -name newtxtt -category Package -revision 37761 -shortdesc Enhancement of typewriter fonts from newtx. -relocated 1 -longdesc The package provides enhanced fonts with LaTeX support files -longdesc providing access to the typewriter fonts from newtx. Regular -longdesc and bold weights, slanted variants and a choice of four -longdesc different styles for zero. -execute addMap newtxtt.map -runfiles size=205 - RELOC/fonts/enc/dvips/newtxtt/txttAec.enc - RELOC/fonts/enc/dvips/newtxtt/txttAqec.enc - RELOC/fonts/enc/dvips/newtxtt/txttBec.enc - RELOC/fonts/enc/dvips/newtxtt/txttBqec.enc - RELOC/fonts/enc/dvips/newtxtt/txttCec.enc - RELOC/fonts/enc/dvips/newtxtt/txttCqec.enc - RELOC/fonts/enc/dvips/newtxtt/txttDec.enc - RELOC/fonts/enc/dvips/newtxtt/txttDqec.enc - RELOC/fonts/enc/dvips/newtxtt/txttEec.enc - RELOC/fonts/enc/dvips/newtxtt/txttEqec.enc - RELOC/fonts/map/dvips/newtxtt/newtxtt.map - RELOC/fonts/tfm/public/newtxtt/newtxbtta.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttaq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttb.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttbq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttc.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttcq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttd.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttdq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbtte.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbtteq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttsca.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttscaq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttscb.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttscbq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttscc.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttsccq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttscd.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttscdq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttsce.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttsceq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttsla.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttslaq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttslb.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttslbq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttslc.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttslcq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttsld.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttsldq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttsle.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttsleq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttza.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzaq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzb.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzbq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzc.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzcq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzd.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzdq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttze.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzeq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzsca.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzscaq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzscb.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzscbq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzscc.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzsccq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzscd.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzscdq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzsce.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzsceq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzsla.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzslaq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzslb.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzslbq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzslc.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzslcq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzsld.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzsldq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzsle.tfm - RELOC/fonts/tfm/public/newtxtt/newtxbttzsleq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxtta.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttaq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttb.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttbq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttc.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttcq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttd.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttdq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxtte.tfm - RELOC/fonts/tfm/public/newtxtt/newtxtteq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttsca.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttscaq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttscb.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttscbq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttscc.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttsccq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttscd.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttscdq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttsce.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttsceq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttsla.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttslaq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttslb.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttslbq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttslc.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttslcq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttsld.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttsldq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttsle.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttsleq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttza.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzaq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzb.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzbq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzc.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzcq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzd.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzdq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttze.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzeq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzsca.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzscaq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzscb.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzscbq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzscc.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzsccq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzscd.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzscdq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzsce.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzsceq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzsla.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzslaq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzslb.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzslbq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzslc.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzslcq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzsld.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzsldq.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzsle.tfm - RELOC/fonts/tfm/public/newtxtt/newtxttzsleq.tfm - RELOC/fonts/tfm/public/newtxtt/tcxbttz.tfm - RELOC/fonts/tfm/public/newtxtt/tcxbttzsl.tfm - RELOC/fonts/tfm/public/newtxtt/tcxttz.tfm - RELOC/fonts/tfm/public/newtxtt/tcxttzsl.tfm - RELOC/fonts/type1/public/newtxtt/newtxbtt.pfb - RELOC/fonts/type1/public/newtxtt/newtxbttsc.pfb - RELOC/fonts/type1/public/newtxtt/newtxtt.pfb - RELOC/fonts/type1/public/newtxtt/newtxttsc.pfb - RELOC/tex/latex/newtxtt/newtxtt.sty - RELOC/tex/latex/newtxtt/t1newtxtt.fd - RELOC/tex/latex/newtxtt/t1newtxttz.fd - RELOC/tex/latex/newtxtt/ts1newtxtt.fd - RELOC/tex/latex/newtxtt/ts1newtxttz.fd -docfiles size=22 - RELOC/doc/fonts/newtxtt/README - RELOC/doc/fonts/newtxtt/newtxtt-doc.pdf - RELOC/doc/fonts/newtxtt/newtxtt-doc.tex -catalogue-ctan /fonts/newtxtt -catalogue-date 2015-07-04 05:45:24 +0200 -catalogue-license gpl3 -catalogue-topics font font-type1 font-mono -catalogue-version 1.052 - -name newunicodechar -category Package -revision 28253 -shortdesc Definitions of the meaning of Unicode characters. -relocated 1 -longdesc The package provides a friendly interface for defining the -longdesc meaning of Unicode characters. The document should be processed -longdesc by (pdf)LaTeX with the unicode option of inputenc or inputenx, -longdesc or by XeLaTeX/LuaLaTeX. The command provided is -longdesc \newunicodechar{}{} where is a directly- -longdesc typed Unicode character, and is its replacement. -runfiles size=2 - RELOC/tex/latex/newunicodechar/newunicodechar.sty -docfiles size=96 - RELOC/doc/latex/newunicodechar/README - RELOC/doc/latex/newunicodechar/newunicodechar.pdf -srcfiles size=6 - RELOC/source/latex/newunicodechar/newunicodechar.dtx - RELOC/source/latex/newunicodechar/newunicodechar.ins -catalogue-ctan /macros/latex/contrib/newunicodechar -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.1 - -name newvbtm -category Package -revision 23996 -shortdesc Define your own verbatim-like environment. -relocated 1 -longdesc Defines general purpose macro named \newverbatim to define your -longdesc own verbatim-like environment. It also has a supplementary -longdesc style file varvbtm.sty to provide set of macros for variants of -longdesc verbatim, such as tab emulation. -runfiles size=3 - RELOC/tex/latex/newvbtm/newvbtm.sty - RELOC/tex/latex/newvbtm/varvbtm.sty -docfiles size=23 - RELOC/doc/latex/newvbtm/README - RELOC/doc/latex/newvbtm/newvbtm-man.pdf - RELOC/doc/latex/newvbtm/newvbtm-man.tex -srcfiles size=13 - RELOC/source/latex/newvbtm/newvbtm.dtx - RELOC/source/latex/newvbtm/newvbtm.ins -catalogue-ctan /macros/latex/contrib/newvbtm -catalogue-date 2011-09-23 15:58:32 +0200 -catalogue-license lppl -catalogue-version 1.1 - -name newverbs -category Package -revision 26258 -shortdesc Define new versions of \verb, including short verb versions. -relocated 1 -longdesc The package allows the definition of \verb variants which add -longdesc TeX code before and after the verbatim text (e.g., quotes or -longdesc surrounding \fbox{}). When used together with the shortvrb -longdesc package it allows the definition of short verbatim characters -longdesc which use this package's variant instead of the normal \verb. -longdesc In addition, it is possible to collect an argument verbatim to -longdesc either typeset or write it into a file. The \Verbdef command -longdesc defines verbatim text to a macro which can later be used to -longdesc write the verbatim text to a file. -runfiles size=2 - RELOC/tex/latex/newverbs/newverbs.sty -docfiles size=46 - RELOC/doc/latex/newverbs/README - RELOC/doc/latex/newverbs/newverbs.pdf -srcfiles size=7 - RELOC/source/latex/newverbs/newverbs.dtx - RELOC/source/latex/newverbs/newverbs.ins -catalogue-ctan /macros/latex/contrib/newverbs -catalogue-date 2015-03-22 20:18:57 +0100 -catalogue-license lppl1.3 -catalogue-version 1.3a - -name nextpage -category Package -revision 15878 -shortdesc Generalisations of the page advance commands. -relocated 1 -longdesc Provides \clearpage and \newpage variants that guarantee to end -longdesc up on even/odd numbered pages; these 4 commands all have an -longdesc optional argument whose content will be placed on any "empty" -longdesc page generated. -runfiles size=1 - RELOC/tex/latex/nextpage/nextpage.sty -catalogue-ctan /macros/latex/contrib/misc/nextpage.sty -catalogue-date 2012-07-18 17:56:32 +0200 -catalogue-license lppl -catalogue-version 1.1a - -name nfssext-cfr -category Package -revision 37601 -shortdesc Extensions to the LaTeX NFSS. -relocated 1 -longdesc The package is a development of nfssext.sty, distributed with -longdesc the examples for the font installation guide. The package has -longdesc been developed for use in packages such as cfr-lm and -longdesc venturisadf, -runfiles size=6 - RELOC/tex/latex/nfssext-cfr/nfssext-cfr.sty -docfiles size=41 - RELOC/doc/latex/nfssext-cfr/README - RELOC/doc/latex/nfssext-cfr/nfssext-cfr.pdf - RELOC/doc/latex/nfssext-cfr/nfssext-cfr.tex -catalogue-ctan /macros/latex/contrib/nfssext-cfr -catalogue-date 2015-06-18 07:38:04 +0200 -catalogue-license lppl1.3 -catalogue-topics font-sel - -name nicefilelist -category Package -revision 28527 -shortdesc Provide \listfiles alignment. -relocated 1 -longdesc The package extends longnamefilelist, keeping separate columns -longdesc for date, version and "caption" (the caption now separately -longdesc listed). Alignment is not disturbed by short file name -longdesc extensions, such as ".fd". The package is not compatible with -longdesc longnamefilelist: users need to re-read the documentation. -runfiles size=5 - RELOC/tex/latex/nicefilelist/nicefilelist.RLS - RELOC/tex/latex/nicefilelist/nicefilelist.sty -docfiles size=161 - RELOC/doc/latex/nicefilelist/README - RELOC/doc/latex/nicefilelist/SrcFILEs.txt - RELOC/doc/latex/nicefilelist/nicefilelist.pdf -srcfiles size=8 - RELOC/source/latex/nicefilelist/empty.f - RELOC/source/latex/nicefilelist/nicefilelist.tex - RELOC/source/latex/nicefilelist/provonly.fd - RELOC/source/latex/nicefilelist/srcfiles.tex - RELOC/source/latex/nicefilelist/wrong.prv -catalogue-ctan /macros/latex/contrib/nicefilelist -catalogue-date 2015-03-06 21:48:03 +0100 -catalogue-license lppl1.3 -catalogue-version 0.7a - -name niceframe -category Package -revision 36086 -shortdesc Support for fancy frames. -relocated 1 -longdesc The package defines means of drawing frames around boxes, using -longdesc dingbat fonts. Some (Metafont) font sources are included; the -longdesc fonts are available separately in Type 1 format. -runfiles size=58 - RELOC/fonts/source/public/niceframe/karta.mf - RELOC/fonts/source/public/niceframe/karta15.mf - RELOC/fonts/source/public/niceframe/umrand.mf - RELOC/fonts/source/public/niceframe/umranda.mf - RELOC/fonts/source/public/niceframe/umrandb.mf - RELOC/fonts/tfm/public/niceframe/karta15.tfm - RELOC/fonts/tfm/public/niceframe/umranda.tfm - RELOC/fonts/tfm/public/niceframe/umrandb.tfm - RELOC/tex/latex/niceframe/niceframe.sty -docfiles size=65 - RELOC/doc/latex/niceframe/dingbat.mf - RELOC/doc/latex/niceframe/example.tex - RELOC/doc/latex/niceframe/niceframe.pdf -srcfiles size=7 - RELOC/source/latex/niceframe/niceframe.drv - RELOC/source/latex/niceframe/niceframe.dtx - RELOC/source/latex/niceframe/niceframe.ins -catalogue-ctan /macros/latex/contrib/niceframe -catalogue-date 2012-07-17 17:50:51 +0200 -catalogue-license lppl -catalogue-version 1.1c - -name nicetext -category Package -revision 28423 -shortdesc Minimal markup for simple text (Wikipedia style) and documentation. -relocated 1 -longdesc The bundle offers "minimal" markup syntax for various simple -longdesc kinds of text. The user will typically involve little more than -longdesc is printed, and will still get LaTeX quality. The bundle -longdesc provides four packages: wiki addresses general texts, marked up -longdesc in the simple style used on Wikipedia; niceverb is yet another -longdesc means of documenting LaTeX packages: it offers syntax-aware -longdesc typesetting of meta-variables (macro arguments) and for -longdesc referring to commands (and their syntax) in footnotes, section -longdesc titles etc.; fifinddo aims to parse plain text or (La)TeX files -longdesc using TeX, and to write the results to an external file; the -longdesc package is used by another member of the bundle: makedoc, which -longdesc provides the means to produce typeset documentation direct from -longdesc package files. -runfiles size=56 - RELOC/tex/latex/nicetext/fifinddo.sty - RELOC/tex/latex/nicetext/makedoc.cfg - RELOC/tex/latex/nicetext/makedoc.sty - RELOC/tex/latex/nicetext/mdoccorr.cfg - RELOC/tex/latex/nicetext/nicetext.RLS - RELOC/tex/latex/nicetext/niceverb.sty - RELOC/tex/latex/nicetext/run/README-run.txt - RELOC/tex/latex/nicetext/run/arseneau.tex - RELOC/tex/latex/nicetext/run/atari.cfg - RELOC/tex/latex/nicetext/run/atari.txt - RELOC/tex/latex/nicetext/run/copyfile.cfg - RELOC/tex/latex/nicetext/run/copyfile.tex - RELOC/tex/latex/nicetext/run/fddial0g.sty - RELOC/tex/latex/nicetext/run/fdtxttex.cfg - RELOC/tex/latex/nicetext/run/fdtxttex.tex - RELOC/tex/latex/nicetext/run/fdtxttex.tpl - RELOC/tex/latex/nicetext/run/lines.txt - RELOC/tex/latex/nicetext/run/makedoc.tpl - RELOC/tex/latex/nicetext/run/sample.txt - RELOC/tex/latex/nicetext/run/substr.tex - RELOC/tex/latex/nicetext/run/u8atablg.fdf - RELOC/tex/latex/nicetext/wiki.sty -docfiles size=719 - RELOC/doc/latex/nicetext/ANNOUNCE.txt - RELOC/doc/latex/nicetext/CHANGE.LOG - RELOC/doc/latex/nicetext/FILEs.txt - RELOC/doc/latex/nicetext/README - RELOC/doc/latex/nicetext/README.pdf - RELOC/doc/latex/nicetext/RELEAS03.txt - RELOC/doc/latex/nicetext/RELEAS04.txt - RELOC/doc/latex/nicetext/RELEAS05.txt - RELOC/doc/latex/nicetext/RELEASE042.txt - RELOC/doc/latex/nicetext/RELEASE043.txt - RELOC/doc/latex/nicetext/RELEASE044.txt - RELOC/doc/latex/nicetext/RELEASE051.txt - RELOC/doc/latex/nicetext/SrcFILEs.txt - RELOC/doc/latex/nicetext/demo/arseneau.pdf - RELOC/doc/latex/nicetext/demo/iso.txt - RELOC/doc/latex/nicetext/demo/lns.txt - RELOC/doc/latex/nicetext/demo/sample.tex - RELOC/doc/latex/nicetext/demo/substr.pdf - RELOC/doc/latex/nicetext/fifinddo.pdf - RELOC/doc/latex/nicetext/makedoc.pdf - RELOC/doc/latex/nicetext/mdoccheat.pdf - RELOC/doc/latex/nicetext/niceverb.pdf - RELOC/doc/latex/nicetext/wikicheat.pdf -srcfiles size=26 - RELOC/source/latex/nicetext/README.tex - RELOC/source/latex/nicetext/fifinddo.tex - RELOC/source/latex/nicetext/makedoc.tex - RELOC/source/latex/nicetext/mdoccheat.tex - RELOC/source/latex/nicetext/niceverb.tex - RELOC/source/latex/nicetext/srcfiles.tex - RELOC/source/latex/nicetext/wikicheat.tex -catalogue-ctan /macros/latex/contrib/nicetext -catalogue-date 2014-10-15 23:31:15 +0200 -catalogue-license lppl -catalogue-version 0.65 - -name nih -category Package -revision 15878 -shortdesc A class for NIH grant applications. -relocated 1 -longdesc The nih class offers support for grant applications to NIH, the -longdesc National Institutes of Health, a US government agency. The -longdesc example-* files provide a template for using nih.cls and -longdesc submitting the biographical sketches the NIH wants. They -longdesc (potentially) use denselists package, which just reduces list -longdesc spacing; the package is distributed with the class, but is not -longdesc part of the class proper. (The examples may be distributed -longdesc without even the restrictions of the LaTeX licence.) -runfiles size=3 - RELOC/tex/latex/nih/denselists.sty - RELOC/tex/latex/nih/nih.cls -docfiles size=17 - RELOC/doc/latex/nih/README - RELOC/doc/latex/nih/example-biosketch.pdf - RELOC/doc/latex/nih/example-biosketch.tex - RELOC/doc/latex/nih/example-nih-cls.pdf - RELOC/doc/latex/nih/example-nih-cls.tex -catalogue-ctan /macros/latex/contrib/nih -catalogue-date 2012-07-17 22:02:06 +0200 -catalogue-license lppl - -name nkarta -category Package -revision 16437 -shortdesc A "new" version of the karta cartographic fonts. -relocated 1 -longdesc A development of the karta font, offering more mathematical -longdesc stability in Metafont. A version that will produce the glyphs -longdesc as Encapsulated PostScript, using MetaPost, is also provided. -runfiles size=68 - RELOC/fonts/source/public/nkarta/nkarta.mf - RELOC/fonts/source/public/nkarta/nkarta15.mf - RELOC/fonts/source/public/nkarta/nkchars.mf - RELOC/fonts/tfm/public/nkarta/nkarta15.tfm - RELOC/metapost/nkarta/nkarta.mp - RELOC/metapost/nkarta/nkchars.mp -docfiles size=39 - RELOC/doc/fonts/nkarta/README - RELOC/doc/fonts/nkarta/figtable.pdf - RELOC/doc/fonts/nkarta/figtable.tex - RELOC/doc/fonts/nkarta/fonttable.pdf - RELOC/doc/fonts/nkarta/fonttable.tex -srcfiles size=34 - RELOC/source/latex/nkarta/nkarta.dtx - RELOC/source/latex/nkarta/nkarta.ins -catalogue-ctan /fonts/nkarta -catalogue-date 2014-05-17 00:56:42 +0200 -catalogue-license pd -catalogue-version 0.2 - -name nlctdoc -category Package -revision 32705 -shortdesc Package documentation class. -relocated 1 -longdesc The class provides support for the documentation of the -longdesc author's packages, using koma-script. This class is provided -longdesc "as is" solely for the benefit of anyone who wants to compile -longdesc the documentation of those packages. -runfiles size=11 - RELOC/tex/latex/nlctdoc/nlctdoc.cls -docfiles size=1 - RELOC/doc/latex/nlctdoc/README -catalogue-ctan /macros/latex/contrib/nlctdoc -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.04 - -name nmbib -category Package -revision 37984 -shortdesc Multiple versions of a bibliography, with different sort orders. -relocated 1 -longdesc This package is a rewrite of the multibibliography package -longdesc providing multiple bibliographies with different sorting. The -longdesc new version offers a number of citation commands, streamlines -longdesc the creation of bibliographies, ensures compatibility with the -longdesc natbib package, and provides other improvements. -runfiles size=24 - RELOC/bibtex/bst/nmbib/chronoplainnm.bst - RELOC/bibtex/bst/nmbib/plainnm.bst - RELOC/bibtex/bst/nmbib/unsrtnm.bst - RELOC/tex/latex/nmbib/nmbib.sty -docfiles size=117 - RELOC/doc/latex/nmbib/Makefile - RELOC/doc/latex/nmbib/README - RELOC/doc/latex/nmbib/nmbib.bib - RELOC/doc/latex/nmbib/nmbib.pdf - RELOC/doc/latex/nmbib/nmbibtex.1 - RELOC/doc/latex/nmbib/nmbibtex.pl - RELOC/doc/latex/nmbib/nmsample.pdf - RELOC/doc/latex/nmbib/nmsample.tex - RELOC/doc/latex/nmbib/type.bib -srcfiles size=12 - RELOC/source/latex/nmbib/nmbib.dtx - RELOC/source/latex/nmbib/nmbib.ins -catalogue-also multibibliography -catalogue-ctan /macros/latex/contrib/nmbib -catalogue-date 2015-07-28 05:59:29 +0200 -catalogue-license lppl1.3 -catalogue-topics bibtex-supp -catalogue-version 1.04 - -name noconflict -category Package -revision 30140 -shortdesc Resolve macro name conflict between packages. -relocated 1 -longdesc The package provides several commands to prefix (and hence -longdesc obscure) a macro's (or a sequence of macros') name, and to -longdesc restore the original macro(s) at places in a document where -longdesc they are needed. -runfiles size=1 - RELOC/tex/latex/noconflict/noconflict.sty -docfiles size=1 - RELOC/doc/latex/noconflict/README -catalogue-ctan /macros/latex/contrib/noconflict -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0 - -name noindentafter -category Package -revision 35709 -shortdesc Tool to prevent paragraph indentation after environments/macros. -relocated 1 -longdesc The package, as the name suggests, supplies tools to -longdesc automatically suppress indentations in following paragraphs, -longdesc specifically those following a particular macro or environment. -runfiles size=2 - RELOC/tex/latex/noindentafter/noindentafter.sty -docfiles size=62 - RELOC/doc/latex/noindentafter/README - RELOC/doc/latex/noindentafter/noindentafter-dry.sty - RELOC/doc/latex/noindentafter/noindentafter-packagedoc.cls - RELOC/doc/latex/noindentafter/noindentafter.pdf - RELOC/doc/latex/noindentafter/noindentafter.tex -catalogue-ctan /macros/latex/contrib/noindentafter -catalogue-date 2014-11-30 22:13:26 +0100 -catalogue-license lppl1.3 -catalogue-version 0.2.2 - -name noitcrul -category Package -revision 15878 -shortdesc Improved underlines in mathematics. -relocated 1 -longdesc The package provides a (maths mode) \underline variant which -longdesc doesn't impose italics correction at the end. -runfiles size=1 - RELOC/tex/latex/noitcrul/noitcrul.sty -docfiles size=26 - RELOC/doc/latex/noitcrul/README - RELOC/doc/latex/noitcrul/noitcrul.pdf -srcfiles size=3 - RELOC/source/latex/noitcrul/noitcrul.dtx - RELOC/source/latex/noitcrul/noitcrul.ins -catalogue-ctan /macros/latex/contrib/noitcrul -catalogue-date 2012-05-28 15:56:23 +0200 -catalogue-license lppl -catalogue-version 0.2 - -name nolbreaks -category Package -revision 26786 -shortdesc No line breaks in text. -relocated 1 -longdesc Use \nolbreaks{some text} to prevent line breaks in "some -longdesc text". This has the advantage over \mbox{} that glue (rubber -longdesc space) remains flexible. Most common cases are handled here -longdesc (\linebreak is disabled, for example) but spaces hidden in -longdesc macros or { } can still create break-points. -runfiles size=2 - RELOC/tex/latex/nolbreaks/nolbreaks.sty -docfiles size=34 - RELOC/doc/latex/nolbreaks/nolbreaks.pdf - RELOC/doc/latex/nolbreaks/nolbreaks.tex -catalogue-ctan /macros/latex/contrib/nolbreaks -catalogue-date 2012-06-01 11:46:45 +0200 -catalogue-license pd -catalogue-version 1.2 - -name nomencl -category Package -revision 15878 -shortdesc Produce lists of symbols as in nomenclature. -relocated 1 -longdesc Produces lists of symbols using the capabilities of the -longdesc MakeIndex program. -runfiles size=7 - RELOC/makeindex/nomencl/nomencl.ist - RELOC/tex/latex/nomencl/nomencl.sty - RELOC/tex/latex/nomencl/sample01.cfg - RELOC/tex/latex/nomencl/sample02.cfg - RELOC/tex/latex/nomencl/sample04.cfg - RELOC/tex/latex/nomencl/sample05.cfg -docfiles size=51 - RELOC/doc/latex/nomencl/README - RELOC/doc/latex/nomencl/nomencl.pdf -srcfiles size=16 - RELOC/source/latex/nomencl/nomencl.drv - RELOC/source/latex/nomencl/nomencl.dtx - RELOC/source/latex/nomencl/nomencl.ins -catalogue-ctan /macros/latex/contrib/nomencl -catalogue-date 2012-05-21 18:33:03 +0200 -catalogue-license lppl -catalogue-version 3.1a - -name nomentbl -category Package -revision 16549 -shortdesc Nomenclature typeset in a longtable -relocated 1 -longdesc Nomentbl typeset nomenclatures in a longtable instead of the -longdesc makeindex style of nomencl. A nomenclature entry may have three -longdesc arguments: Symbol, description and physical unit. -runfiles size=3 - RELOC/makeindex/nomentbl/nomentbl.ist - RELOC/tex/latex/nomentbl/nomentbl.sty -docfiles size=53 - RELOC/doc/latex/nomentbl/README - RELOC/doc/latex/nomentbl/example.pdf - RELOC/doc/latex/nomentbl/example.tex - RELOC/doc/latex/nomentbl/nomentbl.pdf -srcfiles size=6 - RELOC/source/latex/nomentbl/nomentbl.dtx - RELOC/source/latex/nomentbl/nomentbl.ins -catalogue-ctan /macros/latex/contrib/nomentbl -catalogue-date 2012-05-21 18:33:03 +0200 -catalogue-license lppl -catalogue-version 0.4 - -name nonfloat -category Package -revision 17598 -shortdesc Non-floating table and figure captions. -relocated 1 -longdesc Adjusts the figure and table environments to ensure that -longdesc centered objects as one line captions are centered as well. -longdesc Also the vertical spaces for table captions above the table are -longdesc changed. -runfiles size=1 - RELOC/tex/latex/nonfloat/nonfloat.sty -docfiles size=87 - RELOC/doc/latex/nonfloat/nonfloat-en.pdf - RELOC/doc/latex/nonfloat/nonfloat-en.tex - RELOC/doc/latex/nonfloat/nonfloat.pdf -srcfiles size=6 - RELOC/source/latex/nonfloat/nonfloat.drv - RELOC/source/latex/nonfloat/nonfloat.dtx - RELOC/source/latex/nonfloat/nonfloat.ins -catalogue-ctan /macros/latex/contrib/nonfloat -catalogue-date 2012-05-21 18:33:03 +0200 -catalogue-license pd -catalogue-version 1.0 - -name nonumonpart -category Package -revision 22114 -shortdesc Prevent page numbers on part pages. -relocated 1 -longdesc The package bundles the answer to the long-standing FAQ about -longdesc removing page numbers on \part pages. The package accepts no -longdesc options and defines no user commands; the user needs only to -longdesc load it, and the requirement is met. -runfiles size=1 - RELOC/tex/latex/nonumonpart/nonumonpart.sty -docfiles size=210 - RELOC/doc/latex/nonumonpart/LISEZMOI - RELOC/doc/latex/nonumonpart/README - RELOC/doc/latex/nonumonpart/nonumonpart-en.pdf - RELOC/doc/latex/nonumonpart/nonumonpart-fr.pdf - RELOC/doc/latex/nonumonpart/nonumonpart.pdf -srcfiles size=7 - RELOC/source/latex/nonumonpart/Makefile - RELOC/source/latex/nonumonpart/nonumonpart.dtx - RELOC/source/latex/nonumonpart/nonumonpart.ins -catalogue-ctan /macros/latex/contrib/nonumonpart -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.2 -catalogue-version 1 - -name nopageno -category Package -revision 18128 -shortdesc No page numbers in LaTeX documents. -relocated 1 -longdesc LaTeX's standard styles use two page styles, one on normal -longdesc pages and one on 'opening' pages with \maketitle or \chapter, -longdesc etc. Unfortunately there is only easy access to changing one of -longdesc these two so if you want something other than 'plain' on the -longdesc opening pages you must use \thispagestyle on each such page. -longdesc The fancyhdr package does provide a more flexible interface, -longdesc but if you just want an empty page style on all pages then this -longdesc package will do the job. -runfiles size=1 - RELOC/tex/latex/nopageno/nopageno.sty -docfiles size=44 - RELOC/doc/latex/nopageno/nopageno.pdf - RELOC/doc/latex/nopageno/nopageno.tex -catalogue-ctan /macros/latex/contrib/nopageno -catalogue-date 2012-06-09 12:09:52 +0200 -catalogue-license lppl - -name norasi-c90 -category Package -revision 37675 -shortdesc TeX support (from CJK) for the norasi font -relocated 1 -depend fonts-tlwg -execute addMap norasi-c90.map -runfiles size=10 - RELOC/dvips/norasi-c90/config.norasi-c90 - RELOC/fonts/map/dvips/norasi-c90/norasi-c90.map - RELOC/fonts/tfm/public/norasi-c90/ftnb8z.tfm - RELOC/fonts/tfm/public/norasi-c90/ftnbi8z.tfm - RELOC/fonts/tfm/public/norasi-c90/ftni8z.tfm - RELOC/fonts/tfm/public/norasi-c90/ftnr8z.tfm -srcfiles size=1 - RELOC/source/fonts/norasi-c90/norasi-c90.fontinst - -name nostarch -category Package -revision 15878 -shortdesc LaTeX class for No Starch Press. -relocated 1 -longdesc The package provides the "official" LaTeX style for No Starch -longdesc Press. Provided are a class, a package for interfacing to -longdesc hyperref and an index style file. The style serves both for -longdesc printed and for electronic books. -runfiles size=10 - RELOC/bibtex/bib/nostarch/nostarch.bib - RELOC/makeindex/nostarch/nostarch.ist - RELOC/tex/latex/nostarch/nostarch.cls - RELOC/tex/latex/nostarch/nshyper.sty -docfiles size=219 - RELOC/doc/latex/nostarch/100euroie.png - RELOC/doc/latex/nostarch/100euroit.png - RELOC/doc/latex/nostarch/1eurogr.jpg - RELOC/doc/latex/nostarch/README - RELOC/doc/latex/nostarch/nostarch.pdf - RELOC/doc/latex/nostarch/nssample.pdf - RELOC/doc/latex/nostarch/nssample.tex - RELOC/doc/latex/nostarch/recycled.png - RELOC/doc/latex/nostarch/vitruvian.jpg -srcfiles size=20 - RELOC/source/latex/nostarch/Makefile - RELOC/source/latex/nostarch/nostarch.dtx - RELOC/source/latex/nostarch/nostarch.ins -catalogue-ctan /macros/latex/contrib/nostarch -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.3 - -name notes2bib -category Package -revision 31162 -shortdesc Integrating notes into the bibliography. -relocated 1 -longdesc The package defines a new type of note, bibnote, which will -longdesc always be added to the bibliography. The package allows -longdesc footnotes and endnotes to be moved into the bibliography in the -longdesc same way. The package can be used with natbib and biblatex as -longdesc well as plain LaTeX citations. Both sorted and unsorted -longdesc bibliography styles are supported. The package uses the LaTeX 3 -longdesc macros and the associated xpackages bundle. It also makes use -longdesc of the e-TeX extensions (any post-2005 LaTeX distribution will -longdesc provide these by default, but users of older systems may need -longdesc to use an elatex command or equivalent). The package relies on -longdesc LaTeX 3 support from the l3kernel and l3packages bundles. -runfiles size=5 - RELOC/tex/latex/notes2bib/notes2bib.sty -docfiles size=50 - RELOC/doc/latex/notes2bib/README - RELOC/doc/latex/notes2bib/notes2bib.pdf -srcfiles size=15 - RELOC/source/latex/notes2bib/notes2bib.dtx -catalogue-ctan /macros/latex/contrib/notes2bib -catalogue-date 2014-08-08 18:24:57 +0200 -catalogue-license lppl -catalogue-version 2.0k - -name notes -category Package -revision 37998 -shortdesc Mark sections of a document. -relocated 1 -longdesc The package provides environments to highlight significant -longdesc portions of text within a document, by putting the text in a -longdesc box and adding an icon in the margin. (The icons are provided -longdesc as 'fig' sources, processable by xfig.) -runfiles size=11 - RELOC/tex/latex/notes/hand.eps - RELOC/tex/latex/notes/hand.pdf - RELOC/tex/latex/notes/hand.png - RELOC/tex/latex/notes/info.eps - RELOC/tex/latex/notes/info.pdf - RELOC/tex/latex/notes/info.png - RELOC/tex/latex/notes/notes.sty - RELOC/tex/latex/notes/warn.eps - RELOC/tex/latex/notes/warn.pdf - RELOC/tex/latex/notes/warn.png -docfiles size=32 - RELOC/doc/latex/notes/book.layout - RELOC/doc/latex/notes/hand.fig - RELOC/doc/latex/notes/info.fig - RELOC/doc/latex/notes/makedoc - RELOC/doc/latex/notes/makedoc.bat - RELOC/doc/latex/notes/notes.inc - RELOC/doc/latex/notes/notes.pdf - RELOC/doc/latex/notes/testnotes.tex - RELOC/doc/latex/notes/warn.fig -srcfiles size=7 - RELOC/source/latex/notes/Makefile - RELOC/source/latex/notes/notes.drv - RELOC/source/latex/notes/notes.dtx - RELOC/source/latex/notes/notes.ins -catalogue-ctan /macros/latex/contrib/notes -catalogue-date 2015-07-07 21:00:22 +0200 -catalogue-license lppl -catalogue-topics decoration -catalogue-version 1.0.1 - -name notoccite -category Package -revision 18129 -shortdesc Prevent trouble from citations in table of contents, etc. -relocated 1 -longdesc If you have \cite commands in \section-like commands, or in -longdesc \caption, the citation will also appear in the table of -longdesc contents, or list of whatever. If you are also using an unsrt- -longdesc like bibliography style, these citations will come at the very -longdesc start of the bibliography, which is confusing. This package -longdesc suppresses the effect. -runfiles size=1 - RELOC/tex/latex/notoccite/notoccite.sty -docfiles size=58 - RELOC/doc/latex/notoccite/notoccite.pdf - RELOC/doc/latex/notoccite/notoccite.tex -catalogue-ctan /macros/latex/contrib/notoccite -catalogue-date 2012-06-09 12:09:52 +0200 -catalogue-license pd - -name nowidow -category Package -revision 24066 -shortdesc Avoid widows. -relocated 1 -longdesc This package provides a useful macro to manage widow lines. -runfiles size=1 - RELOC/tex/latex/nowidow/nowidow.sty -docfiles size=44 - RELOC/doc/latex/nowidow/README - RELOC/doc/latex/nowidow/nowidow.pdf -srcfiles size=3 - RELOC/source/latex/nowidow/nowidow.dtx - RELOC/source/latex/nowidow/nowidow.ins -catalogue-ctan /macros/latex/contrib/nowidow -catalogue-date 2012-06-09 12:09:52 +0200 -catalogue-license lppl1.3 -catalogue-version 1.0 - -name nox -category Package -revision 30991 -shortdesc Adaptable tables. -relocated 1 -longdesc The package allows data, text (including (La)TeX commands or -longdesc environments) to be formatted into a array which may be split. -runfiles size=4 - RELOC/tex/latex/nox/nox.sty -docfiles size=47 - RELOC/doc/latex/nox/README - RELOC/doc/latex/nox/nox.pdf - RELOC/doc/latex/nox/nox.tex -catalogue-ctan /macros/latex/contrib/nox -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 - -name nrc -category Package -revision 29027 -shortdesc Class for the NRC technical journals. -relocated 1 -longdesc Macros, and some documentation, for typesetting papers for -longdesc submission to journals published by the National Research -longdesc Council Research Press. At present, only nrc2.cls (for two- -longdesc column layout) should be used. -runfiles size=34 - RELOC/tex/latex/nrc/nrc1.cls - RELOC/tex/latex/nrc/nrc1.sty - RELOC/tex/latex/nrc/nrc2.cls - RELOC/tex/latex/nrc/nrc2.sty -docfiles size=75 - RELOC/doc/latex/nrc/00-2013-feb-authors.txt - RELOC/doc/latex/nrc/README - RELOC/doc/latex/nrc/userguide.pdf - RELOC/doc/latex/nrc/userguide.tex -srcfiles size=41 - RELOC/source/latex/nrc/nrc.dtx - RELOC/source/latex/nrc/nrc.ins -catalogue-ctan /macros/latex/contrib/nrc -catalogue-date 2013-02-05 15:37:49 +0100 -catalogue-license lppl -catalogue-version 2.01a - -name ntgclass -category Package -revision 15878 -shortdesc "European" versions of standard classes. -relocated 1 -longdesc The bundle offers versions of the standard LaTeX article and -longdesc report classes, rewritten to reflect a more European design, -longdesc and the a4 package, which is better tuned to the shape of a4 -longdesc paper than is the a4paper class option of the standard classes. -longdesc The classes include several for article and report -longdesc requirements, and a letter class. The elements of the bundle -longdesc were designed by members of the Dutch TeX Users Group NTG. -runfiles size=73 - RELOC/tex/latex/ntgclass/a4.sty - RELOC/tex/latex/ntgclass/artikel1.cls - RELOC/tex/latex/ntgclass/artikel2.cls - RELOC/tex/latex/ntgclass/artikel3.cls - RELOC/tex/latex/ntgclass/boek.cls - RELOC/tex/latex/ntgclass/boek3.cls - RELOC/tex/latex/ntgclass/brief.cls - RELOC/tex/latex/ntgclass/ntg10.clo - RELOC/tex/latex/ntgclass/ntg11.clo - RELOC/tex/latex/ntgclass/ntg12.clo - RELOC/tex/latex/ntgclass/rapport1.cls - RELOC/tex/latex/ntgclass/rapport3.cls -docfiles size=313 - RELOC/doc/latex/ntgclass/00readme.txt - RELOC/doc/latex/ntgclass/a4.pdf - RELOC/doc/latex/ntgclass/artdoc.pdf - RELOC/doc/latex/ntgclass/artdoc.tex - RELOC/doc/latex/ntgclass/brief.pdf - RELOC/doc/latex/ntgclass/brief.tex - RELOC/doc/latex/ntgclass/briefdoc.pdf - RELOC/doc/latex/ntgclass/briefdoc.tex - RELOC/doc/latex/ntgclass/catalog.txt - RELOC/doc/latex/ntgclass/changes.txt - RELOC/doc/latex/ntgclass/classdoc.pdf - RELOC/doc/latex/ntgclass/classdoc.tex - RELOC/doc/latex/ntgclass/manifest.txt - RELOC/doc/latex/ntgclass/ntgclass.pdf - RELOC/doc/latex/ntgclass/rapdoc.pdf - RELOC/doc/latex/ntgclass/rapdoc.tex -srcfiles size=74 - RELOC/source/latex/ntgclass/a4.dtx - RELOC/source/latex/ntgclass/a4.ins - RELOC/source/latex/ntgclass/brief.dtx - RELOC/source/latex/ntgclass/ntgclass.dtx - RELOC/source/latex/ntgclass/ntgclass.ins -catalogue-ctan /macros/latex/contrib/ntgclass -catalogue-date 2012-07-17 11:53:13 +0200 -catalogue-license lppl1.3 -catalogue-version 2.1a - -name ntheorem -category Package -revision 27609 -shortdesc Enhanced theorem environment. -relocated 1 -longdesc The package offers enhancements for theorem-like environments: -longdesc easier control of layout; proper placement of endmarks even -longdesc when the environment ends with \end{enumerate} or -longdesc \end{displaymath} (including support for amsmath displayed- -longdesc equation environments); and support for making a list of -longdesc theorems, analagous to \listoffigures. -runfiles size=12 - RELOC/tex/latex/ntheorem/ntheorem.std - RELOC/tex/latex/ntheorem/ntheorem.sty -docfiles size=118 - RELOC/doc/latex/ntheorem/README - RELOC/doc/latex/ntheorem/ntheorem.pdf -srcfiles size=52 - RELOC/source/latex/ntheorem/ntheorem.drv - RELOC/source/latex/ntheorem/ntheorem.dtx - RELOC/source/latex/ntheorem/ntheorem.ins -catalogue-ctan /macros/latex/contrib/ntheorem -catalogue-date 2014-10-15 23:31:15 +0200 -catalogue-license lppl -catalogue-version 1.33 - -name ntheorem-vn -category Package -revision 15878 -shortdesc Vietnamese translation of documentation of ntheorem. -relocated 1 -longdesc This is a translation of the documentation provided with -longdesc ntheorem. -docfiles size=145 - RELOC/doc/latex/ntheorem-vn/COPYING - RELOC/doc/latex/ntheorem-vn/FILELIST - RELOC/doc/latex/ntheorem-vn/README - RELOC/doc/latex/ntheorem-vn/ntheorem-doc-vn.pdf - RELOC/doc/latex/ntheorem-vn/src/Makefile - RELOC/doc/latex/ntheorem-vn/src/README.src - RELOC/doc/latex/ntheorem-vn/src/TODO - RELOC/doc/latex/ntheorem-vn/src/endmarks.tex - RELOC/doc/latex/ntheorem-vn/src/example.tex - RELOC/doc/latex/ntheorem-vn/src/help.tex - RELOC/doc/latex/ntheorem-vn/src/interference.tex - RELOC/doc/latex/ntheorem-vn/src/intro.tex - RELOC/doc/latex/ntheorem-vn/src/license.tex - RELOC/doc/latex/ntheorem-vn/src/ntheorem-doc-vn.tex - RELOC/doc/latex/ntheorem-vn/src/preamble.tex - RELOC/doc/latex/ntheorem-vn/src/thanks.tex - RELOC/doc/latex/ntheorem-vn/src/title-abstract.tex - RELOC/doc/latex/ntheorem-vn/src/user-interface.tex - RELOC/doc/latex/ntheorem-vn/test.pdf - RELOC/doc/latex/ntheorem-vn/test.tex -catalogue-ctan /info/translations/ntheorem/vn -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.203 - -name nuc -category Package -revision 22256 -shortdesc Notation for nuclear isotopes. -relocated 1 -longdesc A simple package providing nuclear sub- and superscripts as -longdesc commonly used in radiochemistry, radiation science, and nuclear -longdesc physics and engineering applications. Isotopes which have Z -longdesc with more digits than A require special spacing to appear -longdesc properly; this spacing is supported in the package. -runfiles size=3 - RELOC/tex/latex/nuc/nuc.sty -docfiles size=23 - RELOC/doc/latex/nuc/README - RELOC/doc/latex/nuc/nuc.pdf - RELOC/doc/latex/nuc/nuc.tex -catalogue-ctan /macros/latex/contrib/nuc -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.1 - -name numberedblock -category Package -revision 33109 -shortdesc Print a block of code, with unique index number. -relocated 1 -longdesc The package has been created for the convenience of the report -longdesc writer; it provides the means to number, and label, code-block -longdesc snippets in your document. In this way, you can (unambiguously) -longdesc refer to each snippet elsewhere in your document. -runfiles size=2 - RELOC/tex/latex/numberedblock/numberedblock.sty -docfiles size=21 - RELOC/doc/latex/numberedblock/README - RELOC/doc/latex/numberedblock/testnumberedblock.pdf - RELOC/doc/latex/numberedblock/testnumberedblock.tex -catalogue-ctan /macros/latex/contrib/numberedblock -catalogue-date 2014-03-06 18:55:44 +0100 -catalogue-license lppl1.3 -catalogue-version 1.10 - -name numericplots -category Package -revision 31729 -shortdesc Plot numeric data (including Matlab export) using PSTricks. -relocated 1 -longdesc Plotting numeric data is a task which has often to be done for -longdesc scientific papers. LaTeX itself provides no facilities for -longdesc drawing more than the simplest plots from supplied data. The -longdesc package will process user input, and uses PSTricks to plot the -longdesc results. The package provides Matlab functions to transform -longdesc Matlab results to plottable data. -runfiles size=16 - RELOC/tex/latex/numericplots/NumericPlots.sty - RELOC/tex/latex/numericplots/NumericPlots_TickLabels.tex - RELOC/tex/latex/numericplots/NumericPlots_labels.tex - RELOC/tex/latex/numericplots/NumericPlots_legend.tex - RELOC/tex/latex/numericplots/NumericPlots_macros.tex - RELOC/tex/latex/numericplots/NumericPlots_styles.tex -docfiles size=373 - RELOC/doc/latex/numericplots/License.txt - RELOC/doc/latex/numericplots/NumericPlots.pdf - RELOC/doc/latex/numericplots/README - RELOC/doc/latex/numericplots/README.TEXLIVE - RELOC/doc/latex/numericplots/src/BasicFunctionality.tex - RELOC/doc/latex/numericplots/src/FurtherExamples.tex - RELOC/doc/latex/numericplots/src/MatlabSupport.tex - RELOC/doc/latex/numericplots/src/MultiplePlots.tex - RELOC/doc/latex/numericplots/src/NumericPlotsDoc.tex - RELOC/doc/latex/numericplots/src/Roll406_Ref2288.tex - RELOC/doc/latex/numericplots/src/TechnicalDetails.tex - RELOC/doc/latex/numericplots/src/TestPlots.tex - RELOC/doc/latex/numericplots/src/examples/BodeDiagramm.tex - RELOC/doc/latex/numericplots/src/examples/DataTestRealData.tex - RELOC/doc/latex/numericplots/src/examples/DefineData.tex - RELOC/doc/latex/numericplots/src/examples/LabelsNTickLabels.tex - RELOC/doc/latex/numericplots/src/examples/NyquistPlot.tex - RELOC/doc/latex/numericplots/src/examples/Sprungantwort_PT1Glied.tex - RELOC/doc/latex/numericplots/src/examples/basic_Boxes.tex - RELOC/doc/latex/numericplots/src/examples/basic_EasyPlot.tex - RELOC/doc/latex/numericplots/src/examples/basic_Grid.tex - RELOC/doc/latex/numericplots/src/examples/basic_Labels.tex - RELOC/doc/latex/numericplots/src/examples/basic_Legend.tex - RELOC/doc/latex/numericplots/src/examples/basic_LegendI.tex - RELOC/doc/latex/numericplots/src/examples/basic_LegendII.tex - RELOC/doc/latex/numericplots/src/examples/basic_LegendIII.tex - RELOC/doc/latex/numericplots/src/examples/basic_LineStyles.tex - RELOC/doc/latex/numericplots/src/examples/basic_Lines.tex - RELOC/doc/latex/numericplots/src/examples/basic_LogarithmicI.tex - RELOC/doc/latex/numericplots/src/examples/basic_LogarithmicII.tex - RELOC/doc/latex/numericplots/src/examples/basic_LogarithmicIII.tex - RELOC/doc/latex/numericplots/src/examples/basic_MultipleData.tex - RELOC/doc/latex/numericplots/src/examples/basic_Objects.tex - RELOC/doc/latex/numericplots/src/examples/basic_PlaceObjects.tex - RELOC/doc/latex/numericplots/src/examples/basic_PlaceObjectsII.tex - RELOC/doc/latex/numericplots/src/examples/basic_PlotWHoles.tex - RELOC/doc/latex/numericplots/src/examples/basic_UseRput.tex - RELOC/doc/latex/numericplots/src/examples/basic_UserLinestyles.tex - RELOC/doc/latex/numericplots/src/examples/data_BodeDiagrammLinearerTerm.tex - RELOC/doc/latex/numericplots/src/examples/data_Nyquist.tex - RELOC/doc/latex/numericplots/src/examples/data_SprungantwortPT1Glied.tex - RELOC/doc/latex/numericplots/src/examples/furtherEx_TickLabels.tex - RELOC/doc/latex/numericplots/src/examples/multiplots_exampleI.tex - RELOC/doc/latex/numericplots/src/examples/multiplots_exampleII.tex - RELOC/doc/latex/numericplots/src/examples/multiplots_exampleIII.tex - RELOC/doc/latex/numericplots/src/fig_NoiseData_ClosedLine.eps - RELOC/doc/latex/numericplots/src/fig_NoiseData_OpenLine.eps - RELOC/doc/latex/numericplots/src/history.tex - RELOC/doc/latex/numericplots/src/keys_NumericDataPlot.tex - RELOC/doc/latex/numericplots/src/options.tex -catalogue-ctan /graphics/pstricks/contrib/numericplots -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license gpl3 -catalogue-version 2.0.2 - -name numname -category Package -revision 18130 -shortdesc Convert a number to its English expression. -relocated 1 -longdesc The package can generate cardinal (one, two, ...) and ordinal -longdesc (first, second, ...) numbers. The code derives from the memoir -longdesc class, and is extracted for the convenience of non-users of -longdesc that class. -runfiles size=5 - RELOC/tex/latex/numname/numname.sty -docfiles size=30 - RELOC/doc/latex/numname/README - RELOC/doc/latex/numname/numname.pdf - RELOC/doc/latex/numname/numname.tex -catalogue-ctan /macros/latex/contrib/numname -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl - -name numprint -category Package -revision 27498 -shortdesc Print numbers with separators and exponent if necessary. -relocated 1 -longdesc The package numprint prints numbers with a separator every -longdesc three digits and converts numbers given as 12345.6e789 to -longdesc 12\,345,6\cdot 10^{789}. Numbers are printed in the current -longdesc mode (text or math) in order to use the correct font. Many -longdesc things, including the decimal sign, the thousand separator, as -longdesc well as the product sign can be changed by the user, e.g., to -longdesc reach 12,345.6\times 10^{789}. If an optional argument is given -longdesc it is printed upright as unit. Numbers can be rounded to a -longdesc given number of digits. The package supports an automatic, -longdesc language-dependent change of the number format. Tabular -longdesc alignment using the tabular(*), array, tabularx, and longtable -longdesc environments (similar to the dcolumn and rccol packages) is -longdesc supported using all features of numprint. Additional text can -longdesc be added before and after the formatted number. -runfiles size=17 - RELOC/tex/latex/numprint/nbaseprt.sty - RELOC/tex/latex/numprint/numprint.sty - RELOC/tex/latex/numprint/numprint032.sty -docfiles size=297 - RELOC/doc/latex/numprint/ChangeLog.nbaseprt - RELOC/doc/latex/numprint/ChangeLog.numprint - RELOC/doc/latex/numprint/Makefile - RELOC/doc/latex/numprint/README - RELOC/doc/latex/numprint/getversion.tex - RELOC/doc/latex/numprint/nbaseprt.pdf - RELOC/doc/latex/numprint/nbaseprttest.tex - RELOC/doc/latex/numprint/numprint.pdf - RELOC/doc/latex/numprint/numprinttest.tex -srcfiles size=61 - RELOC/source/latex/numprint/nbaseprt.dtx - RELOC/source/latex/numprint/numprint.dtx - RELOC/source/latex/numprint/numprint.ins - RELOC/source/latex/numprint/numprint032.dtx -catalogue-ctan /macros/latex/contrib/numprint -catalogue-date 2012-08-22 15:46:20 +0200 -catalogue-license lppl -catalogue-version 1.39 - -name oberdiek -category Package -revision 33322 -shortdesc A bundle of packages submitted by Heiko Oberdiek. -relocated 1 -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 graphics bundle; hosub: -longdesc build collections of packages; holtxdoc: extra documentation -longdesc macros; hologo: bookmark-enabled logos; hopatch: safely apply -longdesc package patches; hycolor: implements the color option stuff -longdesc that is used by packages hyperref and bookmark; hypbmsec: -longdesc bookmarks in sectioning commands; hypcap: anjusting anchors of -longdesc captions; hypdestopt: optimising hyperref's pdftex driver -longdesc destinations; hypdoc: hyper-references in the LaTeX standard -longdesc doc package; hypgotoe: experimental package for links to -longdesc embedded files; hyphsubst: substitute hyphenation patterns; -longdesc ifdraft: switch for option draft; iflang: provides expandable -longdesc checks for the current language; ifluatex: looks for LuaTeX -longdesc regardless of its mode and provides the switch \ifluatex; -longdesc ifpdf: provides the \ifpdf switch; ifvtex: provides the \ifvtex -longdesc switch; infwarerr: provides a complete set of macros for -longdesc informations, warnings and error messages with support for -longdesc plain TeX; inputenx: enhanced handling of input encoding; -longdesc intcalc: provides expandable arithmetic operations with -longdesc integers; kvdefinekeys: define key-value keys in the same -longdesc manner as keyval; kvoptions: use package options in key value -longdesc format ; kvsetkeys: a variant of the \setkeys command; -longdesc letltxmacro: Let assignment for LaTeX macros; listingsutf8: -longdesc (partially) extends the listings package to UTF-8 encoding; -longdesc ltxcmds: exports some utility macros from the LaTeX kernel into -longdesc a separate namespace and also provides them for other formats -longdesc such as plain-TeX; luacolor: implements colour support based on -longdesc LuaTeX's node attributes; luatex: utilises new and extended -longdesc features and resources that LuaTeX provides; magicnum: allows -longdesc to access magic numbers by a hierarchical name system; -longdesc makerobust: make a command robust; pagegrid: prints a page grid -longdesc in the background; pagesel: select pages of a document for -longdesc output; pdfcolfoot: using pdftex's color stack for footnotes; -longdesc pdfcol: macros for setting and maintaining new color stacks; -longdesc pdfcolmk: PDFTeX COLour MarK -- fake a PDFTeX colour stack -longdesc using marks (not needed for PDFTeX 1.40.0 and later); -longdesc pdfcolparallel: fixes colour problems in package parallel; -longdesc pdfcolparcolumns: fixes colour problems in package parcolumns; -longdesc pdfcrypt: setting PDF encryption; pdfescape: pdfTeX's escape -longdesc features using TeX or e-TeX; pdflscape: landscape pages in PDF; -longdesc pdfrender: control PDF rendering modes; pdftexcmds: provide -longdesc PDFTeX primitives missing in LuaTeX; picture: dimens for -longdesc picture macros; pmboxdraw: poor man's box drawing characters; -longdesc protecteddef: define a command that protected against -longdesc expansion; refcount: using the numeric values of references; -longdesc rerunfilecheck: checksum based rerun checks on auxiliary 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. -runfiles size=703 - RELOC/bibtex/bib/oberdiek/oberdiek-bundle.bib - RELOC/bibtex/bib/oberdiek/oberdiek-source.bib - RELOC/scripts/oberdiek/luacolor-pre065.lua - RELOC/scripts/oberdiek/luacolor.lua - RELOC/scripts/oberdiek/magicnum.lua - RELOC/scripts/oberdiek/oberdiek.luacolor-pre065.lua - RELOC/scripts/oberdiek/oberdiek.luacolor.lua - RELOC/scripts/oberdiek/oberdiek.luatex.lua - RELOC/scripts/oberdiek/oberdiek.magicnum.lua - RELOC/scripts/oberdiek/oberdiek.pdftexcmds.lua - RELOC/scripts/oberdiek/pdfatfi.pl - RELOC/scripts/oberdiek/pdftexcmds.lua - RELOC/tex/generic/oberdiek/alphalph.sty - RELOC/tex/generic/oberdiek/atbegshi.sty - RELOC/tex/generic/oberdiek/bigintcalc.sty - RELOC/tex/generic/oberdiek/bitset.sty - RELOC/tex/generic/oberdiek/catchfile.sty - RELOC/tex/generic/oberdiek/embedfile.sty - RELOC/tex/generic/oberdiek/engord.sty - RELOC/tex/generic/oberdiek/eolgrab.sty - RELOC/tex/generic/oberdiek/etexcmds.sty - RELOC/tex/generic/oberdiek/fibnum.sty - RELOC/tex/generic/oberdiek/gettitlestring.sty - RELOC/tex/generic/oberdiek/hobsub-generic.sty - RELOC/tex/generic/oberdiek/hobsub-hyperref.sty - RELOC/tex/generic/oberdiek/hobsub.sty - RELOC/tex/generic/oberdiek/hologo.sty - RELOC/tex/generic/oberdiek/hyphsubst.sty - RELOC/tex/generic/oberdiek/iflang.sty - RELOC/tex/generic/oberdiek/ifpdf.sty - RELOC/tex/generic/oberdiek/ifvtex.sty - RELOC/tex/generic/oberdiek/infwarerr.sty - RELOC/tex/generic/oberdiek/intcalc.sty - RELOC/tex/generic/oberdiek/kvdefinekeys.sty - RELOC/tex/generic/oberdiek/kvsetkeys.sty - RELOC/tex/generic/oberdiek/ltxcmds.sty - RELOC/tex/generic/oberdiek/luatex-loader.sty - RELOC/tex/generic/oberdiek/luatex.sty - RELOC/tex/generic/oberdiek/magicnum.sty - RELOC/tex/generic/oberdiek/mleftright.sty - RELOC/tex/generic/oberdiek/pdfcol.sty - RELOC/tex/generic/oberdiek/pdfcrypt.sty - RELOC/tex/generic/oberdiek/pdfescape.sty - RELOC/tex/generic/oberdiek/pdfrender.sty - RELOC/tex/generic/oberdiek/pdftexcmds.sty - RELOC/tex/generic/oberdiek/protecteddef.sty - RELOC/tex/generic/oberdiek/rotchiffre.sty - RELOC/tex/generic/oberdiek/se-ascii-print.def - RELOC/tex/generic/oberdiek/se-ascii.def - RELOC/tex/generic/oberdiek/se-clean7bit.def - RELOC/tex/generic/oberdiek/se-cp1250.def - RELOC/tex/generic/oberdiek/se-cp1251.def - RELOC/tex/generic/oberdiek/se-cp1252.def - RELOC/tex/generic/oberdiek/se-cp1257.def - RELOC/tex/generic/oberdiek/se-cp437.def - RELOC/tex/generic/oberdiek/se-cp850.def - RELOC/tex/generic/oberdiek/se-cp852.def - RELOC/tex/generic/oberdiek/se-cp855.def - RELOC/tex/generic/oberdiek/se-cp858.def - RELOC/tex/generic/oberdiek/se-cp865.def - RELOC/tex/generic/oberdiek/se-cp866.def - RELOC/tex/generic/oberdiek/se-dec-mcs.def - RELOC/tex/generic/oberdiek/se-iso-8859-1.def - RELOC/tex/generic/oberdiek/se-iso-8859-10.def - RELOC/tex/generic/oberdiek/se-iso-8859-11.def - RELOC/tex/generic/oberdiek/se-iso-8859-13.def - RELOC/tex/generic/oberdiek/se-iso-8859-14.def - RELOC/tex/generic/oberdiek/se-iso-8859-15.def - RELOC/tex/generic/oberdiek/se-iso-8859-16.def - RELOC/tex/generic/oberdiek/se-iso-8859-2.def - RELOC/tex/generic/oberdiek/se-iso-8859-3.def - RELOC/tex/generic/oberdiek/se-iso-8859-4.def - RELOC/tex/generic/oberdiek/se-iso-8859-5.def - RELOC/tex/generic/oberdiek/se-iso-8859-6.def - RELOC/tex/generic/oberdiek/se-iso-8859-7.def - RELOC/tex/generic/oberdiek/se-iso-8859-8.def - RELOC/tex/generic/oberdiek/se-iso-8859-9.def - RELOC/tex/generic/oberdiek/se-koi8-r.def - RELOC/tex/generic/oberdiek/se-mac-centeuro.def - RELOC/tex/generic/oberdiek/se-mac-cyrillic.def - RELOC/tex/generic/oberdiek/se-mac-roman.def - RELOC/tex/generic/oberdiek/se-nextstep.def - RELOC/tex/generic/oberdiek/se-pdfdoc.def - RELOC/tex/generic/oberdiek/se-utf16le.def - RELOC/tex/generic/oberdiek/se-utf32be.def - RELOC/tex/generic/oberdiek/se-utf32le.def - RELOC/tex/generic/oberdiek/se-utf8.def - RELOC/tex/generic/oberdiek/setouterhbox.sty - RELOC/tex/generic/oberdiek/soulutf8.sty - RELOC/tex/generic/oberdiek/stringenc.sty - RELOC/tex/generic/oberdiek/telprint.sty - RELOC/tex/generic/oberdiek/thepdfnumber.sty - RELOC/tex/generic/oberdiek/uniquecounter.sty - RELOC/tex/latex/oberdiek/accsupp-dvipdfm.def - RELOC/tex/latex/oberdiek/accsupp-dvips.def - RELOC/tex/latex/oberdiek/accsupp-pdftex.def - RELOC/tex/latex/oberdiek/accsupp.sty - RELOC/tex/latex/oberdiek/aliascnt.sty - RELOC/tex/latex/oberdiek/askinclude.sty - RELOC/tex/latex/oberdiek/atenddvi.sty - RELOC/tex/latex/oberdiek/atfi-dvipdfmx.def - RELOC/tex/latex/oberdiek/atfi-dvips.def - RELOC/tex/latex/oberdiek/atfi-pdftex.def - RELOC/tex/latex/oberdiek/attachfile2.sty - RELOC/tex/latex/oberdiek/atveryend.sty - RELOC/tex/latex/oberdiek/auxhook.sty - RELOC/tex/latex/oberdiek/bkm-dvipdfm.def - RELOC/tex/latex/oberdiek/bkm-dvips.def - RELOC/tex/latex/oberdiek/bkm-dvipsone.def - RELOC/tex/latex/oberdiek/bkm-pdftex.def - RELOC/tex/latex/oberdiek/bkm-textures.def - RELOC/tex/latex/oberdiek/bkm-vtex.def - RELOC/tex/latex/oberdiek/bmpsize-base.sty - RELOC/tex/latex/oberdiek/bmpsize-dvipdfm.def - RELOC/tex/latex/oberdiek/bmpsize-dvipdfmx.def - RELOC/tex/latex/oberdiek/bmpsize-dvips.def - RELOC/tex/latex/oberdiek/bmpsize-test.tex - RELOC/tex/latex/oberdiek/bmpsize.sty - RELOC/tex/latex/oberdiek/bookmark.sty - RELOC/tex/latex/oberdiek/centernot.sty - RELOC/tex/latex/oberdiek/chemarr.sty - RELOC/tex/latex/oberdiek/classlist.sty - RELOC/tex/latex/oberdiek/colonequals.sty - RELOC/tex/latex/oberdiek/dtx-attach.sty - RELOC/tex/latex/oberdiek/dvipscol.sty - RELOC/tex/latex/oberdiek/enparen.sty - RELOC/tex/latex/oberdiek/epstopdf-base.sty - RELOC/tex/latex/oberdiek/epstopdf.sty - RELOC/tex/latex/oberdiek/flags.sty - RELOC/tex/latex/oberdiek/grfext.sty - RELOC/tex/latex/oberdiek/grffile.sty - RELOC/tex/latex/oberdiek/holtxdoc.sty - RELOC/tex/latex/oberdiek/hopatch.sty - RELOC/tex/latex/oberdiek/hycolor.sty - RELOC/tex/latex/oberdiek/hypbmsec.sty - RELOC/tex/latex/oberdiek/hypcap.sty - RELOC/tex/latex/oberdiek/hypdestopt.sty - RELOC/tex/latex/oberdiek/hypdoc.sty - RELOC/tex/latex/oberdiek/hypgotoe.sty - RELOC/tex/latex/oberdiek/ifdraft.sty - RELOC/tex/latex/oberdiek/inputenx.sty - RELOC/tex/latex/oberdiek/ix-alias.def - RELOC/tex/latex/oberdiek/ix-math.def - RELOC/tex/latex/oberdiek/ix-name.def - RELOC/tex/latex/oberdiek/ix-slot.def - RELOC/tex/latex/oberdiek/ix-uc.def - RELOC/tex/latex/oberdiek/ix-utf8enc.dfu - RELOC/tex/latex/oberdiek/kvoptions-patch.sty - RELOC/tex/latex/oberdiek/kvoptions.sty - RELOC/tex/latex/oberdiek/letltxmacro.sty - RELOC/tex/latex/oberdiek/listingsutf8.sty - RELOC/tex/latex/oberdiek/luacolor.sty - RELOC/tex/latex/oberdiek/makerobust.sty - RELOC/tex/latex/oberdiek/pagegrid.sty - RELOC/tex/latex/oberdiek/pagesel.sty - RELOC/tex/latex/oberdiek/pdfcolfoot.sty - RELOC/tex/latex/oberdiek/pdfcolmk.sty - RELOC/tex/latex/oberdiek/pdfcolparallel.sty - RELOC/tex/latex/oberdiek/pdfcolparcolumns.sty - RELOC/tex/latex/oberdiek/pdflscape.sty - RELOC/tex/latex/oberdiek/picture.sty - RELOC/tex/latex/oberdiek/pmboxdraw.sty - RELOC/tex/latex/oberdiek/pmboxdrawenc.dfu - RELOC/tex/latex/oberdiek/refcount.sty - RELOC/tex/latex/oberdiek/rerunfilecheck.sty - RELOC/tex/latex/oberdiek/resizegather.sty - RELOC/tex/latex/oberdiek/scrindex.sty - RELOC/tex/latex/oberdiek/selinput.sty - RELOC/tex/latex/oberdiek/settobox.sty - RELOC/tex/latex/oberdiek/stackrel.sty - RELOC/tex/latex/oberdiek/stampinclude.sty - RELOC/tex/latex/oberdiek/tabularht.sty - RELOC/tex/latex/oberdiek/tabularkv.sty - RELOC/tex/latex/oberdiek/transparent.sty - RELOC/tex/latex/oberdiek/twoopt.sty - RELOC/tex/latex/oberdiek/x-ascii.def - RELOC/tex/latex/oberdiek/x-atarist.def - RELOC/tex/latex/oberdiek/x-cp1250.def - RELOC/tex/latex/oberdiek/x-cp1251.def - RELOC/tex/latex/oberdiek/x-cp1252.def - RELOC/tex/latex/oberdiek/x-cp1255.def - RELOC/tex/latex/oberdiek/x-cp1257.def - RELOC/tex/latex/oberdiek/x-cp437.def - RELOC/tex/latex/oberdiek/x-cp850.def - RELOC/tex/latex/oberdiek/x-cp852.def - RELOC/tex/latex/oberdiek/x-cp855.def - RELOC/tex/latex/oberdiek/x-cp858.def - RELOC/tex/latex/oberdiek/x-cp865.def - RELOC/tex/latex/oberdiek/x-cp866.def - RELOC/tex/latex/oberdiek/x-dec-mcs.def - RELOC/tex/latex/oberdiek/x-iso-8859-1.def - RELOC/tex/latex/oberdiek/x-iso-8859-10.def - RELOC/tex/latex/oberdiek/x-iso-8859-13.def - RELOC/tex/latex/oberdiek/x-iso-8859-14.def - RELOC/tex/latex/oberdiek/x-iso-8859-15.def - RELOC/tex/latex/oberdiek/x-iso-8859-16.def - RELOC/tex/latex/oberdiek/x-iso-8859-2.def - RELOC/tex/latex/oberdiek/x-iso-8859-3.def - RELOC/tex/latex/oberdiek/x-iso-8859-4.def - RELOC/tex/latex/oberdiek/x-iso-8859-5.def - RELOC/tex/latex/oberdiek/x-iso-8859-8.def - RELOC/tex/latex/oberdiek/x-iso-8859-9.def - RELOC/tex/latex/oberdiek/x-koi8-r.def - RELOC/tex/latex/oberdiek/x-mac-centeuro.def - RELOC/tex/latex/oberdiek/x-mac-cyrillic.def - RELOC/tex/latex/oberdiek/x-mac-roman.def - RELOC/tex/latex/oberdiek/x-nextstep.def - RELOC/tex/latex/oberdiek/x-verbatim.def - RELOC/tex/latex/oberdiek/xcolor-patch.sty - RELOC/tex/latex/oberdiek/zref-abspage.sty - RELOC/tex/latex/oberdiek/zref-abspos.sty - RELOC/tex/latex/oberdiek/zref-base.sty - RELOC/tex/latex/oberdiek/zref-counter.sty - RELOC/tex/latex/oberdiek/zref-dotfill.sty - RELOC/tex/latex/oberdiek/zref-env.sty - RELOC/tex/latex/oberdiek/zref-hyperref.sty - RELOC/tex/latex/oberdiek/zref-lastpage.sty - RELOC/tex/latex/oberdiek/zref-marks.sty - RELOC/tex/latex/oberdiek/zref-nextpage.sty - RELOC/tex/latex/oberdiek/zref-pageattr.sty - RELOC/tex/latex/oberdiek/zref-pagelayout.sty - RELOC/tex/latex/oberdiek/zref-perpage.sty - RELOC/tex/latex/oberdiek/zref-runs.sty - RELOC/tex/latex/oberdiek/zref-savepos.sty - RELOC/tex/latex/oberdiek/zref-thepage.sty - RELOC/tex/latex/oberdiek/zref-titleref.sty - RELOC/tex/latex/oberdiek/zref-totpages.sty - RELOC/tex/latex/oberdiek/zref-user.sty - RELOC/tex/latex/oberdiek/zref-xr.sty - RELOC/tex/latex/oberdiek/zref.sty -docfiles size=4923 - RELOC/doc/latex/oberdiek/accsupp-example1.tex - RELOC/doc/latex/oberdiek/accsupp-example2.tex - RELOC/doc/latex/oberdiek/accsupp.pdf - RELOC/doc/latex/oberdiek/aliascnt.pdf - RELOC/doc/latex/oberdiek/alphalph.pdf - RELOC/doc/latex/oberdiek/askinclude.pdf - RELOC/doc/latex/oberdiek/atbegshi-example1.tex - RELOC/doc/latex/oberdiek/atbegshi-example2.tex - RELOC/doc/latex/oberdiek/atbegshi.pdf - RELOC/doc/latex/oberdiek/atenddvi.pdf - RELOC/doc/latex/oberdiek/attachfile2.pdf - RELOC/doc/latex/oberdiek/atveryend.pdf - RELOC/doc/latex/oberdiek/auxhook.pdf - RELOC/doc/latex/oberdiek/bigintcalc.pdf - RELOC/doc/latex/oberdiek/bitset.pdf - RELOC/doc/latex/oberdiek/bmpsize.pdf - RELOC/doc/latex/oberdiek/bookmark-example.tex - RELOC/doc/latex/oberdiek/bookmark.pdf - RELOC/doc/latex/oberdiek/catchfile.pdf - RELOC/doc/latex/oberdiek/centernot.pdf - RELOC/doc/latex/oberdiek/chemarr-example.tex - RELOC/doc/latex/oberdiek/chemarr.pdf - RELOC/doc/latex/oberdiek/classlist.pdf - RELOC/doc/latex/oberdiek/colonequals.pdf - RELOC/doc/latex/oberdiek/dvipscol.pdf - RELOC/doc/latex/oberdiek/embedfile-example-collection.tex - RELOC/doc/latex/oberdiek/embedfile-example-plain.tex - RELOC/doc/latex/oberdiek/embedfile.pdf - RELOC/doc/latex/oberdiek/engord.pdf - RELOC/doc/latex/oberdiek/enparen.pdf - RELOC/doc/latex/oberdiek/eolgrab.pdf - RELOC/doc/latex/oberdiek/epstopdf.pdf - RELOC/doc/latex/oberdiek/etexcmds.pdf - RELOC/doc/latex/oberdiek/example-mycolorsetup.sty - RELOC/doc/latex/oberdiek/example/eolgrab-example-env.tex - RELOC/doc/latex/oberdiek/example/eolgrab-example-ltx.tex - RELOC/doc/latex/oberdiek/example/eolgrab-example-sec.tex - RELOC/doc/latex/oberdiek/example/hologo-example.tex - RELOC/doc/latex/oberdiek/fibnum.pdf - RELOC/doc/latex/oberdiek/flags.pdf - RELOC/doc/latex/oberdiek/gettitlestring.pdf - RELOC/doc/latex/oberdiek/grfext.pdf - RELOC/doc/latex/oberdiek/grffile.pdf - RELOC/doc/latex/oberdiek/hobsub.pdf - RELOC/doc/latex/oberdiek/hologo.pdf - RELOC/doc/latex/oberdiek/holtxdoc.pdf - RELOC/doc/latex/oberdiek/hopatch.pdf - RELOC/doc/latex/oberdiek/hycolor.pdf - RELOC/doc/latex/oberdiek/hypbmsec.pdf - RELOC/doc/latex/oberdiek/hypcap.pdf - RELOC/doc/latex/oberdiek/hypdestopt.pdf - RELOC/doc/latex/oberdiek/hypdoc.pdf - RELOC/doc/latex/oberdiek/hypgotoe-example.tex - RELOC/doc/latex/oberdiek/hypgotoe.pdf - RELOC/doc/latex/oberdiek/hyphsubst.pdf - RELOC/doc/latex/oberdiek/ifdraft.pdf - RELOC/doc/latex/oberdiek/iflang.pdf - RELOC/doc/latex/oberdiek/ifpdf.pdf - RELOC/doc/latex/oberdiek/ifvtex.pdf - RELOC/doc/latex/oberdiek/infwarerr.pdf - RELOC/doc/latex/oberdiek/inputenx-licrcmds.txt - RELOC/doc/latex/oberdiek/inputenx-utf8enc.txt - RELOC/doc/latex/oberdiek/inputenx.pdf - RELOC/doc/latex/oberdiek/intcalc.pdf - RELOC/doc/latex/oberdiek/kvdefinekeys.pdf - RELOC/doc/latex/oberdiek/kvoptions.pdf - RELOC/doc/latex/oberdiek/kvsetkeys-example.tex - RELOC/doc/latex/oberdiek/kvsetkeys.pdf - RELOC/doc/latex/oberdiek/letltxmacro-showcases.tex - RELOC/doc/latex/oberdiek/letltxmacro.pdf - RELOC/doc/latex/oberdiek/listingsutf8.pdf - RELOC/doc/latex/oberdiek/ltxcmds.pdf - RELOC/doc/latex/oberdiek/luacolor.pdf - RELOC/doc/latex/oberdiek/luatex.pdf - RELOC/doc/latex/oberdiek/magicnum.pdf - RELOC/doc/latex/oberdiek/magicnum.txt - RELOC/doc/latex/oberdiek/makerobust-example.tex - RELOC/doc/latex/oberdiek/makerobust.pdf - RELOC/doc/latex/oberdiek/mleftright.pdf - RELOC/doc/latex/oberdiek/oberdiek.pdf - RELOC/doc/latex/oberdiek/pagegrid.pdf - RELOC/doc/latex/oberdiek/pagesel.pdf - RELOC/doc/latex/oberdiek/pdfcol.pdf - RELOC/doc/latex/oberdiek/pdfcolfoot.pdf - RELOC/doc/latex/oberdiek/pdfcolmk.pdf - RELOC/doc/latex/oberdiek/pdfcolparallel.pdf - RELOC/doc/latex/oberdiek/pdfcolparcolumns.pdf - RELOC/doc/latex/oberdiek/pdfcrypt.pdf - RELOC/doc/latex/oberdiek/pdfescape.pdf - RELOC/doc/latex/oberdiek/pdflscape.pdf - RELOC/doc/latex/oberdiek/pdfrender.pdf - RELOC/doc/latex/oberdiek/pdftexcmds.pdf - RELOC/doc/latex/oberdiek/picture-example.tex - RELOC/doc/latex/oberdiek/picture.pdf - RELOC/doc/latex/oberdiek/pmboxdraw.pdf - RELOC/doc/latex/oberdiek/protecteddef.pdf - RELOC/doc/latex/oberdiek/refcount.pdf - RELOC/doc/latex/oberdiek/rerunfilecheck-example.cfg - RELOC/doc/latex/oberdiek/rerunfilecheck.pdf - RELOC/doc/latex/oberdiek/resizegather.pdf - RELOC/doc/latex/oberdiek/rotchiffre.pdf - RELOC/doc/latex/oberdiek/scrindex-example1.tex - RELOC/doc/latex/oberdiek/scrindex-example2.tex - RELOC/doc/latex/oberdiek/scrindex.pdf - RELOC/doc/latex/oberdiek/selinput.pdf - RELOC/doc/latex/oberdiek/setouterhbox-example.tex - RELOC/doc/latex/oberdiek/setouterhbox.pdf - RELOC/doc/latex/oberdiek/settobox-example.tex - RELOC/doc/latex/oberdiek/settobox.pdf - RELOC/doc/latex/oberdiek/soulutf8.pdf - RELOC/doc/latex/oberdiek/stackrel.pdf - RELOC/doc/latex/oberdiek/stampinclude.pdf - RELOC/doc/latex/oberdiek/stringenc.pdf - RELOC/doc/latex/oberdiek/tabularht-example1.tex - RELOC/doc/latex/oberdiek/tabularht-example2.tex - RELOC/doc/latex/oberdiek/tabularht.pdf - RELOC/doc/latex/oberdiek/tabularkv-example.tex - RELOC/doc/latex/oberdiek/tabularkv.pdf - RELOC/doc/latex/oberdiek/telprint.pdf - RELOC/doc/latex/oberdiek/test/ExtractRotate.java - RELOC/doc/latex/oberdiek/test/accsupp-test1.tex - RELOC/doc/latex/oberdiek/test/alphalph-test1.tex - RELOC/doc/latex/oberdiek/test/alphalph-test2.tex - RELOC/doc/latex/oberdiek/test/alphalph-test3.tex - RELOC/doc/latex/oberdiek/test/askinclude-a.tex - RELOC/doc/latex/oberdiek/test/askinclude-b.tex - RELOC/doc/latex/oberdiek/test/askinclude-c.tex - RELOC/doc/latex/oberdiek/test/askinclude-test1.tex - RELOC/doc/latex/oberdiek/test/askinclude-test10.tex - RELOC/doc/latex/oberdiek/test/askinclude-test11.tex - RELOC/doc/latex/oberdiek/test/askinclude-test12.tex - RELOC/doc/latex/oberdiek/test/askinclude-test13.tex - RELOC/doc/latex/oberdiek/test/askinclude-test14.tex - RELOC/doc/latex/oberdiek/test/askinclude-test15.tex - RELOC/doc/latex/oberdiek/test/askinclude-test16.tex - RELOC/doc/latex/oberdiek/test/askinclude-test17.tex - RELOC/doc/latex/oberdiek/test/askinclude-test18.tex - RELOC/doc/latex/oberdiek/test/askinclude-test19.tex - RELOC/doc/latex/oberdiek/test/askinclude-test2.tex - RELOC/doc/latex/oberdiek/test/askinclude-test20.tex - RELOC/doc/latex/oberdiek/test/askinclude-test21.tex - RELOC/doc/latex/oberdiek/test/askinclude-test22.tex - RELOC/doc/latex/oberdiek/test/askinclude-test23.tex - RELOC/doc/latex/oberdiek/test/askinclude-test24.tex - RELOC/doc/latex/oberdiek/test/askinclude-test3.tex - RELOC/doc/latex/oberdiek/test/askinclude-test4.tex - RELOC/doc/latex/oberdiek/test/askinclude-test5.tex - RELOC/doc/latex/oberdiek/test/askinclude-test6.tex - RELOC/doc/latex/oberdiek/test/askinclude-test7.tex - RELOC/doc/latex/oberdiek/test/askinclude-test8.tex - RELOC/doc/latex/oberdiek/test/askinclude-test9.tex - RELOC/doc/latex/oberdiek/test/atbegshi-test1.tex - RELOC/doc/latex/oberdiek/test/atbegshi-test2.tex - RELOC/doc/latex/oberdiek/test/atbegshi-test3.tex - RELOC/doc/latex/oberdiek/test/atveryend-test1.tex - RELOC/doc/latex/oberdiek/test/bigintcalc-test1.tex - RELOC/doc/latex/oberdiek/test/bigintcalc-test2.tex - RELOC/doc/latex/oberdiek/test/bigintcalc-test3.tex - RELOC/doc/latex/oberdiek/test/bitset-test1.tex - RELOC/doc/latex/oberdiek/test/bitset-test2.tex - RELOC/doc/latex/oberdiek/test/bitset-test3.tex - RELOC/doc/latex/oberdiek/test/catchfile-test1.tex - RELOC/doc/latex/oberdiek/test/catchfile-test2.tex - RELOC/doc/latex/oberdiek/test/catchfile-test3.tex - RELOC/doc/latex/oberdiek/test/embedfile-test1.tex - RELOC/doc/latex/oberdiek/test/embedfile-test2.tex - RELOC/doc/latex/oberdiek/test/embedfile-test3.tex - RELOC/doc/latex/oberdiek/test/embedfile-test4.tex - RELOC/doc/latex/oberdiek/test/engord-test1.tex - RELOC/doc/latex/oberdiek/test/eolgrab-test1.tex - RELOC/doc/latex/oberdiek/test/eolgrab-test2.tex - RELOC/doc/latex/oberdiek/test/epstopdf-test1.tex - RELOC/doc/latex/oberdiek/test/etexcmds-test1.tex - RELOC/doc/latex/oberdiek/test/etexcmds-test2.tex - RELOC/doc/latex/oberdiek/test/etexcmds-test3.tex - RELOC/doc/latex/oberdiek/test/etexcmds-test4.tex - RELOC/doc/latex/oberdiek/test/fibnum-test-calc.tex - RELOC/doc/latex/oberdiek/test/fibnum-test1.tex - RELOC/doc/latex/oberdiek/test/gettitlestring-test1.tex - RELOC/doc/latex/oberdiek/test/gettitlestring-test2.tex - RELOC/doc/latex/oberdiek/test/grfext-test1.tex - RELOC/doc/latex/oberdiek/test/grfext-test2.tex - RELOC/doc/latex/oberdiek/test/grffile-test1.tex - RELOC/doc/latex/oberdiek/test/hobsub-test1.tex - RELOC/doc/latex/oberdiek/test/hologo-test-list.tex - RELOC/doc/latex/oberdiek/test/hologo-test-spacefactor.tex - RELOC/doc/latex/oberdiek/test/hologo-test1.tex - RELOC/doc/latex/oberdiek/test/hopatch-test1.tex - RELOC/doc/latex/oberdiek/test/hopatch-test2.tex - RELOC/doc/latex/oberdiek/test/hycolor-test-xcol1.tex - RELOC/doc/latex/oberdiek/test/hycolor-test-xcol2.tex - RELOC/doc/latex/oberdiek/test/hycolor-test-xcol3.tex - RELOC/doc/latex/oberdiek/test/hycolor-test-xcol4.tex - RELOC/doc/latex/oberdiek/test/hycolor-test1.tex - RELOC/doc/latex/oberdiek/test/hycolor-test2.tex - RELOC/doc/latex/oberdiek/test/hycolor-test3.tex - RELOC/doc/latex/oberdiek/test/hyphsubst-test1.tex - RELOC/doc/latex/oberdiek/test/hyphsubst-test2.tex - RELOC/doc/latex/oberdiek/test/iflang-test1.tex - RELOC/doc/latex/oberdiek/test/iflang-test2.tex - RELOC/doc/latex/oberdiek/test/iflang-test3.tex - RELOC/doc/latex/oberdiek/test/iflang-test4.tex - RELOC/doc/latex/oberdiek/test/iflang-test5.tex - RELOC/doc/latex/oberdiek/test/ifpdf-test1.tex - RELOC/doc/latex/oberdiek/test/ifvtex-test1.tex - RELOC/doc/latex/oberdiek/test/infwarerr-test1.tex - RELOC/doc/latex/oberdiek/test/infwarerr-test2.tex - RELOC/doc/latex/oberdiek/test/infwarerr-test3.tex - RELOC/doc/latex/oberdiek/test/intcalc-test1.tex - RELOC/doc/latex/oberdiek/test/intcalc-test2.tex - RELOC/doc/latex/oberdiek/test/intcalc-test3.tex - RELOC/doc/latex/oberdiek/test/intcalc-test4.tex - RELOC/doc/latex/oberdiek/test/kvdefinekeys-test1.tex - RELOC/doc/latex/oberdiek/test/kvoptions-test1.tex - RELOC/doc/latex/oberdiek/test/kvoptions-test2.tex - RELOC/doc/latex/oberdiek/test/kvoptions-test3.tex - RELOC/doc/latex/oberdiek/test/kvoptions-test4.sty - RELOC/doc/latex/oberdiek/test/kvoptions-test4.tex - RELOC/doc/latex/oberdiek/test/kvsetkeys-test1.tex - RELOC/doc/latex/oberdiek/test/kvsetkeys-test2.tex - RELOC/doc/latex/oberdiek/test/kvsetkeys-test3.tex - RELOC/doc/latex/oberdiek/test/kvsetkeys-test4.tex - RELOC/doc/latex/oberdiek/test/letltxmacro-test1.tex - RELOC/doc/latex/oberdiek/test/letltxmacro-test2.tex - RELOC/doc/latex/oberdiek/test/listingsutf8-test1.tex - RELOC/doc/latex/oberdiek/test/listingsutf8-test2.tex - RELOC/doc/latex/oberdiek/test/listingsutf8-test3.tex - RELOC/doc/latex/oberdiek/test/listingsutf8-test4.tex - RELOC/doc/latex/oberdiek/test/listingsutf8-test5.tex - RELOC/doc/latex/oberdiek/test/ltxcmds-test-carcdr.tex - RELOC/doc/latex/oberdiek/test/ltxcmds-test-gobble.tex - RELOC/doc/latex/oberdiek/test/ltxcmds-test-ifboxempty.tex - RELOC/doc/latex/oberdiek/test/ltxcmds-test-ifempty.tex - RELOC/doc/latex/oberdiek/test/ltxcmds-test-nextchar.tex - RELOC/doc/latex/oberdiek/test/ltxcmds-test-zapspace.tex - RELOC/doc/latex/oberdiek/test/ltxcmds-test1.tex - RELOC/doc/latex/oberdiek/test/luacolor-test1.tex - RELOC/doc/latex/oberdiek/test/luacolor-test2.tex - RELOC/doc/latex/oberdiek/test/luacolor-test3.tex - RELOC/doc/latex/oberdiek/test/luatex-test1.tex - RELOC/doc/latex/oberdiek/test/luatex-test2.tex - RELOC/doc/latex/oberdiek/test/luatex-test3.tex - RELOC/doc/latex/oberdiek/test/luatex-test4.tex - RELOC/doc/latex/oberdiek/test/luatex-test5.tex - RELOC/doc/latex/oberdiek/test/magicnum-test1.tex - RELOC/doc/latex/oberdiek/test/magicnum-test2.tex - RELOC/doc/latex/oberdiek/test/magicnum-test3.tex - RELOC/doc/latex/oberdiek/test/magicnum-test4.tex - RELOC/doc/latex/oberdiek/test/mleftright-test1.tex - RELOC/doc/latex/oberdiek/test/pagegrid-test1.tex - RELOC/doc/latex/oberdiek/test/pdfcol-test1.tex - RELOC/doc/latex/oberdiek/test/pdfcol-test2.tex - RELOC/doc/latex/oberdiek/test/pdfcol-test3.tex - RELOC/doc/latex/oberdiek/test/pdfcol-test4.tex - RELOC/doc/latex/oberdiek/test/pdfcolfoot-test1.tex - RELOC/doc/latex/oberdiek/test/pdfcolparallel-test1.tex - RELOC/doc/latex/oberdiek/test/pdfcolparcolumns-test1.tex - RELOC/doc/latex/oberdiek/test/pdfescape-test1.tex - RELOC/doc/latex/oberdiek/test/pdfescape-test2.tex - RELOC/doc/latex/oberdiek/test/pdfescape-test3.tex - RELOC/doc/latex/oberdiek/test/pdfescape-test4.tex - RELOC/doc/latex/oberdiek/test/pdfescape-test5.tex - RELOC/doc/latex/oberdiek/test/pdfescape-test6.tex - RELOC/doc/latex/oberdiek/test/pdflscape-test1.tex - RELOC/doc/latex/oberdiek/test/pdflscape-test2.tex - RELOC/doc/latex/oberdiek/test/pdflscape-test3.tex - RELOC/doc/latex/oberdiek/test/pdflscape-test4.tex - RELOC/doc/latex/oberdiek/test/pdflscape-test5.tex - RELOC/doc/latex/oberdiek/test/pdflscape-test6.tex - RELOC/doc/latex/oberdiek/test/pdflscape-test6.txt - RELOC/doc/latex/oberdiek/test/pdfrender-test1.tex - RELOC/doc/latex/oberdiek/test/pdfrender-test2.tex - RELOC/doc/latex/oberdiek/test/pdfrender-test3.tex - RELOC/doc/latex/oberdiek/test/pdfrender-test4.tex - RELOC/doc/latex/oberdiek/test/pdfrender-test5.tex - RELOC/doc/latex/oberdiek/test/pdftexcmds-test-escape.tex - RELOC/doc/latex/oberdiek/test/pdftexcmds-test-shell.tex - RELOC/doc/latex/oberdiek/test/pdftexcmds-test1.tex - RELOC/doc/latex/oberdiek/test/pdftexcmds-test2.tex - RELOC/doc/latex/oberdiek/test/pmboxdraw-test1.tex - RELOC/doc/latex/oberdiek/test/protecteddef-test1.tex - RELOC/doc/latex/oberdiek/test/protecteddef-test2.tex - RELOC/doc/latex/oberdiek/test/refcount-test1.tex - RELOC/doc/latex/oberdiek/test/refcount-test2.tex - RELOC/doc/latex/oberdiek/test/refcount-test3.tex - RELOC/doc/latex/oberdiek/test/refcount-test4.tex - RELOC/doc/latex/oberdiek/test/refcount-test5.tex - RELOC/doc/latex/oberdiek/test/rerunfilecheck-test1.tex - RELOC/doc/latex/oberdiek/test/resizegather-test1.tex - RELOC/doc/latex/oberdiek/test/rotchiffre-test1.tex - RELOC/doc/latex/oberdiek/test/rotchiffre-test2.tex - RELOC/doc/latex/oberdiek/test/selinput-test1.tex - RELOC/doc/latex/oberdiek/test/selinput-test2.tex - RELOC/doc/latex/oberdiek/test/selinput-test3.tex - RELOC/doc/latex/oberdiek/test/selinput-test4.tex - RELOC/doc/latex/oberdiek/test/selinput-test5.tex - RELOC/doc/latex/oberdiek/test/setouterhbox-test1.tex - RELOC/doc/latex/oberdiek/test/setouterhbox-test2.tex - RELOC/doc/latex/oberdiek/test/soulutf8-test1.tex - RELOC/doc/latex/oberdiek/test/soulutf8-test2.tex - RELOC/doc/latex/oberdiek/test/soulutf8-test3.tex - RELOC/doc/latex/oberdiek/test/soulutf8-test4.tex - RELOC/doc/latex/oberdiek/test/soulutf8-test5.tex - RELOC/doc/latex/oberdiek/test/stringenc-test1.tex - RELOC/doc/latex/oberdiek/test/stringenc-test2.tex - RELOC/doc/latex/oberdiek/test/telprint-test1.tex - RELOC/doc/latex/oberdiek/test/thepdfnumber-test1.tex - RELOC/doc/latex/oberdiek/test/thepdfnumber-test2.tex - RELOC/doc/latex/oberdiek/test/thepdfnumber-test3.tex - RELOC/doc/latex/oberdiek/test/uniquecounter-test1.tex - RELOC/doc/latex/oberdiek/test/uniquecounter-test2.tex - RELOC/doc/latex/oberdiek/test/uniquecounter-test3.tex - RELOC/doc/latex/oberdiek/test/zref-test-base.tex - RELOC/doc/latex/oberdiek/test/zref-test-runs.tex - RELOC/doc/latex/oberdiek/test/zref-test-titleref-memoir.tex - RELOC/doc/latex/oberdiek/test/zref-test1.tex - RELOC/doc/latex/oberdiek/thepdfnumber.pdf - RELOC/doc/latex/oberdiek/transparent-example.tex - RELOC/doc/latex/oberdiek/transparent.pdf - RELOC/doc/latex/oberdiek/twoopt.pdf - RELOC/doc/latex/oberdiek/uniquecounter-example.tex - RELOC/doc/latex/oberdiek/uniquecounter.pdf - RELOC/doc/latex/oberdiek/zref-example-lastpage.tex - RELOC/doc/latex/oberdiek/zref-example-nextpage.tex - RELOC/doc/latex/oberdiek/zref-example.tex - RELOC/doc/latex/oberdiek/zref.pdf -srcfiles size=1303 - RELOC/source/latex/oberdiek/accsupp.dtx - RELOC/source/latex/oberdiek/aliascnt.dtx - RELOC/source/latex/oberdiek/alphalph.dtx - RELOC/source/latex/oberdiek/askinclude.dtx - RELOC/source/latex/oberdiek/atbegshi.dtx - RELOC/source/latex/oberdiek/atenddvi.dtx - RELOC/source/latex/oberdiek/attachfile2.dtx - RELOC/source/latex/oberdiek/atveryend.dtx - RELOC/source/latex/oberdiek/auxhook.dtx - RELOC/source/latex/oberdiek/bigintcalc.dtx - RELOC/source/latex/oberdiek/bitset.dtx - RELOC/source/latex/oberdiek/bmpsize.dtx - RELOC/source/latex/oberdiek/bookmark.dtx - RELOC/source/latex/oberdiek/catalogue/accsupp.xml - RELOC/source/latex/oberdiek/catalogue/aliascnt.xml - RELOC/source/latex/oberdiek/catalogue/alphalph.xml - RELOC/source/latex/oberdiek/catalogue/askinclude.xml - RELOC/source/latex/oberdiek/catalogue/atbegshi.xml - RELOC/source/latex/oberdiek/catalogue/atenddvi.xml - RELOC/source/latex/oberdiek/catalogue/attachfile2.xml - RELOC/source/latex/oberdiek/catalogue/atveryend.xml - RELOC/source/latex/oberdiek/catalogue/auxhook.xml - RELOC/source/latex/oberdiek/catalogue/bigintcalc.xml - RELOC/source/latex/oberdiek/catalogue/bitset.xml - RELOC/source/latex/oberdiek/catalogue/bmpsize.xml - RELOC/source/latex/oberdiek/catalogue/bookmark.xml - RELOC/source/latex/oberdiek/catalogue/catchfile.xml - RELOC/source/latex/oberdiek/catalogue/centernot.xml - RELOC/source/latex/oberdiek/catalogue/chemarr.xml - RELOC/source/latex/oberdiek/catalogue/classlist.xml - RELOC/source/latex/oberdiek/catalogue/colonequals.xml - RELOC/source/latex/oberdiek/catalogue/dvipscol.xml - RELOC/source/latex/oberdiek/catalogue/embedfile.xml - RELOC/source/latex/oberdiek/catalogue/engord.xml - RELOC/source/latex/oberdiek/catalogue/eolgrab.xml - RELOC/source/latex/oberdiek/catalogue/epstopdf-pkg.xml - RELOC/source/latex/oberdiek/catalogue/etexcmds.xml - RELOC/source/latex/oberdiek/catalogue/flags.xml - RELOC/source/latex/oberdiek/catalogue/gettitlestring.xml - RELOC/source/latex/oberdiek/catalogue/grfext.xml - RELOC/source/latex/oberdiek/catalogue/grffile.xml - RELOC/source/latex/oberdiek/catalogue/hobsub.xml - RELOC/source/latex/oberdiek/catalogue/hologo.xml - RELOC/source/latex/oberdiek/catalogue/holtxdoc.xml - RELOC/source/latex/oberdiek/catalogue/hopatch.xml - RELOC/source/latex/oberdiek/catalogue/hycolor.xml - RELOC/source/latex/oberdiek/catalogue/hypbmsec.xml - RELOC/source/latex/oberdiek/catalogue/hypcap.xml - RELOC/source/latex/oberdiek/catalogue/hypdestopt.xml - RELOC/source/latex/oberdiek/catalogue/hypdoc.xml - RELOC/source/latex/oberdiek/catalogue/hypgotoe.xml - RELOC/source/latex/oberdiek/catalogue/hyphsubst.xml - RELOC/source/latex/oberdiek/catalogue/ifdraft.xml - RELOC/source/latex/oberdiek/catalogue/iflang.xml - RELOC/source/latex/oberdiek/catalogue/ifluatex.xml - RELOC/source/latex/oberdiek/catalogue/ifpdf.xml - RELOC/source/latex/oberdiek/catalogue/ifvtex.xml - RELOC/source/latex/oberdiek/catalogue/infwarerr.xml - RELOC/source/latex/oberdiek/catalogue/inputenx.xml - RELOC/source/latex/oberdiek/catalogue/intcalc.xml - RELOC/source/latex/oberdiek/catalogue/kvdefinekeys.xml - RELOC/source/latex/oberdiek/catalogue/kvoptions.xml - RELOC/source/latex/oberdiek/catalogue/kvsetkeys.xml - RELOC/source/latex/oberdiek/catalogue/letltxmacro.xml - RELOC/source/latex/oberdiek/catalogue/listingsutf8.xml - RELOC/source/latex/oberdiek/catalogue/ltxcmds.xml - RELOC/source/latex/oberdiek/catalogue/luacolor.xml - RELOC/source/latex/oberdiek/catalogue/luatex.xml - RELOC/source/latex/oberdiek/catalogue/magicnum.xml - RELOC/source/latex/oberdiek/catalogue/makerobust.xml - RELOC/source/latex/oberdiek/catalogue/mleftright.xml - RELOC/source/latex/oberdiek/catalogue/pagegrid.xml - RELOC/source/latex/oberdiek/catalogue/pagesel.xml - RELOC/source/latex/oberdiek/catalogue/pdfcol.xml - RELOC/source/latex/oberdiek/catalogue/pdfcolfoot.xml - RELOC/source/latex/oberdiek/catalogue/pdfcolmk.xml - RELOC/source/latex/oberdiek/catalogue/pdfcolparallel.xml - RELOC/source/latex/oberdiek/catalogue/pdfcolparcolumns.xml - RELOC/source/latex/oberdiek/catalogue/pdfcrypt.xml - RELOC/source/latex/oberdiek/catalogue/pdfescape.xml - RELOC/source/latex/oberdiek/catalogue/pdflscape.xml - RELOC/source/latex/oberdiek/catalogue/pdfrender.xml - RELOC/source/latex/oberdiek/catalogue/pdftexcmds.xml - RELOC/source/latex/oberdiek/catalogue/picture.xml - RELOC/source/latex/oberdiek/catalogue/pmboxdraw.xml - RELOC/source/latex/oberdiek/catalogue/protecteddef.xml - RELOC/source/latex/oberdiek/catalogue/refcount.xml - RELOC/source/latex/oberdiek/catalogue/rerunfilecheck.xml - RELOC/source/latex/oberdiek/catalogue/resizegather.xml - RELOC/source/latex/oberdiek/catalogue/rotchiffre.xml - RELOC/source/latex/oberdiek/catalogue/scrindex.xml - RELOC/source/latex/oberdiek/catalogue/selinput.xml - RELOC/source/latex/oberdiek/catalogue/setouterhbox.xml - RELOC/source/latex/oberdiek/catalogue/settobox.xml - RELOC/source/latex/oberdiek/catalogue/soulutf8.xml - RELOC/source/latex/oberdiek/catalogue/stackrel.xml - RELOC/source/latex/oberdiek/catalogue/stampinclude.xml - RELOC/source/latex/oberdiek/catalogue/stringenc.xml - RELOC/source/latex/oberdiek/catalogue/tabularht.xml - RELOC/source/latex/oberdiek/catalogue/tabularkv.xml - RELOC/source/latex/oberdiek/catalogue/telprint.xml - RELOC/source/latex/oberdiek/catalogue/transparent.xml - RELOC/source/latex/oberdiek/catalogue/twoopt.xml - RELOC/source/latex/oberdiek/catalogue/uniquecounter.xml - RELOC/source/latex/oberdiek/catalogue/zref.xml - RELOC/source/latex/oberdiek/catchfile.dtx - RELOC/source/latex/oberdiek/centernot.dtx - RELOC/source/latex/oberdiek/chemarr.dtx - RELOC/source/latex/oberdiek/classlist.dtx - RELOC/source/latex/oberdiek/colonequals.dtx - RELOC/source/latex/oberdiek/dvipscol.dtx - RELOC/source/latex/oberdiek/embedfile.dtx - RELOC/source/latex/oberdiek/engord.dtx - RELOC/source/latex/oberdiek/enparen.dtx - RELOC/source/latex/oberdiek/eolgrab.dtx - RELOC/source/latex/oberdiek/epstopdf.dtx - RELOC/source/latex/oberdiek/etexcmds.dtx - RELOC/source/latex/oberdiek/fibnum.dtx - RELOC/source/latex/oberdiek/flags.dtx - RELOC/source/latex/oberdiek/gettitlestring.dtx - RELOC/source/latex/oberdiek/grfext.dtx - RELOC/source/latex/oberdiek/grffile.dtx - RELOC/source/latex/oberdiek/hobsub.dtx - RELOC/source/latex/oberdiek/hologo-eroux.patch - RELOC/source/latex/oberdiek/hologo.dtx - RELOC/source/latex/oberdiek/holtxdoc.dtx - RELOC/source/latex/oberdiek/hopatch.dtx - RELOC/source/latex/oberdiek/hycolor.dtx - RELOC/source/latex/oberdiek/hypbmsec.dtx - RELOC/source/latex/oberdiek/hypcap.dtx - RELOC/source/latex/oberdiek/hypdestopt.dtx - RELOC/source/latex/oberdiek/hypdoc.dtx - RELOC/source/latex/oberdiek/hypgotoe.dtx - RELOC/source/latex/oberdiek/hyphsubst.dtx - RELOC/source/latex/oberdiek/ifdraft.dtx - RELOC/source/latex/oberdiek/iflang.dtx - RELOC/source/latex/oberdiek/ifpdf.dtx - RELOC/source/latex/oberdiek/ifvtex.dtx - RELOC/source/latex/oberdiek/infwarerr.dtx - RELOC/source/latex/oberdiek/inputenx.dtx - RELOC/source/latex/oberdiek/intcalc.dtx - RELOC/source/latex/oberdiek/kvdefinekeys.dtx - RELOC/source/latex/oberdiek/kvoptions.dtx - RELOC/source/latex/oberdiek/kvsetkeys.dtx - RELOC/source/latex/oberdiek/letltxmacro.dtx - RELOC/source/latex/oberdiek/listingsutf8.dtx - RELOC/source/latex/oberdiek/ltxcmds.dtx - RELOC/source/latex/oberdiek/luacolor.dtx - RELOC/source/latex/oberdiek/luatex.dtx - RELOC/source/latex/oberdiek/magicnum.dtx - RELOC/source/latex/oberdiek/makerobust.dtx - RELOC/source/latex/oberdiek/mleftright.dtx - RELOC/source/latex/oberdiek/oberdiek.ins - RELOC/source/latex/oberdiek/oberdiek.tex - RELOC/source/latex/oberdiek/pagegrid.dtx - RELOC/source/latex/oberdiek/pagesel.dtx - RELOC/source/latex/oberdiek/pdfcol.dtx - RELOC/source/latex/oberdiek/pdfcolfoot.dtx - RELOC/source/latex/oberdiek/pdfcolmk.dtx - RELOC/source/latex/oberdiek/pdfcolparallel.dtx - RELOC/source/latex/oberdiek/pdfcolparcolumns.dtx - RELOC/source/latex/oberdiek/pdfcrypt.dtx - RELOC/source/latex/oberdiek/pdfescape.dtx - RELOC/source/latex/oberdiek/pdflscape.dtx - RELOC/source/latex/oberdiek/pdfrender.dtx - RELOC/source/latex/oberdiek/pdftexcmds-eroux.patch - RELOC/source/latex/oberdiek/pdftexcmds.dtx - RELOC/source/latex/oberdiek/picture.dtx - RELOC/source/latex/oberdiek/pmboxdraw.dtx - RELOC/source/latex/oberdiek/protecteddef.dtx - RELOC/source/latex/oberdiek/readme-ctan.txt - RELOC/source/latex/oberdiek/refcount.dtx - RELOC/source/latex/oberdiek/rerunfilecheck.dtx - RELOC/source/latex/oberdiek/resizegather.dtx - RELOC/source/latex/oberdiek/rotchiffre.dtx - RELOC/source/latex/oberdiek/scrindex.dtx - RELOC/source/latex/oberdiek/selinput.dtx - RELOC/source/latex/oberdiek/setouterhbox.dtx - RELOC/source/latex/oberdiek/settobox.dtx - RELOC/source/latex/oberdiek/soulutf8.dtx - RELOC/source/latex/oberdiek/stackrel.dtx - RELOC/source/latex/oberdiek/stampinclude.dtx - RELOC/source/latex/oberdiek/stringenc.dtx - RELOC/source/latex/oberdiek/tabularht.dtx - RELOC/source/latex/oberdiek/tabularkv.dtx - RELOC/source/latex/oberdiek/telprint.dtx - RELOC/source/latex/oberdiek/thepdfnumber.dtx - RELOC/source/latex/oberdiek/transparent.dtx - RELOC/source/latex/oberdiek/twoopt.dtx - RELOC/source/latex/oberdiek/uniquecounter.dtx - RELOC/source/latex/oberdiek/zref.dtx -catalogue-ctan /macros/latex/contrib/oberdiek -catalogue-date 2014-10-15 19:24:27 +0200 -catalogue-license lppl - -name objectz -category Package -revision 19389 -shortdesc Macros for typesetting Object Z. -relocated 1 -longdesc The package will typeset both Z and Object-Z specifications; it -longdesc develops the original zed package -runfiles size=10 - RELOC/tex/latex/objectz/oz.sty -docfiles size=87 - RELOC/doc/latex/objectz/catalog - RELOC/doc/latex/objectz/makefile - RELOC/doc/latex/objectz/manifest - RELOC/doc/latex/objectz/ozguide.pdf - RELOC/doc/latex/objectz/ozguide.tex - RELOC/doc/latex/objectz/oztest.tex - RELOC/doc/latex/objectz/readme -srcfiles size=15 - RELOC/source/latex/objectz/oz.dtx - RELOC/source/latex/objectz/oz.ins -catalogue-ctan /macros/latex/contrib/objectz -catalogue-date 2012-03-30 15:19:52 +0200 -catalogue-license lppl - -name obnov -category Package -revision 33355 -shortdesc Obyknovennaya Novaya fonts. -relocated 1 -longdesc The Obyknovennaya Novaya (Ordinary New Face) typeface was -longdesc widely used in the USSR for scientific and technical -longdesc publications, as well as textbooks. The fonts are encoded to -longdesc KOI8-R (which is a long-established Russian font encoding, -longdesc rather than a TeX/LaTeX encoding). To use the fonts, the user -longdesc needs Cyrillic font support. -runfiles size=680 - RELOC/fonts/source/public/obnov/obn10.mf - RELOC/fonts/source/public/obnov/obn12.mf - RELOC/fonts/source/public/obnov/obn17.mf - RELOC/fonts/source/public/obnov/obn7.mf - RELOC/fonts/source/public/obnov/obn_lcyw_code.mf - RELOC/fonts/source/public/obnov/obnb10.mf - RELOC/fonts/source/public/obnov/obnb12.mf - RELOC/fonts/source/public/obnov/obnb17.mf - RELOC/fonts/source/public/obnov/obnb7.mf - RELOC/fonts/source/public/obnov/obnit10.mf - RELOC/fonts/source/public/obnov/obnit12.mf - RELOC/fonts/source/public/obnov/obnit17.mf - RELOC/fonts/source/public/obnov/obnit7.mf - RELOC/fonts/source/public/obnov/obnitb10.mf - RELOC/fonts/source/public/obnov/obnitb12.mf - RELOC/fonts/source/public/obnov/obnitb17.mf - RELOC/fonts/source/public/obnov/obnsc10.mf - RELOC/fonts/source/public/obnov/obnsc12.mf - RELOC/fonts/source/public/obnov/obnsc17.mf - RELOC/fonts/source/public/obnov/obnsc7.mf - RELOC/fonts/source/public/obnov/obnsl10.mf - RELOC/fonts/source/public/obnov/obnsl12.mf - RELOC/fonts/source/public/obnov/obnsl17.mf - RELOC/fonts/source/public/obnov/obnsl7.mf - RELOC/fonts/tfm/public/obnov/obn10.tfm - RELOC/fonts/tfm/public/obnov/obn12.tfm - RELOC/fonts/tfm/public/obnov/obn17.tfm - RELOC/fonts/tfm/public/obnov/obn7.tfm - RELOC/fonts/tfm/public/obnov/obnb10.tfm - RELOC/fonts/tfm/public/obnov/obnb12.tfm - RELOC/fonts/tfm/public/obnov/obnb17.tfm - RELOC/fonts/tfm/public/obnov/obnb7.tfm - RELOC/fonts/tfm/public/obnov/obnit10.tfm - RELOC/fonts/tfm/public/obnov/obnit12.tfm - RELOC/fonts/tfm/public/obnov/obnit17.tfm - RELOC/fonts/tfm/public/obnov/obnit7.tfm - RELOC/fonts/tfm/public/obnov/obnitb10.tfm - RELOC/fonts/tfm/public/obnov/obnitb12.tfm - RELOC/fonts/tfm/public/obnov/obnitb17.tfm - RELOC/fonts/tfm/public/obnov/obnsc10.tfm - RELOC/fonts/tfm/public/obnov/obnsc12.tfm - RELOC/fonts/tfm/public/obnov/obnsc17.tfm - RELOC/fonts/tfm/public/obnov/obnsc7.tfm - RELOC/fonts/tfm/public/obnov/obnsl10.tfm - RELOC/fonts/tfm/public/obnov/obnsl12.tfm - RELOC/fonts/tfm/public/obnov/obnsl17.tfm - RELOC/fonts/tfm/public/obnov/obnsl7.tfm - RELOC/tex/latex/obnov/lcyw.cmap - RELOC/tex/latex/obnov/lcywobn.fd -docfiles size=347 - RELOC/doc/fonts/obnov/README - RELOC/doc/fonts/obnov/example_obn.pdf - RELOC/doc/fonts/obnov/example_obn.tex -catalogue-ctan /fonts/obnov -catalogue-date 2015-03-30 22:55:45 +0200 -catalogue-license lppl -catalogue-version 0.11 - -name ocg-p -category Package -revision 28803 -shortdesc PDF OCG support in LaTeX. -relocated 1 -longdesc The package provides OCG (Optional Content Groups) support -longdesc within a PDF document, replacing the ocg.sty distributed with -longdesc asymptote. Nested OCGs are supported. The package may be used -longdesc with PDFLatex and XeLaTeX. -runfiles size=4 - RELOC/tex/latex/ocg-p/ocg-p.sty -docfiles size=187 - RELOC/doc/latex/ocg-p/README - RELOC/doc/latex/ocg-p/examples/ocg-p_example_1.pdf - RELOC/doc/latex/ocg-p/examples/ocg-p_example_1.tex - RELOC/doc/latex/ocg-p/examples/ocg-p_example_2.pdf - RELOC/doc/latex/ocg-p/examples/ocg-p_example_2.tex - RELOC/doc/latex/ocg-p/examples/ocg-p_example_3.pdf - RELOC/doc/latex/ocg-p/examples/ocg-p_example_3.tex - RELOC/doc/latex/ocg-p/examples/ocg-p_example_4.pdf - RELOC/doc/latex/ocg-p/examples/ocg-p_example_4.tex - RELOC/doc/latex/ocg-p/ocg-p.pdf - RELOC/doc/latex/ocg-p/ocg-p.tex -catalogue-ctan /macros/latex/contrib/ocg-p -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.4 - -name ocgx2 -category Package -revision 38361 -shortdesc Drop-in replacement for the 'ocgx' package; adds support for dvips+ps2pdf, XeLaTeX, dvipdfmx -relocated 1 -longdesc This package is a drop-in replacement for the ocgx package by -longdesc Paul Gaborit. It re-implements the functionality of the ocg, -longdesc ocgx, and ocg-p packages and adds support for all known engines -longdesc and back-ends including: LaTeX -> dvips -> ps2pdf/Distiller -longdesc (Xe)LaTeX(x) -> dvipdfmx PdfLaTeX and LuaLaTeX . It also -longdesc ensures compatibility with the media9 and animate packages. -runfiles size=7 - RELOC/tex/latex/ocgx2/fixocgx.sty - RELOC/tex/latex/ocgx2/ocgx2.sty -docfiles size=2 - RELOC/doc/latex/ocgx2/ChangeLog - RELOC/doc/latex/ocgx2/README -catalogue-also ocgx ocg-p -catalogue-ctan /macros/latex/contrib/ocgx2 -catalogue-date 2015-09-11 21:52:50 +0200 -catalogue-license lppl1.3 -catalogue-topics pdf-feat -catalogue-version 0.8 - -name ocgx -category Package -revision 28492 -shortdesc Use OCGs within a PDF document without JavaScript. -relocated 1 -longdesc The package extends the ocg package, which allows you to create -longdesc OCGs (Optional Content Groups) in PDF documents. (The ocg -longdesc package is distributed as part of Asymptote.) Every OCG -longdesc includes TeX material into a layer of the PDF file. Each of -longdesc these layers can be displayed or not. Links can enable or -longdesc disable the display of OCGs. The ocgx package does not use -longdesc Javascript embedded in the PDF document to enable (to show) or -longdesc disable (to hide) OCGs. -runfiles size=2 - RELOC/tex/latex/ocgx/ocgx.sty - RELOC/tex/latex/ocgx/tikzlibraryocgx.code.tex -docfiles size=253 - RELOC/doc/latex/ocgx/README - RELOC/doc/latex/ocgx/demo-ocgx.pdf - RELOC/doc/latex/ocgx/ocgx-manual-en.pdf -srcfiles size=9 - RELOC/source/latex/ocgx/demo-ocgx.tex - RELOC/source/latex/ocgx/ocgx-example-1.tex - RELOC/source/latex/ocgx/ocgx-manual-en.tex -catalogue-ctan /macros/latex/contrib/ocgx -catalogue-date 2012-12-10 10:44:43 +0100 -catalogue-license lppl -catalogue-version 0.5 - -name ocherokee -category Package -revision 25689 -shortdesc LaTeX Support for the Cherokee language. -relocated 1 -longdesc Macros and Type 1 fonts for Typesetting the Cherokee language -longdesc with the Omega version of LaTeX (known as Lambda). -execute addMap cherokee.map -runfiles size=96 - RELOC/fonts/afm/public/ocherokee/Cherokee-Bold.afm - RELOC/fonts/afm/public/ocherokee/Cherokee.afm - RELOC/fonts/map/dvips/ocherokee/cherokee.map - RELOC/fonts/ofm/public/ocherokee/OCherokee.ofm - RELOC/fonts/ofm/public/ocherokee/OCherokeeb.ofm - RELOC/fonts/ofm/public/ocherokee/OCherokeebo.ofm - RELOC/fonts/ofm/public/ocherokee/OCherokeeo.ofm - RELOC/fonts/ovf/public/ocherokee/OCherokee.ovf - RELOC/fonts/ovf/public/ocherokee/OCherokeeb.ovf - RELOC/fonts/ovf/public/ocherokee/OCherokeebo.ovf - RELOC/fonts/ovf/public/ocherokee/OCherokeeo.ovf - RELOC/fonts/ovp/public/ocherokee/OCherokee.ovp - RELOC/fonts/ovp/public/ocherokee/OCherokeeb.ovp - RELOC/fonts/ovp/public/ocherokee/OCherokeebo.ovp - RELOC/fonts/ovp/public/ocherokee/OCherokeeo.ovp - RELOC/fonts/tfm/public/ocherokee/Cherokee.tfm - RELOC/fonts/tfm/public/ocherokee/Cherokeeb.tfm - RELOC/fonts/tfm/public/ocherokee/Cherokeebo.tfm - RELOC/fonts/tfm/public/ocherokee/Cherokeeo.tfm - RELOC/fonts/type1/public/ocherokee/Cherokee-Bold.pfb - RELOC/fonts/type1/public/ocherokee/Cherokee.pfb - RELOC/omega/ocp/ocherokee/cher2uni.ocp - RELOC/omega/otp/ocherokee/cher2uni.otp - RELOC/tex/lambda/ocherokee/lchcmr.fd - RELOC/tex/lambda/ocherokee/lchenc.def - RELOC/tex/lambda/ocherokee/ocherokee.sty -docfiles size=19 - RELOC/doc/omega/ocherokee/READ.ME - RELOC/doc/omega/ocherokee/cherokee.pdf - RELOC/doc/omega/ocherokee/chief.tex - RELOC/doc/omega/ocherokee/proverb.tex -catalogue-ctan /language/cherokee/ocherokee -catalogue-date 2012-12-31 10:40:46 +0100 -catalogue-license lppl - -name ocr-b-outline -category Package -revision 20969 -shortdesc OCR-B fonts in Type 1 and OpenType. -relocated 1 -longdesc The package contains OCR-B fonts in Type1 and OpenType formats. -longdesc They were generated from the Metafont sources of the OCR-B -longdesc fonts. The metric files are not included here, so that original -longdesc ocr-b package should also be installed. -execute addMap ocrb.map -runfiles size=103 - RELOC/fonts/map/dvips/ocr-b-outline/ocrb.map - RELOC/fonts/opentype/public/ocr-b-outline/ocrb10.otf - RELOC/fonts/opentype/public/ocr-b-outline/ocrb5.otf - RELOC/fonts/opentype/public/ocr-b-outline/ocrb6.otf - RELOC/fonts/opentype/public/ocr-b-outline/ocrb7.otf - RELOC/fonts/opentype/public/ocr-b-outline/ocrb8.otf - RELOC/fonts/opentype/public/ocr-b-outline/ocrb9.otf - RELOC/fonts/type1/public/ocr-b-outline/ocrb10.pfb - RELOC/fonts/type1/public/ocr-b-outline/ocrb5.pfb - RELOC/fonts/type1/public/ocr-b-outline/ocrb6.pfb - RELOC/fonts/type1/public/ocr-b-outline/ocrb7.pfb - RELOC/fonts/type1/public/ocr-b-outline/ocrb8.pfb - RELOC/fonts/type1/public/ocr-b-outline/ocrb9.pfb -docfiles size=2 - RELOC/doc/fonts/ocr-b-outline/README - RELOC/doc/fonts/ocr-b-outline/xe-test.tex -srcfiles size=174 - RELOC/source/fonts/ocr-b-outline/ocrb10.sfd - RELOC/source/fonts/ocr-b-outline/ocrb5.sfd - RELOC/source/fonts/ocr-b-outline/ocrb6.sfd - RELOC/source/fonts/ocr-b-outline/ocrb7.sfd - RELOC/source/fonts/ocr-b-outline/ocrb8.sfd - RELOC/source/fonts/ocr-b-outline/ocrb9.sfd -catalogue-ctan /fonts/ocr-b-outline -catalogue-date 2014-05-17 10:36:54 +0200 -catalogue-license other-free - -name ocr-b -category Package -revision 20852 -shortdesc Fonts for OCR-B. -relocated 1 -longdesc Metafont source for OCR-B at several sizes. -runfiles size=28 - RELOC/fonts/source/public/ocr-b/ocrb10.mf - RELOC/fonts/source/public/ocr-b/ocrb10e.mf - RELOC/fonts/source/public/ocr-b/ocrb10f.mf - RELOC/fonts/source/public/ocr-b/ocrb10g.mf - RELOC/fonts/source/public/ocr-b/ocrb10l.mf - RELOC/fonts/source/public/ocr-b/ocrb10s.mf - RELOC/fonts/source/public/ocr-b/ocrb10x.mf - RELOC/fonts/source/public/ocr-b/ocrb5.mf - RELOC/fonts/source/public/ocr-b/ocrb6.mf - RELOC/fonts/source/public/ocr-b/ocrb7.mf - RELOC/fonts/source/public/ocr-b/ocrb8.mf - RELOC/fonts/source/public/ocr-b/ocrb9.mf - RELOC/fonts/source/public/ocr-b/ocrbdef.mf - RELOC/fonts/source/public/ocr-b/ocrbmac.mf - RELOC/fonts/tfm/public/ocr-b/ocrb10.tfm - RELOC/fonts/tfm/public/ocr-b/ocrb5.tfm - RELOC/fonts/tfm/public/ocr-b/ocrb6.tfm - RELOC/fonts/tfm/public/ocr-b/ocrb7.tfm - RELOC/fonts/tfm/public/ocr-b/ocrb8.tfm - RELOC/fonts/tfm/public/ocr-b/ocrb9.tfm -docfiles size=1 - RELOC/doc/fonts/ocr-b/README -catalogue-ctan /fonts/ocr-b -catalogue-date 2014-05-17 10:36:54 +0200 -catalogue-license other-free - -name ocr-latex -category Package -revision 15878 -shortdesc LaTeX support for ocr fonts. -relocated 1 -longdesc The package supports use of both ocr-a and ocr-b fonts in LaTeX -longdesc documents. -runfiles size=8 - RELOC/tex/latex/ocr-latex/ocr.sty - RELOC/tex/latex/ocr-latex/ot1oca.fd - RELOC/tex/latex/ocr-latex/ot1ocra.fd - RELOC/tex/latex/ocr-latex/ot1ocrb.fd - RELOC/tex/latex/ocr-latex/ot1ocrbn.fd - RELOC/tex/latex/ocr-latex/ot1ocrbns.fd - RELOC/tex/latex/ocr-latex/ot1ocrbo.fd - RELOC/tex/latex/ocr-latex/ot1ocrbs.fd -docfiles size=48 - RELOC/doc/latex/ocr-latex/README - RELOC/doc/latex/ocr-latex/ocr.pdf - RELOC/doc/latex/ocr-latex/ocr.tex -catalogue-ctan /macros/latex/contrib/ocr-latex -catalogue-date 2012-11-14 11:48:39 +0100 -catalogue-license gpl - -name octavo -category Package -revision 15878 -shortdesc Typeset books following classical design and layout. -relocated 1 -longdesc The octavo class is a modification of the standard LaTeX book -longdesc class. Its purpose is to typeset books following classical -longdesc design and layout principles, with the express intention of -longdesc encouraging the making of beautiful books by anyone with access -longdesc to a good printer and with an inclination towards venerable -longdesc crafts, e.g., bookbinding. The octavo class differs from the -longdesc book class by implementing many of the proposals and insights -longdesc of respected experts, especially Jan Tschichold and Hugh -longdesc Williamson. The documentation discusses methods to organise and -longdesc print out any text into signatures, which can then be gathered, -longdesc folded and sewn into a book. -runfiles size=11 - RELOC/tex/latex/octavo/oct10.clo - RELOC/tex/latex/octavo/oct11.clo - RELOC/tex/latex/octavo/oct12.clo - RELOC/tex/latex/octavo/octavo.cls -docfiles size=48 - RELOC/doc/latex/octavo/README - RELOC/doc/latex/octavo/changes - RELOC/doc/latex/octavo/tub-octavo.pdf -srcfiles size=27 - RELOC/source/latex/octavo/octavo.dtx - RELOC/source/latex/octavo/octavo.ins -catalogue-ctan /macros/latex/contrib/octavo -catalogue-date 2013-10-30 13:49:16 +0100 -catalogue-license lppl -catalogue-version 1.2 - -name odsfile -category Package -revision 35808 -shortdesc Read OpenDocument Spreadsheet documents as LaTeX tables. -relocated 1 -longdesc The distribution includes a package and a lua library that can -longdesc together read OpenDocument spreadsheet documents as LaTeX -longdesc tables. Cells in the tables may be processed by LaTeX macros, -longdesc so that (for example) the package may be used for drawing some -longdesc plots. The package uses lua's zip library. -runfiles size=4 - RELOC/tex/lualatex/odsfile/odsfile.lua - RELOC/tex/lualatex/odsfile/odsfile.sty -docfiles size=69 - RELOC/doc/lualatex/odsfile/README - RELOC/doc/lualatex/odsfile/odsfile.pdf - RELOC/doc/lualatex/odsfile/odsfile.tex - RELOC/doc/lualatex/odsfile/pokus.ods -catalogue-ctan /macros/luatex/latex/odsfile -catalogue-date 2014-12-11 14:29:14 +0100 -catalogue-license lppl1.3 -catalogue-version 0.4 - -name ofs -category Package -revision 16991 -shortdesc Macros for managing large font collections. -relocated 1 -longdesc OFS (Olsak's Font System) is a set of Plain TeX and LaTeX -longdesc macros for managing large font collections; it has been used by -longdesc Czech/Slovak users for many years. Main features include: -longdesc Mapping from long names of fonts to the metric file name. The -longdesc user can specify only exact long names in documents. Support -longdesc for many font encodings. Printing of catalogues of fonts and -longdesc test samples of font families; the interactive macro \showfonts -longdesc shows all font families you have installed via OFS. The user -longdesc interface is the same for Plain TeX and for LaTeX, but the -longdesc implementation differs: the LaTeX variant of OFS uses NFSS, but -longdesc the Plain variant implements its own font management (which may -longdesc even be better than NFSS) Support for math fonts including TX -longdesc fonts. -runfiles size=93 - RELOC/tex/generic/ofs/a117.tex - RELOC/tex/generic/ofs/a35.sty - RELOC/tex/generic/ofs/a35.tex - RELOC/tex/generic/ofs/allfonts.sty - RELOC/tex/generic/ofs/allfonts.tex - RELOC/tex/generic/ofs/amsfn.tex - RELOC/tex/generic/ofs/mtfn.tex - RELOC/tex/generic/ofs/ofs-6a.tex - RELOC/tex/generic/ofs/ofs-6c.tex - RELOC/tex/generic/ofs/ofs-6k.tex - RELOC/tex/generic/ofs/ofs-6s.tex - RELOC/tex/generic/ofs/ofs-6t.tex - RELOC/tex/generic/ofs/ofs-6x.tex - RELOC/tex/generic/ofs/ofs-6y.tex - RELOC/tex/generic/ofs/ofs-8c.tex - RELOC/tex/generic/ofs/ofs-8t.tex - RELOC/tex/generic/ofs/ofs-8x.tex - RELOC/tex/generic/ofs/ofs-8z.tex - RELOC/tex/generic/ofs/ofs-ams.tex - RELOC/tex/generic/ofs/ofs-cm.tex - RELOC/tex/generic/ofs/ofs-mt.tex - RELOC/tex/generic/ofs/ofs-ps.tex - RELOC/tex/generic/ofs/ofs-px.tex - RELOC/tex/generic/ofs/ofs-slt.tex - RELOC/tex/generic/ofs/ofs-tx.tex - RELOC/tex/generic/ofs/ofs.sty - RELOC/tex/generic/ofs/ofs.tex - RELOC/tex/generic/ofs/ofsdef.tex - RELOC/tex/generic/ofs/pantyk.tex - RELOC/tex/generic/ofs/txfn.tex -docfiles size=265 - RELOC/doc/generic/ofs/changes.txt - RELOC/doc/generic/ofs/eurotex2003-ofs.pdf - RELOC/doc/generic/ofs/eurotex2003-ofs.tex - RELOC/doc/generic/ofs/ofs-slt.pdf - RELOC/doc/generic/ofs/ofsdoc-e.pdf - RELOC/doc/generic/ofs/ofsdoc-e.tex - RELOC/doc/generic/ofs/ofsdoc.pdf - RELOC/doc/generic/ofs/ofsdoc.tex - RELOC/doc/generic/ofs/ofsmtdef.tex - RELOC/doc/generic/ofs/ofstest.tex - RELOC/doc/generic/ofs/readme.ofs -catalogue-ctan /macros/generic/ofs -catalogue-date 2014-05-23 15:55:46 +0200 -catalogue-license knuth - -name ogham -category Package -revision 24876 -shortdesc Fonts for typesetting Ogham script. -relocated 1 -longdesc The font provides the Ogham alphabet, which is found on a -longdesc number of Irish and Pictish carvings dating from the 4th -longdesc century AD. The font is distributed as Metafont source, which -longdesc has been patched (with the author's permission) for stability -longdesc at different output device resolutions. (Thanks are due to -longdesc Peter Flynn and Dan Luecking.) -runfiles size=3 - RELOC/fonts/source/public/ogham/ogham.mf - RELOC/fonts/tfm/public/ogham/ogham.tfm -docfiles size=7 - RELOC/doc/fonts/ogham/testfont.pdf -catalogue-ctan /fonts/ogham -catalogue-date 2014-05-17 10:36:54 +0200 -catalogue-license pd - -name oinuit -category Package -revision 28668 -shortdesc LaTeX Support for the Inuktitut Language. -relocated 1 -longdesc The package provides a set of Lambda (Omega LaTeX) typesetting -longdesc tools for the Inuktitut language. Five different input methods -longdesc are supported and with the necessary fonts are also provided. -execute addMap oinuit.map -runfiles size=563 - RELOC/fonts/map/dvips/oinuit/oinuit.map - RELOC/fonts/ofm/public/oinuit/OInuit.ofm - RELOC/fonts/ofm/public/oinuit/OInuitb.ofm - RELOC/fonts/ofm/public/oinuit/OInuitbo.ofm - RELOC/fonts/ofm/public/oinuit/OInuito.ofm - RELOC/fonts/ovf/public/oinuit/OInuit.ovf - RELOC/fonts/ovf/public/oinuit/OInuitb.ovf - RELOC/fonts/ovf/public/oinuit/OInuitbo.ovf - RELOC/fonts/ovf/public/oinuit/OInuito.ovf - RELOC/fonts/tfm/public/oinuit/Inuit.tfm - RELOC/fonts/tfm/public/oinuit/Inuitb.tfm - RELOC/fonts/tfm/public/oinuit/Inuitbo.tfm - RELOC/fonts/tfm/public/oinuit/Inuito.tfm - RELOC/fonts/type1/public/oinuit/Inuit.pfb - RELOC/fonts/type1/public/oinuit/Inuitb.pfb - RELOC/fonts/type1/public/oinuit/Inuitbo.pfb - RELOC/fonts/type1/public/oinuit/Inuito.pfb - RELOC/fonts/type1/public/oinuit/cmssbxo10.pfb - RELOC/omega/ocp/oinuit/Ninuit2uni.ocp - RELOC/omega/ocp/oinuit/Qinuit2uni.ocp - RELOC/omega/ocp/oinuit/inuitscii.ocp - RELOC/omega/otp/oinuit/Ninuit2uni.otp - RELOC/omega/otp/oinuit/Qinuit2uni.otp - RELOC/omega/otp/oinuit/inuitscii.otp - RELOC/tex/lambda/oinuit/litcmr.fd - RELOC/tex/lambda/oinuit/litenc.def - RELOC/tex/lambda/oinuit/oinuit.sty -docfiles size=82 - RELOC/doc/fonts/oinuit/README.1ST - RELOC/doc/fonts/oinuit/README.TEXLIVE - RELOC/doc/fonts/oinuit/Table.eps - RELOC/doc/fonts/oinuit/book.tex - RELOC/doc/fonts/oinuit/inuit.tex - RELOC/doc/fonts/oinuit/taqtu.tex -srcfiles size=11 - RELOC/source/lambda/oinuit/oinuit.dtx - RELOC/source/lambda/oinuit/oinuit.ins -catalogue-ctan /language/inuktitut/oinuit -catalogue-date 2012-12-31 10:40:46 +0100 -catalogue-license lppl - -name old-arrows -category Package -revision 38349 -shortdesc Computer Modern old-style arrows with smaller arrowheads -relocated 1 -longdesc This package provides Computer Modern old-style arrows with -longdesc smaller arrowheads, associated with the usual LaTeX commands. -longdesc It can be used in documents that contain other amssymb arrow -longdesc characters that also have small arrowheads. It is also possible -longdesc to use the usual new-style Computer Modern arrows together with -longdesc the old-style ones. -execute addMap oasy.map -runfiles size=53 - RELOC/fonts/afm/public/old-arrows/oabsy10.afm - RELOC/fonts/afm/public/old-arrows/oabsy5.afm - RELOC/fonts/afm/public/old-arrows/oabsy7.afm - RELOC/fonts/afm/public/old-arrows/oasy10.afm - RELOC/fonts/afm/public/old-arrows/oasy5.afm - RELOC/fonts/afm/public/old-arrows/oasy6.afm - RELOC/fonts/afm/public/old-arrows/oasy7.afm - RELOC/fonts/afm/public/old-arrows/oasy8.afm - RELOC/fonts/afm/public/old-arrows/oasy9.afm - RELOC/fonts/enc/dvips/old-arrows/oasy.enc - RELOC/fonts/map/dvips/old-arrows/oasy.map - RELOC/fonts/tfm/public/old-arrows/oabsy10.tfm - RELOC/fonts/tfm/public/old-arrows/oabsy5.tfm - RELOC/fonts/tfm/public/old-arrows/oabsy6.tfm - RELOC/fonts/tfm/public/old-arrows/oabsy7.tfm - RELOC/fonts/tfm/public/old-arrows/oabsy8.tfm - RELOC/fonts/tfm/public/old-arrows/oabsy9.tfm - RELOC/fonts/tfm/public/old-arrows/oasy10.tfm - RELOC/fonts/tfm/public/old-arrows/oasy5.tfm - RELOC/fonts/tfm/public/old-arrows/oasy6.tfm - RELOC/fonts/tfm/public/old-arrows/oasy7.tfm - RELOC/fonts/tfm/public/old-arrows/oasy8.tfm - RELOC/fonts/tfm/public/old-arrows/oasy9.tfm - RELOC/fonts/type1/public/old-arrows/oabsy10.pfb - RELOC/fonts/type1/public/old-arrows/oabsy10.pfm - RELOC/fonts/type1/public/old-arrows/oabsy5.pfb - RELOC/fonts/type1/public/old-arrows/oabsy5.pfm - RELOC/fonts/type1/public/old-arrows/oabsy7.pfb - RELOC/fonts/type1/public/old-arrows/oabsy7.pfm - RELOC/fonts/type1/public/old-arrows/oasy10.pfb - RELOC/fonts/type1/public/old-arrows/oasy10.pfm - RELOC/fonts/type1/public/old-arrows/oasy5.pfb - RELOC/fonts/type1/public/old-arrows/oasy5.pfm - RELOC/fonts/type1/public/old-arrows/oasy6.pfb - RELOC/fonts/type1/public/old-arrows/oasy6.pfm - RELOC/fonts/type1/public/old-arrows/oasy7.pfb - RELOC/fonts/type1/public/old-arrows/oasy7.pfm - RELOC/fonts/type1/public/old-arrows/oasy8.pfb - RELOC/fonts/type1/public/old-arrows/oasy8.pfm - RELOC/fonts/type1/public/old-arrows/oasy9.pfb - RELOC/fonts/type1/public/old-arrows/oasy9.pfm - RELOC/tex/latex/old-arrows/old-arrows.sty -docfiles size=139 - RELOC/doc/fonts/old-arrows/README.md - RELOC/doc/fonts/old-arrows/old-arrows-italian.pdf - RELOC/doc/fonts/old-arrows/old-arrows-italian.tex - RELOC/doc/fonts/old-arrows/old-arrows.pdf - RELOC/doc/fonts/old-arrows/old-arrows.tex -catalogue-ctan /fonts/old-arrows -catalogue-date 2015-09-11 18:21:22 +0200 -catalogue-license lppl1.3 -catalogue-topics font-symbol-maths font-type1 -catalogue-version 1.1 - -name oldlatin -category Package -revision 17932 -shortdesc Compute Modern-like font with long s. -relocated 1 -longdesc Metafont sources modified from Computer Modern in order to -longdesc generate "long s" which was used in old text. -runfiles size=112 - RELOC/fonts/source/public/oldlatin/olb10.mf - RELOC/fonts/source/public/oldlatin/olbx10.mf - RELOC/fonts/source/public/oldlatin/olbx12.mf - RELOC/fonts/source/public/oldlatin/olbx5.mf - RELOC/fonts/source/public/oldlatin/olbx6.mf - RELOC/fonts/source/public/oldlatin/olbx7.mf - RELOC/fonts/source/public/oldlatin/olbx8.mf - RELOC/fonts/source/public/oldlatin/olbx9.mf - RELOC/fonts/source/public/oldlatin/olbxsl10.mf - RELOC/fonts/source/public/oldlatin/oldunh10.mf - RELOC/fonts/source/public/oldlatin/olff10.mf - RELOC/fonts/source/public/oldlatin/olfib8.mf - RELOC/fonts/source/public/oldlatin/olr10.mf - RELOC/fonts/source/public/oldlatin/olr10s.mf - RELOC/fonts/source/public/oldlatin/olr12.mf - RELOC/fonts/source/public/oldlatin/olr17.mf - RELOC/fonts/source/public/oldlatin/olr5.mf - RELOC/fonts/source/public/oldlatin/olr6.mf - RELOC/fonts/source/public/oldlatin/olr7.mf - RELOC/fonts/source/public/oldlatin/olr8.mf - RELOC/fonts/source/public/oldlatin/olr9.mf - RELOC/fonts/source/public/oldlatin/olsl10.mf - RELOC/fonts/source/public/oldlatin/olsl12.mf - RELOC/fonts/source/public/oldlatin/olsl8.mf - RELOC/fonts/source/public/oldlatin/olsl9.mf - RELOC/fonts/source/public/oldlatin/olsltt10.mf - RELOC/fonts/source/public/oldlatin/olss10.mf - RELOC/fonts/source/public/oldlatin/olss12.mf - RELOC/fonts/source/public/oldlatin/olss17.mf - RELOC/fonts/source/public/oldlatin/olss8.mf - RELOC/fonts/source/public/oldlatin/olss9.mf - RELOC/fonts/source/public/oldlatin/olssbx10.mf - RELOC/fonts/source/public/oldlatin/olssdc10.mf - RELOC/fonts/source/public/oldlatin/olssi10.mf - RELOC/fonts/source/public/oldlatin/olssi12.mf - RELOC/fonts/source/public/oldlatin/olssi17.mf - RELOC/fonts/source/public/oldlatin/olssi8.mf - RELOC/fonts/source/public/oldlatin/olssi9.mf - RELOC/fonts/source/public/oldlatin/olssq8.mf - RELOC/fonts/source/public/oldlatin/olssqi8.mf - RELOC/fonts/source/public/oldlatin/oltt10.mf - RELOC/fonts/source/public/oldlatin/oltt12.mf - RELOC/fonts/source/public/oldlatin/oltt8.mf - RELOC/fonts/source/public/oldlatin/oltt9.mf - RELOC/fonts/source/public/oldlatin/olvtt10.mf - RELOC/fonts/source/public/oldlatin/oroman.mf - RELOC/fonts/source/public/oldlatin/oromanl.mf - RELOC/fonts/source/public/oldlatin/oromlig.mf - RELOC/fonts/source/public/oldlatin/oromligs.mf - RELOC/fonts/tfm/public/oldlatin/olb10.tfm - RELOC/fonts/tfm/public/oldlatin/olbx10.tfm - RELOC/fonts/tfm/public/oldlatin/olbx12.tfm - RELOC/fonts/tfm/public/oldlatin/olbx5.tfm - RELOC/fonts/tfm/public/oldlatin/olbx6.tfm - RELOC/fonts/tfm/public/oldlatin/olbx7.tfm - RELOC/fonts/tfm/public/oldlatin/olbx8.tfm - RELOC/fonts/tfm/public/oldlatin/olbx9.tfm - RELOC/fonts/tfm/public/oldlatin/olbxsl10.tfm - RELOC/fonts/tfm/public/oldlatin/oldunh10.tfm - RELOC/fonts/tfm/public/oldlatin/olff10.tfm - RELOC/fonts/tfm/public/oldlatin/olfib8.tfm - RELOC/fonts/tfm/public/oldlatin/olr10.tfm - RELOC/fonts/tfm/public/oldlatin/olr12.tfm - RELOC/fonts/tfm/public/oldlatin/olr17.tfm - RELOC/fonts/tfm/public/oldlatin/olr5.tfm - RELOC/fonts/tfm/public/oldlatin/olr6.tfm - RELOC/fonts/tfm/public/oldlatin/olr7.tfm - RELOC/fonts/tfm/public/oldlatin/olr8.tfm - RELOC/fonts/tfm/public/oldlatin/olr9.tfm - RELOC/fonts/tfm/public/oldlatin/olsl10.tfm - RELOC/fonts/tfm/public/oldlatin/olsl12.tfm - RELOC/fonts/tfm/public/oldlatin/olsl8.tfm - RELOC/fonts/tfm/public/oldlatin/olsl9.tfm - RELOC/fonts/tfm/public/oldlatin/olsltt10.tfm - RELOC/fonts/tfm/public/oldlatin/olss10.tfm - RELOC/fonts/tfm/public/oldlatin/olss12.tfm - RELOC/fonts/tfm/public/oldlatin/olss17.tfm - RELOC/fonts/tfm/public/oldlatin/olss8.tfm - RELOC/fonts/tfm/public/oldlatin/olss9.tfm - RELOC/fonts/tfm/public/oldlatin/olssbx10.tfm - RELOC/fonts/tfm/public/oldlatin/olssdc10.tfm - RELOC/fonts/tfm/public/oldlatin/olssi10.tfm - RELOC/fonts/tfm/public/oldlatin/olssi12.tfm - RELOC/fonts/tfm/public/oldlatin/olssi17.tfm - RELOC/fonts/tfm/public/oldlatin/olssi8.tfm - RELOC/fonts/tfm/public/oldlatin/olssi9.tfm - RELOC/fonts/tfm/public/oldlatin/olssq8.tfm - RELOC/fonts/tfm/public/oldlatin/olssqi8.tfm - RELOC/fonts/tfm/public/oldlatin/oltt10.tfm - RELOC/fonts/tfm/public/oldlatin/oltt12.tfm - RELOC/fonts/tfm/public/oldlatin/oltt8.tfm - RELOC/fonts/tfm/public/oldlatin/oltt9.tfm - RELOC/fonts/tfm/public/oldlatin/olvtt10.tfm -docfiles size=237 - RELOC/doc/fonts/oldlatin/README - RELOC/doc/fonts/oldlatin/oldlatin.pdf - RELOC/doc/fonts/oldlatin/oldlatin.tex - RELOC/doc/fonts/oldlatin/test_alphabet.tex - RELOC/doc/fonts/oldlatin/test_ol_all.pdf - RELOC/doc/fonts/oldlatin/test_ol_all.tex - RELOC/doc/fonts/oldlatin/test_ol_bf.pdf - RELOC/doc/fonts/oldlatin/test_ol_bf.tex - RELOC/doc/fonts/oldlatin/test_ol_rm.pdf - RELOC/doc/fonts/oldlatin/test_ol_rm.tex - RELOC/doc/fonts/oldlatin/test_ol_sl.pdf - RELOC/doc/fonts/oldlatin/test_ol_sl.tex - RELOC/doc/fonts/oldlatin/test_ol_ss.pdf - RELOC/doc/fonts/oldlatin/test_ol_ss.tex - RELOC/doc/fonts/oldlatin/test_ol_tt.pdf - RELOC/doc/fonts/oldlatin/test_ol_tt.tex -catalogue-ctan /fonts/gothic/oldlatin -catalogue-date 2014-05-17 15:44:21 +0200 -catalogue-license lppl -catalogue-version 1.00 - -name oldstandard -category Package -revision 29349 -shortdesc Old Standard: A Unicode Font for Classical and Medieval Studies. -relocated 1 -longdesc Old Standard is designed to reproduce the actual printing style -longdesc of the early 20th century, reviving a specific type of Modern -longdesc (classicist) style of serif typefaces, very commonly used in -longdesc various editions of the late 19th and early 20th century, but -longdesc almost completely abandoned later. The font supports -longdesc typesetting of Old and Middle English, Old Icelandic, Cyrillic -longdesc (with historical characters, extensions for Old Slavonic and -longdesc localised forms), Gothic transliterations, critical editions of -longdesc Classical Greek and Latin, and many more. Old Standard works -longdesc with TeX engines that directly support OpenType features, such -longdesc as XeTeX and LuaTeX. -runfiles size=137 - RELOC/fonts/opentype/public/oldstandard/OldStandard-Bold.otf - RELOC/fonts/opentype/public/oldstandard/OldStandard-Italic.otf - RELOC/fonts/opentype/public/oldstandard/OldStandard-Regular.otf -docfiles size=348 - RELOC/doc/fonts/oldstandard/FONTLOG.txt - RELOC/doc/fonts/oldstandard/OFL-FAQ.txt - RELOC/doc/fonts/oldstandard/OFL.txt - RELOC/doc/fonts/oldstandard/README - RELOC/doc/fonts/oldstandard/didot-de.png - RELOC/doc/fonts/oldstandard/didot-fr.png - RELOC/doc/fonts/oldstandard/gendocs.sh - RELOC/doc/fonts/oldstandard/genfonts.sh - RELOC/doc/fonts/oldstandard/greek-contextual.png - RELOC/doc/fonts/oldstandard/oldstand-manual.pdf - RELOC/doc/fonts/oldstandard/oldstand-manual.tex - RELOC/doc/fonts/oldstandard/opentype.png - RELOC/doc/fonts/oldstandard/ost-generate.py - RELOC/doc/fonts/oldstandard/serbian.png - RELOC/doc/fonts/oldstandard/spadmin-add.png - RELOC/doc/fonts/oldstandard/spadmin.png - RELOC/doc/fonts/oldstandard/stand-su.png - RELOC/doc/fonts/oldstandard/teubner.png - RELOC/doc/fonts/oldstandard/truetype.png -srcfiles size=1758 - RELOC/source/fonts/oldstandard/OldStandard-Bold.sfd - RELOC/source/fonts/oldstandard/OldStandard-Italic.sfd - RELOC/source/fonts/oldstandard/OldStandard-Regular.sfd -catalogue-ctan /fonts/oldstandard -catalogue-date 2014-05-17 15:44:21 +0200 -catalogue-license ofl -catalogue-version 2.0.2 - -name oldstyle -category Package -revision 15878 -shortdesc Old style numbers in OT1 encoding. -relocated 1 -longdesc Font information needed to load the cmmi and cmmib fonts for -longdesc use to produce oldstyle numbers. -runfiles size=2 - RELOC/tex/latex/oldstyle/Ucmm.fd - RELOC/tex/latex/oldstyle/oldstyle.sty -docfiles size=18 - RELOC/doc/latex/oldstyle/oldstyle.pdf -srcfiles size=3 - RELOC/source/latex/oldstyle/oldstyle.dtx - RELOC/source/latex/oldstyle/oldstyle.ins -catalogue-ctan /macros/latex/contrib/oldstyle -catalogue-date 2012-06-16 10:52:26 +0200 -catalogue-license lppl -catalogue-version 0.2 - -name omega -category Package -revision 33046 -shortdesc A wide-character-set extension of TeX. -relocated 1 -longdesc A development of TeX, which deals in multi-octet Unicode -longdesc characters, to enable native treatment of a wide range of -longdesc languages without changing character-set. Work on Omega seems -longdesc to have ceased: its immediate successor was to be the aleph -longdesc project (though that too has stalled). Projects developing -longdesc Omega (and Aleph) ideas include Omega-2 and LuaTeX. -execute addMap omega.map -runfiles size=1523 - RELOC/dvips/omega/config.omega - RELOC/dvips/omega/omega.cfg - RELOC/fonts/afm/public/omega/omsea1.afm - RELOC/fonts/afm/public/omega/omsea1b.afm - RELOC/fonts/afm/public/omega/omsea2.afm - RELOC/fonts/afm/public/omega/omsea2b.afm - RELOC/fonts/afm/public/omega/omsea3.afm - RELOC/fonts/afm/public/omega/omsea3b.afm - RELOC/fonts/afm/public/omega/omseco.afm - RELOC/fonts/afm/public/omega/omsecob.afm - RELOC/fonts/afm/public/omega/omsecobi.afm - RELOC/fonts/afm/public/omega/omsecoi.afm - RELOC/fonts/afm/public/omega/omsecx.afm - RELOC/fonts/afm/public/omega/omsecy.afm - RELOC/fonts/afm/public/omega/omsegr.afm - RELOC/fonts/afm/public/omega/omsegrb.afm - RELOC/fonts/afm/public/omega/omsegrbi.afm - RELOC/fonts/afm/public/omega/omsegri.afm - RELOC/fonts/afm/public/omega/omseha.afm - RELOC/fonts/afm/public/omega/omsehe.afm - RELOC/fonts/afm/public/omega/omseip.afm - RELOC/fonts/afm/public/omega/omsela.afm - RELOC/fonts/afm/public/omega/omselab.afm - RELOC/fonts/afm/public/omega/omselabi.afm - RELOC/fonts/afm/public/omega/omselai.afm - RELOC/fonts/afm/public/omega/omseti.afm - RELOC/fonts/map/dvips/omega/omega.map - RELOC/fonts/ofm/public/omega/omarab.ofm - RELOC/fonts/ofm/public/omega/omarabb.ofm - RELOC/fonts/ofm/public/omega/omlgc.ofm - RELOC/fonts/ofm/public/omega/omlgcb.ofm - RELOC/fonts/ofm/public/omega/omlgcbi.ofm - RELOC/fonts/ofm/public/omega/omlgci.ofm - RELOC/fonts/ofm/public/omega/ucitt10.ofm - RELOC/fonts/ofm/public/omega/ucsltt10.ofm - RELOC/fonts/ofm/public/omega/uctt10.ofm - RELOC/fonts/ofm/public/omega/uctt12.ofm - RELOC/fonts/ofm/public/omega/uctt8.ofm - RELOC/fonts/ofm/public/omega/uctt9.ofm - RELOC/fonts/ofm/public/omega/ucvtt10.ofm - RELOC/fonts/ovf/public/omega/omarab.ovf - RELOC/fonts/ovf/public/omega/omarabb.ovf - RELOC/fonts/ovf/public/omega/omlgc.ovf - RELOC/fonts/ovf/public/omega/omlgcb.ovf - RELOC/fonts/ovf/public/omega/omlgcbi.ovf - RELOC/fonts/ovf/public/omega/omlgci.ovf - RELOC/fonts/ovf/public/omega/ucitt10.ovf - RELOC/fonts/ovf/public/omega/ucsltt10.ovf - RELOC/fonts/ovf/public/omega/uctt10.ovf - RELOC/fonts/ovf/public/omega/uctt12.ovf - RELOC/fonts/ovf/public/omega/uctt8.ovf - RELOC/fonts/ovf/public/omega/uctt9.ovf - RELOC/fonts/ovf/public/omega/ucvtt10.ovf - RELOC/fonts/ovp/public/omega/omarab.ovp - RELOC/fonts/ovp/public/omega/omarabb.ovp - RELOC/fonts/ovp/public/omega/omlgc.ovp - RELOC/fonts/ovp/public/omega/omlgcb.ovp - RELOC/fonts/ovp/public/omega/omlgcbi.ovp - RELOC/fonts/ovp/public/omega/omlgci.ovp - RELOC/fonts/ovp/public/omega/ucitt10.ovp - RELOC/fonts/ovp/public/omega/ucsltt10.ovp - RELOC/fonts/ovp/public/omega/uctt10.ovp - RELOC/fonts/ovp/public/omega/uctt12.ovp - RELOC/fonts/ovp/public/omega/uctt8.ovp - RELOC/fonts/ovp/public/omega/uctt9.ovp - RELOC/fonts/ovp/public/omega/ucvtt10.ovp - RELOC/fonts/tfm/public/omega/omding.tfm - RELOC/fonts/tfm/public/omega/omsea1.tfm - RELOC/fonts/tfm/public/omega/omsea1b.tfm - RELOC/fonts/tfm/public/omega/omsea2.tfm - RELOC/fonts/tfm/public/omega/omsea2b.tfm - RELOC/fonts/tfm/public/omega/omsea3.tfm - RELOC/fonts/tfm/public/omega/omsea3b.tfm - RELOC/fonts/tfm/public/omega/omseco.tfm - RELOC/fonts/tfm/public/omega/omsecob.tfm - RELOC/fonts/tfm/public/omega/omsecobi.tfm - RELOC/fonts/tfm/public/omega/omsecoi.tfm - RELOC/fonts/tfm/public/omega/omsecx.tfm - RELOC/fonts/tfm/public/omega/omsecy.tfm - RELOC/fonts/tfm/public/omega/omsegr.tfm - RELOC/fonts/tfm/public/omega/omsegrb.tfm - RELOC/fonts/tfm/public/omega/omsegrbi.tfm - RELOC/fonts/tfm/public/omega/omsegri.tfm - RELOC/fonts/tfm/public/omega/omseha.tfm - RELOC/fonts/tfm/public/omega/omseip.tfm - RELOC/fonts/tfm/public/omega/omsela.tfm - RELOC/fonts/tfm/public/omega/omselab.tfm - RELOC/fonts/tfm/public/omega/omselabi.tfm - RELOC/fonts/tfm/public/omega/omselai.tfm - RELOC/fonts/tfm/public/omega/omseti.tfm - RELOC/fonts/tfm/public/omega/omssti.tfm - RELOC/fonts/type1/public/omega/omding.pfb - RELOC/fonts/type1/public/omega/omsea1.pfb - RELOC/fonts/type1/public/omega/omsea1b.pfb - RELOC/fonts/type1/public/omega/omsea2.pfb - RELOC/fonts/type1/public/omega/omsea2b.pfb - RELOC/fonts/type1/public/omega/omsea3.pfb - RELOC/fonts/type1/public/omega/omsea3b.pfb - RELOC/fonts/type1/public/omega/omseco.pfb - RELOC/fonts/type1/public/omega/omsecob.pfb - RELOC/fonts/type1/public/omega/omsecobi.pfb - RELOC/fonts/type1/public/omega/omsecoi.pfb - RELOC/fonts/type1/public/omega/omsecx.pfb - RELOC/fonts/type1/public/omega/omsecy.pfb - RELOC/fonts/type1/public/omega/omsecyb.pfb - RELOC/fonts/type1/public/omega/omsecyi.pfb - RELOC/fonts/type1/public/omega/omsegr.pfb - RELOC/fonts/type1/public/omega/omsegrb.pfb - RELOC/fonts/type1/public/omega/omsegrbi.pfb - RELOC/fonts/type1/public/omega/omsegri.pfb - RELOC/fonts/type1/public/omega/omseha.pfb - RELOC/fonts/type1/public/omega/omsehe.pfb - RELOC/fonts/type1/public/omega/omseip.pfb - RELOC/fonts/type1/public/omega/omsela.pfb - RELOC/fonts/type1/public/omega/omselab.pfb - RELOC/fonts/type1/public/omega/omselabi.pfb - RELOC/fonts/type1/public/omega/omselai.pfb - RELOC/fonts/type1/public/omega/omseti.pfb - RELOC/fonts/type1/public/omega/omssti.pfb - RELOC/omega/ocp/char2uni/in646.ocp - RELOC/omega/ocp/char2uni/in88591.ocp - RELOC/omega/ocp/char2uni/in88592.ocp - RELOC/omega/ocp/char2uni/in88593.ocp - RELOC/omega/ocp/char2uni/in88594.ocp - RELOC/omega/ocp/char2uni/in88595.ocp - RELOC/omega/ocp/char2uni/in88596.ocp - RELOC/omega/ocp/char2uni/in88597.ocp - RELOC/omega/ocp/char2uni/in88598.ocp - RELOC/omega/ocp/char2uni/in88599.ocp - RELOC/omega/ocp/char2uni/in8859a.ocp - RELOC/omega/ocp/char2uni/in8859d.ocp - RELOC/omega/ocp/char2uni/in8859e.ocp - RELOC/omega/ocp/char2uni/in8859f.ocp - RELOC/omega/ocp/char2uni/in8859g.ocp - RELOC/omega/ocp/char2uni/inatari.ocp - RELOC/omega/ocp/char2uni/inav.ocp - RELOC/omega/ocp/char2uni/inbig5.ocp - RELOC/omega/ocp/char2uni/incp1250.ocp - RELOC/omega/ocp/char2uni/incp1251.ocp - RELOC/omega/ocp/char2uni/incp1252.ocp - RELOC/omega/ocp/char2uni/incp1253.ocp - RELOC/omega/ocp/char2uni/incp1254.ocp - RELOC/omega/ocp/char2uni/incp1255.ocp - RELOC/omega/ocp/char2uni/incp1256.ocp - RELOC/omega/ocp/char2uni/incp1257.ocp - RELOC/omega/ocp/char2uni/incp1258.ocp - RELOC/omega/ocp/char2uni/incp866.ocp - RELOC/omega/ocp/char2uni/incp874.ocp - RELOC/omega/ocp/char2uni/inebcdic.ocp - RELOC/omega/ocp/char2uni/ingb.ocp - RELOC/omega/ocp/char2uni/inkoi8.ocp - RELOC/omega/ocp/char2uni/inmac.ocp - RELOC/omega/ocp/char2uni/inmsdos.ocp - RELOC/omega/ocp/char2uni/inmsdos2.ocp - RELOC/omega/ocp/char2uni/innext.ocp - RELOC/omega/ocp/char2uni/inov.ocp - RELOC/omega/ocp/char2uni/inps2.ocp - RELOC/omega/ocp/char2uni/insf1.ocp - RELOC/omega/ocp/char2uni/insf2.ocp - RELOC/omega/ocp/char2uni/intis620.ocp - RELOC/omega/ocp/char2uni/inucode.ocp - RELOC/omega/ocp/char2uni/inutf8.ocp - RELOC/omega/ocp/char2uni/inviet1.ocp - RELOC/omega/ocp/char2uni/inviet2.ocp - RELOC/omega/ocp/char2uni/inviscii.ocp - RELOC/omega/ocp/misc/ebcdic.ocp - RELOC/omega/ocp/misc/id.ocp - RELOC/omega/ocp/omega/7arb2uni.ocp - RELOC/omega/ocp/omega/7ber2uni.ocp - RELOC/omega/ocp/omega/7cyr2uni.ocp - RELOC/omega/ocp/omega/7hma2uni.ocp - RELOC/omega/ocp/omega/7in88593.ocp - RELOC/omega/ocp/omega/7lbe2uni.ocp - RELOC/omega/ocp/omega/7pap2uni.ocp - RELOC/omega/ocp/omega/7pas2uni.ocp - RELOC/omega/ocp/omega/7snd2uni.ocp - RELOC/omega/ocp/omega/7syr2uni.ocp - RELOC/omega/ocp/omega/7tbe2uni.ocp - RELOC/omega/ocp/omega/7urd2uni.ocp - RELOC/omega/ocp/omega/8mac-arb2uni.ocp - RELOC/omega/ocp/omega/8mac-cyr2uni.ocp - RELOC/omega/ocp/omega/apostr2psili.ocp - RELOC/omega/ocp/omega/cuni2acad.ocp - RELOC/omega/ocp/omega/cuni2amal.ocp - RELOC/omega/ocp/omega/cuni2arab.ex.ocp - RELOC/omega/ocp/omega/cuni2arab.ocp - RELOC/omega/ocp/omega/cuni2asv.ocp - RELOC/omega/ocp/omega/cuni2bout.ocp - RELOC/omega/ocp/omega/cuni2mona.ocp - RELOC/omega/ocp/omega/cuni2nar.ocp - RELOC/omega/ocp/omega/cuni2nva.ocp - RELOC/omega/ocp/omega/cuni2oar-novow.ocp - RELOC/omega/ocp/omega/cuni2oar.ocp - RELOC/omega/ocp/omega/cunioara.ocp - RELOC/omega/ocp/omega/dblquote-point.ocp - RELOC/omega/ocp/omega/destroy.ocp - RELOC/omega/ocp/omega/french2uni.ocp - RELOC/omega/ocp/omega/greek.ocp - RELOC/omega/ocp/omega/grpo2uni.ocp - RELOC/omega/ocp/omega/grpotilde2uni.ocp - RELOC/omega/ocp/omega/inverted-iota-upsilon.ocp - RELOC/omega/ocp/omega/isogr2uni-verbatim.ocp - RELOC/omega/ocp/omega/isogr2uni.ocp - RELOC/omega/ocp/omega/lat2uni.ocp - RELOC/omega/ocp/omega/lowercase.ocp - RELOC/omega/ocp/omega/lunatesigma.ocp - RELOC/omega/ocp/omega/macgr2uni.ocp - RELOC/omega/ocp/omega/medbeta.ocp - RELOC/omega/ocp/omega/mixedgreek2uni.ocp - RELOC/omega/ocp/omega/tarauni.ocp - RELOC/omega/ocp/omega/test1.ocp - RELOC/omega/ocp/omega/test3.ocp - RELOC/omega/ocp/omega/tiqwah.ocp - RELOC/omega/ocp/omega/tiqwah2.ocp - RELOC/omega/ocp/omega/tsinduni.ocp - RELOC/omega/ocp/omega/turduuni.ocp - RELOC/omega/ocp/omega/uni2cuni.ocp - RELOC/omega/ocp/omega/uni2greek-verbatim.ocp - RELOC/omega/ocp/omega/uni2greek.ocp - RELOC/omega/ocp/omega/uni2lat-noffi.ocp - RELOC/omega/ocp/omega/uni2lat.ocp - RELOC/omega/ocp/omega/unicuni.ocp - RELOC/omega/ocp/omega/uppercase-no-accents.ocp - RELOC/omega/ocp/omega/uppercase.ocp - RELOC/omega/ocp/uni2char/out88591.ocp - RELOC/omega/ocp/uni2char/oututf8.ocp - RELOC/omega/otp/char2uni/in646.otp - RELOC/omega/otp/char2uni/in88591.otp - RELOC/omega/otp/char2uni/in88592.otp - RELOC/omega/otp/char2uni/in88593.otp - RELOC/omega/otp/char2uni/in88594.otp - RELOC/omega/otp/char2uni/in88595.otp - RELOC/omega/otp/char2uni/in88596.otp - RELOC/omega/otp/char2uni/in88597.otp - RELOC/omega/otp/char2uni/in88598.otp - RELOC/omega/otp/char2uni/in88599.otp - RELOC/omega/otp/char2uni/in8859a.otp - RELOC/omega/otp/char2uni/in8859d.otp - RELOC/omega/otp/char2uni/in8859e.otp - RELOC/omega/otp/char2uni/in8859f.otp - RELOC/omega/otp/char2uni/in8859g.otp - RELOC/omega/otp/char2uni/inatari.otp - RELOC/omega/otp/char2uni/inav.otp - RELOC/omega/otp/char2uni/inbig5.otp - RELOC/omega/otp/char2uni/incp1250.otp - RELOC/omega/otp/char2uni/incp1251.otp - RELOC/omega/otp/char2uni/incp1252.otp - RELOC/omega/otp/char2uni/incp1253.otp - RELOC/omega/otp/char2uni/incp1254.otp - RELOC/omega/otp/char2uni/incp1255.otp - RELOC/omega/otp/char2uni/incp1256.otp - RELOC/omega/otp/char2uni/incp1257.otp - RELOC/omega/otp/char2uni/incp1258.otp - RELOC/omega/otp/char2uni/incp866.otp - RELOC/omega/otp/char2uni/incp874.otp - RELOC/omega/otp/char2uni/inebcdic.otp - RELOC/omega/otp/char2uni/ingb.otp - RELOC/omega/otp/char2uni/inkoi8.otp - RELOC/omega/otp/char2uni/inmac.otp - RELOC/omega/otp/char2uni/inmsdos.otp - RELOC/omega/otp/char2uni/inmsdos2.otp - RELOC/omega/otp/char2uni/innext.otp - RELOC/omega/otp/char2uni/inov.otp - RELOC/omega/otp/char2uni/inps2.otp - RELOC/omega/otp/char2uni/insf1.otp - RELOC/omega/otp/char2uni/insf2.otp - RELOC/omega/otp/char2uni/intis620.otp - RELOC/omega/otp/char2uni/inucode.otp - RELOC/omega/otp/char2uni/inutf8.otp - RELOC/omega/otp/char2uni/inviet1.otp - RELOC/omega/otp/char2uni/inviet2.otp - RELOC/omega/otp/char2uni/inviscii.otp - RELOC/omega/otp/misc/ebcdic.otp - RELOC/omega/otp/misc/id.otp - RELOC/omega/otp/omega/7arb2uni.otp - RELOC/omega/otp/omega/7ber2uni.otp - RELOC/omega/otp/omega/7cyr2uni.otp - RELOC/omega/otp/omega/7hma2uni.otp - RELOC/omega/otp/omega/7in88593.otp - RELOC/omega/otp/omega/7lbe2uni.otp - RELOC/omega/otp/omega/7pap2uni.otp - RELOC/omega/otp/omega/7pas2uni.otp - RELOC/omega/otp/omega/7snd2uni.otp - RELOC/omega/otp/omega/7syr2uni.otp - RELOC/omega/otp/omega/7tbe2uni.otp - RELOC/omega/otp/omega/7urd2uni.otp - RELOC/omega/otp/omega/8mac-arb2uni.otp - RELOC/omega/otp/omega/8mac-cyr2uni.otp - RELOC/omega/otp/omega/apostr2psili.otp - RELOC/omega/otp/omega/cuni2acad.otp - RELOC/omega/otp/omega/cuni2amal.otp - RELOC/omega/otp/omega/cuni2arab.ex.otp - RELOC/omega/otp/omega/cuni2asv.otp - RELOC/omega/otp/omega/cuni2bout.otp - RELOC/omega/otp/omega/cuni2mona.otp - RELOC/omega/otp/omega/cuni2nar.otp - RELOC/omega/otp/omega/cuni2nva.otp - RELOC/omega/otp/omega/cuni2oar-novow.otp - RELOC/omega/otp/omega/cuni2oar.otp - RELOC/omega/otp/omega/dblquote-point.otp - RELOC/omega/otp/omega/destroy.otp - RELOC/omega/otp/omega/french2uni.otp - RELOC/omega/otp/omega/grpo2uni.otp - RELOC/omega/otp/omega/grpotilde2uni.otp - RELOC/omega/otp/omega/inverted-iota-upsilon.otp - RELOC/omega/otp/omega/isogr2uni-verbatim.otp - RELOC/omega/otp/omega/isogr2uni.otp - RELOC/omega/otp/omega/lat2uni.otp - RELOC/omega/otp/omega/lowercase.otp - RELOC/omega/otp/omega/lunatesigma.otp - RELOC/omega/otp/omega/macgr2uni.otp - RELOC/omega/otp/omega/medbeta.otp - RELOC/omega/otp/omega/mixedgreek2uni.otp - RELOC/omega/otp/omega/uni2cuni.otp - RELOC/omega/otp/omega/uni2greek-verbatim.otp - RELOC/omega/otp/omega/uni2greek.otp - RELOC/omega/otp/omega/uni2lat-noffi.otp - RELOC/omega/otp/omega/uni2lat.otp - RELOC/omega/otp/omega/uppercase-no-accents.otp - RELOC/omega/otp/omega/uppercase.otp - RELOC/omega/otp/uni2char/out88591.otp - RELOC/omega/otp/uni2char/oututf8.otp - RELOC/tex/generic/encodings/cmbsy.onm - RELOC/tex/generic/encodings/cmbx.onm - RELOC/tex/generic/encodings/cmcsc.onm - RELOC/tex/generic/encodings/cmex.onm - RELOC/tex/generic/encodings/cmmi.onm - RELOC/tex/generic/encodings/cmmib.onm - RELOC/tex/generic/encodings/cmr.onm - RELOC/tex/generic/encodings/cmr1.onm - RELOC/tex/generic/encodings/cmsl.onm - RELOC/tex/generic/encodings/cmsy.onm - RELOC/tex/generic/encodings/cmti.onm - RELOC/tex/generic/encodings/cmtt.onm - RELOC/tex/generic/encodings/ecrm.onm - RELOC/tex/generic/encodings/euex.onm - RELOC/tex/generic/encodings/eufb.onm - RELOC/tex/generic/encodings/eufm.onm - RELOC/tex/generic/encodings/eurb.onm - RELOC/tex/generic/encodings/eurm.onm - RELOC/tex/generic/encodings/eusb.onm - RELOC/tex/generic/encodings/eusm.onm - RELOC/tex/generic/encodings/msam.onm - RELOC/tex/generic/encodings/msbm.onm - RELOC/tex/generic/omegahyph/bghyph.tex - RELOC/tex/generic/omegahyph/lthyph.tex - RELOC/tex/generic/omegahyph/srhyph.tex - RELOC/tex/plain/omega/grlccode.tex - RELOC/tex/plain/omega/omega.tex -docfiles size=138 - RELOC/doc/omega/base/doc-1.8.tex - RELOC/doc/omega/base/torture.ps - RELOC/doc/omega/base/torture.tex -catalogue-date 2015-04-03 14:52:14 +0200 -catalogue-license gpl - -name omegaware -category TLCore -revision 37078 -depend omegaware.ARCH -docfiles size=27 - texmf-dist/doc/man/man1/odvicopy.1 - texmf-dist/doc/man/man1/odvicopy.man1.pdf - texmf-dist/doc/man/man1/odvitype.1 - texmf-dist/doc/man/man1/odvitype.man1.pdf - texmf-dist/doc/man/man1/ofm2opl.1 - texmf-dist/doc/man/man1/ofm2opl.man1.pdf - texmf-dist/doc/man/man1/opl2ofm.1 - texmf-dist/doc/man/man1/opl2ofm.man1.pdf - texmf-dist/doc/man/man1/otangle.1 - texmf-dist/doc/man/man1/otangle.man1.pdf - texmf-dist/doc/man/man1/otp2ocp.1 - texmf-dist/doc/man/man1/otp2ocp.man1.pdf - texmf-dist/doc/man/man1/outocp.1 - texmf-dist/doc/man/man1/outocp.man1.pdf - texmf-dist/doc/man/man1/ovf2ovp.1 - texmf-dist/doc/man/man1/ovf2ovp.man1.pdf - texmf-dist/doc/man/man1/ovp2ovf.1 - texmf-dist/doc/man/man1/ovp2ovf.man1.pdf - -name omegaware.i386-linux -category TLCore -revision 36790 -shortdesc i386-linux files of omegaware -binfiles arch=i386-linux size=361 - bin/i386-linux/odvicopy - bin/i386-linux/odvitype - bin/i386-linux/ofm2opl - bin/i386-linux/omfonts - bin/i386-linux/opl2ofm - bin/i386-linux/otangle - bin/i386-linux/otp2ocp - bin/i386-linux/outocp - bin/i386-linux/ovf2ovp - bin/i386-linux/ovp2ovf - bin/i386-linux/wofm2opl - bin/i386-linux/wopl2ofm - bin/i386-linux/wovf2ovp - -name onlyamsmath -category Package -revision 25006 -shortdesc Inhibit use of non-amsmath mathematics markup when using amsmath. -relocated 1 -longdesc This package inhibits the usage of plain TeX and (on demand) of -longdesc standard LaTeX mathematics environments. This is useful for -longdesc class writers who want to encourage their users to use the -longdesc environments provided by the amsmath package. -runfiles size=1 - RELOC/tex/latex/onlyamsmath/onlyamsmath.sty -docfiles size=57 - RELOC/doc/latex/onlyamsmath/ChangeLog - RELOC/doc/latex/onlyamsmath/Makefile - RELOC/doc/latex/onlyamsmath/README - RELOC/doc/latex/onlyamsmath/onlyamsmath-v.tex - RELOC/doc/latex/onlyamsmath/onlyamsmath.pdf - RELOC/doc/latex/onlyamsmath/onlyamsmathtest.tex -srcfiles size=4 - RELOC/source/latex/onlyamsmath/onlyamsmath.dtx - RELOC/source/latex/onlyamsmath/onlyamsmath.ins -catalogue-ctan /macros/latex/contrib/onlyamsmath -catalogue-date 2012-06-16 14:32:26 +0200 -catalogue-license lppl -catalogue-version 0.10 - -name onrannual -category Package -revision 17474 -shortdesc Class for Office of Naval Research Ocean Battlespace Sensing annual report. -relocated 1 -longdesc This is an unofficial document class for writing ONR annual -longdesc reports using LaTeX; as ONR has had numerous problems with -longdesc LaTeX-generated PDF submissions in the past. A skeleton -longdesc document (and its PDF output) are included. -runfiles size=2 - RELOC/tex/latex/onrannual/onrannual.cls -docfiles size=60 - RELOC/doc/latex/onrannual/README - RELOC/doc/latex/onrannual/sample.bib - RELOC/doc/latex/onrannual/samplefigure.eps - RELOC/doc/latex/onrannual/samplefigure.pdf - RELOC/doc/latex/onrannual/skeleton.pdf - RELOC/doc/latex/onrannual/skeleton.tex -catalogue-ctan /macros/latex/contrib/onrannual -catalogue-date 2014-09-12 12:10:58 +0200 -catalogue-license lppl1.3 -catalogue-version 1.1 - -name opcit -category Package -revision 15878 -shortdesc Footnote-style bibliographical references. -relocated 1 -longdesc This package addresses the problem of expressing citations in a -longdesc style that is natural for humanities studies, yet does not -longdesc interfere with the flow of text (as author-year styles do). The -longdesc package differs from footbib in that it uses real footnotes, -longdesc potentially in the same series as any of the document's other -longdesc footnotes. Opcit also, as its name implies, avoids repetition -longdesc of full citations, achieving this, to a large extent, -longdesc automatically. -runfiles size=8 - RELOC/bibtex/bst/opcit/opcit.bst - RELOC/tex/latex/opcit/opcit.sty -docfiles size=76 - RELOC/doc/latex/opcit/README - RELOC/doc/latex/opcit/opcit.pdf -srcfiles size=20 - RELOC/source/latex/opcit/opcit.dtx - RELOC/source/latex/opcit/opcit.ins -catalogue-ctan /macros/latex/contrib/opcit -catalogue-date 2012-06-16 14:32:26 +0200 -catalogue-license lppl -catalogue-version 1.1 - -name opensans -category Package -revision 24706 -shortdesc The Open Sans font family, and LaTeX support. -relocated 1 -longdesc Open Sans is a humanist sans serif typeface designed by Steve -longdesc Matteson; the font is available from the Google Font Directory -longdesc as TrueType files licensed under the Apache License version -longdesc 2.0. The package provides support for this font family in -longdesc LaTeX. It includes the original TrueType fonts, as well as Type -longdesc 1 versions, converted for this package using FontForge for full -longdesc support with dvips -execute addMap opensans.map -runfiles size=3539 - RELOC/fonts/afm/public/opensans/OpenSans-Bold.afm - RELOC/fonts/afm/public/opensans/OpenSans-BoldItalic.afm - RELOC/fonts/afm/public/opensans/OpenSans-CondLight.afm - RELOC/fonts/afm/public/opensans/OpenSans-CondLightItalic.afm - RELOC/fonts/afm/public/opensans/OpenSans-ExtraBold.afm - RELOC/fonts/afm/public/opensans/OpenSans-ExtraBoldItalic.afm - RELOC/fonts/afm/public/opensans/OpenSans-Italic.afm - RELOC/fonts/afm/public/opensans/OpenSans-Light.afm - RELOC/fonts/afm/public/opensans/OpenSans-LightItalic.afm - RELOC/fonts/afm/public/opensans/OpenSans-Regular.afm - RELOC/fonts/afm/public/opensans/OpenSans-Semibold.afm - RELOC/fonts/afm/public/opensans/OpenSans-SemiboldItalic.afm - RELOC/fonts/enc/dvips/opensans/opensans-01.enc - RELOC/fonts/enc/dvips/opensans/opensans-02.enc - RELOC/fonts/enc/dvips/opensans/opensans-03.enc - RELOC/fonts/enc/dvips/opensans/opensans-04.enc - RELOC/fonts/map/dvips/opensans/opensans.map - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-01.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-02.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-03.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-04.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-OSFigures-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-OSFigures-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-OSFigures-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-OSFigures-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-OSFigures-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-OSFigures-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-OSFigures-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-ts1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Bold-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-01.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-02.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-03.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-04.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-OSFigures-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-OSFigures-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-OSFigures-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-OSFigures-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-OSFigures-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-OSFigures-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-OSFigures-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-ts1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-01.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-02.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-03.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-04.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-OSFigures-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-OSFigures-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-OSFigures-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-OSFigures-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-OSFigures-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-OSFigures-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-OSFigures-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-ts1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-01.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-02.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-03.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-04.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-OSFigures-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-OSFigures-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-OSFigures-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-OSFigures-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-OSFigures-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-OSFigures-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-OSFigures-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-ts1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-01.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-02.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-03.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-04.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-OSFigures-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-OSFigures-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-OSFigures-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-OSFigures-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-OSFigures-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-OSFigures-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-OSFigures-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-ts1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-01.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-02.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-03.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-04.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-ts1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-01.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-02.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-03.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-04.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-OSFigures-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-OSFigures-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-OSFigures-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-OSFigures-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-OSFigures-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-OSFigures-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-OSFigures-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-ts1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Italic-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-01.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-02.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-03.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-04.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-OSFigures-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-OSFigures-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-OSFigures-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-OSFigures-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-OSFigures-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-OSFigures-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-OSFigures-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-OSFigures-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-OSFigures-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-OSFigures-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-OSFigures-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-OSFigures-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-OSFigures-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-OSFigures-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-ts1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Light-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-01.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-02.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-03.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-04.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-OSFigures-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-OSFigures-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-OSFigures-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-OSFigures-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-OSFigures-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-OSFigures-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-OSFigures-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-ts1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-01.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-02.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-03.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-04.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-OSFigures-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-OSFigures-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-OSFigures-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-OSFigures-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-OSFigures-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-OSFigures-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-OSFigures-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-ts1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Regular-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-01.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-02.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-03.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-04.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-OSFigures-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-OSFigures-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-OSFigures-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-OSFigures-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-OSFigures-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-OSFigures-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-OSFigures-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-ts1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-01.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-02.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-03.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-04.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-OSFigures-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-OSFigures-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-OSFigures-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-OSFigures-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-OSFigures-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-OSFigures-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-OSFigures-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-x2.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-lgr.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-ot1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-t1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-t2a.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-t2b.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-t2c.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-ts1.tfm - RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-x2.tfm - RELOC/fonts/truetype/public/opensans/OpenSans-Bold.ttf - RELOC/fonts/truetype/public/opensans/OpenSans-BoldItalic.ttf - RELOC/fonts/truetype/public/opensans/OpenSans-CondLight.ttf - RELOC/fonts/truetype/public/opensans/OpenSans-CondLightItalic.ttf - RELOC/fonts/truetype/public/opensans/OpenSans-ExtraBold.ttf - RELOC/fonts/truetype/public/opensans/OpenSans-ExtraBoldItalic.ttf - RELOC/fonts/truetype/public/opensans/OpenSans-Italic.ttf - RELOC/fonts/truetype/public/opensans/OpenSans-Light.ttf - RELOC/fonts/truetype/public/opensans/OpenSans-LightItalic.ttf - RELOC/fonts/truetype/public/opensans/OpenSans-Regular.ttf - RELOC/fonts/truetype/public/opensans/OpenSans-Semibold.ttf - RELOC/fonts/truetype/public/opensans/OpenSans-SemiboldItalic.ttf - RELOC/fonts/type1/public/opensans/OpenSans-Bold.pfb - RELOC/fonts/type1/public/opensans/OpenSans-BoldItalic.pfb - RELOC/fonts/type1/public/opensans/OpenSans-CondLight.pfb - RELOC/fonts/type1/public/opensans/OpenSans-CondLightItalic.pfb - RELOC/fonts/type1/public/opensans/OpenSans-ExtraBold.pfb - RELOC/fonts/type1/public/opensans/OpenSans-ExtraBoldItalic.pfb - RELOC/fonts/type1/public/opensans/OpenSans-Italic.pfb - RELOC/fonts/type1/public/opensans/OpenSans-Light.pfb - RELOC/fonts/type1/public/opensans/OpenSans-LightItalic.pfb - RELOC/fonts/type1/public/opensans/OpenSans-Regular.pfb - RELOC/fonts/type1/public/opensans/OpenSans-Semibold.pfb - RELOC/fonts/type1/public/opensans/OpenSans-SemiboldItalic.pfb - RELOC/fonts/vf/public/opensans/OpenSans-Bold-OSFigures-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-OSFigures-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-OSFigures-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-OSFigures-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-OSFigures-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-OSFigures-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-OSFigures-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-ts1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Bold-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-OSFigures-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-OSFigures-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-OSFigures-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-OSFigures-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-OSFigures-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-OSFigures-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-OSFigures-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-ts1.vf - RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-OSFigures-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-OSFigures-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-OSFigures-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-OSFigures-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-OSFigures-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-OSFigures-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-OSFigures-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-ts1.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLight-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-OSFigures-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-OSFigures-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-OSFigures-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-OSFigures-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-OSFigures-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-OSFigures-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-OSFigures-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-ts1.vf - RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-OSFigures-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-OSFigures-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-OSFigures-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-OSFigures-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-OSFigures-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-OSFigures-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-OSFigures-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-ts1.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-ts1.vf - RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-OSFigures-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-OSFigures-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-OSFigures-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-OSFigures-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-OSFigures-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-OSFigures-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-OSFigures-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-ts1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Italic-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-OSFigures-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-OSFigures-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-OSFigures-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-OSFigures-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-OSFigures-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-OSFigures-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-OSFigures-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-OSFigures-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-OSFigures-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-OSFigures-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-OSFigures-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-OSFigures-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-OSFigures-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-OSFigures-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-ts1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Light-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-OSFigures-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-OSFigures-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-OSFigures-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-OSFigures-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-OSFigures-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-OSFigures-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-OSFigures-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-ts1.vf - RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-OSFigures-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-OSFigures-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-OSFigures-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-OSFigures-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-OSFigures-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-OSFigures-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-OSFigures-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-ts1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Regular-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-OSFigures-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-OSFigures-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-OSFigures-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-OSFigures-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-OSFigures-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-OSFigures-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-OSFigures-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-ts1.vf - RELOC/fonts/vf/public/opensans/OpenSans-Semibold-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-OSFigures-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-OSFigures-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-OSFigures-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-OSFigures-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-OSFigures-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-OSFigures-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-OSFigures-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-x2.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-lgr.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-ot1.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-t1.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-t2a.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-t2b.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-t2c.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-ts1.vf - RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-x2.vf - RELOC/tex/latex/opensans/lgrfos.fd - RELOC/tex/latex/opensans/lgrfosj.fd - RELOC/tex/latex/opensans/opensans.sty - RELOC/tex/latex/opensans/ot1fos.fd - RELOC/tex/latex/opensans/ot1fosj.fd - RELOC/tex/latex/opensans/t1fos.fd - RELOC/tex/latex/opensans/t1fosj.fd - RELOC/tex/latex/opensans/t2afos.fd - RELOC/tex/latex/opensans/t2afosj.fd - RELOC/tex/latex/opensans/t2bfos.fd - RELOC/tex/latex/opensans/t2bfosj.fd - RELOC/tex/latex/opensans/t2cfos.fd - RELOC/tex/latex/opensans/t2cfosj.fd - RELOC/tex/latex/opensans/ts1fos.fd - RELOC/tex/latex/opensans/ts1fosj.fd - RELOC/tex/latex/opensans/x2fos.fd - RELOC/tex/latex/opensans/x2fosj.fd -docfiles size=170 - RELOC/doc/fonts/opensans/CHANGES - RELOC/doc/fonts/opensans/README - RELOC/doc/fonts/opensans/manifest.txt - RELOC/doc/fonts/opensans/opensans-samples.pdf - RELOC/doc/fonts/opensans/opensans-samples.tex - RELOC/doc/fonts/opensans/opensans.pdf - RELOC/doc/fonts/opensans/opensans.tex -srcfiles size=44 - RELOC/source/fonts/opensans/Makefile - RELOC/source/fonts/opensans/opensans-01.etx - RELOC/source/fonts/opensans/opensans-02.etx - RELOC/source/fonts/opensans/opensans-03.etx - RELOC/source/fonts/opensans/opensans-04.etx - RELOC/source/fonts/opensans/opensans-drv.tex - RELOC/source/fonts/opensans/opensans-fixcyrillic.mtx - RELOC/source/fonts/opensans/opensans-fixgreek.mtx - RELOC/source/fonts/opensans/opensans-fixlatin.mtx - RELOC/source/fonts/opensans/opensans-fixtextcomp.mtx - RELOC/source/fonts/opensans/opensans-map.tex - RELOC/source/fonts/opensans/opensans-osfigures.etx - RELOC/source/fonts/opensans/ttf2type1.pe -catalogue-ctan /fonts/opensans -catalogue-date 2014-05-17 15:44:21 +0200 -catalogue-license lppl1.3 -catalogue-version 1.2 - -name opteng -category Package -revision 27331 -shortdesc SPIE Optical Engineering and OE Letters manuscript template. -relocated 1 -longdesc With this template, and associated style and LaTeX packages, it -longdesc is possible to estimate the page length of manuscripts for -longdesc submission to the SPIE journals 'Optical Engineering' and -longdesc 'Optical Engineering Letters'. With a strict three-page limit, -longdesc this is particularly important for the latter. The template -longdesc gives simple instructions on how to prepare the manuscript. -runfiles size=5 - RELOC/tex/latex/opteng/opteng.sty -docfiles size=17 - RELOC/doc/latex/opteng/OptEngInstruct.pdf - RELOC/doc/latex/opteng/OptEngInstruct.tex - RELOC/doc/latex/opteng/README -catalogue-ctan /macros/latex/contrib/opteng -catalogue-date 2012-08-13 12:34:19 +0200 -catalogue-license lppl -catalogue-version 1.0 - -name optional -category Package -revision 18131 -shortdesc Facilitate optional printing of parts of a document. -relocated 1 -longdesc Optional provides simple, flexible, optional compilation of -longdesc LaTeX documents. Option switches may be given via package -longdesc options, by the \UseOption command, or interactively via the -longdesc \AskOption command (help text may be provided, by defining the -longdesc \ExplainOptions command). The package is not robust, in the way -longdesc that comment package is, against ill-behaved text. In -longdesc particular, verbatim text may not be directly included in -longdesc optional sections (whether they're included or not). -runfiles size=2 - RELOC/tex/latex/optional/optional.sty -docfiles size=77 - RELOC/doc/latex/optional/optional.pdf - RELOC/doc/latex/optional/optional.tex -catalogue-ctan /macros/latex/contrib/optional -catalogue-date 2011-09-30 22:42:57 +0200 -catalogue-license lppl -catalogue-version 2.2b - -name ordinalpt -category Package -revision 15878 -shortdesc Counters as ordinal numbers in Portuguese. -relocated 1 -longdesc The package provides a counter style (like \arabic, \alph and -longdesc others) which produces as output strings like "primeiro" -longdesc ("first" in Portuguese), "segundo" (second), and so on up to -longdesc 1999th. Separate counter commands are provided for different -longdesc letter case variants, and for masculine and feminine gender -longdesc inflections. -runfiles size=2 - RELOC/tex/latex/ordinalpt/ordinalpt.sty -docfiles size=67 - RELOC/doc/latex/ordinalpt/README - RELOC/doc/latex/ordinalpt/ordinalpt.pdf -srcfiles size=5 - RELOC/source/latex/ordinalpt/ordinalpt.dtx - RELOC/source/latex/ordinalpt/ordinalpt.ins -catalogue-ctan /macros/latex/contrib/ordinalpt -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 2.1 - -name orkhun -category Package -revision 15878 -shortdesc A font for orkhun script. -relocated 1 -longdesc The font covers an old Turkic script. It is provided as -longdesc Metafont source. -runfiles size=21 - RELOC/fonts/source/public/orkhun/orhant.mf - RELOC/fonts/source/public/orkhun/orhant11.mf - RELOC/fonts/source/public/orkhun/orhant14.mf - RELOC/fonts/source/public/orkhun/orhant16.mf - RELOC/fonts/source/public/orkhun/orhant20.mf - RELOC/fonts/source/public/orkhun/orhant25.mf - RELOC/fonts/tfm/public/orkhun/orhant11.tfm - RELOC/fonts/tfm/public/orkhun/orhant14.tfm - RELOC/fonts/tfm/public/orkhun/orhant16.tfm - RELOC/fonts/tfm/public/orkhun/orhant20.tfm - RELOC/fonts/tfm/public/orkhun/orhant25.tfm -docfiles size=42 - RELOC/doc/fonts/orkhun/README_Orkhun.txt - RELOC/doc/fonts/orkhun/rakhimov.pdf - RELOC/doc/fonts/orkhun/rakhimov.tex -catalogue-ctan /fonts/orkhun -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl - -name oscola -category Package -revision 34207 -shortdesc BibLaTeX style for the Oxford Standard for the Citation of Legal Authorities. -relocated 1 -longdesc The package provides a set of style files for use with Biblatex -longdesc (v 2+) and Biber (v 1+) to produce citations and bibliographies -longdesc in accordance with the widely-used Oxford Standard for the -longdesc Citation of Legal Authorities. It also includes facilities for -longdesc constructing tables of cases and legislation from citations (in -longdesc conjunction with appropriate indexing packages). -runfiles size=38 - RELOC/makeindex/oscola/oscola.ist - RELOC/tex/latex/oscola/english-oscola.lbx - RELOC/tex/latex/oscola/oscola.bbx - RELOC/tex/latex/oscola/oscola.cbx -docfiles size=277 - RELOC/doc/latex/oscola/README - RELOC/doc/latex/oscola/oscola-examples.bib - RELOC/doc/latex/oscola/oscola.pdf - RELOC/doc/latex/oscola/oscola.tex -catalogue-ctan /macros/latex/contrib/biblatex-contrib/oscola -catalogue-date 2014-05-22 17:35:02 +0200 -catalogue-license lppl1.3 -catalogue-version 1.4 - -name othelloboard -category Package -revision 23714 -shortdesc Typeset Othello (Reversi) diagrams of any size, with annotations. -relocated 1 -longdesc The package enables the user to generate high-quality Othello -longdesc (also known as Reversi) board diagrams of any size. The -longdesc diagrams support annotations, including full game transcripts. -longdesc Automated board or transcript creation, from plain text formats -longdesc standard to WZebra (and other programs) is also supported. -runfiles size=18 - RELOC/tex/latex/othelloboard/othelloboard.sty -docfiles size=76 - RELOC/doc/latex/othelloboard/README - RELOC/doc/latex/othelloboard/example-rose-chps1-2.pdf - RELOC/doc/latex/othelloboard/example-rose-chps1-2.tex - RELOC/doc/latex/othelloboard/othelloboard.pdf - RELOC/doc/latex/othelloboard/othelloboard.tex -catalogue-ctan /macros/latex/contrib/othelloboard -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.2 - -name othello -category Package -revision 15878 -shortdesc Modification of a Go package to create othello boards. -relocated 1 -longdesc A package (based on Kolodziejska's go), and fonts (as Metafont -longdesc source) are provided. -runfiles size=41 - RELOC/fonts/source/public/othello/ot.mf - RELOC/fonts/source/public/othello/ot10.mf - RELOC/fonts/source/public/othello/ot15.mf - RELOC/fonts/source/public/othello/ot1bla10.mf - RELOC/fonts/source/public/othello/ot1bla15.mf - RELOC/fonts/source/public/othello/ot1bla20.mf - RELOC/fonts/source/public/othello/ot1black.mf - RELOC/fonts/source/public/othello/ot1neu.mf - RELOC/fonts/source/public/othello/ot1neu10.mf - RELOC/fonts/source/public/othello/ot1neu15.mf - RELOC/fonts/source/public/othello/ot1neu20.mf - RELOC/fonts/source/public/othello/ot1whi10.mf - RELOC/fonts/source/public/othello/ot1whi15.mf - RELOC/fonts/source/public/othello/ot1whi20.mf - RELOC/fonts/source/public/othello/ot1white.mf - RELOC/fonts/tfm/public/othello/ot10.tfm - RELOC/fonts/tfm/public/othello/ot15.tfm - RELOC/fonts/tfm/public/othello/ot1bla10.tfm - RELOC/fonts/tfm/public/othello/ot1bla15.tfm - RELOC/fonts/tfm/public/othello/ot1bla20.tfm - RELOC/fonts/tfm/public/othello/ot1neu10.tfm - RELOC/fonts/tfm/public/othello/ot1neu15.tfm - RELOC/fonts/tfm/public/othello/ot1neu20.tfm - RELOC/fonts/tfm/public/othello/ot1whi10.tfm - RELOC/fonts/tfm/public/othello/ot1whi15.tfm - RELOC/fonts/tfm/public/othello/ot1whi20.tfm - RELOC/tex/latex/othello/othello.sty -docfiles size=14 - RELOC/doc/latex/othello/boards.tex - RELOC/doc/latex/othello/ot.bat - RELOC/doc/latex/othello/ot1.bat.bat - RELOC/doc/latex/othello/othello.tex -catalogue-ctan /macros/latex/contrib/othello -catalogue-date 2014-05-22 01:06:35 +0200 -catalogue-license gpl - -name otibet -category Package -revision 15878 -relocated 1 -runfiles size=175 - RELOC/fonts/ofm/public/otibet/otibetan.ofm - RELOC/fonts/ovf/public/otibet/otibetan.ovf - RELOC/fonts/ovp/public/otibet/otibetan.ovp - RELOC/fonts/source/public/otibet/bzrsetup.mf - RELOC/fonts/source/public/otibet/tibetan.mf - RELOC/fonts/tfm/public/otibet/tibetan.tfm - RELOC/omega/ocp/otibet/tibadjusttsheg.ocp - RELOC/omega/ocp/otibet/tibinunicode.ocp - RELOC/omega/ocp/otibet/tibinwylie.ocp - RELOC/omega/ocp/otibet/tibout.ocp - RELOC/omega/ocp/otibet/tibspecial.ocp - RELOC/omega/ocp/otibet/tibuniuni.ocp - RELOC/omega/ocp/otibet/tibvowel.ocp - RELOC/omega/otp/otibet/tibadjusttsheg.otp - RELOC/omega/otp/otibet/tibetan-mule2uni-old.otp - RELOC/omega/otp/otibet/tibetan-mule2uni.otp - RELOC/omega/otp/otibet/tibinunicode.otp - RELOC/omega/otp/otibet/tibinwylie.otp - RELOC/omega/otp/otibet/tibout.otp - RELOC/omega/otp/otibet/tibshow.otp - RELOC/omega/otp/otibet/tibspecial.otp - RELOC/omega/otp/otibet/tibuniuni.otp - RELOC/omega/otp/otibet/tibvowel.otp - RELOC/tex/latex/otibet/ot1tib.fd - RELOC/tex/latex/otibet/otibet.sty - RELOC/tex/latex/otibet/otibet.tex - RELOC/tex/latex/otibet/t1tib.fd -docfiles size=26 - RELOC/doc/latex/otibet/README - RELOC/doc/latex/otibet/allbasic-mule.tex - RELOC/doc/latex/otibet/allbasic.dvi - RELOC/doc/latex/otibet/allbasic.tex - RELOC/doc/latex/otibet/otibet-mule.tex - RELOC/doc/latex/otibet/testtib.tex - RELOC/doc/latex/otibet/tiblatex.dvi - RELOC/doc/latex/otibet/tiblatex.tex - RELOC/doc/latex/otibet/unidoc.dvi - RELOC/doc/latex/otibet/unidoc.tex - RELOC/doc/latex/otibet/yugpacan.dvi - RELOC/doc/latex/otibet/yugpacan.tex -srcfiles size=31 - RELOC/source/latex/otibet/Makefile - RELOC/source/latex/otibet/allbasic.odvi - RELOC/source/latex/otibet/convnum.scm - RELOC/source/latex/otibet/generate-otp.el - RELOC/source/latex/otibet/oct2otp.c - RELOC/source/latex/otibet/pl2ovp.scm - RELOC/source/latex/otibet/tibetan.pl - RELOC/source/latex/otibet/tiblatex.odvi - RELOC/source/latex/otibet/tibovp.scm - RELOC/source/latex/otibet/unidoc.odvi - RELOC/source/latex/otibet/yugpacan.odvi - -name ot-tableau -category Package -revision 35095 -shortdesc Optimality Theory tableaux in LaTeX. -relocated 1 -longdesc The package makes it easy to create beautiful optimality- -longdesc theoretic tableaux. The LaTeX source is visually very similar -longdesc to a formatted tableau, which makes working with the source -longdesc code painless (well, less painful). A variety of stylistic -longdesc variants are available to suit personal taste. -runfiles size=1 - RELOC/tex/latex/ot-tableau/ot-tableau.sty -docfiles size=19 - RELOC/doc/latex/ot-tableau/README - RELOC/doc/latex/ot-tableau/ot-tableau.pdf - RELOC/doc/latex/ot-tableau/ot-tableau.tex -catalogue-ctan /macros/latex/contrib/ot-tableau -catalogue-date 2014-09-02 18:44:09 +0200 -catalogue-license lppl - -name oubraces -category Package -revision 21833 -shortdesc Braces over and under a formula. -relocated 1 -longdesc Provides a means to interleave \overbrace and \underbrace in -longdesc the same formula. -runfiles size=1 - RELOC/tex/latex/oubraces/oubraces.sty -docfiles size=19 - RELOC/doc/latex/oubraces/oubraces.pdf - RELOC/doc/latex/oubraces/oubraces.tex -catalogue-ctan /macros/latex/contrib/oubraces -catalogue-date 2012-06-12 22:20:47 +0200 -catalogue-license other-free - -name outliner -category Package -revision 21095 -shortdesc Change section levels easily. -relocated 1 -longdesc Allows you to write "\Level 2 {Some heading}" instead of the -longdesc usual \section stuff; the definitions of the levels can then -longdesc easily be changed. There is a mechanism for shifting all -longdesc levels. This makes it easy to bundle existing articles into a -longdesc compilation. -runfiles size=3 - RELOC/tex/latex/outliner/outliner.sty -docfiles size=1 - RELOC/doc/latex/outliner/outline_test.tex -catalogue-ctan /macros/latex/contrib/outliner -catalogue-date 2012-06-09 18:05:07 +0200 -catalogue-license gpl -catalogue-version 0.94 - -name outlines -category Package -revision 25192 -shortdesc Produce "outline" lists. -relocated 1 -longdesc Defines an outline environment, which allows outline-style -longdesc indented lists with freely mixed levels up to four levels deep. -longdesc It replaces the nested begin/end pairs by different item tags -longdesc \1 to \4 for each nesting level. This is very convenient in -longdesc cases where nested lists are used a lot, such as for to-do -longdesc lists or presentation slides. -runfiles size=2 - RELOC/tex/latex/outlines/outlines.sty -docfiles size=37 - RELOC/doc/latex/outlines/README - RELOC/doc/latex/outlines/outlines.pdf - RELOC/doc/latex/outlines/outlines.tex -catalogue-ctan /macros/latex/contrib/outlines -catalogue-date 2012-01-25 23:35:10 +0100 -catalogue-license lppl -catalogue-version 1.1 - -name outline -category Package -revision 18360 -shortdesc List environment for making outlines. -relocated 1 -longdesc The package defines an outline environment, which provides -longdesc facilities similar to enumerate, but up to 6 levels deep. -runfiles size=1 - RELOC/tex/latex/outline/outline.sty -docfiles size=66 - RELOC/doc/latex/outline/README - RELOC/doc/latex/outline/outline-sample.tex - RELOC/doc/latex/outline/outline.pdf - RELOC/doc/latex/outline/outline.tex -catalogue-ctan /macros/latex/contrib/outline -catalogue-date 2012-01-23 15:07:56 +0100 -catalogue-license lppl - -name overlock -category Package -revision 34409 -shortdesc Overlook sans fonts with LaTeX support. -relocated 1 -longdesc The package provides the Overlock and OverlockSC families of -longdesc fonts, designed by Dario Manuel Muhafara of the TIPO foundry -longdesc (http://www.tipo.net.ar) are "rounded" sans-serif fonts in -longdesc three weights (Regular, Bold, Black) with italic variants for -longdesc each of them. There are also small-caps and old-style figures -longdesc in the Regular weight. -execute addMap overlock.map -runfiles size=270 - RELOC/fonts/enc/dvips/overlock/ovlk_47cn4f.enc - RELOC/fonts/enc/dvips/overlock/ovlk_aqjbqj.enc - RELOC/fonts/enc/dvips/overlock/ovlk_fvk6cm.enc - RELOC/fonts/enc/dvips/overlock/ovlk_irzqhk.enc - RELOC/fonts/enc/dvips/overlock/ovlk_k6z3ge.enc - RELOC/fonts/enc/dvips/overlock/ovlk_u2ziis.enc - RELOC/fonts/enc/dvips/overlock/ovlk_y3zmsf.enc - RELOC/fonts/enc/dvips/overlock/ovlk_yaegef.enc - RELOC/fonts/map/dvips/overlock/overlock.map - RELOC/fonts/tfm/muhafara/overlock/Overlock-Black-lf-ly1--base.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Black-lf-ly1.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Black-lf-ot1.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Black-lf-t1--base.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Black-lf-t1.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Black-lf-ts1--base.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Black-lf-ts1.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-BlackItalic-lf-ly1--base.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-BlackItalic-lf-ly1.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-BlackItalic-lf-ot1.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-BlackItalic-lf-t1--base.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-BlackItalic-lf-t1.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-BlackItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-BlackItalic-lf-ts1.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Bold-lf-ly1--base.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Bold-lf-ly1.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Bold-lf-ot1.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Bold-lf-t1--base.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Bold-lf-t1.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Bold-lf-ts1--base.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Bold-lf-ts1.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-BoldItalic-lf-ly1--base.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-BoldItalic-lf-ly1.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-BoldItalic-lf-ot1.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-BoldItalic-lf-t1--base.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-BoldItalic-lf-t1.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-BoldItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-BoldItalic-lf-ts1.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Italic-lf-ly1--base.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Italic-lf-ly1.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Italic-lf-ot1.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Italic-lf-t1--base.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Italic-lf-t1.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Italic-lf-ts1--base.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Italic-lf-ts1.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Regular-lf-ly1--base.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Regular-lf-ly1.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Regular-lf-ot1.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Regular-lf-t1--base.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Regular-lf-t1.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Regular-lf-ts1--base.tfm - RELOC/fonts/tfm/muhafara/overlock/Overlock-Regular-lf-ts1.tfm - RELOC/fonts/tfm/muhafara/overlock/OverlockSC-Regular-lf-ly1--base.tfm - RELOC/fonts/tfm/muhafara/overlock/OverlockSC-Regular-lf-ly1.tfm - RELOC/fonts/tfm/muhafara/overlock/OverlockSC-Regular-lf-ot1.tfm - RELOC/fonts/tfm/muhafara/overlock/OverlockSC-Regular-lf-t1--base.tfm - RELOC/fonts/tfm/muhafara/overlock/OverlockSC-Regular-lf-t1.tfm - RELOC/fonts/tfm/muhafara/overlock/OverlockSC-Regular-lf-ts1--base.tfm - RELOC/fonts/tfm/muhafara/overlock/OverlockSC-Regular-lf-ts1.tfm - RELOC/fonts/truetype/muhafara/overlock/Overlock-Black.ttf - RELOC/fonts/truetype/muhafara/overlock/Overlock-BlackItalic.ttf - RELOC/fonts/truetype/muhafara/overlock/Overlock-Bold.ttf - RELOC/fonts/truetype/muhafara/overlock/Overlock-BoldItalic.ttf - RELOC/fonts/truetype/muhafara/overlock/Overlock-Italic.ttf - RELOC/fonts/truetype/muhafara/overlock/Overlock-Regular.ttf - RELOC/fonts/truetype/muhafara/overlock/OverlockSC-Regular.ttf - RELOC/fonts/type1/muhafara/overlock/Overlock-Black.pfb - RELOC/fonts/type1/muhafara/overlock/Overlock-BlackItalic.pfb - RELOC/fonts/type1/muhafara/overlock/Overlock-Bold.pfb - RELOC/fonts/type1/muhafara/overlock/Overlock-BoldItalic.pfb - RELOC/fonts/type1/muhafara/overlock/Overlock-Italic.pfb - RELOC/fonts/type1/muhafara/overlock/Overlock-Regular.pfb - RELOC/fonts/type1/muhafara/overlock/OverlockSC-Regular.pfb - RELOC/fonts/vf/muhafara/overlock/Overlock-Black-lf-ly1.vf - RELOC/fonts/vf/muhafara/overlock/Overlock-Black-lf-t1.vf - RELOC/fonts/vf/muhafara/overlock/Overlock-Black-lf-ts1.vf - RELOC/fonts/vf/muhafara/overlock/Overlock-BlackItalic-lf-ly1.vf - RELOC/fonts/vf/muhafara/overlock/Overlock-BlackItalic-lf-t1.vf - RELOC/fonts/vf/muhafara/overlock/Overlock-BlackItalic-lf-ts1.vf - RELOC/fonts/vf/muhafara/overlock/Overlock-Bold-lf-ly1.vf - RELOC/fonts/vf/muhafara/overlock/Overlock-Bold-lf-t1.vf - RELOC/fonts/vf/muhafara/overlock/Overlock-Bold-lf-ts1.vf - RELOC/fonts/vf/muhafara/overlock/Overlock-BoldItalic-lf-ly1.vf - RELOC/fonts/vf/muhafara/overlock/Overlock-BoldItalic-lf-t1.vf - RELOC/fonts/vf/muhafara/overlock/Overlock-BoldItalic-lf-ts1.vf - RELOC/fonts/vf/muhafara/overlock/Overlock-Italic-lf-ly1.vf - RELOC/fonts/vf/muhafara/overlock/Overlock-Italic-lf-t1.vf - RELOC/fonts/vf/muhafara/overlock/Overlock-Italic-lf-ts1.vf - RELOC/fonts/vf/muhafara/overlock/Overlock-Regular-lf-ly1.vf - RELOC/fonts/vf/muhafara/overlock/Overlock-Regular-lf-t1.vf - RELOC/fonts/vf/muhafara/overlock/Overlock-Regular-lf-ts1.vf - RELOC/fonts/vf/muhafara/overlock/OverlockSC-Regular-lf-ly1.vf - RELOC/fonts/vf/muhafara/overlock/OverlockSC-Regular-lf-t1.vf - RELOC/fonts/vf/muhafara/overlock/OverlockSC-Regular-lf-ts1.vf - RELOC/tex/latex/overlock/LY1Overlock-LF.fd - RELOC/tex/latex/overlock/LY1OverlockSC-LF.fd - RELOC/tex/latex/overlock/OT1Overlock-LF.fd - RELOC/tex/latex/overlock/OT1OverlockSC-LF.fd - RELOC/tex/latex/overlock/T1Overlock-LF.fd - RELOC/tex/latex/overlock/T1OverlockSC-LF.fd - RELOC/tex/latex/overlock/TS1Overlock-LF.fd - RELOC/tex/latex/overlock/TS1OverlockSC-LF.fd - RELOC/tex/latex/overlock/overlock.sty -docfiles size=14 - RELOC/doc/fonts/overlock/License.txt - RELOC/doc/fonts/overlock/README - RELOC/doc/fonts/overlock/overlock-samples.pdf - RELOC/doc/fonts/overlock/overlock-samples.tex -catalogue-ctan /fonts/overlock -catalogue-date 2015-01-20 21:01:15 +0100 -catalogue-license ofl - -name overpic -category Package -revision 19712 -shortdesc Combine LaTeX commands over included graphics. -relocated 1 -longdesc The overpic environment is a cross between the LaTeX picture -longdesc environment and the \includegraphics command of graphicx. The -longdesc resulting picture environment has the same dimensions as the -longdesc included graphic. LaTeX commands can be placed on the graphic -longdesc at defined positions; a grid for orientation is available. -runfiles size=1 - RELOC/tex/latex/overpic/overpic.sty -docfiles size=174 - RELOC/doc/latex/overpic/README - RELOC/doc/latex/overpic/README.de - RELOC/doc/latex/overpic/opic-abs.pdf - RELOC/doc/latex/overpic/opic-abs.tex - RELOC/doc/latex/overpic/opic-rel.pdf - RELOC/doc/latex/overpic/opic-rel.tex - RELOC/doc/latex/overpic/overpic-readme-de.pdf - RELOC/doc/latex/overpic/overpic-readme-de.tex - RELOC/doc/latex/overpic/overpic-readme.pdf - RELOC/doc/latex/overpic/overpic-readme.tex -catalogue-ctan /macros/latex/contrib/overpic -catalogue-date 2012-06-08 15:42:15 +0200 -catalogue-license lppl1 -catalogue-version 0.53 - -name pacioli -category Package -revision 24947 -shortdesc Fonts designed by Fra Luca de Pacioli in 1497. -relocated 1 -longdesc Pacioli was a c.15 mathematician, and his font was designed -longdesc according to 'the divine proportion'. The font is uppercase -longdesc letters together with punctuation and some analphabetics; no -longdesc lowercase or digits. The Metafont source is distributed in a -longdesc .dtx file, together with LaTeX support. -runfiles size=23 - RELOC/fonts/source/public/pacioli/cpclig.mf - RELOC/fonts/source/public/pacioli/cpcpunct.mf - RELOC/fonts/source/public/pacioli/cpcr10.mf - RELOC/fonts/source/public/pacioli/cpcromanp.mf - RELOC/fonts/source/public/pacioli/cpcromanu.mf - RELOC/fonts/source/public/pacioli/cpcsl10.mf - RELOC/fonts/source/public/pacioli/cpctitle.mf - RELOC/fonts/tfm/public/pacioli/cpcr10.tfm - RELOC/fonts/tfm/public/pacioli/cpcsl10.tfm - RELOC/tex/latex/pacioli/ot1cpc.fd - RELOC/tex/latex/pacioli/pacioli.sty - RELOC/tex/latex/pacioli/t1cpc.fd -docfiles size=58 - RELOC/doc/fonts/pacioli/README - RELOC/doc/fonts/pacioli/tryfont.ps - RELOC/doc/fonts/pacioli/tryfont.tex -srcfiles size=23 - RELOC/source/fonts/pacioli/pacioli.dtx - RELOC/source/fonts/pacioli/pacioli.ins -catalogue-ctan /fonts/pacioli -catalogue-date 2014-05-22 01:06:35 +0200 -catalogue-license lppl - -name pagecolor -category Package -revision 38249 -shortdesc Interrogate page colour -relocated 1 -longdesc This package provides the command \thepagecolor, which gives -longdesc the current page (background) colour, i. e. the argument used -longdesc with the most recent call of \pagecolor{...}. The command -longdesc \thepagecolornone gives the same colour as \thepagecolor, -longdesc except when the page background colour is "none" (e.g., as a -longdesc result of using the \nopagecolor command). In that case -longdesc \thepagecolor is "white" and \thepagecolornone is "none". -runfiles size=3 - RELOC/tex/latex/pagecolor/pagecolor.sty -docfiles size=104 - RELOC/doc/latex/pagecolor/README - RELOC/doc/latex/pagecolor/pagecolor-example.pdf - RELOC/doc/latex/pagecolor/pagecolor-example.tex - RELOC/doc/latex/pagecolor/pagecolor.pdf -srcfiles size=15 - RELOC/source/latex/pagecolor/pagecolor.drv - RELOC/source/latex/pagecolor/pagecolor.dtx - RELOC/source/latex/pagecolor/pagecolor.ins -catalogue-ctan /macros/latex/contrib/pagecolor -catalogue-date 2015-08-30 17:27:39 +0200 -catalogue-license lppl1.3 -catalogue-topics colour -catalogue-version 1.0h - -name pagecont -category Package -revision 15878 -shortdesc Page numbering that continues between documents. -relocated 1 -longdesc The package provides the facility that several documents can be -longdesc typeset independently with page numbers in sequence, as if they -longdesc were a single document. -runfiles size=1 - RELOC/tex/latex/pagecont/pagecont.sty -docfiles size=22 - RELOC/doc/latex/pagecont/README - RELOC/doc/latex/pagecont/pagecont.pdf -srcfiles size=3 - RELOC/source/latex/pagecont/pagecont.dtx - RELOC/source/latex/pagecont/pagecont.ins -catalogue-ctan /macros/latex/contrib/pagecont -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 - -name pagenote -category Package -revision 15878 -shortdesc Notes at end of document. -relocated 1 -longdesc The pagenote package provides tagged notes on a separate page -longdesc (also known as 'end notes'). Unless the memoir class is used, -longdesc the package requires the ifmtarg package. -runfiles size=2 - RELOC/tex/latex/pagenote/pagenote.sty -docfiles size=40 - RELOC/doc/latex/pagenote/README - RELOC/doc/latex/pagenote/pagenote.pdf -srcfiles size=7 - RELOC/source/latex/pagenote/pagenote.dtx - RELOC/source/latex/pagenote/pagenote.ins -catalogue-ctan /macros/latex/contrib/pagenote -catalogue-date 2011-11-22 17:27:41 +0100 -catalogue-license lppl1.3 -catalogue-version 1.1a - -name pagerange -category Package -revision 16915 -shortdesc Flexible and configurable page range typesetting. -relocated 1 -longdesc The package defines a command \pagerange that typesets ranges -longdesc of page numbers, expanding them (e.g., adding first or last -longdesc page numbers) and standardising them. -runfiles size=3 - RELOC/tex/latex/pagerange/pagerange-guide.cfg - RELOC/tex/latex/pagerange/pagerange.sty -docfiles size=27 - RELOC/doc/latex/pagerange/README - RELOC/doc/latex/pagerange/pagerange-guide.pdf - RELOC/doc/latex/pagerange/pagerange-guide.tex -catalogue-ctan /macros/latex/contrib/pagerange -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.5 - -name pageslts -category Package -revision 38152 -shortdesc Variants of last page labels -relocated 1 -longdesc The package was designed as an extension of the lastpage -longdesc package -- as well as that package's LastPage label (created -longdesc \AtEndDocument) it adds a VeryLastPage (created -longdesc \AfterLastShipout). When more than one page numbering scheme is -longdesc in operation (as in a book class document with frontmatter), -longdesc the labels above do not give the total number of pages, so the -longdesc package also provides labels pagesLTS., where -longdesc the numbering scheme is arabic, roman, etc. The package relies -longdesc on the undolabl package. -runfiles size=12 - RELOC/tex/latex/pageslts/pageslts.sty -docfiles size=244 - RELOC/doc/latex/pageslts/README - RELOC/doc/latex/pageslts/pageslts-example.pdf - RELOC/doc/latex/pageslts/pageslts-example.tex - RELOC/doc/latex/pageslts/pageslts.pdf -srcfiles size=56 - RELOC/source/latex/pageslts/pageslts.drv - RELOC/source/latex/pageslts/pageslts.dtx - RELOC/source/latex/pageslts/pageslts.ins -catalogue-ctan /macros/latex/contrib/pageslts -catalogue-date 2015-08-18 04:58:17 +0200 -catalogue-license lppl1.3 -catalogue-topics label-ref -catalogue-version 1.2e - -name palatino -category Package -revision 31835 -catalogue urw-base35 -shortdesc URW "Base 35" font pack for LaTeX. -relocated 1 -longdesc A set of fonts for use as "drop-in" replacements for Adobe's -longdesc basic set, comprising: Century Schoolbook (substituting for -longdesc Adobe's New Century Schoolbook); Dingbats (substituting for -longdesc Adobe's Zapf Dingbats); Nimbus Mono L (substituting for Abobe's -longdesc Courier); Nimbus Roman No9 L (substituting for Adobe's Times); -longdesc Nimbus Sans L (substituting for Adobe's Helvetica); Standard -longdesc Symbols L (substituting for Adobe's Symbol); URW Bookman; URW -longdesc Chancery L Medium Italic (substituting for Adobe's Zapf -longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant -longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). -execute addMap upl.map -runfiles size=388 - RELOC/dvips/palatino/config.upl - RELOC/fonts/afm/adobe/palatino/pplb8a.afm - RELOC/fonts/afm/adobe/palatino/pplbi8a.afm - RELOC/fonts/afm/adobe/palatino/pplr8a.afm - RELOC/fonts/afm/adobe/palatino/pplri8a.afm - RELOC/fonts/afm/urw/palatino/uplb8a.afm - RELOC/fonts/afm/urw/palatino/uplbi8a.afm - RELOC/fonts/afm/urw/palatino/uplr8a.afm - RELOC/fonts/afm/urw/palatino/uplri8a.afm - RELOC/fonts/map/dvips/palatino/upl.map - RELOC/fonts/tfm/adobe/palatino/eurbo10.tfm - RELOC/fonts/tfm/adobe/palatino/eurmo10.tfm - RELOC/fonts/tfm/adobe/palatino/pplb.tfm - RELOC/fonts/tfm/adobe/palatino/pplb7t.tfm - RELOC/fonts/tfm/adobe/palatino/pplb8c.tfm - RELOC/fonts/tfm/adobe/palatino/pplb8r.tfm - RELOC/fonts/tfm/adobe/palatino/pplb8t.tfm - RELOC/fonts/tfm/adobe/palatino/pplb9c.tfm - RELOC/fonts/tfm/adobe/palatino/pplb9d.tfm - RELOC/fonts/tfm/adobe/palatino/pplb9e.tfm - RELOC/fonts/tfm/adobe/palatino/pplb9o.tfm - RELOC/fonts/tfm/adobe/palatino/pplb9t.tfm - RELOC/fonts/tfm/adobe/palatino/pplbc.tfm - RELOC/fonts/tfm/adobe/palatino/pplbc7t.tfm - RELOC/fonts/tfm/adobe/palatino/pplbc8t.tfm - RELOC/fonts/tfm/adobe/palatino/pplbi.tfm - RELOC/fonts/tfm/adobe/palatino/pplbi7t.tfm - RELOC/fonts/tfm/adobe/palatino/pplbi8c.tfm - RELOC/fonts/tfm/adobe/palatino/pplbi8r.tfm - RELOC/fonts/tfm/adobe/palatino/pplbi8t.tfm - RELOC/fonts/tfm/adobe/palatino/pplbi9c.tfm - RELOC/fonts/tfm/adobe/palatino/pplbi9d.tfm - RELOC/fonts/tfm/adobe/palatino/pplbi9e.tfm - RELOC/fonts/tfm/adobe/palatino/pplbi9o.tfm - RELOC/fonts/tfm/adobe/palatino/pplbi9t.tfm - RELOC/fonts/tfm/adobe/palatino/pplbij8r.tfm - RELOC/fonts/tfm/adobe/palatino/pplbj8r.tfm - RELOC/fonts/tfm/adobe/palatino/pplbo.tfm - RELOC/fonts/tfm/adobe/palatino/pplbo7t.tfm - RELOC/fonts/tfm/adobe/palatino/pplbo8c.tfm - RELOC/fonts/tfm/adobe/palatino/pplbo8r.tfm - RELOC/fonts/tfm/adobe/palatino/pplbo8t.tfm - RELOC/fonts/tfm/adobe/palatino/pplbu.tfm - RELOC/fonts/tfm/adobe/palatino/pplbu8r.tfm - RELOC/fonts/tfm/adobe/palatino/pplr.tfm - RELOC/fonts/tfm/adobe/palatino/pplr7t.tfm - RELOC/fonts/tfm/adobe/palatino/pplr8c.tfm - RELOC/fonts/tfm/adobe/palatino/pplr8r.tfm - RELOC/fonts/tfm/adobe/palatino/pplr8rn.tfm - RELOC/fonts/tfm/adobe/palatino/pplr8t.tfm - RELOC/fonts/tfm/adobe/palatino/pplr9c.tfm - RELOC/fonts/tfm/adobe/palatino/pplr9d.tfm - RELOC/fonts/tfm/adobe/palatino/pplr9e.tfm - RELOC/fonts/tfm/adobe/palatino/pplr9o.tfm - RELOC/fonts/tfm/adobe/palatino/pplr9t.tfm - RELOC/fonts/tfm/adobe/palatino/pplrc.tfm - RELOC/fonts/tfm/adobe/palatino/pplrc7t.tfm - RELOC/fonts/tfm/adobe/palatino/pplrc8r.tfm - RELOC/fonts/tfm/adobe/palatino/pplrc8t.tfm - RELOC/fonts/tfm/adobe/palatino/pplrc9d.tfm - RELOC/fonts/tfm/adobe/palatino/pplrc9e.tfm - RELOC/fonts/tfm/adobe/palatino/pplrc9o.tfm - RELOC/fonts/tfm/adobe/palatino/pplrc9t.tfm - RELOC/fonts/tfm/adobe/palatino/pplri.tfm - RELOC/fonts/tfm/adobe/palatino/pplri7t.tfm - RELOC/fonts/tfm/adobe/palatino/pplri8c.tfm - RELOC/fonts/tfm/adobe/palatino/pplri8r.tfm - RELOC/fonts/tfm/adobe/palatino/pplri8t.tfm - RELOC/fonts/tfm/adobe/palatino/pplri9c.tfm - RELOC/fonts/tfm/adobe/palatino/pplri9d.tfm - RELOC/fonts/tfm/adobe/palatino/pplri9e.tfm - RELOC/fonts/tfm/adobe/palatino/pplri9o.tfm - RELOC/fonts/tfm/adobe/palatino/pplri9t.tfm - RELOC/fonts/tfm/adobe/palatino/pplrij8r.tfm - RELOC/fonts/tfm/adobe/palatino/pplro.tfm - RELOC/fonts/tfm/adobe/palatino/pplro7t.tfm - RELOC/fonts/tfm/adobe/palatino/pplro8c.tfm - RELOC/fonts/tfm/adobe/palatino/pplro8r.tfm - RELOC/fonts/tfm/adobe/palatino/pplro8t.tfm - RELOC/fonts/tfm/adobe/palatino/pplrr8re.tfm - RELOC/fonts/tfm/adobe/palatino/pplrre.tfm - RELOC/fonts/tfm/adobe/palatino/pplrrn.tfm - RELOC/fonts/tfm/adobe/palatino/pplru.tfm - RELOC/fonts/tfm/adobe/palatino/pplru8r.tfm - RELOC/fonts/tfm/adobe/palatino/zppleb7m.tfm - RELOC/fonts/tfm/adobe/palatino/zppleb7t.tfm - RELOC/fonts/tfm/adobe/palatino/zppleb7y.tfm - RELOC/fonts/tfm/adobe/palatino/zppler7m.tfm - RELOC/fonts/tfm/adobe/palatino/zppler7t.tfm - RELOC/fonts/tfm/adobe/palatino/zppler7v.tfm - RELOC/fonts/tfm/adobe/palatino/zppler7y.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplb7t.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplb8c.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplb8r.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplb8t.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplbc7t.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplbc8t.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplbi7t.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplbi8c.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplbi8r.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplbi8t.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplbo7t.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplbo8c.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplbo8r.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplbo8t.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplr7t.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplr8c.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplr8r.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplr8t.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplrc7t.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplrc8t.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplri7t.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplri8c.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplri8r.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplri8t.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplro7t.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplro8c.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplro8r.tfm - RELOC/fonts/tfm/urw35vf/palatino/uplro8t.tfm - RELOC/fonts/type1/urw/palatino/uplb8a.pfb - RELOC/fonts/type1/urw/palatino/uplb8a.pfm - RELOC/fonts/type1/urw/palatino/uplbi8a.pfb - RELOC/fonts/type1/urw/palatino/uplbi8a.pfm - RELOC/fonts/type1/urw/palatino/uplr8a.pfb - RELOC/fonts/type1/urw/palatino/uplr8a.pfm - RELOC/fonts/type1/urw/palatino/uplri8a.pfb - RELOC/fonts/type1/urw/palatino/uplri8a.pfm - RELOC/fonts/vf/adobe/palatino/pplb.vf - RELOC/fonts/vf/adobe/palatino/pplb7t.vf - RELOC/fonts/vf/adobe/palatino/pplb8c.vf - RELOC/fonts/vf/adobe/palatino/pplb8t.vf - RELOC/fonts/vf/adobe/palatino/pplb9c.vf - RELOC/fonts/vf/adobe/palatino/pplb9d.vf - RELOC/fonts/vf/adobe/palatino/pplb9e.vf - RELOC/fonts/vf/adobe/palatino/pplb9o.vf - RELOC/fonts/vf/adobe/palatino/pplb9t.vf - RELOC/fonts/vf/adobe/palatino/pplbc.vf - RELOC/fonts/vf/adobe/palatino/pplbc7t.vf - RELOC/fonts/vf/adobe/palatino/pplbc8t.vf - RELOC/fonts/vf/adobe/palatino/pplbi.vf - RELOC/fonts/vf/adobe/palatino/pplbi7t.vf - RELOC/fonts/vf/adobe/palatino/pplbi8c.vf - RELOC/fonts/vf/adobe/palatino/pplbi8t.vf - RELOC/fonts/vf/adobe/palatino/pplbi9c.vf - RELOC/fonts/vf/adobe/palatino/pplbi9d.vf - RELOC/fonts/vf/adobe/palatino/pplbi9e.vf - RELOC/fonts/vf/adobe/palatino/pplbi9o.vf - RELOC/fonts/vf/adobe/palatino/pplbi9t.vf - RELOC/fonts/vf/adobe/palatino/pplbo.vf - RELOC/fonts/vf/adobe/palatino/pplbo7t.vf - RELOC/fonts/vf/adobe/palatino/pplbo8c.vf - RELOC/fonts/vf/adobe/palatino/pplbo8t.vf - RELOC/fonts/vf/adobe/palatino/pplbu.vf - RELOC/fonts/vf/adobe/palatino/pplr.vf - RELOC/fonts/vf/adobe/palatino/pplr7t.vf - RELOC/fonts/vf/adobe/palatino/pplr8c.vf - RELOC/fonts/vf/adobe/palatino/pplr8t.vf - RELOC/fonts/vf/adobe/palatino/pplr9c.vf - RELOC/fonts/vf/adobe/palatino/pplr9d.vf - RELOC/fonts/vf/adobe/palatino/pplr9e.vf - RELOC/fonts/vf/adobe/palatino/pplr9o.vf - RELOC/fonts/vf/adobe/palatino/pplr9t.vf - RELOC/fonts/vf/adobe/palatino/pplrc.vf - RELOC/fonts/vf/adobe/palatino/pplrc7t.vf - RELOC/fonts/vf/adobe/palatino/pplrc8t.vf - RELOC/fonts/vf/adobe/palatino/pplrc9d.vf - RELOC/fonts/vf/adobe/palatino/pplrc9e.vf - RELOC/fonts/vf/adobe/palatino/pplrc9o.vf - RELOC/fonts/vf/adobe/palatino/pplrc9t.vf - RELOC/fonts/vf/adobe/palatino/pplri.vf - RELOC/fonts/vf/adobe/palatino/pplri7t.vf - RELOC/fonts/vf/adobe/palatino/pplri8c.vf - RELOC/fonts/vf/adobe/palatino/pplri8t.vf - RELOC/fonts/vf/adobe/palatino/pplri9c.vf - RELOC/fonts/vf/adobe/palatino/pplri9d.vf - RELOC/fonts/vf/adobe/palatino/pplri9e.vf - RELOC/fonts/vf/adobe/palatino/pplri9o.vf - RELOC/fonts/vf/adobe/palatino/pplri9t.vf - RELOC/fonts/vf/adobe/palatino/pplro.vf - RELOC/fonts/vf/adobe/palatino/pplro7t.vf - RELOC/fonts/vf/adobe/palatino/pplro8c.vf - RELOC/fonts/vf/adobe/palatino/pplro8t.vf - RELOC/fonts/vf/adobe/palatino/pplrre.vf - RELOC/fonts/vf/adobe/palatino/pplrrn.vf - RELOC/fonts/vf/adobe/palatino/pplru.vf - RELOC/fonts/vf/adobe/palatino/zppleb7m.vf - RELOC/fonts/vf/adobe/palatino/zppleb7t.vf - RELOC/fonts/vf/adobe/palatino/zppleb7y.vf - RELOC/fonts/vf/adobe/palatino/zppler7m.vf - RELOC/fonts/vf/adobe/palatino/zppler7t.vf - RELOC/fonts/vf/adobe/palatino/zppler7v.vf - RELOC/fonts/vf/adobe/palatino/zppler7y.vf - RELOC/fonts/vf/urw35vf/palatino/uplb7t.vf - RELOC/fonts/vf/urw35vf/palatino/uplb8c.vf - RELOC/fonts/vf/urw35vf/palatino/uplb8t.vf - RELOC/fonts/vf/urw35vf/palatino/uplbc7t.vf - RELOC/fonts/vf/urw35vf/palatino/uplbc8t.vf - RELOC/fonts/vf/urw35vf/palatino/uplbi7t.vf - RELOC/fonts/vf/urw35vf/palatino/uplbi8c.vf - RELOC/fonts/vf/urw35vf/palatino/uplbi8t.vf - RELOC/fonts/vf/urw35vf/palatino/uplbo7t.vf - RELOC/fonts/vf/urw35vf/palatino/uplbo8c.vf - RELOC/fonts/vf/urw35vf/palatino/uplbo8t.vf - RELOC/fonts/vf/urw35vf/palatino/uplr7t.vf - RELOC/fonts/vf/urw35vf/palatino/uplr8c.vf - RELOC/fonts/vf/urw35vf/palatino/uplr8t.vf - RELOC/fonts/vf/urw35vf/palatino/uplrc7t.vf - RELOC/fonts/vf/urw35vf/palatino/uplrc8t.vf - RELOC/fonts/vf/urw35vf/palatino/uplri7t.vf - RELOC/fonts/vf/urw35vf/palatino/uplri8c.vf - RELOC/fonts/vf/urw35vf/palatino/uplri8t.vf - RELOC/fonts/vf/urw35vf/palatino/uplro7t.vf - RELOC/fonts/vf/urw35vf/palatino/uplro8c.vf - RELOC/fonts/vf/urw35vf/palatino/uplro8t.vf - RELOC/tex/latex/palatino/8rupl.fd - RELOC/tex/latex/palatino/omlupl.fd - RELOC/tex/latex/palatino/omsupl.fd - RELOC/tex/latex/palatino/ot1upl.fd - RELOC/tex/latex/palatino/t1upl.fd - RELOC/tex/latex/palatino/ts1upl.fd -catalogue-ctan /fonts/urw/base35 -catalogue-date 2014-06-07 20:47:53 +0200 -catalogue-license gpl - -name papercdcase -category Package -revision 15878 -shortdesc Origami-style folding paper CD case. -relocated 1 -longdesc This package implements a LaTeX style file to produce origami- -longdesc style folding paper CD cases. -runfiles size=6 - RELOC/tex/latex/papercdcase/papercdcase.sty -docfiles size=39 - RELOC/doc/latex/papercdcase/example.tex - RELOC/doc/latex/papercdcase/interactive.tex - RELOC/doc/latex/papercdcase/papercdcase.pdf -srcfiles size=12 - RELOC/source/latex/papercdcase/papercdcase.dtx - RELOC/source/latex/papercdcase/papercdcase.ins -catalogue-ctan /macros/latex/contrib/papercdcase -catalogue-date 2012-06-11 12:09:17 +0200 -catalogue-license lppl - -name papermas -category Package -revision 23667 -shortdesc Compute the mass of a printed version of a document. -relocated 1 -longdesc The package computes the number of sheets of paper used by, and -longdesc hence the mass of a document. This is useful (for example) when -longdesc calculating postal charges. -runfiles size=3 - RELOC/tex/latex/papermas/papermas.sty -docfiles size=108 - RELOC/doc/latex/papermas/README - RELOC/doc/latex/papermas/papermas-example.pdf - RELOC/doc/latex/papermas/papermas-example.tex - RELOC/doc/latex/papermas/papermas.pdf -srcfiles size=15 - RELOC/source/latex/papermas/papermas.drv - RELOC/source/latex/papermas/papermas.dtx - RELOC/source/latex/papermas/papermas.ins -catalogue-ctan /macros/latex/contrib/papermas -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0h - -name papertex -category Package -revision 19230 -shortdesc Class for newspapers, etc. -relocated 1 -longdesc This class allows LaTeX users to create a paperTeX newspaper. -longdesc The final document has a front page and as many inner pages as -longdesc desired. News items appear one after another and the user can -longdesc choose the number of columns, style and so on. The class allows -longdesc users to create newsletters too. -runfiles size=6 - RELOC/tex/latex/papertex/papertex.cls -docfiles size=144 - RELOC/doc/latex/papertex/CHANGES - RELOC/doc/latex/papertex/README - RELOC/doc/latex/papertex/example/example.pdf - RELOC/doc/latex/papertex/example/example.tex - RELOC/doc/latex/papertex/example/img/ireland.jpg - RELOC/doc/latex/papertex/example/img/weather/clouds.jpg - RELOC/doc/latex/papertex/example/img/weather/rain.jpg - RELOC/doc/latex/papertex/example/img/weather/sun.jpg - RELOC/doc/latex/papertex/papertex.pdf -srcfiles size=16 - RELOC/source/latex/papertex/papertex.dtx - RELOC/source/latex/papertex/papertex.ins -catalogue-ctan /macros/latex/contrib/papertex -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.2b - -name paper -category Package -revision 34521 -shortdesc Versions of article class, tuned for scholarly publications. -relocated 1 -longdesc A pair of classes derived from article, tuned for producing -longdesc papers for journals. The classes introduce new layout options -longdesc and font commands for sections/parts, and define a new keywords -longdesc environment, subtitle and institution commands for the title -longdesc section and new commands for revisions. -runfiles size=12 - RELOC/tex/latex/paper/journal.cls - RELOC/tex/latex/paper/journal.sty - RELOC/tex/latex/paper/paper.cls - RELOC/tex/latex/paper/paper.sty -docfiles size=43 - RELOC/doc/latex/paper/README - RELOC/doc/latex/paper/install - RELOC/doc/latex/paper/journal1.tex - RELOC/doc/latex/paper/journal2.tex - RELOC/doc/latex/paper/local.tex - RELOC/doc/latex/paper/paper.pdf - RELOC/doc/latex/paper/testj.tex - RELOC/doc/latex/paper/testp.tex -srcfiles size=18 - RELOC/source/latex/paper/paper.drv - RELOC/source/latex/paper/paper.dtx -catalogue-ctan /macros/latex/contrib/paper -catalogue-date 2012-01-13 09:08:17 +0100 -catalogue-license gpl -catalogue-version 1.0l - -name paracol -category Package -revision 32099 -shortdesc Multiple columns with texts "in parallel". -relocated 1 -longdesc The package provides yet another multi-column typesetting -longdesc mechanism by which you produce multi-column (e.g., bilingual) -longdesc document switching and sychronizing each corresponding part in -longdesc "parallel". -runfiles size=25 - RELOC/tex/latex/paracol/paracol.sty -docfiles size=81 - RELOC/doc/latex/paracol/README - RELOC/doc/latex/paracol/paracol-man.pdf - RELOC/doc/latex/paracol/paracol-man.tex -srcfiles size=255 - RELOC/source/latex/paracol/bgpaint.dtx - RELOC/source/latex/paracol/impl.dtx - RELOC/source/latex/paracol/ltfloat.dtx - RELOC/source/latex/paracol/man.dtx - RELOC/source/latex/paracol/paracol.dtx - RELOC/source/latex/paracol/paracol.ins - RELOC/source/latex/paracol/probs.dtx - RELOC/source/latex/paracol/pwfnote.dtx - RELOC/source/latex/paracol/ref.dtx -catalogue-ctan /macros/latex/contrib/paracol -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.31 - -name paralist -category Package -revision 30992 -shortdesc Enumerate and itemize within paragraphs. -relocated 1 -longdesc Provides enumerate and itemize environments that can be used -longdesc within paragraphs to format the items either as running text or -longdesc as separate paragraphs with a preceding number or symbol. Also -longdesc provides compacted versions of enumerate and itemize. -runfiles size=4 - RELOC/tex/latex/paralist/paralist.sty -docfiles size=52 - RELOC/doc/latex/paralist/README - RELOC/doc/latex/paralist/paralist.pdf -srcfiles size=17 - RELOC/source/latex/paralist/paralist.drv - RELOC/source/latex/paralist/paralist.dtx - RELOC/source/latex/paralist/paralist.ins -catalogue-ctan /macros/latex/contrib/paralist -catalogue-date 2013-06-13 19:52:23 +0200 -catalogue-license lppl -catalogue-version 2.4 - -name parallel -category Package -revision 15878 -shortdesc Typeset parallel texts. -relocated 1 -longdesc Provides a parallel environment which allows two potentially -longdesc different texts to be typeset in two columns, while maintaining -longdesc alignment. The two columns may be on the same page, or on -longdesc facing pages. This arrangement of text is commonly used when -longdesc typesetting translations, but it can have value when comparing -longdesc any two texts. -runfiles size=4 - RELOC/tex/latex/parallel/parallel.sty -docfiles size=38 - RELOC/doc/latex/parallel/example1.tex - RELOC/doc/latex/parallel/example2.tex - RELOC/doc/latex/parallel/parallel.pdf - RELOC/doc/latex/parallel/readme -srcfiles size=12 - RELOC/source/latex/parallel/parallel.drv - RELOC/source/latex/parallel/parallel.dtx - RELOC/source/latex/parallel/parallel.ins -catalogue-ctan /macros/latex/contrib/parallel -catalogue-date 2011-09-22 15:24:20 +0200 -catalogue-license lppl - -name paratype -category Package -revision 32859 -shortdesc LaTeX support for free fonts by ParaType. -relocated 1 -longdesc The package offers LaTeX support for the fonts PT Sans, PT -longdesc Serif and PT Mono developed by ParaType for the project "Public -longdesc Types of Russian Federation", and released under an open user -longdesc license. The fonts themselves are provided in both the TrueType -longdesc and Type 1 formats, both created by ParaType). The fonts -longdesc provide encodings OT1, T1, IL2, TS1, T2* and X2. The package -longdesc provides a convenient replacement of the two packages ptsans -longdesc and ptserif. -execute addMap paratype-type1.map -runfiles size=5365 - RELOC/fonts/afm/paratype/ptmono/PTM55F.afm - RELOC/fonts/afm/paratype/ptmono/PTM55F.inf - RELOC/fonts/afm/paratype/ptmono/PTM75F.afm - RELOC/fonts/afm/paratype/ptmono/PTM75F.inf - RELOC/fonts/afm/paratype/ptsans/PTC55F.afm - RELOC/fonts/afm/paratype/ptsans/PTC55F.inf - RELOC/fonts/afm/paratype/ptsans/PTC75F.afm - RELOC/fonts/afm/paratype/ptsans/PTC75F.inf - RELOC/fonts/afm/paratype/ptsans/PTN57F.afm - RELOC/fonts/afm/paratype/ptsans/PTN57F.inf - RELOC/fonts/afm/paratype/ptsans/PTN77F.afm - RELOC/fonts/afm/paratype/ptsans/PTN77F.inf - RELOC/fonts/afm/paratype/ptsans/PTS55F.afm - RELOC/fonts/afm/paratype/ptsans/PTS55F.inf - RELOC/fonts/afm/paratype/ptsans/PTS56F.afm - RELOC/fonts/afm/paratype/ptsans/PTS56F.inf - RELOC/fonts/afm/paratype/ptsans/PTS75F.afm - RELOC/fonts/afm/paratype/ptsans/PTS75F.inf - RELOC/fonts/afm/paratype/ptsans/PTS76F.afm - RELOC/fonts/afm/paratype/ptsans/PTS76F.inf - RELOC/fonts/afm/paratype/ptserif/PTF55F.afm - RELOC/fonts/afm/paratype/ptserif/PTF55F.inf - RELOC/fonts/afm/paratype/ptserif/PTF56F.afm - RELOC/fonts/afm/paratype/ptserif/PTF56F.inf - RELOC/fonts/afm/paratype/ptserif/PTF75F.afm - RELOC/fonts/afm/paratype/ptserif/PTF75F.inf - RELOC/fonts/afm/paratype/ptserif/PTF76F.afm - RELOC/fonts/afm/paratype/ptserif/PTF76F.inf - RELOC/fonts/afm/paratype/ptserif/PTZ55F.afm - RELOC/fonts/afm/paratype/ptserif/PTZ55F.inf - RELOC/fonts/afm/paratype/ptserif/PTZ56F.afm - RELOC/fonts/afm/paratype/ptserif/PTZ56F.inf - RELOC/fonts/enc/dvips/paratype/ptmono_il2.enc - RELOC/fonts/enc/dvips/paratype/ptmono_ot1.enc - RELOC/fonts/enc/dvips/paratype/ptmono_ot2.enc - RELOC/fonts/enc/dvips/paratype/ptmono_t1.enc - RELOC/fonts/enc/dvips/paratype/ptmono_t2a.enc - RELOC/fonts/enc/dvips/paratype/ptmono_t2b.enc - RELOC/fonts/enc/dvips/paratype/ptmono_t2c.enc - RELOC/fonts/enc/dvips/paratype/ptmono_ts1.enc - RELOC/fonts/enc/dvips/paratype/ptmono_x2.enc - RELOC/fonts/enc/dvips/paratype/ptsans_il2.enc - RELOC/fonts/enc/dvips/paratype/ptsans_ot1.enc - RELOC/fonts/enc/dvips/paratype/ptsans_ot2.enc - RELOC/fonts/enc/dvips/paratype/ptsans_t1.enc - RELOC/fonts/enc/dvips/paratype/ptsans_t2a.enc - RELOC/fonts/enc/dvips/paratype/ptsans_t2b.enc - RELOC/fonts/enc/dvips/paratype/ptsans_t2c.enc - RELOC/fonts/enc/dvips/paratype/ptsans_ts1.enc - RELOC/fonts/enc/dvips/paratype/ptsans_x2.enc - RELOC/fonts/enc/dvips/paratype/ptserif_il2.enc - RELOC/fonts/enc/dvips/paratype/ptserif_ot1.enc - RELOC/fonts/enc/dvips/paratype/ptserif_ot2.enc - RELOC/fonts/enc/dvips/paratype/ptserif_t1.enc - RELOC/fonts/enc/dvips/paratype/ptserif_t2a.enc - RELOC/fonts/enc/dvips/paratype/ptserif_t2b.enc - RELOC/fonts/enc/dvips/paratype/ptserif_t2c.enc - RELOC/fonts/enc/dvips/paratype/ptserif_ts1.enc - RELOC/fonts/enc/dvips/paratype/ptserif_x2.enc - RELOC/fonts/map/dvips/paratype/paratype-truetype.map - RELOC/fonts/map/dvips/paratype/paratype-type1.map - RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-il2--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-ot1--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-il2--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-ot1--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-ot2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-x2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-il2.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-ot1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-t1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-t2a--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-t2a.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-t2b--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-t2b.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-t2c--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-t2c.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-ts1.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-x2--base.tfm - RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-x2.tfm - RELOC/fonts/truetype/paratype/ptmono/PTM55F.ttf - RELOC/fonts/truetype/paratype/ptmono/PTM75F.ttf - RELOC/fonts/truetype/paratype/ptsans/PTC55F.ttf - RELOC/fonts/truetype/paratype/ptsans/PTC75F.ttf - RELOC/fonts/truetype/paratype/ptsans/PTN57F.ttf - RELOC/fonts/truetype/paratype/ptsans/PTN77F.ttf - RELOC/fonts/truetype/paratype/ptsans/PTS55F.ttf - RELOC/fonts/truetype/paratype/ptsans/PTS56F.ttf - RELOC/fonts/truetype/paratype/ptsans/PTS75F.ttf - RELOC/fonts/truetype/paratype/ptsans/PTS76F.ttf - RELOC/fonts/truetype/paratype/ptserif/PTF55F.ttf - RELOC/fonts/truetype/paratype/ptserif/PTF56F.ttf - RELOC/fonts/truetype/paratype/ptserif/PTF75F.ttf - RELOC/fonts/truetype/paratype/ptserif/PTF76F.ttf - RELOC/fonts/truetype/paratype/ptserif/PTZ55F.ttf - RELOC/fonts/truetype/paratype/ptserif/PTZ56F.ttf - RELOC/fonts/type1/paratype/ptmono/PTM55F.pfb - RELOC/fonts/type1/paratype/ptmono/PTM55F.pfm - RELOC/fonts/type1/paratype/ptmono/PTM75F.pfb - RELOC/fonts/type1/paratype/ptmono/PTM75F.pfm - RELOC/fonts/type1/paratype/ptsans/PTC55F.pfb - RELOC/fonts/type1/paratype/ptsans/PTC55F.pfm - RELOC/fonts/type1/paratype/ptsans/PTC75F.pfb - RELOC/fonts/type1/paratype/ptsans/PTC75F.pfm - RELOC/fonts/type1/paratype/ptsans/PTN57F.pfb - RELOC/fonts/type1/paratype/ptsans/PTN57F.pfm - RELOC/fonts/type1/paratype/ptsans/PTN77F.pfb - RELOC/fonts/type1/paratype/ptsans/PTN77F.pfm - RELOC/fonts/type1/paratype/ptsans/PTS55F.pfb - RELOC/fonts/type1/paratype/ptsans/PTS55F.pfm - RELOC/fonts/type1/paratype/ptsans/PTS56F.pfb - RELOC/fonts/type1/paratype/ptsans/PTS56F.pfm - RELOC/fonts/type1/paratype/ptsans/PTS75F.pfb - RELOC/fonts/type1/paratype/ptsans/PTS75F.pfm - RELOC/fonts/type1/paratype/ptsans/PTS76F.pfb - RELOC/fonts/type1/paratype/ptsans/PTS76F.pfm - RELOC/fonts/type1/paratype/ptserif/PTF55F.pfb - RELOC/fonts/type1/paratype/ptserif/PTF55F.pfm - RELOC/fonts/type1/paratype/ptserif/PTF56F.pfb - RELOC/fonts/type1/paratype/ptserif/PTF56F.pfm - RELOC/fonts/type1/paratype/ptserif/PTF75F.pfb - RELOC/fonts/type1/paratype/ptserif/PTF75F.pfm - RELOC/fonts/type1/paratype/ptserif/PTF76F.pfb - RELOC/fonts/type1/paratype/ptserif/PTF76F.pfm - RELOC/fonts/type1/paratype/ptserif/PTZ55F.pfb - RELOC/fonts/type1/paratype/ptserif/PTZ55F.pfm - RELOC/fonts/type1/paratype/ptserif/PTZ56F.pfb - RELOC/fonts/type1/paratype/ptserif/PTZ56F.pfm - RELOC/fonts/vf/paratype/ptmono/PTMono-Bold-tlf-il2.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-Bold-tlf-ot1.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-Bold-tlf-t1.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-Bold-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-Bold-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-Bold-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-Bold-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-Bold-tlf-x2.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-BoldSlanted-tlf-t1.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-BoldSlanted-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-BoldSlanted-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-BoldSlanted-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-BoldSlanted-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-BoldSlanted-tlf-x2.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-Regular-tlf-il2.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-Regular-tlf-ot1.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-Regular-tlf-t1.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-Regular-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-Regular-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-Regular-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-Regular-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-Regular-tlf-x2.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-Slanted-tlf-t1.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-Slanted-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-Slanted-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-Slanted-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-Slanted-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptmono/PTMono-Slanted-tlf-x2.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Bold-tlf-t1.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Bold-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Bold-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Bold-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Bold-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Bold-tlf-x2.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-BoldItalic-tlf-t1.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-BoldItalic-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-BoldItalic-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-BoldItalic-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-BoldItalic-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-BoldItalic-tlf-x2.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Caption-tlf-t1.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Caption-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Caption-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Caption-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Caption-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Caption-tlf-x2.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBold-tlf-t1.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBold-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBold-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBold-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBold-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBold-tlf-x2.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t1.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-x2.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionSlanted-tlf-t1.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionSlanted-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionSlanted-tlf-x2.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Italic-tlf-t1.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Italic-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Italic-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Italic-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Italic-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Italic-tlf-x2.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Narrow-tlf-t1.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Narrow-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Narrow-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Narrow-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Narrow-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Narrow-tlf-x2.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBold-tlf-t1.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBold-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBold-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBold-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBold-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBold-tlf-x2.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t1.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-x2.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowSlanted-tlf-t1.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowSlanted-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowSlanted-tlf-x2.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Regular-tlf-t1.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Regular-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Regular-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Regular-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Regular-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptsans/PTSans-Regular-tlf-x2.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Bold-tlf-t1.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Bold-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Bold-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Bold-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Bold-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Bold-tlf-x2.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldItalic-tlf-t1.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldItalic-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldItalic-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldItalic-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldItalic-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldItalic-tlf-x2.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldSlanted-tlf-t1.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldSlanted-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldSlanted-tlf-x2.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t1.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-x2.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Caption-tlf-t1.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Caption-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Caption-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Caption-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Caption-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Caption-tlf-x2.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionItalic-tlf-t1.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionItalic-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionItalic-tlf-x2.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t1.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionSlanted-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionSlanted-tlf-x2.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t1.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-x2.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Italic-tlf-t1.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Italic-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Italic-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Italic-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Italic-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Italic-tlf-x2.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Regular-tlf-t1.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Regular-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Regular-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Regular-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Regular-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Regular-tlf-x2.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Slanted-tlf-t1.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Slanted-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Slanted-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Slanted-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Slanted-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-Slanted-tlf-x2.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-UprightItalic-tlf-t1.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-UprightItalic-tlf-t2a.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-UprightItalic-tlf-t2b.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-UprightItalic-tlf-t2c.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-UprightItalic-tlf-ts1.vf - RELOC/fonts/vf/paratype/ptserif/PTSerif-UprightItalic-tlf-x2.vf - RELOC/tex/latex/paratype/IL2PTMono-TLF.fd - RELOC/tex/latex/paratype/IL2PTSans-TLF.fd - RELOC/tex/latex/paratype/IL2PTSansCaption-TLF.fd - RELOC/tex/latex/paratype/IL2PTSansNarrow-TLF.fd - RELOC/tex/latex/paratype/IL2PTSerif-TLF.fd - RELOC/tex/latex/paratype/IL2PTSerifCaption-TLF.fd - RELOC/tex/latex/paratype/OT1PTMono-TLF.fd - RELOC/tex/latex/paratype/OT1PTSans-TLF.fd - RELOC/tex/latex/paratype/OT1PTSansCaption-TLF.fd - RELOC/tex/latex/paratype/OT1PTSansNarrow-TLF.fd - RELOC/tex/latex/paratype/OT1PTSerif-TLF.fd - RELOC/tex/latex/paratype/OT1PTSerifCaption-TLF.fd - RELOC/tex/latex/paratype/OT2PTMono-TLF.fd - RELOC/tex/latex/paratype/OT2PTSans-TLF.fd - RELOC/tex/latex/paratype/OT2PTSansCaption-TLF.fd - RELOC/tex/latex/paratype/OT2PTSansNarrow-TLF.fd - RELOC/tex/latex/paratype/OT2PTSerif-TLF.fd - RELOC/tex/latex/paratype/OT2PTSerifCaption-TLF.fd - RELOC/tex/latex/paratype/PTMono.sty - RELOC/tex/latex/paratype/PTSans.sty - RELOC/tex/latex/paratype/PTSansCaption.sty - RELOC/tex/latex/paratype/PTSansNarrow.sty - RELOC/tex/latex/paratype/PTSerif.sty - RELOC/tex/latex/paratype/PTSerifCaption.sty - RELOC/tex/latex/paratype/T1PTMono-TLF.fd - RELOC/tex/latex/paratype/T1PTSans-TLF.fd - RELOC/tex/latex/paratype/T1PTSansCaption-TLF.fd - RELOC/tex/latex/paratype/T1PTSansNarrow-TLF.fd - RELOC/tex/latex/paratype/T1PTSerif-TLF.fd - RELOC/tex/latex/paratype/T1PTSerifCaption-TLF.fd - RELOC/tex/latex/paratype/T2APTMono-TLF.fd - RELOC/tex/latex/paratype/T2APTSans-TLF.fd - RELOC/tex/latex/paratype/T2APTSansCaption-TLF.fd - RELOC/tex/latex/paratype/T2APTSansNarrow-TLF.fd - RELOC/tex/latex/paratype/T2APTSerif-TLF.fd - RELOC/tex/latex/paratype/T2APTSerifCaption-TLF.fd - RELOC/tex/latex/paratype/T2BPTMono-TLF.fd - RELOC/tex/latex/paratype/T2BPTSans-TLF.fd - RELOC/tex/latex/paratype/T2BPTSansCaption-TLF.fd - RELOC/tex/latex/paratype/T2BPTSansNarrow-TLF.fd - RELOC/tex/latex/paratype/T2BPTSerif-TLF.fd - RELOC/tex/latex/paratype/T2BPTSerifCaption-TLF.fd - RELOC/tex/latex/paratype/T2CPTMono-TLF.fd - RELOC/tex/latex/paratype/T2CPTSans-TLF.fd - RELOC/tex/latex/paratype/T2CPTSansCaption-TLF.fd - RELOC/tex/latex/paratype/T2CPTSansNarrow-TLF.fd - RELOC/tex/latex/paratype/T2CPTSerif-TLF.fd - RELOC/tex/latex/paratype/T2CPTSerifCaption-TLF.fd - RELOC/tex/latex/paratype/TS1PTMono-TLF.fd - RELOC/tex/latex/paratype/TS1PTSans-TLF.fd - RELOC/tex/latex/paratype/TS1PTSansCaption-TLF.fd - RELOC/tex/latex/paratype/TS1PTSansNarrow-TLF.fd - RELOC/tex/latex/paratype/TS1PTSerif-TLF.fd - RELOC/tex/latex/paratype/TS1PTSerifCaption-TLF.fd - RELOC/tex/latex/paratype/X2PTMono-TLF.fd - RELOC/tex/latex/paratype/X2PTSans-TLF.fd - RELOC/tex/latex/paratype/X2PTSansCaption-TLF.fd - RELOC/tex/latex/paratype/X2PTSansNarrow-TLF.fd - RELOC/tex/latex/paratype/X2PTSerif-TLF.fd - RELOC/tex/latex/paratype/X2PTSerifCaption-TLF.fd - RELOC/tex/latex/paratype/paratype.sty -docfiles size=289 - RELOC/doc/fonts/paratype/CHANGELOG - RELOC/doc/fonts/paratype/OT_TT_Install_E.txt - RELOC/doc/fonts/paratype/OT_TT_Install_R.txt - RELOC/doc/fonts/paratype/PT_Free_Font_License_eng_1.3.txt - RELOC/doc/fonts/paratype/PT_Free_Font_License_rus_1.3.txt - RELOC/doc/fonts/paratype/README - RELOC/doc/fonts/paratype/manifest.txt - RELOC/doc/fonts/paratype/paratype-sample.pdf - RELOC/doc/fonts/paratype/paratype-sample.tex - RELOC/doc/fonts/paratype/paratype.pdf - RELOC/doc/fonts/paratype/paratype.tex -catalogue-ctan /fonts/paratype -catalogue-date 2014-05-17 21:41:14 +0200 -catalogue-license lppl - -name paresse -category Package -revision 29803 -shortdesc Define simple macros for greek letters. -relocated 1 -longdesc The package defines macros using SS to type greek letters. so -longdesc that the user may (for example) type SSa to get the effect of -longdesc $\alpha$. -runfiles size=5 - RELOC/tex/latex/paresse/paresse.sty - RELOC/tex/latex/paresse/paresseold.sto - RELOC/tex/latex/paresse/paresseutf8.sto -docfiles size=406 - RELOC/doc/latex/paresse/paresse-en.pdf - RELOC/doc/latex/paresse/paresse-ex-en.pdf - RELOC/doc/latex/paresse/paresse-ex-fr.pdf - RELOC/doc/latex/paresse/paresse-fr.pdf - RELOC/doc/latex/paresse/paresse.pdf -srcfiles size=21 - RELOC/source/latex/paresse/LISEZMOI - RELOC/source/latex/paresse/Makefile - RELOC/source/latex/paresse/README - RELOC/source/latex/paresse/paresse-TEST.zip - RELOC/source/latex/paresse/paresse-doc.dtx - RELOC/source/latex/paresse/paresse.dtx - RELOC/source/latex/paresse/paresse.ins -catalogue-ctan /macros/latex/contrib/paresse -catalogue-date 2013-02-16 13:58:07 +0100 -catalogue-license lppl -catalogue-version 4.1 - -name parnotes -category Package -revision 25032 -shortdesc Notes after every paragraph (or elsewhere). -relocated 1 -longdesc The package provides the \parnote command. The notes are set as -longdesc (normal) running paragraphs; placement is at the end of each -longdesc paragraph, or manually, using the \parnotes command. -runfiles size=2 - RELOC/tex/latex/parnotes/parnotes.sty -docfiles size=2 - RELOC/doc/latex/parnotes/README - RELOC/doc/latex/parnotes/README.TEXLIVE -catalogue-ctan /macros/latex/contrib/parnotes -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1 - -name parrun -category Package -revision 15878 -shortdesc Typesets (two) streams of text running parallel. -relocated 1 -longdesc For typesetting translated text and the original source, -longdesc parallel on the same page, one above the other. -runfiles size=3 - RELOC/tex/latex/parrun/parrun.sty -docfiles size=39 - RELOC/doc/latex/parrun/parrun.pdf - RELOC/doc/latex/parrun/readme -srcfiles size=6 - RELOC/source/latex/parrun/parrun.dtx - RELOC/source/latex/parrun/parrun.ins -catalogue-ctan /macros/latex/contrib/parrun -catalogue-date 2012-06-09 20:15:34 +0200 -catalogue-license lppl - -name parselines -category Package -revision 21475 -shortdesc Apply a macro to each line of an environment. -relocated 1 -longdesc The package defines an environment "parse lines" which -longdesc processes each line of an environment with a macro. An example -longdesc of shading the lines of an environment is given. -runfiles size=1 - RELOC/tex/latex/parselines/parselines.sty -docfiles size=46 - RELOC/doc/latex/parselines/README - RELOC/doc/latex/parselines/parselines.pdf -srcfiles size=9 - RELOC/source/latex/parselines/parselines.drv - RELOC/source/latex/parselines/parselines.dtx - RELOC/source/latex/parselines/parselines.ins -catalogue-ctan /macros/latex/contrib/parselines -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.4 - -name parskip -category Package -revision 19963 -shortdesc Layout with zero \parindent, non-zero \parskip. -relocated 1 -longdesc Simply changing \parskip and \parindent leaves a layout that is -longdesc untidy; this package (though it is no substitute for a properly- -longdesc designed class) helps alleviate this untidiness -runfiles size=1 - RELOC/tex/latex/parskip/parskip.sty -docfiles size=44 - RELOC/doc/latex/parskip/parskip-doc.pdf - RELOC/doc/latex/parskip/parskip-doc.tex -catalogue-ctan /macros/latex/contrib/parskip -catalogue-date 2013-09-30 14:43:32 +0200 -catalogue-license lppl -catalogue-version 2.0 - -name pas-cours -category Package -revision 35842 -shortdesc Macros useful in preparing teaching material. -relocated 1 -longdesc Several groups of macros cover different branches of -longdesc mathematics. -runfiles size=1 - RELOC/tex/latex/pas-cours/pas-cours.sty -docfiles size=54 - RELOC/doc/latex/pas-cours/README - RELOC/doc/latex/pas-cours/README.TEXLIVE - RELOC/doc/latex/pas-cours/attention.png - RELOC/doc/latex/pas-cours/coeur.png - RELOC/doc/latex/pas-cours/macro-patrons.tex - RELOC/doc/latex/pas-cours/macro-solides.tex - RELOC/doc/latex/pas-cours/macro-styles.tex - RELOC/doc/latex/pas-cours/pas-cours.tex - RELOC/doc/latex/pas-cours/prerequis.png -catalogue-ctan /macros/latex/contrib/pas-cours -catalogue-date 2014-12-16 15:38:50 +0100 -catalogue-license lppl -catalogue-version 1.09d - -name pas-crosswords -category Package -revision 32313 -shortdesc Creating crossword grids, using TikZ. -relocated 1 -longdesc The package produces crossword grids, using a wide variety of -longdesc colours and decorations of the grids and the text in them. The -longdesc package uses TikZ for its graphical output. -runfiles size=2 - RELOC/tex/latex/pas-crosswords/pas-crosswords.sty -docfiles size=45 - RELOC/doc/latex/pas-crosswords/README - RELOC/doc/latex/pas-crosswords/pas-crosswords.pdf - RELOC/doc/latex/pas-crosswords/pas-crosswords.tex -catalogue-ctan /macros/latex/contrib/pas-crosswords -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.03 - -name pas-cv -category Package -revision 32263 -shortdesc Flexible typesetting of Curricula Vitae. -relocated 1 -longdesc The package provides the framework for typesetting a Curriculum -longdesc Vitae (composed in French), together with a number of "themes" -longdesc that may be used with the package. (The use of the themes may -longdesc be seen in the package's examples/ collection.) The author -longdesc hints that conversion for use with other languages (than -longdesc French) should be possible. -runfiles size=21 - RELOC/tex/latex/pas-cv/macro-andromede.tex - RELOC/tex/latex/pas-cv/macro-architecte.tex - RELOC/tex/latex/pas-cv/macro-centaure.tex - RELOC/tex/latex/pas-cv/macro-dynamique.tex - RELOC/tex/latex/pas-cv/macro-gaia.tex - RELOC/tex/latex/pas-cv/macro-jupiter.tex - RELOC/tex/latex/pas-cv/macro-mars.tex - RELOC/tex/latex/pas-cv/macro-neptune.tex - RELOC/tex/latex/pas-cv/macro-orion.tex - RELOC/tex/latex/pas-cv/macro-pegase.tex - RELOC/tex/latex/pas-cv/macro-pluton.tex - RELOC/tex/latex/pas-cv/macro-saturne.tex - RELOC/tex/latex/pas-cv/macro-univers.tex - RELOC/tex/latex/pas-cv/macro-uranus.tex - RELOC/tex/latex/pas-cv/macro-venus.tex - RELOC/tex/latex/pas-cv/pas-cv.sty -docfiles size=390 - RELOC/doc/latex/pas-cv/examples/cv-andromede.pdf - RELOC/doc/latex/pas-cv/examples/cv-andromede.tex - RELOC/doc/latex/pas-cv/examples/cv-architecte.pdf - RELOC/doc/latex/pas-cv/examples/cv-architecte.tex - RELOC/doc/latex/pas-cv/examples/cv-centaure.pdf - RELOC/doc/latex/pas-cv/examples/cv-centaure.tex - RELOC/doc/latex/pas-cv/examples/cv-dynamique.pdf - RELOC/doc/latex/pas-cv/examples/cv-dynamique.tex - RELOC/doc/latex/pas-cv/examples/cv-gaia.pdf - RELOC/doc/latex/pas-cv/examples/cv-gaia.tex - RELOC/doc/latex/pas-cv/examples/cv-jupiter.pdf - RELOC/doc/latex/pas-cv/examples/cv-jupiter.tex - RELOC/doc/latex/pas-cv/examples/cv-mars.pdf - RELOC/doc/latex/pas-cv/examples/cv-mars.tex - RELOC/doc/latex/pas-cv/examples/cv-neptune.pdf - RELOC/doc/latex/pas-cv/examples/cv-neptune.tex - RELOC/doc/latex/pas-cv/examples/cv-orion.pdf - RELOC/doc/latex/pas-cv/examples/cv-orion.tex - RELOC/doc/latex/pas-cv/examples/cv-pegase.pdf - RELOC/doc/latex/pas-cv/examples/cv-pegase.tex - RELOC/doc/latex/pas-cv/examples/cv-pluton.pdf - RELOC/doc/latex/pas-cv/examples/cv-pluton.tex - RELOC/doc/latex/pas-cv/examples/cv-saturne.pdf - RELOC/doc/latex/pas-cv/examples/cv-saturne.tex - RELOC/doc/latex/pas-cv/examples/cv-univers.pdf - RELOC/doc/latex/pas-cv/examples/cv-univers.tex - RELOC/doc/latex/pas-cv/examples/cv-uranus.pdf - RELOC/doc/latex/pas-cv/examples/cv-uranus.tex - RELOC/doc/latex/pas-cv/examples/cv-venus.pdf - RELOC/doc/latex/pas-cv/examples/cv-venus.tex - RELOC/doc/latex/pas-cv/pas-cv.pdf - RELOC/doc/latex/pas-cv/pas-cv.tex - RELOC/doc/latex/pas-cv/photo.png -catalogue-ctan /macros/latex/contrib/pas-cv -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 2.01 - -name passivetex -category Package -revision 15878 -shortdesc Support package for XML/SGML typesetting -relocated 1 -longdesc Packages providing XML parsing, UTF-8 parsing, Unicode -longdesc entities, and common formatting object definitions for jadetex. -runfiles size=79 - RELOC/tex/xmltex/passivetex/dummyels.sty - RELOC/tex/xmltex/passivetex/fotex.sty - RELOC/tex/xmltex/passivetex/fotex.xmt - RELOC/tex/xmltex/passivetex/mlnames.sty - RELOC/tex/xmltex/passivetex/tei.xmt - RELOC/tex/xmltex/passivetex/teiprintslides.xmt - RELOC/tex/xmltex/passivetex/teislides.xmt - RELOC/tex/xmltex/passivetex/teixml.sty - RELOC/tex/xmltex/passivetex/teixmlslides.sty - RELOC/tex/xmltex/passivetex/ucharacters.sty - RELOC/tex/xmltex/passivetex/unicode.sty -catalogue-ctan /macros/xmltex/contrib/passivetex -catalogue-date 2014-06-05 00:41:42 +0200 -catalogue-license other-free - -name pas-tableur -category Package -revision 35034 -shortdesc Create a spreadsheet layout. -relocated 1 -longdesc The package provides commands for creating a grid of -longdesc rectangles, and commands for populating locations in the grid. -longdesc PGF/TikZ is used for placement and population of the cells. -runfiles size=5 - RELOC/tex/latex/pas-tableur/pas-tableur.sty -docfiles size=6 - RELOC/doc/latex/pas-tableur/README - RELOC/doc/latex/pas-tableur/README.TEXLIVE - RELOC/doc/latex/pas-tableur/pas-tableur.tex -catalogue-ctan /macros/latex/contrib/pas-tableur -catalogue-date 2014-08-17 17:15:51 +0200 -catalogue-license lppl -catalogue-version 2.00 - -name patchcmd -category Package -revision 15878 -shortdesc Change the definition of an existing command. -relocated 1 -longdesc The package provides a command \patchcommand that can be used -longdesc to add material at the beginning and/or the end of the -longdesc replacement text of an existing macro. It works for macros with -longdesc any number of normal arguments, including those that were -longdesc defined with \DeclareRobustCommand. -runfiles size=1 - RELOC/tex/latex/patchcmd/patchcmd.sty -docfiles size=19 - RELOC/doc/latex/patchcmd/patchcmd.pdf -srcfiles size=3 - RELOC/source/latex/patchcmd/patchcmd.dtx - RELOC/source/latex/patchcmd/patchcmd.ins -catalogue-ctan /macros/latex/contrib/patchcmd -catalogue-date 2012-06-09 20:15:34 +0200 -catalogue-license pd -catalogue-version 1.03 - -name patch -category Package -revision 25271 -shortdesc Patch loaded packages, etc.. -relocated 1 -longdesc The package defines macros that allow patching of existing -longdesc commands, specifying those parts of the existing macro to be -longdesc replaced, along with the replacements. Thus it provides more -longdesc sophisticated manipulation than a package like patchcmd, which -longdesc only permits modification by adding commands at the beginning -longdesc or end of an existing definition. The package is distributed in -longdesc a relative of LaTeX doc format: it will run unmodified, though -longdesc it benefits from docstrip treatment. -srcfiles size=7 - RELOC/source/generic/patch/patch.doc -catalogue-ctan /macros/generic/misc/patch.doc -catalogue-date 2012-03-13 23:16:04 +0100 -catalogue-license lppl - -name patgen2-tutorial -category Package -revision 16490 -shortdesc A tutorial on the use of Patgen 2. -relocated 1 -longdesc This document describes the use of Patgen 2 to create -longdesc hyphenation patterns for wide ranges of languages. -docfiles size=20 - RELOC/doc/support/patgen2-tutorial/patgen2.pdf - RELOC/doc/support/patgen2-tutorial/patgen2.tex -catalogue-ctan /info/patgen2 -catalogue-date 2012-06-09 20:15:34 +0200 -catalogue-license gpl - -name patgen -category TLCore -revision 37078 -shortdesc Generate hyphenation patterns. -longdesc This is the last version of the program distributed by Knuth; -longdesc it advertises itself as a pattern generator for "the algorithm -longdesc used in TeX", but, of course, the patterns used in modern -longdesc distributions are Unicode-based. -depend kpathsea -depend patgen.ARCH -docfiles size=5 - texmf-dist/doc/man/man1/patgen.1 - texmf-dist/doc/man/man1/patgen.man1.pdf -catalogue-ctan /obsolete/systems/knuth/unsupported/texware/patgen.web -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license knuth -catalogue-version 2.3 - -name patgen.i386-linux -category TLCore -revision 36790 -shortdesc i386-linux files of patgen -binfiles arch=i386-linux size=12 - bin/i386-linux/patgen - -name path -category Package -revision 22045 -shortdesc Typeset paths, making them breakable. -relocated 1 -longdesc Defines a macro \path|...|, similar to the LaTeX \verb|...|, -longdesc that sets the text in typewriter font and allows hyphen-less -longdesc breaks at punctuation characters. The set of characters to be -longdesc regarded as punctuation may be changed from the package's -longdesc default. -runfiles size=4 - RELOC/tex/generic/path/path.sty -docfiles size=73 - RELOC/doc/generic/path/path-doc.pdf - RELOC/doc/generic/path/path-doc.tex -catalogue-ctan /macros/generic/path -catalogue-date 2012-06-11 12:09:17 +0200 -catalogue-license other-free -catalogue-version 3.05 - -name pauldoc -category Package -revision 16005 -shortdesc German LaTeX package documentation. -relocated 1 -longdesc The package provides helpers for German language package -longdesc documentation. -runfiles size=1 - RELOC/tex/latex/pauldoc/pauldoc.sty -docfiles size=42 - RELOC/doc/latex/pauldoc/README - RELOC/doc/latex/pauldoc/pauldoc.pdf -srcfiles size=6 - RELOC/source/latex/pauldoc/pauldoc.dtx - RELOC/source/latex/pauldoc/pauldoc.ins -catalogue-ctan /macros/latex/contrib/pauldoc -catalogue-date 2012-05-31 18:34:59 +0200 -catalogue-license lppl -catalogue-version 0.5 - -name pawpict -category Package -revision 21629 -shortdesc Using graphics from PAW. -relocated 1 -longdesc Support for the easy inclusion of graphics made by PAW (Physics -longdesc Analysis Workstation). You need to have PAW installed on your -longdesc system to benefit from this package. -runfiles size=1 - RELOC/tex/latex/pawpict/pawpict.sty -docfiles size=1 - RELOC/doc/latex/pawpict/README -srcfiles size=10 - RELOC/source/latex/pawpict/pawpict.dtx - RELOC/source/latex/pawpict/pawpict.ins -catalogue-ctan /macros/latex/contrib/pawpict -catalogue-date 2012-05-31 18:34:59 +0200 -catalogue-license gpl -catalogue-version 1.0 - -name pax -category Package -revision 26112 -shortdesc Extract and reinsert PDF annotations with pdfTeX. -longdesc If PDF files are included using pdfTeX, PDF annotations are -longdesc stripped. The pax project offers a solution without altering -longdesc pdfTeX. A Java program (pax.jar) parses the PDF file that will -longdesc later be included. The program then writes the data of the -longdesc annotations into a file that can be read by TeX. The LaTeX -longdesc package pax extends the graphics package to support the scheme: -longdesc if a PDF file is included, the package looks for the file with -longdesc the annotation data, reads them and puts the annotations in the -longdesc right place. Project status: experimental -depend pax.ARCH -runfiles size=10 - texmf-dist/scripts/pax/pax.jar - texmf-dist/scripts/pax/pdfannotextractor.pl - texmf-dist/tex/latex/pax/pax.sty -docfiles size=2 - texmf-dist/doc/latex/pax/README -srcfiles size=25 - texmf-dist/source/latex/pax/build.xml - texmf-dist/source/latex/pax/license/LaTeX/lppl.txt - texmf-dist/source/latex/pax/license/PDFAnnotExtractor/gpl.txt - texmf-dist/source/latex/pax/src/Constants.java - texmf-dist/source/latex/pax/src/Entry.java - texmf-dist/source/latex/pax/src/EntryWriteException.java - texmf-dist/source/latex/pax/src/MANIFEST.MF - texmf-dist/source/latex/pax/src/PDFAnnotExtractor.java - texmf-dist/source/latex/pax/src/StringVisitor.java -catalogue-ctan /macros/latex/contrib/pax/pax-tds.zip -catalogue-date 2012-11-14 17:56:09 +0100 -catalogue-license other-free -catalogue-version v0.1k - -name pax.i386-linux -category Package -revision 10843 -shortdesc i386-linux files of pax -binfiles arch=i386-linux size=1 - bin/i386-linux/pdfannotextractor - -name pb-diagram -category Package -revision 15878 -shortdesc A commutative diagram package using LAMSTeX or Xy-pic fonts. -relocated 1 -runfiles size=19 - RELOC/tex/latex/pb-diagram/lamsarrow.sty - RELOC/tex/latex/pb-diagram/pb-diagram.sty - RELOC/tex/latex/pb-diagram/pb-lams.sty - RELOC/tex/latex/pb-diagram/pb-xy.sty -docfiles size=45 - RELOC/doc/latex/pb-diagram/COPYING - RELOC/doc/latex/pb-diagram/README - RELOC/doc/latex/pb-diagram/pb-examples.tex - RELOC/doc/latex/pb-diagram/pb-manual.pdf - RELOC/doc/latex/pb-diagram/pb-manual.tex -catalogue-ctan /macros/latex/contrib/pb-diagram -catalogue-date 2012-06-11 12:09:17 +0200 -catalogue-license other-free -catalogue-version 5.0 - -name pbox -category Package -revision 24807 -shortdesc A variable-width \parbox command. -relocated 1 -longdesc Defines a command \pbox{}{} which adjusts its -longdesc width to that of the enclosed text, up to the maximum width -longdesc given. The package also defines some associated length -longdesc commands. -runfiles size=1 - RELOC/tex/latex/pbox/pbox.sty -docfiles size=72 - RELOC/doc/latex/pbox/AUTHORS - RELOC/doc/latex/pbox/COPYING - RELOC/doc/latex/pbox/ChangeLog - RELOC/doc/latex/pbox/INSTALL - RELOC/doc/latex/pbox/Makefile - RELOC/doc/latex/pbox/README - RELOC/doc/latex/pbox/pbox.pdf -srcfiles size=6 - RELOC/source/latex/pbox/pbox.drv - RELOC/source/latex/pbox/pbox.dtx - RELOC/source/latex/pbox/pbox.ins -catalogue-ctan /macros/latex/contrib/pbox -catalogue-date 2011-12-10 15:11:47 +0100 -catalogue-license gpl2 -catalogue-version 1.2 - -name pbsheet -category Package -revision 24830 -shortdesc Problem sheet class. -relocated 1 -longdesc This class is designed to simplify the typesetting of problem -longdesc sheets with Mathematics and Computer Science content. It is -longdesc currently customised towards teaching in French (and the -longdesc examples are in French). -runfiles size=5 - RELOC/tex/latex/pbsheet/pbsheet.cls -docfiles size=252 - RELOC/doc/latex/pbsheet/LPPL - RELOC/doc/latex/pbsheet/README - RELOC/doc/latex/pbsheet/pbsheet.pdf - RELOC/doc/latex/pbsheet/xpl/GNUmakefile - RELOC/doc/latex/pbsheet/xpl/img/simbin.eps - RELOC/doc/latex/pbsheet/xpl/img/simbin.pdf - RELOC/doc/latex/pbsheet/xpl/pbsheet.cls - RELOC/doc/latex/pbsheet/xpl/pgm/probadis.m - RELOC/doc/latex/pbsheet/xpl/pgm/rdiscr.m - RELOC/doc/latex/pbsheet/xpl/pgm/rint.m - RELOC/doc/latex/pbsheet/xpl/pgm/simbin.m - RELOC/doc/latex/pbsheet/xpl/xpl-fr.bib - RELOC/doc/latex/pbsheet/xpl/xpl-fr.dvi - RELOC/doc/latex/pbsheet/xpl/xpl-fr.pdf - RELOC/doc/latex/pbsheet/xpl/xpl-fr.ps - RELOC/doc/latex/pbsheet/xpl/xpl-fr.tex -srcfiles size=7 - RELOC/source/latex/pbsheet/pbsheet.dtx - RELOC/source/latex/pbsheet/pbsheet.ins -catalogue-ctan /macros/latex/contrib/pbsheet -catalogue-date 2012-06-11 12:09:17 +0200 -catalogue-license lppl -catalogue-version 0.1 - -name pdf14 -category Package -revision 17583 -shortdesc Restore PDF 1.4 to a TeX live 2010 format. -relocated 1 -longdesc Starting with TeX Live 2010, the various formats, that directly -longdesc generate PDF, default to generating PDF 1.5. This is generally -longdesc a good thing, but it can lead to compatibility issues with some -longdesc older PDF viewers. This package changes the version of PDF -longdesc generated with formats (based on pdfTeX or LuaTeX in PDF mode), -longdesc back to 1.4 for documents that need to achieve maximal -longdesc compatibility with old viewers. -runfiles size=1 - RELOC/tex/latex/pdf14/pdf14.sty -docfiles size=91 - RELOC/doc/latex/pdf14/README - RELOC/doc/latex/pdf14/pdf14.pdf - RELOC/doc/latex/pdf14/test-pdf14.tex -srcfiles size=3 - RELOC/source/latex/pdf14/Makefile - RELOC/source/latex/pdf14/pdf14.dtx -catalogue-ctan /macros/latex/contrib/pdf14 -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.1 - -name pdfbook2 -category Package -revision 37537 -shortdesc Create booklets from PDF files. -longdesc This python program creates print-ready PDF files from some -longdesc input PDF files for booklet printing. The resulting files need -longdesc to be printed in landscape/long edge double sided printing. The -longdesc default paper format depends on the locale and is chosen by -longdesc pdfjam. It can be chosen using the --paper option. Before the -longdesc pdf is composed, the input file is cropped to the relevant area -longdesc in order to discard unnecessary white spaces. In this process, -longdesc all pages are cropped to the same dimensions. Extra margins can -longdesc be defined at the edges of the booklet and in the middle where -longdesc the binding occurs. The output is written to INPUT-book.pdf. -longdesc Existing files will be overwritten. All input files are -longdesc processed seperately. -depend pdfbook2.ARCH -runfiles size=3 - texmf-dist/scripts/pdfbook2/pdfbook2 -docfiles size=5 - texmf-dist/doc/man/man1/pdfbook2.1 - texmf-dist/doc/man/man1/pdfbook2.man1.pdf - texmf-dist/doc/support/pdfbook2/README -catalogue-also pdfbook -catalogue-ctan /support/pdfbook2 -catalogue-date 2015-06-04 20:40:46 +0200 -catalogue-license gpl3 -catalogue-topics pdfprocess -catalogue-version 1.2 - -name pdfbook2.i386-linux -category Package -revision 37537 -shortdesc i386-linux files of pdfbook2 -binfiles arch=i386-linux size=1 - bin/i386-linux/pdfbook2 - -name pdfcomment -category Package -revision 27844 -shortdesc A user-friendly interface to pdf annotations. -relocated 1 -longdesc For a long time pdfLaTeX has offered the command \pdfannot for -longdesc inserting arbitrary PDF annotations. However, the command is -longdesc presented in a form where additional knowledge of the -longdesc definition of the PDF format is indispensable. This package is -longdesc an answer to the - occasional - questions in newsgroups, about -longdesc how one could use the comment function of Adobe Reader. At -longdesc least for the writer of LaTeX code, the package offers a -longdesc convenient and user-friendly means of using \pdfannot to -longdesc provide comments in PDF files. Since version v1.1, -longdesc pdfcomment.sty also supports LaTeX - dvips - ps2pdf, LaTeX - -longdesc dvipdfmx, and XeLaTeX. Unfortunately, support of PDF -longdesc annotations by PDF viewers is sparse to nonexistent. The -longdesc reference viewer for the development of this package is Adobe -longdesc Reader. -runfiles size=24 - RELOC/tex/latex/pdfcomment/pdfcomment.sty -docfiles size=357 - RELOC/doc/latex/pdfcomment/CHANGES - RELOC/doc/latex/pdfcomment/INSTALL - RELOC/doc/latex/pdfcomment/README - RELOC/doc/latex/pdfcomment/example.pdf - RELOC/doc/latex/pdfcomment/example.tex - RELOC/doc/latex/pdfcomment/example_latex_dvipdfmx.pdf - RELOC/doc/latex/pdfcomment/example_latex_dvipdfmx.tex - RELOC/doc/latex/pdfcomment/example_latex_dvips_ps2pdf.pdf - RELOC/doc/latex/pdfcomment/example_latex_dvips_ps2pdf.tex - RELOC/doc/latex/pdfcomment/example_math_markup.pdf - RELOC/doc/latex/pdfcomment/example_math_markup.tex - RELOC/doc/latex/pdfcomment/example_xelatex.pdf - RELOC/doc/latex/pdfcomment/example_xelatex.tex - RELOC/doc/latex/pdfcomment/manifest.txt - RELOC/doc/latex/pdfcomment/pdfcomment.pdf - RELOC/doc/latex/pdfcomment/pdfcomment.tex - RELOC/doc/latex/pdfcomment/pdfcomment_de.pdf - RELOC/doc/latex/pdfcomment/pdfcomment_de.tex -catalogue-ctan /macros/latex/contrib/pdfcomment -catalogue-date 2012-11-14 18:06:01 +0100 -catalogue-license lppl1.3 -catalogue-version v2.3a - -name pdfcprot -category Package -revision 18735 -shortdesc Activating and setting of character protruding using pdflatex. -relocated 1 -longdesc This package provides an easy interface to adjust the character -longdesc protrusion for different fonts and choosing the right -longdesc adjustment automatically depending on the font. The package is -longdesc largely superseded by microtype. -runfiles size=14 - RELOC/tex/latex/pdfcprot/pdfcprot.sty - RELOC/tex/latex/pdfcprot/pplmnOT1.cpa - RELOC/tex/latex/pdfcprot/pplmnOT2.cpa - RELOC/tex/latex/pdfcprot/pplmnT1.cpa - RELOC/tex/latex/pdfcprot/pplmnT2A.cpa - RELOC/tex/latex/pdfcprot/pplmnTS1.cpa -docfiles size=109 - RELOC/doc/latex/pdfcprot/00CONTEN - RELOC/doc/latex/pdfcprot/00README - RELOC/doc/latex/pdfcprot/INSTALL.txt - RELOC/doc/latex/pdfcprot/LEGAL.txt - RELOC/doc/latex/pdfcprot/Makefile.unx - RELOC/doc/latex/pdfcprot/README.txt - RELOC/doc/latex/pdfcprot/TODO - RELOC/doc/latex/pdfcprot/pdfcprot.pdf -srcfiles size=23 - RELOC/source/latex/pdfcprot/pdfcprot.dtx - RELOC/source/latex/pdfcprot/pdfcprot.ins -catalogue-ctan /macros/latex/contrib/pdfcprot -catalogue-date 2012-06-15 20:54:24 +0200 -catalogue-license lppl -catalogue-version 1.7a - -name pdfcrop -category Package -revision 29348 -shortdesc Crop PDF graphics. -longdesc A Perl script that can either trim pages of any whitespace -longdesc border, or trim them of a fixed border. -depend pdfcrop.ARCH -runfiles size=10 - texmf-dist/scripts/pdfcrop/pdfcrop.pl -docfiles size=3 - texmf-dist/doc/support/pdfcrop/README -catalogue-ctan /support/pdfcrop/pdfcrop.pl -catalogue-date 2012-10-25 10:45:27 +0200 -catalogue-license lppl -catalogue-version 1.37 - -name pdfcrop.i386-linux -category Package -revision 14387 -shortdesc i386-linux files of pdfcrop -binfiles arch=i386-linux size=2 - bin/i386-linux/pdfcrop - bin/i386-linux/rpdfcrop - -name pdfjam -category Package -revision 29752 -shortdesc Shell scripts interfacing to pdfpages. -longdesc This is a collection of shell scripts which provide an -longdesc interface to the pdfpages LaTeX package. They do such jobs as -longdesc selecting pages, concatenating files, doing n-up formatting, -longdesc and so on. -depend pdfjam.ARCH -runfiles size=21 - texmf-dist/scripts/pdfjam/pdf180 - texmf-dist/scripts/pdfjam/pdf270 - texmf-dist/scripts/pdfjam/pdf90 - texmf-dist/scripts/pdfjam/pdfbook - texmf-dist/scripts/pdfjam/pdfflip - texmf-dist/scripts/pdfjam/pdfjam - texmf-dist/scripts/pdfjam/pdfjam-pocketmod - texmf-dist/scripts/pdfjam/pdfjam-slides3up - texmf-dist/scripts/pdfjam/pdfjam-slides6up - texmf-dist/scripts/pdfjam/pdfjoin - texmf-dist/scripts/pdfjam/pdfnup - texmf-dist/scripts/pdfjam/pdfpun -docfiles size=90 - texmf-dist/doc/man/man1/pdf180.1 - texmf-dist/doc/man/man1/pdf180.man1.pdf - texmf-dist/doc/man/man1/pdf270.1 - texmf-dist/doc/man/man1/pdf270.man1.pdf - texmf-dist/doc/man/man1/pdf90.1 - texmf-dist/doc/man/man1/pdf90.man1.pdf - texmf-dist/doc/man/man1/pdfbook.1 - texmf-dist/doc/man/man1/pdfbook.man1.pdf - texmf-dist/doc/man/man1/pdfflip.1 - texmf-dist/doc/man/man1/pdfflip.man1.pdf - texmf-dist/doc/man/man1/pdfjam-pocketmod.1 - texmf-dist/doc/man/man1/pdfjam-pocketmod.man1.pdf - texmf-dist/doc/man/man1/pdfjam-slides3up.1 - texmf-dist/doc/man/man1/pdfjam-slides3up.man1.pdf - texmf-dist/doc/man/man1/pdfjam-slides6up.1 - texmf-dist/doc/man/man1/pdfjam-slides6up.man1.pdf - texmf-dist/doc/man/man1/pdfjam.1 - texmf-dist/doc/man/man1/pdfjam.man1.pdf - texmf-dist/doc/man/man1/pdfjoin.1 - texmf-dist/doc/man/man1/pdfjoin.man1.pdf - texmf-dist/doc/man/man1/pdfnup.1 - texmf-dist/doc/man/man1/pdfnup.man1.pdf - texmf-dist/doc/man/man1/pdfpun.1 - texmf-dist/doc/man/man1/pdfpun.man1.pdf - texmf-dist/doc/support/pdfjam/COPYING - texmf-dist/doc/support/pdfjam/PDFjam-README.html - texmf-dist/doc/support/pdfjam/VERSION - texmf-dist/doc/support/pdfjam/pdfdroplets.png - texmf-dist/doc/support/pdfjam/pdfjam.conf - texmf-dist/doc/support/pdfjam/tests.zip -catalogue-ctan /support/pdfjam -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license gpl2 -catalogue-version 2.02 - -name pdfjam.i386-linux -category Package -revision 17868 -shortdesc i386-linux files of pdfjam -binfiles arch=i386-linux size=12 - bin/i386-linux/pdf180 - bin/i386-linux/pdf270 - bin/i386-linux/pdf90 - bin/i386-linux/pdfbook - bin/i386-linux/pdfflip - bin/i386-linux/pdfjam - bin/i386-linux/pdfjam-pocketmod - bin/i386-linux/pdfjam-slides3up - bin/i386-linux/pdfjam-slides6up - bin/i386-linux/pdfjoin - bin/i386-linux/pdfnup - bin/i386-linux/pdfpun - -name pdfmarginpar -category Package -revision 23492 -shortdesc Generate marginpar-equivalent PDF annotations. -relocated 1 -longdesc The package provides the \pdfmarginpar command which is similar -longdesc in spirit to \marginpar. However, it creates PDF annotations -longdesc which may be viewed with Adobe Reader in place of marginal -longdesc texts. Small icons indicate the in-text position where the -longdesc message originates, popups provide the messages themselves. -longdesc Thus bugfixes and other such communications are clearly visible -longdesc together when viewing the document, while the document itself -longdesc is not obscured. -runfiles size=2 - RELOC/tex/latex/pdfmarginpar/pdfmarginpar.sty -docfiles size=136 - RELOC/doc/latex/pdfmarginpar/README - RELOC/doc/latex/pdfmarginpar/pdfmarginpar.pdf - RELOC/doc/latex/pdfmarginpar/pdfmarginpar.tex - RELOC/doc/latex/pdfmarginpar/pdfmarginparexample.pdf - RELOC/doc/latex/pdfmarginpar/pdfmarginparexample.png - RELOC/doc/latex/pdfmarginpar/pdfmarginparexample.tex - RELOC/doc/latex/pdfmarginpar/pgfmanual-en-macros.tex - RELOC/doc/latex/pdfmarginpar/pgfplots-macros.tex -catalogue-ctan /macros/latex/contrib/pdfmarginpar -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license gpl -catalogue-version 0.92 - -name pdfpagediff -category Package -revision 37946 -shortdesc Find difference between two PDF's -relocated 1 -longdesc Find difference between two PDF's -runfiles size=2 - RELOC/tex/latex/pdfpagediff/pdfpagediff.sty -docfiles size=294 - RELOC/doc/latex/pdfpagediff/README - RELOC/doc/latex/pdfpagediff/doc/Makefile - RELOC/doc/latex/pdfpagediff/doc/ar1.png - RELOC/doc/latex/pdfpagediff/doc/ar2.png - RELOC/doc/latex/pdfpagediff/doc/ar3.png - RELOC/doc/latex/pdfpagediff/doc/pdfpagediff-doc.pdf - RELOC/doc/latex/pdfpagediff/doc/pdfpagediff-doc.sty - RELOC/doc/latex/pdfpagediff/doc/pdfpagediff-doc.tex - RELOC/doc/latex/pdfpagediff/example/file1.pdf - RELOC/doc/latex/pdfpagediff/example/file2.pdf - RELOC/doc/latex/pdfpagediff/example/ltest.pdf - RELOC/doc/latex/pdfpagediff/example/ltest.tex - RELOC/doc/latex/pdfpagediff/manifest.txt -catalogue-ctan /macros/latex/contrib/pdfpagediff -catalogue-date 2015-07-24 15:20:52 +0200 -catalogue-license lppl1 -catalogue-topics pdf-view pdfprocess -catalogue-version 1.4 - -name pdfpages -category Package -revision 38140 -shortdesc Include PDF documents in LaTeX -relocated 1 -longdesc This package simplifies the inclusion of external multi-page -longdesc PDF documents in LaTeX documents. Pages may be freely selected -longdesc and similar to psnup it is possible to put several logical -longdesc pages onto each sheet of paper. Furthermore a lot of hypertext -longdesc features like hyperlinks and article threads are provided. The -longdesc package supports pdfTeX (pdfLaTeX) and VTeX. With VTeX it is -longdesc even possible to use this package to insert PostScript files, -longdesc in addition to PDF files. -depend eso-pic -runfiles size=24 - RELOC/tex/latex/pdfpages/pdfpages.sty - RELOC/tex/latex/pdfpages/ppdvipdfmx.def - RELOC/tex/latex/pdfpages/ppdvips.def - RELOC/tex/latex/pdfpages/ppluatex.def - RELOC/tex/latex/pdfpages/ppnull.def - RELOC/tex/latex/pdfpages/pppdftex.def - RELOC/tex/latex/pdfpages/ppvtex.def - RELOC/tex/latex/pdfpages/ppxetex.def -docfiles size=87 - RELOC/doc/latex/pdfpages/dummy-l.pdf - RELOC/doc/latex/pdfpages/dummy.pdf - RELOC/doc/latex/pdfpages/pdf-ex.tex - RELOC/doc/latex/pdfpages/pdf-hyp.tex - RELOC/doc/latex/pdfpages/pdf-toc.tex - RELOC/doc/latex/pdfpages/pdfpages.pdf -srcfiles size=43 - RELOC/source/latex/pdfpages/README - RELOC/source/latex/pdfpages/pdfpages.dtx - RELOC/source/latex/pdfpages/pdfpages.ins -catalogue-ctan /macros/latex/contrib/pdfpages -catalogue-date 2015-08-16 21:36:26 +0200 -catalogue-license lppl1.3 -catalogue-topics graphics-incl -catalogue-version 0.5c - -name pdfscreen -category Package -revision 27510 -shortdesc Support screen-based document design. -relocated 1 -longdesc An extension of the hyperref package to provide a screen-based -longdesc document design. This package helps to generate pdf documents -longdesc that are readable on screen and will fit the screen's aspect -longdesc ratio. Also it can be used with various options to produce -longdesc regular print versions of the same document without any extra -longdesc effort. -runfiles size=61 - RELOC/tex/latex/pdfscreen/but.pdf - RELOC/tex/latex/pdfscreen/button.pdf - RELOC/tex/latex/pdfscreen/left.pdf - RELOC/tex/latex/pdfscreen/overlay.pdf - RELOC/tex/latex/pdfscreen/overlay0.pdf - RELOC/tex/latex/pdfscreen/overlay1.pdf - RELOC/tex/latex/pdfscreen/overlay10.pdf - RELOC/tex/latex/pdfscreen/overlay2.pdf - RELOC/tex/latex/pdfscreen/overlay3.pdf - RELOC/tex/latex/pdfscreen/overlay4.pdf - RELOC/tex/latex/pdfscreen/overlay5.pdf - RELOC/tex/latex/pdfscreen/overlay6.pdf - RELOC/tex/latex/pdfscreen/overlay7.pdf - RELOC/tex/latex/pdfscreen/overlay8.pdf - RELOC/tex/latex/pdfscreen/overlay9.pdf - RELOC/tex/latex/pdfscreen/pdfscreen.sty - RELOC/tex/latex/pdfscreen/right.pdf -docfiles size=216 - RELOC/doc/latex/pdfscreen/logo.pdf - RELOC/doc/latex/pdfscreen/manual-print.pdf - RELOC/doc/latex/pdfscreen/manual-screen.pdf - RELOC/doc/latex/pdfscreen/manual.tex - RELOC/doc/latex/pdfscreen/nopanel.pdf - RELOC/doc/latex/pdfscreen/pdfscreen.cfg.specimen - RELOC/doc/latex/pdfscreen/portrait.pdf - RELOC/doc/latex/pdfscreen/print.pdf - RELOC/doc/latex/pdfscreen/slide.pdf - RELOC/doc/latex/pdfscreen/slide.tex - RELOC/doc/latex/pdfscreen/square.pdf - RELOC/doc/latex/pdfscreen/tex.png - RELOC/doc/latex/pdfscreen/widepanel.pdf -catalogue-ctan /macros/latex/contrib/pdfscreen -catalogue-date 2012-07-18 20:44:29 +0200 -catalogue-license lppl -catalogue-version 1.5 - -name pdfslide -category Package -revision 15878 -shortdesc Presentation slides using pdftex. -relocated 1 -longdesc This is a package for use with pdftex, to make nice -longdesc presentation slides. Its aims are: to devise a method for -longdesc easier technical presentation; to help the mix of mathematical -longdesc formulae with text and graphics which other present day -longdesc document processing tools fail to accomplish; to exploit the -longdesc platform independence of TeX so that presentation documents -longdesc become portable; and to offer the freedom and possibilities of -longdesc using various backgrounds and other embellishments that a user -longdesc can imagine to have in as presentation. The package can make -longdesc use of the facilities of the PPower4 post-processor. -runfiles size=25 - RELOC/tex/latex/pdfslide/bg.jpg - RELOC/tex/latex/pdfslide/d12.jpg - RELOC/tex/latex/pdfslide/metablue.pdf - RELOC/tex/latex/pdfslide/metagray.pdf - RELOC/tex/latex/pdfslide/metagreen.pdf - RELOC/tex/latex/pdfslide/metalgray.pdf - RELOC/tex/latex/pdfslide/pdfslide.cfg - RELOC/tex/latex/pdfslide/pdfslide.sty - RELOC/tex/latex/pdfslide/slide.clo -docfiles size=68 - RELOC/doc/latex/pdfslide/demo.pdf - RELOC/doc/latex/pdfslide/manual.tex - RELOC/doc/latex/pdfslide/meta.mp - RELOC/doc/latex/pdfslide/mpgraph.pdf -catalogue-ctan /macros/latex/contrib/pdfslide -catalogue-date 2012-07-18 20:44:29 +0200 -catalogue-license lppl - -name pdfsync -category Package -revision 20373 -shortdesc Provide links between source and PDF. -relocated 1 -longdesc The package runs with pdfTeX or XeTeX, and creates an auxiliary -longdesc file with geometrical information to permit references back and -longdesc forth between source and PDF, assuming a conforming editor and -longdesc PDF viewer. -runfiles size=3 - RELOC/tex/latex/pdfsync/pdfsync.sty -docfiles size=66 - RELOC/doc/latex/pdfsync/README - RELOC/doc/latex/pdfsync/pdfsync-doc.pdf - RELOC/doc/latex/pdfsync/pdfsync-doc.tex -catalogue-ctan /macros/latex/contrib/pdfsync -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl - -name pdftex-def -category Package -revision 22653 -shortdesc Colour and Graphics support for PDFTeX. -relocated 1 -longdesc The file pdftex.def provides device-specific definitions for -longdesc colour and graphics support when running pdf(La)TeX. -runfiles size=14 - RELOC/tex/latex/pdftex-def/pdftex.def -catalogue-ctan /macros/latex/contrib/pdftex-def/pdftex.def -catalogue-date 2013-09-22 01:11:41 +0200 -catalogue-license lppl1.3 -catalogue-version 0.06d - -name pdftex -category TLCore -revision 38314 -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 designed -longdesc around use of pdfTeX (though it is now migrating towards -longdesc LuaTeX). -depend kpathsea -depend pdftex.ARCH -depend pdftex-def -execute AddFormat name=pdftex engine=pdftex patterns=language.def options="-translate-file=cp227.tcx *pdfetex.ini" -execute AddFormat name=etex engine=pdftex patterns=language.def options="-translate-file=cp227.tcx *etex.ini" -execute AddFormat name=pdfetex engine=pdftex patterns=language.def options="-translate-file=cp227.tcx *pdfetex.ini" -execute addMap dummy-space.map -runfiles size=1371 - texmf-dist/fonts/map/dvips/dummy-space/dummy-space.map - texmf-dist/fonts/map/pdftex/updmap/pdftex.map - texmf-dist/fonts/map/pdftex/updmap/pdftex_dl14.map - texmf-dist/fonts/map/pdftex/updmap/pdftex_ndl14.map - texmf-dist/fonts/tfm/public/pdftex/dummy-space.tfm - texmf-dist/fonts/type1/public/pdftex/dummy-space.pfb - texmf-dist/scripts/simpdftex/simpdftex - texmf-dist/tex/generic/config/pdftex-dvi.tex - texmf-dist/tex/generic/config/pdftexconfig.tex - texmf-dist/tex/generic/pdftex/glyphtounicode.tex - texmf-dist/tex/generic/pdftex/pdfcolor.tex -docfiles size=1170 - texmf-dist/doc/man/man1/pdfetex.1 - texmf-dist/doc/man/man1/pdfetex.man1.pdf - texmf-dist/doc/man/man1/pdftex.1 - texmf-dist/doc/man/man1/pdftex.man1.pdf - texmf-dist/doc/pdftex/01-fake-interword-space/fake-interword-space.tex - texmf-dist/doc/pdftex/NEWS - texmf-dist/doc/pdftex/README - texmf-dist/doc/pdftex/manual/ChangeLog - texmf-dist/doc/pdftex/manual/Makefile - texmf-dist/doc/pdftex/manual/README - texmf-dist/doc/pdftex/manual/makefiles.cmd - texmf-dist/doc/pdftex/manual/pdftex-a.pdf - texmf-dist/doc/pdftex/manual/pdftex-i.tex - texmf-dist/doc/pdftex/manual/pdftex-l.pdf - texmf-dist/doc/pdftex/manual/pdftex-s.pdf - texmf-dist/doc/pdftex/manual/pdftex-syntax.txt - texmf-dist/doc/pdftex/manual/pdftex-t.tex - texmf-dist/doc/pdftex/manual/pdftex-t.txt - texmf-dist/doc/pdftex/manual/pdftex-w.tex - texmf-dist/doc/pdftex/manual/samplepdf/cmr10.103 - texmf-dist/doc/pdftex/manual/samplepdf/obj.dat - texmf-dist/doc/pdftex/manual/samplepdf/pdfcolor.tex - texmf-dist/doc/pdftex/manual/samplepdf/pic.eps - texmf-dist/doc/pdftex/manual/samplepdf/pic.jpg - texmf-dist/doc/pdftex/manual/samplepdf/pic.mps - texmf-dist/doc/pdftex/manual/samplepdf/pic.pdf - texmf-dist/doc/pdftex/manual/samplepdf/pic.png - texmf-dist/doc/pdftex/manual/samplepdf/pic16.png - texmf-dist/doc/pdftex/manual/samplepdf/rgb.icc - texmf-dist/doc/pdftex/manual/samplepdf/samplepdf.0 - texmf-dist/doc/pdftex/manual/samplepdf/samplepdf.1 - texmf-dist/doc/pdftex/manual/samplepdf/samplepdf.tex - texmf-dist/doc/pdftex/manual/samplepdf/supp-mis.tex - texmf-dist/doc/pdftex/manual/samplepdf/supp-pdf.tex - texmf-dist/doc/pdftex/manual/samplepdf/tmp.pdf - texmf-dist/doc/pdftex/manual/syntaxform.awk - texmf-dist/doc/pdftex/pdftex-pdfkeys/Makefile - texmf-dist/doc/pdftex/pdftex-pdfkeys/fdl.tex - texmf-dist/doc/pdftex/pdftex-pdfkeys/pdftex-pdfkeys.bbl - texmf-dist/doc/pdftex/pdftex-pdfkeys/pdftex-pdfkeys.pdf - texmf-dist/doc/pdftex/pdftex-pdfkeys/pdftex-pdfkeys.tex - texmf-dist/doc/pdftex/thanh/ext/abbr.tex - texmf-dist/doc/pdftex/thanh/ext/efcode.tex - texmf-dist/doc/pdftex/thanh/ext/il2.etx - texmf-dist/doc/pdftex/thanh/ext/il2.mtx - texmf-dist/doc/pdftex/thanh/ext/il2protcode.tex - texmf-dist/doc/pdftex/thanh/ext/mktextfm - texmf-dist/doc/pdftex/thanh/ext/mktextfm.ext - texmf-dist/doc/pdftex/thanh/ext/mktfm8z - texmf-dist/doc/pdftex/thanh/ext/protcode.tex - texmf-dist/doc/pdftex/thanh/ext/ufntinst.sty -catalogue-date 2015-08-03 05:43:12 +0200 -catalogue-license gpl -catalogue-topics engine - -name pdftex.i386-linux -category TLCore -revision 36790 -shortdesc i386-linux files of pdftex -binfiles arch=i386-linux size=604 - bin/i386-linux/etex - bin/i386-linux/pdfetex - bin/i386-linux/pdftex - bin/i386-linux/simpdftex - -name pdftools -category TLCore -revision 37078 -catalogue xpdfopen -shortdesc PDF-related utilities, including PostScript-to-PDF conversion -longdesc The command-line programs pdfopen and pdfclose allow you to -longdesc control the X Window System version of Adobe's Acrobat Reader -longdesc from the command line or from within a (shell) script. The -longdesc programs work with Acrobat Reader 5, 7, 8 and 9 for Linux, xpdf -longdesc and evince. This version derives from one written by Fabrice -longdesc Popineau for Microsoft operating systems. -depend pdftools.ARCH -runfiles size=1 - texmf-dist/scripts/texlive/e2pall.pl -docfiles size=17 - texmf-dist/doc/man/man1/e2pall.1 - texmf-dist/doc/man/man1/e2pall.man1.pdf - texmf-dist/doc/man/man1/pdfclose.1 - texmf-dist/doc/man/man1/pdfclose.man1.pdf - texmf-dist/doc/man/man1/pdfopen.1 - texmf-dist/doc/man/man1/pdfopen.man1.pdf - texmf-dist/doc/man/man1/pdftosrc.1 - texmf-dist/doc/man/man1/pdftosrc.man1.pdf -catalogue-ctan /support/xpdfopen -catalogue-date 2014-05-24 18:22:24 +0200 -catalogue-license pd -catalogue-version 0.86 - -name pdftools.i386-linux -category TLCore -revision 36790 -shortdesc i386-linux files of pdftools -binfiles arch=i386-linux size=300 - bin/i386-linux/e2pall - bin/i386-linux/pdfatfi - bin/i386-linux/pdfclose - bin/i386-linux/pdfopen - bin/i386-linux/pdftosrc - -name pdf-trans -category Package -revision 32809 -shortdesc A set of macros for various transformations of TeX boxes. -relocated 1 -longdesc pdf-trans is a set of macros offering various transformations -longdesc of TeX boxes (based on plain and pdfeTeX primitives). It was -longdesc initially inspired by trans.tex, remade to work with pdfTeX. -runfiles size=12 - RELOC/tex/generic/pdf-trans/pdf-trans.tex -docfiles size=37 - RELOC/doc/generic/pdf-trans/example.pdf - RELOC/doc/generic/pdf-trans/example.tex -catalogue-ctan /macros/generic/pdf-trans -catalogue-date 2014-01-28 18:35:23 +0100 -catalogue-license pd -catalogue-version 2.4 - -name pdftricks2 -category Package -revision 31016 -shortdesc Use pstricks in pdfTeX. -relocated 1 -longdesc The package provides the means of processing documents (that -longdesc contain pstricks graphics specifications. The package is -longdesc inspired by pdftricks -runfiles size=6 - RELOC/tex/latex/pdftricks2/pdftricks2.sty -docfiles size=22 - RELOC/doc/latex/pdftricks2/README - RELOC/doc/latex/pdftricks2/pdftricks2-doc.pdf - RELOC/doc/latex/pdftricks2/pdftricks2-doc.tex -catalogue-ctan /graphics/pdftricks2 -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license gpl2 -catalogue-version 1.01 - -name pdftricks -category Package -revision 15878 -shortdesc Support for pstricks in pdfTeX. -relocated 1 -longdesc The PSTricks macros cannot be used (directly) with pdfTeX, -longdesc since pstricks uses PostScript arithmetic, which isn't part of -longdesc PDF. This package circumvents this limitation so that the -longdesc extensive facilities offered by the powerful PSTricks package -longdesc can be made use of in a pdfTeX document. This is done using the -longdesc shell escape function available in current TeX implementations. -longdesc The package may also be used in support of other 'PostScript- -longdesc output-only' packages, such as PSfrag. For alternatives, users -longdesc may care to review the discussion in the PSTricks online -longdesc documentation. -runfiles size=4 - RELOC/tex/latex/pdftricks/pdftricks.sty -docfiles size=107 - RELOC/doc/latex/pdftricks/makefile - RELOC/doc/latex/pdftricks/manual.pdf - RELOC/doc/latex/pdftricks/pst2pdf - RELOC/doc/latex/pdftricks/test.pdf - RELOC/doc/latex/pdftricks/test.tex -catalogue-ctan /graphics/pdftricks -catalogue-date 2013-12-17 14:12:28 +0100 -catalogue-license gpl -catalogue-version 1.16 - -name pdfwin -category Package -revision 15878 -relocated 1 -runfiles size=20 - RELOC/tex/latex/pdfwin/pdfwin.cfg - RELOC/tex/latex/pdfwin/pdfwin.sty -docfiles size=130 - RELOC/doc/latex/pdfwin/BucResampling.pdf - RELOC/doc/latex/pdfwin/BucSystem1.pdf - RELOC/doc/latex/pdfwin/BucSystem2.pdf - RELOC/doc/latex/pdfwin/BucSystem3.pdf - RELOC/doc/latex/pdfwin/BucSystem4.pdf - RELOC/doc/latex/pdfwin/BucSystem5.pdf - RELOC/doc/latex/pdfwin/BucSystem6.pdf - RELOC/doc/latex/pdfwin/Bucuresti2003.tex - RELOC/doc/latex/pdfwin/JWGU-Logo.png - RELOC/doc/latex/pdfwin/Thumbs.db - RELOC/doc/latex/pdfwin/marble.png - RELOC/doc/latex/pdfwin/normprot.tex - RELOC/doc/latex/pdfwin/shortvec.tex - -name pdfx -category Package -revision 37386 -shortdesc PDF/X-1a and PDF/A-1b support for pdfTeX. -relocated 1 -longdesc The package helps LaTeX users to create PDF/X-1a and PFD/A-1b -longdesc compliant pdf documents with pdfTeX. -runfiles size=292 - RELOC/tex/latex/pdfx/8bit.def - RELOC/tex/latex/pdfx/ICC_LICENSE.txt - RELOC/tex/latex/pdfx/coated_FOGRA39L_argl.icc - RELOC/tex/latex/pdfx/glyphtounicode-cmr.tex - RELOC/tex/latex/pdfx/pdfa.xmp - RELOC/tex/latex/pdfx/pdfe.xmp - RELOC/tex/latex/pdfx/pdfvt.xmp - RELOC/tex/latex/pdfx/pdfx.sty - RELOC/tex/latex/pdfx/pdfx.xmp - RELOC/tex/latex/pdfx/sRGB_IEC61966-2-1_black_scaled.icc -docfiles size=94 - RELOC/doc/latex/pdfx/README - RELOC/doc/latex/pdfx/pdfx.pdf - RELOC/doc/latex/pdfx/sample.pdf - RELOC/doc/latex/pdfx/sample.tex - RELOC/doc/latex/pdfx/sample.xmpdata - RELOC/doc/latex/pdfx/small2e-pdfx.pdf - RELOC/doc/latex/pdfx/small2e-pdfx.tex - RELOC/doc/latex/pdfx/small2e-pdfx.xmpdata -srcfiles size=21 - RELOC/source/latex/pdfx/Makefile - RELOC/source/latex/pdfx/README - RELOC/source/latex/pdfx/manifest.txt - RELOC/source/latex/pdfx/pdfx.dtx - RELOC/source/latex/pdfx/pdfx.ins - RELOC/source/latex/pdfx/rvdtx.sty -catalogue-ctan /macros/latex/contrib/pdfx -catalogue-date 2015-05-13 18:15:09 +0200 -catalogue-license lppl -catalogue-version 1.5.3 - -name pecha -category Package -revision 15878 -shortdesc Print Tibetan text in the classic pecha layout style. -relocated 1 -longdesc The pecha class provides an environment for writing Tibetan on -longdesc LaTeX2e in the traditional Tibetan Pecha layout used for -longdesc spiritual or philosophical texts, using the cTib4TeX package by -longdesc Oliver Corff. It provides features like headers in different -longdesc languages, page numbering in Tibetan and more. -runfiles size=11 - RELOC/tex/latex/pecha/ctibmantra.sty - RELOC/tex/latex/pecha/pecha.cls -docfiles size=31 - RELOC/doc/latex/pecha/CHANGES - RELOC/doc/latex/pecha/COPYING - RELOC/doc/latex/pecha/README - RELOC/doc/latex/pecha/example.pdf - RELOC/doc/latex/pecha/example.tex - RELOC/doc/latex/pecha/pecha_docu.pdf - RELOC/doc/latex/pecha/pecha_docu.tex -catalogue-ctan /language/tibetan/pecha -catalogue-date 2012-07-18 20:44:29 +0200 -catalogue-license gpl -catalogue-version 0.1 - -name pedigree-perl -category Package -revision 31990 -shortdesc Generate TeX pedigree files from CSV files. -longdesc This program generates TeX commands to typeset pedigrees -- -longdesc either TeX fragments or full LaTeX files, to be processed by -longdesc the authors' pst-pdgr package. The program has support for -longdesc multilanguage pedigrees (at the present moment the English and -longdesc Russian languages are supported). -depend pedigree-perl.ARCH -runfiles size=28 - texmf-dist/scripts/pedigree-perl/Pedigree.pm - texmf-dist/scripts/pedigree-perl/Pedigree/AbortionNode.pm - texmf-dist/scripts/pedigree-perl/Pedigree/Area.pm - texmf-dist/scripts/pedigree-perl/Pedigree/ChildlessNode.pm - texmf-dist/scripts/pedigree-perl/Pedigree/Language.pm - texmf-dist/scripts/pedigree-perl/Pedigree/MarriageNode.pm - texmf-dist/scripts/pedigree-perl/Pedigree/Node.pm - texmf-dist/scripts/pedigree-perl/Pedigree/Parser.pm - texmf-dist/scripts/pedigree-perl/Pedigree/PersonNode.pm - texmf-dist/scripts/pedigree-perl/Pedigree/TwinsNode.pm - texmf-dist/scripts/pedigree-perl/pedigree.pl -docfiles size=465 - texmf-dist/doc/man/man1/pedigree.1 - texmf-dist/doc/man/man1/pedigree.man1.pdf - texmf-dist/doc/support/pedigree-perl/LICENSE - texmf-dist/doc/support/pedigree-perl/Makefile - texmf-dist/doc/support/pedigree-perl/NEWS - texmf-dist/doc/support/pedigree-perl/Pedigree.3 - texmf-dist/doc/support/pedigree-perl/Pedigree/AbortionNode.3 - texmf-dist/doc/support/pedigree-perl/Pedigree/Area.3 - texmf-dist/doc/support/pedigree-perl/Pedigree/ChildlessNode.3 - texmf-dist/doc/support/pedigree-perl/Pedigree/Language.3 - texmf-dist/doc/support/pedigree-perl/Pedigree/Makefile - texmf-dist/doc/support/pedigree-perl/Pedigree/MarriageNode.3 - texmf-dist/doc/support/pedigree-perl/Pedigree/Node.3 - texmf-dist/doc/support/pedigree-perl/Pedigree/Parser.3 - texmf-dist/doc/support/pedigree-perl/Pedigree/PersonNode.3 - texmf-dist/doc/support/pedigree-perl/Pedigree/TwinsNode.3 - texmf-dist/doc/support/pedigree-perl/README - texmf-dist/doc/support/pedigree-perl/doc/Makefile - texmf-dist/doc/support/pedigree-perl/doc/abortions.tex - texmf-dist/doc/support/pedigree-perl/doc/english.tex - texmf-dist/doc/support/pedigree-perl/doc/english1.tex - texmf-dist/doc/support/pedigree-perl/doc/pedigree.bib - texmf-dist/doc/support/pedigree-perl/doc/pedigree.pdf - texmf-dist/doc/support/pedigree-perl/doc/pedigree.ps - texmf-dist/doc/support/pedigree-perl/doc/pedigree.tex - texmf-dist/doc/support/pedigree-perl/doc/russian.tex - texmf-dist/doc/support/pedigree-perl/examples/abortions.csv - texmf-dist/doc/support/pedigree-perl/examples/badsort.csv - texmf-dist/doc/support/pedigree-perl/examples/childlessness.csv - texmf-dist/doc/support/pedigree-perl/examples/consanguinic.csv - texmf-dist/doc/support/pedigree-perl/examples/english.cfg - texmf-dist/doc/support/pedigree-perl/examples/english.csv - texmf-dist/doc/support/pedigree-perl/examples/english1.cfg - texmf-dist/doc/support/pedigree-perl/examples/english_short.cfg - texmf-dist/doc/support/pedigree-perl/examples/pedigree.cfg - texmf-dist/doc/support/pedigree-perl/examples/russian.cfg - texmf-dist/doc/support/pedigree-perl/examples/russian.csv - texmf-dist/doc/support/pedigree-perl/examples/sort1.csv - texmf-dist/doc/support/pedigree-perl/examples/sort2.csv - texmf-dist/doc/support/pedigree-perl/examples/sort3.csv - texmf-dist/doc/support/pedigree-perl/examples/twins.csv -catalogue-ctan /graphics/pstricks/contrib/pedigree/pedigree-perl -catalogue-date 2014-09-23 18:36:08 +0200 -catalogue-license gpl2 -catalogue-version 1.0 - -name pedigree-perl.i386-linux -category Package -revision 25962 -shortdesc i386-linux files of pedigree-perl -binfiles arch=i386-linux size=1 - bin/i386-linux/pedigree - -name perception -category Package -revision 15878 -shortdesc BibTeX style for the journal Perception. -relocated 1 -longdesc A product of custom-bib, provided simply to save others' time. -runfiles size=8 - RELOC/bibtex/bst/perception/perception.bst -docfiles size=1 - RELOC/doc/latex/perception/README -catalogue-ctan /biblio/bibtex/contrib/perception -catalogue-date 2012-05-31 18:08:53 +0200 -catalogue-license lppl - -name perfectcut -category Package -revision 35501 -shortdesc Brackets whose size adjusts to the nesting. -relocated 1 -longdesc The package defines the command \perfectcut#1#2 which displays -longdesc a bracket <#1||#2>. Its effect is to determine the size of the -longdesc bracket depending on the number of nested \perfectcut -longdesc (regardless of the contents). The command is intended for use: -longdesc In proof theory, for term notations of sequent calculus, In -longdesc computer science, for the modeling of abstract machines. The -longdesc package also offers a reimplementation of \big, \bigg, etc., -longdesc into arbitrary-size variants. -runfiles size=4 - RELOC/tex/latex/perfectcut/perfectcut.sty -docfiles size=45 - RELOC/doc/latex/perfectcut/README - RELOC/doc/latex/perfectcut/perfectcut.pdf - RELOC/doc/latex/perfectcut/perfectcut.tex -catalogue-ctan /macros/latex/contrib/perfectcut -catalogue-date 2014-11-07 15:15:03 +0100 -catalogue-license lppl1.3 -catalogue-version 2.0 - -name perltex -category Package -revision 32576 -shortdesc Define LaTeX macros in terms of Perl code -longdesc PerlTeX is a combination Perl script (perltex.pl) and LaTeX2e -longdesc package (perltex.sty) that, together, give the user the ability -longdesc to define LaTeX macros in terms of Perl code. Once defined, a -longdesc Perl macro becomes indistinguishable from any other LaTeX -longdesc macro. PerlTeX thereby combines LaTeX's typesetting power with -longdesc Perl's programmability. PerlTeX will make use of persistent -longdesc named pipes, and thereby run more efficiently, on operating -longdesc systems that offer them (mostly Unix-like systems). Also -longdesc provided is a switch to generate a PerlTeX-free, document- -longdesc specific, noperltex.sty that is useful when distributing a -longdesc document to places where PerlTeX is not available. -depend perltex.ARCH -runfiles size=6 - texmf-dist/scripts/perltex/perltex.pl - texmf-dist/tex/latex/perltex/perltex.sty -docfiles size=90 - texmf-dist/doc/latex/perltex/README - texmf-dist/doc/latex/perltex/example.tex - texmf-dist/doc/latex/perltex/perltex.pdf - texmf-dist/doc/man/man1/perltex.1 - texmf-dist/doc/man/man1/perltex.man1.pdf -srcfiles size=31 - texmf-dist/source/latex/perltex/perltex.dtx - texmf-dist/source/latex/perltex/perltex.ins -catalogue-ctan /macros/latex/contrib/perltex -catalogue-date 2012-06-12 18:08:23 +0200 -catalogue-license lppl -catalogue-version 2.1 - -name perltex.i386-linux -category Package -revision 16181 -shortdesc i386-linux files of perltex -binfiles arch=i386-linux size=1 - bin/i386-linux/perltex - -name permute -category Package -revision 15878 -shortdesc Support for symmetric groups. -relocated 1 -longdesc A package for symmetric groups, allowing you to input, output, -longdesc and calculate with them. -runfiles size=3 - RELOC/tex/latex/permute/permute.sty -docfiles size=22 - RELOC/doc/latex/permute/permute.pdf -srcfiles size=11 - RELOC/source/latex/permute/permute.dtx - RELOC/source/latex/permute/permute.ins -catalogue-ctan /macros/latex/contrib/permute -catalogue-date 2012-06-12 22:35:22 +0200 -catalogue-license lppl - -name persian-bib -category Package -revision 37297 -shortdesc Persian translations of classic BibTeX styles. -relocated 1 -longdesc Currently 9 files: acm-fa.bst, asa-fa.bst, chicago-fa.bst, -longdesc ieeetr-fa.bst, plain-fa-inLTR-beamer.bst, plain-fa-inLTR.bst, -longdesc plain-fa.bst, plainnat-fa.bst and unsrt-fa.bst are modified for -longdesc Persian documents prepared with XePersian (which the present -longdesc package depends on). The Persian .bst files can simultaneously -longdesc handle both Latin and Persian references. A file cp1256fa.csf -longdesc is provided for correct sorting of Persian references and three -longdesc fields LANGUAGE, TRANSLATOR and AUTHORFA are defined. -runfiles size=66 - RELOC/bibtex/bst/persian-bib/acm-fa.bst - RELOC/bibtex/bst/persian-bib/asa-fa.bst - RELOC/bibtex/bst/persian-bib/chicago-fa.bst - RELOC/bibtex/bst/persian-bib/ieeetr-fa.bst - RELOC/bibtex/bst/persian-bib/plain-fa-inLTR-beamer.bst - RELOC/bibtex/bst/persian-bib/plain-fa-inLTR.bst - RELOC/bibtex/bst/persian-bib/plain-fa.bst - RELOC/bibtex/bst/persian-bib/plainnat-fa.bst - RELOC/bibtex/bst/persian-bib/unsrt-fa.bst - RELOC/bibtex/csf/persian-bib/cp1256fa.csf -docfiles size=58 - RELOC/doc/xelatex/persian-bib/MyReferences.bib - RELOC/doc/xelatex/persian-bib/Persian-bib-userguide.pdf - RELOC/doc/xelatex/persian-bib/Persian-bib-userguide.tex - RELOC/doc/xelatex/persian-bib/README - RELOC/doc/xelatex/persian-bib/bibtex-example.tex - RELOC/doc/xelatex/persian-bib/gen_pdf.pl -catalogue-ctan /biblio/bibtex/contrib/persian-bib -catalogue-date 2015-05-09 15:16:06 +0200 -catalogue-license lppl1.3 -catalogue-version 0.9 - -name petiteannonce -category Package -revision 25915 -shortdesc A class for small advertisements. -relocated 1 -longdesc The class enables you to create the sort of adverts that you -longdesc pin on a noticeboard, with tear-off strips at the bottom where -longdesc you can place contact details. -runfiles size=3 - RELOC/tex/latex/petiteannonce/petiteannonce.cls -docfiles size=75 - RELOC/doc/latex/petiteannonce/baignoire.JPG - RELOC/doc/latex/petiteannonce/petiteannonce.doc.pdf - RELOC/doc/latex/petiteannonce/petiteannonce.doc.tex - RELOC/doc/latex/petiteannonce/petiteannonceexample.pdf - RELOC/doc/latex/petiteannonce/petiteannonceexample.tex -catalogue-ctan /macros/latex/contrib/petiteannonce -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0001 - -name petri-nets -category Package -revision 24088 -shortdesc A set TeX/LaTeX packages for drawing Petri nets. -relocated 1 -longdesc Petri-nets offers a set of TeX/LaTeX packages about Petri nets -longdesc and related models. Three packages are available: the first -longdesc allows the user to draw Petri-nets in PostScript documents; the -longdesc second defines macros related to PBC, M-nets and B(PN) models; -longdesc and a third that combines the other two. -runfiles size=12 - RELOC/tex/generic/petri-nets/pndraw.sty - RELOC/tex/generic/petri-nets/pndraw.tex - RELOC/tex/generic/petri-nets/pnets.sty - RELOC/tex/generic/petri-nets/pnets.tex - RELOC/tex/generic/petri-nets/pntext.sty - RELOC/tex/generic/petri-nets/pntext.tex - RELOC/tex/generic/petri-nets/pnversion.tex -docfiles size=71 - RELOC/doc/generic/petri-nets/COPYING - RELOC/doc/generic/petri-nets/ChangeLog - RELOC/doc/generic/petri-nets/README - RELOC/doc/generic/petri-nets/pn2pdf - RELOC/doc/generic/petri-nets/pndoc.pdf - RELOC/doc/generic/petri-nets/pndoc.tex -catalogue-ctan /macros/generic/petri-nets -catalogue-date 2014-10-15 19:06:54 +0200 -catalogue-license gpl - -name pfarrei -category Package -revision 31934 -shortdesc LaTeX support of pastors' and priests' work. -longdesc In "Die TeXnische Komodie" (issue 1/2013) Christian Justen -longdesc described his use of LaTeX in his work as priest (similar -longdesc requirements may be encountered in the work of pastors and -longdesc other ministers of religion). One point was to arrange A5 pages -longdesc onto A4 landscape paper, either side-by-side or as a booklet. -longdesc Justen made two bash scripts for this job; the package provides -longdesc one texlua script for both requirements. (Note that file -longdesc a5toa4.tlu should have execute permissions in any -longdesc installation.) -depend pfarrei.ARCH -runfiles size=6 - texmf-dist/scripts/pfarrei/a5toa4.tlu - texmf-dist/scripts/pfarrei/pfarrei.tlu - texmf-dist/tex/latex/pfarrei/a5toa4.tex - texmf-dist/tex/latex/pfarrei/pfarrei.sty -docfiles size=123 - texmf-dist/doc/latex/pfarrei/pfarrei.pdf -srcfiles size=12 - texmf-dist/source/latex/pfarrei/README - texmf-dist/source/latex/pfarrei/pfarrei.dtx -catalogue-ctan /macros/latex/contrib/pfarrei -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version r36 - -name pfarrei.i386-linux -category Package -revision 29348 -shortdesc i386-linux files of pfarrei -binfiles arch=i386-linux size=2 - bin/i386-linux/a5toa4 - bin/i386-linux/pfarrei - -name pgf-blur -category Package -revision 31693 -shortdesc PGF/TikZ package for "blurred" shadows. -relocated 1 -longdesc The package adds blurred/faded/fuzzy shadows to PGF/TikZ -longdesc pictures. It is configured as a TikZ/PGF library module. The -longdesc method is similar to that of the author's pst-blur package for -longdesc PSTricks. -runfiles size=2 - RELOC/tex/latex/pgf-blur/tikzlibraryshadows.blur.code.tex -docfiles size=63 - RELOC/doc/latex/pgf-blur/README - RELOC/doc/latex/pgf-blur/pgf-blur.pdf -srcfiles size=9 - RELOC/source/latex/pgf-blur/pgf-blur.dtx - RELOC/source/latex/pgf-blur/pgf-blur.ins -catalogue-ctan /graphics/pgf/contrib/pgf-blur -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.01 - -name pgfgantt -category Package -revision 31037 -shortdesc Draw Gantt charts with TikZ. -relocated 1 -longdesc The package provides an environment for drawing Gantt charts -longdesc that contain various elements (titles, bars, milestones, groups -longdesc and links). Several keys customize the appearance of the chart -longdesc elements. -runfiles size=11 - RELOC/tex/latex/pgfgantt/pgfgantt.sty -docfiles size=224 - RELOC/doc/latex/pgfgantt/README - RELOC/doc/latex/pgfgantt/pgfgantt.pdf -srcfiles size=49 - RELOC/source/latex/pgfgantt/pgfgantt.dtx - RELOC/source/latex/pgfgantt/pgfgantt.ins -catalogue-ctan /graphics/pgf/contrib/pgfgantt -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 4.0 - -name pgfkeyx -category Package -revision 26093 -shortdesc Extended and more robust version of pgfkeys. -relocated 1 -longdesc The package extends and improves the robustness of the pgfkeys -longdesc package. In particular, it can deal with active comma, equality -longdesc sign, and slash in key parsing. The difficulty with active -longdesc characters has long been a problem with the pgfkeys package. -longdesc The package also introduces handlers beyond those that pgfkeys -longdesc can offer. -runfiles size=8 - RELOC/tex/latex/pgfkeyx/pgfkeyx.sty -docfiles size=2 - RELOC/doc/latex/pgfkeyx/README - RELOC/doc/latex/pgfkeyx/pgfkeyx-test1.tex -catalogue-ctan /macros/latex/contrib/pgfkeyx -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.0.1 - -name pgfmolbio -category Package -revision 35152 -shortdesc Draw graphs typically found in molecular biology texts. -relocated 1 -longdesc The package draws graphs typically found in molecular biology -longdesc texts. Currently, the package contains modules for drawing DNA -longdesc sequencing chromatograms and protein domain diagrams. -runfiles size=21 - RELOC/scripts/pgfmolbio/pgfmolbio.lua - RELOC/tex/lualatex/pgfmolbio/pgfmolbio.chromatogram.lua - RELOC/tex/lualatex/pgfmolbio/pgfmolbio.chromatogram.tex - RELOC/tex/lualatex/pgfmolbio/pgfmolbio.convert.tex - RELOC/tex/lualatex/pgfmolbio/pgfmolbio.domains.lua - RELOC/tex/lualatex/pgfmolbio/pgfmolbio.domains.tex - RELOC/tex/lualatex/pgfmolbio/pgfmolbio.sty -docfiles size=245 - RELOC/doc/lualatex/pgfmolbio/README - RELOC/doc/lualatex/pgfmolbio/SampleGff.gff - RELOC/doc/lualatex/pgfmolbio/SampleScf.scf - RELOC/doc/lualatex/pgfmolbio/SampleUniprot.txt - RELOC/doc/lualatex/pgfmolbio/pgfmolbio.pdf -srcfiles size=54 - RELOC/source/lualatex/pgfmolbio/pgfmolbio.dtx - RELOC/source/lualatex/pgfmolbio/pgfmolbio.ins -catalogue-ctan /macros/luatex/latex/pgfmolbio -catalogue-date 2015-01-14 14:37:06 +0100 -catalogue-license lppl1.3 -catalogue-version 0.21 - -name pgfopts -category Package -revision 34573 -shortdesc LaTeX package options with pgfkeys. -relocated 1 -longdesc The pgfkeys package (part of the pgf distribution) is a well- -longdesc designed way of defining and using large numbers of keys for -longdesc key-value syntaxes. However, pgfkeys itself does not offer -longdesc means of handling LaTeX class and package options. This package -longdesc adds such option handling to pgfkeys, in the same way that -longdesc kvoptions adds the same facility to the LaTeX standard keyval -longdesc package. -runfiles size=2 - RELOC/tex/latex/pgfopts/pgfopts.sty -docfiles size=45 - RELOC/doc/latex/pgfopts/LICENSE - RELOC/doc/latex/pgfopts/README - RELOC/doc/latex/pgfopts/pgfopts.pdf -srcfiles size=5 - RELOC/source/latex/pgfopts/pgfopts.dtx -catalogue-ctan /macros/latex/contrib/pgfopts -catalogue-date 2014-07-14 11:44:03 +0200 -catalogue-license lppl1.3 -catalogue-version 2.1a - -name pgfplots -category Package -revision 37169 -shortdesc Create normal/logarithmic plots in two and three dimensions. -relocated 1 -longdesc PGFPlots draws high-quality function plots in normal or -longdesc logarithmic scaling with a user-friendly interface directly in -longdesc TeX. The user supplies axis labels, legend entries and the plot -longdesc coordinates for one or more plots and PGFPlots applies axis -longdesc scaling, computes any logarithms and axis ticks and draws the -longdesc plots, supporting line plots, scatter plots, piecewise constant -longdesc plots, bar plots, area plots, mesh-- and surface plots and some -longdesc more. Pgfplots is based on PGF/TikZ (pgf); it runs equally for -longdesc LaTeX/TeX/ConTeXt. -runfiles size=787 - RELOC/scripts/pgfplots/matlab2pgfplots.m - RELOC/scripts/pgfplots/matlab2pgfplots.sh - RELOC/scripts/pgfplots/pgf2pdf.sh - RELOC/scripts/pgfplots/pgfplots.py - RELOC/tex/context/third/pgfplots/t-pgfplots.tex - RELOC/tex/context/third/pgfplots/t-pgfplotstable.tex - RELOC/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading.code.tex - RELOC/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex - RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.colormaps.code.tex - RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.dateplot.code.tex - RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.decorations.softclip.code.tex - RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.external.code.tex - RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.fillbetween.code.tex - RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.groupplots.code.tex - RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.patchplots.code.tex - RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.polar.code.tex - RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.smithchart.code.tex - RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.statistics.code.tex - RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.ternary.code.tex - RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.units.code.tex - RELOC/tex/generic/pgfplots/liststructure/pgfplotsarray.code.tex - RELOC/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.tex - RELOC/tex/generic/pgfplots/liststructure/pgfplotsliststructure.code.tex - RELOC/tex/generic/pgfplots/liststructure/pgfplotsliststructureext.code.tex - RELOC/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.tex - RELOC/tex/generic/pgfplots/lua/pgfplots.lua - RELOC/tex/generic/pgfplots/lua/pgfplots/binary.lua - RELOC/tex/generic/pgfplots/lua/pgfplots/colormap.lua - RELOC/tex/generic/pgfplots/lua/pgfplots/meshplothandler.lua - RELOC/tex/generic/pgfplots/lua/pgfplots/pgfplotstexio.lua - RELOC/tex/generic/pgfplots/lua/pgfplots/pgfplotsutil.lua - RELOC/tex/generic/pgfplots/lua/pgfplots/plothandler.lua - RELOC/tex/generic/pgfplots/lua/pgfplots/statistics.lua - RELOC/tex/generic/pgfplots/lua/pgfplots/streamer.lua - RELOC/tex/generic/pgfplots/lua/pgfplotsoldpgfsupp/luamath/functions.lua - RELOC/tex/generic/pgfplots/lua/pgfplotsoldpgfsupp/luamath/parser.lua - RELOC/tex/generic/pgfplots/numtable/pgfplotstable.code.tex - RELOC/tex/generic/pgfplots/numtable/pgfplotstable.coltype.code.tex - RELOC/tex/generic/pgfplots/numtable/pgfplotstableshared.code.tex - RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_loader.code.tex - RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_misc.code.tex - RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfcoreexternal.code.tex - RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfcoreimage.code.tex - RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfcorelayers.code.tex - RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfcorescopes.code.tex - RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfkeys.code.tex - RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfkeysfiltered.code.tex - RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgflibraryfpu.code.tex - RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgflibraryintersections.code.tex - RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgflibraryluamath.code.tex - RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgflibraryplothandlers.code.tex - RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfmanual.code.tex - RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfmanual.pdflinks.code.tex - RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfmanual.prettyprinter.code.tex - RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfmathfloat.code.tex - RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfutil-common-lists.tex - RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_tikzexternal.sty - RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_tikzexternalshared.code.tex - RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_tikzlibraryexternal.code.tex - RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_trig_format.code.tex - RELOC/tex/generic/pgfplots/oldpgfplotscompatib/tikzlibrarydateplot.code.tex - RELOC/tex/generic/pgfplots/pgfcontrib/pgflibraryfillbetween.code.tex - RELOC/tex/generic/pgfplots/pgfcontrib/tikzlibrarydecorations.softclip.code.tex - RELOC/tex/generic/pgfplots/pgfcontrib/tikzlibraryfillbetween.code.tex - RELOC/tex/generic/pgfplots/pgfplots.code.tex - RELOC/tex/generic/pgfplots/pgfplots.errorbars.code.tex - RELOC/tex/generic/pgfplots/pgfplots.markers.code.tex - RELOC/tex/generic/pgfplots/pgfplots.paths.code.tex - RELOC/tex/generic/pgfplots/pgfplots.revision.tex - RELOC/tex/generic/pgfplots/pgfplots.scaling.code.tex - RELOC/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex - RELOC/tex/generic/pgfplots/pgfplotscore.code.tex - RELOC/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex - RELOC/tex/generic/pgfplots/pgfplotsplothandlers.code.tex - RELOC/tex/generic/pgfplots/pgfplotsstackedplots.code.tex - RELOC/tex/generic/pgfplots/pgfplotsticks.code.tex - RELOC/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-dvipdfmx.def - RELOC/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-dvips.def - RELOC/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-pdftex.def - RELOC/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-xetex.def - RELOC/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex - RELOC/tex/generic/pgfplots/test/pgfplots.assert.code.tex - RELOC/tex/generic/pgfplots/test/pgfplots.assert.sty - RELOC/tex/generic/pgfplots/util/pgfplotsbinary.code.tex - RELOC/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex - RELOC/tex/generic/pgfplots/util/pgfplotscolor.code.tex - RELOC/tex/generic/pgfplots/util/pgfplotscolormap.code.tex - RELOC/tex/generic/pgfplots/util/pgfplotsutil.code.tex - RELOC/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex - RELOC/tex/latex/pgfplots/bugtracker.sty - RELOC/tex/latex/pgfplots/libs/tikzlibrarypgfplots.clickable.code.tex - RELOC/tex/latex/pgfplots/libs/tikzlibrarypgfplotsclickable.code.tex - RELOC/tex/latex/pgfplots/pgfplots.sty - RELOC/tex/latex/pgfplots/pgfplotstable.sty - RELOC/tex/latex/pgfplots/pgfregressiontest.sty - RELOC/tex/plain/pgfplots/pgfplots.tex - RELOC/tex/plain/pgfplots/pgfplotstable.tex -docfiles size=3386 - RELOC/doc/context/third/pgfplots/pgfplotsexample-context.pdf - RELOC/doc/context/third/pgfplots/pgfplotsexample-context.tex - RELOC/doc/context/third/pgfplots/pgfplotsexample-context.tuc - RELOC/doc/generic/pgfplots/README - RELOC/doc/latex/pgfplots/TeX-programming-notes.pdf - RELOC/doc/latex/pgfplots/pgfplots.doc.src.tar.bz2 - RELOC/doc/latex/pgfplots/pgfplots.pdf - RELOC/doc/latex/pgfplots/pgfplotsexample.pdf - RELOC/doc/latex/pgfplots/pgfplotsexample.tex - RELOC/doc/latex/pgfplots/pgfplotstable.pdf - RELOC/doc/latex/pgfplots/pgfplotstodo.pdf - RELOC/doc/plain/pgfplots/pgfplotsexample-plain.pdf - RELOC/doc/plain/pgfplots/pgfplotsexample-plain.tex -srcfiles size=344 - RELOC/source/context/third/pgfplots/pgfplotstests.context.tar.bz2 - RELOC/source/latex/pgfplots/pgfplotstests.tar.bz2 -catalogue-ctan /graphics/pgf/contrib/pgfplots -catalogue-date 2015-05-03 10:35:02 +0200 -catalogue-license gpl3 -catalogue-version 1.12.1 - -name pgf-soroban -category Package -revision 32269 -shortdesc Create images of the soroban using TikZ/PGF. -relocated 1 -longdesc The package makes it possible to create pictures of the soroban -longdesc (Japanese abacus) using PGF/TikZ -runfiles size=2 - RELOC/tex/latex/pgf-soroban/pgf-soroban.sty -docfiles size=91 - RELOC/doc/latex/pgf-soroban/Changes - RELOC/doc/latex/pgf-soroban/README - RELOC/doc/latex/pgf-soroban/pgf-soroban-doc.bib - RELOC/doc/latex/pgf-soroban/pgf-soroban-doc.pdf - RELOC/doc/latex/pgf-soroban/pgf-soroban-doc.tex -catalogue-ctan /graphics/pgf/contrib/pgf-soroban -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.1 - -name pgf -category Package -revision 38237 -shortdesc Create PostScript and PDF graphics in TeX -relocated 1 -longdesc PGF is a macro package for creating graphics. It is platform- -longdesc and format-independent and works together with the most -longdesc important TeX backend drivers, including pdfTeX and dvips. It -longdesc comes with a user-friendly syntax layer called TikZ. Its usage -longdesc is similar to pstricks and the standard picture environment. -longdesc PGF works with plain (pdf-)TeX, (pdf-)LaTeX, and ConTeXt. -longdesc Unlike pstricks, it can produce either PostScript or PDF -longdesc output. -depend xkeyval -runfiles size=1311 - RELOC/tex/context/third/pgf/basiclayer/t-pgf.tex - RELOC/tex/context/third/pgf/basiclayer/t-pgfbim.tex - RELOC/tex/context/third/pgf/basiclayer/t-pgfbla.tex - RELOC/tex/context/third/pgf/basiclayer/t-pgfbma.tex - RELOC/tex/context/third/pgf/basiclayer/t-pgfbpl.tex - RELOC/tex/context/third/pgf/basiclayer/t-pgfbpt.tex - RELOC/tex/context/third/pgf/basiclayer/t-pgfbsh.tex - RELOC/tex/context/third/pgf/basiclayer/t-pgfbsn.tex - RELOC/tex/context/third/pgf/basiclayer/t-pgfcor.tex - RELOC/tex/context/third/pgf/frontendlayer/t-tikz.tex - RELOC/tex/context/third/pgf/math/t-pgfmat.tex - RELOC/tex/context/third/pgf/systemlayer/t-pgfsys.tex - RELOC/tex/context/third/pgf/utilities/t-pgfcal.tex - RELOC/tex/context/third/pgf/utilities/t-pgffor.tex - RELOC/tex/context/third/pgf/utilities/t-pgfkey.tex - RELOC/tex/context/third/pgf/utilities/t-pgfmod.tex - RELOC/tex/context/third/pgf/utilities/t-pgfrcs.tex - RELOC/tex/generic/pgf/basiclayer/pgfcore.code.tex - RELOC/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex - RELOC/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex - RELOC/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex - RELOC/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex - RELOC/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex - RELOC/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex - RELOC/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex - RELOC/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex - RELOC/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex - RELOC/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex - RELOC/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex - RELOC/tex/generic/pgf/basiclayer/pgfcorequick.code.tex - RELOC/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex - RELOC/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex - RELOC/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex - RELOC/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/circuits/tikzlibrarycircuits.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/circuits/tikzlibrarycircuits.ee.IEC.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/circuits/tikzlibrarycircuits.ee.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/circuits/tikzlibrarycircuits.logic.CDH.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/circuits/tikzlibrarycircuits.logic.IEC.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/circuits/tikzlibrarycircuits.logic.US.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/circuits/tikzlibrarycircuits.logic.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/datavisualization/tikzlibrarydatavisualization.3d.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/datavisualization/tikzlibrarydatavisualization.barcharts.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/datavisualization/tikzlibrarydatavisualization.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/datavisualization/tikzlibrarydatavisualization.formats.functions.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/datavisualization/tikzlibrarydatavisualization.polar.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/datavisualization/tikzlibrarydatavisualization.sparklines.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/graphs/tikzlibrarygraphs.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/graphs/tikzlibrarygraphs.standard.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzexternalshared.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary3d.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryangles.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryarrows.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryautomata.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybabel.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybackgrounds.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybending.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarycalc.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarycalendar.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarychains.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.footprints.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.fractals.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.markings.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathmorphing.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathreplacing.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.shapes.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.text.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryer.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfadings.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfit.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfixedpointarithmetic.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfolding.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfpu.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryintersections.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarylindenmayersystems.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarymath.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarymatrix.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarymindmap.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarypatterns.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarypatterns.meta.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarypetri.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryplothandlers.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryplotmarks.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarypositioning.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryquotes.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryscopes.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshadings.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshadows.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.arrows.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.callouts.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.gates.logic.IEC.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.gates.logic.US.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.geometric.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.misc.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.multipart.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.symbols.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarysnakes.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryspy.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarysvg.path.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarythrough.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytrees.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryturtle.code.tex - RELOC/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex - RELOC/tex/generic/pgf/graphdrawing/lua/LUA_CODING_STYLE - RELOC/tex/generic/pgf/graphdrawing/lua/pgf.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/bindings.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/bindings/Binding.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/bindings/BindingToPGF.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/circular.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/circular/Tantau2012.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/circular/doc.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/circular/library.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/Anchoring.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/ComponentAlign.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/ComponentDirection.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/ComponentDistance.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/ComponentOrder.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/Components.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/Distances.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/FineTune.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/LayoutPipeline.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/NodeAnchors.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/Orientation.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/Sublayouts.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/doc.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/library.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/deprecated/Cluster.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/deprecated/Edge.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/deprecated/Graph.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/deprecated/Iterators.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/deprecated/Node.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/deprecated/Vector.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/FMMMLayout.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/FastMultipoleEmbedder.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/GEMLayout.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/MultilevelLayout.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/SpringEmbedderFR.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/SpringEmbedderFRExact.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/SpringEmbedderKK.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/BarycenterPlacer.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/CirclePlacer.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/EdgeCoverMerger.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/IndependentSetMerger.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/LocalBiconnectedMerger.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/MatchingMerger.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/MedianPlacer.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/RandomMerger.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/RandomPlacer.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/SolarMerger.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/SolarPlacer.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/ZeroPlacer.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/BarycenterHeuristic.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/CoffmanGrahamRanking.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/DfsAcyclicSubgraph.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/FastHierarchyLayout.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/FastSimpleHierarchyLayout.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/GreedyCycleRemoval.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/GreedyInsertHeuristic.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/LongestPathRanking.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/MedianHeuristic.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/OptimalRanking.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/SiftingHeuristic.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/SplitHeuristic.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/SugiyamaLayout.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/misclayout.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/misclayout/BalloonLayout.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/misclayout/CircularLayout.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/module/AcyclicSubgraphModule.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/module/HierarchyLayoutModule.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/module/InitialPlacer.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/module/MultilevelBuilder.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/module/RankingModule.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/module/TwoLayerCrossMin.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/planarity.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/planarity/PlanarizationLayout.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/ASCIIDisplayer.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/BindingToASCII.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/SimpleDemo.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/SimpleEdgeDemo.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/SimpleHuffman.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/example_graph_for_ascii_displayer.txt - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/library.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/CoarseGraph.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/Control.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/ControlCoarsening.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/ControlElectric.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/ControlIteration.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/ControlSprings.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/ControlStart.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/QuadTree.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/SpringElectricalHu2006.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/SpringElectricalLayouts.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/SpringElectricalWalshaw2000.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/SpringHu2006.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/SpringLayouts.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/algorithms/FruchtermanReingold.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/algorithms/HuSpringElectricalFW.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/algorithms/SimpleSpring.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/algorithms/SocialGravityCloseness.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/algorithms/SocialGravityDegree.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/base/CoarseGraphFW.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/base/ForceController.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/base/ForceTemplate.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/base/InitialTemplate.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/base/PathLengthsFW.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/base/Preprocessing.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/doc.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/forcetypes/ForceAbsoluteValue.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/forcetypes/ForceCanvasDistance.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/forcetypes/ForceCanvasPosition.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/forcetypes/ForceGraphDistance.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/forcetypes/ForcePullToGrid.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/forcetypes/ForcePullToPoint.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/initialpositioning/CircularInitialPositioning.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/initialpositioning/GridInitialPositioning.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/initialpositioning/RandomInitialPositioning.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/library.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/library.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/InterfaceCore.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/InterfaceToAlgorithms.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/InterfaceToC.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/InterfaceToDisplay.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/Scope.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/CrossingMinimizationGansnerKNV1993.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/CycleRemovalBergerS1990a.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/CycleRemovalBergerS1990b.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/CycleRemovalEadesLS1993.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/CycleRemovalGansnerKNV1993.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/EdgeRoutingGansnerKNV1993.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/NetworkSimplex.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/NodePositioningGansnerKNV1993.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/NodeRankingGansnerKNV1993.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/NodeRankingMinimumHeight.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/Ranking.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/Sugiyama.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/crossing_minimization.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/cycle_removal.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/edge_routing.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/library.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/node_positioning.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/node_ranking.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Bezier.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/DepthFirstSearch.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Direct.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Event.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/LookupTable.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/PathLengths.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/PriorityQueue.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Simplifiers.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Stack.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Storage.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Transform.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Arc.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Collection.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Coordinate.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Digraph.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Edge.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Hyperedge.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Path.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Path_arced.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Vertex.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/library.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/ogdf.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/ogdf/library.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/pedigrees.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/pedigrees/Koerner2015.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/pedigrees/library.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/AuthorDefinedPhylogeny.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/BalancedMinimumEvolution.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/BalancedNearestNeighbourInterchange.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/DistanceMatrix.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/Maeusle2012.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/PhylogeneticTree.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/SokalMichener1958.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/library.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/routing.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/routing/Hints.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/routing/NecklaceRouting.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/routing/library.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/tools/make_gd_wrap.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/trees.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/trees/ChildSpec.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/trees/ReingoldTilford1981.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/trees/SpanningTreeComputation.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/trees/doc.lua - RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/trees/library.lua - RELOC/tex/generic/pgf/graphdrawing/tex/pgflibrarygraphdrawing.circular.code.tex - RELOC/tex/generic/pgf/graphdrawing/tex/pgflibrarygraphdrawing.code.tex - RELOC/tex/generic/pgf/graphdrawing/tex/pgflibrarygraphdrawing.examples.code.tex - RELOC/tex/generic/pgf/graphdrawing/tex/pgflibrarygraphdrawing.force.code.tex - RELOC/tex/generic/pgf/graphdrawing/tex/pgflibrarygraphdrawing.layered.code.tex - RELOC/tex/generic/pgf/graphdrawing/tex/pgflibrarygraphdrawing.trees.code.tex - RELOC/tex/generic/pgf/graphdrawing/tex/tikzlibrarygraphdrawing.code.tex - RELOC/tex/generic/pgf/libraries/datavisualization/pgflibrarydatavisualization.barcharts.code.tex - RELOC/tex/generic/pgf/libraries/datavisualization/pgflibrarydatavisualization.formats.functions.code.tex - RELOC/tex/generic/pgf/libraries/datavisualization/pgflibrarydatavisualization.polar.code.tex - RELOC/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.footprints.code.tex - RELOC/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.fractals.code.tex - RELOC/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.markings.code.tex - RELOC/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathmorphing.code.tex - RELOC/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathreplacing.code.tex - RELOC/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.shapes.code.tex - RELOC/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.text.code.tex - RELOC/tex/generic/pgf/libraries/luamath/pgf/luamath/functions.lua - RELOC/tex/generic/pgf/libraries/luamath/pgf/luamath/parser.lua - RELOC/tex/generic/pgf/libraries/luamath/pgflibraryluamath.code.tex - RELOC/tex/generic/pgf/libraries/pgflibraryarrows.code.tex - RELOC/tex/generic/pgf/libraries/pgflibraryarrows.meta.code.tex - RELOC/tex/generic/pgf/libraries/pgflibraryarrows.spaced.code.tex - RELOC/tex/generic/pgf/libraries/pgflibrarycurvilinear.code.tex - RELOC/tex/generic/pgf/libraries/pgflibraryfadings.code.tex - RELOC/tex/generic/pgf/libraries/pgflibraryfixedpointarithmetic.code.tex - RELOC/tex/generic/pgf/libraries/pgflibraryfpu.code.tex - RELOC/tex/generic/pgf/libraries/pgflibraryintersections.code.tex - RELOC/tex/generic/pgf/libraries/pgflibrarylindenmayersystems.code.tex - RELOC/tex/generic/pgf/libraries/pgflibrarypatterns.code.tex - RELOC/tex/generic/pgf/libraries/pgflibrarypatterns.meta.code.tex - RELOC/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex - RELOC/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex - RELOC/tex/generic/pgf/libraries/pgflibraryprofiler.code.tex - RELOC/tex/generic/pgf/libraries/pgflibraryshadings.code.tex - RELOC/tex/generic/pgf/libraries/pgflibrarysnakes.code.tex - RELOC/tex/generic/pgf/libraries/pgflibrarysvg.path.code.tex - RELOC/tex/generic/pgf/libraries/shapes/circuits/pgflibraryshapes.gates.ee.IEC.code.tex - RELOC/tex/generic/pgf/libraries/shapes/circuits/pgflibraryshapes.gates.ee.code.tex - RELOC/tex/generic/pgf/libraries/shapes/circuits/pgflibraryshapes.gates.logic.IEC.code.tex - RELOC/tex/generic/pgf/libraries/shapes/circuits/pgflibraryshapes.gates.logic.US.code.tex - RELOC/tex/generic/pgf/libraries/shapes/circuits/pgflibraryshapes.gates.logic.code.tex - RELOC/tex/generic/pgf/libraries/shapes/pgflibraryshapes.arrows.code.tex - RELOC/tex/generic/pgf/libraries/shapes/pgflibraryshapes.callouts.code.tex - RELOC/tex/generic/pgf/libraries/shapes/pgflibraryshapes.code.tex - RELOC/tex/generic/pgf/libraries/shapes/pgflibraryshapes.geometric.code.tex - RELOC/tex/generic/pgf/libraries/shapes/pgflibraryshapes.misc.code.tex - RELOC/tex/generic/pgf/libraries/shapes/pgflibraryshapes.multipart.code.tex - RELOC/tex/generic/pgf/libraries/shapes/pgflibraryshapes.symbols.code.tex - RELOC/tex/generic/pgf/lua/pgf/manual.lua - RELOC/tex/generic/pgf/lua/pgf/manual/DocumentParser.lua - RELOC/tex/generic/pgf/math/pgfmath.code.tex - RELOC/tex/generic/pgf/math/pgfmathcalc.code.tex - RELOC/tex/generic/pgf/math/pgfmathfloat.code.tex - RELOC/tex/generic/pgf/math/pgfmathfunctions.base.code.tex - RELOC/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex - RELOC/tex/generic/pgf/math/pgfmathfunctions.code.tex - RELOC/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex - RELOC/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex - RELOC/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex - RELOC/tex/generic/pgf/math/pgfmathfunctions.random.code.tex - RELOC/tex/generic/pgf/math/pgfmathfunctions.round.code.tex - RELOC/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex - RELOC/tex/generic/pgf/math/pgfmathode.code.tex - RELOC/tex/generic/pgf/math/pgfmathparser.code.tex - RELOC/tex/generic/pgf/math/pgfmathutil.code.tex - RELOC/tex/generic/pgf/modules/pgfmodulebending.code.tex - RELOC/tex/generic/pgf/modules/pgfmoduledatavisualization.code.tex - RELOC/tex/generic/pgf/modules/pgfmoduledecorations.code.tex - RELOC/tex/generic/pgf/modules/pgfmodulematrix.code.tex - RELOC/tex/generic/pgf/modules/pgfmodulenonlineartransformations.code.tex - RELOC/tex/generic/pgf/modules/pgfmoduleoo.code.tex - RELOC/tex/generic/pgf/modules/pgfmoduleparser.code.tex - RELOC/tex/generic/pgf/modules/pgfmoduleplot.code.tex - RELOC/tex/generic/pgf/modules/pgfmoduleshapes.code.tex - RELOC/tex/generic/pgf/modules/pgfmodulesnakes.code.tex - RELOC/tex/generic/pgf/modules/pgfmodulesorting.code.tex - RELOC/tex/generic/pgf/systemlayer/pgf.cfg - RELOC/tex/generic/pgf/systemlayer/pgfsys-common-pdf-via-dvi.def - RELOC/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def - RELOC/tex/generic/pgf/systemlayer/pgfsys-common-postscript.def - RELOC/tex/generic/pgf/systemlayer/pgfsys-common-svg.def - RELOC/tex/generic/pgf/systemlayer/pgfsys-dvi.def - RELOC/tex/generic/pgf/systemlayer/pgfsys-dvipdfm.def - RELOC/tex/generic/pgf/systemlayer/pgfsys-dvipdfmx.def - RELOC/tex/generic/pgf/systemlayer/pgfsys-dvips.def - RELOC/tex/generic/pgf/systemlayer/pgfsys-dvisvgm.def - RELOC/tex/generic/pgf/systemlayer/pgfsys-pdftex.def - RELOC/tex/generic/pgf/systemlayer/pgfsys-tex4ht.def - RELOC/tex/generic/pgf/systemlayer/pgfsys-textures.def - RELOC/tex/generic/pgf/systemlayer/pgfsys-vtex.def - RELOC/tex/generic/pgf/systemlayer/pgfsys-xetex.def - RELOC/tex/generic/pgf/systemlayer/pgfsys.code.tex - RELOC/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex - RELOC/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex - RELOC/tex/generic/pgf/utilities/pgfcalendar.code.tex - RELOC/tex/generic/pgf/utilities/pgfexternal.tex - RELOC/tex/generic/pgf/utilities/pgfexternalwithdepth.tex - RELOC/tex/generic/pgf/utilities/pgffor.code.tex - RELOC/tex/generic/pgf/utilities/pgfkeys.code.tex - RELOC/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex - RELOC/tex/generic/pgf/utilities/pgfrcs.code.tex - RELOC/tex/generic/pgf/utilities/pgfutil-common-lists.tex - RELOC/tex/generic/pgf/utilities/pgfutil-common.tex - RELOC/tex/generic/pgf/utilities/pgfutil-context.def - RELOC/tex/generic/pgf/utilities/pgfutil-latex.def - RELOC/tex/generic/pgf/utilities/pgfutil-plain.def - RELOC/tex/latex/pgf/basiclayer/pgf.sty - RELOC/tex/latex/pgf/basiclayer/pgfbaseimage.sty - RELOC/tex/latex/pgf/basiclayer/pgfbaselayers.sty - RELOC/tex/latex/pgf/basiclayer/pgfbasematrix.sty - RELOC/tex/latex/pgf/basiclayer/pgfbasepatterns.sty - RELOC/tex/latex/pgf/basiclayer/pgfbaseplot.sty - RELOC/tex/latex/pgf/basiclayer/pgfbaseshapes.sty - RELOC/tex/latex/pgf/basiclayer/pgfbasesnakes.sty - RELOC/tex/latex/pgf/basiclayer/pgfcore.sty - RELOC/tex/latex/pgf/compatibility/pgfarrows.sty - RELOC/tex/latex/pgf/compatibility/pgfautomata.sty - RELOC/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty - RELOC/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty - RELOC/tex/latex/pgf/compatibility/pgfheaps.sty - RELOC/tex/latex/pgf/compatibility/pgflibraryarrows.sty - RELOC/tex/latex/pgf/compatibility/pgflibraryautomata.sty - RELOC/tex/latex/pgf/compatibility/pgflibraryplothandlers.sty - RELOC/tex/latex/pgf/compatibility/pgflibraryplotmarks.sty - RELOC/tex/latex/pgf/compatibility/pgflibraryshapes.sty - RELOC/tex/latex/pgf/compatibility/pgflibrarysnakes.sty - RELOC/tex/latex/pgf/compatibility/pgflibrarytikzbackgrounds.sty - RELOC/tex/latex/pgf/compatibility/pgflibrarytikztrees.sty - RELOC/tex/latex/pgf/compatibility/pgfnodes.sty - RELOC/tex/latex/pgf/compatibility/pgfshade.sty - RELOC/tex/latex/pgf/doc/pgfmanual.code.tex - RELOC/tex/latex/pgf/doc/pgfmanual.pdflinks.code.tex - RELOC/tex/latex/pgf/doc/pgfmanual.prettyprinter.code.tex - RELOC/tex/latex/pgf/doc/pgfmanual.sty - RELOC/tex/latex/pgf/frontendlayer/libraries/tikzlibraryexternal.code.tex - RELOC/tex/latex/pgf/frontendlayer/pgfpict2e.sty - RELOC/tex/latex/pgf/frontendlayer/tikz.sty - RELOC/tex/latex/pgf/math/pgfmath.sty - RELOC/tex/latex/pgf/systemlayer/pgfsys.sty - RELOC/tex/latex/pgf/utilities/pgfcalendar.sty - RELOC/tex/latex/pgf/utilities/pgffor.sty - RELOC/tex/latex/pgf/utilities/pgfkeys.sty - RELOC/tex/latex/pgf/utilities/pgfpages.sty - RELOC/tex/latex/pgf/utilities/pgfrcs.sty - RELOC/tex/latex/pgf/utilities/tikzexternal.sty - RELOC/tex/latex/pgf/utilities/xxcolor.sty - RELOC/tex/plain/pgf/basiclayer/pgf.tex - RELOC/tex/plain/pgf/basiclayer/pgfbaseimage.tex - RELOC/tex/plain/pgf/basiclayer/pgfbaselayers.tex - RELOC/tex/plain/pgf/basiclayer/pgfbasematrix.tex - RELOC/tex/plain/pgf/basiclayer/pgfbasepatterns.tex - RELOC/tex/plain/pgf/basiclayer/pgfbaseplot.tex - RELOC/tex/plain/pgf/basiclayer/pgfbaseshapes.tex - RELOC/tex/plain/pgf/basiclayer/pgfbasesnakes.tex - RELOC/tex/plain/pgf/basiclayer/pgfcore.tex - RELOC/tex/plain/pgf/frontendlayer/tikz.tex - RELOC/tex/plain/pgf/math/pgfmath.tex - RELOC/tex/plain/pgf/systemlayer/pgfsys.tex - RELOC/tex/plain/pgf/utilities/pgfcalendar.tex - RELOC/tex/plain/pgf/utilities/pgffor.tex - RELOC/tex/plain/pgf/utilities/pgfkeys.tex - RELOC/tex/plain/pgf/utilities/pgfrcs.tex -docfiles size=3502 - RELOC/doc/generic/pgf/AUTHORS - RELOC/doc/generic/pgf/ChangeLog - RELOC/doc/generic/pgf/FILES - RELOC/doc/generic/pgf/INSTALL - RELOC/doc/generic/pgf/README - RELOC/doc/generic/pgf/README-3.0.0 - RELOC/doc/generic/pgf/images/brave-gnu-world-logo-mask.bb - RELOC/doc/generic/pgf/images/brave-gnu-world-logo-mask.jpg - RELOC/doc/generic/pgf/images/brave-gnu-world-logo.25.bb - RELOC/doc/generic/pgf/images/brave-gnu-world-logo.25.eps - RELOC/doc/generic/pgf/images/brave-gnu-world-logo.25.jpg - RELOC/doc/generic/pgf/images/brave-gnu-world-logo.bb - RELOC/doc/generic/pgf/images/brave-gnu-world-logo.eps - RELOC/doc/generic/pgf/images/brave-gnu-world-logo.jpg - RELOC/doc/generic/pgf/images/brave-gnu-world-logo.xbb - RELOC/doc/generic/pgf/images/pgfmanual-mindmap-1.pdf - RELOC/doc/generic/pgf/images/pgfmanual-mindmap-2.pdf - RELOC/doc/generic/pgf/licenses/LICENSE - RELOC/doc/generic/pgf/licenses/gnu-free-documentation-license-1.2.txt - RELOC/doc/generic/pgf/licenses/gnu-public-license-2.txt - RELOC/doc/generic/pgf/licenses/latex-project-public-license-1.3c.txt - RELOC/doc/generic/pgf/licenses/manifest-code.txt - RELOC/doc/generic/pgf/licenses/manifest-documentation.txt - RELOC/doc/generic/pgf/macros/pgfmanual-en-macros.tex - RELOC/doc/generic/pgf/pgfmanual.pdf - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-actions.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-arrows.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-decorations.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-design.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-external.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-images.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-internalregisters.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-layers.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-matrices.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-nodes.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-paths.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-patterns.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-plots.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-points.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-quick.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-scopes.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-shadings.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-transformations.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-transparency.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-drivers.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-axes.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-backend.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-examples.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-formats.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-introduction.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-main.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-polar.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-stylesheets.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-visualizers.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-algorithm-layer.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-algorithms-in-c.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-binding-layer.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-circular.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-display-layer.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-edge-routing.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-examples.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-force.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-layered.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-misc.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-ogdf.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-overview.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-phylogenetics.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-trees.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-usage-pgf.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-usage-tikz.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-guidelines.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-installation.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-introduction.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-3d.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-angles.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-arrows.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-automata.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-babel.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-backgrounds.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-calc.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-calendar.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-chains.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-circuits.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-decorations.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-edges.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-er.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-external.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-fadings.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-fit.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-fixedpoint.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-folding.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-fpu.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-lsystems.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-math.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-matrices.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-mindmaps.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-patterns.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-petri.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-plot-handlers.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-plot-marks.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-profiler.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-shadings.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-shadows.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-shapes.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-spy.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-svg-path.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-through.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-trees.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-turtle.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-license.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-main-body.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-main-preamble.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-main.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-math-algorithms.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-math-commands.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-math-design.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-math-numberprinting.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-math-parsing.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-module-parser.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-oo.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-pages.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfcalendar.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgffor.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfkeys.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfkeysfiltered.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfsys-commands.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfsys-overview.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfsys-paths.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfsys-protocol.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-actions.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-arrows.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-coordinates.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-decorations.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-design.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-graphs.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-matrices.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-paths.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-pics.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-plots.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-scopes.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-shapes.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-transformations.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-transparency.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-trees.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tutorial-Euclid.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tutorial-chains.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tutorial-map.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tutorial-nodes.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tutorial.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-xxcolor.tex - RELOC/doc/generic/pgf/text-en/plots/pgf-asymptotic-example.gnuplot - RELOC/doc/generic/pgf/text-en/plots/pgf-asymptotic-example.table - RELOC/doc/generic/pgf/text-en/plots/pgf-exp.gnuplot - RELOC/doc/generic/pgf/text-en/plots/pgf-exp.table - RELOC/doc/generic/pgf/text-en/plots/pgf-parametric-example.gnuplot - RELOC/doc/generic/pgf/text-en/plots/pgf-parametric-example.table - RELOC/doc/generic/pgf/text-en/plots/pgf-sin.gnuplot - RELOC/doc/generic/pgf/text-en/plots/pgf-sin.table - RELOC/doc/generic/pgf/text-en/plots/pgf-tan-example.gnuplot - RELOC/doc/generic/pgf/text-en/plots/pgf-tan-example.table - RELOC/doc/generic/pgf/text-en/plots/pgf-x.gnuplot - RELOC/doc/generic/pgf/text-en/plots/pgf-x.table - RELOC/doc/generic/pgf/text-en/plots/pgfmanual-sine.gnuplot - RELOC/doc/generic/pgf/text-en/plots/pgfmanual-sine.table - RELOC/doc/generic/pgf/text-en/plots/pgfplotgnuplot-example.gnuplot - RELOC/doc/generic/pgf/text-en/plots/pgfplotgnuplot-example.table - RELOC/doc/generic/pgf/version-for-dvipdfm/en/Makefile - RELOC/doc/generic/pgf/version-for-dvipdfm/en/pgfmanual.tex - RELOC/doc/generic/pgf/version-for-dvipdfm/pgfmanual-dvipdfm.cfg - RELOC/doc/generic/pgf/version-for-dvipdfmx/en/Makefile - RELOC/doc/generic/pgf/version-for-dvipdfmx/en/pgfmanual-test.tex - RELOC/doc/generic/pgf/version-for-dvipdfmx/en/pgfmanual.tex - RELOC/doc/generic/pgf/version-for-dvipdfmx/pgfmanual-dvipdfmx.cfg - RELOC/doc/generic/pgf/version-for-dvips/en/Makefile - RELOC/doc/generic/pgf/version-for-dvips/en/pgfmanual.tex - RELOC/doc/generic/pgf/version-for-dvips/pgfmanual-dvips.cfg - RELOC/doc/generic/pgf/version-for-luatex/en/Makefile - RELOC/doc/generic/pgf/version-for-luatex/en/pgfmanual-test.tex - RELOC/doc/generic/pgf/version-for-luatex/en/pgfmanual.tex - RELOC/doc/generic/pgf/version-for-luatex/pgfmanual-luatex.cfg - RELOC/doc/generic/pgf/version-for-pdftex/en/Makefile - RELOC/doc/generic/pgf/version-for-pdftex/en/pgfmanual.tex - RELOC/doc/generic/pgf/version-for-pdftex/pgfmanual-pdftex.cfg - RELOC/doc/generic/pgf/version-for-tex4ht/en/Makefile - RELOC/doc/generic/pgf/version-for-tex4ht/en/pgfmanual.tex - RELOC/doc/generic/pgf/version-for-tex4ht/pgfmanual-tex4ht.cfg - RELOC/doc/generic/pgf/version-for-vtex/en/Makefile - RELOC/doc/generic/pgf/version-for-vtex/en/pgfmanual.tex - RELOC/doc/generic/pgf/version-for-vtex/pgfmanual-vtex.cfg - RELOC/doc/generic/pgf/version-for-xetex/en/Makefile - RELOC/doc/generic/pgf/version-for-xetex/en/pgfmanual.tex - RELOC/doc/generic/pgf/version-for-xetex/pgfmanual-xetex.cfg -srcfiles size=92 - RELOC/source/generic/pgf/c/INSTALL - RELOC/source/generic/pgf/c/Makefile - RELOC/source/generic/pgf/c/config/ExampleLocalMakefileConfig.mk - RELOC/source/generic/pgf/c/config/MakefileConfig.mk - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/examples/c/Makefile - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/examples/c/SimpleDemoC.c - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/examples/c/SimpleDemoCPlusPlus.c++ - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/InterfaceFromC++.c++ - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/InterfaceFromC++.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/InterfaceFromC.c - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/InterfaceFromC.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/Makefile - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/InterfaceFromOGDF.c++ - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/InterfaceFromOGDF.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/Makefile - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/SimpleDemoOGDF.c++ - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/FMMMLayout_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/FastMultipoleEmbedder_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/GEMLayout_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/MultilevelLayout_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/SpringEmbedderFRExact_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/SpringEmbedderFR_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/SpringEmbedderKK_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/energybased_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/BarycenterPlacer_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/CirclePlacer_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/EdgeCoverMerger_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/IndependentSetMerger_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/LocalBiconnectedMerger_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/MatchingMerger_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/MedianPlacer_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/RandomMerger_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/RandomPlacer_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/SolarMerger_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/SolarPlacer_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/ZeroPlacer_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/multilevelmixer_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/BarycenterHeuristic_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/CoffmanGrahamRanking_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/DfsAcyclicSubgraph_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/FastHierarchyLayout_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/FastSimpleHierarchyLayout_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/GreedyCycleRemoval_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/GreedyInsertHeuristic_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/LongestPathRanking_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/MedianHeuristic_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/OptimalRanking_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/SiftingHeuristic_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/SplitHeuristic_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/SugiyamaLayout_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/layered_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/misclayout/BalloonLayout_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/misclayout/CircularLayout_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/misclayout/misclayout_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/module/module_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/ogdf_script.c++ - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/planarity/PlanarizationLayout_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/planarity/planarity_script.h - RELOC/source/generic/pgf/testsuite/external/Makefile - RELOC/source/generic/pgf/testsuite/external/tikzexternaltest.code.tex - RELOC/source/generic/pgf/testsuite/external/tikzexternaltest.sharedpreamble.tex - RELOC/source/generic/pgf/testsuite/external/tikzexternaltest.tex - RELOC/source/generic/pgf/testsuite/external/tikzexternaltestmakefile.tex - RELOC/source/generic/pgf/testsuite/mathtest/pgfmathtestsuite.tex - RELOC/source/generic/pgf/testsuite/mathtest/unittest_luamathparser.tex -catalogue-ctan /graphics/pgf/base -catalogue-date 2015-08-29 20:25:54 +0200 -catalogue-license lppl1.3 -catalogue-topics pgf-tikz graphics-in-tex -catalogue-version 3.0.1a - -name pgf-umlcd -category Package -revision 33307 -shortdesc Some LaTeX macros for UML Class Diagrams. -relocated 1 -longdesc Some LaTeX macros for UML Class Diagrams.pgf -runfiles size=3 - RELOC/tex/latex/pgf-umlcd/pgf-umlcd.sty -docfiles size=121 - RELOC/doc/latex/pgf-umlcd/COPYING - RELOC/doc/latex/pgf-umlcd/README - RELOC/doc/latex/pgf-umlcd/demo/abstract-class.tex - RELOC/doc/latex/pgf-umlcd/demo/abstract-factory.svg - RELOC/doc/latex/pgf-umlcd/demo/abstract-factory.tex - RELOC/doc/latex/pgf-umlcd/demo/aggregation.tex - RELOC/doc/latex/pgf-umlcd/demo/association.tex - RELOC/doc/latex/pgf-umlcd/demo/class.tex - RELOC/doc/latex/pgf-umlcd/demo/composition.tex - RELOC/doc/latex/pgf-umlcd/demo/implement-interface.tex - RELOC/doc/latex/pgf-umlcd/demo/inheritance.tex - RELOC/doc/latex/pgf-umlcd/demo/interface.tex - RELOC/doc/latex/pgf-umlcd/demo/note.tex - RELOC/doc/latex/pgf-umlcd/demo/object-include-methods.tex - RELOC/doc/latex/pgf-umlcd/demo/object.tex - RELOC/doc/latex/pgf-umlcd/demo/package.tex - RELOC/doc/latex/pgf-umlcd/demo/unidirectional-association.tex - RELOC/doc/latex/pgf-umlcd/demo/visibility.tex - RELOC/doc/latex/pgf-umlcd/logo.png - RELOC/doc/latex/pgf-umlcd/pgf-umlcd-manual.pdf - RELOC/doc/latex/pgf-umlcd/pgf-umlcd-manual.tex -catalogue-ctan /graphics/pgf/contrib/pgf-umlcd -catalogue-date 2014-03-28 18:05:25 +0100 -catalogue-license gpl -catalogue-version 0.2.1.1 - -name pgf-umlsd -category Package -revision 33045 -shortdesc Draw UML Sequence Diagrams. -relocated 1 -longdesc LaTeX macros to draw UML diagrams using pgf -runfiles size=3 - RELOC/tex/latex/pgf-umlsd/pgf-umlsd.sty -docfiles size=97 - RELOC/doc/latex/pgf-umlsd/README - RELOC/doc/latex/pgf-umlsd/demo/block.tex - RELOC/doc/latex/pgf-umlsd/demo/call.tex - RELOC/doc/latex/pgf-umlsd/demo/callself.tex - RELOC/doc/latex/pgf-umlsd/demo/customize.log - RELOC/doc/latex/pgf-umlsd/demo/customize.tex - RELOC/doc/latex/pgf-umlsd/demo/distance.tex - RELOC/doc/latex/pgf-umlsd/demo/empty.tex - RELOC/doc/latex/pgf-umlsd/demo/instance.tex - RELOC/doc/latex/pgf-umlsd/demo/message.tex - RELOC/doc/latex/pgf-umlsd/demo/messcall.tex - RELOC/doc/latex/pgf-umlsd/demo/multi-threads-example.tex - RELOC/doc/latex/pgf-umlsd/demo/nested-call.tex - RELOC/doc/latex/pgf-umlsd/demo/no-thread-example.tex - RELOC/doc/latex/pgf-umlsd/demo/non-instantaneous-message.tex - RELOC/doc/latex/pgf-umlsd/demo/postlevel.log - RELOC/doc/latex/pgf-umlsd/demo/postlevel.tex - RELOC/doc/latex/pgf-umlsd/demo/prelevel.tex - RELOC/doc/latex/pgf-umlsd/demo/single-thread-example.tex - RELOC/doc/latex/pgf-umlsd/demo/sync-clock.tex - RELOC/doc/latex/pgf-umlsd/demo/thread.tex - RELOC/doc/latex/pgf-umlsd/demo/threadbias.log - RELOC/doc/latex/pgf-umlsd/demo/threadbias.tex - RELOC/doc/latex/pgf-umlsd/diagrams.pdf - RELOC/doc/latex/pgf-umlsd/logo.png - RELOC/doc/latex/pgf-umlsd/pgf-umlsd-manual.pdf - RELOC/doc/latex/pgf-umlsd/pgf-umlsd-manual.tex -catalogue-ctan /graphics/pgf/contrib/pgf-umlsd -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license gpl -catalogue-version 0.7 - -name phaistos -category Package -revision 18651 -shortdesc Disk of Phaistos font. -relocated 1 -longdesc A font that contains all the symbols of the famous Disc of -longdesc Phaistos, together with a LaTeX package. The disc was 'printed' -longdesc by stamping the wet clay with some sort of punches, probably -longdesc around 1700 BCE. The font is available in Adobe Type 1 and -longdesc OpenType formats (the latter using the Unicode positions for -longdesc the symbols). There are those who believe that this Cretan -longdesc script was used to 'write' Greek (it is known, for example, -longdesc that the rather later Cretan Linear B script was used to write -longdesc Greek), but arguments for other languages have been presented. -execute addMap phaistos.map -runfiles size=54 - RELOC/fonts/afm/public/phaistos/phaistos.afm - RELOC/fonts/map/dvips/phaistos/phaistos.map - RELOC/fonts/opentype/public/phaistos/Phaistos.otf - RELOC/fonts/tfm/public/phaistos/phaistos.tfm - RELOC/fonts/type1/public/phaistos/phaistos.pfb - RELOC/tex/latex/phaistos/phaistos.sty -docfiles size=47 - RELOC/doc/fonts/phaistos/getglyphs - RELOC/doc/fonts/phaistos/glyphTable.pdf -srcfiles size=4 - RELOC/source/fonts/phaistos/phaistos.dtx - RELOC/source/fonts/phaistos/phaistos.ins -catalogue-ctan /fonts/archaic/phaistos -catalogue-date 2014-05-17 21:41:14 +0200 -catalogue-license lppl -catalogue-version 1.0 - -name philex -category Package -revision 36396 -shortdesc Cross references for named and numbered environments. -relocated 1 -longdesc Philex provides means for creating and cross-referencing named -longdesc or numbered environments. Possible uses would be equations, -longdesc example sentences (as in linguistics or philosophy) or named -longdesc principles. Cross references may refer either to the number, or -longdesc to a short name of the target environment, or to the contents -longdesc of the environment. Philex builds on the facilities of the -longdesc linguex package. -runfiles size=11 - RELOC/tex/latex/philex/philex.sty -docfiles size=69 - RELOC/doc/latex/philex/README - RELOC/doc/latex/philex/philexmanual.pdf - RELOC/doc/latex/philex/philexmanual.tex -catalogue-ctan /macros/latex/contrib/philex -catalogue-date 2015-02-27 16:09:02 +0100 -catalogue-license lppl -catalogue-version 1.3 - -name philokalia -category Package -revision 18651 -shortdesc A font to typeset the Philokalia Books. -relocated 1 -longdesc The philokalia package has been designed to ease the use of the -longdesc Philokalia-Regular OpenType font with XeLaTeX. The font started -longdesc as a project to digitize the typeface used to typeset the -longdesc Philokalia books. -runfiles size=33 - RELOC/fonts/opentype/public/philokalia/Philokalia-Regular.otf - RELOC/tex/xelatex/philokalia/eu1plk.fd - RELOC/tex/xelatex/philokalia/philokalia.sty -docfiles size=27 - RELOC/doc/xelatex/philokalia/philokalia.pdf -srcfiles size=6 - RELOC/source/xelatex/philokalia/philokalia.dtx - RELOC/source/xelatex/philokalia/philokalia.ins -catalogue-ctan /fonts/philokalia -catalogue-date 2012-05-31 18:08:53 +0200 -catalogue-license ofl -catalogue-version 1.1 - -name philosophersimprint -category Package -revision 28845 -shortdesc Typesetting articles for "Philosophers' Imprint". -relocated 1 -longdesc In its mission statement we read "Philosophers' Imprint is a -longdesc refereed series of original papers in philosophy, edited by -longdesc philosophy faculty at the University of Michigan, with the -longdesc advice of an international Board of Editors, and published on -longdesc the World Wide Web by the University of Michigan Digital -longdesc Library. The mission of the Imprint is to promote a future in -longdesc which funds currently spent on journal subscriptions are -longdesc redirected to the dissemination of scholarship for free, via -longdesc the Internet". The class helps authors to typeset their own -longdesc articles in "Web-ready" format. No assumption is made about the -longdesc fonts available to the author: the class itself is restricted -longdesc to freely available and freely distributed fonts, only. -runfiles size=4 - RELOC/tex/latex/philosophersimprint/philosophersimprint.cls -docfiles size=119 - RELOC/doc/latex/philosophersimprint/Makefile - RELOC/doc/latex/philosophersimprint/README - RELOC/doc/latex/philosophersimprint/philosophersimprint.bib - RELOC/doc/latex/philosophersimprint/philosophersimprint.pdf - RELOC/doc/latex/philosophersimprint/sample.pdf - RELOC/doc/latex/philosophersimprint/sample.tex -srcfiles size=12 - RELOC/source/latex/philosophersimprint/philosophersimprint.dtx - RELOC/source/latex/philosophersimprint/philosophersimprint.ins -catalogue-ctan /macros/latex/contrib/philosophersimprint -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.3 - -name phonetic -category Package -revision 21871 -shortdesc Metafont Phonetic fonts, based on Computer Modern. -relocated 1 -longdesc The fonts are based on Computer Modern, and specified in -longdesc Metafont. Macros for the fonts' use are provided, both for -longdesc LaTeX 2.09 and for current LaTeX. -runfiles size=55 - RELOC/fonts/source/public/phonetic/cmph10.mf - RELOC/fonts/source/public/phonetic/cmph5.mf - RELOC/fonts/source/public/phonetic/cmph6.mf - RELOC/fonts/source/public/phonetic/cmph7.mf - RELOC/fonts/source/public/phonetic/cmph8.mf - RELOC/fonts/source/public/phonetic/cmph9.mf - RELOC/fonts/source/public/phonetic/cmphb10.mf - RELOC/fonts/source/public/phonetic/cmphi10.mf - RELOC/fonts/source/public/phonetic/cmphi7.mf - RELOC/fonts/source/public/phonetic/cmphi8.mf - RELOC/fonts/source/public/phonetic/cmphi9.mf - RELOC/fonts/source/public/phonetic/local.mf - RELOC/fonts/source/public/phonetic/phochar.mf - RELOC/fonts/source/public/phonetic/phoital.mf - RELOC/fonts/source/public/phonetic/phoitchar.mf - RELOC/fonts/source/public/phonetic/phosym.mf - RELOC/fonts/source/public/phonetic/symchar.mf - RELOC/fonts/tfm/public/phonetic/cmph10.tfm - RELOC/fonts/tfm/public/phonetic/cmph5.tfm - RELOC/fonts/tfm/public/phonetic/cmph6.tfm - RELOC/fonts/tfm/public/phonetic/cmph7.tfm - RELOC/fonts/tfm/public/phonetic/cmph8.tfm - RELOC/fonts/tfm/public/phonetic/cmph9.tfm - RELOC/fonts/tfm/public/phonetic/cmphb10.tfm - RELOC/fonts/tfm/public/phonetic/cmphi10.tfm - RELOC/fonts/tfm/public/phonetic/cmphi7.tfm - RELOC/fonts/tfm/public/phonetic/cmphi8.tfm - RELOC/fonts/tfm/public/phonetic/cmphi9.tfm - RELOC/tex/latex/phonetic/Uphon.fd - RELOC/tex/latex/phonetic/phonetic.sty -docfiles size=26 - RELOC/doc/fonts/phonetic/Doc/209/phonetic-table.tex - RELOC/doc/fonts/phonetic/Doc/209/phonetic.sty - RELOC/doc/fonts/phonetic/Doc/README - RELOC/doc/fonts/phonetic/README - RELOC/doc/fonts/phonetic/makefile - RELOC/doc/fonts/phonetic/phonetic-table.pdf - RELOC/doc/fonts/phonetic/phonetic-table.tex -catalogue-ctan /fonts/phonetic -catalogue-date 2014-05-23 17:08:48 +0200 -catalogue-license lppl - -name phonrule -category Package -revision 37765 -shortdesc Typeset linear phonological rules. -relocated 1 -longdesc The package provides macros for typesetting phonological rules -longdesc like those in 'Sound Pattern of English' (Chomsky and Halle -longdesc 1968). -runfiles size=1 - RELOC/tex/latex/phonrule/phonrule.sty -docfiles size=11 - RELOC/doc/latex/phonrule/README - RELOC/doc/latex/phonrule/phonrule-doc.pdf - RELOC/doc/latex/phonrule/phonrule-doc.tex -catalogue-ctan /macros/latex/contrib/phonrule -catalogue-date 2015-07-04 14:58:27 +0200 -catalogue-license lppl -catalogue-topics phonetic -catalogue-version 1.1.0 - -name photo -category Package -revision 18739 -shortdesc A float environment for photographs. -relocated 1 -longdesc This package introduces a new float type called photo which -longdesc works similar to the float types table and figure. Various -longdesc options exist for placing photos, captions, and a -longdesc "photographer" line. In twocolumn documents, a possibility -longdesc exists to generate double-column floats automatically if the -longdesc photo does not fit into one column. Photos do not have to be -longdesc placed as floats, they can also be placed as boxes, with -longdesc captions and photographer line still being available. -runfiles size=2 - RELOC/tex/latex/photo/photo.sty -docfiles size=42 - RELOC/doc/latex/photo/Makefile - RELOC/doc/latex/photo/photo.pdf - RELOC/doc/latex/photo/photo_test.tex -srcfiles size=9 - RELOC/source/latex/photo/photo.drv - RELOC/source/latex/photo/photo.dtx - RELOC/source/latex/photo/photo.ins -catalogue-ctan /macros/latex/contrib/photo -catalogue-date 2012-06-12 23:14:44 +0200 -catalogue-license lppl - -name physics -category Package -revision 28590 -shortdesc Macros supporting the Mathematics of Physics. -relocated 1 -longdesc The package defines simple and flexible macros for typesetting -longdesc equations in the languages of vector calculus and linear -longdesc algebra, using Dirac notation. -runfiles size=8 - RELOC/tex/latex/physics/physics.sty -docfiles size=69 - RELOC/doc/latex/physics/README - RELOC/doc/latex/physics/physics.pdf - RELOC/doc/latex/physics/physics.tex -catalogue-ctan /macros/latex/contrib/physics -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.3 - -name piano -category Package -revision 21574 -shortdesc Typeset a basic 2-octave piano diagram. -relocated 1 -longdesc This package adds the \keyboard[1][2]..[7] command to your -longdesc project. When used, it draws a small 2 octaves piano keyboard -longdesc on your document, with up to 7 keys highlighted. Keys go : Co, -longdesc Cso, Do, Dso, Eo, Fo, Fso, Go, Gso, Ao, Aso, Bo, Ct, Cst, Dt, -longdesc Dst, Et, Ft, Fst, Gt, Gst, At, Ast and Bt. (A working example -longdesc is included in the README file.) -runfiles size=4 - RELOC/tex/latex/piano/piano.sty -docfiles size=1 - RELOC/doc/latex/piano/README -catalogue-ctan /macros/latex/contrib/piano -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 - -name picinpar -category Package -revision 20374 -shortdesc Insert pictures into paragraphs. -relocated 1 -longdesc A legacy package for creating 'windows' in paragraphs, for -longdesc inserting graphics, etc. (including "dropped capitals"). Users -longdesc should note that Piet van Oostrum (in a published review of -longdesc packages of this sort) does not recommend this package; Picins -longdesc is recommended instead. -runfiles size=4 - RELOC/tex/latex/picinpar/picinpar.sty -docfiles size=100 - RELOC/doc/latex/picinpar/picinpar-de.pdf - RELOC/doc/latex/picinpar/picinpar-de.tex - RELOC/doc/latex/picinpar/picinpar-en.pdf - RELOC/doc/latex/picinpar/picinpar-en.tex -catalogue-ctan /macros/latex209/contrib/picinpar -catalogue-date 2012-06-13 09:18:45 +0200 -catalogue-license gpl -catalogue-version 1.2a - -name pict2e -category Package -revision 32658 -shortdesc New implementation of picture commands. -relocated 1 -longdesc This package was described in the 2nd edition of 'LaTeX: A -longdesc Document Preparation System', but the LaTeX project team -longdesc declined to produce the package. For a long time, LaTeX has -longdesc included a 'pict2e package' that merely produced an apologetic -longdesc error message. The new package extends the existing LaTeX -longdesc picture environment, using the familiar technique (cf. the -longdesc graphics and color packages) of driver files (at present, -longdesc drivers for PostScript output from LaTeX, and for use with -longdesc PDFLaTeX are available). The package documentation has a fair -longdesc number of examples of use, showing where things are improved by -longdesc comparison with the LaTeX picture environment. -runfiles size=17 - RELOC/tex/latex/pict2e/p2e-dvipdfm.def - RELOC/tex/latex/pict2e/p2e-dvipdfmx.def - RELOC/tex/latex/pict2e/p2e-dvips.def - RELOC/tex/latex/pict2e/p2e-pctex32.def - RELOC/tex/latex/pict2e/p2e-pctexps.def - RELOC/tex/latex/pict2e/p2e-pdftex.def - RELOC/tex/latex/pict2e/p2e-textures.def - RELOC/tex/latex/pict2e/p2e-vtex.def - RELOC/tex/latex/pict2e/p2e-xetex.def - RELOC/tex/latex/pict2e/pict2e.cfg - RELOC/tex/latex/pict2e/pict2e.sty -docfiles size=194 - RELOC/doc/latex/pict2e/README - RELOC/doc/latex/pict2e/manifest.txt - RELOC/doc/latex/pict2e/p2e-drivers.pdf - RELOC/doc/latex/pict2e/pict2e.pdf -srcfiles size=38 - RELOC/source/latex/pict2e/p2e-drivers.dtx - RELOC/source/latex/pict2e/pict2e.dtx - RELOC/source/latex/pict2e/pict2e.ins -catalogue-ctan /macros/latex/contrib/pict2e -catalogue-date 2014-01-13 11:26:35 +0100 -catalogue-license lppl -catalogue-version 0.2z - -name pictex2 -category Package -revision 15878 -shortdesc Adds relative coordinates and improves the \plot command. -relocated 1 -longdesc Adds two user commands to standard PiCTeX. One command uses -longdesc relative coordinates, thus eliminating the need to calculate -longdesc the coordinate of every point manually as in standard PiCTeX. -longdesc The other command modifies \plot to use a rule instead of dots -longdesc if the line segment is horizontal or vertical. -runfiles size=4 - RELOC/tex/latex/pictex2/pictex2.sty -catalogue-ctan /macros/latex/contrib/pictex2/pictex2.sty -catalogue-date 2012-06-13 09:18:45 +0200 -catalogue-license lppl - -name pictexsum -category Package -revision 24965 -shortdesc A summary of PicTeX commands. -relocated 1 -longdesc The document summarises the commands of PicTeX. While it is no -longdesc substitute for the PicTeX manual itself (available from -longdesc Personal TeX inc.), the document is a useful aide-memoire for -longdesc those who have read the manual. -docfiles size=59 - RELOC/doc/latex/pictexsum/Makefile - RELOC/doc/latex/pictexsum/README - RELOC/doc/latex/pictexsum/a4mod.sty - RELOC/doc/latex/pictexsum/pictexsum.pdf - RELOC/doc/latex/pictexsum/pictexsum.tex - RELOC/doc/latex/pictexsum/useful.sty -catalogue-ctan /info/pictex/summary -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license other-free - -name pictex -category Package -revision 21943 -shortdesc Picture drawing macros for TeX and LaTeX. -relocated 1 -longdesc PicTeX is an early, and very comprehensive drawing package, -longdesc that mostly draws by placing myriads of small dots to make up -longdesc pictures. It has a tendency to run out of space, most -longdesc especially of allowable dimensions registers; packages m-pictex -longdesc and pictexwd deal with the register problem, in different ways. -longdesc Note that full documentation may be bought via the PC-TeX site, -longdesc though a command summary is available as free software. -longdesc Alternatively, a front-end package such as mathsPiC, which -longdesc covers all of PicTeX and has a complete and free manual, could -longdesc be used. -runfiles size=81 - RELOC/tex/generic/pictex/errorbars.tex - RELOC/tex/generic/pictex/latexpicobjs.tex - RELOC/tex/generic/pictex/piccorr.sty - RELOC/tex/generic/pictex/picmore.tex - RELOC/tex/generic/pictex/pictex.sty - RELOC/tex/generic/pictex/pictex.tex - RELOC/tex/generic/pictex/pictexwd.sty - RELOC/tex/generic/pictex/pictexwd.tex - RELOC/tex/generic/pictex/pointers.tex - RELOC/tex/generic/pictex/postpictex.tex - RELOC/tex/generic/pictex/prepictex.tex - RELOC/tex/generic/pictex/texpictex.tex - RELOC/tex/generic/pictex/tree.sty -docfiles size=4 - RELOC/doc/generic/pictex/00index - RELOC/doc/generic/pictex/README - RELOC/doc/generic/pictex/pictexzusatz.txt - RELOC/doc/generic/pictex/readme.errorbars -catalogue-ctan /graphics/pictex -catalogue-date 2012-03-05 13:29:35 +0100 -catalogue-license lppl1 -catalogue-version 1.1 - -name piechartmp -category Package -revision 19440 -shortdesc Draw pie-charts using MetaPost. -relocated 1 -longdesc The piechartmp package is an easy way to draw pie-charts with -longdesc MetaPost. The package implements an interface that enables -longdesc users with little MetaPost experience to draw charts. A -longdesc highlight of the package is the possibility of suppressing some -longdesc segments of the chart, thus creating the possibility of several -longdesc charts from the same data. -runfiles size=7 - RELOC/metapost/piechartmp/piechartmp.mp -docfiles size=26 - RELOC/doc/metapost/piechartmp/INSTALL - RELOC/doc/metapost/piechartmp/LEGAL - RELOC/doc/metapost/piechartmp/README - RELOC/doc/metapost/piechartmp/README.TEXLIVE - RELOC/doc/metapost/piechartmp/examples/wec-mfun.mp - RELOC/doc/metapost/piechartmp/examples/wec-mfun.pdf - RELOC/doc/metapost/piechartmp/examples/wec.mp - RELOC/doc/metapost/piechartmp/examples/wec.pdf - RELOC/doc/metapost/piechartmp/examples/worldmap.jpg -catalogue-ctan /graphics/metapost/contrib/macros/piechartmp -catalogue-date 2012-07-19 14:34:01 +0200 -catalogue-license lppl -catalogue-version 0.3.0 - -name piff -category Package -revision 21894 -shortdesc Macro tools by Mike Piff. -relocated 1 -longdesc The set (now) consists of: a small package for dealing with -longdesc duplicate-numbered output pages; newproof, for defining -longdesc mathematical proof structures; onepagem for omitting the page -longdesc number in one-page documents and time, which prints a 12-hour -longdesc format time. -runfiles size=4 - RELOC/tex/latex/piff/duplicat.sty - RELOC/tex/latex/piff/newproof.sty - RELOC/tex/latex/piff/onepagem.sty - RELOC/tex/latex/piff/time.sty -docfiles size=185 - RELOC/doc/latex/piff/README - RELOC/doc/latex/piff/duplicat-doc.pdf - RELOC/doc/latex/piff/duplicat-doc.tex - RELOC/doc/latex/piff/newproof-doc.pdf - RELOC/doc/latex/piff/newproof-doc.tex - RELOC/doc/latex/piff/onepagem-doc.pdf - RELOC/doc/latex/piff/onepagem-doc.tex - RELOC/doc/latex/piff/time-doc.pdf - RELOC/doc/latex/piff/time-doc.tex -catalogue-ctan /macros/latex/contrib/piff -catalogue-date 2014-10-15 18:29:49 +0200 -catalogue-license pd - -name pigpen -category Package -revision 15878 -shortdesc A font for the pigpen (or masonic) cipher. -relocated 1 -longdesc The Pigpen cipher package provides the font and the necessary -longdesc wrappers (style file, etc.) in order to write Pigpen ciphers, a -longdesc simple substitution cipher. The package provides a font -longdesc (available both as Metafont source, and as an Adobe Type 1 -longdesc file), and macros for its use. -execute addMixedMap pigpen.map -runfiles size=9 - RELOC/fonts/map/dvips/pigpen/pigpen.map - RELOC/fonts/source/public/pigpen/pigpen.mf - RELOC/fonts/tfm/public/pigpen/pigpen.tfm - RELOC/fonts/type1/public/pigpen/pigpen.pfa - RELOC/tex/latex/pigpen/pigpen.sty - RELOC/tex/latex/pigpen/pigpen.tex -docfiles size=16 - RELOC/doc/latex/pigpen/README - RELOC/doc/latex/pigpen/pigpendoc.pdf - RELOC/doc/latex/pigpen/pigpendoc.tex -catalogue-ctan /fonts/pigpen -catalogue-date 2014-05-23 17:08:48 +0200 -catalogue-license lppl -catalogue-version 0.2 - -name pinlabel -category Package -revision 24769 -shortdesc A TeX labelling package. -relocated 1 -longdesc Pinlabel is a labelling package for attaching perfectly -longdesc formatted TeX labels to figures and diagrams in both eps and -longdesc pdf formats. It is suitable both for labelling a new diagram -longdesc and for relabelling an existing diagram. The package uses -longdesc coordinates derived from GhostView (or gv) and labels are -longdesc placed with automatic and consistent spacing relative to the -longdesc object labelled. -runfiles size=10 - RELOC/tex/latex/pinlabel/pinlabel.sty -docfiles size=97 - RELOC/doc/latex/pinlabel/pinlabdoc.pdf - RELOC/doc/latex/pinlabel/src/fig3.pdf - RELOC/doc/latex/pinlabel/src/fig6.pdf - RELOC/doc/latex/pinlabel/src/gtpart.cls - RELOC/doc/latex/pinlabel/src/pinlabdoc.tex - RELOC/doc/latex/pinlabel/src/put.fig - RELOC/doc/latex/pinlabel/src/put.pdf - RELOC/doc/latex/pinlabel/src/put2.fig - RELOC/doc/latex/pinlabel/src/put2.pdf - RELOC/doc/latex/pinlabel/src/screen.pdf -catalogue-ctan /macros/latex/contrib/pinlabel -catalogue-date 2012-06-08 15:42:15 +0200 -catalogue-license lppl -catalogue-version 1.2 - -name pitex -category Package -revision 24731 -shortdesc Documentation macros. -relocated 1 -longdesc The bundle provides macros that the author uses when writing -longdesc documentation (for example, that of the texapi and yax -longdesc packages). The tools could be used by anyone, but there is no -longdesc documentation, and the macros are subject to change without -longdesc notice. -runfiles size=27 - RELOC/tex/plain/pitex/base.ptxlua - RELOC/tex/plain/pitex/blocks.ptx - RELOC/tex/plain/pitex/files.ptx - RELOC/tex/plain/pitex/fonts.ptx - RELOC/tex/plain/pitex/fonts.ptxlua - RELOC/tex/plain/pitex/inserts.ptx - RELOC/tex/plain/pitex/lua.ptx - RELOC/tex/plain/pitex/output.ptx - RELOC/tex/plain/pitex/pitex.tex - RELOC/tex/plain/pitex/references.ptx - RELOC/tex/plain/pitex/sections.ptx - RELOC/tex/plain/pitex/verbatim.ptx -docfiles size=39 - RELOC/doc/plain/pitex/README - RELOC/doc/plain/pitex/foundry-settings.lua - RELOC/doc/plain/pitex/i-pitex.lua - RELOC/doc/plain/pitex/pitex-doc.pdf - RELOC/doc/plain/pitex/pitex-doc.tex - RELOC/doc/plain/pitex/pitex-doc.txt -catalogue-ctan /macros/plain/contrib/pitex -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl - -name pittetd -category Package -revision 15878 -shortdesc Electronic Theses and Dissertations at Pitt. -relocated 1 -longdesc A document class for theses and dissertations. Provides patch -longdesc files that enable pittetd to use files prepared for use with -longdesc the pittdiss or pitthesis classes. The manual provides a -longdesc detailed guide for users who wish to use the class to prepare -longdesc their thesis or dissertation. -runfiles size=12 - RELOC/tex/latex/pittetd/pitetd10.clo - RELOC/tex/latex/pittetd/pitetd11.clo - RELOC/tex/latex/pittetd/pitetd12.clo - RELOC/tex/latex/pittetd/pittetd.cls -docfiles size=118 - RELOC/doc/latex/pittetd/achicago.pit - RELOC/doc/latex/pittetd/pittdiss.pit - RELOC/doc/latex/pittetd/pittetd.pdf - RELOC/doc/latex/pittetd/pitthesis.pit -srcfiles size=38 - RELOC/source/latex/pittetd/pittetd.dtx - RELOC/source/latex/pittetd/pittetd.ins -catalogue-ctan /macros/latex/contrib/pittetd -catalogue-date 2011-11-28 01:09:49 +0100 -catalogue-license lppl -catalogue-version 1.618 - -name pkfix-helper -category Package -revision 29725 -shortdesc Make PostScript files accessible to pkfix. -longdesc Pkfix is a useful utility for replacing resolution-dependent -longdesc bitmapped fonts in a dvips-produced PostScript file with the -longdesc corresponding resolution-independent vector fonts. -longdesc Unfortunately, pkfix needs to parse certain PostScript comments -longdesc that appear only in files produced by dvips versions later than -longdesc 5.58 (ca. 1996); it fails to work on PostScript files produced -longdesc by older versions of dvips. Pkfix-helper is a program that -longdesc attempts to insert newer-dvips comments into an older-dvips -longdesc PostScript file, thereby making the file suitable for -longdesc processing by pkfix. pkfix-helper can sometimes process -longdesc documents fully autonomously but does require the user to -longdesc verify and, if needed, correct its decisions. -depend pkfix-helper.ARCH -runfiles size=14 - texmf-dist/scripts/pkfix-helper/pkfix-helper -docfiles size=189 - texmf-dist/doc/man/man1/pkfix-helper.1 - texmf-dist/doc/man/man1/pkfix-helper.man1.pdf - texmf-dist/doc/support/pkfix-helper/README - texmf-dist/doc/support/pkfix-helper/encoding-samples.pdf - texmf-dist/doc/support/pkfix-helper/encoding-samples.tex -catalogue-ctan /support/pkfix-helper -catalogue-date 2012-06-08 16:04:26 +0200 -catalogue-license lppl -catalogue-version 1.4 - -name pkfix-helper.i386-linux -category Package -revision 13663 -shortdesc i386-linux files of pkfix-helper -binfiles arch=i386-linux size=1 - bin/i386-linux/pkfix-helper - -name pkfix -category Package -revision 26032 -shortdesc Replace pk fonts in PostScript with Type 1 fonts. -longdesc The perl script pkfix looks for DVIPSBitmapFont comments in -longdesc PostScript files, generated by 'not too old' dvips, and -longdesc replaces them by type 1 versions of the fonts, if possible. -depend pkfix.ARCH -runfiles size=7 - texmf-dist/scripts/pkfix/pkfix.pl -docfiles size=3 - texmf-dist/doc/support/pkfix/README -catalogue-ctan /support/pkfix/pkfix.pl -catalogue-date 2012-06-08 16:04:26 +0200 -catalogue-license lppl1.3 -catalogue-version 1.7 - -name pkfix.i386-linux -category Package -revision 13364 -shortdesc i386-linux files of pkfix -binfiles arch=i386-linux size=1 - bin/i386-linux/pkfix - -name pkgloader -category Package -revision 35711 -shortdesc Managing the options and loading order of other packages. -relocated 1 -longdesc The package seeks to address the frustration caused by package -longdesc conflicts. It is in an early stage of its development, and -longdesc should probably not be used as a matter of course; however the -longdesc author welcomes feedback via the home page link given in this -longdesc catalogue entry. Nevertheless, the author urges users to try -longdesc the package and to report issues (or whatever) via the -longdesc package's repository. -runfiles size=18 - RELOC/tex/latex/pkgloader/pkgloader-cls-pkg.sty - RELOC/tex/latex/pkgloader/pkgloader-dry.sty - RELOC/tex/latex/pkgloader/pkgloader-early.sty - RELOC/tex/latex/pkgloader/pkgloader-error.sty - RELOC/tex/latex/pkgloader/pkgloader-false.sty - RELOC/tex/latex/pkgloader/pkgloader-late.sty - RELOC/tex/latex/pkgloader/pkgloader-recommended.sty - RELOC/tex/latex/pkgloader/pkgloader-true.sty - RELOC/tex/latex/pkgloader/pkgloader.sty -docfiles size=122 - RELOC/doc/latex/pkgloader/README - RELOC/doc/latex/pkgloader/pkgloader-packagedoc.cls - RELOC/doc/latex/pkgloader/pkgloader.pdf - RELOC/doc/latex/pkgloader/pkgloader.tex -catalogue-ctan /macros/latex/contrib/pkgloader -catalogue-date 2014-12-01 05:27:12 +0100 -catalogue-license lppl1.3 -catalogue-version 0.5.0 - -name pkuthss -category Package -revision 37719 -shortdesc LaTeX template for dissertations in Peking University. -relocated 1 -longdesc The package provides a simple, clear and flexible LaTeX -longdesc template for dissertations in Peking University. -runfiles size=13 - RELOC/tex/latex/pkuthss/pkulogo.eps - RELOC/tex/latex/pkuthss/pkulogo.pdf - RELOC/tex/latex/pkuthss/pkuthss-extra.sty - RELOC/tex/latex/pkuthss/pkuthss-gbk.def - RELOC/tex/latex/pkuthss/pkuthss-utf8.def - RELOC/tex/latex/pkuthss/pkuthss.cls - RELOC/tex/latex/pkuthss/pkuword.eps - RELOC/tex/latex/pkuthss/pkuword.pdf -docfiles size=163 - RELOC/doc/latex/pkuthss/example.pdf - RELOC/doc/latex/pkuthss/example/Make.bat - RELOC/doc/latex/pkuthss/example/Makefile - RELOC/doc/latex/pkuthss/example/chap/abstract.tex - RELOC/doc/latex/pkuthss/example/chap/acknowledge.tex - RELOC/doc/latex/pkuthss/example/chap/chap1.tex - RELOC/doc/latex/pkuthss/example/chap/conclusion.tex - RELOC/doc/latex/pkuthss/example/chap/copyright.tex - RELOC/doc/latex/pkuthss/example/chap/encl1.tex - RELOC/doc/latex/pkuthss/example/chap/introduction.tex - RELOC/doc/latex/pkuthss/example/chap/originauth.tex - RELOC/doc/latex/pkuthss/example/misc/ctex-fontset-pkuthss.def - RELOC/doc/latex/pkuthss/example/misc/ctex-xecjk-winfonts.def - RELOC/doc/latex/pkuthss/example/misc/ctexopts.cfg - RELOC/doc/latex/pkuthss/example/thesis.bib - RELOC/doc/latex/pkuthss/example/thesis.tex - RELOC/doc/latex/pkuthss/readme.pdf - RELOC/doc/latex/pkuthss/readme/ChangeLog-upto-1.3.txt - RELOC/doc/latex/pkuthss/readme/ChangeLog.txt - RELOC/doc/latex/pkuthss/readme/Makefile - RELOC/doc/latex/pkuthss/readme/chap/originauth.tex - RELOC/doc/latex/pkuthss/readme/chap/pkuthss-abstract.tex - RELOC/doc/latex/pkuthss/readme/chap/pkuthss-acknowledge.tex - RELOC/doc/latex/pkuthss/readme/chap/pkuthss-chap1.tex - RELOC/doc/latex/pkuthss/readme/chap/pkuthss-chap2.tex - RELOC/doc/latex/pkuthss/readme/chap/pkuthss-chap3.tex - RELOC/doc/latex/pkuthss/readme/chap/pkuthss-conclusion.tex - RELOC/doc/latex/pkuthss/readme/chap/pkuthss-copyright.tex - RELOC/doc/latex/pkuthss/readme/chap/pkuthss-encl1.tex - RELOC/doc/latex/pkuthss/readme/chap/pkuthss-introduction.tex - RELOC/doc/latex/pkuthss/readme/pkuthss.bib - RELOC/doc/latex/pkuthss/readme/pkuthss.tex -catalogue-ctan /macros/latex/contrib/pkuthss -catalogue-date 2015-06-30 16:47:28 +0200 -catalogue-license other-free -catalogue-topics dissertation class chinese -catalogue-version 1.6.3 - -name placeat -category Package -revision 33526 -shortdesc Absolute content positioning. -relocated 1 -longdesc The package provides commands so that the user of LuaLaTeX may -longdesc position arbitrary content at any position specified by -longdesc absolute coordinates on the page. The package draws a grid on -longdesc each page of the document, to aid positioning (the grid may be -longdesc disabled, for 'final copy' using the command \placeatsetup). -runfiles size=4 - RELOC/scripts/placeat/placeat.lua - RELOC/tex/lualatex/placeat/placeat.sty -docfiles size=25 - RELOC/doc/lualatex/placeat/README - RELOC/doc/lualatex/placeat/placeat.pdf - RELOC/doc/lualatex/placeat/placeat.tex -srcfiles size=9 - RELOC/source/lualatex/placeat/placeat.dtx -catalogue-ctan /macros/luatex/latex/placeat -catalogue-date 2015-03-30 22:55:45 +0200 -catalogue-license lppl1.3 -catalogue-version 0.1 - -name placeins-plain -category Package -revision 15878 -shortdesc Insertions that keep their place. -relocated 1 -longdesc This TeX file provides various mechanisms (for plain TeX and -longdesc close relatives) to let insertions (footnotes, topins, pageins, -longdesc etc.) float within their appropriate section, but to prevent -longdesc them from intruding into the following section, even when -longdesc sections do not normally begin a new page. (If your sections -longdesc normally begin a new page, just use \supereject to flush out -longdesc insertions.) -runfiles size=2 - RELOC/tex/plain/placeins-plain/placeins.tex -catalogue-ctan /macros/plain/contrib/misc/placeins.tex -catalogue-date 2012-06-08 16:04:26 +0200 -catalogue-license pd -catalogue-version 2.0 - -name placeins -category Package -revision 19848 -shortdesc Control float placement. -relocated 1 -longdesc Defines a \FloatBarrier command, beyond which floats may not -longdesc pass; useful, for example, to ensure all floats for a section -longdesc appear before the next \section command. -runfiles size=1 - RELOC/tex/latex/placeins/placeins.sty -docfiles size=65 - RELOC/doc/latex/placeins/placeins-doc.pdf - RELOC/doc/latex/placeins/placeins-doc.tex - RELOC/doc/latex/placeins/placeins.txt -catalogue-ctan /macros/latex/contrib/placeins -catalogue-date 2012-06-08 16:04:26 +0200 -catalogue-license pd -catalogue-version 2.2 - -name plain-doc -category Package -revision 28424 -catalogue csname-doc -shortdesc A list of plain.tex cs names. -relocated 1 -longdesc The document constitutes a list of every control sequence name -longdesc (csname) described in the TeXbook, together with an indication -longdesc of whether the csname is a primitive TeX command, or is defined -longdesc in plain.tex -docfiles size=5 - RELOC/doc/plain/plain-doc/csname.txt -catalogue-ctan /info/plain-doc/csname.txt -catalogue-date 2012-04-25 15:23:25 +0200 -catalogue-license pd - -name plainpkg -category Package -revision 27765 -shortdesc A minimal method for making generic packages. -relocated 1 -longdesc The package provides a minimal method for making generic (i.e., -longdesc TeX-format-independent) packaged, combining maybeload -longdesc functionality, fallback definitions for LaTeX \ProvidesPackage -longdesc and \RequirePackage functionality, and handling of arbitrary -longdesc (multiple) "private letters" (analagous LaTeX packages' use of -longdesc "@") in nested package files. The documentation contains a -longdesc central reference for making and using generic packages based -longdesc on the package. -runfiles size=2 - RELOC/tex/generic/plainpkg/plainpkg.tex -docfiles size=99 - RELOC/doc/generic/plainpkg/README - RELOC/doc/generic/plainpkg/SrcFILEs.txt - RELOC/doc/generic/plainpkg/plainpkg-doc.pdf -srcfiles size=5 - RELOC/source/generic/plainpkg/plainpkg-doc.tex - RELOC/source/generic/plainpkg/srcfiles.tex -catalogue-ctan /macros/generic/plainpkg -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.4a - -name plain -category Package -revision 37747 -shortdesc The Plain TeX format. -relocated 1 -longdesc Contains files used to build the Plain TeX format, as described -longdesc in the TeXbook, together with various supporting files (some -longdesc also discussed in the book). -runfiles size=1261 - RELOC/makeindex/plain/plaintex.ist - RELOC/tex/plain/base/fontchart.tex - RELOC/tex/plain/base/gkpmac.tex - RELOC/tex/plain/base/letter.tex - RELOC/tex/plain/base/list.tex - RELOC/tex/plain/base/llist.tex - RELOC/tex/plain/base/mptmac.tex - RELOC/tex/plain/base/picmac.tex - RELOC/tex/plain/base/plain.tex - RELOC/tex/plain/base/wlist.tex - RELOC/tex/plain/config/aleph.ini - RELOC/tex/plain/config/bplain.ini - RELOC/tex/plain/config/dviluatex.ini - RELOC/tex/plain/config/etex.ini - RELOC/tex/plain/config/luatex.ini - RELOC/tex/plain/config/omega.ini - RELOC/tex/plain/config/pdfbplain.ini - RELOC/tex/plain/config/pdfetex.ini - RELOC/tex/plain/config/pdftexmagfix.tex - RELOC/tex/plain/config/tex.ini - RELOC/tex/plain/config/unicode-letters.def - RELOC/tex/plain/config/xetex.ini -catalogue-ctan /macros/plain/base -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license knuth -catalogue-topics format -catalogue-version 3.141592653 - -name plantslabels -category Package -revision 29803 -shortdesc Write labels for plants. -relocated 1 -longdesc The package defines a command \plant, which has three mandatory -longdesc and seven optional argument. The package uses the labels -runfiles size=1 - RELOC/tex/latex/plantslabels/plantslabels.sty -docfiles size=94 - RELOC/doc/latex/plantslabels/README - RELOC/doc/latex/plantslabels/doc/pdf/plantslabels.pdf - RELOC/doc/latex/plantslabels/doc/tex/Makefile - RELOC/doc/latex/plantslabels/doc/tex/perso.ist - RELOC/doc/latex/plantslabels/doc/tex/plantslabels.forlisting - RELOC/doc/latex/plantslabels/doc/tex/plantslabels.tex - RELOC/doc/latex/plantslabels/example/pdf/example.pdf - RELOC/doc/latex/plantslabels/example/tex/cactus.eps - RELOC/doc/latex/plantslabels/example/tex/example.tex -catalogue-ctan /macros/latex/contrib/plantslabels -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 - -name plari -category Package -revision 15878 -shortdesc Typesetting stageplay scripts. -relocated 1 -longdesc Plari (the name comes from the Finnish usage for the working -longdesc copy of a play) is a report-alike class, without section -longdesc headings, and with paragraphs vertically separated rather than -longdesc indented. -runfiles size=1 - RELOC/tex/latex/plari/plari.cls -docfiles size=41 - RELOC/doc/latex/plari/COPYING - RELOC/doc/latex/plari/README - RELOC/doc/latex/plari/plari.pdf -srcfiles size=4 - RELOC/source/latex/plari/Makefile - RELOC/source/latex/plari/plari.dtx - RELOC/source/latex/plari/plari.ins -catalogue-ctan /macros/latex/contrib/plari -catalogue-date 2012-06-08 17:19:18 +0200 -catalogue-license gpl - -name plates -category Package -revision 15878 -shortdesc Arrange for "plates" sections of documents. -relocated 1 -longdesc The plates package provides a simple facility for inserting -longdesc colour figures in a document when they should be gathered and -longdesc printed together as in a book's section of colour plates. The -longdesc package provides a plate environment that takes the place of -longdesc the figure environment for such colour images. -runfiles size=5 - RELOC/tex/latex/plates/endplate.sty - RELOC/tex/latex/plates/plates.sty -docfiles size=26 - RELOC/doc/latex/plates/README - RELOC/doc/latex/plates/plates.pdf - RELOC/doc/latex/plates/plates.tex -catalogue-ctan /macros/latex/contrib/plates -catalogue-date 2012-06-08 17:19:18 +0200 -catalogue-license lppl -catalogue-version 0.1 - -name playfair -category Package -revision 34236 -shortdesc Playfair Display fonts with LaTeX support. -relocated 1 -longdesc Playfair Display is well suited for titling and headlines. It -longdesc has an extra large x-height and short descenders. It can be set -longdesc with no leading if space is tight, for instance in news -longdesc headlines, or for stylistic effect in titles. Capitals are -longdesc extra short, and only very slightly heavier than the lowercase -longdesc characters. This helps achieve a more even typographical colour -longdesc when typesetting proper nouns and initialisms. -execute addMap PlayfairDisplay.map -runfiles size=1224 - RELOC/fonts/enc/dvips/playfair/plf_5ewtu2.enc - RELOC/fonts/enc/dvips/playfair/plf_6bqc7d.enc - RELOC/fonts/enc/dvips/playfair/plf_723q3k.enc - RELOC/fonts/enc/dvips/playfair/plf_aehru5.enc - RELOC/fonts/enc/dvips/playfair/plf_apfun2.enc - RELOC/fonts/enc/dvips/playfair/plf_c2cruh.enc - RELOC/fonts/enc/dvips/playfair/plf_cgf2ku.enc - RELOC/fonts/enc/dvips/playfair/plf_ev34te.enc - RELOC/fonts/enc/dvips/playfair/plf_ilriiw.enc - RELOC/fonts/enc/dvips/playfair/plf_j6ohis.enc - RELOC/fonts/enc/dvips/playfair/plf_ouuek2.enc - RELOC/fonts/enc/dvips/playfair/plf_qjvs44.enc - RELOC/fonts/enc/dvips/playfair/plf_rmgfzq.enc - RELOC/fonts/enc/dvips/playfair/plf_tcbmed.enc - RELOC/fonts/enc/dvips/playfair/plf_tff5oq.enc - RELOC/fonts/enc/dvips/playfair/plf_ujy7vm.enc - RELOC/fonts/enc/dvips/playfair/plf_vgw77z.enc - RELOC/fonts/enc/dvips/playfair/plf_vw64ij.enc - RELOC/fonts/enc/dvips/playfair/plf_ybdqh4.enc - RELOC/fonts/enc/dvips/playfair/plf_zcb4ya.enc - RELOC/fonts/map/dvips/playfair/PlayfairDisplay.map - RELOC/fonts/opentype/public/playfair/PlayfairDisplay-Black.otf - RELOC/fonts/opentype/public/playfair/PlayfairDisplay-BlackItalic.otf - RELOC/fonts/opentype/public/playfair/PlayfairDisplay-Bold.otf - RELOC/fonts/opentype/public/playfair/PlayfairDisplay-BoldItalic.otf - RELOC/fonts/opentype/public/playfair/PlayfairDisplay-Italic.otf - RELOC/fonts/opentype/public/playfair/PlayfairDisplay-Regular.otf - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-sc-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-sc-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-sc-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-sc-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-ts1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-ts1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-sc-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-sc-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-sc-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-sc-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-ts1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-ts1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-sup-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-sup-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-sup-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-sup-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-sup-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-ts1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-ts1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-sup-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-sup-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-sup-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-sup-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-sup-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-sc-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-sc-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-sc-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-sc-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-ts1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-ts1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-sc-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-sc-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-sc-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-sc-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-ts1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-ts1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-sup-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-sup-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-sup-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-sup-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-sup-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-ts1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-ts1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-sup-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-sup-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-sup-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-sup-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-sup-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-sc-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-sc-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-sc-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-ts1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-ts1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-sc-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-sc-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-sc-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-ts1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-ts1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-sup-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-sup-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-sup-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-sup-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-sup-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-sc-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-sc-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-sc-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-sc-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-ts1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-ts1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-sc-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-sc-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-sc-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-sc-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-t1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-ts1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-ts1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-sup-ly1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-sup-ly1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-sup-ot1.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-sup-t1--base.tfm - RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-sup-t1.tfm - RELOC/fonts/type1/public/playfair/PlayfairDisplay-Black.pfb - RELOC/fonts/type1/public/playfair/PlayfairDisplay-BlackItalic.pfb - RELOC/fonts/type1/public/playfair/PlayfairDisplay-Bold.pfb - RELOC/fonts/type1/public/playfair/PlayfairDisplay-BoldItalic.pfb - RELOC/fonts/type1/public/playfair/PlayfairDisplay-Italic.pfb - RELOC/fonts/type1/public/playfair/PlayfairDisplay-Regular.pfb - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-lf-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-lf-sc-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-lf-sc-ot1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-lf-sc-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-lf-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-lf-ts1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-osf-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-osf-sc-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-osf-sc-ot1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-osf-sc-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-osf-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-osf-ts1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-sup-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-sup-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-lf-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-ot1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-lf-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-lf-ts1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-osf-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-ot1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-osf-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-osf-ts1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-sup-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-sup-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-lf-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-lf-sc-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-lf-sc-ot1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-lf-sc-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-lf-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-lf-ts1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-osf-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-osf-sc-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-osf-sc-ot1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-osf-sc-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-osf-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-osf-ts1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-sup-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-sup-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-lf-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-ot1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-lf-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-lf-ts1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-osf-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-ot1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-osf-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-osf-ts1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-sup-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-sup-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-lf-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-lf-sc-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-lf-sc-ot1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-lf-sc-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-lf-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-lf-ts1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-osf-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-osf-sc-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-osf-sc-ot1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-osf-sc-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-osf-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-osf-ts1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-sup-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-sup-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-lf-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-lf-sc-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-lf-sc-ot1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-lf-sc-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-lf-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-lf-ts1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-osf-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-osf-sc-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-osf-sc-ot1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-osf-sc-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-osf-t1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-osf-ts1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-sup-ly1.vf - RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-sup-t1.vf - RELOC/tex/latex/playfair/LY1PlayfairDisplay-LF.fd - RELOC/tex/latex/playfair/LY1PlayfairDisplay-OsF.fd - RELOC/tex/latex/playfair/LY1PlayfairDisplay-Sup.fd - RELOC/tex/latex/playfair/OT1PlayfairDisplay-LF.fd - RELOC/tex/latex/playfair/OT1PlayfairDisplay-OsF.fd - RELOC/tex/latex/playfair/OT1PlayfairDisplay-Sup.fd - RELOC/tex/latex/playfair/PlayfairDisplay.sty - RELOC/tex/latex/playfair/T1PlayfairDisplay-LF.fd - RELOC/tex/latex/playfair/T1PlayfairDisplay-OsF.fd - RELOC/tex/latex/playfair/T1PlayfairDisplay-Sup.fd - RELOC/tex/latex/playfair/TS1PlayfairDisplay-LF.fd - RELOC/tex/latex/playfair/TS1PlayfairDisplay-OsF.fd -docfiles size=30 - RELOC/doc/fonts/playfair/OFL.txt - RELOC/doc/fonts/playfair/Playfair_Display_A4_specimen.pdf - RELOC/doc/fonts/playfair/README - RELOC/doc/fonts/playfair/playfair-samples.pdf - RELOC/doc/fonts/playfair/playfair-samples.tex -catalogue-ctan /fonts/playfair -catalogue-date 2015-03-30 22:55:45 +0200 -catalogue-license ofl - -name play -category Package -revision 15878 -shortdesc Typeset drama using LaTeX. -relocated 1 -longdesc A class and style file that supports the typesetting of plays, -longdesc including options for line numbering. -runfiles size=3 - RELOC/tex/latex/play/play.cls - RELOC/tex/latex/play/play.sty -docfiles size=1 - RELOC/doc/latex/play/README -srcfiles size=4 - RELOC/source/latex/play/play.dtx - RELOC/source/latex/play/play.ins -catalogue-ctan /macros/latex/contrib/play -catalogue-date 2012-05-31 18:08:53 +0200 -catalogue-license lppl - -name plipsum -category Package -revision 30353 -shortdesc 'Lorem ipsum' for Plain TeX developers. -relocated 1 -longdesc The package provides a paragraph generator designed for use in -longdesc Plain TeX documents. The paragraphs generated contain many 'f- -longdesc groups' (ff, fl etc.) so the text can act as a test of the -longdesc ligatures of the font in use. -runfiles size=37 - RELOC/tex/plain/plipsum/plipsum.tex -docfiles size=101 - RELOC/doc/plain/plipsum/README - RELOC/doc/plain/plipsum/compile.sh - RELOC/doc/plain/plipsum/plipsum-doc.pdf - RELOC/doc/plain/plipsum/plipsum.nw - RELOC/doc/plain/plipsum/pliptest.tex - RELOC/doc/plain/plipsum/stripc -catalogue-ctan /macros/plain/contrib/plipsum -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 4.3 - -name plnfss -category Package -revision 15878 -shortdesc Font selection for Plain TeX. -relocated 1 -longdesc Plnfss is a set of macros to provide easy font access (somewhat -longdesc similar to NFSS but with some limitations) with Plain TeX. -longdesc Plnfss can automatically make use of PSNFSS fd files, i.e., -longdesc when an Adobe Type 1 is used the relevant fd file will be -longdesc loaded automatically. For cmr-like fonts (ec, vnr, csr or plr -longdesc fonts), a special format called pfd (plain fd) is required and -longdesc must be loaded manually. See ot1cmr.pfd for further -longdesc information. -runfiles size=17 - RELOC/tex/plain/plnfss/MIKmathf.tex - RELOC/tex/plain/plnfss/ams.pfd - RELOC/tex/plain/plnfss/il2cm.pfd - RELOC/tex/plain/plnfss/il2cmr.pfd - RELOC/tex/plain/plnfss/ly1lm.pfd - RELOC/tex/plain/plnfss/ot1cm.pfd - RELOC/tex/plain/plnfss/ot1cmr.pfd - RELOC/tex/plain/plnfss/ot4cm.pfd - RELOC/tex/plain/plnfss/plnfss.tex - RELOC/tex/plain/plnfss/qxlm.pfd - RELOC/tex/plain/plnfss/t1lm.pfd - RELOC/tex/plain/plnfss/t5cm.pfd - RELOC/tex/plain/plnfss/t5cmr.pfd - RELOC/tex/plain/plnfss/t5lm.pfd - RELOC/tex/plain/plnfss/ts1lm.pfd -docfiles size=7 - RELOC/doc/plain/plnfss/LPPL.txt - RELOC/doc/plain/plnfss/plnfss.txt - RELOC/doc/plain/plnfss/test-plnfss.tex -catalogue-ctan /macros/plain/plnfss -catalogue-date 2012-06-08 17:19:18 +0200 -catalogue-license lppl -catalogue-version 1.1 - -name plstmary -category Package -revision 31088 -shortdesc St. Mary's Road font support for plain TeX. -relocated 1 -longdesc The package provides commands to produce all the symbols of the -longdesc St Mary's Road fonts, in a Plain TeX environment. -runfiles size=2 - RELOC/tex/plain/plstmary/stmary.tex -docfiles size=41 - RELOC/doc/plain/plstmary/README - RELOC/doc/plain/plstmary/plstmary-doc.pdf - RELOC/doc/plain/plstmary/plstmary-doc.tex -catalogue-ctan /macros/plain/contrib/plstmary -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license pd -catalogue-version 0.5c - -name pl -category Package -revision 36012 -catalogue pl-mf -shortdesc Polish extension of Computer Modern fonts. -relocated 1 -longdesc The Polish extension of the Computer Modern fonts (compatible -longdesc with CM itself) for use with Polish TeX formats. The fonts were -longdesc originally a part of the MeX distribution (and they are still -longdesc available that way). -execute addMixedMap plother.map -execute addMixedMap pltext.map -runfiles size=1109 - RELOC/dvips/pl/config.pl - RELOC/fonts/afm/public/pl/plb10.afm - RELOC/fonts/afm/public/pl/plbsy10.afm - RELOC/fonts/afm/public/pl/plbx10.afm - RELOC/fonts/afm/public/pl/plbx12.afm - RELOC/fonts/afm/public/pl/plbx5.afm - RELOC/fonts/afm/public/pl/plbx6.afm - RELOC/fonts/afm/public/pl/plbx7.afm - RELOC/fonts/afm/public/pl/plbx8.afm - RELOC/fonts/afm/public/pl/plbx9.afm - RELOC/fonts/afm/public/pl/plbxsl10.afm - RELOC/fonts/afm/public/pl/plbxti10.afm - RELOC/fonts/afm/public/pl/plcsc10.afm - RELOC/fonts/afm/public/pl/pldunh10.afm - RELOC/fonts/afm/public/pl/plex10.afm - RELOC/fonts/afm/public/pl/plex9.afm - RELOC/fonts/afm/public/pl/plff10.afm - RELOC/fonts/afm/public/pl/plfi10.afm - RELOC/fonts/afm/public/pl/plfib8.afm - RELOC/fonts/afm/public/pl/plinch.afm - RELOC/fonts/afm/public/pl/plitt10.afm - RELOC/fonts/afm/public/pl/plmi10.afm - RELOC/fonts/afm/public/pl/plmi12.afm - RELOC/fonts/afm/public/pl/plmi5.afm - RELOC/fonts/afm/public/pl/plmi6.afm - RELOC/fonts/afm/public/pl/plmi7.afm - RELOC/fonts/afm/public/pl/plmi8.afm - RELOC/fonts/afm/public/pl/plmi9.afm - RELOC/fonts/afm/public/pl/plmib10.afm - RELOC/fonts/afm/public/pl/plr10.afm - RELOC/fonts/afm/public/pl/plr12.afm - RELOC/fonts/afm/public/pl/plr17.afm - RELOC/fonts/afm/public/pl/plr5.afm - RELOC/fonts/afm/public/pl/plr6.afm - RELOC/fonts/afm/public/pl/plr7.afm - RELOC/fonts/afm/public/pl/plr8.afm - RELOC/fonts/afm/public/pl/plr9.afm - RELOC/fonts/afm/public/pl/plsl10.afm - RELOC/fonts/afm/public/pl/plsl12.afm - RELOC/fonts/afm/public/pl/plsl8.afm - RELOC/fonts/afm/public/pl/plsl9.afm - RELOC/fonts/afm/public/pl/plsltt10.afm - RELOC/fonts/afm/public/pl/plss10.afm - RELOC/fonts/afm/public/pl/plss12.afm - RELOC/fonts/afm/public/pl/plss17.afm - RELOC/fonts/afm/public/pl/plss8.afm - RELOC/fonts/afm/public/pl/plss9.afm - RELOC/fonts/afm/public/pl/plssbi10.afm - RELOC/fonts/afm/public/pl/plssbx10.afm - RELOC/fonts/afm/public/pl/plssdc10.afm - RELOC/fonts/afm/public/pl/plssi10.afm - RELOC/fonts/afm/public/pl/plssi12.afm - RELOC/fonts/afm/public/pl/plssi17.afm - RELOC/fonts/afm/public/pl/plssi8.afm - RELOC/fonts/afm/public/pl/plssi9.afm - RELOC/fonts/afm/public/pl/plssq8.afm - RELOC/fonts/afm/public/pl/plssqi8.afm - RELOC/fonts/afm/public/pl/plsy10.afm - RELOC/fonts/afm/public/pl/plsy5.afm - RELOC/fonts/afm/public/pl/plsy6.afm - RELOC/fonts/afm/public/pl/plsy7.afm - RELOC/fonts/afm/public/pl/plsy8.afm - RELOC/fonts/afm/public/pl/plsy9.afm - RELOC/fonts/afm/public/pl/pltcsc10.afm - RELOC/fonts/afm/public/pl/pltex10.afm - RELOC/fonts/afm/public/pl/pltex8.afm - RELOC/fonts/afm/public/pl/pltex9.afm - RELOC/fonts/afm/public/pl/plti10.afm - RELOC/fonts/afm/public/pl/plti12.afm - RELOC/fonts/afm/public/pl/plti7.afm - RELOC/fonts/afm/public/pl/plti8.afm - RELOC/fonts/afm/public/pl/plti9.afm - RELOC/fonts/afm/public/pl/pltt10.afm - RELOC/fonts/afm/public/pl/pltt12.afm - RELOC/fonts/afm/public/pl/pltt8.afm - RELOC/fonts/afm/public/pl/pltt9.afm - RELOC/fonts/afm/public/pl/plu10.afm - RELOC/fonts/afm/public/pl/plvtt10.afm - RELOC/fonts/enc/dvips/pl/plin.enc - RELOC/fonts/enc/dvips/pl/plit.enc - RELOC/fonts/enc/dvips/pl/plitt.enc - RELOC/fonts/enc/dvips/pl/plme.enc - RELOC/fonts/enc/dvips/pl/plmi.enc - RELOC/fonts/enc/dvips/pl/plms.enc - RELOC/fonts/enc/dvips/pl/plrm.enc - RELOC/fonts/enc/dvips/pl/plsc.enc - RELOC/fonts/enc/dvips/pl/plte.enc - RELOC/fonts/enc/dvips/pl/pltt.enc - RELOC/fonts/map/dvips/pl/plother.map - RELOC/fonts/map/dvips/pl/pltext.map - RELOC/fonts/source/public/pl/cmssbi10.mf - RELOC/fonts/source/public/pl/dlr10.mf - RELOC/fonts/source/public/pl/fik_mik.mf - RELOC/fonts/source/public/pl/pl.mft - RELOC/fonts/source/public/pl/pl_cud.mf - RELOC/fonts/source/public/pl/pl_dl.mf - RELOC/fonts/source/public/pl/pl_dod.mf - RELOC/fonts/source/public/pl/pl_ml.mf - RELOC/fonts/source/public/pl/pl_mlk.mf - RELOC/fonts/source/public/pl/pl_sym.mf - RELOC/fonts/source/public/pl/plb10.mf - RELOC/fonts/source/public/pl/plbsy10.mf - RELOC/fonts/source/public/pl/plbsy5.mf - RELOC/fonts/source/public/pl/plbsy7.mf - RELOC/fonts/source/public/pl/plbx10.mf - RELOC/fonts/source/public/pl/plbx12.mf - RELOC/fonts/source/public/pl/plbx5.mf - RELOC/fonts/source/public/pl/plbx6.mf - RELOC/fonts/source/public/pl/plbx7.mf - RELOC/fonts/source/public/pl/plbx8.mf - RELOC/fonts/source/public/pl/plbx9.mf - RELOC/fonts/source/public/pl/plbxsl10.mf - RELOC/fonts/source/public/pl/plbxti10.mf - RELOC/fonts/source/public/pl/plcsc10.mf - RELOC/fonts/source/public/pl/pldunh10.mf - RELOC/fonts/source/public/pl/plex10.mf - RELOC/fonts/source/public/pl/plff10.mf - RELOC/fonts/source/public/pl/plfi10.mf - RELOC/fonts/source/public/pl/plfib8.mf - RELOC/fonts/source/public/pl/plinch.mf - RELOC/fonts/source/public/pl/plitt10.mf - RELOC/fonts/source/public/pl/plmi10.mf - RELOC/fonts/source/public/pl/plmi12.mf - RELOC/fonts/source/public/pl/plmi5.mf - RELOC/fonts/source/public/pl/plmi6.mf - RELOC/fonts/source/public/pl/plmi7.mf - RELOC/fonts/source/public/pl/plmi8.mf - RELOC/fonts/source/public/pl/plmi9.mf - RELOC/fonts/source/public/pl/plmib10.mf - RELOC/fonts/source/public/pl/plmib5.mf - RELOC/fonts/source/public/pl/plmib7.mf - RELOC/fonts/source/public/pl/plr10.mf - RELOC/fonts/source/public/pl/plr12.mf - RELOC/fonts/source/public/pl/plr17.mf - RELOC/fonts/source/public/pl/plr5.mf - RELOC/fonts/source/public/pl/plr6.mf - RELOC/fonts/source/public/pl/plr7.mf - RELOC/fonts/source/public/pl/plr8.mf - RELOC/fonts/source/public/pl/plr9.mf - RELOC/fonts/source/public/pl/plsl10.mf - RELOC/fonts/source/public/pl/plsl12.mf - RELOC/fonts/source/public/pl/plsl8.mf - RELOC/fonts/source/public/pl/plsl9.mf - RELOC/fonts/source/public/pl/plsltt10.mf - RELOC/fonts/source/public/pl/plss10.mf - RELOC/fonts/source/public/pl/plss12.mf - RELOC/fonts/source/public/pl/plss17.mf - RELOC/fonts/source/public/pl/plss8.mf - RELOC/fonts/source/public/pl/plss9.mf - RELOC/fonts/source/public/pl/plssbi10.mf - RELOC/fonts/source/public/pl/plssbx10.mf - RELOC/fonts/source/public/pl/plssdc10.mf - RELOC/fonts/source/public/pl/plssi10.mf - RELOC/fonts/source/public/pl/plssi12.mf - RELOC/fonts/source/public/pl/plssi17.mf - RELOC/fonts/source/public/pl/plssi8.mf - RELOC/fonts/source/public/pl/plssi9.mf - RELOC/fonts/source/public/pl/plssq8.mf - RELOC/fonts/source/public/pl/plssqi8.mf - RELOC/fonts/source/public/pl/plsy10.mf - RELOC/fonts/source/public/pl/plsy5.mf - RELOC/fonts/source/public/pl/plsy6.mf - RELOC/fonts/source/public/pl/plsy7.mf - RELOC/fonts/source/public/pl/plsy8.mf - RELOC/fonts/source/public/pl/plsy9.mf - RELOC/fonts/source/public/pl/pltcsc10.mf - RELOC/fonts/source/public/pl/pltex10.mf - RELOC/fonts/source/public/pl/pltex8.mf - RELOC/fonts/source/public/pl/pltex9.mf - RELOC/fonts/source/public/pl/plti10.mf - RELOC/fonts/source/public/pl/plti12.mf - RELOC/fonts/source/public/pl/plti7.mf - RELOC/fonts/source/public/pl/plti8.mf - RELOC/fonts/source/public/pl/plti9.mf - RELOC/fonts/source/public/pl/pltt10.mf - RELOC/fonts/source/public/pl/pltt12.mf - RELOC/fonts/source/public/pl/pltt8.mf - RELOC/fonts/source/public/pl/pltt9.mf - RELOC/fonts/source/public/pl/plu10.mf - RELOC/fonts/source/public/pl/plvtt10.mf - RELOC/fonts/source/public/pl/polan.mf - RELOC/fonts/source/public/pl/polkap.mf - RELOC/fonts/source/public/pl/polkur.mf - RELOC/fonts/source/public/pl/polmat.mf - RELOC/fonts/source/public/pl/poltyt.mf - RELOC/fonts/tfm/public/pl/plb10.tfm - RELOC/fonts/tfm/public/pl/plbsy10.tfm - RELOC/fonts/tfm/public/pl/plbsy5.tfm - RELOC/fonts/tfm/public/pl/plbsy7.tfm - RELOC/fonts/tfm/public/pl/plbx10.tfm - RELOC/fonts/tfm/public/pl/plbx12.tfm - RELOC/fonts/tfm/public/pl/plbx5.tfm - RELOC/fonts/tfm/public/pl/plbx6.tfm - RELOC/fonts/tfm/public/pl/plbx7.tfm - RELOC/fonts/tfm/public/pl/plbx8.tfm - RELOC/fonts/tfm/public/pl/plbx9.tfm - RELOC/fonts/tfm/public/pl/plbxsl10.tfm - RELOC/fonts/tfm/public/pl/plbxti10.tfm - RELOC/fonts/tfm/public/pl/plcsc10.tfm - RELOC/fonts/tfm/public/pl/pldunh10.tfm - RELOC/fonts/tfm/public/pl/plex10.tfm - RELOC/fonts/tfm/public/pl/plex9.tfm - RELOC/fonts/tfm/public/pl/plff10.tfm - RELOC/fonts/tfm/public/pl/plfi10.tfm - RELOC/fonts/tfm/public/pl/plfib8.tfm - RELOC/fonts/tfm/public/pl/plinch.tfm - RELOC/fonts/tfm/public/pl/plitt10.tfm - RELOC/fonts/tfm/public/pl/plmi10.tfm - RELOC/fonts/tfm/public/pl/plmi12.tfm - RELOC/fonts/tfm/public/pl/plmi5.tfm - RELOC/fonts/tfm/public/pl/plmi6.tfm - RELOC/fonts/tfm/public/pl/plmi7.tfm - RELOC/fonts/tfm/public/pl/plmi8.tfm - RELOC/fonts/tfm/public/pl/plmi9.tfm - RELOC/fonts/tfm/public/pl/plmib10.tfm - RELOC/fonts/tfm/public/pl/plmib5.tfm - RELOC/fonts/tfm/public/pl/plmib7.tfm - RELOC/fonts/tfm/public/pl/plr10.tfm - RELOC/fonts/tfm/public/pl/plr12.tfm - RELOC/fonts/tfm/public/pl/plr17.tfm - RELOC/fonts/tfm/public/pl/plr5.tfm - RELOC/fonts/tfm/public/pl/plr6.tfm - RELOC/fonts/tfm/public/pl/plr7.tfm - RELOC/fonts/tfm/public/pl/plr8.tfm - RELOC/fonts/tfm/public/pl/plr9.tfm - RELOC/fonts/tfm/public/pl/plsl10.tfm - RELOC/fonts/tfm/public/pl/plsl12.tfm - RELOC/fonts/tfm/public/pl/plsl8.tfm - RELOC/fonts/tfm/public/pl/plsl9.tfm - RELOC/fonts/tfm/public/pl/plsltt10.tfm - RELOC/fonts/tfm/public/pl/plss10.tfm - RELOC/fonts/tfm/public/pl/plss12.tfm - RELOC/fonts/tfm/public/pl/plss17.tfm - RELOC/fonts/tfm/public/pl/plss8.tfm - RELOC/fonts/tfm/public/pl/plss9.tfm - RELOC/fonts/tfm/public/pl/plssbi10.tfm - RELOC/fonts/tfm/public/pl/plssbx10.tfm - RELOC/fonts/tfm/public/pl/plssdc10.tfm - RELOC/fonts/tfm/public/pl/plssi10.tfm - RELOC/fonts/tfm/public/pl/plssi12.tfm - RELOC/fonts/tfm/public/pl/plssi17.tfm - RELOC/fonts/tfm/public/pl/plssi8.tfm - RELOC/fonts/tfm/public/pl/plssi9.tfm - RELOC/fonts/tfm/public/pl/plssq8.tfm - RELOC/fonts/tfm/public/pl/plssqi8.tfm - RELOC/fonts/tfm/public/pl/plsy10.tfm - RELOC/fonts/tfm/public/pl/plsy5.tfm - RELOC/fonts/tfm/public/pl/plsy6.tfm - RELOC/fonts/tfm/public/pl/plsy7.tfm - RELOC/fonts/tfm/public/pl/plsy8.tfm - RELOC/fonts/tfm/public/pl/plsy9.tfm - RELOC/fonts/tfm/public/pl/pltcsc10.tfm - RELOC/fonts/tfm/public/pl/pltex10.tfm - RELOC/fonts/tfm/public/pl/pltex8.tfm - RELOC/fonts/tfm/public/pl/pltex9.tfm - RELOC/fonts/tfm/public/pl/plti10.tfm - RELOC/fonts/tfm/public/pl/plti12.tfm - RELOC/fonts/tfm/public/pl/plti7.tfm - RELOC/fonts/tfm/public/pl/plti8.tfm - RELOC/fonts/tfm/public/pl/plti9.tfm - RELOC/fonts/tfm/public/pl/pltt10.tfm - RELOC/fonts/tfm/public/pl/pltt12.tfm - RELOC/fonts/tfm/public/pl/pltt8.tfm - RELOC/fonts/tfm/public/pl/pltt9.tfm - RELOC/fonts/tfm/public/pl/plu10.tfm - RELOC/fonts/tfm/public/pl/plvtt10.tfm - RELOC/fonts/type1/public/pl/plb10.pfb - RELOC/fonts/type1/public/pl/plb10.pfm - RELOC/fonts/type1/public/pl/plbsy10.pfb - RELOC/fonts/type1/public/pl/plbsy10.pfm - RELOC/fonts/type1/public/pl/plbx10.pfb - RELOC/fonts/type1/public/pl/plbx10.pfm - RELOC/fonts/type1/public/pl/plbx12.pfb - RELOC/fonts/type1/public/pl/plbx12.pfm - RELOC/fonts/type1/public/pl/plbx5.pfb - RELOC/fonts/type1/public/pl/plbx5.pfm - RELOC/fonts/type1/public/pl/plbx6.pfb - RELOC/fonts/type1/public/pl/plbx6.pfm - RELOC/fonts/type1/public/pl/plbx7.pfb - RELOC/fonts/type1/public/pl/plbx7.pfm - RELOC/fonts/type1/public/pl/plbx8.pfb - RELOC/fonts/type1/public/pl/plbx8.pfm - RELOC/fonts/type1/public/pl/plbx9.pfb - RELOC/fonts/type1/public/pl/plbx9.pfm - RELOC/fonts/type1/public/pl/plbxsl10.pfb - RELOC/fonts/type1/public/pl/plbxsl10.pfm - RELOC/fonts/type1/public/pl/plbxti10.pfb - RELOC/fonts/type1/public/pl/plbxti10.pfm - RELOC/fonts/type1/public/pl/plcsc10.pfb - RELOC/fonts/type1/public/pl/plcsc10.pfm - RELOC/fonts/type1/public/pl/pldunh10.pfb - RELOC/fonts/type1/public/pl/pldunh10.pfm - RELOC/fonts/type1/public/pl/plex10.pfb - RELOC/fonts/type1/public/pl/plex10.pfm - RELOC/fonts/type1/public/pl/plex9.pfb - RELOC/fonts/type1/public/pl/plex9.pfm - RELOC/fonts/type1/public/pl/plff10.pfb - RELOC/fonts/type1/public/pl/plff10.pfm - RELOC/fonts/type1/public/pl/plfi10.pfb - RELOC/fonts/type1/public/pl/plfi10.pfm - RELOC/fonts/type1/public/pl/plfib8.pfb - RELOC/fonts/type1/public/pl/plfib8.pfm - RELOC/fonts/type1/public/pl/plinch.pfb - RELOC/fonts/type1/public/pl/plinch.pfm - RELOC/fonts/type1/public/pl/plitt10.pfb - RELOC/fonts/type1/public/pl/plitt10.pfm - RELOC/fonts/type1/public/pl/plmi10.pfb - RELOC/fonts/type1/public/pl/plmi10.pfm - RELOC/fonts/type1/public/pl/plmi12.pfb - RELOC/fonts/type1/public/pl/plmi12.pfm - RELOC/fonts/type1/public/pl/plmi5.pfb - RELOC/fonts/type1/public/pl/plmi5.pfm - RELOC/fonts/type1/public/pl/plmi6.pfb - RELOC/fonts/type1/public/pl/plmi6.pfm - RELOC/fonts/type1/public/pl/plmi7.pfb - RELOC/fonts/type1/public/pl/plmi7.pfm - RELOC/fonts/type1/public/pl/plmi8.pfb - RELOC/fonts/type1/public/pl/plmi8.pfm - RELOC/fonts/type1/public/pl/plmi9.pfb - RELOC/fonts/type1/public/pl/plmi9.pfm - RELOC/fonts/type1/public/pl/plmib10.pfb - RELOC/fonts/type1/public/pl/plmib10.pfm - RELOC/fonts/type1/public/pl/plr10.pfb - RELOC/fonts/type1/public/pl/plr10.pfm - RELOC/fonts/type1/public/pl/plr12.pfb - RELOC/fonts/type1/public/pl/plr12.pfm - RELOC/fonts/type1/public/pl/plr17.pfb - RELOC/fonts/type1/public/pl/plr17.pfm - RELOC/fonts/type1/public/pl/plr5.pfb - RELOC/fonts/type1/public/pl/plr5.pfm - RELOC/fonts/type1/public/pl/plr6.pfb - RELOC/fonts/type1/public/pl/plr6.pfm - RELOC/fonts/type1/public/pl/plr7.pfb - RELOC/fonts/type1/public/pl/plr7.pfm - RELOC/fonts/type1/public/pl/plr8.pfb - RELOC/fonts/type1/public/pl/plr8.pfm - RELOC/fonts/type1/public/pl/plr9.pfb - RELOC/fonts/type1/public/pl/plr9.pfm - RELOC/fonts/type1/public/pl/plsl10.pfb - RELOC/fonts/type1/public/pl/plsl10.pfm - RELOC/fonts/type1/public/pl/plsl12.pfb - RELOC/fonts/type1/public/pl/plsl12.pfm - RELOC/fonts/type1/public/pl/plsl8.pfb - RELOC/fonts/type1/public/pl/plsl8.pfm - RELOC/fonts/type1/public/pl/plsl9.pfb - RELOC/fonts/type1/public/pl/plsl9.pfm - RELOC/fonts/type1/public/pl/plsltt10.pfb - RELOC/fonts/type1/public/pl/plsltt10.pfm - RELOC/fonts/type1/public/pl/plss10.pfb - RELOC/fonts/type1/public/pl/plss10.pfm - RELOC/fonts/type1/public/pl/plss12.pfb - RELOC/fonts/type1/public/pl/plss12.pfm - RELOC/fonts/type1/public/pl/plss17.pfb - RELOC/fonts/type1/public/pl/plss17.pfm - RELOC/fonts/type1/public/pl/plss8.pfb - RELOC/fonts/type1/public/pl/plss8.pfm - RELOC/fonts/type1/public/pl/plss9.pfb - RELOC/fonts/type1/public/pl/plss9.pfm - RELOC/fonts/type1/public/pl/plssbi10.pfb - RELOC/fonts/type1/public/pl/plssbi10.pfm - RELOC/fonts/type1/public/pl/plssbx10.pfb - RELOC/fonts/type1/public/pl/plssbx10.pfm - RELOC/fonts/type1/public/pl/plssdc10.pfb - RELOC/fonts/type1/public/pl/plssdc10.pfm - RELOC/fonts/type1/public/pl/plssi10.pfb - RELOC/fonts/type1/public/pl/plssi10.pfm - RELOC/fonts/type1/public/pl/plssi12.pfb - RELOC/fonts/type1/public/pl/plssi12.pfm - RELOC/fonts/type1/public/pl/plssi17.pfb - RELOC/fonts/type1/public/pl/plssi17.pfm - RELOC/fonts/type1/public/pl/plssi8.pfb - RELOC/fonts/type1/public/pl/plssi8.pfm - RELOC/fonts/type1/public/pl/plssi9.pfb - RELOC/fonts/type1/public/pl/plssi9.pfm - RELOC/fonts/type1/public/pl/plssq8.pfb - RELOC/fonts/type1/public/pl/plssq8.pfm - RELOC/fonts/type1/public/pl/plssqi8.pfb - RELOC/fonts/type1/public/pl/plssqi8.pfm - RELOC/fonts/type1/public/pl/plsy10.pfb - RELOC/fonts/type1/public/pl/plsy10.pfm - RELOC/fonts/type1/public/pl/plsy5.pfb - RELOC/fonts/type1/public/pl/plsy5.pfm - RELOC/fonts/type1/public/pl/plsy6.pfb - RELOC/fonts/type1/public/pl/plsy6.pfm - RELOC/fonts/type1/public/pl/plsy7.pfb - RELOC/fonts/type1/public/pl/plsy7.pfm - RELOC/fonts/type1/public/pl/plsy8.pfb - RELOC/fonts/type1/public/pl/plsy8.pfm - RELOC/fonts/type1/public/pl/plsy9.pfb - RELOC/fonts/type1/public/pl/plsy9.pfm - RELOC/fonts/type1/public/pl/pltcsc10.pfb - RELOC/fonts/type1/public/pl/pltcsc10.pfm - RELOC/fonts/type1/public/pl/pltex10.pfb - RELOC/fonts/type1/public/pl/pltex10.pfm - RELOC/fonts/type1/public/pl/pltex8.pfb - RELOC/fonts/type1/public/pl/pltex8.pfm - RELOC/fonts/type1/public/pl/pltex9.pfb - RELOC/fonts/type1/public/pl/pltex9.pfm - RELOC/fonts/type1/public/pl/plti10.pfb - RELOC/fonts/type1/public/pl/plti10.pfm - RELOC/fonts/type1/public/pl/plti12.pfb - RELOC/fonts/type1/public/pl/plti12.pfm - RELOC/fonts/type1/public/pl/plti7.pfb - RELOC/fonts/type1/public/pl/plti7.pfm - RELOC/fonts/type1/public/pl/plti8.pfb - RELOC/fonts/type1/public/pl/plti8.pfm - RELOC/fonts/type1/public/pl/plti9.pfb - RELOC/fonts/type1/public/pl/plti9.pfm - RELOC/fonts/type1/public/pl/pltt10.pfb - RELOC/fonts/type1/public/pl/pltt10.pfm - RELOC/fonts/type1/public/pl/pltt12.pfb - RELOC/fonts/type1/public/pl/pltt12.pfm - RELOC/fonts/type1/public/pl/pltt8.pfb - RELOC/fonts/type1/public/pl/pltt8.pfm - RELOC/fonts/type1/public/pl/pltt9.pfb - RELOC/fonts/type1/public/pl/pltt9.pfm - RELOC/fonts/type1/public/pl/plu10.pfb - RELOC/fonts/type1/public/pl/plu10.pfm - RELOC/fonts/type1/public/pl/plvtt10.pfb - RELOC/fonts/type1/public/pl/plvtt10.pfm -docfiles size=22 - RELOC/doc/fonts/pl/README-T1.ENG - RELOC/doc/fonts/pl/README-T1.POL - RELOC/doc/fonts/pl/README.ENG - RELOC/doc/fonts/pl/README.POL - RELOC/doc/fonts/pl/plsample.tex -catalogue-ctan /language/polish/pl-mf.zip -catalogue-date 2014-05-23 17:08:48 +0200 -catalogue-license pd -catalogue-version 1.09 - -name plweb -category Package -revision 15878 -catalogue pl -shortdesc Literate Programming for Prolog with LaTeX. -relocated 1 -longdesc Instead of having to transform the common source into program -longdesc or documentation, the central idea was to develop a method to -longdesc have one common source which can be interpreted by a Prolog -longdesc system as well as by LaTeX, whether that Prolog system be C- -longdesc Prolog, Quintus-Prolog, or ECLiPSe. -runfiles size=5 - RELOC/tex/latex/plweb/pcode.sty - RELOC/tex/latex/plweb/pl.cfg - RELOC/tex/latex/plweb/pl.sty -docfiles size=34 - RELOC/doc/latex/plweb/README - RELOC/doc/latex/plweb/pl.pdf - RELOC/doc/latex/plweb/pl.tex - RELOC/doc/latex/plweb/sample.pl -srcfiles size=12 - RELOC/source/latex/plweb/Makefile - RELOC/source/latex/plweb/pl.dtx - RELOC/source/latex/plweb/pl.ins -catalogue-ctan /macros/latex/contrib/gene/pl -catalogue-date 2012-06-08 17:19:18 +0200 -catalogue-license other-free -catalogue-version 3.0 - -name pmgraph -category Package -revision 15878 -shortdesc "Poor man's" graphics. -relocated 1 -longdesc A set of extensions to LaTeX picture environment, including a -longdesc wider range of vectors, and a lot more box frame styles. -runfiles size=19 - RELOC/tex/latex/pmgraph/pmgraph.sty -docfiles size=50 - RELOC/doc/latex/pmgraph/COPYING - RELOC/doc/latex/pmgraph/README - RELOC/doc/latex/pmgraph/pmgraph.pdf - RELOC/doc/latex/pmgraph/pmgraph.tex -catalogue-ctan /macros/latex/contrib/pmgraph -catalogue-date 2012-07-19 14:50:35 +0200 -catalogue-license gpl -catalogue-version 1.0 - -name pmxchords -category Package -revision 32443 -shortdesc Produce chord information to go with pmx output. -longdesc The bundle supplements pmx, providing the means of typesetting -longdesc chords above the notes of a score. The bundle contains: macros -longdesc for typing the chords; a Lua script to transpose chord macros -longdesc to the required key signature; and support scripts for common -longdesc requirements. -depend pmxchords.ARCH -runfiles size=9 - texmf-dist/scripts/pmxchords/ChordsTr.lua - texmf-dist/scripts/pmxchords/pmxchords.lua - texmf-dist/tex/generic/pmxchords/chords.tex - texmf-dist/tex/generic/pmxchords/chordsCZ.tex -docfiles size=161 - texmf-dist/doc/man/man1/pmxchords.1 - texmf-dist/doc/man/man1/pmxchords.man1.pdf - texmf-dist/doc/pmxchords/README - texmf-dist/doc/pmxchords/chordsRef.pdf - texmf-dist/doc/pmxchords/chordsRef.tex - texmf-dist/doc/pmxchords/chordsRefCZ.pdf - texmf-dist/doc/pmxchords/chordsRefCZ.tex - texmf-dist/doc/pmxchords/examples/jazz/misty/misty.pdf - texmf-dist/doc/pmxchords/examples/jazz/misty/misty.pmx - texmf-dist/doc/pmxchords/examples/jazz/schema/schema.pdf - texmf-dist/doc/pmxchords/examples/jazz/schema/schema.pmx - texmf-dist/doc/pmxchords/examples/jazz/schema/schema_full.pdf - texmf-dist/doc/pmxchords/examples/jazz/schema/schema_full.pmx - texmf-dist/doc/pmxchords/examples/noel/aj_co_to_hlasaju/aj_co_to_hlasaju.pdf - texmf-dist/doc/pmxchords/examples/noel/aj_co_to_hlasaju/aj_co_to_hlasaju.pmx - texmf-dist/doc/pmxchords/examples/noel/pasli_ovce_valasi/README - texmf-dist/doc/pmxchords/examples/noel/pasli_ovce_valasi/pasli_ovce_valasi.pdf - texmf-dist/doc/pmxchords/examples/noel/pasli_ovce_valasi/pasli_ovce_valasi.pmx - texmf-dist/doc/pmxchords/gpl-2.0.txt - texmf-dist/doc/pmxchords/pmxchords-install.pdf - texmf-dist/doc/pmxchords/pmxchords-install.tex -catalogue-ctan /support/pmxchords -catalogue-date 2014-10-15 18:29:49 +0200 -catalogue-license gpl2 -catalogue-version 2.0.1 - -name pmxchords.i386-linux -category Package -revision 32405 -shortdesc i386-linux files of pmxchords -binfiles arch=i386-linux size=1 - bin/i386-linux/pmxchords - -name pmx -category Package -revision 35650 -shortdesc Preprocessor for MusiXTeX. -longdesc PMX is a preprocessor for MusiXTeX. It builds the TeX input -longdesc file from a file in a much simpler language, making most of the -longdesc layout decisions by itself. An auxiliary program makes single- -longdesc player parts from a multi-player score. For proof-listening, -longdesc PMX can make a MIDI file of your score. The present version -longdesc requires at least version 1.15 of MusiXTeX, running on an e-tex- -longdesc enhanced TeX system. -depend pmx.ARCH -runfiles size=9 - texmf-dist/scripts/pmx/pmx2pdf.lua - texmf-dist/tex/generic/pmx/pmx.tex -docfiles size=243 - texmf-dist/doc/generic/pmx/README - texmf-dist/doc/generic/pmx/examples/barsant.pmx - texmf-dist/doc/generic/pmx/examples/dyntest.pmx - texmf-dist/doc/generic/pmx/examples/most.pmx - texmf-dist/doc/generic/pmx/examples/mwalmnd.pmx - texmf-dist/doc/generic/pmx/file600.eps - texmf-dist/doc/generic/pmx/gpl.txt - texmf-dist/doc/generic/pmx/install_run_pmx270.pdf - texmf-dist/doc/generic/pmx/install_run_pmx270.tex - texmf-dist/doc/generic/pmx/pmx-install.pdf - texmf-dist/doc/generic/pmx/pmx-install.tex - texmf-dist/doc/generic/pmx/pmx25-27.html - texmf-dist/doc/generic/pmx/pmx270.pdf - texmf-dist/doc/generic/pmx/pmx270.tex - texmf-dist/doc/generic/pmx/pmx2pdf.html - texmf-dist/doc/generic/pmx/pmxab.html - texmf-dist/doc/generic/pmx/ref270.pdf - texmf-dist/doc/generic/pmx/ref270.tex - texmf-dist/doc/generic/pmx/scor2prt.html - texmf-dist/doc/man/man1/pmx2pdf.1 - texmf-dist/doc/man/man1/pmx2pdf.man1.pdf - texmf-dist/doc/man/man1/pmxab.1 - texmf-dist/doc/man/man1/pmxab.man1.pdf - texmf-dist/doc/man/man1/scor2prt.1 - texmf-dist/doc/man/man1/scor2prt.man1.pdf -catalogue-ctan /support/pmx -catalogue-date 2014-11-22 21:11:37 +0100 -catalogue-license gpl2 -catalogue-version 2.7.0 - -name pmx.i386-linux -category Package -revision 36790 -shortdesc i386-linux files of pmx -binfiles arch=i386-linux size=180 - bin/i386-linux/pmx2pdf - bin/i386-linux/pmxab - bin/i386-linux/scor2prt - -name pnas2009 -category Package -revision 16287 -shortdesc Bibtex style for PNAS. -relocated 1 -longdesc This style produces bibliographies in the format of -longdesc "Proceedings of the National Academy of Sciences, USA". The -longdesc style was derived from the standard unsrt.bst and adapted to -longdesc the new (2009) formatting rules. -runfiles size=5 - RELOC/bibtex/bst/pnas2009/pnas2009.bst -catalogue-ctan /biblio/bibtex/contrib/misc/pnas2009.bst -catalogue-date 2012-04-10 16:50:57 +0200 -catalogue-license other-free -catalogue-version 1.0 - -name poemscol -category Package -revision 37724 -shortdesc Typesetting Critical Editions of Poetry. -relocated 1 -longdesc The package offers LaTeX macros for typesetting critical -longdesc editions of poetry. Its features include automatic -longdesc linenumbering, generation of separate endnotes sections for -longdesc emendations, textual collations, and explanatory notes, special -longdesc marking for cases in which page breaks occur during stanza -longdesc breaks, running headers of the form 'Notes to pp. xx-yy' for -longdesc the notes sections, index of titles and first lines, and -longdesc automatic generation of a table of contents. -runfiles size=29 - RELOC/tex/latex/poemscol/poemscol.sty -docfiles size=165 - RELOC/doc/latex/poemscol/README - RELOC/doc/latex/poemscol/poemscol.pdf - RELOC/doc/latex/poemscol/poemscolcheatsheet.pdf -srcfiles size=88 - RELOC/source/latex/poemscol/poemscol.dtx - RELOC/source/latex/poemscol/poemscol.ins -catalogue-also edmac ledmac ednotes verse -catalogue-ctan /macros/latex/contrib/poemscol -catalogue-date 2015-06-30 19:35:16 +0200 -catalogue-license lppl1.3 -catalogue-topics crit-ed -catalogue-version 2.72 - -name poetrytex -category Package -revision 35807 -shortdesc Typeset anthologies of poetry. -relocated 1 -longdesc The package is designed to aid in the management and formatting -longdesc of anthologies of poetry and other writings; it does not -longdesc concern itself with actually typesettinig the verse itself. -runfiles size=3 - RELOC/tex/latex/poetrytex/poetrytex.sty -docfiles size=74 - RELOC/doc/latex/poetrytex/README - RELOC/doc/latex/poetrytex/poetrytex.pdf - RELOC/doc/latex/poetrytex/poetrytex.top -srcfiles size=15 - RELOC/source/latex/poetrytex/Makefile - RELOC/source/latex/poetrytex/poetrytex.dtx -catalogue-ctan /macros/latex/contrib/poetrytex -catalogue-date 2014-12-12 20:46:10 +0100 -catalogue-license lppl1.3 -catalogue-version 3.0.0 - -name polski -category Package -revision 19881 -shortdesc Typeset Polish documents with LaTeX and Polish fonts. -relocated 1 -longdesc Tools to typeset documents in Polish using LaTeX2e with Polish -longdesc fonts (the so-called PL fonts), EC fonts or CM fonts. (This -longdesc package was previously known as platex, but has been renamed to -longdesc resolve a name clash.) -depend pl -depend hyphen-polish -runfiles size=24 - RELOC/tex/latex/polski/amigapl.def - RELOC/tex/latex/polski/mazovia.def - RELOC/tex/latex/polski/omlplcm.fd - RELOC/tex/latex/polski/omlplm.fd - RELOC/tex/latex/polski/omsplsy.fd - RELOC/tex/latex/polski/omxplex.fd - RELOC/tex/latex/polski/ot1patch.sty - RELOC/tex/latex/polski/ot4ccr.fd - RELOC/tex/latex/polski/ot4cmdh.fd - RELOC/tex/latex/polski/ot4cmfib.fd - RELOC/tex/latex/polski/ot4cmfr.fd - RELOC/tex/latex/polski/ot4cmr.fd - RELOC/tex/latex/polski/ot4cmss.fd - RELOC/tex/latex/polski/ot4cmtt.fd - RELOC/tex/latex/polski/plprefix.sty - RELOC/tex/latex/polski/polski.sty - RELOC/tex/latex/polski/qxenc.def -docfiles size=57 - RELOC/doc/latex/polski/conowego.txt - RELOC/doc/latex/polski/czytaj.txt - RELOC/doc/latex/polski/polski.pdf - RELOC/doc/latex/polski/readme.txt - RELOC/doc/latex/polski/sample-polski.tex - RELOC/doc/latex/polski/sample-rysunek.mp - RELOC/doc/latex/polski/sample-rysunek1.mps -srcfiles size=34 - RELOC/source/latex/polski/ot1patch.dtx - RELOC/source/latex/polski/ot1patch.ins - RELOC/source/latex/polski/plfonts.fdd - RELOC/source/latex/polski/plprefix.dtx - RELOC/source/latex/polski/plprefix.ins - RELOC/source/latex/polski/polski.dtx - RELOC/source/latex/polski/polski.ins - RELOC/source/latex/polski/strony.dtx -catalogue-ctan /macros/latex/contrib/polski -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.2 -catalogue-version 1.3.3 - -name poltawski -category Package -revision 20075 -shortdesc Antykwa Poltawskiego Family of Fonts. -relocated 1 -longdesc The package contains the Antykwa Poltawskiego family of fonts -longdesc in the PostScript Type 1 and OpenType formats. The original -longdesc font was designed in the twenties of the XX century by the -longdesc Polish typographer Adam Poltawski(1881-1952). Following the -longdesc route set out by the Latin Modern and TeX Gyre projects -longdesc (http://www.gust.org.pl/projects/e-foundry), the Antykwa -longdesc Poltawskiego digitisation project aims at providing a rich -longdesc collection of diacritical characters in the attempt to cover as -longdesc many Latin-based scripts as possible. To our knowledge, the -longdesc repertoire of characters covers all European languages as well -longdesc as some other Latin-based alphabets such as Vietnamese and -longdesc Navajo; at the request of users, recent extensions (following -longdesc the enhancement of the Latin Modern collection) provide glyphs -longdesc sufficient for typesetting of romanized transliterations of -longdesc Arabic and Sanskrit scripts. The Antykwa Poltawskiego family -longdesc consists of 4 weights (light, normal, medium, bold), each -longdesc having upright and italic forms and one of 5 design sizes: 6, -longdesc 8, 10, 12 and 17pt. Altogether, the collection comprises 40 -longdesc font files, containing the same repertoire of 1126 characters. -longdesc The preliminary version of Antykwa Poltawskiego (antp package) -longdesc released in 2000 is rendered obsolete by this package. -execute addMap ap.map -runfiles size=7225 - RELOC/fonts/afm/gust/poltawski/antpb10.afm - RELOC/fonts/afm/gust/poltawski/antpb12.afm - RELOC/fonts/afm/gust/poltawski/antpb17.afm - RELOC/fonts/afm/gust/poltawski/antpb6.afm - RELOC/fonts/afm/gust/poltawski/antpb8.afm - RELOC/fonts/afm/gust/poltawski/antpbi10.afm - RELOC/fonts/afm/gust/poltawski/antpbi12.afm - RELOC/fonts/afm/gust/poltawski/antpbi17.afm - RELOC/fonts/afm/gust/poltawski/antpbi6.afm - RELOC/fonts/afm/gust/poltawski/antpbi8.afm - RELOC/fonts/afm/gust/poltawski/antpl10.afm - RELOC/fonts/afm/gust/poltawski/antpl12.afm - RELOC/fonts/afm/gust/poltawski/antpl17.afm - RELOC/fonts/afm/gust/poltawski/antpl6.afm - RELOC/fonts/afm/gust/poltawski/antpl8.afm - RELOC/fonts/afm/gust/poltawski/antpli10.afm - RELOC/fonts/afm/gust/poltawski/antpli12.afm - RELOC/fonts/afm/gust/poltawski/antpli17.afm - RELOC/fonts/afm/gust/poltawski/antpli6.afm - RELOC/fonts/afm/gust/poltawski/antpli8.afm - RELOC/fonts/afm/gust/poltawski/antpm10.afm - RELOC/fonts/afm/gust/poltawski/antpm12.afm - RELOC/fonts/afm/gust/poltawski/antpm17.afm - RELOC/fonts/afm/gust/poltawski/antpm6.afm - RELOC/fonts/afm/gust/poltawski/antpm8.afm - RELOC/fonts/afm/gust/poltawski/antpmi10.afm - RELOC/fonts/afm/gust/poltawski/antpmi12.afm - RELOC/fonts/afm/gust/poltawski/antpmi17.afm - RELOC/fonts/afm/gust/poltawski/antpmi6.afm - RELOC/fonts/afm/gust/poltawski/antpmi8.afm - RELOC/fonts/afm/gust/poltawski/antpr10.afm - RELOC/fonts/afm/gust/poltawski/antpr12.afm - RELOC/fonts/afm/gust/poltawski/antpr17.afm - RELOC/fonts/afm/gust/poltawski/antpr6.afm - RELOC/fonts/afm/gust/poltawski/antpr8.afm - RELOC/fonts/afm/gust/poltawski/antpri10.afm - RELOC/fonts/afm/gust/poltawski/antpri12.afm - RELOC/fonts/afm/gust/poltawski/antpri17.afm - RELOC/fonts/afm/gust/poltawski/antpri6.afm - RELOC/fonts/afm/gust/poltawski/antpri8.afm - RELOC/fonts/enc/dvips/poltawski/ap-cs-sc.enc - RELOC/fonts/enc/dvips/poltawski/ap-cs.enc - RELOC/fonts/enc/dvips/poltawski/ap-ec-sc.enc - RELOC/fonts/enc/dvips/poltawski/ap-ec.enc - RELOC/fonts/enc/dvips/poltawski/ap-l7x-sc.enc - RELOC/fonts/enc/dvips/poltawski/ap-l7x.enc - RELOC/fonts/enc/dvips/poltawski/ap-qx-sc.enc - RELOC/fonts/enc/dvips/poltawski/ap-qx.enc - RELOC/fonts/enc/dvips/poltawski/ap-rm-sc.enc - RELOC/fonts/enc/dvips/poltawski/ap-rm.enc - RELOC/fonts/enc/dvips/poltawski/ap-t5-sc.enc - RELOC/fonts/enc/dvips/poltawski/ap-t5.enc - RELOC/fonts/enc/dvips/poltawski/ap-texnansi-sc.enc - RELOC/fonts/enc/dvips/poltawski/ap-texnansi.enc - RELOC/fonts/enc/dvips/poltawski/ap-ts1.enc - RELOC/fonts/map/dvips/poltawski/ap-cs.map - RELOC/fonts/map/dvips/poltawski/ap-ec.map - RELOC/fonts/map/dvips/poltawski/ap-l7x.map - RELOC/fonts/map/dvips/poltawski/ap-qx.map - RELOC/fonts/map/dvips/poltawski/ap-rm.map - RELOC/fonts/map/dvips/poltawski/ap-t5.map - RELOC/fonts/map/dvips/poltawski/ap-texnansi.map - RELOC/fonts/map/dvips/poltawski/ap-ts1.map - RELOC/fonts/map/dvips/poltawski/ap.map - RELOC/fonts/opentype/gust/poltawski/antpolt-bold.otf - RELOC/fonts/opentype/gust/poltawski/antpolt-bolditalic.otf - RELOC/fonts/opentype/gust/poltawski/antpolt-italic.otf - RELOC/fonts/opentype/gust/poltawski/antpolt-regular.otf - RELOC/fonts/opentype/gust/poltawski/antpoltcond-bold.otf - RELOC/fonts/opentype/gust/poltawski/antpoltcond-bolditalic.otf - RELOC/fonts/opentype/gust/poltawski/antpoltcond-italic.otf - RELOC/fonts/opentype/gust/poltawski/antpoltcond-regular.otf - RELOC/fonts/opentype/gust/poltawski/antpoltexpd-bold.otf - RELOC/fonts/opentype/gust/poltawski/antpoltexpd-bolditalic.otf - RELOC/fonts/opentype/gust/poltawski/antpoltexpd-italic.otf - RELOC/fonts/opentype/gust/poltawski/antpoltexpd-regular.otf - RELOC/fonts/opentype/gust/poltawski/antpoltlt-bold.otf - RELOC/fonts/opentype/gust/poltawski/antpoltlt-bolditalic.otf - RELOC/fonts/opentype/gust/poltawski/antpoltlt-italic.otf - RELOC/fonts/opentype/gust/poltawski/antpoltlt-regular.otf - RELOC/fonts/opentype/gust/poltawski/antpoltltcond-bold.otf - RELOC/fonts/opentype/gust/poltawski/antpoltltcond-bolditalic.otf - RELOC/fonts/opentype/gust/poltawski/antpoltltcond-italic.otf - RELOC/fonts/opentype/gust/poltawski/antpoltltcond-regular.otf - RELOC/fonts/opentype/gust/poltawski/antpoltltexpd-bold.otf - RELOC/fonts/opentype/gust/poltawski/antpoltltexpd-bolditalic.otf - RELOC/fonts/opentype/gust/poltawski/antpoltltexpd-italic.otf - RELOC/fonts/opentype/gust/poltawski/antpoltltexpd-regular.otf - RELOC/fonts/opentype/gust/poltawski/antpoltltsemicond-bold.otf - RELOC/fonts/opentype/gust/poltawski/antpoltltsemicond-bolditalic.otf - RELOC/fonts/opentype/gust/poltawski/antpoltltsemicond-italic.otf - RELOC/fonts/opentype/gust/poltawski/antpoltltsemicond-regular.otf - RELOC/fonts/opentype/gust/poltawski/antpoltltsemiexpd-bold.otf - RELOC/fonts/opentype/gust/poltawski/antpoltltsemiexpd-bolditalic.otf - RELOC/fonts/opentype/gust/poltawski/antpoltltsemiexpd-italic.otf - RELOC/fonts/opentype/gust/poltawski/antpoltltsemiexpd-regular.otf - RELOC/fonts/opentype/gust/poltawski/antpoltsemicond-bold.otf - RELOC/fonts/opentype/gust/poltawski/antpoltsemicond-bolditalic.otf - RELOC/fonts/opentype/gust/poltawski/antpoltsemicond-italic.otf - RELOC/fonts/opentype/gust/poltawski/antpoltsemicond-regular.otf - RELOC/fonts/opentype/gust/poltawski/antpoltsemiexpd-bold.otf - RELOC/fonts/opentype/gust/poltawski/antpoltsemiexpd-bolditalic.otf - RELOC/fonts/opentype/gust/poltawski/antpoltsemiexpd-italic.otf - RELOC/fonts/opentype/gust/poltawski/antpoltsemiexpd-regular.otf - RELOC/fonts/tfm/gust/poltawski/cs-antpb10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpb10.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpb12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpb12.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpb17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpb17.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpb6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpb6.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpb8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpb8.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpbi10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpbi10.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpbi12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpbi12.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpbi17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpbi17.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpbi6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpbi6.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpbi8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpbi8.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpl10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpl10.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpl12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpl12.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpl17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpl17.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpl6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpl6.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpl8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpl8.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpli10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpli10.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpli12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpli12.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpli17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpli17.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpli6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpli6.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpli8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpli8.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpm10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpm10.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpm12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpm12.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpm17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpm17.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpm6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpm6.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpm8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpm8.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpmi10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpmi10.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpmi12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpmi12.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpmi17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpmi17.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpmi6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpmi6.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpmi8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpmi8.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpr10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpr10.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpr12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpr12.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpr17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpr17.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpr6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpr6.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpr8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpr8.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpri10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpri10.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpri12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpri12.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpri17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpri17.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpri6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpri6.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpri8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/cs-antpri8.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpb10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpb10.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpb12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpb12.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpb17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpb17.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpb6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpb6.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpb8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpb8.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpbi10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpbi10.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpbi12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpbi12.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpbi17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpbi17.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpbi6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpbi6.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpbi8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpbi8.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpl10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpl10.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpl12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpl12.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpl17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpl17.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpl6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpl6.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpl8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpl8.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpli10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpli10.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpli12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpli12.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpli17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpli17.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpli6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpli6.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpli8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpli8.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpm10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpm10.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpm12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpm12.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpm17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpm17.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpm6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpm6.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpm8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpm8.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpmi10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpmi10.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpmi12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpmi12.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpmi17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpmi17.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpmi6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpmi6.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpmi8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpmi8.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpr10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpr10.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpr12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpr12.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpr17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpr17.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpr6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpr6.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpr8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpr8.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpri10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpri10.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpri12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpri12.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpri17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpri17.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpri6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpri6.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpri8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/ec-antpri8.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpb10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpb10.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpb12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpb12.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpb17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpb17.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpb6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpb6.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpb8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpb8.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpbi10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpbi10.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpbi12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpbi12.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpbi17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpbi17.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpbi6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpbi6.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpbi8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpbi8.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpl10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpl10.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpl12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpl12.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpl17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpl17.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpl6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpl6.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpl8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpl8.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpli10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpli10.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpli12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpli12.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpli17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpli17.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpli6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpli6.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpli8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpli8.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpm10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpm10.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpm12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpm12.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpm17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpm17.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpm6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpm6.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpm8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpm8.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpmi10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpmi10.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpmi12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpmi12.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpmi17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpmi17.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpmi6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpmi6.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpmi8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpmi8.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpr10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpr10.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpr12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpr12.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpr17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpr17.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpr6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpr6.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpr8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpr8.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpri10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpri10.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpri12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpri12.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpri17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpri17.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpri6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpri6.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpri8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/l7x-antpri8.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpb10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpb10.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpb12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpb12.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpb17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpb17.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpb6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpb6.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpb8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpb8.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpbi10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpbi10.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpbi12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpbi12.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpbi17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpbi17.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpbi6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpbi6.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpbi8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpbi8.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpl10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpl10.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpl12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpl12.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpl17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpl17.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpl6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpl6.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpl8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpl8.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpli10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpli10.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpli12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpli12.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpli17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpli17.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpli6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpli6.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpli8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpli8.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpm10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpm10.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpm12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpm12.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpm17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpm17.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpm6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpm6.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpm8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpm8.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpmi10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpmi10.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpmi12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpmi12.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpmi17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpmi17.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpmi6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpmi6.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpmi8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpmi8.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpr10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpr10.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpr12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpr12.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpr17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpr17.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpr6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpr6.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpr8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpr8.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpri10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpri10.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpri12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpri12.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpri17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpri17.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpri6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpri6.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpri8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/qx-antpri8.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpb10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpb10.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpb12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpb12.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpb17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpb17.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpb6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpb6.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpb8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpb8.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpbi10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpbi10.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpbi12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpbi12.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpbi17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpbi17.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpbi6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpbi6.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpbi8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpbi8.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpl10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpl10.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpl12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpl12.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpl17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpl17.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpl6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpl6.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpl8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpl8.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpli10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpli10.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpli12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpli12.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpli17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpli17.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpli6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpli6.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpli8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpli8.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpm10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpm10.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpm12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpm12.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpm17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpm17.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpm6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpm6.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpm8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpm8.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpmi10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpmi10.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpmi12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpmi12.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpmi17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpmi17.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpmi6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpmi6.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpmi8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpmi8.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpr10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpr10.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpr12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpr12.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpr17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpr17.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpr6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpr6.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpr8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpr8.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpri10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpri10.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpri12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpri12.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpri17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpri17.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpri6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpri6.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpri8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/rm-antpri8.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpb10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpb10.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpb12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpb12.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpb17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpb17.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpb6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpb6.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpb8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpb8.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpbi10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpbi10.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpbi12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpbi12.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpbi17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpbi17.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpbi6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpbi6.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpbi8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpbi8.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpl10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpl10.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpl12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpl12.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpl17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpl17.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpl6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpl6.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpl8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpl8.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpli10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpli10.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpli12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpli12.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpli17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpli17.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpli6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpli6.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpli8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpli8.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpm10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpm10.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpm12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpm12.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpm17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpm17.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpm6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpm6.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpm8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpm8.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpmi10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpmi10.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpmi12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpmi12.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpmi17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpmi17.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpmi6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpmi6.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpmi8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpmi8.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpr10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpr10.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpr12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpr12.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpr17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpr17.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpr6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpr6.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpr8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpr8.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpri10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpri10.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpri12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpri12.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpri17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpri17.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpri6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpri6.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpri8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/t5-antpri8.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpb10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpb10.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpb12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpb12.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpb17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpb17.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpb6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpb6.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpb8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpb8.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi10.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi12.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi17.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi6.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi8.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpl10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpl10.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpl12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpl12.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpl17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpl17.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpl6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpl6.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpl8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpl8.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpli10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpli10.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpli12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpli12.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpli17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpli17.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpli6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpli6.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpli8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpli8.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpm10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpm10.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpm12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpm12.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpm17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpm17.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpm6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpm6.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpm8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpm8.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi10.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi12.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi17.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi6.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi8.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpr10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpr10.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpr12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpr12.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpr17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpr17.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpr6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpr6.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpr8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpr8.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpri10-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpri10.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpri12-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpri12.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpri17-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpri17.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpri6-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpri6.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpri8-sc.tfm - RELOC/fonts/tfm/gust/poltawski/texnansi-antpri8.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpb10.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpb12.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpb17.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpb6.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpb8.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpbi10.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpbi12.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpbi17.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpbi6.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpbi8.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpl10.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpl12.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpl17.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpl6.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpl8.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpli10.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpli12.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpli17.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpli6.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpli8.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpm10.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpm12.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpm17.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpm6.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpm8.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpmi10.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpmi12.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpmi17.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpmi6.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpmi8.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpr10.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpr12.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpr17.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpr6.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpr8.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpri10.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpri12.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpri17.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpri6.tfm - RELOC/fonts/tfm/gust/poltawski/ts1-antpri8.tfm - RELOC/fonts/type1/gust/poltawski/antpb10.pfb - RELOC/fonts/type1/gust/poltawski/antpb10.pfm - RELOC/fonts/type1/gust/poltawski/antpb12.pfb - RELOC/fonts/type1/gust/poltawski/antpb12.pfm - RELOC/fonts/type1/gust/poltawski/antpb17.pfb - RELOC/fonts/type1/gust/poltawski/antpb17.pfm - RELOC/fonts/type1/gust/poltawski/antpb6.pfb - RELOC/fonts/type1/gust/poltawski/antpb6.pfm - RELOC/fonts/type1/gust/poltawski/antpb8.pfb - RELOC/fonts/type1/gust/poltawski/antpb8.pfm - RELOC/fonts/type1/gust/poltawski/antpbi10.pfb - RELOC/fonts/type1/gust/poltawski/antpbi10.pfm - RELOC/fonts/type1/gust/poltawski/antpbi12.pfb - RELOC/fonts/type1/gust/poltawski/antpbi12.pfm - RELOC/fonts/type1/gust/poltawski/antpbi17.pfb - RELOC/fonts/type1/gust/poltawski/antpbi17.pfm - RELOC/fonts/type1/gust/poltawski/antpbi6.pfb - RELOC/fonts/type1/gust/poltawski/antpbi6.pfm - RELOC/fonts/type1/gust/poltawski/antpbi8.pfb - RELOC/fonts/type1/gust/poltawski/antpbi8.pfm - RELOC/fonts/type1/gust/poltawski/antpl10.pfb - RELOC/fonts/type1/gust/poltawski/antpl10.pfm - RELOC/fonts/type1/gust/poltawski/antpl12.pfb - RELOC/fonts/type1/gust/poltawski/antpl12.pfm - RELOC/fonts/type1/gust/poltawski/antpl17.pfb - RELOC/fonts/type1/gust/poltawski/antpl17.pfm - RELOC/fonts/type1/gust/poltawski/antpl6.pfb - RELOC/fonts/type1/gust/poltawski/antpl6.pfm - RELOC/fonts/type1/gust/poltawski/antpl8.pfb - RELOC/fonts/type1/gust/poltawski/antpl8.pfm - RELOC/fonts/type1/gust/poltawski/antpli10.pfb - RELOC/fonts/type1/gust/poltawski/antpli10.pfm - RELOC/fonts/type1/gust/poltawski/antpli12.pfb - RELOC/fonts/type1/gust/poltawski/antpli12.pfm - RELOC/fonts/type1/gust/poltawski/antpli17.pfb - RELOC/fonts/type1/gust/poltawski/antpli17.pfm - RELOC/fonts/type1/gust/poltawski/antpli6.pfb - RELOC/fonts/type1/gust/poltawski/antpli6.pfm - RELOC/fonts/type1/gust/poltawski/antpli8.pfb - RELOC/fonts/type1/gust/poltawski/antpli8.pfm - RELOC/fonts/type1/gust/poltawski/antpm10.pfb - RELOC/fonts/type1/gust/poltawski/antpm10.pfm - RELOC/fonts/type1/gust/poltawski/antpm12.pfb - RELOC/fonts/type1/gust/poltawski/antpm12.pfm - RELOC/fonts/type1/gust/poltawski/antpm17.pfb - RELOC/fonts/type1/gust/poltawski/antpm17.pfm - RELOC/fonts/type1/gust/poltawski/antpm6.pfb - RELOC/fonts/type1/gust/poltawski/antpm6.pfm - RELOC/fonts/type1/gust/poltawski/antpm8.pfb - RELOC/fonts/type1/gust/poltawski/antpm8.pfm - RELOC/fonts/type1/gust/poltawski/antpmi10.pfb - RELOC/fonts/type1/gust/poltawski/antpmi10.pfm - RELOC/fonts/type1/gust/poltawski/antpmi12.pfb - RELOC/fonts/type1/gust/poltawski/antpmi12.pfm - RELOC/fonts/type1/gust/poltawski/antpmi17.pfb - RELOC/fonts/type1/gust/poltawski/antpmi17.pfm - RELOC/fonts/type1/gust/poltawski/antpmi6.pfb - RELOC/fonts/type1/gust/poltawski/antpmi6.pfm - RELOC/fonts/type1/gust/poltawski/antpmi8.pfb - RELOC/fonts/type1/gust/poltawski/antpmi8.pfm - RELOC/fonts/type1/gust/poltawski/antpr10.pfb - RELOC/fonts/type1/gust/poltawski/antpr10.pfm - RELOC/fonts/type1/gust/poltawski/antpr12.pfb - RELOC/fonts/type1/gust/poltawski/antpr12.pfm - RELOC/fonts/type1/gust/poltawski/antpr17.pfb - RELOC/fonts/type1/gust/poltawski/antpr17.pfm - RELOC/fonts/type1/gust/poltawski/antpr6.pfb - RELOC/fonts/type1/gust/poltawski/antpr6.pfm - RELOC/fonts/type1/gust/poltawski/antpr8.pfb - RELOC/fonts/type1/gust/poltawski/antpr8.pfm - RELOC/fonts/type1/gust/poltawski/antpri10.pfb - RELOC/fonts/type1/gust/poltawski/antpri10.pfm - RELOC/fonts/type1/gust/poltawski/antpri12.pfb - RELOC/fonts/type1/gust/poltawski/antpri12.pfm - RELOC/fonts/type1/gust/poltawski/antpri17.pfb - RELOC/fonts/type1/gust/poltawski/antpri17.pfm - RELOC/fonts/type1/gust/poltawski/antpri6.pfb - RELOC/fonts/type1/gust/poltawski/antpri6.pfm - RELOC/fonts/type1/gust/poltawski/antpri8.pfb - RELOC/fonts/type1/gust/poltawski/antpri8.pfm - RELOC/tex/latex/poltawski/antpolt.sty - RELOC/tex/latex/poltawski/il2antp.fd - RELOC/tex/latex/poltawski/il2antpl.fd - RELOC/tex/latex/poltawski/l7xantp.fd - RELOC/tex/latex/poltawski/l7xantpl.fd - RELOC/tex/latex/poltawski/ly1antp.fd - RELOC/tex/latex/poltawski/ly1antpl.fd - RELOC/tex/latex/poltawski/ot1antp.fd - RELOC/tex/latex/poltawski/ot1antpl.fd - RELOC/tex/latex/poltawski/ot4antp.fd - RELOC/tex/latex/poltawski/ot4antpl.fd - RELOC/tex/latex/poltawski/qxantp.fd - RELOC/tex/latex/poltawski/qxantpl.fd - RELOC/tex/latex/poltawski/t1antp.fd - RELOC/tex/latex/poltawski/t1antpl.fd - RELOC/tex/latex/poltawski/t5antp.fd - RELOC/tex/latex/poltawski/t5antpl.fd - RELOC/tex/latex/poltawski/ts1antp.fd - RELOC/tex/latex/poltawski/ts1antpl.fd -docfiles size=807 - RELOC/doc/fonts/poltawski/GUST-FONT-LICENSE.txt - RELOC/doc/fonts/poltawski/MANIFEST-Antykwa-Poltawskiego.txt - RELOC/doc/fonts/poltawski/README-Antykwa-Poltawskiego.txt - RELOC/doc/fonts/poltawski/antpb10.fea - RELOC/doc/fonts/poltawski/antpb12.fea - RELOC/doc/fonts/poltawski/antpb17.fea - RELOC/doc/fonts/poltawski/antpb6.fea - RELOC/doc/fonts/poltawski/antpb8.fea - RELOC/doc/fonts/poltawski/antpbi10.fea - RELOC/doc/fonts/poltawski/antpbi12.fea - RELOC/doc/fonts/poltawski/antpbi17.fea - RELOC/doc/fonts/poltawski/antpbi6.fea - RELOC/doc/fonts/poltawski/antpbi8.fea - RELOC/doc/fonts/poltawski/antpl10.fea - RELOC/doc/fonts/poltawski/antpl12.fea - RELOC/doc/fonts/poltawski/antpl17.fea - RELOC/doc/fonts/poltawski/antpl6.fea - RELOC/doc/fonts/poltawski/antpl8.fea - RELOC/doc/fonts/poltawski/antpli10.fea - RELOC/doc/fonts/poltawski/antpli12.fea - RELOC/doc/fonts/poltawski/antpli17.fea - RELOC/doc/fonts/poltawski/antpli6.fea - RELOC/doc/fonts/poltawski/antpli8.fea - RELOC/doc/fonts/poltawski/antpm10.fea - RELOC/doc/fonts/poltawski/antpm12.fea - RELOC/doc/fonts/poltawski/antpm17.fea - RELOC/doc/fonts/poltawski/antpm6.fea - RELOC/doc/fonts/poltawski/antpm8.fea - RELOC/doc/fonts/poltawski/antpmi10.fea - RELOC/doc/fonts/poltawski/antpmi12.fea - RELOC/doc/fonts/poltawski/antpmi17.fea - RELOC/doc/fonts/poltawski/antpmi6.fea - RELOC/doc/fonts/poltawski/antpmi8.fea - RELOC/doc/fonts/poltawski/antpr10.fea - RELOC/doc/fonts/poltawski/antpr12.fea - RELOC/doc/fonts/poltawski/antpr17.fea - RELOC/doc/fonts/poltawski/antpr6.fea - RELOC/doc/fonts/poltawski/antpr8.fea - RELOC/doc/fonts/poltawski/antpri10.fea - RELOC/doc/fonts/poltawski/antpri12.fea - RELOC/doc/fonts/poltawski/antpri17.fea - RELOC/doc/fonts/poltawski/antpri6.fea - RELOC/doc/fonts/poltawski/antpri8.fea - RELOC/doc/fonts/poltawski/ap-hist.txt - RELOC/doc/fonts/poltawski/ap-info.pdf - RELOC/doc/fonts/poltawski/ap-logo.pdf - RELOC/doc/fonts/poltawski/goadb100.nam - RELOC/doc/fonts/poltawski/tstapot1.pdf - RELOC/doc/fonts/poltawski/tstapot1.tex - RELOC/doc/fonts/poltawski/tstapot4.pdf - RELOC/doc/fonts/poltawski/tstapot4.tex - RELOC/doc/fonts/poltawski/tstapqx.pdf - RELOC/doc/fonts/poltawski/tstapqx.tex - RELOC/doc/fonts/poltawski/tstapt1.pdf - RELOC/doc/fonts/poltawski/tstapt1.tex - RELOC/doc/fonts/poltawski/tstapts1.pdf - RELOC/doc/fonts/poltawski/tstapts1.tex -catalogue-ctan /fonts/poltawski -catalogue-date 2014-05-23 17:08:48 +0200 -catalogue-license gfsl -catalogue-version 1.101 - -name polyglossia -category Package -revision 38072 -shortdesc An alternative to babel for XeLaTeX and LuaLaTeX -relocated 1 -longdesc This package provides a complete Babel replacement for users of -longdesc LuaLaTeX and XeLaTeX; it relies on the fontspec package, -longdesc version 2.0 at least. This is the first release that supports -longdesc use with LuaLaTeX; it should be considered "transitional" in -longdesc that role. -depend etoolbox -depend fontspec -depend ifluatex -depend makecmds -depend xkeyval -runfiles size=138 - RELOC/fonts/misc/xetex/fontmapping/polyglossia/arabicdigits.map - RELOC/fonts/misc/xetex/fontmapping/polyglossia/arabicdigits.tec - RELOC/fonts/misc/xetex/fontmapping/polyglossia/bengalidigits.map - RELOC/fonts/misc/xetex/fontmapping/polyglossia/bengalidigits.tec - RELOC/fonts/misc/xetex/fontmapping/polyglossia/devanagaridigits.map - RELOC/fonts/misc/xetex/fontmapping/polyglossia/devanagaridigits.tec - RELOC/fonts/misc/xetex/fontmapping/polyglossia/farsidigits.map - RELOC/fonts/misc/xetex/fontmapping/polyglossia/farsidigits.tec - RELOC/fonts/misc/xetex/fontmapping/polyglossia/thaidigits.map - RELOC/fonts/misc/xetex/fontmapping/polyglossia/thaidigits.tec - RELOC/tex/latex/polyglossia/arabicnumbers.sty - RELOC/tex/latex/polyglossia/babel-hebrewalph.def - RELOC/tex/latex/polyglossia/babelsh.def - RELOC/tex/latex/polyglossia/bengalidigits.sty - RELOC/tex/latex/polyglossia/cal-util.def - RELOC/tex/latex/polyglossia/devanagaridigits.sty - RELOC/tex/latex/polyglossia/farsical.sty - RELOC/tex/latex/polyglossia/gloss-albanian.ldf - RELOC/tex/latex/polyglossia/gloss-amharic.ldf - RELOC/tex/latex/polyglossia/gloss-arabic.ldf - RELOC/tex/latex/polyglossia/gloss-armenian.ldf - RELOC/tex/latex/polyglossia/gloss-asturian.ldf - RELOC/tex/latex/polyglossia/gloss-bahasai.ldf - RELOC/tex/latex/polyglossia/gloss-bahasam.ldf - RELOC/tex/latex/polyglossia/gloss-basque.ldf - RELOC/tex/latex/polyglossia/gloss-bengali.ldf - RELOC/tex/latex/polyglossia/gloss-brazil.ldf - RELOC/tex/latex/polyglossia/gloss-breton.ldf - RELOC/tex/latex/polyglossia/gloss-bulgarian.ldf - RELOC/tex/latex/polyglossia/gloss-catalan.ldf - RELOC/tex/latex/polyglossia/gloss-coptic.ldf - RELOC/tex/latex/polyglossia/gloss-croatian.ldf - RELOC/tex/latex/polyglossia/gloss-czech.ldf - RELOC/tex/latex/polyglossia/gloss-danish.ldf - RELOC/tex/latex/polyglossia/gloss-divehi.ldf - RELOC/tex/latex/polyglossia/gloss-dutch.ldf - RELOC/tex/latex/polyglossia/gloss-english.ldf - RELOC/tex/latex/polyglossia/gloss-esperanto.ldf - RELOC/tex/latex/polyglossia/gloss-estonian.ldf - RELOC/tex/latex/polyglossia/gloss-farsi.ldf - RELOC/tex/latex/polyglossia/gloss-finnish.ldf - RELOC/tex/latex/polyglossia/gloss-french.ldf - RELOC/tex/latex/polyglossia/gloss-friulan.ldf - RELOC/tex/latex/polyglossia/gloss-galician.ldf - RELOC/tex/latex/polyglossia/gloss-german.ldf - RELOC/tex/latex/polyglossia/gloss-greek.ldf - RELOC/tex/latex/polyglossia/gloss-hebrew.ldf - RELOC/tex/latex/polyglossia/gloss-hindi.ldf - RELOC/tex/latex/polyglossia/gloss-icelandic.ldf - RELOC/tex/latex/polyglossia/gloss-interlingua.ldf - RELOC/tex/latex/polyglossia/gloss-irish.ldf - RELOC/tex/latex/polyglossia/gloss-italian.ldf - RELOC/tex/latex/polyglossia/gloss-kannada.ldf - RELOC/tex/latex/polyglossia/gloss-khmer.ldf - RELOC/tex/latex/polyglossia/gloss-korean.ldf - RELOC/tex/latex/polyglossia/gloss-lao.ldf - RELOC/tex/latex/polyglossia/gloss-latin.ldf - RELOC/tex/latex/polyglossia/gloss-latvian.ldf - RELOC/tex/latex/polyglossia/gloss-lithuanian.ldf - RELOC/tex/latex/polyglossia/gloss-lsorbian.ldf - RELOC/tex/latex/polyglossia/gloss-magyar.ldf - RELOC/tex/latex/polyglossia/gloss-malayalam.ldf - RELOC/tex/latex/polyglossia/gloss-marathi.ldf - RELOC/tex/latex/polyglossia/gloss-nko.ldf - RELOC/tex/latex/polyglossia/gloss-norsk.ldf - RELOC/tex/latex/polyglossia/gloss-nynorsk.ldf - RELOC/tex/latex/polyglossia/gloss-occitan.ldf - RELOC/tex/latex/polyglossia/gloss-piedmontese.ldf - RELOC/tex/latex/polyglossia/gloss-polish.ldf - RELOC/tex/latex/polyglossia/gloss-portuges.ldf - RELOC/tex/latex/polyglossia/gloss-romanian.ldf - RELOC/tex/latex/polyglossia/gloss-romansh.ldf - RELOC/tex/latex/polyglossia/gloss-russian.ldf - RELOC/tex/latex/polyglossia/gloss-samin.ldf - RELOC/tex/latex/polyglossia/gloss-sanskrit.ldf - RELOC/tex/latex/polyglossia/gloss-scottish.ldf - RELOC/tex/latex/polyglossia/gloss-serbian.ldf - RELOC/tex/latex/polyglossia/gloss-slovak.ldf - RELOC/tex/latex/polyglossia/gloss-slovenian.ldf - RELOC/tex/latex/polyglossia/gloss-spanish.ldf - RELOC/tex/latex/polyglossia/gloss-swedish.ldf - RELOC/tex/latex/polyglossia/gloss-syriac.ldf - RELOC/tex/latex/polyglossia/gloss-tamil.ldf - RELOC/tex/latex/polyglossia/gloss-telugu.ldf - RELOC/tex/latex/polyglossia/gloss-thai.ldf - RELOC/tex/latex/polyglossia/gloss-tibetan.ldf - RELOC/tex/latex/polyglossia/gloss-turkish.ldf - RELOC/tex/latex/polyglossia/gloss-turkmen.ldf - RELOC/tex/latex/polyglossia/gloss-ukrainian.ldf - RELOC/tex/latex/polyglossia/gloss-urdu.ldf - RELOC/tex/latex/polyglossia/gloss-usorbian.ldf - RELOC/tex/latex/polyglossia/gloss-vietnamese.ldf - RELOC/tex/latex/polyglossia/gloss-welsh.ldf - RELOC/tex/latex/polyglossia/hebrewcal.sty - RELOC/tex/latex/polyglossia/hijrical.sty - RELOC/tex/latex/polyglossia/nkonumbers.sty - RELOC/tex/latex/polyglossia/polyglossia-frpt.lua - RELOC/tex/latex/polyglossia/polyglossia-tibt.lua - RELOC/tex/latex/polyglossia/polyglossia.lua - RELOC/tex/latex/polyglossia/polyglossia.sty - RELOC/tex/latex/polyglossia/xgreek-fixes.def -docfiles size=135 - RELOC/doc/latex/polyglossia/README - RELOC/doc/latex/polyglossia/example-arabic.pdf - RELOC/doc/latex/polyglossia/example-arabic.tex - RELOC/doc/latex/polyglossia/example-korean.pdf - RELOC/doc/latex/polyglossia/example-korean.tex - RELOC/doc/latex/polyglossia/example-thai.pdf - RELOC/doc/latex/polyglossia/example-thai.tex - RELOC/doc/latex/polyglossia/examples.pdf - RELOC/doc/latex/polyglossia/examples.tex - RELOC/doc/latex/polyglossia/polyglossia.pdf - RELOC/doc/latex/polyglossia/polyglossia.tex - RELOC/doc/latex/polyglossia/test-welsh.pdf - RELOC/doc/latex/polyglossia/test-welsh.tex -srcfiles size=77 - RELOC/source/latex/polyglossia/polyglossia.dtx -catalogue-also babel -catalogue-ctan /macros/latex/contrib/polyglossia -catalogue-date 2015-08-07 08:42:07 +0200 -catalogue-license lppl1.3 -catalogue-topics multilingual use-xetex use-luatex -catalogue-version 1.42.0 - -name polynomial -category Package -revision 15878 -shortdesc Typeset (univariate) polynomials. -relocated 1 -longdesc The package offers an easy way to write (univariate) -longdesc polynomials and rational functions. It defines two commands, -longdesc one for polynomials \polynomial{coeffs} and one for rational -longdesc functions \polynomialfrac{Numerator}{Denominator}. Both -longdesc commands take lists of coefficients as arguments, and offer -longdesc limited optional behaviour. -runfiles size=2 - RELOC/tex/latex/polynomial/polynomial.sty -docfiles size=37 - RELOC/doc/latex/polynomial/README - RELOC/doc/latex/polynomial/polynomial.pdf -srcfiles size=5 - RELOC/source/latex/polynomial/polynomial.dtx - RELOC/source/latex/polynomial/polynomial.ins -catalogue-ctan /macros/latex/contrib/polynomial -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 - -name polynom -category Package -revision 15878 -shortdesc Macros for manipulating polynomials. -relocated 1 -longdesc The polynom package implements macros for manipulating -longdesc polynomials, for example it can typeset long polynomial -longdesc divisions. The main test case and application is the polynomial -longdesc ring in one variable with rational coefficients. -runfiles size=16 - RELOC/tex/latex/polynom/polynom.sty -docfiles size=69 - RELOC/doc/latex/polynom/README - RELOC/doc/latex/polynom/polydemo.pdf - RELOC/doc/latex/polynom/polydemo.tex - RELOC/doc/latex/polynom/polynom.pdf -srcfiles size=35 - RELOC/source/latex/polynom/polynom.dtx - RELOC/source/latex/polynom/polynom.ins -catalogue-ctan /macros/latex/contrib/polynom -catalogue-date 2012-04-10 17:31:04 +0200 -catalogue-license lppl -catalogue-version 0.17 - -name polytable -category Package -revision 31235 -shortdesc Tabular-like environments with named columns. -relocated 1 -longdesc This package implements a variant of tabular-like environments -longdesc where columns can be given a name and entries can flexibly be -longdesc placed between arbitrary columns. Complex alignment-based -longdesc layouts, for example for program code, are possible. -runfiles size=7 - RELOC/tex/latex/polytable/polytable.sty -docfiles size=72 - RELOC/doc/latex/polytable/README - RELOC/doc/latex/polytable/polytable.pdf -srcfiles size=22 - RELOC/source/latex/polytable/polytable.dtx - RELOC/source/latex/polytable/polytable.ins -catalogue-ctan /macros/latex/contrib/polytable -catalogue-date 2012-05-31 00:57:47 +0200 -catalogue-license lppl -catalogue-version 0.8.2 - -name postcards -category Package -revision 21641 -shortdesc Facilitates mass-mailing of postcards (junkmail). -relocated 1 -longdesc A modification of the standard LaTeX letter class which prints -longdesc multiple, pre-stamped, 5.5" by 3.5" postcards (a US standard -longdesc size) via the envlab and mailing packages. An address database -longdesc is employed to address the front side of each postcard and a -longdesc message is printed on the back side of all. An illustrative -longdesc example is provided. -runfiles size=1 - RELOC/tex/latex/postcards/postcards.cls -docfiles size=3 - RELOC/doc/latex/postcards/README - RELOC/doc/latex/postcards/datasmp.txt - RELOC/doc/latex/postcards/pcardsmp.tex -catalogue-ctan /macros/latex/contrib/postcards -catalogue-date 2012-05-30 20:28:00 +0200 -catalogue-license lppl - -name poster-mac -category Package -revision 18305 -shortdesc Make posters and banners with TeX. -relocated 1 -longdesc The package offers macros for making posters and banners with -longdesc TeX. It is compatible with most TeX macro formats, including -longdesc Plain TeX, LaTeX, AmSTeX, and AmS-LaTeX. The package creates a -longdesc poster as huge box, which is then distributed over as many -longdesc printer pages as necessary. The only special requirement is -longdesc that your printer not be bothered by text that lies off the -longdesc page. This is true of most printers, including laser printers -longdesc and PostScript printers. -runfiles size=4 - RELOC/tex/generic/poster-mac/poster.sty - RELOC/tex/generic/poster-mac/poster.tex -docfiles size=34 - RELOC/doc/generic/poster-mac/Changes - RELOC/doc/generic/poster-mac/Makefile - RELOC/doc/generic/poster-mac/README - RELOC/doc/generic/poster-mac/poster-doc.pdf - RELOC/doc/generic/poster-mac/poster-doc.tex - RELOC/doc/generic/poster-mac/poster1.pdf - RELOC/doc/generic/poster-mac/poster2.pdf -catalogue-ctan /macros/generic/poster -catalogue-date 2012-03-31 22:28:21 +0200 -catalogue-license lppl -catalogue-version 1.1 - -name powerdot-FUBerlin -category Package -revision 15878 -shortdesc Powerdot, using the style of FU Berlin. -relocated 1 -longdesc The bundle provides a powerdot-derived class and a package for -longdesc use with powerdot to provide the corporate design of the Free -longdesc University in Berlin. Users may use the class itself -longdesc (FUpowerdot) or use the package in the usual way with -longdesc \style=BerlinFU as a class option. Examples of using both the -longdesc class and the package are provided; the PDF is visually -longdesc identical, so the catalogue only lists one; the sources of the -longdesc examples do of course differ. -runfiles size=4 - RELOC/tex/latex/powerdot-FUBerlin/FUpowerdot.cls - RELOC/tex/latex/powerdot-FUBerlin/powerdot-BerlinFU.sty -docfiles size=1135 - RELOC/doc/latex/powerdot-FUBerlin/FULogo.eps - RELOC/doc/latex/powerdot-FUBerlin/FULogo_RGB.eps - RELOC/doc/latex/powerdot-FUBerlin/FUbib.eps - RELOC/doc/latex/powerdot-FUBerlin/FUseal.eps - RELOC/doc/latex/powerdot-FUBerlin/README - RELOC/doc/latex/powerdot-FUBerlin/exampleClass.pdf - RELOC/doc/latex/powerdot-FUBerlin/exampleClass.tex - RELOC/doc/latex/powerdot-FUBerlin/exampleStyle.pdf - RELOC/doc/latex/powerdot-FUBerlin/exampleStyle.tex - RELOC/doc/latex/powerdot-FUBerlin/silberlaube2.eps -catalogue-ctan /macros/latex/contrib/powerdot-FUBerlin -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.01 - -name powerdot -category Package -revision 32549 -shortdesc A presentation class. -relocated 1 -longdesc Powerdot is a presentation class for LaTeX that allows for the -longdesc quick and easy development of professional presentations. It -longdesc comes with many tools that enhance presentations and aid the -longdesc presenter. Examples are automatic overlays, personal notes and -longdesc a handout mode. To view a presentation, DVI, PS or PDF output -longdesc can be used. A powerful template system is available to easily -longdesc develop new styles. A LyX layout file is provided. -runfiles size=49 - RELOC/tex/latex/powerdot/powerdot-aggie.sty - RELOC/tex/latex/powerdot/powerdot-bframe.sty - RELOC/tex/latex/powerdot/powerdot-ciment.sty - RELOC/tex/latex/powerdot/powerdot-default.ps - RELOC/tex/latex/powerdot/powerdot-default.sty - RELOC/tex/latex/powerdot/powerdot-elcolors.sty - RELOC/tex/latex/powerdot/powerdot-fyma.sty - RELOC/tex/latex/powerdot/powerdot-horatio.sty - RELOC/tex/latex/powerdot/powerdot-husky.sty - RELOC/tex/latex/powerdot/powerdot-ikeda.sty - RELOC/tex/latex/powerdot/powerdot-jefka.sty - RELOC/tex/latex/powerdot/powerdot-klope.sty - RELOC/tex/latex/powerdot/powerdot-paintings.sty - RELOC/tex/latex/powerdot/powerdot-pazik.sty - RELOC/tex/latex/powerdot/powerdot-sailor.sty - RELOC/tex/latex/powerdot/powerdot-simple.sty - RELOC/tex/latex/powerdot/powerdot-tycja.sty - RELOC/tex/latex/powerdot/powerdot-upen.sty - RELOC/tex/latex/powerdot/powerdot.cls -docfiles size=313 - RELOC/doc/latex/powerdot/README - RELOC/doc/latex/powerdot/manifest.txt - RELOC/doc/latex/powerdot/pdpream.ble - RELOC/doc/latex/powerdot/powerdot-example.lyx - RELOC/doc/latex/powerdot/powerdot-example.tex - RELOC/doc/latex/powerdot/powerdot-example1.tex - RELOC/doc/latex/powerdot/powerdot-example2.tex - RELOC/doc/latex/powerdot/powerdot-example3.tex - RELOC/doc/latex/powerdot/powerdot-styleexample.tex - RELOC/doc/latex/powerdot/powerdot-styletest.tex - RELOC/doc/latex/powerdot/powerdot.bib - RELOC/doc/latex/powerdot/powerdot.layout - RELOC/doc/latex/powerdot/powerdot.pdf - RELOC/doc/latex/powerdot/powerdotDE.pdf - RELOC/doc/latex/powerdot/powerdotDE.tex -srcfiles size=79 - RELOC/source/latex/powerdot/powerdot.dtx -catalogue-ctan /macros/latex/contrib/powerdot -catalogue-date 2014-01-02 07:32:11 +0100 -catalogue-license lppl1.3 -catalogue-version 1.5 - -name ppr-prv -category Package -revision 15878 -shortdesc Prosper preview. -relocated 1 -longdesc This class is used with LaTeX presentations using the prosper -longdesc class. ppr-prv stands for 'Prosper Preview'. The aim of this -longdesc class is to produce a printable version of the slides written -longdesc with Prosper, with two slides per page. -runfiles size=7 - RELOC/tex/latex/ppr-prv/HAP-ppr-prv.def - RELOC/tex/latex/ppr-prv/ppr-prv.cls -docfiles size=84 - RELOC/doc/latex/ppr-prv/README - RELOC/doc/latex/ppr-prv/ppr-prv.pdf -srcfiles size=10 - RELOC/source/latex/ppr-prv/ppr-prv.dtx - RELOC/source/latex/ppr-prv/ppr-prv.ins -catalogue-ctan /macros/latex/contrib/ppr-prv -catalogue-date 2012-05-31 00:57:47 +0200 -catalogue-license lppl -catalogue-version 0.13c - -name pracjourn -category Package -revision 15878 -shortdesc Typeset articles for PracTeX. -relocated 1 -longdesc The pracjourn class is used for typesetting articles in the -longdesc PracTeX Journal. It is based on the article class with -longdesc modifications to allow for more flexible front-matter and -longdesc revision control, among other small changes. -runfiles size=4 - RELOC/tex/latex/pracjourn/pracjourn.cls -docfiles size=107 - RELOC/doc/latex/pracjourn/README - RELOC/doc/latex/pracjourn/pjsample.ltx - RELOC/doc/latex/pracjourn/pjsample.pdf - RELOC/doc/latex/pracjourn/pracjourn.pdf -srcfiles size=14 - RELOC/source/latex/pracjourn/pracjourn.dtx - RELOC/source/latex/pracjourn/pracjourn.ins -catalogue-ctan /macros/latex/contrib/pracjourn -catalogue-date 2012-04-01 11:28:19 +0200 -catalogue-license gpl -catalogue-version 0.4n - -name preprint -category Package -revision 30447 -shortdesc A bundle of packages provided "as is". -relocated 1 -longdesc The bundle comprises: authblk, which permits footnote style -longdesc author/affiliation input in the \author command, balance, to -longdesc balance the end of \twocolumn pages, figcaps, to send figure -longdesc captions, etc., to end document, fullpage, to set narrow page -longdesc margins and set a fixed page style, and sublabel, which permits -longdesc counters to be subnumbered. -runfiles size=9 - RELOC/tex/latex/preprint/authblk.sty - RELOC/tex/latex/preprint/balance.sty - RELOC/tex/latex/preprint/figcaps.sty - RELOC/tex/latex/preprint/fullpage.sty - RELOC/tex/latex/preprint/sublabel.sty -docfiles size=189 - RELOC/doc/latex/preprint/README - RELOC/doc/latex/preprint/authblk.pdf - RELOC/doc/latex/preprint/balance.pdf - RELOC/doc/latex/preprint/figcaps.pdf - RELOC/doc/latex/preprint/fullpage.pdf - RELOC/doc/latex/preprint/sublabel.pdf -srcfiles size=56 - RELOC/source/latex/preprint/authblk.drv - RELOC/source/latex/preprint/authblk.dtx - RELOC/source/latex/preprint/authblk.ins - RELOC/source/latex/preprint/balance.drv - RELOC/source/latex/preprint/balance.dtx - RELOC/source/latex/preprint/balance.ins - RELOC/source/latex/preprint/figcaps.drv - RELOC/source/latex/preprint/figcaps.dtx - RELOC/source/latex/preprint/figcaps.ins - RELOC/source/latex/preprint/fullpage.drv - RELOC/source/latex/preprint/fullpage.dtx - RELOC/source/latex/preprint/fullpage.ins - RELOC/source/latex/preprint/sublabel.drv - RELOC/source/latex/preprint/sublabel.dtx - RELOC/source/latex/preprint/sublabel.ins -catalogue-ctan /macros/latex/contrib/preprint -catalogue-date 2014-10-15 18:29:49 +0200 -catalogue-license collection -catalogue-version 2011 - -name prerex -category Package -revision 35391 -shortdesc Interactive editor and macro support for prerequisite charts. -relocated 1 -longdesc This package consists of prerex.sty, a LaTeX package for -longdesc producing charts of course nodes linked by arrows representing -longdesc pre- and co-requisites, and prerex, an interactive program for -longdesc creating and editing chart descriptions. The implementation of -longdesc prerex.sty uses PGF, so that it may be used equally happily -longdesc with LaTeX or pdfLaTeX; prerex itself is written in C. The -longdesc package includes source code for a previewer application, a -longdesc lightweight Qt-4 and poppler-based prerex-enabled PDF viewer. -runfiles size=6 - RELOC/tex/latex/prerex/prerex.sty -docfiles size=232 - RELOC/doc/latex/prerex/README - RELOC/doc/latex/prerex/chart.pdf - RELOC/doc/latex/prerex/chart.svg - RELOC/doc/latex/prerex/chart.tex - RELOC/doc/latex/prerex/intro.pdf - RELOC/doc/latex/prerex/intro.tex - RELOC/doc/latex/prerex/introFonts.png - RELOC/doc/latex/prerex/introchart1.tex - RELOC/doc/latex/prerex/introchart2.tex - RELOC/doc/latex/prerex/prerex-6.5.4.tar.gz - RELOC/doc/latex/prerex/prerex.pdf - RELOC/doc/latex/prerex/prerex.sty.7 - RELOC/doc/latex/prerex/prerex.sty.7.pdf - RELOC/doc/latex/prerex/prerex.tex - RELOC/doc/latex/prerex/vprerex-6.4.3.tar.gz - RELOC/doc/man/man5/prerex.5 - RELOC/doc/man/man5/prerex.man5.pdf -catalogue-ctan /graphics/prerex -catalogue-date 2015-01-20 21:02:56 +0100 -catalogue-license gpl - -name presentations-en -category Package -revision 29803 -shortdesc Examples from the book Presentations with LaTeX. -relocated 1 -longdesc This bundle contains all the examples, as source, eps and pdf, -longdesc of the author's book "Presentations with LaTeX", from the Dante- -longdesc Edition series, Published by Lehmanns Media. -docfiles size=542 - RELOC/doc/latex/presentations-en/01-01-1.ltx2crop - RELOC/doc/latex/presentations-en/01-01-2.ltx2ps - RELOC/doc/latex/presentations-en/01-01-3.ltx2 - RELOC/doc/latex/presentations-en/01-01-4.ltx2 - RELOC/doc/latex/presentations-en/01-01-5.ltx2ps - RELOC/doc/latex/presentations-en/01-01-6.ltx2 - RELOC/doc/latex/presentations-en/01-02-1.ltxb - RELOC/doc/latex/presentations-en/01-03-1.ltxb - RELOC/doc/latex/presentations-en/01-03-2.ltxb - RELOC/doc/latex/presentations-en/01-03-3.ltx - RELOC/doc/latex/presentations-en/01-03-4.ltx - RELOC/doc/latex/presentations-en/01-03-5.ltxb - RELOC/doc/latex/presentations-en/02-01-1.ltxpd - RELOC/doc/latex/presentations-en/02-01-2.ltxpd - RELOC/doc/latex/presentations-en/02-01-3.ltxpd - RELOC/doc/latex/presentations-en/02-02-1.ltxpd - RELOC/doc/latex/presentations-en/02-03-1.ltxpd - RELOC/doc/latex/presentations-en/02-03-2.ltxpd - RELOC/doc/latex/presentations-en/02-03-3.ltxpd - RELOC/doc/latex/presentations-en/02-03-4.ltxpd - RELOC/doc/latex/presentations-en/02-04-1.ltxpd - RELOC/doc/latex/presentations-en/02-04-2.ltxpd - RELOC/doc/latex/presentations-en/02-04-3.ltxpd - RELOC/doc/latex/presentations-en/02-04-4.ltxpd - RELOC/doc/latex/presentations-en/02-04-5.ltxpd - RELOC/doc/latex/presentations-en/02-04-6.ltxpd - RELOC/doc/latex/presentations-en/02-04-7.ltxpd - RELOC/doc/latex/presentations-en/02-04-8.ltxpd - RELOC/doc/latex/presentations-en/02-05-1.ltxpd - RELOC/doc/latex/presentations-en/02-06-1.ltxpd - RELOC/doc/latex/presentations-en/02-06-2.ltxps - RELOC/doc/latex/presentations-en/02-07-1.ltxpd - RELOC/doc/latex/presentations-en/02-09-1.ltxps - RELOC/doc/latex/presentations-en/02-10-1.ltxpd - RELOC/doc/latex/presentations-en/02-10-2.ltxpd - RELOC/doc/latex/presentations-en/02-10-3.ltxpd - RELOC/doc/latex/presentations-en/02-10-4.ltxpd - RELOC/doc/latex/presentations-en/02-10-5.ltxpd - RELOC/doc/latex/presentations-en/02-10-6.ltxpd - RELOC/doc/latex/presentations-en/02-11-1.ltxpd - RELOC/doc/latex/presentations-en/02-12-1.ltxpd - RELOC/doc/latex/presentations-en/02-12-2.ltxpd - RELOC/doc/latex/presentations-en/02-13-1.ltxpd - RELOC/doc/latex/presentations-en/02-13-2.ltxpd - RELOC/doc/latex/presentations-en/02-13-3.ltxpd - RELOC/doc/latex/presentations-en/02-14-1.ltxpd - RELOC/doc/latex/presentations-en/02-14-10.ltxpd - RELOC/doc/latex/presentations-en/02-14-11.ltxpd - RELOC/doc/latex/presentations-en/02-14-12.ltxpd - RELOC/doc/latex/presentations-en/02-14-13.ltxpd - RELOC/doc/latex/presentations-en/02-14-14.ltxpd - RELOC/doc/latex/presentations-en/02-14-15.ltxpd - RELOC/doc/latex/presentations-en/02-14-16.ltxpd - RELOC/doc/latex/presentations-en/02-14-17.ltxpd - RELOC/doc/latex/presentations-en/02-14-18.ltxpd - RELOC/doc/latex/presentations-en/02-14-19.ltxpd - RELOC/doc/latex/presentations-en/02-14-2.ltxpd - RELOC/doc/latex/presentations-en/02-14-3.ltxpd - RELOC/doc/latex/presentations-en/02-14-4.ltxpd - RELOC/doc/latex/presentations-en/02-14-5.ltxpd - RELOC/doc/latex/presentations-en/02-14-6.ltxpd - RELOC/doc/latex/presentations-en/02-14-7.ltxpd - RELOC/doc/latex/presentations-en/02-14-8.ltxpd - RELOC/doc/latex/presentations-en/02-14-9.ltxpd - RELOC/doc/latex/presentations-en/03-01-1.ltxpd - RELOC/doc/latex/presentations-en/03-02-1.ltxpd - RELOC/doc/latex/presentations-en/03-03-1.ltxpd - RELOC/doc/latex/presentations-en/03-03-2.ltxpd - RELOC/doc/latex/presentations-en/03-04-1.ltxpd - RELOC/doc/latex/presentations-en/04-01-1.ltxb - RELOC/doc/latex/presentations-en/04-01-2.ltxb - RELOC/doc/latex/presentations-en/04-01-3.ltxb - RELOC/doc/latex/presentations-en/04-01-4.ltxb - RELOC/doc/latex/presentations-en/04-03-1.ltxb - RELOC/doc/latex/presentations-en/04-03-2.ltx2 - RELOC/doc/latex/presentations-en/04-04-1.ltxb - RELOC/doc/latex/presentations-en/04-05-1.ltxb - RELOC/doc/latex/presentations-en/04-06-1.ltxb - RELOC/doc/latex/presentations-en/04-06-10.ltxb - RELOC/doc/latex/presentations-en/04-06-11.ltxb - RELOC/doc/latex/presentations-en/04-06-2.ltxb - RELOC/doc/latex/presentations-en/04-06-3.ltxb - RELOC/doc/latex/presentations-en/04-06-4.ltxbps - RELOC/doc/latex/presentations-en/04-06-5.ltxb - RELOC/doc/latex/presentations-en/04-06-6.ltxb - RELOC/doc/latex/presentations-en/04-06-7.ltxb - RELOC/doc/latex/presentations-en/04-06-8.ltxb - RELOC/doc/latex/presentations-en/04-06-9.ltxb - RELOC/doc/latex/presentations-en/04-07-1.ltxb - RELOC/doc/latex/presentations-en/04-08-1.ltxb - RELOC/doc/latex/presentations-en/04-09-1.ltxbps - RELOC/doc/latex/presentations-en/04-11-1.ltxb - RELOC/doc/latex/presentations-en/04-11-2.ltxb - RELOC/doc/latex/presentations-en/04-11-3.ltxb - RELOC/doc/latex/presentations-en/04-12-1.ltxb - RELOC/doc/latex/presentations-en/04-12-2.ltxb - RELOC/doc/latex/presentations-en/04-13-1.ltxb - RELOC/doc/latex/presentations-en/04-13-2.ltxb - RELOC/doc/latex/presentations-en/04-14-1.ltxb - RELOC/doc/latex/presentations-en/04-15-1.ltxb - RELOC/doc/latex/presentations-en/04-15-2.ltxb - RELOC/doc/latex/presentations-en/04-16-1.ltxb - RELOC/doc/latex/presentations-en/04-16-2.ltxb - RELOC/doc/latex/presentations-en/04-16-3.ltxb - RELOC/doc/latex/presentations-en/04-17-1.ltxb - RELOC/doc/latex/presentations-en/04-18-1.ltxb - RELOC/doc/latex/presentations-en/04-18-2.ltxb - RELOC/doc/latex/presentations-en/04-19-1.ltxb - RELOC/doc/latex/presentations-en/04-19-2.ltxb - RELOC/doc/latex/presentations-en/04-20-1.ltxb - RELOC/doc/latex/presentations-en/04-20-2.ltxb - RELOC/doc/latex/presentations-en/04-20-3.ltxb - RELOC/doc/latex/presentations-en/04-20-4.ltxb - RELOC/doc/latex/presentations-en/04-20-5.ltxb - RELOC/doc/latex/presentations-en/04-22-1.ltxb - RELOC/doc/latex/presentations-en/04-22-2.ltxb - RELOC/doc/latex/presentations-en/04-22-3.ltxb - RELOC/doc/latex/presentations-en/04-22-4.ltxb - RELOC/doc/latex/presentations-en/04-23-1.ltxb - RELOC/doc/latex/presentations-en/04-23-2.ltxb - RELOC/doc/latex/presentations-en/04-23-3.ltxb - RELOC/doc/latex/presentations-en/04-24-1.ltxb - RELOC/doc/latex/presentations-en/04-24-2.ltxb - RELOC/doc/latex/presentations-en/04-25-1.ltxb - RELOC/doc/latex/presentations-en/04-25-2.ltxb - RELOC/doc/latex/presentations-en/04-26-1.ltxb - RELOC/doc/latex/presentations-en/04-26-2.ltxb - RELOC/doc/latex/presentations-en/04-26-3.ltxb - RELOC/doc/latex/presentations-en/04-26-4.ltxb - RELOC/doc/latex/presentations-en/04-27-1.ltxb - RELOC/doc/latex/presentations-en/04-27-10.ltxb - RELOC/doc/latex/presentations-en/04-27-11.ltxb - RELOC/doc/latex/presentations-en/04-27-12.ltxb - RELOC/doc/latex/presentations-en/04-27-13.ltxb - RELOC/doc/latex/presentations-en/04-27-14.ltxb - RELOC/doc/latex/presentations-en/04-27-15.ltxb - RELOC/doc/latex/presentations-en/04-27-16.ltxb - RELOC/doc/latex/presentations-en/04-27-17.ltxb - RELOC/doc/latex/presentations-en/04-27-18.ltxb - RELOC/doc/latex/presentations-en/04-27-19.ltxb - RELOC/doc/latex/presentations-en/04-27-2.ltxb - RELOC/doc/latex/presentations-en/04-27-20.ltxb - RELOC/doc/latex/presentations-en/04-27-21.ltxb - RELOC/doc/latex/presentations-en/04-27-22.ltxb - RELOC/doc/latex/presentations-en/04-27-23.ltxb - RELOC/doc/latex/presentations-en/04-27-24.ltxb - RELOC/doc/latex/presentations-en/04-27-25.ltxb - RELOC/doc/latex/presentations-en/04-27-26.ltxb - RELOC/doc/latex/presentations-en/04-27-27.ltxb - RELOC/doc/latex/presentations-en/04-27-28.ltxb - RELOC/doc/latex/presentations-en/04-27-29.ltxb - RELOC/doc/latex/presentations-en/04-27-3.ltxb - RELOC/doc/latex/presentations-en/04-27-30.ltxb - RELOC/doc/latex/presentations-en/04-27-31.ltxb - RELOC/doc/latex/presentations-en/04-27-32.ltxb - RELOC/doc/latex/presentations-en/04-27-33.ltxb - RELOC/doc/latex/presentations-en/04-27-34.ltxb - RELOC/doc/latex/presentations-en/04-27-35.ltxb - RELOC/doc/latex/presentations-en/04-27-36.ltxb - RELOC/doc/latex/presentations-en/04-27-37.ltxb - RELOC/doc/latex/presentations-en/04-27-38.ltxb - RELOC/doc/latex/presentations-en/04-27-39.ltxb - RELOC/doc/latex/presentations-en/04-27-4.ltxb - RELOC/doc/latex/presentations-en/04-27-40.ltxb - RELOC/doc/latex/presentations-en/04-27-41.ltxb - RELOC/doc/latex/presentations-en/04-27-42.ltxb - RELOC/doc/latex/presentations-en/04-27-43.ltxb - RELOC/doc/latex/presentations-en/04-27-44.ltxb - RELOC/doc/latex/presentations-en/04-27-45.ltxb - RELOC/doc/latex/presentations-en/04-27-46.ltxb - RELOC/doc/latex/presentations-en/04-27-47.ltxb - RELOC/doc/latex/presentations-en/04-27-48.ltxb - RELOC/doc/latex/presentations-en/04-27-49.ltxb - RELOC/doc/latex/presentations-en/04-27-5.ltxb - RELOC/doc/latex/presentations-en/04-27-50.ltxb - RELOC/doc/latex/presentations-en/04-27-51.ltxb - RELOC/doc/latex/presentations-en/04-27-52.ltxb - RELOC/doc/latex/presentations-en/04-27-53.ltxb - RELOC/doc/latex/presentations-en/04-27-54.ltxb - RELOC/doc/latex/presentations-en/04-27-55.ltxb - RELOC/doc/latex/presentations-en/04-27-56.ltxb - RELOC/doc/latex/presentations-en/04-27-57.ltxb - RELOC/doc/latex/presentations-en/04-27-58.ltxb - RELOC/doc/latex/presentations-en/04-27-59.ltxb - RELOC/doc/latex/presentations-en/04-27-6.ltxb - RELOC/doc/latex/presentations-en/04-27-60.ltxb - RELOC/doc/latex/presentations-en/04-27-61.ltxb - RELOC/doc/latex/presentations-en/04-27-62.ltxb - RELOC/doc/latex/presentations-en/04-27-63.ltxb - RELOC/doc/latex/presentations-en/04-27-64.ltxb - RELOC/doc/latex/presentations-en/04-27-65.ltxb - RELOC/doc/latex/presentations-en/04-27-7.ltxb - RELOC/doc/latex/presentations-en/04-27-8.ltxb - RELOC/doc/latex/presentations-en/04-27-9.ltxb - RELOC/doc/latex/presentations-en/05-00-1.ltxb - RELOC/doc/latex/presentations-en/05-01-1.ltxb - RELOC/doc/latex/presentations-en/05-02-1.ltxb - RELOC/doc/latex/presentations-en/05-03-1.ltxb - RELOC/doc/latex/presentations-en/05-03-2.ltxb - RELOC/doc/latex/presentations-en/06-01-1.ltx - RELOC/doc/latex/presentations-en/06-01-2.ltx - RELOC/doc/latex/presentations-en/06-01-3.ltx - RELOC/doc/latex/presentations-en/06-01-4.ltx - RELOC/doc/latex/presentations-en/06-01-5.ltx - RELOC/doc/latex/presentations-en/06-01-6.ltx - RELOC/doc/latex/presentations-en/06-01-7.ltx - RELOC/doc/latex/presentations-en/06-02-1.ltxps - RELOC/doc/latex/presentations-en/06-02-2.ltx - RELOC/doc/latex/presentations-en/06-04-1.ltx - RELOC/doc/latex/presentations-en/06-04-2.ltx - RELOC/doc/latex/presentations-en/06-04-3.ltx - RELOC/doc/latex/presentations-en/06-05-1.ltx - RELOC/doc/latex/presentations-en/07-03-1.ltx - RELOC/doc/latex/presentations-en/07-03-2.ltx - RELOC/doc/latex/presentations-en/07-03-3.ltxpd - RELOC/doc/latex/presentations-en/07-03-4.ltxb - RELOC/doc/latex/presentations-en/07-05-1.ltxbps - RELOC/doc/latex/presentations-en/07-05-2.ltxbps - RELOC/doc/latex/presentations-en/DEexa.sty - RELOC/doc/latex/presentations-en/DEoptions.sty - RELOC/doc/latex/presentations-en/PPRtime.sty - RELOC/doc/latex/presentations-en/README - RELOC/doc/latex/presentations-en/Textdemo.tex - RELOC/doc/latex/presentations-en/beamer-demo-en.tex - RELOC/doc/latex/presentations-en/beamer-demo.tex - RELOC/doc/latex/presentations-en/beamer-demo2.tex - RELOC/doc/latex/presentations-en/beispiel.cls - RELOC/doc/latex/presentations-en/bspcalweekly.cls - RELOC/doc/latex/presentations-en/bspdvdcoll.cls - RELOC/doc/latex/presentations-en/bspfont.cls - RELOC/doc/latex/presentations-en/bsppstricks.cls - RELOC/doc/latex/presentations-en/buch-E.bib - RELOC/doc/latex/presentations-en/buch.bib - RELOC/doc/latex/presentations-en/exa-fontconfig.tex - RELOC/doc/latex/presentations-en/exaarticle.cls - RELOC/doc/latex/presentations-en/exaarticle2.cls - RELOC/doc/latex/presentations-en/exaartplain.cls - RELOC/doc/latex/presentations-en/exabeamer.cls - RELOC/doc/latex/presentations-en/exabook.cls - RELOC/doc/latex/presentations-en/exabook2.cls - RELOC/doc/latex/presentations-en/exadante.cls - RELOC/doc/latex/presentations-en/exafoils.cls - RELOC/doc/latex/presentations-en/exafubeamer.cls - RELOC/doc/latex/presentations-en/exafupd.cls - RELOC/doc/latex/presentations-en/examargin.cls - RELOC/doc/latex/presentations-en/examemoir.cls - RELOC/doc/latex/presentations-en/examinimal-mathsymbols.cls - RELOC/doc/latex/presentations-en/examinimal.cls - RELOC/doc/latex/presentations-en/exapd.cls - RELOC/doc/latex/presentations-en/exaprosper.cls - RELOC/doc/latex/presentations-en/exareport.cls - RELOC/doc/latex/presentations-en/exaseminar.cls - RELOC/doc/latex/presentations-en/exaslidenotes.cls - RELOC/doc/latex/presentations-en/exasymbol.cls - RELOC/doc/latex/presentations-en/exaxetex.cls - RELOC/doc/latex/presentations-en/fontDemo-E.tex - RELOC/doc/latex/presentations-en/fontDemo.tex - RELOC/doc/latex/presentations-en/images/beamer/TU.jpg - RELOC/doc/latex/presentations-en/images/beamer/TeX.pdf - RELOC/doc/latex/presentations-en/images/beamer/beamer0.pdf - RELOC/doc/latex/presentations-en/images/beamer/beamer1.pdf - RELOC/doc/latex/presentations-en/images/beamer/beamer2.pdf - RELOC/doc/latex/presentations-en/images/beamer/beamernavbar.png - RELOC/doc/latex/presentations-en/images/beamer/beamernavsymbols.pdf - RELOC/doc/latex/presentations-en/images/beamer/beamernavsymbols.tex - RELOC/doc/latex/presentations-en/images/beamer/grating.png - RELOC/doc/latex/presentations-en/images/beamer/ligaturen.png - RELOC/doc/latex/presentations-en/images/beamer/multimedia.jpg - RELOC/doc/latex/presentations-en/images/beamer/multimedia.tex - RELOC/doc/latex/presentations-en/images/beamer/transition1.png - RELOC/doc/latex/presentations-en/images/beamer/zedat.pdf - RELOC/doc/latex/presentations-en/images/pd/clemson.gif - RELOC/doc/latex/presentations-en/images/pd/clemson.png - RELOC/doc/latex/presentations-en/images/pd/logo-clemson.png - RELOC/doc/latex/presentations-en/images/pd/logofbbw.eps - RELOC/doc/latex/presentations-en/images/pd/moviePD.png - RELOC/doc/latex/presentations-en/images/pd/pawmkorange.png - RELOC/doc/latex/presentations-en/images/pd/pawmkpurple.png - RELOC/doc/latex/presentations-en/images/pd/pawtraceorange.png - RELOC/doc/latex/presentations-en/images/pd/pawtracep.png - RELOC/doc/latex/presentations-en/images/pd/wieesgeht.eps - RELOC/doc/latex/presentations-en/images/pd/zedat2.eps - RELOC/doc/latex/presentations-en/images/pdfscreen/Tore3d.pdf - RELOC/doc/latex/presentations-en/images/pdfscreen/mp.pdf - RELOC/doc/latex/presentations-en/images/pdfscreen/mpgraph.mps - RELOC/doc/latex/presentations-en/images/pdfscreen/pst.pdf - RELOC/doc/latex/presentations-en/images/pdfscreen/tex.png - RELOC/doc/latex/presentations-en/obox.sty - RELOC/doc/latex/presentations-en/pd-demo-default.tex - RELOC/doc/latex/presentations-en/pd-demo.tex - RELOC/doc/latex/presentations-en/powerdot-clemson.sty - RELOC/doc/latex/presentations-en/prosper.cls - RELOC/doc/latex/presentations-en/runAll - RELOC/doc/latex/presentations-en/screxa.cls - RELOC/doc/latex/presentations-en/screxabook.cls - RELOC/doc/latex/presentations-en/screxareport.cls - RELOC/doc/latex/presentations-en/slidenotes.cfg - RELOC/doc/latex/presentations-en/slidenotes.cls - RELOC/doc/latex/presentations-en/textdemo.sty -catalogue-ctan /info/examples/Presentations_en -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl - -name presentations -category Package -revision 17172 -shortdesc Examples from the book Presentationen mit LaTeX. -relocated 1 -longdesc This bundle contains all the examples, as source, eps and pdf, -longdesc of the author's book "Presentationen mit LaTeX", from the Dante- -longdesc Edition series. -docfiles size=2456 - RELOC/doc/latex/presentations/01-01-1.ltx2crop - RELOC/doc/latex/presentations/01-01-2.ltx2ps - RELOC/doc/latex/presentations/01-01-3.ltx2 - RELOC/doc/latex/presentations/01-01-4.ltx2 - RELOC/doc/latex/presentations/01-01-5.ltx2ps - RELOC/doc/latex/presentations/01-01-6.ltx2 - RELOC/doc/latex/presentations/01-02-1.ltxb - RELOC/doc/latex/presentations/01-03-1.ltxb - RELOC/doc/latex/presentations/01-03-2.ltxb - RELOC/doc/latex/presentations/01-03-3.ltx - RELOC/doc/latex/presentations/01-03-4.ltx - RELOC/doc/latex/presentations/01-03-4.ltxb - RELOC/doc/latex/presentations/01-03-5.ltxb - RELOC/doc/latex/presentations/01-04-1.ltxb - RELOC/doc/latex/presentations/01-04-2.ltxb - RELOC/doc/latex/presentations/01-04-3.ltx - RELOC/doc/latex/presentations/01-04-4.ltx - RELOC/doc/latex/presentations/01-04-5.ltxb - RELOC/doc/latex/presentations/01-05-1.ltx - RELOC/doc/latex/presentations/01-05-2.ltx - RELOC/doc/latex/presentations/01-05-3.ltxb - RELOC/doc/latex/presentations/02-01-1.ltxpd - RELOC/doc/latex/presentations/02-01-2.ltxpd - RELOC/doc/latex/presentations/02-01-3.ltxpd - RELOC/doc/latex/presentations/02-02-1.ltxpd - RELOC/doc/latex/presentations/02-03-1.ltxpd - RELOC/doc/latex/presentations/02-03-2.ltxpd - RELOC/doc/latex/presentations/02-03-3.ltxpd - RELOC/doc/latex/presentations/02-03-4.ltxpd - RELOC/doc/latex/presentations/02-04-1.ltxpd - RELOC/doc/latex/presentations/02-04-2.ltxpd - RELOC/doc/latex/presentations/02-04-3.ltxpd - RELOC/doc/latex/presentations/02-04-4.ltxpd - RELOC/doc/latex/presentations/02-04-5.ltxpd - RELOC/doc/latex/presentations/02-04-6.ltxpd - RELOC/doc/latex/presentations/02-04-7.ltxpd - RELOC/doc/latex/presentations/02-05-1.ltxpd - RELOC/doc/latex/presentations/02-06-1.ltxpd - RELOC/doc/latex/presentations/02-06-2.ltxps - RELOC/doc/latex/presentations/02-07-1.ltxpd - RELOC/doc/latex/presentations/02-08-1.ltxpd - RELOC/doc/latex/presentations/02-09-1.ltxps - RELOC/doc/latex/presentations/02-10-1.ltxpd - RELOC/doc/latex/presentations/02-10-2.ltxpd - RELOC/doc/latex/presentations/02-10-3.ltxpd - RELOC/doc/latex/presentations/02-10-4.ltxpd - RELOC/doc/latex/presentations/02-10-5.ltxpd - RELOC/doc/latex/presentations/02-10-6.ltxpd - RELOC/doc/latex/presentations/02-11-1.ltxpd - RELOC/doc/latex/presentations/02-12-1.ltxpd - RELOC/doc/latex/presentations/02-12-2.ltxpd - RELOC/doc/latex/presentations/02-13-1.ltxpd - RELOC/doc/latex/presentations/02-13-2.ltxpd - RELOC/doc/latex/presentations/02-13-3.ltxpd - RELOC/doc/latex/presentations/02-14-1.ltxpd - RELOC/doc/latex/presentations/02-14-10.ltxpd - RELOC/doc/latex/presentations/02-14-11.ltxpd - RELOC/doc/latex/presentations/02-14-12.ltxpd - RELOC/doc/latex/presentations/02-14-13.ltxpd - RELOC/doc/latex/presentations/02-14-14.ltxpd - RELOC/doc/latex/presentations/02-14-15.ltxpd - RELOC/doc/latex/presentations/02-14-16.ltxpd - RELOC/doc/latex/presentations/02-14-17.ltxpd - RELOC/doc/latex/presentations/02-14-18.ltxpd - RELOC/doc/latex/presentations/02-14-2.ltxpd - RELOC/doc/latex/presentations/02-14-3.ltxpd - RELOC/doc/latex/presentations/02-14-4.ltxpd - RELOC/doc/latex/presentations/02-14-5.ltxpd - RELOC/doc/latex/presentations/02-14-6.ltxpd - RELOC/doc/latex/presentations/02-14-7.ltxpd - RELOC/doc/latex/presentations/02-14-8.ltxpd - RELOC/doc/latex/presentations/02-14-9.ltxpd - RELOC/doc/latex/presentations/03-01-1.ltxpd - RELOC/doc/latex/presentations/03-02-1.ltxpd - RELOC/doc/latex/presentations/03-03-1.ltxpd - RELOC/doc/latex/presentations/03-03-2.ltxpd - RELOC/doc/latex/presentations/03-03-3.ltxpd - RELOC/doc/latex/presentations/04-01-1.ltxb - RELOC/doc/latex/presentations/04-01-2.ltxb - RELOC/doc/latex/presentations/04-01-3.ltxb - RELOC/doc/latex/presentations/04-01-4.ltxb - RELOC/doc/latex/presentations/04-03-1.ltxb - RELOC/doc/latex/presentations/04-03-2.ltx2 - RELOC/doc/latex/presentations/04-04-1.ltxb - RELOC/doc/latex/presentations/04-05-1.ltxb - RELOC/doc/latex/presentations/04-06-1.ltxb - RELOC/doc/latex/presentations/04-06-10.ltxb - RELOC/doc/latex/presentations/04-06-11.ltxb - RELOC/doc/latex/presentations/04-06-2.ltxb - RELOC/doc/latex/presentations/04-06-3.ltxb - RELOC/doc/latex/presentations/04-06-4.ltxbps - RELOC/doc/latex/presentations/04-06-5.ltxb - RELOC/doc/latex/presentations/04-06-6.ltxb - RELOC/doc/latex/presentations/04-06-7.ltxb - RELOC/doc/latex/presentations/04-06-8.ltxb - RELOC/doc/latex/presentations/04-06-9.ltxb - RELOC/doc/latex/presentations/04-07-1.ltxb - RELOC/doc/latex/presentations/04-08-1.ltxb - RELOC/doc/latex/presentations/04-09-1.ltxbps - RELOC/doc/latex/presentations/04-11-1.ltxb - RELOC/doc/latex/presentations/04-11-2.ltxb - RELOC/doc/latex/presentations/04-11-3.ltxb - RELOC/doc/latex/presentations/04-12-1.ltxb - RELOC/doc/latex/presentations/04-12-2.ltxb - RELOC/doc/latex/presentations/04-13-1.ltxb - RELOC/doc/latex/presentations/04-13-2.ltxb - RELOC/doc/latex/presentations/04-14-1.ltxb - RELOC/doc/latex/presentations/04-15-1.ltxb - RELOC/doc/latex/presentations/04-15-2.ltxb - RELOC/doc/latex/presentations/04-16-1.ltxb - RELOC/doc/latex/presentations/04-16-2.ltxb - RELOC/doc/latex/presentations/04-16-3.ltxb - RELOC/doc/latex/presentations/04-17-1.ltxb - RELOC/doc/latex/presentations/04-18-1.ltxb - RELOC/doc/latex/presentations/04-18-2.ltxb - RELOC/doc/latex/presentations/04-19-1.ltxb - RELOC/doc/latex/presentations/04-19-2.ltxb - RELOC/doc/latex/presentations/04-20-1.ltxb - RELOC/doc/latex/presentations/04-20-2.ltxb - RELOC/doc/latex/presentations/04-20-3.ltxb - RELOC/doc/latex/presentations/04-20-4.ltxb - RELOC/doc/latex/presentations/04-20-5.ltxb - RELOC/doc/latex/presentations/04-21-1.ltxb - RELOC/doc/latex/presentations/04-21-2.ltxb - RELOC/doc/latex/presentations/04-21-3.ltxb - RELOC/doc/latex/presentations/04-21-4.ltxb - RELOC/doc/latex/presentations/04-22-1.ltxb - RELOC/doc/latex/presentations/04-22-2.ltxb - RELOC/doc/latex/presentations/04-22-3.ltxb - RELOC/doc/latex/presentations/04-23-1.ltxb - RELOC/doc/latex/presentations/04-23-2.ltxb - RELOC/doc/latex/presentations/04-24-1.ltxb - RELOC/doc/latex/presentations/04-24-2.ltxb - RELOC/doc/latex/presentations/04-25-1.ltxb - RELOC/doc/latex/presentations/04-25-10.ltxb - RELOC/doc/latex/presentations/04-25-11.ltxb - RELOC/doc/latex/presentations/04-25-12.ltxb - RELOC/doc/latex/presentations/04-25-13.ltxb - RELOC/doc/latex/presentations/04-25-14.ltxb - RELOC/doc/latex/presentations/04-25-15.ltxb - RELOC/doc/latex/presentations/04-25-16.ltxb - RELOC/doc/latex/presentations/04-25-17.ltxb - RELOC/doc/latex/presentations/04-25-18.ltxb - RELOC/doc/latex/presentations/04-25-19.ltxb - RELOC/doc/latex/presentations/04-25-2.ltxb - RELOC/doc/latex/presentations/04-25-20.ltxb - RELOC/doc/latex/presentations/04-25-21.ltxb - RELOC/doc/latex/presentations/04-25-22.ltxb - RELOC/doc/latex/presentations/04-25-23.ltxb - RELOC/doc/latex/presentations/04-25-24.ltxb - RELOC/doc/latex/presentations/04-25-25.ltxb - RELOC/doc/latex/presentations/04-25-26.ltxb - RELOC/doc/latex/presentations/04-25-27.ltxb - RELOC/doc/latex/presentations/04-25-28.ltxb - RELOC/doc/latex/presentations/04-25-29.ltxb - RELOC/doc/latex/presentations/04-25-3.ltxb - RELOC/doc/latex/presentations/04-25-30.ltxb - RELOC/doc/latex/presentations/04-25-31.ltxb - RELOC/doc/latex/presentations/04-25-32.ltxb - RELOC/doc/latex/presentations/04-25-33.ltxb - RELOC/doc/latex/presentations/04-25-34.ltxb - RELOC/doc/latex/presentations/04-25-35.ltxb - RELOC/doc/latex/presentations/04-25-36.ltxb - RELOC/doc/latex/presentations/04-25-37.ltxb - RELOC/doc/latex/presentations/04-25-4.ltxb - RELOC/doc/latex/presentations/04-25-5.ltxb - RELOC/doc/latex/presentations/04-25-6.ltxb - RELOC/doc/latex/presentations/04-25-7.ltxb - RELOC/doc/latex/presentations/04-25-8.ltxb - RELOC/doc/latex/presentations/04-25-9.ltxb - RELOC/doc/latex/presentations/04-26-1.ltxb - RELOC/doc/latex/presentations/04-26-10.ltxb - RELOC/doc/latex/presentations/04-26-11.ltxb - RELOC/doc/latex/presentations/04-26-12.ltxb - RELOC/doc/latex/presentations/04-26-13.ltxb - RELOC/doc/latex/presentations/04-26-14.ltxb - RELOC/doc/latex/presentations/04-26-15.ltxb - RELOC/doc/latex/presentations/04-26-16.ltxb - RELOC/doc/latex/presentations/04-26-17.ltxb - RELOC/doc/latex/presentations/04-26-18.ltxb - RELOC/doc/latex/presentations/04-26-19.ltxb - RELOC/doc/latex/presentations/04-26-2.ltxb - RELOC/doc/latex/presentations/04-26-20.ltxb - RELOC/doc/latex/presentations/04-26-21.ltxb - RELOC/doc/latex/presentations/04-26-22.ltxb - RELOC/doc/latex/presentations/04-26-23.ltxb - RELOC/doc/latex/presentations/04-26-24.ltxb - RELOC/doc/latex/presentations/04-26-25.ltxb - RELOC/doc/latex/presentations/04-26-26.ltxb - RELOC/doc/latex/presentations/04-26-27.ltxb - RELOC/doc/latex/presentations/04-26-28.ltxb - RELOC/doc/latex/presentations/04-26-29.ltxb - RELOC/doc/latex/presentations/04-26-3.ltxb - RELOC/doc/latex/presentations/04-26-30.ltxb - RELOC/doc/latex/presentations/04-26-31.ltxb - RELOC/doc/latex/presentations/04-26-32.ltxb - RELOC/doc/latex/presentations/04-26-33.ltxb - RELOC/doc/latex/presentations/04-26-34.ltxb - RELOC/doc/latex/presentations/04-26-35.ltxb - RELOC/doc/latex/presentations/04-26-36.ltxb - RELOC/doc/latex/presentations/04-26-37.ltxb - RELOC/doc/latex/presentations/04-26-4.ltxb - RELOC/doc/latex/presentations/04-26-5.ltxb - RELOC/doc/latex/presentations/04-26-6.ltxb - RELOC/doc/latex/presentations/04-26-7.ltxb - RELOC/doc/latex/presentations/04-26-8.ltxb - RELOC/doc/latex/presentations/04-26-9.ltxb - RELOC/doc/latex/presentations/05-00-1.ltxb - RELOC/doc/latex/presentations/05-01-1.ltxb - RELOC/doc/latex/presentations/05-02-1.ltxb - RELOC/doc/latex/presentations/05-03-1.ltxb - RELOC/doc/latex/presentations/05-03-2.ltxb - RELOC/doc/latex/presentations/06-01-1.ltx - RELOC/doc/latex/presentations/06-01-2.ltx - RELOC/doc/latex/presentations/06-01-3.ltx - RELOC/doc/latex/presentations/06-01-4.ltx - RELOC/doc/latex/presentations/06-01-5.ltx - RELOC/doc/latex/presentations/06-01-6.ltx - RELOC/doc/latex/presentations/06-01-7.ltx - RELOC/doc/latex/presentations/06-02-1.ltxps - RELOC/doc/latex/presentations/06-02-2.ltx - RELOC/doc/latex/presentations/06-04-1.ltx - RELOC/doc/latex/presentations/06-04-2.ltx - RELOC/doc/latex/presentations/06-04-3.ltx - RELOC/doc/latex/presentations/06-05-1.ltx - RELOC/doc/latex/presentations/07-03-1.ltx - RELOC/doc/latex/presentations/07-03-2.ltx - RELOC/doc/latex/presentations/07-03-3.ltxpd - RELOC/doc/latex/presentations/07-03-4.ltxb - RELOC/doc/latex/presentations/07-05-1.ltxbps - RELOC/doc/latex/presentations/07-05-2.ltxbps - RELOC/doc/latex/presentations/README - RELOC/doc/latex/presentations/Textdemo.tex - RELOC/doc/latex/presentations/beamer-demo.tex - RELOC/doc/latex/presentations/beamer-demo2.tex - RELOC/doc/latex/presentations/images/beamer/FULogo.png - RELOC/doc/latex/presentations/images/beamer/FULuft.jpg - RELOC/doc/latex/presentations/images/beamer/FUbib.jpg - RELOC/doc/latex/presentations/images/beamer/FUlogo.pdf - RELOC/doc/latex/presentations/images/beamer/TU.jpg - RELOC/doc/latex/presentations/images/beamer/TeX.pdf - RELOC/doc/latex/presentations/images/beamer/beamer0.pdf - RELOC/doc/latex/presentations/images/beamer/beamer1.pdf - RELOC/doc/latex/presentations/images/beamer/beamer2.pdf - RELOC/doc/latex/presentations/images/beamer/beamernavbar.png - RELOC/doc/latex/presentations/images/beamer/beamernavsymbols.pdf - RELOC/doc/latex/presentations/images/beamer/beamernavsymbols.tex - RELOC/doc/latex/presentations/images/beamer/fu-berlin-air.pdf - RELOC/doc/latex/presentations/images/beamer/fu-berlin.pdf - RELOC/doc/latex/presentations/images/beamer/geo.jpg - RELOC/doc/latex/presentations/images/beamer/ligaturen.png - RELOC/doc/latex/presentations/images/beamer/multimedia.jpg - RELOC/doc/latex/presentations/images/beamer/multimedia.png - RELOC/doc/latex/presentations/images/beamer/multimedia.tex - RELOC/doc/latex/presentations/images/beamer/silberlaube.jpg - RELOC/doc/latex/presentations/images/beamer/silberlaube2.jpg - RELOC/doc/latex/presentations/images/beamer/zedat.pdf - RELOC/doc/latex/presentations/images/pd/FULogo.eps - RELOC/doc/latex/presentations/images/pd/FULogo2.eps - RELOC/doc/latex/presentations/images/pd/FULogoRGB.eps - RELOC/doc/latex/presentations/images/pd/FULogo_RGB.eps - RELOC/doc/latex/presentations/images/pd/FUbib.eps - RELOC/doc/latex/presentations/images/pd/fuBIB10.eps - RELOC/doc/latex/presentations/images/pd/fuBIB10.pdf - RELOC/doc/latex/presentations/images/pd/logofbbw.eps - RELOC/doc/latex/presentations/images/pd/silberlaube.eps - RELOC/doc/latex/presentations/images/pd/silberlaube2.eps - RELOC/doc/latex/presentations/images/pd/wieesgeht.eps - RELOC/doc/latex/presentations/images/pd/zedat2.eps - RELOC/doc/latex/presentations/images/pdfscreen/Tore3d.pdf - RELOC/doc/latex/presentations/images/pdfscreen/mp.pdf - RELOC/doc/latex/presentations/images/pdfscreen/mpgraph.mps - RELOC/doc/latex/presentations/images/pdfscreen/pst.pdf - RELOC/doc/latex/presentations/images/pdfscreen/tex.png - RELOC/doc/latex/presentations/pd-demo-default.tex - RELOC/doc/latex/presentations/pd-demo.tex -catalogue-ctan /info/examples/Presentations_de -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl - -name present -category Package -revision 25953 -shortdesc Presentations with Plain TeX. -relocated 1 -longdesc The package offers a collection of simple macros for preparing -longdesc presentations in Plain TeX. Slide colour and text colour may be -longdesc set, links between parts of the presentation, to other files, -longdesc and to web addresses may be inserted. Images may be included -longdesc easily, and code is available to provide transition effects -longdesc between slides or frames. The structure of the macros is not -longdesc overly complex, so that users should find it easy to adapt the -longdesc macros to their specific needs. -runfiles size=3 - RELOC/tex/plain/present/present.tex -docfiles size=415 - RELOC/doc/plain/present/HowToTalkTeX.pdf - RELOC/doc/plain/present/HowToTalkTeX.tex - RELOC/doc/plain/present/Pfeil1.pdf - RELOC/doc/plain/present/Pfeil2.pdf - RELOC/doc/plain/present/Pfeil3.pdf - RELOC/doc/plain/present/Pfeil4.pdf - RELOC/doc/plain/present/README - RELOC/doc/plain/present/Sagnac.pdf - RELOC/doc/plain/present/Stern.png - RELOC/doc/plain/present/background.png - RELOC/doc/plain/present/present-transitions.tex -catalogue-ctan /macros/plain/contrib/present -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 2.2 - -name pressrelease -category Package -revision 35147 -shortdesc A class for typesetting press releases. -relocated 1 -longdesc A configurable class for writing press releases. -runfiles size=5 - RELOC/tex/latex/pressrelease/pressrelease-symbols.sty - RELOC/tex/latex/pressrelease/pressrelease.cls -docfiles size=267 - RELOC/doc/latex/pressrelease/CHANGES - RELOC/doc/latex/pressrelease/README - RELOC/doc/latex/pressrelease/pressrelease.pdf - RELOC/doc/latex/pressrelease/samples/sample-pressrelease.pdf - RELOC/doc/latex/pressrelease/samples/sample-pressrelease.tex - RELOC/doc/latex/pressrelease/samples/sample-pressrelease2.pdf - RELOC/doc/latex/pressrelease/samples/sample-pressrelease2.tex - RELOC/doc/latex/pressrelease/samples/sample-pressrelease3.pdf - RELOC/doc/latex/pressrelease/samples/sample-pressrelease3.tex - RELOC/doc/latex/pressrelease/samples/sample-pressrelease4.pdf - RELOC/doc/latex/pressrelease/samples/sample-pressrelease4.tex - RELOC/doc/latex/pressrelease/samples/sample-pressrelease5.pdf - RELOC/doc/latex/pressrelease/samples/sample-pressrelease5.tex - RELOC/doc/latex/pressrelease/samples/sample-pressrelease6.pdf - RELOC/doc/latex/pressrelease/samples/sample-pressrelease6.tex - RELOC/doc/latex/pressrelease/samples/sample-pressrelease7.pdf - RELOC/doc/latex/pressrelease/samples/sample-pressrelease7.tex -srcfiles size=13 - RELOC/source/latex/pressrelease/pressrelease.dtx - RELOC/source/latex/pressrelease/pressrelease.ins -catalogue-ctan /macros/latex/contrib/pressrelease -catalogue-date 2014-09-30 08:30:24 +0200 -catalogue-license lppl1.3 -catalogue-version 1.0 - -name prettyref -category Package -revision 15878 -shortdesc Make label references "self-identify". -relocated 1 -longdesc Prettyref provides a command \newrefformat, which specifies the -longdesc way in which a reference is typeset, according to a label -longdesc "identification". The identification is set in the \label -longdesc command, by using prefixed label names; so instead of -longdesc \label{mysection}, one uses \label{sec:mysection}, and -longdesc prettyref interprets the "sec:" part. The package is compatible -longdesc with hyperref and with other packages. -runfiles size=1 - RELOC/tex/latex/prettyref/prettyref.sty -docfiles size=12 - RELOC/doc/latex/prettyref/README - RELOC/doc/latex/prettyref/prettyref.pdf -srcfiles size=3 - RELOC/source/latex/prettyref/prettyref.dtx - RELOC/source/latex/prettyref/prettyref.ins -catalogue-ctan /macros/latex/contrib/prettyref -catalogue-date 2012-04-01 10:24:43 +0200 -catalogue-license pd -catalogue-version 3.0 - -name preview -category Package -revision 35488 -shortdesc Extract bits of a LaTeX source for output. -relocated 1 -longdesc The package is a free-standing part of the preview-latex -longdesc bundle. The package provides the support preview-latex needs, -longdesc when it chooses the matter it will preview. The output may -longdesc reasonably be expected to have other uses, as in html -longdesc translators, etc. -runfiles size=14 - RELOC/tex/latex/preview/prauctex.cfg - RELOC/tex/latex/preview/prauctex.def - RELOC/tex/latex/preview/prcounters.def - RELOC/tex/latex/preview/preview.sty - RELOC/tex/latex/preview/prfootnotes.def - RELOC/tex/latex/preview/prlyx.def - RELOC/tex/latex/preview/prshowbox.def - RELOC/tex/latex/preview/prshowlabels.def - RELOC/tex/latex/preview/prtightpage.def - RELOC/tex/latex/preview/prtracingall.def -docfiles size=43 - RELOC/doc/latex/preview/README - RELOC/doc/latex/preview/preview.pdf -srcfiles size=22 - RELOC/source/latex/preview/preview.drv - RELOC/source/latex/preview/preview.dtx - RELOC/source/latex/preview/preview.ins -catalogue-ctan /macros/latex/contrib/preview -catalogue-date 2014-10-31 05:31:13 +0100 -catalogue-license gpl3 -catalogue-version 11.88 - -name prftree -category Package -revision 35712 -shortdesc Macros for building proof trees. -relocated 1 -longdesc A package to typeset proof trees for natural deduction calculi, -longdesc sequent-like calculi, and similar. -runfiles size=11 - RELOC/tex/latex/prftree/prftree.sty -docfiles size=83 - RELOC/doc/latex/prftree/README - RELOC/doc/latex/prftree/prftreedoc.pdf - RELOC/doc/latex/prftree/prftreedoc.tex -catalogue-ctan /macros/latex/contrib/prftree -catalogue-date 2014-12-23 11:23:26 +0100 -catalogue-license gpl - -name printlen -category Package -revision 19847 -shortdesc Print lengths using specified units. -relocated 1 -longdesc \printlength{length} prints the value of a LaTeX length in the -longdesc units specified by \uselengthunit{unit} ('unit' may be any TeX -longdesc length unit except for scaled point, viz., any of: pt, pc, in, -longdesc mm, cm, bp, dd or cc). When the unit is pt, the printed length -longdesc value will include any stretch or shrink; otherwise these are -longdesc not printed. The 'unit' argument may also be PT, in which case -longdesc length values will be printed in point units but without any -longdesc stretch or shrink values. -runfiles size=2 - RELOC/tex/latex/printlen/printlen.sty -docfiles size=61 - RELOC/doc/latex/printlen/printlen-doc.pdf - RELOC/doc/latex/printlen/printlen-doc.tex -catalogue-ctan /macros/latex/contrib/printlen -catalogue-date 2014-12-28 23:37:10 +0100 -catalogue-license lppl -catalogue-version 1.1a - -name proba -category Package -revision 15878 -shortdesc Shortcuts commands to symbols used in probability texts. -relocated 1 -longdesc This package includes some of the most often used commands in -longdesc probability texts, e.g. probability, expectation, variance, -longdesc etc. It also includes some short commands for set (blackboard) -longdesc or filtrations (calligraphic). It requires LaTeX2e and the -longdesc amsfonts package. -runfiles size=2 - RELOC/tex/latex/proba/proba.sty -docfiles size=24 - RELOC/doc/latex/proba/README - RELOC/doc/latex/proba/proba.pdf -srcfiles size=4 - RELOC/source/latex/proba/proba.dtx - RELOC/source/latex/proba/proba.ins -catalogue-ctan /macros/latex/contrib/proba -catalogue-date 2012-07-19 14:50:35 +0200 -catalogue-license lppl - -name probsoln -category Package -revision 29371 -shortdesc Generate problem sheets and their solution sheets. -relocated 1 -longdesc The package is designed for lecturers who have to generate new -longdesc problem sheets for their students on a regular basis (e.g. -longdesc yearly) by randomly selecting a specified number of problems -longdesc defined in another file. The package allows you easily to -longdesc generate a new problem sheet that is different from the -longdesc previous year, thus alleviating the temptation of students to -longdesc seek out the previous year's students and checking out their -longdesc answers. The solutions to the problems can be defined along -longdesc with the problem, making it easy to generate the solution sheet -longdesc from the same source code; problems may be reused within a -longdesc document, so that solutions may appear in a different section -longdesc of the same document as the problems they cover. -runfiles size=8 - RELOC/tex/latex/probsoln/probsoln.sty -docfiles size=246 - RELOC/doc/latex/probsoln/CHANGES - RELOC/doc/latex/probsoln/INSTALL - RELOC/doc/latex/probsoln/README - RELOC/doc/latex/probsoln/probsoln-manual.css - RELOC/doc/latex/probsoln/probsoln-manual.html - RELOC/doc/latex/probsoln/probsoln-manual.tex - RELOC/doc/latex/probsoln/probsoln.pdf - RELOC/doc/latex/probsoln/samples/sample-exclude.tex - RELOC/doc/latex/probsoln/samples/sample.pdf - RELOC/doc/latex/probsoln/samples/sample.tex - RELOC/doc/latex/probsoln/samples/sample2.pdf - RELOC/doc/latex/probsoln/samples/sample2.tex - RELOC/doc/latex/probsoln/samples/sample3.pdf - RELOC/doc/latex/probsoln/samples/sample3.tex - RELOC/doc/latex/probsoln/samples/sample4.pdf - RELOC/doc/latex/probsoln/samples/sample4.tex - RELOC/doc/latex/probsoln/samples/sample5.pdf - RELOC/doc/latex/probsoln/samples/sample5.tex - RELOC/doc/latex/probsoln/samples/sample6.tex - RELOC/doc/latex/probsoln/samples/sample7.tex - RELOC/doc/latex/probsoln/samples/sample8.tex -srcfiles size=32 - RELOC/source/latex/probsoln/probsoln.dtx - RELOC/source/latex/probsoln/probsoln.ins -catalogue-ctan /macros/latex/contrib/probsoln -catalogue-date 2013-03-17 00:29:52 +0100 -catalogue-license lppl -catalogue-version 3.04 - -name procIAGssymp -category Package -revision 15878 -shortdesc Macros for IAG symposium papers. -relocated 1 -longdesc This package provides (re-)definitions of some LaTeX commands -longdesc that can be useful for the preparation of a paper with the -longdesc style of the proceeding of symposia sponsored by the -longdesc 'International Association of Geodesy (IAG)' published by -longdesc Springer-Verlag. -runfiles size=2 - RELOC/tex/latex/procIAGssymp/procIAGssymp.sty -docfiles size=2 - RELOC/doc/latex/procIAGssymp/TestPaper.tex -catalogue-ctan /macros/latex/contrib/procIAGssymp -catalogue-date 2012-07-20 20:39:39 +0200 -catalogue-license lppl - -name prodint -category Package -revision 21893 -shortdesc A font that provides the product integral symbol. -relocated 1 -longdesc Product integrals are to products, as integrals are to sums. -longdesc They have been around for more than a hundred years, they have -longdesc not become part of the standard mathematician's toolbox, -longdesc possibly because no-one invented the right mathematical symbol -longdesc for them. The authors have remedied that situation by proposing -longdesc the symbol and providing this font. -execute addMap prodint.map -runfiles size=5 - RELOC/fonts/afm/public/prodint/prodint.afm - RELOC/fonts/map/dvips/prodint/prodint.map - RELOC/fonts/tfm/public/prodint/prodint.tfm - RELOC/fonts/type1/public/prodint/prodint.pfb - RELOC/tex/latex/prodint/prodint.sty -docfiles size=19 - RELOC/doc/fonts/prodint/README - RELOC/doc/fonts/prodint/config.prodint - RELOC/doc/fonts/prodint/prodint.bma - RELOC/doc/fonts/prodint/prodint.mt1 - RELOC/doc/fonts/prodint/prodint.pdf - RELOC/doc/fonts/prodint/prodint.pfa - RELOC/doc/fonts/prodint/prodint.sit.hqx - RELOC/doc/fonts/prodint/prodint.tex -catalogue-ctan /fonts/prodint -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license ofl - -name productbox -category Package -revision 20886 -shortdesc Typeset a three-dimensional product box. -relocated 1 -longdesc The package enables typesetting of a three-dimensional product -longdesc box. This product box can be rendered as it is standing on a -longdesc surface and some light is shed onto it. Alternatively it can be -longdesc typeset as a wireframe to be cut out and glued together. This -longdesc will lead to a physical product box. The package requires pgf -longdesc and TikZ. -runfiles size=7 - RELOC/tex/latex/productbox/productbox.sty -docfiles size=97 - RELOC/doc/latex/productbox/Makefile - RELOC/doc/latex/productbox/README - RELOC/doc/latex/productbox/productbox.bib - RELOC/doc/latex/productbox/productbox.pdf -srcfiles size=21 - RELOC/source/latex/productbox/productbox.dtx - RELOC/source/latex/productbox/productbox.ins -catalogue-ctan /macros/latex/contrib/gene/productbox -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license other-free -catalogue-version 1.1 - -name program -category Package -revision 20022 -shortdesc Typesetting programs and algorithms. -relocated 1 -longdesc The main offering is a program environment; a programbox -longdesc environment is available for fragments that must not break with -longdesc the pages. -runfiles size=9 - RELOC/tex/latex/program/program.sty -docfiles size=83 - RELOC/doc/latex/program/README - RELOC/doc/latex/program/gpl-3.0.txt - RELOC/doc/latex/program/plink.tex - RELOC/doc/latex/program/program-demo.tex - RELOC/doc/latex/program/program-doc.pdf - RELOC/doc/latex/program/program-doc.tex -catalogue-ctan /macros/latex/contrib/program -catalogue-date 2012-04-20 13:29:23 +0200 -catalogue-license gpl3 -catalogue-version 3.3.12 - -name progressbar -category Package -revision 33822 -shortdesc Visualize shares of total amounts in the form of a (progress-)bar. -relocated 1 -longdesc This package allows you to easily visualize shares of total -longdesc amounts in the form of a bar. So basically you can convert any -longdesc number between 0 and 1 to a progressbar using the command -longdesc \progressbar{}. Also a lot of customizations are -longdesc possible, allowing you to create an unique progressbar on your -longdesc own. The package uses TikZ to produce its graphics. -runfiles size=2 - RELOC/tex/latex/progressbar/progressbar.sty -docfiles size=31 - RELOC/doc/latex/progressbar/README - RELOC/doc/latex/progressbar/progressbar.pdf - RELOC/doc/latex/progressbar/progressbar.tex -catalogue-ctan /macros/latex/contrib/progressbar -catalogue-date 2014-05-04 11:26:45 +0200 -catalogue-license lppl -catalogue-version v1.0b~4 - -name progress -category Package -revision 19519 -shortdesc Creates an overview of a document's state. -relocated 1 -longdesc Progress is a package which. when compiling TeX and LaTeX -longdesc documents, generates a HTML file showing an overview of a -longdesc document's state (of how finished it is). The report is sent to -longdesc file \ProgressReportName, which is by default the \jobname with -longdesc the date appended (but is user-modifiable). -runfiles size=4 - RELOC/tex/latex/progress/progress.sty -docfiles size=29 - RELOC/doc/latex/progress/README - RELOC/doc/latex/progress/progress.pdf - RELOC/doc/latex/progress/progress.tex - RELOC/doc/latex/progress/progress20030701.html -catalogue-ctan /macros/latex/contrib/progress -catalogue-date 2012-04-20 13:29:23 +0200 -catalogue-license lppl -catalogue-version 1.10 - -name proofread -category Package -revision 38319 -shortdesc Commands for inserting annotations -relocated 1 -longdesc The proofread package defines a few LaTeX commands that are -longdesc useful when you proofread a LaTeX document. These allow you to -longdesc easily highlight text and add comments in the margin. Vim -longdesc escape sequences are provided for inserting these LaTeX -longdesc commands in the source. The package is based on code for a text -longdesc highlighting command that was published by Antal S-Z in -longdesc href='http://tex.stackexchange.com/questions/5959'. The main -longdesc file, proofread.dtx, is self-extracting, so you can generate -longdesc the style file by compiling proofread.dtx with pdfLaTeX. -runfiles size=2 - RELOC/tex/latex/proofread/proofread.sty -docfiles size=60 - RELOC/doc/latex/proofread/README - RELOC/doc/latex/proofread/README.txt - RELOC/doc/latex/proofread/example.tex - RELOC/doc/latex/proofread/proofread.hd - RELOC/doc/latex/proofread/proofread.pdf - RELOC/doc/latex/proofread/vimrc -srcfiles size=4 - RELOC/source/latex/proofread/proofread.dtx - RELOC/source/latex/proofread/proofread.ins -catalogue-ctan /macros/latex/contrib/proofread -catalogue-date 2015-09-07 19:29:06 +0200 -catalogue-license lppl1.3 -catalogue-topics editorial -catalogue-version 1.00 - -name properties -category Package -revision 15878 -shortdesc Load properties from a file. -relocated 1 -longdesc The package loads properties (key, value) from a properties -longdesc file, e.g. \jobname.properties. -runfiles size=1 - RELOC/tex/latex/properties/properties.sty -docfiles size=2 - RELOC/doc/latex/properties/readme.de - RELOC/doc/latex/properties/testprop.tex -catalogue-ctan /macros/latex/contrib/properties -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.2 - -name proposal -category Package -revision 29174 -shortdesc A class for preparing proposals. -relocated 1 -longdesc The process of preparing a collaborative proposal, to a major -longdesc funding body, involves integration of contributions of a many -longdesc people at many sites. It is therefore an ideal application for -longdesc a text-based document preparation system such as LaTeX, in -longdesc concert with a distributed version control system such as SVN. -longdesc The proposal class itself provides a basis for such an -longdesc enterprise. The dfgproposal and dfgproposal classes provide two -longdesc specialisations of the base class for (respectively) German and -longdesc European research proposals. The packages depend on the -longdesc author's stex bundle. -runfiles size=22 - RELOC/tex/latex/proposal/base/pdata.sty - RELOC/tex/latex/proposal/base/proposal.cls - RELOC/tex/latex/proposal/base/reporting.cls - RELOC/tex/latex/proposal/dfg/dfgpdata.sty - RELOC/tex/latex/proposal/dfg/dfgproposal.cls - RELOC/tex/latex/proposal/dfg/dfgreporting.cls - RELOC/tex/latex/proposal/eu/eupdata.sty - RELOC/tex/latex/proposal/eu/euproposal.cls - RELOC/tex/latex/proposal/eu/eureporting.cls -docfiles size=727 - RELOC/doc/latex/proposal/README - RELOC/doc/latex/proposal/base/README - RELOC/doc/latex/proposal/base/proposal.pdf - RELOC/doc/latex/proposal/dfg/README - RELOC/doc/latex/proposal/dfg/dfgproposal.pdf - RELOC/doc/latex/proposal/eu/README - RELOC/doc/latex/proposal/eu/euproposal.pdf - RELOC/doc/latex/proposal/examples/Makefile - RELOC/doc/latex/proposal/examples/README - RELOC/doc/latex/proposal/examples/dfgdocs/1_02.pdf - RELOC/doc/latex/proposal/examples/dfgdocs/1_02e.pdf - RELOC/doc/latex/proposal/examples/dfgdocs/2_01.pdf - RELOC/doc/latex/proposal/examples/dfgdocs/2_010.pdf - RELOC/doc/latex/proposal/examples/dfgdocs/2_012e.pdf - RELOC/doc/latex/proposal/examples/dfgdocs/54_01_de.pdf - RELOC/doc/latex/proposal/examples/dfgdocs/54_01_en.pdf - RELOC/doc/latex/proposal/examples/fetopenstrep/Makefile - RELOC/doc/latex/proposal/examples/fetopenstrep/README - RELOC/doc/latex/proposal/examples/fetopenstrep/breakthrough.tex - RELOC/doc/latex/proposal/examples/fetopenstrep/impact.tex - RELOC/doc/latex/proposal/examples/fetopenstrep/implementation.tex - RELOC/doc/latex/proposal/examples/fetopenstrep/methodology.tex - RELOC/doc/latex/proposal/examples/fetopenstrep/novelty.tex - RELOC/doc/latex/proposal/examples/fetopenstrep/propB-blx.bib - RELOC/doc/latex/proposal/examples/fetopenstrep/propB.bbl - RELOC/doc/latex/proposal/examples/fetopenstrep/propB.deliverables - RELOC/doc/latex/proposal/examples/fetopenstrep/propB.delivs - RELOC/doc/latex/proposal/examples/fetopenstrep/propB.pdata - RELOC/doc/latex/proposal/examples/fetopenstrep/propB.pdf - RELOC/doc/latex/proposal/examples/fetopenstrep/propB.tex - RELOC/doc/latex/proposal/examples/fetopenstrep/propB1-blx.bbl - RELOC/doc/latex/proposal/examples/fetopenstrep/propB2-blx.bbl - RELOC/doc/latex/proposal/examples/fetopenstrep/propB3-blx.bbl - RELOC/doc/latex/proposal/examples/fetopenstrep/propB4-blx.bbl - RELOC/doc/latex/proposal/examples/fetopenstrep/quality.tex - RELOC/doc/latex/proposal/examples/fetopenstrep/workplan.tex - RELOC/doc/latex/proposal/examples/lib/WApersons.tex - RELOC/doc/latex/proposal/examples/lib/dummy.bib - RELOC/doc/latex/proposal/examples/lib/jacobs-logo.png - RELOC/doc/latex/proposal/examples/proposal/Makefile - RELOC/doc/latex/proposal/examples/proposal/funds.tex - RELOC/doc/latex/proposal/examples/proposal/preconditions.tex - RELOC/doc/latex/proposal/examples/proposal/proposal-blx.bib - RELOC/doc/latex/proposal/examples/proposal/proposal.pdata - RELOC/doc/latex/proposal/examples/proposal/proposal.pdf - RELOC/doc/latex/proposal/examples/proposal/proposal.tex - RELOC/doc/latex/proposal/examples/proposal/state.tex - RELOC/doc/latex/proposal/examples/proposal/workplan.tex - RELOC/doc/latex/proposal/examples/proposal/zusammenfassung.tex - RELOC/doc/latex/proposal/examples/report/Makefile - RELOC/doc/latex/proposal/examples/report/README - RELOC/doc/latex/proposal/examples/report/finalreport-blx.bib - RELOC/doc/latex/proposal/examples/report/finalreport.bbl - RELOC/doc/latex/proposal/examples/report/finalreport.pdata - RELOC/doc/latex/proposal/examples/report/finalreport.pdf - RELOC/doc/latex/proposal/examples/report/finalreport.tex - RELOC/doc/latex/proposal/examples/report/letter_submission.pdf - RELOC/doc/latex/proposal/examples/report/letter_submission.tex - RELOC/doc/latex/proposal/examples/report/progressreport.tex - RELOC/doc/latex/proposal/examples/report/progresssummary.tex - RELOC/doc/latex/proposal/examples/simple-proposal/Makefile - RELOC/doc/latex/proposal/examples/simple-proposal/README - RELOC/doc/latex/proposal/examples/simple-proposal/jacobs-logo.png - RELOC/doc/latex/proposal/examples/simple-proposal/letter_submission.pdf - RELOC/doc/latex/proposal/examples/simple-proposal/letter_submission.tex - RELOC/doc/latex/proposal/examples/simple-proposal/preconditions.tex - RELOC/doc/latex/proposal/examples/simple-proposal/proposal-blx.bib - RELOC/doc/latex/proposal/examples/simple-proposal/proposal.bbl - RELOC/doc/latex/proposal/examples/simple-proposal/proposal.pdata - RELOC/doc/latex/proposal/examples/simple-proposal/proposal.pdf - RELOC/doc/latex/proposal/examples/simple-proposal/proposal.tex - RELOC/doc/latex/proposal/examples/simple-proposal/proposal1-blx.bbl - RELOC/doc/latex/proposal/examples/simple-proposal/workplan.tex - RELOC/doc/latex/proposal/examples/strep/Makefile - RELOC/doc/latex/proposal/examples/strep/README - RELOC/doc/latex/proposal/examples/strep/deliverables.tex - RELOC/doc/latex/proposal/examples/strep/impact.tex - RELOC/doc/latex/proposal/examples/strep/implementation.tex - RELOC/doc/latex/proposal/examples/strep/issues.tex - RELOC/doc/latex/proposal/examples/strep/methodology.tex - RELOC/doc/latex/proposal/examples/strep/milestones.tex - RELOC/doc/latex/proposal/examples/strep/objectives.tex - RELOC/doc/latex/proposal/examples/strep/progress.tex - RELOC/doc/latex/proposal/examples/strep/propB-blx.bib - RELOC/doc/latex/proposal/examples/strep/propB.bbl - RELOC/doc/latex/proposal/examples/strep/propB.deliverables - RELOC/doc/latex/proposal/examples/strep/propB.delivs - RELOC/doc/latex/proposal/examples/strep/propB.pdata - RELOC/doc/latex/proposal/examples/strep/propB.pdf - RELOC/doc/latex/proposal/examples/strep/propB.tex - RELOC/doc/latex/proposal/examples/strep/propB1-blx.bbl - RELOC/doc/latex/proposal/examples/strep/propB2-blx.bbl - RELOC/doc/latex/proposal/examples/strep/propB3-blx.bbl - RELOC/doc/latex/proposal/examples/strep/propB4-blx.bbl - RELOC/doc/latex/proposal/examples/strep/quality.tex - RELOC/doc/latex/proposal/examples/strep/risks.tex - RELOC/doc/latex/proposal/examples/strep/site-bar.tex - RELOC/doc/latex/proposal/examples/strep/site-baz.tex - RELOC/doc/latex/proposal/examples/strep/site-efo.tex - RELOC/doc/latex/proposal/examples/strep/site-jacu.tex - RELOC/doc/latex/proposal/examples/strep/site-templatex.tex - RELOC/doc/latex/proposal/examples/strep/workplan.tex - RELOC/doc/latex/proposal/examples/strep/wp-class.tex - RELOC/doc/latex/proposal/examples/strep/wp-dissem.tex - RELOC/doc/latex/proposal/examples/strep/wp-management.tex - RELOC/doc/latex/proposal/examples/strep/wp-temple.tex -srcfiles size=43 - RELOC/source/latex/proposal/base/proposal.dtx - RELOC/source/latex/proposal/base/proposal.ins - RELOC/source/latex/proposal/dfg/dfgproposal.dtx - RELOC/source/latex/proposal/dfg/dfgproposal.ins - RELOC/source/latex/proposal/eu/euproposal.dtx - RELOC/source/latex/proposal/eu/euproposal.ins -catalogue-ctan /macros/latex/contrib/proposal -catalogue-date 2014-04-30 19:02:32 +0200 -catalogue-license lppl - -name prosper -category Package -revision 33033 -shortdesc LaTeX class for high quality slides. -relocated 1 -longdesc Prosper is a LaTeX class for writing transparencies. It is -longdesc written as an extension of the seminar class by Timothy Van -longdesc Zandt. Prosper offers a friendly environment for creating -longdesc slides for both presentations with an overhead projector and a -longdesc video projector. Slides prepared for a presentation with a -longdesc computer and a video projector may integrate animation effects, -longdesc incremental display, and so on. Various visual styles are -longdesc supported (including some that mimic PowerPoint) and others are -longdesc being contributed. -runfiles size=199 - RELOC/tex/latex/prosper/PPRalcatel.sty - RELOC/tex/latex/prosper/PPRalienglow.sty - RELOC/tex/latex/prosper/PPRautumn.sty - RELOC/tex/latex/prosper/PPRazure.sty - RELOC/tex/latex/prosper/PPRblends.sty - RELOC/tex/latex/prosper/PPRcapsules.sty - RELOC/tex/latex/prosper/PPRcontemporain.sty - RELOC/tex/latex/prosper/PPRcorners.sty - RELOC/tex/latex/prosper/PPRdarkblue.sty - RELOC/tex/latex/prosper/PPRdefault.sty - RELOC/tex/latex/prosper/PPRframes.sty - RELOC/tex/latex/prosper/PPRfyma.sty - RELOC/tex/latex/prosper/PPRgyom.sty - RELOC/tex/latex/prosper/PPRlignesbleues.sty - RELOC/tex/latex/prosper/PPRmancini.sty - RELOC/tex/latex/prosper/PPRnuancegris.sty - RELOC/tex/latex/prosper/PPRprettybox.sty - RELOC/tex/latex/prosper/PPRrico.sty - RELOC/tex/latex/prosper/PPRserpaggi.sty - RELOC/tex/latex/prosper/PPRthomasd.sty - RELOC/tex/latex/prosper/PPRtroispoints.sty - RELOC/tex/latex/prosper/PPRwhitecross.sty - RELOC/tex/latex/prosper/PPRwinter.sty - RELOC/tex/latex/prosper/PPRwj.sty - RELOC/tex/latex/prosper/angleHG.ps - RELOC/tex/latex/prosper/arrow-glow.ps - RELOC/tex/latex/prosper/barre-rico.ps - RELOC/tex/latex/prosper/blue-inverted-arrow.ps - RELOC/tex/latex/prosper/boule-base.eps - RELOC/tex/latex/prosper/boulebleue-fondblanc.eps - RELOC/tex/latex/prosper/boulerouge-fondblanc.eps - RELOC/tex/latex/prosper/bouleverte-fondblanc.eps - RELOC/tex/latex/prosper/bullet-glow.ps - RELOC/tex/latex/prosper/compilation.eps - RELOC/tex/latex/prosper/degrade-base.eps - RELOC/tex/latex/prosper/degrade-blanc-bleu.eps - RELOC/tex/latex/prosper/green-bullet-on-blue-wc.ps - RELOC/tex/latex/prosper/green-bullet-on-blue.ps - RELOC/tex/latex/prosper/green-bullet-on-white.ps - RELOC/tex/latex/prosper/green-inverted-arrow.ps - RELOC/tex/latex/prosper/gyom.ps - RELOC/tex/latex/prosper/prosper-structure.eps - RELOC/tex/latex/prosper/prosper.cls - RELOC/tex/latex/prosper/red-bullet-on-blue-wc.ps - RELOC/tex/latex/prosper/red-bullet-on-blue.ps - RELOC/tex/latex/prosper/red-bullet-on-white.ps - RELOC/tex/latex/prosper/red-inverted-arrow.ps - RELOC/tex/latex/prosper/rico.ps - RELOC/tex/latex/prosper/rico_bullet1.ps - RELOC/tex/latex/prosper/rico_bullet2.ps - RELOC/tex/latex/prosper/rico_bullet3.ps - RELOC/tex/latex/prosper/rotation.ps - RELOC/tex/latex/prosper/rule-glow.ps - RELOC/tex/latex/prosper/yellow-bullet-on-blue-wc.ps - RELOC/tex/latex/prosper/yellow-bullet-on-blue.ps - RELOC/tex/latex/prosper/yellow-bullet-on-white.ps -docfiles size=152 - RELOC/doc/latex/prosper/AUTHORS - RELOC/doc/latex/prosper/ChangeLog - RELOC/doc/latex/prosper/Example.tex - RELOC/doc/latex/prosper/ExampleAlienglow.tex - RELOC/doc/latex/prosper/ExampleAutumn.tex - RELOC/doc/latex/prosper/ExampleAzure.tex - RELOC/doc/latex/prosper/ExampleContemporain.tex - RELOC/doc/latex/prosper/ExampleDarkblue.tex - RELOC/doc/latex/prosper/ExampleFrames.tex - RELOC/doc/latex/prosper/ExampleLignesbleues.tex - RELOC/doc/latex/prosper/ExampleNuanceGris.tex - RELOC/doc/latex/prosper/ExampleTroisPoints.tex - RELOC/doc/latex/prosper/FAQ - RELOC/doc/latex/prosper/INSTALL - RELOC/doc/latex/prosper/NEWS - RELOC/doc/latex/prosper/README - RELOC/doc/latex/prosper/TODO - RELOC/doc/latex/prosper/compilation.fig - RELOC/doc/latex/prosper/green-bullet-on-blue-wc.gif - RELOC/doc/latex/prosper/green-bullet-on-blue.gif - RELOC/doc/latex/prosper/green-bullet-on-white.gif - RELOC/doc/latex/prosper/gyom.tex - RELOC/doc/latex/prosper/manifest.txt - RELOC/doc/latex/prosper/prosper-doc.pdf - RELOC/doc/latex/prosper/prosper-doc.tex - RELOC/doc/latex/prosper/prosper-structure.fig - RELOC/doc/latex/prosper/prosper-template.jpg - RELOC/doc/latex/prosper/prosper-tour.pdf - RELOC/doc/latex/prosper/prosper-tour.tex - RELOC/doc/latex/prosper/prosper.png - RELOC/doc/latex/prosper/prosper.ui - RELOC/doc/latex/prosper/red-bullet-on-blue-wc.gif - RELOC/doc/latex/prosper/red-bullet-on-blue.gif - RELOC/doc/latex/prosper/red-bullet-on-white.gif - RELOC/doc/latex/prosper/rico.tex - RELOC/doc/latex/prosper/rotation.tex - RELOC/doc/latex/prosper/seminar-bg2-lepennec.fix - RELOC/doc/latex/prosper/yellow-bullet-on-blue-wc.gif - RELOC/doc/latex/prosper/yellow-bullet-on-blue.gif - RELOC/doc/latex/prosper/yellow-bullet-on-white.gif -catalogue-ctan /macros/latex/contrib/prosper -catalogue-date 2012-02-25 10:31:12 +0100 -catalogue-license lppl1.2 -catalogue-version 1.0h - -name protex -category Package -revision 15878 -shortdesc Literate programming package. -relocated 1 -longdesc ProTeX is a simple but powerful literate programming tool, -longdesc which is designed to generate useful hypertext output (either -longdesc PDF, or HTML using TeX4ht). -runfiles size=17 - RELOC/tex/latex/protex/AlProTex.sty - RELOC/tex/latex/protex/ProTex.sty -docfiles size=5 - RELOC/doc/latex/protex/LitProg - RELOC/doc/latex/protex/README -catalogue-ctan /web/protex -catalogue-date 2012-05-30 20:28:00 +0200 -catalogue-license lppl -catalogue-version 1.5 - -name protocol -category Package -revision 25562 -shortdesc A class for minutes of meetings. -relocated 1 -longdesc The present version of the class supports German meeting -longdesc minutes including vote results and action items. The author has -longdesc ambitions to internationalise the code, and would welcome -longdesc support in the work. -runfiles size=2 - RELOC/tex/latex/protocol/protocol.cls -docfiles size=81 - RELOC/doc/latex/protocol/README - RELOC/doc/latex/protocol/protest.tex - RELOC/doc/latex/protocol/protocol.pdf -srcfiles size=6 - RELOC/source/latex/protocol/protocol.dtx - RELOC/source/latex/protocol/protocol.ins -catalogue-ctan /macros/latex/contrib/protocol -catalogue-date 2012-03-03 18:35:38 +0100 -catalogue-license lppl1.3 -catalogue-version 1.13 - -name przechlewski-book -category Package -revision 23552 -shortdesc Examples from Przechlewski's LaTeX book. -relocated 1 -longdesc The bundle provides machine-readable copies of the examples -longdesc from the book "Praca magisterska i dyplomowa z programem -longdesc LaTeX". -runfiles size=10 - RELOC/bibtex/bst/przechlewski-book/papalike.bst - RELOC/tex/latex/przechlewski-book/upmgr.cls - RELOC/tex/latex/przechlewski-book/wkmgr.cls -docfiles size=120 - RELOC/doc/latex/przechlewski-book/LICENSE - RELOC/doc/latex/przechlewski-book/Makefile - RELOC/doc/latex/przechlewski-book/README - RELOC/doc/latex/przechlewski-book/README.pl - RELOC/doc/latex/przechlewski-book/TAM-pl.pdf - RELOC/doc/latex/przechlewski-book/b313.bib - RELOC/doc/latex/przechlewski-book/p21.tex - RELOC/doc/latex/przechlewski-book/p22.tex - RELOC/doc/latex/przechlewski-book/p23.tex - RELOC/doc/latex/przechlewski-book/p24.tex - RELOC/doc/latex/przechlewski-book/p31.tex - RELOC/doc/latex/przechlewski-book/p310.tex - RELOC/doc/latex/przechlewski-book/p311.tex - RELOC/doc/latex/przechlewski-book/p312.tex - RELOC/doc/latex/przechlewski-book/p313.tex - RELOC/doc/latex/przechlewski-book/p313_utf8.tex - RELOC/doc/latex/przechlewski-book/p32.tex - RELOC/doc/latex/przechlewski-book/p33.tex - RELOC/doc/latex/przechlewski-book/p34.tex - RELOC/doc/latex/przechlewski-book/p35.tex - RELOC/doc/latex/przechlewski-book/p36.tex - RELOC/doc/latex/przechlewski-book/p37.tex - RELOC/doc/latex/przechlewski-book/p38.tex - RELOC/doc/latex/przechlewski-book/p39.tex - RELOC/doc/latex/przechlewski-book/p41.tex - RELOC/doc/latex/przechlewski-book/p42.tex - RELOC/doc/latex/przechlewski-book/p43.tex - RELOC/doc/latex/przechlewski-book/p44.tex - RELOC/doc/latex/przechlewski-book/p45.tex - RELOC/doc/latex/przechlewski-book/p46.tex - RELOC/doc/latex/przechlewski-book/rys1_5.tex - RELOC/doc/latex/przechlewski-book/wkmgr.bib - RELOC/doc/latex/przechlewski-book/wkmgr.html - RELOC/doc/latex/przechlewski-book/wkmgr1.pdf - RELOC/doc/latex/przechlewski-book/wkmgr1.tex - RELOC/doc/latex/przechlewski-book/wkmgr2.pdf - RELOC/doc/latex/przechlewski-book/wkmgr2.tex -catalogue-ctan /info/examples/przechlewski-book-examples -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl - -name ps2pk -category TLCore -revision 37078 -shortdesc Generate a PK font from an Adobe Type 1 font. -longdesc Generates a PK file from an Adobe Type 1 font. PK fonts are (or -longdesc used to be) valuable in enabling previewers to view documents -longdesc generated that use Type 1 fonts. The program makes use of code -longdesc donated to the X consortium by IBM. -depend ps2pk.ARCH -docfiles size=13 - texmf-dist/doc/man/man1/mag.1 - texmf-dist/doc/man/man1/mag.man1.pdf - texmf-dist/doc/man/man1/pfb2pfa.1 - texmf-dist/doc/man/man1/pfb2pfa.man1.pdf - texmf-dist/doc/man/man1/pk2bm.1 - texmf-dist/doc/man/man1/pk2bm.man1.pdf - texmf-dist/doc/man/man1/ps2pk.1 - texmf-dist/doc/man/man1/ps2pk.man1.pdf -catalogue-ctan /fonts/utilities/ps2pk -catalogue-date 2015-03-27 20:47:54 +0100 -catalogue-license other-free - -name ps2pk.i386-linux -category TLCore -revision 36790 -shortdesc i386-linux files of ps2pk -binfiles arch=i386-linux size=70 - bin/i386-linux/mag - bin/i386-linux/pfb2pfa - bin/i386-linux/pk2bm - bin/i386-linux/ps2pk - -name psbao -category Package -revision 15878 -shortdesc Draw Bao diagrams. -relocated 1 -longdesc The package draws Bao diagrams in LaTeX. The package is a -longdesc development of psgo, and uses PSTricks to draw the diagrams. -runfiles size=5 - RELOC/tex/latex/psbao/psbao.sty -docfiles size=31 - RELOC/doc/latex/psbao/Changes - RELOC/doc/latex/psbao/README - RELOC/doc/latex/psbao/psbaomanual.pdf - RELOC/doc/latex/psbao/psbaomanual.tex -catalogue-ctan /graphics/pstricks/contrib/psbao -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.17 - -name pseudocode -category Package -revision 15878 -shortdesc LaTeX environment for specifying algorithms in a natural way. -relocated 1 -longdesc This package provides the environment "pseudocode" for -longdesc describing algorithms in a natural manner. -runfiles size=2 - RELOC/tex/latex/pseudocode/pseudocode.sty -docfiles size=43 - RELOC/doc/latex/pseudocode/README - RELOC/doc/latex/pseudocode/pseudocode.pdf - RELOC/doc/latex/pseudocode/pseudocode.tex -catalogue-ctan /macros/latex/contrib/pseudocode -catalogue-date 2011-10-12 13:03:40 +0200 -catalogue-license lppl - -name psfrag-italian -category Package -revision 15878 -shortdesc PSfrag documentation in Italian. -relocated 1 -longdesc This is a translation of the documentation that comes with the -longdesc psfrag documentation. -docfiles size=47 - RELOC/doc/latex/psfrag-italian/itpfgguide.pdf - RELOC/doc/latex/psfrag-italian/itpfgguide.tex -catalogue-ctan /info/italian/psfrag -catalogue-date 2012-03-19 13:11:25 +0100 -catalogue-license gpl - -name psfrag -category Package -revision 15878 -shortdesc Replace strings in encapsulated PostScript figures. -relocated 1 -longdesc Allows LaTeX constructions (equations, picture environments, -longdesc etc.) to be precisely superimposed over Encapsulated PostScript -longdesc figures, using your own favorite drawing tool to create an EPS -longdesc figure and placing simple text 'tags' where each replacement is -longdesc to be placed, with PSfrag automatically removing these tags -longdesc from the figure and replacing them with a user specified LaTeX -longdesc construction, properly aligned, scaled, and/or rotated. -runfiles size=4 - RELOC/dvips/psfrag/psfrag.pro - RELOC/tex/latex/psfrag/psfrag.sty -docfiles size=30 - RELOC/doc/latex/psfrag/00readme.txt - RELOC/doc/latex/psfrag/announce.txt - RELOC/doc/latex/psfrag/example.eps - RELOC/doc/latex/psfrag/pfgguide.pdf - RELOC/doc/latex/psfrag/pfgguide.tex - RELOC/doc/latex/psfrag/testfig.eps -srcfiles size=12 - RELOC/source/latex/psfrag/psfrag.dtx - RELOC/source/latex/psfrag/psfrag.ins -catalogue-ctan /macros/latex/contrib/psfrag -catalogue-date 2014-07-11 06:53:43 +0200 -catalogue-license other-free -catalogue-version 3.04 - -name psfragx -category Package -revision 26243 -shortdesc A psfrag eXtension. -relocated 1 -longdesc PSfragX offers a mechanism to embed \psfrag commands, as -longdesc provided by the psfrag package, into the EPS file itself. Each -longdesc time a graphic is included, the EPS file is scanned. If some -longdesc tagged lines are found, they are used to define the psfrag -longdesc replacements that should be performed automatically. In -longdesc addition, a similar mechanism holds for overpic objects. These -longdesc are picture objects superimposed on the included graphic. A -longdesc similar mechanism is implemented in psfrag itself (but -longdesc deprecated in the documentation), but psfragx offers much more -longdesc flexibility. For example, if babel is used, it is possible to -longdesc define different replacements corresponding to different -longdesc languages. The replacements to take into account will be -longdesc selected on the basis of the current language of the document. -longdesc A Matlab script (LaPrint) is provided, to export an EPS file -longdesc with psfragx annotations ready embedded. -runfiles size=4 - RELOC/tex/latex/psfragx/psfragx.cfg - RELOC/tex/latex/psfragx/psfragx.sty -docfiles size=302 - RELOC/doc/latex/psfragx/README - RELOC/doc/latex/psfragx/README.laprint-3.16 - RELOC/doc/latex/psfragx/laprint.m - RELOC/doc/latex/psfragx/laprintdoc.ps - RELOC/doc/latex/psfragx/laprpfx.mat - RELOC/doc/latex/psfragx/pfxprint.m - RELOC/doc/latex/psfragx/psfragx.m - RELOC/doc/latex/psfragx/psfragx.pdf - RELOC/doc/latex/psfragx/psfragx_example.pdf - RELOC/doc/latex/psfragx/psfragx_example.tex - RELOC/doc/latex/psfragx/readmePFX.txt -srcfiles size=17 - RELOC/source/latex/psfragx/psfragx.drv - RELOC/source/latex/psfragx/psfragx.dtx - RELOC/source/latex/psfragx/psfragx.ins -catalogue-ctan /macros/latex/contrib/psfragx -catalogue-date 2012-06-08 15:42:15 +0200 -catalogue-license lppl -catalogue-version 1.1 - -name psgo -category Package -revision 15878 -shortdesc Typeset go diagrams with PSTricks. -relocated 1 -runfiles size=3 - RELOC/tex/latex/psgo/psgo.sty -docfiles size=31 - RELOC/doc/latex/psgo/Changes - RELOC/doc/latex/psgo/README - RELOC/doc/latex/psgo/psgomanual.pdf - RELOC/doc/latex/psgo/psgomanual.tex -catalogue-ctan /graphics/pstricks/contrib/psgo -catalogue-date 2012-07-23 14:43:10 +0200 -catalogue-license lppl -catalogue-version 0.17 - -name psizzl -category Package -revision 15878 -shortdesc A TeX format for physics papers. -relocated 1 -longdesc PSIZZL is a TeX format for physics papers written at SLAC and -longdesc used at several other places. It dates from rather early in the -longdesc development of TeX82; as a result, some of the descriptions of -longdesc limitations look rather quaint to modern eyes. -runfiles size=31 - RELOC/tex/psizzl/base/chapters.Psizzl - RELOC/tex/psizzl/base/citation.Psizzl - RELOC/tex/psizzl/base/fontdefs.Psizzl - RELOC/tex/psizzl/base/index.Psizzl - RELOC/tex/psizzl/base/institut.Psizzl - RELOC/tex/psizzl/base/letter.Psizzl - RELOC/tex/psizzl/base/lists.Psizzl - RELOC/tex/psizzl/base/macros.Psizzl - RELOC/tex/psizzl/base/memo.Psizzl - RELOC/tex/psizzl/base/mypsizzl.tex - RELOC/tex/psizzl/base/options.Psizzl - RELOC/tex/psizzl/base/output.Psizzl - RELOC/tex/psizzl/base/picture.Psizzl - RELOC/tex/psizzl/base/psizzl.tex - RELOC/tex/psizzl/base/publicat.Psizzl - RELOC/tex/psizzl/base/symbols.Psizzl - RELOC/tex/psizzl/base/thesis.Psizzl - RELOC/tex/psizzl/config/psizzl.ini -docfiles size=5 - RELOC/doc/otherformats/psizzl/base/psizzl.commands - RELOC/doc/otherformats/psizzl/base/psizzl.doc -srcfiles size=1 - RELOC/source/psizzl/base/aaaread.me -catalogue-ctan /macros/psizzl -catalogue-date 2011-11-19 23:22:36 +0100 -catalogue-license lppl -catalogue-version 0.35 - -name pslatex -category Package -revision 16416 -shortdesc Use PostScript fonts by default. -relocated 1 -longdesc A small package that makes LaTeX default to 'standard' -longdesc PostScript fonts. It is basically a merger of the times and the -longdesc (obsolete) mathptm packages from the psnfss suite. You must -longdesc have installed standard LaTeX and the psnfss PostScript fonts -longdesc to use this package. The main novel feature is that the pslatex -longdesc package tries to compensate for the visual differences between -longdesc the Adobe fonts by scaling Helvetica by 90%, and 'condensing' -longdesc Courier (i.e. scaling horizontally) by 85%. The package is -longdesc supplied with a (unix) shell file for a 'pslatex' command that -longdesc allows standard LaTeX documents to be processed, without -longdesc needing to edit the file. Note that current psnfss uses a -longdesc different technique for scaling Helvetica, and treats Courier -longdesc as a lost cause (there are better free fixed-width available -longdesc now, than there were when pslatex was designed). As a result, -longdesc pslatex is widely considered obsolete. -runfiles size=9 - RELOC/fonts/map/dvips/pslatex/pcrr8rn.map - RELOC/fonts/tfm/public/pslatex/pcrr7tn.tfm - RELOC/fonts/tfm/public/pslatex/pcrr8rn.tfm - RELOC/fonts/tfm/public/pslatex/pcrr8tn.tfm - RELOC/fonts/vf/public/pslatex/pcrr7tn.vf - RELOC/fonts/vf/public/pslatex/pcrr8tn.vf - RELOC/tex/latex/pslatex/pslatex.sty -srcfiles size=3 - RELOC/source/latex/pslatex/fontinst/pslatex.tex - RELOC/source/latex/pslatex/shell/pslatex - RELOC/source/latex/pslatex/shell/pslatex.bat -catalogue-ctan /macros/latex/contrib/pslatex -catalogue-date 2012-07-23 14:43:10 +0200 -catalogue-license lppl - -name psnfss -category Package -revision 33946 -shortdesc Font support for common PostScript fonts. -relocated 1 -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 -runfiles size=110 - RELOC/fonts/map/dvips/psnfss/charter.map - RELOC/fonts/map/dvips/psnfss/fpls.map - RELOC/fonts/map/dvips/psnfss/pazo.map - RELOC/fonts/map/dvips/psnfss/psnfss.map - RELOC/fonts/map/dvips/psnfss/utopia.map - RELOC/tex/latex/psnfss/8rbch.fd - RELOC/tex/latex/psnfss/8rpag.fd - RELOC/tex/latex/psnfss/8rpbk.fd - RELOC/tex/latex/psnfss/8rpcr.fd - RELOC/tex/latex/psnfss/8rphv.fd - RELOC/tex/latex/psnfss/8rpnc.fd - RELOC/tex/latex/psnfss/8rppl.fd - RELOC/tex/latex/psnfss/8rptm.fd - RELOC/tex/latex/psnfss/8rput.fd - RELOC/tex/latex/psnfss/8rpzc.fd - RELOC/tex/latex/psnfss/avant.sty - RELOC/tex/latex/psnfss/bookman.sty - RELOC/tex/latex/psnfss/chancery.sty - RELOC/tex/latex/psnfss/charter.sty - RELOC/tex/latex/psnfss/courier.sty - RELOC/tex/latex/psnfss/helvet.sty - RELOC/tex/latex/psnfss/mathpazo.sty - RELOC/tex/latex/psnfss/mathpple.sty - RELOC/tex/latex/psnfss/mathptm.sty - RELOC/tex/latex/psnfss/mathptmx.sty - RELOC/tex/latex/psnfss/newcent.sty - RELOC/tex/latex/psnfss/omlbch.fd - RELOC/tex/latex/psnfss/omlpag.fd - RELOC/tex/latex/psnfss/omlpbk.fd - RELOC/tex/latex/psnfss/omlpcr.fd - RELOC/tex/latex/psnfss/omlphv.fd - RELOC/tex/latex/psnfss/omlpnc.fd - RELOC/tex/latex/psnfss/omlppl.fd - RELOC/tex/latex/psnfss/omlptm.fd - RELOC/tex/latex/psnfss/omlptmcm.fd - RELOC/tex/latex/psnfss/omlput.fd - RELOC/tex/latex/psnfss/omlpzc.fd - RELOC/tex/latex/psnfss/omlzplm.fd - RELOC/tex/latex/psnfss/omlzpple.fd - RELOC/tex/latex/psnfss/omlztmcm.fd - RELOC/tex/latex/psnfss/omsbch.fd - RELOC/tex/latex/psnfss/omspag.fd - RELOC/tex/latex/psnfss/omspbk.fd - RELOC/tex/latex/psnfss/omspcr.fd - RELOC/tex/latex/psnfss/omsphv.fd - RELOC/tex/latex/psnfss/omspnc.fd - RELOC/tex/latex/psnfss/omsppl.fd - RELOC/tex/latex/psnfss/omsptm.fd - RELOC/tex/latex/psnfss/omsput.fd - RELOC/tex/latex/psnfss/omspzc.fd - RELOC/tex/latex/psnfss/omspzccm.fd - RELOC/tex/latex/psnfss/omszplm.fd - RELOC/tex/latex/psnfss/omszpple.fd - RELOC/tex/latex/psnfss/omsztmcm.fd - RELOC/tex/latex/psnfss/omxpsycm.fd - RELOC/tex/latex/psnfss/omxzplm.fd - RELOC/tex/latex/psnfss/omxzpple.fd - RELOC/tex/latex/psnfss/omxztmcm.fd - RELOC/tex/latex/psnfss/ot1bch.fd - RELOC/tex/latex/psnfss/ot1pag.fd - RELOC/tex/latex/psnfss/ot1pbk.fd - RELOC/tex/latex/psnfss/ot1pcr.fd - RELOC/tex/latex/psnfss/ot1phv.fd - RELOC/tex/latex/psnfss/ot1pnc.fd - RELOC/tex/latex/psnfss/ot1ppl.fd - RELOC/tex/latex/psnfss/ot1pplj.fd - RELOC/tex/latex/psnfss/ot1pplx.fd - RELOC/tex/latex/psnfss/ot1ptm.fd - RELOC/tex/latex/psnfss/ot1ptmcm.fd - RELOC/tex/latex/psnfss/ot1put.fd - RELOC/tex/latex/psnfss/ot1pzc.fd - RELOC/tex/latex/psnfss/ot1zplm.fd - RELOC/tex/latex/psnfss/ot1zpple.fd - RELOC/tex/latex/psnfss/ot1ztmcm.fd - RELOC/tex/latex/psnfss/palatino.sty - RELOC/tex/latex/psnfss/pifont.sty - RELOC/tex/latex/psnfss/t1bch.fd - RELOC/tex/latex/psnfss/t1pag.fd - RELOC/tex/latex/psnfss/t1pbk.fd - RELOC/tex/latex/psnfss/t1pcr.fd - RELOC/tex/latex/psnfss/t1phv.fd - RELOC/tex/latex/psnfss/t1pnc.fd - RELOC/tex/latex/psnfss/t1ppl.fd - RELOC/tex/latex/psnfss/t1pplj.fd - RELOC/tex/latex/psnfss/t1pplx.fd - RELOC/tex/latex/psnfss/t1ptm.fd - RELOC/tex/latex/psnfss/t1put.fd - RELOC/tex/latex/psnfss/t1pzc.fd - RELOC/tex/latex/psnfss/times.sty - RELOC/tex/latex/psnfss/ts1bch.fd - RELOC/tex/latex/psnfss/ts1pag.fd - RELOC/tex/latex/psnfss/ts1pbk.fd - RELOC/tex/latex/psnfss/ts1pcr.fd - RELOC/tex/latex/psnfss/ts1phv.fd - RELOC/tex/latex/psnfss/ts1pnc.fd - RELOC/tex/latex/psnfss/ts1ppl.fd - RELOC/tex/latex/psnfss/ts1pplj.fd - RELOC/tex/latex/psnfss/ts1pplx.fd - RELOC/tex/latex/psnfss/ts1ptm.fd - RELOC/tex/latex/psnfss/ts1put.fd - RELOC/tex/latex/psnfss/ts1pzc.fd - RELOC/tex/latex/psnfss/ufplm.fd - RELOC/tex/latex/psnfss/ufplmbb.fd - RELOC/tex/latex/psnfss/upsy.fd - RELOC/tex/latex/psnfss/upzd.fd - RELOC/tex/latex/psnfss/utopia.sty -docfiles size=130 - RELOC/doc/latex/psnfss/00readme.txt - RELOC/doc/latex/psnfss/changes.txt - RELOC/doc/latex/psnfss/manifest.txt - RELOC/doc/latex/psnfss/psfonts.pdf - RELOC/doc/latex/psnfss/psnfss2e.pdf - RELOC/doc/latex/psnfss/test/mathtest.tex - RELOC/doc/latex/psnfss/test/pitest.tex - RELOC/doc/latex/psnfss/test/test0.tex - RELOC/doc/latex/psnfss/test/test1.tex - RELOC/doc/latex/psnfss/test/test2.tex - RELOC/doc/latex/psnfss/test/test3.tex -srcfiles size=18 - RELOC/source/latex/psnfss/psfonts.dtx - RELOC/source/latex/psnfss/psfonts.ins - RELOC/source/latex/psnfss/psnfss2e.tex -catalogue-ctan /macros/latex/required/psnfss -catalogue-date 2012-07-23 15:04:13 +0200 -catalogue-license lppl -catalogue-version 9.2a - -name pspicture -category Package -revision 15878 -shortdesc PostScript picture support. -relocated 1 -longdesc A replacement for LaTeX's picture macros, that uses PostScript -longdesc \special commands. The package is now largely superseded by -longdesc pict2e. -runfiles size=2 - RELOC/dvips/pspicture/pspicture.ps - RELOC/tex/latex/pspicture/pspicture.sty -docfiles size=18 - RELOC/doc/latex/pspicture/README - RELOC/doc/latex/pspicture/pspicture.pdf -srcfiles size=6 - RELOC/source/latex/pspicture/pspicture.dtx - RELOC/source/latex/pspicture/pspicture.ins -catalogue-ctan /macros/latex/contrib/pspicture -catalogue-date 2012-07-23 15:04:13 +0200 -catalogue-license lppl - -name pst-2dplot -category Package -revision 15878 -shortdesc A PSTricks package for drawing 2D curves. -relocated 1 -longdesc Pst-2dplot is a pstricks package that offers an easy-to-use and -longdesc intuitive tool for plotting 2-d curves. It defines an -longdesc environment with commands similar to MATLAB for plotting. -runfiles size=2 - RELOC/tex/latex/pst-2dplot/pst-2dplot.sty -docfiles size=27 - RELOC/doc/generic/pst-2dplot/README - RELOC/doc/generic/pst-2dplot/data1.dat - RELOC/doc/generic/pst-2dplot/data2.dat - RELOC/doc/generic/pst-2dplot/data3.dat - RELOC/doc/generic/pst-2dplot/pst-2dplot-doc.pdf - RELOC/doc/generic/pst-2dplot/pst-2dplot-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-2dplot -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.5 - -name pst2pdf -category Package -revision 35247 -shortdesc A script to compile pstricks documents via pdftex. -longdesc The script extracts the preamble of the document and runs all -longdesc \begin{postscript}...\end{postscript} -longdesc \begin{pspicture}...\end{pspicture} and -longdesc \pspicture...\endpspicture separately through LaTeX with the -longdesc same preamble as the original document; thus it creates EPS, -longdesc PNG and PDF files of these snippets. In a final PDFLaTeX run -longdesc the script replaces the environments with \includegraphics to -longdesc include the processed snippets. Detail documentation is -longdesc acquired from the document itself via Perldoc. -depend pst2pdf.ARCH -runfiles size=12 - texmf-dist/scripts/pst2pdf/pst2pdf.pl -docfiles size=125 - texmf-dist/doc/latex/pst2pdf/Changes - texmf-dist/doc/latex/pst2pdf/README - texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.pdf - texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.tex - texmf-dist/doc/latex/pst2pdf/test1-pdf.pdf - texmf-dist/doc/latex/pst2pdf/test1.tex - texmf-dist/doc/latex/pst2pdf/test2-pdf.pdf - texmf-dist/doc/latex/pst2pdf/test2.tex - texmf-dist/doc/latex/pst2pdf/test3-pdf.pdf - texmf-dist/doc/latex/pst2pdf/test3.tex - texmf-dist/doc/latex/pst2pdf/tux.jpg -catalogue-ctan /graphics/pstricks/scripts/pst2pdf -catalogue-date 2014-09-24 16:07:42 +0200 -catalogue-license gpl2 -catalogue-version 0.16 - -name pst2pdf.i386-linux -category Package -revision 29333 -shortdesc i386-linux files of pst2pdf -binfiles arch=i386-linux size=1 - bin/i386-linux/pst2pdf - -name pst-3dplot -category Package -revision 35042 -shortdesc Draw 3D objects in parallel projection, using PSTricks. -relocated 1 -longdesc A package using PSTricks to draw a large variety of graphs and -longdesc plots, including 3D maths functions. Data can be read from -longdesc external data files, making this package a generic tool for -longdesc graphing within TeX/LaTeX, without the need for external tools. -runfiles size=31 - RELOC/dvips/pst-3dplot/pst-3dplot.pro - RELOC/tex/generic/pst-3dplot/pst-3dplot.tex - RELOC/tex/latex/pst-3dplot/pst-3dplot.sty -docfiles size=751 - RELOC/doc/generic/pst-3dplot/Changes - RELOC/doc/generic/pst-3dplot/README - RELOC/doc/generic/pst-3dplot/pst-3dplot-doc.bib - RELOC/doc/generic/pst-3dplot/pst-3dplot-doc.dat - RELOC/doc/generic/pst-3dplot/pst-3dplot-doc.pdf - RELOC/doc/generic/pst-3dplot/pst-3dplot-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-3dplot -catalogue-date 2014-08-25 19:16:17 +0200 -catalogue-license lppl -catalogue-version 2.01 - -name pst-3d -category Package -revision 17257 -shortdesc A PSTricks package for tilting and other pseudo-3D tricks. -relocated 1 -longdesc The package provides basic macros that use PSTricks for -longdesc shadows, tilting and three dimensional representations of text -longdesc or graphical objects. -runfiles size=5 - RELOC/dvips/pst-3d/pst-3d.pro - RELOC/tex/generic/pst-3d/pst-3d.tex - RELOC/tex/latex/pst-3d/pst-3d.sty -docfiles size=44 - RELOC/doc/generic/pst-3d/Changes - RELOC/doc/generic/pst-3d/README - RELOC/doc/generic/pst-3d/pst-3d-doc.bib - RELOC/doc/generic/pst-3d/pst-3d-doc.pdf - RELOC/doc/generic/pst-3d/pst-3d-doc.tex -srcfiles size=1 - RELOC/source/generic/pst-3d/Makefile -catalogue-ctan /graphics/pstricks/contrib/pst-3d -catalogue-date 2013-07-15 01:18:47 +0200 -catalogue-license lppl -catalogue-version 1.10 - -name pst-abspos -category Package -revision 15878 -shortdesc Put objects at an absolute position. -relocated 1 -longdesc The (PSTricks-related) package provides a command -longdesc \pstPutAbs(x,y) to put an object at an arbitrary absolute (or -longdesc even a relative) position on the page. -runfiles size=3 - RELOC/tex/generic/pst-abspos/pst-abspos.tex - RELOC/tex/latex/pst-abspos/pst-abspos.sty -docfiles size=27 - RELOC/doc/generic/pst-abspos/Changes - RELOC/doc/generic/pst-abspos/README - RELOC/doc/generic/pst-abspos/pst-abspos-doc.bib - RELOC/doc/generic/pst-abspos/pst-abspos-doc.pdf - RELOC/doc/generic/pst-abspos/pst-abspos-doc.tex -srcfiles size=1 - RELOC/source/generic/pst-abspos/Makefile -catalogue-ctan /graphics/pstricks/contrib/pst-abspos -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.2 - -name pst-am -category Package -revision 19591 -shortdesc Simulation of modulation and demodulation. -relocated 1 -longdesc The package allows the simulation of the modulated and -longdesc demodulated amplitude of radio waves. The user may plot curves -longdesc of modulated signals, wave carrier, signal modulation, signal -longdesc recovery and signal demodulation. -runfiles size=3 - RELOC/tex/latex/pst-am/pst-am.sty -docfiles size=225 - RELOC/doc/generic/pst-am/Changes - RELOC/doc/generic/pst-am/README - RELOC/doc/generic/pst-am/index.phtml - RELOC/doc/generic/pst-am/pst-am-doc.bib - RELOC/doc/generic/pst-am/pst-am-doc.pdf - RELOC/doc/generic/pst-am/pst-am-doc.tex -srcfiles size=1 - RELOC/source/generic/pst-am/Makefile -catalogue-ctan /graphics/pstricks/contrib/pst-am -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.02 - -name pst-asr -category Package -revision 22138 -shortdesc Typeset autosegmental representations for linguists. -relocated 1 -longdesc The package allows the user to typeset autosegmental -longdesc representations. It uses the PStricks, and xkeyval packages. -runfiles size=7 - RELOC/tex/generic/pst-asr/pst-asr.tex - RELOC/tex/latex/pst-asr/pst-asr.sty -docfiles size=84 - RELOC/doc/generic/pst-asr/README - RELOC/doc/generic/pst-asr/pst-asr-doc-source.zip - RELOC/doc/generic/pst-asr/pst-asr-doc.pdf - RELOC/doc/generic/pst-asr/pst-asr-examples.pdf - RELOC/doc/generic/pst-asr/pst-asr-examples.tex -catalogue-ctan /graphics/pstricks/contrib/pst-asr -catalogue-date 2013-07-15 20:25:07 +0200 -catalogue-license lppl -catalogue-version 1.3 - -name pst-barcode -category Package -revision 37586 -shortdesc Print barcodes using PostScript. -relocated 1 -longdesc The pst-barcode package allows printing of barcodes, in a huge -longdesc variety of formats, including quick-response (qr) codes (see -longdesc documentation for details). As a pstricks package, the package -longdesc requires pstricks. The package uses PostScript for calculating -longdesc the bars. For PDF output use a multi-pass mechansism such as -longdesc pst-pdf. -runfiles size=190 - RELOC/dvips/pst-barcode/pst-barcode.pro - RELOC/tex/generic/pst-barcode/pst-barcode.tex - RELOC/tex/latex/pst-barcode/pst-barcode.sty -docfiles size=110 - RELOC/doc/generic/pst-barcode/Changes - RELOC/doc/generic/pst-barcode/README - RELOC/doc/generic/pst-barcode/pst-barcode-doc.bib - RELOC/doc/generic/pst-barcode/pst-barcode-doc.pdf - RELOC/doc/generic/pst-barcode/pst-barcode-doc.tex -catalogue-also barcodes barcodes-vulis ean kix qrcode -catalogue-ctan /graphics/pstricks/contrib/pst-barcode -catalogue-date 2015-06-17 16:16:28 +0200 -catalogue-license lppl -catalogue-topics barcode qrcode pstricks -catalogue-version 0.14 - -name pst-bar -category Package -revision 18734 -shortdesc Produces bar charts using pstricks. -relocated 1 -longdesc The package uses pstricks to draw bar charts from data stored -longdesc in a comma-delimited file. Several types of bar charts may be -longdesc drawn, and the drawing parameters are highly customizable. No -longdesc external packages are required except those that are part of -longdesc the standard pstricks distribution. -runfiles size=6 - RELOC/dvips/pst-bar/pst-bar.pro - RELOC/tex/generic/pst-bar/pst-bar.tex - RELOC/tex/latex/pst-bar/pst-bar.sty -docfiles size=81 - RELOC/doc/generic/pst-bar/README - RELOC/doc/generic/pst-bar/pst-bar-doc.bib - RELOC/doc/generic/pst-bar/pst-bar-doc.pdf - RELOC/doc/generic/pst-bar/pst-bar-doc.tex - RELOC/doc/generic/pst-bar/pst-bar-docDE.pdf - RELOC/doc/generic/pst-bar/pst-bar-docDE.tex - RELOC/doc/generic/pst-bar/pst-bar.orig -srcfiles size=1 - RELOC/source/generic/pst-bar/Makefile -catalogue-ctan /graphics/pstricks/contrib/pst-bar -catalogue-date 2013-07-15 20:25:07 +0200 -catalogue-license lppl -catalogue-version 0.92 - -name pst-bezier -category Package -revision 15878 -shortdesc Draw Bezier curves. -relocated 1 -longdesc The package provides a macro \psbcurve for drawing a Bezier -longdesc curve. Provision is made for full control of over all the -longdesc control points of the curve. -runfiles size=5 - RELOC/dvips/pst-bezier/pst-bezier.pro - RELOC/tex/generic/pst-bezier/pst-bezier.tex - RELOC/tex/latex/pst-bezier/pst-bezier.sty -docfiles size=32 - RELOC/doc/generic/pst-bezier/Changes - RELOC/doc/generic/pst-bezier/README - RELOC/doc/generic/pst-bezier/pst-bezier-doc.bib - RELOC/doc/generic/pst-bezier/pst-bezier-doc.pdf - RELOC/doc/generic/pst-bezier/pst-bezier-doc.tex -srcfiles size=1 - RELOC/source/generic/pst-bezier/Makefile -catalogue-ctan /graphics/pstricks/contrib/pst-bezier -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.01 - -name pst-blur -category Package -revision 15878 -shortdesc PSTricks package for "blurred" shadows. -relocated 1 -longdesc Pst-blur is a package built for use with PSTricks. It provides -longdesc macros that apply blurring to the normal shadow function of -longdesc PSTricks. -runfiles size=3 - RELOC/dvips/pst-blur/pst-blur.pro - RELOC/tex/generic/pst-blur/pst-blur.tex - RELOC/tex/latex/pst-blur/pst-blur.sty -docfiles size=26 - RELOC/doc/generic/pst-blur/Changes - RELOC/doc/generic/pst-blur/README - RELOC/doc/generic/pst-blur/pst-blur.pdf -srcfiles size=7 - RELOC/source/generic/pst-blur/Makefile - RELOC/source/generic/pst-blur/pst-blur.dtx - RELOC/source/generic/pst-blur/pst-blur.ins -catalogue-ctan /graphics/pstricks/contrib/pst-blur -catalogue-date 2013-07-15 20:28:38 +0200 -catalogue-license lppl -catalogue-version 2.0 - -name pst-bspline -category Package -revision 25582 -shortdesc Draw cubic Bspline curves and interpolations. -relocated 1 -longdesc The package draws uniform, cubic B-spline curves, open and -longdesc closed, based on a sequence of B-spline control points. There -longdesc is also code which permits drawing the open or closed cubic -longdesc Bspline curve interpolating a sequence of points. Graphical -longdesc output is created using PStricks. -runfiles size=11 - RELOC/dvips/pst-bspline/pst-bspline.pro - RELOC/tex/generic/pst-bspline/pst-bspline.tex - RELOC/tex/latex/pst-bspline/pst-bspline.sty -docfiles size=54 - RELOC/doc/generic/pst-bspline/README - RELOC/doc/generic/pst-bspline/pst-bspline-doc.pdf - RELOC/doc/generic/pst-bspline/pst-bspline-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-bspline -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.61 - -name pst-calendar -category Package -revision 15878 -shortdesc Plot calendars in "fancy" ways. -relocated 1 -longdesc The package uses pstricks and pst-3d to draw tabular calendars, -longdesc or calendars on dodecahedra with a month to each face (the -longdesc package also requires the multido and pst-xkey packages). The -longdesc package works for years 2000-2099, and has options for -longdesc calendars in French German and English, but the documentation -longdesc is not available in English. -runfiles size=5 - RELOC/tex/latex/pst-calendar/pst-calendar.sty -docfiles size=85 - RELOC/doc/latex/pst-calendar/Changes - RELOC/doc/latex/pst-calendar/README - RELOC/doc/latex/pst-calendar/pst-calendar-docDE.ltx - RELOC/doc/latex/pst-calendar/pst-calendar-docDE.pdf - RELOC/doc/latex/pst-calendar/pst-calendar-docDE.tex - RELOC/doc/latex/pst-calendar/pst-calendar-docFR.pdf - RELOC/doc/latex/pst-calendar/pst-calendar-docFR.tex -catalogue-ctan /graphics/pstricks/contrib/pst-calendar -catalogue-date 2013-07-16 00:15:49 +0200 -catalogue-license lppl -catalogue-version 0.47 - -name pst-circ -category Package -revision 36865 -shortdesc PSTricks package for drawing electric circuits. -relocated 1 -longdesc The package is built using PSTricks and in particular pst-node. -longdesc It can easily draw current 2-terminal devices and some 3- and 4- -longdesc terminal devices used in electronic or electric theory. The -longdesc package's macros are designed with a view to 'logical' -longdesc representation of circuits, as far as possible, so as to -longdesc relieve the user of purely graphical considerations when -longdesc expressing a circuit. -runfiles size=56 - RELOC/dvips/pst-circ/pst-circ.pro - RELOC/tex/generic/pst-circ/pst-circ.tex - RELOC/tex/latex/pst-circ/pst-circ.sty -docfiles size=216 - RELOC/doc/generic/pst-circ/Changes - RELOC/doc/generic/pst-circ/README - RELOC/doc/generic/pst-circ/pst-circ-doc.bib - RELOC/doc/generic/pst-circ/pst-circ-doc.pdf - RELOC/doc/generic/pst-circ/pst-circ-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-circ -catalogue-date 2015-04-13 22:13:54 +0200 -catalogue-license lppl -catalogue-version 2.13 - -name pst-coil -category Package -revision 37377 -shortdesc A PSTricks package for coils, etc. -relocated 1 -longdesc Pst-coil is a PSTricks based package for coils and zigzags and -longdesc for coil and zigzag node connections. -runfiles size=5 - RELOC/dvips/pst-coil/pst-coil.pro - RELOC/tex/generic/pst-coil/pst-coil.tex - RELOC/tex/latex/pst-coil/pst-coil.sty -docfiles size=83 - RELOC/doc/generic/pst-coil/Changes - RELOC/doc/generic/pst-coil/README - RELOC/doc/generic/pst-coil/pst-coil-doc.bib - RELOC/doc/generic/pst-coil/pst-coil-doc.pdf - RELOC/doc/generic/pst-coil/pst-coil-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-coil -catalogue-date 2015-05-13 20:16:47 +0200 -catalogue-license lppl -catalogue-version 1.07 - -name pst-cox -category Package -revision 15878 -shortdesc Drawing regular complex polytopes with PSTricks. -relocated 1 -longdesc Pst-cox is a PSTricks package for drawing 2-dimensional -longdesc projections of complex regular polytopes (after the work of -longdesc Coxeter). The package consists of a macro library for drawing -longdesc the projections. The complex polytopes appear in the study of -longdesc the root systems and play a crucial role in many domains -longdesc related to mathematics and physics. These polytopes have been -longdesc completely described by Coxeter in his book "Regular Complex -longdesc Polytopes". There exist only a finite numbers of exceptional -longdesc regular complex polytopes (for example the icosahedron) and -longdesc some infinite series (for example, one can construct a multi- -longdesc dimensional analogue of the hypercube in any finite dimension). -longdesc The library contains two packages. The first, pst-coxcoor, is -longdesc devoted to the exceptional complex regular polytopes whose -longdesc coordinates have been pre-computed. The second, pst-coxeterp, -longdesc is devoted to the infinite series. -runfiles size=614 - RELOC/dvips/pst-cox/pst-coxeter.pro - RELOC/tex/generic/pst-cox/pst-coxcoor.tex - RELOC/tex/generic/pst-cox/pst-coxeterp.tex - RELOC/tex/latex/pst-cox/pst-coxcoor.sty - RELOC/tex/latex/pst-cox/pst-coxeterp.sty -docfiles size=312 - RELOC/doc/generic/pst-cox/README - RELOC/doc/generic/pst-cox/gpl.txt - RELOC/doc/generic/pst-cox/lgpl.txt - RELOC/doc/generic/pst-cox/pst-coxcoor/Gallery.tex - RELOC/doc/generic/pst-cox/pst-coxcoor/pst-coxcoor_doc.pdf - RELOC/doc/generic/pst-cox/pst-coxcoor/pst-coxcoor_doc.tex - RELOC/doc/generic/pst-cox/pst-coxeterp/Gallery.tex - RELOC/doc/generic/pst-cox/pst-coxeterp/pst-coxeterp_doc.pdf - RELOC/doc/generic/pst-cox/pst-coxeterp/pst-coxeterp_doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-cox -catalogue-date 2013-07-16 00:15:49 +0200 -catalogue-license lgpl -catalogue-version 0.98 Beta - -name pst-dbicons -category Package -revision 17556 -shortdesc Support for drawing ER diagrams. -relocated 1 -longdesc The package provides some useful macros in the database area. -longdesc The package focusses on typesetting ER-Diagrams in a -longdesc declarative style, i.e., by positioning some nodes and defining -longdesc the position of all other nodes relative to them by using the -longdesc standard database terminology. The PSTricks package is required -longdesc for using pst-dbicons, but no deep knowledge of PSTricks -longdesc commands is required (although such knowledge is useful for -longdesc exploiting the full functionality of the package). -runfiles size=3 - RELOC/tex/latex/pst-dbicons/pst-dbicons.sty -docfiles size=40 - RELOC/doc/generic/pst-dbicons/README - RELOC/doc/generic/pst-dbicons/mondial-ER.tex - RELOC/doc/generic/pst-dbicons/pst-dbicons.pdf -srcfiles size=12 - RELOC/source/generic/pst-dbicons/pst-dbicons.drv - RELOC/source/generic/pst-dbicons/pst-dbicons.dtx - RELOC/source/generic/pst-dbicons/pst-dbicons.ins -catalogue-ctan /graphics/pstricks/contrib/pst-dbicons -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.16 - -name pst-diffraction -category Package -revision 15878 -shortdesc Print diffraction patterns from various apertures. -relocated 1 -longdesc The package enables the user to draw (using PSTricks) the -longdesc diffraction patterns for different geometric forms of apertures -longdesc for monochromatic light (using PSTricks). The aperture stops -longdesc can have rectangular, circular or triangular openings. The view -longdesc of the diffraction may be planar, or three-dimensional. Options -longdesc available are the dimensions of the aperture under -longdesc consideration and of the particular optical setting, e.g. the -longdesc radius in case of an circular opening. Moreover one can choose -longdesc the wavelength of the light (the associated color will be -longdesc calculated by the package). -runfiles size=6 - RELOC/tex/generic/pst-diffraction/pst-diffraction.tex - RELOC/tex/latex/pst-diffraction/pst-diffraction.sty -docfiles size=613 - RELOC/doc/generic/pst-diffraction/Changes - RELOC/doc/generic/pst-diffraction/README - RELOC/doc/generic/pst-diffraction/pst-diffraction-doc.bib - RELOC/doc/generic/pst-diffraction/pst-diffraction-docDE.pdf - RELOC/doc/generic/pst-diffraction/pst-diffraction-docDE.tex - RELOC/doc/generic/pst-diffraction/pst-diffraction-docE.pdf - RELOC/doc/generic/pst-diffraction/pst-diffraction-docE.tex - RELOC/doc/generic/pst-diffraction/pst-diffraction-docFR.pdf - RELOC/doc/generic/pst-diffraction/pst-diffraction-docFR.tex -srcfiles size=1 - RELOC/source/generic/pst-diffraction/Makefile -catalogue-ctan /graphics/pstricks/contrib/pst-diffraction -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 2.03 - -name pst-electricfield -category Package -revision 29803 -shortdesc Draw electric field and equipotential lines with PStricks. -relocated 1 -longdesc The package provides macros to plot electric field and -longdesc equipotential lines using PStricks. There may be any number of -longdesc charges which can be placed in a cartesian coordinate system by -longdesc (x,y) values. -runfiles size=4 - RELOC/dvips/pst-electricfield/pst-electricfield.pro - RELOC/tex/generic/pst-electricfield/pst-electricfield.tex - RELOC/tex/latex/pst-electricfield/pst-electricfield.sty -docfiles size=2007 - RELOC/doc/generic/pst-electricfield/Changes - RELOC/doc/generic/pst-electricfield/README - RELOC/doc/generic/pst-electricfield/pst-electricfield-doc.bib - RELOC/doc/generic/pst-electricfield/pst-electricfield-docDE.pdf - RELOC/doc/generic/pst-electricfield/pst-electricfield-docDE.tex - RELOC/doc/generic/pst-electricfield/pst-electricfield-docEN.pdf - RELOC/doc/generic/pst-electricfield/pst-electricfield-docEN.tex - RELOC/doc/generic/pst-electricfield/pst-electricfield-docFR.pdf - RELOC/doc/generic/pst-electricfield/pst-electricfield-docFR.tex -srcfiles size=3 - RELOC/source/generic/pst-electricfield/Makefile - RELOC/source/generic/pst-electricfield/Makefile.latex - RELOC/source/generic/pst-electricfield/Makefile.pst2pdf -catalogue-ctan /graphics/pstricks/contrib/pst-electricfield -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.14 - -name pst-eps -category Package -revision 15878 -shortdesc Create EPS files from PSTricks figures. -relocated 1 -longdesc Pst-eps is a PSTricks-based package for exporting PSTricks -longdesc images 'on the fly' to encapsulated PostScript (EPS) image -longdesc files, which can then be read into a document in the usual way. -runfiles size=3 - RELOC/tex/generic/pst-eps/pst-eps.tex - RELOC/tex/latex/pst-eps/pst-eps.sty -docfiles size=36 - RELOC/doc/generic/pst-eps/Changes - RELOC/doc/generic/pst-eps/README - RELOC/doc/generic/pst-eps/pst-eps-doc.bib - RELOC/doc/generic/pst-eps/pst-eps-doc.pdf - RELOC/doc/generic/pst-eps/pst-eps-doc.tex - RELOC/doc/generic/pst-eps/spirale.eps -srcfiles size=1 - RELOC/source/generic/pst-eps/Makefile -catalogue-ctan /graphics/pstricks/contrib/pst-eps -catalogue-date 2013-07-16 19:52:31 +0200 -catalogue-license lppl -catalogue-version 1.0 - -name pst-eucl -category Package -revision 34104 -shortdesc Euclidian geometry with pstricks. -relocated 1 -longdesc The package allows the drawing of Euclidean geometric figures -longdesc using TeX pstricks macros for specifying mathematical -longdesc constraints. It is thus possible to build point using common -longdesc transformations or intersections. The use of coordinates is -longdesc limited to points which controlled the figure. -runfiles size=20 - RELOC/dvips/pst-eucl/pst-eucl.pro - RELOC/tex/generic/pst-eucl/pst-eucl.tex - RELOC/tex/latex/pst-eucl/pst-eucl.sty -docfiles size=145 - RELOC/doc/generic/pst-eucl/Changes - RELOC/doc/generic/pst-eucl/README - RELOC/doc/generic/pst-eucl/pst-eucl-doc.bib - RELOC/doc/generic/pst-eucl/pst-eucl-doc.pdf - RELOC/doc/generic/pst-eucl/pst-eucl-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-eucl -catalogue-date 2014-05-18 11:08:05 +0200 -catalogue-license lppl -catalogue-version 1.51 - -name pst-eucl-translation-bg -category Package -revision 19296 -shortdesc Bulgarian translation of the pst-eucl documentation. -relocated 1 -longdesc The pst-eucl package documentation in Bulgarian language - -longdesc Euclidean Geometry with PSTricks. -docfiles size=215 - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/abscur.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/abscur_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/angle.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/angle_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/arc.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/arc_in.log - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/arc_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/astro.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/astro_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/bissec.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/bissec_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/ccirc.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/ccirc_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/cercle.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/cercle_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/cinscex.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/cinscex_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/curvetype.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/curvetype_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/cyclo.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/cyclo_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/delto.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/droite.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/droite_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/envcardi.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/envcardi_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/envellipse.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/envellipse_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/euler.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/euler_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/fracthom.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/fracthom_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/gal_biss.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/gal_biss_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/gauss.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/gauss_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/gencur.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/gencur_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/geohyper.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/geohyper_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/geonode.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/geonode_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/german_ra.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/german_ra_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/grav.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/grav_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/homothetie.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/homothetie_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/hyperbole.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/hyperbole_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/hypocyclo.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interCC.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interCC_bis_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interCC_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interDC.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interDC_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interDD.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interDD_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interFC.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interFC_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interFF.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interFF_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interFL.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interFL_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/mediator.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/mediator_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/milieu.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/milieu_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/oij.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/oij_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/orthocentre.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/orthocentre_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/orthoethyper.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/orthoethyper_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/parabole.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/parabole_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/projection.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/projection_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/ptfermat.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/ptfermat_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/remarq.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/remarq_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/rotation.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/rotation_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/segmentmark.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/segmentmark_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/symcentrale.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/symcentrale_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/symorthogonale.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/symorthogonale_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/tg1c.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/tg1c_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/tg2c.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/tg2c_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/translation.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/translation_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/triangle.tex - RELOC/doc/latex/pst-eucl-translation-bg/Exemples/triangle_in.tex - RELOC/doc/latex/pst-eucl-translation-bg/README - RELOC/doc/latex/pst-eucl-translation-bg/README-bulgarian.txt - RELOC/doc/latex/pst-eucl-translation-bg/euclide_bg.sty - RELOC/doc/latex/pst-eucl-translation-bg/euclide_macros.ist - RELOC/doc/latex/pst-eucl-translation-bg/pst-eucl-docBG.cb - RELOC/doc/latex/pst-eucl-translation-bg/pst-eucl-docBG.pdf - RELOC/doc/latex/pst-eucl-translation-bg/pst-eucl-docBG.tex -catalogue-ctan /info/translations/pst-eucl/bulgarian -catalogue-date 2012-08-25 14:37:30 +0200 -catalogue-license lppl -catalogue-version 1.3.2 - -name pst-exa -category Package -revision 35248 -shortdesc Typeset PSTricks examples, with code. -relocated 1 -longdesc The (PSTricks-related) package provides an environment -longdesc PSTexample to put code and output side by side or one above the -longdesc other. -runfiles size=3 - RELOC/tex/latex/pst-exa/pst-exa.sty -docfiles size=19 - RELOC/doc/latex/pst-exa/Changes - RELOC/doc/latex/pst-exa/README - RELOC/doc/latex/pst-exa/pst-exa-doc.bib - RELOC/doc/latex/pst-exa/pst-exa-doc.pdf - RELOC/doc/latex/pst-exa/pst-exa-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-exa -catalogue-date 2014-09-25 12:45:33 +0200 -catalogue-license lppl -catalogue-version 0.05 - -name pst-fill -category Package -revision 15878 -shortdesc Fill or tile areas with PSTricks. -relocated 1 -longdesc Pst-fill is a PSTricks-based package for filling and tiling -longdesc areas or characters. -runfiles size=5 - RELOC/tex/generic/pst-fill/pst-fill.tex - RELOC/tex/latex/pst-fill/pst-fill.sty -docfiles size=303 - RELOC/doc/generic/pst-fill/Changes - RELOC/doc/generic/pst-fill/README - RELOC/doc/generic/pst-fill/pst-fill.pdf -srcfiles size=20 - RELOC/source/generic/pst-fill/Makefile - RELOC/source/generic/pst-fill/pst-fill.dtx - RELOC/source/generic/pst-fill/pst-fill.ins -catalogue-ctan /graphics/pstricks/contrib/pst-fill -catalogue-date 2013-07-16 19:52:31 +0200 -catalogue-license lppl -catalogue-version 1.01 - -name pst-fit -category Package -revision 28155 -shortdesc Macros for curve fitting. -relocated 1 -longdesc The package uses PSTricks to fit curves to: Linear Functions; -longdesc Power Functions; exp Function; Log_{10} and Log_e functions; -longdesc Recip; Kings Law data; Gaussian; and 4th order Polynomial -runfiles size=10 - RELOC/tex/generic/pst-fit/pst-fit.tex - RELOC/tex/latex/pst-fit/pst-fit.sty -docfiles size=32 - RELOC/doc/generic/pst-fit/Changes - RELOC/doc/generic/pst-fit/README - RELOC/doc/generic/pst-fit/pst-fit-doc.bib - RELOC/doc/generic/pst-fit/pst-fit-doc.data - RELOC/doc/generic/pst-fit/pst-fit-doc.pdf - RELOC/doc/generic/pst-fit/pst-fit-doc.tex -srcfiles size=1 - RELOC/source/generic/pst-fit/Makefile -catalogue-ctan /graphics/pstricks/contrib/pst-fit -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.01 - -name pst-fr3d -category Package -revision 15878 -shortdesc Draw 3-dimensional framed boxes using PSTricks. -relocated 1 -longdesc A package using PSTricks to draw three dimensional framed boxes -longdesc using a macro \PstFrameBoxThreeD. The macro is especially -longdesc useful for drawing 3d-seeming buttons. -runfiles size=3 - RELOC/tex/generic/pst-fr3d/pst-fr3d.tex - RELOC/tex/latex/pst-fr3d/pst-fr3d.sty -docfiles size=50 - RELOC/doc/generic/pst-fr3d/Changes - RELOC/doc/generic/pst-fr3d/README - RELOC/doc/generic/pst-fr3d/pst-fr3d.pdf -srcfiles size=9 - RELOC/source/generic/pst-fr3d/pst-fr3d.dtx - RELOC/source/generic/pst-fr3d/pst-fr3d.ins -catalogue-ctan /graphics/pstricks/contrib/pst-fr3d -catalogue-date 2013-07-16 20:22:47 +0200 -catalogue-license lppl -catalogue-version 1.10 - -name pst-fractal -category Package -revision 16958 -shortdesc Draw fractal sets using PSTricks. -relocated 1 -longdesc The package uses PSTricks to draw the Julia and Mandelbrot -longdesc sets, the Sierpinski triangle, Koch flake, and Apollonius -longdesc Circle as well as fractal trees (which need not be balanced) -longdesc with a variety of different parameters (including varying -longdesc numbers of iterations). The package uses the pst-xkey package, -longdesc part of the xkeyval distribution. -runfiles size=7 - RELOC/dvips/pst-fractal/pst-fractal.pro - RELOC/tex/generic/pst-fractal/pst-fractal.tex - RELOC/tex/latex/pst-fractal/pst-fractal.sty -docfiles size=204 - RELOC/doc/generic/pst-fractal/Changes - RELOC/doc/generic/pst-fractal/README - RELOC/doc/generic/pst-fractal/pst-fractal-doc.bib - RELOC/doc/generic/pst-fractal/pst-fractal-doc.pdf - RELOC/doc/generic/pst-fractal/pst-fractal-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-fractal -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.06 - -name pst-func -category Package -revision 34441 -shortdesc PSTricks package for plotting mathematical functions. -relocated 1 -longdesc The package is built for use with PSTricks. It provides macros -longdesc for plotting and manipulating various mathematical functions: -longdesc polynomials and their derivatives f(x)=an*x^n+an-1*x^(n- -longdesc 1)+...+a0 defined by the coefficients a0 a1 a2 ... and the -longdesc derivative order; the Fourier sum f(x) = a0/2+a1cos(omega -longdesc x)+...+b1sin(omega x)+... defined by the coefficients a0 a1 a2 -longdesc ... b1 b2 b3 ...; the Bessel function defined by its order; the -longdesc Gauss function defined by sigma and mu; Bezier curves from -longdesc order 1 (two control points) to order 9 (10 control points); -longdesc the superellipse function (the Lame curve); Chebyshev -longdesc polynomials of the first and second kind; the Thomae (or -longdesc popcorn) function; the Weierstrass function; various -longdesc integration-derived functions; normal, binomial, poisson, -longdesc gamma, chi-squared, student's t, F, beta, Cauchy and Weibull -longdesc distribution functions and the Lorenz curve; the zeroes of a -longdesc function, or the intermediate point of two functions; the -longdesc Vasicek function for describing the evolution of interest -longdesc rates; and implicit functions. The plots may be generated as -longdesc volumes of rotation about the X-axis, as well. -runfiles size=17 - RELOC/dvips/pst-func/pst-func.pro - RELOC/tex/generic/pst-func/pst-func.tex - RELOC/tex/latex/pst-func/pst-func.sty -docfiles size=864 - RELOC/doc/generic/pst-func/Changes - RELOC/doc/generic/pst-func/README - RELOC/doc/generic/pst-func/pst-func-doc.bib - RELOC/doc/generic/pst-func/pst-func-doc.data - RELOC/doc/generic/pst-func/pst-func-doc.pdf - RELOC/doc/generic/pst-func/pst-func-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-func -catalogue-date 2014-05-22 17:35:02 +0200 -catalogue-license lppl -catalogue-version 0.81 - -name pst-fun -category Package -revision 17909 -shortdesc Draw "funny" objects with PSTricks. -relocated 1 -longdesc This is a PSTricks related package for drawing funny objects, -longdesc like ant, bird, fish, kangaroo, ... Such objects may be useful -longdesc for testing other PSTricks macros and/or packages. (Or they can -longdesc be used for fun...) -runfiles size=22 - RELOC/dvips/pst-fun/pst-fun.pro - RELOC/tex/generic/pst-fun/pst-fun.tex - RELOC/tex/latex/pst-fun/pst-fun.sty -docfiles size=105 - RELOC/doc/generic/pst-fun/Changes - RELOC/doc/generic/pst-fun/README - RELOC/doc/generic/pst-fun/pst-fun-doc.bib - RELOC/doc/generic/pst-fun/pst-fun-doc.pdf - RELOC/doc/generic/pst-fun/pst-fun-doc.tex -srcfiles size=1 - RELOC/source/generic/pst-fun/Makefile -catalogue-ctan /graphics/pstricks/contrib/pst-fun -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.04 - -name pst-gantt -category Package -revision 35832 -shortdesc Draw GANTT charts with pstricks. -relocated 1 -longdesc The package uses PSTricks to draw GANTT charts, which are a -longdesc kind of bar chart that displays a project schedule. The package -longdesc requires the pstricks apparatus, of course. -runfiles size=3 - RELOC/tex/generic/pst-gantt/pst-gantt.tex - RELOC/tex/latex/pst-gantt/pst-gantt.sty -docfiles size=35 - RELOC/doc/generic/pst-gantt/Changes - RELOC/doc/generic/pst-gantt/README - RELOC/doc/generic/pst-gantt/pst-gantt-doc.bib - RELOC/doc/generic/pst-gantt/pst-gantt-doc.pdf - RELOC/doc/generic/pst-gantt/pst-gantt-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-gantt -catalogue-date 2014-12-15 05:32:18 +0100 -catalogue-license lppl -catalogue-version 0.22a - -name pst-geo -category Package -revision 17751 -shortdesc Geographical Projections -relocated 1 -longdesc The package offers a set of PSTricks related packages for -longdesc various cartographic projections of the terrestrial sphere. The -longdesc package pst-map2d provides conventional projections such as -longdesc Mercator, Lambert, cylindrical, etc. The package pst-map3d -longdesc treats representation in three dimensions of the terrestrial -longdesc sphere. Packages pst-map2dII and pst-map3dII allow use of the -longdesc CIA World DataBank II. Various parameters of the packages allow -longdesc for choice of the level of the detail and the layouts possible -longdesc (cities, borders, rivers etc). Substantial data files are -longdesc provided, in an (internally) compressed format. Decompression -longdesc happens on-the-fly as a document using the data is displayed, -longdesc printed or converted to PDF format. A Perl script is provided -longdesc for the user to do the decompression, if the need should arise. -runfiles size=6042 - RELOC/dvips/pst-geo/pst-map3d.pro - RELOC/dvips/pst-geo/pst-map3dII.pro - RELOC/tex/generic/pst-geo/data/README - RELOC/tex/generic/pst-geo/data/aus.dat - RELOC/tex/generic/pst-geo/data/c-cap.dat - RELOC/tex/generic/pst-geo/data/c-sub.dat - RELOC/tex/generic/pst-geo/data/canada.dat - RELOC/tex/generic/pst-geo/data/capitales.tex - RELOC/tex/generic/pst-geo/data/capitales3d.tex - RELOC/tex/generic/pst-geo/data/capitals.dat - RELOC/tex/generic/pst-geo/data/cities.data - RELOC/tex/generic/pst-geo/data/cities.tex - RELOC/tex/generic/pst-geo/data/citycapitals.dat - RELOC/tex/generic/pst-geo/data/citysub.dat - RELOC/tex/generic/pst-geo/data/convert.py - RELOC/tex/generic/pst-geo/data/corse.dat - RELOC/tex/generic/pst-geo/data/france.dat - RELOC/tex/generic/pst-geo/data/mex.dat - RELOC/tex/generic/pst-geo/data/pborder.dat - RELOC/tex/generic/pst-geo/data/pcoast.dat - RELOC/tex/generic/pst-geo/data/pisland.dat - RELOC/tex/generic/pst-geo/data/plake.dat - RELOC/tex/generic/pst-geo/data/rhone.dat - RELOC/tex/generic/pst-geo/data/ridge.dat - RELOC/tex/generic/pst-geo/data/river.dat - RELOC/tex/generic/pst-geo/data/seine.dat - RELOC/tex/generic/pst-geo/data/transfrm.dat - RELOC/tex/generic/pst-geo/data/trench.dat - RELOC/tex/generic/pst-geo/data/usa.dat - RELOC/tex/generic/pst-geo/data/villesFrance.tex - RELOC/tex/generic/pst-geo/data/villesFrance3d.tex - RELOC/tex/generic/pst-geo/data/villesItalia.tex - RELOC/tex/generic/pst-geo/data/villesItalia3d.tex - RELOC/tex/generic/pst-geo/data/wfraczon.dat - RELOC/tex/generic/pst-geo/data/wmaglin.dat - RELOC/tex/generic/pst-geo/dataII/README - RELOC/tex/generic/pst-geo/dataII/africa-bdy.dat - RELOC/tex/generic/pst-geo/dataII/africa-cil.dat - RELOC/tex/generic/pst-geo/dataII/africa-riv.dat - RELOC/tex/generic/pst-geo/dataII/asia-bdy.dat - RELOC/tex/generic/pst-geo/dataII/asia-cil.dat - RELOC/tex/generic/pst-geo/dataII/asia-isl.dat - RELOC/tex/generic/pst-geo/dataII/asia-riv.dat - RELOC/tex/generic/pst-geo/dataII/c-cap.dat - RELOC/tex/generic/pst-geo/dataII/c-sub.dat - RELOC/tex/generic/pst-geo/dataII/citycapitals.dat - RELOC/tex/generic/pst-geo/dataII/citysub.dat - RELOC/tex/generic/pst-geo/dataII/europe-bdy.dat - RELOC/tex/generic/pst-geo/dataII/europe-cil.dat - RELOC/tex/generic/pst-geo/dataII/europe-riv.dat - RELOC/tex/generic/pst-geo/dataII/namer-bdy.dat - RELOC/tex/generic/pst-geo/dataII/namer-cil.dat - RELOC/tex/generic/pst-geo/dataII/namer-pby.dat - RELOC/tex/generic/pst-geo/dataII/namer-riv.dat - RELOC/tex/generic/pst-geo/dataII/samer-arc.dat - RELOC/tex/generic/pst-geo/dataII/samer-bdy.dat - RELOC/tex/generic/pst-geo/dataII/samer-cil.dat - RELOC/tex/generic/pst-geo/dataII/samer-riv.dat - RELOC/tex/generic/pst-geo/pst-map2d.tex - RELOC/tex/generic/pst-geo/pst-map2dII.tex - RELOC/tex/generic/pst-geo/pst-map3d.tex - RELOC/tex/generic/pst-geo/pst-map3dII.tex - RELOC/tex/latex/pst-geo/pst-map2d.sty - RELOC/tex/latex/pst-geo/pst-map2dII.sty - RELOC/tex/latex/pst-geo/pst-map3d.sty - RELOC/tex/latex/pst-geo/pst-map3dII.sty -docfiles size=1202 - RELOC/doc/generic/pst-geo/Changes - RELOC/doc/generic/pst-geo/PSTricks.bib - RELOC/doc/generic/pst-geo/README - RELOC/doc/generic/pst-geo/pst-geo-compress.pl - RELOC/doc/generic/pst-geo/pst-geo-decompress.pl - RELOC/doc/generic/pst-geo/pst-map2d-doc.pdf - RELOC/doc/generic/pst-geo/pst-map2d-doc.tex - RELOC/doc/generic/pst-geo/pst-map2dII-doc.pdf - RELOC/doc/generic/pst-geo/pst-map2dII-doc.tex - RELOC/doc/generic/pst-geo/pst-map3d-doc-pdf.pdf - RELOC/doc/generic/pst-geo/pst-map3d-doc-pdf.tex - RELOC/doc/generic/pst-geo/pst-map3d-doc.pdf - RELOC/doc/generic/pst-geo/pst-map3d-doc.tex - RELOC/doc/generic/pst-geo/pst-map3dII-doc.pdf - RELOC/doc/generic/pst-geo/pst-map3dII-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-geo -catalogue-date 2013-12-02 16:58:07 +0100 -catalogue-license lppl -catalogue-version 2.03 - -name pst-ghsb -category Package -revision 15878 -relocated 1 -runfiles size=4 - RELOC/dvips/pst-ghsb/pst-ghsb.pro - RELOC/tex/generic/pst-ghsb/pst-ghsb.tex - RELOC/tex/latex/pst-ghsb/pst-ghsb.sty -docfiles size=26 - RELOC/doc/generic/pst-ghsb/README - RELOC/doc/generic/pst-ghsb/t-ghsb.pdf - RELOC/doc/generic/pst-ghsb/t-ghsb.tex - RELOC/doc/generic/pst-ghsb/t2-ghsb.pdf - RELOC/doc/generic/pst-ghsb/t2-ghsb.tex - -name pst-gr3d -category Package -revision 15878 -shortdesc Three dimensional grids with PSTricks. -relocated 1 -longdesc This PSTricks package provides a command \PstGridThreeD that -longdesc will draw a three dimensional grid, offering a number of -longdesc options for its appearance. -runfiles size=3 - RELOC/tex/generic/pst-gr3d/pst-gr3d.tex - RELOC/tex/latex/pst-gr3d/pst-gr3d.sty -docfiles size=48 - RELOC/doc/generic/pst-gr3d/Changes - RELOC/doc/generic/pst-gr3d/README - RELOC/doc/generic/pst-gr3d/pst-gr3d.pdf -srcfiles size=9 - RELOC/source/latex/pst-gr3d/pst-gr3d.dtx - RELOC/source/latex/pst-gr3d/pst-gr3d.ins -catalogue-ctan /graphics/pstricks/contrib/pst-gr3d -catalogue-date 2013-07-16 20:34:34 +0200 -catalogue-license lppl -catalogue-version 1.34 - -name pst-grad -category Package -revision 15878 -shortdesc Filling with colour gradients, using PStricks. -relocated 1 -longdesc The package fills with colour gradients, using PSTricks. The -longdesc RGB, CMYK and HSB models are supported. Other colour gradient -longdesc mechanisms are to be found in package pst-slpe. -runfiles size=5 - RELOC/dvips/pst-grad/pst-grad.pro - RELOC/tex/generic/pst-grad/pst-grad.tex - RELOC/tex/latex/pst-grad/pst-grad.sty -docfiles size=69 - RELOC/doc/generic/pst-grad/Changes - RELOC/doc/generic/pst-grad/pst-grad-doc.bib - RELOC/doc/generic/pst-grad/pst-grad-doc.pdf - RELOC/doc/generic/pst-grad/pst-grad-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-grad -catalogue-date 2013-07-16 20:34:34 +0200 -catalogue-license lppl -catalogue-version 1.06 - -name pst-graphicx -category Package -revision 21717 -shortdesc A pstricks-compatible graphicx for use with Plain TeX. -relocated 1 -longdesc The package provides a version of graphicx that avoids loading -longdesc the graphics bundle's (original) keyval package, which clashes -longdesc with pstricks' use of xkeyval. -runfiles size=1 - RELOC/tex/generic/pst-graphicx/pst-graphicx.tex -docfiles size=3 - RELOC/doc/generic/pst-graphicx/Changes - RELOC/doc/generic/pst-graphicx/README - RELOC/doc/generic/pst-graphicx/demo.tex -catalogue-ctan /graphics/pstricks/contrib/pst-graphicx -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.02 - -name pst-infixplot -category Package -revision 15878 -shortdesc Using pstricks plotting capacities with infix expressions rather than RPN -relocated 1 -longdesc Plotting functions with pst-plot is very powerful but sometimes -longdesc difficult to learn since the syntax of \psplot and -longdesc \parametricplot requires some PostScript knowledge. The infix- -longdesc RPN and pst-infixplot styles simplify the usage of pst-plot for -longdesc the beginner, providing macro commands that convert natural -longdesc mathematical expressions to PostScript syntax. -runfiles size=7 - RELOC/tex/generic/pst-infixplot/infix-RPN.tex - RELOC/tex/generic/pst-infixplot/pst-infixplot.tex - RELOC/tex/latex/pst-infixplot/infix-RPN.sty - RELOC/tex/latex/pst-infixplot/pst-infixplot.sty -docfiles size=84 - RELOC/doc/generic/pst-infixplot/README - RELOC/doc/generic/pst-infixplot/pst-infixplot-doc.ps - RELOC/doc/generic/pst-infixplot/pst-infixplot-doc.tex - RELOC/doc/generic/pst-infixplot/pst-infixplot.pdf -catalogue-ctan /graphics/pstricks/contrib/pst-infixplot -catalogue-date 2013-07-16 20:34:34 +0200 -catalogue-license lppl -catalogue-version 0.11 - -name pst-intersect -category Package -revision 33210 -shortdesc Compute intersections of arbitrary curves -relocated 1 -longdesc The package computes the intersections between arbitrary -longdesc Postscript paths or Bezier curves, using the Bezier clipping -longdesc algorithm. -runfiles size=12 - RELOC/dvips/pst-intersect/pst-intersect.pro - RELOC/tex/generic/pst-intersect/pst-intersect.tex - RELOC/tex/latex/pst-intersect/pst-intersect.sty -docfiles size=60 - RELOC/doc/latex/pst-intersect/Changes - RELOC/doc/latex/pst-intersect/README - RELOC/doc/latex/pst-intersect/pst-intersect-DE.pdf - RELOC/doc/latex/pst-intersect/pst-intersect.pdf -srcfiles size=29 - RELOC/source/latex/pst-intersect/Makefile - RELOC/source/latex/pst-intersect/pst-intersect.dtx - RELOC/source/latex/pst-intersect/pst-intersect.ins -catalogue-ctan /graphics/pstricks/contrib/pst-intersect -catalogue-date 2014-03-17 08:20:02 +0100 -catalogue-license lppl -catalogue-version 0.4 - -name pst-jtree -category Package -revision 20946 -shortdesc Typeset complex trees for linguists. -relocated 1 -longdesc jTree uses PStricks to enable linguists to typeset complex -longdesc trees. The package requires use of PStricks (of course) and -longdesc xkeyval packages. jTree is a development of, and replacement -longdesc for, the jftree package, which is no longer available. -runfiles size=7 - RELOC/tex/generic/pst-jtree/pst-jtree.tex - RELOC/tex/latex/pst-jtree/pst-jtree.sty -docfiles size=89 - RELOC/doc/generic/pst-jtree/Doc-source.zip - RELOC/doc/generic/pst-jtree/README - RELOC/doc/generic/pst-jtree/pst-jtree-doc-add.pdf - RELOC/doc/generic/pst-jtree/pst-jtree-doc.pdf - RELOC/doc/generic/pst-jtree/pst-jtree-examples.tex -catalogue-ctan /graphics/pstricks/contrib/pst-jtree -catalogue-date 2012-08-25 14:37:30 +0200 -catalogue-license lppl1.3 -catalogue-version 2.6 - -name pst-knot -category Package -revision 16033 -shortdesc PSTricks package for displaying knots. -relocated 1 -longdesc The package can produce a fair range of knot shapes, with all -longdesc the standard graphics controls one expects. -runfiles size=15 - RELOC/dvips/pst-knot/pst-psm.pro - RELOC/tex/generic/pst-knot/pst-knot.tex - RELOC/tex/latex/pst-knot/pst-knot.sty -docfiles size=22 - RELOC/doc/generic/pst-knot/Changes - RELOC/doc/generic/pst-knot/README - RELOC/doc/generic/pst-knot/pst-knot-doc.pdf - RELOC/doc/generic/pst-knot/pst-knot-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-knot -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.2 - -name pst-labo -category Package -revision 15878 -shortdesc Draw objects for Chemistry laboratories. -relocated 1 -longdesc Pst-labo is a PSTricks related package for drawing basic and -longdesc complex chemical objects. The documentation of the package is -longdesc illuminated with plenty of illustrations together with their -longdesc source code, making it an easy read. -runfiles size=13 - RELOC/tex/generic/pst-labo/pst-labo.tex - RELOC/tex/generic/pst-labo/pst-laboObj.tex - RELOC/tex/latex/pst-labo/pst-labo.sty -docfiles size=883 - RELOC/doc/generic/pst-labo/Changes - RELOC/doc/generic/pst-labo/README - RELOC/doc/generic/pst-labo/pst-labo-doc.bib - RELOC/doc/generic/pst-labo/pst-labo-docDE.ltx - RELOC/doc/generic/pst-labo/pst-labo-docDE.pdf - RELOC/doc/generic/pst-labo/pst-labo-docDE.tex - RELOC/doc/generic/pst-labo/pst-labo-docEN.ltx - RELOC/doc/generic/pst-labo/pst-labo-docEN.pdf - RELOC/doc/generic/pst-labo/pst-labo-docEN.tex - RELOC/doc/generic/pst-labo/pst-labo-docFR.ltx - RELOC/doc/generic/pst-labo/pst-labo-docFR.pdf - RELOC/doc/generic/pst-labo/pst-labo-docFR.tex - RELOC/doc/generic/pst-labo/pstlabo8-tab1-DE.tex - RELOC/doc/generic/pst-labo/pstlabo8-tab1-EN.tex - RELOC/doc/generic/pst-labo/pstlabo8-tab1-FR.tex -catalogue-ctan /graphics/pstricks/contrib/pst-labo -catalogue-date 2011-09-27 20:18:06 +0200 -catalogue-license lppl -catalogue-version 2.03 - -name pst-layout -category Package -revision 29803 -shortdesc Page layout macros based on PStricks packages. -relocated 1 -longdesc The package provides a means of creating elaborate ("pseudo- -longdesc tabular") layouts of material, typically to be overlaid on an -longdesc included graphic. The package requires a recent version of the -longdesc package pst-node and some other pstricks-related material. -runfiles size=3 - RELOC/tex/latex/pst-layout/pst-layout.sty -docfiles size=29 - RELOC/doc/latex/pst-layout/README - RELOC/doc/latex/pst-layout/pst-layout-doc.pdf - RELOC/doc/latex/pst-layout/pst-layout-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-layout -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 95 - -name pst-lens -category Package -revision 15878 -shortdesc Lenses with PSTricks. -relocated 1 -longdesc This PSTricks package provides a really rather simple command -longdesc \PstLens that will draw a lens. Command parameters provide a -longdesc remarkable range of effects. -runfiles size=2 - RELOC/tex/generic/pst-lens/pst-lens.tex - RELOC/tex/latex/pst-lens/pst-lens.sty -docfiles size=122 - RELOC/doc/generic/pst-lens/Changes - RELOC/doc/generic/pst-lens/README - RELOC/doc/generic/pst-lens/pst-lens.pdf -srcfiles size=11 - RELOC/source/generic/pst-lens/pst-lens.dtx - RELOC/source/generic/pst-lens/pst-lens.ins -catalogue-ctan /graphics/pstricks/contrib/pst-lens -catalogue-date 2012-08-25 14:37:30 +0200 -catalogue-license lppl -catalogue-version 1.02 - -name pst-light3d -category Package -revision 15878 -shortdesc Three dimensional lighting effects (PSTricks). -relocated 1 -longdesc A PSTricks package for three dimensional lighting effects on -longdesc characters and PSTricks graphics, like lines, curves, plots, -longdesc ... -runfiles size=3 - RELOC/dvips/pst-light3d/pst-light3d.pro - RELOC/tex/generic/pst-light3d/pst-light3d.tex - RELOC/tex/latex/pst-light3d/pst-light3d.sty -docfiles size=215 - RELOC/doc/generic/pst-light3d/Changes - RELOC/doc/generic/pst-light3d/README - RELOC/doc/generic/pst-light3d/pst-light3d-doc.bib - RELOC/doc/generic/pst-light3d/pst-light3d-doc.pdf - RELOC/doc/generic/pst-light3d/pst-light3d-doc.tex -srcfiles size=1 - RELOC/source/generic/pst-light3d/Makefile -catalogue-ctan /graphics/pstricks/contrib/pst-light3d -catalogue-date 2012-08-25 14:43:44 +0200 -catalogue-license lppl -catalogue-version 0.12 - -name pst-magneticfield -category Package -revision 18922 -shortdesc Plotting a magnetic field with PSTricks. -relocated 1 -longdesc pst-magneticfield is a PSTricks related package to draw the -longdesc magnetic field lines of Helmholtz coils in a two or three -longdesc dimensional view. There are several parameters to create a -longdesc different output. For more informations or some examples read -longdesc the documentation of the package. -runfiles size=5 - RELOC/dvips/pst-magneticfield/pst-magneticfield.pro - RELOC/tex/generic/pst-magneticfield/pst-magneticfield.tex - RELOC/tex/latex/pst-magneticfield/pst-magneticfield.sty -docfiles size=1451 - RELOC/doc/generic/pst-magneticfield/Changes - RELOC/doc/generic/pst-magneticfield/README - RELOC/doc/generic/pst-magneticfield/pst-magneticfield-doc.bib - RELOC/doc/generic/pst-magneticfield/pst-magneticfield-docDE.pdf - RELOC/doc/generic/pst-magneticfield/pst-magneticfield-docDE.tex - RELOC/doc/generic/pst-magneticfield/pst-magneticfield-docEN.pdf - RELOC/doc/generic/pst-magneticfield/pst-magneticfield-docEN.tex - RELOC/doc/generic/pst-magneticfield/pst-magneticfield-docFR.pdf - RELOC/doc/generic/pst-magneticfield/pst-magneticfield-docFR.tex -srcfiles size=1 - RELOC/source/generic/pst-magneticfield/Makefile -catalogue-ctan /graphics/pstricks/contrib/pst-magneticfield -catalogue-date 2012-08-25 14:37:30 +0200 -catalogue-license lppl -catalogue-version 1.13 - -name pst-math -category Package -revision 34786 -shortdesc Enhancement of PostScript math operators to use with pstricks -relocated 1 -longdesc PostScript lacks a lot of basic operators such as tan, acos, -longdesc asin, cosh, sinh, tanh, acosh, asinh, atanh, exp (with e base). -longdesc Also (oddly) cos and sin use arguments in degrees. Pst-math -longdesc provides all those operators in a header file pst-math.pro with -longdesc wrappers pst-math.sty and pst-math.tex. In addition, sinc, -longdesc gauss, gammaln and bessel are implemented (only partially for -longdesc the latter). The package is designed essentially to work with -longdesc pst-plot but can be used in whatever PS code (such as pstricks -longdesc SpecialCoor "!", which is useful for placing labels). The -longdesc package also provides a routine SIMPSON for numerical -longdesc integration and a solver of linear equation systems. -runfiles size=5 - RELOC/dvips/pst-math/pst-math.pro - RELOC/tex/generic/pst-math/pst-math.tex - RELOC/tex/latex/pst-math/pst-math.sty -docfiles size=60 - RELOC/doc/generic/pst-math/Changes - RELOC/doc/generic/pst-math/README - RELOC/doc/generic/pst-math/pst-math-doc.bib - RELOC/doc/generic/pst-math/pst-math-doc.pdf - RELOC/doc/generic/pst-math/pst-math-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-math -catalogue-date 2014-07-30 12:23:06 +0200 -catalogue-license lppl -catalogue-version 0.63 - -name pst-mirror -category Package -revision 32997 -shortdesc Images on a spherical mirror. -relocated 1 -longdesc The package provides commands and supporting PostScript -longdesc material for drawing images as if reflected by a spherical -longdesc mirror. -runfiles size=21 - RELOC/dvips/pst-mirror/pst-mirror.pro - RELOC/tex/generic/pst-mirror/pst-mirror.tex - RELOC/tex/latex/pst-mirror/pst-mirror.sty -docfiles size=1749 - RELOC/doc/generic/pst-mirror/Changes - RELOC/doc/generic/pst-mirror/README - RELOC/doc/generic/pst-mirror/createEPS/make.sh - RELOC/doc/generic/pst-mirror/createEPS/script.readme - RELOC/doc/generic/pst-mirror/createEPS/scripts/filtre.pl - RELOC/doc/generic/pst-mirror/createEPS/test.pdf - RELOC/doc/generic/pst-mirror/createEPS/test.sh - RELOC/doc/generic/pst-mirror/createEPS/test.tex - RELOC/doc/generic/pst-mirror/createEPS/xa.eps - RELOC/doc/generic/pst-mirror/createEPS/xa.tex - RELOC/doc/generic/pst-mirror/createEPS/xb.eps - RELOC/doc/generic/pst-mirror/createEPS/xc.eps - RELOC/doc/generic/pst-mirror/pst-mirror-doc.bib - RELOC/doc/generic/pst-mirror/pst-mirror-doc.pdf - RELOC/doc/generic/pst-mirror/pst-mirror-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-mirror -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.01 - -name pst-node -category Package -revision 34856 -shortdesc Nodes and node connections in pstricks. -relocated 1 -longdesc The package enables the user to connect information, and to -longdesc place labels, without knowing (in advance) the actual positions -longdesc of the items to be connected, or where the connecting line -longdesc should go. The macros are useful for making graphs and trees, -longdesc mathematical diagrams, linguistic syntax diagrams, and so on. -longdesc The package contents were previously distributed as a part of -longdesc the pstricks base distribution; the package serves as an -longdesc extension to PSTricks. -runfiles size=28 - RELOC/dvips/pst-node/pst-node.pro - RELOC/dvips/pst-node/pst-node97.pro - RELOC/tex/generic/pst-node/pst-node.tex - RELOC/tex/generic/pst-node/pst-node97.tex - RELOC/tex/latex/pst-node/pst-node.sty -docfiles size=219 - RELOC/doc/generic/pst-node/Changes - RELOC/doc/generic/pst-node/README - RELOC/doc/generic/pst-node/psmatrix-docDE.bib - RELOC/doc/generic/pst-node/psmatrix-docDE.pdf - RELOC/doc/generic/pst-node/psmatrix-docDE.tex - RELOC/doc/generic/pst-node/pst-node-doc.bib - RELOC/doc/generic/pst-node/pst-node-doc.pdf - RELOC/doc/generic/pst-node/pst-node-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-node -catalogue-date 2014-08-05 17:15:28 +0200 -catalogue-license lppl -catalogue-version 1.35 - -name pst-ob3d -category Package -revision 15878 -shortdesc Three dimensional objects using PSTricks. -relocated 1 -longdesc The package uses PSTricks to provide basic three-dimensional -longdesc objects. As yet, only cubes (which can be deformed to -longdesc rectangular parallelipipeds) and dies (which are only a special -longdesc kind of cubes) are defined. -runfiles size=4 - RELOC/tex/generic/pst-ob3d/pst-ob3d.tex - RELOC/tex/latex/pst-ob3d/pst-ob3d.sty -docfiles size=50 - RELOC/doc/generic/pst-ob3d/Changes - RELOC/doc/generic/pst-ob3d/README - RELOC/doc/generic/pst-ob3d/pst-ob3d.pdf -srcfiles size=13 - RELOC/source/generic/pst-ob3d/Makefile - RELOC/source/generic/pst-ob3d/pst-ob3d.dtx - RELOC/source/generic/pst-ob3d/pst-ob3d.ins -catalogue-ctan /graphics/pstricks/contrib/pst-ob3d -catalogue-date 2012-06-18 13:20:48 +0200 -catalogue-license lppl -catalogue-version 0.21 - -name pst-ode -category Package -revision 35418 -shortdesc Solving initial value problems for sets of Ordinary Differential Equations. -relocated 1 -longdesc The package defines \pstODEsolve for solving initial value -longdesc problems for sets of Ordinary Differential Equations (ODE) -longdesc using the Runge-Kutta-Fehlberg (RKF45) method with automatic -longdesc step size adjustment. The result is stored as a PostScript -longdesc object and may be plotted later using macros from other -longdesc PSTricks packages, such as \listplot (pst-plot) and -longdesc \listplotThreeD (pst-3dplot), or may be further processed by -longdesc user-defined PostScript procedures. Optionally, the computed -longdesc state vectors can be written as a table to a text file. -runfiles size=6 - RELOC/dvips/pst-ode/pst-ode.pro - RELOC/tex/generic/pst-ode/pst-ode.tex - RELOC/tex/latex/pst-ode/pst-ode.sty -docfiles size=39 - RELOC/doc/generic/pst-ode/ChangeLog - RELOC/doc/generic/pst-ode/README - RELOC/doc/generic/pst-ode/pst-ode-doc.pdf - RELOC/doc/generic/pst-ode/pst-ode-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-ode -catalogue-date 2014-10-20 15:55:51 +0200 -catalogue-license lppl -catalogue-version 0.7 - -name pstools -category TLCore -revision 37078 -catalogue ps2eps -shortdesc Produce Encapsulated PostScript from PostScript. -longdesc Produce Encapsulated PostScript Files (EPS/EPSF) from a one- -longdesc page PostScript document, or any PostScript document. A correct -longdesc Bounding Box is calculated for the EPS files and some -longdesc PostScript command sequences that can produce errorneous -longdesc results on printers are filtered. The input is cropped to -longdesc include just the image contained in the PostScript file. The -longdesc EPS files can then be included into TeX documents. Other -longdesc programs like ps2epsi (a script distributed with ghostscript) -longdesc don't always calculate the correct bounding box (because the -longdesc values are put on the PostScript stack which may get corrupted -longdesc by bad PostScript code) or they round it off, resulting in -longdesc clipping the image. Therefore ps2eps uses a resolution of 144 -longdesc dpi to get the correct bounding box. The bundle includes -longdesc binaries for Linux, Solaris, Digital Unix or Windows -longdesc 2000/9x/NT; for other platforms, the user needs perl, -longdesc ghostscript and an ANSI-C compiler. Included in the -longdesc distribution is the bbox program, an application to produce -longdesc Bounding Box values for rawppm or rawpbm format files. -depend pstools.ARCH -runfiles size=11 - texmf-dist/scripts/ps2eps/ps2eps.pl - texmf-dist/scripts/texlive/ps2frag.sh - texmf-dist/scripts/texlive/pslatex.sh -docfiles size=20 - texmf-dist/doc/man/man1/bbox.1 - texmf-dist/doc/man/man1/bbox.man1.pdf - texmf-dist/doc/man/man1/ps2eps.1 - texmf-dist/doc/man/man1/ps2eps.man1.pdf - texmf-dist/doc/man/man1/ps2frag.1 - texmf-dist/doc/man/man1/ps2frag.man1.pdf - texmf-dist/doc/man/man1/pslatex.1 - texmf-dist/doc/man/man1/pslatex.man1.pdf -catalogue-ctan /support/ps2eps -catalogue-date 2012-07-20 20:39:39 +0200 -catalogue-license gpl -catalogue-version 1.68 - -name pstools.i386-linux -category TLCore -revision 36790 -shortdesc i386-linux files of pstools -binfiles arch=i386-linux size=6 - bin/i386-linux/bbox - bin/i386-linux/ps2eps - bin/i386-linux/ps2frag - bin/i386-linux/pslatex - -name pstool -category Package -revision 34015 -shortdesc Support for psfrag within pdfLaTeX. -relocated 1 -longdesc The package works in the same sort of way as pst-pdf, but it -longdesc also processes the PostScript graphics with psfrag to add -longdesc labels within the graphic, before conversion. Thus the bundle -longdesc replaces two steps of an ordinary workflow. (Naturally, the -longdesc package requires that \write 18 is enabled.) Pstool ensures -longdesc that each version of each graphic is compiled once only (the -longdesc graphic is (re-)compiled only if it has changed since the -longdesc previous compilation of the document). This drastically speeds -longdesc up the running of the package in the typical case (though the -longdesc first run of any document is inevitably just as slow as with -longdesc any similar package). -runfiles size=5 - RELOC/tex/latex/pstool/pstool.sty -docfiles size=123 - RELOC/doc/latex/pstool/README - RELOC/doc/latex/pstool/example-pstool.tex - RELOC/doc/latex/pstool/example.tex - RELOC/doc/latex/pstool/macros.tex - RELOC/doc/latex/pstool/pstool.pdf - RELOC/doc/latex/pstool/subdir/trial2-psfrag.eps - RELOC/doc/latex/pstool/subdir/trial2-psfrag.tex - RELOC/doc/latex/pstool/trial.eps - RELOC/doc/latex/pstool/trial.tex - RELOC/doc/latex/pstool/trial2.eps - RELOC/doc/latex/pstool/trial2.tex -srcfiles size=13 - RELOC/source/latex/pstool/pstool.ins - RELOC/source/latex/pstool/pstool.tex -catalogue-ctan /macros/latex/contrib/pstool -catalogue-date 2014-05-11 12:42:16 +0200 -catalogue-license lppl -catalogue-version 1.5c - -name pst-optexp -category Package -revision 35673 -shortdesc Drawing optical experimental setups. -relocated 1 -longdesc The package is a collection of optical components that -longdesc facilitate easy sketching of optical experimental setups. The -longdesc package uses PSTricks for its output. A wide range of free-ray -longdesc and fibre components is provided, the alignment, positioning -longdesc and labelling of which can be achieved in very simple and -longdesc flexible ways. The components may be connected with fibers or -longdesc beams, and realistic raytraced beam paths are also possible. -runfiles size=59 - RELOC/dvips/pst-optexp/pst-optexp.pro - RELOC/makeindex/pst-optexp/pst-optexp.ist - RELOC/tex/latex/pst-optexp/pst-optexp.sty -docfiles size=1503 - RELOC/doc/latex/pst-optexp/Changes - RELOC/doc/latex/pst-optexp/Makefile - RELOC/doc/latex/pst-optexp/README - RELOC/doc/latex/pst-optexp/pst-optexp-DE.pdf - RELOC/doc/latex/pst-optexp/pst-optexp-quickref.pdf - RELOC/doc/latex/pst-optexp/pst-optexp.pdf -srcfiles size=204 - RELOC/source/latex/pst-optexp/pst-optexp.dtx - RELOC/source/latex/pst-optexp/pst-optexp.ins -catalogue-ctan /graphics/pstricks/contrib/pst-optexp -catalogue-date 2014-11-27 18:15:14 +0100 -catalogue-license lppl1.3 -catalogue-version 5.2 - -name pst-optic -category Package -revision 19704 -shortdesc Drawing optics diagrams. -relocated 1 -longdesc A package for drawing both reflective and refractive optics -longdesc diagrams. The package requires pstricks later than version -longdesc 1.10. -runfiles size=19 - RELOC/tex/generic/pst-optic/pst-optic.tex - RELOC/tex/latex/pst-optic/pst-optic.sty -docfiles size=244 - RELOC/doc/generic/pst-optic/Changes - RELOC/doc/generic/pst-optic/README - RELOC/doc/generic/pst-optic/more_docs/dtk.pdf - RELOC/doc/generic/pst-optic/more_docs/pst-optic-examples.pdf - RELOC/doc/generic/pst-optic/more_docs/pst-optic-examples.tex - RELOC/doc/generic/pst-optic/pst-optic-doc.bib - RELOC/doc/generic/pst-optic/pst-optic-doc.pdf - RELOC/doc/generic/pst-optic/pst-optic-doc.tex -srcfiles size=1 - RELOC/source/generic/pst-optic/Makefile -catalogue-ctan /graphics/pstricks/contrib/pst-optic -catalogue-date 2012-06-18 13:20:48 +0200 -catalogue-license lppl -catalogue-version 1.01 - -name pst-osci -category Package -revision 15878 -shortdesc Oscgons with PSTricks. -relocated 1 -longdesc pst-osci is a PSTricks package enables you to produce -longdesc oscilloscope "screen shots". Three channels can be used to -longdesc represent the most common signals (damped or not): namely -longdesc sinusoidal, rectangular, triangular, dog's tooth (left and -longdesc right oriented). The third channel allows you to add, to -longdesc subtract or to multiply the two other signals. Lissajous -longdesc diagrams (XY-mode) can also be obtained. -runfiles size=5 - RELOC/tex/generic/pst-osci/pst-osci.tex - RELOC/tex/latex/pst-osci/pst-osci.sty -docfiles size=344 - RELOC/doc/generic/pst-osci/Changes - RELOC/doc/generic/pst-osci/README - RELOC/doc/generic/pst-osci/oscilloscope.pdf - RELOC/doc/generic/pst-osci/oscilloscope.tex - RELOC/doc/generic/pst-osci/pst-osci-doc.pdf - RELOC/doc/generic/pst-osci/pst-osci-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-osci -catalogue-date 2012-05-30 14:49:05 +0200 -catalogue-license lppl -catalogue-version 2.82 - -name pst-ovl -category Package -revision 34033 -shortdesc Create and manage graphical overlays. -relocated 1 -longdesc The package is useful when building an image from assorted -longdesc material, as in the slides of a projected presentation. The -longdesc package requires pstricks, and shares that package's -longdesc restrictions on usage when generating PDF output. -runfiles size=3 - RELOC/dvips/pst-ovl/pst-ovl.pro - RELOC/tex/generic/pst-ovl/pst-ovl.tex - RELOC/tex/latex/pst-ovl/pst-ovl.sty -docfiles size=17 - RELOC/doc/generic/pst-ovl/Changes - RELOC/doc/generic/pst-ovl/README - RELOC/doc/generic/pst-ovl/pst-ovl-doc.bib - RELOC/doc/generic/pst-ovl/pst-ovl-doc.pdf - RELOC/doc/generic/pst-ovl/pst-ovl-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-ovl -catalogue-date 2014-05-13 21:58:12 +0200 -catalogue-license lppl -catalogue-version 0.06 - -name pst-pad -category Package -revision 15878 -shortdesc Draw simple attachment systems with PSTricks. -relocated 1 -longdesc The package collects a set of graphical elements based on -longdesc PStricks that can be used to facilitate display of attachment -longdesc systems such as two differently shaped surfaces with or without -longdesc a fluid wedged in between. These macros ease the display of wet -longdesc adhesion models and common friction systems such as boundary -longdesc lubrication, elastohydrodynamic lubrication and hydrodynamic -longdesc lubrication. -runfiles size=6 - RELOC/tex/generic/pst-pad/pst-pad.tex - RELOC/tex/latex/pst-pad/pst-pad.sty -docfiles size=61 - RELOC/doc/generic/pst-pad/CHANGES - RELOC/doc/generic/pst-pad/README - RELOC/doc/generic/pst-pad/pst-pad-doc-header.tex - RELOC/doc/generic/pst-pad/pst-pad-doc.pdf - RELOC/doc/generic/pst-pad/pst-pad-doc.tex - RELOC/doc/generic/pst-pad/pst-pad-docDE.pdf - RELOC/doc/generic/pst-pad/pst-pad-docDE.tex - RELOC/doc/generic/pst-pad/showexpl.cfg -srcfiles size=1 - RELOC/source/generic/pst-pad/Makefile -catalogue-ctan /graphics/pstricks/contrib/pst-pad -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.3b - -name pst-pdf -category Package -revision 31660 -shortdesc Make PDF versions of graphics by processing between runs. -longdesc The package pst-pdf simplifies the use of graphics from -longdesc PSTricks and other PostScript code in PDF documents. As in -longdesc building a bibliography with BibTEX, additional external -longdesc programmes are invoked. In this case they are used to create a -longdesc PDF file (\PDFcontainer) that will contain all the graphics -longdesc material. In the final document these contents will be inserted -longdesc instead of the original PostScript code. The package works with -longdesc pstricks and requires a recent version of the preview package. -depend pst-pdf.ARCH -runfiles size=9 - texmf-dist/scripts/pst-pdf/ps4pdf - texmf-dist/scripts/pst-pdf/ps4pdf.bat - texmf-dist/scripts/pst-pdf/ps4pdf.bat.noMiKTeX - texmf-dist/scripts/pst-pdf/ps4pdf.bat.w95 - texmf-dist/tex/latex/pst-pdf/pst-pdf.sty -docfiles size=379 - texmf-dist/doc/latex/pst-pdf/CHANGES - texmf-dist/doc/latex/pst-pdf/README - texmf-dist/doc/latex/pst-pdf/pst-pdf-DE.pdf - texmf-dist/doc/latex/pst-pdf/pst-pdf-example1.pdf - texmf-dist/doc/latex/pst-pdf/pst-pdf-example1.tex - texmf-dist/doc/latex/pst-pdf/pst-pdf-example2.pdf - texmf-dist/doc/latex/pst-pdf/pst-pdf-example2.tex - texmf-dist/doc/latex/pst-pdf/pst-pdf.pdf -srcfiles size=149 - texmf-dist/source/latex/pst-pdf/CHANGES.tex - texmf-dist/source/latex/pst-pdf/elephant.ps - texmf-dist/source/latex/pst-pdf/insect1.eps - texmf-dist/source/latex/pst-pdf/insect15.eps - texmf-dist/source/latex/pst-pdf/knuth.png - texmf-dist/source/latex/pst-pdf/penguin.eps - texmf-dist/source/latex/pst-pdf/psf-demo.eps - texmf-dist/source/latex/pst-pdf/pst-pdf.dtx - texmf-dist/source/latex/pst-pdf/pst-pdf.ins -catalogue-ctan /macros/latex/contrib/pst-pdf -catalogue-date 2012-06-18 13:20:48 +0200 -catalogue-license lppl -catalogue-version 1.1v - -name pst-pdf.i386-linux -category Package -revision 7838 -shortdesc i386-linux files of pst-pdf -binfiles arch=i386-linux size=1 - bin/i386-linux/ps4pdf - -name pst-pdgr -category Package -revision 15878 -shortdesc Draw medical pedigrees using pstricks. -relocated 1 -longdesc The package provides a set of macros based on PSTricks to draw -longdesc medical pedigrees according to the recommendations for -longdesc standardized human pedigree nomenclature. The drawing commands -longdesc place the symbols on a pspicture canvas. An interface for -longdesc making trees is also provided. The package may be used both -longdesc with LaTeX and PlainTeX. A separate Perl program for generating -longdesc TeX files from spreadsheets is available. -runfiles size=5 - RELOC/tex/generic/pst-pdgr/pst-pdgr.tex - RELOC/tex/latex/pst-pdgr/pst-pdgr.cfg - RELOC/tex/latex/pst-pdgr/pst-pdgr.sty -docfiles size=51 - RELOC/doc/generic/pst-pdgr/NEWS - RELOC/doc/generic/pst-pdgr/README - RELOC/doc/generic/pst-pdgr/pst-pdgr.bib - RELOC/doc/generic/pst-pdgr/pst-pdgr.pdf -srcfiles size=22 - RELOC/source/generic/pst-pdgr/Makefile - RELOC/source/generic/pst-pdgr/pst-pdgr.dtx - RELOC/source/generic/pst-pdgr/pst-pdgr.ins -catalogue-ctan /graphics/pstricks/contrib/pedigree/pst-pdgr -catalogue-date 2012-04-11 15:14:23 +0200 -catalogue-license lppl -catalogue-version 0.3 - -name pst-perspective -category Package -revision 33524 -shortdesc Draw perspective views using pstricks. -relocated 1 -longdesc The package provides the means to draw an orthogonal parallel -longdesc projection with an arbitrarily chosen angle and a variable -longdesc shortening factor. -runfiles size=6 - RELOC/tex/generic/pst-perspective/pst-perspective.tex - RELOC/tex/latex/pst-perspective/pst-perspective.sty -docfiles size=405 - RELOC/doc/generic/pst-perspective/Parallelprojektion-Kreis.pdf - RELOC/doc/generic/pst-perspective/Parallelprojektion-Kreis.tex - RELOC/doc/generic/pst-perspective/README - RELOC/doc/generic/pst-perspective/pst-perspective-doc.pdf - RELOC/doc/generic/pst-perspective/pst-perspective-doc.tex - RELOC/doc/generic/pst-perspective/pst-perspective-docEN.pdf - RELOC/doc/generic/pst-perspective/pst-perspective-docEN.tex -catalogue-ctan /graphics/pstricks/contrib/pst-perspective -catalogue-date 2015-03-30 22:55:45 +0200 -catalogue-license lppl1.3 -catalogue-version 1.04 - -name pst-platon -category Package -revision 16538 -shortdesc Platonic solids in PSTricks. -relocated 1 -longdesc The package adds to PSTricks the ability to draw 3-dimensional -longdesc views of the five Platonic solids. -runfiles size=3 - RELOC/tex/latex/pst-platon/pst-platon.sty -docfiles size=34 - RELOC/doc/generic/pst-platon/Changes - RELOC/doc/generic/pst-platon/README - RELOC/doc/generic/pst-platon/pst-platon-doc.bib - RELOC/doc/generic/pst-platon/pst-platon-doc.pdf - RELOC/doc/generic/pst-platon/pst-platon-doc.tex -srcfiles size=1 - RELOC/source/generic/pst-platon/Makefile -catalogue-ctan /graphics/pstricks/contrib/pst-platon -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.01 - -name pst-plot -category Package -revision 35025 -shortdesc Plot data using PSTricks. -relocated 1 -longdesc The package provides plotting of data (typically from external -longdesc files), using PSTricks. Plots may be configured using a wide -longdesc variety of parameters. -runfiles size=30 - RELOC/tex/generic/pst-plot/pst-plot.tex - RELOC/tex/generic/pst-plot/pst-plot97.tex - RELOC/tex/latex/pst-plot/pst-plot.sty -docfiles size=755 - RELOC/doc/generic/pst-plot/Changes - RELOC/doc/generic/pst-plot/Contents - RELOC/doc/generic/pst-plot/README - RELOC/doc/generic/pst-plot/dtk02-1.pdf - RELOC/doc/generic/pst-plot/dtk02-1.tex - RELOC/doc/generic/pst-plot/dtk02-2.bib - RELOC/doc/generic/pst-plot/dtk02-2.pdf - RELOC/doc/generic/pst-plot/dtk02-2.tex - RELOC/doc/generic/pst-plot/pst-plot-doc.bib - RELOC/doc/generic/pst-plot/pst-plot-doc.dat - RELOC/doc/generic/pst-plot/pst-plot-doc.eps - RELOC/doc/generic/pst-plot/pst-plot-doc.pdf - RELOC/doc/generic/pst-plot/pst-plot-doc.png - RELOC/doc/generic/pst-plot/pst-plot-doc.tex - RELOC/doc/generic/pst-plot/tugboat01-4.bib - RELOC/doc/generic/pst-plot/tugboat01-4.pdf - RELOC/doc/generic/pst-plot/tugboat01-4.tex -catalogue-ctan /graphics/pstricks/contrib/pst-plot -catalogue-date 2014-08-23 20:43:20 +0200 -catalogue-license lppl -catalogue-version 1.70 - -name pst-poly -category Package -revision 35062 -shortdesc Polygons with PSTricks. -relocated 1 -longdesc This PSTricks package provides a really rather simple command -longdesc \PstPolygon that will draw various regular and non-regular -longdesc polygons (according to command parameters); various shortcuts -longdesc to commonly-used polygons are provided, as well as a command -longdesc \pspolygonbox that frames text with a polygon. The package uses -longdesc the xkeyval package for argument decoding. -runfiles size=4 - RELOC/tex/generic/pst-poly/pst-poly.tex - RELOC/tex/latex/pst-poly/pst-poly.sty -docfiles size=53 - RELOC/doc/generic/pst-poly/Changes - RELOC/doc/generic/pst-poly/README - RELOC/doc/generic/pst-poly/pst-poly-doc.bib - RELOC/doc/generic/pst-poly/pst-poly-doc.pdf - RELOC/doc/generic/pst-poly/pst-poly-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-poly -catalogue-date 2014-08-28 22:16:34 +0200 -catalogue-license lppl -catalogue-version 1.63 - -name pst-pulley -category Package -revision 25142 -shortdesc Plot pulleys, using pstricks. -relocated 1 -longdesc The package enables the user to draw pulley systems with up to -longdesc 6 pulleys. The pulley diagrams are labelled with the physical -longdesc properties of the system. The package uses pstricks, and -longdesc requires a several pstricks-related packages. -runfiles size=16 - RELOC/tex/generic/pst-pulley/pst-pulley.tex - RELOC/tex/latex/pst-pulley/pst-pulley.sty -docfiles size=70 - RELOC/doc/generic/pst-pulley/Changes - RELOC/doc/generic/pst-pulley/README - RELOC/doc/generic/pst-pulley/pst-pulley-doc.bib - RELOC/doc/generic/pst-pulley/pst-pulley-doc.pdf - RELOC/doc/generic/pst-pulley/pst-pulley-doc.tex -srcfiles size=1 - RELOC/source/generic/pst-pulley/Makefile -catalogue-ctan /graphics/pstricks/contrib/pst-pulley -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.01 - -name pst-qtree -category Package -revision 15878 -shortdesc Simple syntax for trees. -relocated 1 -longdesc The package provides a qtree-like front end for PSTricks. -runfiles size=2 - RELOC/tex/generic/pst-qtree/pst-qtree.tex - RELOC/tex/latex/pst-qtree/pst-qtree.sty -docfiles size=13 - RELOC/doc/generic/pst-qtree/CHANGES - RELOC/doc/generic/pst-qtree/LICENSE - RELOC/doc/generic/pst-qtree/pst-qtree-manual.pdf - RELOC/doc/generic/pst-qtree/pst-qtree-manual.tex -catalogue-ctan /graphics/pstricks/contrib/pst-qtree -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license gpl - -name pstricks-add -category Package -revision 35772 -shortdesc A collection of add-ons and bugfixes for PSTricks. -relocated 1 -longdesc Collects together examples that have been posted to the -longdesc pstricks mailing list, together with many additional features -longdesc for the basic pstricks, pst-plot and pst-node, including: -longdesc bugfixes; new options for the pspicture environment; arrows; -longdesc braces as node connection/linestyle; extended axes for plots -longdesc (e.g., logarithm axes); polar plots; plotting tangent lines of -longdesc curves or functions; solving and printing differential -longdesc equations; box plots; matrix plots; and pie charts. The package -longdesc makes use of PostScript routines provided by pst-math. -runfiles size=28 - RELOC/dvips/pstricks-add/pstricks-add.pro - RELOC/tex/generic/pstricks-add/pstricks-add.tex - RELOC/tex/latex/pstricks-add/pstricks-add.cfg - RELOC/tex/latex/pstricks-add/pstricks-add.sty -docfiles size=2039 - RELOC/doc/generic/pstricks-add/Changes - RELOC/doc/generic/pstricks-add/README - RELOC/doc/generic/pstricks-add/pstricks-add-doc.bib - RELOC/doc/generic/pstricks-add/pstricks-add-doc.dat - RELOC/doc/generic/pstricks-add/pstricks-add-doc.pdf - RELOC/doc/generic/pstricks-add/pstricks-add-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pstricks-add -catalogue-date 2014-12-09 05:07:30 +0100 -catalogue-license lppl -catalogue-version 3.77 - -name pstricks_calcnotes -category Package -revision 34363 -shortdesc Use of PStricks in calculus lecture notes. -relocated 1 -longdesc The bundle shows the construction of PStricks macros to draw -longdesc Riemann sums of an integral and to draw the vector field of an -longdesc ordinary differential equation. The results are illustrated in -longdesc a fragment of lecture notes. -docfiles size=3772 - RELOC/doc/latex/pstricks_calcnotes/AppThreePDF.pdf - RELOC/doc/latex/pstricks_calcnotes/Convert_PstricksCode_To_Pdf/Readme.txt - RELOC/doc/latex/pstricks_calcnotes/Convert_PstricksCode_To_Pdf/convert.tex - RELOC/doc/latex/pstricks_calcnotes/Convert_PstricksCode_To_Pdf/test.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/AppThreePDF.tex - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ1.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ10.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ2.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ3.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ4.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ5.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ6.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ7.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ8.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ9.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig13.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig14.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig1a.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig1b.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig1c.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig2a.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig2b.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig3.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig4.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig5.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig6.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig7.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig8.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig9.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/ThreeAppsPDF.tex - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/b6of1.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/b6of2.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/b6of3.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/b6of4.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/vecb1.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/vecb2.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/vecb3.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/vecb4.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/vecb5.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/vecb6.pdf - RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/AppThreePS.tex - RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/BZ10.eps - RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/BZ6.eps - RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/BZ7.eps - RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/BZ8.eps - RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/BZ9.eps - RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/ThreeAppsPS.tex - RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/b6of1.eps - RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/b6of2.eps - RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/b6of3.eps - RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/b6of4.eps - RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/vecb1.eps - RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/vecb2.eps - RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/vecb3.eps - RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/vecb4.eps - RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/vecb5.eps - RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/vecb6.eps - RELOC/doc/latex/pstricks_calcnotes/README - RELOC/doc/latex/pstricks_calcnotes/ThreeAppsPDF.pdf -catalogue-ctan /info/pstricks_calcnotes -catalogue-date 2015-03-30 22:55:45 +0200 -catalogue-license lppl -catalogue-version 1.2 - -name pstricks-examples-en -category Package -revision 29349 -shortdesc Examples from PSTricks book (English edition). -relocated 1 -longdesc These are the examples from the book 'PSTricks: Graphics and -longdesc PostScript for TeX and LaTeX'. -docfiles size=2651 - RELOC/doc/latex/pstricks-examples-en/00-00-1.ltx - RELOC/doc/latex/pstricks-examples-en/02-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/02-01-10.ltx - RELOC/doc/latex/pstricks-examples-en/02-01-11.ltx - RELOC/doc/latex/pstricks-examples-en/02-01-12.ltx - RELOC/doc/latex/pstricks-examples-en/02-01-13.ltx - RELOC/doc/latex/pstricks-examples-en/02-01-14.ltx - RELOC/doc/latex/pstricks-examples-en/02-01-15.ltx - RELOC/doc/latex/pstricks-examples-en/02-01-16.ltx - RELOC/doc/latex/pstricks-examples-en/02-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/02-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/02-01-4.ltx2 - RELOC/doc/latex/pstricks-examples-en/02-01-5.ltx - RELOC/doc/latex/pstricks-examples-en/02-01-6.ltx - RELOC/doc/latex/pstricks-examples-en/02-01-7.ltx - RELOC/doc/latex/pstricks-examples-en/02-01-8.ltx - RELOC/doc/latex/pstricks-examples-en/02-01-9.ltx - RELOC/doc/latex/pstricks-examples-en/02-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/02-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/02-04-1.ltx - RELOC/doc/latex/pstricks-examples-en/02-05-1.ltx - RELOC/doc/latex/pstricks-examples-en/02-05-10.ltx - RELOC/doc/latex/pstricks-examples-en/02-05-11.ltx - RELOC/doc/latex/pstricks-examples-en/02-05-12.ltx - RELOC/doc/latex/pstricks-examples-en/02-05-13.ltx - RELOC/doc/latex/pstricks-examples-en/02-05-14.ltx - RELOC/doc/latex/pstricks-examples-en/02-05-2.ltx - RELOC/doc/latex/pstricks-examples-en/02-05-3.ltx - RELOC/doc/latex/pstricks-examples-en/02-05-4.ltx - RELOC/doc/latex/pstricks-examples-en/02-05-5.ltx - RELOC/doc/latex/pstricks-examples-en/02-05-6.ltx - RELOC/doc/latex/pstricks-examples-en/02-05-7.ltx - RELOC/doc/latex/pstricks-examples-en/02-05-8.ltx - RELOC/doc/latex/pstricks-examples-en/02-05-9.ltx - RELOC/doc/latex/pstricks-examples-en/02-06-1.ltx - RELOC/doc/latex/pstricks-examples-en/02-06-2.ltx - RELOC/doc/latex/pstricks-examples-en/02-07-1.ltx - RELOC/doc/latex/pstricks-examples-en/02-07-2.ltx - RELOC/doc/latex/pstricks-examples-en/03-00-1.ltx - RELOC/doc/latex/pstricks-examples-en/03-00-2.ltx - RELOC/doc/latex/pstricks-examples-en/03-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/03-02-10.ltx - RELOC/doc/latex/pstricks-examples-en/03-02-11.ltx - RELOC/doc/latex/pstricks-examples-en/03-02-12.ltx - RELOC/doc/latex/pstricks-examples-en/03-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/03-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/03-02-4.ltx - RELOC/doc/latex/pstricks-examples-en/03-02-5.ltx - RELOC/doc/latex/pstricks-examples-en/03-02-6.ltx2ps - RELOC/doc/latex/pstricks-examples-en/03-02-7.ltx - RELOC/doc/latex/pstricks-examples-en/03-02-8.ltx - RELOC/doc/latex/pstricks-examples-en/03-02-9.ltx - RELOC/doc/latex/pstricks-examples-en/03-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/03-03-10.ltx - RELOC/doc/latex/pstricks-examples-en/03-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/03-03-3.ltx - RELOC/doc/latex/pstricks-examples-en/03-03-4.ltx - RELOC/doc/latex/pstricks-examples-en/03-03-5.ltx - RELOC/doc/latex/pstricks-examples-en/03-03-6.ltx - RELOC/doc/latex/pstricks-examples-en/03-03-7.ltx - RELOC/doc/latex/pstricks-examples-en/03-03-8.ltx - RELOC/doc/latex/pstricks-examples-en/03-03-9.ltx - RELOC/doc/latex/pstricks-examples-en/03-04-1.ltx - RELOC/doc/latex/pstricks-examples-en/03-04-2.ltx - RELOC/doc/latex/pstricks-examples-en/03-04-3.ltx - RELOC/doc/latex/pstricks-examples-en/03-05-1.ltx - RELOC/doc/latex/pstricks-examples-en/03-05-2.ltx - RELOC/doc/latex/pstricks-examples-en/03-05-3.ltx - RELOC/doc/latex/pstricks-examples-en/03-05-4.ltx - RELOC/doc/latex/pstricks-examples-en/04-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/04-01-10.ltx - RELOC/doc/latex/pstricks-examples-en/04-01-11.ltx - RELOC/doc/latex/pstricks-examples-en/04-01-12.ltx - RELOC/doc/latex/pstricks-examples-en/04-01-13.ltx - RELOC/doc/latex/pstricks-examples-en/04-01-14.ltx - RELOC/doc/latex/pstricks-examples-en/04-01-15.ltx - RELOC/doc/latex/pstricks-examples-en/04-01-16.ltx - RELOC/doc/latex/pstricks-examples-en/04-01-17.ltx - RELOC/doc/latex/pstricks-examples-en/04-01-18.ltx - RELOC/doc/latex/pstricks-examples-en/04-01-19.ltx - RELOC/doc/latex/pstricks-examples-en/04-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/04-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/04-01-4.ltx - RELOC/doc/latex/pstricks-examples-en/04-01-5.ltx - RELOC/doc/latex/pstricks-examples-en/04-01-6.ltx - RELOC/doc/latex/pstricks-examples-en/04-01-7.ltx - RELOC/doc/latex/pstricks-examples-en/04-01-8.ltx - RELOC/doc/latex/pstricks-examples-en/04-01-9.ltx - RELOC/doc/latex/pstricks-examples-en/04-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/04-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/04-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/04-04-1.ltx - RELOC/doc/latex/pstricks-examples-en/04-05-1.ltx - RELOC/doc/latex/pstricks-examples-en/04-05-2.ltx - RELOC/doc/latex/pstricks-examples-en/04-05-3.ltx - RELOC/doc/latex/pstricks-examples-en/04-06-1.ltx - RELOC/doc/latex/pstricks-examples-en/04-07-1.ltx - RELOC/doc/latex/pstricks-examples-en/04-07-2.ltx - RELOC/doc/latex/pstricks-examples-en/04-08-1.ltx - RELOC/doc/latex/pstricks-examples-en/05-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/05-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/05-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/05-01-4.ltx - RELOC/doc/latex/pstricks-examples-en/05-01-5.ltx - RELOC/doc/latex/pstricks-examples-en/05-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/05-02-10.ltx - RELOC/doc/latex/pstricks-examples-en/05-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/05-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/05-02-4.ltx - RELOC/doc/latex/pstricks-examples-en/05-02-5.ltx - RELOC/doc/latex/pstricks-examples-en/05-02-6.ltx - RELOC/doc/latex/pstricks-examples-en/05-02-7.ltx - RELOC/doc/latex/pstricks-examples-en/05-02-8.ltx - RELOC/doc/latex/pstricks-examples-en/05-02-9.ltx - RELOC/doc/latex/pstricks-examples-en/05-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/05-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/05-03-3.ltx - RELOC/doc/latex/pstricks-examples-en/05-03-4.ltx - RELOC/doc/latex/pstricks-examples-en/05-03-5.ltx - RELOC/doc/latex/pstricks-examples-en/05-03-6.ltx - RELOC/doc/latex/pstricks-examples-en/05-03-7.ltx - RELOC/doc/latex/pstricks-examples-en/06-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/06-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/06-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/06-01-4.ltx - RELOC/doc/latex/pstricks-examples-en/06-01-5.ltx - RELOC/doc/latex/pstricks-examples-en/06-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/06-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/06-03-10.ltx - RELOC/doc/latex/pstricks-examples-en/06-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/06-03-3.ltx - RELOC/doc/latex/pstricks-examples-en/06-03-4.ltx - RELOC/doc/latex/pstricks-examples-en/06-03-5.ltx - RELOC/doc/latex/pstricks-examples-en/06-03-6.ltx - RELOC/doc/latex/pstricks-examples-en/06-03-7.ltx - RELOC/doc/latex/pstricks-examples-en/06-03-8.ltx - RELOC/doc/latex/pstricks-examples-en/06-03-9.ltx - RELOC/doc/latex/pstricks-examples-en/07-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/07-01-10.ltx - RELOC/doc/latex/pstricks-examples-en/07-01-11.ltx - RELOC/doc/latex/pstricks-examples-en/07-01-12.ltx - RELOC/doc/latex/pstricks-examples-en/07-01-13.ltx - RELOC/doc/latex/pstricks-examples-en/07-01-14.ltx - RELOC/doc/latex/pstricks-examples-en/07-01-15.ltx - RELOC/doc/latex/pstricks-examples-en/07-01-16.ltx - RELOC/doc/latex/pstricks-examples-en/07-01-17.ltx - RELOC/doc/latex/pstricks-examples-en/07-01-18.ltx - RELOC/doc/latex/pstricks-examples-en/07-01-19.ltx - RELOC/doc/latex/pstricks-examples-en/07-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/07-01-20.ltx - RELOC/doc/latex/pstricks-examples-en/07-01-21.ltx - RELOC/doc/latex/pstricks-examples-en/07-01-22.ltx - RELOC/doc/latex/pstricks-examples-en/07-01-23.ltx - RELOC/doc/latex/pstricks-examples-en/07-01-24.ltx - RELOC/doc/latex/pstricks-examples-en/07-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/07-01-4.ltx - RELOC/doc/latex/pstricks-examples-en/07-01-5.ltx - RELOC/doc/latex/pstricks-examples-en/07-01-6.ltx - RELOC/doc/latex/pstricks-examples-en/07-01-7.ltx - RELOC/doc/latex/pstricks-examples-en/07-01-8.ltx - RELOC/doc/latex/pstricks-examples-en/07-01-9.ltx - RELOC/doc/latex/pstricks-examples-en/07-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/07-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/07-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/07-03-3.ltx - RELOC/doc/latex/pstricks-examples-en/08-00-1.ltx - RELOC/doc/latex/pstricks-examples-en/08-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/08-01-10.ltx - RELOC/doc/latex/pstricks-examples-en/08-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/08-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/08-01-4.ltx - RELOC/doc/latex/pstricks-examples-en/08-01-5.ltx - RELOC/doc/latex/pstricks-examples-en/08-01-6.ltx - RELOC/doc/latex/pstricks-examples-en/08-01-7.ltx - RELOC/doc/latex/pstricks-examples-en/08-01-8.ltx - RELOC/doc/latex/pstricks-examples-en/08-01-9.ltx - RELOC/doc/latex/pstricks-examples-en/08-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/08-02-10.ltx - RELOC/doc/latex/pstricks-examples-en/08-02-11.ltx - RELOC/doc/latex/pstricks-examples-en/08-02-12.ltx - RELOC/doc/latex/pstricks-examples-en/08-02-13.ltx - RELOC/doc/latex/pstricks-examples-en/08-02-14.ltx - RELOC/doc/latex/pstricks-examples-en/08-02-15.ltx - RELOC/doc/latex/pstricks-examples-en/08-02-16.ltx - RELOC/doc/latex/pstricks-examples-en/08-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/08-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/08-02-4.ltx - RELOC/doc/latex/pstricks-examples-en/08-02-5.ltx - RELOC/doc/latex/pstricks-examples-en/08-02-6.ltx - RELOC/doc/latex/pstricks-examples-en/08-02-7.ltx - RELOC/doc/latex/pstricks-examples-en/08-02-8.ltx - RELOC/doc/latex/pstricks-examples-en/08-02-9.ltx - RELOC/doc/latex/pstricks-examples-en/09-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/09-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/09-04-1.ltx - RELOC/doc/latex/pstricks-examples-en/09-05-1.ltx - RELOC/doc/latex/pstricks-examples-en/09-05-2.ltx - RELOC/doc/latex/pstricks-examples-en/09-06-1.ltx - RELOC/doc/latex/pstricks-examples-en/09-07-1.ltx - RELOC/doc/latex/pstricks-examples-en/09-08-1.ltx - RELOC/doc/latex/pstricks-examples-en/09-09-1.ltx - RELOC/doc/latex/pstricks-examples-en/10-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/10-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/10-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/10-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/10-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/10-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/10-02-4.ltx - RELOC/doc/latex/pstricks-examples-en/10-02-5.ltx - RELOC/doc/latex/pstricks-examples-en/10-02-6.ltx - RELOC/doc/latex/pstricks-examples-en/10-02-7.ltx - RELOC/doc/latex/pstricks-examples-en/10-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/10-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/10-03-3.ltx - RELOC/doc/latex/pstricks-examples-en/10-03-4.ltx - RELOC/doc/latex/pstricks-examples-en/10-04-1.ltx - RELOC/doc/latex/pstricks-examples-en/10-04-2.ltx - RELOC/doc/latex/pstricks-examples-en/10-04-3.ltx - RELOC/doc/latex/pstricks-examples-en/10-05-1.ltx - RELOC/doc/latex/pstricks-examples-en/10-05-2.ltx - RELOC/doc/latex/pstricks-examples-en/10-05-3.ltx - RELOC/doc/latex/pstricks-examples-en/10-05-4.ltx - RELOC/doc/latex/pstricks-examples-en/10-06-1.ltx - RELOC/doc/latex/pstricks-examples-en/10-06-2.ltx - RELOC/doc/latex/pstricks-examples-en/10-06-3.ltx - RELOC/doc/latex/pstricks-examples-en/10-06-4.ltx - RELOC/doc/latex/pstricks-examples-en/10-06-5.ltx - RELOC/doc/latex/pstricks-examples-en/10-07-1.ltx - RELOC/doc/latex/pstricks-examples-en/10-07-2.ltx - RELOC/doc/latex/pstricks-examples-en/11-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/11-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/11-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-10.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-11.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-12.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-13.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-14.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-15.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-16.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-17.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-18.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-19.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-20.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-21.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-22.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-23.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-24.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-25.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-26.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-27.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-28.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-29.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-3.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-30.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-31.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-32.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-33.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-34.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-4.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-5.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-6.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-7.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-8.ltx - RELOC/doc/latex/pstricks-examples-en/11-03-9.ltx - RELOC/doc/latex/pstricks-examples-en/11-04-1.ltx - RELOC/doc/latex/pstricks-examples-en/11-04-2.ltx - RELOC/doc/latex/pstricks-examples-en/12-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/12-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/12-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/12-01-4.ltx - RELOC/doc/latex/pstricks-examples-en/12-01-5.ltx - RELOC/doc/latex/pstricks-examples-en/12-01-6.ltx - RELOC/doc/latex/pstricks-examples-en/12-01-7.ltx - RELOC/doc/latex/pstricks-examples-en/12-01-8.ltx - RELOC/doc/latex/pstricks-examples-en/12-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/12-04-1.ltx - RELOC/doc/latex/pstricks-examples-en/12-04-2.ltx - RELOC/doc/latex/pstricks-examples-en/13-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/13-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/13-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/13-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-10.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-11.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-12.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-13.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-14.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-15.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-16.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-17.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-18.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-19.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-20.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-21.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-22.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-23.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-24.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-25.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-26.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-27.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-28.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-29.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-30.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-31.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-32.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-33.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-34.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-35.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-36.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-37.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-38.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-39.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-4.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-40.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-41.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-42.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-43.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-44.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-45.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-46.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-47.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-48.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-49.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-5.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-50.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-51.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-52.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-53.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-54.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-55.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-56.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-57.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-58.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-59.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-6.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-60.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-61.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-62.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-63.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-64.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-65.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-66.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-67.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-68.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-69.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-7.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-70.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-71.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-72.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-73.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-74.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-75.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-76.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-77.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-78.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-79.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-8.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-80.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-81.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-82.ltx - RELOC/doc/latex/pstricks-examples-en/14-01-9.ltx - RELOC/doc/latex/pstricks-examples-en/14-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/14-02-10.ltx - RELOC/doc/latex/pstricks-examples-en/14-02-11.ltx - RELOC/doc/latex/pstricks-examples-en/14-02-12.ltx - RELOC/doc/latex/pstricks-examples-en/14-02-13.ltx - RELOC/doc/latex/pstricks-examples-en/14-02-14.ltx - RELOC/doc/latex/pstricks-examples-en/14-02-15.ltx - RELOC/doc/latex/pstricks-examples-en/14-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/14-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/14-02-4.ltx - RELOC/doc/latex/pstricks-examples-en/14-02-5.ltx - RELOC/doc/latex/pstricks-examples-en/14-02-6.ltx - RELOC/doc/latex/pstricks-examples-en/14-02-7.ltx - RELOC/doc/latex/pstricks-examples-en/14-02-8.ltx - RELOC/doc/latex/pstricks-examples-en/14-02-9.ltx - RELOC/doc/latex/pstricks-examples-en/14-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/14-03-10.ltx - RELOC/doc/latex/pstricks-examples-en/14-03-11.ltx - RELOC/doc/latex/pstricks-examples-en/14-03-12.ltx - RELOC/doc/latex/pstricks-examples-en/14-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/14-03-3.ltx - RELOC/doc/latex/pstricks-examples-en/14-03-4.ltx - RELOC/doc/latex/pstricks-examples-en/14-03-5.ltx - RELOC/doc/latex/pstricks-examples-en/14-03-6.ltx - RELOC/doc/latex/pstricks-examples-en/14-03-7.ltx - RELOC/doc/latex/pstricks-examples-en/14-03-8.ltx - RELOC/doc/latex/pstricks-examples-en/14-03-9.ltx - RELOC/doc/latex/pstricks-examples-en/14-04-1.ltx - RELOC/doc/latex/pstricks-examples-en/14-04-10.ltx - RELOC/doc/latex/pstricks-examples-en/14-04-11.ltx - RELOC/doc/latex/pstricks-examples-en/14-04-12.ltx - RELOC/doc/latex/pstricks-examples-en/14-04-13.ltx - RELOC/doc/latex/pstricks-examples-en/14-04-14.ltx - RELOC/doc/latex/pstricks-examples-en/14-04-15.ltx - RELOC/doc/latex/pstricks-examples-en/14-04-16.ltx - RELOC/doc/latex/pstricks-examples-en/14-04-17.ltx - RELOC/doc/latex/pstricks-examples-en/14-04-2.ltx - RELOC/doc/latex/pstricks-examples-en/14-04-3.ltx - RELOC/doc/latex/pstricks-examples-en/14-04-4.ltx - RELOC/doc/latex/pstricks-examples-en/14-04-5.ltx - RELOC/doc/latex/pstricks-examples-en/14-04-6.ltx2ps - RELOC/doc/latex/pstricks-examples-en/14-04-7.ltx - RELOC/doc/latex/pstricks-examples-en/14-04-8.ltx - RELOC/doc/latex/pstricks-examples-en/14-04-9.ltx - RELOC/doc/latex/pstricks-examples-en/14-05-1.ltx - RELOC/doc/latex/pstricks-examples-en/14-05-2.ltx - RELOC/doc/latex/pstricks-examples-en/14-05-3.ltx - RELOC/doc/latex/pstricks-examples-en/14-05-4.ltx - RELOC/doc/latex/pstricks-examples-en/15-00-1.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-10.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-11.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-12.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-13.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-14.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-15.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-16.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-17.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-18.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-19.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-20.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-21.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-22.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-23.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-24.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-25.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-26.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-27.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-28.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-29.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-30.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-31.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-32.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-33.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-34.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-35.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-36.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-37.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-38.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-39.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-4.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-40.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-41.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-42.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-43.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-44.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-45.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-46.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-47.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-48.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-49.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-5.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-50.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-51.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-52.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-53.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-54.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-55.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-56.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-57.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-58.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-59.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-6.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-60.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-61.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-62.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-63.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-64.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-65.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-66.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-67.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-68.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-69.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-7.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-70.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-71.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-72.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-73.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-74.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-75.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-76.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-77.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-78.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-79.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-8.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-80.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-81.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-82.ltx - RELOC/doc/latex/pstricks-examples-en/15-01-9.ltx - RELOC/doc/latex/pstricks-examples-en/15-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/15-02-10.ltx - RELOC/doc/latex/pstricks-examples-en/15-02-11.ltx - RELOC/doc/latex/pstricks-examples-en/15-02-12.ltx - RELOC/doc/latex/pstricks-examples-en/15-02-13.ltx - RELOC/doc/latex/pstricks-examples-en/15-02-14.ltx - RELOC/doc/latex/pstricks-examples-en/15-02-15.ltx - RELOC/doc/latex/pstricks-examples-en/15-02-16.ltx - RELOC/doc/latex/pstricks-examples-en/15-02-17.ltx - RELOC/doc/latex/pstricks-examples-en/15-02-18.ltx - RELOC/doc/latex/pstricks-examples-en/15-02-19.ltx - RELOC/doc/latex/pstricks-examples-en/15-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/15-02-20.ltx - RELOC/doc/latex/pstricks-examples-en/15-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/15-02-4.ltx - RELOC/doc/latex/pstricks-examples-en/15-02-5.ltx - RELOC/doc/latex/pstricks-examples-en/15-02-6.ltx - RELOC/doc/latex/pstricks-examples-en/15-02-7.ltx - RELOC/doc/latex/pstricks-examples-en/15-02-8.ltx - RELOC/doc/latex/pstricks-examples-en/15-02-9.ltx - RELOC/doc/latex/pstricks-examples-en/15-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/15-03-10.ltx - RELOC/doc/latex/pstricks-examples-en/15-03-11.ltx - RELOC/doc/latex/pstricks-examples-en/15-03-12.ltx - RELOC/doc/latex/pstricks-examples-en/15-03-13.ltx - RELOC/doc/latex/pstricks-examples-en/15-03-14.ltx - RELOC/doc/latex/pstricks-examples-en/15-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/15-03-3.ltx - RELOC/doc/latex/pstricks-examples-en/15-03-4.ltx - RELOC/doc/latex/pstricks-examples-en/15-03-5.ltx - RELOC/doc/latex/pstricks-examples-en/15-03-6.ltx - RELOC/doc/latex/pstricks-examples-en/15-03-7.ltx - RELOC/doc/latex/pstricks-examples-en/15-03-8.ltx - RELOC/doc/latex/pstricks-examples-en/15-03-9.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-1.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-10.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-11.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-12.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-13.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-14.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-15.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-16.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-17.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-18.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-19.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-2.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-20.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-21.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-22.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-23.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-24.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-25.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-26.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-27.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-3.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-4.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-5.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-6.ltx2ps - RELOC/doc/latex/pstricks-examples-en/15-04-7.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-8.ltx - RELOC/doc/latex/pstricks-examples-en/15-04-9.ltx - RELOC/doc/latex/pstricks-examples-en/15-05-1.ltx - RELOC/doc/latex/pstricks-examples-en/15-05-2.ltx - RELOC/doc/latex/pstricks-examples-en/15-05-3.ltx - RELOC/doc/latex/pstricks-examples-en/15-05-4.ltx - RELOC/doc/latex/pstricks-examples-en/15-05-5.ltx - RELOC/doc/latex/pstricks-examples-en/15-06-1.ltx - RELOC/doc/latex/pstricks-examples-en/15-06-2.ltx - RELOC/doc/latex/pstricks-examples-en/15-06-3.ltx - RELOC/doc/latex/pstricks-examples-en/15-06-4.ltx - RELOC/doc/latex/pstricks-examples-en/15-06-5.ltx - RELOC/doc/latex/pstricks-examples-en/15-06-6.ltx - RELOC/doc/latex/pstricks-examples-en/15-07-1.ltx - RELOC/doc/latex/pstricks-examples-en/15-07-2.ltx - RELOC/doc/latex/pstricks-examples-en/15-07-3.ltx - RELOC/doc/latex/pstricks-examples-en/15-07-4.ltx - RELOC/doc/latex/pstricks-examples-en/15-08-1.ltx - RELOC/doc/latex/pstricks-examples-en/15-08-10.ltx - RELOC/doc/latex/pstricks-examples-en/15-08-2.ltx - RELOC/doc/latex/pstricks-examples-en/15-08-3.ltx - RELOC/doc/latex/pstricks-examples-en/15-08-4.ltx - RELOC/doc/latex/pstricks-examples-en/15-08-5.ltx - RELOC/doc/latex/pstricks-examples-en/15-08-6.ltx - RELOC/doc/latex/pstricks-examples-en/15-08-7.ltx - RELOC/doc/latex/pstricks-examples-en/15-08-8.ltx - RELOC/doc/latex/pstricks-examples-en/15-08-9.ltx - RELOC/doc/latex/pstricks-examples-en/15-09-1.ltx - RELOC/doc/latex/pstricks-examples-en/15-09-2.ltx - RELOC/doc/latex/pstricks-examples-en/16-00-1.ltx - RELOC/doc/latex/pstricks-examples-en/16-00-2.ltx - RELOC/doc/latex/pstricks-examples-en/16-00-3.ltx - RELOC/doc/latex/pstricks-examples-en/16-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/16-01-10.ltx - RELOC/doc/latex/pstricks-examples-en/16-01-11.ltx - RELOC/doc/latex/pstricks-examples-en/16-01-12.ltx - RELOC/doc/latex/pstricks-examples-en/16-01-13.ltx - RELOC/doc/latex/pstricks-examples-en/16-01-14.ltx - RELOC/doc/latex/pstricks-examples-en/16-01-15.ltx - RELOC/doc/latex/pstricks-examples-en/16-01-16.ltx - RELOC/doc/latex/pstricks-examples-en/16-01-17.ltx - RELOC/doc/latex/pstricks-examples-en/16-01-18.ltx - RELOC/doc/latex/pstricks-examples-en/16-01-19.ltx - RELOC/doc/latex/pstricks-examples-en/16-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/16-01-20.ltx - RELOC/doc/latex/pstricks-examples-en/16-01-21.ltx - RELOC/doc/latex/pstricks-examples-en/16-01-22.ltx - RELOC/doc/latex/pstricks-examples-en/16-01-23.ltx - RELOC/doc/latex/pstricks-examples-en/16-01-24.ltx - RELOC/doc/latex/pstricks-examples-en/16-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/16-01-4.ltx - RELOC/doc/latex/pstricks-examples-en/16-01-5.ltx - RELOC/doc/latex/pstricks-examples-en/16-01-6.ltx - RELOC/doc/latex/pstricks-examples-en/16-01-7.ltx - RELOC/doc/latex/pstricks-examples-en/16-01-8.ltx - RELOC/doc/latex/pstricks-examples-en/16-01-9.ltx - RELOC/doc/latex/pstricks-examples-en/16-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/16-02-10.ltx - RELOC/doc/latex/pstricks-examples-en/16-02-11.ltx - RELOC/doc/latex/pstricks-examples-en/16-02-12.ltx - RELOC/doc/latex/pstricks-examples-en/16-02-13.ltx - RELOC/doc/latex/pstricks-examples-en/16-02-14.ltx - RELOC/doc/latex/pstricks-examples-en/16-02-15.ltx - RELOC/doc/latex/pstricks-examples-en/16-02-16.ltx - RELOC/doc/latex/pstricks-examples-en/16-02-17.ltx - RELOC/doc/latex/pstricks-examples-en/16-02-18.ltx - RELOC/doc/latex/pstricks-examples-en/16-02-19.ltx - RELOC/doc/latex/pstricks-examples-en/16-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/16-02-20.ltx - RELOC/doc/latex/pstricks-examples-en/16-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/16-02-4.ltx - RELOC/doc/latex/pstricks-examples-en/16-02-5.ltx - RELOC/doc/latex/pstricks-examples-en/16-02-6.ltx - RELOC/doc/latex/pstricks-examples-en/16-02-7.ltx - RELOC/doc/latex/pstricks-examples-en/16-02-8.ltx - RELOC/doc/latex/pstricks-examples-en/16-02-9.ltx - RELOC/doc/latex/pstricks-examples-en/16-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/16-03-10.ltx - RELOC/doc/latex/pstricks-examples-en/16-03-11.ltx - RELOC/doc/latex/pstricks-examples-en/16-03-12.ltx - RELOC/doc/latex/pstricks-examples-en/16-03-13.ltx - RELOC/doc/latex/pstricks-examples-en/16-03-14.ltx - RELOC/doc/latex/pstricks-examples-en/16-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/16-03-3.ltx - RELOC/doc/latex/pstricks-examples-en/16-03-4.ltx - RELOC/doc/latex/pstricks-examples-en/16-03-5.ltx - RELOC/doc/latex/pstricks-examples-en/16-03-6.ltx - RELOC/doc/latex/pstricks-examples-en/16-03-7.ltx - RELOC/doc/latex/pstricks-examples-en/16-03-8.ltx - RELOC/doc/latex/pstricks-examples-en/16-03-9.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-1.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-10.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-11.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-12.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-13.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-14.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-15.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-16.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-17.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-18.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-19.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-2.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-20.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-21.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-22.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-23.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-24.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-25.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-26.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-27.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-3.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-4.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-5.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-6.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-7.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-8.ltx - RELOC/doc/latex/pstricks-examples-en/16-04-9.ltx - RELOC/doc/latex/pstricks-examples-en/16-05-1.ltx - RELOC/doc/latex/pstricks-examples-en/16-05-2.ltx - RELOC/doc/latex/pstricks-examples-en/16-06-1.ltx - RELOC/doc/latex/pstricks-examples-en/16-06-2.ltx - RELOC/doc/latex/pstricks-examples-en/16-06-3.ltx - RELOC/doc/latex/pstricks-examples-en/16-06-4.ltx - RELOC/doc/latex/pstricks-examples-en/16-06-5.ltx - RELOC/doc/latex/pstricks-examples-en/16-06-6.ltx - RELOC/doc/latex/pstricks-examples-en/16-07-1.ltx - RELOC/doc/latex/pstricks-examples-en/16-07-2.ltx - RELOC/doc/latex/pstricks-examples-en/16-07-3.ltx - RELOC/doc/latex/pstricks-examples-en/16-07-4.ltx - RELOC/doc/latex/pstricks-examples-en/16-08-1.ltx - RELOC/doc/latex/pstricks-examples-en/16-08-10.ltx - RELOC/doc/latex/pstricks-examples-en/16-08-2.ltx - RELOC/doc/latex/pstricks-examples-en/16-08-3.ltx - RELOC/doc/latex/pstricks-examples-en/16-08-4.ltx - RELOC/doc/latex/pstricks-examples-en/16-08-5.ltx - RELOC/doc/latex/pstricks-examples-en/16-08-6.ltx - RELOC/doc/latex/pstricks-examples-en/16-08-7.ltx - RELOC/doc/latex/pstricks-examples-en/16-08-8.ltx - RELOC/doc/latex/pstricks-examples-en/16-08-9.ltx - RELOC/doc/latex/pstricks-examples-en/16-09-1.ltx - RELOC/doc/latex/pstricks-examples-en/16-09-2.ltx - RELOC/doc/latex/pstricks-examples-en/16-10-1.ltx - RELOC/doc/latex/pstricks-examples-en/16-10-2.ltx - RELOC/doc/latex/pstricks-examples-en/16-10-3.ltx - RELOC/doc/latex/pstricks-examples-en/17-00-1.ltx - RELOC/doc/latex/pstricks-examples-en/17-00-2.ltx - RELOC/doc/latex/pstricks-examples-en/17-00-3.ltx - RELOC/doc/latex/pstricks-examples-en/17-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/17-01-10.ltx - RELOC/doc/latex/pstricks-examples-en/17-01-11.ltx - RELOC/doc/latex/pstricks-examples-en/17-01-12.ltx - RELOC/doc/latex/pstricks-examples-en/17-01-13.ltx - RELOC/doc/latex/pstricks-examples-en/17-01-14.ltx - RELOC/doc/latex/pstricks-examples-en/17-01-15.ltx - RELOC/doc/latex/pstricks-examples-en/17-01-16.ltx - RELOC/doc/latex/pstricks-examples-en/17-01-17.ltx - RELOC/doc/latex/pstricks-examples-en/17-01-18.ltx - RELOC/doc/latex/pstricks-examples-en/17-01-19.ltx - RELOC/doc/latex/pstricks-examples-en/17-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/17-01-20.ltx - RELOC/doc/latex/pstricks-examples-en/17-01-21.ltx - RELOC/doc/latex/pstricks-examples-en/17-01-22.ltx - RELOC/doc/latex/pstricks-examples-en/17-01-23.ltx - RELOC/doc/latex/pstricks-examples-en/17-01-24.ltx - RELOC/doc/latex/pstricks-examples-en/17-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/17-01-4.ltx - RELOC/doc/latex/pstricks-examples-en/17-01-5.ltx - RELOC/doc/latex/pstricks-examples-en/17-01-6.ltx - RELOC/doc/latex/pstricks-examples-en/17-01-7.ltx - RELOC/doc/latex/pstricks-examples-en/17-01-8.ltx - RELOC/doc/latex/pstricks-examples-en/17-01-9.ltx - RELOC/doc/latex/pstricks-examples-en/17-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/17-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/17-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/17-02-4.ltx - RELOC/doc/latex/pstricks-examples-en/17-02-5.ltx - RELOC/doc/latex/pstricks-examples-en/17-02-6.ltx - RELOC/doc/latex/pstricks-examples-en/17-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/17-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/17-03-3.ltx - RELOC/doc/latex/pstricks-examples-en/17-03-4.ltx - RELOC/doc/latex/pstricks-examples-en/17-03-5.ltx - RELOC/doc/latex/pstricks-examples-en/17-03-6.ltx - RELOC/doc/latex/pstricks-examples-en/17-03-7.ltx - RELOC/doc/latex/pstricks-examples-en/17-03-8.ltx - RELOC/doc/latex/pstricks-examples-en/17-04-1.ltx - RELOC/doc/latex/pstricks-examples-en/17-05-1.ltx - RELOC/doc/latex/pstricks-examples-en/17-06-1.ltx - RELOC/doc/latex/pstricks-examples-en/17-06-2.ltx - RELOC/doc/latex/pstricks-examples-en/17-06-3.ltx - RELOC/doc/latex/pstricks-examples-en/17-06-4.ltx - RELOC/doc/latex/pstricks-examples-en/18-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/18-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/18-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/18-01-4.ltx - RELOC/doc/latex/pstricks-examples-en/18-01-5.ltx - RELOC/doc/latex/pstricks-examples-en/18-01-6.ltx - RELOC/doc/latex/pstricks-examples-en/18-01-7.ltx - RELOC/doc/latex/pstricks-examples-en/18-01-8.ltx - RELOC/doc/latex/pstricks-examples-en/18-01-9.ltx - RELOC/doc/latex/pstricks-examples-en/18-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/18-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/18-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/18-02-4.ltx - RELOC/doc/latex/pstricks-examples-en/18-02-5.ltx - RELOC/doc/latex/pstricks-examples-en/18-02-6.ltx - RELOC/doc/latex/pstricks-examples-en/18-02-7.ltx - RELOC/doc/latex/pstricks-examples-en/18-02-8.ltx - RELOC/doc/latex/pstricks-examples-en/18-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/18-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/18-03-3.ltx - RELOC/doc/latex/pstricks-examples-en/18-03-4.ltx - RELOC/doc/latex/pstricks-examples-en/18-03-5.ltx - RELOC/doc/latex/pstricks-examples-en/19-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/19-01-10.ltx - RELOC/doc/latex/pstricks-examples-en/19-01-11.ltx - RELOC/doc/latex/pstricks-examples-en/19-01-12.ltx - RELOC/doc/latex/pstricks-examples-en/19-01-13.ltx - RELOC/doc/latex/pstricks-examples-en/19-01-14.ltx - RELOC/doc/latex/pstricks-examples-en/19-01-15.ltx - RELOC/doc/latex/pstricks-examples-en/19-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/19-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/19-01-4.ltx - RELOC/doc/latex/pstricks-examples-en/19-01-5.ltx - RELOC/doc/latex/pstricks-examples-en/19-01-6.ltx - RELOC/doc/latex/pstricks-examples-en/19-01-7.ltx - RELOC/doc/latex/pstricks-examples-en/19-01-8.ltx - RELOC/doc/latex/pstricks-examples-en/19-01-9.ltx - RELOC/doc/latex/pstricks-examples-en/19-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/19-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/19-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/19-02-4.ltx - RELOC/doc/latex/pstricks-examples-en/19-02-5.ltx - RELOC/doc/latex/pstricks-examples-en/19-02-6.ltx - RELOC/doc/latex/pstricks-examples-en/19-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/19-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/19-03-3.ltx - RELOC/doc/latex/pstricks-examples-en/19-03-4.ltx - RELOC/doc/latex/pstricks-examples-en/19-03-5.ltx - RELOC/doc/latex/pstricks-examples-en/19-04-1.ltx - RELOC/doc/latex/pstricks-examples-en/19-04-2.ltx - RELOC/doc/latex/pstricks-examples-en/19-04-3.ltx - RELOC/doc/latex/pstricks-examples-en/20-00-1.ltx - RELOC/doc/latex/pstricks-examples-en/20-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/20-01-10.ltx - RELOC/doc/latex/pstricks-examples-en/20-01-11.ltx - RELOC/doc/latex/pstricks-examples-en/20-01-12.ltx - RELOC/doc/latex/pstricks-examples-en/20-01-13.ltx - RELOC/doc/latex/pstricks-examples-en/20-01-14.ltx - RELOC/doc/latex/pstricks-examples-en/20-01-15.ltx - RELOC/doc/latex/pstricks-examples-en/20-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/20-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/20-01-4.ltx - RELOC/doc/latex/pstricks-examples-en/20-01-5.ltx - RELOC/doc/latex/pstricks-examples-en/20-01-6.ltx - RELOC/doc/latex/pstricks-examples-en/20-01-7.ltx - RELOC/doc/latex/pstricks-examples-en/20-01-8.ltx - RELOC/doc/latex/pstricks-examples-en/20-01-9.ltx - RELOC/doc/latex/pstricks-examples-en/20-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/20-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/20-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/20-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/20-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/20-03-3.ltx - RELOC/doc/latex/pstricks-examples-en/20-03-4.ltx - RELOC/doc/latex/pstricks-examples-en/20-03-5.ltx - RELOC/doc/latex/pstricks-examples-en/20-04-1.ltx - RELOC/doc/latex/pstricks-examples-en/20-04-2.ltx - RELOC/doc/latex/pstricks-examples-en/20-04-3.ltx - RELOC/doc/latex/pstricks-examples-en/21-00-1.ltx - RELOC/doc/latex/pstricks-examples-en/21-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/21-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/21-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/21-01-4.ltx - RELOC/doc/latex/pstricks-examples-en/21-01-5.ltx - RELOC/doc/latex/pstricks-examples-en/21-01-6.ltx - RELOC/doc/latex/pstricks-examples-en/21-01-7.ltx - RELOC/doc/latex/pstricks-examples-en/21-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/21-02-10.ltx - RELOC/doc/latex/pstricks-examples-en/21-02-11.ltx - RELOC/doc/latex/pstricks-examples-en/21-02-12.ltx - RELOC/doc/latex/pstricks-examples-en/21-02-13.ltx - RELOC/doc/latex/pstricks-examples-en/21-02-14.ltx - RELOC/doc/latex/pstricks-examples-en/21-02-15.ltx - RELOC/doc/latex/pstricks-examples-en/21-02-16.ltx - RELOC/doc/latex/pstricks-examples-en/21-02-17.ltx - RELOC/doc/latex/pstricks-examples-en/21-02-18.ltx - RELOC/doc/latex/pstricks-examples-en/21-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/21-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/21-02-4.ltx - RELOC/doc/latex/pstricks-examples-en/21-02-5.ltx - RELOC/doc/latex/pstricks-examples-en/21-02-6.ltx - RELOC/doc/latex/pstricks-examples-en/21-02-7.ltx - RELOC/doc/latex/pstricks-examples-en/21-02-8.ltx - RELOC/doc/latex/pstricks-examples-en/21-02-9.ltx - RELOC/doc/latex/pstricks-examples-en/21-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/21-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/21-03-3.ltx - RELOC/doc/latex/pstricks-examples-en/21-03-4.ltx - RELOC/doc/latex/pstricks-examples-en/21-03-5.ltx - RELOC/doc/latex/pstricks-examples-en/21-04-1.ltx - RELOC/doc/latex/pstricks-examples-en/21-04-2.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-10.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-11.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-12.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-13.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-14.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-15.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-16.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-17.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-18.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-19.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-20.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-21.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-22.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-23.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-24.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-25.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-4.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-5.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-6.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-7.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-8.ltx - RELOC/doc/latex/pstricks-examples-en/22-01-9.ltx - RELOC/doc/latex/pstricks-examples-en/22-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/22-02-10.ltx - RELOC/doc/latex/pstricks-examples-en/22-02-11.ltx - RELOC/doc/latex/pstricks-examples-en/22-02-12.ltx - RELOC/doc/latex/pstricks-examples-en/22-02-13.ltx - RELOC/doc/latex/pstricks-examples-en/22-02-14.ltx - RELOC/doc/latex/pstricks-examples-en/22-02-15.ltx - RELOC/doc/latex/pstricks-examples-en/22-02-16.ltx - RELOC/doc/latex/pstricks-examples-en/22-02-17.ltx - RELOC/doc/latex/pstricks-examples-en/22-02-18.ltx - RELOC/doc/latex/pstricks-examples-en/22-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/22-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/22-02-4.ltx - RELOC/doc/latex/pstricks-examples-en/22-02-5.ltx - RELOC/doc/latex/pstricks-examples-en/22-02-6.ltx - RELOC/doc/latex/pstricks-examples-en/22-02-7.ltx - RELOC/doc/latex/pstricks-examples-en/22-02-8.ltx - RELOC/doc/latex/pstricks-examples-en/22-02-9.ltx - RELOC/doc/latex/pstricks-examples-en/22-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/22-03-10.ltx - RELOC/doc/latex/pstricks-examples-en/22-03-11.ltx - RELOC/doc/latex/pstricks-examples-en/22-03-12.ltx - RELOC/doc/latex/pstricks-examples-en/22-03-13.ltx - RELOC/doc/latex/pstricks-examples-en/22-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/22-03-3.ltx - RELOC/doc/latex/pstricks-examples-en/22-03-4.ltx - RELOC/doc/latex/pstricks-examples-en/22-03-5.ltx - RELOC/doc/latex/pstricks-examples-en/22-03-6.ltx - RELOC/doc/latex/pstricks-examples-en/22-03-7.ltx - RELOC/doc/latex/pstricks-examples-en/22-03-8.ltx - RELOC/doc/latex/pstricks-examples-en/22-03-9.ltx - RELOC/doc/latex/pstricks-examples-en/22-04-1.ltx - RELOC/doc/latex/pstricks-examples-en/22-04-2.ltx - RELOC/doc/latex/pstricks-examples-en/22-04-3.ltx - RELOC/doc/latex/pstricks-examples-en/22-04-4.ltx - RELOC/doc/latex/pstricks-examples-en/22-04-5.ltx - RELOC/doc/latex/pstricks-examples-en/22-04-6.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-1.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-10.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-11.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-12.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-13.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-14.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-15.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-16.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-17.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-18.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-19.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-2.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-20.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-21.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-22.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-23.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-24.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-25.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-26.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-27.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-28.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-29.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-3.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-30.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-31.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-32.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-33.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-34.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-35.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-36.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-37.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-38.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-39.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-4.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-40.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-41.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-42.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-43.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-44.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-45.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-46.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-47.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-48.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-49.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-5.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-50.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-51.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-52.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-53.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-54.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-55.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-56.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-57.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-58.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-59.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-6.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-7.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-8.ltx - RELOC/doc/latex/pstricks-examples-en/22-05-9.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-1.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-10.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-11.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-12.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-13.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-14.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-15.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-16.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-17.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-18.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-19.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-2.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-20.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-21.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-22.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-23.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-24.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-25.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-26.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-27.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-28.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-29.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-3.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-30.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-31.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-32.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-33.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-34.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-35.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-36.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-37.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-38.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-39.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-4.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-40.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-41.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-42.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-43.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-44.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-45.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-46.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-47.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-48.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-49.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-5.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-50.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-51.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-52.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-53.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-54.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-55.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-56.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-57.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-58.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-59.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-6.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-60.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-61.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-62.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-63.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-64.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-65.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-66.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-67.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-68.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-69.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-7.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-70.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-71.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-72.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-73.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-74.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-75.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-76.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-77.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-78.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-79.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-8.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-80.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-81.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-82.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-83.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-84.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-85.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-86.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-87.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-88.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-89.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-9.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-90.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-91.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-92.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-93.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-94.ltx - RELOC/doc/latex/pstricks-examples-en/22-06-95.ltx - RELOC/doc/latex/pstricks-examples-en/22-07-1.ltx - RELOC/doc/latex/pstricks-examples-en/22-07-2.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-10.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-11.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-12.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-13.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-14.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-15.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-16.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-17.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-18.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-19.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-20.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-21.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-22.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-23.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-24.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-25.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-4.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-5.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-6.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-7.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-8.ltx - RELOC/doc/latex/pstricks-examples-en/23-01-9.ltx - RELOC/doc/latex/pstricks-examples-en/23-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/23-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/23-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/23-02-4.ltx - RELOC/doc/latex/pstricks-examples-en/23-02-5.ltx - RELOC/doc/latex/pstricks-examples-en/23-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/23-03-10.ltx - RELOC/doc/latex/pstricks-examples-en/23-03-11.ltx - RELOC/doc/latex/pstricks-examples-en/23-03-12.ltx - RELOC/doc/latex/pstricks-examples-en/23-03-13.ltx - RELOC/doc/latex/pstricks-examples-en/23-03-14.inl - RELOC/doc/latex/pstricks-examples-en/23-03-15.inl - RELOC/doc/latex/pstricks-examples-en/23-03-16.inl - RELOC/doc/latex/pstricks-examples-en/23-03-17.inl - RELOC/doc/latex/pstricks-examples-en/23-03-18.inl - RELOC/doc/latex/pstricks-examples-en/23-03-19.inl - RELOC/doc/latex/pstricks-examples-en/23-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/23-03-20.inl - RELOC/doc/latex/pstricks-examples-en/23-03-21.inl - RELOC/doc/latex/pstricks-examples-en/23-03-22.inl - RELOC/doc/latex/pstricks-examples-en/23-03-23.inl - RELOC/doc/latex/pstricks-examples-en/23-03-24.inl - RELOC/doc/latex/pstricks-examples-en/23-03-25.inl - RELOC/doc/latex/pstricks-examples-en/23-03-26.inl - RELOC/doc/latex/pstricks-examples-en/23-03-27.inl - RELOC/doc/latex/pstricks-examples-en/23-03-28.inl - RELOC/doc/latex/pstricks-examples-en/23-03-29.ltx - RELOC/doc/latex/pstricks-examples-en/23-03-3.ltx - RELOC/doc/latex/pstricks-examples-en/23-03-30.inl - RELOC/doc/latex/pstricks-examples-en/23-03-31.inl - RELOC/doc/latex/pstricks-examples-en/23-03-32.inl - RELOC/doc/latex/pstricks-examples-en/23-03-33.inl - RELOC/doc/latex/pstricks-examples-en/23-03-34.inl - RELOC/doc/latex/pstricks-examples-en/23-03-35.inl - RELOC/doc/latex/pstricks-examples-en/23-03-36.inl - RELOC/doc/latex/pstricks-examples-en/23-03-37.inl - RELOC/doc/latex/pstricks-examples-en/23-03-38.inl - RELOC/doc/latex/pstricks-examples-en/23-03-39.inl - RELOC/doc/latex/pstricks-examples-en/23-03-4.ltx - RELOC/doc/latex/pstricks-examples-en/23-03-40.inl - RELOC/doc/latex/pstricks-examples-en/23-03-41.ltx - RELOC/doc/latex/pstricks-examples-en/23-03-42.ltx - RELOC/doc/latex/pstricks-examples-en/23-03-43.ltx - RELOC/doc/latex/pstricks-examples-en/23-03-44.inl - RELOC/doc/latex/pstricks-examples-en/23-03-45.inl - RELOC/doc/latex/pstricks-examples-en/23-03-46.inl - RELOC/doc/latex/pstricks-examples-en/23-03-47.inl - RELOC/doc/latex/pstricks-examples-en/23-03-48.inl - RELOC/doc/latex/pstricks-examples-en/23-03-49.inl - RELOC/doc/latex/pstricks-examples-en/23-03-5.ltx - RELOC/doc/latex/pstricks-examples-en/23-03-50.inl - RELOC/doc/latex/pstricks-examples-en/23-03-51.inl - RELOC/doc/latex/pstricks-examples-en/23-03-52.inl - RELOC/doc/latex/pstricks-examples-en/23-03-53.inl - RELOC/doc/latex/pstricks-examples-en/23-03-54.inl - RELOC/doc/latex/pstricks-examples-en/23-03-55.inl - RELOC/doc/latex/pstricks-examples-en/23-03-56.inl - RELOC/doc/latex/pstricks-examples-en/23-03-57.inl - RELOC/doc/latex/pstricks-examples-en/23-03-58.inl - RELOC/doc/latex/pstricks-examples-en/23-03-59.inl - RELOC/doc/latex/pstricks-examples-en/23-03-6.ltx - RELOC/doc/latex/pstricks-examples-en/23-03-60.inl - RELOC/doc/latex/pstricks-examples-en/23-03-61.inl - RELOC/doc/latex/pstricks-examples-en/23-03-62.inl - RELOC/doc/latex/pstricks-examples-en/23-03-63.inl - RELOC/doc/latex/pstricks-examples-en/23-03-64.inl - RELOC/doc/latex/pstricks-examples-en/23-03-65.inl - RELOC/doc/latex/pstricks-examples-en/23-03-66.inl - RELOC/doc/latex/pstricks-examples-en/23-03-67.inl - RELOC/doc/latex/pstricks-examples-en/23-03-68.inl - RELOC/doc/latex/pstricks-examples-en/23-03-69.inl - RELOC/doc/latex/pstricks-examples-en/23-03-7.ltx - RELOC/doc/latex/pstricks-examples-en/23-03-70.inl - RELOC/doc/latex/pstricks-examples-en/23-03-71.inl - RELOC/doc/latex/pstricks-examples-en/23-03-72.inl - RELOC/doc/latex/pstricks-examples-en/23-03-73.inl - RELOC/doc/latex/pstricks-examples-en/23-03-74.inl - RELOC/doc/latex/pstricks-examples-en/23-03-75.ltx - RELOC/doc/latex/pstricks-examples-en/23-03-76.ltx - RELOC/doc/latex/pstricks-examples-en/23-03-77.ltx - RELOC/doc/latex/pstricks-examples-en/23-03-78.ltx - RELOC/doc/latex/pstricks-examples-en/23-03-79.ltx - RELOC/doc/latex/pstricks-examples-en/23-03-8.ltx - RELOC/doc/latex/pstricks-examples-en/23-03-9.ltx - RELOC/doc/latex/pstricks-examples-en/23-04-1.ltx - RELOC/doc/latex/pstricks-examples-en/23-04-10.ltx - RELOC/doc/latex/pstricks-examples-en/23-04-11.ltx - RELOC/doc/latex/pstricks-examples-en/23-04-12.ltx - RELOC/doc/latex/pstricks-examples-en/23-04-13.ltx - RELOC/doc/latex/pstricks-examples-en/23-04-14.ltx - RELOC/doc/latex/pstricks-examples-en/23-04-15.ltx - RELOC/doc/latex/pstricks-examples-en/23-04-16.ltx - RELOC/doc/latex/pstricks-examples-en/23-04-17.ltx - RELOC/doc/latex/pstricks-examples-en/23-04-18.ltx - RELOC/doc/latex/pstricks-examples-en/23-04-19.ltx - RELOC/doc/latex/pstricks-examples-en/23-04-2.ltx - RELOC/doc/latex/pstricks-examples-en/23-04-20.ltx - RELOC/doc/latex/pstricks-examples-en/23-04-21.ltx - RELOC/doc/latex/pstricks-examples-en/23-04-22.ltx - RELOC/doc/latex/pstricks-examples-en/23-04-23.ltx - RELOC/doc/latex/pstricks-examples-en/23-04-3.ltx - RELOC/doc/latex/pstricks-examples-en/23-04-4.ltx - RELOC/doc/latex/pstricks-examples-en/23-04-5.ltx - RELOC/doc/latex/pstricks-examples-en/23-04-6.ltx - RELOC/doc/latex/pstricks-examples-en/23-04-7.ltx - RELOC/doc/latex/pstricks-examples-en/23-04-8.ltx - RELOC/doc/latex/pstricks-examples-en/23-04-9.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-1.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-10.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-11.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-12.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-13.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-14.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-15.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-16.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-17.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-18.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-19.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-2.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-20.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-21.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-22.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-23.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-24.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-25.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-26.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-27.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-28.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-29.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-3.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-30.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-31.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-32.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-33.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-34.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-35.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-36.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-37.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-38.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-39.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-4.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-40.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-41.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-42.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-43.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-44.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-45.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-46.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-47.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-48.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-49.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-5.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-50.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-51.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-52.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-53.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-54.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-55.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-56.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-57.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-58.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-59.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-6.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-7.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-8.ltx - RELOC/doc/latex/pstricks-examples-en/23-05-9.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-1.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-10.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-11.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-12.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-13.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-14.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-15.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-16.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-17.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-18.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-19.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-2.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-20.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-21.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-22.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-23.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-24.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-25.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-26.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-27.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-28.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-29.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-3.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-30.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-31.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-32.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-33.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-34.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-35.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-36.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-37.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-38.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-39.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-4.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-40.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-41.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-42.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-43.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-44.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-45.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-46.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-47.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-48.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-49.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-5.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-50.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-51.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-52.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-53.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-54.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-55.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-56.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-57.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-58.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-59.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-6.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-60.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-61.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-62.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-63.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-64.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-65.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-66.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-67.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-68.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-69.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-7.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-70.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-71.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-72.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-73.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-74.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-75.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-76.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-77.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-78.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-79.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-8.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-80.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-81.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-82.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-83.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-84.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-85.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-86.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-87.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-88.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-89.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-9.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-90.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-91.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-92.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-93.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-94.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-95.ltx - RELOC/doc/latex/pstricks-examples-en/23-06-96.ltx - RELOC/doc/latex/pstricks-examples-en/23-07-1.ltx - RELOC/doc/latex/pstricks-examples-en/23-07-10.ltx - RELOC/doc/latex/pstricks-examples-en/23-07-11.ltx - RELOC/doc/latex/pstricks-examples-en/23-07-12.ltx - RELOC/doc/latex/pstricks-examples-en/23-07-13.ltx - RELOC/doc/latex/pstricks-examples-en/23-07-14.ltx - RELOC/doc/latex/pstricks-examples-en/23-07-15.ltx - RELOC/doc/latex/pstricks-examples-en/23-07-16.ltx - RELOC/doc/latex/pstricks-examples-en/23-07-17.ltx - RELOC/doc/latex/pstricks-examples-en/23-07-18.ltx - RELOC/doc/latex/pstricks-examples-en/23-07-19.ltx - RELOC/doc/latex/pstricks-examples-en/23-07-2.ltx - RELOC/doc/latex/pstricks-examples-en/23-07-20.ltx - RELOC/doc/latex/pstricks-examples-en/23-07-3.ltx - RELOC/doc/latex/pstricks-examples-en/23-07-4.ltx - RELOC/doc/latex/pstricks-examples-en/23-07-5.ltx - RELOC/doc/latex/pstricks-examples-en/23-07-6.ltx - RELOC/doc/latex/pstricks-examples-en/23-07-7.ltx - RELOC/doc/latex/pstricks-examples-en/23-07-8.ltx - RELOC/doc/latex/pstricks-examples-en/23-07-9.ltx - RELOC/doc/latex/pstricks-examples-en/23-08-1.ltx - RELOC/doc/latex/pstricks-examples-en/23-08-2.ltx - RELOC/doc/latex/pstricks-examples-en/23-08-3.ltx - RELOC/doc/latex/pstricks-examples-en/24-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/24-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/24-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/24-02-10.ltx - RELOC/doc/latex/pstricks-examples-en/24-02-11.ltx - RELOC/doc/latex/pstricks-examples-en/24-02-12.ltx - RELOC/doc/latex/pstricks-examples-en/24-02-13.ltx - RELOC/doc/latex/pstricks-examples-en/24-02-14.ltx - RELOC/doc/latex/pstricks-examples-en/24-02-15.ltx - RELOC/doc/latex/pstricks-examples-en/24-02-16.ltx - RELOC/doc/latex/pstricks-examples-en/24-02-17.ltx - RELOC/doc/latex/pstricks-examples-en/24-02-18.ltx - RELOC/doc/latex/pstricks-examples-en/24-02-19.ltx - RELOC/doc/latex/pstricks-examples-en/24-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/24-02-20.ltx - RELOC/doc/latex/pstricks-examples-en/24-02-21.ltx - RELOC/doc/latex/pstricks-examples-en/24-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/24-02-4.ltx - RELOC/doc/latex/pstricks-examples-en/24-02-5.ltx - RELOC/doc/latex/pstricks-examples-en/24-02-6.ltx - RELOC/doc/latex/pstricks-examples-en/24-02-7.ltx - RELOC/doc/latex/pstricks-examples-en/24-02-8.ltx - RELOC/doc/latex/pstricks-examples-en/24-02-9.ltx - RELOC/doc/latex/pstricks-examples-en/24-03-1.inl - RELOC/doc/latex/pstricks-examples-en/24-03-10.inl - RELOC/doc/latex/pstricks-examples-en/24-03-11.inl - RELOC/doc/latex/pstricks-examples-en/24-03-12.inl - RELOC/doc/latex/pstricks-examples-en/24-03-13.inl - RELOC/doc/latex/pstricks-examples-en/24-03-14.inl - RELOC/doc/latex/pstricks-examples-en/24-03-15.inl - RELOC/doc/latex/pstricks-examples-en/24-03-16.inl - RELOC/doc/latex/pstricks-examples-en/24-03-17.inl - RELOC/doc/latex/pstricks-examples-en/24-03-18.inl - RELOC/doc/latex/pstricks-examples-en/24-03-19.inl - RELOC/doc/latex/pstricks-examples-en/24-03-2.inl - RELOC/doc/latex/pstricks-examples-en/24-03-20.inl - RELOC/doc/latex/pstricks-examples-en/24-03-21.inl - RELOC/doc/latex/pstricks-examples-en/24-03-22.inl - RELOC/doc/latex/pstricks-examples-en/24-03-23.inl - RELOC/doc/latex/pstricks-examples-en/24-03-24.inl - RELOC/doc/latex/pstricks-examples-en/24-03-25.inl - RELOC/doc/latex/pstricks-examples-en/24-03-26.inl - RELOC/doc/latex/pstricks-examples-en/24-03-27.inl - RELOC/doc/latex/pstricks-examples-en/24-03-28.inl - RELOC/doc/latex/pstricks-examples-en/24-03-29.ltx - RELOC/doc/latex/pstricks-examples-en/24-03-3.inl - RELOC/doc/latex/pstricks-examples-en/24-03-30.inl - RELOC/doc/latex/pstricks-examples-en/24-03-31.inl - RELOC/doc/latex/pstricks-examples-en/24-03-32.inl - RELOC/doc/latex/pstricks-examples-en/24-03-33.inl - RELOC/doc/latex/pstricks-examples-en/24-03-34.inl - RELOC/doc/latex/pstricks-examples-en/24-03-35.inl - RELOC/doc/latex/pstricks-examples-en/24-03-36.inl - RELOC/doc/latex/pstricks-examples-en/24-03-37.inl - RELOC/doc/latex/pstricks-examples-en/24-03-38.inl - RELOC/doc/latex/pstricks-examples-en/24-03-39.inl - RELOC/doc/latex/pstricks-examples-en/24-03-4.inl - RELOC/doc/latex/pstricks-examples-en/24-03-40.inl - RELOC/doc/latex/pstricks-examples-en/24-03-41.ltx - RELOC/doc/latex/pstricks-examples-en/24-03-42.ltx - RELOC/doc/latex/pstricks-examples-en/24-03-43.ltx - RELOC/doc/latex/pstricks-examples-en/24-03-44.inl - RELOC/doc/latex/pstricks-examples-en/24-03-45.inl - RELOC/doc/latex/pstricks-examples-en/24-03-46.inl - RELOC/doc/latex/pstricks-examples-en/24-03-47.inl - RELOC/doc/latex/pstricks-examples-en/24-03-48.inl - RELOC/doc/latex/pstricks-examples-en/24-03-49.inl - RELOC/doc/latex/pstricks-examples-en/24-03-5.inl - RELOC/doc/latex/pstricks-examples-en/24-03-50.inl - RELOC/doc/latex/pstricks-examples-en/24-03-51.inl - RELOC/doc/latex/pstricks-examples-en/24-03-52.inl - RELOC/doc/latex/pstricks-examples-en/24-03-53.inl - RELOC/doc/latex/pstricks-examples-en/24-03-54.inl - RELOC/doc/latex/pstricks-examples-en/24-03-55.inl - RELOC/doc/latex/pstricks-examples-en/24-03-56.inl - RELOC/doc/latex/pstricks-examples-en/24-03-57.inl - RELOC/doc/latex/pstricks-examples-en/24-03-58.inl - RELOC/doc/latex/pstricks-examples-en/24-03-59.inl - RELOC/doc/latex/pstricks-examples-en/24-03-6.inl - RELOC/doc/latex/pstricks-examples-en/24-03-60.inl - RELOC/doc/latex/pstricks-examples-en/24-03-61.inl - RELOC/doc/latex/pstricks-examples-en/24-03-62.inl - RELOC/doc/latex/pstricks-examples-en/24-03-63.inl - RELOC/doc/latex/pstricks-examples-en/24-03-64.inl - RELOC/doc/latex/pstricks-examples-en/24-03-65.inl - RELOC/doc/latex/pstricks-examples-en/24-03-66.inl - RELOC/doc/latex/pstricks-examples-en/24-03-67.inl - RELOC/doc/latex/pstricks-examples-en/24-03-68.inl - RELOC/doc/latex/pstricks-examples-en/24-03-69.inl - RELOC/doc/latex/pstricks-examples-en/24-03-7.inl - RELOC/doc/latex/pstricks-examples-en/24-03-70.inl - RELOC/doc/latex/pstricks-examples-en/24-03-71.inl - RELOC/doc/latex/pstricks-examples-en/24-03-72.inl - RELOC/doc/latex/pstricks-examples-en/24-03-73.inl - RELOC/doc/latex/pstricks-examples-en/24-03-74.inl - RELOC/doc/latex/pstricks-examples-en/24-03-75.ltx - RELOC/doc/latex/pstricks-examples-en/24-03-76.ltx - RELOC/doc/latex/pstricks-examples-en/24-03-77.ltx - RELOC/doc/latex/pstricks-examples-en/24-03-78.ltx - RELOC/doc/latex/pstricks-examples-en/24-03-79.ltx - RELOC/doc/latex/pstricks-examples-en/24-03-8.inl - RELOC/doc/latex/pstricks-examples-en/24-03-80.ltx - RELOC/doc/latex/pstricks-examples-en/24-03-9.inl - RELOC/doc/latex/pstricks-examples-en/24-04-1.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-10.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-11.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-12.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-13.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-14.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-15.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-16.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-17.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-18.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-19.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-2.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-20.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-21.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-22.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-23.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-24.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-25.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-26.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-27.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-28.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-29.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-3.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-4.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-5.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-6.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-7.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-8.ltx - RELOC/doc/latex/pstricks-examples-en/24-04-9.ltx - RELOC/doc/latex/pstricks-examples-en/24-05-1.ltx - RELOC/doc/latex/pstricks-examples-en/24-05-2.ltx - RELOC/doc/latex/pstricks-examples-en/24-05-3.ltx - RELOC/doc/latex/pstricks-examples-en/24-05-4.ltx - RELOC/doc/latex/pstricks-examples-en/24-06-1.ltx - RELOC/doc/latex/pstricks-examples-en/24-07-1.ltx - RELOC/doc/latex/pstricks-examples-en/24-07-2.ltx - RELOC/doc/latex/pstricks-examples-en/24-08-1.ltx - RELOC/doc/latex/pstricks-examples-en/24-08-2.ltx - RELOC/doc/latex/pstricks-examples-en/24-08-3.ltx - RELOC/doc/latex/pstricks-examples-en/25-01-1.ltx2ps - RELOC/doc/latex/pstricks-examples-en/25-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/25-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/25-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/25-02-10.ltx - RELOC/doc/latex/pstricks-examples-en/25-02-11.ltx - RELOC/doc/latex/pstricks-examples-en/25-02-12.ltx - RELOC/doc/latex/pstricks-examples-en/25-02-13.ltx - RELOC/doc/latex/pstricks-examples-en/25-02-14.ltx - RELOC/doc/latex/pstricks-examples-en/25-02-15.ltx - RELOC/doc/latex/pstricks-examples-en/25-02-16.ltx - RELOC/doc/latex/pstricks-examples-en/25-02-17.ltx - RELOC/doc/latex/pstricks-examples-en/25-02-18.ltx - RELOC/doc/latex/pstricks-examples-en/25-02-19.ltx - RELOC/doc/latex/pstricks-examples-en/25-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/25-02-20.ltx - RELOC/doc/latex/pstricks-examples-en/25-02-21.ltx - RELOC/doc/latex/pstricks-examples-en/25-02-22.ltx2ps - RELOC/doc/latex/pstricks-examples-en/25-02-23.ltx2ps - RELOC/doc/latex/pstricks-examples-en/25-02-24.ltx2ps - RELOC/doc/latex/pstricks-examples-en/25-02-25.ltx2ps - RELOC/doc/latex/pstricks-examples-en/25-02-26.ltx2ps - RELOC/doc/latex/pstricks-examples-en/25-02-27.ltx2ps - RELOC/doc/latex/pstricks-examples-en/25-02-28.ltx2ps - RELOC/doc/latex/pstricks-examples-en/25-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/25-02-4.ltx - RELOC/doc/latex/pstricks-examples-en/25-02-5.ltx - RELOC/doc/latex/pstricks-examples-en/25-02-6.ltx - RELOC/doc/latex/pstricks-examples-en/25-02-7.ltx - RELOC/doc/latex/pstricks-examples-en/25-02-8.ltx - RELOC/doc/latex/pstricks-examples-en/25-02-9.ltx - RELOC/doc/latex/pstricks-examples-en/25-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/25-04-1.ltx - RELOC/doc/latex/pstricks-examples-en/25-04-2.ltx - RELOC/doc/latex/pstricks-examples-en/25-04-3.ltx - RELOC/doc/latex/pstricks-examples-en/25-04-4.ltx - RELOC/doc/latex/pstricks-examples-en/25-04-5.ltx - RELOC/doc/latex/pstricks-examples-en/25-04-6.ltx - RELOC/doc/latex/pstricks-examples-en/25-04-7.ltx - RELOC/doc/latex/pstricks-examples-en/25-04-8.ltx - RELOC/doc/latex/pstricks-examples-en/25-04-9.ltx - RELOC/doc/latex/pstricks-examples-en/25-05-1.ltx - RELOC/doc/latex/pstricks-examples-en/25-06-1.ltx - RELOC/doc/latex/pstricks-examples-en/25-07-1.ltx - RELOC/doc/latex/pstricks-examples-en/25-07-2.ltx - RELOC/doc/latex/pstricks-examples-en/25-07-3.ltx - RELOC/doc/latex/pstricks-examples-en/25-07-4.ltx - RELOC/doc/latex/pstricks-examples-en/25-07-5.ltx - RELOC/doc/latex/pstricks-examples-en/25-07-6.ltx - RELOC/doc/latex/pstricks-examples-en/25-08-1.ltx - RELOC/doc/latex/pstricks-examples-en/25-08-2.ltx - RELOC/doc/latex/pstricks-examples-en/25-08-3.ltx - RELOC/doc/latex/pstricks-examples-en/26-01-1.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/26-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/26-02-1.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-10.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-11.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-12.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-13.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-14.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-15.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-16.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-17.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-18.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-19.ltx - RELOC/doc/latex/pstricks-examples-en/26-02-2.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-20.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-21.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-22.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-23.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-24.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-25.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-26.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-27.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-28.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-29.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-3.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-30.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-4.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-5.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-6.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-7.ltx - RELOC/doc/latex/pstricks-examples-en/26-02-8.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-02-9.ltx2ps - RELOC/doc/latex/pstricks-examples-en/26-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/26-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/26-03-3.ltx - RELOC/doc/latex/pstricks-examples-en/26-03-4.ltx - RELOC/doc/latex/pstricks-examples-en/26-03-5.ltx - RELOC/doc/latex/pstricks-examples-en/27-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/27-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/27-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-10.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-11.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-12.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-13.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-14.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-15.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-16.ltx2ps - RELOC/doc/latex/pstricks-examples-en/27-02-17.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-18.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-19.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-20.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-21.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-22.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-23.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-24.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-25.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-26.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-27.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-28.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-29.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-30.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-31.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-32.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-33.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-34.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-35.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-36.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-37.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-38.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-39.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-4.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-40.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-41.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-5.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-6.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-7.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-8.ltx - RELOC/doc/latex/pstricks-examples-en/27-02-9.ltx - RELOC/doc/latex/pstricks-examples-en/27-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/27-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/27-03-3.ltx - RELOC/doc/latex/pstricks-examples-en/27-03-4.ltx - RELOC/doc/latex/pstricks-examples-en/27-03-5.ltx - RELOC/doc/latex/pstricks-examples-en/28-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/28-01-10.ltx - RELOC/doc/latex/pstricks-examples-en/28-01-11.ltx - RELOC/doc/latex/pstricks-examples-en/28-01-12.ltx - RELOC/doc/latex/pstricks-examples-en/28-01-13.ltx - RELOC/doc/latex/pstricks-examples-en/28-01-14.ltx - RELOC/doc/latex/pstricks-examples-en/28-01-15.ltx - RELOC/doc/latex/pstricks-examples-en/28-01-16.ltx - RELOC/doc/latex/pstricks-examples-en/28-01-17.ltx - RELOC/doc/latex/pstricks-examples-en/28-01-18.ltx - RELOC/doc/latex/pstricks-examples-en/28-01-19.ltx - RELOC/doc/latex/pstricks-examples-en/28-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/28-01-20.ltx - RELOC/doc/latex/pstricks-examples-en/28-01-21.ltx - RELOC/doc/latex/pstricks-examples-en/28-01-22.ltx - RELOC/doc/latex/pstricks-examples-en/28-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/28-01-4.ltx - RELOC/doc/latex/pstricks-examples-en/28-01-5.ltx - RELOC/doc/latex/pstricks-examples-en/28-01-6.ltx - RELOC/doc/latex/pstricks-examples-en/28-01-7.ltx - RELOC/doc/latex/pstricks-examples-en/28-01-8.ltx - RELOC/doc/latex/pstricks-examples-en/28-01-9.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-10.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-11.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-12.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-13.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-14.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-15.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-16.ltx2ps - RELOC/doc/latex/pstricks-examples-en/28-02-17.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-18.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-19.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-20.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-21.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-22.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-23.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-24.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-25.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-26.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-27.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-28.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-29.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-30.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-31.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-32.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-33.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-34.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-35.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-36.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-37.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-38.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-39.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-4.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-40.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-41.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-5.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-6.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-7.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-8.ltx - RELOC/doc/latex/pstricks-examples-en/28-02-9.ltx - RELOC/doc/latex/pstricks-examples-en/28-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/28-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/29-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/29-01-10.ltx - RELOC/doc/latex/pstricks-examples-en/29-01-11.ltx - RELOC/doc/latex/pstricks-examples-en/29-01-12.ltx - RELOC/doc/latex/pstricks-examples-en/29-01-13.ltx - RELOC/doc/latex/pstricks-examples-en/29-01-14.ltx - RELOC/doc/latex/pstricks-examples-en/29-01-15.ltx - RELOC/doc/latex/pstricks-examples-en/29-01-16.ltx - RELOC/doc/latex/pstricks-examples-en/29-01-17.ltx - RELOC/doc/latex/pstricks-examples-en/29-01-18.ltx - RELOC/doc/latex/pstricks-examples-en/29-01-19.ltx - RELOC/doc/latex/pstricks-examples-en/29-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/29-01-20.ltx - RELOC/doc/latex/pstricks-examples-en/29-01-21.ltx - RELOC/doc/latex/pstricks-examples-en/29-01-22.ltx - RELOC/doc/latex/pstricks-examples-en/29-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/29-01-4.ltx - RELOC/doc/latex/pstricks-examples-en/29-01-5.ltx - RELOC/doc/latex/pstricks-examples-en/29-01-6.ltx - RELOC/doc/latex/pstricks-examples-en/29-01-7.ltx - RELOC/doc/latex/pstricks-examples-en/29-01-8.ltx - RELOC/doc/latex/pstricks-examples-en/29-01-9.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-10.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-11.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-12.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-13.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-14.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-15.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-16.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-17.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-18.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-19.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-20.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-21.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-22.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-23.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-24.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-25.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-26.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-27.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-28.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-29.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-30.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-4.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-5.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-6.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-7.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-8.ltx - RELOC/doc/latex/pstricks-examples-en/29-02-9.ltx - RELOC/doc/latex/pstricks-examples-en/29-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/29-03-10.ltx - RELOC/doc/latex/pstricks-examples-en/29-03-11.ltx - RELOC/doc/latex/pstricks-examples-en/29-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/29-03-3.ltx - RELOC/doc/latex/pstricks-examples-en/29-03-4.ltx - RELOC/doc/latex/pstricks-examples-en/29-03-5.ltx - RELOC/doc/latex/pstricks-examples-en/29-03-6.ltx - RELOC/doc/latex/pstricks-examples-en/29-03-7.ltx - RELOC/doc/latex/pstricks-examples-en/29-03-8.ltx - RELOC/doc/latex/pstricks-examples-en/29-03-9.ltx - RELOC/doc/latex/pstricks-examples-en/29-04-1.ltx - RELOC/doc/latex/pstricks-examples-en/29-04-10.ltx - RELOC/doc/latex/pstricks-examples-en/29-04-11.ltx - RELOC/doc/latex/pstricks-examples-en/29-04-12.ltx - RELOC/doc/latex/pstricks-examples-en/29-04-13.ltx - RELOC/doc/latex/pstricks-examples-en/29-04-14.ltx - RELOC/doc/latex/pstricks-examples-en/29-04-15.ltx - RELOC/doc/latex/pstricks-examples-en/29-04-16.ltx - RELOC/doc/latex/pstricks-examples-en/29-04-17.ltx - RELOC/doc/latex/pstricks-examples-en/29-04-18.ltx - RELOC/doc/latex/pstricks-examples-en/29-04-19.ltx - RELOC/doc/latex/pstricks-examples-en/29-04-2.ltx - RELOC/doc/latex/pstricks-examples-en/29-04-20.ltx - RELOC/doc/latex/pstricks-examples-en/29-04-21.ltx - RELOC/doc/latex/pstricks-examples-en/29-04-22.ltx - RELOC/doc/latex/pstricks-examples-en/29-04-3.ltx - RELOC/doc/latex/pstricks-examples-en/29-04-4.ltx - RELOC/doc/latex/pstricks-examples-en/29-04-5.ltx - RELOC/doc/latex/pstricks-examples-en/29-04-6.ltx - RELOC/doc/latex/pstricks-examples-en/29-04-7.ltx - RELOC/doc/latex/pstricks-examples-en/29-04-8.ltx - RELOC/doc/latex/pstricks-examples-en/29-04-9.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-10.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-11.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-12.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-13.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-14.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-15.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-16.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-17.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-18.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-19.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-20.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-21.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-22.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-23.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-24.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-25.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-26.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-27.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-28.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-4.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-5.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-6.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-7.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-8.ltx - RELOC/doc/latex/pstricks-examples-en/30-01-9.ltx - RELOC/doc/latex/pstricks-examples-en/30-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/30-02-10.ltx - RELOC/doc/latex/pstricks-examples-en/30-02-11.ltx - RELOC/doc/latex/pstricks-examples-en/30-02-12.ltx - RELOC/doc/latex/pstricks-examples-en/30-02-13.ltx - RELOC/doc/latex/pstricks-examples-en/30-02-14.ltx - RELOC/doc/latex/pstricks-examples-en/30-02-15.ltx - RELOC/doc/latex/pstricks-examples-en/30-02-16.ltx - RELOC/doc/latex/pstricks-examples-en/30-02-17.ltx - RELOC/doc/latex/pstricks-examples-en/30-02-18.ltx - RELOC/doc/latex/pstricks-examples-en/30-02-19.ltx - RELOC/doc/latex/pstricks-examples-en/30-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/30-02-20.ltx - RELOC/doc/latex/pstricks-examples-en/30-02-21.ltx - RELOC/doc/latex/pstricks-examples-en/30-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/30-02-4.ltx - RELOC/doc/latex/pstricks-examples-en/30-02-5.ltx - RELOC/doc/latex/pstricks-examples-en/30-02-6.ltx - RELOC/doc/latex/pstricks-examples-en/30-02-7.ltx - RELOC/doc/latex/pstricks-examples-en/30-02-8.ltx - RELOC/doc/latex/pstricks-examples-en/30-02-9.ltx - RELOC/doc/latex/pstricks-examples-en/30-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/30-03-10.ltx - RELOC/doc/latex/pstricks-examples-en/30-03-11.ltx - RELOC/doc/latex/pstricks-examples-en/30-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/30-03-3.ltx - RELOC/doc/latex/pstricks-examples-en/30-03-4.ltx - RELOC/doc/latex/pstricks-examples-en/30-03-5.ltx - RELOC/doc/latex/pstricks-examples-en/30-03-6.ltx - RELOC/doc/latex/pstricks-examples-en/30-03-7.ltx - RELOC/doc/latex/pstricks-examples-en/30-03-8.ltx - RELOC/doc/latex/pstricks-examples-en/30-03-9.ltx - RELOC/doc/latex/pstricks-examples-en/30-04-1.ltx - RELOC/doc/latex/pstricks-examples-en/30-04-10.ltx - RELOC/doc/latex/pstricks-examples-en/30-04-11.ltx - RELOC/doc/latex/pstricks-examples-en/30-04-12.ltx - RELOC/doc/latex/pstricks-examples-en/30-04-13.ltx - RELOC/doc/latex/pstricks-examples-en/30-04-14.ltx - RELOC/doc/latex/pstricks-examples-en/30-04-15.ltx - RELOC/doc/latex/pstricks-examples-en/30-04-16.ltx - RELOC/doc/latex/pstricks-examples-en/30-04-17.ltx - RELOC/doc/latex/pstricks-examples-en/30-04-18.ltx - RELOC/doc/latex/pstricks-examples-en/30-04-19.ltx - RELOC/doc/latex/pstricks-examples-en/30-04-2.ltx - RELOC/doc/latex/pstricks-examples-en/30-04-20.ltx - RELOC/doc/latex/pstricks-examples-en/30-04-21.ltx - RELOC/doc/latex/pstricks-examples-en/30-04-22.ltx - RELOC/doc/latex/pstricks-examples-en/30-04-3.ltx - RELOC/doc/latex/pstricks-examples-en/30-04-4.ltx - RELOC/doc/latex/pstricks-examples-en/30-04-5.ltx - RELOC/doc/latex/pstricks-examples-en/30-04-6.ltx - RELOC/doc/latex/pstricks-examples-en/30-04-7.ltx - RELOC/doc/latex/pstricks-examples-en/30-04-8.ltx - RELOC/doc/latex/pstricks-examples-en/30-04-9.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-10.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-11.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-12.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-13.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-14.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-15.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-16.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-17.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-18.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-19.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-20.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-21.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-22.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-23.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-24.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-25.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-26.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-27.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-28.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-4.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-5.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-6.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-7.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-8.ltx - RELOC/doc/latex/pstricks-examples-en/31-01-9.ltx - RELOC/doc/latex/pstricks-examples-en/31-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/31-02-10.ltx - RELOC/doc/latex/pstricks-examples-en/31-02-11.ltx - RELOC/doc/latex/pstricks-examples-en/31-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/31-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/31-02-4.ltx - RELOC/doc/latex/pstricks-examples-en/31-02-5.ltx - RELOC/doc/latex/pstricks-examples-en/31-02-6.ltx - RELOC/doc/latex/pstricks-examples-en/31-02-7.ltx - RELOC/doc/latex/pstricks-examples-en/31-02-8.ltx - RELOC/doc/latex/pstricks-examples-en/31-02-9.ltx - RELOC/doc/latex/pstricks-examples-en/31-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/31-03-10.ltx - RELOC/doc/latex/pstricks-examples-en/31-03-11.ltx - RELOC/doc/latex/pstricks-examples-en/31-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/31-03-3.ltx - RELOC/doc/latex/pstricks-examples-en/31-03-4.ltx - RELOC/doc/latex/pstricks-examples-en/31-03-5.ltx - RELOC/doc/latex/pstricks-examples-en/31-03-6.ltx - RELOC/doc/latex/pstricks-examples-en/31-03-7.ltx - RELOC/doc/latex/pstricks-examples-en/31-03-8.ltx - RELOC/doc/latex/pstricks-examples-en/31-03-9.ltx - RELOC/doc/latex/pstricks-examples-en/31-04-1.ltx - RELOC/doc/latex/pstricks-examples-en/31-04-2.ltx - RELOC/doc/latex/pstricks-examples-en/31-04-3.ltx - RELOC/doc/latex/pstricks-examples-en/31-04-4.ltx - RELOC/doc/latex/pstricks-examples-en/31-05-1.ltx - RELOC/doc/latex/pstricks-examples-en/31-05-2.ltx - RELOC/doc/latex/pstricks-examples-en/31-05-3.ltx - RELOC/doc/latex/pstricks-examples-en/31-05-4.ltx - RELOC/doc/latex/pstricks-examples-en/31-05-5.ltx - RELOC/doc/latex/pstricks-examples-en/32-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/32-01-10.ltx - RELOC/doc/latex/pstricks-examples-en/32-01-11.ltx - RELOC/doc/latex/pstricks-examples-en/32-01-12.ltx - RELOC/doc/latex/pstricks-examples-en/32-01-13.ltx - RELOC/doc/latex/pstricks-examples-en/32-01-14.ltx - RELOC/doc/latex/pstricks-examples-en/32-01-15.ltx - RELOC/doc/latex/pstricks-examples-en/32-01-16.ltx - RELOC/doc/latex/pstricks-examples-en/32-01-17.ltx - RELOC/doc/latex/pstricks-examples-en/32-01-18.ltx - RELOC/doc/latex/pstricks-examples-en/32-01-19.ltx - RELOC/doc/latex/pstricks-examples-en/32-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/32-01-20.ltx - RELOC/doc/latex/pstricks-examples-en/32-01-21.ltx - RELOC/doc/latex/pstricks-examples-en/32-01-22.ltx - RELOC/doc/latex/pstricks-examples-en/32-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/32-01-4.ltx - RELOC/doc/latex/pstricks-examples-en/32-01-5.ltx - RELOC/doc/latex/pstricks-examples-en/32-01-6.ltx - RELOC/doc/latex/pstricks-examples-en/32-01-7.ltx - RELOC/doc/latex/pstricks-examples-en/32-01-8.ltx - RELOC/doc/latex/pstricks-examples-en/32-01-9.ltx - RELOC/doc/latex/pstricks-examples-en/32-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/32-02-10.ltx - RELOC/doc/latex/pstricks-examples-en/32-02-11.ltx - RELOC/doc/latex/pstricks-examples-en/32-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/32-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/32-02-4.ltx - RELOC/doc/latex/pstricks-examples-en/32-02-5.ltx - RELOC/doc/latex/pstricks-examples-en/32-02-6.ltx - RELOC/doc/latex/pstricks-examples-en/32-02-7.ltx - RELOC/doc/latex/pstricks-examples-en/32-02-8.ltx - RELOC/doc/latex/pstricks-examples-en/32-02-9.ltx - RELOC/doc/latex/pstricks-examples-en/33-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/33-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/33-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/33-01-4.ltx - RELOC/doc/latex/pstricks-examples-en/33-01-5.ltx - RELOC/doc/latex/pstricks-examples-en/33-01-6.ltx - RELOC/doc/latex/pstricks-examples-en/33-01-7.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-10.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-11.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-12.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-13.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-14.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-15.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-16.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-17.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-18.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-19.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-20.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-21.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-22.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-23.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-24.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-25.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-26.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-27.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-28.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-29.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-30.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-31.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-32.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-33.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-34.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-35.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-36.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-37.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-38.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-39.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-4.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-40.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-41.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-42.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-43.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-44.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-45.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-46.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-5.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-6.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-7.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-8.ltx - RELOC/doc/latex/pstricks-examples-en/33-02-9.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-10.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-11.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-12.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-13.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-14.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-15.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-16.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-17.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-18.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-19.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-20.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-21.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-22.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-23.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-24.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-25.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-26.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-27.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-28.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-29.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-3.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-30.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-31.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-32.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-33.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-34.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-35.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-36.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-37.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-38.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-39.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-4.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-40.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-41.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-42.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-43.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-44.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-45.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-46.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-47.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-48.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-49.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-5.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-50.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-51.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-52.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-53.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-54.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-55.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-56.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-57.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-58.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-59.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-6.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-60.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-61.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-62.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-63.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-64.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-65.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-7.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-8.ltx - RELOC/doc/latex/pstricks-examples-en/33-03-9.ltx - RELOC/doc/latex/pstricks-examples-en/33-04-1.ltx - RELOC/doc/latex/pstricks-examples-en/33-04-10.inl - RELOC/doc/latex/pstricks-examples-en/33-04-11.inl - RELOC/doc/latex/pstricks-examples-en/33-04-12.inl - RELOC/doc/latex/pstricks-examples-en/33-04-13.inl - RELOC/doc/latex/pstricks-examples-en/33-04-14.inl - RELOC/doc/latex/pstricks-examples-en/33-04-15.inl - RELOC/doc/latex/pstricks-examples-en/33-04-16.inl - RELOC/doc/latex/pstricks-examples-en/33-04-17.inl - RELOC/doc/latex/pstricks-examples-en/33-04-18.inl - RELOC/doc/latex/pstricks-examples-en/33-04-19.inl - RELOC/doc/latex/pstricks-examples-en/33-04-2.ltx - RELOC/doc/latex/pstricks-examples-en/33-04-20.inl - RELOC/doc/latex/pstricks-examples-en/33-04-21.inl - RELOC/doc/latex/pstricks-examples-en/33-04-22.inl - RELOC/doc/latex/pstricks-examples-en/33-04-3.ltx - RELOC/doc/latex/pstricks-examples-en/33-04-4.ltx - RELOC/doc/latex/pstricks-examples-en/33-04-5.ltx - RELOC/doc/latex/pstricks-examples-en/33-04-6.ltx - RELOC/doc/latex/pstricks-examples-en/33-04-7.inl - RELOC/doc/latex/pstricks-examples-en/33-04-8.inl - RELOC/doc/latex/pstricks-examples-en/33-04-9.inl - RELOC/doc/latex/pstricks-examples-en/33-05-1.ltx - RELOC/doc/latex/pstricks-examples-en/33-05-10.inl - RELOC/doc/latex/pstricks-examples-en/33-05-11.inl - RELOC/doc/latex/pstricks-examples-en/33-05-12.inl - RELOC/doc/latex/pstricks-examples-en/33-05-13.inl - RELOC/doc/latex/pstricks-examples-en/33-05-14.inl - RELOC/doc/latex/pstricks-examples-en/33-05-15.inl - RELOC/doc/latex/pstricks-examples-en/33-05-16.inl - RELOC/doc/latex/pstricks-examples-en/33-05-17.inl - RELOC/doc/latex/pstricks-examples-en/33-05-18.inl - RELOC/doc/latex/pstricks-examples-en/33-05-19.inl - RELOC/doc/latex/pstricks-examples-en/33-05-2.ltx - RELOC/doc/latex/pstricks-examples-en/33-05-20.inl - RELOC/doc/latex/pstricks-examples-en/33-05-21.inl - RELOC/doc/latex/pstricks-examples-en/33-05-22.inl - RELOC/doc/latex/pstricks-examples-en/33-05-23.inl - RELOC/doc/latex/pstricks-examples-en/33-05-24.ltx - RELOC/doc/latex/pstricks-examples-en/33-05-25.ltx - RELOC/doc/latex/pstricks-examples-en/33-05-26.ltx - RELOC/doc/latex/pstricks-examples-en/33-05-3.ltx - RELOC/doc/latex/pstricks-examples-en/33-05-4.ltx - RELOC/doc/latex/pstricks-examples-en/33-05-5.ltx - RELOC/doc/latex/pstricks-examples-en/33-05-6.ltx - RELOC/doc/latex/pstricks-examples-en/33-05-7.ltx - RELOC/doc/latex/pstricks-examples-en/33-05-8.ltx - RELOC/doc/latex/pstricks-examples-en/33-05-9.ltx - RELOC/doc/latex/pstricks-examples-en/34-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/34-01-2.ltx - RELOC/doc/latex/pstricks-examples-en/34-01-3.ltx - RELOC/doc/latex/pstricks-examples-en/34-01-4.ltx - RELOC/doc/latex/pstricks-examples-en/34-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/34-02-2.ltx - RELOC/doc/latex/pstricks-examples-en/34-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/34-02-4.ltx - RELOC/doc/latex/pstricks-examples-en/35-01-1.ltxpd - RELOC/doc/latex/pstricks-examples-en/35-01-10.ltxpd - RELOC/doc/latex/pstricks-examples-en/35-01-11.ltxpd - RELOC/doc/latex/pstricks-examples-en/35-01-12.ltxpd - RELOC/doc/latex/pstricks-examples-en/35-01-13.ltxpd - RELOC/doc/latex/pstricks-examples-en/35-01-14.ltxpd - RELOC/doc/latex/pstricks-examples-en/35-01-15.ltxpd - RELOC/doc/latex/pstricks-examples-en/35-01-16.ltxpd - RELOC/doc/latex/pstricks-examples-en/35-01-17.ltxpd - RELOC/doc/latex/pstricks-examples-en/35-01-18.ltxpd - RELOC/doc/latex/pstricks-examples-en/35-01-19.ltxpd - RELOC/doc/latex/pstricks-examples-en/35-01-2.ltxpd - RELOC/doc/latex/pstricks-examples-en/35-01-20.ltxpd - RELOC/doc/latex/pstricks-examples-en/35-01-21.ltxpd - RELOC/doc/latex/pstricks-examples-en/35-01-22.ltxpd - RELOC/doc/latex/pstricks-examples-en/35-01-23.ltx - RELOC/doc/latex/pstricks-examples-en/35-01-24.ltxpd - RELOC/doc/latex/pstricks-examples-en/35-01-25.ltxpd - RELOC/doc/latex/pstricks-examples-en/35-01-26.ltx - RELOC/doc/latex/pstricks-examples-en/35-01-3.ltxpd - RELOC/doc/latex/pstricks-examples-en/35-01-4.ltxpd - RELOC/doc/latex/pstricks-examples-en/35-01-5.ltxpd - RELOC/doc/latex/pstricks-examples-en/35-01-6.ltxpd - RELOC/doc/latex/pstricks-examples-en/35-01-7.ltxpd - RELOC/doc/latex/pstricks-examples-en/35-01-8.ltxpd - RELOC/doc/latex/pstricks-examples-en/35-01-9.ltxpd - RELOC/doc/latex/pstricks-examples-en/35-02-1.ltxbps - RELOC/doc/latex/pstricks-examples-en/35-02-2.ltxb - RELOC/doc/latex/pstricks-examples-en/35-02-3.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-1.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-10.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-100.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-101.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-102.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-103.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-104.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-105.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-106.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-107.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-108.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-109.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-11.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-110.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-111.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-112.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-113.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-114.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-115.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-116.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-117.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-118.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-119.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-12.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-120.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-121.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-122.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-123.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-124.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-125.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-126.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-13.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-14.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-15.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-16.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-17.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-18.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-19.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-2.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-20.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-21.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-22.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-23.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-24.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-25.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-26.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-27.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-28.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-29.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-3.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-30.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-31.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-32.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-33.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-34.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-35.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-36.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-37.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-38.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-39.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-4.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-40.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-41.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-42.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-43.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-44.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-45.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-46.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-47.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-48.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-49.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-5.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-50.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-51.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-52.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-53.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-54.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-55.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-56.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-57.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-58.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-59.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-6.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-60.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-61.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-62.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-63.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-64.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-65.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-66.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-67.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-68.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-69.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-7.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-70.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-71.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-72.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-73.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-74.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-75.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-76.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-77.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-78.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-79.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-8.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-80.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-81.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-82.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-83.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-84.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-85.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-86.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-87.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-88.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-89.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-9.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-90.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-91.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-92.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-93.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-94.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-95.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-96.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-97.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-98.ltx - RELOC/doc/latex/pstricks-examples-en/36-00-99.ltx - RELOC/doc/latex/pstricks-examples-en/38-04-1.ltx - RELOC/doc/latex/pstricks-examples-en/38-04-2.ltx - RELOC/doc/latex/pstricks-examples-en/39-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/39-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/39-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/39-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/40-02-1.tex - RELOC/doc/latex/pstricks-examples-en/40-02-2.tex - RELOC/doc/latex/pstricks-examples-en/40-03-1.ltx2 - RELOC/doc/latex/pstricks-examples-en/B-04-1.ltx - RELOC/doc/latex/pstricks-examples-en/B-04-2.ltx - RELOC/doc/latex/pstricks-examples-en/C-01-1.ltx - RELOC/doc/latex/pstricks-examples-en/C-02-1.ltx - RELOC/doc/latex/pstricks-examples-en/C-03-1.ltx - RELOC/doc/latex/pstricks-examples-en/C-03-2.ltx - RELOC/doc/latex/pstricks-examples-en/D-02-1.tex - RELOC/doc/latex/pstricks-examples-en/D-02-2.tex - RELOC/doc/latex/pstricks-examples-en/D-03-1.tex - RELOC/doc/latex/pstricks-examples-en/D-03-2.tex - RELOC/doc/latex/pstricks-examples-en/D-04-1.ltx2 - RELOC/doc/latex/pstricks-examples-en/DEexa.sty - RELOC/doc/latex/pstricks-examples-en/DEoptions.sty - RELOC/doc/latex/pstricks-examples-en/DotErrorBar.dat - RELOC/doc/latex/pstricks-examples-en/MyCurveA.dat - RELOC/doc/latex/pstricks-examples-en/MyCurveB.dat - RELOC/doc/latex/pstricks-examples-en/PrepareEXA.sh - RELOC/doc/latex/pstricks-examples-en/SensorAlterung.dat - RELOC/doc/latex/pstricks-examples-en/aebocg.djs - RELOC/doc/latex/pstricks-examples-en/aebocg.fdf - RELOC/doc/latex/pstricks-examples-en/animelayers.djs - RELOC/doc/latex/pstricks-examples-en/animelayers.fdf - RELOC/doc/latex/pstricks-examples-en/bubble.data - RELOC/doc/latex/pstricks-examples-en/data.dat - RELOC/doc/latex/pstricks-examples-en/data1.csv - RELOC/doc/latex/pstricks-examples-en/data1.dat - RELOC/doc/latex/pstricks-examples-en/data1.mat - RELOC/doc/latex/pstricks-examples-en/data10.dat - RELOC/doc/latex/pstricks-examples-en/data1T.csv - RELOC/doc/latex/pstricks-examples-en/data2.mat - RELOC/doc/latex/pstricks-examples-en/data22.dat - RELOC/doc/latex/pstricks-examples-en/data2T.csv - RELOC/doc/latex/pstricks-examples-en/data3.dat - RELOC/doc/latex/pstricks-examples-en/data3D.Roessler - RELOC/doc/latex/pstricks-examples-en/data3T.csv - RELOC/doc/latex/pstricks-examples-en/data4.dat - RELOC/doc/latex/pstricks-examples-en/data9.dat - RELOC/doc/latex/pstricks-examples-en/dataError.dat - RELOC/doc/latex/pstricks-examples-en/dataMul.dat - RELOC/doc/latex/pstricks-examples-en/demo1.dat - RELOC/doc/latex/pstricks-examples-en/demo2.dat - RELOC/doc/latex/pstricks-examples-en/demo3.dat - RELOC/doc/latex/pstricks-examples-en/feigenbaum.data - RELOC/doc/latex/pstricks-examples-en/file.ps - RELOC/doc/latex/pstricks-examples-en/fileplot.data - RELOC/doc/latex/pstricks-examples-en/fontDemo-E.tex - RELOC/doc/latex/pstricks-examples-en/fontDemo.tex - RELOC/doc/latex/pstricks-examples-en/images/biblatex-howitworks.pdf - RELOC/doc/latex/pstricks-examples-en/images/bibtex-howitworks.pdf - RELOC/doc/latex/pstricks-examples-en/images/fig-10-13.png - RELOC/doc/latex/pstricks-examples-en/images/fig-11-1.png - RELOC/doc/latex/pstricks-examples-en/images/zedat2.eps - RELOC/doc/latex/pstricks-examples-en/log0.dat - RELOC/doc/latex/pstricks-examples-en/log1.dat - RELOC/doc/latex/pstricks-examples-en/log2.dat - RELOC/doc/latex/pstricks-examples-en/matrix.dat - RELOC/doc/latex/pstricks-examples-en/rahmen.eps - RELOC/doc/latex/pstricks-examples-en/select.data - RELOC/doc/latex/pstricks-examples-en/temp.dat - RELOC/doc/latex/pstricks-examples-en/test10.dat - RELOC/doc/latex/pstricks-examples-en/textdemo.sty -catalogue-ctan /info/examples/PSTricks_en -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 - -name pstricks-examples -category Package -revision 21511 -shortdesc PSTricks examples. -relocated 1 -longdesc These are the examples from the 6th edition of the book -longdesc 'PSTricks -- Grafik fur TeX und LaTeX'. -docfiles size=2561 - RELOC/doc/latex/pstricks-examples/00-00-1.ltx - RELOC/doc/latex/pstricks-examples/01-05-1.ltx - RELOC/doc/latex/pstricks-examples/02-01-1.ltx - RELOC/doc/latex/pstricks-examples/02-01-10.ltx - RELOC/doc/latex/pstricks-examples/02-01-11.ltx - RELOC/doc/latex/pstricks-examples/02-01-12.ltx - RELOC/doc/latex/pstricks-examples/02-01-13.ltx - RELOC/doc/latex/pstricks-examples/02-01-14.ltx - RELOC/doc/latex/pstricks-examples/02-01-15.ltx - RELOC/doc/latex/pstricks-examples/02-01-2.ltx - RELOC/doc/latex/pstricks-examples/02-01-3.ltx - RELOC/doc/latex/pstricks-examples/02-01-4.ltx - RELOC/doc/latex/pstricks-examples/02-01-5.ltx - RELOC/doc/latex/pstricks-examples/02-01-6.ltx - RELOC/doc/latex/pstricks-examples/02-01-7.ltx - RELOC/doc/latex/pstricks-examples/02-01-8.ltx - RELOC/doc/latex/pstricks-examples/02-01-9.ltx - RELOC/doc/latex/pstricks-examples/02-03-1.ltx - RELOC/doc/latex/pstricks-examples/02-03-2.ltx - RELOC/doc/latex/pstricks-examples/02-05-1.ltx - RELOC/doc/latex/pstricks-examples/02-05-10.ltx - RELOC/doc/latex/pstricks-examples/02-05-11.ltx - RELOC/doc/latex/pstricks-examples/02-05-12.ltx - RELOC/doc/latex/pstricks-examples/02-05-13.ltx - RELOC/doc/latex/pstricks-examples/02-05-2.ltx - RELOC/doc/latex/pstricks-examples/02-05-3.ltx - RELOC/doc/latex/pstricks-examples/02-05-4.ltx - RELOC/doc/latex/pstricks-examples/02-05-5.ltx - RELOC/doc/latex/pstricks-examples/02-05-6.ltx - RELOC/doc/latex/pstricks-examples/02-05-7.ltx - RELOC/doc/latex/pstricks-examples/02-05-8.ltx - RELOC/doc/latex/pstricks-examples/02-05-9.ltx - RELOC/doc/latex/pstricks-examples/02-06-1.ltx - RELOC/doc/latex/pstricks-examples/02-07-1.ltx - RELOC/doc/latex/pstricks-examples/02-07-2.ltx - RELOC/doc/latex/pstricks-examples/03-00-1.ltx - RELOC/doc/latex/pstricks-examples/03-00-2.ltx - RELOC/doc/latex/pstricks-examples/03-02-1.ltx - RELOC/doc/latex/pstricks-examples/03-02-10.ltx - RELOC/doc/latex/pstricks-examples/03-02-11.ltx - RELOC/doc/latex/pstricks-examples/03-02-12.ltx - RELOC/doc/latex/pstricks-examples/03-02-2.ltx - RELOC/doc/latex/pstricks-examples/03-02-3.ltx - RELOC/doc/latex/pstricks-examples/03-02-4.ltx - RELOC/doc/latex/pstricks-examples/03-02-5.ltx - RELOC/doc/latex/pstricks-examples/03-02-6.ltx - RELOC/doc/latex/pstricks-examples/03-02-7.ltx - RELOC/doc/latex/pstricks-examples/03-02-8.ltx - RELOC/doc/latex/pstricks-examples/03-02-9.ltx - RELOC/doc/latex/pstricks-examples/03-03-1.ltx - RELOC/doc/latex/pstricks-examples/03-03-10.ltx - RELOC/doc/latex/pstricks-examples/03-03-2.ltx - RELOC/doc/latex/pstricks-examples/03-03-3.ltx - RELOC/doc/latex/pstricks-examples/03-03-4.ltx - RELOC/doc/latex/pstricks-examples/03-03-5.ltx - RELOC/doc/latex/pstricks-examples/03-03-6.ltx - RELOC/doc/latex/pstricks-examples/03-03-7.ltx - RELOC/doc/latex/pstricks-examples/03-03-8.ltx - RELOC/doc/latex/pstricks-examples/03-03-9.ltx - RELOC/doc/latex/pstricks-examples/03-04-1.ltx - RELOC/doc/latex/pstricks-examples/03-04-2.ltx - RELOC/doc/latex/pstricks-examples/03-04-3.ltx - RELOC/doc/latex/pstricks-examples/03-05-1.ltx - RELOC/doc/latex/pstricks-examples/03-05-2.ltx - RELOC/doc/latex/pstricks-examples/03-05-3.ltx - RELOC/doc/latex/pstricks-examples/03-05-4.ltx - RELOC/doc/latex/pstricks-examples/04-01-1.ltx - RELOC/doc/latex/pstricks-examples/04-01-10.ltx - RELOC/doc/latex/pstricks-examples/04-01-11.ltx - RELOC/doc/latex/pstricks-examples/04-01-12.ltx - RELOC/doc/latex/pstricks-examples/04-01-13.ltx - RELOC/doc/latex/pstricks-examples/04-01-14.ltx - RELOC/doc/latex/pstricks-examples/04-01-15.ltx - RELOC/doc/latex/pstricks-examples/04-01-16.ltx - RELOC/doc/latex/pstricks-examples/04-01-17.ltx - RELOC/doc/latex/pstricks-examples/04-01-18.ltx - RELOC/doc/latex/pstricks-examples/04-01-19.ltx - RELOC/doc/latex/pstricks-examples/04-01-2.ltx - RELOC/doc/latex/pstricks-examples/04-01-20.ltx - RELOC/doc/latex/pstricks-examples/04-01-21.ltx - RELOC/doc/latex/pstricks-examples/04-01-22.ltx - RELOC/doc/latex/pstricks-examples/04-01-23.ltx - RELOC/doc/latex/pstricks-examples/04-01-24.ltx - RELOC/doc/latex/pstricks-examples/04-01-25.ltx - RELOC/doc/latex/pstricks-examples/04-01-26.ltx - RELOC/doc/latex/pstricks-examples/04-01-27.ltx - RELOC/doc/latex/pstricks-examples/04-01-3.ltx - RELOC/doc/latex/pstricks-examples/04-01-4.ltx - RELOC/doc/latex/pstricks-examples/04-01-5.ltx - RELOC/doc/latex/pstricks-examples/04-01-6.ltx - RELOC/doc/latex/pstricks-examples/04-01-7.ltx - RELOC/doc/latex/pstricks-examples/04-01-8.ltx - RELOC/doc/latex/pstricks-examples/04-01-9.ltx - RELOC/doc/latex/pstricks-examples/04-02-1.ltx - RELOC/doc/latex/pstricks-examples/04-02-2.ltx - RELOC/doc/latex/pstricks-examples/04-03-1.ltx - RELOC/doc/latex/pstricks-examples/04-04-1.ltx - RELOC/doc/latex/pstricks-examples/04-05-1.ltx - RELOC/doc/latex/pstricks-examples/04-05-2.ltx - RELOC/doc/latex/pstricks-examples/04-06-1.ltx - RELOC/doc/latex/pstricks-examples/04-07-1.ltx - RELOC/doc/latex/pstricks-examples/05-01-1.ltx - RELOC/doc/latex/pstricks-examples/05-01-10.ltx - RELOC/doc/latex/pstricks-examples/05-01-11.ltx - RELOC/doc/latex/pstricks-examples/05-01-12.ltx - RELOC/doc/latex/pstricks-examples/05-01-2.ltx - RELOC/doc/latex/pstricks-examples/05-01-3.ltx - RELOC/doc/latex/pstricks-examples/05-01-4.ltx - RELOC/doc/latex/pstricks-examples/05-01-5.ltx - RELOC/doc/latex/pstricks-examples/05-01-6.ltx - RELOC/doc/latex/pstricks-examples/05-01-7.ltx - RELOC/doc/latex/pstricks-examples/05-01-8.ltx - RELOC/doc/latex/pstricks-examples/05-01-9.ltx - RELOC/doc/latex/pstricks-examples/05-02-1.ltx - RELOC/doc/latex/pstricks-examples/05-02-10.ltx - RELOC/doc/latex/pstricks-examples/05-02-11.ltx - RELOC/doc/latex/pstricks-examples/05-02-2.ltx - RELOC/doc/latex/pstricks-examples/05-02-3.ltx - RELOC/doc/latex/pstricks-examples/05-02-4.ltx - RELOC/doc/latex/pstricks-examples/05-02-5.ltx - RELOC/doc/latex/pstricks-examples/05-02-6.ltx - RELOC/doc/latex/pstricks-examples/05-02-7.ltx - RELOC/doc/latex/pstricks-examples/05-02-8.ltx - RELOC/doc/latex/pstricks-examples/05-02-9.ltx - RELOC/doc/latex/pstricks-examples/05-03-1.ltx - RELOC/doc/latex/pstricks-examples/05-03-2.ltx - RELOC/doc/latex/pstricks-examples/05-03-3.ltx - RELOC/doc/latex/pstricks-examples/05-03-4.ltx - RELOC/doc/latex/pstricks-examples/05-03-5.ltx - RELOC/doc/latex/pstricks-examples/05-03-6.ltx - RELOC/doc/latex/pstricks-examples/05-03-7.ltx - RELOC/doc/latex/pstricks-examples/05-04-1.ltx - RELOC/doc/latex/pstricks-examples/05-04-2.ltx - RELOC/doc/latex/pstricks-examples/05-04-3.ltx - RELOC/doc/latex/pstricks-examples/05-04-4.ltx - RELOC/doc/latex/pstricks-examples/05-04-5.ltx - RELOC/doc/latex/pstricks-examples/05-04-6.ltx - RELOC/doc/latex/pstricks-examples/06-01-1.ltx - RELOC/doc/latex/pstricks-examples/06-01-2.ltx - RELOC/doc/latex/pstricks-examples/06-01-3.ltx - RELOC/doc/latex/pstricks-examples/06-01-4.ltx - RELOC/doc/latex/pstricks-examples/06-01-5.ltx - RELOC/doc/latex/pstricks-examples/06-02-1.ltx - RELOC/doc/latex/pstricks-examples/06-03-1.ltx - RELOC/doc/latex/pstricks-examples/06-03-2.ltx - RELOC/doc/latex/pstricks-examples/06-03-3.ltx - RELOC/doc/latex/pstricks-examples/06-03-4.ltx - RELOC/doc/latex/pstricks-examples/06-03-5.ltx - RELOC/doc/latex/pstricks-examples/06-03-6.ltx - RELOC/doc/latex/pstricks-examples/06-03-7.ltx - RELOC/doc/latex/pstricks-examples/06-03-8.ltx - RELOC/doc/latex/pstricks-examples/06-03-9.ltx - RELOC/doc/latex/pstricks-examples/07-01-1.ltx - RELOC/doc/latex/pstricks-examples/07-01-10.ltx - RELOC/doc/latex/pstricks-examples/07-01-11.ltx - RELOC/doc/latex/pstricks-examples/07-01-12.ltx - RELOC/doc/latex/pstricks-examples/07-01-13.ltx - RELOC/doc/latex/pstricks-examples/07-01-14.ltx - RELOC/doc/latex/pstricks-examples/07-01-15.ltx - RELOC/doc/latex/pstricks-examples/07-01-16.ltx - RELOC/doc/latex/pstricks-examples/07-01-17.ltx - RELOC/doc/latex/pstricks-examples/07-01-18.ltx - RELOC/doc/latex/pstricks-examples/07-01-19.ltx - RELOC/doc/latex/pstricks-examples/07-01-2.ltx - RELOC/doc/latex/pstricks-examples/07-01-20.ltx - RELOC/doc/latex/pstricks-examples/07-01-21.ltx - RELOC/doc/latex/pstricks-examples/07-01-3.ltx - RELOC/doc/latex/pstricks-examples/07-01-4.ltx - RELOC/doc/latex/pstricks-examples/07-01-5.ltx - RELOC/doc/latex/pstricks-examples/07-01-6.ltx - RELOC/doc/latex/pstricks-examples/07-01-7.ltx - RELOC/doc/latex/pstricks-examples/07-01-8.ltx - RELOC/doc/latex/pstricks-examples/07-01-9.ltx - RELOC/doc/latex/pstricks-examples/07-02-1.ltx - RELOC/doc/latex/pstricks-examples/07-03-1.ltx - RELOC/doc/latex/pstricks-examples/08-00-1.ltx - RELOC/doc/latex/pstricks-examples/08-01-1.ltx - RELOC/doc/latex/pstricks-examples/08-01-10.ltx - RELOC/doc/latex/pstricks-examples/08-01-2.ltx - RELOC/doc/latex/pstricks-examples/08-01-3.ltx - RELOC/doc/latex/pstricks-examples/08-01-4.ltx - RELOC/doc/latex/pstricks-examples/08-01-5.ltx - RELOC/doc/latex/pstricks-examples/08-01-6.ltx - RELOC/doc/latex/pstricks-examples/08-01-7.ltx - RELOC/doc/latex/pstricks-examples/08-01-8.ltx - RELOC/doc/latex/pstricks-examples/08-01-9.ltx - RELOC/doc/latex/pstricks-examples/08-02-1.ltx - RELOC/doc/latex/pstricks-examples/08-02-10.ltx - RELOC/doc/latex/pstricks-examples/08-02-11.ltx - RELOC/doc/latex/pstricks-examples/08-02-12.ltx - RELOC/doc/latex/pstricks-examples/08-02-13.ltx - RELOC/doc/latex/pstricks-examples/08-02-14.ltx - RELOC/doc/latex/pstricks-examples/08-02-15.ltx - RELOC/doc/latex/pstricks-examples/08-02-16.ltx - RELOC/doc/latex/pstricks-examples/08-02-2.ltx - RELOC/doc/latex/pstricks-examples/08-02-3.ltx - RELOC/doc/latex/pstricks-examples/08-02-4.ltx - RELOC/doc/latex/pstricks-examples/08-02-5.ltx - RELOC/doc/latex/pstricks-examples/08-02-6.ltx - RELOC/doc/latex/pstricks-examples/08-02-7.ltx - RELOC/doc/latex/pstricks-examples/08-02-8.ltx - RELOC/doc/latex/pstricks-examples/08-02-9.ltx - RELOC/doc/latex/pstricks-examples/08-03-1.ltx - RELOC/doc/latex/pstricks-examples/09-01-1.ltx - RELOC/doc/latex/pstricks-examples/09-02-1.ltx - RELOC/doc/latex/pstricks-examples/09-03-1.ltx - RELOC/doc/latex/pstricks-examples/09-04-1.ltx - RELOC/doc/latex/pstricks-examples/09-05-1.ltx - RELOC/doc/latex/pstricks-examples/09-05-2.ltx - RELOC/doc/latex/pstricks-examples/09-06-1.ltx - RELOC/doc/latex/pstricks-examples/09-06-2.ltx - RELOC/doc/latex/pstricks-examples/09-07-1.ltx - RELOC/doc/latex/pstricks-examples/09-08-1.ltx - RELOC/doc/latex/pstricks-examples/09-08-2.ltx - RELOC/doc/latex/pstricks-examples/09-09-1.ltx - RELOC/doc/latex/pstricks-examples/09-10-1.ltx - RELOC/doc/latex/pstricks-examples/10-01-1.ltx - RELOC/doc/latex/pstricks-examples/10-01-2.ltx - RELOC/doc/latex/pstricks-examples/10-01-3.ltx - RELOC/doc/latex/pstricks-examples/10-02-1.ltx - RELOC/doc/latex/pstricks-examples/10-02-2.ltx - RELOC/doc/latex/pstricks-examples/10-02-3.ltx - RELOC/doc/latex/pstricks-examples/10-02-4.ltx - RELOC/doc/latex/pstricks-examples/10-02-5.ltx - RELOC/doc/latex/pstricks-examples/10-02-6.ltx - RELOC/doc/latex/pstricks-examples/10-02-7.ltx - RELOC/doc/latex/pstricks-examples/10-03-1.ltx - RELOC/doc/latex/pstricks-examples/10-03-2.ltx - RELOC/doc/latex/pstricks-examples/10-03-3.ltx - RELOC/doc/latex/pstricks-examples/10-03-4.ltx - RELOC/doc/latex/pstricks-examples/10-04-1.ltx - RELOC/doc/latex/pstricks-examples/10-04-2.ltx - RELOC/doc/latex/pstricks-examples/10-04-3.ltx - RELOC/doc/latex/pstricks-examples/10-05-1.ltx - RELOC/doc/latex/pstricks-examples/10-05-2.ltx - RELOC/doc/latex/pstricks-examples/10-05-3.ltx - RELOC/doc/latex/pstricks-examples/10-05-4.ltx - RELOC/doc/latex/pstricks-examples/10-06-1.ltx - RELOC/doc/latex/pstricks-examples/10-06-2.ltx - RELOC/doc/latex/pstricks-examples/10-06-3.ltx - RELOC/doc/latex/pstricks-examples/10-06-4.ltx - RELOC/doc/latex/pstricks-examples/10-06-5.ltx - RELOC/doc/latex/pstricks-examples/10-06-6.ltx - RELOC/doc/latex/pstricks-examples/11-01-1.ltx - RELOC/doc/latex/pstricks-examples/11-01-2.ltx - RELOC/doc/latex/pstricks-examples/11-02-1.ltx - RELOC/doc/latex/pstricks-examples/11-03-1.ltx - RELOC/doc/latex/pstricks-examples/11-03-10.ltx - RELOC/doc/latex/pstricks-examples/11-03-11.ltx - RELOC/doc/latex/pstricks-examples/11-03-12.ltx - RELOC/doc/latex/pstricks-examples/11-03-13.ltx - RELOC/doc/latex/pstricks-examples/11-03-14.ltx - RELOC/doc/latex/pstricks-examples/11-03-15.ltx - RELOC/doc/latex/pstricks-examples/11-03-16.ltx - RELOC/doc/latex/pstricks-examples/11-03-17.ltx - RELOC/doc/latex/pstricks-examples/11-03-18.ltx - RELOC/doc/latex/pstricks-examples/11-03-19.ltx - RELOC/doc/latex/pstricks-examples/11-03-2.ltx - RELOC/doc/latex/pstricks-examples/11-03-20.ltx - RELOC/doc/latex/pstricks-examples/11-03-21.ltx - RELOC/doc/latex/pstricks-examples/11-03-22.ltx - RELOC/doc/latex/pstricks-examples/11-03-23.ltx - RELOC/doc/latex/pstricks-examples/11-03-24.ltx - RELOC/doc/latex/pstricks-examples/11-03-25.ltx - RELOC/doc/latex/pstricks-examples/11-03-26.ltx - RELOC/doc/latex/pstricks-examples/11-03-27.ltx - RELOC/doc/latex/pstricks-examples/11-03-28.ltx - RELOC/doc/latex/pstricks-examples/11-03-29.ltx - RELOC/doc/latex/pstricks-examples/11-03-3.ltx - RELOC/doc/latex/pstricks-examples/11-03-30.ltx - RELOC/doc/latex/pstricks-examples/11-03-31.ltx - RELOC/doc/latex/pstricks-examples/11-03-32.ltx - RELOC/doc/latex/pstricks-examples/11-03-33.ltx - RELOC/doc/latex/pstricks-examples/11-03-4.ltx - RELOC/doc/latex/pstricks-examples/11-03-5.ltx - RELOC/doc/latex/pstricks-examples/11-03-6.ltx - RELOC/doc/latex/pstricks-examples/11-03-7.ltx - RELOC/doc/latex/pstricks-examples/11-03-8.ltx - RELOC/doc/latex/pstricks-examples/11-03-9.ltx - RELOC/doc/latex/pstricks-examples/12-01-1.ltx - RELOC/doc/latex/pstricks-examples/12-01-2.ltx - RELOC/doc/latex/pstricks-examples/12-01-3.ltx - RELOC/doc/latex/pstricks-examples/12-01-4.ltx - RELOC/doc/latex/pstricks-examples/12-01-5.ltx - RELOC/doc/latex/pstricks-examples/12-01-6.ltx - RELOC/doc/latex/pstricks-examples/12-01-7.ltx - RELOC/doc/latex/pstricks-examples/12-01-8.ltx - RELOC/doc/latex/pstricks-examples/12-02-1.ltx - RELOC/doc/latex/pstricks-examples/12-04-1.ltx - RELOC/doc/latex/pstricks-examples/12-04-2.ltx - RELOC/doc/latex/pstricks-examples/13-01-1.ltx - RELOC/doc/latex/pstricks-examples/13-02-1.ltx - RELOC/doc/latex/pstricks-examples/13-02-2.ltx - RELOC/doc/latex/pstricks-examples/13-02-3.ltx - RELOC/doc/latex/pstricks-examples/14-02-1.ltx - RELOC/doc/latex/pstricks-examples/14-02-10.ltx - RELOC/doc/latex/pstricks-examples/14-02-11.ltx - RELOC/doc/latex/pstricks-examples/14-02-12.ltx - RELOC/doc/latex/pstricks-examples/14-02-13.ltx - RELOC/doc/latex/pstricks-examples/14-02-14.ltx - RELOC/doc/latex/pstricks-examples/14-02-15.ltx - RELOC/doc/latex/pstricks-examples/14-02-16.ltx - RELOC/doc/latex/pstricks-examples/14-02-17.ltx - RELOC/doc/latex/pstricks-examples/14-02-18.ltx - RELOC/doc/latex/pstricks-examples/14-02-19.ltx - RELOC/doc/latex/pstricks-examples/14-02-2.ltx - RELOC/doc/latex/pstricks-examples/14-02-3.ltx - RELOC/doc/latex/pstricks-examples/14-02-4.ltx - RELOC/doc/latex/pstricks-examples/14-02-5.ltx - RELOC/doc/latex/pstricks-examples/14-02-6.ltx - RELOC/doc/latex/pstricks-examples/14-02-7.ltx - RELOC/doc/latex/pstricks-examples/14-02-8.ltx - RELOC/doc/latex/pstricks-examples/14-02-9.ltx - RELOC/doc/latex/pstricks-examples/14-03-1.ltx - RELOC/doc/latex/pstricks-examples/14-03-10.ltx - RELOC/doc/latex/pstricks-examples/14-03-2.ltx - RELOC/doc/latex/pstricks-examples/14-03-3.ltx - RELOC/doc/latex/pstricks-examples/14-03-4.ltx - RELOC/doc/latex/pstricks-examples/14-03-5.ltx - RELOC/doc/latex/pstricks-examples/14-03-6.ltx - RELOC/doc/latex/pstricks-examples/14-03-7.ltx - RELOC/doc/latex/pstricks-examples/14-03-8.ltx - RELOC/doc/latex/pstricks-examples/14-03-9.ltx - RELOC/doc/latex/pstricks-examples/14-04-1.ltx - RELOC/doc/latex/pstricks-examples/14-05-1.ltx - RELOC/doc/latex/pstricks-examples/14-06-1.ltx - RELOC/doc/latex/pstricks-examples/14-06-2.ltx - RELOC/doc/latex/pstricks-examples/14-06-3.ltx - RELOC/doc/latex/pstricks-examples/14-06-4.ltx - RELOC/doc/latex/pstricks-examples/14-06-5.ltx - RELOC/doc/latex/pstricks-examples/14-07-1.ltx - RELOC/doc/latex/pstricks-examples/14-07-2.ltx - RELOC/doc/latex/pstricks-examples/15-01-1.ltx - RELOC/doc/latex/pstricks-examples/15-01-10.ltx - RELOC/doc/latex/pstricks-examples/15-01-11.ltx - RELOC/doc/latex/pstricks-examples/15-01-12.ltx - RELOC/doc/latex/pstricks-examples/15-01-13.ltx - RELOC/doc/latex/pstricks-examples/15-01-14.ltx - RELOC/doc/latex/pstricks-examples/15-01-15.ltx - RELOC/doc/latex/pstricks-examples/15-01-16.ltx - RELOC/doc/latex/pstricks-examples/15-01-17.ltx - RELOC/doc/latex/pstricks-examples/15-01-18.ltx - RELOC/doc/latex/pstricks-examples/15-01-19.ltx - RELOC/doc/latex/pstricks-examples/15-01-2.ltx - RELOC/doc/latex/pstricks-examples/15-01-20.ltx - RELOC/doc/latex/pstricks-examples/15-01-21.ltx - RELOC/doc/latex/pstricks-examples/15-01-22.ltx - RELOC/doc/latex/pstricks-examples/15-01-23.ltx - RELOC/doc/latex/pstricks-examples/15-01-24.ltx - RELOC/doc/latex/pstricks-examples/15-01-25.ltx - RELOC/doc/latex/pstricks-examples/15-01-26.ltx - RELOC/doc/latex/pstricks-examples/15-01-27.ltx - RELOC/doc/latex/pstricks-examples/15-01-28.ltx - RELOC/doc/latex/pstricks-examples/15-01-29.ltx - RELOC/doc/latex/pstricks-examples/15-01-3.ltx - RELOC/doc/latex/pstricks-examples/15-01-30.ltx - RELOC/doc/latex/pstricks-examples/15-01-31.ltx - RELOC/doc/latex/pstricks-examples/15-01-32.ltx - RELOC/doc/latex/pstricks-examples/15-01-33.ltx - RELOC/doc/latex/pstricks-examples/15-01-34.ltx - RELOC/doc/latex/pstricks-examples/15-01-35.ltx - RELOC/doc/latex/pstricks-examples/15-01-36.ltx - RELOC/doc/latex/pstricks-examples/15-01-37.ltx - RELOC/doc/latex/pstricks-examples/15-01-38.ltx - RELOC/doc/latex/pstricks-examples/15-01-39.ltx - RELOC/doc/latex/pstricks-examples/15-01-4.ltx - RELOC/doc/latex/pstricks-examples/15-01-40.ltx - RELOC/doc/latex/pstricks-examples/15-01-41.ltx - RELOC/doc/latex/pstricks-examples/15-01-42.ltx - RELOC/doc/latex/pstricks-examples/15-01-43.ltx - RELOC/doc/latex/pstricks-examples/15-01-44.ltx - RELOC/doc/latex/pstricks-examples/15-01-45.ltx - RELOC/doc/latex/pstricks-examples/15-01-46.ltx - RELOC/doc/latex/pstricks-examples/15-01-47.ltx - RELOC/doc/latex/pstricks-examples/15-01-48.ltx - RELOC/doc/latex/pstricks-examples/15-01-49.ltx - RELOC/doc/latex/pstricks-examples/15-01-5.ltx - RELOC/doc/latex/pstricks-examples/15-01-50.ltx - RELOC/doc/latex/pstricks-examples/15-01-51.ltx - RELOC/doc/latex/pstricks-examples/15-01-52.ltx - RELOC/doc/latex/pstricks-examples/15-01-53.ltx - RELOC/doc/latex/pstricks-examples/15-01-54.ltx - RELOC/doc/latex/pstricks-examples/15-01-55.ltx - RELOC/doc/latex/pstricks-examples/15-01-56.ltx - RELOC/doc/latex/pstricks-examples/15-01-57.ltx - RELOC/doc/latex/pstricks-examples/15-01-58.ltx - RELOC/doc/latex/pstricks-examples/15-01-59.ltx - RELOC/doc/latex/pstricks-examples/15-01-6.ltx - RELOC/doc/latex/pstricks-examples/15-01-60.ltx - RELOC/doc/latex/pstricks-examples/15-01-61.ltx - RELOC/doc/latex/pstricks-examples/15-01-62.ltx - RELOC/doc/latex/pstricks-examples/15-01-63.ltx - RELOC/doc/latex/pstricks-examples/15-01-64.ltx - RELOC/doc/latex/pstricks-examples/15-01-65.ltx - RELOC/doc/latex/pstricks-examples/15-01-66.ltx - RELOC/doc/latex/pstricks-examples/15-01-7.ltx - RELOC/doc/latex/pstricks-examples/15-01-8.ltx - RELOC/doc/latex/pstricks-examples/15-01-9.ltx - RELOC/doc/latex/pstricks-examples/15-02-1.ltx - RELOC/doc/latex/pstricks-examples/15-02-10.ltx - RELOC/doc/latex/pstricks-examples/15-02-11.ltx - RELOC/doc/latex/pstricks-examples/15-02-12.ltx - RELOC/doc/latex/pstricks-examples/15-02-2.ltx - RELOC/doc/latex/pstricks-examples/15-02-3.ltx - RELOC/doc/latex/pstricks-examples/15-02-4.ltx - RELOC/doc/latex/pstricks-examples/15-02-5.ltx - RELOC/doc/latex/pstricks-examples/15-02-6.ltx - RELOC/doc/latex/pstricks-examples/15-02-7.ltx - RELOC/doc/latex/pstricks-examples/15-02-8.ltx - RELOC/doc/latex/pstricks-examples/15-02-9.ltx - RELOC/doc/latex/pstricks-examples/15-03-1.ltx - RELOC/doc/latex/pstricks-examples/15-03-10.ltx - RELOC/doc/latex/pstricks-examples/15-03-11.ltx - RELOC/doc/latex/pstricks-examples/15-03-12.ltx - RELOC/doc/latex/pstricks-examples/15-03-13.ltx - RELOC/doc/latex/pstricks-examples/15-03-14.ltx - RELOC/doc/latex/pstricks-examples/15-03-15.ltx - RELOC/doc/latex/pstricks-examples/15-03-16.ltx - RELOC/doc/latex/pstricks-examples/15-03-17.ltx - RELOC/doc/latex/pstricks-examples/15-03-18.ltx - RELOC/doc/latex/pstricks-examples/15-03-19.ltx - RELOC/doc/latex/pstricks-examples/15-03-2.ltx - RELOC/doc/latex/pstricks-examples/15-03-20.ltx - RELOC/doc/latex/pstricks-examples/15-03-21.ltx - RELOC/doc/latex/pstricks-examples/15-03-22.ltx - RELOC/doc/latex/pstricks-examples/15-03-23.ltx - RELOC/doc/latex/pstricks-examples/15-03-24.ltx - RELOC/doc/latex/pstricks-examples/15-03-25.ltx - RELOC/doc/latex/pstricks-examples/15-03-26.ltx - RELOC/doc/latex/pstricks-examples/15-03-27.ltx - RELOC/doc/latex/pstricks-examples/15-03-28.ltx - RELOC/doc/latex/pstricks-examples/15-03-29.ltx - RELOC/doc/latex/pstricks-examples/15-03-3.ltx - RELOC/doc/latex/pstricks-examples/15-03-30.ltx - RELOC/doc/latex/pstricks-examples/15-03-31.ltx - RELOC/doc/latex/pstricks-examples/15-03-32.ltx - RELOC/doc/latex/pstricks-examples/15-03-4.ltx - RELOC/doc/latex/pstricks-examples/15-03-5.ltx - RELOC/doc/latex/pstricks-examples/15-03-6.ltx - RELOC/doc/latex/pstricks-examples/15-03-7.ltx - RELOC/doc/latex/pstricks-examples/15-03-8.ltx - RELOC/doc/latex/pstricks-examples/15-03-9.ltx - RELOC/doc/latex/pstricks-examples/15-04-1.ltx - RELOC/doc/latex/pstricks-examples/15-04-10.ltx - RELOC/doc/latex/pstricks-examples/15-04-11.ltx - RELOC/doc/latex/pstricks-examples/15-04-12.ltx - RELOC/doc/latex/pstricks-examples/15-04-13.ltx - RELOC/doc/latex/pstricks-examples/15-04-14.ltx - RELOC/doc/latex/pstricks-examples/15-04-15.ltx - RELOC/doc/latex/pstricks-examples/15-04-2.ltx - RELOC/doc/latex/pstricks-examples/15-04-3.ltx - RELOC/doc/latex/pstricks-examples/15-04-4.ltx - RELOC/doc/latex/pstricks-examples/15-04-5.ltx - RELOC/doc/latex/pstricks-examples/15-04-6.ltx - RELOC/doc/latex/pstricks-examples/15-04-7.ltx - RELOC/doc/latex/pstricks-examples/15-04-8.ltx - RELOC/doc/latex/pstricks-examples/15-04-9.ltx - RELOC/doc/latex/pstricks-examples/15-05-1.ltx - RELOC/doc/latex/pstricks-examples/15-05-10.ltx - RELOC/doc/latex/pstricks-examples/15-05-11.ltx - RELOC/doc/latex/pstricks-examples/15-05-12.ltx - RELOC/doc/latex/pstricks-examples/15-05-13.ltx - RELOC/doc/latex/pstricks-examples/15-05-14.ltx - RELOC/doc/latex/pstricks-examples/15-05-15.ltx - RELOC/doc/latex/pstricks-examples/15-05-2.ltx - RELOC/doc/latex/pstricks-examples/15-05-3.ltx - RELOC/doc/latex/pstricks-examples/15-05-4.ltx - RELOC/doc/latex/pstricks-examples/15-05-5.ltx - RELOC/doc/latex/pstricks-examples/15-05-6.ltx - RELOC/doc/latex/pstricks-examples/15-05-7.ltx - RELOC/doc/latex/pstricks-examples/15-05-8.ltx - RELOC/doc/latex/pstricks-examples/15-05-9.ltx - RELOC/doc/latex/pstricks-examples/15-06-1.ltx - RELOC/doc/latex/pstricks-examples/15-07-1.ltx - RELOC/doc/latex/pstricks-examples/15-07-10.ltx - RELOC/doc/latex/pstricks-examples/15-07-11.ltx - RELOC/doc/latex/pstricks-examples/15-07-12.ltx - RELOC/doc/latex/pstricks-examples/15-07-13.ltx - RELOC/doc/latex/pstricks-examples/15-07-14.ltx - RELOC/doc/latex/pstricks-examples/15-07-15.ltx - RELOC/doc/latex/pstricks-examples/15-07-16.ltx - RELOC/doc/latex/pstricks-examples/15-07-17.ltx - RELOC/doc/latex/pstricks-examples/15-07-18.ltx - RELOC/doc/latex/pstricks-examples/15-07-19.ltx - RELOC/doc/latex/pstricks-examples/15-07-2.ltx - RELOC/doc/latex/pstricks-examples/15-07-20.ltx - RELOC/doc/latex/pstricks-examples/15-07-3.ltx - RELOC/doc/latex/pstricks-examples/15-07-4.ltx - RELOC/doc/latex/pstricks-examples/15-07-5.ltx - RELOC/doc/latex/pstricks-examples/15-07-6.ltx - RELOC/doc/latex/pstricks-examples/15-07-7.ltx - RELOC/doc/latex/pstricks-examples/15-07-8.ltx - RELOC/doc/latex/pstricks-examples/15-07-9.ltx - RELOC/doc/latex/pstricks-examples/15-08-1.ltx - RELOC/doc/latex/pstricks-examples/15-08-2.ltx - RELOC/doc/latex/pstricks-examples/15-08-3.ltx - RELOC/doc/latex/pstricks-examples/15-08-4.ltx - RELOC/doc/latex/pstricks-examples/15-08-5.ltx - RELOC/doc/latex/pstricks-examples/15-08-6.ltx - RELOC/doc/latex/pstricks-examples/15-08-7.ltx - RELOC/doc/latex/pstricks-examples/16-00-1.ltx - RELOC/doc/latex/pstricks-examples/16-02-1.ltx - RELOC/doc/latex/pstricks-examples/16-02-10.ltx - RELOC/doc/latex/pstricks-examples/16-02-11.ltx - RELOC/doc/latex/pstricks-examples/16-02-12.ltx - RELOC/doc/latex/pstricks-examples/16-02-13.ltx - RELOC/doc/latex/pstricks-examples/16-02-14.ltx - RELOC/doc/latex/pstricks-examples/16-02-15.ltx - RELOC/doc/latex/pstricks-examples/16-02-16.ltx - RELOC/doc/latex/pstricks-examples/16-02-17.ltx - RELOC/doc/latex/pstricks-examples/16-02-18.ltx - RELOC/doc/latex/pstricks-examples/16-02-19.ltx - RELOC/doc/latex/pstricks-examples/16-02-2.ltx - RELOC/doc/latex/pstricks-examples/16-02-20.ltx - RELOC/doc/latex/pstricks-examples/16-02-21.ltx - RELOC/doc/latex/pstricks-examples/16-02-22.ltx - RELOC/doc/latex/pstricks-examples/16-02-3.ltx - RELOC/doc/latex/pstricks-examples/16-02-4.ltx - RELOC/doc/latex/pstricks-examples/16-02-5.ltx - RELOC/doc/latex/pstricks-examples/16-02-6.ltx - RELOC/doc/latex/pstricks-examples/16-02-7.ltx - RELOC/doc/latex/pstricks-examples/16-02-8.ltx - RELOC/doc/latex/pstricks-examples/16-02-9.ltx - RELOC/doc/latex/pstricks-examples/16-03-1.ltx - RELOC/doc/latex/pstricks-examples/16-03-10.ltx - RELOC/doc/latex/pstricks-examples/16-03-11.ltx - RELOC/doc/latex/pstricks-examples/16-03-12.ltx - RELOC/doc/latex/pstricks-examples/16-03-13.ltx - RELOC/doc/latex/pstricks-examples/16-03-14.ltx - RELOC/doc/latex/pstricks-examples/16-03-2.ltx - RELOC/doc/latex/pstricks-examples/16-03-3.ltx - RELOC/doc/latex/pstricks-examples/16-03-4.ltx - RELOC/doc/latex/pstricks-examples/16-03-5.ltx - RELOC/doc/latex/pstricks-examples/16-03-6.ltx - RELOC/doc/latex/pstricks-examples/16-03-7.ltx - RELOC/doc/latex/pstricks-examples/16-03-8.ltx - RELOC/doc/latex/pstricks-examples/16-03-9.ltx - RELOC/doc/latex/pstricks-examples/16-04-1.ltx - RELOC/doc/latex/pstricks-examples/16-04-10.ltx - RELOC/doc/latex/pstricks-examples/16-04-11.ltx - RELOC/doc/latex/pstricks-examples/16-04-12.ltx - RELOC/doc/latex/pstricks-examples/16-04-13.ltx - RELOC/doc/latex/pstricks-examples/16-04-14.ltx - RELOC/doc/latex/pstricks-examples/16-04-15.ltx - RELOC/doc/latex/pstricks-examples/16-04-16.ltx - RELOC/doc/latex/pstricks-examples/16-04-17.ltx - RELOC/doc/latex/pstricks-examples/16-04-18.ltx - RELOC/doc/latex/pstricks-examples/16-04-19.ltx - RELOC/doc/latex/pstricks-examples/16-04-2.ltx - RELOC/doc/latex/pstricks-examples/16-04-20.ltx - RELOC/doc/latex/pstricks-examples/16-04-21.ltx - RELOC/doc/latex/pstricks-examples/16-04-22.ltx - RELOC/doc/latex/pstricks-examples/16-04-23.ltx - RELOC/doc/latex/pstricks-examples/16-04-24.ltx - RELOC/doc/latex/pstricks-examples/16-04-25.ltx - RELOC/doc/latex/pstricks-examples/16-04-26.ltx - RELOC/doc/latex/pstricks-examples/16-04-27.ltx - RELOC/doc/latex/pstricks-examples/16-04-3.ltx - RELOC/doc/latex/pstricks-examples/16-04-4.ltx - RELOC/doc/latex/pstricks-examples/16-04-5.ltx - RELOC/doc/latex/pstricks-examples/16-04-6.ltx - RELOC/doc/latex/pstricks-examples/16-04-7.ltx - RELOC/doc/latex/pstricks-examples/16-04-8.ltx - RELOC/doc/latex/pstricks-examples/16-04-9.ltx - RELOC/doc/latex/pstricks-examples/16-05-1.ltx - RELOC/doc/latex/pstricks-examples/16-05-2.ltx - RELOC/doc/latex/pstricks-examples/16-06-1.ltx - RELOC/doc/latex/pstricks-examples/16-06-2.ltx - RELOC/doc/latex/pstricks-examples/16-06-3.ltx - RELOC/doc/latex/pstricks-examples/16-06-4.ltx - RELOC/doc/latex/pstricks-examples/16-06-5.ltx - RELOC/doc/latex/pstricks-examples/16-06-6.ltx - RELOC/doc/latex/pstricks-examples/16-07-1.ltx - RELOC/doc/latex/pstricks-examples/16-07-2.ltx - RELOC/doc/latex/pstricks-examples/16-07-3.ltx - RELOC/doc/latex/pstricks-examples/16-07-4.ltx - RELOC/doc/latex/pstricks-examples/16-08-1.ltx - RELOC/doc/latex/pstricks-examples/16-08-10.ltx - RELOC/doc/latex/pstricks-examples/16-08-2.ltx - RELOC/doc/latex/pstricks-examples/16-08-3.ltx - RELOC/doc/latex/pstricks-examples/16-08-4.ltx - RELOC/doc/latex/pstricks-examples/16-08-5.ltx - RELOC/doc/latex/pstricks-examples/16-08-6.ltx - RELOC/doc/latex/pstricks-examples/16-08-7.ltx - RELOC/doc/latex/pstricks-examples/16-08-8.ltx - RELOC/doc/latex/pstricks-examples/16-08-9.ltx - RELOC/doc/latex/pstricks-examples/16-09-1.ltx - RELOC/doc/latex/pstricks-examples/16-10-1.ltx - RELOC/doc/latex/pstricks-examples/16-10-2.ltx - RELOC/doc/latex/pstricks-examples/16-10-3.ltx - RELOC/doc/latex/pstricks-examples/16-10-4.ltx - RELOC/doc/latex/pstricks-examples/17-00-1.ltx - RELOC/doc/latex/pstricks-examples/17-00-2.ltx - RELOC/doc/latex/pstricks-examples/17-00-3.ltx - RELOC/doc/latex/pstricks-examples/17-01-1.ltx - RELOC/doc/latex/pstricks-examples/17-01-10.ltx - RELOC/doc/latex/pstricks-examples/17-01-11.ltx - RELOC/doc/latex/pstricks-examples/17-01-12.ltx - RELOC/doc/latex/pstricks-examples/17-01-13.ltx - RELOC/doc/latex/pstricks-examples/17-01-14.ltx - RELOC/doc/latex/pstricks-examples/17-01-15.ltx - RELOC/doc/latex/pstricks-examples/17-01-16.ltx - RELOC/doc/latex/pstricks-examples/17-01-17.ltx - RELOC/doc/latex/pstricks-examples/17-01-18.ltx - RELOC/doc/latex/pstricks-examples/17-01-19.ltx - RELOC/doc/latex/pstricks-examples/17-01-2.ltx - RELOC/doc/latex/pstricks-examples/17-01-20.ltx - RELOC/doc/latex/pstricks-examples/17-01-21.ltx - RELOC/doc/latex/pstricks-examples/17-01-22.ltx - RELOC/doc/latex/pstricks-examples/17-01-23.ltx - RELOC/doc/latex/pstricks-examples/17-01-24.ltx - RELOC/doc/latex/pstricks-examples/17-01-3.ltx - RELOC/doc/latex/pstricks-examples/17-01-4.ltx - RELOC/doc/latex/pstricks-examples/17-01-5.ltx - RELOC/doc/latex/pstricks-examples/17-01-6.ltx - RELOC/doc/latex/pstricks-examples/17-01-7.ltx - RELOC/doc/latex/pstricks-examples/17-01-8.ltx - RELOC/doc/latex/pstricks-examples/17-01-9.ltx - RELOC/doc/latex/pstricks-examples/17-02-1.ltx - RELOC/doc/latex/pstricks-examples/17-02-2.ltx - RELOC/doc/latex/pstricks-examples/17-02-3.ltx - RELOC/doc/latex/pstricks-examples/17-02-4.ltx - RELOC/doc/latex/pstricks-examples/17-02-5.ltx - RELOC/doc/latex/pstricks-examples/17-02-6.ltx - RELOC/doc/latex/pstricks-examples/17-03-1.ltx - RELOC/doc/latex/pstricks-examples/17-03-2.ltx - RELOC/doc/latex/pstricks-examples/17-03-3.ltx - RELOC/doc/latex/pstricks-examples/17-03-4.ltx - RELOC/doc/latex/pstricks-examples/17-03-5.ltx - RELOC/doc/latex/pstricks-examples/17-03-6.ltx - RELOC/doc/latex/pstricks-examples/17-03-7.ltx - RELOC/doc/latex/pstricks-examples/17-03-8.ltx - RELOC/doc/latex/pstricks-examples/17-04-1.ltx - RELOC/doc/latex/pstricks-examples/17-05-1.ltx - RELOC/doc/latex/pstricks-examples/17-06-1.ltx - RELOC/doc/latex/pstricks-examples/17-06-2.ltx - RELOC/doc/latex/pstricks-examples/18-01-1.ltx - RELOC/doc/latex/pstricks-examples/18-01-2.ltx - RELOC/doc/latex/pstricks-examples/18-01-3.ltx - RELOC/doc/latex/pstricks-examples/18-01-4.ltx - RELOC/doc/latex/pstricks-examples/18-01-5.ltx - RELOC/doc/latex/pstricks-examples/18-01-6.ltx - RELOC/doc/latex/pstricks-examples/18-01-7.ltx - RELOC/doc/latex/pstricks-examples/18-01-8.ltx - RELOC/doc/latex/pstricks-examples/18-02-1.ltx - RELOC/doc/latex/pstricks-examples/18-02-2.ltx - RELOC/doc/latex/pstricks-examples/18-02-3.ltx - RELOC/doc/latex/pstricks-examples/18-02-4.ltx - RELOC/doc/latex/pstricks-examples/18-02-5.ltx - RELOC/doc/latex/pstricks-examples/18-02-6.ltx - RELOC/doc/latex/pstricks-examples/18-02-7.ltx - RELOC/doc/latex/pstricks-examples/19-01-1.ltx - RELOC/doc/latex/pstricks-examples/19-01-2.ltx - RELOC/doc/latex/pstricks-examples/19-01-3.ltx - RELOC/doc/latex/pstricks-examples/19-01-4.ltx - RELOC/doc/latex/pstricks-examples/19-01-5.ltx - RELOC/doc/latex/pstricks-examples/19-01-6.ltx - RELOC/doc/latex/pstricks-examples/19-01-7.ltx - RELOC/doc/latex/pstricks-examples/19-01-8.ltx - RELOC/doc/latex/pstricks-examples/19-01-9.ltx - RELOC/doc/latex/pstricks-examples/19-02-1.ltx - RELOC/doc/latex/pstricks-examples/19-02-2.ltx - RELOC/doc/latex/pstricks-examples/19-02-3.ltx - RELOC/doc/latex/pstricks-examples/19-02-4.ltx - RELOC/doc/latex/pstricks-examples/19-02-5.ltx - RELOC/doc/latex/pstricks-examples/19-02-6.ltx - RELOC/doc/latex/pstricks-examples/20-01-1.ltx - RELOC/doc/latex/pstricks-examples/20-01-10.ltx - RELOC/doc/latex/pstricks-examples/20-01-11.ltx - RELOC/doc/latex/pstricks-examples/20-01-12.ltx - RELOC/doc/latex/pstricks-examples/20-01-13.ltx - RELOC/doc/latex/pstricks-examples/20-01-14.ltx - RELOC/doc/latex/pstricks-examples/20-01-15.ltx - RELOC/doc/latex/pstricks-examples/20-01-2.ltx - RELOC/doc/latex/pstricks-examples/20-01-3.ltx - RELOC/doc/latex/pstricks-examples/20-01-4.ltx - RELOC/doc/latex/pstricks-examples/20-01-5.ltx - RELOC/doc/latex/pstricks-examples/20-01-6.ltx - RELOC/doc/latex/pstricks-examples/20-01-7.ltx - RELOC/doc/latex/pstricks-examples/20-01-8.ltx - RELOC/doc/latex/pstricks-examples/20-01-9.ltx - RELOC/doc/latex/pstricks-examples/20-02-1.ltx - RELOC/doc/latex/pstricks-examples/20-02-2.ltx - RELOC/doc/latex/pstricks-examples/20-02-3.ltx - RELOC/doc/latex/pstricks-examples/20-03-1.ltx - RELOC/doc/latex/pstricks-examples/20-03-2.ltx - RELOC/doc/latex/pstricks-examples/20-03-3.ltx - RELOC/doc/latex/pstricks-examples/20-03-4.ltx - RELOC/doc/latex/pstricks-examples/20-03-5.ltx - RELOC/doc/latex/pstricks-examples/20-03-6.ltx - RELOC/doc/latex/pstricks-examples/20-03-7.ltx - RELOC/doc/latex/pstricks-examples/21-00-1.ltxEps - RELOC/doc/latex/pstricks-examples/21-01-1.ltxEps - RELOC/doc/latex/pstricks-examples/21-02-1.ltx - RELOC/doc/latex/pstricks-examples/21-04-1.ltx - RELOC/doc/latex/pstricks-examples/22-01-1.ltx - RELOC/doc/latex/pstricks-examples/22-01-2.ltx - RELOC/doc/latex/pstricks-examples/22-01-3.ltx - RELOC/doc/latex/pstricks-examples/22-01-4.ltx - RELOC/doc/latex/pstricks-examples/22-01-5.ltx - RELOC/doc/latex/pstricks-examples/22-01-6.ltx - RELOC/doc/latex/pstricks-examples/22-01-7.ltx - RELOC/doc/latex/pstricks-examples/22-02-1.ltx - RELOC/doc/latex/pstricks-examples/22-02-10.ltx - RELOC/doc/latex/pstricks-examples/22-02-11.ltx - RELOC/doc/latex/pstricks-examples/22-02-12.ltx - RELOC/doc/latex/pstricks-examples/22-02-13.ltx - RELOC/doc/latex/pstricks-examples/22-02-14.ltx - RELOC/doc/latex/pstricks-examples/22-02-15.ltx - RELOC/doc/latex/pstricks-examples/22-02-16.ltx - RELOC/doc/latex/pstricks-examples/22-02-17.ltx - RELOC/doc/latex/pstricks-examples/22-02-18.ltx - RELOC/doc/latex/pstricks-examples/22-02-2.ltx - RELOC/doc/latex/pstricks-examples/22-02-3.ltx - RELOC/doc/latex/pstricks-examples/22-02-4.ltx - RELOC/doc/latex/pstricks-examples/22-02-5.ltx - RELOC/doc/latex/pstricks-examples/22-02-6.ltx - RELOC/doc/latex/pstricks-examples/22-02-7.ltx - RELOC/doc/latex/pstricks-examples/22-02-8.ltx - RELOC/doc/latex/pstricks-examples/22-02-9.ltx - RELOC/doc/latex/pstricks-examples/22-03-1.ltx - RELOC/doc/latex/pstricks-examples/22-03-2.ltx - RELOC/doc/latex/pstricks-examples/22-03-3.ltx - RELOC/doc/latex/pstricks-examples/22-03-4.ltx - RELOC/doc/latex/pstricks-examples/22-03-5.ltx - RELOC/doc/latex/pstricks-examples/22-03-6.ltx - RELOC/doc/latex/pstricks-examples/22-03-7.ltx - RELOC/doc/latex/pstricks-examples/22-03-8.ltx - RELOC/doc/latex/pstricks-examples/22-03-9.ltx - RELOC/doc/latex/pstricks-examples/23-01-1.ltx - RELOC/doc/latex/pstricks-examples/23-01-10.ltx - RELOC/doc/latex/pstricks-examples/23-01-11.ltx - RELOC/doc/latex/pstricks-examples/23-01-12.ltx - RELOC/doc/latex/pstricks-examples/23-01-13.ltx - RELOC/doc/latex/pstricks-examples/23-01-14.ltx - RELOC/doc/latex/pstricks-examples/23-01-15.ltx - RELOC/doc/latex/pstricks-examples/23-01-16.ltx - RELOC/doc/latex/pstricks-examples/23-01-17.ltx - RELOC/doc/latex/pstricks-examples/23-01-18.ltx - RELOC/doc/latex/pstricks-examples/23-01-19.ltx - RELOC/doc/latex/pstricks-examples/23-01-2.ltx - RELOC/doc/latex/pstricks-examples/23-01-20.ltx - RELOC/doc/latex/pstricks-examples/23-01-21.ltx - RELOC/doc/latex/pstricks-examples/23-01-22.ltx - RELOC/doc/latex/pstricks-examples/23-01-23.ltx - RELOC/doc/latex/pstricks-examples/23-01-24.ltx - RELOC/doc/latex/pstricks-examples/23-01-25.ltx - RELOC/doc/latex/pstricks-examples/23-01-3.ltx - RELOC/doc/latex/pstricks-examples/23-01-4.ltx - RELOC/doc/latex/pstricks-examples/23-01-5.ltx - RELOC/doc/latex/pstricks-examples/23-01-6.ltx - RELOC/doc/latex/pstricks-examples/23-01-7.ltx - RELOC/doc/latex/pstricks-examples/23-01-8.ltx - RELOC/doc/latex/pstricks-examples/23-01-9.ltx - RELOC/doc/latex/pstricks-examples/23-02-1.ltx - RELOC/doc/latex/pstricks-examples/23-02-2.ltx - RELOC/doc/latex/pstricks-examples/23-02-3.ltx - RELOC/doc/latex/pstricks-examples/23-02-4.ltx - RELOC/doc/latex/pstricks-examples/23-03-1.ltx - RELOC/doc/latex/pstricks-examples/23-03-10.ltx - RELOC/doc/latex/pstricks-examples/23-03-11.ltx - RELOC/doc/latex/pstricks-examples/23-03-12.ltx - RELOC/doc/latex/pstricks-examples/23-03-13.ltx - RELOC/doc/latex/pstricks-examples/23-03-14.ltx - RELOC/doc/latex/pstricks-examples/23-03-2.ltx - RELOC/doc/latex/pstricks-examples/23-03-3.ltx - RELOC/doc/latex/pstricks-examples/23-03-4.ltx - RELOC/doc/latex/pstricks-examples/23-03-5.ltx - RELOC/doc/latex/pstricks-examples/23-03-6.ltx - RELOC/doc/latex/pstricks-examples/23-03-7.ltx - RELOC/doc/latex/pstricks-examples/23-03-8.ltx - RELOC/doc/latex/pstricks-examples/23-03-9.ltx - RELOC/doc/latex/pstricks-examples/23-04-1.ltx - RELOC/doc/latex/pstricks-examples/23-04-2.ltx - RELOC/doc/latex/pstricks-examples/23-04-3.ltx - RELOC/doc/latex/pstricks-examples/23-04-4.ltx - RELOC/doc/latex/pstricks-examples/23-04-5.ltx - RELOC/doc/latex/pstricks-examples/23-04-6.ltx - RELOC/doc/latex/pstricks-examples/23-05-1.ltx - RELOC/doc/latex/pstricks-examples/23-05-10.ltx - RELOC/doc/latex/pstricks-examples/23-05-11.ltx - RELOC/doc/latex/pstricks-examples/23-05-12.ltx - RELOC/doc/latex/pstricks-examples/23-05-13.ltx - RELOC/doc/latex/pstricks-examples/23-05-14.ltx - RELOC/doc/latex/pstricks-examples/23-05-15.ltx - RELOC/doc/latex/pstricks-examples/23-05-16.ltx - RELOC/doc/latex/pstricks-examples/23-05-17.ltx - RELOC/doc/latex/pstricks-examples/23-05-18.ltx - RELOC/doc/latex/pstricks-examples/23-05-19.ltx - RELOC/doc/latex/pstricks-examples/23-05-2.ltx - RELOC/doc/latex/pstricks-examples/23-05-20.ltx - RELOC/doc/latex/pstricks-examples/23-05-21.ltx - RELOC/doc/latex/pstricks-examples/23-05-22.ltx - RELOC/doc/latex/pstricks-examples/23-05-23.ltx - RELOC/doc/latex/pstricks-examples/23-05-24.ltx - RELOC/doc/latex/pstricks-examples/23-05-25.ltx - RELOC/doc/latex/pstricks-examples/23-05-26.ltx - RELOC/doc/latex/pstricks-examples/23-05-27.ltx - RELOC/doc/latex/pstricks-examples/23-05-28.ltx - RELOC/doc/latex/pstricks-examples/23-05-29.ltx - RELOC/doc/latex/pstricks-examples/23-05-3.ltx - RELOC/doc/latex/pstricks-examples/23-05-30.ltx - RELOC/doc/latex/pstricks-examples/23-05-31.ltx - RELOC/doc/latex/pstricks-examples/23-05-32.ltx - RELOC/doc/latex/pstricks-examples/23-05-33.ltx - RELOC/doc/latex/pstricks-examples/23-05-34.ltx - RELOC/doc/latex/pstricks-examples/23-05-35.ltx - RELOC/doc/latex/pstricks-examples/23-05-36.ltx - RELOC/doc/latex/pstricks-examples/23-05-37.ltx - RELOC/doc/latex/pstricks-examples/23-05-38.ltx - RELOC/doc/latex/pstricks-examples/23-05-39.ltx - RELOC/doc/latex/pstricks-examples/23-05-4.ltx - RELOC/doc/latex/pstricks-examples/23-05-40.ltx - RELOC/doc/latex/pstricks-examples/23-05-41.ltx - RELOC/doc/latex/pstricks-examples/23-05-42.ltx - RELOC/doc/latex/pstricks-examples/23-05-43.ltx - RELOC/doc/latex/pstricks-examples/23-05-44.ltx - RELOC/doc/latex/pstricks-examples/23-05-45.ltx - RELOC/doc/latex/pstricks-examples/23-05-46.ltx - RELOC/doc/latex/pstricks-examples/23-05-47.ltx - RELOC/doc/latex/pstricks-examples/23-05-48.ltx - RELOC/doc/latex/pstricks-examples/23-05-49.ltx - RELOC/doc/latex/pstricks-examples/23-05-5.ltx - RELOC/doc/latex/pstricks-examples/23-05-50.ltx - RELOC/doc/latex/pstricks-examples/23-05-51.ltx - RELOC/doc/latex/pstricks-examples/23-05-52.ltx - RELOC/doc/latex/pstricks-examples/23-05-53.ltx - RELOC/doc/latex/pstricks-examples/23-05-54.ltx - RELOC/doc/latex/pstricks-examples/23-05-55.ltx - RELOC/doc/latex/pstricks-examples/23-05-56.ltx - RELOC/doc/latex/pstricks-examples/23-05-57.ltx - RELOC/doc/latex/pstricks-examples/23-05-58.ltx - RELOC/doc/latex/pstricks-examples/23-05-59.ltx - RELOC/doc/latex/pstricks-examples/23-05-6.ltx - RELOC/doc/latex/pstricks-examples/23-05-60.ltx - RELOC/doc/latex/pstricks-examples/23-05-61.ltx - RELOC/doc/latex/pstricks-examples/23-05-62.ltx - RELOC/doc/latex/pstricks-examples/23-05-63.ltx - RELOC/doc/latex/pstricks-examples/23-05-64.ltx - RELOC/doc/latex/pstricks-examples/23-05-65.ltx - RELOC/doc/latex/pstricks-examples/23-05-7.ltx - RELOC/doc/latex/pstricks-examples/23-05-8.ltx - RELOC/doc/latex/pstricks-examples/23-05-9.ltx - RELOC/doc/latex/pstricks-examples/23-06-1.ltx - RELOC/doc/latex/pstricks-examples/23-06-10.ltx - RELOC/doc/latex/pstricks-examples/23-06-11.ltx - RELOC/doc/latex/pstricks-examples/23-06-12.ltx - RELOC/doc/latex/pstricks-examples/23-06-13.ltx - RELOC/doc/latex/pstricks-examples/23-06-14.ltx - RELOC/doc/latex/pstricks-examples/23-06-15.ltx - RELOC/doc/latex/pstricks-examples/23-06-16.ltx - RELOC/doc/latex/pstricks-examples/23-06-17.ltx - RELOC/doc/latex/pstricks-examples/23-06-18.ltx - RELOC/doc/latex/pstricks-examples/23-06-19.ltx - RELOC/doc/latex/pstricks-examples/23-06-2.ltx - RELOC/doc/latex/pstricks-examples/23-06-20.ltx - RELOC/doc/latex/pstricks-examples/23-06-21.ltx - RELOC/doc/latex/pstricks-examples/23-06-22.ltx - RELOC/doc/latex/pstricks-examples/23-06-23.ltx - RELOC/doc/latex/pstricks-examples/23-06-24.ltx - RELOC/doc/latex/pstricks-examples/23-06-25.ltx - RELOC/doc/latex/pstricks-examples/23-06-26.ltx - RELOC/doc/latex/pstricks-examples/23-06-27.ltx - RELOC/doc/latex/pstricks-examples/23-06-28.ltx - RELOC/doc/latex/pstricks-examples/23-06-29.ltx - RELOC/doc/latex/pstricks-examples/23-06-3.ltx - RELOC/doc/latex/pstricks-examples/23-06-30.ltx - RELOC/doc/latex/pstricks-examples/23-06-31.ltx - RELOC/doc/latex/pstricks-examples/23-06-32.ltx - RELOC/doc/latex/pstricks-examples/23-06-33.ltx - RELOC/doc/latex/pstricks-examples/23-06-34.ltx - RELOC/doc/latex/pstricks-examples/23-06-35.ltx - RELOC/doc/latex/pstricks-examples/23-06-36.ltx - RELOC/doc/latex/pstricks-examples/23-06-37.ltx - RELOC/doc/latex/pstricks-examples/23-06-38.ltx - RELOC/doc/latex/pstricks-examples/23-06-39.ltx - RELOC/doc/latex/pstricks-examples/23-06-4.ltx - RELOC/doc/latex/pstricks-examples/23-06-40.ltx - RELOC/doc/latex/pstricks-examples/23-06-41.ltx - RELOC/doc/latex/pstricks-examples/23-06-42.ltx - RELOC/doc/latex/pstricks-examples/23-06-43.ltx - RELOC/doc/latex/pstricks-examples/23-06-44.ltx - RELOC/doc/latex/pstricks-examples/23-06-45.ltx - RELOC/doc/latex/pstricks-examples/23-06-46.ltx - RELOC/doc/latex/pstricks-examples/23-06-47.ltx - RELOC/doc/latex/pstricks-examples/23-06-48.ltx - RELOC/doc/latex/pstricks-examples/23-06-49.ltx - RELOC/doc/latex/pstricks-examples/23-06-5.ltx - RELOC/doc/latex/pstricks-examples/23-06-50.ltx - RELOC/doc/latex/pstricks-examples/23-06-51.ltx - RELOC/doc/latex/pstricks-examples/23-06-52.ltx - RELOC/doc/latex/pstricks-examples/23-06-53.ltx - RELOC/doc/latex/pstricks-examples/23-06-54.ltx - RELOC/doc/latex/pstricks-examples/23-06-55.ltx - RELOC/doc/latex/pstricks-examples/23-06-56.ltx - RELOC/doc/latex/pstricks-examples/23-06-57.ltx - RELOC/doc/latex/pstricks-examples/23-06-58.ltx - RELOC/doc/latex/pstricks-examples/23-06-59.ltx - RELOC/doc/latex/pstricks-examples/23-06-6.ltx - RELOC/doc/latex/pstricks-examples/23-06-60.ltx - RELOC/doc/latex/pstricks-examples/23-06-61.ltx - RELOC/doc/latex/pstricks-examples/23-06-62.ltx - RELOC/doc/latex/pstricks-examples/23-06-63.ltx - RELOC/doc/latex/pstricks-examples/23-06-64.ltx - RELOC/doc/latex/pstricks-examples/23-06-65.ltx - RELOC/doc/latex/pstricks-examples/23-06-66.ltx - RELOC/doc/latex/pstricks-examples/23-06-67.ltx - RELOC/doc/latex/pstricks-examples/23-06-68.ltx - RELOC/doc/latex/pstricks-examples/23-06-69.ltx - RELOC/doc/latex/pstricks-examples/23-06-7.ltx - RELOC/doc/latex/pstricks-examples/23-06-70.ltx - RELOC/doc/latex/pstricks-examples/23-06-71.ltx - RELOC/doc/latex/pstricks-examples/23-06-72.ltx - RELOC/doc/latex/pstricks-examples/23-06-73.ltx - RELOC/doc/latex/pstricks-examples/23-06-74.ltx - RELOC/doc/latex/pstricks-examples/23-06-75.ltx - RELOC/doc/latex/pstricks-examples/23-06-76.ltx - RELOC/doc/latex/pstricks-examples/23-06-77.ltx - RELOC/doc/latex/pstricks-examples/23-06-78.ltx - RELOC/doc/latex/pstricks-examples/23-06-79.ltx - RELOC/doc/latex/pstricks-examples/23-06-8.ltx - RELOC/doc/latex/pstricks-examples/23-06-80.ltx - RELOC/doc/latex/pstricks-examples/23-06-81.ltx - RELOC/doc/latex/pstricks-examples/23-06-82.ltx - RELOC/doc/latex/pstricks-examples/23-06-83.ltx - RELOC/doc/latex/pstricks-examples/23-06-84.ltx - RELOC/doc/latex/pstricks-examples/23-06-85.ltx - RELOC/doc/latex/pstricks-examples/23-06-86.ltx - RELOC/doc/latex/pstricks-examples/23-06-87.ltx - RELOC/doc/latex/pstricks-examples/23-06-88.ltx - RELOC/doc/latex/pstricks-examples/23-06-89.ltx - RELOC/doc/latex/pstricks-examples/23-06-9.ltx - RELOC/doc/latex/pstricks-examples/23-06-90.ltx - RELOC/doc/latex/pstricks-examples/23-06-91.ltx - RELOC/doc/latex/pstricks-examples/23-06-92.ltx - RELOC/doc/latex/pstricks-examples/23-06-93.ltx - RELOC/doc/latex/pstricks-examples/23-06-94.ltx - RELOC/doc/latex/pstricks-examples/23-06-95.ltx - RELOC/doc/latex/pstricks-examples/23-06-96.ltx - RELOC/doc/latex/pstricks-examples/23-06-97.ltx - RELOC/doc/latex/pstricks-examples/23-07-1.ltx - RELOC/doc/latex/pstricks-examples/23-07-10.ltx - RELOC/doc/latex/pstricks-examples/23-07-11.ltx - RELOC/doc/latex/pstricks-examples/23-07-12.ltx - RELOC/doc/latex/pstricks-examples/23-07-13.ltx - RELOC/doc/latex/pstricks-examples/23-07-14.ltx - RELOC/doc/latex/pstricks-examples/23-07-15.ltx - RELOC/doc/latex/pstricks-examples/23-07-16.ltx - RELOC/doc/latex/pstricks-examples/23-07-17.ltx - RELOC/doc/latex/pstricks-examples/23-07-18.ltx - RELOC/doc/latex/pstricks-examples/23-07-19.ltx - RELOC/doc/latex/pstricks-examples/23-07-2.ltx - RELOC/doc/latex/pstricks-examples/23-07-20.ltx - RELOC/doc/latex/pstricks-examples/23-07-3.ltx - RELOC/doc/latex/pstricks-examples/23-07-4.ltx - RELOC/doc/latex/pstricks-examples/23-07-5.ltx - RELOC/doc/latex/pstricks-examples/23-07-6.ltx - RELOC/doc/latex/pstricks-examples/23-07-7.ltx - RELOC/doc/latex/pstricks-examples/23-07-8.ltx - RELOC/doc/latex/pstricks-examples/23-07-9.ltx - RELOC/doc/latex/pstricks-examples/23-08-1.ltx - RELOC/doc/latex/pstricks-examples/23-08-2.ltx - RELOC/doc/latex/pstricks-examples/23-08-3.ltx - RELOC/doc/latex/pstricks-examples/23-08-4.ltx - RELOC/doc/latex/pstricks-examples/23-08-5.ltx - RELOC/doc/latex/pstricks-examples/23-08-6.ltx - RELOC/doc/latex/pstricks-examples/23-08-7.ltx - RELOC/doc/latex/pstricks-examples/23-08-8.ltx - RELOC/doc/latex/pstricks-examples/24-01-1.ltx - RELOC/doc/latex/pstricks-examples/24-01-10.ltx - RELOC/doc/latex/pstricks-examples/24-01-11.ltx - RELOC/doc/latex/pstricks-examples/24-01-12.ltx - RELOC/doc/latex/pstricks-examples/24-01-13.ltx - RELOC/doc/latex/pstricks-examples/24-01-14.inl - RELOC/doc/latex/pstricks-examples/24-01-15.inl - RELOC/doc/latex/pstricks-examples/24-01-16.inl - RELOC/doc/latex/pstricks-examples/24-01-17.ltx - RELOC/doc/latex/pstricks-examples/24-01-18.ltx - RELOC/doc/latex/pstricks-examples/24-01-19.ltx - RELOC/doc/latex/pstricks-examples/24-01-2.ltx - RELOC/doc/latex/pstricks-examples/24-01-20.ltx - RELOC/doc/latex/pstricks-examples/24-01-21.ltx - RELOC/doc/latex/pstricks-examples/24-01-22.ltx - RELOC/doc/latex/pstricks-examples/24-01-23.ltx - RELOC/doc/latex/pstricks-examples/24-01-24.ltx - RELOC/doc/latex/pstricks-examples/24-01-3.ltx - RELOC/doc/latex/pstricks-examples/24-01-4.ltx - RELOC/doc/latex/pstricks-examples/24-01-5.ltx - RELOC/doc/latex/pstricks-examples/24-01-6.ltx - RELOC/doc/latex/pstricks-examples/24-01-7.ltx - RELOC/doc/latex/pstricks-examples/24-01-8.ltx - RELOC/doc/latex/pstricks-examples/24-01-9.ltx - RELOC/doc/latex/pstricks-examples/24-02-1.ltx - RELOC/doc/latex/pstricks-examples/24-02-10.ltx - RELOC/doc/latex/pstricks-examples/24-02-11.ltx - RELOC/doc/latex/pstricks-examples/24-02-12.ltx - RELOC/doc/latex/pstricks-examples/24-02-2.ltx - RELOC/doc/latex/pstricks-examples/24-02-3.ltx - RELOC/doc/latex/pstricks-examples/24-02-4.ltx - RELOC/doc/latex/pstricks-examples/24-02-5.ltx - RELOC/doc/latex/pstricks-examples/24-02-6.ltx - RELOC/doc/latex/pstricks-examples/24-02-7.ltx - RELOC/doc/latex/pstricks-examples/24-02-8.ltx - RELOC/doc/latex/pstricks-examples/24-02-9.ltx - RELOC/doc/latex/pstricks-examples/24-03-1.inl - RELOC/doc/latex/pstricks-examples/24-03-10.inl - RELOC/doc/latex/pstricks-examples/24-03-11.inl - RELOC/doc/latex/pstricks-examples/24-03-12.inl - RELOC/doc/latex/pstricks-examples/24-03-13.inl - RELOC/doc/latex/pstricks-examples/24-03-14.inl - RELOC/doc/latex/pstricks-examples/24-03-15.inl - RELOC/doc/latex/pstricks-examples/24-03-16.inl - RELOC/doc/latex/pstricks-examples/24-03-17.inl - RELOC/doc/latex/pstricks-examples/24-03-18.inl - RELOC/doc/latex/pstricks-examples/24-03-19.inl - RELOC/doc/latex/pstricks-examples/24-03-2.inl - RELOC/doc/latex/pstricks-examples/24-03-20.inl - RELOC/doc/latex/pstricks-examples/24-03-21.inl - RELOC/doc/latex/pstricks-examples/24-03-22.inl - RELOC/doc/latex/pstricks-examples/24-03-23.inl - RELOC/doc/latex/pstricks-examples/24-03-24.inl - RELOC/doc/latex/pstricks-examples/24-03-25.inl - RELOC/doc/latex/pstricks-examples/24-03-26.inl - RELOC/doc/latex/pstricks-examples/24-03-27.inl - RELOC/doc/latex/pstricks-examples/24-03-28.inl - RELOC/doc/latex/pstricks-examples/24-03-29.ltx - RELOC/doc/latex/pstricks-examples/24-03-3.inl - RELOC/doc/latex/pstricks-examples/24-03-30.inl - RELOC/doc/latex/pstricks-examples/24-03-31.inl - RELOC/doc/latex/pstricks-examples/24-03-32.inl - RELOC/doc/latex/pstricks-examples/24-03-33.inl - RELOC/doc/latex/pstricks-examples/24-03-34.inl - RELOC/doc/latex/pstricks-examples/24-03-35.inl - RELOC/doc/latex/pstricks-examples/24-03-36.inl - RELOC/doc/latex/pstricks-examples/24-03-37.inl - RELOC/doc/latex/pstricks-examples/24-03-38.inl - RELOC/doc/latex/pstricks-examples/24-03-39.inl - RELOC/doc/latex/pstricks-examples/24-03-4.inl - RELOC/doc/latex/pstricks-examples/24-03-40.inl - RELOC/doc/latex/pstricks-examples/24-03-41.ltx - RELOC/doc/latex/pstricks-examples/24-03-42.ltx - RELOC/doc/latex/pstricks-examples/24-03-43.ltx - RELOC/doc/latex/pstricks-examples/24-03-44.inl - RELOC/doc/latex/pstricks-examples/24-03-45.inl - RELOC/doc/latex/pstricks-examples/24-03-46.inl - RELOC/doc/latex/pstricks-examples/24-03-47.inl - RELOC/doc/latex/pstricks-examples/24-03-48.inl - RELOC/doc/latex/pstricks-examples/24-03-49.inl - RELOC/doc/latex/pstricks-examples/24-03-5.inl - RELOC/doc/latex/pstricks-examples/24-03-50.inl - RELOC/doc/latex/pstricks-examples/24-03-51.inl - RELOC/doc/latex/pstricks-examples/24-03-52.inl - RELOC/doc/latex/pstricks-examples/24-03-53.inl - RELOC/doc/latex/pstricks-examples/24-03-54.inl - RELOC/doc/latex/pstricks-examples/24-03-55.inl - RELOC/doc/latex/pstricks-examples/24-03-56.inl - RELOC/doc/latex/pstricks-examples/24-03-57.inl - RELOC/doc/latex/pstricks-examples/24-03-58.inl - RELOC/doc/latex/pstricks-examples/24-03-59.inl - RELOC/doc/latex/pstricks-examples/24-03-6.inl - RELOC/doc/latex/pstricks-examples/24-03-60.inl - RELOC/doc/latex/pstricks-examples/24-03-61.inl - RELOC/doc/latex/pstricks-examples/24-03-62.inl - RELOC/doc/latex/pstricks-examples/24-03-63.inl - RELOC/doc/latex/pstricks-examples/24-03-64.inl - RELOC/doc/latex/pstricks-examples/24-03-65.inl - RELOC/doc/latex/pstricks-examples/24-03-66.inl - RELOC/doc/latex/pstricks-examples/24-03-67.inl - RELOC/doc/latex/pstricks-examples/24-03-68.inl - RELOC/doc/latex/pstricks-examples/24-03-69.inl - RELOC/doc/latex/pstricks-examples/24-03-7.inl - RELOC/doc/latex/pstricks-examples/24-03-70.inl - RELOC/doc/latex/pstricks-examples/24-03-71.inl - RELOC/doc/latex/pstricks-examples/24-03-72.inl - RELOC/doc/latex/pstricks-examples/24-03-73.inl - RELOC/doc/latex/pstricks-examples/24-03-74.inl - RELOC/doc/latex/pstricks-examples/24-03-75.ltx - RELOC/doc/latex/pstricks-examples/24-03-76.ltx - RELOC/doc/latex/pstricks-examples/24-03-77.ltx - RELOC/doc/latex/pstricks-examples/24-03-78.ltx - RELOC/doc/latex/pstricks-examples/24-03-79.ltx - RELOC/doc/latex/pstricks-examples/24-03-8.inl - RELOC/doc/latex/pstricks-examples/24-03-9.inl - RELOC/doc/latex/pstricks-examples/24-04-1.ltx - RELOC/doc/latex/pstricks-examples/24-04-10.ltx - RELOC/doc/latex/pstricks-examples/24-04-11.ltx - RELOC/doc/latex/pstricks-examples/24-04-12.ltx - RELOC/doc/latex/pstricks-examples/24-04-13.ltx - RELOC/doc/latex/pstricks-examples/24-04-14.ltx - RELOC/doc/latex/pstricks-examples/24-04-15.ltx - RELOC/doc/latex/pstricks-examples/24-04-16.ltx - RELOC/doc/latex/pstricks-examples/24-04-17.ltx - RELOC/doc/latex/pstricks-examples/24-04-18.ltx - RELOC/doc/latex/pstricks-examples/24-04-19.ltx - RELOC/doc/latex/pstricks-examples/24-04-2.ltx - RELOC/doc/latex/pstricks-examples/24-04-20.ltx - RELOC/doc/latex/pstricks-examples/24-04-21.ltx - RELOC/doc/latex/pstricks-examples/24-04-22.ltx - RELOC/doc/latex/pstricks-examples/24-04-23.ltx - RELOC/doc/latex/pstricks-examples/24-04-24.ltx - RELOC/doc/latex/pstricks-examples/24-04-25.ltx - RELOC/doc/latex/pstricks-examples/24-04-26.ltx - RELOC/doc/latex/pstricks-examples/24-04-27.ltx - RELOC/doc/latex/pstricks-examples/24-04-28.ltx - RELOC/doc/latex/pstricks-examples/24-04-29.ltx - RELOC/doc/latex/pstricks-examples/24-04-3.ltx - RELOC/doc/latex/pstricks-examples/24-04-30.ltx - RELOC/doc/latex/pstricks-examples/24-04-4.ltx - RELOC/doc/latex/pstricks-examples/24-04-5.ltx - RELOC/doc/latex/pstricks-examples/24-04-6.ltx - RELOC/doc/latex/pstricks-examples/24-04-7.ltx - RELOC/doc/latex/pstricks-examples/24-04-8.ltx - RELOC/doc/latex/pstricks-examples/24-04-9.ltx - RELOC/doc/latex/pstricks-examples/25-01-1.ltx - RELOC/doc/latex/pstricks-examples/25-01-10.ltx - RELOC/doc/latex/pstricks-examples/25-01-11.ltx - RELOC/doc/latex/pstricks-examples/25-01-12.ltx - RELOC/doc/latex/pstricks-examples/25-01-13.ltx - RELOC/doc/latex/pstricks-examples/25-01-14.ltx - RELOC/doc/latex/pstricks-examples/25-01-15.ltx - RELOC/doc/latex/pstricks-examples/25-01-16.ltx - RELOC/doc/latex/pstricks-examples/25-01-17.ltx - RELOC/doc/latex/pstricks-examples/25-01-18.ltx - RELOC/doc/latex/pstricks-examples/25-01-19.ltx - RELOC/doc/latex/pstricks-examples/25-01-2.ltx - RELOC/doc/latex/pstricks-examples/25-01-20.ltx - RELOC/doc/latex/pstricks-examples/25-01-3.ltx - RELOC/doc/latex/pstricks-examples/25-01-4.ltx - RELOC/doc/latex/pstricks-examples/25-01-5.ltx - RELOC/doc/latex/pstricks-examples/25-01-6.ltx - RELOC/doc/latex/pstricks-examples/25-01-7.ltx - RELOC/doc/latex/pstricks-examples/25-01-8.ltx - RELOC/doc/latex/pstricks-examples/25-01-9.ltx - RELOC/doc/latex/pstricks-examples/25-02-1.ltx - RELOC/doc/latex/pstricks-examples/25-02-10.ltx - RELOC/doc/latex/pstricks-examples/25-02-11.ltx - RELOC/doc/latex/pstricks-examples/25-02-12.ltx - RELOC/doc/latex/pstricks-examples/25-02-13.ltx - RELOC/doc/latex/pstricks-examples/25-02-14.ltx - RELOC/doc/latex/pstricks-examples/25-02-15.ltx - RELOC/doc/latex/pstricks-examples/25-02-16.ltx - RELOC/doc/latex/pstricks-examples/25-02-17.ltx - RELOC/doc/latex/pstricks-examples/25-02-18.ltx - RELOC/doc/latex/pstricks-examples/25-02-19.ltx - RELOC/doc/latex/pstricks-examples/25-02-2.ltx - RELOC/doc/latex/pstricks-examples/25-02-20.ltx - RELOC/doc/latex/pstricks-examples/25-02-21.ltx - RELOC/doc/latex/pstricks-examples/25-02-22.ltx - RELOC/doc/latex/pstricks-examples/25-02-23.ltx - RELOC/doc/latex/pstricks-examples/25-02-24.ltx - RELOC/doc/latex/pstricks-examples/25-02-25.ltx - RELOC/doc/latex/pstricks-examples/25-02-26.ltx - RELOC/doc/latex/pstricks-examples/25-02-27.ltx - RELOC/doc/latex/pstricks-examples/25-02-28.ltx - RELOC/doc/latex/pstricks-examples/25-02-29.ltx - RELOC/doc/latex/pstricks-examples/25-02-3.ltx - RELOC/doc/latex/pstricks-examples/25-02-30.ltx - RELOC/doc/latex/pstricks-examples/25-02-31.ltx - RELOC/doc/latex/pstricks-examples/25-02-32.ltx - RELOC/doc/latex/pstricks-examples/25-02-33.ltx - RELOC/doc/latex/pstricks-examples/25-02-34.ltx - RELOC/doc/latex/pstricks-examples/25-02-35.ltx - RELOC/doc/latex/pstricks-examples/25-02-36.ltx - RELOC/doc/latex/pstricks-examples/25-02-37.ltx - RELOC/doc/latex/pstricks-examples/25-02-38.ltx - RELOC/doc/latex/pstricks-examples/25-02-39.ltx - RELOC/doc/latex/pstricks-examples/25-02-4.ltx - RELOC/doc/latex/pstricks-examples/25-02-40.ltx - RELOC/doc/latex/pstricks-examples/25-02-41.ltx - RELOC/doc/latex/pstricks-examples/25-02-42.ltx - RELOC/doc/latex/pstricks-examples/25-02-43.ltx - RELOC/doc/latex/pstricks-examples/25-02-44.ltx - RELOC/doc/latex/pstricks-examples/25-02-45.ltx - RELOC/doc/latex/pstricks-examples/25-02-46.ltx - RELOC/doc/latex/pstricks-examples/25-02-47.ltx - RELOC/doc/latex/pstricks-examples/25-02-5.ltx - RELOC/doc/latex/pstricks-examples/25-02-6.ltx - RELOC/doc/latex/pstricks-examples/25-02-7.ltx - RELOC/doc/latex/pstricks-examples/25-02-8.ltx - RELOC/doc/latex/pstricks-examples/25-02-9.ltx - RELOC/doc/latex/pstricks-examples/25-03-1.ltx - RELOC/doc/latex/pstricks-examples/25-03-10.ltx - RELOC/doc/latex/pstricks-examples/25-03-11.ltx - RELOC/doc/latex/pstricks-examples/25-03-12.ltx - RELOC/doc/latex/pstricks-examples/25-03-13.ltx - RELOC/doc/latex/pstricks-examples/25-03-14.ltx - RELOC/doc/latex/pstricks-examples/25-03-15.ltx - RELOC/doc/latex/pstricks-examples/25-03-16.ltx - RELOC/doc/latex/pstricks-examples/25-03-17.ltx - RELOC/doc/latex/pstricks-examples/25-03-18.ltx - RELOC/doc/latex/pstricks-examples/25-03-19.ltx - RELOC/doc/latex/pstricks-examples/25-03-2.ltx - RELOC/doc/latex/pstricks-examples/25-03-20.ltx - RELOC/doc/latex/pstricks-examples/25-03-21.ltx - RELOC/doc/latex/pstricks-examples/25-03-22.ltx - RELOC/doc/latex/pstricks-examples/25-03-23.ltx - RELOC/doc/latex/pstricks-examples/25-03-24.ltx - RELOC/doc/latex/pstricks-examples/25-03-25.ltx - RELOC/doc/latex/pstricks-examples/25-03-26.ltx - RELOC/doc/latex/pstricks-examples/25-03-27.ltx - RELOC/doc/latex/pstricks-examples/25-03-28.ltx - RELOC/doc/latex/pstricks-examples/25-03-29.ltx - RELOC/doc/latex/pstricks-examples/25-03-3.ltx - RELOC/doc/latex/pstricks-examples/25-03-30.ltx - RELOC/doc/latex/pstricks-examples/25-03-31.ltx - RELOC/doc/latex/pstricks-examples/25-03-32.ltx - RELOC/doc/latex/pstricks-examples/25-03-33.ltx - RELOC/doc/latex/pstricks-examples/25-03-34.ltx - RELOC/doc/latex/pstricks-examples/25-03-35.ltx - RELOC/doc/latex/pstricks-examples/25-03-36.ltx - RELOC/doc/latex/pstricks-examples/25-03-37.ltx - RELOC/doc/latex/pstricks-examples/25-03-38.ltx - RELOC/doc/latex/pstricks-examples/25-03-39.ltx - RELOC/doc/latex/pstricks-examples/25-03-4.ltx - RELOC/doc/latex/pstricks-examples/25-03-40.ltx - RELOC/doc/latex/pstricks-examples/25-03-41.ltx - RELOC/doc/latex/pstricks-examples/25-03-42.ltx - RELOC/doc/latex/pstricks-examples/25-03-43.ltx - RELOC/doc/latex/pstricks-examples/25-03-44.ltx - RELOC/doc/latex/pstricks-examples/25-03-45.ltx - RELOC/doc/latex/pstricks-examples/25-03-46.ltx - RELOC/doc/latex/pstricks-examples/25-03-47.ltx - RELOC/doc/latex/pstricks-examples/25-03-48.ltx - RELOC/doc/latex/pstricks-examples/25-03-49.ltx - RELOC/doc/latex/pstricks-examples/25-03-5.ltx - RELOC/doc/latex/pstricks-examples/25-03-50.ltx - RELOC/doc/latex/pstricks-examples/25-03-51.ltx - RELOC/doc/latex/pstricks-examples/25-03-52.ltx - RELOC/doc/latex/pstricks-examples/25-03-53.ltx - RELOC/doc/latex/pstricks-examples/25-03-54.ltx - RELOC/doc/latex/pstricks-examples/25-03-55.ltx - RELOC/doc/latex/pstricks-examples/25-03-56.ltx - RELOC/doc/latex/pstricks-examples/25-03-57.ltx - RELOC/doc/latex/pstricks-examples/25-03-58.ltx - RELOC/doc/latex/pstricks-examples/25-03-59.ltx - RELOC/doc/latex/pstricks-examples/25-03-6.ltx - RELOC/doc/latex/pstricks-examples/25-03-60.ltx - RELOC/doc/latex/pstricks-examples/25-03-61.ltx - RELOC/doc/latex/pstricks-examples/25-03-62.ltx - RELOC/doc/latex/pstricks-examples/25-03-63.ltx - RELOC/doc/latex/pstricks-examples/25-03-64.ltx - RELOC/doc/latex/pstricks-examples/25-03-65.ltx - RELOC/doc/latex/pstricks-examples/25-03-66.ltx - RELOC/doc/latex/pstricks-examples/25-03-67.ltx - RELOC/doc/latex/pstricks-examples/25-03-68.ltx - RELOC/doc/latex/pstricks-examples/25-03-69.ltx - RELOC/doc/latex/pstricks-examples/25-03-7.ltx - RELOC/doc/latex/pstricks-examples/25-03-70.ltx - RELOC/doc/latex/pstricks-examples/25-03-71.ltx - RELOC/doc/latex/pstricks-examples/25-03-8.ltx - RELOC/doc/latex/pstricks-examples/25-03-9.ltx - RELOC/doc/latex/pstricks-examples/25-04-1.ltx - RELOC/doc/latex/pstricks-examples/25-04-10.inl - RELOC/doc/latex/pstricks-examples/25-04-11.inl - RELOC/doc/latex/pstricks-examples/25-04-12.inl - RELOC/doc/latex/pstricks-examples/25-04-13.inl - RELOC/doc/latex/pstricks-examples/25-04-14.inl - RELOC/doc/latex/pstricks-examples/25-04-15.inl - RELOC/doc/latex/pstricks-examples/25-04-16.inl - RELOC/doc/latex/pstricks-examples/25-04-17.inl - RELOC/doc/latex/pstricks-examples/25-04-18.inl - RELOC/doc/latex/pstricks-examples/25-04-19.inl - RELOC/doc/latex/pstricks-examples/25-04-2.ltx - RELOC/doc/latex/pstricks-examples/25-04-20.inl - RELOC/doc/latex/pstricks-examples/25-04-21.inl - RELOC/doc/latex/pstricks-examples/25-04-22.inl - RELOC/doc/latex/pstricks-examples/25-04-23.ltx - RELOC/doc/latex/pstricks-examples/25-04-24.ltx - RELOC/doc/latex/pstricks-examples/25-04-25.ltx - RELOC/doc/latex/pstricks-examples/25-04-26.ltx - RELOC/doc/latex/pstricks-examples/25-04-27.ltx - RELOC/doc/latex/pstricks-examples/25-04-28.ltx - RELOC/doc/latex/pstricks-examples/25-04-29.ltx - RELOC/doc/latex/pstricks-examples/25-04-3.ltx - RELOC/doc/latex/pstricks-examples/25-04-4.ltx - RELOC/doc/latex/pstricks-examples/25-04-5.ltx - RELOC/doc/latex/pstricks-examples/25-04-6.ltx - RELOC/doc/latex/pstricks-examples/25-04-7.inl - RELOC/doc/latex/pstricks-examples/25-04-8.inl - RELOC/doc/latex/pstricks-examples/25-04-9.inl - RELOC/doc/latex/pstricks-examples/25-05-1.ltx - RELOC/doc/latex/pstricks-examples/25-05-10.inl - RELOC/doc/latex/pstricks-examples/25-05-11.inl - RELOC/doc/latex/pstricks-examples/25-05-12.inl - RELOC/doc/latex/pstricks-examples/25-05-13.inl - RELOC/doc/latex/pstricks-examples/25-05-14.inl - RELOC/doc/latex/pstricks-examples/25-05-15.inl - RELOC/doc/latex/pstricks-examples/25-05-16.inl - RELOC/doc/latex/pstricks-examples/25-05-17.inl - RELOC/doc/latex/pstricks-examples/25-05-18.inl - RELOC/doc/latex/pstricks-examples/25-05-19.inl - RELOC/doc/latex/pstricks-examples/25-05-2.ltx - RELOC/doc/latex/pstricks-examples/25-05-20.inl - RELOC/doc/latex/pstricks-examples/25-05-21.inl - RELOC/doc/latex/pstricks-examples/25-05-22.inl - RELOC/doc/latex/pstricks-examples/25-05-23.inl - RELOC/doc/latex/pstricks-examples/25-05-24.ltx - RELOC/doc/latex/pstricks-examples/25-05-25.ltx - RELOC/doc/latex/pstricks-examples/25-05-26.ltx - RELOC/doc/latex/pstricks-examples/25-05-3.ltx - RELOC/doc/latex/pstricks-examples/25-05-4.ltx - RELOC/doc/latex/pstricks-examples/25-05-5.ltx - RELOC/doc/latex/pstricks-examples/25-05-6.ltx - RELOC/doc/latex/pstricks-examples/25-05-7.ltx - RELOC/doc/latex/pstricks-examples/25-05-8.ltx - RELOC/doc/latex/pstricks-examples/25-05-9.ltx - RELOC/doc/latex/pstricks-examples/25-06-1.ltx - RELOC/doc/latex/pstricks-examples/25-06-2.ltx - RELOC/doc/latex/pstricks-examples/25-06-3.ltx - RELOC/doc/latex/pstricks-examples/25-06-4.ltx - RELOC/doc/latex/pstricks-examples/25-06-5.ltx - RELOC/doc/latex/pstricks-examples/25-06-6.ltx - RELOC/doc/latex/pstricks-examples/25-06-7.ltx - RELOC/doc/latex/pstricks-examples/25-06-8.ltx - RELOC/doc/latex/pstricks-examples/25-06-9.ltx - RELOC/doc/latex/pstricks-examples/25-07-1.ltx - RELOC/doc/latex/pstricks-examples/25-07-2.ltx - RELOC/doc/latex/pstricks-examples/25-07-3.ltx - RELOC/doc/latex/pstricks-examples/25-07-4.ltx - RELOC/doc/latex/pstricks-examples/25-07-5.ltx - RELOC/doc/latex/pstricks-examples/25-07-6.ltx - RELOC/doc/latex/pstricks-examples/26-01-1.ltx - RELOC/doc/latex/pstricks-examples/26-01-2.ltx - RELOC/doc/latex/pstricks-examples/26-01-3.ltx - RELOC/doc/latex/pstricks-examples/26-01-4.ltx - RELOC/doc/latex/pstricks-examples/26-02-1.ltx - RELOC/doc/latex/pstricks-examples/26-02-10.ltx - RELOC/doc/latex/pstricks-examples/26-02-11.ltx - RELOC/doc/latex/pstricks-examples/26-02-12.ltx - RELOC/doc/latex/pstricks-examples/26-02-13.ltx - RELOC/doc/latex/pstricks-examples/26-02-14.ltx - RELOC/doc/latex/pstricks-examples/26-02-15.ltx - RELOC/doc/latex/pstricks-examples/26-02-16.ltx - RELOC/doc/latex/pstricks-examples/26-02-17.ltx - RELOC/doc/latex/pstricks-examples/26-02-18.ltx - RELOC/doc/latex/pstricks-examples/26-02-19.ltx - RELOC/doc/latex/pstricks-examples/26-02-2.ltx - RELOC/doc/latex/pstricks-examples/26-02-20.ltx - RELOC/doc/latex/pstricks-examples/26-02-21.ltx - RELOC/doc/latex/pstricks-examples/26-02-22.ltx - RELOC/doc/latex/pstricks-examples/26-02-23.ltx - RELOC/doc/latex/pstricks-examples/26-02-24.ltx - RELOC/doc/latex/pstricks-examples/26-02-25.ltx - RELOC/doc/latex/pstricks-examples/26-02-26.ltx - RELOC/doc/latex/pstricks-examples/26-02-27.ltx - RELOC/doc/latex/pstricks-examples/26-02-28.ltx2ps - RELOC/doc/latex/pstricks-examples/26-02-29.ltx2ps - RELOC/doc/latex/pstricks-examples/26-02-3.ltx - RELOC/doc/latex/pstricks-examples/26-02-4.ltx - RELOC/doc/latex/pstricks-examples/26-02-5.ltx - RELOC/doc/latex/pstricks-examples/26-02-6.ltx - RELOC/doc/latex/pstricks-examples/26-02-7.ltx - RELOC/doc/latex/pstricks-examples/26-02-8.ltx - RELOC/doc/latex/pstricks-examples/26-02-9.ltx - RELOC/doc/latex/pstricks-examples/27-01-1.ltxpd - RELOC/doc/latex/pstricks-examples/27-01-10.ltxpd - RELOC/doc/latex/pstricks-examples/27-01-11.ltxpd - RELOC/doc/latex/pstricks-examples/27-01-12.ltxpd - RELOC/doc/latex/pstricks-examples/27-01-13.ltxpd - RELOC/doc/latex/pstricks-examples/27-01-14.ltxpd - RELOC/doc/latex/pstricks-examples/27-01-15.ltxpd - RELOC/doc/latex/pstricks-examples/27-01-16.ltxpd - RELOC/doc/latex/pstricks-examples/27-01-17.ltxpd - RELOC/doc/latex/pstricks-examples/27-01-18.ltxpd - RELOC/doc/latex/pstricks-examples/27-01-19.ltxpd - RELOC/doc/latex/pstricks-examples/27-01-2.ltxpd - RELOC/doc/latex/pstricks-examples/27-01-20.ltxpd - RELOC/doc/latex/pstricks-examples/27-01-21.ltxpd - RELOC/doc/latex/pstricks-examples/27-01-22.ltxpd - RELOC/doc/latex/pstricks-examples/27-01-23.ltx - RELOC/doc/latex/pstricks-examples/27-01-24.ltxpd - RELOC/doc/latex/pstricks-examples/27-01-25.ltxpd - RELOC/doc/latex/pstricks-examples/27-01-26.ltx - RELOC/doc/latex/pstricks-examples/27-01-3.ltxpd - RELOC/doc/latex/pstricks-examples/27-01-4.ltxpd - RELOC/doc/latex/pstricks-examples/27-01-5.ltxpd - RELOC/doc/latex/pstricks-examples/27-01-6.ltxpd - RELOC/doc/latex/pstricks-examples/27-01-7.ltxpd - RELOC/doc/latex/pstricks-examples/27-01-8.ltxpd - RELOC/doc/latex/pstricks-examples/27-01-9.ltxpd - RELOC/doc/latex/pstricks-examples/27-02-1.ltx - RELOC/doc/latex/pstricks-examples/27-02-2.ltx - RELOC/doc/latex/pstricks-examples/27-02-3.ltx - RELOC/doc/latex/pstricks-examples/27-02-4.ltx - RELOC/doc/latex/pstricks-examples/27-02-5.ltx - RELOC/doc/latex/pstricks-examples/27-02-6.ltx - RELOC/doc/latex/pstricks-examples/27-02-7.ltx - RELOC/doc/latex/pstricks-examples/27-02-8.ltx - RELOC/doc/latex/pstricks-examples/27-03-1.ltx - RELOC/doc/latex/pstricks-examples/27-03-2.ltx - RELOC/doc/latex/pstricks-examples/27-03-3.ltx - RELOC/doc/latex/pstricks-examples/27-03-4.ltx - RELOC/doc/latex/pstricks-examples/27-03-5.ltx - RELOC/doc/latex/pstricks-examples/28-01-1.ltx - RELOC/doc/latex/pstricks-examples/28-01-2.ltx - RELOC/doc/latex/pstricks-examples/28-01-3.ltx - RELOC/doc/latex/pstricks-examples/28-02-1.ltx - RELOC/doc/latex/pstricks-examples/28-02-10.ltx - RELOC/doc/latex/pstricks-examples/28-02-11.ltx - RELOC/doc/latex/pstricks-examples/28-02-12.ltx - RELOC/doc/latex/pstricks-examples/28-02-13.ltx - RELOC/doc/latex/pstricks-examples/28-02-14.ltx - RELOC/doc/latex/pstricks-examples/28-02-15.ltx - RELOC/doc/latex/pstricks-examples/28-02-16.ltx - RELOC/doc/latex/pstricks-examples/28-02-17.ltx - RELOC/doc/latex/pstricks-examples/28-02-18.ltx - RELOC/doc/latex/pstricks-examples/28-02-19.ltx - RELOC/doc/latex/pstricks-examples/28-02-2.ltx - RELOC/doc/latex/pstricks-examples/28-02-20.ltx - RELOC/doc/latex/pstricks-examples/28-02-21.ltx - RELOC/doc/latex/pstricks-examples/28-02-22.ltx - RELOC/doc/latex/pstricks-examples/28-02-23.ltx - RELOC/doc/latex/pstricks-examples/28-02-24.ltx - RELOC/doc/latex/pstricks-examples/28-02-25.ltx - RELOC/doc/latex/pstricks-examples/28-02-26.ltx - RELOC/doc/latex/pstricks-examples/28-02-27.ltx - RELOC/doc/latex/pstricks-examples/28-02-28.ltx - RELOC/doc/latex/pstricks-examples/28-02-29.ltx - RELOC/doc/latex/pstricks-examples/28-02-3.ltx - RELOC/doc/latex/pstricks-examples/28-02-30.ltx - RELOC/doc/latex/pstricks-examples/28-02-31.ltx - RELOC/doc/latex/pstricks-examples/28-02-32.ltx - RELOC/doc/latex/pstricks-examples/28-02-33.ltx - RELOC/doc/latex/pstricks-examples/28-02-34.ltx - RELOC/doc/latex/pstricks-examples/28-02-35.ltx - RELOC/doc/latex/pstricks-examples/28-02-36.ltx - RELOC/doc/latex/pstricks-examples/28-02-37.ltx - RELOC/doc/latex/pstricks-examples/28-02-38.ltx - RELOC/doc/latex/pstricks-examples/28-02-39.ltx - RELOC/doc/latex/pstricks-examples/28-02-4.ltx - RELOC/doc/latex/pstricks-examples/28-02-40.ltx - RELOC/doc/latex/pstricks-examples/28-02-41.ltx - RELOC/doc/latex/pstricks-examples/28-02-42.ltx - RELOC/doc/latex/pstricks-examples/28-02-43.ltx - RELOC/doc/latex/pstricks-examples/28-02-44.ltx - RELOC/doc/latex/pstricks-examples/28-02-45.ltx - RELOC/doc/latex/pstricks-examples/28-02-5.ltx - RELOC/doc/latex/pstricks-examples/28-02-6.ltx - RELOC/doc/latex/pstricks-examples/28-02-7.ltx - RELOC/doc/latex/pstricks-examples/28-02-8.ltx - RELOC/doc/latex/pstricks-examples/28-02-9.ltx - RELOC/doc/latex/pstricks-examples/29-01-1.ltx - RELOC/doc/latex/pstricks-examples/29-01-10.ltx - RELOC/doc/latex/pstricks-examples/29-01-11.ltx - RELOC/doc/latex/pstricks-examples/29-01-12.ltx - RELOC/doc/latex/pstricks-examples/29-01-13.ltx - RELOC/doc/latex/pstricks-examples/29-01-14.ltx - RELOC/doc/latex/pstricks-examples/29-01-15.ltx - RELOC/doc/latex/pstricks-examples/29-01-16.ltx - RELOC/doc/latex/pstricks-examples/29-01-17.ltx - RELOC/doc/latex/pstricks-examples/29-01-18.ltx - RELOC/doc/latex/pstricks-examples/29-01-19.ltx - RELOC/doc/latex/pstricks-examples/29-01-2.ltx - RELOC/doc/latex/pstricks-examples/29-01-20.ltx - RELOC/doc/latex/pstricks-examples/29-01-21.ltx - RELOC/doc/latex/pstricks-examples/29-01-22.ltx - RELOC/doc/latex/pstricks-examples/29-01-3.ltx - RELOC/doc/latex/pstricks-examples/29-01-4.ltx - RELOC/doc/latex/pstricks-examples/29-01-5.ltx - RELOC/doc/latex/pstricks-examples/29-01-6.ltx - RELOC/doc/latex/pstricks-examples/29-01-7.ltx - RELOC/doc/latex/pstricks-examples/29-01-8.ltx - RELOC/doc/latex/pstricks-examples/29-01-9.ltx - RELOC/doc/latex/pstricks-examples/29-02-1.ltx - RELOC/doc/latex/pstricks-examples/29-02-10.ltx - RELOC/doc/latex/pstricks-examples/29-02-11.ltx - RELOC/doc/latex/pstricks-examples/29-02-12.ltx - RELOC/doc/latex/pstricks-examples/29-02-13.ltx - RELOC/doc/latex/pstricks-examples/29-02-14.ltx - RELOC/doc/latex/pstricks-examples/29-02-15.ltx - RELOC/doc/latex/pstricks-examples/29-02-16.ltx - RELOC/doc/latex/pstricks-examples/29-02-17.ltx - RELOC/doc/latex/pstricks-examples/29-02-18.ltx - RELOC/doc/latex/pstricks-examples/29-02-19.ltx - RELOC/doc/latex/pstricks-examples/29-02-2.ltx - RELOC/doc/latex/pstricks-examples/29-02-20.ltx - RELOC/doc/latex/pstricks-examples/29-02-21.ltx - RELOC/doc/latex/pstricks-examples/29-02-22.ltx - RELOC/doc/latex/pstricks-examples/29-02-23.ltx - RELOC/doc/latex/pstricks-examples/29-02-24.ltx - RELOC/doc/latex/pstricks-examples/29-02-25.ltx - RELOC/doc/latex/pstricks-examples/29-02-26.ltx - RELOC/doc/latex/pstricks-examples/29-02-27.ltx - RELOC/doc/latex/pstricks-examples/29-02-28.ltx - RELOC/doc/latex/pstricks-examples/29-02-29.ltx - RELOC/doc/latex/pstricks-examples/29-02-3.ltx - RELOC/doc/latex/pstricks-examples/29-02-30.ltx - RELOC/doc/latex/pstricks-examples/29-02-4.ltx - RELOC/doc/latex/pstricks-examples/29-02-5.ltx - RELOC/doc/latex/pstricks-examples/29-02-6.ltx - RELOC/doc/latex/pstricks-examples/29-02-7.ltx - RELOC/doc/latex/pstricks-examples/29-02-8.ltx - RELOC/doc/latex/pstricks-examples/29-02-9.ltx - RELOC/doc/latex/pstricks-examples/29-03-1.ltx - RELOC/doc/latex/pstricks-examples/29-03-2.ltx - RELOC/doc/latex/pstricks-examples/29-03-3.ltx - RELOC/doc/latex/pstricks-examples/30-01-1.ltx - RELOC/doc/latex/pstricks-examples/30-01-10.ltx - RELOC/doc/latex/pstricks-examples/30-01-11.ltx - RELOC/doc/latex/pstricks-examples/30-01-12.ltx - RELOC/doc/latex/pstricks-examples/30-01-13.ltx - RELOC/doc/latex/pstricks-examples/30-01-14.ltx - RELOC/doc/latex/pstricks-examples/30-01-15.ltx - RELOC/doc/latex/pstricks-examples/30-01-16.ltx - RELOC/doc/latex/pstricks-examples/30-01-17.ltx - RELOC/doc/latex/pstricks-examples/30-01-18.ltx - RELOC/doc/latex/pstricks-examples/30-01-19.ltx - RELOC/doc/latex/pstricks-examples/30-01-2.ltx - RELOC/doc/latex/pstricks-examples/30-01-3.ltx - RELOC/doc/latex/pstricks-examples/30-01-4.ltx - RELOC/doc/latex/pstricks-examples/30-01-5.ltx - RELOC/doc/latex/pstricks-examples/30-01-6.ltx - RELOC/doc/latex/pstricks-examples/30-01-7.ltx - RELOC/doc/latex/pstricks-examples/30-01-8.ltx - RELOC/doc/latex/pstricks-examples/30-01-9.ltx - RELOC/doc/latex/pstricks-examples/30-02-1.ltx - RELOC/doc/latex/pstricks-examples/30-02-10.ltx - RELOC/doc/latex/pstricks-examples/30-02-11.ltx - RELOC/doc/latex/pstricks-examples/30-02-12.ltx - RELOC/doc/latex/pstricks-examples/30-02-13.ltx - RELOC/doc/latex/pstricks-examples/30-02-14.ltx - RELOC/doc/latex/pstricks-examples/30-02-15.ltx - RELOC/doc/latex/pstricks-examples/30-02-16.ltx - RELOC/doc/latex/pstricks-examples/30-02-17.ltx - RELOC/doc/latex/pstricks-examples/30-02-18.ltx - RELOC/doc/latex/pstricks-examples/30-02-19.ltx - RELOC/doc/latex/pstricks-examples/30-02-2.ltx - RELOC/doc/latex/pstricks-examples/30-02-20.ltx - RELOC/doc/latex/pstricks-examples/30-02-21.ltx - RELOC/doc/latex/pstricks-examples/30-02-22.ltx - RELOC/doc/latex/pstricks-examples/30-02-23.ltx - RELOC/doc/latex/pstricks-examples/30-02-24.ltx - RELOC/doc/latex/pstricks-examples/30-02-25.ltx - RELOC/doc/latex/pstricks-examples/30-02-26.ltx - RELOC/doc/latex/pstricks-examples/30-02-27.ltx - RELOC/doc/latex/pstricks-examples/30-02-28.ltx - RELOC/doc/latex/pstricks-examples/30-02-29.ltx - RELOC/doc/latex/pstricks-examples/30-02-3.ltx - RELOC/doc/latex/pstricks-examples/30-02-30.ltx - RELOC/doc/latex/pstricks-examples/30-02-31.ltx - RELOC/doc/latex/pstricks-examples/30-02-4.ltx - RELOC/doc/latex/pstricks-examples/30-02-5.ltx - RELOC/doc/latex/pstricks-examples/30-02-6.ltx - RELOC/doc/latex/pstricks-examples/30-02-7.ltx - RELOC/doc/latex/pstricks-examples/30-02-8.ltx - RELOC/doc/latex/pstricks-examples/30-02-9.ltx - RELOC/doc/latex/pstricks-examples/30-03-1.ltx - RELOC/doc/latex/pstricks-examples/30-03-10.ltx - RELOC/doc/latex/pstricks-examples/30-03-11.ltx - RELOC/doc/latex/pstricks-examples/30-03-12.ltx - RELOC/doc/latex/pstricks-examples/30-03-13.ltx - RELOC/doc/latex/pstricks-examples/30-03-14.ltx - RELOC/doc/latex/pstricks-examples/30-03-15.ltx - RELOC/doc/latex/pstricks-examples/30-03-16.ltx - RELOC/doc/latex/pstricks-examples/30-03-17.ltx - RELOC/doc/latex/pstricks-examples/30-03-18.ltx - RELOC/doc/latex/pstricks-examples/30-03-19.ltx - RELOC/doc/latex/pstricks-examples/30-03-2.ltx - RELOC/doc/latex/pstricks-examples/30-03-20.ltx - RELOC/doc/latex/pstricks-examples/30-03-21.ltx - RELOC/doc/latex/pstricks-examples/30-03-22.ltx - RELOC/doc/latex/pstricks-examples/30-03-3.ltx - RELOC/doc/latex/pstricks-examples/30-03-4.ltx - RELOC/doc/latex/pstricks-examples/30-03-5.ltx - RELOC/doc/latex/pstricks-examples/30-03-6.ltx - RELOC/doc/latex/pstricks-examples/30-03-7.ltx - RELOC/doc/latex/pstricks-examples/30-03-8.ltx - RELOC/doc/latex/pstricks-examples/30-03-9.ltx - RELOC/doc/latex/pstricks-examples/30-04-1.ltx - RELOC/doc/latex/pstricks-examples/30-04-10.ltx - RELOC/doc/latex/pstricks-examples/30-04-11.ltx - RELOC/doc/latex/pstricks-examples/30-04-12.ltx - RELOC/doc/latex/pstricks-examples/30-04-13.ltx - RELOC/doc/latex/pstricks-examples/30-04-14.ltx - RELOC/doc/latex/pstricks-examples/30-04-15.ltx - RELOC/doc/latex/pstricks-examples/30-04-16.ltx - RELOC/doc/latex/pstricks-examples/30-04-17.ltx - RELOC/doc/latex/pstricks-examples/30-04-18.ltx - RELOC/doc/latex/pstricks-examples/30-04-19.ltx - RELOC/doc/latex/pstricks-examples/30-04-2.ltx - RELOC/doc/latex/pstricks-examples/30-04-20.ltx - RELOC/doc/latex/pstricks-examples/30-04-21.ltx - RELOC/doc/latex/pstricks-examples/30-04-22.ltx - RELOC/doc/latex/pstricks-examples/30-04-3.ltx - RELOC/doc/latex/pstricks-examples/30-04-4.ltx - RELOC/doc/latex/pstricks-examples/30-04-5.ltx - RELOC/doc/latex/pstricks-examples/30-04-6.ltx - RELOC/doc/latex/pstricks-examples/30-04-7.ltx - RELOC/doc/latex/pstricks-examples/30-04-8.ltx - RELOC/doc/latex/pstricks-examples/30-04-9.ltx - RELOC/doc/latex/pstricks-examples/30-05-1.ltx - RELOC/doc/latex/pstricks-examples/30-05-2.ltx - RELOC/doc/latex/pstricks-examples/30-05-3.ltx - RELOC/doc/latex/pstricks-examples/30-05-4.ltx - RELOC/doc/latex/pstricks-examples/30-05-5.ltx - RELOC/doc/latex/pstricks-examples/30-05-6.ltx - RELOC/doc/latex/pstricks-examples/31-01-1.ltx - RELOC/doc/latex/pstricks-examples/31-01-10.ltx - RELOC/doc/latex/pstricks-examples/31-01-11.ltx - RELOC/doc/latex/pstricks-examples/31-01-12.ltx - RELOC/doc/latex/pstricks-examples/31-01-13.ltx - RELOC/doc/latex/pstricks-examples/31-01-14.ltx - RELOC/doc/latex/pstricks-examples/31-01-15.ltx - RELOC/doc/latex/pstricks-examples/31-01-16.ltx - RELOC/doc/latex/pstricks-examples/31-01-17.ltx - RELOC/doc/latex/pstricks-examples/31-01-18.ltx - RELOC/doc/latex/pstricks-examples/31-01-19.ltx - RELOC/doc/latex/pstricks-examples/31-01-2.ltx - RELOC/doc/latex/pstricks-examples/31-01-20.ltx - RELOC/doc/latex/pstricks-examples/31-01-21.ltx - RELOC/doc/latex/pstricks-examples/31-01-22.ltx - RELOC/doc/latex/pstricks-examples/31-01-23.ltx - RELOC/doc/latex/pstricks-examples/31-01-24.ltx - RELOC/doc/latex/pstricks-examples/31-01-25.ltx - RELOC/doc/latex/pstricks-examples/31-01-26.ltx - RELOC/doc/latex/pstricks-examples/31-01-27.ltx - RELOC/doc/latex/pstricks-examples/31-01-28.ltx - RELOC/doc/latex/pstricks-examples/31-01-3.ltx - RELOC/doc/latex/pstricks-examples/31-01-4.ltx - RELOC/doc/latex/pstricks-examples/31-01-5.ltx - RELOC/doc/latex/pstricks-examples/31-01-6.ltx - RELOC/doc/latex/pstricks-examples/31-01-7.ltx - RELOC/doc/latex/pstricks-examples/31-01-8.ltx - RELOC/doc/latex/pstricks-examples/31-01-9.ltx - RELOC/doc/latex/pstricks-examples/31-03-1.ltx - RELOC/doc/latex/pstricks-examples/31-03-10.ltx - RELOC/doc/latex/pstricks-examples/31-03-11.ltx - RELOC/doc/latex/pstricks-examples/31-03-2.ltx - RELOC/doc/latex/pstricks-examples/31-03-3.ltx - RELOC/doc/latex/pstricks-examples/31-03-4.ltx - RELOC/doc/latex/pstricks-examples/31-03-5.ltx - RELOC/doc/latex/pstricks-examples/31-03-6.ltx - RELOC/doc/latex/pstricks-examples/31-03-7.ltx - RELOC/doc/latex/pstricks-examples/31-03-8.ltx - RELOC/doc/latex/pstricks-examples/31-03-9.ltx - RELOC/doc/latex/pstricks-examples/31-05-1.ltx - RELOC/doc/latex/pstricks-examples/31-05-2.ltx - RELOC/doc/latex/pstricks-examples/31-05-3.ltx - RELOC/doc/latex/pstricks-examples/31-05-4.ltx - RELOC/doc/latex/pstricks-examples/31-05-5.ltx - RELOC/doc/latex/pstricks-examples/32-01-1.ltx - RELOC/doc/latex/pstricks-examples/32-01-10.ltx - RELOC/doc/latex/pstricks-examples/32-01-11.ltx - RELOC/doc/latex/pstricks-examples/32-01-12.ltx - RELOC/doc/latex/pstricks-examples/32-01-13.ltx - RELOC/doc/latex/pstricks-examples/32-01-14.inl - RELOC/doc/latex/pstricks-examples/32-01-15.inl - RELOC/doc/latex/pstricks-examples/32-01-16.inl - RELOC/doc/latex/pstricks-examples/32-01-17.ltx - RELOC/doc/latex/pstricks-examples/32-01-18.ltx - RELOC/doc/latex/pstricks-examples/32-01-19.ltx - RELOC/doc/latex/pstricks-examples/32-01-2.ltx - RELOC/doc/latex/pstricks-examples/32-01-20.ltx - RELOC/doc/latex/pstricks-examples/32-01-21.ltx - RELOC/doc/latex/pstricks-examples/32-01-22.ltx - RELOC/doc/latex/pstricks-examples/32-01-23.ltx - RELOC/doc/latex/pstricks-examples/32-01-24.ltx - RELOC/doc/latex/pstricks-examples/32-01-3.ltx - RELOC/doc/latex/pstricks-examples/32-01-4.ltx - RELOC/doc/latex/pstricks-examples/32-01-5.ltx - RELOC/doc/latex/pstricks-examples/32-01-6.ltx - RELOC/doc/latex/pstricks-examples/32-01-7.ltx - RELOC/doc/latex/pstricks-examples/32-01-8.ltx - RELOC/doc/latex/pstricks-examples/32-01-9.ltx - RELOC/doc/latex/pstricks-examples/32-02-1.ltx - RELOC/doc/latex/pstricks-examples/32-02-10.ltx - RELOC/doc/latex/pstricks-examples/32-02-11.ltx - RELOC/doc/latex/pstricks-examples/32-02-12.ltx - RELOC/doc/latex/pstricks-examples/32-02-2.ltx - RELOC/doc/latex/pstricks-examples/32-02-3.ltx - RELOC/doc/latex/pstricks-examples/32-02-4.ltx - RELOC/doc/latex/pstricks-examples/32-02-5.ltx - RELOC/doc/latex/pstricks-examples/32-02-6.ltx - RELOC/doc/latex/pstricks-examples/32-02-7.ltx - RELOC/doc/latex/pstricks-examples/32-02-8.ltx - RELOC/doc/latex/pstricks-examples/32-02-9.ltx - RELOC/doc/latex/pstricks-examples/33-01-1.ltx - RELOC/doc/latex/pstricks-examples/33-01-2.ltx - RELOC/doc/latex/pstricks-examples/33-01-3.ltx - RELOC/doc/latex/pstricks-examples/33-01-4.ltx - RELOC/doc/latex/pstricks-examples/33-01-5.ltx - RELOC/doc/latex/pstricks-examples/33-01-6.ltx - RELOC/doc/latex/pstricks-examples/33-01-7.ltx - RELOC/doc/latex/pstricks-examples/33-02-1.ltx - RELOC/doc/latex/pstricks-examples/33-02-10.ltx - RELOC/doc/latex/pstricks-examples/33-02-11.ltx - RELOC/doc/latex/pstricks-examples/33-02-12.ltx - RELOC/doc/latex/pstricks-examples/33-02-13.ltx - RELOC/doc/latex/pstricks-examples/33-02-14.ltx - RELOC/doc/latex/pstricks-examples/33-02-15.ltx - RELOC/doc/latex/pstricks-examples/33-02-16.ltx - RELOC/doc/latex/pstricks-examples/33-02-17.ltx - RELOC/doc/latex/pstricks-examples/33-02-18.ltx - RELOC/doc/latex/pstricks-examples/33-02-19.ltx - RELOC/doc/latex/pstricks-examples/33-02-2.ltx - RELOC/doc/latex/pstricks-examples/33-02-20.ltx - RELOC/doc/latex/pstricks-examples/33-02-21.ltx - RELOC/doc/latex/pstricks-examples/33-02-22.ltx - RELOC/doc/latex/pstricks-examples/33-02-23.ltx - RELOC/doc/latex/pstricks-examples/33-02-24.ltx - RELOC/doc/latex/pstricks-examples/33-02-25.ltx - RELOC/doc/latex/pstricks-examples/33-02-26.ltx - RELOC/doc/latex/pstricks-examples/33-02-27.ltx - RELOC/doc/latex/pstricks-examples/33-02-28.ltx - RELOC/doc/latex/pstricks-examples/33-02-29.ltx - RELOC/doc/latex/pstricks-examples/33-02-3.ltx - RELOC/doc/latex/pstricks-examples/33-02-30.ltx - RELOC/doc/latex/pstricks-examples/33-02-31.ltx - RELOC/doc/latex/pstricks-examples/33-02-32.ltx - RELOC/doc/latex/pstricks-examples/33-02-33.ltx - RELOC/doc/latex/pstricks-examples/33-02-34.ltx - RELOC/doc/latex/pstricks-examples/33-02-35.ltx - RELOC/doc/latex/pstricks-examples/33-02-36.ltx - RELOC/doc/latex/pstricks-examples/33-02-37.ltx - RELOC/doc/latex/pstricks-examples/33-02-38.ltx - RELOC/doc/latex/pstricks-examples/33-02-39.ltx - RELOC/doc/latex/pstricks-examples/33-02-4.ltx - RELOC/doc/latex/pstricks-examples/33-02-40.ltx - RELOC/doc/latex/pstricks-examples/33-02-41.ltx - RELOC/doc/latex/pstricks-examples/33-02-42.ltx - RELOC/doc/latex/pstricks-examples/33-02-43.ltx - RELOC/doc/latex/pstricks-examples/33-02-44.ltx - RELOC/doc/latex/pstricks-examples/33-02-45.ltx - RELOC/doc/latex/pstricks-examples/33-02-46.ltx - RELOC/doc/latex/pstricks-examples/33-02-47.ltx - RELOC/doc/latex/pstricks-examples/33-02-5.ltx - RELOC/doc/latex/pstricks-examples/33-02-6.ltx - RELOC/doc/latex/pstricks-examples/33-02-7.ltx - RELOC/doc/latex/pstricks-examples/33-02-8.ltx - RELOC/doc/latex/pstricks-examples/33-02-9.ltx - RELOC/doc/latex/pstricks-examples/33-03-1.ltx - RELOC/doc/latex/pstricks-examples/33-03-10.ltx - RELOC/doc/latex/pstricks-examples/33-03-11.ltx - RELOC/doc/latex/pstricks-examples/33-03-12.ltx - RELOC/doc/latex/pstricks-examples/33-03-13.ltx - RELOC/doc/latex/pstricks-examples/33-03-14.ltx - RELOC/doc/latex/pstricks-examples/33-03-15.ltx - RELOC/doc/latex/pstricks-examples/33-03-16.ltx - RELOC/doc/latex/pstricks-examples/33-03-17.ltx - RELOC/doc/latex/pstricks-examples/33-03-18.ltx - RELOC/doc/latex/pstricks-examples/33-03-19.ltx - RELOC/doc/latex/pstricks-examples/33-03-2.ltx - RELOC/doc/latex/pstricks-examples/33-03-20.ltx - RELOC/doc/latex/pstricks-examples/33-03-21.ltx - RELOC/doc/latex/pstricks-examples/33-03-22.ltx - RELOC/doc/latex/pstricks-examples/33-03-23.ltx - RELOC/doc/latex/pstricks-examples/33-03-24.ltx - RELOC/doc/latex/pstricks-examples/33-03-25.ltx - RELOC/doc/latex/pstricks-examples/33-03-26.ltx - RELOC/doc/latex/pstricks-examples/33-03-27.ltx - RELOC/doc/latex/pstricks-examples/33-03-28.ltx - RELOC/doc/latex/pstricks-examples/33-03-29.ltx - RELOC/doc/latex/pstricks-examples/33-03-3.ltx - RELOC/doc/latex/pstricks-examples/33-03-30.ltx - RELOC/doc/latex/pstricks-examples/33-03-31.ltx - RELOC/doc/latex/pstricks-examples/33-03-32.ltx - RELOC/doc/latex/pstricks-examples/33-03-33.ltx - RELOC/doc/latex/pstricks-examples/33-03-34.ltx - RELOC/doc/latex/pstricks-examples/33-03-35.ltx - RELOC/doc/latex/pstricks-examples/33-03-36.ltx - RELOC/doc/latex/pstricks-examples/33-03-37.ltx - RELOC/doc/latex/pstricks-examples/33-03-38.ltx - RELOC/doc/latex/pstricks-examples/33-03-39.ltx - RELOC/doc/latex/pstricks-examples/33-03-4.ltx - RELOC/doc/latex/pstricks-examples/33-03-40.ltx - RELOC/doc/latex/pstricks-examples/33-03-41.ltx - RELOC/doc/latex/pstricks-examples/33-03-42.ltx - RELOC/doc/latex/pstricks-examples/33-03-43.ltx - RELOC/doc/latex/pstricks-examples/33-03-44.ltx - RELOC/doc/latex/pstricks-examples/33-03-45.ltx - RELOC/doc/latex/pstricks-examples/33-03-46.ltx - RELOC/doc/latex/pstricks-examples/33-03-47.ltx - RELOC/doc/latex/pstricks-examples/33-03-48.ltx - RELOC/doc/latex/pstricks-examples/33-03-49.ltx - RELOC/doc/latex/pstricks-examples/33-03-5.ltx - RELOC/doc/latex/pstricks-examples/33-03-50.ltx - RELOC/doc/latex/pstricks-examples/33-03-51.ltx - RELOC/doc/latex/pstricks-examples/33-03-52.ltx - RELOC/doc/latex/pstricks-examples/33-03-53.ltx - RELOC/doc/latex/pstricks-examples/33-03-54.ltx - RELOC/doc/latex/pstricks-examples/33-03-55.ltx - RELOC/doc/latex/pstricks-examples/33-03-56.ltx - RELOC/doc/latex/pstricks-examples/33-03-57.ltx - RELOC/doc/latex/pstricks-examples/33-03-58.ltx - RELOC/doc/latex/pstricks-examples/33-03-59.ltx - RELOC/doc/latex/pstricks-examples/33-03-6.ltx - RELOC/doc/latex/pstricks-examples/33-03-60.ltx - RELOC/doc/latex/pstricks-examples/33-03-61.ltx - RELOC/doc/latex/pstricks-examples/33-03-62.ltx - RELOC/doc/latex/pstricks-examples/33-03-63.ltx - RELOC/doc/latex/pstricks-examples/33-03-64.ltx - RELOC/doc/latex/pstricks-examples/33-03-65.ltx - RELOC/doc/latex/pstricks-examples/33-03-66.ltx - RELOC/doc/latex/pstricks-examples/33-03-67.ltx - RELOC/doc/latex/pstricks-examples/33-03-68.ltx - RELOC/doc/latex/pstricks-examples/33-03-69.ltx - RELOC/doc/latex/pstricks-examples/33-03-7.ltx - RELOC/doc/latex/pstricks-examples/33-03-70.ltx - RELOC/doc/latex/pstricks-examples/33-03-71.ltx - RELOC/doc/latex/pstricks-examples/33-03-72.ltx - RELOC/doc/latex/pstricks-examples/33-03-73.ltx - RELOC/doc/latex/pstricks-examples/33-03-74.ltx - RELOC/doc/latex/pstricks-examples/33-03-75.ltx - RELOC/doc/latex/pstricks-examples/33-03-8.ltx - RELOC/doc/latex/pstricks-examples/33-03-9.ltx - RELOC/doc/latex/pstricks-examples/33-04-1.ltx - RELOC/doc/latex/pstricks-examples/33-04-10.inl - RELOC/doc/latex/pstricks-examples/33-04-11.inl - RELOC/doc/latex/pstricks-examples/33-04-12.inl - RELOC/doc/latex/pstricks-examples/33-04-13.inl - RELOC/doc/latex/pstricks-examples/33-04-14.inl - RELOC/doc/latex/pstricks-examples/33-04-15.inl - RELOC/doc/latex/pstricks-examples/33-04-16.inl - RELOC/doc/latex/pstricks-examples/33-04-17.inl - RELOC/doc/latex/pstricks-examples/33-04-18.inl - RELOC/doc/latex/pstricks-examples/33-04-19.inl - RELOC/doc/latex/pstricks-examples/33-04-2.ltx - RELOC/doc/latex/pstricks-examples/33-04-20.inl - RELOC/doc/latex/pstricks-examples/33-04-21.inl - RELOC/doc/latex/pstricks-examples/33-04-22.inl - RELOC/doc/latex/pstricks-examples/33-04-23.ltx - RELOC/doc/latex/pstricks-examples/33-04-24.ltx - RELOC/doc/latex/pstricks-examples/33-04-25.ltx - RELOC/doc/latex/pstricks-examples/33-04-26.ltx - RELOC/doc/latex/pstricks-examples/33-04-27.ltx - RELOC/doc/latex/pstricks-examples/33-04-28.ltx - RELOC/doc/latex/pstricks-examples/33-04-29.ltx - RELOC/doc/latex/pstricks-examples/33-04-3.ltx - RELOC/doc/latex/pstricks-examples/33-04-4.ltx - RELOC/doc/latex/pstricks-examples/33-04-5.ltx - RELOC/doc/latex/pstricks-examples/33-04-6.ltx - RELOC/doc/latex/pstricks-examples/33-04-7.inl - RELOC/doc/latex/pstricks-examples/33-04-8.inl - RELOC/doc/latex/pstricks-examples/33-04-9.inl - RELOC/doc/latex/pstricks-examples/33-05-1.ltx - RELOC/doc/latex/pstricks-examples/33-05-10.inl - RELOC/doc/latex/pstricks-examples/33-05-11.inl - RELOC/doc/latex/pstricks-examples/33-05-12.inl - RELOC/doc/latex/pstricks-examples/33-05-13.inl - RELOC/doc/latex/pstricks-examples/33-05-14.inl - RELOC/doc/latex/pstricks-examples/33-05-15.inl - RELOC/doc/latex/pstricks-examples/33-05-16.inl - RELOC/doc/latex/pstricks-examples/33-05-17.inl - RELOC/doc/latex/pstricks-examples/33-05-18.inl - RELOC/doc/latex/pstricks-examples/33-05-19.inl - RELOC/doc/latex/pstricks-examples/33-05-2.ltx - RELOC/doc/latex/pstricks-examples/33-05-20.inl - RELOC/doc/latex/pstricks-examples/33-05-21.inl - RELOC/doc/latex/pstricks-examples/33-05-22.inl - RELOC/doc/latex/pstricks-examples/33-05-23.inl - RELOC/doc/latex/pstricks-examples/33-05-24.ltx - RELOC/doc/latex/pstricks-examples/33-05-25.ltx - RELOC/doc/latex/pstricks-examples/33-05-26.ltx - RELOC/doc/latex/pstricks-examples/33-05-27.ltx - RELOC/doc/latex/pstricks-examples/33-05-28.ltx - RELOC/doc/latex/pstricks-examples/33-05-29.ltx - RELOC/doc/latex/pstricks-examples/33-05-3.ltx - RELOC/doc/latex/pstricks-examples/33-05-30.ltx - RELOC/doc/latex/pstricks-examples/33-05-31.ltx - RELOC/doc/latex/pstricks-examples/33-05-32.ltx - RELOC/doc/latex/pstricks-examples/33-05-33.ltx - RELOC/doc/latex/pstricks-examples/33-05-34.ltx - RELOC/doc/latex/pstricks-examples/33-05-35.ltx - RELOC/doc/latex/pstricks-examples/33-05-36.ltx - RELOC/doc/latex/pstricks-examples/33-05-37.ltx - RELOC/doc/latex/pstricks-examples/33-05-38.ltx - RELOC/doc/latex/pstricks-examples/33-05-39.ltx - RELOC/doc/latex/pstricks-examples/33-05-4.ltx - RELOC/doc/latex/pstricks-examples/33-05-5.ltx - RELOC/doc/latex/pstricks-examples/33-05-6.ltx - RELOC/doc/latex/pstricks-examples/33-05-7.ltx - RELOC/doc/latex/pstricks-examples/33-05-8.ltx - RELOC/doc/latex/pstricks-examples/33-05-9.ltx - RELOC/doc/latex/pstricks-examples/33-06-1.ltx - RELOC/doc/latex/pstricks-examples/33-06-2.ltx - RELOC/doc/latex/pstricks-examples/33-06-3.ltx - RELOC/doc/latex/pstricks-examples/33-06-4.ltx - RELOC/doc/latex/pstricks-examples/33-06-5.ltx - RELOC/doc/latex/pstricks-examples/33-06-6.ltx - RELOC/doc/latex/pstricks-examples/33-06-7.ltx - RELOC/doc/latex/pstricks-examples/33-06-8.ltx - RELOC/doc/latex/pstricks-examples/33-06-9.ltx - RELOC/doc/latex/pstricks-examples/33-07-1.ltx - RELOC/doc/latex/pstricks-examples/33-07-2.ltx - RELOC/doc/latex/pstricks-examples/33-07-3.ltx - RELOC/doc/latex/pstricks-examples/33-07-4.ltx - RELOC/doc/latex/pstricks-examples/34-01-1.ltx - RELOC/doc/latex/pstricks-examples/34-01-2.ltx - RELOC/doc/latex/pstricks-examples/34-01-3.ltx - RELOC/doc/latex/pstricks-examples/34-01-4.ltx - RELOC/doc/latex/pstricks-examples/34-02-1.ltx - RELOC/doc/latex/pstricks-examples/34-02-2.ltx - RELOC/doc/latex/pstricks-examples/34-02-3.ltx - RELOC/doc/latex/pstricks-examples/34-02-4.ltx - RELOC/doc/latex/pstricks-examples/35-01-1.ltxpd - RELOC/doc/latex/pstricks-examples/35-01-10.ltxpd - RELOC/doc/latex/pstricks-examples/35-01-11.ltxpd - RELOC/doc/latex/pstricks-examples/35-01-12.ltxpd - RELOC/doc/latex/pstricks-examples/35-01-13.ltxpd - RELOC/doc/latex/pstricks-examples/35-01-14.ltxpd - RELOC/doc/latex/pstricks-examples/35-01-15.ltxpd - RELOC/doc/latex/pstricks-examples/35-01-16.ltxpd - RELOC/doc/latex/pstricks-examples/35-01-17.ltxpd - RELOC/doc/latex/pstricks-examples/35-01-18.ltxpd - RELOC/doc/latex/pstricks-examples/35-01-19.ltxpd - RELOC/doc/latex/pstricks-examples/35-01-2.ltxpd - RELOC/doc/latex/pstricks-examples/35-01-20.ltxpd - RELOC/doc/latex/pstricks-examples/35-01-21.ltxpd - RELOC/doc/latex/pstricks-examples/35-01-22.ltxpd - RELOC/doc/latex/pstricks-examples/35-01-23.ltx - RELOC/doc/latex/pstricks-examples/35-01-24.ltxpd - RELOC/doc/latex/pstricks-examples/35-01-25.ltxpd - RELOC/doc/latex/pstricks-examples/35-01-26.ltx - RELOC/doc/latex/pstricks-examples/35-01-3.ltxpd - RELOC/doc/latex/pstricks-examples/35-01-4.ltxpd - RELOC/doc/latex/pstricks-examples/35-01-5.ltxpd - RELOC/doc/latex/pstricks-examples/35-01-6.ltxpd - RELOC/doc/latex/pstricks-examples/35-01-7.ltxpd - RELOC/doc/latex/pstricks-examples/35-01-8.ltxpd - RELOC/doc/latex/pstricks-examples/35-01-9.ltxpd - RELOC/doc/latex/pstricks-examples/35-02-1.ltxb - RELOC/doc/latex/pstricks-examples/35-02-2.ltxbps - RELOC/doc/latex/pstricks-examples/35-02-3.ltxbps - RELOC/doc/latex/pstricks-examples/35-02-4.ltx - RELOC/doc/latex/pstricks-examples/36-00-1.ltx - RELOC/doc/latex/pstricks-examples/36-00-10.ltx - RELOC/doc/latex/pstricks-examples/36-00-100.ltx - RELOC/doc/latex/pstricks-examples/36-00-101.ltx - RELOC/doc/latex/pstricks-examples/36-00-102.ltx - RELOC/doc/latex/pstricks-examples/36-00-103.ltx - RELOC/doc/latex/pstricks-examples/36-00-104.ltx - RELOC/doc/latex/pstricks-examples/36-00-105.ltx - RELOC/doc/latex/pstricks-examples/36-00-106.ltx - RELOC/doc/latex/pstricks-examples/36-00-107.ltx - RELOC/doc/latex/pstricks-examples/36-00-108.ltx - RELOC/doc/latex/pstricks-examples/36-00-109.ltx - RELOC/doc/latex/pstricks-examples/36-00-11.ltx - RELOC/doc/latex/pstricks-examples/36-00-110.ltx - RELOC/doc/latex/pstricks-examples/36-00-111.ltx - RELOC/doc/latex/pstricks-examples/36-00-112.ltx - RELOC/doc/latex/pstricks-examples/36-00-113.ltx - RELOC/doc/latex/pstricks-examples/36-00-114.ltx - RELOC/doc/latex/pstricks-examples/36-00-115.ltx - RELOC/doc/latex/pstricks-examples/36-00-116.ltx - RELOC/doc/latex/pstricks-examples/36-00-117.ltx - RELOC/doc/latex/pstricks-examples/36-00-118.ltx - RELOC/doc/latex/pstricks-examples/36-00-119.ltx - RELOC/doc/latex/pstricks-examples/36-00-12.ltx - RELOC/doc/latex/pstricks-examples/36-00-120.ltx - RELOC/doc/latex/pstricks-examples/36-00-121.ltx - RELOC/doc/latex/pstricks-examples/36-00-122.ltx - RELOC/doc/latex/pstricks-examples/36-00-123.ltx - RELOC/doc/latex/pstricks-examples/36-00-124.ltx - RELOC/doc/latex/pstricks-examples/36-00-125.ltx - RELOC/doc/latex/pstricks-examples/36-00-126.ltx - RELOC/doc/latex/pstricks-examples/36-00-13.ltx - RELOC/doc/latex/pstricks-examples/36-00-14.ltx - RELOC/doc/latex/pstricks-examples/36-00-15.ltx - RELOC/doc/latex/pstricks-examples/36-00-16.ltx - RELOC/doc/latex/pstricks-examples/36-00-17.ltx - RELOC/doc/latex/pstricks-examples/36-00-18.ltx - RELOC/doc/latex/pstricks-examples/36-00-19.ltx - RELOC/doc/latex/pstricks-examples/36-00-2.ltx - RELOC/doc/latex/pstricks-examples/36-00-20.ltx - RELOC/doc/latex/pstricks-examples/36-00-21.ltx - RELOC/doc/latex/pstricks-examples/36-00-22.ltx - RELOC/doc/latex/pstricks-examples/36-00-23.ltx - RELOC/doc/latex/pstricks-examples/36-00-24.ltx - RELOC/doc/latex/pstricks-examples/36-00-25.ltx - RELOC/doc/latex/pstricks-examples/36-00-26.ltx - RELOC/doc/latex/pstricks-examples/36-00-27.ltx - RELOC/doc/latex/pstricks-examples/36-00-28.ltx - RELOC/doc/latex/pstricks-examples/36-00-29.ltx - RELOC/doc/latex/pstricks-examples/36-00-3.ltx - RELOC/doc/latex/pstricks-examples/36-00-30.ltx - RELOC/doc/latex/pstricks-examples/36-00-31.ltx - RELOC/doc/latex/pstricks-examples/36-00-32.ltx - RELOC/doc/latex/pstricks-examples/36-00-33.ltx - RELOC/doc/latex/pstricks-examples/36-00-34.ltx - RELOC/doc/latex/pstricks-examples/36-00-35.ltx - RELOC/doc/latex/pstricks-examples/36-00-36.ltx - RELOC/doc/latex/pstricks-examples/36-00-37.ltx - RELOC/doc/latex/pstricks-examples/36-00-38.ltx - RELOC/doc/latex/pstricks-examples/36-00-39.ltx - RELOC/doc/latex/pstricks-examples/36-00-4.ltx - RELOC/doc/latex/pstricks-examples/36-00-40.ltx - RELOC/doc/latex/pstricks-examples/36-00-41.ltx - RELOC/doc/latex/pstricks-examples/36-00-42.ltx - RELOC/doc/latex/pstricks-examples/36-00-43.ltx - RELOC/doc/latex/pstricks-examples/36-00-44.ltx - RELOC/doc/latex/pstricks-examples/36-00-45.ltx - RELOC/doc/latex/pstricks-examples/36-00-46.ltx - RELOC/doc/latex/pstricks-examples/36-00-47.ltx - RELOC/doc/latex/pstricks-examples/36-00-48.ltx - RELOC/doc/latex/pstricks-examples/36-00-49.ltx - RELOC/doc/latex/pstricks-examples/36-00-5.ltx - RELOC/doc/latex/pstricks-examples/36-00-50.ltx - RELOC/doc/latex/pstricks-examples/36-00-51.ltx - RELOC/doc/latex/pstricks-examples/36-00-52.ltx - RELOC/doc/latex/pstricks-examples/36-00-53.ltx - RELOC/doc/latex/pstricks-examples/36-00-54.ltx - RELOC/doc/latex/pstricks-examples/36-00-55.ltx - RELOC/doc/latex/pstricks-examples/36-00-56.ltx - RELOC/doc/latex/pstricks-examples/36-00-57.ltx - RELOC/doc/latex/pstricks-examples/36-00-58.ltx - RELOC/doc/latex/pstricks-examples/36-00-59.ltx - RELOC/doc/latex/pstricks-examples/36-00-6.ltx - RELOC/doc/latex/pstricks-examples/36-00-60.ltx - RELOC/doc/latex/pstricks-examples/36-00-61.ltx - RELOC/doc/latex/pstricks-examples/36-00-62.ltx - RELOC/doc/latex/pstricks-examples/36-00-63.ltx - RELOC/doc/latex/pstricks-examples/36-00-64.ltx - RELOC/doc/latex/pstricks-examples/36-00-65.ltx - RELOC/doc/latex/pstricks-examples/36-00-66.ltx - RELOC/doc/latex/pstricks-examples/36-00-67.ltx - RELOC/doc/latex/pstricks-examples/36-00-68.ltx - RELOC/doc/latex/pstricks-examples/36-00-69.ltx - RELOC/doc/latex/pstricks-examples/36-00-7.ltx - RELOC/doc/latex/pstricks-examples/36-00-70.ltx - RELOC/doc/latex/pstricks-examples/36-00-71.ltx - RELOC/doc/latex/pstricks-examples/36-00-72.ltx - RELOC/doc/latex/pstricks-examples/36-00-73.ltx - RELOC/doc/latex/pstricks-examples/36-00-74.ltx - RELOC/doc/latex/pstricks-examples/36-00-75.ltx - RELOC/doc/latex/pstricks-examples/36-00-76.ltx - RELOC/doc/latex/pstricks-examples/36-00-77.ltx - RELOC/doc/latex/pstricks-examples/36-00-78.ltx - RELOC/doc/latex/pstricks-examples/36-00-79.ltx - RELOC/doc/latex/pstricks-examples/36-00-8.ltx - RELOC/doc/latex/pstricks-examples/36-00-80.ltx - RELOC/doc/latex/pstricks-examples/36-00-81.ltx - RELOC/doc/latex/pstricks-examples/36-00-82.ltx - RELOC/doc/latex/pstricks-examples/36-00-83.ltx - RELOC/doc/latex/pstricks-examples/36-00-84.ltx - RELOC/doc/latex/pstricks-examples/36-00-85.ltx - RELOC/doc/latex/pstricks-examples/36-00-86.ltx - RELOC/doc/latex/pstricks-examples/36-00-87.ltx - RELOC/doc/latex/pstricks-examples/36-00-88.ltx - RELOC/doc/latex/pstricks-examples/36-00-89.ltx - RELOC/doc/latex/pstricks-examples/36-00-9.ltx - RELOC/doc/latex/pstricks-examples/36-00-90.ltx - RELOC/doc/latex/pstricks-examples/36-00-91.ltx - RELOC/doc/latex/pstricks-examples/36-00-92.ltx - RELOC/doc/latex/pstricks-examples/36-00-93.ltx - RELOC/doc/latex/pstricks-examples/36-00-94.ltx - RELOC/doc/latex/pstricks-examples/36-00-95.ltx - RELOC/doc/latex/pstricks-examples/36-00-96.ltx - RELOC/doc/latex/pstricks-examples/36-00-97.ltx - RELOC/doc/latex/pstricks-examples/36-00-98.ltx - RELOC/doc/latex/pstricks-examples/36-00-99.ltx - RELOC/doc/latex/pstricks-examples/B-04-1.ltx - RELOC/doc/latex/pstricks-examples/B-04-2.ltx - RELOC/doc/latex/pstricks-examples/C-01-1.ltx - RELOC/doc/latex/pstricks-examples/C-02-1.ltx - RELOC/doc/latex/pstricks-examples/C-03-1.ltx - RELOC/doc/latex/pstricks-examples/C-03-2.ltx - RELOC/doc/latex/pstricks-examples/D-01-1.xltx - RELOC/doc/latex/pstricks-examples/D-03-1.ltx2crop - RELOC/doc/latex/pstricks-examples/D-03-2.ltx2crop - RELOC/doc/latex/pstricks-examples/D-04-1.ltx2crop - RELOC/doc/latex/pstricks-examples/D-04-2.ltx2crop - RELOC/doc/latex/pstricks-examples/D-05-1.ltx2crop - RELOC/doc/latex/pstricks-examples/D-05-2.ltx - RELOC/doc/latex/pstricks-examples/D-05-3.ltx - RELOC/doc/latex/pstricks-examples/DEexa.sty - RELOC/doc/latex/pstricks-examples/README - RELOC/doc/latex/pstricks-examples/beispiel.cls - RELOC/doc/latex/pstricks-examples/bspcalweekly.cls - RELOC/doc/latex/pstricks-examples/bspdvdcoll.cls - RELOC/doc/latex/pstricks-examples/bspfont.cls - RELOC/doc/latex/pstricks-examples/bsppstricks.cls - RELOC/doc/latex/pstricks-examples/exaarticle.cls - RELOC/doc/latex/pstricks-examples/exaarticle2.cls - RELOC/doc/latex/pstricks-examples/exaartplain.cls - RELOC/doc/latex/pstricks-examples/exabeamer.cls - RELOC/doc/latex/pstricks-examples/exabook.cls - RELOC/doc/latex/pstricks-examples/exafoils.cls - RELOC/doc/latex/pstricks-examples/exafubeamer.cls - RELOC/doc/latex/pstricks-examples/exafupd.cls - RELOC/doc/latex/pstricks-examples/examargin.cls - RELOC/doc/latex/pstricks-examples/examinimal.cls - RELOC/doc/latex/pstricks-examples/exapd.cls - RELOC/doc/latex/pstricks-examples/exaprosper.cls - RELOC/doc/latex/pstricks-examples/exareport.cls - RELOC/doc/latex/pstricks-examples/exaseminar.cls - RELOC/doc/latex/pstricks-examples/exaslidenotes.cls - RELOC/doc/latex/pstricks-examples/exasymbol.cls - RELOC/doc/latex/pstricks-examples/exaxetex.cls - RELOC/doc/latex/pstricks-examples/screxa.cls - RELOC/doc/latex/pstricks-examples/screxabook.cls - RELOC/doc/latex/pstricks-examples/screxareport.cls - RELOC/doc/latex/pstricks-examples/textdemo.sty -catalogue-ctan /info/examples/PSTricks_6_de -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl - -name pstricks -category Package -revision 38348 -catalogue pstricks-base -shortdesc PostScript macros for TeX -relocated 1 -longdesc PSTricks offers an extensive collection of macros for -longdesc generating PostScript that is usable with most TeX macro -longdesc formats, including Plain TeX, LaTeX, AMS-TeX, and AMS-LaTeX. -longdesc Included are macros for colour, graphics, pie charts, rotation, -longdesc trees and overlays. It has many special features, including a -longdesc wide variety of graphics (picture drawing) macros, with a -longdesc flexible interface and with colour support. There are macros -longdesc for colouring or shading the cells of tables. The package -longdesc pstricks-add contains bug-fixes and additions for PSTricks -longdesc (among other things). PSTricks ordinarily uses PostScript -longdesc \special commands, which are not supported by pdf(La)TeX. This -longdesc limitation may be overcome by using either the pst-pdf or the -longdesc pdftricks package, to generate a PDF inclusion from a PSTricks -longdesc diagram. PSTricks macros can also generate PDF output when the -longdesc document is processed XeTeX, without the need for other -longdesc supporting packages. Note that this is one of a pair of -longdesc catalogue entries for PSTricks; the other one (PSTricks) is -longdesc acting as a "stub", while editorial work on catalogue entries -longdesc for PSTricks contributed is completed. -runfiles size=117 - RELOC/dvips/pstricks/pst-algparser.pro - RELOC/dvips/pstricks/pst-dots.pro - RELOC/dvips/pstricks/pst-dots97.pro - RELOC/dvips/pstricks/pst-show.pro - RELOC/dvips/pstricks/pstricks.pro - RELOC/dvips/pstricks/pstricks97.pro - RELOC/tex/generic/pstricks/config/Changes - RELOC/tex/generic/pstricks/config/README.cfg - RELOC/tex/generic/pstricks/config/distiller.cfg - RELOC/tex/generic/pstricks/config/dvips.cfg - RELOC/tex/generic/pstricks/config/dvipsone.cfg - RELOC/tex/generic/pstricks/config/gastex.cfg - RELOC/tex/generic/pstricks/config/textures.cfg - RELOC/tex/generic/pstricks/config/vtex.cfg - RELOC/tex/generic/pstricks/config/xdvipdfmx.cfg - RELOC/tex/generic/pstricks/pst-fp.tex - RELOC/tex/generic/pstricks/pst-key.tex - RELOC/tex/generic/pstricks/pstricks.con - RELOC/tex/generic/pstricks/pstricks.tex - RELOC/tex/generic/pstricks/pstricks97.tex - RELOC/tex/latex/pstricks/pst-all.sty - RELOC/tex/latex/pstricks/pst-doc.cls - RELOC/tex/latex/pstricks/pst-key.sty - RELOC/tex/latex/pstricks/pstcol.sty - RELOC/tex/latex/pstricks/pstricks.sty -docfiles size=2104 - RELOC/doc/generic/pstricks/Changes - RELOC/doc/generic/pstricks/Changes.dvips - RELOC/doc/generic/pstricks/Changes.generic - RELOC/doc/generic/pstricks/Changes.latex - RELOC/doc/generic/pstricks/PSTricks.bib - RELOC/doc/generic/pstricks/README - RELOC/doc/generic/pstricks/ctandir.sty - RELOC/doc/generic/pstricks/images/flowers.eps - RELOC/doc/generic/pstricks/images/tiger.eps - RELOC/doc/generic/pstricks/images/tiger.pdf - RELOC/doc/generic/pstricks/pst-doc.ist - RELOC/doc/generic/pstricks/pst-doc.pdf - RELOC/doc/generic/pstricks/pst-news.sty - RELOC/doc/generic/pstricks/pst-news.tex - RELOC/doc/generic/pstricks/pst-news05.pdf - RELOC/doc/generic/pstricks/pst-news05.tex - RELOC/doc/generic/pstricks/pst-news06.pdf - RELOC/doc/generic/pstricks/pst-news06.tex - RELOC/doc/generic/pstricks/pst-news08.pdf - RELOC/doc/generic/pstricks/pst-news08.tex - RELOC/doc/generic/pstricks/pst-news09.pdf - RELOC/doc/generic/pstricks/pst-news09.tex - RELOC/doc/generic/pstricks/pst-news10.pdf - RELOC/doc/generic/pstricks/pst-news10.tex - RELOC/doc/generic/pstricks/pst-news11.pdf - RELOC/doc/generic/pstricks/pst-news11.tex - RELOC/doc/generic/pstricks/pst-news12.pdf - RELOC/doc/generic/pstricks/pst-news12.tex - RELOC/doc/generic/pstricks/pst-news13.pdf - RELOC/doc/generic/pstricks/pst-news13.tex - RELOC/doc/generic/pstricks/pst-news14.pdf - RELOC/doc/generic/pstricks/pst-news14.tex - RELOC/doc/generic/pstricks/pst-news15.pdf - RELOC/doc/generic/pstricks/pst-news15.tex - RELOC/doc/generic/pstricks/pst-user.pdf - RELOC/doc/generic/pstricks/pst-user.tgz - RELOC/doc/generic/pstricks/pstricks-bug.tex - RELOC/doc/generic/pstricks/pstricks-doc.pdf - RELOC/doc/generic/pstricks/test-pst.pdf - RELOC/doc/generic/pstricks/test-pst.tex -catalogue-also pstricks-add -catalogue-ctan /graphics/pstricks/base -catalogue-date 2015-09-11 19:49:01 +0200 -catalogue-license lppl1.3 -catalogue-topics graphics-in-tex colour pstricks dvips-special xetex -catalogue-version 2.63 - -name pst-rubans -category Package -revision 23464 -shortdesc Draw three-dimensional ribbons. -relocated 1 -longdesc The package uses PStricks and pst-solides3d to draw three -longdesc dimensional ribbons on a cylinder, torus, sphere, cone or -longdesc paraboloid. The width of the ribbon, the number of turns, the -longdesc colour of the outer and the inner surface of the ribbon may be -longdesc set. In the case of circular and conical helices, one may also -longdesc choose the number of ribbons. -runfiles size=5 - RELOC/tex/generic/pst-rubans/pst-rubans.tex - RELOC/tex/latex/pst-rubans/pst-rubans.sty -docfiles size=152 - RELOC/doc/generic/pst-rubans/Changes - RELOC/doc/generic/pst-rubans/README - RELOC/doc/generic/pst-rubans/pst-rubans-doc.bib - RELOC/doc/generic/pst-rubans/pst-rubans-doc.pdf - RELOC/doc/generic/pst-rubans/pst-rubans-doc.tex -srcfiles size=1 - RELOC/source/generic/pst-rubans/Makefile -catalogue-ctan /graphics/pstricks/contrib/pst-rubans -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.2 - -name pst-sigsys -category Package -revision 21667 -shortdesc Support of signal processing-related disciplines. -relocated 1 -longdesc The package offers a collection of useful macros for -longdesc disciplines related to signal processing. It defines macros for -longdesc plotting a sequence of numbers, drawing the pole-zero diagram -longdesc of a system, shading the region of convergence, creating an -longdesc adder or a multiplier node, placing a framed node at a given -longdesc coordinate, creating an up-sampler or a down-sampler node, -longdesc drawing the block diagram of a system, drawing adaptive -longdesc systems, sequentially connecting a list of nodes, and -longdesc connecting a list of nodes using any node-connecting macro. -runfiles size=6 - RELOC/tex/generic/pst-sigsys/pst-sigsys.tex - RELOC/tex/latex/pst-sigsys/pst-sigsys.sty -docfiles size=144 - RELOC/doc/generic/pst-sigsys/Changes - RELOC/doc/generic/pst-sigsys/README - RELOC/doc/generic/pst-sigsys/pst-sigsys-doc.bib - RELOC/doc/generic/pst-sigsys/pst-sigsys-doc.pdf - RELOC/doc/generic/pst-sigsys/pst-sigsys-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-sigsys -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.4 - -name pst-slpe -category Package -revision 24391 -shortdesc Sophisticated colour gradients. -relocated 1 -longdesc This PStricks package covers all the colour gradient -longdesc functionality of pst-grad (part of the base pstricks -longdesc distribution), and provides the following facilities: it -longdesc permits the user to specify an arbitrary number of colours, -longdesc along with the points at which they are to be reached; it -longdesc converts between RGB and HSV behind the scenes; it provides -longdesc concentric and radial gradients; it provides a command \psBall -longdesc that generates bullets with a three-dimensional appearance; and -longdesc uses the xkeyval package for the extended key handling. -runfiles size=5 - RELOC/dvips/pst-slpe/pst-slpe.pro - RELOC/tex/generic/pst-slpe/pst-slpe.tex - RELOC/tex/latex/pst-slpe/pst-slpe.sty -docfiles size=72 - RELOC/doc/generic/pst-slpe/Changes - RELOC/doc/generic/pst-slpe/README - RELOC/doc/generic/pst-slpe/pst-slpe.pdf -srcfiles size=12 - RELOC/source/generic/pst-slpe/Makefile - RELOC/source/generic/pst-slpe/pst-slpe.dtx - RELOC/source/generic/pst-slpe/pst-slpe.ins -catalogue-ctan /graphics/pstricks/contrib/pst-slpe -catalogue-date 2014-10-15 19:06:54 +0200 -catalogue-license lppl -catalogue-version 1.31 - -name pst-solarsystem -category Package -revision 24995 -shortdesc Plot the solar system for a specific date. -relocated 1 -longdesc The package uses pstricks to produce diagrams of the visible -longdesc planets, projected on the plane of the ecliptic. It is not -longdesc possible to represent all the planets in their real -longdesc proportions, so only Mercury, Venus, Earth and Mars have their -longdesc orbits in correct proportions and their relative sizes are -longdesc observed. Saturn and Jupiter are in the right direction, but -longdesc not in the correct size. -runfiles size=6 - RELOC/dvips/pst-solarsystem/pst-solarsystem.pro - RELOC/tex/generic/pst-solarsystem/pst-solarsystem.tex - RELOC/tex/latex/pst-solarsystem/pst-solarsystem.sty -docfiles size=76 - RELOC/doc/generic/pst-solarsystem/Changes - RELOC/doc/generic/pst-solarsystem/README - RELOC/doc/generic/pst-solarsystem/pst-solarsystem-doc.bib - RELOC/doc/generic/pst-solarsystem/pst-solarsystem-doc.pdf - RELOC/doc/generic/pst-solarsystem/pst-solarsystem-doc.tex -srcfiles size=1 - RELOC/source/generic/pst-solarsystem/Makefile -catalogue-ctan /graphics/pstricks/contrib/pst-solarsystem -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.12 - -name pst-solides3d -category Package -revision 37718 -shortdesc Draw perspective views of 3D solids. -relocated 1 -longdesc The package is designed to draw solids in 3d perspective. -longdesc Features include: create primitive solids; create solids by -longdesc including a list of its vertices and faces; faces of solids and -longdesc surfaces can be colored by choosing from a very large palette -longdesc of colors; draw parametric surfaces in algebraic and reverse -longdesc polish notation; create explicit and parameterized algebraic -longdesc functions drawn in 2 or 3 dimensions; project text onto a plane -longdesc or onto the faces of a solid; support for including external -longdesc database files. -runfiles size=77 - RELOC/dvips/pst-solides3d/pst-solides3d.pro - RELOC/tex/generic/pst-solides3d/pst-solides3d.tex - RELOC/tex/latex/pst-solides3d/pst-solides3d.sty -docfiles size=2440 - RELOC/doc/generic/pst-solides3d/Changes - RELOC/doc/generic/pst-solides3d/README - RELOC/doc/generic/pst-solides3d/pst-solides3d-doc.pdf - RELOC/doc/generic/pst-solides3d/src/Letter.ist - RELOC/doc/generic/pst-solides3d/src/Makefile - RELOC/doc/generic/pst-solides3d/src/data/Pyramid-couleurs.dat - RELOC/doc/generic/pst-solides3d/src/data/Pyramid-faces.dat - RELOC/doc/generic/pst-solides3d/src/data/Pyramid-io.dat - RELOC/doc/generic/pst-solides3d/src/data/Pyramid-sommets.dat - RELOC/doc/generic/pst-solides3d/src/data/cubeHexagone-couleurs.dat - RELOC/doc/generic/pst-solides3d/src/data/cubeHexagone-faces.dat - RELOC/doc/generic/pst-solides3d/src/data/cubeHexagone-io.dat - RELOC/doc/generic/pst-solides3d/src/data/cubeHexagone-sommets.dat - RELOC/doc/generic/pst-solides3d/src/data/cubecolor-couleurs.dat - RELOC/doc/generic/pst-solides3d/src/data/cubecolor-faces.dat - RELOC/doc/generic/pst-solides3d/src/data/cubecolor-io.dat - RELOC/doc/generic/pst-solides3d/src/data/cubecolor-sommets.dat - RELOC/doc/generic/pst-solides3d/src/data/faces_nefer.dat - RELOC/doc/generic/pst-solides3d/src/data/faces_nefer_levres.dat - RELOC/doc/generic/pst-solides3d/src/data/faces_nefer_sourcils.dat - RELOC/doc/generic/pst-solides3d/src/data/faces_nefer_yeux.dat - RELOC/doc/generic/pst-solides3d/src/data/fusee62-couleurs.dat - RELOC/doc/generic/pst-solides3d/src/data/fusee62-faces.dat - RELOC/doc/generic/pst-solides3d/src/data/fusee62-io.dat - RELOC/doc/generic/pst-solides3d/src/data/fusee62-sommets.dat - RELOC/doc/generic/pst-solides3d/src/data/geodedual44-couleurs.dat - RELOC/doc/generic/pst-solides3d/src/data/geodedual44-faces.dat - RELOC/doc/generic/pst-solides3d/src/data/geodedual44-io.dat - RELOC/doc/generic/pst-solides3d/src/data/geodedual44-sommets.dat - RELOC/doc/generic/pst-solides3d/src/data/horoptere-couleurs.dat - RELOC/doc/generic/pst-solides3d/src/data/horoptere-faces.dat - RELOC/doc/generic/pst-solides3d/src/data/horoptere-io.dat - RELOC/doc/generic/pst-solides3d/src/data/horoptere-sommets.dat - RELOC/doc/generic/pst-solides3d/src/data/paraboloid-couleurs.dat - RELOC/doc/generic/pst-solides3d/src/data/paraboloid-faces.dat - RELOC/doc/generic/pst-solides3d/src/data/paraboloid-io.dat - RELOC/doc/generic/pst-solides3d/src/data/paraboloid-sommets.dat - RELOC/doc/generic/pst-solides3d/src/data/rocket.obj - RELOC/doc/generic/pst-solides3d/src/data/slicePyramid-couleurs.dat - RELOC/doc/generic/pst-solides3d/src/data/slicePyramid-faces.dat - RELOC/doc/generic/pst-solides3d/src/data/slicePyramid-io.dat - RELOC/doc/generic/pst-solides3d/src/data/slicePyramid-sommets.dat - RELOC/doc/generic/pst-solides3d/src/data/sommets_nefer.dat - RELOC/doc/generic/pst-solides3d/src/data/sommets_nefer0.dat - RELOC/doc/generic/pst-solides3d/src/data/tore1836-couleurs.dat - RELOC/doc/generic/pst-solides3d/src/data/tore1836-faces.dat - RELOC/doc/generic/pst-solides3d/src/data/tore1836-io.dat - RELOC/doc/generic/pst-solides3d/src/data/tore1836-sommets.dat - RELOC/doc/generic/pst-solides3d/src/data/tore1860-couleurs.dat - RELOC/doc/generic/pst-solides3d/src/data/tore1860-faces.dat - RELOC/doc/generic/pst-solides3d/src/data/tore1860-io.dat - RELOC/doc/generic/pst-solides3d/src/data/tore1860-sommets.dat - RELOC/doc/generic/pst-solides3d/src/data/tore1860lemniscate-couleurs.dat - RELOC/doc/generic/pst-solides3d/src/data/tore1860lemniscate-faces.dat - RELOC/doc/generic/pst-solides3d/src/data/tore1860lemniscate-io.dat - RELOC/doc/generic/pst-solides3d/src/data/tore1860lemniscate-sommets.dat - RELOC/doc/generic/pst-solides3d/src/data/tore1860ovales-couleurs.dat - RELOC/doc/generic/pst-solides3d/src/data/tore1860ovales-faces.dat - RELOC/doc/generic/pst-solides3d/src/data/tore1860ovales-io.dat - RELOC/doc/generic/pst-solides3d/src/data/tore1860ovales-sommets.dat - RELOC/doc/generic/pst-solides3d/src/data/tore1860part-couleurs.dat - RELOC/doc/generic/pst-solides3d/src/data/tore1860part-faces.dat - RELOC/doc/generic/pst-solides3d/src/data/tore1860part-io.dat - RELOC/doc/generic/pst-solides3d/src/data/tore1860part-sommets.dat - RELOC/doc/generic/pst-solides3d/src/images/kepler.eps - RELOC/doc/generic/pst-solides3d/src/images/parrot.eps - RELOC/doc/generic/pst-solides3d/src/images/tiger.eps - RELOC/doc/generic/pst-solides3d/src/pst-solides3d-doc.bib - RELOC/doc/generic/pst-solides3d/src/pst-solides3d-doc.tex - RELOC/doc/generic/pst-solides3d/src/text/chapter-1-en.tex - RELOC/doc/generic/pst-solides3d/src/text/chapter-2-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-acknowledgements-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-affinage-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-anneaux-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-annoterschema-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-axes3D-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-chanfrein-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-codejps-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-colorierfacettes-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-commandestrace-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-couleurs-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-courbeR3-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-cylindres-cones-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-datfile-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-definirfonction-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-definirplanquelconque-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-definitionmaillage-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-eclairageponctuel-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-enleverfacettes-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-extensions-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-face-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-fusion-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-fusionjps-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-geode-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-grille-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-image2d-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-keywords-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-ligne3D-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-lignedeniveau-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-modes-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-new-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-nommersolide-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-numeroterfacettes-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-opacity-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-parametres-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-plan-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-poems-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-point-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-pointagesommets-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-positionnerpointconnu-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-positionnersolide-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-prisme-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-projectionangledroit-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-projectioncercle-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-projectioncourbe-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-projectiondroite-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-projectionligne-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-projectionpoint-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-projectionpolygone-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-projectiontexte-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-projectionvecteur-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-projectionvisibility-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-projpresentation-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-ruban-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-section-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-solidescreux-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-solidespredefinis-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-surfaces-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-surfacesparametrees-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-tracerpolygone-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-transform-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-transformpointconnu-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-tronque-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-tube-en.tex - RELOC/doc/generic/pst-solides3d/src/text/par-vecteur-en.tex -catalogue-ctan /graphics/pstricks/contrib/pst-solides3d -catalogue-date 2015-06-30 13:21:34 +0200 -catalogue-license lppl1.3 -catalogue-topics graphics-3d pstricks -catalogue-version 4.29 - -name pst-soroban -category Package -revision 15878 -shortdesc Draw a Soroban using PSTricks. -relocated 1 -longdesc The package uses PSTricks to draw a Japanese abacus, or -longdesc soroban. The soroban is still used in Japan today. -runfiles size=2 - RELOC/tex/latex/pst-soroban/pst-soroban.sty -docfiles size=29 - RELOC/doc/generic/pst-soroban/Changes - RELOC/doc/generic/pst-soroban/README - RELOC/doc/generic/pst-soroban/pst-soroban-doc.bib - RELOC/doc/generic/pst-soroban/pst-soroban-doc.pdf - RELOC/doc/generic/pst-soroban/pst-soroban-doc.tex -srcfiles size=1 - RELOC/source/generic/pst-soroban/Makefile -catalogue-ctan /graphics/pstricks/contrib/pst-soroban -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 - -name pst-spectra -category Package -revision 15878 -shortdesc Draw continuum, emission and absorption spectra with PSTricks. -relocated 1 -longdesc The package is a PSTricks extension, based on a NASA lines -longdesc database. It allows you to draw continuum, emission and -longdesc absorption spectra. A Total of 16 880 visible lines from 99 -longdesc elements can be displayed. The package requires the xkeyval -longdesc package for decoding its arguments. -runfiles size=68 - RELOC/dvips/pst-spectra/pst-spectra.pro - RELOC/tex/generic/pst-spectra/pst-spectra.tex - RELOC/tex/latex/pst-spectra/pst-spectra.sty -docfiles size=54 - RELOC/doc/generic/pst-spectra/README - RELOC/doc/generic/pst-spectra/pst-spectra.pdf - RELOC/doc/generic/pst-spectra/pst-spectraEN.pdf -catalogue-ctan /graphics/pstricks/contrib/pst-spectra -catalogue-date 2012-08-25 14:43:44 +0200 -catalogue-license lppl -catalogue-version 0.91 - -name pst-spirograph -category Package -revision 35026 -shortdesc Drawing hypotrochoids as with a spirograph. -relocated 1 -longdesc The package simulates the action of a spirograph, which is a -longdesc geometric drawing toy that produces mathematical roulette -longdesc curves (technically known as hypotrochoids and epitrochoids). -runfiles size=6 - RELOC/dvips/pst-spirograph/pst-spirograph.pro - RELOC/tex/generic/pst-spirograph/pst-spirograph.tex - RELOC/tex/latex/pst-spirograph/pst-spirograph.sty -docfiles size=2568 - RELOC/doc/generic/pst-spirograph/Changes - RELOC/doc/generic/pst-spirograph/README - RELOC/doc/generic/pst-spirograph/animation/README.anim - RELOC/doc/generic/pst-spirograph/animation/anim1.tex - RELOC/doc/generic/pst-spirograph/animation/anim2.tex - RELOC/doc/generic/pst-spirograph/animation/anim3.tex - RELOC/doc/generic/pst-spirograph/animation/anim4.tex - RELOC/doc/generic/pst-spirograph/animation/anim5.tex - RELOC/doc/generic/pst-spirograph/animation/anim6.tex - RELOC/doc/generic/pst-spirograph/animation/anim7.tex - RELOC/doc/generic/pst-spirograph/animation/anim8.tex - RELOC/doc/generic/pst-spirograph/animation/runall.sh - RELOC/doc/generic/pst-spirograph/pst-spirograph-doc.bib - RELOC/doc/generic/pst-spirograph/pst-spirograph-doc.pdf - RELOC/doc/generic/pst-spirograph/pst-spirograph-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-spirograph -catalogue-date 2015-03-30 22:55:45 +0200 -catalogue-license lppl -catalogue-version 0.41 - -name pst-stru -category Package -revision 15878 -shortdesc Civil engineering diagrams, using pstricks. -relocated 1 -longdesc The package is a PSTricks-based, and provides facilities to -longdesc draw structural schemes in civil engineering analysis, for -longdesc beams, portals, arches and piles. -runfiles size=4 - RELOC/tex/generic/pst-stru/pst-stru.tex - RELOC/tex/latex/pst-stru/pst-stru.sty -docfiles size=59 - RELOC/doc/generic/pst-stru/Changes - RELOC/doc/generic/pst-stru/README - RELOC/doc/generic/pst-stru/pst-stru-doc.pdf - RELOC/doc/generic/pst-stru/pst-stru-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-stru -catalogue-date 2012-02-14 12:36:22 +0100 -catalogue-license lppl -catalogue-version 0.12 - -name pst-support -category Package -revision 15878 -shortdesc Assorted support files for use with PStricks. -relocated 1 -longdesc An appropriate set of job options, together with process -longdesc scripts for use with TeXnicCenter/ -docfiles size=10 - RELOC/doc/generic/pst-support/README - RELOC/doc/generic/pst-support/Standard_transparency.joboptions - RELOC/doc/generic/pst-support/latex-ps-pdf.tco - RELOC/doc/generic/pst-support/latex-pstpdf-pdf.tco - RELOC/doc/generic/pst-support/pdflatex-autopstpdf.tco -catalogue-ctan /graphics/pstricks/pst-support -catalogue-date 2015-02-23 19:53:29 +0100 -catalogue-license lppl - -name pst-text -category Package -revision 15878 -shortdesc Text and character manipulation in PSTricks. -relocated 1 -longdesc Pst-text is a PSTricks based package for plotting text along a -longdesc different path and manipulating characters. It includes the -longdesc functionality of the old package pst-char. -runfiles size=6 - RELOC/dvips/pst-text/pst-text.pro - RELOC/tex/generic/pst-text/pst-char.tex - RELOC/tex/generic/pst-text/pst-text.tex - RELOC/tex/latex/pst-text/pst-char.sty - RELOC/tex/latex/pst-text/pst-text.sty -docfiles size=43 - RELOC/doc/generic/pst-text/Changes - RELOC/doc/generic/pst-text/README - RELOC/doc/generic/pst-text/pst-text-doc.bib - RELOC/doc/generic/pst-text/pst-text-doc.pdf - RELOC/doc/generic/pst-text/pst-text-doc.tex -srcfiles size=1 - RELOC/source/generic/pst-text/Makefile -catalogue-ctan /graphics/pstricks/contrib/pst-text -catalogue-date 2012-04-16 17:52:21 +0200 -catalogue-license lppl -catalogue-version 1.00 - -name pst-thick -category Package -revision 16369 -shortdesc Drawing very thick lines and curves. -relocated 1 -longdesc The package supports drawing of very thick lines and curves in -longdesc PSTricks, with various fillings for the body of the lines. -runfiles size=2 - RELOC/tex/generic/pst-thick/pst-thick.tex - RELOC/tex/latex/pst-thick/pst-thick.sty -docfiles size=139 - RELOC/doc/generic/pst-thick/Changes - RELOC/doc/generic/pst-thick/README - RELOC/doc/generic/pst-thick/pst-thick-doc.bib - RELOC/doc/generic/pst-thick/pst-thick-doc.pdf - RELOC/doc/generic/pst-thick/pst-thick-doc.tex -srcfiles size=1 - RELOC/source/generic/pst-thick/Makefile -catalogue-ctan /graphics/pstricks/contrib/pst-thick -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 - -name pst-tools -category Package -revision 34067 -shortdesc PStricks support functions. -relocated 1 -longdesc The package provides helper functions for other PSTricks -longdesc related packages. -runfiles size=5 - RELOC/dvips/pst-tools/pst-tools.pro - RELOC/tex/generic/pst-tools/pst-tools.tex - RELOC/tex/latex/pst-tools/pst-tools.sty -docfiles size=23 - RELOC/doc/generic/pst-tools/Changes - RELOC/doc/generic/pst-tools/README - RELOC/doc/generic/pst-tools/pst-tools-doc.bib - RELOC/doc/generic/pst-tools/pst-tools-doc.pdf - RELOC/doc/generic/pst-tools/pst-tools-doc.tex -catalogue-ctan /graphics/pstricks/contrib/pst-tools -catalogue-date 2014-05-16 12:23:05 +0200 -catalogue-license lppl -catalogue-version 0.05 - -name pst-tree -category Package -revision 24142 -shortdesc Trees, using pstricks. -relocated 1 -longdesc pst-tree is a pstricks package that defines a macro \pstree -longdesc which offers a structured way of joining nodes created using -longdesc pst-node in order to draw trees. -runfiles size=10 - RELOC/tex/generic/pst-tree/pst-tree.tex - RELOC/tex/latex/pst-tree/pst-tree.sty -docfiles size=126 - RELOC/doc/generic/pst-tree/Changes - RELOC/doc/generic/pst-tree/README - RELOC/doc/generic/pst-tree/pst-tree-doc-de.pdf - RELOC/doc/generic/pst-tree/pst-tree-doc-de.tex - RELOC/doc/generic/pst-tree/pst-tree-doc.bib - RELOC/doc/generic/pst-tree/pst-tree-doc.pdf - RELOC/doc/generic/pst-tree/pst-tree-doc.tex -srcfiles size=1 - RELOC/source/generic/pst-tree/Makefile -catalogue-ctan /graphics/pstricks/contrib/pst-tree -catalogue-date 2012-02-10 18:28:55 +0100 -catalogue-license lppl -catalogue-version 1.12 - -name pst-tvz -category Package -revision 23451 -shortdesc Draw trees with more than one root node, using PSTricks. -relocated 1 -longdesc The package uses PSTricks to draw trees with more than one root -longdesc node. It is similar to pst-tree, though it uses a different -longdesc placement algorithm. -runfiles size=21 - RELOC/tex/generic/pst-tvz/pst-tvz.tex - RELOC/tex/latex/pst-tvz/pst-tvz.sty -docfiles size=113 - RELOC/doc/generic/pst-tvz/Changes - RELOC/doc/generic/pst-tvz/README - RELOC/doc/generic/pst-tvz/pst-tvz-doc.bib - RELOC/doc/generic/pst-tvz/pst-tvz-doc.pdf - RELOC/doc/generic/pst-tvz/pst-tvz-doc.tex -srcfiles size=1 - RELOC/source/generic/pst-tvz/Makefile -catalogue-ctan /graphics/pstricks/contrib/pst-tvz -catalogue-date 2015-01-13 12:01:23 +0100 -catalogue-license lppl1.3 -catalogue-version 1.01 - -name pst-uml -category Package -revision 15878 -shortdesc UML diagrams with PSTricks. -relocated 1 -longdesc pst-uml is a PSTricks package that provides support for drawing -longdesc moderately complex UML (Universal Modelling Language) diagrams. -longdesc (The PDF documentation is written in French.) -depend multido -runfiles size=7 - RELOC/tex/latex/pst-uml/pst-uml.sty -docfiles size=142 - RELOC/doc/generic/pst-uml/Changes - RELOC/doc/generic/pst-uml/README - RELOC/doc/generic/pst-uml/diagCase.tex - RELOC/doc/generic/pst-uml/diagClass.tex - RELOC/doc/generic/pst-uml/diagClass1.tex - RELOC/doc/generic/pst-uml/diagSeq.tex - RELOC/doc/generic/pst-uml/diagState.tex - RELOC/doc/generic/pst-uml/pst-uml-doc.pdf - RELOC/doc/generic/pst-uml/pst-uml-doc.tex - RELOC/doc/generic/pst-uml/pst-uml-encapsuled-pdf-fig.pdf - RELOC/doc/generic/pst-uml/pst-uml-encapsuled-pdf-fig.tex - RELOC/doc/generic/pst-uml/pst-uml-exemples.pdf - RELOC/doc/generic/pst-uml/pst-uml-exemples.tex -srcfiles size=2 - RELOC/source/generic/pst-uml/Makefile -catalogue-ctan /graphics/pstricks/contrib/pst-uml -catalogue-date 2012-06-26 16:01:30 +0200 -catalogue-license lppl -catalogue-version 0.83 - -name pst-vectorian -category Package -revision 28801 -shortdesc Printing ornaments. -relocated 1 -longdesc The package uses PStricks to draw ornaments (a substantial -longdesc repertoire of ornaments is provided). -runfiles size=463 - RELOC/dvips/pst-vectorian/psvectorian.pro - RELOC/tex/latex/pst-vectorian/psvectorian.sty -docfiles size=188 - RELOC/doc/latex/pst-vectorian/README - RELOC/doc/latex/pst-vectorian/psvectorian.pdf - RELOC/doc/latex/pst-vectorian/psvectorian.tex -catalogue-ctan /graphics/pstricks/contrib/pst-vectorian -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.4 - -name pst-vowel -category Package -revision 25228 -shortdesc Enable arrows showing diphthongs on vowel charts. -relocated 1 -longdesc The package extends the vowel package (distributed as part of -longdesc the tipa bundle) by allowing the user to draw arrows between -longdesc vowels to show relationships such as diphthong membership. The -longdesc package depends on use of pstricks. -runfiles size=2 - RELOC/tex/latex/pst-vowel/pst-vowel.sty -docfiles size=28 - RELOC/doc/latex/pst-vowel/README - RELOC/doc/latex/pst-vowel/pst-vowel.pdf - RELOC/doc/latex/pst-vowel/pst-vowel.tex -catalogue-ctan /macros/latex/contrib/pst-vowel -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 - -name pst-vue3d -category Package -revision 15878 -shortdesc Draw perspective views of three dimensional objects. -relocated 1 -longdesc With pst-vue3d three dimensional objects like cubes, spheres -longdesc and others can be viewed from different points. The -longdesc distribution includes a comprehensive set of examples of usage. -runfiles size=27 - RELOC/dvips/pst-vue3d/pst-vue3d.pro - RELOC/tex/generic/pst-vue3d/pst-vue3d.tex - RELOC/tex/latex/pst-vue3d/pst-vue3d.sty -docfiles size=1134 - RELOC/doc/generic/pst-vue3d/Changes - RELOC/doc/generic/pst-vue3d/README - RELOC/doc/generic/pst-vue3d/pst-vue3d-doc.bib - RELOC/doc/generic/pst-vue3d/pst-vue3d-doc.pdf - RELOC/doc/generic/pst-vue3d/pst-vue3d-doc.tex -srcfiles size=1 - RELOC/source/generic/pst-vue3d/Makefile -catalogue-ctan /graphics/pstricks/contrib/pst-vue3d -catalogue-date 2012-04-16 17:52:21 +0200 -catalogue-license lppl -catalogue-version 1.24 - -name psu-thesis -category Package -revision 15878 -shortdesc Package for writing a thesis at Penn State University. -relocated 1 -longdesc The package provides proper page formatting according to the -longdesc Penn State thesis office guidelines (as of 2004) and -longdesc automatically formats the front and back matter, title page, -longdesc and more. A BibTeX style file is also included for the -longdesc bibliography. -runfiles size=13 - RELOC/bibtex/bst/psu-thesis/psuthesis.bst - RELOC/tex/latex/psu-thesis/psu-thesis.sty -docfiles size=87 - RELOC/doc/latex/psu-thesis/README - RELOC/doc/latex/psu-thesis/manual.pdf - RELOC/doc/latex/psu-thesis/manual.tex - RELOC/doc/latex/psu-thesis/mssample.pdf - RELOC/doc/latex/psu-thesis/mssample.tex - RELOC/doc/latex/psu-thesis/phdsample.pdf - RELOC/doc/latex/psu-thesis/phdsample.tex -catalogue-ctan /macros/latex/contrib/psu-thesis -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.1 - -name ptex2pdf -category Package -revision 37566 -shortdesc Convert Japanese TeX documents to PDF. -longdesc The Lua script provides system-independent support of Japanese -longdesc typesetting engines in TeXworks. As TeXworks typesetting setup -longdesc does not allow for multistep processing, this script runs one -longdesc of the ptex-based programs (ptex, uptex, eptex, platex, -longdesc uplatex) followed by dvipdfmx. -depend ptex2pdf.ARCH -runfiles size=3 - texmf-dist/scripts/ptex2pdf/ptex2pdf.lua -docfiles size=7 - texmf-dist/doc/latex/ptex2pdf/COPYING - texmf-dist/doc/latex/ptex2pdf/README -catalogue-ctan /language/japanese/ptex2pdf -catalogue-date 2015-06-16 12:48:35 +0200 -catalogue-license gpl2 -catalogue-topics compilation japanese -catalogue-version 0.8 - -name ptex2pdf.i386-linux -category Package -revision 29335 -shortdesc i386-linux files of ptex2pdf -binfiles arch=i386-linux size=1 - bin/i386-linux/ptex2pdf - -name ptex -category Package -revision 38037 -shortdesc A TeX system for publishing in Japanese -longdesc PTeX adds features related to vertical writing, and deals with -longdesc other problems in typesetting Japanese. A set of additions to a -longdesc TEXMF tree, for use with PTeX, may be found in package PTeX- -longdesc texmf. PTeX is distributed as WEB change files. -depend tex -depend latex -depend hyph-utf8 -depend adobemapping -depend ipaex -depend japanese -depend japanese-otf -depend ptex.ARCH -execute AddFormat name=ptex engine=ptex options="ptex.ini" -execute AddFormat name=eptex engine=eptex options="*eptex.ini" patterns=language.def -execute AddFormat name=platex engine=eptex options="*platex.ini" patterns=language.dat -execute addKanjiMap ptex-@kanjiEmbed@@kanjiVariant@.map -execute addKanjiMap morisawa.map -runfiles size=2485 - texmf-dist/fonts/map/dvipdfmx/ptex/morisawa.map - texmf-dist/fonts/source/ptex/ascgrp/ascgrp.mf - texmf-dist/fonts/source/ptex/ascgrp/ascii.mf - texmf-dist/fonts/source/ptex/ascgrp/ascii10.mf - texmf-dist/fonts/source/ptex/ascgrp/ascii36.mf - texmf-dist/fonts/source/ptex/jis/jis-v.pl - texmf-dist/fonts/source/ptex/jis/jis.pl - texmf-dist/fonts/source/ptex/nmin-ngoth/ngoth10.pl - texmf-dist/fonts/source/ptex/nmin-ngoth/ngoth5.pl - texmf-dist/fonts/source/ptex/nmin-ngoth/ngoth6.pl - texmf-dist/fonts/source/ptex/nmin-ngoth/ngoth7.pl - texmf-dist/fonts/source/ptex/nmin-ngoth/ngoth8.pl - texmf-dist/fonts/source/ptex/nmin-ngoth/ngoth9.pl - texmf-dist/fonts/source/ptex/nmin-ngoth/nmin10.pl - texmf-dist/fonts/source/ptex/nmin-ngoth/nmin5.pl - texmf-dist/fonts/source/ptex/nmin-ngoth/nmin6.pl - texmf-dist/fonts/source/ptex/nmin-ngoth/nmin7.pl - texmf-dist/fonts/source/ptex/nmin-ngoth/nmin8.pl - texmf-dist/fonts/source/ptex/nmin-ngoth/nmin9.pl - texmf-dist/fonts/source/ptex/standard/goth10.pl - texmf-dist/fonts/source/ptex/standard/goth5.pl - texmf-dist/fonts/source/ptex/standard/goth6.pl - texmf-dist/fonts/source/ptex/standard/goth7.pl - texmf-dist/fonts/source/ptex/standard/goth8.pl - texmf-dist/fonts/source/ptex/standard/goth9.pl - texmf-dist/fonts/source/ptex/standard/min10.pl - texmf-dist/fonts/source/ptex/standard/min5.pl - texmf-dist/fonts/source/ptex/standard/min6.pl - texmf-dist/fonts/source/ptex/standard/min7.pl - texmf-dist/fonts/source/ptex/standard/min8.pl - texmf-dist/fonts/source/ptex/standard/min9.pl - texmf-dist/fonts/source/ptex/standard/tgoth10.pl - texmf-dist/fonts/source/ptex/standard/tgoth5.pl - texmf-dist/fonts/source/ptex/standard/tgoth6.pl - texmf-dist/fonts/source/ptex/standard/tgoth7.pl - texmf-dist/fonts/source/ptex/standard/tgoth8.pl - texmf-dist/fonts/source/ptex/standard/tgoth9.pl - texmf-dist/fonts/source/ptex/standard/tmin10.pl - texmf-dist/fonts/source/ptex/standard/tmin5.pl - texmf-dist/fonts/source/ptex/standard/tmin6.pl - texmf-dist/fonts/source/ptex/standard/tmin7.pl - texmf-dist/fonts/source/ptex/standard/tmin8.pl - texmf-dist/fonts/source/ptex/standard/tmin9.pl - texmf-dist/fonts/tfm/ptex/ascgrp/ascgrp.tfm - texmf-dist/fonts/tfm/ptex/ascgrp/ascii10.tfm - texmf-dist/fonts/tfm/ptex/ascgrp/ascii36.tfm - texmf-dist/fonts/tfm/ptex/dvips/futogo-b-v.tfm - texmf-dist/fonts/tfm/ptex/dvips/futogo-b.tfm - texmf-dist/fonts/tfm/ptex/dvips/futomin-b-v.tfm - texmf-dist/fonts/tfm/ptex/dvips/futomin-b.tfm - texmf-dist/fonts/tfm/ptex/dvips/gbm.tfm - texmf-dist/fonts/tfm/ptex/dvips/gbmv.tfm - texmf-dist/fonts/tfm/ptex/dvips/gtbbb-m-v.tfm - texmf-dist/fonts/tfm/ptex/dvips/gtbbb-m.tfm - texmf-dist/fonts/tfm/ptex/dvips/jun101-l-v.tfm - texmf-dist/fonts/tfm/ptex/dvips/jun101-l.tfm - texmf-dist/fonts/tfm/ptex/dvips/rml.tfm - texmf-dist/fonts/tfm/ptex/dvips/rmlv.tfm - texmf-dist/fonts/tfm/ptex/dvips/ryumin-l-v.tfm - texmf-dist/fonts/tfm/ptex/dvips/ryumin-l.tfm - texmf-dist/fonts/tfm/ptex/jis/jis-v.tfm - texmf-dist/fonts/tfm/ptex/jis/jis.tfm - texmf-dist/fonts/tfm/ptex/jis/jisg-v.tfm - texmf-dist/fonts/tfm/ptex/jis/jisg.tfm - texmf-dist/fonts/tfm/ptex/jis/jisgn-v.tfm - texmf-dist/fonts/tfm/ptex/jis/jisgn.tfm - texmf-dist/fonts/tfm/ptex/jis/jisn-v.tfm - texmf-dist/fonts/tfm/ptex/jis/jisn.tfm - texmf-dist/fonts/tfm/ptex/morisawa/FutoGoB101-Bold-H.tfm - texmf-dist/fonts/tfm/ptex/morisawa/FutoGoB101-Bold-J.tfm - texmf-dist/fonts/tfm/ptex/morisawa/FutoGoB101-Bold-V.tfm - texmf-dist/fonts/tfm/ptex/morisawa/FutoMinA101-Bold-H.tfm - texmf-dist/fonts/tfm/ptex/morisawa/FutoMinA101-Bold-J.tfm - texmf-dist/fonts/tfm/ptex/morisawa/FutoMinA101-Bold-V.tfm - texmf-dist/fonts/tfm/ptex/morisawa/GothicBBB-Medium-H.tfm - texmf-dist/fonts/tfm/ptex/morisawa/GothicBBB-Medium-J.tfm - texmf-dist/fonts/tfm/ptex/morisawa/GothicBBB-Medium-V.tfm - texmf-dist/fonts/tfm/ptex/morisawa/Jun101-Light-H.tfm - texmf-dist/fonts/tfm/ptex/morisawa/Jun101-Light-J.tfm - texmf-dist/fonts/tfm/ptex/morisawa/Jun101-Light-V.tfm - texmf-dist/fonts/tfm/ptex/morisawa/Ryumin-Light-H.tfm - texmf-dist/fonts/tfm/ptex/morisawa/Ryumin-Light-J.tfm - texmf-dist/fonts/tfm/ptex/morisawa/Ryumin-Light-V.tfm - texmf-dist/fonts/tfm/ptex/nmin-ngoth/ngoth10.tfm - texmf-dist/fonts/tfm/ptex/nmin-ngoth/ngoth5.tfm - texmf-dist/fonts/tfm/ptex/nmin-ngoth/ngoth6.tfm - texmf-dist/fonts/tfm/ptex/nmin-ngoth/ngoth7.tfm - texmf-dist/fonts/tfm/ptex/nmin-ngoth/ngoth8.tfm - texmf-dist/fonts/tfm/ptex/nmin-ngoth/ngoth9.tfm - texmf-dist/fonts/tfm/ptex/nmin-ngoth/nmin10.tfm - texmf-dist/fonts/tfm/ptex/nmin-ngoth/nmin5.tfm - texmf-dist/fonts/tfm/ptex/nmin-ngoth/nmin6.tfm - texmf-dist/fonts/tfm/ptex/nmin-ngoth/nmin7.tfm - texmf-dist/fonts/tfm/ptex/nmin-ngoth/nmin8.tfm - texmf-dist/fonts/tfm/ptex/nmin-ngoth/nmin9.tfm - texmf-dist/fonts/tfm/ptex/standard/goth10.tfm - texmf-dist/fonts/tfm/ptex/standard/goth5.tfm - texmf-dist/fonts/tfm/ptex/standard/goth6.tfm - texmf-dist/fonts/tfm/ptex/standard/goth7.tfm - texmf-dist/fonts/tfm/ptex/standard/goth8.tfm - texmf-dist/fonts/tfm/ptex/standard/goth9.tfm - texmf-dist/fonts/tfm/ptex/standard/min10.tfm - texmf-dist/fonts/tfm/ptex/standard/min5.tfm - texmf-dist/fonts/tfm/ptex/standard/min6.tfm - texmf-dist/fonts/tfm/ptex/standard/min7.tfm - texmf-dist/fonts/tfm/ptex/standard/min8.tfm - texmf-dist/fonts/tfm/ptex/standard/min9.tfm - texmf-dist/fonts/tfm/ptex/standard/tgoth10.tfm - texmf-dist/fonts/tfm/ptex/standard/tgoth5.tfm - texmf-dist/fonts/tfm/ptex/standard/tgoth6.tfm - texmf-dist/fonts/tfm/ptex/standard/tgoth7.tfm - texmf-dist/fonts/tfm/ptex/standard/tgoth8.tfm - texmf-dist/fonts/tfm/ptex/standard/tgoth9.tfm - texmf-dist/fonts/tfm/ptex/standard/tmin10.tfm - texmf-dist/fonts/tfm/ptex/standard/tmin5.tfm - texmf-dist/fonts/tfm/ptex/standard/tmin6.tfm - texmf-dist/fonts/tfm/ptex/standard/tmin7.tfm - texmf-dist/fonts/tfm/ptex/standard/tmin8.tfm - texmf-dist/fonts/tfm/ptex/standard/tmin9.tfm - texmf-dist/fonts/type1/ptex/ascgrp/ascgrp.pfb - texmf-dist/fonts/type1/ptex/ascgrp/ascii10.pfb - texmf-dist/fonts/type1/ptex/ascgrp/ascii36.pfb - texmf-dist/fonts/vf/ptex/jis/jis-v.vf - texmf-dist/fonts/vf/ptex/jis/jis.vf - texmf-dist/fonts/vf/ptex/jis/jisg-v.vf - texmf-dist/fonts/vf/ptex/jis/jisg.vf - texmf-dist/fonts/vf/ptex/jis/jisgn-v.vf - texmf-dist/fonts/vf/ptex/jis/jisgn.vf - texmf-dist/fonts/vf/ptex/jis/jisn-v.vf - texmf-dist/fonts/vf/ptex/jis/jisn.vf - texmf-dist/fonts/vf/ptex/morisawa/FutoGoB101-Bold-H.vf - texmf-dist/fonts/vf/ptex/morisawa/FutoGoB101-Bold-J.vf - texmf-dist/fonts/vf/ptex/morisawa/FutoGoB101-Bold-V.vf - texmf-dist/fonts/vf/ptex/morisawa/FutoMinA101-Bold-H.vf - texmf-dist/fonts/vf/ptex/morisawa/FutoMinA101-Bold-J.vf - texmf-dist/fonts/vf/ptex/morisawa/FutoMinA101-Bold-V.vf - texmf-dist/fonts/vf/ptex/morisawa/GothicBBB-Medium-H.vf - texmf-dist/fonts/vf/ptex/morisawa/GothicBBB-Medium-J.vf - texmf-dist/fonts/vf/ptex/morisawa/GothicBBB-Medium-V.vf - texmf-dist/fonts/vf/ptex/morisawa/Jun101-Light-H.vf - texmf-dist/fonts/vf/ptex/morisawa/Jun101-Light-J.vf - texmf-dist/fonts/vf/ptex/morisawa/Jun101-Light-V.vf - texmf-dist/fonts/vf/ptex/morisawa/Ryumin-Light-H.vf - texmf-dist/fonts/vf/ptex/morisawa/Ryumin-Light-J.vf - texmf-dist/fonts/vf/ptex/morisawa/Ryumin-Light-V.vf - texmf-dist/fonts/vf/ptex/nmin-ngoth/ngoth10.vf - texmf-dist/fonts/vf/ptex/nmin-ngoth/ngoth5.vf - texmf-dist/fonts/vf/ptex/nmin-ngoth/ngoth6.vf - texmf-dist/fonts/vf/ptex/nmin-ngoth/ngoth7.vf - texmf-dist/fonts/vf/ptex/nmin-ngoth/ngoth8.vf - texmf-dist/fonts/vf/ptex/nmin-ngoth/ngoth9.vf - texmf-dist/fonts/vf/ptex/nmin-ngoth/nmin10.vf - texmf-dist/fonts/vf/ptex/nmin-ngoth/nmin5.vf - texmf-dist/fonts/vf/ptex/nmin-ngoth/nmin6.vf - texmf-dist/fonts/vf/ptex/nmin-ngoth/nmin7.vf - texmf-dist/fonts/vf/ptex/nmin-ngoth/nmin8.vf - texmf-dist/fonts/vf/ptex/nmin-ngoth/nmin9.vf - texmf-dist/fonts/vf/ptex/standard/goth10.vf - texmf-dist/fonts/vf/ptex/standard/goth5.vf - texmf-dist/fonts/vf/ptex/standard/goth6.vf - texmf-dist/fonts/vf/ptex/standard/goth7.vf - texmf-dist/fonts/vf/ptex/standard/goth8.vf - texmf-dist/fonts/vf/ptex/standard/goth9.vf - texmf-dist/fonts/vf/ptex/standard/min10.vf - texmf-dist/fonts/vf/ptex/standard/min5.vf - texmf-dist/fonts/vf/ptex/standard/min6.vf - texmf-dist/fonts/vf/ptex/standard/min7.vf - texmf-dist/fonts/vf/ptex/standard/min8.vf - texmf-dist/fonts/vf/ptex/standard/min9.vf - texmf-dist/fonts/vf/ptex/standard/tgoth10.vf - texmf-dist/fonts/vf/ptex/standard/tgoth5.vf - texmf-dist/fonts/vf/ptex/standard/tgoth6.vf - texmf-dist/fonts/vf/ptex/standard/tgoth7.vf - texmf-dist/fonts/vf/ptex/standard/tgoth8.vf - texmf-dist/fonts/vf/ptex/standard/tgoth9.vf - texmf-dist/fonts/vf/ptex/standard/tmin10.vf - texmf-dist/fonts/vf/ptex/standard/tmin5.vf - texmf-dist/fonts/vf/ptex/standard/tmin6.vf - texmf-dist/fonts/vf/ptex/standard/tmin7.vf - texmf-dist/fonts/vf/ptex/standard/tmin8.vf - texmf-dist/fonts/vf/ptex/standard/tmin9.vf - texmf-dist/pbibtex/bib/jxampl.bib - texmf-dist/pbibtex/bst/jabbrv.bst - texmf-dist/pbibtex/bst/jalpha.bst - texmf-dist/pbibtex/bst/jipsj.bst - texmf-dist/pbibtex/bst/jname.bst - texmf-dist/pbibtex/bst/jorsj.bst - texmf-dist/pbibtex/bst/jplain.bst - texmf-dist/pbibtex/bst/junsrt.bst - texmf-dist/pbibtex/bst/tieice.bst - texmf-dist/pbibtex/bst/tipsj.bst - texmf-dist/tex/platex/base/ascmac.sty - texmf-dist/tex/platex/base/jarticle.cls - texmf-dist/tex/platex/base/jarticle.sty - texmf-dist/tex/platex/base/jbk10.clo - texmf-dist/tex/platex/base/jbk11.clo - texmf-dist/tex/platex/base/jbk12.clo - texmf-dist/tex/platex/base/jbook.cls - texmf-dist/tex/platex/base/jbook.sty - texmf-dist/tex/platex/base/jltxdoc.cls - texmf-dist/tex/platex/base/jreport.cls - texmf-dist/tex/platex/base/jreport.sty - texmf-dist/tex/platex/base/jsize10.clo - texmf-dist/tex/platex/base/jsize11.clo - texmf-dist/tex/platex/base/jsize12.clo - texmf-dist/tex/platex/base/jt1gt.fd - texmf-dist/tex/platex/base/jt1mc.fd - texmf-dist/tex/platex/base/jy1gt.fd - texmf-dist/tex/platex/base/jy1mc.fd - texmf-dist/tex/platex/base/kinsoku.tex - texmf-dist/tex/platex/base/nidanfloat.sty - texmf-dist/tex/platex/base/oldpfont.sty - texmf-dist/tex/platex/base/pl209.def - texmf-dist/tex/platex/base/platex.ltx - texmf-dist/tex/platex/base/plcore.ltx - texmf-dist/tex/platex/base/pldefs.ltx - texmf-dist/tex/platex/base/plext.sty - texmf-dist/tex/platex/base/plnews.cls - texmf-dist/tex/platex/base/ptrace.sty - texmf-dist/tex/platex/base/tarticle.cls - texmf-dist/tex/platex/base/tarticle.sty - texmf-dist/tex/platex/base/tascmac.sty - texmf-dist/tex/platex/base/tbk10.clo - texmf-dist/tex/platex/base/tbk11.clo - texmf-dist/tex/platex/base/tbk12.clo - texmf-dist/tex/platex/base/tbook.cls - texmf-dist/tex/platex/base/tbook.sty - texmf-dist/tex/platex/base/treport.cls - texmf-dist/tex/platex/base/treport.sty - texmf-dist/tex/platex/base/tsize10.clo - texmf-dist/tex/platex/base/tsize11.clo - texmf-dist/tex/platex/base/tsize12.clo - texmf-dist/tex/platex/config/hyphen.cfg - texmf-dist/tex/platex/config/platex.ini - texmf-dist/tex/ptex/base/ascii-jplain.tex - texmf-dist/tex/ptex/base/eptex.src - texmf-dist/tex/ptex/base/eptexdefs.lib - texmf-dist/tex/ptex/base/kinsoku.tex - texmf-dist/tex/ptex/base/ptex.tex - texmf-dist/tex/ptex/config/eptex.ini - texmf-dist/tex/ptex/config/ptex.ini -docfiles size=536 - texmf-dist/doc/man/man1/mendex.1 - texmf-dist/doc/man/man1/mendex.man1.pdf - texmf-dist/doc/ptex/base/COPYRIGHT - texmf-dist/doc/ptex/base/COPYRIGHT.txt - texmf-dist/doc/ptex/base/Changes.txt - texmf-dist/doc/ptex/base/INSTALL.txt - texmf-dist/doc/ptex/base/README.txt - texmf-dist/doc/ptex/base/jfm.pdf - texmf-dist/doc/ptex/base/jfm.tex - texmf-dist/doc/ptex/base/jtex.pdf - texmf-dist/doc/ptex/base/jtex.tex - texmf-dist/doc/ptex/base/jtexdoc.pdf - texmf-dist/doc/ptex/base/jtexdoc.tex - texmf-dist/doc/ptex/base/ptexdoc.pdf - texmf-dist/doc/ptex/base/ptexdoc.tex - texmf-dist/doc/ptex/base/ptexskip.pdf - texmf-dist/doc/ptex/base/ptexskip.tex - texmf-dist/doc/ptex/jvf/COPYRIGHT - texmf-dist/doc/ptex/jvf/Changes.txt - texmf-dist/doc/ptex/jvf/README.txt - texmf-dist/doc/ptex/pbibtex/README - texmf-dist/doc/ptex/pbibtex/cpp.awk - texmf-dist/doc/ptex/pbibtex/generate.sh - texmf-dist/doc/ptex/pbibtex/jbibtex.bib - texmf-dist/doc/ptex/pbibtex/jbibtex.pdf - texmf-dist/doc/ptex/pbibtex/jbibtex.tex - texmf-dist/doc/ptex/pbibtex/jbtxbst.doc - texmf-dist/doc/ptex/pbibtex/jbtxdoc.bib - texmf-dist/doc/ptex/pbibtex/jbtxdoc.pdf - texmf-dist/doc/ptex/pbibtex/jbtxdoc.tex - texmf-dist/doc/ptex/pbibtex/jbtxhak.pdf - texmf-dist/doc/ptex/pbibtex/jbtxhak.tex -srcfiles size=133 - texmf-dist/source/platex/base/Changes.txt - texmf-dist/source/platex/base/README.txt - texmf-dist/source/platex/base/README2.txt - texmf-dist/source/platex/base/Xins.ins - texmf-dist/source/platex/base/jclasses.dtx - texmf-dist/source/platex/base/jltxdoc.dtx - texmf-dist/source/platex/base/kinsoku.dtx - texmf-dist/source/platex/base/nidanfloat.dtx - texmf-dist/source/platex/base/nidanfloat.ins - texmf-dist/source/platex/base/pl209.dtx - texmf-dist/source/platex/base/pl209.ins - texmf-dist/source/platex/base/platex.dtx - texmf-dist/source/platex/base/plcls.ins - texmf-dist/source/platex/base/plcore.dtx - texmf-dist/source/platex/base/plcore.ins - texmf-dist/source/platex/base/pldoc.tex - texmf-dist/source/platex/base/pldocs.ins - texmf-dist/source/platex/base/plext.dtx - texmf-dist/source/platex/base/plfmt.ins - texmf-dist/source/platex/base/plfonts.dtx - texmf-dist/source/platex/base/plnews01.tex - texmf-dist/source/platex/base/plnews02.tex - texmf-dist/source/platex/base/plnews03.tex - texmf-dist/source/platex/base/plnews04.tex - texmf-dist/source/platex/base/plnews05.tex - texmf-dist/source/platex/base/plnews06.tex - texmf-dist/source/platex/base/plnews07.tex - texmf-dist/source/platex/base/plnews08.tex - texmf-dist/source/platex/base/plpatch.ltx - texmf-dist/source/platex/base/plvers.dtx -catalogue-ctan /language/japanese/ptex -catalogue-date 2015-08-03 05:43:12 +0200 -catalogue-license other-free -catalogue-topics engine japanese - -name ptex.i386-linux -category Package -revision 37340 -shortdesc i386-linux files of ptex -binfiles arch=i386-linux size=1764 - bin/i386-linux/eptex - bin/i386-linux/makejvf - bin/i386-linux/mendex - bin/i386-linux/pbibtex - bin/i386-linux/pdvitomp - bin/i386-linux/pdvitype - bin/i386-linux/platex - bin/i386-linux/pmpost - bin/i386-linux/ppltotf - bin/i386-linux/ptex - bin/i386-linux/ptftopl - -name ptext -category Package -revision 30171 -shortdesc A 'lipsum' for Persian. -relocated 1 -longdesc The package provides lipsum-like facilities for the Persian -longdesc language. The source of the filling text is the Persian epic -longdesc "the Shanameh" (100 paragraphs are used.) The package needs to -longdesc be run under XeLaTeX. -runfiles size=22 - RELOC/tex/xelatex/ptext/ptext.sty -docfiles size=17 - RELOC/doc/xelatex/ptext/README - RELOC/doc/xelatex/ptext/ptext.pdf - RELOC/doc/xelatex/ptext/ptext.tex -catalogue-ctan /macros/xetex/latex/ptext -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.2 -catalogue-version 1.1 - -name ptptex -category Package -revision 19440 -shortdesc Macros for 'Progress of Theoretical Physics'. -relocated 1 -longdesc The distribution contains the class (which offers an option -longdesc file for preprints), and a template. The class requires the -longdesc cite, overcite and wrapfig packages. -runfiles size=12 - RELOC/tex/latex/ptptex/ptp-prep.clo - RELOC/tex/latex/ptptex/ptptex.cls - RELOC/tex/latex/ptptex/wrapft.sty -docfiles size=64 - RELOC/doc/latex/ptptex/README - RELOC/doc/latex/ptptex/README.TEXLIVE - RELOC/doc/latex/ptptex/manptp.pdf - RELOC/doc/latex/ptptex/manptp.tex - RELOC/doc/latex/ptptex/template.tex -catalogue-ctan /macros/latex/contrib/ptptex -catalogue-date 2011-11-17 08:52:38 +0100 -catalogue-license lppl -catalogue-version 0.91 - -name punk-latex -category Package -revision 27389 -shortdesc LaTeX support for punk fonts. -relocated 1 -longdesc The package and .fd file provide support for Knuth's punk -longdesc fonts. That bundle also offers support within LaTeX; the -longdesc present package is to be preferred. -runfiles size=2 - RELOC/tex/latex/punk-latex/ot1pnk.fd - RELOC/tex/latex/punk-latex/punk.sty -docfiles size=41 - RELOC/doc/latex/punk-latex/README - RELOC/doc/latex/punk-latex/punk.pdf - RELOC/doc/latex/punk-latex/punk.tex -catalogue-ctan /macros/latex/contrib/punk-latex -catalogue-date 2012-08-14 16:24:07 +0200 -catalogue-license gpl -catalogue-version 1.1 - -name punknova -category Package -revision 24649 -shortdesc OpenType version of Knuth's Punk font. -relocated 1 -longdesc The font was generated from a MetaPost version of the sources -longdesc of the 'original' punk font. Knuth's original fonts generated -longdesc different shapes at random. This isn't actually possible in an -longdesc OpenType font; rather, the font contains several variants of -longdesc each glyph, and uses the OpenType randomize function to select -longdesc a variant for each invocation. -runfiles size=424 - RELOC/fonts/opentype/public/punknova/punknova-bold.otf - RELOC/fonts/opentype/public/punknova/punknova-boldslanted.otf - RELOC/fonts/opentype/public/punknova/punknova-regular.otf - RELOC/fonts/opentype/public/punknova/punknova-slanted.otf -docfiles size=44 - RELOC/doc/fonts/punknova/Makefile - RELOC/doc/fonts/punknova/NEWS - RELOC/doc/fonts/punknova/README - RELOC/doc/fonts/punknova/documentation/documentation-sources/sample.tex - RELOC/doc/fonts/punknova/documentation/sample.pdf - RELOC/doc/fonts/punknova/source/punkfont-bold.mp - RELOC/doc/fonts/punknova/source/punkfont-boldslanted.mp - RELOC/doc/fonts/punknova/source/punkfont-regular.mp - RELOC/doc/fonts/punknova/source/punkfont-slanted.mp - RELOC/doc/fonts/punknova/tools/build.py -catalogue-ctan /fonts/punknova -catalogue-date 2014-05-23 17:29:14 +0200 -catalogue-license other-free -catalogue-version 1.003 - -name punk -category Package -revision 27388 -shortdesc Donald Knuth's punk font. -relocated 1 -longdesc A response to the assertion in a lecture that "typography tends -longdesc to lag behind other stylistic changes by about 10 years". Knuth -longdesc felt it was (in 1988) time to design a replacement for his -longdesc designs of the 1970s, and came up with this font! The fonts are -longdesc distributed as Metafont source. The package offers LaTeX -longdesc support by Rohit Grover, from an original by Sebastian Rahtz, -longdesc which is slightly odd in claiming that the fonts are T1- -longdesc encoded. A (possibly) more rational support package is to be -longdesc found in punk-latex -runfiles size=20 - RELOC/fonts/source/public/punk/punk.mf - RELOC/fonts/source/public/punk/punk10.mf - RELOC/fonts/source/public/punk/punk12.mf - RELOC/fonts/source/public/punk/punk20.mf - RELOC/fonts/source/public/punk/punka.mf - RELOC/fonts/source/public/punk/punkae.mf - RELOC/fonts/source/public/punk/punkbx20.mf - RELOC/fonts/source/public/punk/punkd.mf - RELOC/fonts/source/public/punk/punkg.mf - RELOC/fonts/source/public/punk/punkl.mf - RELOC/fonts/source/public/punk/punkp.mf - RELOC/fonts/source/public/punk/punksl.mf - RELOC/fonts/source/public/punk/punksl20.mf - RELOC/fonts/tfm/public/punk/punk10.tfm - RELOC/fonts/tfm/public/punk/punk12.tfm - RELOC/fonts/tfm/public/punk/punk20.tfm - RELOC/fonts/tfm/public/punk/punkbx20.tfm - RELOC/fonts/tfm/public/punk/punksl20.tfm -docfiles size=2 - RELOC/doc/fonts/punk/punk.sty - RELOC/doc/fonts/punk/punktest.tex -catalogue-ctan /fonts/punk -catalogue-date 2014-05-23 17:29:14 +0200 -catalogue-license knuth - -name purifyeps -category Package -revision 29725 -shortdesc Make EPS work with both LaTeX/dvips and pdfLaTeX. -longdesc While pdfLaTeX has a number of nice features, its primary -longdesc shortcoming relative to standard LaTeX+dvips is that it is -longdesc unable to read ordinary Encapsulated PostScript (EPS) files, -longdesc the most common graphics format in the LaTeX world. Purifyeps -longdesc converts EPS files into a 'purified' form that can be read by -longdesc both LaTeX+dvips and pdfLaTeX. The trick is that the standard -longdesc LaTeX2e graphics packages can parse MetaPost-produced EPS -longdesc directly. Hence, purifyeps need only convert an arbitrary EPS -longdesc file into the same stylized format that MetaPost outputs. -depend purifyeps.ARCH -runfiles size=5 - texmf-dist/scripts/purifyeps/purifyeps -docfiles size=9 - texmf-dist/doc/man/man1/purifyeps.1 - texmf-dist/doc/man/man1/purifyeps.man1.pdf - texmf-dist/doc/support/purifyeps/README -catalogue-ctan /support/purifyeps -catalogue-date 2012-05-07 16:41:43 +0200 -catalogue-license lppl -catalogue-version 1.1 - -name purifyeps.i386-linux -category Package -revision 13663 -shortdesc i386-linux files of purifyeps -binfiles arch=i386-linux size=1 - bin/i386-linux/purifyeps - -name pxbase -category Package -revision 28516 -shortdesc Tools for use with (u)pLaTeX. -relocated 1 -runfiles size=20 - RELOC/tex/platex/pxbase/ifuptex.sty - RELOC/tex/platex/pxbase/pxbabel.sty - RELOC/tex/platex/pxbase/pxbase.def - RELOC/tex/platex/pxbase/pxbase.sty - RELOC/tex/platex/pxbase/pxbasenc.def - RELOC/tex/platex/pxbase/pxbsjc.def - RELOC/tex/platex/pxbase/pxjsfenc.def - RELOC/tex/platex/pxbase/upkcat.sty -docfiles size=15 - RELOC/doc/platex/pxbase/LICENSE - RELOC/doc/platex/pxbase/README - RELOC/doc/platex/pxbase/README-pxbabel - RELOC/doc/platex/pxbase/README-pxcjkcat -catalogue-ctan /language/japanese/pxbase -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license other-free -catalogue-version 0.5 - -name pxchfon -category Package -revision 38041 -shortdesc Japanese font setup for pLaTeX and upLaTeX -relocated 1 -longdesc This package enables users to declare in their document which -longdesc physical fonts should be used for the standard Japanese -longdesc (logical) fonts of pLaTeX and upLaTeX. Font setup is realized -longdesc by changing the font mapping of dvipdfmx, and thus users can -longdesc use any (monospaced) physical fonts they like, once they -longdesc properly install this package, without creating helper files -longdesc for each new font. This package also supports setup for the -longdesc fonts used in the japanese-otf package. -runfiles size=29 - RELOC/fonts/sfd/pxchfon/PXcjk0.sfd - RELOC/fonts/tfm/public/pxchfon/cfjar-b-l0j.tfm - RELOC/fonts/tfm/public/pxchfon/cfjar-l-l0j.tfm - RELOC/fonts/tfm/public/pxchfon/cfjar-r-l0j.tfm - RELOC/fonts/tfm/public/pxchfon/cfjas-b-l0j.tfm - RELOC/fonts/tfm/public/pxchfon/cfjas-r-l0j.tfm - RELOC/fonts/tfm/public/pxchfon/cfjas-x-l0j.tfm - RELOC/fonts/tfm/public/pxchfon/r-cfjar-b-l0j.tfm - RELOC/fonts/tfm/public/pxchfon/r-cfjar-l-l0j.tfm - RELOC/fonts/tfm/public/pxchfon/r-cfjar-r-l0j.tfm - RELOC/fonts/tfm/public/pxchfon/r-cfjas-b-l0j.tfm - RELOC/fonts/tfm/public/pxchfon/r-cfjas-r-l0j.tfm - RELOC/fonts/tfm/public/pxchfon/r-cfjas-x-l0j.tfm - RELOC/fonts/vf/public/pxchfon/cfjar-b-l0j.vf - RELOC/fonts/vf/public/pxchfon/cfjar-l-l0j.vf - RELOC/fonts/vf/public/pxchfon/cfjar-r-l0j.vf - RELOC/fonts/vf/public/pxchfon/cfjas-b-l0j.vf - RELOC/fonts/vf/public/pxchfon/cfjas-r-l0j.vf - RELOC/fonts/vf/public/pxchfon/cfjas-x-l0j.vf - RELOC/tex/platex/pxchfon/pxchfon.sty - RELOC/tex/platex/pxchfon/pxchfon0.def - RELOC/tex/platex/pxchfon/pxjafont.sty -docfiles size=87 - RELOC/doc/platex/pxchfon/LICENSE - RELOC/doc/platex/pxchfon/README - RELOC/doc/platex/pxchfon/README-ja - RELOC/doc/platex/pxchfon/pxchfon.pdf - RELOC/doc/platex/pxchfon/pxchfon.tex - RELOC/doc/platex/pxchfon/sample-2000jis.pdf - RELOC/doc/platex/pxchfon/sample-2000jis.tex - RELOC/doc/platex/pxchfon/sample-2004jis.pdf - RELOC/doc/platex/pxchfon/sample-2004jis.tex - RELOC/doc/platex/pxchfon/sample-pxchfon.pdf - RELOC/doc/platex/pxchfon/sample-pxchfon.tex -catalogue-ctan /language/japanese/pxchfon -catalogue-date 2015-08-04 14:23:08 +0200 -catalogue-license other-free -catalogue-topics japanese font-supp -catalogue-version 0.7f - -name pxcjkcat -category Package -revision 27780 -shortdesc LaTeX interface for the CJK category codes of upTeX. -relocated 1 -longdesc The package provides management of the CJK category code -longdesc ('kcatcode'> table of the upTeX extended TeX engine. Package -longdesc options are available for tailored use in the cases of -longdesc documents that are principally written in Japanese, or -longdesc principally written in English or other Western languages. -runfiles size=5 - RELOC/tex/latex/pxcjkcat/pxcjkcat.sty -docfiles size=9 - RELOC/doc/latex/pxcjkcat/LICENSE - RELOC/doc/latex/pxcjkcat/README - RELOC/doc/latex/pxcjkcat/README-ja -catalogue-ctan /macros/latex/contrib/pxcjkcat -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license other-free -catalogue-version 1.0 - -name pxfonts -category Package -revision 15878 -shortdesc Palatino-like fonts in support of mathematics. -relocated 1 -longdesc Pxfonts supplies virtual text roman fonts using Adobe Palatino -longdesc (or URWPalladioL) with some modified and additional text -longdesc symbols in the OT1, T1, and TS1 encodings; maths alphabets -longdesc using Palatino/Palladio; maths fonts providing all the symbols -longdesc of the Computer Modern and AMS fonts, including all the Greek -longdesc capital letters from CMR; and additional maths fonts of various -longdesc other symbols. The set is complemented by a sans-serif set of -longdesc text fonts, based on Helvetica/NimbusSanL, and a monospace set -longdesc derived from the parallel TX font set. All the fonts are in -longdesc Type 1 format (AFM and PFB files), and are supported by TeX -longdesc metrics (VF and TFM files) and macros for use with LaTeX. -execute addMap pxfonts.map -runfiles size=305 - RELOC/fonts/afm/public/pxfonts/pxbex.afm - RELOC/fonts/afm/public/pxfonts/pxbexa.afm - RELOC/fonts/afm/public/pxfonts/pxbmia.afm - RELOC/fonts/afm/public/pxfonts/pxbsy.afm - RELOC/fonts/afm/public/pxfonts/pxbsya.afm - RELOC/fonts/afm/public/pxfonts/pxbsyb.afm - RELOC/fonts/afm/public/pxfonts/pxbsyc.afm - RELOC/fonts/afm/public/pxfonts/pxex.afm - RELOC/fonts/afm/public/pxfonts/pxexa.afm - RELOC/fonts/afm/public/pxfonts/pxmia.afm - RELOC/fonts/afm/public/pxfonts/pxsy.afm - RELOC/fonts/afm/public/pxfonts/pxsya.afm - RELOC/fonts/afm/public/pxfonts/pxsyb.afm - RELOC/fonts/afm/public/pxfonts/pxsyc.afm - RELOC/fonts/afm/public/pxfonts/rpcxb.afm - RELOC/fonts/afm/public/pxfonts/rpcxbi.afm - RELOC/fonts/afm/public/pxfonts/rpcxi.afm - RELOC/fonts/afm/public/pxfonts/rpcxr.afm - RELOC/fonts/afm/public/pxfonts/rpxb.afm - RELOC/fonts/afm/public/pxfonts/rpxbi.afm - RELOC/fonts/afm/public/pxfonts/rpxbmi.afm - RELOC/fonts/afm/public/pxfonts/rpxbsc.afm - RELOC/fonts/afm/public/pxfonts/rpxi.afm - RELOC/fonts/afm/public/pxfonts/rpxmi.afm - RELOC/fonts/afm/public/pxfonts/rpxr.afm - RELOC/fonts/afm/public/pxfonts/rpxsc.afm - RELOC/fonts/map/dvips/pxfonts/pxfonts.map - RELOC/fonts/map/dvips/pxfonts/pxr.map - RELOC/fonts/map/dvips/pxfonts/pxr1.map - RELOC/fonts/map/dvips/pxfonts/pxr2.map - RELOC/fonts/map/dvips/pxfonts/pxr3.map - RELOC/fonts/tfm/public/pxfonts/p1xb.tfm - RELOC/fonts/tfm/public/pxfonts/p1xbi.tfm - RELOC/fonts/tfm/public/pxfonts/p1xbsc.tfm - RELOC/fonts/tfm/public/pxfonts/p1xbsl.tfm - RELOC/fonts/tfm/public/pxfonts/p1xi.tfm - RELOC/fonts/tfm/public/pxfonts/p1xr.tfm - RELOC/fonts/tfm/public/pxfonts/p1xsc.tfm - RELOC/fonts/tfm/public/pxfonts/p1xsl.tfm - RELOC/fonts/tfm/public/pxfonts/pcxb.tfm - RELOC/fonts/tfm/public/pxfonts/pcxbi.tfm - RELOC/fonts/tfm/public/pxfonts/pcxbsl.tfm - RELOC/fonts/tfm/public/pxfonts/pcxi.tfm - RELOC/fonts/tfm/public/pxfonts/pcxr.tfm - RELOC/fonts/tfm/public/pxfonts/pcxsl.tfm - RELOC/fonts/tfm/public/pxfonts/pxb.tfm - RELOC/fonts/tfm/public/pxfonts/pxbex.tfm - RELOC/fonts/tfm/public/pxfonts/pxbexa.tfm - RELOC/fonts/tfm/public/pxfonts/pxbi.tfm - RELOC/fonts/tfm/public/pxfonts/pxbmi.tfm - RELOC/fonts/tfm/public/pxfonts/pxbmi1.tfm - RELOC/fonts/tfm/public/pxfonts/pxbmia.tfm - RELOC/fonts/tfm/public/pxfonts/pxbsc.tfm - RELOC/fonts/tfm/public/pxfonts/pxbsl.tfm - RELOC/fonts/tfm/public/pxfonts/pxbsy.tfm - RELOC/fonts/tfm/public/pxfonts/pxbsya.tfm - RELOC/fonts/tfm/public/pxfonts/pxbsyb.tfm - RELOC/fonts/tfm/public/pxfonts/pxbsyc.tfm - RELOC/fonts/tfm/public/pxfonts/pxex.tfm - RELOC/fonts/tfm/public/pxfonts/pxexa.tfm - RELOC/fonts/tfm/public/pxfonts/pxi.tfm - RELOC/fonts/tfm/public/pxfonts/pxmi.tfm - RELOC/fonts/tfm/public/pxfonts/pxmi1.tfm - RELOC/fonts/tfm/public/pxfonts/pxmia.tfm - RELOC/fonts/tfm/public/pxfonts/pxr.tfm - RELOC/fonts/tfm/public/pxfonts/pxsc.tfm - RELOC/fonts/tfm/public/pxfonts/pxsl.tfm - RELOC/fonts/tfm/public/pxfonts/pxsy.tfm - RELOC/fonts/tfm/public/pxfonts/pxsya.tfm - RELOC/fonts/tfm/public/pxfonts/pxsyb.tfm - RELOC/fonts/tfm/public/pxfonts/pxsyc.tfm - RELOC/fonts/tfm/public/pxfonts/rpcxb.tfm - RELOC/fonts/tfm/public/pxfonts/rpcxbi.tfm - RELOC/fonts/tfm/public/pxfonts/rpcxbsl.tfm - RELOC/fonts/tfm/public/pxfonts/rpcxi.tfm - RELOC/fonts/tfm/public/pxfonts/rpcxr.tfm - RELOC/fonts/tfm/public/pxfonts/rpcxsl.tfm - RELOC/fonts/tfm/public/pxfonts/rpxb.tfm - RELOC/fonts/tfm/public/pxfonts/rpxbi.tfm - RELOC/fonts/tfm/public/pxfonts/rpxbmi.tfm - RELOC/fonts/tfm/public/pxfonts/rpxbsc.tfm - RELOC/fonts/tfm/public/pxfonts/rpxbsl.tfm - RELOC/fonts/tfm/public/pxfonts/rpxi.tfm - RELOC/fonts/tfm/public/pxfonts/rpxmi.tfm - RELOC/fonts/tfm/public/pxfonts/rpxpplb.tfm - RELOC/fonts/tfm/public/pxfonts/rpxpplbi.tfm - RELOC/fonts/tfm/public/pxfonts/rpxpplbo.tfm - RELOC/fonts/tfm/public/pxfonts/rpxpplr.tfm - RELOC/fonts/tfm/public/pxfonts/rpxpplri.tfm - RELOC/fonts/tfm/public/pxfonts/rpxpplro.tfm - RELOC/fonts/tfm/public/pxfonts/rpxr.tfm - RELOC/fonts/tfm/public/pxfonts/rpxsc.tfm - RELOC/fonts/tfm/public/pxfonts/rpxsl.tfm - RELOC/fonts/type1/public/pxfonts/pxbex.pfb - RELOC/fonts/type1/public/pxfonts/pxbexa.pfb - RELOC/fonts/type1/public/pxfonts/pxbmia.pfb - RELOC/fonts/type1/public/pxfonts/pxbsy.pfb - RELOC/fonts/type1/public/pxfonts/pxbsya.pfb - RELOC/fonts/type1/public/pxfonts/pxbsyb.pfb - RELOC/fonts/type1/public/pxfonts/pxbsyc.pfb - RELOC/fonts/type1/public/pxfonts/pxex.pfb - RELOC/fonts/type1/public/pxfonts/pxexa.pfb - RELOC/fonts/type1/public/pxfonts/pxmia.pfb - RELOC/fonts/type1/public/pxfonts/pxsy.pfb - RELOC/fonts/type1/public/pxfonts/pxsya.pfb - RELOC/fonts/type1/public/pxfonts/pxsyb.pfb - RELOC/fonts/type1/public/pxfonts/pxsyc.pfb - RELOC/fonts/type1/public/pxfonts/rpcxb.pfb - RELOC/fonts/type1/public/pxfonts/rpcxbi.pfb - RELOC/fonts/type1/public/pxfonts/rpcxi.pfb - RELOC/fonts/type1/public/pxfonts/rpcxr.pfb - RELOC/fonts/type1/public/pxfonts/rpxb.pfb - RELOC/fonts/type1/public/pxfonts/rpxbi.pfb - RELOC/fonts/type1/public/pxfonts/rpxbmi.pfb - RELOC/fonts/type1/public/pxfonts/rpxbsc.pfb - RELOC/fonts/type1/public/pxfonts/rpxi.pfb - RELOC/fonts/type1/public/pxfonts/rpxmi.pfb - RELOC/fonts/type1/public/pxfonts/rpxr.pfb - RELOC/fonts/type1/public/pxfonts/rpxsc.pfb - RELOC/fonts/vf/public/pxfonts/p1xb.vf - RELOC/fonts/vf/public/pxfonts/p1xbi.vf - RELOC/fonts/vf/public/pxfonts/p1xbsc.vf - RELOC/fonts/vf/public/pxfonts/p1xbsl.vf - RELOC/fonts/vf/public/pxfonts/p1xi.vf - RELOC/fonts/vf/public/pxfonts/p1xr.vf - RELOC/fonts/vf/public/pxfonts/p1xsc.vf - RELOC/fonts/vf/public/pxfonts/p1xsl.vf - RELOC/fonts/vf/public/pxfonts/pcxb.vf - RELOC/fonts/vf/public/pxfonts/pcxbi.vf - RELOC/fonts/vf/public/pxfonts/pcxbsl.vf - RELOC/fonts/vf/public/pxfonts/pcxi.vf - RELOC/fonts/vf/public/pxfonts/pcxr.vf - RELOC/fonts/vf/public/pxfonts/pcxsl.vf - RELOC/fonts/vf/public/pxfonts/pxb.vf - RELOC/fonts/vf/public/pxfonts/pxbi.vf - RELOC/fonts/vf/public/pxfonts/pxbmi.vf - RELOC/fonts/vf/public/pxfonts/pxbmi1.vf - RELOC/fonts/vf/public/pxfonts/pxbsc.vf - RELOC/fonts/vf/public/pxfonts/pxbsl.vf - RELOC/fonts/vf/public/pxfonts/pxi.vf - RELOC/fonts/vf/public/pxfonts/pxmi.vf - RELOC/fonts/vf/public/pxfonts/pxmi1.vf - RELOC/fonts/vf/public/pxfonts/pxr.vf - RELOC/fonts/vf/public/pxfonts/pxsc.vf - RELOC/fonts/vf/public/pxfonts/pxsl.vf - RELOC/tex/latex/pxfonts/omlpxmi.fd - RELOC/tex/latex/pxfonts/omlpxr.fd - RELOC/tex/latex/pxfonts/omspxr.fd - RELOC/tex/latex/pxfonts/omspxsy.fd - RELOC/tex/latex/pxfonts/omxpxex.fd - RELOC/tex/latex/pxfonts/ot1pxr.fd - RELOC/tex/latex/pxfonts/ot1pxss.fd - RELOC/tex/latex/pxfonts/ot1pxtt.fd - RELOC/tex/latex/pxfonts/pxfonts.sty - RELOC/tex/latex/pxfonts/t1pxr.fd - RELOC/tex/latex/pxfonts/t1pxss.fd - RELOC/tex/latex/pxfonts/t1pxtt.fd - RELOC/tex/latex/pxfonts/ts1pxr.fd - RELOC/tex/latex/pxfonts/ts1pxss.fd - RELOC/tex/latex/pxfonts/ts1pxtt.fd - RELOC/tex/latex/pxfonts/upxexa.fd - RELOC/tex/latex/pxfonts/upxmia.fd - RELOC/tex/latex/pxfonts/upxr.fd - RELOC/tex/latex/pxfonts/upxss.fd - RELOC/tex/latex/pxfonts/upxsya.fd - RELOC/tex/latex/pxfonts/upxsyb.fd - RELOC/tex/latex/pxfonts/upxsyc.fd - RELOC/tex/latex/pxfonts/upxtt.fd -docfiles size=152 - RELOC/doc/fonts/pxfonts/00bug_fix.txt - RELOC/doc/fonts/pxfonts/COPYRIGHT - RELOC/doc/fonts/pxfonts/pxfontsdoc.pdf - RELOC/doc/fonts/pxfonts/pxfontsdoc.tex - RELOC/doc/fonts/pxfonts/pxfontsdocA4.pdf - RELOC/doc/fonts/pxfonts/pxfontsdocA4.tex -catalogue-ctan /fonts/pxfonts -catalogue-date 2014-05-24 12:23:46 +0200 -catalogue-license gpl - -name pxgreeks -category Package -revision 21838 -shortdesc Shape selection for PX fonts Greek letters. -relocated 1 -longdesc The package allows LaTeX maths users of the PX fonts to select -longdesc the shapes (italic or upright) for the Greek lowercase and -longdesc uppercase letters. Once the shapes for lowercase and uppercase -longdesc have been selected via a package option, the \other prefix -longdesc (e.g., \otheralpha) allows using the alternate glyph (as in the -longdesc fourier package). The pxgreeks package does not constrain the -longdesc text font that may be used in the document. -runfiles size=2 - RELOC/tex/latex/pxgreeks/pxgreeks.sty -docfiles size=18 - RELOC/doc/latex/pxgreeks/README - RELOC/doc/latex/pxgreeks/pxgreeks.pdf -srcfiles size=4 - RELOC/source/latex/pxgreeks/pxgreeks.dtx - RELOC/source/latex/pxgreeks/pxgreeks.ins -catalogue-ctan /macros/latex/contrib/pxgreeks -catalogue-date 2014-05-24 12:23:46 +0200 -catalogue-license lppl1.3 -catalogue-version 1.0 - -name pxjahyper -category Package -revision 28503 -shortdesc Hyperref support for pLaTeX. -relocated 1 -runfiles size=5 - RELOC/tex/platex/pxjahyper/pxjahyper.sty -docfiles size=12 - RELOC/doc/platex/pxjahyper/LICENSE - RELOC/doc/platex/pxjahyper/README - RELOC/doc/platex/pxjahyper/pxjahyper.pdf - RELOC/doc/platex/pxjahyper/pxjahyper.tex -catalogue-ctan /language/japanese/pxjahyper -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license other-free -catalogue-version 0.3 - -name pxpgfmark -category Package -revision 30212 -shortdesc e-pTeX driver for PGF inter-picture connections. -relocated 1 -longdesc The distributed drivers do not support the PGF feature of -longdesc "inter-picture connections" under e-pTeX and dvipdfmx. The -longdesc package uses existing features of dvipdfmx to fix this problem -runfiles size=1 - RELOC/tex/latex/pxpgfmark/pxpgfmark.sty -docfiles size=2 - RELOC/doc/latex/pxpgfmark/LICENSE - RELOC/doc/latex/pxpgfmark/README -catalogue-ctan /graphics/pgf/contrib/pxpgfmark -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license other-free -catalogue-version 0.2 - -name pxrubrica -category Package -revision 35891 -relocated 1 -runfiles size=12 - RELOC/tex/platex/pxrubrica/pxrubrica.sty -docfiles size=109 - RELOC/doc/platex/pxrubrica/LICENSE - RELOC/doc/platex/pxrubrica/README - RELOC/doc/platex/pxrubrica/README-ja - RELOC/doc/platex/pxrubrica/pxrubrica-en.pdf - RELOC/doc/platex/pxrubrica/pxrubrica-en.tex - RELOC/doc/platex/pxrubrica/pxrubrica.pdf - RELOC/doc/platex/pxrubrica/sample/test-jlreq.pdf - RELOC/doc/platex/pxrubrica/sample/test-jlreq.tex - RELOC/doc/platex/pxrubrica/sample/test-sf.pdf - RELOC/doc/platex/pxrubrica/sample/test-sf.tex - RELOC/doc/platex/pxrubrica/sample/test-toc.pdf - RELOC/doc/platex/pxrubrica/sample/test-toc.tex -srcfiles size=30 - RELOC/source/platex/pxrubrica/pxrubrica.dtx - RELOC/source/platex/pxrubrica/pxrubrica.ins - -name pxtxalfa -category Package -revision 23682 -shortdesc Virtual maths alphabets based on pxfonts and txfonts. -relocated 1 -longdesc The package provides virtual math alphabets based on pxfonts -longdesc and txfonts, with LaTeX support files and adjusted metrics. The -longdesc mathalfa package offers support for this collection. -execute addMap pxtx.map -runfiles size=28 - RELOC/fonts/map/dvips/pxtxalfa/pxtx.map - RELOC/fonts/tfm/public/pxtxalfa/pxb-ds.tfm - RELOC/fonts/tfm/public/pxtxalfa/pxr-ds.tfm - RELOC/fonts/tfm/public/pxtxalfa/rtxmia.tfm - RELOC/fonts/tfm/public/pxtxalfa/txb-cal.tfm - RELOC/fonts/tfm/public/pxtxalfa/txb-frak.tfm - RELOC/fonts/tfm/public/pxtxalfa/txb-of.tfm - RELOC/fonts/tfm/public/pxtxalfa/txr-cal.tfm - RELOC/fonts/tfm/public/pxtxalfa/txr-ds.tfm - RELOC/fonts/tfm/public/pxtxalfa/txr-frak.tfm - RELOC/fonts/tfm/public/pxtxalfa/txr-of.tfm - RELOC/fonts/vf/public/pxtxalfa/pxb-ds.vf - RELOC/fonts/vf/public/pxtxalfa/pxr-ds.vf - RELOC/fonts/vf/public/pxtxalfa/txb-cal.vf - RELOC/fonts/vf/public/pxtxalfa/txb-frak.vf - RELOC/fonts/vf/public/pxtxalfa/txb-of.vf - RELOC/fonts/vf/public/pxtxalfa/txr-cal.vf - RELOC/fonts/vf/public/pxtxalfa/txr-ds.vf - RELOC/fonts/vf/public/pxtxalfa/txr-frak.vf - RELOC/fonts/vf/public/pxtxalfa/txr-of.vf - RELOC/tex/latex/pxtxalfa/px-ds.sty - RELOC/tex/latex/pxtxalfa/pxtx-cal.sty - RELOC/tex/latex/pxtxalfa/pxtx-frak.sty - RELOC/tex/latex/pxtxalfa/tx-of.sty - RELOC/tex/latex/pxtxalfa/upx-ds.fd - RELOC/tex/latex/pxtxalfa/utx-cal.fd - RELOC/tex/latex/pxtxalfa/utx-frak.fd - RELOC/tex/latex/pxtxalfa/utx-of.fd -docfiles size=13 - RELOC/doc/fonts/pxtxalfa/README - RELOC/doc/fonts/pxtxalfa/pxtxalfa.pdf - RELOC/doc/fonts/pxtxalfa/pxtxalfa.tex -catalogue-ctan /fonts/pxtxalfa -catalogue-date 2014-05-24 14:29:45 +0200 -catalogue-license lppl -catalogue-version 1 - -name pygmentex -category Package -revision 34996 -shortdesc Use Pygments to format code listings in documents. -longdesc PygmenTeX is a Python-based LaTeX package that can be used for -longdesc typesetting code listings in a LaTeX document using Pygments. -longdesc Pygments is a generic syntax highlighter for general use in all -longdesc kinds of software such as forum systems, wikis or other -longdesc applications that need to prettify source code. -depend pygmentex.ARCH -runfiles size=8 - texmf-dist/scripts/pygmentex/pygmentex.py - texmf-dist/tex/latex/pygmentex/pygmentex.sty -docfiles size=175 - texmf-dist/doc/latex/pygmentex/Factorial.java - texmf-dist/doc/latex/pygmentex/README - texmf-dist/doc/latex/pygmentex/blueshade.png - texmf-dist/doc/latex/pygmentex/demo.c - texmf-dist/doc/latex/pygmentex/demo.delphi - texmf-dist/doc/latex/pygmentex/demo.hs - texmf-dist/doc/latex/pygmentex/demo.java - texmf-dist/doc/latex/pygmentex/demo.pas - texmf-dist/doc/latex/pygmentex/demo.pdf - texmf-dist/doc/latex/pygmentex/demo.py - texmf-dist/doc/latex/pygmentex/demo.tex -catalogue-ctan /macros/latex/contrib/pygmentex -catalogue-date 2015-03-30 22:55:45 +0200 -catalogue-license lppl1.3 -catalogue-version 0.8 - -name pygmentex.i386-linux -category Package -revision 34996 -shortdesc i386-linux files of pygmentex -binfiles arch=i386-linux size=1 - bin/i386-linux/pygmentex - -name pythontex -category Package -revision 34673 -shortdesc Run Python from within a document, typesetting the results. -longdesc The package allows you to enter Python code within a LaTeX -longdesc document, execute the code, and access its output in the -longdesc original document. Python code is only executed when it has -longdesc been modified, or when it meets user-specified criteria. Code -longdesc may be divided into user-defined sessions, which automatically -longdesc run in parallel. Errors and warnings are synchronized with the -longdesc LaTeX document, so that they refer to the document's line -longdesc numbers. External dependencies can be tracked, so that code is -longdesc re-executed when the data it depends on is modified. PythonTeX -longdesc also provides syntax highlighting for code in LaTeX documents -longdesc via the Pygments syntax highlighter. The package provides a -longdesc depythontex utility, that creates a copy of the document in -longdesc which all Python code has been replaced by its output. This is -longdesc useful for journal submissions, sharing documents, and -longdesc conversion to other formats. -depend pythontex.ARCH -runfiles size=144 - texmf-dist/scripts/pythontex/depythontex.py - texmf-dist/scripts/pythontex/depythontex2.py - texmf-dist/scripts/pythontex/depythontex3.py - texmf-dist/scripts/pythontex/pythontex.py - texmf-dist/scripts/pythontex/pythontex2.py - texmf-dist/scripts/pythontex/pythontex3.py - texmf-dist/scripts/pythontex/pythontex_2to3.py - texmf-dist/scripts/pythontex/pythontex_engines.py - texmf-dist/scripts/pythontex/pythontex_install.py - texmf-dist/scripts/pythontex/pythontex_utils.py - texmf-dist/tex/latex/pythontex/pythontex.sty -docfiles size=391 - texmf-dist/doc/latex/pythontex/NEWS - texmf-dist/doc/latex/pythontex/README - texmf-dist/doc/latex/pythontex/pythontex.pdf - texmf-dist/doc/latex/pythontex/pythontex_gallery.pdf - texmf-dist/doc/latex/pythontex/pythontex_gallery.tex - texmf-dist/doc/latex/pythontex/pythontex_quickstart.pdf - texmf-dist/doc/latex/pythontex/pythontex_quickstart.tex - texmf-dist/doc/latex/pythontex/syncpdb.py -srcfiles size=92 - texmf-dist/source/latex/pythontex/depythontex.bat - texmf-dist/source/latex/pythontex/pythontex.bat - texmf-dist/source/latex/pythontex/pythontex.dtx - texmf-dist/source/latex/pythontex/pythontex.ins - texmf-dist/source/latex/pythontex/pythontex_install.bat -catalogue-ctan /macros/latex/contrib/pythontex -catalogue-date 2014-07-14 19:43:19 +0200 -catalogue-license lppl1.3 -catalogue-version 0.13 - -name pythontex.i386-linux -category Package -revision 31638 -shortdesc i386-linux files of pythontex -binfiles arch=i386-linux size=2 - bin/i386-linux/depythontex - bin/i386-linux/pythontex - -name python -category Package -revision 27064 -shortdesc Embed Python code in LaTeX. -relocated 1 -longdesc The package enables you to embed Python code in LaTeX, and -longdesc insert the script's output in the document. -runfiles size=1 - RELOC/tex/latex/python/python.sty -docfiles size=1 - RELOC/doc/latex/python/README -catalogue-ctan /macros/latex/contrib/python -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license gpl -catalogue-version 0.21 - -name qcircuit -category Package -revision 34712 -shortdesc Macros to generate quantum ciruits -relocated 1 -longdesc The package supports those within the quantum information -longdesc community who typeset quantum circuits, using xy-pic package, -longdesc offering macros designed to help users generate circuits. -runfiles size=3 - RELOC/tex/latex/qcircuit/qcircuit.sty -docfiles size=73 - RELOC/doc/latex/qcircuit/Qtutorial.pdf - RELOC/doc/latex/qcircuit/Qtutorial.tex - RELOC/doc/latex/qcircuit/README -catalogue-ctan /graphics/qcircuit -catalogue-date 2014-08-02 20:10:01 +0200 -catalogue-license gpl2 -catalogue-version 2.0 - -name qcm -category Package -revision 15878 -shortdesc A LaTeX2e class for making multiple choice questionnaires -relocated 1 -longdesc QCM is a package for making multiple choices questionnaires -longdesc under LaTeX2e ("QCM" is the French acronym for this style of -longdesc test). A special environment allows you to define questions and -longdesc possible answers. You can specify which answers are correct and -longdesc which are not. QCM not only formats the questions for you, but -longdesc also generates a 'form' (a grid that your students will have to -longdesc fill in), and a 'mask' (the same grid, only with correct -longdesc answers properly checked in). You can then print the mask on a -longdesc slide and correct the questionnaires more easily by -longdesc superimposing the mask on top of students' forms. QCM can also -longdesc typeset exam corrections automatically, and comes with support -longdesc for AUC-TeX. -runfiles size=4 - RELOC/tex/latex/qcm/qcm.cls - RELOC/tex/latex/qcm/qcm.sty -docfiles size=33 - RELOC/doc/latex/qcm/NEWS - RELOC/doc/latex/qcm/README - RELOC/doc/latex/qcm/qcm.el - RELOC/doc/latex/qcm/qcm.pdf -srcfiles size=9 - RELOC/source/latex/qcm/qcm.dtx - RELOC/source/latex/qcm/qcm.ins -catalogue-ctan /macros/latex/contrib/qcm -catalogue-date 2012-05-07 17:18:59 +0200 -catalogue-license lppl -catalogue-version 2.1 - -name qobitree -category Package -revision 15878 -shortdesc LaTeX macros for typesetting trees. -relocated 1 -longdesc Provides commands \branch and \leaf for specifying the elements -longdesc of the tree; you build up your tree with those commands, and -longdesc then issue the \tree command to typeset the whole. -runfiles size=6 - RELOC/tex/latex/qobitree/qobitree.tex -docfiles size=4 - RELOC/doc/latex/qobitree/README - RELOC/doc/latex/qobitree/example.tex -catalogue-ctan /macros/latex/contrib/qobitree -catalogue-date 2012-01-20 11:26:32 +0100 -catalogue-license lppl - -name qpxqtx -category Package -revision 15878 -relocated 1 -runfiles size=30 - RELOC/fonts/tfm/public/qpxqtx/qpxbmi.tfm - RELOC/fonts/tfm/public/qpxqtx/qpxbmia.tfm - RELOC/fonts/tfm/public/qpxqtx/qpxmi.tfm - RELOC/fonts/tfm/public/qpxqtx/qpxmia.tfm - RELOC/fonts/tfm/public/qpxqtx/qtxbmi.tfm - RELOC/fonts/tfm/public/qpxqtx/qtxbmia.tfm - RELOC/fonts/tfm/public/qpxqtx/qtxmi.tfm - RELOC/fonts/tfm/public/qpxqtx/qtxmia.tfm - RELOC/fonts/vf/public/qpxqtx/qpxbmi.vf - RELOC/fonts/vf/public/qpxqtx/qpxbmia.vf - RELOC/fonts/vf/public/qpxqtx/qpxmi.vf - RELOC/fonts/vf/public/qpxqtx/qpxmia.vf - RELOC/fonts/vf/public/qpxqtx/qtxbmi.vf - RELOC/fonts/vf/public/qpxqtx/qtxbmia.vf - RELOC/fonts/vf/public/qpxqtx/qtxmi.vf - RELOC/fonts/vf/public/qpxqtx/qtxmia.vf - RELOC/tex/generic/qpxqtx/amspbold.tex - RELOC/tex/generic/qpxqtx/amsqpx.def - RELOC/tex/generic/qpxqtx/amsqpx.tex - RELOC/tex/generic/qpxqtx/amsqtx.def - RELOC/tex/generic/qpxqtx/amsqtx.tex - RELOC/tex/generic/qpxqtx/amstbold.tex - RELOC/tex/generic/qpxqtx/qpxmath.sty - RELOC/tex/generic/qpxqtx/qpxmath.tex - RELOC/tex/generic/qpxqtx/qtxmath.sty - RELOC/tex/generic/qpxqtx/qtxmath.tex -docfiles size=16 - RELOC/doc/fonts/qpxqtx/00README - RELOC/doc/fonts/qpxqtx/p01tst.tex - RELOC/doc/fonts/qpxqtx/p02tst.tex - RELOC/doc/fonts/qpxqtx/qpxsymb.tex - RELOC/doc/fonts/qpxqtx/qpxtest.tex - RELOC/doc/fonts/qpxqtx/qtxsymb.tex - RELOC/doc/fonts/qpxqtx/qtxtest.tex - RELOC/doc/fonts/qpxqtx/t01tst.tex - RELOC/doc/fonts/qpxqtx/t02tst.tex - -name qrcode -category Package -revision 36065 -shortdesc Generate QR codes in LaTeX. -relocated 1 -longdesc The package generates QR (Quick Response) codes in LaTeX, -longdesc without the need for PSTricks or any other graphical package. -runfiles size=24 - RELOC/tex/latex/qrcode/qrcode.sty -docfiles size=66 - RELOC/doc/latex/qrcode/README - RELOC/doc/latex/qrcode/qrcode.pdf -srcfiles size=30 - RELOC/source/latex/qrcode/qrcode.dtx - RELOC/source/latex/qrcode/qrcode.ins -catalogue-ctan /macros/latex/contrib/qrcode -catalogue-date 2015-01-14 22:21:51 +0100 -catalogue-license lppl1.3 -catalogue-version 1.51 - -name qstest -category Package -revision 15878 -shortdesc Bundle for unit tests and pattern matching. -relocated 1 -longdesc This is the public release of the qstest bundle (written for -longdesc DocScape Publisher) (C) 2006, 2007 QuinScape GmbH. The bundle -longdesc contains the packages 'makematch' for matching patterns to -longdesc targets (with a generalization in the form of pattern lists and -longdesc keyword lists), and 'qstest' for performing unit tests, -longdesc allowing the user to run a number of logged tests ensuring the -longdesc consistency of values, properties and call sequences during -longdesc execution of test code. Both packages make extensive use of in -longdesc their package documentation, providing illustrated examples -longdesc that are automatically verified to work as expected. Check the -longdesc README file for details. -runfiles size=5 - RELOC/tex/latex/qstest/makematch.sty - RELOC/tex/latex/qstest/qstest.sty -docfiles size=68 - RELOC/doc/latex/qstest/README - RELOC/doc/latex/qstest/makematch-qs.tex - RELOC/doc/latex/qstest/makematch.pdf - RELOC/doc/latex/qstest/qstest-qs.tex - RELOC/doc/latex/qstest/qstest.pdf -srcfiles size=27 - RELOC/source/latex/qstest/Makefile - RELOC/source/latex/qstest/makematch.drv - RELOC/source/latex/qstest/makematch.dtx - RELOC/source/latex/qstest/qstest.drv - RELOC/source/latex/qstest/qstest.dtx - RELOC/source/latex/qstest/qstest.ins -catalogue-ctan /macros/latex/contrib/qstest -catalogue-date 2012-05-07 17:18:59 +0200 -catalogue-license lppl - -name qsymbols -category Package -revision 15878 -shortdesc Maths symbol abbreviations. -relocated 1 -longdesc Provides macros for defining systematic mnemonic abbreviations, -longdesc starting with ` for math symbols and \" for arrows, using -longdesc standard symbols as well as those from the amsfonts bundle and -longdesc the stmaryrd package. -runfiles size=7 - RELOC/tex/latex/qsymbols/qsymbols.sty -docfiles size=50 - RELOC/doc/latex/qsymbols/CATALOG - RELOC/doc/latex/qsymbols/COPYING - RELOC/doc/latex/qsymbols/MANIFEST - RELOC/doc/latex/qsymbols/README - RELOC/doc/latex/qsymbols/qsymbols.pdf - RELOC/doc/latex/qsymbols/qsymbols.tex -srcfiles size=1 - RELOC/source/latex/qsymbols/Makefile -catalogue-ctan /macros/latex/contrib/qsymbols -catalogue-date 2012-05-07 17:18:59 +0200 -catalogue-license gpl - -name qtree -category Package -revision 15878 -shortdesc Draw tree structures. -relocated 1 -longdesc The package offers support for drawing tree diagrams, and is -longdesc especially suitable for linguistics use. It allows trees to be -longdesc specified in a simple bracket notation, automatically -longdesc calculates branch sizes, and supports both DVI/PostScript and -longdesc PDF output by use of pict2e facilities. The package is a -longdesc development of the existing qobitree package, offering a new -longdesc front end. -runfiles size=10 - RELOC/tex/latex/qtree/qtree.sty -docfiles size=75 - RELOC/doc/latex/qtree/README - RELOC/doc/latex/qtree/qarrows.pdf - RELOC/doc/latex/qtree/qarrows.tex - RELOC/doc/latex/qtree/qtreenotes.pdf - RELOC/doc/latex/qtree/qtreenotes.tex -catalogue-ctan /macros/latex/contrib/qtree -catalogue-date 2012-06-01 16:25:13 +0200 -catalogue-license lppl -catalogue-version 3.1b - -name quattrocento -category Package -revision 31763 -shortdesc LaTeX support for Quattrocento and Quattrocento Sans fonts. -relocated 1 -longdesc The package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX -longdesc support for the Quattrocento and Quattrocento Sans families of -longdesc fonts, designed by Pablo Impallari; the fonts themselves are -longdesc also provided, in both Type 1 and OpenType format. Quattrocento -longdesc is a classic typeface with wide and open letterforms, and great -longdesc x-height, which makes it very legible for body text at small -longdesc sizes. Tiny details that only show up at bigger sizes make it -longdesc also great for display use. Quattrocento Sans is the perfect -longdesc sans-serif companion for Quattrocento. -execute addMap quattrocento.map -runfiles size=1004 - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_464xel.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_4btof3.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_6abmaa.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_arxkdo.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_aykkbr.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_cpzb4n.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_dhs3d3.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_dn5k7b.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_dw2g3h.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_e45lg2.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_h2bn35.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_iyhp72.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_mamppr.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_n36lnh.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_nfidqf.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_ptp2lu.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_qceur4.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_tevtmb.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_tixcdz.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_vzn2dc.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_wpi2yi.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_xt7yz2.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_xvywtm.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_zdiabs.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_zievlx.enc - RELOC/fonts/enc/dvips/quattrocento/qtrcnt_zq54sp.enc - RELOC/fonts/map/dvips/quattrocento/quattrocento.map - RELOC/fonts/opentype/impallari/quattrocento/Quattrocento-Bold.otf - RELOC/fonts/opentype/impallari/quattrocento/Quattrocento-BoldItalic.otf - RELOC/fonts/opentype/impallari/quattrocento/Quattrocento-Italic.otf - RELOC/fonts/opentype/impallari/quattrocento/Quattrocento.otf - RELOC/fonts/opentype/impallari/quattrocento/QuattrocentoSans-Bold.otf - RELOC/fonts/opentype/impallari/quattrocento/QuattrocentoSans-BoldItalic.otf - RELOC/fonts/opentype/impallari/quattrocento/QuattrocentoSans-Italic.otf - RELOC/fonts/opentype/impallari/quattrocento/QuattrocentoSans.otf - RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Bold-sup-ly1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Bold-sup-ly1.tfm - RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Bold-sup-ot1.tfm - RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Bold-sup-t1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Bold-sup-t1.tfm - RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Bold-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Bold-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Bold-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Bold-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Bold-tlf-t1.tfm - RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Bold-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Bold-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-BoldItalic-sup-ly1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-BoldItalic-sup-ly1.tfm - RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-BoldItalic-sup-ot1.tfm - RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-BoldItalic-sup-t1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-BoldItalic-sup-t1.tfm - RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-BoldItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-BoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-BoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-BoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-BoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-BoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-BoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoItalic-sup-ly1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoItalic-sup-ly1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoItalic-sup-ot1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoItalic-sup-t1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoItalic-sup-t1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoItalic-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoItalic-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoItalic-tlf-t1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoItalic-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoRegular-sup-ly1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoRegular-sup-ly1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoRegular-sup-ot1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoRegular-sup-t1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoRegular-sup-t1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoRegular-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoRegular-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoRegular-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoRegular-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoRegular-tlf-t1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoRegular-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoRegular-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-sup-ly1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-sup-ly1--lcdfj.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-sup-ly1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-sup-ot1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-sup-ot1--lcdfj.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-sup-ot1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-sup-t1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-sup-t1--lcdfj.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-sup-t1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-tlf-ly1--lcdfj.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-tlf-ot1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-tlf-ot1--lcdfj.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-tlf-t1--lcdfj.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-tlf-t1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-sup-ly1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-sup-ly1--lcdfj.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-sup-ly1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-sup-ot1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-sup-ot1--lcdfj.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-sup-ot1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-sup-t1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-sup-t1--lcdfj.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-sup-t1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-ly1--lcdfj.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-ot1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-ot1--lcdfj.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-t1--lcdfj.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-sup-ly1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-sup-ly1--lcdfj.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-sup-ly1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-sup-ot1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-sup-ot1--lcdfj.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-sup-ot1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-sup-t1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-sup-t1--lcdfj.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-sup-t1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-tlf-ly1--lcdfj.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-tlf-ot1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-tlf-ot1--lcdfj.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-tlf-t1--lcdfj.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-tlf-t1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-sup-ly1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-sup-ly1--lcdfj.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-sup-ly1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-sup-ot1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-sup-ot1--lcdfj.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-sup-ot1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-sup-t1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-sup-t1--lcdfj.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-sup-t1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-tlf-ly1--lcdfj.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-tlf-ot1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-tlf-ot1--lcdfj.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-tlf-t1--lcdfj.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-tlf-t1.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-tlf-ts1.tfm - RELOC/fonts/type1/impallari/quattrocento/Quattrocento-Bold.pfb - RELOC/fonts/type1/impallari/quattrocento/Quattrocento-BoldItalic.pfb - RELOC/fonts/type1/impallari/quattrocento/QuattrocentoItalic.pfb - RELOC/fonts/type1/impallari/quattrocento/QuattrocentoRegular.pfb - RELOC/fonts/type1/impallari/quattrocento/QuattrocentoSans-Bold.pfb - RELOC/fonts/type1/impallari/quattrocento/QuattrocentoSans-BoldItalic.pfb - RELOC/fonts/type1/impallari/quattrocento/QuattrocentoSans-BoldItalicLCDFJ.pfb - RELOC/fonts/type1/impallari/quattrocento/QuattrocentoSans-BoldLCDFJ.pfb - RELOC/fonts/type1/impallari/quattrocento/QuattrocentoSans-Italic.pfb - RELOC/fonts/type1/impallari/quattrocento/QuattrocentoSans-ItalicLCDFJ.pfb - RELOC/fonts/type1/impallari/quattrocento/QuattrocentoSans.pfb - RELOC/fonts/type1/impallari/quattrocento/QuattrocentoSansLCDFJ.pfb - RELOC/fonts/vf/impallari/quattrocento/Quattrocento-Bold-sup-ly1.vf - RELOC/fonts/vf/impallari/quattrocento/Quattrocento-Bold-sup-t1.vf - RELOC/fonts/vf/impallari/quattrocento/Quattrocento-Bold-tlf-ly1.vf - RELOC/fonts/vf/impallari/quattrocento/Quattrocento-Bold-tlf-t1.vf - RELOC/fonts/vf/impallari/quattrocento/Quattrocento-Bold-tlf-ts1.vf - RELOC/fonts/vf/impallari/quattrocento/Quattrocento-BoldItalic-sup-ly1.vf - RELOC/fonts/vf/impallari/quattrocento/Quattrocento-BoldItalic-sup-t1.vf - RELOC/fonts/vf/impallari/quattrocento/Quattrocento-BoldItalic-tlf-ly1.vf - RELOC/fonts/vf/impallari/quattrocento/Quattrocento-BoldItalic-tlf-t1.vf - RELOC/fonts/vf/impallari/quattrocento/Quattrocento-BoldItalic-tlf-ts1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoItalic-sup-ly1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoItalic-sup-t1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoItalic-tlf-ly1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoItalic-tlf-t1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoItalic-tlf-ts1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoRegular-sup-ly1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoRegular-sup-t1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoRegular-tlf-ly1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoRegular-tlf-t1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoRegular-tlf-ts1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Bold-sup-ly1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Bold-sup-ot1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Bold-sup-t1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Bold-tlf-ly1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Bold-tlf-ot1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Bold-tlf-t1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Bold-tlf-ts1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-BoldItalic-sup-ly1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-BoldItalic-sup-ot1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-BoldItalic-sup-t1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-ly1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-ot1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-t1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-ts1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Italic-sup-ly1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Italic-sup-ot1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Italic-sup-t1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Italic-tlf-ly1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Italic-tlf-ot1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Italic-tlf-t1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Italic-tlf-ts1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-sup-ly1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-sup-ot1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-sup-t1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-tlf-ly1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-tlf-ot1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-tlf-t1.vf - RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-tlf-ts1.vf - RELOC/tex/latex/quattrocento/LY1Quattrocento-TLF.fd - RELOC/tex/latex/quattrocento/LY1QuattrocentoSans-TLF.fd - RELOC/tex/latex/quattrocento/OT1Quattrocento-TLF.fd - RELOC/tex/latex/quattrocento/OT1QuattrocentoSans-TLF.fd - RELOC/tex/latex/quattrocento/T1Quattrocento-TLF.fd - RELOC/tex/latex/quattrocento/T1QuattrocentoSans-TLF.fd - RELOC/tex/latex/quattrocento/TS1Quattrocento-TLF.fd - RELOC/tex/latex/quattrocento/TS1QuattrocentoSans-TLF.fd - RELOC/tex/latex/quattrocento/quattrocento.sty -docfiles size=71 - RELOC/doc/fonts/quattrocento/OFL.txt - RELOC/doc/fonts/quattrocento/README - RELOC/doc/fonts/quattrocento/samples.pdf - RELOC/doc/fonts/quattrocento/samples.tex -catalogue-ctan /fonts/quattrocento -catalogue-date 2015-01-20 21:04:18 +0100 -catalogue-license lppl - -name quotchap -category Package -revision 28046 -shortdesc Decorative chapter headings. -relocated 1 -longdesc A package for creating decorative chapter headings with -longdesc quotations. Uses graphical and coloured output and by default -longdesc needs the "Adobe standard font set" (as supported by psnfss). -runfiles size=2 - RELOC/tex/latex/quotchap/quotchap.sty -docfiles size=75 - RELOC/doc/latex/quotchap/README - RELOC/doc/latex/quotchap/document.pdf - RELOC/doc/latex/quotchap/document.tex - RELOC/doc/latex/quotchap/quotchap.pdf -srcfiles size=6 - RELOC/source/latex/quotchap/quotchap.dtx - RELOC/source/latex/quotchap/quotchap.ins -catalogue-ctan /macros/latex/contrib/quotchap -catalogue-date 2012-10-20 22:28:24 +0200 -catalogue-license gpl -catalogue-version 1.1 - -name quoting -category Package -revision 32818 -shortdesc Consolidated environment for displayed text. -relocated 1 -longdesc As an alternative to the LaTeX standard environments quotation -longdesc and quote, the package provides a consolidated environment for -longdesc displayed text. First-line indentation may be activated by -longdesc adding a blank line before the quoting environment. A key-value -longdesc interface (using kvoptions) allows the user to configure font -longdesc properties and spacing and to control orphans within and after -longdesc the environment. -runfiles size=1 - RELOC/tex/latex/quoting/quoting.sty -docfiles size=76 - RELOC/doc/latex/quoting/README - RELOC/doc/latex/quoting/quoting.pdf -srcfiles size=7 - RELOC/source/latex/quoting/quoting.dtx - RELOC/source/latex/quoting/quoting.ins -catalogue-ctan /macros/latex/contrib/quoting -catalogue-date 2014-01-29 17:50:59 +0100 -catalogue-license lppl1.3 -catalogue-version v0.1c - -name quotmark -category Package -revision 15878 -shortdesc Consistent quote marks. -relocated 1 -longdesc The package provides a means of ensuring consistent quote marks -longdesc throughout your document. The style can be changed either via -longdesc package option or command, and the package detects language -longdesc selections (from the babel or ngerman packages), and uses the -longdesc punctuation marks appropriate for the current language. The -longdesc author now considers the package obsolete, and recommends use -longdesc of csquotes in its place. -runfiles size=39 - RELOC/tex/latex/quotmark/quotmark-UKenglish.def - RELOC/tex/latex/quotmark/quotmark-USenglish.def - RELOC/tex/latex/quotmark/quotmark-afrikaans.def - RELOC/tex/latex/quotmark/quotmark-brazil.def - RELOC/tex/latex/quotmark/quotmark-bulgarian.def - RELOC/tex/latex/quotmark/quotmark-catalan.def - RELOC/tex/latex/quotmark/quotmark-croatian.def - RELOC/tex/latex/quotmark/quotmark-czech.def - RELOC/tex/latex/quotmark/quotmark-danish.def - RELOC/tex/latex/quotmark/quotmark-dutch.def - RELOC/tex/latex/quotmark/quotmark-estonian.def - RELOC/tex/latex/quotmark/quotmark-finnish.def - RELOC/tex/latex/quotmark/quotmark-frenchb.def - RELOC/tex/latex/quotmark/quotmark-germanb.def - RELOC/tex/latex/quotmark/quotmark-greek.def - RELOC/tex/latex/quotmark/quotmark-hebrew.def - RELOC/tex/latex/quotmark/quotmark-icelandic.def - RELOC/tex/latex/quotmark/quotmark-irish.def - RELOC/tex/latex/quotmark/quotmark-italian.def - RELOC/tex/latex/quotmark/quotmark-magyar.def - RELOC/tex/latex/quotmark/quotmark-ngermanb.def - RELOC/tex/latex/quotmark/quotmark-norsk.def - RELOC/tex/latex/quotmark/quotmark-polish.def - RELOC/tex/latex/quotmark/quotmark-portuges.def - RELOC/tex/latex/quotmark/quotmark-romanian.def - RELOC/tex/latex/quotmark/quotmark-russianb.def - RELOC/tex/latex/quotmark/quotmark-serbian.def - RELOC/tex/latex/quotmark/quotmark-slovak.def - RELOC/tex/latex/quotmark/quotmark-slovene.def - RELOC/tex/latex/quotmark/quotmark-sorbian.def - RELOC/tex/latex/quotmark/quotmark-spanish.def - RELOC/tex/latex/quotmark/quotmark-swedish.def - RELOC/tex/latex/quotmark/quotmark-swiss.def - RELOC/tex/latex/quotmark/quotmark-turkish.def - RELOC/tex/latex/quotmark/quotmark-ukraineb.def - RELOC/tex/latex/quotmark/quotmark-welsh.def - RELOC/tex/latex/quotmark/quotmark.sty -docfiles size=48 - RELOC/doc/latex/quotmark/CHANGES - RELOC/doc/latex/quotmark/README - RELOC/doc/latex/quotmark/quotmark.pdf - RELOC/doc/latex/quotmark/sample.tex -srcfiles size=16 - RELOC/source/latex/quotmark/quotmark.dtx - RELOC/source/latex/quotmark/quotmark.ins -catalogue-ctan /macros/latex/contrib/quotmark -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 - -name quran -category Package -revision 37882 -shortdesc An easy way to typeset any part of The Holy Quran. -relocated 1 -longdesc This package offers the user an easy way to typeset The Holy -longdesc Quran. It has been inspired by the lipsum and ptext packages -longdesc and provides several macros for typesetting the whole or any -longdesc part of Quran based on its popular division. Available macros -longdesc are: \quransurah, \quranayah, \quranjuz, \quranhizb, -longdesc \quranquarter, \quranpage, \qurantext, \surahname, \basmalah. -longdesc The package only works with the "xelatex" format and should be -longdesc loaded before the bidi package. -runfiles size=376 - RELOC/tex/xelatex/quran/quran.sty -docfiles size=30 - RELOC/doc/xelatex/quran/README - RELOC/doc/xelatex/quran/quran-doc.pdf - RELOC/doc/xelatex/quran/quran-doc.tex - RELOC/doc/xelatex/quran/quran-test.pdf - RELOC/doc/xelatex/quran/quran-test.tex -catalogue-also lipsum ptext -catalogue-ctan /macros/xetex/latex/quran -catalogue-date 2015-07-15 05:44:18 +0200 -catalogue-license lppl1.3 -catalogue-topics arabic macro-supp xetex dummy-gen -catalogue-version 0.941 - -name raleway -category Package -revision 37394 -shortdesc Use Raleway with TeX(-alike) systems. -relocated 1 -longdesc The package provides the Raleway family in an easy to use way. -longdesc For XeLaTeX and LuaLaTeX users the original OpenType fonts are -longdesc used. The entire font family is included. -execute addMap Raleway.map -runfiles size=3129 - RELOC/fonts/enc/dvips/raleway/a_2bcjq6.enc - RELOC/fonts/enc/dvips/raleway/a_biciir.enc - RELOC/fonts/enc/dvips/raleway/a_bzmckq.enc - RELOC/fonts/enc/dvips/raleway/a_f3uqdf.enc - RELOC/fonts/enc/dvips/raleway/a_gvxmk7.enc - RELOC/fonts/enc/dvips/raleway/a_ioname.enc - RELOC/fonts/enc/dvips/raleway/a_k2dfwc.enc - RELOC/fonts/enc/dvips/raleway/a_mgzrni.enc - RELOC/fonts/enc/dvips/raleway/a_mzuigi.enc - RELOC/fonts/enc/dvips/raleway/a_oaf34p.enc - RELOC/fonts/enc/dvips/raleway/a_pcwse4.enc - RELOC/fonts/enc/dvips/raleway/a_sor5xn.enc - RELOC/fonts/enc/dvips/raleway/a_u6n666.enc - RELOC/fonts/enc/dvips/raleway/a_yqxcf3.enc - RELOC/fonts/map/dvips/raleway/Raleway.map - RELOC/fonts/opentype/impallari/raleway/Raleway-Black-Italic.otf - RELOC/fonts/opentype/impallari/raleway/Raleway-Black.otf - RELOC/fonts/opentype/impallari/raleway/Raleway-Bold-Italic.otf - RELOC/fonts/opentype/impallari/raleway/Raleway-Bold.otf - RELOC/fonts/opentype/impallari/raleway/Raleway-ExtraBold-Italic.otf - RELOC/fonts/opentype/impallari/raleway/Raleway-ExtraBold.otf - RELOC/fonts/opentype/impallari/raleway/Raleway-ExtraLight-Italic.otf - RELOC/fonts/opentype/impallari/raleway/Raleway-ExtraLight.otf - RELOC/fonts/opentype/impallari/raleway/Raleway-Light-Italic.otf - RELOC/fonts/opentype/impallari/raleway/Raleway-Light.otf - RELOC/fonts/opentype/impallari/raleway/Raleway-Medium-Italic.otf - RELOC/fonts/opentype/impallari/raleway/Raleway-Medium.otf - RELOC/fonts/opentype/impallari/raleway/Raleway-Regular-Italic.otf - RELOC/fonts/opentype/impallari/raleway/Raleway-Regular.otf - RELOC/fonts/opentype/impallari/raleway/Raleway-SemiBold-Italic.otf - RELOC/fonts/opentype/impallari/raleway/Raleway-SemiBold.otf - RELOC/fonts/opentype/impallari/raleway/Raleway-Thin-Italic.otf - RELOC/fonts/opentype/impallari/raleway/Raleway-Thin.otf - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-ts1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-t1.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-ts1.tfm - RELOC/fonts/type1/impallari/raleway/Raleway-Black.pfb - RELOC/fonts/type1/impallari/raleway/Raleway-BlackItalic.pfb - RELOC/fonts/type1/impallari/raleway/Raleway-Bold.pfb - RELOC/fonts/type1/impallari/raleway/Raleway-BoldItalic.pfb - RELOC/fonts/type1/impallari/raleway/Raleway-ExtraBold.pfb - RELOC/fonts/type1/impallari/raleway/Raleway-ExtraBoldItalic.pfb - RELOC/fonts/type1/impallari/raleway/Raleway-ExtraLight.pfb - RELOC/fonts/type1/impallari/raleway/Raleway-ExtraLightItalic.pfb - RELOC/fonts/type1/impallari/raleway/Raleway-Italic.pfb - RELOC/fonts/type1/impallari/raleway/Raleway-Light.pfb - RELOC/fonts/type1/impallari/raleway/Raleway-LightItalic.pfb - RELOC/fonts/type1/impallari/raleway/Raleway-Medium.pfb - RELOC/fonts/type1/impallari/raleway/Raleway-MediumItalic.pfb - RELOC/fonts/type1/impallari/raleway/Raleway-Regular.pfb - RELOC/fonts/type1/impallari/raleway/Raleway-SemiBold.pfb - RELOC/fonts/type1/impallari/raleway/Raleway-SemiBoldItalic.pfb - RELOC/fonts/type1/impallari/raleway/Raleway-Thin.pfb - RELOC/fonts/type1/impallari/raleway/Raleway-ThinItalic.pfb - RELOC/fonts/vf/impallari/raleway/Raleway-Black-tlf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Black-tlf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Black-tlf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Black-tlf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Black-tlf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Black-tlf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Black-tosf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Black-tosf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Black-tosf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Black-tosf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Black-tosf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Black-tosf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tlf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tlf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tlf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tlf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tosf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tosf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tosf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tosf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tlf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tlf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tlf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tlf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tlf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tlf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tosf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tosf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tosf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tosf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tosf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tosf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tlf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tlf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tlf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tlf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tosf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tosf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tosf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tosf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tlf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tlf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tlf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tlf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tlf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tlf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tosf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tosf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tosf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tosf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tosf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tosf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tlf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tlf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tlf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tosf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tosf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tosf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tlf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tlf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tlf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tlf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tlf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tlf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tosf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tosf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tosf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tosf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tosf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tosf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tlf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tlf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tlf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tosf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tosf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tosf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tlf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tlf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tlf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tlf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tlf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tlf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tosf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tosf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tosf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tosf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tosf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tosf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Light-tlf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Light-tlf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Light-tlf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Light-tlf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Light-tlf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Light-tlf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Light-tosf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Light-tosf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Light-tosf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Light-tosf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Light-tosf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Light-tosf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tlf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tlf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tlf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tlf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tosf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tosf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tosf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tosf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tlf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tlf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tlf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tlf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tlf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tlf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tosf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tosf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tosf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tosf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tosf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tosf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tlf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tlf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tlf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tlf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tosf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tosf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tosf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tosf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tlf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tlf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tlf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tlf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tlf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tlf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tosf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tosf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tosf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tosf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tosf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tosf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tlf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tlf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tlf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tlf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tlf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tlf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tosf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tosf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tosf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tosf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tosf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tosf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tlf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tlf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tlf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tosf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tosf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tosf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tlf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tlf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tlf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tlf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tlf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tlf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tosf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tosf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tosf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tosf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tosf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tosf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tlf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tlf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tlf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tlf-ts1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tosf-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tosf-sc-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tosf-t1.vf - RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tosf-ts1.vf - RELOC/tex/latex/raleway/LY1Raleway-TLF.fd - RELOC/tex/latex/raleway/LY1Raleway-TOsF.fd - RELOC/tex/latex/raleway/OT1Raleway-TLF.fd - RELOC/tex/latex/raleway/OT1Raleway-TOsF.fd - RELOC/tex/latex/raleway/T1Raleway-TLF.fd - RELOC/tex/latex/raleway/T1Raleway-TOsF.fd - RELOC/tex/latex/raleway/TS1Raleway-TLF.fd - RELOC/tex/latex/raleway/TS1Raleway-TOsF.fd - RELOC/tex/latex/raleway/raleway-type1-autoinst.sty - RELOC/tex/latex/raleway/raleway.sty -docfiles size=87 - RELOC/doc/latex/raleway/OFL.txt - RELOC/doc/latex/raleway/raleway-otf-specimen.pdf - RELOC/doc/latex/raleway/raleway-otf-specimen.tex - RELOC/doc/latex/raleway/raleway-type1-specimen.pdf - RELOC/doc/latex/raleway/raleway-type1-specimen.tex - RELOC/doc/latex/raleway/raleway.pdf - RELOC/doc/latex/raleway/raleway.tex -catalogue-ctan /fonts/raleway -catalogue-date 2015-05-13 21:13:14 +0200 -catalogue-license ofl -catalogue-version 1.3 - -name randbild -category Package -revision 15878 -shortdesc Marginal pictures. -relocated 1 -longdesc Provides environments randbild, to draw small marginal plots -longdesc (using the package pstricks package pst-plot), and -longdesc randbildbasis (the same, only without the automatically drawn -longdesc coordinate system). -runfiles size=1 - RELOC/tex/latex/randbild/randbild.sty -docfiles size=45 - RELOC/doc/latex/randbild/README - RELOC/doc/latex/randbild/randbild.pdf -srcfiles size=4 - RELOC/source/latex/randbild/randbild.dtx - RELOC/source/latex/randbild/randbild.ins -catalogue-ctan /macros/latex/contrib/randbild -catalogue-date 2012-06-03 16:14:40 +0200 -catalogue-license lppl -catalogue-version 0.2 - -name randomwalk -category Package -revision 36429 -shortdesc Random walks using TikZ. -relocated 1 -longdesc The randomwalk package provides a user command, \RandomWalk, to -longdesc draw random walks with a given number of steps. Lengths and -longdesc angles of the steps can be customized in various ways. The -longdesc package uses lcg for its 'random' numbers and PGF/TikZ for its -longdesc graphical output. -runfiles size=2 - RELOC/tex/latex/randomwalk/randomwalk.sty -docfiles size=118 - RELOC/doc/latex/randomwalk/README - RELOC/doc/latex/randomwalk/randomwalk.pdf -srcfiles size=5 - RELOC/source/latex/randomwalk/randomwalk.dtx - RELOC/source/latex/randomwalk/randomwalk.ins -catalogue-ctan /macros/latex/contrib/randomwalk -catalogue-date 2015-03-03 19:28:14 +0100 -catalogue-license lppl -catalogue-version 0.3 - -name randtext -category Package -revision 15878 -shortdesc Randomise the order of characters in strings. -relocated 1 -longdesc The package provides a single macro \randomize{TEXT} that -longdesc typesets the characters of TEXT in random order, such that the -longdesc resulting output appears correct, but most automated attempts -longdesc to read the file will misunderstand it. This function allows -longdesc one to include an email address in a TeX document and publish -longdesc it online without fear of email address harvesters or spammers -longdesc easily picking up the address. -runfiles size=2 - RELOC/tex/latex/randtext/randtext.sty -docfiles size=1 - RELOC/doc/latex/randtext/README -catalogue-ctan /macros/latex/contrib/randtext -catalogue-date 2012-06-03 20:03:18 +0200 -catalogue-license lppl - -name ran_toks -category Package -revision 28361 -shortdesc Randomise token strings. -relocated 1 -longdesc The package provides means of randomising lists of tokens, or -longdesc lists of chunks of tokens. Two mechanisms for defining chunks -longdesc are provided: the macro \ranToks command accepts an argument -longdesc containing tokens to be randomised; and the \bRTVToks/\eRTVToks -longdesc commands delimit a collection of tokens for randomising; each -longdesc group inside a rtVw constitutes one of these (typically larger) -longdesc token sets. -runfiles size=2 - RELOC/tex/latex/ran_toks/ran_toks.sty -docfiles size=24 - RELOC/doc/latex/ran_toks/doc/rantoks_man.pdf - RELOC/doc/latex/ran_toks/doc/rantoks_man.tex - RELOC/doc/latex/ran_toks/examples/ran_toks.tex -srcfiles size=4 - RELOC/source/latex/ran_toks/ran_toks.dtx -catalogue-ctan /macros/latex/contrib/ran_toks -catalogue-date 2014-10-15 16:14:57 +0200 -catalogue-license lppl1 -catalogue-version 1.0a - -name rccol -category Package -revision 15878 -shortdesc Decimal-centered optionally rounded numbers in tabular. -relocated 1 -longdesc The rccol package provides decimal-centered numbers: -longdesc corresponding digits and decimal separators aligned. -longdesc Furthermore, rounding to the desired precision is possible. The -longdesc package makes use of the fltpoint package (as well as the LaTeX -longdesc required array package). -runfiles size=2 - RELOC/tex/latex/rccol/rccol.sty -docfiles size=42 - RELOC/doc/latex/rccol/README - RELOC/doc/latex/rccol/rccol.pdf -srcfiles size=9 - RELOC/source/latex/rccol/rccol.dtx - RELOC/source/latex/rccol/rccol.ins -catalogue-ctan /macros/latex/contrib/rccol -catalogue-date 2012-06-03 18:15:41 +0200 -catalogue-license other-free -catalogue-version 1.2c - -name rcsinfo -category Package -revision 15878 -shortdesc Support for the revision control system. -relocated 1 -longdesc A package to extract RCS (Revision Control System) information -longdesc and use it in a LaTeX document. For users of LaTeX2HTML -longdesc rcsinfo.perl is included. -runfiles size=4 - RELOC/tex/latex/rcsinfo/rcsinfo.cfg - RELOC/tex/latex/rcsinfo/rcsinfo.sty -docfiles size=48 - RELOC/doc/latex/rcsinfo/README - RELOC/doc/latex/rcsinfo/README-1.9 - RELOC/doc/latex/rcsinfo/rcsinfo.init - RELOC/doc/latex/rcsinfo/rcsinfo.pdf - RELOC/doc/latex/rcsinfo/rcsinfo.perl - RELOC/doc/latex/rcsinfo/rcsinfo2html.tex -srcfiles size=16 - RELOC/source/latex/rcsinfo/Makefile - RELOC/source/latex/rcsinfo/rcsinfo.dtx - RELOC/source/latex/rcsinfo/rcsinfo.ins -catalogue-ctan /macros/latex/contrib/rcsinfo -catalogue-date 2011-11-11 12:03:47 +0100 -catalogue-license lppl -catalogue-version 1.11 - -name rcs-multi -category Package -revision 21939 -shortdesc Typeset RCS version control in multiple-file documents. -relocated 1 -longdesc The package enables the user to typeset version control -longdesc information provided by RCS keywords (e.g., $ID: ... $) in -longdesc LaTeX documents that contain multiple TeX files. The package is -longdesc based on the author's svn-multi package. -runfiles size=3 - RELOC/tex/latex/rcs-multi/rcs-multi.sty -docfiles size=180 - RELOC/doc/latex/rcs-multi/example.pdf - RELOC/doc/latex/rcs-multi/rcs-multi.pdf -srcfiles size=14 - RELOC/source/latex/rcs-multi/Makefile - RELOC/source/latex/rcs-multi/example.tex - RELOC/source/latex/rcs-multi/rcs-multi.dtx - RELOC/source/latex/rcs-multi/rcs-multi.ins -catalogue-ctan /macros/latex/contrib/rcs-multi -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.1a - -name rcs -category Package -revision 15878 -shortdesc Use RCS (revision control system) tags in LaTeX documents. -relocated 1 -longdesc The rcs package utilizes the inclusion of RCS supplied data in -longdesc LaTeX documents. It's upward compatible to *all* rcs styles I -longdesc know of. In particular, you can easily access values of every -longdesc RCS field in your document put the checkin date on the -longdesc titlepage put RCS fields in a footline You can typeset revision -longdesc logs. Not in verbatim -- real LaTeX text! But you need a -longdesc configurable RCS for that. Refer to the user manual for more -longdesc detailed information. You can also configure the rcs package -longdesc easily to do special things for any keyword. This bundle comes -longdesc with a user manual, an internal interface description, full -longdesc documentation of the implementation, style information for AUC- -longdesc TeX, and test cases. -runfiles size=9 - RELOC/tex/latex/rcs/rcs.sty -docfiles size=52 - RELOC/doc/latex/rcs/CATALOG - RELOC/doc/latex/rcs/History - RELOC/doc/latex/rcs/INSTALL - RELOC/doc/latex/rcs/License - RELOC/doc/latex/rcs/MANIFEST - RELOC/doc/latex/rcs/README - RELOC/doc/latex/rcs/rcs-conf.pdf - RELOC/doc/latex/rcs/rcs-user.pdf -srcfiles size=33 - RELOC/source/latex/rcs/Makefile - RELOC/source/latex/rcs/rcs.el - RELOC/source/latex/rcs/src/Diff - RELOC/source/latex/rcs/src/Imakefile - RELOC/source/latex/rcs/src/README - RELOC/source/latex/rcs/src/TODO - RELOC/source/latex/rcs/src/rcs-conf.tex - RELOC/source/latex/rcs/src/rcs-doc.sty - RELOC/source/latex/rcs/src/rcs-user.tex - RELOC/source/latex/rcs/src/rcs.doc - RELOC/source/latex/rcs/src/style/rcs.el - RELOC/source/latex/rcs/src/style/rcs.elc - RELOC/source/latex/rcs/src/test/Imakefile - RELOC/source/latex/rcs/src/test/Makefile - RELOC/source/latex/rcs/src/test/empty-log.tex - RELOC/source/latex/rcs/src/test/german.tex - RELOC/source/latex/rcs/src/test/log-error.tex - RELOC/source/latex/rcs/src/test/log.tex - RELOC/source/latex/rcs/src/test/rcsdef.tex - RELOC/source/latex/rcs/src/test/rcsid-param.tex - RELOC/source/latex/rcs/src/test/rcsid.tex - RELOC/source/latex/rcs/src/test/under_score.tex -catalogue-ctan /macros/latex/contrib/rcs -catalogue-date 2014-10-15 16:14:57 +0200 -catalogue-license gpl - -name readarray -category Package -revision 30489 -shortdesc Read, store and recall array-formatted data. -relocated 1 -longdesc The package allows the user to input formatted data into -longdesc elements of a 2-D or 3-D array and to recall that data at will -longdesc by individual cell number. The data can be but need not be -longdesc numerical in nature. It can be, for example, formatted text. -longdesc While the package can be used for any application where indexed -longdesc data is called for, the package proves particularly useful when -longdesc elements of multiple arrays must be recallable and dynamically -longdesc combined at time of compilation, rather than in advance. -runfiles size=2 - RELOC/tex/latex/readarray/readarray.sty -docfiles size=63 - RELOC/doc/latex/readarray/README - RELOC/doc/latex/readarray/readarray.pdf - RELOC/doc/latex/readarray/readarray.tex -catalogue-ctan /macros/latex/contrib/readarray -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.2 - -name realboxes -category Package -revision 23581 -shortdesc Variants of common box-commands that read their content as real box and not as macro argument. -relocated 1 -longdesc The package uses the author's package collectbox to define -longdesc variants of common box related macros which read the content as -longdesc real box and not as macro argument. This enables the use of -longdesc verbatim or other special material as part of this content. The -longdesc provided macros have the same names as the original versions -longdesc but start with an upper-case letter instead. The "long-form" -longdesc macros, like \Makebox, can also be used as environments, but -longdesc not the "short-form" macros, like \Mbox. However, normally the -longdesc long form uses the short form anyway when no optional arguments -longdesc are used. -runfiles size=3 - RELOC/tex/latex/realboxes/realboxes.sty -docfiles size=48 - RELOC/doc/latex/realboxes/README - RELOC/doc/latex/realboxes/realboxes.pdf -srcfiles size=8 - RELOC/source/latex/realboxes/realboxes.dtx - RELOC/source/latex/realboxes/realboxes.ins -catalogue-ctan /macros/latex/contrib/realboxes -catalogue-date 2012-06-09 21:22:57 +0200 -catalogue-license lppl1.3 -catalogue-version 0.2 - -name realscripts -category Package -revision 29423 -shortdesc Access OpenType subscript and superscript glyphs. -relocated 1 -longdesc This small package replaces \textsuperscript and \textsubscript -longdesc commands by equivalent commands that use OpenType font features -longdesc to access appropriate glyphs if possible. The package also -longdesc patches LaTeX's default footnote command to use this new -longdesc \textsuperscript for footnote symbols. The package requires -longdesc fontspec running on either XeLaTeX or LuaLaTeX. The package -longdesc holds functions that were once parts of the xltxtra package, -longdesc which now loads realscripts by default. -runfiles size=2 - RELOC/tex/latex/realscripts/realscripts.sty -docfiles size=28 - RELOC/doc/latex/realscripts/README - RELOC/doc/latex/realscripts/realscripts.pdf -srcfiles size=5 - RELOC/source/latex/realscripts/realscripts.dtx - RELOC/source/latex/realscripts/realscripts.ins -catalogue-ctan /macros/latex/contrib/realscripts -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.3c - -name recipebook -category Package -revision 37026 -shortdesc Typeset 5.5" x 8" recipes for browsing or printing. -relocated 1 -longdesc This is a LaTeX2e class for typesetting recipes. It is designed -longdesc for typesetting one or two recipes per page, with dimensions of -longdesc 5.5" x 8.5". The hyperlinked table of contents (ToC) and page -longdesc numbers make browsing recipes convenient, and the pages can be -longdesc joined together or printed two per sheet to normal letterpaper -longdesc easily. The size was chosen to work in half-page 3-ring binder -longdesc cover sheets. -runfiles size=4 - RELOC/tex/latex/recipebook/RecipeBook.cls -docfiles size=409 - RELOC/doc/latex/recipebook/LongSample.pdf - RELOC/doc/latex/recipebook/LongSample.tex - RELOC/doc/latex/recipebook/README - RELOC/doc/latex/recipebook/ShortSample.pdf - RELOC/doc/latex/recipebook/ShortSample.tex - RELOC/doc/latex/recipebook/images/Curried_butternut_squash_soup.jpg - RELOC/doc/latex/recipebook/images/Curried_chicken_and_rice.jpg - RELOC/doc/latex/recipebook/images/French_dip.jpg - RELOC/doc/latex/recipebook/images/Grilled_chicken_with_capers.jpg - RELOC/doc/latex/recipebook/images/Hawaiian_burgers.jpg - RELOC/doc/latex/recipebook/images/Italian_calzones.jpg - RELOC/doc/latex/recipebook/images/Pumpkin_pie_soup.jpg -catalogue-ctan /macros/latex/contrib/recipebook -catalogue-date 2015-04-22 18:40:31 +0200 -catalogue-license lppl1.3 - -name recipecard -category Package -revision 15878 -shortdesc Typeset recipes in note-card-sized boxes. -relocated 1 -longdesc The recipecard class typesets recipes into note card sized -longdesc boxes that can then be cut out and pasted on to note cards. The -longdesc recipe then looks elegant and fits in the box of recipes. -runfiles size=2 - RELOC/tex/latex/recipecard/recipecard.cls -docfiles size=57 - RELOC/doc/latex/recipecard/README - RELOC/doc/latex/recipecard/recipecard.pdf - RELOC/doc/latex/recipecard/test2.pdf - RELOC/doc/latex/recipecard/test2.tex -srcfiles size=8 - RELOC/source/latex/recipecard/recipecard.dtx -catalogue-ctan /macros/latex/contrib/recipecard -catalogue-date 2011-11-07 08:36:45 +0100 -catalogue-license lppl -catalogue-version 2.0 - -name recipe -category Package -revision 15878 -shortdesc A LaTeX class to typeset recipes. -relocated 1 -longdesc The layout design is relative straightforward (and traditional: -longdesc see 'sample output' under 'documentation'); the class needs -longdesc uses the Bookman and BrushScript-Italic fonts. -runfiles size=1 - RELOC/tex/latex/recipe/recipe.cls -docfiles size=11 - RELOC/doc/latex/recipe/README - RELOC/doc/latex/recipe/sample.pdf - RELOC/doc/latex/recipe/sample.tex -catalogue-ctan /macros/latex/contrib/recipe -catalogue-date 2012-06-09 21:22:57 +0200 -catalogue-license pd -catalogue-version 0.9 - -name rec-thy -category Package -revision 27225 -shortdesc Commands to typeset recursion theory papers. -relocated 1 -longdesc The package provides many macros to express standard notation -longdesc in recursion theory (otherwise known as computability theory). -runfiles size=10 - RELOC/tex/latex/rec-thy/rec-thy.sty -docfiles size=68 - RELOC/doc/latex/rec-thy/README - RELOC/doc/latex/rec-thy/rec-thy.pdf - RELOC/doc/latex/rec-thy/rec-thy.tex -catalogue-ctan /macros/latex/contrib/rec-thy -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license pd -catalogue-version 1.3 - -name rectopma -category Package -revision 19980 -shortdesc Recycle top matter. -relocated 1 -longdesc Saves the arguments of \author and \title for reference (after -longdesc \maketitle) in a document. (\maketitle simply disposes of the -longdesc information, in the standard classes and some others.) -runfiles size=1 - RELOC/tex/latex/rectopma/rectopma.sty -docfiles size=29 - RELOC/doc/latex/rectopma/TestTitle.pdf - RELOC/doc/latex/rectopma/TestTitle.tex -catalogue-ctan /macros/latex/contrib/rectopma -catalogue-date 2012-06-09 21:22:57 +0200 -catalogue-license lppl - -name recycle -category Package -revision 15878 -shortdesc A font providing the "recyclable" logo. -relocated 1 -longdesc This single-character font is provided as Metafont source, and -longdesc in Adobe Type 1 format. It is accompanied by a trivial LaTeX -longdesc package to use the logo at various sizes. -execute addMap recycle.map -runfiles size=8 - RELOC/fonts/map/dvips/recycle/recycle.map - RELOC/fonts/source/public/recycle/recycle.mf - RELOC/fonts/tfm/public/recycle/recycle.tfm - RELOC/fonts/type1/public/recycle/recycle.pfb - RELOC/tex/latex/recycle/recycle.sty -docfiles size=1 - RELOC/doc/fonts/recycle/README -catalogue-ctan /fonts/recycle -catalogue-date 2014-05-07 23:10:33 +0200 -catalogue-license gpl - -name refcheck -category Package -revision 29128 -shortdesc Check references (in figures, table, equations, etc). -relocated 1 -longdesc The package checks references in a document, looking for -longdesc numbered but unlabelled equations, for labels which are not -longdesc used in the text, for unused bibliography references. It can -longdesc also display label names in text near corresponding numbers of -longdesc equations and/or bibliography references. -runfiles size=3 - RELOC/tex/latex/refcheck/refcheck.sty -docfiles size=14 - RELOC/doc/latex/refcheck/README - RELOC/doc/latex/refcheck/refdemo.pdf - RELOC/doc/latex/refcheck/refdemo.tex -catalogue-ctan /macros/latex/contrib/refcheck -catalogue-date 2013-02-27 12:58:34 +0100 -catalogue-license gpl -catalogue-version 1.9.1 - -name refenums -category Package -revision 32562 -shortdesc Define reference labels items with names of their own. -relocated 1 -longdesc The package provides commands to define enumerable items with a -longdesc number and a long name, which can be referenced referenced -longdesc later with the name or just the short form. For instance, -longdesc "Milestone M1: Specification created" can be defined and later -longdesc on be referenced with 'M1' or 'M1 ("Specification created")'. -longdesc The text in the references is derived from the definition and -longdesc also rendered as hyperlink to the definition. -runfiles size=2 - RELOC/tex/latex/refenums/refenums.sty -docfiles size=25 - RELOC/doc/latex/refenums/LICENSE - RELOC/doc/latex/refenums/README.md - RELOC/doc/latex/refenums/demo.pdf - RELOC/doc/latex/refenums/demo.tex - RELOC/doc/latex/refenums/test/demo-sec-param.tex -catalogue-ctan /macros/latex/contrib/refenums -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.1.1 - -name reflectgraphics -category Package -revision 37800 -shortdesc Techniques for reflecting graphics. -relocated 1 -longdesc The package provides a macro for reflecting images, in a number -longdesc of different ways, in pursuit of "more striking" graphics in a -longdesc document. -runfiles size=2 - RELOC/tex/latex/reflectgraphics/reflectgraphics.sty -docfiles size=69 - RELOC/doc/latex/reflectgraphics/README - RELOC/doc/latex/reflectgraphics/example.jpg - RELOC/doc/latex/reflectgraphics/reflectgraphics.pdf -srcfiles size=8 - RELOC/source/latex/reflectgraphics/reflectgraphics.dtx - RELOC/source/latex/reflectgraphics/reflectgraphics.ins -catalogue-ctan /macros/latex/contrib/reflectgraphics -catalogue-date 2015-07-07 17:48:19 +0200 -catalogue-license lppl1.3 -catalogue-topics graphics-manip -catalogue-version 0.2c - -name refman -category Package -revision 15878 -shortdesc Format technical reference manuals. -relocated 1 -longdesc Document classes (report- and article-style) for writing -longdesc technical reference manuals. It offers a wide left margin for -longdesc notes to the reader, like some of the manuals distributed by -longdesc Adobe. -runfiles size=18 - RELOC/tex/latex/refman/pagepc.sty - RELOC/tex/latex/refman/refart.cls - RELOC/tex/latex/refman/refrep.cls -docfiles size=211 - RELOC/doc/latex/refman/00Contents - RELOC/doc/latex/refman/lay_d2.tex - RELOC/doc/latex/refman/lay_e2.tex - RELOC/doc/latex/refman/layout_d.pdf - RELOC/doc/latex/refman/layout_d.tex - RELOC/doc/latex/refman/layout_e.pdf - RELOC/doc/latex/refman/layout_e.tex - RELOC/doc/latex/refman/refman.pdf - RELOC/doc/latex/refman/refman.upl -srcfiles size=33 - RELOC/source/latex/refman/refman.dtx - RELOC/source/latex/refman/refman.ins -catalogue-ctan /macros/latex/contrib/refman -catalogue-date 2012-02-25 11:15:03 +0100 -catalogue-license lppl -catalogue-version 2.0e - -name refstyle -category Package -revision 20318 -shortdesc Advanced formatting of cross references. -relocated 1 -longdesc The package provides a consistent way of producing references -longdesc throughout a project. Enough flexibility is provided to make -longdesc local changes to a single reference. The user can configure -longdesc their own setup. The package offers a direct interface to -longdesc varioref (for use, for example, in large projects such as a -longdesc series of books, or a multivolume thesis written as a series of -longdesc documents), and name references from the nameref package may be -longdesc incorporated with ease. For large projects such as a series of -longdesc books or a multi volume thesis, written as freestanding -longdesc documents, a facility is provided to interface to the xr -longdesc package for external document references. -runfiles size=8 - RELOC/tex/latex/refstyle/refstyle.cfg - RELOC/tex/latex/refstyle/refstyle.sty -docfiles size=192 - RELOC/doc/latex/refstyle/README - RELOC/doc/latex/refstyle/refconfig.pdf - RELOC/doc/latex/refstyle/refstyle.pdf -srcfiles size=28 - RELOC/source/latex/refstyle/refconfig.dtx - RELOC/source/latex/refstyle/refstyle.dtx - RELOC/source/latex/refstyle/refstyle.ins -catalogue-ctan /macros/latex/contrib/refstyle -catalogue-date 2012-11-14 11:47:31 +0100 -catalogue-license lppl -catalogue-version 0.5 - -name regcount -category Package -revision 19979 -shortdesc Display the allocation status of the TeX registers. -relocated 1 -longdesc Adds a macro \rgcounts which displays the allocation status of -longdesc the TeX registers. The display is written into the .log file as -longdesc it is a bit verbose. An automatic call to \rgcounts is done at -longdesc \begin{document} and \end{document}. -runfiles size=1 - RELOC/tex/latex/regcount/regcount.sty -docfiles size=50 - RELOC/doc/latex/regcount/readme - RELOC/doc/latex/regcount/regcount.pdf -srcfiles size=4 - RELOC/source/latex/regcount/regcount.dtx - RELOC/source/latex/regcount/regcount.ins -catalogue-ctan /macros/latex/contrib/regcount -catalogue-date 2013-10-03 14:20:59 +0200 -catalogue-license lppl -catalogue-version 1.0 - -name regexpatch -category Package -revision 37631 -shortdesc High level patching of commands. -relocated 1 -longdesc The package generalises the macro patching commands provided by -longdesc P. Lehmann's etoolbox. The difference between this package and -longdesc its sibling xpatch is that this package sports a very powerful -longdesc \regexpatchcmd based on the l3regex module of the LaTeX3 -longdesc experimental packages. -runfiles size=7 - RELOC/tex/latex/regexpatch/regexpatch.sty -docfiles size=134 - RELOC/doc/latex/regexpatch/README - RELOC/doc/latex/regexpatch/regexpatch.pdf -srcfiles size=16 - RELOC/source/latex/regexpatch/regexpatch.dtx - RELOC/source/latex/regexpatch/regexpatch.ins -catalogue-ctan /macros/latex/contrib/regexpatch -catalogue-date 2015-05-20 19:40:03 +0200 -catalogue-license lppl1.3 -catalogue-topics macro-supp -catalogue-version 0.2a - -name register -category Package -revision 21127 -shortdesc Typeset programmable elements in digital hardware (registers). -relocated 1 -longdesc This package is designed for typesetting the programmable -longdesc elements in digital hardware, i.e., registers. Such registers -longdesc typically have many fields and can be quite wide; they are thus -longdesc a challenge to typeset in a consistent manner. Register is -longdesc similar in some aspects to the bytefield package. Anyone doing -longdesc hardware documentation using LaTeX should examine both -longdesc packages. Register requires a fairly recent version of the -longdesc float package. A Perl module and a Perl script are provided, to -longdesc translate the register specifications into programmable data -longdesc structures. -runfiles size=3 - RELOC/tex/latex/register/register.sty -docfiles size=52 - RELOC/doc/latex/register/Reg_macro.pm - RELOC/doc/latex/register/reg_list.pl - RELOC/doc/latex/register/register.pdf -srcfiles size=12 - RELOC/source/latex/register/register.dtx - RELOC/source/latex/register/register.ins -catalogue-ctan /macros/latex/contrib/register -catalogue-date 2012-06-08 07:46:14 +0200 -catalogue-license lppl -catalogue-version 1.6 - -name regstats -category Package -revision 25050 -shortdesc Information about register use. -relocated 1 -longdesc The package will report number of used registers (counter, -longdesc dimen, skip, muskip, box, token, input, output, math families, -longdesc languages, insertions), and will compare the number to the -longdesc maximum available number of such registers. -runfiles size=4 - RELOC/tex/latex/regstats/regstats.sty -docfiles size=105 - RELOC/doc/latex/regstats/README - RELOC/doc/latex/regstats/regstats-example.log - RELOC/doc/latex/regstats/regstats-example.pdf - RELOC/doc/latex/regstats/regstats-example.tex - RELOC/doc/latex/regstats/regstats.pdf -srcfiles size=15 - RELOC/source/latex/regstats/regstats.drv - RELOC/source/latex/regstats/regstats.dtx - RELOC/source/latex/regstats/regstats.ins -catalogue-ctan /macros/latex/contrib/regstats -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0h - -name reledmac -category Package -revision 38307 -shortdesc Typeset scholarly editions -relocated 1 -longdesc A package for typesetting scholarly critical editions, -longdesc replacing the established ledmac and eledmac packages. Ledmac -longdesc itself was a LaTeX port of the plain TeX EDMAC macros. The -longdesc package supports indexing by page and by line numbers, and -longdesc simple tabular- and array-style environments. The package is -longdesc distributed with the related reledpar package. -runfiles size=64 - RELOC/tex/latex/reledmac/reledmac.sty - RELOC/tex/latex/reledmac/reledpar.sty -docfiles size=609 - RELOC/doc/latex/reledmac/Makefile - RELOC/doc/latex/reledmac/README - RELOC/doc/latex/reledmac/doc-include/migrate-mac.dtx - RELOC/doc/latex/reledmac/doc-include/migrate-par.dtx - RELOC/doc/latex/reledmac/examples/1-criticalnotes.pdf - RELOC/doc/latex/reledmac/examples/1-criticalnotes.tex - RELOC/doc/latex/reledmac/examples/1-sidenotes.pdf - RELOC/doc/latex/reledmac/examples/1-sidenotes.tex - RELOC/doc/latex/reledmac/examples/1-tabular.pdf - RELOC/doc/latex/reledmac/examples/1-tabular.tex - RELOC/doc/latex/reledmac/examples/1-verses.pdf - RELOC/doc/latex/reledmac/examples/1-verses.tex - RELOC/doc/latex/reledmac/examples/2-cross_referencing.pdf - RELOC/doc/latex/reledmac/examples/2-cross_referencing.tex - RELOC/doc/latex/reledmac/examples/2-footnote_spacing.pdf - RELOC/doc/latex/reledmac/examples/2-footnote_spacing.tex - RELOC/doc/latex/reledmac/examples/2-indexing.pdf - RELOC/doc/latex/reledmac/examples/2-indexing.tex - RELOC/doc/latex/reledmac/examples/2-lemma_disambigution.pdf - RELOC/doc/latex/reledmac/examples/2-lemma_disambigution.tex - RELOC/doc/latex/reledmac/examples/2-line_numbers_in_header.pdf - RELOC/doc/latex/reledmac/examples/2-line_numbers_in_header.tex - RELOC/doc/latex/reledmac/examples/2-one_series_per_pstart.pdf - RELOC/doc/latex/reledmac/examples/2-one_series_per_pstart.tex - RELOC/doc/latex/reledmac/examples/2-performances.pdf - RELOC/doc/latex/reledmac/examples/2-performances.tex - RELOC/doc/latex/reledmac/examples/2-titles_in_line_numbering_with_notes.pdf - RELOC/doc/latex/reledmac/examples/2-titles_in_line_numbering_with_notes.tex - RELOC/doc/latex/reledmac/examples/2-titles_not_in_line_numbering.pdf - RELOC/doc/latex/reledmac/examples/2-titles_not_in_line_numbering.tex - RELOC/doc/latex/reledmac/examples/3-reledpar_columns_different_languages.pdf - RELOC/doc/latex/reledmac/examples/3-reledpar_columns_different_languages.tex - RELOC/doc/latex/reledmac/examples/3-reledpar_mwe.pdf - RELOC/doc/latex/reledmac/examples/3-reledpar_mwe.tex - RELOC/doc/latex/reledmac/examples/3-reledpar_pages_different_languages_lualatex.pdf - RELOC/doc/latex/reledmac/examples/3-reledpar_pages_different_languages_lualatex.tex - RELOC/doc/latex/reledmac/examples/3-reledpar_same_page_number_in_both_side.pdf - RELOC/doc/latex/reledmac/examples/3-reledpar_same_page_number_in_both_side.tex - RELOC/doc/latex/reledmac/examples/4-reledpar_column_mix_with_not_column.pdf - RELOC/doc/latex/reledmac/examples/4-reledpar_column_mix_with_not_column.tex - RELOC/doc/latex/reledmac/examples/4-reledpar_columns_alignment.pdf - RELOC/doc/latex/reledmac/examples/4-reledpar_columns_alignment.tex - RELOC/doc/latex/reledmac/examples/4-reledpar_columns_titles_in_line_numbering_with_notes.pdf - RELOC/doc/latex/reledmac/examples/4-reledpar_columns_titles_in_line_numbering_with_notes.tex - RELOC/doc/latex/reledmac/examples/4-reledpar_one_series_per_pstart.pdf - RELOC/doc/latex/reledmac/examples/4-reledpar_one_series_per_pstart.tex - RELOC/doc/latex/reledmac/examples/4-reledpar_page_titles_in_line_numbering_with_notes.pdf - RELOC/doc/latex/reledmac/examples/4-reledpar_page_titles_in_line_numbering_with_notes.tex - RELOC/doc/latex/reledmac/examples/4-reledpar_pages_long_notes.pdf - RELOC/doc/latex/reledmac/examples/4-reledpar_pages_long_notes.tex - RELOC/doc/latex/reledmac/examples/4-reledpar_pages_notes_leftpage.pdf - RELOC/doc/latex/reledmac/examples/4-reledpar_pages_notes_leftpage.tex - RELOC/doc/latex/reledmac/examples/4-reledpar_pages_paragraph_separator_between.pdf - RELOC/doc/latex/reledmac/examples/4-reledpar_pages_paragraph_separator_between.tex - RELOC/doc/latex/reledmac/examples/4-reledpar_titles_not_in_line_numbering.pdf - RELOC/doc/latex/reledmac/examples/4-reledpar_titles_not_in_line_numbering.tex - RELOC/doc/latex/reledmac/examples/4-reledpar_verse_text_between.pdf - RELOC/doc/latex/reledmac/examples/4-reledpar_verse_text_between.tex - RELOC/doc/latex/reledmac/examples/makefile - RELOC/doc/latex/reledmac/examples/reledmac.xdy - RELOC/doc/latex/reledmac/latexmkrc - RELOC/doc/latex/reledmac/migration.pdf - RELOC/doc/latex/reledmac/reledmac.pdf - RELOC/doc/latex/reledmac/reledpar.pdf -srcfiles size=217 - RELOC/source/latex/reledmac/migration.dtx - RELOC/source/latex/reledmac/reledmac.dtx - RELOC/source/latex/reledmac/reledmac.ins - RELOC/source/latex/reledmac/reledpar.dtx - RELOC/source/latex/reledmac/reledpar.ins -catalogue-also ednotes poemscol ledmac eledmac -catalogue-ctan /macros/latex/contrib/reledmac -catalogue-date 2015-09-06 08:44:28 +0200 -catalogue-license lppl1.3 -catalogue-topics crit-ed -catalogue-version 2.1.3 - -name relenc -category Package -revision 22050 -shortdesc A "relaxed" font encoding. -relocated 1 -longdesc LaTeX package providing a relaxed font encoding to make -longdesc available to a font designer more slots for insertion of -longdesc ligatures and accented characters. -runfiles size=17 - RELOC/fonts/tfm/public/relenc/zcmr8d.tfm - RELOC/fonts/tfm/public/relenc/zcmra.tfm - RELOC/fonts/vf/public/relenc/zcmr8d.vf - RELOC/fonts/vf/public/relenc/zcmra.vf - RELOC/tex/latex/relenc/2sidedoc.sty - RELOC/tex/latex/relenc/ecsubzcm.sty - RELOC/tex/latex/relenc/relenc.sty - RELOC/tex/latex/relenc/t1renc.def - RELOC/tex/latex/relenc/t1rzcm.fd -docfiles size=26 - RELOC/doc/latex/relenc/README - RELOC/doc/latex/relenc/reldemo.tex - RELOC/doc/latex/relenc/relenc.tex - RELOC/doc/latex/relenc/zcmr8d.vf2 - RELOC/doc/latex/relenc/zcmr8d.vf3 - RELOC/doc/latex/relenc/zcmra.vf2 - RELOC/doc/latex/relenc/zcmra.vf3 -srcfiles size=30 - RELOC/source/latex/relenc/relenc.dtx - RELOC/source/latex/relenc/relenc.ins - RELOC/source/latex/relenc/t1renc.dtx - RELOC/source/latex/relenc/t1rzcm.fdd -catalogue-ctan /macros/latex/contrib/relenc -catalogue-date 2012-06-08 07:46:14 +0200 -catalogue-license lppl1 - -name relsize -category Package -revision 30707 -shortdesc Set the font size relative to the current font size. -relocated 1 -longdesc The basic command of the package is \relsize, whose argument is -longdesc a number of \magsteps to change size; from this are defined -longdesc commands \larger, \smaller, \textlarger, etc. -runfiles size=4 - RELOC/tex/latex/relsize/relsize.sty -docfiles size=79 - RELOC/doc/latex/relsize/README - RELOC/doc/latex/relsize/relsize-doc.pdf - RELOC/doc/latex/relsize/relsize-doc.tex -catalogue-ctan /macros/latex/contrib/relsize -catalogue-date 2013-05-27 20:07:27 +0200 -catalogue-license pd -catalogue-version 4.1 - -name reotex -category Package -revision 34924 -shortdesc Draw Reo Channels and Circuits. -relocated 1 -longdesc The package defines macros and other utilities to design Reo -longdesc Circuits. The package requires PGF/TikZ support. -runfiles size=6 - RELOC/tex/latex/reotex/reotex.sty -docfiles size=56 - RELOC/doc/latex/reotex/README - RELOC/doc/latex/reotex/reotex.pdf - RELOC/doc/latex/reotex/reotex.tex -catalogue-ctan /graphics/pgf/contrib/reotex -catalogue-date 2014-08-13 17:53:09 +0200 -catalogue-license lppl -catalogue-version 1.1 - -name repeatindex -category Package -revision 24305 -shortdesc Repeat items in an index after a page or column break -relocated 1 -longdesc This Package repeats item of an index if a page or column break -longdesc occurs within a list of subitems. This helps to find out to -longdesc which main item a subitem belongs. -runfiles size=3 - RELOC/makeindex/repeatindex/repeatindex.ist - RELOC/tex/latex/repeatindex/repeatindex.sty -docfiles size=2 - RELOC/doc/latex/repeatindex/README - RELOC/doc/latex/repeatindex/testrepeatindex.tex -catalogue-ctan /macros/latex/contrib/repeatindex -catalogue-date 2012-06-03 18:15:41 +0200 -catalogue-license lppl -catalogue-version 0.01 - -name repere -category Package -revision 32455 -shortdesc Diagrams for school mathematics -relocated 1 -longdesc The package simplifies drawing figures in a coordinate system; -longdesc the specific target is support of secondary school mathematics. -runfiles size=13 - RELOC/metapost/repere/repere.mp -docfiles size=165 - RELOC/doc/metapost/repere/README - RELOC/doc/metapost/repere/repere-doc.pdf - RELOC/doc/metapost/repere/repere-doc.tex -catalogue-ctan /graphics/metapost/contrib/macros/repere -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 13.12 - -name repltext -category Package -revision 33442 -shortdesc Control how text gets copied from a PDF file. -relocated 1 -longdesc The repltext package exposes to LaTeX a relatively obscure PDF -longdesc feature: replacement text. When replacement text is specified -longdesc for a piece of text, it is the replacement text, not the -longdesc typeset text that is copied and pasted. -runfiles size=1 - RELOC/tex/latex/repltext/repltext.sty -docfiles size=76 - RELOC/doc/latex/repltext/README - RELOC/doc/latex/repltext/repltext.pdf -srcfiles size=5 - RELOC/source/latex/repltext/repltext.dtx - RELOC/source/latex/repltext/repltext.ins -catalogue-ctan /macros/latex/contrib/repltext -catalogue-date 2015-03-30 22:55:45 +0200 -catalogue-license lppl1.3 -catalogue-version 1.0 - -name resphilosophica -category Package -revision 38189 -shortdesc Typeset articles for the journal Res Philosophica -relocated 1 -longdesc The bundle provides a class for typesetting articles for the -longdesc journal Res Philosophica. Development was commissioned by Saint -longdesc Louis University. -runfiles size=14 - RELOC/bibtex/bst/resphilosophica/resphilosophica.bst - RELOC/tex/latex/resphilosophica/resphilosophica.cls -docfiles size=138 - RELOC/doc/latex/resphilosophica/Makefile - RELOC/doc/latex/resphilosophica/README - RELOC/doc/latex/resphilosophica/resphilosophica.bib - RELOC/doc/latex/resphilosophica/resphilosophica.pdf - RELOC/doc/latex/resphilosophica/rpsample.bib - RELOC/doc/latex/resphilosophica/rpsample.pdf - RELOC/doc/latex/resphilosophica/rpsample.tex -srcfiles size=17 - RELOC/source/latex/resphilosophica/resphilosophica.dtx - RELOC/source/latex/resphilosophica/resphilosophica.ins -catalogue-ctan /macros/latex/contrib/resphilosophica -catalogue-date 2015-08-23 19:56:46 +0200 -catalogue-license lppl1.3 -catalogue-topics journalpub class -catalogue-version 1.26 - -name resumecls -category Package -revision 37570 -shortdesc Typeset a resumee in both Chinese and English. -relocated 1 -longdesc The class provides a simple resumee structure that works, -longdesc natively, with both Chinese and English text. -runfiles size=1 - RELOC/tex/xelatex/resumecls/resumecls.cls -docfiles size=48 - RELOC/doc/xelatex/resumecls/Makefile - RELOC/doc/xelatex/resumecls/README.md - RELOC/doc/xelatex/resumecls/example/Makefile - RELOC/doc/xelatex/resumecls/example/README.md - RELOC/doc/xelatex/resumecls/example/config-sample.mk - RELOC/doc/xelatex/resumecls/example/config.mk - RELOC/doc/xelatex/resumecls/example/resume-en.pdf - RELOC/doc/xelatex/resumecls/example/resume-en.tex - RELOC/doc/xelatex/resumecls/example/resume-zh.pdf - RELOC/doc/xelatex/resumecls/example/resume-zh.tex - RELOC/doc/xelatex/resumecls/example/resume.bib - RELOC/doc/xelatex/resumecls/resumecls.pdf -srcfiles size=4 - RELOC/source/xelatex/resumecls/resumecls.dtx - RELOC/source/xelatex/resumecls/resumecls.ins -catalogue-ctan /macros/xetex/latex/resumecls -catalogue-date 2015-06-16 19:36:59 +0200 -catalogue-license lppl1.3 -catalogue-topics cv chinese class -catalogue-version 0.3 - -name resumemac -category Package -revision 15878 -shortdesc Plain TeX macros for resumes. -relocated 1 -longdesc A set of macros is provided, together with an file that offers -longdesc an example of use. -runfiles size=2 - RELOC/tex/plain/resumemac/resumemac.tex -docfiles size=2 - RELOC/doc/plain/resumemac/README - RELOC/doc/plain/resumemac/sample_resume.tex -catalogue-ctan /macros/plain/contrib/resumemac -catalogue-date 2014-11-07 14:37:14 +0100 -catalogue-license pd - -name reverxii -category Package -revision 24976 -shortdesc Playing Reversi in TeX. -relocated 1 -longdesc Following the lead of xii.tex, this little (938 characters) -longdesc program that plays Reversi. (The program incorporates some -longdesc primitive AI.) -docfiles size=55 - RELOC/doc/plain/reverxii/README - RELOC/doc/plain/reverxii/reverxii.pdf - RELOC/doc/plain/reverxii/reverxii.tex -catalogue-ctan /macros/plain/contrib/reverxii -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 - -name revtex4 -category Package -revision 16488 -relocated 1 -runfiles size=75 - RELOC/bibtex/bib/revtex4/apssamp.bib - RELOC/bibtex/bst/revtex4/apsrev.bst - RELOC/bibtex/bst/revtex4/apsrmp.bst - RELOC/tex/latex/revtex4/10pt.rtx - RELOC/tex/latex/revtex4/11pt.rtx - RELOC/tex/latex/revtex4/12pt.rtx - RELOC/tex/latex/revtex4/aps.rtx - RELOC/tex/latex/revtex4/docs.sty - RELOC/tex/latex/revtex4/revsymb.sty - RELOC/tex/latex/revtex4/revtex4.cls - RELOC/tex/latex/revtex4/rmp.rtx -docfiles size=407 - RELOC/doc/latex/revtex4/DOWNLOAD - RELOC/doc/latex/revtex4/README - RELOC/doc/latex/revtex4/apssamp.end - RELOC/doc/latex/revtex4/apssamp.tex - RELOC/doc/latex/revtex4/auguide.tex - RELOC/doc/latex/revtex4/differ.tex - RELOC/doc/latex/revtex4/fig_1.eps - RELOC/doc/latex/revtex4/fig_2.eps - RELOC/doc/latex/revtex4/ltxdocext.pdf - RELOC/doc/latex/revtex4/ltxgrid.pdf - RELOC/doc/latex/revtex4/ltxutil.pdf - RELOC/doc/latex/revtex4/revtex4.pdf - RELOC/doc/latex/revtex4/summary.tex - RELOC/doc/latex/revtex4/template.aps -srcfiles size=150 - RELOC/source/latex/revtex4/ltxdocext.dtx - RELOC/source/latex/revtex4/ltxgrid.dtx - RELOC/source/latex/revtex4/ltxutil.dtx - RELOC/source/latex/revtex4/revtex4.dtx - RELOC/source/latex/revtex4/revtex4.ins - RELOC/source/latex/revtex4/textcase.dtx - -name revtex -category Package -revision 19652 -catalogue revtex4-1 -shortdesc Styles for various Physics Journals. -relocated 1 -longdesc Includes styles for American Physical Society, American -longdesc Institute of Physics, and Optical Society of America. The -longdesc distribution consists of the RevTeX class itself, and several -longdesc support packages. -runfiles size=184 - RELOC/bibtex/bst/revtex/aipauth4-1.bst - RELOC/bibtex/bst/revtex/aipnum4-1.bst - RELOC/bibtex/bst/revtex/apsrev4-1.bst - RELOC/bibtex/bst/revtex/apsrmp4-1.bst - RELOC/tex/latex/revtex/aip4-1.rtx - RELOC/tex/latex/revtex/aps10pt4-1.rtx - RELOC/tex/latex/revtex/aps11pt4-1.rtx - RELOC/tex/latex/revtex/aps12pt4-1.rtx - RELOC/tex/latex/revtex/aps4-1.rtx - RELOC/tex/latex/revtex/apsrmp4-1.rtx - RELOC/tex/latex/revtex/ltxdocext.sty - RELOC/tex/latex/revtex/ltxfront.sty - RELOC/tex/latex/revtex/ltxgrid.sty - RELOC/tex/latex/revtex/ltxutil.sty - RELOC/tex/latex/revtex/reftest4-1.tex - RELOC/tex/latex/revtex/revsymb4-1.sty - RELOC/tex/latex/revtex/revtex4-1.cls -docfiles size=1263 - RELOC/doc/latex/revtex/00readme.tex - RELOC/doc/latex/revtex/DOWNLOAD - RELOC/doc/latex/revtex/README - RELOC/doc/latex/revtex/aip/aipguide4-1.pdf - RELOC/doc/latex/revtex/aip/aipguide4-1.tex - RELOC/doc/latex/revtex/aip/docs.sty - RELOC/doc/latex/revtex/aps/apsguide4-1.pdf - RELOC/doc/latex/revtex/aps/apsguide4-1.tex - RELOC/doc/latex/revtex/auguide/auguide4-1.pdf - RELOC/doc/latex/revtex/auguide/auguide4-1.tex - RELOC/doc/latex/revtex/auguide/docs.sty - RELOC/doc/latex/revtex/auguide/summary4-1.pdf - RELOC/doc/latex/revtex/auguide/summary4-1.tex - RELOC/doc/latex/revtex/auguide/whatsnew4-1.pdf - RELOC/doc/latex/revtex/auguide/whatsnew4-1.tex - RELOC/doc/latex/revtex/sample/aip/aipsamp.bib - RELOC/doc/latex/revtex/sample/aip/aipsamp.pdf - RELOC/doc/latex/revtex/sample/aip/aipsamp.tex - RELOC/doc/latex/revtex/sample/aip/aiptemplate.tex - RELOC/doc/latex/revtex/sample/aip/fig_1.eps - RELOC/doc/latex/revtex/sample/aip/fig_2.eps - RELOC/doc/latex/revtex/sample/aps/apssamp.bib - RELOC/doc/latex/revtex/sample/aps/apssamp.pdf - RELOC/doc/latex/revtex/sample/aps/apssamp.tex - RELOC/doc/latex/revtex/sample/aps/apstemplate.tex - RELOC/doc/latex/revtex/sample/aps/fig_1.eps - RELOC/doc/latex/revtex/sample/aps/fig_2.eps - RELOC/doc/latex/revtex/sample/aps/vid_1a.eps - RELOC/doc/latex/revtex/sample/aps/vid_1b.eps - RELOC/doc/latex/revtex/source/aip.pdf - RELOC/doc/latex/revtex/source/ltxdocext.pdf - RELOC/doc/latex/revtex/source/ltxfront.pdf - RELOC/doc/latex/revtex/source/ltxgrid.pdf - RELOC/doc/latex/revtex/source/ltxutil.pdf - RELOC/doc/latex/revtex/source/revtex4-1.pdf -srcfiles size=229 - RELOC/source/latex/revtex/aip.dtx - RELOC/source/latex/revtex/ltxdocext.dtx - RELOC/source/latex/revtex/ltxfront.dtx - RELOC/source/latex/revtex/ltxgrid.dtx - RELOC/source/latex/revtex/ltxutil.dtx - RELOC/source/latex/revtex/revtex4-1.dtx -catalogue-ctan /macros/latex/contrib/revtex -catalogue-date 2015-02-04 09:25:16 +0100 -catalogue-license lppl1.3 -catalogue-version 4.1r - -name ribbonproofs -category Package -revision 31137 -shortdesc Drawing ribbon proofs. -relocated 1 -longdesc The package provides a way to draw "ribbon proofs" in LaTeX. A -longdesc ribbon proof is a diagrammatic representation of a mathematical -longdesc proof that a computer program meets its specification. These -longdesc diagrams are more human-readable, more scalable, and more -longdesc easily modified than the corresponding textual proofs. -runfiles size=14 - RELOC/tex/latex/ribbonproofs/ribbonproofs.sty -docfiles size=93 - RELOC/doc/latex/ribbonproofs/README - RELOC/doc/latex/ribbonproofs/ribbonproofsmanual.pdf - RELOC/doc/latex/ribbonproofs/ribbonproofsmanual.tex -catalogue-ctan /macros/latex/contrib/ribbonproofs -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0 - -name rjlparshap -category Package -revision 15878 -shortdesc Support for use of \parshape in LaTeX. -relocated 1 -longdesc The package provides macros and environments that relieve the -longdesc programmer of some of the difficulties of using \parshape in -longdesc LaTeX macros. It does not actually calculate shapes in the way -longdesc that the shapepar package does. -runfiles size=2 - RELOC/tex/latex/rjlparshap/rjlpshap.sty -docfiles size=32 - RELOC/doc/latex/rjlparshap/README - RELOC/doc/latex/rjlparshap/rjlpshap.pdf -srcfiles size=8 - RELOC/source/latex/rjlparshap/rjlpshap.dtx - RELOC/source/latex/rjlparshap/rjlpshap.ins -catalogue-ctan /macros/latex/contrib/rjlparshap -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.2 -catalogue-version 1.0 - -name rlepsf -category Package -revision 19082 -shortdesc Rewrite labels in EPS graphics. -relocated 1 -longdesc A macro package for use with epsf.tex which allows PostScript -longdesc labels in an Encapsulated PostScript file to be replaced by TeX -longdesc labels. The package provides commands \relabel (simply replace -longdesc a PostScript string), \adjustrelabel (replace a PostScript -longdesc string, with position adjustment), and \extralabel (add a label -longdesc at given coordinates). You can, if you so choose, use the -longdesc facilities of the labelfig package in place of using -longdesc \extralabel. -runfiles size=2 - RELOC/tex/generic/rlepsf/rlepsf.tex -docfiles size=52 - RELOC/doc/generic/rlepsf/read.me - RELOC/doc/generic/rlepsf/rlepsdoc.ps -catalogue-ctan /macros/generic/rlepsf -catalogue-date 2012-06-04 13:41:04 +0200 -catalogue-license lppl - -name rmathbr -category Package -revision 37663 -shortdesc Repeating of math operator at the broken line and the new line in inline equations -relocated 1 -longdesc Repeating of math operators at the broken line and the new line -longdesc in inline equations is used in Cyrillic mathematical typography -longdesc (Russian for example), but unfortunately LaTeX does not provide -longdesc such an option. This package solves the problem by extending -longdesc ideas described in M. I. Grinchuk "TeX and Russian Traditions -longdesc of Typesetting", TUGboat 17(4) (1996) 385 and supports most of -longdesc LaTeX mathematical packages. See the documentation for details. -runfiles size=12 - RELOC/tex/latex/rmathbr/rmathbr.sty -docfiles size=61 - RELOC/doc/latex/rmathbr/README - RELOC/doc/latex/rmathbr/rmathbr.pdf -srcfiles size=17 - RELOC/source/latex/rmathbr/rmathbr.dtx - RELOC/source/latex/rmathbr/rmathbr.ins -catalogue-ctan /macros/latex/contrib/rmathbr -catalogue-date 2015-06-24 11:50:46 +0200 -catalogue-license lppl1.3 -catalogue-topics maths -catalogue-version 1.0.2 - -name rmpage -category Package -revision 20002 -shortdesc A package to help change page layout parameters in LaTeX. -relocated 1 -longdesc The package lets you change page layout parameters in small -longdesc steps over a range of values using options. It can set -longdesc \textwidth appropriately for the main fount, and ensure that -longdesc the text fits inside the printable area of a printer. An rmpage- -longdesc formatted document can be typeset identically without rmpage -longdesc after a single cut and paste operation. Local configuration can -longdesc set defaults: for all documents; and by class, by printer, and -longdesc by paper size. The geometry package is better if you want to -longdesc set page layout parameters to particular measurements. -runfiles size=66 - RELOC/tex/latex/rmpage/rmpage.sty - RELOC/tex/latex/rmpage/rmpgen.cfg -docfiles size=194 - RELOC/doc/latex/rmpage/readme - RELOC/doc/latex/rmpage/rmpage-doc.pdf - RELOC/doc/latex/rmpage/rmpage-doc.tex - RELOC/doc/latex/rmpage/rmpage.tex - RELOC/doc/latex/rmpage/rmplocal.gfc -catalogue-ctan /macros/latex/contrib/rmpage -catalogue-date 2012-06-13 13:45:03 +0200 -catalogue-license gpl -catalogue-version 0.92 - -name roboto -category Package -revision 36893 -shortdesc Support for the Roboto family of fonts. -relocated 1 -longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX -longdesc support for the Roboto, RobotoCondensed and RobotoSlab families -longdesc of fonts, designed by Christian Robertson for Google. -execute addMap roboto.map -runfiles size=4686 - RELOC/fonts/enc/dvips/roboto/rbto_2gjoqz.enc - RELOC/fonts/enc/dvips/roboto/rbto_4cxnmx.enc - RELOC/fonts/enc/dvips/roboto/rbto_4j5rgv.enc - RELOC/fonts/enc/dvips/roboto/rbto_5au2tj.enc - RELOC/fonts/enc/dvips/roboto/rbto_5xgh2b.enc - RELOC/fonts/enc/dvips/roboto/rbto_a5nkuh.enc - RELOC/fonts/enc/dvips/roboto/rbto_b3vvq3.enc - RELOC/fonts/enc/dvips/roboto/rbto_bergpl.enc - RELOC/fonts/enc/dvips/roboto/rbto_brv6l3.enc - RELOC/fonts/enc/dvips/roboto/rbto_bztncd.enc - RELOC/fonts/enc/dvips/roboto/rbto_ddkove.enc - RELOC/fonts/enc/dvips/roboto/rbto_ebhzxa.enc - RELOC/fonts/enc/dvips/roboto/rbto_h3wntv.enc - RELOC/fonts/enc/dvips/roboto/rbto_hhyavc.enc - RELOC/fonts/enc/dvips/roboto/rbto_i2gjg4.enc - RELOC/fonts/enc/dvips/roboto/rbto_idpkzy.enc - RELOC/fonts/enc/dvips/roboto/rbto_ihpqsf.enc - RELOC/fonts/enc/dvips/roboto/rbto_lxpby6.enc - RELOC/fonts/enc/dvips/roboto/rbto_n6nas2.enc - RELOC/fonts/enc/dvips/roboto/rbto_oa6oe5.enc - RELOC/fonts/enc/dvips/roboto/rbto_pjd75x.enc - RELOC/fonts/enc/dvips/roboto/rbto_r7ss7u.enc - RELOC/fonts/enc/dvips/roboto/rbto_rehtu3.enc - RELOC/fonts/enc/dvips/roboto/rbto_s7kfgd.enc - RELOC/fonts/enc/dvips/roboto/rbto_schjax.enc - RELOC/fonts/enc/dvips/roboto/rbto_svcybe.enc - RELOC/fonts/enc/dvips/roboto/rbto_t2643k.enc - RELOC/fonts/enc/dvips/roboto/rbto_tr5a5v.enc - RELOC/fonts/enc/dvips/roboto/rbto_uf77so.enc - RELOC/fonts/enc/dvips/roboto/rbto_usdwn6.enc - RELOC/fonts/enc/dvips/roboto/rbto_v5svcm.enc - RELOC/fonts/enc/dvips/roboto/rbto_wkn3wn.enc - RELOC/fonts/enc/dvips/roboto/rbto_yzgzr5.enc - RELOC/fonts/map/dvips/roboto/roboto.map - RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-lf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-lf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-lf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-lf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-lf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-lf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-lf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-lf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-lf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-lf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-lf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-lf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-lf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-lf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-lf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-lf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-lf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-lf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-lf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-lf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-lf-ts1.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-lf-ly1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-lf-ly1.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-lf-ot1.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-lf-t1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-lf-t1.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-lf-ts1--base.tfm - RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-lf-ts1.tfm - RELOC/fonts/truetype/google/roboto/Roboto-Black.ttf - RELOC/fonts/truetype/google/roboto/Roboto-BlackItalic.ttf - RELOC/fonts/truetype/google/roboto/Roboto-Bold.ttf - RELOC/fonts/truetype/google/roboto/Roboto-BoldItalic.ttf - RELOC/fonts/truetype/google/roboto/Roboto-Light.ttf - RELOC/fonts/truetype/google/roboto/Roboto-LightItalic.ttf - RELOC/fonts/truetype/google/roboto/Roboto-Medium.ttf - RELOC/fonts/truetype/google/roboto/Roboto-MediumItalic.ttf - RELOC/fonts/truetype/google/roboto/Roboto-Regular.ttf - RELOC/fonts/truetype/google/roboto/Roboto-RegularItalic.ttf - RELOC/fonts/truetype/google/roboto/Roboto-Thin.ttf - RELOC/fonts/truetype/google/roboto/Roboto-ThinItalic.ttf - RELOC/fonts/truetype/google/roboto/RobotoCondensed-Bold.ttf - RELOC/fonts/truetype/google/roboto/RobotoCondensed-BoldItalic.ttf - RELOC/fonts/truetype/google/roboto/RobotoCondensed-Light.ttf - RELOC/fonts/truetype/google/roboto/RobotoCondensed-LightItalic.ttf - RELOC/fonts/truetype/google/roboto/RobotoCondensed-Regular.ttf - RELOC/fonts/truetype/google/roboto/RobotoCondensed-RegularItalic.ttf - RELOC/fonts/truetype/google/roboto/RobotoSlab-Bold.ttf - RELOC/fonts/truetype/google/roboto/RobotoSlab-Light.ttf - RELOC/fonts/truetype/google/roboto/RobotoSlab-Regular.ttf - RELOC/fonts/truetype/google/roboto/RobotoSlab-Thin.ttf - RELOC/fonts/type1/google/roboto/Roboto-Black.pfb - RELOC/fonts/type1/google/roboto/Roboto-BlackItalic.pfb - RELOC/fonts/type1/google/roboto/Roboto-Bold.pfb - RELOC/fonts/type1/google/roboto/Roboto-BoldItalic.pfb - RELOC/fonts/type1/google/roboto/Roboto-Italic.pfb - RELOC/fonts/type1/google/roboto/Roboto-Light.pfb - RELOC/fonts/type1/google/roboto/Roboto-LightItalic.pfb - RELOC/fonts/type1/google/roboto/Roboto-Medium.pfb - RELOC/fonts/type1/google/roboto/Roboto-MediumItalic.pfb - RELOC/fonts/type1/google/roboto/Roboto-Regular.pfb - RELOC/fonts/type1/google/roboto/Roboto-Thin.pfb - RELOC/fonts/type1/google/roboto/Roboto-ThinItalic.pfb - RELOC/fonts/type1/google/roboto/RobotoCondensed-Bold.pfb - RELOC/fonts/type1/google/roboto/RobotoCondensed-BoldItalic.pfb - RELOC/fonts/type1/google/roboto/RobotoCondensed-Italic.pfb - RELOC/fonts/type1/google/roboto/RobotoCondensed-Light.pfb - RELOC/fonts/type1/google/roboto/RobotoCondensed-LightItalic.pfb - RELOC/fonts/type1/google/roboto/RobotoCondensed-Regular.pfb - RELOC/fonts/type1/google/roboto/RobotoSlab-Bold.pfb - RELOC/fonts/type1/google/roboto/RobotoSlab-Light.pfb - RELOC/fonts/type1/google/roboto/RobotoSlab-Regular.pfb - RELOC/fonts/type1/google/roboto/RobotoSlab-Thin.pfb - RELOC/fonts/vf/google/roboto/Roboto-Black-lf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Black-lf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Black-lf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Black-lf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Black-lf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Black-lf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Black-osf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Black-osf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Black-osf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Black-osf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Black-osf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Black-osf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Black-tlf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Black-tlf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Black-tlf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Black-tlf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Black-tlf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Black-tlf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Black-tosf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Black-tosf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Black-tosf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Black-tosf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Black-tosf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Black-tosf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-lf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-lf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-lf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-osf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-osf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-osf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tlf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tlf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tlf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tosf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tosf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tosf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Bold-lf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Bold-lf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Bold-lf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Bold-lf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Bold-lf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Bold-lf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Bold-osf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Bold-osf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Bold-osf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Bold-osf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Bold-osf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Bold-osf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Bold-tlf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Bold-tlf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Bold-tlf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Bold-tlf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Bold-tlf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Bold-tlf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Bold-tosf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Bold-tosf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Bold-tosf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Bold-tosf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Bold-tosf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Bold-tosf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-lf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-lf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-lf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-osf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-osf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-osf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tlf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tlf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tlf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tosf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tosf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tosf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Italic-lf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Italic-lf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Italic-lf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Italic-lf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Italic-lf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Italic-lf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Italic-osf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Italic-osf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Italic-osf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Italic-osf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Italic-osf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Italic-osf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Italic-tlf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Italic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Italic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Italic-tlf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Italic-tlf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Italic-tlf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Italic-tosf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Italic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Italic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Italic-tosf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Italic-tosf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Italic-tosf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Light-lf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Light-lf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Light-lf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Light-lf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Light-lf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Light-lf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Light-osf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Light-osf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Light-osf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Light-osf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Light-osf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Light-osf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Light-tlf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Light-tlf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Light-tlf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Light-tlf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Light-tlf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Light-tlf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Light-tosf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Light-tosf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Light-tosf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Light-tosf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Light-tosf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Light-tosf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-LightItalic-lf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-LightItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-LightItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-LightItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-LightItalic-lf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-LightItalic-lf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-LightItalic-osf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-LightItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-LightItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-LightItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-LightItalic-osf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-LightItalic-osf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tlf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tlf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tlf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tosf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tosf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tosf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Medium-lf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Medium-lf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Medium-lf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Medium-lf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Medium-lf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Medium-lf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Medium-osf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Medium-osf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Medium-osf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Medium-osf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Medium-osf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Medium-osf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Medium-tlf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Medium-tlf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Medium-tlf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Medium-tlf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Medium-tlf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Medium-tlf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Medium-tosf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Medium-tosf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Medium-tosf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Medium-tosf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Medium-tosf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Medium-tosf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-lf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-lf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-lf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-osf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-osf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-osf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tlf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tlf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tlf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tosf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tosf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tosf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Regular-lf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Regular-lf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Regular-lf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Regular-lf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Regular-lf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Regular-lf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Regular-osf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Regular-osf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Regular-osf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Regular-osf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Regular-osf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Regular-osf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Regular-tlf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Regular-tlf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Regular-tlf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Regular-tlf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Regular-tlf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Regular-tlf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Regular-tosf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Regular-tosf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Regular-tosf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Regular-tosf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Regular-tosf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Regular-tosf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Thin-lf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Thin-lf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Thin-lf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Thin-lf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Thin-lf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Thin-lf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Thin-osf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Thin-osf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Thin-osf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Thin-osf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Thin-osf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Thin-osf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Thin-tlf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Thin-tlf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Thin-tlf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Thin-tlf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Thin-tlf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Thin-tlf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-Thin-tosf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Thin-tosf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-Thin-tosf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-Thin-tosf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Thin-tosf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-Thin-tosf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-lf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-lf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-lf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-osf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-osf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-osf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tlf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tlf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tlf-ts1.vf - RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tosf-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tosf-t1.vf - RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tosf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-lf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-lf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-lf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-lf-sc-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-lf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-lf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-osf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-osf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-osf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-osf-sc-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-osf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-osf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tlf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tlf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tlf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tlf-sc-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tlf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tlf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tosf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tosf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tosf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tosf-sc-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tosf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tosf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-lf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-lf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-lf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-osf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-osf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-osf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tlf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tlf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tlf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tosf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tosf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tosf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-lf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-lf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-lf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-lf-sc-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-lf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-lf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-osf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-osf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-osf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-osf-sc-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-osf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-osf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tlf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tlf-sc-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tlf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tlf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tosf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tosf-sc-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tosf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tosf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-lf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-lf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-lf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-lf-sc-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-lf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-lf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-osf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-osf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-osf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-osf-sc-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-osf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-osf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tlf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tlf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tlf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tlf-sc-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tlf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tlf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tosf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tosf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tosf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tosf-sc-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tosf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tosf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-lf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-lf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-lf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-osf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-osf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-osf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tlf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tlf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tlf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tosf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tosf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tosf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-lf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-lf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-lf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-lf-sc-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-lf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-lf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-osf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-osf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-osf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-osf-sc-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-osf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-osf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tlf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tlf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tlf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tlf-sc-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tlf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tlf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tosf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tosf-sc-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tosf-sc-ot1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tosf-sc-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tosf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tosf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoSlab-Bold-lf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoSlab-Bold-lf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoSlab-Bold-lf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoSlab-Light-lf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoSlab-Light-lf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoSlab-Light-lf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoSlab-Regular-lf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoSlab-Regular-lf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoSlab-Regular-lf-ts1.vf - RELOC/fonts/vf/google/roboto/RobotoSlab-Thin-lf-ly1.vf - RELOC/fonts/vf/google/roboto/RobotoSlab-Thin-lf-t1.vf - RELOC/fonts/vf/google/roboto/RobotoSlab-Thin-lf-ts1.vf - RELOC/tex/latex/roboto/LY1Roboto-LF.fd - RELOC/tex/latex/roboto/LY1Roboto-OsF.fd - RELOC/tex/latex/roboto/LY1Roboto-TLF.fd - RELOC/tex/latex/roboto/LY1Roboto-TOsF.fd - RELOC/tex/latex/roboto/LY1RobotoCondensed-LF.fd - RELOC/tex/latex/roboto/LY1RobotoCondensed-OsF.fd - RELOC/tex/latex/roboto/LY1RobotoCondensed-TLF.fd - RELOC/tex/latex/roboto/LY1RobotoCondensed-TOsF.fd - RELOC/tex/latex/roboto/LY1RobotoSlab-LF.fd - RELOC/tex/latex/roboto/OT1Roboto-LF.fd - RELOC/tex/latex/roboto/OT1Roboto-OsF.fd - RELOC/tex/latex/roboto/OT1Roboto-TLF.fd - RELOC/tex/latex/roboto/OT1Roboto-TOsF.fd - RELOC/tex/latex/roboto/OT1RobotoCondensed-LF.fd - RELOC/tex/latex/roboto/OT1RobotoCondensed-OsF.fd - RELOC/tex/latex/roboto/OT1RobotoCondensed-TLF.fd - RELOC/tex/latex/roboto/OT1RobotoCondensed-TOsF.fd - RELOC/tex/latex/roboto/OT1RobotoSlab-LF.fd - RELOC/tex/latex/roboto/T1Roboto-LF.fd - RELOC/tex/latex/roboto/T1Roboto-OsF.fd - RELOC/tex/latex/roboto/T1Roboto-TLF.fd - RELOC/tex/latex/roboto/T1Roboto-TOsF.fd - RELOC/tex/latex/roboto/T1RobotoCondensed-LF.fd - RELOC/tex/latex/roboto/T1RobotoCondensed-OsF.fd - RELOC/tex/latex/roboto/T1RobotoCondensed-TLF.fd - RELOC/tex/latex/roboto/T1RobotoCondensed-TOsF.fd - RELOC/tex/latex/roboto/T1RobotoSlab-LF.fd - RELOC/tex/latex/roboto/TS1Roboto-LF.fd - RELOC/tex/latex/roboto/TS1Roboto-OsF.fd - RELOC/tex/latex/roboto/TS1Roboto-TLF.fd - RELOC/tex/latex/roboto/TS1Roboto-TOsF.fd - RELOC/tex/latex/roboto/TS1RobotoCondensed-LF.fd - RELOC/tex/latex/roboto/TS1RobotoCondensed-OsF.fd - RELOC/tex/latex/roboto/TS1RobotoCondensed-TLF.fd - RELOC/tex/latex/roboto/TS1RobotoCondensed-TOsF.fd - RELOC/tex/latex/roboto/TS1RobotoSlab-LF.fd - RELOC/tex/latex/roboto/roboto.sty -docfiles size=23 - RELOC/doc/fonts/roboto/LICENSE.txt - RELOC/doc/fonts/roboto/README - RELOC/doc/fonts/roboto/samples.pdf - RELOC/doc/fonts/roboto/samples.tex -catalogue-ctan /fonts/roboto -catalogue-date 2015-04-17 12:43:59 +0200 -catalogue-license apache2 - -name robustcommand -category Package -revision 15878 -shortdesc Declare robust command, with \newcommand checks. -relocated 1 -longdesc The package merely provides a variation of -longdesc \DeclareRobustCommand, which checks for the existence of a -longdesc command before declaring it robust. -runfiles size=1 - RELOC/tex/latex/robustcommand/robustcommand.sty -docfiles size=19 - RELOC/doc/latex/robustcommand/README - RELOC/doc/latex/robustcommand/robustcommand.pdf -srcfiles size=3 - RELOC/source/latex/robustcommand/robustcommand.dtx - RELOC/source/latex/robustcommand/robustcommand.ins -catalogue-ctan /macros/latex/contrib/robustcommand -catalogue-date 2012-06-13 13:45:03 +0200 -catalogue-license lppl -catalogue-version 0.1 - -name robustindex -category Package -revision 15878 -shortdesc Create index with pagerefs. -relocated 1 -longdesc Third parties often change the page numbers without rerunning -longdesc makeindex. One would like to make the page numbers in the index -longdesc entries more robust. This bundle provides robustindex.sty and -longdesc robustglossary.sty, which use the \pageref mechanism to -longdesc maintain correct page numbers -runfiles size=3 - RELOC/tex/latex/robustindex/robustglossary.sty - RELOC/tex/latex/robustindex/robustindex.sty -docfiles size=34 - RELOC/doc/latex/robustindex/README - RELOC/doc/latex/robustindex/robustindex.html - RELOC/doc/latex/robustindex/robustsample.pdf - RELOC/doc/latex/robustindex/robustsample.tex -catalogue-ctan /macros/latex/contrib/robustindex -catalogue-date 2012-06-15 21:53:47 +0200 -catalogue-license lppl - -name roex -category Package -revision 15878 -relocated 1 -runfiles size=17 - RELOC/metafont/roex/roex.mf -srcfiles size=17 - RELOC/source/metafont/roex/0roex.doc - RELOC/source/metafont/roex/roexsamp/0roexsam.doc - RELOC/source/metafont/roex/roexsamp/es-01.mf - RELOC/source/metafont/roex/roexsamp/es-02.mf - RELOC/source/metafont/roex/roexsamp/es-03.mf - RELOC/source/metafont/roex/roexsamp/ro-01.mf - RELOC/source/metafont/roex/roexsamp/ro-02.mf - RELOC/source/metafont/roex/roexsamp/ro-03.mf - RELOC/source/metafont/roex/roexsamp/ro-04.mf - RELOC/source/metafont/roex/roexsamp/ro-05.mf - RELOC/source/metafont/roex/roexsamp/ro-06.mf - RELOC/source/metafont/roex/roexsamp/ro-07.mf - RELOC/source/metafont/roex/roexsamp/roes-01.mf - RELOC/source/metafont/roex/roexsamp/roes-02.mf - RELOC/source/metafont/roex/roexsamp/roes-03.mf - RELOC/source/metafont/roex/roexsamp/roes-04.mf - -name romanbarpagenumber -category Package -revision 36236 -shortdesc Typesetting roman page numbers. -relocated 1 -longdesc The package romanbar allows to typeset roman numbers with bars. -longdesc This package allows you to use those roman numbers as page -longdesc number. -runfiles size=1 - RELOC/tex/latex/romanbarpagenumber/romanbarpagenumber.sty -docfiles size=54 - RELOC/doc/latex/romanbarpagenumber/README - RELOC/doc/latex/romanbarpagenumber/romanbarpagenumber.pdf -srcfiles size=3 - RELOC/source/latex/romanbarpagenumber/romanbarpagenumber.dtx - RELOC/source/latex/romanbarpagenumber/romanbarpagenumber.ins -catalogue-ctan /macros/latex/contrib/romanbarpagenumber -catalogue-date 2015-03-01 06:19:26 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0 - -name romanbar -category Package -revision 25005 -shortdesc Write roman number with "bars". -relocated 1 -longdesc 'Bars', in the present context, are lines above and below text -longdesc that abut with the text. Barred roman numerals are sometimes -longdesc found in publications. The package provides a function that -longdesc prints barred roman numerals (converting arabic numerals if -longdesc necessary). The package also provides a predicate \ifnumeric. -runfiles size=2 - RELOC/tex/latex/romanbar/romanbar.sty -docfiles size=93 - RELOC/doc/latex/romanbar/README - RELOC/doc/latex/romanbar/romanbar-example.pdf - RELOC/doc/latex/romanbar/romanbar-example.tex - RELOC/doc/latex/romanbar/romanbar.pdf -srcfiles size=10 - RELOC/source/latex/romanbar/romanbar.drv - RELOC/source/latex/romanbar/romanbar.dtx - RELOC/source/latex/romanbar/romanbar.ins -catalogue-ctan /macros/latex/contrib/romanbar -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0f - -name romande -category Package -revision 19537 -catalogue romandeadf -shortdesc Romande ADF fonts and LaTeX support. -relocated 1 -longdesc Romande ADF is a serif font family with oldstyle figures, -longdesc designed as a substitute for Times, Tiffany or Caslon. The -longdesc family currently includes upright, italic and small-caps shapes -longdesc in each of regular and demi-bold weights and an italic script -longdesc in regular. The support package renames the fonts according to -longdesc the Karl Berry fontname scheme and defines four families. Two -longdesc of these primarily provide access to the "standard" or default -longdesc characters while the "alternate" families support alternate -longdesc characters, additional ligatures and the long s. The included -longdesc package files provide access to these features in LaTeX as -longdesc explained in the documentation. The LaTeX support requires the -longdesc nfssext-cfr and the xkeyval packages. -execute addMap yrd.map -runfiles size=281 - RELOC/fonts/afm/arkandis/romande/yrdd8a.afm - RELOC/fonts/afm/arkandis/romande/yrddc8a.afm - RELOC/fonts/afm/arkandis/romande/yrddi8a.afm - RELOC/fonts/afm/arkandis/romande/yrdr8a.afm - RELOC/fonts/afm/arkandis/romande/yrdrc8a.afm - RELOC/fonts/afm/arkandis/romande/yrdri8a.afm - RELOC/fonts/afm/arkandis/romande/yrdriw8a.afm - RELOC/fonts/enc/dvips/romande/romande-supp.enc - RELOC/fonts/enc/dvips/romande/t1-romandeadf-alt.enc - RELOC/fonts/enc/dvips/romande/t1-romandeadf.enc - RELOC/fonts/enc/dvips/romande/ts1-euro-yrd.enc - RELOC/fonts/map/dvips/romande/yrd.map - RELOC/fonts/tfm/arkandis/romande/s-yrdd.tfm - RELOC/fonts/tfm/arkandis/romande/s-yrddi.tfm - RELOC/fonts/tfm/arkandis/romande/s-yrdr.tfm - RELOC/fonts/tfm/arkandis/romande/s-yrdri.tfm - RELOC/fonts/tfm/arkandis/romande/s-yrdriw.tfm - RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-alt-yrdd.tfm - RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-alt-yrddi.tfm - RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-alt-yrdr.tfm - RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-alt-yrdri.tfm - RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-alt-yrdriw.tfm - RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-yrdd.tfm - RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-yrddc.tfm - RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-yrddi.tfm - RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-yrdr.tfm - RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-yrdrc.tfm - RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-yrdri.tfm - RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-yrdriw.tfm - RELOC/fonts/tfm/arkandis/romande/ts1-yrdd.tfm - RELOC/fonts/tfm/arkandis/romande/ts1-yrddi.tfm - RELOC/fonts/tfm/arkandis/romande/ts1-yrdr.tfm - RELOC/fonts/tfm/arkandis/romande/ts1-yrdri.tfm - RELOC/fonts/tfm/arkandis/romande/ts1-yrdriw.tfm - RELOC/fonts/tfm/arkandis/romande/yrdd8c.tfm - RELOC/fonts/tfm/arkandis/romande/yrdd8t.tfm - RELOC/fonts/tfm/arkandis/romande/yrdda8t.tfm - RELOC/fonts/tfm/arkandis/romande/yrddai8t.tfm - RELOC/fonts/tfm/arkandis/romande/yrddc8t.tfm - RELOC/fonts/tfm/arkandis/romande/yrddi8c.tfm - RELOC/fonts/tfm/arkandis/romande/yrddi8t.tfm - RELOC/fonts/tfm/arkandis/romande/yrdr8c.tfm - RELOC/fonts/tfm/arkandis/romande/yrdr8t.tfm - RELOC/fonts/tfm/arkandis/romande/yrdra8t.tfm - RELOC/fonts/tfm/arkandis/romande/yrdrai8t.tfm - RELOC/fonts/tfm/arkandis/romande/yrdraiw8t.tfm - RELOC/fonts/tfm/arkandis/romande/yrdrc8t.tfm - RELOC/fonts/tfm/arkandis/romande/yrdri8c.tfm - RELOC/fonts/tfm/arkandis/romande/yrdri8t.tfm - RELOC/fonts/tfm/arkandis/romande/yrdriw8c.tfm - RELOC/fonts/tfm/arkandis/romande/yrdriw8t.tfm - RELOC/fonts/type1/arkandis/romande/yrdd8a.pfb - RELOC/fonts/type1/arkandis/romande/yrdd8a.pfm - RELOC/fonts/type1/arkandis/romande/yrddc8a.pfb - RELOC/fonts/type1/arkandis/romande/yrddc8a.pfm - RELOC/fonts/type1/arkandis/romande/yrddi8a.pfb - RELOC/fonts/type1/arkandis/romande/yrddi8a.pfm - RELOC/fonts/type1/arkandis/romande/yrdr8a.pfb - RELOC/fonts/type1/arkandis/romande/yrdr8a.pfm - RELOC/fonts/type1/arkandis/romande/yrdrc8a.pfb - RELOC/fonts/type1/arkandis/romande/yrdrc8a.pfm - RELOC/fonts/type1/arkandis/romande/yrdri8a.pfb - RELOC/fonts/type1/arkandis/romande/yrdri8a.pfm - RELOC/fonts/type1/arkandis/romande/yrdriw8a.pfb - RELOC/fonts/type1/arkandis/romande/yrdriw8a.pfm - RELOC/fonts/vf/arkandis/romande/yrdd8c.vf - RELOC/fonts/vf/arkandis/romande/yrdd8t.vf - RELOC/fonts/vf/arkandis/romande/yrdda8t.vf - RELOC/fonts/vf/arkandis/romande/yrddai8t.vf - RELOC/fonts/vf/arkandis/romande/yrddc8t.vf - RELOC/fonts/vf/arkandis/romande/yrddi8c.vf - RELOC/fonts/vf/arkandis/romande/yrddi8t.vf - RELOC/fonts/vf/arkandis/romande/yrdr8c.vf - RELOC/fonts/vf/arkandis/romande/yrdr8t.vf - RELOC/fonts/vf/arkandis/romande/yrdra8t.vf - RELOC/fonts/vf/arkandis/romande/yrdrai8t.vf - RELOC/fonts/vf/arkandis/romande/yrdraiw8t.vf - RELOC/fonts/vf/arkandis/romande/yrdrc8t.vf - RELOC/fonts/vf/arkandis/romande/yrdri8c.vf - RELOC/fonts/vf/arkandis/romande/yrdri8t.vf - RELOC/fonts/vf/arkandis/romande/yrdriw8c.vf - RELOC/fonts/vf/arkandis/romande/yrdriw8t.vf - RELOC/tex/latex/romande/romande.sty - RELOC/tex/latex/romande/t1yrd.fd - RELOC/tex/latex/romande/t1yrda.fd - RELOC/tex/latex/romande/t1yrdaw.fd - RELOC/tex/latex/romande/t1yrdw.fd - RELOC/tex/latex/romande/ts1yrd.fd - RELOC/tex/latex/romande/ts1yrda.fd - RELOC/tex/latex/romande/ts1yrdaw.fd - RELOC/tex/latex/romande/ts1yrdw.fd -docfiles size=86 - RELOC/doc/fonts/romande/COPYING - RELOC/doc/fonts/romande/NOTICE.txt - RELOC/doc/fonts/romande/README - RELOC/doc/fonts/romande/manifest.txt - RELOC/doc/fonts/romande/romandeadf.pdf - RELOC/doc/fonts/romande/romandeadf.tex -srcfiles size=25 - RELOC/source/fonts/romande/reglyph-yrd.tex - RELOC/source/fonts/romande/romande-supp.etx - RELOC/source/fonts/romande/t1-romandeadf-alt.etx - RELOC/source/fonts/romande/t1-romandeadf.etx - RELOC/source/fonts/romande/ts1-euro.etx - RELOC/source/fonts/romande/yrd-drv.tex - RELOC/source/fonts/romande/yrd-map.tex -catalogue-ctan /fonts/romandeadf -catalogue-date 2014-05-07 23:10:33 +0200 -catalogue-license lppl -catalogue-version 1.008-v7-sc - -name romanneg -category Package -revision 20087 -shortdesc Roman page numbers negative. -relocated 1 -longdesc Causes the page numbers in the DVI file (as defined by \count0) -longdesc to be negative when roman pagenumbering is in effect. -runfiles size=1 - RELOC/tex/latex/romanneg/romanneg.sty -docfiles size=46 - RELOC/doc/latex/romanneg/romanneg.ltx - RELOC/doc/latex/romanneg/romanneg.pdf -catalogue-ctan /macros/latex/contrib/romanneg -catalogue-date 2012-06-15 21:53:47 +0200 -catalogue-license pd - -name romannum -category Package -revision 15878 -shortdesc Generate roman numerals instead of arabic digits. -relocated 1 -longdesc The romannum package changes LaTeX generated numbers to be -longdesc printed with roman numerals instead of arabic digits. It -longdesc requires the stdclsdv package. Users of the bookhands fonts may -longdesc find this package useful. -runfiles size=2 - RELOC/tex/latex/romannum/romannum.sty -docfiles size=37 - RELOC/doc/latex/romannum/README - RELOC/doc/latex/romannum/romannum.pdf -srcfiles size=6 - RELOC/source/latex/romannum/romannum.dtx - RELOC/source/latex/romannum/romannum.ins -catalogue-ctan /macros/latex/contrib/romannum -catalogue-date 2012-06-15 21:53:47 +0200 -catalogue-license lppl -catalogue-version 1.0b - -name rotating -category Package -revision 16832 -shortdesc Rotation tools, including rotated full-page floats. -relocated 1 -longdesc A package built on the standard LaTeX graphics package to -longdesc perform all the different sorts of rotation one might like, -longdesc including complete figures and tables with their captions. If -longdesc you want continuous text (i.e., more than one page) set in -longdesc landscape mode, use the lscape package instead. The rotating -longdesc packages only deals in rotated boxes (or floats, which are -longdesc themselves boxes), and boxes always stay on one page. If you -longdesc need to use the facilities of the float in the same document, -longdesc load rotating.sty via rotfloat, which smooths the path between -longdesc the rotating and float packages. -runfiles size=2 - RELOC/tex/latex/rotating/rotating.sty -docfiles size=32 - RELOC/doc/latex/rotating/README - RELOC/doc/latex/rotating/cat.eps - RELOC/doc/latex/rotating/examples.tex - RELOC/doc/latex/rotating/rotating.pdf -srcfiles size=7 - RELOC/source/latex/rotating/rotating.dtx - RELOC/source/latex/rotating/rotating.ins -catalogue-ctan /macros/latex/contrib/rotating -catalogue-date 2013-05-02 11:49:25 +0200 -catalogue-license lppl -catalogue-version 2.16b - -name rotfloat -category Package -revision 18292 -shortdesc Rotate floats. -relocated 1 -longdesc The float package provides commands to define new floats of -longdesc various styles (plain, boxed, ruled, and userdefined ones); the -longdesc rotating package provides new environments (sidewaysfigure and -longdesc sidewaystable) which are rotated by 90 or 270 degrees. But what -longdesc about new rotated floats, e.g. a rotated ruled one? This -longdesc package makes this possible; it builds a bridge between the two -longdesc packages and extends the commands from the float package to -longdesc define rotated versions of the new floats, too. -runfiles size=1 - RELOC/tex/latex/rotfloat/rotfloat.sty -docfiles size=58 - RELOC/doc/latex/rotfloat/examples.tex - RELOC/doc/latex/rotfloat/rotfloat.pdf -srcfiles size=6 - RELOC/source/latex/rotfloat/rotfloat.dtx - RELOC/source/latex/rotfloat/rotfloat.ins -catalogue-ctan /macros/latex/contrib/rotfloat -catalogue-date 2012-06-15 21:53:47 +0200 -catalogue-license lppl -catalogue-version 1.2 - -name rotpages -category Package -revision 18740 -shortdesc Typeset sets of pages upside-down and backwards. -relocated 1 -longdesc The rotpages package allows you to format documents where small -longdesc sets of pages are rotated by 180 degrees and rearranged, so -longdesc that they can be read by turning the printed copy upside-down. -longdesc It was developed for collecting exercises and solutions: using -longdesc the package, you can print the exercise text normally and the -longdesc solutions rotated. -runfiles size=2 - RELOC/tex/latex/rotpages/rotpages.sty -docfiles size=57 - RELOC/doc/latex/rotpages/Documentation/rotpages-doc.pdf - RELOC/doc/latex/rotpages/Documentation/rotpages-doc.tex - RELOC/doc/latex/rotpages/Examples/rotpages-doublecolumn-ex.pdf - RELOC/doc/latex/rotpages/Examples/rotpages-doublecolumn-ex.tex - RELOC/doc/latex/rotpages/Examples/rotpages-fancy-ex.pdf - RELOC/doc/latex/rotpages/Examples/rotpages-fancy-ex.tex - RELOC/doc/latex/rotpages/Examples/rotpages-singlecolumn-ex.pdf - RELOC/doc/latex/rotpages/Examples/rotpages-singlecolumn-ex.tex - RELOC/doc/latex/rotpages/README -catalogue-ctan /macros/latex/contrib/rotpages -catalogue-date 2012-06-17 11:01:39 +0200 -catalogue-license lppl -catalogue-version 3.0 - -name roundbox -category Package -revision 29675 -shortdesc Round boxes in LaTeX. -relocated 1 -longdesc This package implements a command \roundbox that can be used, -longdesc in LaTeX, for producing boxes, framed with rounded corners. -runfiles size=1 - RELOC/tex/latex/roundbox/roundbox.sty -docfiles size=1 - RELOC/doc/latex/roundbox/README -catalogue-ctan /macros/latex/contrib/roundbox -catalogue-date 2014-09-06 11:41:56 +0200 -catalogue-license lppl1.3 -catalogue-version 0.2 - -name roundrect -category Package -revision 38070 -shortdesc Metapost macros for highly configurable rounded rectangles (optionally with text) -relocated 1 -longdesc The roundrect macros for Metapost provide ways to produce -longdesc rounded rectangles, which may or may not contain a title bar or -longdesc text (the title bar may itself contain text). They are -longdesc extremely configurable. -runfiles size=2 - RELOC/metapost/roundrect/roundrect.mp -docfiles size=54 - RELOC/doc/metapost/roundrect/CHANGES - RELOC/doc/metapost/roundrect/README - RELOC/doc/metapost/roundrect/lppl.txt - RELOC/doc/metapost/roundrect/roundrect.pdf -srcfiles size=7 - RELOC/source/metapost/roundrect/roundrect.dtx - RELOC/source/metapost/roundrect/roundrect.ins -catalogue-ctan /graphics/metapost/contrib/macros/roundrect -catalogue-date 2015-08-07 19:37:47 +0200 -catalogue-license lppl1.3 -catalogue-topics graphics -catalogue-version 2.1 - -name rrgtrees -category Package -revision 27322 -shortdesc Linguistic tree diagrams for Role and Reference Grammar (RRG) with LaTeX. -relocated 1 -longdesc A set of LaTeX macros that makes it easy to produce linguistic -longdesc tree diagrams suitable for Role and Reference Grammar (RRG). -longdesc This package allows the construction of trees with crossing -longdesc lines, as is required by this theory for many languages. There -longdesc is no known limit on number of tree nodes or levels. Requires -longdesc the pst-node and pst-tree LaTeX packages. -runfiles size=3 - RELOC/tex/latex/rrgtrees/rrgtrees.sty -docfiles size=28 - RELOC/doc/latex/rrgtrees/Makefile - RELOC/doc/latex/rrgtrees/README - RELOC/doc/latex/rrgtrees/rrgtrees.pdf -srcfiles size=9 - RELOC/source/latex/rrgtrees/rrgtrees.dtx - RELOC/source/latex/rrgtrees/rrgtrees.ins -catalogue-ctan /macros/latex/contrib/rrgtrees -catalogue-date 2012-08-13 12:34:19 +0200 -catalogue-license lppl -catalogue-version 1.1 - -name rsc -category Package -revision 20942 -shortdesc BibTeX style for use with RSC journals. -relocated 1 -longdesc The rsc package provides a BibTeX style in accordance with the -longdesc requirements of the Royal Society of Chemistry. It was -longdesc originally based on the file pccp.bst, but also implements a -longdesc number of styles from the achemso package. The package is now a -longdesc stub for the chemstyle package, which the author developed to -longdesc unify the writing of articles with a chemistry content. -runfiles size=15 - RELOC/bibtex/bst/rsc/angew.bst - RELOC/bibtex/bst/rsc/rsc.bst - RELOC/tex/latex/rsc/rsc.sty -docfiles size=43 - RELOC/doc/latex/rsc/README - RELOC/doc/latex/rsc/rsc-demo.tex - RELOC/doc/latex/rsc/rsc.bib - RELOC/doc/latex/rsc/rsc.pdf -srcfiles size=15 - RELOC/source/latex/rsc/rsc.dtx - RELOC/source/latex/rsc/rsc.ins -catalogue-ctan /macros/latex/contrib/rsc -catalogue-date 2012-06-04 16:55:44 +0200 -catalogue-license gpl -catalogue-version 3.1e - -name rsfso -category Package -revision 37965 -shortdesc A mathematical calligraphic font based on rsfs. -relocated 1 -longdesc The package provides virtual fonts and LaTeX support files for -longdesc mathematical calligraphic fonts based on the rsfs Adobe Type 1 -longdesc fonts (which must also be present for successful installation, -longdesc with the slant substantially reduced. The output is quite -longdesc similar to that from the Adobe Mathematical Pi script font. -execute addMap rsfso.map -runfiles size=12 - RELOC/fonts/map/dvips/rsfso/rsfso.map - RELOC/fonts/tfm/public/rsfso/rrsfso10.tfm - RELOC/fonts/tfm/public/rsfso/rrsfso5.tfm - RELOC/fonts/tfm/public/rsfso/rrsfso7.tfm - RELOC/fonts/tfm/public/rsfso/rsfso10.tfm - RELOC/fonts/tfm/public/rsfso/rsfso5.tfm - RELOC/fonts/tfm/public/rsfso/rsfso7.tfm - RELOC/fonts/vf/public/rsfso/rsfso10.vf - RELOC/fonts/vf/public/rsfso/rsfso5.vf - RELOC/fonts/vf/public/rsfso/rsfso7.vf - RELOC/tex/latex/rsfso/rsfso.sty - RELOC/tex/latex/rsfso/ursfso.fd -docfiles size=38 - RELOC/doc/fonts/rsfso/README - RELOC/doc/fonts/rsfso/mh2scr0.png - RELOC/doc/fonts/rsfso/rsfso-doc.pdf - RELOC/doc/fonts/rsfso/rsfso-doc.tex -catalogue-also calrsfs mathrsfs -catalogue-ctan /fonts/rsfso -catalogue-date 2015-07-25 09:07:44 +0200 -catalogue-license lppl -catalogue-topics font font-virtual font-calligraphic -catalogue-version 1.02 - -name rsfs -category Package -revision 15878 -shortdesc Ralph Smith's Formal Script font. -relocated 1 -longdesc The fonts provide uppercase 'formal' script letters for use as -longdesc symbols in scientific and mathematical typesetting (in contrast -longdesc to the informal script fonts such as that used for the -longdesc 'calligraphic' symbols in the TeX maths symbol font). The fonts -longdesc are provided as Metafont source, and as derived Adobe Type 1 -longdesc format. LaTeX support, for using these fonts in mathematics, is -longdesc available via one of the packages calrsfs and mathrsfs. -execute addMixedMap rsfs.map -runfiles size=35 - RELOC/fonts/afm/public/rsfs/rsfs10.afm - RELOC/fonts/afm/public/rsfs/rsfs5.afm - RELOC/fonts/afm/public/rsfs/rsfs7.afm - RELOC/fonts/map/dvips/rsfs/rsfs.map - RELOC/fonts/source/public/rsfs/rsfs10.mf - RELOC/fonts/source/public/rsfs/rsfs5.mf - RELOC/fonts/source/public/rsfs/rsfs7.mf - RELOC/fonts/source/public/rsfs/script.mf - RELOC/fonts/source/public/rsfs/scriptu.mf - RELOC/fonts/tfm/public/rsfs/rsfs10.tfm - RELOC/fonts/tfm/public/rsfs/rsfs5.tfm - RELOC/fonts/tfm/public/rsfs/rsfs7.tfm - RELOC/fonts/type1/public/rsfs/rsfs10.pfb - RELOC/fonts/type1/public/rsfs/rsfs10.pfm - RELOC/fonts/type1/public/rsfs/rsfs5.pfb - RELOC/fonts/type1/public/rsfs/rsfs5.pfm - RELOC/fonts/type1/public/rsfs/rsfs7.pfb - RELOC/fonts/type1/public/rsfs/rsfs7.pfm - RELOC/tex/plain/rsfs/scrload.tex -docfiles size=2 - RELOC/doc/fonts/rsfs/README - RELOC/doc/fonts/rsfs/README.type1 -catalogue-ctan /fonts/rsfs -catalogue-date 2014-05-07 23:10:33 +0200 -catalogue-license other-free - -name rterface -category Package -revision 30084 -shortdesc Access to R analysis from within a document. -relocated 1 -longdesc The package mediates interaction between LaTeX and R; it allows -longdesc LaTeX to set R's parameters, and provides code to read R -longdesc output. -runfiles size=1 - RELOC/tex/latex/rterface/rterface.sty -docfiles size=19 - RELOC/doc/latex/rterface/README - RELOC/doc/latex/rterface/rterface.pdf - RELOC/doc/latex/rterface/rterface.tex -catalogue-ctan /macros/latex/contrib/rterface -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.2 - -name rtkinenc -category Package -revision 20003 -shortdesc Input encoding with fallback procedures. -relocated 1 -longdesc The rtkinenc package is functionally similar to the standard -longdesc LaTeX package inputenc: both set up active characters so that -longdesc an input character outside the range of 7-bit visible ASCII is -longdesc coverted into one or more corresponding LaTeX commands. The -longdesc main difference lies in that rtkinenc allows the user to -longdesc specify a fallback procedure to use when the text command -longdesc corresponding to some input character isn't available. Names of -longdesc commands in rtkinenc have been selected so that it can read -longdesc inputenc encoding definition files, and the aim is that -longdesc rtkinenc should be backwards compatible with inputenc. rtkinenc -longdesc is not a new version of inputenc though, nor is it part of -longdesc standard LaTeX. For an example of how rtkinenc is used, the -longdesc user may look at the tclldoc class. -runfiles size=2 - RELOC/tex/latex/rtkinenc/rtkinenc.sty -docfiles size=65 - RELOC/doc/latex/rtkinenc/README.txt - RELOC/doc/latex/rtkinenc/rtkinenc-doc.pdf - RELOC/doc/latex/rtkinenc/rtkinenc-doc.tex -srcfiles size=7 - RELOC/source/latex/rtkinenc/rtkinenc.dtx - RELOC/source/latex/rtkinenc/rtkinenc.ins -catalogue-ctan /macros/latex/contrib/rtkinenc -catalogue-date 2012-06-04 16:55:44 +0200 -catalogue-license lppl -catalogue-version 1.0 - -name rtklage -category Package -revision 15878 -catalogue ratex -shortdesc A package for German lawyers -relocated 1 -longdesc RATeX is a newly developed bundle of packages and classes -longdesc provided for German lawyers. Now in the early beginning it only -longdesc contains rtklage, a class to make lawsuits. -runfiles size=1 - RELOC/tex/latex/rtklage/rtklage.cls -docfiles size=20 - RELOC/doc/latex/rtklage/README - RELOC/doc/latex/rtklage/bspklage.tex - RELOC/doc/latex/rtklage/rtklage.pdf -catalogue-ctan /macros/latex/contrib/rtklage -catalogue-date 2012-06-03 16:14:40 +0200 -catalogue-license lppl - -name rubik -category Package -revision 32919 -shortdesc Document Rubik cube configurations and rotation sequences. -longdesc The bundle provides two packages: rubikcube provides commands -longdesc for typesetting Rubik cubes and their transformations; and -longdesc rubikrotation which can process a sequence of Rubik rotation -longdesc moves, with the help of a Perl package executed via \write18 -longdesc (shell escape) commands. -depend rubik.ARCH -runfiles size=29 - texmf-dist/scripts/rubik/rubikrotation.pl - texmf-dist/tex/latex/rubik/rubikcube.sty - texmf-dist/tex/latex/rubik/rubikrotation.sty -docfiles size=270 - texmf-dist/doc/latex/rubik/README - texmf-dist/doc/latex/rubik/Rubik_doc_figA.pdf - texmf-dist/doc/latex/rubik/Rubik_doc_figB.pdf - texmf-dist/doc/latex/rubik/Rubik_doc_figC.pdf - texmf-dist/doc/latex/rubik/Rubik_doc_figD.pdf - texmf-dist/doc/latex/rubik/Rubik_doc_figE.pdf - texmf-dist/doc/latex/rubik/Rubikrot_doc_figA.pdf - texmf-dist/doc/latex/rubik/Rubikrot_doc_figB.pdf - texmf-dist/doc/latex/rubik/example-cube.pdf - texmf-dist/doc/latex/rubik/example-cube.tex - texmf-dist/doc/latex/rubik/example-rot1.pdf - texmf-dist/doc/latex/rubik/example-rot1.sh - texmf-dist/doc/latex/rubik/example-rot1.tex - texmf-dist/doc/latex/rubik/example-rot2.pdf - texmf-dist/doc/latex/rubik/example-rot2.sh - texmf-dist/doc/latex/rubik/example-rot2.tex - texmf-dist/doc/latex/rubik/rubikcube.pdf - texmf-dist/doc/latex/rubik/rubikrotation.pdf -srcfiles size=62 - texmf-dist/source/latex/rubik/example-rot1.bat - texmf-dist/source/latex/rubik/example-rot2.bat - texmf-dist/source/latex/rubik/rubikcube.dtx - texmf-dist/source/latex/rubik/rubikcube.ins - texmf-dist/source/latex/rubik/rubikrotation.dtx - texmf-dist/source/latex/rubik/rubikrotation.ins -catalogue-ctan /macros/latex/contrib/rubik -catalogue-date 2014-10-15 16:14:57 +0200 -catalogue-license lppl1.3 -catalogue-version 2.0 - -name rubik.i386-linux -category Package -revision 32919 -shortdesc i386-linux files of rubik -binfiles arch=i386-linux size=1 - bin/i386-linux/rubikrotation - -name ruhyphen -category Package -revision 21081 -shortdesc Russian hyphenation. -relocated 1 -longdesc A collection of Russian hyphenation patterns supporting a -longdesc number of Cyrillic font encodings, including T2, UCY (Omega -longdesc Unicode Cyrillic), LCY, LWN (OT2), and koi8-r. -runfiles size=62 - RELOC/tex/generic/ruhyphen/catkoi.tex - RELOC/tex/generic/ruhyphen/cyryoal.tex - RELOC/tex/generic/ruhyphen/cyryoas.tex - RELOC/tex/generic/ruhyphen/cyryoct.tex - RELOC/tex/generic/ruhyphen/cyryodv.tex - RELOC/tex/generic/ruhyphen/cyryomg.tex - RELOC/tex/generic/ruhyphen/cyryovl.tex - RELOC/tex/generic/ruhyphen/cyryozn.tex - RELOC/tex/generic/ruhyphen/enrhm2.tex - RELOC/tex/generic/ruhyphen/hypht2.tex - RELOC/tex/generic/ruhyphen/koi2koi.tex - RELOC/tex/generic/ruhyphen/koi2lcy.tex - RELOC/tex/generic/ruhyphen/koi2ot2.tex - RELOC/tex/generic/ruhyphen/koi2t2a.tex - RELOC/tex/generic/ruhyphen/koi2ucy.tex - RELOC/tex/generic/ruhyphen/ruenhyph.tex - RELOC/tex/generic/ruhyphen/ruhyphal.tex - RELOC/tex/generic/ruhyphen/ruhyphas.tex - RELOC/tex/generic/ruhyphen/ruhyphct.tex - RELOC/tex/generic/ruhyphen/ruhyphdv.tex - RELOC/tex/generic/ruhyphen/ruhyphen.tex - RELOC/tex/generic/ruhyphen/ruhyphmg.tex - RELOC/tex/generic/ruhyphen/ruhyphvl.tex - RELOC/tex/generic/ruhyphen/ruhyphzn.tex -srcfiles size=15 - RELOC/source/generic/ruhyphen/BUGS - RELOC/source/generic/ruhyphen/Makefile - RELOC/source/generic/ruhyphen/README - RELOC/source/generic/ruhyphen/README.ruhyphal - RELOC/source/generic/ruhyphen/hyphen.rules - RELOC/source/generic/ruhyphen/mkcyryo - RELOC/source/generic/ruhyphen/reduce-patt - RELOC/source/generic/ruhyphen/sorthyph - RELOC/source/generic/ruhyphen/sortkoi8 - RELOC/source/generic/ruhyphen/trans -catalogue-ctan /language/hyphenation/ruhyphen -catalogue-date 2012-06-04 13:41:04 +0200 -catalogue-license lppl -catalogue-version 1.6 - -name rulercompass -category Package -revision 32392 -shortdesc A TikZ library for straight-edge and compass diagrams. -relocated 1 -longdesc The package defines some commands and styles to support drawing -longdesc straight-edge and compass diagrams with TikZ. -runfiles size=4 - RELOC/tex/latex/rulercompass/tikzlibraryrulercompass.code.tex -docfiles size=123 - RELOC/doc/latex/rulercompass/README.txt - RELOC/doc/latex/rulercompass/rulercompass.pdf - RELOC/doc/latex/rulercompass/rulercompass_doc.pdf - RELOC/doc/latex/rulercompass/rulercompass_doc.tex -srcfiles size=7 - RELOC/source/latex/rulercompass/rulercompass.dtx - RELOC/source/latex/rulercompass/rulercompass.ins -catalogue-ctan /graphics/pgf/contrib/rulercompass -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1 - -name r_und_s -category Package -revision 15878 -catalogue r-und-s -shortdesc Chemical hazard codes. -relocated 1 -longdesc The r_und_s package decodes the german 'R- und S-Satze', which -longdesc are numerically coded security advice for chemical substances -longdesc into plain text. This is, e.g., used to compose security sheets -longdesc or lab protocols and especially useful for students of -longdesc chemistry. There are four packages, giving texts in German, -longdesc English, French and Dutch. -runfiles size=31 - RELOC/tex/latex/r_und_s/eng_rs.sty - RELOC/tex/latex/r_und_s/eng_rs.tex - RELOC/tex/latex/r_und_s/fr_rs.sty - RELOC/tex/latex/r_und_s/fr_rs.tex - RELOC/tex/latex/r_und_s/nl_rs.sty - RELOC/tex/latex/r_und_s/nl_rs.tex - RELOC/tex/latex/r_und_s/r_und_s.sty - RELOC/tex/latex/r_und_s/r_und_s.tex -docfiles size=2 - RELOC/doc/latex/r_und_s/README -catalogue-ctan /macros/latex/contrib/r_und_s -catalogue-date 2013-06-19 11:01:13 +0200 -catalogue-license other-free -catalogue-version 1.3i - -name russ -category Package -revision 25209 -shortdesc LaTeX in Russian, without babel. -relocated 1 -longdesc The package aims to facilitate Russian typesetting (based on -longdesc input using MicroSoft Code Page 1251). Russian hyphenation is -longdesc selected, and various mathematical commands are set up in -longdesc Russian style. Furthermore all Cyrillic letters' catcodes are -longdesc set to "letter", so that commands with Cyrillic letters in -longdesc their names may be defined. -runfiles size=50 - RELOC/tex/latex/russ/russ.sty -docfiles size=89 - RELOC/doc/latex/russ/README - RELOC/doc/latex/russ/readme.RU.txt - RELOC/doc/latex/russ/russ_doc.pdf - RELOC/doc/latex/russ/russ_doc.tex -catalogue-ctan /macros/latex/contrib/russ -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl - -name rviewport -category Package -revision 23739 -shortdesc Relative Viewport for Graphics Inclusion. -relocated 1 -longdesc Package graphicx provides a useful keyword viewport which -longdesc allows to show just a part of an image. However, one needs to -longdesc put there the actual coordinates of the viewport window. -longdesc Sometimes it is useful to have relative coordinates as -longdesc fractions of natural size. For example, one may want to print a -longdesc large image on a spread, putting a half on a verso page, and -longdesc another half on the next recto page. For this one would need a -longdesc viewport occupying exactly one half of the file's bounding box, -longdesc whatever the actual width of the image may be. This package -longdesc adds a new keyword rviewport to the graphicx package -longdesc specifiying Relative Viewport for graphics inclusion: a window -longdesc defined by the given fractions of the natural width and height -longdesc of the image. -runfiles size=1 - RELOC/tex/latex/rviewport/rviewport.sty -docfiles size=73 - RELOC/doc/latex/rviewport/Makefile - RELOC/doc/latex/rviewport/README - RELOC/doc/latex/rviewport/rviewport.pdf - RELOC/doc/latex/rviewport/vitruvian.jpg -srcfiles size=3 - RELOC/source/latex/rviewport/rviewport.dtx - RELOC/source/latex/rviewport/rviewport.ins -catalogue-ctan /macros/latex/contrib/rviewport -catalogue-date 2013-01-29 15:50:53 +0100 -catalogue-license lppl -catalogue-version v1.0 - -name rvwrite -category Package -revision 19614 -shortdesc Increase the number of available output streams in LaTeX. -relocated 1 -longdesc The package addresses, for LaTeX documents, the severe -longdesc limitation on the number of output streams that TeX provides. -longdesc The package uses a single TeX output stream, and writes "marked- -longdesc up" output to this stream. The user may then post-process the -longdesc marked-up output file, using LaTeX, and the document's output -longdesc appears as separate files, according to the calls made to the -longdesc package. The output to be post-processed uses macros from the -longdesc widely-available ProTeX package. -runfiles size=1 - RELOC/tex/latex/rvwrite/rvwrite.sty -docfiles size=26 - RELOC/doc/latex/rvwrite/Makefile - RELOC/doc/latex/rvwrite/README - RELOC/doc/latex/rvwrite/rvwrite-doc.pdf - RELOC/doc/latex/rvwrite/rvwrite-doc.tex - RELOC/doc/latex/rvwrite/test.tex -catalogue-ctan /macros/latex/contrib/rvwrite -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.2 - -name ryethesis -category Package -revision 33945 -shortdesc Class for Ryerson Unversity Graduate School requirements. -relocated 1 -longdesc The class offers support for formatting a thesis, dissertation -longdesc or project according to Ryerson University's School of Graduate -longdesc Studies thesis formatting regulations. -runfiles size=5 - RELOC/tex/latex/ryethesis/ryethesis.cls -docfiles size=123 - RELOC/doc/latex/ryethesis/Makefile - RELOC/doc/latex/ryethesis/README - RELOC/doc/latex/ryethesis/figure1.pdf - RELOC/doc/latex/ryethesis/ryesample.bib - RELOC/doc/latex/ryethesis/ryesample.pdf - RELOC/doc/latex/ryethesis/ryesample.tex - RELOC/doc/latex/ryethesis/ryethesis.pdf -srcfiles size=13 - RELOC/source/latex/ryethesis/ryethesis.dtx - RELOC/source/latex/ryethesis/ryethesis.ins -catalogue-ctan /macros/latex/contrib/ryethesis -catalogue-date 2014-05-09 11:52:57 +0200 -catalogue-license lppl1.3 -catalogue-version 1.36 - -name sageep -category Package -revision 15878 -shortdesc Format papers for the annual meeting of EEGS. -relocated 1 -longdesc The class provides formatting for papers for the annual meeting -longdesc of the Environmental and Engineering Geophysical Society (EEGS) -longdesc ("Application of Geophysics to Engineering and Environmental -longdesc Problems", known as SAGEEP). -runfiles size=9 - RELOC/bibtex/bst/sageep/sageep.bst - RELOC/tex/latex/sageep/sageep.cls -docfiles size=98 - RELOC/doc/latex/sageep/README - RELOC/doc/latex/sageep/sageep.bib - RELOC/doc/latex/sageep/sageep.pdf - RELOC/doc/latex/sageep/sageep_graphic2009.jpg - RELOC/doc/latex/sageep/sample.pdf - RELOC/doc/latex/sageep/sample.tex -srcfiles size=6 - RELOC/source/latex/sageep/Makefile - RELOC/source/latex/sageep/sageep.dtx - RELOC/source/latex/sageep/sageep.ins -catalogue-ctan /macros/latex/contrib/sageep -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 - -name sanskrit-t1 -category Package -revision 35737 -shortdesc Type 1 version of 'skt' fonts for Sanskrit. -relocated 1 -longdesc The sanskrit-t1 font package provides Type 1 version of Charles -longdesc Wikner's skt font series for the Sanskrit language. -execute addMap skt.map -runfiles size=127 - RELOC/fonts/map/dvips/sanskrit-t1/skt.map - RELOC/fonts/type1/public/sanskrit-t1/skt10.pfb - RELOC/fonts/type1/public/sanskrit-t1/skt8.pfb - RELOC/fonts/type1/public/sanskrit-t1/skt9.pfb - RELOC/fonts/type1/public/sanskrit-t1/sktb10.pfb - RELOC/fonts/type1/public/sanskrit-t1/sktbs10.pfb - RELOC/fonts/type1/public/sanskrit-t1/sktf10.pfb - RELOC/fonts/type1/public/sanskrit-t1/sktfs10.pfb - RELOC/fonts/type1/public/sanskrit-t1/skts10.pfb -docfiles size=83 - RELOC/doc/fonts/sanskrit-t1/README - RELOC/doc/fonts/sanskrit-t1/sktdoc.pdf -catalogue-ctan /fonts/ps-type1/sanskrit -catalogue-date 2014-05-07 23:23:47 +0200 -catalogue-license lppl - -name sanskrit -category Package -revision 35738 -shortdesc Sanskrit support. -relocated 1 -longdesc A font and pre-processor suitable for the production of -longdesc documents written in Sanskrit. Type 1 versions of the fonts are -longdesc available. -runfiles size=40 - RELOC/fonts/source/public/sanskrit/skt10.mf - RELOC/fonts/source/public/sanskrit/skt8.mf - RELOC/fonts/source/public/sanskrit/skt9.mf - RELOC/fonts/source/public/sanskrit/sktb10.mf - RELOC/fonts/source/public/sanskrit/sktbs10.mf - RELOC/fonts/source/public/sanskrit/sktchars.mf - RELOC/fonts/source/public/sanskrit/sktdefs.mf - RELOC/fonts/source/public/sanskrit/sktf10.mf - RELOC/fonts/source/public/sanskrit/sktfs10.mf - RELOC/fonts/source/public/sanskrit/sktligs.mf - RELOC/fonts/source/public/sanskrit/skts10.mf - RELOC/fonts/tfm/public/sanskrit/skt10.tfm - RELOC/fonts/tfm/public/sanskrit/skt8.tfm - RELOC/fonts/tfm/public/sanskrit/skt9.tfm - RELOC/fonts/tfm/public/sanskrit/sktb10.tfm - RELOC/fonts/tfm/public/sanskrit/sktbs10.tfm - RELOC/fonts/tfm/public/sanskrit/sktf10.tfm - RELOC/fonts/tfm/public/sanskrit/sktfs10.tfm - RELOC/fonts/tfm/public/sanskrit/skts10.tfm - RELOC/tex/latex/sanskrit/ot1skt.fd - RELOC/tex/latex/sanskrit/skt.sty -docfiles size=30 - RELOC/doc/latex/sanskrit/readme.txt - RELOC/doc/latex/sanskrit/sktdoc.skt -srcfiles size=28 - RELOC/source/latex/sanskrit/skt.c -catalogue-ctan /language/sanskrit -catalogue-date 2014-05-07 23:23:47 +0200 -catalogue-license lppl - -name sansmathaccent -category Package -revision 30187 -shortdesc Correct placement of accents in sans-serif maths. -relocated 1 -longdesc Sans serif maths (produced by the beamer class or the sfmath -longdesc package) often has accents positioned incorrectly. The package -longdesc fixes the positioning of such accents when the default font -longdesc (cmssi) is used for sans serif maths. -execute addMap sansmathaccent.map -runfiles size=19 - RELOC/fonts/map/dvips/sansmathaccent/sansmathaccent.map - RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssi10.tfm - RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssi12.tfm - RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssi17.tfm - RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssi8.tfm - RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssi9.tfm - RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssxi10.tfm - RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssxi12.tfm - RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssxi17.tfm - RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssxi8.tfm - RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssxi9.tfm - RELOC/fonts/vf/public/sansmathaccent/mathkerncmssxi10.vf - RELOC/fonts/vf/public/sansmathaccent/mathkerncmssxi12.vf - RELOC/fonts/vf/public/sansmathaccent/mathkerncmssxi17.vf - RELOC/fonts/vf/public/sansmathaccent/mathkerncmssxi8.vf - RELOC/fonts/vf/public/sansmathaccent/mathkerncmssxi9.vf - RELOC/tex/latex/sansmathaccent/ot1mathkerncmss.fd - RELOC/tex/latex/sansmathaccent/sansmathaccent.sty -docfiles size=44 - RELOC/doc/fonts/sansmathaccent/README - RELOC/doc/fonts/sansmathaccent/sansmathaccent.pdf - RELOC/doc/fonts/sansmathaccent/sansmathaccent.tex -catalogue-ctan /fonts/sansmathaccent -catalogue-date 2014-05-07 23:23:47 +0200 -catalogue-license lppl1.3 - -name sansmathfonts -category Package -revision 30173 -shortdesc Correct placement of accents in sans-serif maths. -relocated 1 -longdesc Sans serifsmall caps and math fonts for use with Computer -longdesc Modern. -execute addMap sansmathfonts.map -runfiles size=1986 - RELOC/fonts/map/dvips/sansmathfonts/sansmathfonts.map - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXi10.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXi12.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXi17.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXi8.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXi9.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXibx10.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXibx12.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXibx17.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXibx8.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXibx9.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXibxcsc10.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXicsc10.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXicsc8.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXicsc9.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXicsci10.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXicsci8.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXicsci9.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXii10.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXii12.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXii17.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXii8.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXii9.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXixi10.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXixi12.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXixi17.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXixi8.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXixi9.mf - RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXixicsc10.mf - RELOC/fonts/source/public/sansmathfonts/cmssbsy10.mf - RELOC/fonts/source/public/sansmathfonts/cmssbsy5.mf - RELOC/fonts/source/public/sansmathfonts/cmssbsy6.mf - RELOC/fonts/source/public/sansmathfonts/cmssbsy7.mf - RELOC/fonts/source/public/sansmathfonts/cmssbsy8.mf - RELOC/fonts/source/public/sansmathfonts/cmssbsy9.mf - RELOC/fonts/source/public/sansmathfonts/cmssbxcsc10.mf - RELOC/fonts/source/public/sansmathfonts/cmsscsc10.mf - RELOC/fonts/source/public/sansmathfonts/cmsscsc8.mf - RELOC/fonts/source/public/sansmathfonts/cmsscsc9.mf - RELOC/fonts/source/public/sansmathfonts/cmsscsci10.mf - RELOC/fonts/source/public/sansmathfonts/cmsscsci8.mf - RELOC/fonts/source/public/sansmathfonts/cmsscsci9.mf - RELOC/fonts/source/public/sansmathfonts/cmssex10.mf - RELOC/fonts/source/public/sansmathfonts/cmssex7.mf - RELOC/fonts/source/public/sansmathfonts/cmssex8.mf - RELOC/fonts/source/public/sansmathfonts/cmssex9.mf - RELOC/fonts/source/public/sansmathfonts/cmssmi10.mf - RELOC/fonts/source/public/sansmathfonts/cmssmi5.mf - RELOC/fonts/source/public/sansmathfonts/cmssmi6.mf - RELOC/fonts/source/public/sansmathfonts/cmssmi7.mf - RELOC/fonts/source/public/sansmathfonts/cmssmi8.mf - RELOC/fonts/source/public/sansmathfonts/cmssmi9.mf - RELOC/fonts/source/public/sansmathfonts/cmssmib10.mf - RELOC/fonts/source/public/sansmathfonts/cmssmib5.mf - RELOC/fonts/source/public/sansmathfonts/cmssmib6.mf - RELOC/fonts/source/public/sansmathfonts/cmssmib7.mf - RELOC/fonts/source/public/sansmathfonts/cmssmib8.mf - RELOC/fonts/source/public/sansmathfonts/cmssmib9.mf - RELOC/fonts/source/public/sansmathfonts/cmsssy10.mf - RELOC/fonts/source/public/sansmathfonts/cmsssy5.mf - RELOC/fonts/source/public/sansmathfonts/cmsssy6.mf - RELOC/fonts/source/public/sansmathfonts/cmsssy7.mf - RELOC/fonts/source/public/sansmathfonts/cmsssy8.mf - RELOC/fonts/source/public/sansmathfonts/cmsssy9.mf - RELOC/fonts/source/public/sansmathfonts/cmssu10.mf - RELOC/fonts/source/public/sansmathfonts/cmssxicsc10.mf - RELOC/fonts/source/public/sansmathfonts/eczi.mf - RELOC/fonts/source/public/sansmathfonts/eczi0500.mf - RELOC/fonts/source/public/sansmathfonts/eczi0600.mf - RELOC/fonts/source/public/sansmathfonts/eczi0700.mf - RELOC/fonts/source/public/sansmathfonts/eczi0800.mf - RELOC/fonts/source/public/sansmathfonts/eczi0900.mf - RELOC/fonts/source/public/sansmathfonts/eczi1000.mf - RELOC/fonts/source/public/sansmathfonts/eczi1095.mf - RELOC/fonts/source/public/sansmathfonts/eczi1200.mf - RELOC/fonts/source/public/sansmathfonts/eczi1440.mf - RELOC/fonts/source/public/sansmathfonts/eczi1728.mf - RELOC/fonts/source/public/sansmathfonts/eczi2074.mf - RELOC/fonts/source/public/sansmathfonts/eczi2488.mf - RELOC/fonts/source/public/sansmathfonts/eczi2986.mf - RELOC/fonts/source/public/sansmathfonts/eczi3583.mf - RELOC/fonts/source/public/sansmathfonts/eczo.mf - RELOC/fonts/source/public/sansmathfonts/eczo0500.mf - RELOC/fonts/source/public/sansmathfonts/eczo0600.mf - RELOC/fonts/source/public/sansmathfonts/eczo0700.mf - RELOC/fonts/source/public/sansmathfonts/eczo0800.mf - RELOC/fonts/source/public/sansmathfonts/eczo0900.mf - RELOC/fonts/source/public/sansmathfonts/eczo1000.mf - RELOC/fonts/source/public/sansmathfonts/eczo1095.mf - RELOC/fonts/source/public/sansmathfonts/eczo1200.mf - RELOC/fonts/source/public/sansmathfonts/eczo1440.mf - RELOC/fonts/source/public/sansmathfonts/eczo1728.mf - RELOC/fonts/source/public/sansmathfonts/eczo2074.mf - RELOC/fonts/source/public/sansmathfonts/eczo2488.mf - RELOC/fonts/source/public/sansmathfonts/eczo2986.mf - RELOC/fonts/source/public/sansmathfonts/eczo3583.mf - RELOC/fonts/source/public/sansmathfonts/eczx.mf - RELOC/fonts/source/public/sansmathfonts/eczx0500.mf - RELOC/fonts/source/public/sansmathfonts/eczx0600.mf - RELOC/fonts/source/public/sansmathfonts/eczx0700.mf - RELOC/fonts/source/public/sansmathfonts/eczx0800.mf - RELOC/fonts/source/public/sansmathfonts/eczx0900.mf - RELOC/fonts/source/public/sansmathfonts/eczx1000.mf - RELOC/fonts/source/public/sansmathfonts/eczx1095.mf - RELOC/fonts/source/public/sansmathfonts/eczx1200.mf - RELOC/fonts/source/public/sansmathfonts/eczx1440.mf - RELOC/fonts/source/public/sansmathfonts/eczx1728.mf - RELOC/fonts/source/public/sansmathfonts/eczx2074.mf - RELOC/fonts/source/public/sansmathfonts/eczx2488.mf - RELOC/fonts/source/public/sansmathfonts/eczx2986.mf - RELOC/fonts/source/public/sansmathfonts/eczx3583.mf - RELOC/fonts/source/public/sansmathfonts/eczz.mf - RELOC/fonts/source/public/sansmathfonts/eczz0500.mf - RELOC/fonts/source/public/sansmathfonts/eczz0600.mf - RELOC/fonts/source/public/sansmathfonts/eczz0700.mf - RELOC/fonts/source/public/sansmathfonts/eczz0800.mf - RELOC/fonts/source/public/sansmathfonts/eczz0900.mf - RELOC/fonts/source/public/sansmathfonts/eczz1000.mf - RELOC/fonts/source/public/sansmathfonts/eczz1095.mf - RELOC/fonts/source/public/sansmathfonts/eczz1200.mf - RELOC/fonts/source/public/sansmathfonts/eczz1440.mf - RELOC/fonts/source/public/sansmathfonts/eczz1728.mf - RELOC/fonts/source/public/sansmathfonts/eczz2074.mf - RELOC/fonts/source/public/sansmathfonts/eczz2488.mf - RELOC/fonts/source/public/sansmathfonts/eczz2986.mf - RELOC/fonts/source/public/sansmathfonts/eczz3583.mf - RELOC/fonts/source/public/sansmathfonts/sans-IPiXi.mf - RELOC/fonts/source/public/sansmathfonts/sans-IPiXicsc.mf - RELOC/fonts/source/public/sansmathfonts/sans-amsya.mf - RELOC/fonts/source/public/sansmathfonts/sans-amsyb.mf - RELOC/fonts/source/public/sansmathfonts/sans-asymbols.mf - RELOC/fonts/source/public/sansmathfonts/sans-bigdel.mf - RELOC/fonts/source/public/sansmathfonts/sans-bigint.mf - RELOC/fonts/source/public/sansmathfonts/sans-bigop.mf - RELOC/fonts/source/public/sansmathfonts/sans-bsymbols.mf - RELOC/fonts/source/public/sansmathfonts/sans-calu.mf - RELOC/fonts/source/public/sansmathfonts/sans-csc.mf - RELOC/fonts/source/public/sansmathfonts/sans-greekl.mf - RELOC/fonts/source/public/sansmathfonts/sans-greeku.mf - RELOC/fonts/source/public/sansmathfonts/sans-mathex.mf - RELOC/fonts/source/public/sansmathfonts/sans-mathint.mf - RELOC/fonts/source/public/sansmathfonts/sans-mathsl.mf - RELOC/fonts/source/public/sansmathfonts/sans-mathsy.mf - RELOC/fonts/source/public/sansmathfonts/sans-roman.mf - RELOC/fonts/source/public/sansmathfonts/sans-romanu.mf - RELOC/fonts/source/public/sansmathfonts/sans-romms.mf - RELOC/fonts/source/public/sansmathfonts/sans-slantms.mf - RELOC/fonts/source/public/sansmathfonts/sans-sym.mf - RELOC/fonts/source/public/sansmathfonts/sans-symbol.mf - RELOC/fonts/source/public/sansmathfonts/sans-xbbold.mf - RELOC/fonts/source/public/sansmathfonts/sansfontbase.mf - RELOC/fonts/source/public/sansmathfonts/ssesint10.mf - RELOC/fonts/source/public/sansmathfonts/ssesint7.mf - RELOC/fonts/source/public/sansmathfonts/ssesint8.mf - RELOC/fonts/source/public/sansmathfonts/ssesint9.mf - RELOC/fonts/source/public/sansmathfonts/ssmsam10.mf - RELOC/fonts/source/public/sansmathfonts/ssmsam5.mf - RELOC/fonts/source/public/sansmathfonts/ssmsam6.mf - RELOC/fonts/source/public/sansmathfonts/ssmsam7.mf - RELOC/fonts/source/public/sansmathfonts/ssmsam8.mf - RELOC/fonts/source/public/sansmathfonts/ssmsam9.mf - RELOC/fonts/source/public/sansmathfonts/ssmsbm10.mf - RELOC/fonts/source/public/sansmathfonts/ssmsbm5.mf - RELOC/fonts/source/public/sansmathfonts/ssmsbm6.mf - RELOC/fonts/source/public/sansmathfonts/ssmsbm7.mf - RELOC/fonts/source/public/sansmathfonts/ssmsbm8.mf - RELOC/fonts/source/public/sansmathfonts/ssmsbm9.mf - RELOC/fonts/tfm/public/sansmathfonts/cmsmf10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmf12.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmf17.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmf8.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmf9.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXi10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXi12.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXi17.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXi8.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXi9.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXibx10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXibx12.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXibx17.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXibx8.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXibx9.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXibxcsc10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXicsc10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXicsc8.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXicsc9.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXicsci10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXicsci8.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXicsci9.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXii10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXii12.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXii17.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXii8.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXii9.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXixi10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXixi12.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXixi17.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXixi8.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXixi9.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXixicsc10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfbx10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfbx12.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfbx17.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfbx8.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfbx9.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfbxcsc10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfcsc10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfcsc8.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfcsc9.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfcsci10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfcsci8.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfcsci9.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfi10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfi12.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfi17.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfi8.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfi9.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfxi10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfxi12.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfxi17.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfxi8.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfxi9.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsmfxicsc10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssbsy10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssbsy5.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssbsy6.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssbsy7.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssbsy8.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssbsy9.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssbxcsc10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsscsc10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsscsc8.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsscsc9.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsscsci10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsscsci8.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsscsci9.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssex10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssex7.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssex8.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssex9.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssmi10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssmi5.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssmi6.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssmi7.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssmi8.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssmi9.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssmib10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssmib5.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssmib6.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssmib7.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssmib8.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssmib9.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsssy10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsssy5.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsssy6.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsssy7.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsssy8.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmsssy9.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssu10.tfm - RELOC/fonts/tfm/public/sansmathfonts/cmssxicsc10.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczi0500.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczi0600.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczi0700.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczi0800.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczi0900.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczi1000.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczi1095.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczi1200.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczi1440.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczi1728.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczi2074.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczi2488.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczi2986.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczi3583.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczo0500.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczo0600.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczo0700.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczo0800.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczo0900.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczo1000.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczo1095.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczo1200.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczo1440.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczo1728.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczo2074.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczo2488.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczo2986.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczo3583.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczx0500.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczx0600.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczx0700.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczx0800.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczx0900.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczx1000.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczx1095.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczx1200.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczx1440.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczx1728.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczx2074.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczx2488.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczx2986.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczx3583.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczz0500.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczz0600.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczz0700.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczz0800.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczz0900.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczz1000.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczz1095.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczz1200.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczz1440.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczz1728.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczz2074.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczz2488.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczz2986.tfm - RELOC/fonts/tfm/public/sansmathfonts/eczz3583.tfm - RELOC/fonts/tfm/public/sansmathfonts/ssesint10.tfm - RELOC/fonts/tfm/public/sansmathfonts/ssesint7.tfm - RELOC/fonts/tfm/public/sansmathfonts/ssesint8.tfm - RELOC/fonts/tfm/public/sansmathfonts/ssesint9.tfm - RELOC/fonts/tfm/public/sansmathfonts/ssmsam10.tfm - RELOC/fonts/tfm/public/sansmathfonts/ssmsam5.tfm - RELOC/fonts/tfm/public/sansmathfonts/ssmsam6.tfm - RELOC/fonts/tfm/public/sansmathfonts/ssmsam7.tfm - RELOC/fonts/tfm/public/sansmathfonts/ssmsam8.tfm - RELOC/fonts/tfm/public/sansmathfonts/ssmsam9.tfm - RELOC/fonts/tfm/public/sansmathfonts/ssmsbm10.tfm - RELOC/fonts/tfm/public/sansmathfonts/ssmsbm5.tfm - RELOC/fonts/tfm/public/sansmathfonts/ssmsbm6.tfm - RELOC/fonts/tfm/public/sansmathfonts/ssmsbm7.tfm - RELOC/fonts/tfm/public/sansmathfonts/ssmsbm8.tfm - RELOC/fonts/tfm/public/sansmathfonts/ssmsbm9.tfm - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXi10.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXi12.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXi17.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXi8.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXi9.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXibx10.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXibx12.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXibx17.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXibx8.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXibx9.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXibxcsc10.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXicsc10.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXicsc8.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXicsc9.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXicsci10.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXicsci8.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXicsci9.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXii10.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXii12.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXii17.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXii8.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXii9.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXixi10.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXixi12.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXixi17.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXixi8.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXixi9.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXixicsc10.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssbsy10.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssbsy5.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssbsy6.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssbsy7.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssbsy8.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssbsy9.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssbx12.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssbx17.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssbx8.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssbx9.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssbxcsc10.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsscsc10.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsscsc8.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsscsc9.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsscsci10.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsscsci8.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsscsci9.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssex10.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssex7.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssex8.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssex9.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssmi10.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssmi5.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssmi6.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssmi7.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssmi8.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssmi9.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssmib10.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssmib5.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssmib6.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssmib7.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssmib8.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssmib9.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsssy10.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsssy5.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsssy6.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsssy7.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsssy8.pfb - RELOC/fonts/type1/public/sansmathfonts/cmsssy9.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssu10.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssxi10.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssxi12.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssxi17.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssxi8.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssxi9.pfb - RELOC/fonts/type1/public/sansmathfonts/cmssxicsc10.pfb - RELOC/fonts/type1/public/sansmathfonts/eczi0500.pfb - RELOC/fonts/type1/public/sansmathfonts/eczi0600.pfb - RELOC/fonts/type1/public/sansmathfonts/eczi0700.pfb - RELOC/fonts/type1/public/sansmathfonts/eczi0800.pfb - RELOC/fonts/type1/public/sansmathfonts/eczi0900.pfb - RELOC/fonts/type1/public/sansmathfonts/eczi1000.pfb - RELOC/fonts/type1/public/sansmathfonts/eczi1095.pfb - RELOC/fonts/type1/public/sansmathfonts/eczi1200.pfb - RELOC/fonts/type1/public/sansmathfonts/eczi1440.pfb - RELOC/fonts/type1/public/sansmathfonts/eczi1728.pfb - RELOC/fonts/type1/public/sansmathfonts/eczi2074.pfb - RELOC/fonts/type1/public/sansmathfonts/eczi2488.pfb - RELOC/fonts/type1/public/sansmathfonts/eczi2986.pfb - RELOC/fonts/type1/public/sansmathfonts/eczi3583.pfb - RELOC/fonts/type1/public/sansmathfonts/eczo0500.pfb - RELOC/fonts/type1/public/sansmathfonts/eczo0600.pfb - RELOC/fonts/type1/public/sansmathfonts/eczo0700.pfb - RELOC/fonts/type1/public/sansmathfonts/eczo0800.pfb - RELOC/fonts/type1/public/sansmathfonts/eczo0900.pfb - RELOC/fonts/type1/public/sansmathfonts/eczo1000.pfb - RELOC/fonts/type1/public/sansmathfonts/eczo1095.pfb - RELOC/fonts/type1/public/sansmathfonts/eczo1200.pfb - RELOC/fonts/type1/public/sansmathfonts/eczo1440.pfb - RELOC/fonts/type1/public/sansmathfonts/eczo1728.pfb - RELOC/fonts/type1/public/sansmathfonts/eczo2074.pfb - RELOC/fonts/type1/public/sansmathfonts/eczo2488.pfb - RELOC/fonts/type1/public/sansmathfonts/eczo2986.pfb - RELOC/fonts/type1/public/sansmathfonts/eczo3583.pfb - RELOC/fonts/type1/public/sansmathfonts/eczx0500.pfb - RELOC/fonts/type1/public/sansmathfonts/eczx0600.pfb - RELOC/fonts/type1/public/sansmathfonts/eczx0700.pfb - RELOC/fonts/type1/public/sansmathfonts/eczx0800.pfb - RELOC/fonts/type1/public/sansmathfonts/eczx0900.pfb - RELOC/fonts/type1/public/sansmathfonts/eczx1000.pfb - RELOC/fonts/type1/public/sansmathfonts/eczx1095.pfb - RELOC/fonts/type1/public/sansmathfonts/eczx1200.pfb - RELOC/fonts/type1/public/sansmathfonts/eczx1440.pfb - RELOC/fonts/type1/public/sansmathfonts/eczx1728.pfb - RELOC/fonts/type1/public/sansmathfonts/eczx2074.pfb - RELOC/fonts/type1/public/sansmathfonts/eczx2488.pfb - RELOC/fonts/type1/public/sansmathfonts/eczx2986.pfb - RELOC/fonts/type1/public/sansmathfonts/eczx3583.pfb - RELOC/fonts/type1/public/sansmathfonts/eczz0500.pfb - RELOC/fonts/type1/public/sansmathfonts/eczz0600.pfb - RELOC/fonts/type1/public/sansmathfonts/eczz0700.pfb - RELOC/fonts/type1/public/sansmathfonts/eczz0800.pfb - RELOC/fonts/type1/public/sansmathfonts/eczz0900.pfb - RELOC/fonts/type1/public/sansmathfonts/eczz1000.pfb - RELOC/fonts/type1/public/sansmathfonts/eczz1095.pfb - RELOC/fonts/type1/public/sansmathfonts/eczz1200.pfb - RELOC/fonts/type1/public/sansmathfonts/eczz1440.pfb - RELOC/fonts/type1/public/sansmathfonts/eczz1728.pfb - RELOC/fonts/type1/public/sansmathfonts/eczz2074.pfb - RELOC/fonts/type1/public/sansmathfonts/eczz2488.pfb - RELOC/fonts/type1/public/sansmathfonts/eczz2986.pfb - RELOC/fonts/type1/public/sansmathfonts/eczz3583.pfb - RELOC/fonts/type1/public/sansmathfonts/ssesint10.pfb - RELOC/fonts/type1/public/sansmathfonts/ssesint7.pfb - RELOC/fonts/type1/public/sansmathfonts/ssesint8.pfb - RELOC/fonts/type1/public/sansmathfonts/ssesint9.pfb - RELOC/fonts/type1/public/sansmathfonts/ssmsam10.pfb - RELOC/fonts/type1/public/sansmathfonts/ssmsam5.pfb - RELOC/fonts/type1/public/sansmathfonts/ssmsam6.pfb - RELOC/fonts/type1/public/sansmathfonts/ssmsam7.pfb - RELOC/fonts/type1/public/sansmathfonts/ssmsam8.pfb - RELOC/fonts/type1/public/sansmathfonts/ssmsam9.pfb - RELOC/fonts/type1/public/sansmathfonts/ssmsbm10.pfb - RELOC/fonts/type1/public/sansmathfonts/ssmsbm5.pfb - RELOC/fonts/type1/public/sansmathfonts/ssmsbm6.pfb - RELOC/fonts/type1/public/sansmathfonts/ssmsbm7.pfb - RELOC/fonts/type1/public/sansmathfonts/ssmsbm8.pfb - RELOC/fonts/type1/public/sansmathfonts/ssmsbm9.pfb - RELOC/fonts/vf/public/sansmathfonts/cmsmf10.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmf12.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmf17.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmf8.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmf9.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmfbx10.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmfbx12.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmfbx17.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmfbx8.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmfbx9.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmfbxcsc10.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmfcsc10.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmfcsc8.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmfcsc9.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmfcsci10.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmfcsci8.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmfcsci9.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmfi10.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmfi12.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmfi17.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmfi8.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmfi9.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmfxi10.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmfxi12.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmfxi17.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmfxi8.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmfxi9.vf - RELOC/fonts/vf/public/sansmathfonts/cmsmfxicsc10.vf - RELOC/tex/latex/sansmathfonts/omlcmssm.fd - RELOC/tex/latex/sansmathfonts/omscmsssy.fd - RELOC/tex/latex/sansmathfonts/omxcmssex.fd - RELOC/tex/latex/sansmathfonts/ot1cmsmf.fd - RELOC/tex/latex/sansmathfonts/ot1xcmss.fd - RELOC/tex/latex/sansmathfonts/sansmathfonts.sty - RELOC/tex/latex/sansmathfonts/t1xcmss.fd - RELOC/tex/latex/sansmathfonts/ucmsmf.fd - RELOC/tex/latex/sansmathfonts/ussesint.fd - RELOC/tex/latex/sansmathfonts/ussmsa.fd - RELOC/tex/latex/sansmathfonts/ussmsb.fd - RELOC/tex/latex/sansmathfonts/uxcmss.fd -docfiles size=69 - RELOC/doc/fonts/sansmathfonts/README - RELOC/doc/fonts/sansmathfonts/sansmathfonts.pdf - RELOC/doc/fonts/sansmathfonts/sansmathfonts.tex -catalogue-ctan /fonts/sansmathfonts -catalogue-date 2014-05-07 23:23:47 +0200 -catalogue-license lppl1.3 -catalogue-version 1 - -name sansmath -category Package -revision 17997 -shortdesc Maths in a sans font. -relocated 1 -longdesc The package defines a new math version sans, and a command -longdesc \sansmath that behaves somewhat like \boldmath -runfiles size=2 - RELOC/tex/latex/sansmath/sansmath.sty -docfiles size=48 - RELOC/doc/latex/sansmath/miscdoc.sty - RELOC/doc/latex/sansmath/sansmath.pdf - RELOC/doc/latex/sansmath/sansmath.tex -catalogue-ctan /macros/latex/contrib/sansmath -catalogue-date 2012-06-04 20:50:45 +0200 -catalogue-license pd -catalogue-version 1.1 - -name sapthesis -category Package -revision 31487 -shortdesc Typeset theses for Sapienza-University, Rome. -relocated 1 -longdesc The class will typeset Ph.D., Master, and Bachelor theses that -longdesc adhere to the publishing guidelines of the Sapienza-University -longdesc of Rome. -runfiles size=29 - RELOC/bibtex/bst/sapthesis/sapthesis.bst - RELOC/tex/latex/sapthesis/sapienza-MLblack-pos.pdf - RELOC/tex/latex/sapthesis/sapienza-MLred-pos.pdf - RELOC/tex/latex/sapthesis/sapthesis.cls -docfiles size=73 - RELOC/doc/latex/sapthesis/README - RELOC/doc/latex/sapthesis/examples/Laurea.tex - RELOC/doc/latex/sapthesis/examples/LaureaMagistrale.tex - RELOC/doc/latex/sapthesis/examples/Master.tex - RELOC/doc/latex/sapthesis/examples/PhD.tex - RELOC/doc/latex/sapthesis/examples/Specialization.tex - RELOC/doc/latex/sapthesis/examples/TFA.tex - RELOC/doc/latex/sapthesis/sapthesis-doc.pdf - RELOC/doc/latex/sapthesis/sapthesis-doc.tex - RELOC/doc/latex/sapthesis/sapthesis.layout -catalogue-ctan /macros/latex/contrib/sapthesis -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 3.7 - -name sasnrdisplay -category Package -revision 33120 -shortdesc Typeset SAS or R code or output. -relocated 1 -longdesc The SASnRdisplay package serves as a front-end to the listings, -longdesc which permits statisticians and others to import source code, -longdesc and the results of their calculations or simulations into LaTeX -longdesc projects. The package is also capable of overloading the Sweave -longdesc and SASweave packages. -runfiles size=7 - RELOC/tex/latex/sasnrdisplay/SASnRdisplay.cfg - RELOC/tex/latex/sasnrdisplay/SASnRdisplay.sty -docfiles size=57 - RELOC/doc/latex/sasnrdisplay/README - RELOC/doc/latex/sasnrdisplay/SASnRdisplay.pdf - RELOC/doc/latex/sasnrdisplay/SASnRdisplay.tex -catalogue-ctan /macros/latex/contrib/sasnrdisplay -catalogue-date 2014-03-07 12:39:33 +0100 -catalogue-license lppl1.3 -catalogue-version 0.93 - -name sa-tikz -category Package -revision 32815 -shortdesc TikZ library to draw switching architectures. -relocated 1 -longdesc The package provides a library that offers an easy way to draw -longdesc switching architectures and to customize their aspect. -runfiles size=26 - RELOC/tex/latex/sa-tikz/sa-tikz.sty - RELOC/tex/latex/sa-tikz/tikzlibraryswitching-architectures.code.tex -docfiles size=244 - RELOC/doc/latex/sa-tikz/README - RELOC/doc/latex/sa-tikz/pgfmanual-en-macros.tex - RELOC/doc/latex/sa-tikz/sa-tikz-doc.pdf - RELOC/doc/latex/sa-tikz/sa-tikz-doc.tex -catalogue-ctan /graphics/pgf/contrib/sa-tikz -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.7a - -name sauerj -category Package -revision 15878 -shortdesc A bundle of utilities by Jonathan Sauer. -relocated 1 -longdesc The bundle consists of: a tool for collecting text for later re- -longdesc use, a tool for typesetting the "meta-information" within a -longdesc text, a tool for use in constructing macros with multiple -longdesc optional parameters, a package for multiple column parallel -longdesc texts, a tool for processing key-value structured lists, and -longdesc macros for typesetting a number as a German-language string. -runfiles size=8 - RELOC/tex/latex/sauerj/collect.sty - RELOC/tex/latex/sauerj/metainfo.sty - RELOC/tex/latex/sauerj/optparams.sty - RELOC/tex/latex/sauerj/parcolumns.sty - RELOC/tex/latex/sauerj/processkv.sty - RELOC/tex/latex/sauerj/zahl2string.sty -docfiles size=255 - RELOC/doc/latex/sauerj/README - RELOC/doc/latex/sauerj/collect.pdf - RELOC/doc/latex/sauerj/metainfo.pdf - RELOC/doc/latex/sauerj/optparams.pdf - RELOC/doc/latex/sauerj/parcolumns.pdf - RELOC/doc/latex/sauerj/processkv.pdf - RELOC/doc/latex/sauerj/zahl2string.pdf -srcfiles size=41 - RELOC/source/latex/sauerj/collect.dtx - RELOC/source/latex/sauerj/collect.ins - RELOC/source/latex/sauerj/metainfo.dtx - RELOC/source/latex/sauerj/metainfo.ins - RELOC/source/latex/sauerj/optparams.dtx - RELOC/source/latex/sauerj/optparams.ins - RELOC/source/latex/sauerj/parcolumns.dtx - RELOC/source/latex/sauerj/parcolumns.ins - RELOC/source/latex/sauerj/processkv.dtx - RELOC/source/latex/sauerj/processkv.ins - RELOC/source/latex/sauerj/zahl2string.dtx - RELOC/source/latex/sauerj/zahl2string.ins -catalogue-ctan /macros/latex/contrib/sauerj -catalogue-date 2014-10-15 16:08:09 +0200 -catalogue-license lppl - -name sauterfonts -category Package -revision 15878 -shortdesc Use Sauter's fonts in LaTeX. -relocated 1 -longdesc The package provides font definition files (plus a replacement -longdesc for the package exscale) to access many of the fonts in -longdesc Sauter's collection. These fonts are available in all point -longdesc sizes and look nicer for such "intermediate" document sizes as -longdesc 11pt. Also included is the package sbbm, an alternative to -longdesc access the bbm fonts. -runfiles size=30 - RELOC/tex/latex/sauterfonts/sbbm.sty - RELOC/tex/latex/sauterfonts/sexscale.sty - RELOC/tex/latex/sauterfonts/somlcmm.fd - RELOC/tex/latex/sauterfonts/somlcmr.fd - RELOC/tex/latex/sauterfonts/somscmr.fd - RELOC/tex/latex/sauterfonts/somscmsy.fd - RELOC/tex/latex/sauterfonts/somxcmex.fd - RELOC/tex/latex/sauterfonts/sot1cmdh.fd - RELOC/tex/latex/sauterfonts/sot1cmfib.fd - RELOC/tex/latex/sauterfonts/sot1cmfr.fd - RELOC/tex/latex/sauterfonts/sot1cmr.fd - RELOC/tex/latex/sauterfonts/sot1cmss.fd - RELOC/tex/latex/sauterfonts/sot1cmtt.fd - RELOC/tex/latex/sauterfonts/sot1cmvtt.fd - RELOC/tex/latex/sauterfonts/subbm.fd - RELOC/tex/latex/sauterfonts/subbmdh.fd - RELOC/tex/latex/sauterfonts/subbmfib.fd - RELOC/tex/latex/sauterfonts/subbmss.fd - RELOC/tex/latex/sauterfonts/subbmtt.fd - RELOC/tex/latex/sauterfonts/subbmvtt.fd - RELOC/tex/latex/sauterfonts/subbold.fd - RELOC/tex/latex/sauterfonts/sucmr.fd - RELOC/tex/latex/sauterfonts/sucmss.fd - RELOC/tex/latex/sauterfonts/sucmtt.fd - RELOC/tex/latex/sauterfonts/sulasy.fd - RELOC/tex/latex/sauterfonts/sumsa.fd - RELOC/tex/latex/sauterfonts/sumsb.fd - RELOC/tex/latex/sauterfonts/sursfs.fd - RELOC/tex/latex/sauterfonts/sustmry.fd - RELOC/tex/latex/sauterfonts/suwasy.fd -docfiles size=1 - RELOC/doc/latex/sauterfonts/README -srcfiles size=6 - RELOC/source/latex/sauterfonts/sauterfonts.fdd - RELOC/source/latex/sauterfonts/sauterfonts.ins -catalogue-ctan /macros/latex/contrib/sauterfonts -catalogue-date 2012-06-04 20:50:45 +0200 -catalogue-license gpl - -name sauter -category Package -revision 13293 -shortdesc Wide range of design sizes for CM fonts. -relocated 1 -longdesc Extensions, originally to the CM fonts, providing a -longdesc parameterization scheme to build Metafont fonts at true design -longdesc sizes, for a large range of sizes. The scheme has now been -longdesc extended to a range of other fonts, including the AMS fonts, -longdesc bbm, bbold, rsfs and wasy fonts. -runfiles size=61 - RELOC/fonts/source/public/sauter/b-cmb.mf - RELOC/fonts/source/public/sauter/b-cmbsy.mf - RELOC/fonts/source/public/sauter/b-cmbx.mf - RELOC/fonts/source/public/sauter/b-cmbxsl.mf - RELOC/fonts/source/public/sauter/b-cmbxti.mf - RELOC/fonts/source/public/sauter/b-cmcsc.mf - RELOC/fonts/source/public/sauter/b-cmdunh.mf - RELOC/fonts/source/public/sauter/b-cmex.mf - RELOC/fonts/source/public/sauter/b-cmff.mf - RELOC/fonts/source/public/sauter/b-cmfi.mf - RELOC/fonts/source/public/sauter/b-cmfib.mf - RELOC/fonts/source/public/sauter/b-cminch.mf - RELOC/fonts/source/public/sauter/b-cmitt.mf - RELOC/fonts/source/public/sauter/b-cmmi.mf - RELOC/fonts/source/public/sauter/b-cmmib.mf - RELOC/fonts/source/public/sauter/b-cmr.mf - RELOC/fonts/source/public/sauter/b-cmsl.mf - RELOC/fonts/source/public/sauter/b-cmsltt.mf - RELOC/fonts/source/public/sauter/b-cmss.mf - RELOC/fonts/source/public/sauter/b-cmssbx.mf - RELOC/fonts/source/public/sauter/b-cmssdc.mf - RELOC/fonts/source/public/sauter/b-cmssi.mf - RELOC/fonts/source/public/sauter/b-cmssq.mf - RELOC/fonts/source/public/sauter/b-cmssqi.mf - RELOC/fonts/source/public/sauter/b-cmssxi.mf - RELOC/fonts/source/public/sauter/b-cmsy.mf - RELOC/fonts/source/public/sauter/b-cmtcsc.mf - RELOC/fonts/source/public/sauter/b-cmtex.mf - RELOC/fonts/source/public/sauter/b-cmti.mf - RELOC/fonts/source/public/sauter/b-cmtt.mf - RELOC/fonts/source/public/sauter/b-cmu.mf - RELOC/fonts/source/public/sauter/b-cmvtt.mf - RELOC/fonts/source/public/sauter/c-bmath.mf - RELOC/fonts/source/public/sauter/c-cmbx.mf - RELOC/fonts/source/public/sauter/c-cmex.mf - RELOC/fonts/source/public/sauter/c-cmff.mf - RELOC/fonts/source/public/sauter/c-cmmi.mf - RELOC/fonts/source/public/sauter/c-cmr.mf - RELOC/fonts/source/public/sauter/c-cmss.mf - RELOC/fonts/source/public/sauter/c-cmssbx.mf - RELOC/fonts/source/public/sauter/c-cmssq.mf - RELOC/fonts/source/public/sauter/c-cmsy.mf - RELOC/fonts/source/public/sauter/c-cmti.mf - RELOC/fonts/source/public/sauter/c-cmtt.mf - RELOC/fonts/source/public/sauter/c-sigma.mf -catalogue-ctan /fonts/cm/sauter -catalogue-date 2014-05-08 01:33:09 +0200 -catalogue-license gpl -catalogue-version 2.4 - -name savefnmark -category Package -revision 15878 -shortdesc Save name of the footnote mark for reuse. -relocated 1 -longdesc Sometimes the same footnote applies to more than one location -longdesc in a table. With this package the mark of a footnote can be -longdesc saved into a name, and re-used subsequently without creating -longdesc another footnote at the bottom. -runfiles size=1 - RELOC/tex/latex/savefnmark/savefnmark.sty -docfiles size=46 - RELOC/doc/latex/savefnmark/savefnmark.pdf -srcfiles size=5 - RELOC/source/latex/savefnmark/savefnmark.drv - RELOC/source/latex/savefnmark/savefnmark.dtx - RELOC/source/latex/savefnmark/savefnmark.ins -catalogue-ctan /macros/latex/contrib/savefnmark -catalogue-date 2012-06-05 13:25:49 +0200 -catalogue-license gpl -catalogue-version 1.0 - -name savesym -category Package -revision 31565 -shortdesc Redefine symbols where names conflict. -relocated 1 -longdesc There are a number of symbols (e.g., \Square) that are defined -longdesc by several packages. In order to typeset all the variants in a -longdesc document, we have to give the glyph a unique name. To do that, -longdesc we define \savesymbol{XXX}, which renames a symbol from \XXX to -longdesc \origXXX, and \restoresymbols{yyy}{XXX}, which renames \origXXX -longdesc back to \XXX and defines a new command, \yyyXXX, which -longdesc corresponds to the most recently loaded version of \XXX. -runfiles size=1 - RELOC/tex/latex/savesym/savesym.sty -catalogue-ctan /macros/latex/contrib/savesym/savesym.sty -catalogue-date 2013-09-02 18:12:33 +0200 -catalogue-license lppl -catalogue-version 1.2 - -name savetrees -category Package -revision 35871 -shortdesc Optimise the use of each page of a LaTeX document. -relocated 1 -longdesc The goal of the savetrees package is to pack as much text as -longdesc possible onto each page of a LaTeX document. Admittedly, this -longdesc makes the document far less attractive. Nevertheless, savetrees -longdesc is a simple way to save paper when printing draft copies of a -longdesc document. It can also be useful when trying to meet a tight -longdesc page-length requirement for a conference or journal submission. -longdesc Most of the package options cover specific modifications to -longdesc typesetting rules, but there are also options subtle, moderate -longdesc and extreme options for the "broad brush" approach. -runfiles size=12 - RELOC/bibtex/bst/savetrees/savetrees.bst - RELOC/tex/latex/savetrees/savetrees.bbx - RELOC/tex/latex/savetrees/savetrees.cbx - RELOC/tex/latex/savetrees/savetrees.sty -docfiles size=154 - RELOC/doc/latex/savetrees/README - RELOC/doc/latex/savetrees/savetrees.pdf - RELOC/doc/latex/savetrees/st-sample2e.pdf -srcfiles size=28 - RELOC/source/latex/savetrees/savetrees.dtx - RELOC/source/latex/savetrees/savetrees.ins -catalogue-ctan /macros/latex/contrib/savetrees -catalogue-date 2014-12-20 08:25:20 +0100 -catalogue-license lppl1.3 -catalogue-version 2.3 - -name scalebar -category Package -revision 15878 -shortdesc Create scalebars for maps, diagrams or photos. -relocated 1 -longdesc This is a small package to create scalebars for maps, diagrams -longdesc or photos. It was designed for use with cave maps but can be -longdesc used for anything from showing a scalebar in kilometres for -longdesc topographic maps to a scalebar in micrometres for an electron -longdesc microscope image. -runfiles size=1 - RELOC/tex/latex/scalebar/scalebar.sty -docfiles size=17 - RELOC/doc/latex/scalebar/README - RELOC/doc/latex/scalebar/scalebar_examples.pdf - RELOC/doc/latex/scalebar/scalebar_examples.tex -srcfiles size=6 - RELOC/source/latex/scalebar/scalebar.dtx - RELOC/source/latex/scalebar/scalebar.ins -catalogue-ctan /macros/latex/contrib/scalebar -catalogue-date 2012-11-14 18:06:01 +0100 -catalogue-license lppl -catalogue-version 1.0 - -name scalerel -category Package -revision 36317 -shortdesc Constrained scaling and stretching of objects. -relocated 1 -longdesc The package provides four commands for vertically scaling and -longdesc stretching objects. Its primary function is the ability to -longdesc scale/stretch and shift one object to conform to the size of a -longdesc specified second object. This feature can be useful in both -longdesc equations and schematic diagrams. Additionally, the scaling and -longdesc stretching commands offer constraints on maximum width and/or -longdesc minimum aspect ratio, which are often used to preserve -longdesc legibility or for the sake of general appearance. -runfiles size=2 - RELOC/tex/latex/scalerel/scalerel.sty -docfiles size=91 - RELOC/doc/latex/scalerel/README - RELOC/doc/latex/scalerel/scalerel.pdf - RELOC/doc/latex/scalerel/scalerel.tex -catalogue-ctan /macros/latex/contrib/scalerel -catalogue-date 2015-02-18 18:53:21 +0100 -catalogue-license lppl1.3 -catalogue-version 1.7 - -name scale -category Package -revision 15878 -shortdesc Scale document by sqrt(2) or magstep(2). -relocated 1 -longdesc A package to scale a document by sqrt(2) (or by \magstep{2}). -longdesc This is useful if you are preparing a document on, for example, -longdesc A5 paper and want to print on A4 paper to achieve a better -longdesc resolution. -runfiles size=1 - RELOC/tex/latex/scale/scale.sty -docfiles size=6 - RELOC/doc/latex/scale/COPYING - RELOC/doc/latex/scale/README -srcfiles size=3 - RELOC/source/latex/scale/scale.dtx - RELOC/source/latex/scale/scale.ins -catalogue-ctan /macros/latex/contrib/scale -catalogue-date 2012-06-05 13:25:49 +0200 -catalogue-license gpl -catalogue-version 1.1.2 - -name scanpages -category Package -revision 34050 -shortdesc Support importing and embellishing scanned documents. -relocated 1 -longdesc The bundle provides support for the process of creating -longdesc documents based on pre-TeX-era material that is available as -longdesc scanned pages, only. -runfiles size=2 - RELOC/tex/latex/scanpages/scanpages.sty -docfiles size=20 - RELOC/doc/latex/scanpages/README - RELOC/doc/latex/scanpages/replicate.plist - RELOC/doc/latex/scanpages/replicate.py - RELOC/doc/latex/scanpages/scanpages-doc.pdf - RELOC/doc/latex/scanpages/scanpages-doc.tex -catalogue-ctan /macros/latex/contrib/scanpages -catalogue-date 2014-05-15 19:06:58 +0200 -catalogue-license lppl1.3 -catalogue-version 1.03 - -name schemabloc -category Package -revision 15878 -shortdesc Draw block diagrams, using Tikz. -relocated 1 -longdesc The package provides a set of macros for constructing block -longdesc diagrams, using TikZ. (The blox package is an "English -longdesc translation" of this package.) -runfiles size=3 - RELOC/tex/latex/schemabloc/schemabloc.sty -docfiles size=56 - RELOC/doc/latex/schemabloc/README - RELOC/doc/latex/schemabloc/schemabloc.pdf - RELOC/doc/latex/schemabloc/schemabloc.tex -catalogue-ctan /graphics/pgf/contrib/schemabloc -catalogue-date 2014-08-22 17:13:44 +0200 -catalogue-license lppl -catalogue-version 1.5 - -name schemata -category Package -revision 31743 -shortdesc Print topical diagrams. -relocated 1 -longdesc The package facilitates the creation of topical schemata, -longdesc outlines that use braces (or facsimiles thereof) to illustrate -longdesc the breakdown of concepts and categories in Scholastic thought -longdesc from late medieval and early modern periods. -runfiles size=2 - RELOC/tex/generic/schemata/schemata.sty -docfiles size=142 - RELOC/doc/generic/schemata/Makefile - RELOC/doc/generic/schemata/README - RELOC/doc/generic/schemata/schemata.pdf -srcfiles size=15 - RELOC/source/generic/schemata/schemata.dtx - RELOC/source/generic/schemata/schemata.ins -catalogue-ctan /macros/generic/schemata -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.7 - -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 - -name scheme-context -category Scheme -revision 35799 -shortdesc ConTeXt scheme -relocated 1 -longdesc This is the TeX Live scheme for installing ConTeXt. -depend collection-context -depend collection-metapost -depend tex-gyre -depend tex-gyre-math -depend antt -depend iwona -depend kurier -depend poltawski -depend xits -depend asana-math -depend gentium-tug -depend pxfonts -depend txfonts -depend ccicons -depend eulervm -depend manfnt-font -depend marvosym -depend mflogo-font -depend wasy -depend ly1 - -name scheme-full -category Scheme -revision 33790 -shortdesc full scheme (everything) -relocated 1 -longdesc This is the full TeX Live scheme: it installs everything -longdesc available. -depend collection-basic -depend collection-bibtexextra -depend collection-binextra -depend collection-context -depend collection-fontsextra -depend collection-fontsrecommended -depend collection-formatsextra -depend collection-fontutils -depend collection-games -depend collection-genericextra -depend collection-genericrecommended -depend collection-htmlxml -depend collection-humanities -depend collection-langafrican -depend collection-langarabic -depend collection-langchinese -depend collection-langcjk -depend collection-langcyrillic -depend collection-langczechslovak -depend collection-langenglish -depend collection-langeuropean -depend collection-langfrench -depend collection-langgerman -depend collection-langgreek -depend collection-langindic -depend collection-langitalian -depend collection-langjapanese -depend collection-langkorean -depend collection-langother -depend collection-langpolish -depend collection-langportuguese -depend collection-langspanish -depend collection-latex -depend collection-latexextra -depend collection-latexrecommended -depend collection-luatex -depend collection-mathextra -depend collection-metapost -depend collection-music -depend collection-omega -depend collection-pictures -depend collection-plainextra -depend collection-pstricks -depend collection-publishers -depend collection-science -depend collection-texworks -depend collection-xetex - -name scheme-gust -category Scheme -revision 30372 -shortdesc GUST TeX Live scheme -relocated 1 -longdesc This is the GUST TeX Live scheme: it is a set of files -longdesc sufficient to typeset Polish plain TeX, LaTeX and ConTeXt -longdesc documents in PostScript or PDF. -depend FAQ-en -depend Type1fonts -depend amslatex-primer -depend amstex -depend antt -depend bibtex8 -depend comment -depend comprehensive -depend concrete -depend cyklop -depend dvidvi -depend dviljk -depend gustprog -depend impatient -depend iwona -depend metafont-beginners -depend metapost-examples -depend poltawski -depend seetexk -depend seminar -depend tds -depend tex4ht -depend texdoc -depend collection-basic -depend collection-context -depend collection-fontutils -depend collection-fontsrecommended -depend collection-genericrecommended -depend collection-langpolish -depend collection-latex -depend collection-latexrecommended -depend collection-metapost -depend collection-texworks -depend collection-xetex - -name scheme-medium -category Scheme -revision 30457 -shortdesc medium scheme (small + more packages and languages) -relocated 1 -longdesc This is the medium TeX Live collection: it contains plain TeX, -longdesc LaTeX, many recommended packages, and support for most European -longdesc languages. -depend collection-basic -depend collection-binextra -depend collection-context -depend collection-fontsrecommended -depend collection-fontutils -depend collection-genericrecommended -depend collection-langczechslovak -depend collection-langenglish -depend collection-langeuropean -depend collection-langfrench -depend collection-langgerman -depend collection-langitalian -depend collection-langpolish -depend collection-langportuguese -depend collection-langspanish -depend collection-latex -depend collection-latexrecommended -depend collection-luatex -depend collection-mathextra -depend collection-metapost -depend collection-plainextra -depend collection-texworks -depend collection-xetex - -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 - -name scheme-small -category Scheme -revision 34838 -shortdesc small scheme (basic + xetex, metapost, a few languages) -relocated 1 -longdesc This is a small TeX Live scheme, corresponding to MacTeX's -longdesc BasicTeX variant. It adds XeTeX, MetaPost, various -longdesc hyphenations, and some recommended packages to scheme-basic. -depend collection-basic -depend collection-latex -depend collection-latexrecommended -depend collection-metapost -depend collection-xetex -depend ec -depend eurosym -depend lualibs -depend luaotfload -depend luatexbase -depend revtex -depend synctex -depend times -depend tipa -depend ulem -depend upquote -depend zapfding -depend babel-basque -depend hyphen-basque -depend babel-czech -depend hyphen-czech -depend babel-danish -depend hyphen-danish -depend babel-dutch -depend hyphen-dutch -depend babel-english -depend hyphen-english -depend babel-finnish -depend hyphen-finnish -depend babel-french -depend hyphen-french -depend babel-german -depend hyphen-german -depend babel-hungarian -depend hyphen-hungarian -depend babel-italian -depend hyphen-italian -depend babel-norsk -depend hyphen-norwegian -depend babel-polish -depend hyphen-polish -depend babel-portuges -depend hyphen-portuguese -depend babel-spanish -depend hyphen-spanish -depend babel-swedish -depend hyphen-swedish - -name scheme-tetex -category Scheme -revision 32952 -shortdesc teTeX scheme (more than medium, but nowhere near full) -relocated 1 -longdesc TeX Live scheme nearly equivalent to the teTeX distribution -longdesc that was maintained by Thomas Esser. -depend FAQ-en -depend SIunits -depend acronym -depend amslatex-primer -depend bbm -depend bbm-macros -depend bbold -depend bibtex8 -depend ctie -depend detex -depend dtl -depend dvi2tty -depend dvicopy -depend dvidvi -depend dviljk -depend patgen -depend pdftools -depend seetexk -depend tie -depend web -depend cmbright -depend cweb -depend eplain -depend eulervm -depend gentle -depend lshort-english -depend mltex -depend multirow -depend nomencl -depend pst-pdf -depend rsfs -depend subfigure -depend supertabular -depend tamethebeast -depend tds -depend tex-refs -depend voss-mathmode -depend collection-basic -depend collection-context -depend collection-fontsrecommended -depend collection-fontutils -depend collection-genericrecommended -depend collection-langcjk -depend collection-langcyrillic -depend collection-langczechslovak -depend collection-langenglish -depend collection-langeuropean -depend collection-langfrench -depend collection-langgerman -depend collection-langgreek -depend collection-langitalian -depend collection-langother -depend collection-langpolish -depend collection-langportuguese -depend collection-langspanish -depend collection-latex -depend collection-latexrecommended -depend collection-mathextra -depend collection-metapost -depend collection-omega -depend collection-pictures -depend collection-plainextra -depend collection-pstricks - -name scheme-xml -category Scheme -revision 13822 -shortdesc XML scheme -relocated 1 -longdesc This contains the things you need to do XML-related work, -longdesc including PassiveTeX, JadeTeX, ConTeXt and Omega. -depend context -depend jadetex -depend ltxmisc -depend marvosym -depend marvosym -depend metapost -depend passivetex -depend rotating -depend stmaryrd -depend tex4ht -depend tipa -depend ucs -depend wasy -depend wasysym -depend xmltex -depend collection-basic -depend collection-fontsrecommended -depend collection-latex -depend collection-omega - -name schule -category Package -revision 37277 -shortdesc Support for teachers at German schools. -relocated 1 -longdesc The 'schule' bundle was built to provide packages and commands -longdesc that could be useful for documents in German schools. At the -longdesc moment its main focus lies on documents for informatics as a -longdesc school subject. An extension for physics is currently in -longdesc progress. Extensions for other subjects are welcome. For the -longdesc time being, the whole package splits up into individual -longdesc packages for informatics (including syntax diagrams, Nassi- -longdesc Shneiderman diagrams, sequence diagrams, object diagrams, and -longdesc class diagrams) as well as classes for written exams (tests, -longdesc quizzes, teaching observations, information sheets, worksheets, -longdesc and answer keys). -runfiles size=39 - RELOC/tex/latex/schule/relaycircuit.sty - RELOC/tex/latex/schule/schule.sty - RELOC/tex/latex/schule/schuleab.cls - RELOC/tex/latex/schule/schulein.cls - RELOC/tex/latex/schule/schuleit.cls - RELOC/tex/latex/schule/schulekl.cls - RELOC/tex/latex/schule/schulekl.sty - RELOC/tex/latex/schule/schuleub.cls - RELOC/tex/latex/schule/schuleue.cls - RELOC/tex/latex/schule/schulinf.sty - RELOC/tex/latex/schule/schullsg.cls - RELOC/tex/latex/schule/schullzk.cls - RELOC/tex/latex/schule/schullzk.sty - RELOC/tex/latex/schule/schulphy.sty - RELOC/tex/latex/schule/syntaxdi.sty -docfiles size=807 - RELOC/doc/latex/schule/README - RELOC/doc/latex/schule/README_DE - RELOC/doc/latex/schule/doc/abFahrplan.pdf - RELOC/doc/latex/schule/doc/abFahrplan.tex - RELOC/doc/latex/schule/doc/abbott.pdf - RELOC/doc/latex/schule/doc/abbott.tex - RELOC/doc/latex/schule/doc/abstandThread.pdf - RELOC/doc/latex/schule/doc/abstandThread.tex - RELOC/doc/latex/schule/doc/etc.tex - RELOC/doc/latex/schule/doc/nandGatter.pdf - RELOC/doc/latex/schule/doc/nandGatter.tex - RELOC/doc/latex/schule/doc/schaltplan.pdf - RELOC/doc/latex/schule/doc/schaltplan.tex - RELOC/doc/latex/schule/doc/schule-abFahrplan.pdf - RELOC/doc/latex/schule/doc/schule-abFahrplan.tex - RELOC/doc/latex/schule/doc/schule-abbott.pdf - RELOC/doc/latex/schule/doc/schule-abbott.tex - RELOC/doc/latex/schule/doc/schule-abstandThread.pdf - RELOC/doc/latex/schule/doc/schule-abstandThread.tex - RELOC/doc/latex/schule/doc/schule-nandGatter.pdf - RELOC/doc/latex/schule/doc/schule-nandGatter.tex - RELOC/doc/latex/schule/doc/schule-schaltplan.pdf - RELOC/doc/latex/schule/doc/schule-schaltplan.tex - RELOC/doc/latex/schule/doc/schule-schuleit-aufgaben-crop.pdf - RELOC/doc/latex/schule/doc/schule-schuleit-aufgaben.pdf - RELOC/doc/latex/schule/doc/schule-schuleit-aufgaben.tex - RELOC/doc/latex/schule/doc/schule-skalierungSequenzdiagramm.pdf - RELOC/doc/latex/schule/doc/schule-skalierungSequenzdiagramm.tex - RELOC/doc/latex/schule/doc/schule-syntaxPython.pdf - RELOC/doc/latex/schule/doc/schule-syntaxPython.tex - RELOC/doc/latex/schule/doc/schule-telefonnummern.pdf - RELOC/doc/latex/schule/doc/schule-telefonnummern.tex - RELOC/doc/latex/schule/doc/schule-ub.pdf - RELOC/doc/latex/schule/doc/schule-ub.tex - RELOC/doc/latex/schule/doc/schule-ubSource.pdf - RELOC/doc/latex/schule/doc/schule-ubSource.tex - RELOC/doc/latex/schule/doc/schule-vorlage.tex - RELOC/doc/latex/schule/doc/schule-wasIstInformatik.pdf - RELOC/doc/latex/schule/doc/schule-wasIstInformatik.tex - RELOC/doc/latex/schule/doc/skalierungSequenzdiagramm.pdf - RELOC/doc/latex/schule/doc/skalierungSequenzdiagramm.tex - RELOC/doc/latex/schule/doc/syntaxPython.pdf - RELOC/doc/latex/schule/doc/syntaxPython.tex - RELOC/doc/latex/schule/doc/telefonnummern.pdf - RELOC/doc/latex/schule/doc/telefonnummern.tex - RELOC/doc/latex/schule/doc/ub.pdf - RELOC/doc/latex/schule/doc/ub.tex - RELOC/doc/latex/schule/doc/ubSource.pdf - RELOC/doc/latex/schule/doc/ubSource.tex - RELOC/doc/latex/schule/doc/vorlage.tex - RELOC/doc/latex/schule/doc/wasIstInformatik.pdf - RELOC/doc/latex/schule/doc/wasIstInformatik.tex - RELOC/doc/latex/schule/schule.pdf -srcfiles size=43 - RELOC/source/latex/schule/schule.dtx - RELOC/source/latex/schule/schule.ins -catalogue-ctan /macros/latex/contrib/schule -catalogue-date 2015-05-07 22:03:26 +0200 -catalogue-license lppl1.3 -catalogue-version 0.6 - -name schulschriften -category Package -revision 35730 -shortdesc German "school scripts" from Suetterlin to the present day. -relocated 1 -longdesc Das Paket enthalt im wesentlichen die METAFONT-Quellfiles fur -longdesc die folgenden Schulausgangsschriften: Suetterlinschrift, -longdesc Deutsche Normalschrift, Lateinische Ausgangsschrift, -longdesc Schulausgangsschrift, Vereinfachte Ausgangsschrift. Damit ist -longdesc es moglich, beliebige deutsche Texte in diesen Schreibschriften -longdesc zu schreiben. -runfiles size=307 - RELOC/fonts/source/public/schulschriften/wedn14.mf - RELOC/fonts/source/public/schulschriften/wedn14_def.mf - RELOC/fonts/source/public/schulschriften/wedn14_end.mf - RELOC/fonts/source/public/schulschriften/wedn14_gr.mf - RELOC/fonts/source/public/schulschriften/wedn14_kl.mf - RELOC/fonts/source/public/schulschriften/wedn14_lig.mf - RELOC/fonts/source/public/schulschriften/wedn14_sz.mf - RELOC/fonts/source/public/schulschriften/wednbx14.mf - RELOC/fonts/source/public/schulschriften/wednbxsl14.mf - RELOC/fonts/source/public/schulschriften/wedneb14.mf - RELOC/fonts/source/public/schulschriften/wednebsl14.mf - RELOC/fonts/source/public/schulschriften/wednsb14.mf - RELOC/fonts/source/public/schulschriften/wednsbsl14.mf - RELOC/fonts/source/public/schulschriften/wednsl14.mf - RELOC/fonts/source/public/schulschriften/wednub14.mf - RELOC/fonts/source/public/schulschriften/wednubsl14.mf - RELOC/fonts/source/public/schulschriften/wela14.mf - RELOC/fonts/source/public/schulschriften/wela14_def.mf - RELOC/fonts/source/public/schulschriften/wela14_end.mf - RELOC/fonts/source/public/schulschriften/wela14_gr.mf - RELOC/fonts/source/public/schulschriften/wela14_kl.mf - RELOC/fonts/source/public/schulschriften/wela14_lig.mf - RELOC/fonts/source/public/schulschriften/wela14_sz.mf - RELOC/fonts/source/public/schulschriften/welabx14.mf - RELOC/fonts/source/public/schulschriften/welabxsl14.mf - RELOC/fonts/source/public/schulschriften/welaeb14.mf - RELOC/fonts/source/public/schulschriften/welaebsl14.mf - RELOC/fonts/source/public/schulschriften/welasb14.mf - RELOC/fonts/source/public/schulschriften/welasbsl14.mf - RELOC/fonts/source/public/schulschriften/welasl14.mf - RELOC/fonts/source/public/schulschriften/welaub14.mf - RELOC/fonts/source/public/schulschriften/welaubsl14.mf - RELOC/fonts/source/public/schulschriften/wesa14.mf - RELOC/fonts/source/public/schulschriften/wesa14_def.mf - RELOC/fonts/source/public/schulschriften/wesa14_end.mf - RELOC/fonts/source/public/schulschriften/wesa14_gr.mf - RELOC/fonts/source/public/schulschriften/wesa14_kl.mf - RELOC/fonts/source/public/schulschriften/wesa14_lig.mf - RELOC/fonts/source/public/schulschriften/wesa14_sz.mf - RELOC/fonts/source/public/schulschriften/wesabx14.mf - RELOC/fonts/source/public/schulschriften/wesabxsl14.mf - RELOC/fonts/source/public/schulschriften/wesaeb14.mf - RELOC/fonts/source/public/schulschriften/wesaebsl14.mf - RELOC/fonts/source/public/schulschriften/wesasb14.mf - RELOC/fonts/source/public/schulschriften/wesasbsl14.mf - RELOC/fonts/source/public/schulschriften/wesasl14.mf - RELOC/fonts/source/public/schulschriften/wesaub14.mf - RELOC/fonts/source/public/schulschriften/wesaubsl14.mf - RELOC/fonts/source/public/schulschriften/wesu14.mf - RELOC/fonts/source/public/schulschriften/wesu14_def.mf - RELOC/fonts/source/public/schulschriften/wesu14_end.mf - RELOC/fonts/source/public/schulschriften/wesu14_gr.mf - RELOC/fonts/source/public/schulschriften/wesu14_kl.mf - RELOC/fonts/source/public/schulschriften/wesu14_lig.mf - RELOC/fonts/source/public/schulschriften/wesu14_sz.mf - RELOC/fonts/source/public/schulschriften/wesub14.mf - RELOC/fonts/source/public/schulschriften/wesubsl14.mf - RELOC/fonts/source/public/schulschriften/wesubx14.mf - RELOC/fonts/source/public/schulschriften/wesubxsl14.mf - RELOC/fonts/source/public/schulschriften/wesueb14.mf - RELOC/fonts/source/public/schulschriften/wesuebsl14.mf - RELOC/fonts/source/public/schulschriften/wesusb14.mf - RELOC/fonts/source/public/schulschriften/wesusbsl14.mf - RELOC/fonts/source/public/schulschriften/wesusl14.mf - RELOC/fonts/source/public/schulschriften/wesuub14.mf - RELOC/fonts/source/public/schulschriften/wesuubsl14.mf - RELOC/fonts/source/public/schulschriften/weva14.mf - RELOC/fonts/source/public/schulschriften/weva14_def.mf - RELOC/fonts/source/public/schulschriften/weva14_gr.mf - RELOC/fonts/source/public/schulschriften/weva14_kl.mf - RELOC/fonts/source/public/schulschriften/weva14_lig.mf - RELOC/fonts/source/public/schulschriften/weva14_sz.mf - RELOC/fonts/source/public/schulschriften/wevabx14.mf - RELOC/fonts/source/public/schulschriften/wevabxsl14.mf - RELOC/fonts/source/public/schulschriften/wevaeb14.mf - RELOC/fonts/source/public/schulschriften/wevaebsl14.mf - RELOC/fonts/source/public/schulschriften/wevasb14.mf - RELOC/fonts/source/public/schulschriften/wevasbsl14.mf - RELOC/fonts/source/public/schulschriften/wevasl14.mf - RELOC/fonts/source/public/schulschriften/wevaub14.mf - RELOC/fonts/source/public/schulschriften/wevaubsl14.mf - RELOC/fonts/tfm/public/schulschriften/wedn14.tfm - RELOC/fonts/tfm/public/schulschriften/wednbx14.tfm - RELOC/fonts/tfm/public/schulschriften/wednbxsl14.tfm - RELOC/fonts/tfm/public/schulschriften/wedneb14.tfm - RELOC/fonts/tfm/public/schulschriften/wednebsl14.tfm - RELOC/fonts/tfm/public/schulschriften/wednsb14.tfm - RELOC/fonts/tfm/public/schulschriften/wednsbsl14.tfm - RELOC/fonts/tfm/public/schulschriften/wednsl14.tfm - RELOC/fonts/tfm/public/schulschriften/wednub14.tfm - RELOC/fonts/tfm/public/schulschriften/wednubsl14.tfm - RELOC/fonts/tfm/public/schulschriften/wela14.tfm - RELOC/fonts/tfm/public/schulschriften/welabx14.tfm - RELOC/fonts/tfm/public/schulschriften/welabxsl14.tfm - RELOC/fonts/tfm/public/schulschriften/welaeb14.tfm - RELOC/fonts/tfm/public/schulschriften/welaebsl14.tfm - RELOC/fonts/tfm/public/schulschriften/welasb14.tfm - RELOC/fonts/tfm/public/schulschriften/welasbsl14.tfm - RELOC/fonts/tfm/public/schulschriften/welasl14.tfm - RELOC/fonts/tfm/public/schulschriften/welaub14.tfm - RELOC/fonts/tfm/public/schulschriften/welaubsl14.tfm - RELOC/fonts/tfm/public/schulschriften/wesa14.tfm - RELOC/fonts/tfm/public/schulschriften/wesabx14.tfm - RELOC/fonts/tfm/public/schulschriften/wesabxsl14.tfm - RELOC/fonts/tfm/public/schulschriften/wesaeb14.tfm - RELOC/fonts/tfm/public/schulschriften/wesaebsl14.tfm - RELOC/fonts/tfm/public/schulschriften/wesasb14.tfm - RELOC/fonts/tfm/public/schulschriften/wesasbsl14.tfm - RELOC/fonts/tfm/public/schulschriften/wesasl14.tfm - RELOC/fonts/tfm/public/schulschriften/wesaub14.tfm - RELOC/fonts/tfm/public/schulschriften/wesaubsl14.tfm - RELOC/fonts/tfm/public/schulschriften/wesu14.tfm - RELOC/fonts/tfm/public/schulschriften/wesub14.tfm - RELOC/fonts/tfm/public/schulschriften/wesubsl14.tfm - RELOC/fonts/tfm/public/schulschriften/wesubx14.tfm - RELOC/fonts/tfm/public/schulschriften/wesubxsl14.tfm - RELOC/fonts/tfm/public/schulschriften/wesueb14.tfm - RELOC/fonts/tfm/public/schulschriften/wesuebsl14.tfm - RELOC/fonts/tfm/public/schulschriften/wesusb14.tfm - RELOC/fonts/tfm/public/schulschriften/wesusbsl14.tfm - RELOC/fonts/tfm/public/schulschriften/wesusl14.tfm - RELOC/fonts/tfm/public/schulschriften/wesuub14.tfm - RELOC/fonts/tfm/public/schulschriften/wesuubsl14.tfm - RELOC/fonts/tfm/public/schulschriften/weva14.tfm - RELOC/fonts/tfm/public/schulschriften/wevabx14.tfm - RELOC/fonts/tfm/public/schulschriften/wevabxsl14.tfm - RELOC/fonts/tfm/public/schulschriften/wevaeb14.tfm - RELOC/fonts/tfm/public/schulschriften/wevaebsl14.tfm - RELOC/fonts/tfm/public/schulschriften/wevasb14.tfm - RELOC/fonts/tfm/public/schulschriften/wevasbsl14.tfm - RELOC/fonts/tfm/public/schulschriften/wevasl14.tfm - RELOC/fonts/tfm/public/schulschriften/wevaub14.tfm - RELOC/fonts/tfm/public/schulschriften/wevaubsl14.tfm - RELOC/tex/latex/schulschriften/schulschriften_lin.sty - RELOC/tex/latex/schulschriften/schulschriften_ltx.sty - RELOC/tex/latex/schulschriften/t1wedn.fd - RELOC/tex/latex/schulschriften/t1wela.fd - RELOC/tex/latex/schulschriften/t1wesa.fd - RELOC/tex/latex/schulschriften/t1wesu.fd - RELOC/tex/latex/schulschriften/t1weva.fd - RELOC/tex/latex/schulschriften/wedn.sty - RELOC/tex/latex/schulschriften/wela.sty - RELOC/tex/latex/schulschriften/wesa.sty - RELOC/tex/latex/schulschriften/wesu.sty - RELOC/tex/latex/schulschriften/weva.sty -docfiles size=972 - RELOC/doc/fonts/schulschriften/README - RELOC/doc/fonts/schulschriften/schulschriften.pdf - RELOC/doc/fonts/schulschriften/schulschriften.tex - RELOC/doc/fonts/schulschriften/schulschriften_ltx.tex - RELOC/doc/fonts/schulschriften/schulschriften_xpl.tex - RELOC/doc/fonts/schulschriften/wedn_fonttabelle.eps - RELOC/doc/fonts/schulschriften/wela_fonttabelle.eps - RELOC/doc/fonts/schulschriften/wesa_fonttabelle.eps - RELOC/doc/fonts/schulschriften/wesu_fonttabelle.eps - RELOC/doc/fonts/schulschriften/weva_fonttabelle.eps -catalogue-ctan /fonts/schulschriften -catalogue-date 2014-12-02 22:27:21 +0100 -catalogue-license lppl -catalogue-version 4 - -name schwalbe-chess -category Package -revision 36309 -shortdesc Typeset the German chess magazine "Die Schwalbe" -relocated 1 -longdesc The package is based on chess-problem-diagrams, which in its -longdesc turn has a dependency on the bartel-chess-fonts -runfiles size=9 - RELOC/tex/latex/schwalbe-chess/schwalbe.cls - RELOC/tex/latex/schwalbe-chess/schwalbe.sty -docfiles size=49 - RELOC/doc/latex/schwalbe-chess/README - RELOC/doc/latex/schwalbe-chess/schwalbe.pdf -srcfiles size=14 - RELOC/source/latex/schwalbe-chess/schwalbe.dtx - RELOC/source/latex/schwalbe-chess/schwalbe.ins -catalogue-ctan /macros/latex/contrib/schwalbe-chess -catalogue-date 2015-02-17 13:40:57 +0100 -catalogue-license lppl1.2 -catalogue-version 2.0 - -name sciposter -category Package -revision 15878 -shortdesc Make posters of ISO A3 size and larger. -relocated 1 -longdesc This collection of files contains LaTeX packages for posters of -longdesc ISO A3 size and larger (ISO A0 is the default size). American -longdesc paper sizes and custom paper are supported. In particular, -longdesc sciposter.cls defines a document class which allows cutting and -longdesc pasting most of an article to a poster without any editing -longdesc (save reducing the size) -- see the manual. Sciposter does work -longdesc for LaTeX, not just pdfLaTeX. However, xdvi produces strange -longdesc results, though a recent version of dvips does create good ps- -longdesc files from the dvi files. Also note that logos must either be -longdesc put in the current working directory or in the directories of -longdesc your LaTeX distribution. For some reason graphicspath settings -longdesc are ignored. -runfiles size=16 - RELOC/tex/latex/sciposter/paperb0.cfg - RELOC/tex/latex/sciposter/paperb1.cfg - RELOC/tex/latex/sciposter/paperb2.cfg - RELOC/tex/latex/sciposter/paperb3.cfg - RELOC/tex/latex/sciposter/papercustom.cfg - RELOC/tex/latex/sciposter/paperra0.cfg - RELOC/tex/latex/sciposter/paperra1.cfg - RELOC/tex/latex/sciposter/paperra2.cfg - RELOC/tex/latex/sciposter/sciposter.cls -docfiles size=176 - RELOC/doc/latex/sciposter/README - RELOC/doc/latex/sciposter/sciposterexample/auto/sciposter-example.el - RELOC/doc/latex/sciposter/sciposterexample/blocks1.eps - RELOC/doc/latex/sciposter/sciposterexample/blocks1.pdf - RELOC/doc/latex/sciposter/sciposterexample/blocks1a.eps - RELOC/doc/latex/sciposter/sciposterexample/blocks1a.pdf - RELOC/doc/latex/sciposter/sciposterexample/blocks1mx.eps - RELOC/doc/latex/sciposter/sciposterexample/blocks1mx.pdf - RELOC/doc/latex/sciposter/sciposterexample/blocks1vx.eps - RELOC/doc/latex/sciposter/sciposterexample/blocks1vx.pdf - RELOC/doc/latex/sciposter/sciposterexample/blocks2.eps - RELOC/doc/latex/sciposter/sciposterexample/blocks2.pdf - RELOC/doc/latex/sciposter/sciposterexample/blocks2mx.eps - RELOC/doc/latex/sciposter/sciposterexample/blocks2mx.pdf - RELOC/doc/latex/sciposter/sciposterexample/blocks3.eps - RELOC/doc/latex/sciposter/sciposterexample/blocks3.pdf - RELOC/doc/latex/sciposter/sciposterexample/blocks3mx.eps - RELOC/doc/latex/sciposter/sciposterexample/blocks3mx.pdf - RELOC/doc/latex/sciposter/sciposterexample/blocks3op.eps - RELOC/doc/latex/sciposter/sciposterexample/blocks3op.pdf - RELOC/doc/latex/sciposter/sciposterexample/blocks3openvx.eps - RELOC/doc/latex/sciposter/sciposterexample/blocks3rec.eps - RELOC/doc/latex/sciposter/sciposterexample/blocks3rec.pdf - RELOC/doc/latex/sciposter/sciposterexample/blocks3vx.eps - RELOC/doc/latex/sciposter/sciposterexample/blocks3vx.pdf - RELOC/doc/latex/sciposter/sciposterexample/blocksopen3a.eps - RELOC/doc/latex/sciposter/sciposterexample/blocksopen3a.pdf - RELOC/doc/latex/sciposter/sciposterexample/blocksopen3vx.eps - RELOC/doc/latex/sciposter/sciposterexample/blocksopen3vx.pdf - RELOC/doc/latex/sciposter/sciposterexample/blocksopen3vy.eps - RELOC/doc/latex/sciposter/sciposterexample/blocksopen3vy.pdf - RELOC/doc/latex/sciposter/sciposterexample/sciposter-example.tex - RELOC/doc/latex/sciposter/scipostermanual.pdf -catalogue-ctan /macros/latex/contrib/sciposter -catalogue-date 2012-06-05 13:25:49 +0200 -catalogue-license lppl -catalogue-version 1.18 - -name sclang-prettifier -category Package -revision 35087 -shortdesc Prettyprinting SuperCollider source code -relocated 1 -longdesc Built on top of the listings package, the package allows -longdesc effortless prettyprinting of SuperCollider source code in -longdesc documents typeset with LaTeX & friends. -runfiles size=2 - RELOC/tex/latex/sclang-prettifier/sclang-prettifier.sty -docfiles size=127 - RELOC/doc/latex/sclang-prettifier/README - RELOC/doc/latex/sclang-prettifier/sclang-prettifier.pdf -srcfiles size=8 - RELOC/source/latex/sclang-prettifier/sclang-prettifier.dtx - RELOC/source/latex/sclang-prettifier/sclang-prettifier.ins -catalogue-ctan /macros/latex/contrib/sclang-prettifier -catalogue-date 2014-09-09 12:12:26 +0200 -catalogue-license lppl1.3 -catalogue-version 0.1 - -name screenplay-pkg -category Package -revision 37893 -shortdesc Package version of the screenplay document class. -relocated 1 -longdesc This package implements the tools of the screenplay document -longdesc class in the form of a package so that screenplay fragments can -longdesc be included within another document class. For full -longdesc documentation of the available commands, please consult the -longdesc screenplay class documentation in addition to the included -longdesc package documentation. -runfiles size=2 - RELOC/tex/latex/screenplay-pkg/screenplay-pkg.sty -docfiles size=49 - RELOC/doc/latex/screenplay-pkg/README - RELOC/doc/latex/screenplay-pkg/screenplay-pkg-example.pdf - RELOC/doc/latex/screenplay-pkg/screenplay-pkg-example.tex - RELOC/doc/latex/screenplay-pkg/screenplay-pkg.pdf - RELOC/doc/latex/screenplay-pkg/screenplay-pkg.tex -catalogue-also screenplay -catalogue-ctan /macros/latex/contrib/screenplay-pkg -catalogue-date 2015-07-16 17:36:03 +0200 -catalogue-license lppl1.3 -catalogue-topics drama-script -catalogue-version 1.0 - -name screenplay -category Package -revision 27223 -shortdesc A class file to typeset screenplays. -relocated 1 -longdesc The class implements the format recommended by the Academy of -longdesc Motion Picture Arts and Sciences. -runfiles size=3 - RELOC/tex/latex/screenplay/hardmarg.sty - RELOC/tex/latex/screenplay/screenplay.cls -docfiles size=52 - RELOC/doc/latex/screenplay/COPYING - RELOC/doc/latex/screenplay/README - RELOC/doc/latex/screenplay/example.tex - RELOC/doc/latex/screenplay/screenplay.pdf - RELOC/doc/latex/screenplay/test.pdf - RELOC/doc/latex/screenplay/test.tex -srcfiles size=14 - RELOC/source/latex/screenplay/screenplay.dtx - RELOC/source/latex/screenplay/screenplay.ins -catalogue-ctan /macros/latex/contrib/screenplay -catalogue-date 2012-07-04 00:53:20 +0200 -catalogue-license gpl -catalogue-version 1.6 - -name scrjrnl -category Package -revision 27810 -shortdesc Typeset diaries or journals. -relocated 1 -longdesc A class, based on scrbook, designed for typesetting diaries, -longdesc journals or devotionals. -runfiles size=2 - RELOC/tex/latex/scrjrnl/scrjrnl.cls -docfiles size=33 - RELOC/doc/latex/scrjrnl/README - RELOC/doc/latex/scrjrnl/example.pdf - RELOC/doc/latex/scrjrnl/scrjrnl.pdf -srcfiles size=5 - RELOC/source/latex/scrjrnl/scrjrnl.dtx - RELOC/source/latex/scrjrnl/scrjrnl.ins -catalogue-ctan /macros/latex/contrib/scrjrnl -catalogue-date 2014-09-12 15:34:20 +0200 -catalogue-license lppl1.3 -catalogue-version 0.1 - -name sdrt -category Package -revision 15878 -shortdesc Macros for Segmented Discourse Representation Theory. -relocated 1 -longdesc The package provides macros to produce the 'Box notation' of -longdesc SDRT (and DRT), to draw trees representing discourse relations, -longdesc and finally to have an easy access to various mathematical -longdesc symbols used in that theory, mostly with automatic mathematics -longdesc mode, so they work the same in formulae and in text. -runfiles size=3 - RELOC/tex/latex/sdrt/sdrt.sty -docfiles size=61 - RELOC/doc/latex/sdrt/README - RELOC/doc/latex/sdrt/sdrt-doc.pdf - RELOC/doc/latex/sdrt/sdrt-doc.tex -catalogue-ctan /macros/latex/contrib/sdrt -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 - -name sduthesis -category Package -revision 35967 -shortdesc Thesis Template of Shandong University -relocated 1 -longdesc Thesis Template of Shandong University. -runfiles size=422 - RELOC/tex/latex/sduthesis/figures/SDU.pdf - RELOC/tex/latex/sduthesis/figures/SDULogo.pdf - RELOC/tex/latex/sduthesis/figures/SDUWords.jpg - RELOC/tex/latex/sduthesis/figures/sduthesis-baotuquan.jpg - RELOC/tex/latex/sduthesis/figures/sduthesis-hongloujiaotang.jpg - RELOC/tex/latex/sduthesis/figures/sduthesis-ruanjianyuan.jpg - RELOC/tex/latex/sduthesis/figures/sduthesis-xianzhidadao.jpg - RELOC/tex/latex/sduthesis/figures/sduthesis-zhixinlou.jpg - RELOC/tex/latex/sduthesis/sduthesis-cover.def - RELOC/tex/latex/sduthesis/sduthesis-statement.def - RELOC/tex/latex/sduthesis/sduthesis.cls -docfiles size=385 - RELOC/doc/latex/sduthesis/LICENSE - RELOC/doc/latex/sduthesis/README - RELOC/doc/latex/sduthesis/sduthesis-demo.pdf - RELOC/doc/latex/sduthesis/sduthesis-demo.tex - RELOC/doc/latex/sduthesis/sduthesis.pdf -srcfiles size=20 - RELOC/source/latex/sduthesis/sduthesis.dtx - RELOC/source/latex/sduthesis/sduthesis.ins -catalogue-ctan /macros/latex/contrib/sduthesis -catalogue-date 2015-01-14 14:29:45 +0100 -catalogue-license lppl1.3 -catalogue-version 1.2.0c - -name secdot -category Package -revision 20208 -shortdesc Section numbers with trailing dots. -relocated 1 -longdesc Makes the numbers of \section commands come out with a trailing -longdesc dot. Includes a command whereby the same can be made to happen -longdesc with other sectioning commands. -runfiles size=1 - RELOC/tex/latex/secdot/secdot.sty -docfiles size=64 - RELOC/doc/latex/secdot/secdot.ltx - RELOC/doc/latex/secdot/secdot.pdf -catalogue-ctan /macros/latex/contrib/secdot -catalogue-date 2012-06-13 15:07:38 +0200 -catalogue-license lppl -catalogue-version 1.0 - -name sectionbox -category Package -revision 37749 -shortdesc Create fancy boxed ((sub)sub)sections. -relocated 1 -longdesc Sectionbox is a LaTeX package for putting fancy colored boxes -longdesc around sections, subsections, and subsubsections, especially -longdesc for use in posters, etc. It was designed with the sciposter -longdesc class in mind, and certainly works with that class and with -longdesc derived classes. -runfiles size=2 - RELOC/tex/latex/sectionbox/sectionbox.sty -docfiles size=57 - RELOC/doc/latex/sectionbox/README - RELOC/doc/latex/sectionbox/example/000074Bpatspec.png - RELOC/doc/latex/sectionbox/example/000074Bzones.jpg - RELOC/doc/latex/sectionbox/example/000175Bpatspec.png - RELOC/doc/latex/sectionbox/example/000175Bzones.jpg - RELOC/doc/latex/sectionbox/example/002000AApatspec.png - RELOC/doc/latex/sectionbox/example/002000AAzones.jpg - RELOC/doc/latex/sectionbox/example/README.TEXLIVE - RELOC/doc/latex/sectionbox/example/lambda2.jpg - RELOC/doc/latex/sectionbox/example/orig.jpg - RELOC/doc/latex/sectionbox/example/sectionboxexample.bib - RELOC/doc/latex/sectionbox/example/sectionboxexample.tex - RELOC/doc/latex/sectionbox/sectionboxmanual.pdf -catalogue-ctan /macros/latex/contrib/sectionbox -catalogue-date 2012-06-13 15:07:38 +0200 -catalogue-license lppl -catalogue-topics decoration -catalogue-version 1.01 - -name section -category Package -revision 20180 -shortdesc Modifying section commands in LaTeX. -relocated 1 -longdesc The package implements a pretty extensive scheme to make more -longdesc manageable the business of configuring LaTeX output. -runfiles size=8 - RELOC/tex/latex/section/section.sty -docfiles size=92 - RELOC/doc/latex/section/section-doc.pdf - RELOC/doc/latex/section/section-doc.tex -catalogue-ctan /macros/latex/contrib/section -catalogue-date 2012-06-13 15:07:38 +0200 -catalogue-license lppl - -name sectsty -category Package -revision 15878 -shortdesc Control sectional headers. -relocated 1 -longdesc A LaTeX2e package to help change the style of any or all of -longdesc LaTeX's sectional headers in the article, book, or report -longdesc classes. Examples include the addition of rules above or below -longdesc a section title. -runfiles size=6 - RELOC/tex/latex/sectsty/sectsty.sty -docfiles size=57 - RELOC/doc/latex/sectsty/sectsty.pdf -srcfiles size=23 - RELOC/source/latex/sectsty/sectsty.dtx - RELOC/source/latex/sectsty/sectsty.ins -catalogue-ctan /macros/latex/contrib/sectsty -catalogue-date 2012-06-13 15:07:38 +0200 -catalogue-license lppl -catalogue-version 2.0.2 - -name seealso -category Package -revision 33449 -shortdesc Improve the performance of \see macros with makeindex. -relocated 1 -longdesc The package amends the \see and \seealso macros that are used -longdesc in building indexes with makeindex, to deal with repetitions, -longdesc and to ensure page numbers are present in the actual index -longdesc entries. on these indirecty -runfiles size=2 - RELOC/tex/latex/seealso/seealso.sty -docfiles size=40 - RELOC/doc/latex/seealso/seealso.pdf -srcfiles size=11 - RELOC/source/latex/seealso/seealso.dtx - RELOC/source/latex/seealso/seealso.ins -catalogue-ctan /macros/latex/contrib/seealso -catalogue-date 2015-03-30 22:55:45 +0200 -catalogue-license lppl1.3 -catalogue-version 1.1 - -name seetexk -category TLCore -revision 37078 -catalogue dvibook -shortdesc Utilities for manipulating DVI files. -longdesc The collection comprises: dvibook, which will rearrange the -longdesc pages of a DVI file into 'signatures' as used when printing a -longdesc book; dviconcat, for concatenating pages of DVI file(s); -longdesc dviselect, which will select pages from one DVI file to create -longdesc a new DVI file; dvitodvi, which will rearrange the pages of a -longdesc DVI file to create a new file; and libtex, a library for -longdesc manipulating the files, from the old SeeTeX project. The -longdesc utilities are provided as C source with Imakefiles, and an MS- -longdesc DOS version of dvibook is also provided. -depend seetexk.ARCH -docfiles size=14 - texmf-dist/doc/man/man1/dvibook.1 - texmf-dist/doc/man/man1/dvibook.man1.pdf - texmf-dist/doc/man/man1/dviconcat.1 - texmf-dist/doc/man/man1/dviconcat.man1.pdf - texmf-dist/doc/man/man1/dviselect.1 - texmf-dist/doc/man/man1/dviselect.man1.pdf - texmf-dist/doc/man/man1/dvitodvi.1 - texmf-dist/doc/man/man1/dvitodvi.man1.pdf -catalogue-ctan /dviware/dvibook -catalogue-date 2014-10-16 20:09:26 +0200 -catalogue-license other-free - -name seetexk.i386-linux -category TLCore -revision 36790 -shortdesc i386-linux files of seetexk -binfiles arch=i386-linux size=29 - bin/i386-linux/dvibook - bin/i386-linux/dviconcat - bin/i386-linux/dviselect - bin/i386-linux/dvitodvi - -name selectp -category Package -revision 20185 -shortdesc Select pages to be output. -relocated 1 -longdesc Defines a command \outputonly, whose argument is a list of -longdesc pages to be output. With the command present (before -longdesc \begin{document}), only those pages are output. This package -longdesc was inspired by code published by Knuth in TUGboat 8(2) (July -longdesc 1987). -runfiles size=3 - RELOC/tex/latex/selectp/selectp.sty -docfiles size=70 - RELOC/doc/latex/selectp/selectp-doc.pdf - RELOC/doc/latex/selectp/selectp-doc.tex -catalogue-ctan /macros/latex/contrib/selectp -catalogue-date 2012-06-13 16:26:52 +0200 -catalogue-license pd -catalogue-version 1.0 - -name selnolig -category Package -revision 31544 -shortdesc Selectively disable typographic ligatures. -relocated 1 -longdesc The package suppresses typographic ligatures selectively, i.e., -longdesc based on predefined search patterns. The search patterns focus -longdesc on ligatures deemed inappropriate because they span morpheme -longdesc boundaries. For example, the word shelfful, which is mentioned -longdesc in the TeXbook as a word for which the ff ligature might be -longdesc inappropriate, is automatically typeset as shelf\/ful rather -longdesc than as shel{ff}ul. For English and German language documents, -longdesc the package provides extensive rules for the selective -longdesc suppression of so-called "common" ligatures. These comprise the -longdesc ff, fi, fl, ffi, and ffl ligatures as well as the ft and fft -longdesc ligatures. Other f-ligatures, such as fb, fh, fj and fk, are -longdesc suppressed globally, while exceptions are made for names and -longdesc words of non-English/German origin, such as Kafka and fjord. -longdesc For English language documents, the package further provides -longdesc ligature suppression macros for a number of so-called -longdesc "discretionary" or "rare" ligatures such as ct, st, and sp. The -longdesc package requires use of a recent LuaLaTeX format (for example -longdesc those from TeX Live 2012 or 2013, or MiKTeX 2.9). -runfiles size=31 - RELOC/tex/lualatex/selnolig/selnolig-english-hyphex.sty - RELOC/tex/lualatex/selnolig/selnolig-english-patterns.sty - RELOC/tex/lualatex/selnolig/selnolig-german-hyphex.sty - RELOC/tex/lualatex/selnolig/selnolig-german-patterns.sty - RELOC/tex/lualatex/selnolig/selnolig.lua - RELOC/tex/lualatex/selnolig/selnolig.sty -docfiles size=194 - RELOC/doc/lualatex/selnolig/README - RELOC/doc/lualatex/selnolig/gpp-ft.fea - RELOC/doc/lualatex/selnolig/selnolig-bugreport.tex - RELOC/doc/lualatex/selnolig/selnolig-english-test.pdf - RELOC/doc/lualatex/selnolig/selnolig-english-test.tex - RELOC/doc/lualatex/selnolig/selnolig-english-wordlist.tex - RELOC/doc/lualatex/selnolig/selnolig-german-test.pdf - RELOC/doc/lualatex/selnolig/selnolig-german-test.tex - RELOC/doc/lualatex/selnolig/selnolig-german-wordlist.tex - RELOC/doc/lualatex/selnolig/selnolig.pdf - RELOC/doc/lualatex/selnolig/selnolig.tex -catalogue-ctan /macros/luatex/latex/selnolig -catalogue-date 2015-02-27 06:53:27 +0100 -catalogue-license lppl1.3 -catalogue-version 0.256 - -name semantic -category Package -revision 15878 -shortdesc Help for writing programming language semantics. -relocated 1 -longdesc Eases the typesetting of notation of semantics and compilers. -longdesc Includes T-diagrams, various derivation symbols and inference -longdesc trees. -runfiles size=10 - RELOC/tex/latex/semantic/infernce.sty - RELOC/tex/latex/semantic/ligature.sty - RELOC/tex/latex/semantic/reserved.sty - RELOC/tex/latex/semantic/semantic.sty - RELOC/tex/latex/semantic/shrthand.sty - RELOC/tex/latex/semantic/tdiagram.sty -docfiles size=96 - RELOC/doc/latex/semantic/semantic.pdf -srcfiles size=30 - RELOC/source/latex/semantic/semantic.dtx - RELOC/source/latex/semantic/semantic.ins -catalogue-ctan /macros/latex/contrib/semantic -catalogue-date 2012-06-13 16:26:52 +0200 -catalogue-license lppl -catalogue-version 2.0 - -name semaphor -category Package -revision 18651 -shortdesc Semaphore alphabet font. -relocated 1 -longdesc These fonts represent semaphore in a highly schematic, but very -longdesc clear, fashion. The fonts are provided as Metafont source, and -longdesc in both OpenType and Adobe Type 1 formats. -execute addMixedMap semaf.map -runfiles size=714 - RELOC/fonts/afm/public/semaphor/smfb10.afm - RELOC/fonts/afm/public/semaphor/smfbsl10.afm - RELOC/fonts/afm/public/semaphor/smfeb10.afm - RELOC/fonts/afm/public/semaphor/smfebsl10.afm - RELOC/fonts/afm/public/semaphor/smfer10.afm - RELOC/fonts/afm/public/semaphor/smfesl10.afm - RELOC/fonts/afm/public/semaphor/smfett10.afm - RELOC/fonts/afm/public/semaphor/smfpb10.afm - RELOC/fonts/afm/public/semaphor/smfpbsl10.afm - RELOC/fonts/afm/public/semaphor/smfpr10.afm - RELOC/fonts/afm/public/semaphor/smfpsl10.afm - RELOC/fonts/afm/public/semaphor/smfptt10.afm - RELOC/fonts/afm/public/semaphor/smfr10-1.afm - RELOC/fonts/afm/public/semaphor/smfr10-2.afm - RELOC/fonts/afm/public/semaphor/smfr10.afm - RELOC/fonts/afm/public/semaphor/smfsl10.afm - RELOC/fonts/afm/public/semaphor/smftt10.afm - RELOC/fonts/enc/dvips/semaphor/smfb10.enc - RELOC/fonts/enc/dvips/semaphor/smfbsl10.enc - RELOC/fonts/enc/dvips/semaphor/smfeb10.enc - RELOC/fonts/enc/dvips/semaphor/smfebsl10.enc - RELOC/fonts/enc/dvips/semaphor/smfer10.enc - RELOC/fonts/enc/dvips/semaphor/smfesl10.enc - RELOC/fonts/enc/dvips/semaphor/smfett10.enc - RELOC/fonts/enc/dvips/semaphor/smfpb10.enc - RELOC/fonts/enc/dvips/semaphor/smfpbsl10.enc - RELOC/fonts/enc/dvips/semaphor/smfpr10.enc - RELOC/fonts/enc/dvips/semaphor/smfpsl10.enc - RELOC/fonts/enc/dvips/semaphor/smfptt10.enc - RELOC/fonts/enc/dvips/semaphor/smfr10.enc - RELOC/fonts/enc/dvips/semaphor/smfsl10.enc - RELOC/fonts/enc/dvips/semaphor/smftt10.enc - RELOC/fonts/map/dvips/semaphor/semaf.map - RELOC/fonts/opentype/public/semaphor/smfb10.otf - RELOC/fonts/opentype/public/semaphor/smfbsl10.otf - RELOC/fonts/opentype/public/semaphor/smfeb10.otf - RELOC/fonts/opentype/public/semaphor/smfebsl10.otf - RELOC/fonts/opentype/public/semaphor/smfer10.otf - RELOC/fonts/opentype/public/semaphor/smfesl10.otf - RELOC/fonts/opentype/public/semaphor/smfett10.otf - RELOC/fonts/opentype/public/semaphor/smfpb10.otf - RELOC/fonts/opentype/public/semaphor/smfpbsl10.otf - RELOC/fonts/opentype/public/semaphor/smfpr10.otf - RELOC/fonts/opentype/public/semaphor/smfpsl10.otf - RELOC/fonts/opentype/public/semaphor/smfptt10.otf - RELOC/fonts/opentype/public/semaphor/smfr10.otf - RELOC/fonts/opentype/public/semaphor/smfsl10.otf - RELOC/fonts/opentype/public/semaphor/smftt10.otf - RELOC/fonts/source/public/semaphor/Makefile - RELOC/fonts/source/public/semaphor/README - RELOC/fonts/source/public/semaphor/metafont/semaf.mf - RELOC/fonts/source/public/semaphor/metafont/smfbf10.mf - RELOC/fonts/source/public/semaphor/metafont/smfebf10.mf - RELOC/fonts/source/public/semaphor/metafont/smfer10.mf - RELOC/fonts/source/public/semaphor/metafont/smfesl10.mf - RELOC/fonts/source/public/semaphor/metafont/smfett10.mf - RELOC/fonts/source/public/semaphor/metafont/smfpbf10.mf - RELOC/fonts/source/public/semaphor/metafont/smfpr10.mf - RELOC/fonts/source/public/semaphor/metafont/smfpsl10.mf - RELOC/fonts/source/public/semaphor/metafont/smfptt10.mf - RELOC/fonts/source/public/semaphor/metafont/smfr10.mf - RELOC/fonts/source/public/semaphor/metafont/smfsl10.mf - RELOC/fonts/source/public/semaphor/metafont/smftt10.mf - RELOC/fonts/source/public/semaphor/pfb2otf.pe - RELOC/fonts/source/public/semaphor/semaf.mp - RELOC/fonts/source/public/semaphor/smfb10.mp - RELOC/fonts/source/public/semaphor/smfbsl10.mp - RELOC/fonts/source/public/semaphor/smfeb10.mp - RELOC/fonts/source/public/semaphor/smfebsl10.mp - RELOC/fonts/source/public/semaphor/smfer10.mp - RELOC/fonts/source/public/semaphor/smfesl10.mp - RELOC/fonts/source/public/semaphor/smfett10.mp - RELOC/fonts/source/public/semaphor/smfpb10.mp - RELOC/fonts/source/public/semaphor/smfpbsl10.mp - RELOC/fonts/source/public/semaphor/smfpr10.mp - RELOC/fonts/source/public/semaphor/smfpsl10.mp - RELOC/fonts/source/public/semaphor/smfptt10.mp - RELOC/fonts/source/public/semaphor/smfr10.mp - RELOC/fonts/source/public/semaphor/smfsl10.mp - RELOC/fonts/source/public/semaphor/smftt10.mp - RELOC/fonts/tfm/public/semaphor/smfb10.tfm - RELOC/fonts/tfm/public/semaphor/smfbsl10.tfm - RELOC/fonts/tfm/public/semaphor/smfeb10.tfm - RELOC/fonts/tfm/public/semaphor/smfebsl10.tfm - RELOC/fonts/tfm/public/semaphor/smfer10.tfm - RELOC/fonts/tfm/public/semaphor/smfesl10.tfm - RELOC/fonts/tfm/public/semaphor/smfett10.tfm - RELOC/fonts/tfm/public/semaphor/smfpb10.tfm - RELOC/fonts/tfm/public/semaphor/smfpbsl10.tfm - RELOC/fonts/tfm/public/semaphor/smfpr10.tfm - RELOC/fonts/tfm/public/semaphor/smfpsl10.tfm - RELOC/fonts/tfm/public/semaphor/smfptt10.tfm - RELOC/fonts/tfm/public/semaphor/smfr10.tfm - RELOC/fonts/tfm/public/semaphor/smfsl10.tfm - RELOC/fonts/tfm/public/semaphor/smftt10.tfm - RELOC/fonts/type1/public/semaphor/smfb10.pfb - RELOC/fonts/type1/public/semaphor/smfb10.pfm - RELOC/fonts/type1/public/semaphor/smfbsl10.pfb - RELOC/fonts/type1/public/semaphor/smfbsl10.pfm - RELOC/fonts/type1/public/semaphor/smfeb10.pfb - RELOC/fonts/type1/public/semaphor/smfeb10.pfm - RELOC/fonts/type1/public/semaphor/smfebsl10.pfb - RELOC/fonts/type1/public/semaphor/smfebsl10.pfm - RELOC/fonts/type1/public/semaphor/smfer10.pfb - RELOC/fonts/type1/public/semaphor/smfer10.pfm - RELOC/fonts/type1/public/semaphor/smfesl10.pfb - RELOC/fonts/type1/public/semaphor/smfesl10.pfm - RELOC/fonts/type1/public/semaphor/smfett10.pfb - RELOC/fonts/type1/public/semaphor/smfett10.pfm - RELOC/fonts/type1/public/semaphor/smfpb10.pfb - RELOC/fonts/type1/public/semaphor/smfpb10.pfm - RELOC/fonts/type1/public/semaphor/smfpbsl10.pfb - RELOC/fonts/type1/public/semaphor/smfpbsl10.pfm - RELOC/fonts/type1/public/semaphor/smfpr10.pfb - RELOC/fonts/type1/public/semaphor/smfpr10.pfm - RELOC/fonts/type1/public/semaphor/smfpsl10.pfb - RELOC/fonts/type1/public/semaphor/smfpsl10.pfm - RELOC/fonts/type1/public/semaphor/smfptt10.pfb - RELOC/fonts/type1/public/semaphor/smfptt10.pfm - RELOC/fonts/type1/public/semaphor/smfr10.pfb - RELOC/fonts/type1/public/semaphor/smfr10.pfm - RELOC/fonts/type1/public/semaphor/smfsl10.pfb - RELOC/fonts/type1/public/semaphor/smfsl10.pfm - RELOC/fonts/type1/public/semaphor/smftt10.pfb - RELOC/fonts/type1/public/semaphor/smftt10.pfm - RELOC/tex/context/third/semaphor/t-type-semaf.tex - RELOC/tex/latex/semaphor/il2semaf.fd - RELOC/tex/latex/semaphor/semaf.fd - RELOC/tex/plain/semaphor/semaf.tex -docfiles size=75 - RELOC/doc/fonts/semaphor/README - RELOC/doc/fonts/semaphor/example.pdf - RELOC/doc/fonts/semaphor/example.tex - RELOC/doc/fonts/semaphor/test-context.pdf - RELOC/doc/fonts/semaphor/test-context.tex -catalogue-ctan /fonts/semaphor -catalogue-date 2014-05-25 22:02:22 +0200 -catalogue-license gpl - -name seminar -category Package -revision 34011 -shortdesc Make overhead slides. -relocated 1 -longdesc A class that produces overhead slides (transparencies), with -longdesc many facilities. The class requires availability of the -longdesc fancybox package. Seminar is also the basis of other classes, -longdesc such as prosper. In fact, seminar is not nowadays reckoned a -longdesc good basis for a presentation -- users are advised to use more -longdesc recent classes such as powerdot or beamer, both of which are -longdesc tuned to 21st-century presentation styles. Note that the -longdesc seminar distribution relies on the xcomment package, which was -longdesc once part of the bundle, but now has a separate existence. -runfiles size=48 - RELOC/tex/latex/seminar/npsfont.sty - RELOC/tex/latex/seminar/sem-a4.sty - RELOC/tex/latex/seminar/sem-dem.sty - RELOC/tex/latex/seminar/sem-page.sty - RELOC/tex/latex/seminar/semcolor.sty - RELOC/tex/latex/seminar/semhelv.sty - RELOC/tex/latex/seminar/seminar.bg2 - RELOC/tex/latex/seminar/seminar.bug - RELOC/tex/latex/seminar/seminar.cls - RELOC/tex/latex/seminar/seminar.sty - RELOC/tex/latex/seminar/semlayer.sty - RELOC/tex/latex/seminar/semlcmss.sty - RELOC/tex/latex/seminar/semrot.sty - RELOC/tex/latex/seminar/slidesec.sty - RELOC/tex/latex/seminar/tvz-code.sty - RELOC/tex/latex/seminar/tvz-hax.sty - RELOC/tex/latex/seminar/tvz-user.sty -docfiles size=157 - RELOC/doc/latex/seminar/Changes - RELOC/doc/latex/seminar/README - RELOC/doc/latex/seminar/run.sh - RELOC/doc/latex/seminar/sem-code.tex - RELOC/doc/latex/seminar/sem-make.tex - RELOC/doc/latex/seminar/seminar-doc.pdf - RELOC/doc/latex/seminar/seminar-doc.tex - RELOC/doc/latex/seminar/seminar.bg3 - RELOC/doc/latex/seminar/seminar.con - RELOC/doc/latex/seminar/seminar.doc - RELOC/doc/latex/seminar/semlayer.doc - RELOC/doc/latex/seminar/semsamp1.pdf - RELOC/doc/latex/seminar/semsamp1.tex - RELOC/doc/latex/seminar/semsamp2.pdf - RELOC/doc/latex/seminar/semsamp2.tex - RELOC/doc/latex/seminar/semsamp3.pdf - RELOC/doc/latex/seminar/semsamp3.tex -catalogue-ctan /macros/latex/contrib/seminar -catalogue-date 2014-05-14 16:12:10 +0200 -catalogue-license lppl1.2 -catalogue-version 1.62 - -name semioneside -category Package -revision 15878 -shortdesc Put only special contents on left-hand pages in two sided layout. -relocated 1 -longdesc This package supports the preparation of semi one sided -longdesc documents. That is, two sided documents, where all text is -longdesc output on right-hand pages--as in a one-sided documents--and -longdesc only special contents are output on left-hand pages on user -longdesc request, e.g., floating objects. -runfiles size=1 - RELOC/tex/latex/semioneside/semioneside.sty -docfiles size=40 - RELOC/doc/latex/semioneside/README - RELOC/doc/latex/semioneside/example.tex - RELOC/doc/latex/semioneside/figure.mp - RELOC/doc/latex/semioneside/semioneside.pdf -srcfiles size=6 - RELOC/source/latex/semioneside/semioneside.dtx - RELOC/source/latex/semioneside/semioneside.ins -catalogue-ctan /macros/latex/contrib/semioneside -catalogue-date 2012-06-13 16:26:52 +0200 -catalogue-license lppl -catalogue-version v0.41 - -name semproc -category Package -revision 37568 -shortdesc Seminar proceedings -relocated 1 -longdesc The package provides functionality for typesetting seminar -longdesc proceedings based on KOMA-Script's scrreprt class and etoc. It -longdesc offers an alternative to \chapter that typesets the speaker and -longdesc if necessary the typist of the notes for the talk in question. -longdesc Moreover, the class provides two types of table of contents. A -longdesc global table of contents showing only the talks of the seminar -longdesc and the respective speakers and a local table of contents for -longdesc each talk showing the sections and subsections of the -longdesc respective talk. -runfiles size=2 - RELOC/tex/latex/semproc/semproc.cls -docfiles size=92 - RELOC/doc/latex/semproc/README.txt - RELOC/doc/latex/semproc/example.bib - RELOC/doc/latex/semproc/example.tex - RELOC/doc/latex/semproc/semproc.hd - RELOC/doc/latex/semproc/semproc.pdf -srcfiles size=7 - RELOC/source/latex/semproc/semproc.dtx - RELOC/source/latex/semproc/semproc.ins -catalogue-ctan /macros/latex/contrib/semproc -catalogue-date 2015-06-16 11:52:33 +0200 -catalogue-license lppl1.3 -catalogue-topics semproc -catalogue-version 0.1 - -name sepfootnotes -category Package -revision 34705 -shortdesc Support footnotes and endnotes from separate files. -relocated 1 -longdesc The package supports footnotes and endnotes from separate -longdesc files. This is achieved with commands \sepfootnotecontent and -longdesc \sepfootnote; the former defines the content of a note, while -longdesc the latter typesets that note. -runfiles size=3 - RELOC/tex/latex/sepfootnotes/sepfootnotes.sty -docfiles size=59 - RELOC/doc/latex/sepfootnotes/README - RELOC/doc/latex/sepfootnotes/sepfootnotes.pdf - RELOC/doc/latex/sepfootnotes/sepfootnotes.tex -catalogue-ctan /macros/latex/contrib/sepfootnotes -catalogue-date 2014-07-22 19:44:59 +0200 -catalogue-license lppl1.3 -catalogue-version 0.3b - -name sepnum -category Package -revision 20186 -shortdesc Print numbers in a "friendly" format. -relocated 1 -longdesc Provides a command to print a number with (potentially -longdesc different) separators every three digits in the parts either -longdesc side of the decimal point (the point itself is also -longdesc configurable). The macro is fully expandable and not fragile -longdesc (unless one of the separators is). There is also a command -longdesc \sepnumform, that may be used when defining \the -longdesc macros. -runfiles size=2 - RELOC/tex/latex/sepnum/sepnum.sty -docfiles size=87 - RELOC/doc/latex/sepnum/sepnum-doc.pdf - RELOC/doc/latex/sepnum/sepnum-doc.tex -catalogue-ctan /macros/latex/contrib/sepnum -catalogue-date 2012-06-13 16:26:52 +0200 -catalogue-license lppl -catalogue-version 2.0 - -name seqsplit -category Package -revision 15878 -shortdesc Split long sequences of characters in a neutral way. -relocated 1 -longdesc When one needs to type long sequences of letters (such as in -longdesc base-sequences in genes) or of numbers (such as calculations of -longdesc transcendental numbers), there's no obvious break points to be -longdesc found. The package provides a command \seqsplit, which makes -longdesc its argument splittable anywhere, and then leaves the TeX -longdesc paragraph-maker to do the splitting. While the package may -longdesc obviously be used to typeset DNA sequences, the user may -longdesc consider the dnaseq as a rather more powerful alternative. -runfiles size=1 - RELOC/tex/latex/seqsplit/seqsplit.sty -docfiles size=33 - RELOC/doc/latex/seqsplit/README - RELOC/doc/latex/seqsplit/seqsplit.pdf -srcfiles size=6 - RELOC/source/latex/seqsplit/Makefile - RELOC/source/latex/seqsplit/seqsplit.dtx - RELOC/source/latex/seqsplit/seqsplit.ins -catalogue-ctan /macros/latex/contrib/seqsplit -catalogue-date 2012-06-17 13:30:22 +0200 -catalogue-license lppl -catalogue-version 0.1 - -name serbian-apostrophe -category Package -revision 23799 -shortdesc Commands for Serbian words with apostrophes. -relocated 1 -longdesc The package provides a collection of commands (whose names are -longdesc Serbian words) whose expansion is the Serbian word with -longdesc appropriate apostrophes. -runfiles size=18 - RELOC/tex/latex/serbian-apostrophe/serbian-apostrophe.sty -docfiles size=131 - RELOC/doc/latex/serbian-apostrophe/README - RELOC/doc/latex/serbian-apostrophe/apostrophe-list.pdf - RELOC/doc/latex/serbian-apostrophe/apostrophe-list.tex - RELOC/doc/latex/serbian-apostrophe/serbian-apostrophe.pdf - RELOC/doc/latex/serbian-apostrophe/serbian-apostrophe.tex -catalogue-ctan /language/serbian/filipovic/serbian-apostrophe -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 - -name serbian-date-lat -category Package -revision 23446 -shortdesc Updated date typesetting for Serbian. -relocated 1 -longdesc Babel defines dates for Serbian texts, in Latin script. The -longdesc style it uses does not match current practices. The present -longdesc package defines a \date command that solves the problem. -runfiles size=1 - RELOC/tex/latex/serbian-date-lat/serbian-date-lat.sty -docfiles size=94 - RELOC/doc/latex/serbian-date-lat/README - RELOC/doc/latex/serbian-date-lat/SerbianDateLat.pdf - RELOC/doc/latex/serbian-date-lat/SerbianDateLat.tex - RELOC/doc/latex/serbian-date-lat/TestDateLat.pdf - RELOC/doc/latex/serbian-date-lat/TestDateLat.tex -catalogue-ctan /language/serbian/filipovic/serbian-date-lat -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license gpl2 - -name serbian-def-cyr -category Package -revision 23734 -shortdesc Serbian cyrillic localization. -relocated 1 -longdesc This package provides abstract, chapter, title, date etc, for -longdesc serbian language in cyrillic scripts in T2A encoding and cp1251 -longdesc code pages. -runfiles size=1 - RELOC/tex/latex/serbian-def-cyr/serbian-def-cyr.sty -docfiles size=66 - RELOC/doc/latex/serbian-def-cyr/README - RELOC/doc/latex/serbian-def-cyr/proba.pdf - RELOC/doc/latex/serbian-def-cyr/proba.tex - RELOC/doc/latex/serbian-def-cyr/usage.pdf - RELOC/doc/latex/serbian-def-cyr/usage.tex -catalogue-ctan /macros/latex/contrib/serbian-def-cyr -catalogue-date 2012-11-14 18:07:03 +0100 -catalogue-license lppl1.3 - -name serbian-lig -category Package -revision 23382 -shortdesc Control ligatures in Serbian. -relocated 1 -longdesc The package suppresses fi and fl (and other ligatures) in -longdesc Serbian text written using Roman script. -runfiles size=19 - RELOC/tex/latex/serbian-lig/serbian-lig.sty -docfiles size=121 - RELOC/doc/latex/serbian-lig/README - RELOC/doc/latex/serbian-lig/lig-list.pdf - RELOC/doc/latex/serbian-lig/lig-list.tex - RELOC/doc/latex/serbian-lig/serbian-lig.pdf - RELOC/doc/latex/serbian-lig/serbian-lig.tex -catalogue-ctan /language/serbian/filipovic/serbian-lig -catalogue-date 2014-12-04 23:35:29 +0100 -catalogue-license lppl1.3 - -name sesamanuel -category Package -revision 36613 -shortdesc Class and package for sesamath books or paper -relocated 1 -longdesc The package contains a sesamanuel class which could be used to -longdesc compose a student's classroom book with LaTeX, and also a -longdesc sesamanuelTIKZ style to be used for TIKZ pictures in the -longdesc sesamath book. -runfiles size=61 - RELOC/tex/latex/sesamanuel/sesamanuel.cls - RELOC/tex/latex/sesamanuel/sesamanuel.sty - RELOC/tex/latex/sesamanuel/sesamanuelTIKZ.sty -docfiles size=279 - RELOC/doc/latex/sesamanuel/Lisez.moi - RELOC/doc/latex/sesamanuel/logotex.eps - RELOC/doc/latex/sesamanuel/read.me - RELOC/doc/latex/sesamanuel/sesamanuel.pdf - RELOC/doc/latex/sesamanuel/sesamath-doc-fr.pdf - RELOC/doc/latex/sesamanuel/sesamath-doc-fr.tex - RELOC/doc/latex/sesamanuel/tiger.eps -srcfiles size=103 - RELOC/source/latex/sesamanuel/sesamanuel.dtx - RELOC/source/latex/sesamanuel/sesamanuel.ins -catalogue-ctan /macros/latex/contrib/sesamanuel -catalogue-date 2015-03-21 18:13:08 +0100 -catalogue-license lppl1.3 -catalogue-version 0.6 - -name setdeck -category Package -revision 27997 -shortdesc Typeset cards for Set. -relocated 1 -longdesc The package will typeset cards for use in a game of Set. -runfiles size=12 - RELOC/tex/latex/setdeck/setdeck.sty -docfiles size=17 - RELOC/doc/latex/setdeck/README - RELOC/doc/latex/setdeck/setdeck.pdf - RELOC/doc/latex/setdeck/setdeck.tex -catalogue-ctan /graphics/pgf/contrib/setdeck -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license gpl3 -catalogue-version 0.1 - -name setspace -category Package -revision 24881 -shortdesc Set space between lines. -relocated 1 -longdesc Provides support for setting the spacing between lines in a -longdesc document. Package options include singlespacing, -longdesc onehalfspacing, and doublespacing. Alternatively the spacing -longdesc can be changed as required with the \singlespacing, -longdesc \onehalfspacing, and \doublespacing commands. Other size -longdesc spacings also available. -runfiles size=6 - RELOC/tex/latex/setspace/setspace.sty -docfiles size=2 - RELOC/doc/latex/setspace/README - RELOC/doc/latex/setspace/setspace-test.tex -catalogue-ctan /macros/latex/contrib/setspace -catalogue-date 2012-04-25 18:00:26 +0200 -catalogue-license lppl1.3 -catalogue-version 6.7a - -name seuthesis -category Package -revision 33042 -shortdesc LaTeX template for theses at Southeastern University. -relocated 1 -longdesc This template is for theses at Southeastern University, -longdesc Nanjing, China. -runfiles size=22 - RELOC/bibtex/bst/seuthesis/seuthesis.bst -docfiles size=1154 - RELOC/doc/latex/seuthesis/Makefile - RELOC/doc/latex/seuthesis/a3cover/A3cover.tex - RELOC/doc/latex/seuthesis/a3cover/A4cover.tex - RELOC/doc/latex/seuthesis/a3cover/a3cover.bat - RELOC/doc/latex/seuthesis/a3cover/a3cover.sh - RELOC/doc/latex/seuthesis/a3cover/a4cover.bat - RELOC/doc/latex/seuthesis/a3cover/a4cover.sh - RELOC/doc/latex/seuthesis/a3cover/bookspine_hor.tex - RELOC/doc/latex/seuthesis/a3cover/bookspine_ver.tex - RELOC/doc/latex/seuthesis/figures/back-cover.png - RELOC/doc/latex/seuthesis/figures/doctor-hwzs.pdf - RELOC/doc/latex/seuthesis/figures/doctor.png - RELOC/doc/latex/seuthesis/figures/engineering.png - RELOC/doc/latex/seuthesis/figures/front-cover.jpg - RELOC/doc/latex/seuthesis/figures/master-hwzs.pdf - RELOC/doc/latex/seuthesis/figures/master.png - RELOC/doc/latex/seuthesis/figures/seu-badge-logo.eps - RELOC/doc/latex/seuthesis/figures/seu-badge-logo.pdf - RELOC/doc/latex/seuthesis/figures/seu-color-logo.png - RELOC/doc/latex/seuthesis/figures/seu-text-logo.eps - RELOC/doc/latex/seuthesis/figures/seu-text-logo.png - RELOC/doc/latex/seuthesis/sample-bachelor.pdf - RELOC/doc/latex/seuthesis/sample-doctor.pdf - RELOC/doc/latex/seuthesis/sample-master.pdf - RELOC/doc/latex/seuthesis/sample.tex - RELOC/doc/latex/seuthesis/seuthesis.bib - RELOC/doc/latex/seuthesis/seuthesis.pdf - RELOC/doc/latex/seuthesis/zharticle/scrsize9pt.clo - RELOC/doc/latex/seuthesis/zharticle/zharticle.bst - RELOC/doc/latex/seuthesis/zharticle/zharticle.cfg - RELOC/doc/latex/seuthesis/zharticle/zharticle.cls -srcfiles size=16 - RELOC/source/latex/seuthesis/seuthesis.dtx - RELOC/source/latex/seuthesis/seuthesis.ins -catalogue-ctan /macros/latex/contrib/seuthesis -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license gpl3 -catalogue-version 2.1.2 - -name sf298 -category Package -revision 15878 -shortdesc Standard form 298. -relocated 1 -longdesc A LaTeX package for generating a completed standard form 298 -longdesc (Rev. 8-98) as prescribed by ANSI Std. Z39.18 for report -longdesc documentation as part of a document delivered, for instance, on -longdesc a U.S. government contract. -runfiles size=6 - RELOC/tex/latex/sf298/sf298.sty -docfiles size=89 - RELOC/doc/latex/sf298/sample298.pdf - RELOC/doc/latex/sf298/sample298.tex - RELOC/doc/latex/sf298/sf298.pdf -srcfiles size=22 - RELOC/source/latex/sf298/Makefile - RELOC/source/latex/sf298/sf298.dtx - RELOC/source/latex/sf298/sf298.ins -catalogue-ctan /macros/latex/contrib/sf298 -catalogue-date 2014-09-12 12:10:58 +0200 -catalogue-license lppl -catalogue-version 1.2 - -name sffms -category Package -revision 15878 -shortdesc Typesetting science fiction/fantasy manuscripts. -relocated 1 -longdesc The class is designed for typesetting science fiction and -longdesc fantasy manuscripts. Sffms now includes several options for -longdesc specific publishers as well as extensive documentation aimed at -longdesc new LaTeX users. -runfiles size=4 - RELOC/tex/latex/sffms/sffdumb.sty - RELOC/tex/latex/sffms/sffms.cls - RELOC/tex/latex/sffms/sffsmart.sty -docfiles size=52 - RELOC/doc/latex/sffms/README - RELOC/doc/latex/sffms/blind.tex - RELOC/doc/latex/sffms/sffms_manual.pdf -srcfiles size=13 - RELOC/source/latex/sffms/sffms.dtx - RELOC/source/latex/sffms/sffms.ins -catalogue-ctan /macros/latex/contrib/sffms -catalogue-date 2012-06-19 00:14:19 +0200 -catalogue-license lppl -catalogue-version 2.0 - -name sfg -category Package -revision 20209 -shortdesc Draw signal flow graphs. -relocated 1 -longdesc Defines some commands to draw signal flow graphs as used by -longdesc electrical and electronics engineers and graph theorists. -longdesc Requires fp and pstricks packages (and a relatively fast -longdesc machine). -runfiles size=6 - RELOC/tex/latex/sfg/sfg.sty -docfiles size=100 - RELOC/doc/latex/sfg/Changes - RELOC/doc/latex/sfg/README - RELOC/doc/latex/sfg/sfg-doc.pdf - RELOC/doc/latex/sfg/sfg-doc.tex - RELOC/doc/latex/sfg/sfg_test.tex -catalogue-ctan /macros/latex/contrib/sfg -catalogue-date 2012-06-17 14:19:56 +0200 -catalogue-license lppl -catalogue-version 0.91 - -name sfmath -category Package -revision 15878 -shortdesc Sans-serif mathematics. -relocated 1 -longdesc sfmath is a simple package for sans serif maths in documents. -longdesc After including the package, all maths of the current document -longdesc is displayed with sans serif fonts. -runfiles size=5 - RELOC/tex/latex/sfmath/sfmath.sty -catalogue-ctan /macros/latex/contrib/sfmath/sfmath.sty -catalogue-date 2012-06-17 14:19:56 +0200 -catalogue-license lppl -catalogue-version 0.8 - -name sgame -category Package -revision 30959 -shortdesc LaTeX style for typesetting strategic games. -relocated 1 -longdesc Formats strategic games. For a 2x2 game, for example, the -longdesc input: \begin{game}{2}{2} &$L$ &$M$\\ $T$ &$2,2$ &$2,0$\\ $B$ -longdesc &$3,0$ &$0,9$ \end{game} produces output with (a) boxes around -longdesc the payoffs, (b) payoff columns of equal width, and (c) payoffs -longdesc vertically centered within the boxes. Note that the game -longdesc environment will not work in the argument of another command. -runfiles size=8 - RELOC/tex/latex/sgame/sgame.sty - RELOC/tex/latex/sgame/sgamevar.sty -docfiles size=28 - RELOC/doc/latex/sgame/README - RELOC/doc/latex/sgame/sgame.pdf - RELOC/doc/latex/sgame/sgame.tex -catalogue-ctan /macros/latex/contrib/sgame -catalogue-date 2013-06-26 19:53:21 +0200 -catalogue-license lppl -catalogue-version 2.15 - -name shadethm -category Package -revision 20319 -shortdesc Theorem environments that are shaded -relocated 1 -longdesc Extends the \newtheorem command. If you say -longdesc \newshadetheorem{theorem}{Theorem} in the preamble then your -longdesc regular \begin{theorem} .. \end{theorem} will produce a theorem -longdesc statement in a shaded box. It supports all the options of -longdesc \newtheorem, including forms \newshadetheorem{..}[..]{..} and -longdesc \newshadetheorem{..}{..}[..]. Environments declared using the -longdesc package require their body to remain on one page; the mdframed -longdesc package can frame and shade theorems, and its environments -longdesc break at the end of a page; users are generally recommended, -longdesc therefore, to use mdframed. -runfiles size=8 - RELOC/tex/latex/shadethm/colored.sth - RELOC/tex/latex/shadethm/shadein.sth - RELOC/tex/latex/shadethm/shadethm.sty -docfiles size=93 - RELOC/doc/latex/shadethm/1st_read.me - RELOC/doc/latex/shadethm/shadetest.pdf - RELOC/doc/latex/shadethm/shadetest.tex - RELOC/doc/latex/shadethm/shadethm-doc.pdf - RELOC/doc/latex/shadethm/shadethm-doc.tex -catalogue-ctan /macros/latex/contrib/shadethm -catalogue-date 2012-08-18 01:33:08 +0200 -catalogue-license lppl - -name shade -category Package -revision 22212 -shortdesc Shade pieces of text. -relocated 1 -longdesc The package provides a shaded backdrop to a box of text. It -longdesc uses a Metafont font (provided) which generates to appropriate -longdesc shading dependent on the resolution used in the Metafont -longdesc printer parameters. -runfiles size=2 - RELOC/fonts/source/public/shade/shade.mf - RELOC/tex/generic/shade/shade.tex -docfiles size=9 - RELOC/doc/generic/shade/README - RELOC/doc/generic/shade/description.pdf - RELOC/doc/generic/shade/description.tex -catalogue-ctan /macros/generic/shade -catalogue-date 2012-06-07 20:55:34 +0200 -catalogue-license lppl1 -catalogue-version 1 - -name shadowtext -category Package -revision 26522 -shortdesc shadowtext -relocated 1 -longdesc The package introduces a command \shadowtext, which adds a drop -longdesc shadow to the text that is given as its argument. The colour -longdesc and positioning of the shadow are customisable. -runfiles size=1 - RELOC/tex/latex/shadowtext/shadowtext.sty -docfiles size=38 - RELOC/doc/latex/shadowtext/README - RELOC/doc/latex/shadowtext/shadowtext.pdf - RELOC/doc/latex/shadowtext/shadowtext.tex -catalogue-ctan /macros/latex/contrib/shadowtext -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.3 - -name shadow -category Package -revision 20312 -shortdesc Shadow boxes. -relocated 1 -longdesc Defines a command \shabox (analgous to \fbox), and supporting -longdesc mechanisms. -runfiles size=2 - RELOC/tex/latex/shadow/shadow.sty -docfiles size=56 - RELOC/doc/latex/shadow/shadow-doc.pdf - RELOC/doc/latex/shadow/shadow-doc.tex -catalogue-ctan /macros/latex/contrib/shadow -catalogue-date 2012-06-07 20:55:34 +0200 -catalogue-license lppl - -name shapepar -category Package -revision 30708 -shortdesc A macro to typeset paragraphs in specific shapes. -relocated 1 -longdesc \shapepar is a macro to typeset paragraphs in a specific shape. -longdesc The size is adjusted automatically so that the entire shape is -longdesc filled with text. There may not be displayed maths or -longdesc '\vadjust' material (no \vspace) in the argument of \shapepar. -longdesc The macros work for both LaTeX and plain TeX. For LaTeX, -longdesc specify \usepackage{shapepar}; for Plain, \input shapepar.sty. -longdesc \shapepar works in terms of user-defined shapes, though the -longdesc package does provide some predefined shapes: so you can form -longdesc any paragraph into the form of a heart by putting -longdesc \heartpar{sometext...} inside your document. The tedium of -longdesc creating these polygon definitions may be alleviated by using -longdesc the shapepatch extension to transfig which will convert xfig -longdesc output to \shapepar polygon form. -runfiles size=16 - RELOC/tex/generic/shapepar/Canflagshape.def - RELOC/tex/generic/shapepar/TeXshape.def - RELOC/tex/generic/shapepar/candleshape.def - RELOC/tex/generic/shapepar/dropshape.def - RELOC/tex/generic/shapepar/shapepar.sty - RELOC/tex/generic/shapepar/triangleshapes.def -docfiles size=59 - RELOC/doc/generic/shapepar/README.shapepar - RELOC/doc/generic/shapepar/proshap.py - RELOC/doc/generic/shapepar/shapepar.ltx - RELOC/doc/generic/shapepar/shapepar.pdf -catalogue-ctan /macros/latex/contrib/shapepar -catalogue-date 2013-05-27 20:07:27 +0200 -catalogue-license other-free -catalogue-version 2.2 - -name shapes -category Package -revision 38024 -shortdesc Draw polygons, reentrant stars, and fractions in circles with Metapost. -relocated 1 -longdesc The shapes set of macros allows drawing regular polygons; their -longdesc corresponding reentrant stars in all their variations; and -longdesc fractionally filled circles (useful for visually demonstrating -longdesc the nature of fractions) in Metapost. -runfiles size=2 - RELOC/metapost/shapes/shapes.mp -docfiles size=51 - RELOC/doc/metapost/shapes/CHANGES - RELOC/doc/metapost/shapes/README - RELOC/doc/metapost/shapes/lppl.txt - RELOC/doc/metapost/shapes/shapes.pdf -srcfiles size=5 - RELOC/source/metapost/shapes/shapes.dtx - RELOC/source/metapost/shapes/shapes.ins -catalogue-ctan /graphics/metapost/contrib/macros/shapes -catalogue-date 2015-08-02 07:21:49 +0200 -catalogue-license lppl1.3 -catalogue-topics maths -catalogue-version 1.1 - -name shdoc -category Package -revision 38277 -shortdesc Float environment to document the shell commands of a terminal session -relocated 1 -longdesc The package provides a simple, though fancy float environment -longdesc to document terminal sessions -- like command executions or -longdesc shell operations. The look and feel of the package output -longdesc imitates the look of a shell prompt. -runfiles size=2 - RELOC/tex/latex/shdoc/shdoc.sty -docfiles size=114 - RELOC/doc/latex/shdoc/README - RELOC/doc/latex/shdoc/README.txt - RELOC/doc/latex/shdoc/shdoc.pdf -srcfiles size=10 - RELOC/source/latex/shdoc/shdoc.dtx - RELOC/source/latex/shdoc/shdoc.ins -catalogue-ctan /macros/latex/contrib/shdoc -catalogue-date 2015-09-02 20:52:48 +0200 -catalogue-license lppl1.3 -catalogue-topics synt-hlt -catalogue-version 2.0 - -name shipunov -category Package -revision 29349 -shortdesc A collection of LaTeX packages and classes. -relocated 1 -longdesc The bundle collects packages and classes, along with one -longdesc bibliography style and examples and scripts for converting TeX -longdesc files. Many of the files in the collection are designed to -longdesc support field biologists and/or Russian writers, while others -longdesc have wider application. The collection includes (among others): -longdesc altverse, a simple verse typesetting package; autolist, which -longdesc provides various list formatting facilities; biokey, which -longdesc provides a mechanism for typesetting biological identification -longdesc lists; biolist, which typesets species lists; boldline, which -longdesc typesets heavier separating lines in tables; cassete, which -longdesc lays out audio cassette inserts; classif2, which typesets -longdesc classification lists; drcaps, which provides dropped capital -longdesc macros; etiketka, a class for typesetting business-card-sized -longdesc information (including business cards); flower, for typesetting -longdesc lists of flower formulae; isyntax; numerus; punct; sltables, -longdesc which develops on the stables package, for use in a LaTeX -longdesc context; and starfn. -runfiles size=29 - RELOC/bibtex/bst/shipunov/rusnat.bst - RELOC/scripts/shipunov/biokey2html.bat - RELOC/scripts/shipunov/biokey2html.sh - RELOC/scripts/shipunov/biokey2html1.pl - RELOC/scripts/shipunov/biokey2html2.pl - RELOC/scripts/shipunov/biokey2html3.pl - RELOC/tex/latex/shipunov/altverse.sty - RELOC/tex/latex/shipunov/autolist.sty - RELOC/tex/latex/shipunov/biokey.sty - RELOC/tex/latex/shipunov/biolist.sty - RELOC/tex/latex/shipunov/boldline.sty - RELOC/tex/latex/shipunov/cassete.cls - RELOC/tex/latex/shipunov/classif2.sty - RELOC/tex/latex/shipunov/drcaps.sty - RELOC/tex/latex/shipunov/etiketka.cls - RELOC/tex/latex/shipunov/flower.sty - RELOC/tex/latex/shipunov/isyntax.sty - RELOC/tex/latex/shipunov/numerus.sty - RELOC/tex/latex/shipunov/punct.sty - RELOC/tex/latex/shipunov/sltables.sty - RELOC/tex/latex/shipunov/starfn.sty -docfiles size=624 - RELOC/doc/latex/shipunov/NEWS - RELOC/doc/latex/shipunov/README - RELOC/doc/latex/shipunov/altverse-ex-en.pdf - RELOC/doc/latex/shipunov/altverse-ex-en.tex - RELOC/doc/latex/shipunov/altverse-ex1-ru.pdf - RELOC/doc/latex/shipunov/altverse-ex1-ru.tex - RELOC/doc/latex/shipunov/altverse-ex2-ru.pdf - RELOC/doc/latex/shipunov/altverse-ex2-ru.tex - RELOC/doc/latex/shipunov/autolist-ex-en.pdf - RELOC/doc/latex/shipunov/autolist-ex-en.tex - RELOC/doc/latex/shipunov/autolist-ex-ru.pdf - RELOC/doc/latex/shipunov/autolist-ex-ru.tex - RELOC/doc/latex/shipunov/biokey-doc-en.pdf - RELOC/doc/latex/shipunov/biokey-doc-en.tex - RELOC/doc/latex/shipunov/biokey2html-doc-en.pdf - RELOC/doc/latex/shipunov/biokey2html-doc-en.tex - RELOC/doc/latex/shipunov/biokey2html-ex-en.html - RELOC/doc/latex/shipunov/biokey2html-ex-en1.pdf - RELOC/doc/latex/shipunov/biokey2html-ex-en2.pdf - RELOC/doc/latex/shipunov/biolist-ex-en.pdf - RELOC/doc/latex/shipunov/biolist-ex-en.tex - RELOC/doc/latex/shipunov/boldline-ex-en.pdf - RELOC/doc/latex/shipunov/boldline-ex-en.tex - RELOC/doc/latex/shipunov/cassete-ex-ru.pdf - RELOC/doc/latex/shipunov/cassete-ex-ru.tex - RELOC/doc/latex/shipunov/classif2-ex-en.pdf - RELOC/doc/latex/shipunov/classif2-ex-en.tex - RELOC/doc/latex/shipunov/drcaps-ex-en.pdf - RELOC/doc/latex/shipunov/drcaps-ex-en.tex - RELOC/doc/latex/shipunov/etiketka-ex-ru.pdf - RELOC/doc/latex/shipunov/etiketka-ex-ru.tex - RELOC/doc/latex/shipunov/etiketka-ex1-en.pdf - RELOC/doc/latex/shipunov/etiketka-ex1-en.tex - RELOC/doc/latex/shipunov/etiketka-ex2-en.pdf - RELOC/doc/latex/shipunov/etiketka-ex2-en.tex - RELOC/doc/latex/shipunov/field-form-ex1-ru.pdf - RELOC/doc/latex/shipunov/field-form-ex1-ru.tex - RELOC/doc/latex/shipunov/field-form-ex2-ru.pdf - RELOC/doc/latex/shipunov/field-form-ex2-ru.tex - RELOC/doc/latex/shipunov/flower-ex-en-x.pdf - RELOC/doc/latex/shipunov/flower-ex-en-x.tex - RELOC/doc/latex/shipunov/flower-ex-en.pdf - RELOC/doc/latex/shipunov/flower-ex-en.tex - RELOC/doc/latex/shipunov/isyntax-ex-en.tex - RELOC/doc/latex/shipunov/numerus-ex-ru.pdf - RELOC/doc/latex/shipunov/numerus-ex-ru.tex - RELOC/doc/latex/shipunov/punct-ex-en.pdf - RELOC/doc/latex/shipunov/punct-ex-en.tex - RELOC/doc/latex/shipunov/rusnat-doc-ru.pdf - RELOC/doc/latex/shipunov/rusnat-doc-ru.tex - RELOC/doc/latex/shipunov/rusnat-ex-ru.bib - RELOC/doc/latex/shipunov/rusnat-ex1-ru.pdf - RELOC/doc/latex/shipunov/rusnat-ex1-ru.tex - RELOC/doc/latex/shipunov/rusnat-ex2-ru.pdf - RELOC/doc/latex/shipunov/rusnat-ex2-ru.tex - RELOC/doc/latex/shipunov/sltables-doc-en.pdf - RELOC/doc/latex/shipunov/sltables-doc-en.tex - RELOC/doc/latex/shipunov/starfn-ex-ru.pdf - RELOC/doc/latex/shipunov/starfn-ex-ru.tex -catalogue-ctan /macros/latex/contrib/shipunov -catalogue-date 2015-01-13 19:23:43 +0100 -catalogue-license lppl -catalogue-version 1.1 - -name shorttoc -category Package -revision 15878 -shortdesc Table of contents with different depths. -relocated 1 -longdesc A package to create another table of contents with a different -longdesc depth, useful in large documents where a detailed table of -longdesc contents should be accompanied by a shorter one, giving only a -longdesc general overview of the main topics in the document. -runfiles size=1 - RELOC/tex/latex/shorttoc/shorttoc.sty -docfiles size=52 - RELOC/doc/latex/shorttoc/00readme - RELOC/doc/latex/shorttoc/shorttoc.pdf -srcfiles size=4 - RELOC/source/latex/shorttoc/shorttoc.dtx - RELOC/source/latex/shorttoc/shorttoc.ins -catalogue-ctan /macros/latex/contrib/shorttoc -catalogue-date 2013-10-03 14:20:59 +0200 -catalogue-license lppl -catalogue-version 1.3 - -name show2e -category Package -revision 15878 -shortdesc Variants of \show for LaTeX2e. -relocated 1 -longdesc This small package aims at making debugging (especially in an -longdesc interactive way) easier, by providing \show variants suited to -longdesc LaTeX2e commands (whether with optional arguments or robust) -longdesc and environments. The variant commands also display the -longdesc internal macros used by such commands, if any. The \showcs -longdesc variant helps with macros with exotic names. -runfiles size=1 - RELOC/tex/latex/show2e/show2e.sty -docfiles size=23 - RELOC/doc/latex/show2e/README - RELOC/doc/latex/show2e/show2e-fr.pdf - RELOC/doc/latex/show2e/show2e.pdf -srcfiles size=3 - RELOC/source/latex/show2e/show2e.dtx -catalogue-ctan /macros/latex/contrib/show2e -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 - -name showcharinbox -category Package -revision 29803 -shortdesc Show characters inside a box. -relocated 1 -longdesc The package typesets a character inside a box, showing where -longdesc reference point is, and displaying width, height, and depth -longdesc information of the character. The output is like that on page -longdesc 63 of "The TeXBook" or page 101 of "The METAFONTbook". The -longdesc package itself is motivated by Knuth's macros in the file -longdesc manmac.tex. Users should note that using a small size for the -longdesc character inside the box does not make any sense: use a large -longdesc size. -runfiles size=1 - RELOC/tex/latex/showcharinbox/showcharinbox.sty -docfiles size=20 - RELOC/doc/latex/showcharinbox/README - RELOC/doc/latex/showcharinbox/showcharinbox.pdf -srcfiles size=4 - RELOC/source/latex/showcharinbox/showcharinbox.dtx - RELOC/source/latex/showcharinbox/showcharinbox.ins -catalogue-ctan /macros/latex/contrib/showcharinbox -catalogue-date 2014-09-06 11:44:52 +0200 -catalogue-license lppl1.3 -catalogue-version 0.1 - -name showdim -category Package -revision 28918 -shortdesc Variants on printing dimensions. -relocated 1 -longdesc A package for LaTeX providing a number of commands for printing -longdesc the value of a TeX dimension. For example, -longdesc \tenthpt{\baselineskip} yields the current value of -longdesc \baselineskip rounded to the nearest tenth of a point. -runfiles size=1 - RELOC/tex/latex/showdim/showdim.sty -docfiles size=1 - RELOC/doc/latex/showdim/README -catalogue-ctan /macros/latex/contrib/showdim/showdim.sty -catalogue-date 2013-01-26 20:44:01 +0100 -catalogue-license lppl -catalogue-version 1.2 - -name showexpl -category Package -revision 32737 -shortdesc Typesetting LaTeX source code. -relocated 1 -longdesc This package provides a way to typeset LaTeX source code and -longdesc the related result in the same document. -runfiles size=4 - RELOC/tex/latex/showexpl/showexpl.sty -docfiles size=149 - RELOC/doc/latex/showexpl/README - RELOC/doc/latex/showexpl/result-picture.pdf - RELOC/doc/latex/showexpl/showexpl-test.pdf - RELOC/doc/latex/showexpl/showexpl-test.tex - RELOC/doc/latex/showexpl/showexpl.pdf -srcfiles size=8 - RELOC/source/latex/showexpl/showexpl.dtx - RELOC/source/latex/showexpl/showexpl.ins -catalogue-ctan /macros/latex/contrib/showexpl -catalogue-date 2014-01-20 15:14:58 +0100 -catalogue-license lppl -catalogue-version v0.3l - -name showhyphens -category Package -revision 23937 -shortdesc Show all possible hyphenations in LuaLaTeX. -relocated 1 -longdesc With this package, LuaLaTeX will indicate all possible -longdesc hyphenations in the printed output. -runfiles size=1 - RELOC/tex/lualatex/showhyphens/showhyphens.sty -docfiles size=24 - RELOC/doc/lualatex/showhyphens/README - RELOC/doc/lualatex/showhyphens/showhyphens-doc.pdf - RELOC/doc/lualatex/showhyphens/showhyphens-doc.tex - RELOC/doc/lualatex/showhyphens/showhyphens-sample.pdf -catalogue-ctan /macros/luatex/latex/showhyphens -catalogue-date 2012-06-28 15:32:05 +0200 -catalogue-license other-free -catalogue-version 0.1 - -name showlabels -category Package -revision 32364 -shortdesc Show label commands in the margin. -relocated 1 -longdesc This package helps you keep track of all the labels you define, -longdesc by putting the name of new labels into the margin whenever the -longdesc \label command is used. The package allows you to do the same -longdesc thing for other commands. The only one for which this is -longdesc obviously useful is the \cite command, but it's easy to do it -longdesc for others, such as the \ref or \begin commands. -runfiles size=2 - RELOC/tex/latex/showlabels/showlabels.sty -docfiles size=49 - RELOC/doc/latex/showlabels/README - RELOC/doc/latex/showlabels/VERSION - RELOC/doc/latex/showlabels/lppl.txt - RELOC/doc/latex/showlabels/showlabels.html - RELOC/doc/latex/showlabels/showlabels.pdf - RELOC/doc/latex/showlabels/style.css -srcfiles size=11 - RELOC/source/latex/showlabels/showlabels.drv - RELOC/source/latex/showlabels/showlabels.dtx - RELOC/source/latex/showlabels/showlabels.ins -catalogue-ctan /macros/latex/contrib/showlabels -catalogue-date 2013-12-07 01:06:37 +0100 -catalogue-license gpl -catalogue-version 1.6.6 - -name showtags -category Package -revision 20336 -shortdesc Print the tags of bibliography entries. -relocated 1 -longdesc Prints the tag right-aligned on each line of the bibliography. -runfiles size=2 - RELOC/tex/latex/showtags/showtags.sty -docfiles size=53 - RELOC/doc/latex/showtags/showtags-doc.pdf - RELOC/doc/latex/showtags/showtags-doc.tex -catalogue-ctan /macros/latex/contrib/showtags -catalogue-date 2012-06-28 15:32:05 +0200 -catalogue-license pd -catalogue-version 1.05 - -name shuffle -category Package -revision 15878 -shortdesc A symbol for the shuffle product. -relocated 1 -longdesc The bundle provides a LaTeX package and a font (as Metafont -longdesc source) for the shuffle product which is used in some part of -longdesc mathematics and physics. -runfiles size=9 - RELOC/fonts/source/public/shuffle/shuffle.mf - RELOC/fonts/source/public/shuffle/shuffle10.mf - RELOC/fonts/source/public/shuffle/shuffle7.mf - RELOC/fonts/tfm/public/shuffle/shuffle10.tfm - RELOC/fonts/tfm/public/shuffle/shuffle7.tfm - RELOC/tex/latex/shuffle/Ushuffle.fd - RELOC/tex/latex/shuffle/shuffle.sty -docfiles size=74 - RELOC/doc/latex/shuffle/README - RELOC/doc/latex/shuffle/shuffle.pdf -srcfiles size=3 - RELOC/source/latex/shuffle/shuffle.dtx - RELOC/source/latex/shuffle/shuffle.ins -catalogue-ctan /fonts/shuffle -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license pd -catalogue-version 1.0 - -name sidecap -category Package -revision 15878 -shortdesc Typeset captions sideways. -relocated 1 -longdesc Defines environments called SCfigure and SCtable (analogous to -longdesc figure and table) to typeset captions sideways. Options include -longdesc outercaption, innercaption, leftcaption and rightcaption. -runfiles size=3 - RELOC/tex/latex/sidecap/sidecap.sty -docfiles size=47 - RELOC/doc/latex/sidecap/README - RELOC/doc/latex/sidecap/sc-test-common.tex - RELOC/doc/latex/sidecap/sc-test1.tex - RELOC/doc/latex/sidecap/sc-test2.tex - RELOC/doc/latex/sidecap/sc-test3.tex - RELOC/doc/latex/sidecap/sc-test4.tex - RELOC/doc/latex/sidecap/sc-test5.tex - RELOC/doc/latex/sidecap/sc-test6.tex - RELOC/doc/latex/sidecap/sidecap.pdf -srcfiles size=9 - RELOC/source/latex/sidecap/Makefile - RELOC/source/latex/sidecap/sidecap.dtx - RELOC/source/latex/sidecap/sidecap.ins -catalogue-ctan /macros/latex/contrib/sidecap -catalogue-date 2012-06-28 15:32:05 +0200 -catalogue-license lppl -catalogue-version 1.6f - -name sidenotes -category Package -revision 36434 -shortdesc Typeset notes containing rich content, in the margin. -relocated 1 -longdesc The package allows typesetting of texts with notes, figures, -longdesc citations, captions and tables in the margin. This is common -longdesc (for example) in science text books. -runfiles size=4 - RELOC/tex/latex/sidenotes/caesar_book.cls - RELOC/tex/latex/sidenotes/sidenotes.sty -docfiles size=76 - RELOC/doc/latex/sidenotes/README - RELOC/doc/latex/sidenotes/caesar_example.pdf - RELOC/doc/latex/sidenotes/caesar_example.tex - RELOC/doc/latex/sidenotes/sidenotes.pdf -srcfiles size=6 - RELOC/source/latex/sidenotes/sidenotes.dtx - RELOC/source/latex/sidenotes/sidenotes.ins -catalogue-ctan /macros/latex/contrib/sidenotes -catalogue-date 2015-03-04 17:59:48 +0100 -catalogue-license lppl1.3 -catalogue-version 0.98 - -name sides -category Package -revision 15878 -shortdesc A LaTeX class for typesetting stage plays. -relocated 1 -longdesc This is a LaTeX class for typesetting stage plays, based on the -longdesc plari class written by Antti-Juhani Kaijanaho in 1998. It has -longdesc been updated and several formatting changes have been made to -longdesc it--most noticibly there are no longer orphans. -runfiles size=2 - RELOC/tex/latex/sides/sides.cls -docfiles size=15 - RELOC/doc/latex/sides/README - RELOC/doc/latex/sides/sides-sample.pdf - RELOC/doc/latex/sides/sides-sample.tex -catalogue-ctan /macros/latex/contrib/sides -catalogue-date 2012-06-28 15:32:05 +0200 -catalogue-license gpl - -name silence -category Package -revision 27028 -shortdesc Selective filtering of error messages and warnings. -relocated 1 -longdesc The package allows the user to filter out unwanted warnings and -longdesc error messages issued by LaTeX, packages and classes, so they -longdesc won't pop out when there's nothing one can do about them. -longdesc Filtering goes from the very broad ("avoid all messages by such -longdesc and such") to the fine-grained ("avoid messages that begin -longdesc with..."). Messages may be saved to an external file for later -longdesc reference. -runfiles size=5 - RELOC/tex/latex/silence/silence.sty -docfiles size=116 - RELOC/doc/latex/silence/README - RELOC/doc/latex/silence/silence-doc.pdf -srcfiles size=18 - RELOC/source/latex/silence/silence-doc.dtx - RELOC/source/latex/silence/silence.ins -catalogue-ctan /macros/latex/contrib/silence -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.5b - -name simplecd -category Package -revision 29260 -shortdesc Simple CD, DVD covers for printing. -relocated 1 -longdesc The package provides printable cut-outs for various CD, DVD and -longdesc other disc holders. The name of the package comes from its -longdesc implementation and ease of use; it was designed just for text -longdesc content, but since the text is placed in a \parbox in a tabular -longdesc environment cell, a rather wide range of things may be placed. -runfiles size=9 - RELOC/tex/latex/simplecd/simplecd.sty -docfiles size=249 - RELOC/doc/latex/simplecd/README - RELOC/doc/latex/simplecd/examples.pdf - RELOC/doc/latex/simplecd/examples.tex - RELOC/doc/latex/simplecd/simplecd.pdf -srcfiles size=25 - RELOC/source/latex/simplecd/simplecd.dtx - RELOC/source/latex/simplecd/simplecd.ins -catalogue-ctan /macros/latex/contrib/simplecd -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.2 -catalogue-version 1.4 - -name simplecv -category Package -revision 35537 -shortdesc A simple class for writing curricula vitae. -relocated 1 -longdesc A derivative of the cv class available to lyx users (renamed to -longdesc avoid the existing cv package). -runfiles size=2 - RELOC/tex/latex/simplecv/simplecv.cls -docfiles size=74 - RELOC/doc/latex/simplecv/README - RELOC/doc/latex/simplecv/simplecv.pdf - RELOC/doc/latex/simplecv/testcv.pdf - RELOC/doc/latex/simplecv/testcv.tex -srcfiles size=5 - RELOC/source/latex/simplecv/simplecv.dtx - RELOC/source/latex/simplecv/simplecv.ins -catalogue-ctan /macros/latex/contrib/simplecv -catalogue-date 2014-11-07 14:37:14 +0100 -catalogue-license lppl -catalogue-version 1.6a - -name simplewick -category Package -revision 15878 -shortdesc Simple Wick contractions. -relocated 1 -longdesc The package provides a simple means of drawing Wick -longdesc contractions above and below expressions. -runfiles size=2 - RELOC/tex/latex/simplewick/simplewick.sty -docfiles size=22 - RELOC/doc/latex/simplewick/README - RELOC/doc/latex/simplewick/simplewick.pdf -srcfiles size=5 - RELOC/source/latex/simplewick/simplewick.dtx - RELOC/source/latex/simplewick/simplewick.ins -catalogue-ctan /macros/latex/contrib/simplewick -catalogue-date 2012-04-05 18:24:08 +0200 -catalogue-license gpl -catalogue-version 1.2a - -name simplified-latex -category Package -revision 20620 -shortdesc A Simplified Introduction to LaTeX. -relocated 1 -longdesc An accessible introduction for the beginner. -docfiles size=261 - RELOC/doc/latex/simplified-latex/README - RELOC/doc/latex/simplified-latex/simplified-intro.pdf - RELOC/doc/latex/simplified-latex/source.zip -catalogue-ctan /info/simplified-latex -catalogue-date 2012-04-05 18:24:08 +0200 -catalogue-license lppl - -name simurgh -category Package -revision 31719 -shortdesc Typeset Parsi in LuaLaTeX. -relocated 1 -longdesc The package provides an automatic and unified interface for -longdesc Parsi typesetting in LaTeX, using the LuaTeX engine. The -longdesc project to produce this system is dedicated to Ferdowsi The -longdesc Great. -runfiles size=1054 - RELOC/tex/lualatex/simurgh/simurgh-abjad.sty - RELOC/tex/lualatex/simurgh/simurgh-adadi.sty - RELOC/tex/lualatex/simurgh/simurgh-algorithm.sty - RELOC/tex/lualatex/simurgh/simurgh-algorithmic.sty - RELOC/tex/lualatex/simurgh/simurgh-amsart.sty - RELOC/tex/lualatex/simurgh/simurgh-amsbook.sty - RELOC/tex/lualatex/simurgh/simurgh-amsmath.sty - RELOC/tex/lualatex/simurgh/simurgh-amstext.sty - RELOC/tex/lualatex/simurgh/simurgh-amsthm.sty - RELOC/tex/lualatex/simurgh/simurgh-array.sty - RELOC/tex/lualatex/simurgh/simurgh-article.sty - RELOC/tex/lualatex/simurgh/simurgh-artikel1.sty - RELOC/tex/lualatex/simurgh/simurgh-artikel2.sty - RELOC/tex/lualatex/simurgh/simurgh-artikel3.sty - RELOC/tex/lualatex/simurgh/simurgh-arydshln.sty - RELOC/tex/lualatex/simurgh/simurgh-backref.sty - RELOC/tex/lualatex/simurgh/simurgh-bidi.sty - RELOC/tex/lualatex/simurgh/simurgh-boek.sty - RELOC/tex/lualatex/simurgh/simurgh-boek3.sty - RELOC/tex/lualatex/simurgh/simurgh-book.sty - RELOC/tex/lualatex/simurgh/simurgh-bookest.sty - RELOC/tex/lualatex/simurgh/simurgh-caption3.sty - RELOC/tex/lualatex/simurgh/simurgh-char-def.lua - RELOC/tex/lualatex/simurgh/simurgh-char-ini.lua - RELOC/tex/lualatex/simurgh/simurgh-chkeng.sty - RELOC/tex/lualatex/simurgh/simurgh-clss.sty - RELOC/tex/lualatex/simurgh/simurgh-counters.sty - RELOC/tex/lualatex/simurgh/simurgh-cptns.sty - RELOC/tex/lualatex/simurgh/simurgh-doc.cls - RELOC/tex/lualatex/simurgh/simurgh-empheq.sty - RELOC/tex/lualatex/simurgh/simurgh-extarticle.sty - RELOC/tex/lualatex/simurgh/simurgh-extbook.sty - RELOC/tex/lualatex/simurgh/simurgh-extletter.sty - RELOC/tex/lualatex/simurgh/simurgh-extreport.sty - RELOC/tex/lualatex/simurgh/simurgh-fleqn.sty - RELOC/tex/lualatex/simurgh/simurgh-fonts.sty - RELOC/tex/lualatex/simurgh/simurgh-footnotes.sty - RELOC/tex/lualatex/simurgh/simurgh-ftnxtra.sty - RELOC/tex/lualatex/simurgh/simurgh-glossaries.sty - RELOC/tex/lualatex/simurgh/simurgh-harfi.sty - RELOC/tex/lualatex/simurgh/simurgh-jalalical.sty - RELOC/tex/lualatex/simurgh/simurgh-leqno.sty - RELOC/tex/lualatex/simurgh/simurgh-letter.sty - RELOC/tex/lualatex/simurgh/simurgh-lettrine.sty - RELOC/tex/lualatex/simurgh/simurgh-loader.sty - RELOC/tex/lualatex/simurgh/simurgh-ltx.sty - RELOC/tex/lualatex/simurgh/simurgh-mathdigitspec.sty - RELOC/tex/lualatex/simurgh/simurgh-memoir.sty - RELOC/tex/lualatex/simurgh/simurgh-minitoc.sty - RELOC/tex/lualatex/simurgh/simurgh-natbib.sty - RELOC/tex/lualatex/simurgh/simurgh-pkgs.sty - RELOC/tex/lualatex/simurgh/simurgh-poem.sty - RELOC/tex/lualatex/simurgh/simurgh-rapport1.sty - RELOC/tex/lualatex/simurgh/simurgh-rapport3.sty - RELOC/tex/lualatex/simurgh/simurgh-refrep.sty - RELOC/tex/lualatex/simurgh/simurgh-report.sty - RELOC/tex/lualatex/simurgh/simurgh-scrartcl.sty - RELOC/tex/lualatex/simurgh/simurgh-scrbook.sty - RELOC/tex/lualatex/simurgh/simurgh-scrlettr.sty - RELOC/tex/lualatex/simurgh/simurgh-scrreprt.sty - RELOC/tex/lualatex/simurgh/simurgh-shellescape.sty - RELOC/tex/lualatex/simurgh/simurgh-tags.sty - RELOC/tex/lualatex/simurgh/simurgh-tartibi.sty - RELOC/tex/lualatex/simurgh/simurgh-tools.sty - RELOC/tex/lualatex/simurgh/simurgh-unibidi-core.lua - RELOC/tex/lualatex/simurgh/simurgh-unibidi-ini.lua - RELOC/tex/lualatex/simurgh/simurgh-unibidi-math.lua - RELOC/tex/lualatex/simurgh/simurgh-unibidi.lua - RELOC/tex/lualatex/simurgh/simurgh-unibidi.sty - RELOC/tex/lualatex/simurgh/simurgh.sty -docfiles size=58 - RELOC/doc/lualatex/simurgh/ChangeLog - RELOC/doc/lualatex/simurgh/README.doc - RELOC/doc/lualatex/simurgh/simurgh-doc.pdf - RELOC/doc/lualatex/simurgh/simurgh-doc.tex - RELOC/doc/lualatex/simurgh/simurgh-logo.pdf - RELOC/doc/lualatex/simurgh/simurgh-logo.tex -catalogue-ctan /macros/luatex/latex/simurgh -catalogue-date 2015-01-05 20:19:10 +0100 -catalogue-license gpl2 -catalogue-version 0.01b - -name SIstyle -category Package -revision 15878 -shortdesc Package to typeset SI units, numbers and angles. -relocated 1 -longdesc This package typesets SI units, numbers and angles according to -longdesc the ISO requirements. Care is taken with font setup and -longdesc requirements, and language customisation is available. Note -longdesc that this package is (in principle) superseded by siunitx; -longdesc sistyle has maintenance-only support, now. -runfiles size=3 - RELOC/tex/latex/SIstyle/sistyle.sty -docfiles size=126 - RELOC/doc/latex/SIstyle/README - RELOC/doc/latex/SIstyle/SIstyle-2.3a.pdf - RELOC/doc/latex/SIstyle/fig1.eps - RELOC/doc/latex/SIstyle/fig1.mps - RELOC/doc/latex/SIstyle/fig2.eps - RELOC/doc/latex/SIstyle/fig2.mps - RELOC/doc/latex/SIstyle/graphs_scr.zip -srcfiles size=19 - RELOC/source/latex/SIstyle/sistyle.dtx - RELOC/source/latex/SIstyle/sistyle.ins -catalogue-ctan /macros/latex/contrib/SIstyle -catalogue-date 2012-07-20 20:33:55 +0200 -catalogue-license lppl -catalogue-version 2.3a - -name sitem -category Package -revision 22136 -shortdesc Save the optional argument of \item. -relocated 1 -longdesc The package modifies \item commands to save the optional -longdesc argument in a box. -runfiles size=1 - RELOC/tex/latex/sitem/sitem.sty -docfiles size=20 - RELOC/doc/latex/sitem/sitem.pdf -srcfiles size=2 - RELOC/source/latex/sitem/sitem.dtx - RELOC/source/latex/sitem/sitem.ins -catalogue-ctan /macros/latex/contrib/sitem -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0 - -name SIunits -category Package -revision 15878 -shortdesc International System of Units. -relocated 1 -longdesc Typeset physical units following the rules of the International -longdesc System of Units (SI). The package requires amstext, for proper -longdesc representation of some values. Note that the package is now -longdesc superseded by siunitx; siunits has maintenance-only support, -longdesc now. -runfiles size=8 - RELOC/tex/latex/SIunits/SIunits.cfg - RELOC/tex/latex/SIunits/SIunits.sty - RELOC/tex/latex/SIunits/binary.sty -docfiles size=82 - RELOC/doc/latex/SIunits/README - RELOC/doc/latex/SIunits/SIunits.pdf -srcfiles size=40 - RELOC/source/latex/SIunits/SIunits.drv - RELOC/source/latex/SIunits/SIunits.dtx - RELOC/source/latex/SIunits/SIunits.ins -catalogue-ctan /macros/latex/contrib/SIunits -catalogue-date 2011-10-15 09:25:56 +0200 -catalogue-license lppl1.3 -catalogue-version 1.36 - -name siunitx -category Package -revision 38377 -shortdesc A comprehensive (SI) units package -relocated 1 -longdesc Typesetting values with units requires care to ensure that the -longdesc combined mathematical meaning of the value plus unit -longdesc combination is clear. In particular, the SI units system lays -longdesc down a consistent set of units with rules on how they are to be -longdesc used. However, different countries and publishers have -longdesc differing conventions on the exact appearance of numbers (and -longdesc units). A number of LaTeX packages have been developed to -longdesc provide consistent application of the various rules: SIunits, -longdesc sistyle, unitsdef and units are the leading examples. The -longdesc numprint package provides a large number of number-related -longdesc functions, while dcolumn and rccol provide tools for -longdesc typesetting tabular numbers. The siunitx package takes the best -longdesc from the existing packages, and adds new features and a -longdesc consistent interface. A number of new ideas have been -longdesc incorporated, to fill gaps in the existing provision. The -longdesc package also provides backward-compatibility with SIunits, -longdesc sistyle, unitsdef and units. The aim is to have one package to -longdesc handle all of the possible unit-related needs of LaTeX users. -longdesc The package relies on LaTeX 3 support from the l3kernel and -longdesc l3packages bundles. -runfiles size=79 - RELOC/tex/latex/siunitx/siunitx-abbreviations.cfg - RELOC/tex/latex/siunitx/siunitx-binary.cfg - RELOC/tex/latex/siunitx/siunitx-version-1.cfg - RELOC/tex/latex/siunitx/siunitx.sty -docfiles size=152 - RELOC/doc/latex/siunitx/LICENSE.md - RELOC/doc/latex/siunitx/README.md - RELOC/doc/latex/siunitx/siunitx.pdf -srcfiles size=151 - RELOC/source/latex/siunitx/siunitx.dtx -catalogue-ctan /macros/latex/contrib/siunitx -catalogue-date 2015-09-14 13:26:36 +0200 -catalogue-license lppl1.3 -catalogue-topics units scientific-docs -catalogue-version 2.6l - -name skaknew -category Package -revision 20031 -shortdesc The skak chess fonts redone in Adobe Type 1. -relocated 1 -longdesc This package offers Adobe Type 1 versions of the fonts provided -longdesc as Metafont source by the skak bundle. -execute addMap SkakNew.map -runfiles size=72 - RELOC/fonts/afm/public/skaknew/AlphaDia.afm - RELOC/fonts/afm/public/skaknew/SkakNew-Diagram.afm - RELOC/fonts/afm/public/skaknew/SkakNew-DiagramT.afm - RELOC/fonts/afm/public/skaknew/SkakNew-Figurine.afm - RELOC/fonts/afm/public/skaknew/SkakNew-FigurineBold.afm - RELOC/fonts/map/dvips/skaknew/SkakNew.map - RELOC/fonts/opentype/public/skaknew/AlphaDia.otf - RELOC/fonts/opentype/public/skaknew/SkakNew-Diagram.otf - RELOC/fonts/opentype/public/skaknew/SkakNew-DiagramT.otf - RELOC/fonts/opentype/public/skaknew/SkakNew-Figurine.otf - RELOC/fonts/opentype/public/skaknew/SkakNew-FigurineBold.otf - RELOC/fonts/tfm/public/skaknew/AlphaDia.tfm - RELOC/fonts/tfm/public/skaknew/SkakNew-Diagram.tfm - RELOC/fonts/tfm/public/skaknew/SkakNew-DiagramT.tfm - RELOC/fonts/tfm/public/skaknew/SkakNew-Figurine.tfm - RELOC/fonts/tfm/public/skaknew/SkakNew-FigurineBold.tfm - RELOC/fonts/type1/public/skaknew/AlphaDia.inf - RELOC/fonts/type1/public/skaknew/AlphaDia.pfb - RELOC/fonts/type1/public/skaknew/AlphaDia.pfm - RELOC/fonts/type1/public/skaknew/SkakNew-Diagram.inf - RELOC/fonts/type1/public/skaknew/SkakNew-Diagram.pfb - RELOC/fonts/type1/public/skaknew/SkakNew-Diagram.pfm - RELOC/fonts/type1/public/skaknew/SkakNew-DiagramT.inf - RELOC/fonts/type1/public/skaknew/SkakNew-DiagramT.pfb - RELOC/fonts/type1/public/skaknew/SkakNew-DiagramT.pfm - RELOC/fonts/type1/public/skaknew/SkakNew-Figurine.inf - RELOC/fonts/type1/public/skaknew/SkakNew-Figurine.pfb - RELOC/fonts/type1/public/skaknew/SkakNew-Figurine.pfm - RELOC/fonts/type1/public/skaknew/SkakNew-FigurineBold.inf - RELOC/fonts/type1/public/skaknew/SkakNew-FigurineBold.pfb - RELOC/fonts/type1/public/skaknew/SkakNew-FigurineBold.pfm -docfiles size=90 - RELOC/doc/fonts/skaknew/README - RELOC/doc/fonts/skaknew/SkakNew.pdf - RELOC/doc/fonts/skaknew/SkakNew.tex - RELOC/doc/fonts/skaknew/fonttables.pdf - RELOC/doc/fonts/skaknew/install.vtex -catalogue-ctan /fonts/chess/skaknew -catalogue-date 2014-05-26 00:20:30 +0200 -catalogue-license lppl - -name skak -category Package -revision 32758 -shortdesc Fonts and macros for typesetting chess games. -relocated 1 -longdesc This package provides macros and fonts in Metafont format which -longdesc can be used to typeset chess games using PGN, and to show -longdesc diagrams of the current board in a document. The package builds -longdesc on work by Piet Tutelaers -- the main novelty is the use of PGN -longdesc for input instead of the more cumbersome coordinate notation -longdesc (g1f3 becomes the more readable Nf3 in PGN). An Adobe Type 1 -longdesc implementation of skak's fonts is available as package skaknew; -longdesc an alternative chess notational scheme is available in package -longdesc texmate, and a general mechanism for selecting chess fonts is -longdesc provided in chessfss. -runfiles size=40 - RELOC/fonts/source/public/skak/skak10.mf - RELOC/fonts/source/public/skak/skak15.mf - RELOC/fonts/source/public/skak/skak20.mf - RELOC/fonts/source/public/skak/skak30.mf - RELOC/fonts/source/public/skak/skakbase.mf - RELOC/fonts/source/public/skak/skakbrikker.mf - RELOC/fonts/source/public/skak/skakf10.mf - RELOC/fonts/source/public/skak/skakf10b.mf - RELOC/fonts/source/public/skak/skakinf.mf - RELOC/fonts/tfm/public/skak/skak10.tfm - RELOC/fonts/tfm/public/skak/skak15.tfm - RELOC/fonts/tfm/public/skak/skak20.tfm - RELOC/fonts/tfm/public/skak/skak30.tfm - RELOC/fonts/tfm/public/skak/skakf10.tfm - RELOC/fonts/tfm/public/skak/skakf10b.tfm - RELOC/tex/latex/skak/chess-workshop-symbols.sty - RELOC/tex/latex/skak/skak.fd - RELOC/tex/latex/skak/skak.sty - RELOC/tex/latex/skak/uskak.fd -docfiles size=439 - RELOC/doc/latex/skak/ChangeLog.md - RELOC/doc/latex/skak/LICENSE - RELOC/doc/latex/skak/README.md - RELOC/doc/latex/skak/THANKS - RELOC/doc/latex/skak/WC-2004-S-00007.tex - RELOC/doc/latex/skak/_region_.tex - RELOC/doc/latex/skak/andreas_wilm_1.tex - RELOC/doc/latex/skak/angletst.tex - RELOC/doc/latex/skak/debug_storegame.tex - RELOC/doc/latex/skak/demo-symbols.tex - RELOC/doc/latex/skak/fen_with_black.tex - RELOC/doc/latex/skak/font.tex - RELOC/doc/latex/skak/font2.tex - RELOC/doc/latex/skak/hightest.tex - RELOC/doc/latex/skak/informator.ps - RELOC/doc/latex/skak/informator.tex - RELOC/doc/latex/skak/ingo-bug1.tex - RELOC/doc/latex/skak/longmove_king_bug.tex - RELOC/doc/latex/skak/longmoves.tex - RELOC/doc/latex/skak/makefile - RELOC/doc/latex/skak/promotion_problem_Ulrike.tex - RELOC/doc/latex/skak/refman.ps - RELOC/doc/latex/skak/refman.tex - RELOC/doc/latex/skak/show.tex - RELOC/doc/latex/skak/skakdoc.ps - RELOC/doc/latex/skak/skakdoc.tex - RELOC/doc/latex/skak/special.map - RELOC/doc/latex/skak/syntax.tex - RELOC/doc/latex/skak/test1.tex - RELOC/doc/latex/skak/test2.tex - RELOC/doc/latex/skak/test_capture.tex - RELOC/doc/latex/skak/tuggame.ps - RELOC/doc/latex/skak/tuggame.tex -catalogue-ctan /fonts/chess/skak -catalogue-date 2014-05-26 00:20:30 +0200 -catalogue-license lppl -catalogue-version 1.5.2 - -name skb -category Package -revision 22781 -shortdesc Tools for a repository of long-living documents. -relocated 1 -longdesc The package provides macros that help to build a document -longdesc repository for long living documents. It focuses on structure -longdesc and re-use of text, code, figures etc. The basic concept is -longdesc first to separate structure from content (i.e., text about a -longdesc topic from the structure it is presented by) and then -longdesc separating the content from the actual published document, thus -longdesc enabling easy re-use of text blocks in different publications -longdesc (i.e., text about a protocol in a short article about this -longdesc protocol as well as in a book about many protocols); all -longdesc without constantly copying or changing text. As a side effect, -longdesc using the document classes provided, it hides a lot of LaTeX -longdesc from someone who just wants to write articles and books. -runfiles size=12 - RELOC/tex/latex/skb/skb.cfg - RELOC/tex/latex/skb/skb.sty - RELOC/tex/latex/skb/skbarticle.cls - RELOC/tex/latex/skb/skbbeamer.cls - RELOC/tex/latex/skb/skbbook.cls - RELOC/tex/latex/skb/skblncsbeamer.cls - RELOC/tex/latex/skb/skblncsppt.cls - RELOC/tex/latex/skb/skbmoderncv.cls -docfiles size=558 - RELOC/doc/latex/skb/HISTORY.TXT - RELOC/doc/latex/skb/LICENSE.TXT - RELOC/doc/latex/skb/MANIFEST.TXT - RELOC/doc/latex/skb/README - RELOC/doc/latex/skb/TODO.TXT - RELOC/doc/latex/skb/makefile - RELOC/doc/latex/skb/skb.pdf - RELOC/doc/latex/skb/user-guide.pdf - RELOC/doc/latex/skb/user-guide/database/acronyms.tex - RELOC/doc/latex/skb/user-guide/database/bibliography.tex - RELOC/doc/latex/skb/user-guide/database/bibtex-styles.bbx - RELOC/doc/latex/skb/user-guide/database/bibtex/article.bib - RELOC/doc/latex/skb/user-guide/database/bibtex/book.bib - RELOC/doc/latex/skb/user-guide/database/bibtex/collection.bib - RELOC/doc/latex/skb/user-guide/database/bibtex/conference.bib - RELOC/doc/latex/skb/user-guide/database/bibtex/inbook.bib - RELOC/doc/latex/skb/user-guide/database/bibtex/incollection.bib - RELOC/doc/latex/skb/user-guide/database/bibtex/inproceedings.bib - RELOC/doc/latex/skb/user-guide/database/bibtex/manual.bib - RELOC/doc/latex/skb/user-guide/database/bibtex/misc.bib - RELOC/doc/latex/skb/user-guide/database/bibtex/online.bib - RELOC/doc/latex/skb/user-guide/database/bibtex/proceedings.bib - RELOC/doc/latex/skb/user-guide/database/bibtex/report.bib - RELOC/doc/latex/skb/user-guide/database/bibtex/standard.bib - RELOC/doc/latex/skb/user-guide/database/bibtex/techreport.bib - RELOC/doc/latex/skb/user-guide/database/bibtex/unpublished.bib - RELOC/doc/latex/skb/user-guide/examples/example-toc.tex - RELOC/doc/latex/skb/user-guide/examples/example.tex - RELOC/doc/latex/skb/user-guide/examples/figure-classic.tex - RELOC/doc/latex/skb/user-guide/examples/listings.tex - RELOC/doc/latex/skb/user-guide/examples/optional-text.tex - RELOC/doc/latex/skb/user-guide/examples/paths.tex - RELOC/doc/latex/skb/user-guide/examples/rebuild.tex - RELOC/doc/latex/skb/user-guide/examples/skbconfig.tex - RELOC/doc/latex/skb/user-guide/examples/skbem.tex - RELOC/doc/latex/skb/user-guide/examples/skbfigure.tex - RELOC/doc/latex/skb/user-guide/examples/skbheading.tex - RELOC/doc/latex/skb/user-guide/examples/skbinput.tex - RELOC/doc/latex/skb/user-guide/examples/skbslide.tex - RELOC/doc/latex/skb/user-guide/examples/skbslidecite.tex - RELOC/doc/latex/skb/user-guide/examples/used-options.tex - RELOC/doc/latex/skb/user-guide/figures/dirtree/baf.tex - RELOC/doc/latex/skb/user-guide/figures/dirtree/complete.tex - RELOC/doc/latex/skb/user-guide/figures/dirtree/exa-doc.tex - RELOC/doc/latex/skb/user-guide/figures/dirtree/publish-art.tex - RELOC/doc/latex/skb/user-guide/figures/dirtree/publish.tex - RELOC/doc/latex/skb/user-guide/figures/dirtree/repository.tex - RELOC/doc/latex/skb/user-guide/figures/dirtree/skb-distribution.tex - RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-0.pdf - RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-1.pdf - RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-10.pdf - RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-11.pdf - RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-12.pdf - RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-13.pdf - RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-14.pdf - RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-2.pdf - RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-3.pdf - RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-4.pdf - RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-5.pdf - RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-6.pdf - RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-7.pdf - RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-8.pdf - RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-9.pdf - RELOC/doc/latex/skb/user-guide/repository/abstract.tex - RELOC/doc/latex/skb/user-guide/repository/applicability.tex - RELOC/doc/latex/skb/user-guide/repository/exa-doc/documentation.tex - RELOC/doc/latex/skb/user-guide/repository/example-article.tex - RELOC/doc/latex/skb/user-guide/repository/getting-started/config-cmd.tex - RELOC/doc/latex/skb/user-guide/repository/getting-started/config-opt-table.tex - RELOC/doc/latex/skb/user-guide/repository/getting-started/config-opt.tex - RELOC/doc/latex/skb/user-guide/repository/getting-started/config.tex - RELOC/doc/latex/skb/user-guide/repository/getting-started/distribution.tex - RELOC/doc/latex/skb/user-guide/repository/getting-started/folders.tex - RELOC/doc/latex/skb/user-guide/repository/getting-started/installation.tex - RELOC/doc/latex/skb/user-guide/repository/getting-started/rebuild.tex - RELOC/doc/latex/skb/user-guide/repository/getting-started/start.tex - RELOC/doc/latex/skb/user-guide/repository/getting-started/used-options.tex - RELOC/doc/latex/skb/user-guide/repository/intent.tex - RELOC/doc/latex/skb/user-guide/repository/manual/acr-bib.tex - RELOC/doc/latex/skb/user-guide/repository/manual/figures.tex - RELOC/doc/latex/skb/user-guide/repository/manual/figures2.tex - RELOC/doc/latex/skb/user-guide/repository/manual/headings-and-files.tex - RELOC/doc/latex/skb/user-guide/repository/manual/listing.tex - RELOC/doc/latex/skb/user-guide/repository/manual/lists.tex - RELOC/doc/latex/skb/user-guide/repository/manual/manual.tex - RELOC/doc/latex/skb/user-guide/repository/manual/optional-text.tex - RELOC/doc/latex/skb/user-guide/repository/manual/path-commands.tex - RELOC/doc/latex/skb/user-guide/repository/manual/pdfinfo.tex - RELOC/doc/latex/skb/user-guide/repository/manual/skbem.tex - RELOC/doc/latex/skb/user-guide/repository/manual/skbfigure-opt-table.tex - RELOC/doc/latex/skb/user-guide/repository/manual/skbinput-opt-table.tex - RELOC/doc/latex/skb/user-guide/repository/manual/slides.tex - RELOC/doc/latex/skb/user-guide/repository/manual/slides2.tex - RELOC/doc/latex/skb/user-guide/repository/separate/separate-cs.tex - RELOC/doc/latex/skb/user-guide/repository/separate/separate-final.tex - RELOC/doc/latex/skb/user-guide/repository/separate/separate-parts-baf.tex - RELOC/doc/latex/skb/user-guide/repository/separate/separate-parts-pc.tex - RELOC/doc/latex/skb/user-guide/repository/separate/separate-parts-pc2.tex - RELOC/doc/latex/skb/user-guide/repository/separate/separate-parts.tex - RELOC/doc/latex/skb/user-guide/repository/separate/separate.tex - RELOC/doc/latex/skb/user-guide/repository/story/long.tex - RELOC/doc/latex/skb/user-guide/repository/story/long2.tex - RELOC/doc/latex/skb/user-guide/repository/story/short.tex - RELOC/doc/latex/skb/user-guide/repository/title.tex - RELOC/doc/latex/skb/user-guide/slides/about.tex - RELOC/doc/latex/skb/user-guide/slides/applicability.tex - RELOC/doc/latex/skb/user-guide/slides/example-art-tex1.tex - RELOC/doc/latex/skb/user-guide/slides/example-art-tex2.tex - RELOC/doc/latex/skb/user-guide/slides/example-art-tex3.tex - RELOC/doc/latex/skb/user-guide/slides/example-art-toc.tex - RELOC/doc/latex/skb/user-guide/slides/intent.tex - RELOC/doc/latex/skb/user-guide/slides/manual-acrbib.tex - RELOC/doc/latex/skb/user-guide/slides/manual-figures-exa.tex - RELOC/doc/latex/skb/user-guide/slides/manual-figures-exna.tex - RELOC/doc/latex/skb/user-guide/slides/manual-figures-opt.tex - RELOC/doc/latex/skb/user-guide/slides/manual-figures.tex - RELOC/doc/latex/skb/user-guide/slides/manual-haf.tex - RELOC/doc/latex/skb/user-guide/slides/manual-listings.tex - RELOC/doc/latex/skb/user-guide/slides/manual-lists.tex - RELOC/doc/latex/skb/user-guide/slides/manual-optional-text.tex - RELOC/doc/latex/skb/user-guide/slides/manual-paths.tex - RELOC/doc/latex/skb/user-guide/slides/manual-pdfinfo.tex - RELOC/doc/latex/skb/user-guide/slides/manual-skbem.tex - RELOC/doc/latex/skb/user-guide/slides/manual-slides1.tex - RELOC/doc/latex/skb/user-guide/slides/manual-slides2.tex - RELOC/doc/latex/skb/user-guide/slides/separate-cs.tex - RELOC/doc/latex/skb/user-guide/slides/separate-parts-baf.tex - RELOC/doc/latex/skb/user-guide/slides/separate-parts-pc1.tex - RELOC/doc/latex/skb/user-guide/slides/separate-parts-pc2.tex - RELOC/doc/latex/skb/user-guide/slides/separate.tex - RELOC/doc/latex/skb/user-guide/slides/start-config-cmd.tex - RELOC/doc/latex/skb/user-guide/slides/start-config-opt.tex - RELOC/doc/latex/skb/user-guide/slides/start-distribution.tex - RELOC/doc/latex/skb/user-guide/slides/start-folders.tex - RELOC/doc/latex/skb/user-guide/slides/start-installation.tex - RELOC/doc/latex/skb/user-guide/slides/start-rebuild1.tex - RELOC/doc/latex/skb/user-guide/slides/start-rebuild2.tex - RELOC/doc/latex/skb/user-guide/slides/start-used-options.tex - RELOC/doc/latex/skb/user-guide/slides/story-long1.tex - RELOC/doc/latex/skb/user-guide/slides/story-long2.tex - RELOC/doc/latex/skb/user-guide/slides/story-short.tex - RELOC/doc/latex/skb/user-guide/ug-slides-anim.tex - RELOC/doc/latex/skb/user-guide/ug-slides-load.tex - RELOC/doc/latex/skb/user-guide/ug-slides-noanim.tex - RELOC/doc/latex/skb/user-guide/ug-slides-notes.tex - RELOC/doc/latex/skb/user-guide/user-guide-load.tex - RELOC/doc/latex/skb/user-guide/user-guide.tex -srcfiles size=30 - RELOC/source/latex/skb/skb.dtx - RELOC/source/latex/skb/skb.ins -catalogue-ctan /macros/latex/contrib/skb -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.52 - -name skdoc -category Package -revision 32278 -shortdesc Documentation and extraction for packages and document classes. -relocated 1 -longdesc The class provides the functionality and implementation of -longdesc packages and document classes. It is loosely based on the ydoc -longdesc and ltxdoc classes, but has a number of incompatible -longdesc differences. The class defines a MacroCode environment which -longdesc offers an alternative to the the usual docstrip method of -longdesc installing packages. It has the ability to generate both -longdesc documentation and code in a single run of a single file. -runfiles size=13 - RELOC/tex/latex/skdoc/skdoc.cls -docfiles size=58 - RELOC/doc/latex/skdoc/README - RELOC/doc/latex/skdoc/skdoc.pdf -srcfiles size=30 - RELOC/source/latex/skdoc/skdoc.dtx -catalogue-ctan /macros/latex/contrib/skdoc -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.4a - -name skeycommand -category Package -revision 24652 -shortdesc Create commands using parameters and keyval in parallel. -relocated 1 -longdesc The package provides tools for defining LaTeX commands and -longdesc environments using combinations of parameters and keys. All the -longdesc facilities of the ltxkeys and skeyval packages are available to -longdesc the user of skeycommand. -runfiles size=5 - RELOC/tex/latex/skeycommand/skeycommand.sty -docfiles size=100 - RELOC/doc/latex/skeycommand/README - RELOC/doc/latex/skeycommand/skeycommand-guide.cfg - RELOC/doc/latex/skeycommand/skeycommand-guide.pdf - RELOC/doc/latex/skeycommand/skeycommand-guide.tex -catalogue-ctan /macros/latex/contrib/skeycommand -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.4 - -name skeyval -category Package -revision 30560 -shortdesc Key-value parsing combining features of xkeyval and pgfkeys. -relocated 1 -longdesc The package integrates the features of xkeyval and of pgfkeys -longdesc by introducing a new type of handlers. Style keys, links, -longdesc changing key callbacks and values on the fly, and other -longdesc features of pgfkeys are introduced in a new context. -runfiles size=148 - RELOC/tex/latex/skeyval/skeyval-bc.sty - RELOC/tex/latex/skeyval/skeyval-core.tex - RELOC/tex/latex/skeyval/skeyval-for.tex - RELOC/tex/latex/skeyval/skeyval-ltxcmds.tex - RELOC/tex/latex/skeyval/skeyval-ltxpatch.sty - RELOC/tex/latex/skeyval/skeyval-pstkey.sty - RELOC/tex/latex/skeyval/skeyval-pstkey.tex - RELOC/tex/latex/skeyval/skeyval-testclass.cls - RELOC/tex/latex/skeyval/skeyval-testpkg.sty - RELOC/tex/latex/skeyval/skeyval-view.sty - RELOC/tex/latex/skeyval/skeyval.sty -docfiles size=114 - RELOC/doc/latex/skeyval/README - RELOC/doc/latex/skeyval/skeyval-pokayoke1.pdf - RELOC/doc/latex/skeyval/skeyval-pokayoke1.tex - RELOC/doc/latex/skeyval/skeyval-pokayoke2.pdf - RELOC/doc/latex/skeyval/skeyval-pokayoke2.tex - RELOC/doc/latex/skeyval/skeyval-view-pokayoke1.aux - RELOC/doc/latex/skeyval/skeyval-view-pokayoke1.log - RELOC/doc/latex/skeyval/skeyval-view-pokayoke1.pdf - RELOC/doc/latex/skeyval/skeyval-view-pokayoke1.tex -catalogue-ctan /macros/latex/contrib/skeyval -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.3 - -name skmath -category Package -revision 35968 -shortdesc Extensions to the maths command repertoir. -relocated 1 -longdesc The package provides a selection of new maths commands and -longdesc improved re-definitions of existing commands. -runfiles size=4 - RELOC/tex/latex/skmath/skmath.sty -docfiles size=65 - RELOC/doc/latex/skmath/README - RELOC/doc/latex/skmath/skmath.pdf -srcfiles size=9 - RELOC/source/latex/skmath/skmath.tex -catalogue-ctan /macros/latex/contrib/skmath -catalogue-date 2015-01-05 15:12:24 +0100 -catalogue-license lppl1.3 -catalogue-version 0.4 - -name skrapport -category Package -revision 37911 -shortdesc 'Simple' class for reports, etc. -relocated 1 -longdesc The class is intended for simple documents (e.g., reports -longdesc handed in as coursework and the like). The class is small and -longdesc straightforward; its design was inspired by that of the PracTeX -longdesc journal style. -runfiles size=26 - RELOC/tex/latex/skrapport/skrapport-colortheme-cruelwater.sty - RELOC/tex/latex/skrapport/skrapport-colortheme-default.sty - RELOC/tex/latex/skrapport/skrapport-colortheme-skdoc.sty - RELOC/tex/latex/skrapport/skrapport-colortheme-unscathed.sty - RELOC/tex/latex/skrapport/skrapport-colortheme-violet.sty - RELOC/tex/latex/skrapport/skrapport-size-common.sty - RELOC/tex/latex/skrapport/skrapport-size10pt.clo - RELOC/tex/latex/skrapport/skrapport-size11pt.clo - RELOC/tex/latex/skrapport/skrapport-size12pt.clo - RELOC/tex/latex/skrapport/skrapport.cls -docfiles size=62 - RELOC/doc/latex/skrapport/README - RELOC/doc/latex/skrapport/skrapport.pdf -srcfiles size=40 - RELOC/source/latex/skrapport/skrapport.tex -catalogue-ctan /macros/latex/contrib/skrapport -catalogue-date 2015-07-20 19:46:12 +0200 -catalogue-license lppl1.3 -catalogue-topics class -catalogue-version 0.12e - -name skull -category Package -revision 25608 -shortdesc A font to draw a skull. -relocated 1 -longdesc The font (defined in Metafont) defines a single character, a -longdesc black solid skull. A package is supplied to make this character -longdesc available as a symbol in maths mode. -runfiles size=2 - RELOC/fonts/source/public/skull/skull.mf - RELOC/tex/latex/skull/skull.sty -srcfiles size=2 - RELOC/source/fonts/skull/skull.dtx - RELOC/source/fonts/skull/skull.ins -catalogue-ctan /fonts/skull -catalogue-date 2014-05-26 00:20:30 +0200 -catalogue-license gpl -catalogue-version 0.1 - -name slantsc -category Package -revision 25007 -shortdesc Access different-shaped small-caps fonts. -relocated 1 -longdesc This package enables the use of small capitals in different -longdesc font shapes, e.g., slanted or bold slanted for all fonts that -longdesc provide appropriate font shapes. (Note that a separate .fd file -longdesc is needed to define font shapes such as 'scsl' or 'scit'.) -runfiles size=1 - RELOC/tex/latex/slantsc/slantsc.sty -docfiles size=99 - RELOC/doc/latex/slantsc/ChangeLog - RELOC/doc/latex/slantsc/Makefile - RELOC/doc/latex/slantsc/README - RELOC/doc/latex/slantsc/getversion.tex - RELOC/doc/latex/slantsc/slantsc.pdf - RELOC/doc/latex/slantsc/testslantsc.tex -srcfiles size=6 - RELOC/source/latex/slantsc/slantsc.dtx - RELOC/source/latex/slantsc/slantsc.ins -catalogue-ctan /macros/latex/contrib/slantsc -catalogue-date 2012-05-28 11:05:13 +0200 -catalogue-license lppl -catalogue-version 2.11 - -name slideshow -category Package -revision 15878 -shortdesc Generate slideshow with MetaPost. -relocated 1 -longdesc The package provides a means of creating presentations in -longdesc MetaPost, without intervention from other utilities (except a -longdesc distiller). Such an arrangement has its advantages (though -longdesc there are disadvantages too). -runfiles size=10 - RELOC/metapost/slideshow/pathalong.mp - RELOC/metapost/slideshow/slideshow.mp - RELOC/metapost/slideshow/sshowex.mp - RELOC/metapost/slideshow/sshowex2.mp - RELOC/metapost/slideshow/sshowex3.mp - RELOC/metapost/slideshow/sshowintro.mp -docfiles size=42 - RELOC/doc/metapost/slideshow/slideshow.txt - RELOC/doc/metapost/slideshow/sshowex.pdf - RELOC/doc/metapost/slideshow/sshowex2.pdf - RELOC/doc/metapost/slideshow/sshowex3.pdf - RELOC/doc/metapost/slideshow/sshowintro.pdf -catalogue-ctan /graphics/metapost/contrib/macros/slideshow -catalogue-date 2012-05-28 11:32:41 +0200 -catalogue-license other-free -catalogue-version 1.0 - -name smalltableof -category Package -revision 20333 -shortdesc Create listoffigures etc. in a single chapter. -relocated 1 -longdesc The package allows you to create a list of figures and list of -longdesc tables in a chapter named 'List' that contains separate -longdesc sections for each list of figures, tables, etc. -runfiles size=1 - RELOC/tex/latex/smalltableof/smalltableof.sty -docfiles size=45 - RELOC/doc/latex/smalltableof/README - RELOC/doc/latex/smalltableof/smalltableof-doc-fr.pdf - RELOC/doc/latex/smalltableof/smalltableof-doc-fr.tex -catalogue-ctan /macros/latex/contrib/smalltableof -catalogue-date 2013-01-17 11:26:53 +0100 -catalogue-license lppl - -name smartdiagram -category Package -revision 30046 -shortdesc Generate diagrams from lists. -relocated 1 -longdesc The package will create 'smart' diagrams from lists of items, -longdesc for simple documents and for presentations. -runfiles size=15 - RELOC/tex/latex/smartdiagram/smartdiagram.sty - RELOC/tex/latex/smartdiagram/smartdiagramlibraryadditions.code.tex - RELOC/tex/latex/smartdiagram/smartdiagramlibrarycore.commands.code.tex - RELOC/tex/latex/smartdiagram/smartdiagramlibrarycore.definitions.code.tex - RELOC/tex/latex/smartdiagram/smartdiagramlibrarycore.styles.code.tex -docfiles size=66 - RELOC/doc/latex/smartdiagram/README - RELOC/doc/latex/smartdiagram/smartdiagram.pdf -srcfiles size=26 - RELOC/source/latex/smartdiagram/smartdiagram.dtx - RELOC/source/latex/smartdiagram/smartdiagram.ins -catalogue-ctan /graphics/pgf/contrib/smartdiagram -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.3 - -name smartref -category Package -revision 20311 -shortdesc Extend LaTeX's \ref capability. -relocated 1 -longdesc The package extends the LaTeX labelling system: whenever a -longdesc label is set, the values of counters (selected by the user) are -longdesc recorded, along with the label. The value of these counters can -longdesc be recalled with a command similar to \pageref. The package -longdesc also adds commands \s[name]ref (for each counter [name] that -longdesc the user has selected); these commands display something only -longdesc if the value of the [name] counter is changed from when the -longdesc label was set. Many commands are provided to serve as a macro -longdesc programming environment for using the extended labels. -runfiles size=3 - RELOC/tex/latex/smartref/byname.sty - RELOC/tex/latex/smartref/smartref.sty -docfiles size=82 - RELOC/doc/latex/smartref/README - RELOC/doc/latex/smartref/smartref-doc.pdf - RELOC/doc/latex/smartref/smartref-doc.tex -catalogue-ctan /macros/latex/contrib/smartref -catalogue-date 2012-05-28 12:09:57 +0200 -catalogue-license lppl -catalogue-version 1.9 - -name snapshot -category Package -revision 15878 -shortdesc List the external dependencies of a LaTeX document. -relocated 1 -longdesc The snapshot package helps the owner of a LaTeX document obtain -longdesc a list of the external dependencies of the document, in a form -longdesc that can be embedded at the top of the document. It provides a -longdesc snapshot of the current processing context of the document, -longdesc insofar as it can be determined from inside LaTeX. If a -longdesc document contains such a dependency list, then it becomes -longdesc possible to arrange that the document be processed always with -longdesc the same versions of everything, in order to ensure the same -longdesc output. This could be useful for someone wanting to keep a -longdesc LaTeX document on hand and consistently reproduce an identical -longdesc DVI file from it, on the fly; or for someone wanting to shield -longdesc a document during the final stages of its production cycle from -longdesc unexpected side effects of routine upgrades to the TeX system. -runfiles size=3 - RELOC/tex/latex/snapshot/snapshot.sty -docfiles size=30 - RELOC/doc/latex/snapshot/snapshot.pdf -srcfiles size=9 - RELOC/source/latex/snapshot/snapshot.dtx - RELOC/source/latex/snapshot/snapshot.ins -catalogue-ctan /macros/latex/contrib/snapshot -catalogue-date 2012-05-28 12:09:57 +0200 -catalogue-license lppl -catalogue-version 1.14 - -name snotez -category Package -revision 30355 -shortdesc Typeset notes, in the margin. -relocated 1 -longdesc The package provides a macro \sidenote, that places a note in -longdesc the margin of the document, with its baseline aligned with the -longdesc baseline in the body of the document. These sidenotes are -longdesc numbered (both in the text, and on the notes themselves). The -longdesc package loads the package etoolbox, pgfopts, marginnote and -longdesc perpage. -runfiles size=3 - RELOC/tex/latex/snotez/snotez.sty -docfiles size=117 - RELOC/doc/latex/snotez/README - RELOC/doc/latex/snotez/snotez_en.pdf - RELOC/doc/latex/snotez/snotez_en.tex -catalogue-ctan /macros/latex/contrib/snotez -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.3 - -name songbook -category Package -revision 18136 -shortdesc Package for typesetting song lyrics and chord books. -relocated 1 -longdesc The package provides an all purpose songbook style. Three types -longdesc of output may be created from a single input file: "words and -longdesc chords" books for the musicians to play from, "words only" -longdesc songbooks for the congregation to sing from, and overhead -longdesc transparency masters for congregational use. The package will -longdesc also print a table of contents, an index sorted by title and -longdesc first line, and an index sorted by key, or by artist/composer. -longdesc The package attempts to handle songs in multiple keys, as well -longdesc as songs in multiple languages. -runfiles size=15 - RELOC/makeindex/songbook/songbook.ist - RELOC/tex/latex/songbook/conditionals.sty - RELOC/tex/latex/songbook/songbook.sty -docfiles size=438 - RELOC/doc/latex/songbook/LesserGPL.txt - RELOC/doc/latex/songbook/README - RELOC/doc/latex/songbook/contrib/CarolBook/CarolBook.tex - RELOC/doc/latex/songbook/contrib/CarolBook/CarolBookOH.pdf - RELOC/doc/latex/songbook/contrib/CarolBook/CarolBookWB.pdf - RELOC/doc/latex/songbook/contrib/README - RELOC/doc/latex/songbook/contrib/crd2sb/NothingButTheBlood.crd - RELOC/doc/latex/songbook/contrib/crd2sb/crd2sb - RELOC/doc/latex/songbook/contrib/crd2sb/crd2sb.txt - RELOC/doc/latex/songbook/contrib/modulate - RELOC/doc/latex/songbook/contrib/texchord.sty - RELOC/doc/latex/songbook/install.txt - RELOC/doc/latex/songbook/mksbadx - RELOC/doc/latex/songbook/mksbkdx - RELOC/doc/latex/songbook/mksbtdx - RELOC/doc/latex/songbook/sample-sb.tex - RELOC/doc/latex/songbook/sampleAdx.pdf - RELOC/doc/latex/songbook/sampleAdx.tex - RELOC/doc/latex/songbook/sampleCBK.pdf - RELOC/doc/latex/songbook/sampleCSBK.pdf - RELOC/doc/latex/songbook/sampleKdx.pdf - RELOC/doc/latex/songbook/sampleKdx.tex - RELOC/doc/latex/songbook/sampleOH.pdf - RELOC/doc/latex/songbook/sampleTdx.pdf - RELOC/doc/latex/songbook/sampleTdx.tex - RELOC/doc/latex/songbook/sampleToc.pdf - RELOC/doc/latex/songbook/sampleToc.tex - RELOC/doc/latex/songbook/sampleWBK.pdf - RELOC/doc/latex/songbook/songbook.pdf -srcfiles size=51 - RELOC/source/latex/songbook/songbook.dtx - RELOC/source/latex/songbook/songbook.ins -catalogue-ctan /macros/latex/contrib/songbook -catalogue-date 2012-04-22 21:38:25 +0200 -catalogue-license lgpl2.1 -catalogue-version 4.5 - -name songs -category Package -revision 30005 -shortdesc Produce song books for church or fellowship. -relocated 1 -longdesc The package provides a means of producing beautiful song books -longdesc for church or fellowship. It offers: a very easy chord-entry -longdesc syntax; multiple modes (words-only; words+chords; slides; -longdesc handouts); measure bars; guitar tablatures; automatic -longdesc transposition; scripture quotations; multiple indexes (sorted -longdesc by title, author, important lyrics, or scripture references); -longdesc and projector-style output generation, for interactive use. A -longdesc set of example documents is provided. -runfiles size=25 - RELOC/tex/latex/songs/songs.sty -docfiles size=343 - RELOC/doc/latex/songs/Makefile - RELOC/doc/latex/songs/README - RELOC/doc/latex/songs/history.txt - RELOC/doc/latex/songs/license.txt - RELOC/doc/latex/songs/sample/Makefile - RELOC/doc/latex/songs/sample/chordbook.tex - RELOC/doc/latex/songs/sample/lyricbook.tex - RELOC/doc/latex/songs/sample/slidebook.tex - RELOC/doc/latex/songs/sample/songs.sbd - RELOC/doc/latex/songs/sample/transparencies.tex - RELOC/doc/latex/songs/songidx/Makefile - RELOC/doc/latex/songs/songidx/authidx.c - RELOC/doc/latex/songs/songidx/bible.can - RELOC/doc/latex/songs/songidx/catholic.can - RELOC/doc/latex/songs/songidx/chars.h - RELOC/doc/latex/songs/songidx/fileio.c - RELOC/doc/latex/songs/songidx/fileio.h - RELOC/doc/latex/songs/songidx/greek.can - RELOC/doc/latex/songs/songidx/protestant.can - RELOC/doc/latex/songs/songidx/scripidx.c - RELOC/doc/latex/songs/songidx/songidx.c - RELOC/doc/latex/songs/songidx/songidx.h - RELOC/doc/latex/songs/songidx/songsort.c - RELOC/doc/latex/songs/songidx/tanakh.can - RELOC/doc/latex/songs/songidx/titleidx.c - RELOC/doc/latex/songs/songidx/vsconfig.h - RELOC/doc/latex/songs/songs.pdf -srcfiles size=99 - RELOC/source/latex/songs/songs.dtx - RELOC/source/latex/songs/songs.ins -catalogue-ctan /macros/latex/contrib/songs -catalogue-date 2014-10-15 15:52:30 +0200 -catalogue-license gpl -catalogue-version 2.14 - -name sort-by-letters -category Package -revision 27128 -shortdesc Bibliography styles for alphabetic sorting. -relocated 1 -longdesc This bundle contains several bibliography styles for separating -longdesc a document's references by the first letter of the first -longdesc author/editor in the bibliography entry. The styles are adapted -longdesc from standard ones or from natbib ones. -runfiles size=48 - RELOC/bibtex/bst/sort-by-letters/abbrv-letters.bst - RELOC/bibtex/bst/sort-by-letters/alpha-letters.bst - RELOC/bibtex/bst/sort-by-letters/apalike-letters.bst - RELOC/bibtex/bst/sort-by-letters/frplainnat-letters.bst - RELOC/bibtex/bst/sort-by-letters/plain-letters.bst - RELOC/bibtex/bst/sort-by-letters/plainnat-letters.bst - RELOC/bibtex/bst/sort-by-letters/siam-letters.bst -docfiles size=1 - RELOC/doc/bibtex/sort-by-letters/README -catalogue-ctan /biblio/bibtex/contrib/sort-by-letters -catalogue-date 2012-06-04 23:25:44 +0200 -catalogue-license other-free - -name soton -category Package -revision 16215 -shortdesc University of Southampton-compliant slides. -relocated 1 -longdesc The bundle contains two packages: soton-palette which defines -longdesc colour-ways, and soton-beamer, which uses the colours to -longdesc produce compliant presentations. -runfiles size=2 - RELOC/tex/latex/soton/soton-beamer.sty - RELOC/tex/latex/soton/soton-palette.sty -docfiles size=1 - RELOC/doc/latex/soton/README -catalogue-ctan /macros/latex/contrib/soton -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.1 - -name soul -category Package -revision 15878 -shortdesc Hyphenation for letterspacing, underlining, and more. -relocated 1 -longdesc Provides hyphenatable spacing out (letterspacing), underlining, -longdesc striking out, etc., using the TeX hyphenation algorithm to find -longdesc the proper hyphens automatically. The package also provides a -longdesc mechanism that can be used to implement similar tasks, that -longdesc have to treat text syllable by syllable. This is shown in two -longdesc examples. The package itself does not support UTF-8 input in -longdesc ordinary (PDF)LaTeX; some UTF-8 support is offered by package -longdesc soulutf8 -runfiles size=6 - RELOC/tex/latex/soul/soul.sty -docfiles size=96 - RELOC/doc/latex/soul/soul.pdf - RELOC/doc/latex/soul/soul.txt -srcfiles size=35 - RELOC/source/latex/soul/Makefile - RELOC/source/latex/soul/soul.dtx - RELOC/source/latex/soul/soul.ins -catalogue-ctan /macros/latex/contrib/soul -catalogue-date 2012-03-12 18:08:07 +0100 -catalogue-license lppl -catalogue-version 2.4 - -name sourcecodepro -category Package -revision 37395 -shortdesc Use SourceCodePro with TeX(-alike) systems. -relocated 1 -longdesc The font is an open-source Monospaced development from Adobe. -longdesc The package provides fonts (in both Adobe Type 1 and OpenType -longdesc formats) and macros supporting their use in LaTeX (Type 1) and -longdesc XeLaTeX/LuaLaTeX (OTF). -execute addMap SourceCodePro.map -runfiles size=1314 - RELOC/fonts/enc/dvips/sourcecodepro/a_27avc7.enc - RELOC/fonts/enc/dvips/sourcecodepro/a_4t223s.enc - RELOC/fonts/enc/dvips/sourcecodepro/a_6zrzoz.enc - RELOC/fonts/enc/dvips/sourcecodepro/a_7ovpxh.enc - RELOC/fonts/enc/dvips/sourcecodepro/a_aoc6c2.enc - RELOC/fonts/enc/dvips/sourcecodepro/a_bldrys.enc - RELOC/fonts/enc/dvips/sourcecodepro/a_djdyjq.enc - RELOC/fonts/enc/dvips/sourcecodepro/a_dz5hhp.enc - RELOC/fonts/enc/dvips/sourcecodepro/a_gu5xou.enc - RELOC/fonts/enc/dvips/sourcecodepro/a_jvslvy.enc - RELOC/fonts/enc/dvips/sourcecodepro/a_kinvs5.enc - RELOC/fonts/enc/dvips/sourcecodepro/a_ktd5xr.enc - RELOC/fonts/enc/dvips/sourcecodepro/a_mqb3sg.enc - RELOC/fonts/enc/dvips/sourcecodepro/a_nkmn5f.enc - RELOC/fonts/enc/dvips/sourcecodepro/a_omr5qy.enc - RELOC/fonts/enc/dvips/sourcecodepro/a_retzg2.enc - RELOC/fonts/enc/dvips/sourcecodepro/a_s37xrq.enc - RELOC/fonts/enc/dvips/sourcecodepro/a_ubfwpl.enc - RELOC/fonts/enc/dvips/sourcecodepro/a_xftsmg.enc - RELOC/fonts/map/dvips/sourcecodepro/SourceCodePro.map - RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-Black.otf - RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-BlackIt.otf - RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-Bold.otf - RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-BoldIt.otf - RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-ExtraLight.otf - RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-ExtraLightIt.otf - RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-Light.otf - RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-LightIt.otf - RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-Medium.otf - RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-MediumIt.otf - RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-Regular.otf - RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-RegularIt.otf - RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-Semibold.otf - RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-SemiboldIt.otf - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-ts1.tfm - RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-Black.pfb - RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-BlackIt.pfb - RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-Bold.pfb - RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-BoldIt.pfb - RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-ExtraLight.pfb - RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-ExtraLightIt.pfb - RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-It.pfb - RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-Light.pfb - RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-LightIt.pfb - RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-Medium.pfb - RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-MediumIt.pfb - RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-Regular.pfb - RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-Semibold.pfb - RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-SemiboldIt.pfb - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-dnom-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-inf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-inf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-numr-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-numr-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-sup-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-sup-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-tosf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-dnom-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-inf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-inf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-numr-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-numr-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-sup-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-sup-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-tosf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-dnom-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-inf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-inf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-numr-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-numr-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-sup-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-sup-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-dnom-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-inf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-inf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-numr-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-numr-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-sup-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-sup-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-dnom-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-inf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-inf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-numr-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-numr-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-sup-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-sup-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-tosf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-dnom-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-inf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-inf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-numr-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-numr-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-sup-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-sup-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-tosf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-dnom-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-inf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-inf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-numr-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-numr-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-sup-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-sup-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-tosf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-dnom-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-inf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-inf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-numr-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-numr-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-sup-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-sup-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-tosf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-dnom-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-inf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-inf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-numr-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-numr-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-sup-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-sup-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-dnom-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-inf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-inf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-numr-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-numr-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-sup-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-sup-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-t1.vf - RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-ts1.vf - RELOC/tex/latex/sourcecodepro/LY1SourceCodePro-Dnom.fd - RELOC/tex/latex/sourcecodepro/LY1SourceCodePro-Inf.fd - RELOC/tex/latex/sourcecodepro/LY1SourceCodePro-Numr.fd - RELOC/tex/latex/sourcecodepro/LY1SourceCodePro-Sup.fd - RELOC/tex/latex/sourcecodepro/LY1SourceCodePro-TLF.fd - RELOC/tex/latex/sourcecodepro/LY1SourceCodePro-TOsF.fd - RELOC/tex/latex/sourcecodepro/OT1SourceCodePro-Dnom.fd - RELOC/tex/latex/sourcecodepro/OT1SourceCodePro-Inf.fd - RELOC/tex/latex/sourcecodepro/OT1SourceCodePro-Numr.fd - RELOC/tex/latex/sourcecodepro/OT1SourceCodePro-Sup.fd - RELOC/tex/latex/sourcecodepro/OT1SourceCodePro-TLF.fd - RELOC/tex/latex/sourcecodepro/OT1SourceCodePro-TOsF.fd - RELOC/tex/latex/sourcecodepro/T1SourceCodePro-Dnom.fd - RELOC/tex/latex/sourcecodepro/T1SourceCodePro-Inf.fd - RELOC/tex/latex/sourcecodepro/T1SourceCodePro-Numr.fd - RELOC/tex/latex/sourcecodepro/T1SourceCodePro-Sup.fd - RELOC/tex/latex/sourcecodepro/T1SourceCodePro-TLF.fd - RELOC/tex/latex/sourcecodepro/T1SourceCodePro-TOsF.fd - RELOC/tex/latex/sourcecodepro/TS1SourceCodePro-TLF.fd - RELOC/tex/latex/sourcecodepro/TS1SourceCodePro-TOsF.fd - RELOC/tex/latex/sourcecodepro/sourcecodepro-type1-autoinst.sty - RELOC/tex/latex/sourcecodepro/sourcecodepro.sty -docfiles size=50 - RELOC/doc/latex/sourcecodepro/LICENSE.txt - RELOC/doc/latex/sourcecodepro/sourcecodepro-otf-specimen.pdf - RELOC/doc/latex/sourcecodepro/sourcecodepro-otf-specimen.tex - RELOC/doc/latex/sourcecodepro/sourcecodepro-type1-specimen.pdf - RELOC/doc/latex/sourcecodepro/sourcecodepro-type1-specimen.tex - RELOC/doc/latex/sourcecodepro/sourcecodepro.pdf - RELOC/doc/latex/sourcecodepro/sourcecodepro.tex -catalogue-ctan /fonts/sourcecodepro -catalogue-date 2015-05-13 22:29:50 +0200 -catalogue-license ofl -catalogue-version 2.4 - -name sourcesanspro -category Package -revision 37379 -shortdesc Use SourceSansPro with TeX(-alike) systems. -relocated 1 -longdesc The font is an open-source Sans-Serif development from Adobe. -longdesc The package provides fonts (in both Adobe Type 1 and OpenType -longdesc formats) and macros supporting their use in LaTeX (Type 1) and -longdesc XeLaTeX/LuaLaTeX (OTF). -execute addMap SourceSansPro.map -runfiles size=3209 - RELOC/fonts/enc/dvips/sourcesanspro/a_2cvp4u.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_2jmt2m.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_2n3jyq.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_3rlax2.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_3vq5rq.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_4jf6oe.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_5mnkjz.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_5tbsmu.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_6bttxp.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_b457hn.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_cvynlr.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_cxftuq.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_debg3j.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_el7rh7.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_elrf5h.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_ev2kyj.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_floqlo.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_fva737.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_gc2pqo.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_ggs4wk.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_gsofwu.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_gw3vm7.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_ifkpwm.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_j24bgz.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_jpwolx.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_kksgzp.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_ko3vnf.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_mhce32.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_myad3x.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_n5gv3r.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_n5mfkj.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_nlm4w5.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_p5cgg3.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_pcov5a.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_psnyba.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_qujrng.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_r6twhl.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_rsnzt5.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_sd7igg.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_tczf5d.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_tophx4.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_tzjlps.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_umlpmm.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_v4sjy4.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_v537dd.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_vx5ywn.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_w2dgod.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_x5hjjp.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_xfkmtv.enc - RELOC/fonts/enc/dvips/sourcesanspro/a_yugc2g.enc - RELOC/fonts/map/dvips/sourcesanspro/SourceSansPro.map - RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-Black.otf - RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-BlackIt.otf - RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-Bold.otf - RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-BoldIt.otf - RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-ExtraLight.otf - RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-ExtraLightIt.otf - RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-Light.otf - RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-LightIt.otf - RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-Regular.otf - RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-RegularIt.otf - RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-Semibold.otf - RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-SemiboldIt.otf - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-ts1.tfm - RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-Black.pfb - RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-BlackIt.pfb - RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-Bold.pfb - RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-BoldIt.pfb - RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-ExtraLight.pfb - RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-ExtraLightIt.pfb - RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-It.pfb - RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-Light.pfb - RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-LightIt.pfb - RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-Regular.pfb - RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-Semibold.pfb - RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-SemiboldIt.pfb - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-dnom-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-inf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-inf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-lf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-ot1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-lf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-lf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-numr-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-numr-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-osf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-ot1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-osf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-osf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-sup-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-sup-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-ot1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-ot1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tosf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-dnom-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-inf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-inf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-lf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-ot1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-lf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-lf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-numr-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-numr-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-osf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-ot1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-osf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-osf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-sup-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-sup-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-ot1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-ot1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tosf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-ot1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-ot1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-ot1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-ot1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-dnom-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-inf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-inf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-lf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-lf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-lf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-numr-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-numr-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-osf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-osf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-osf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-sup-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-sup-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-tosf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-dnom-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-inf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-inf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-lf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-ot1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-lf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-lf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-numr-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-numr-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-osf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-ot1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-osf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-osf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-sup-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-sup-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-ot1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-ot1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tosf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-inf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-inf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-lf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-lf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-lf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-numr-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-numr-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-osf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-osf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-osf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-sup-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-sup-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-dnom-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-inf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-inf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-lf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-ot1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-lf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-lf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-numr-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-numr-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-osf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-ot1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-osf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-osf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-sup-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-sup-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-ot1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-ot1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tosf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-inf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-inf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-lf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-ot1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-lf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-lf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-numr-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-numr-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-osf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-ot1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-osf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-osf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-sup-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-sup-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-ot1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-ot1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-t1.vf - RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-ts1.vf - RELOC/tex/latex/sourcesanspro/LY1SourceSansPro-Dnom.fd - RELOC/tex/latex/sourcesanspro/LY1SourceSansPro-Inf.fd - RELOC/tex/latex/sourcesanspro/LY1SourceSansPro-LF.fd - RELOC/tex/latex/sourcesanspro/LY1SourceSansPro-Numr.fd - RELOC/tex/latex/sourcesanspro/LY1SourceSansPro-OsF.fd - RELOC/tex/latex/sourcesanspro/LY1SourceSansPro-Sup.fd - RELOC/tex/latex/sourcesanspro/LY1SourceSansPro-TLF.fd - RELOC/tex/latex/sourcesanspro/LY1SourceSansPro-TOsF.fd - RELOC/tex/latex/sourcesanspro/OT1SourceSansPro-Dnom.fd - RELOC/tex/latex/sourcesanspro/OT1SourceSansPro-Inf.fd - RELOC/tex/latex/sourcesanspro/OT1SourceSansPro-LF.fd - RELOC/tex/latex/sourcesanspro/OT1SourceSansPro-Numr.fd - RELOC/tex/latex/sourcesanspro/OT1SourceSansPro-OsF.fd - RELOC/tex/latex/sourcesanspro/OT1SourceSansPro-Sup.fd - RELOC/tex/latex/sourcesanspro/OT1SourceSansPro-TLF.fd - RELOC/tex/latex/sourcesanspro/OT1SourceSansPro-TOsF.fd - RELOC/tex/latex/sourcesanspro/T1SourceSansPro-Dnom.fd - RELOC/tex/latex/sourcesanspro/T1SourceSansPro-Inf.fd - RELOC/tex/latex/sourcesanspro/T1SourceSansPro-LF.fd - RELOC/tex/latex/sourcesanspro/T1SourceSansPro-Numr.fd - RELOC/tex/latex/sourcesanspro/T1SourceSansPro-OsF.fd - RELOC/tex/latex/sourcesanspro/T1SourceSansPro-Sup.fd - RELOC/tex/latex/sourcesanspro/T1SourceSansPro-TLF.fd - RELOC/tex/latex/sourcesanspro/T1SourceSansPro-TOsF.fd - RELOC/tex/latex/sourcesanspro/TS1SourceSansPro-LF.fd - RELOC/tex/latex/sourcesanspro/TS1SourceSansPro-OsF.fd - RELOC/tex/latex/sourcesanspro/TS1SourceSansPro-TLF.fd - RELOC/tex/latex/sourcesanspro/TS1SourceSansPro-TOsF.fd - RELOC/tex/latex/sourcesanspro/sourcesanspro-type1-autoinst.sty - RELOC/tex/latex/sourcesanspro/sourcesanspro.sty -docfiles size=56 - RELOC/doc/latex/sourcesanspro/LICENSE.txt - RELOC/doc/latex/sourcesanspro/sourcesanspro-otf-specimen.pdf - RELOC/doc/latex/sourcesanspro/sourcesanspro-otf-specimen.tex - RELOC/doc/latex/sourcesanspro/sourcesanspro-type1-specimen.pdf - RELOC/doc/latex/sourcesanspro/sourcesanspro-type1-specimen.tex - RELOC/doc/latex/sourcesanspro/sourcesanspro.pdf - RELOC/doc/latex/sourcesanspro/sourcesanspro.tex -catalogue-ctan /fonts/sourcesanspro -catalogue-date 2015-05-13 20:59:05 +0200 -catalogue-license ofl -catalogue-version 2.5 - -name sourceserifpro -category Package -revision 37425 -shortdesc Use SourceSerifPro with TeX(-alike) systems. -relocated 1 -longdesc This package provides Source Serif Pro for LaTeX. It includes -longdesc both Type1 and OpenType fonts and selects the latter when using -longdesc XeLaTeX or LuaLaTeX. Issues with this package can be reported -longdesc on GitHub (https://github.com/silkeh/latex- -longdesc sourceserifpro/issues) or emailed to tex@slxh.nl. -execute addMap SourceSerifPro.map -runfiles size=2016 - RELOC/fonts/enc/dvips/sourceserifpro/a_3gun5d.enc - RELOC/fonts/enc/dvips/sourceserifpro/a_64kcwv.enc - RELOC/fonts/enc/dvips/sourceserifpro/a_7c323s.enc - RELOC/fonts/enc/dvips/sourceserifpro/a_7vfhsm.enc - RELOC/fonts/enc/dvips/sourceserifpro/a_a5mxzo.enc - RELOC/fonts/enc/dvips/sourceserifpro/a_c5lvge.enc - RELOC/fonts/enc/dvips/sourceserifpro/a_c6mgd7.enc - RELOC/fonts/enc/dvips/sourceserifpro/a_cx2wj7.enc - RELOC/fonts/enc/dvips/sourceserifpro/a_fv7osb.enc - RELOC/fonts/enc/dvips/sourceserifpro/a_iem7z5.enc - RELOC/fonts/enc/dvips/sourceserifpro/a_kuzlbp.enc - RELOC/fonts/enc/dvips/sourceserifpro/a_mtsjm5.enc - RELOC/fonts/enc/dvips/sourceserifpro/a_n5wndz.enc - RELOC/fonts/enc/dvips/sourceserifpro/a_oim3qx.enc - RELOC/fonts/enc/dvips/sourceserifpro/a_owk7oj.enc - RELOC/fonts/enc/dvips/sourceserifpro/a_pvm6tr.enc - RELOC/fonts/enc/dvips/sourceserifpro/a_r5qp3q.enc - RELOC/fonts/enc/dvips/sourceserifpro/a_rgwjxa.enc - RELOC/fonts/enc/dvips/sourceserifpro/a_rsqbul.enc - RELOC/fonts/enc/dvips/sourceserifpro/a_sxytol.enc - RELOC/fonts/enc/dvips/sourceserifpro/a_t4jhwy.enc - RELOC/fonts/enc/dvips/sourceserifpro/a_ttcihk.enc - RELOC/fonts/enc/dvips/sourceserifpro/a_vj4et7.enc - RELOC/fonts/enc/dvips/sourceserifpro/a_vz2niz.enc - RELOC/fonts/enc/dvips/sourceserifpro/a_yds5jv.enc - RELOC/fonts/map/dvips/sourceserifpro/SourceSerifPro.map - RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-Black.otf - RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-Bold.otf - RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-ExtraLight.otf - RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-Light.otf - RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-Regular.otf - RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-Semibold.otf - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-dnom-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-dnom-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-dnom-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-dnom-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-inf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-inf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-inf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-inf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-ts1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-numr-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-numr-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-numr-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-numr-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-ts1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-sup-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-sup-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-sup-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-sup-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-inf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-inf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-inf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-inf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ts1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-numr-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-numr-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-numr-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-numr-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ts1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-sup-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-sup-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-sup-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-sup-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-inf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-inf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-inf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-inf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ts1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ts1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-dnom-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-dnom-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-dnom-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-dnom-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-inf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-inf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-inf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-inf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-ts1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-numr-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-numr-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-numr-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-numr-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-ts1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-sup-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-sup-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-sup-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-sup-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-inf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-inf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-inf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-inf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ts1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-numr-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-numr-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-numr-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-numr-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ts1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-sup-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-sup-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-sup-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-sup-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ts1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-inf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-inf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-inf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-inf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-inf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-inf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-inf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-inf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-inf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ts1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ts1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ts1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ly1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ly1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ly1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ot1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ot1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ot1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-t1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-t1--lcdfj.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-t1.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ts1--base.tfm - RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ts1.tfm - RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-Black.pfb - RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-BlackLCDFJ.pfb - RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-Bold.pfb - RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-BoldLCDFJ.pfb - RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-ExtraLight.pfb - RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-ExtraLightLCDFJ.pfb - RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-Light.pfb - RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-LightLCDFJ.pfb - RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-Regular.pfb - RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-RegularLCDFJ.pfb - RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-Semibold.pfb - RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-SemiboldLCDFJ.pfb - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-dnom-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-dnom-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-inf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-inf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-inf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-lf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-lf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-lf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-lf-ts1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-numr-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-numr-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-numr-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-osf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-osf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-osf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-osf-ts1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-sup-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-sup-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-sup-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tlf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tosf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-inf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-inf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-inf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-lf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ts1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-numr-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-numr-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-numr-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-osf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ts1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-sup-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-sup-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-sup-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-inf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-inf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-inf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ts1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ts1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-dnom-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-dnom-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-inf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-inf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-inf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-lf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-lf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-lf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-lf-ts1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-numr-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-numr-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-numr-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-osf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-osf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-osf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-osf-ts1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-sup-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-sup-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-sup-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tlf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tosf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-inf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-inf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-inf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-lf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ts1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-numr-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-numr-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-numr-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-osf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ts1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-sup-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-sup-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-sup-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ts1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-inf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-inf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-inf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ts1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ts1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ts1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ly1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ot1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-t1.vf - RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ts1.vf - RELOC/tex/latex/sourceserifpro/LY1SourceSerifPro-Dnom.fd - RELOC/tex/latex/sourceserifpro/LY1SourceSerifPro-Inf.fd - RELOC/tex/latex/sourceserifpro/LY1SourceSerifPro-LF.fd - RELOC/tex/latex/sourceserifpro/LY1SourceSerifPro-Numr.fd - RELOC/tex/latex/sourceserifpro/LY1SourceSerifPro-OsF.fd - RELOC/tex/latex/sourceserifpro/LY1SourceSerifPro-Sup.fd - RELOC/tex/latex/sourceserifpro/LY1SourceSerifPro-TLF.fd - RELOC/tex/latex/sourceserifpro/LY1SourceSerifPro-TOsF.fd - RELOC/tex/latex/sourceserifpro/OT1SourceSerifPro-Dnom.fd - RELOC/tex/latex/sourceserifpro/OT1SourceSerifPro-Inf.fd - RELOC/tex/latex/sourceserifpro/OT1SourceSerifPro-LF.fd - RELOC/tex/latex/sourceserifpro/OT1SourceSerifPro-Numr.fd - RELOC/tex/latex/sourceserifpro/OT1SourceSerifPro-OsF.fd - RELOC/tex/latex/sourceserifpro/OT1SourceSerifPro-Sup.fd - RELOC/tex/latex/sourceserifpro/OT1SourceSerifPro-TLF.fd - RELOC/tex/latex/sourceserifpro/OT1SourceSerifPro-TOsF.fd - RELOC/tex/latex/sourceserifpro/T1SourceSerifPro-Dnom.fd - RELOC/tex/latex/sourceserifpro/T1SourceSerifPro-Inf.fd - RELOC/tex/latex/sourceserifpro/T1SourceSerifPro-LF.fd - RELOC/tex/latex/sourceserifpro/T1SourceSerifPro-Numr.fd - RELOC/tex/latex/sourceserifpro/T1SourceSerifPro-OsF.fd - RELOC/tex/latex/sourceserifpro/T1SourceSerifPro-Sup.fd - RELOC/tex/latex/sourceserifpro/T1SourceSerifPro-TLF.fd - RELOC/tex/latex/sourceserifpro/T1SourceSerifPro-TOsF.fd - RELOC/tex/latex/sourceserifpro/TS1SourceSerifPro-LF.fd - RELOC/tex/latex/sourceserifpro/TS1SourceSerifPro-OsF.fd - RELOC/tex/latex/sourceserifpro/TS1SourceSerifPro-TLF.fd - RELOC/tex/latex/sourceserifpro/TS1SourceSerifPro-TOsF.fd - RELOC/tex/latex/sourceserifpro/sourceserifpro-type1-autoinst.sty - RELOC/tex/latex/sourceserifpro/sourceserifpro.sty -docfiles size=35 - RELOC/doc/latex/sourceserifpro/LICENSE.txt - RELOC/doc/latex/sourceserifpro/sourceserifpro-otf-specimen.pdf - RELOC/doc/latex/sourceserifpro/sourceserifpro-otf-specimen.tex - RELOC/doc/latex/sourceserifpro/sourceserifpro-type1-specimen.pdf - RELOC/doc/latex/sourceserifpro/sourceserifpro-type1-specimen.tex - RELOC/doc/latex/sourceserifpro/sourceserifpro.pdf - RELOC/doc/latex/sourceserifpro/sourceserifpro.tex -catalogue-ctan /fonts/sourceserifpro -catalogue-date 2015-05-13 22:04:13 +0200 -catalogue-license ofl -catalogue-version 1.1 - -name spanish-mx -category Package -revision 15878 -shortdesc Typeset Spanish as in Mexico. -relocated 1 -longdesc The bundle provides files to support typesetting of texts in -longdesc Spanish according to Mexican current practices, using babel. -longdesc The files merge earlier work on a mexican.ldf, or may be used -longdesc to define a configuration that will typeset all documents (that -longdesc request babel's spanish option) to use the Mexican language -longdesc facilities. (Note that this facility is only available with the -longdesc recent (version >=4.2b) releases of the Spanish option.) -runfiles size=3 - RELOC/tex/latex/spanish-mx/esmx.cfg - RELOC/tex/latex/spanish-mx/spanishmx.ldf - RELOC/tex/latex/spanish-mx/spanishmx.sty -docfiles size=1 - RELOC/doc/latex/spanish-mx/README -catalogue-ctan /language/spanish/babel/contrib/mexican -catalogue-date 2014-06-05 22:44:40 +0200 -catalogue-license lppl -catalogue-version 1.1a - -name sparklines -category Package -revision 35400 -shortdesc Drawing sparklines: intense, simple, wordlike graphics. -relocated 1 -longdesc Sparklines are intense, simple, wordlike graphics (so named by -longdesc Edward Tufte). In lieu of a more detailed introduction, -longdesc Professor Tufte's site has an early release of a chapter on -longdesc sparklines. A PHP implementation may be found at SourceForge. A -longdesc sparkline can be added using the sparkline environment. Also, -longdesc you can add sparkling rectangles for the median and special -longdesc sparkling dots in red or blue. The package requires pdflatex; -longdesc sparklines cannot appear in a dvi file. The sparklines package -longdesc uses pgf, and does not work with pictex. -runfiles size=2 - RELOC/tex/latex/sparklines/sparklines.sty -docfiles size=13 - RELOC/doc/latex/sparklines/README - RELOC/doc/latex/sparklines/sparklines.pdf - RELOC/doc/latex/sparklines/sparklines.tex -catalogue-ctan /graphics/sparklines -catalogue-date 2014-10-19 14:53:45 +0200 -catalogue-license lppl -catalogue-version 1.6 - -name spath3 -category Package -revision 29898 -shortdesc Manipulate "soft paths" in PGF. -relocated 1 -longdesc The spath3 library provides methods for manipulating the "soft -longdesc paths" of TikZ/PGF. Packaged with it are two TikZ libraries -longdesc that make use of the methods provided. These are libraries for -longdesc drawing calligraphic paths and for drawing knot diagrams. -runfiles size=24 - RELOC/tex/latex/spath3/spath3.sty - RELOC/tex/latex/spath3/tikzlibrarycalligraphy.code.tex - RELOC/tex/latex/spath3/tikzlibraryknots.code.tex -docfiles size=177 - RELOC/doc/latex/spath3/README.txt - RELOC/doc/latex/spath3/calligraphy_doc.pdf - RELOC/doc/latex/spath3/calligraphy_doc.tex - RELOC/doc/latex/spath3/knots_doc.pdf - RELOC/doc/latex/spath3/knots_doc.tex -srcfiles size=31 - RELOC/source/latex/spath3/spath3.dtx - RELOC/source/latex/spath3/spath3.ins -catalogue-ctan /graphics/pgf/contrib/spath3 -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1 - -name spelling -category Package -revision 30715 -shortdesc Support for spell-checking of LuaTeX documents. -relocated 1 -longdesc The package aids spell-checking of TeX documents compiled with -longdesc the LuaTeX engine. It can give visual feedback in PDF output -longdesc similar to WYSIWYG word processors. The package relies on an -longdesc external spell-checker application to check spelling of a text -longdesc file and to output a list of bad spellings. The package should -longdesc work with most spell-checkers, even dumb, TeX-unaware ones. -runfiles size=19 - RELOC/scripts/spelling/spelling-main.lua - RELOC/scripts/spelling/spelling-recurse.lua - RELOC/scripts/spelling/spelling-stage-1.lua - RELOC/scripts/spelling/spelling-stage-2.lua - RELOC/scripts/spelling/spelling-stage-3.lua - RELOC/scripts/spelling/spelling-stage-4.lua - RELOC/tex/luatex/spelling/spelling.sty -docfiles size=50 - RELOC/doc/luatex/spelling/CHANGES - RELOC/doc/luatex/spelling/LICENSE - RELOC/doc/luatex/spelling/README - RELOC/doc/luatex/spelling/spelling-doc-lst-lua.tex - RELOC/doc/luatex/spelling/spelling-doc.bad - RELOC/doc/luatex/spelling/spelling-doc.pdf - RELOC/doc/luatex/spelling/spelling-doc.tex -catalogue-ctan /macros/luatex/generic/spelling -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.41 - -name sphack -category Package -revision 20842 -shortdesc Patch LaTeX kernel spacing macros. -relocated 1 -longdesc Change the kernel internal \@bsphack/\@esphack so that it is -longdesc also invisible in vertical mode. -runfiles size=2 - RELOC/tex/latex/sphack/sphack.sty -docfiles size=61 - RELOC/doc/latex/sphack/sphack-doc.pdf - RELOC/doc/latex/sphack/sphack-doc.tex -catalogue-ctan /macros/latex/contrib/sphack -catalogue-date 2012-04-11 10:46:14 +0200 -catalogue-license other-free - -name sphdthesis -category Package -revision 34374 -shortdesc Latex template for writing PhD Thesis -relocated 1 -longdesc The package provides a LaTeX document class for writing a PhD -longdesc thesis. The author developed it while writing his PhD thesis in -longdesc School of Computing (SoC), National University of Singapore -longdesc (NUS). By default, the class adheres to the NUS Guidelines on -longdesc Format of Research Thesis Submitted For Examination. However, -longdesc the class for conformation to a different guideline should not -longdesc be difficult. -runfiles size=5 - RELOC/tex/latex/sphdthesis/SPhdThesis.cls -docfiles size=167 - RELOC/doc/latex/sphdthesis/LICENSE - RELOC/doc/latex/sphdthesis/README - RELOC/doc/latex/sphdthesis/SPhdThesis.pdf - RELOC/doc/latex/sphdthesis/SPhdThesis.tex - RELOC/doc/latex/sphdthesis/example/SPhdThesis.cls - RELOC/doc/latex/sphdthesis/example/abstract.tex - RELOC/doc/latex/sphdthesis/example/acknowledgments.tex - RELOC/doc/latex/sphdthesis/example/algorithm.tex - RELOC/doc/latex/sphdthesis/example/biblio.bib - RELOC/doc/latex/sphdthesis/example/border.pdf - RELOC/doc/latex/sphdthesis/example/chapter1.tex - RELOC/doc/latex/sphdthesis/example/figure.tex - RELOC/doc/latex/sphdthesis/example/table.tex - RELOC/doc/latex/sphdthesis/example/thesis.pdf - RELOC/doc/latex/sphdthesis/example/thesis.tex -catalogue-ctan /macros/latex/contrib/sphdthesis -catalogue-date 2014-06-27 11:53:46 +0200 -catalogue-license pd -catalogue-version 1.0 - -name spie -category Package -revision 15878 -shortdesc Support for formatting SPIE Proceedings manuscripts. -relocated 1 -longdesc A class and a BibTeX style are provided. -runfiles size=10 - RELOC/bibtex/bib/spie/report.bib - RELOC/bibtex/bst/spie/spiebib.bst - RELOC/tex/latex/spie/spie.cls -docfiles size=44 - RELOC/doc/latex/spie/README - RELOC/doc/latex/spie/article.pdf - RELOC/doc/latex/spie/article.tex - RELOC/doc/latex/spie/mcr3b.eps -catalogue-ctan /macros/latex/contrib/spie -catalogue-date 2012-04-22 23:21:05 +0200 -catalogue-license lppl -catalogue-version 3.25 - -name splines -category Package -revision 15878 -shortdesc MetaPost macros for drawing cubic spline interpolants. -relocated 1 -longdesc This is a small package of macros for creating cubic spline -longdesc interpolants in MetaPost or Metafont. Given a list of points -longdesc the macros can produce a closed or a relaxed spline joining -longdesc them. Given a list of function values y_j at x_j, the result -longdesc would define the graph of a cubic spline interpolating function -longdesc y=f(x), which is either periodic or relaxed. -runfiles size=3 - RELOC/metapost/splines/splines.mp - RELOC/metapost/splines/testsplines.mp -docfiles size=27 - RELOC/doc/metapost/splines/README - RELOC/doc/metapost/splines/splines.pdf -srcfiles size=5 - RELOC/source/metapost/splines/splines.dtx - RELOC/source/metapost/splines/splines.ins -catalogue-ctan /graphics/metapost/contrib/macros/splines -catalogue-date 2012-07-20 23:43:44 +0200 -catalogue-license lppl1.3 -catalogue-version 0.2 - -name splitbib -category Package -revision 15878 -shortdesc Split and reorder your bibliography. -relocated 1 -longdesc This package enables you to split a bibliography into several -longdesc categories and subcategories. It does not depend on BibTeX: any -longdesc bibliography may be split and reordered. -runfiles size=7 - RELOC/tex/latex/splitbib/splitbib.sty -docfiles size=42 - RELOC/doc/latex/splitbib/README - RELOC/doc/latex/splitbib/splitbib.pdf -srcfiles size=14 - RELOC/source/latex/splitbib/splitbib.dtx - RELOC/source/latex/splitbib/splitbib.ins -catalogue-ctan /macros/latex/contrib/splitbib -catalogue-date 2012-04-22 23:21:05 +0200 -catalogue-license lppl -catalogue-version 1.17 - -name splitindex -category Package -revision 29792 -shortdesc Unlimited number of indexes. -longdesc SplitIndex consists of a LaTeX package, splitidx, and a small -longdesc program, splitindex. The package may be used to produce one -longdesc index or several indexes. Without splitindex (for example, -longdesc using the index package), the number of indexes is limited by -longdesc the number of TeX's output streams. But using the program you -longdesc may use even more than 16 indexes: splitidx outputs only a -longdesc single file \jobname.idx and the program splits that file into -longdesc several raw index files and calls your favorite index processor -longdesc for each of the files. -depend splitindex.ARCH -runfiles size=10 - texmf-dist/scripts/splitindex/splitindex.pl - texmf-dist/scripts/splitindex/splitindex.tlu - texmf-dist/scripts/splitindex/splitindex_main.tlu - texmf-dist/tex/generic/splitindex/splitindex.tex - texmf-dist/tex/latex/splitindex/splitidx.sty -docfiles size=110 - texmf-dist/doc/latex/splitindex/README - texmf-dist/doc/latex/splitindex/install.txt - texmf-dist/doc/latex/splitindex/manifest.txt - texmf-dist/doc/latex/splitindex/splitidx.pdf - texmf-dist/doc/man/man1/splitindex.1 - texmf-dist/doc/man/man1/splitindex.man1.pdf -srcfiles size=41 - texmf-dist/source/latex/splitindex/README - texmf-dist/source/latex/splitindex/install.sh - texmf-dist/source/latex/splitindex/install.txt - texmf-dist/source/latex/splitindex/manifest.txt - texmf-dist/source/latex/splitindex/splitidx.dtx - texmf-dist/source/latex/splitindex/splitidx.ins - texmf-dist/source/latex/splitindex/splitindex.1 - texmf-dist/source/latex/splitindex/splitindex.c - texmf-dist/source/latex/splitindex/splitindex.java - texmf-dist/source/latex/splitindex/splitindex.pl - texmf-dist/source/latex/splitindex/splitindex.tex - texmf-dist/source/latex/splitindex/splitindex.tlu - texmf-dist/source/latex/splitindex/splitindex_main.tlu -catalogue-ctan /macros/latex/contrib/splitindex -catalogue-date 2013-04-09 11:35:57 +0200 -catalogue-license lppl -catalogue-version 1.2a - -name splitindex.i386-linux -category Package -revision 29688 -shortdesc i386-linux files of splitindex -binfiles arch=i386-linux size=1 - bin/i386-linux/splitindex - -name spotcolor -category Package -revision 15878 -shortdesc Spot colours for pdfLaTeX. -relocated 1 -longdesc This package provides procedures for using spot colours in -longdesc LaTeX documents and the generated pdf files. Predefined -longdesc templates for PANTONE and HKS colour spaces are included but -longdesc new ones can easily be defined. -runfiles size=27 - RELOC/tex/latex/spotcolor/spotcolor.sty - RELOC/tex/latex/spotcolor/spotcolorhks.tex - RELOC/tex/latex/spotcolor/spotcolorpantone.tex -docfiles size=99 - RELOC/doc/latex/spotcolor/README - RELOC/doc/latex/spotcolor/readme.pdf - RELOC/doc/latex/spotcolor/readme.tcp - RELOC/doc/latex/spotcolor/readme.tex -catalogue-ctan /macros/latex/contrib/spotcolor -catalogue-date 2012-04-22 23:21:05 +0200 -catalogue-license lppl -catalogue-version 1.2 - -name spot -category Package -revision 22408 -shortdesc Spotlight highlighting for Beamer. -relocated 1 -longdesc The package allows dramatic highlighting of words and phrases -longdesc by painting shapes around them. It is chiefly intended for use -longdesc in Beamer presentations, but it can be used in other document -longdesc classes as well. -runfiles size=2 - RELOC/tex/latex/spot/spot.sty -docfiles size=64 - RELOC/doc/latex/spot/README - RELOC/doc/latex/spot/spot.pdf -srcfiles size=9 - RELOC/source/latex/spot/spot.dtx - RELOC/source/latex/spot/spot.ins -catalogue-ctan /macros/latex/contrib/beamer-contrib/spot -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.1 - -name spreadtab -category Package -revision 35531 -shortdesc Spreadsheet features for LaTeX tabular environments. -relocated 1 -longdesc The package allows the user to construct tables in a manner -longdesc similar to a spreadsheet. The cells of a table have row and -longdesc column indices and these can be used in formulas to generate -longdesc values in other cells. -runfiles size=25 - RELOC/tex/latex/spreadtab/spreadtab.sty -docfiles size=372 - RELOC/doc/latex/spreadtab/README - RELOC/doc/latex/spreadtab/spreadtab_doc_en.pdf - RELOC/doc/latex/spreadtab/spreadtab_doc_en.tex - RELOC/doc/latex/spreadtab/spreadtab_doc_fr.pdf - RELOC/doc/latex/spreadtab/spreadtab_doc_fr.tex -catalogue-ctan /macros/latex/contrib/spreadtab -catalogue-date 2014-11-06 19:35:50 +0100 -catalogue-license lppl1.3 -catalogue-version 0.4c - -name spverbatim -category Package -revision 15878 -shortdesc Allow line breaks within \verb and verbatim output. -relocated 1 -longdesc LaTeX's \verb macro treats its argument as an unbreakable unit -longdesc of text. This can lead to poor typesetting, especially when the -longdesc argument is long. The spverbatim package provides an \spverb -longdesc macro that is analogous to \verb and an spverbatim environment -longdesc that is analogous to verbatim with the difference being that -longdesc \spverb and spverbatim allow LaTeX to break lines at space -longdesc characters. -runfiles size=1 - RELOC/tex/latex/spverbatim/spverbatim.sty -docfiles size=30 - RELOC/doc/latex/spverbatim/README - RELOC/doc/latex/spverbatim/spverbatim.pdf -srcfiles size=4 - RELOC/source/latex/spverbatim/spverbatim.dtx - RELOC/source/latex/spverbatim/spverbatim.ins -catalogue-ctan /macros/latex/contrib/spverbatim -catalogue-date 2012-07-10 14:38:32 +0200 -catalogue-license lppl -catalogue-version v1.0 - -name srbook-mem -category Package -revision 23454 -relocated 1 -runfiles size=1 - RELOC/tex/latex/srbook-mem/srbook-mem.sty -docfiles size=76 - RELOC/doc/latex/srbook-mem/README - RELOC/doc/latex/srbook-mem/SerbianBookMem.pdf - RELOC/doc/latex/srbook-mem/SerbianBookMem.tex - RELOC/doc/latex/srbook-mem/Test.pdf - RELOC/doc/latex/srbook-mem/Test.tex - RELOC/doc/latex/srbook-mem/TestLight.pdf - RELOC/doc/latex/srbook-mem/TestLight.tex - -name srcltx -category Package -revision 15878 -shortdesc Jump between DVI and TeX files. -relocated 1 -longdesc Provides a \special insertion into generated .dvi files -longdesc allowing one to jump from the .dvi file to the .tex source and -longdesc back again (given a .dvi viewer that supports this, such as Yap -longdesc or xdvi version 22.38 or later). This was originally written by -longdesc Aleksander Simonic, the author of the WinEdt shell. -runfiles size=3 - RELOC/tex/latex/srcltx/srcltx.sty - RELOC/tex/latex/srcltx/srctex.sty -docfiles size=33 - RELOC/doc/latex/srcltx/README - RELOC/doc/latex/srcltx/srcltx.pdf -srcfiles size=8 - RELOC/source/latex/srcltx/srcltx.dtx - RELOC/source/latex/srcltx/srcltx.ins -catalogue-ctan /macros/latex/contrib/srcltx -catalogue-date 2012-07-10 14:48:34 +0200 -catalogue-license pd -catalogue-version 1.6 - -name sr-vorl -category Package -revision 32440 -shortdesc Class for Springer books. -relocated 1 -longdesc The class provides a template for books to be published at -longdesc Springer Gabler, Vieweg or Springer Research. It may be used to -longdesc produce monographs in different formats and "several-authors- -longdesc books" fitting the conditions of Springer Gabler, Vieweg and -longdesc Springer Research. -runfiles size=3 - RELOC/tex/latex/sr-vorl/sr-vorl.cls -docfiles size=113 - RELOC/doc/latex/sr-vorl/README - RELOC/doc/latex/sr-vorl/backmatter_sr-vorl.tex - RELOC/doc/latex/sr-vorl/frontmatter_sr-vorl.tex - RELOC/doc/latex/sr-vorl/hauptdatei_sr-vorl.tex - RELOC/doc/latex/sr-vorl/mainmatter_sr-vorl.tex - RELOC/doc/latex/sr-vorl/sr-vorl.pdf -srcfiles size=16 - RELOC/source/latex/sr-vorl/sr-vorl.dtx - RELOC/source/latex/sr-vorl/sr-vorl.ins -catalogue-ctan /macros/latex/contrib/springer/sr-vorl -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0 - -name sseq -category Package -revision 31585 -shortdesc Typesetting spectral sequence charts. -relocated 1 -longdesc The package provides commands to draw spectral sequence -longdesc diagrams, providing facilities for clipping and arranging -longdesc multiple symbols so that they do not overlap. The package is -longdesc built using pgf, and shares that systems large demands for TeX -longdesc system memory. Its geometric commands are based on a turtle -longdesc graphics model, and control structures such as loops and -longdesc conditionals are available. -runfiles size=10 - RELOC/tex/latex/sseq/sseq.sty -docfiles size=53 - RELOC/doc/latex/sseq/sseq.pdf -srcfiles size=17 - RELOC/source/latex/sseq/sseq.dtx - RELOC/source/latex/sseq/sseq.ins -catalogue-ctan /macros/latex/contrib/sseq -catalogue-date 2013-09-06 14:59:23 +0200 -catalogue-license lppl -catalogue-version 2.01 - -name sslides -category Package -revision 32293 -shortdesc Slides with headers and footers. -relocated 1 -longdesc The class provides a variant of the LaTeX standard slides -longdesc class, in which the user may add headers and footers to the -longdesc slide. -runfiles size=1 - RELOC/tex/latex/sslides/sslides.cls -docfiles size=12 - RELOC/doc/latex/sslides/land-sample-slide.pdf - RELOC/doc/latex/sslides/land-sample-slide.tex - RELOC/doc/latex/sslides/port-sample-slide.pdf - RELOC/doc/latex/sslides/port-sample-slide.tex -catalogue-ctan /macros/latex/contrib/sslides -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 - -name stackengine -category Package -revision 32593 -shortdesc Highly customised stacking of objects, insets, baseline changes, etc. -relocated 1 -longdesc The package provides a versatile way to stack objects -longdesc vertically in a variety of customizable ways. A number of -longdesc useful macros are provided, all of which make use of the -longdesc stackengine core. -runfiles size=4 - RELOC/tex/latex/stackengine/stackengine.sty -docfiles size=102 - RELOC/doc/latex/stackengine/README - RELOC/doc/latex/stackengine/stackengine.pdf - RELOC/doc/latex/stackengine/stackengine.tex -catalogue-ctan /macros/latex/contrib/stackengine -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 3.24 - -name stack -category Package -revision 15878 -shortdesc Tools to define and use stacks. -relocated 1 -longdesc The package provides a small set of commands to implement -longdesc stacks independently of TeX's own stack. As an example of how -longdesc the stacks might be used, the documentation offers a small -longdesc "relinput" package that implements the backbone of the import -longdesc package. -runfiles size=2 - RELOC/tex/latex/stack/relinput.sty - RELOC/tex/latex/stack/stack.sty -srcfiles size=4 - RELOC/source/latex/stack/stack.dtx - RELOC/source/latex/stack/stack.ins -catalogue-ctan /macros/latex/contrib/stack -catalogue-date 2012-07-10 15:21:46 +0200 -catalogue-license lppl -catalogue-version 1.00 - -name stage -category Package -revision 15878 -shortdesc A LaTeX class for stage plays -relocated 1 -longdesc Stage.cls is a LaTeX class for creating plays of any length in -longdesc a standard manuscript format for production and submission. -runfiles size=3 - RELOC/tex/latex/stage/stage.cls -docfiles size=26 - RELOC/doc/latex/stage/README - RELOC/doc/latex/stage/stage-documentation.pdf -catalogue-ctan /macros/latex/contrib/stage -catalogue-date 2012-07-10 15:21:46 +0200 -catalogue-license lppl1.3 - -name standalone -category Package -revision 37875 -shortdesc Compile TeX pictures stand-alone or as part of a document. -relocated 1 -longdesc A class and package is provided which allows TeX pictures or -longdesc other TeX code to be compiled standalone or as part of a main -longdesc document. Special support for pictures with beamer overlays is -longdesc also provided. The package is used in the main document and -longdesc skips extra preambles in sub-files. The class may be used to -longdesc simplify the preamble in sub-files. By default the preview -longdesc package is used to display the typeset code without margins. -longdesc The behaviour in standalone mode may adjusted using a -longdesc configuration file standalone.cfg to redefine the standalone -longdesc environment. -runfiles size=17 - RELOC/tex/latex/standalone/standalone.cfg - RELOC/tex/latex/standalone/standalone.cls - RELOC/tex/latex/standalone/standalone.sty - RELOC/tex/plain/standalone/standalone.tex -docfiles size=67 - RELOC/doc/latex/standalone/README - RELOC/doc/latex/standalone/standalone.pdf -srcfiles size=46 - RELOC/source/latex/standalone/standalone.dtx - RELOC/source/latex/standalone/standalone.ins -catalogue-also combine docmute includex newclude -catalogue-ctan /macros/latex/contrib/standalone -catalogue-date 2015-07-16 05:19:24 +0200 -catalogue-license lppl1.3 -catalogue-topics subdocs class -catalogue-version 1.2 - -name starfont -category Package -revision 19982 -shortdesc The StarFont Sans astrological font. -relocated 1 -longdesc The package contains StarFontSans and StarFontSerif, two public- -longdesc domain astrological fonts designed by Anthony I.P. Owen, and -longdesc the appropriate macros to use them with TeX and LaTeX. The -longdesc fonts are supplied both in the original TrueType Format and in -longdesc Adobe Type 1 format. -execute addMap starfont.map -runfiles size=57 - RELOC/fonts/afm/public/starfont/starfont.afm - RELOC/fonts/afm/public/starfont/strfnser.afm - RELOC/fonts/map/dvips/starfont/starfont.map - RELOC/fonts/tfm/public/starfont/fstr8x.tfm - RELOC/fonts/tfm/public/starfont/fsts8x.tfm - RELOC/fonts/type1/public/starfont/starfont.pfb - RELOC/fonts/type1/public/starfont/strfnser.pfb - RELOC/tex/latex/starfont/starfont.sty -docfiles size=138 - RELOC/doc/fonts/starfont/COPYING - RELOC/doc/fonts/starfont/Makefile - RELOC/doc/fonts/starfont/README - RELOC/doc/fonts/starfont/STRFNSAN.TTF - RELOC/doc/fonts/starfont/STRFNSER.TTF - RELOC/doc/fonts/starfont/starfont.pdf - RELOC/doc/fonts/starfont/starfont.tex - RELOC/doc/fonts/starfont/table.pdf -catalogue-ctan /fonts/ps-type1/starfont -catalogue-date 2014-04-23 18:48:25 +0200 -catalogue-license pd -catalogue-version 1.2 - -name startex -category Package -revision 35718 -shortdesc An XML-inspired format for student use. -relocated 1 -longdesc A TeX format designed to help students write short reports and -longdesc essays. It provides the user with a suitable set of commands -longdesc for such a task. It is also more robust than plain TeX and -longdesc LaTeX. -runfiles size=17 - RELOC/makeindex/startex/stxglo.ist - RELOC/makeindex/startex/stxind.ist - RELOC/tex/startex/a4-article.stx - RELOC/tex/startex/article.stx - RELOC/tex/startex/ifi-article.stx - RELOC/tex/startex/ifi-artikkel.stx - RELOC/tex/startex/startex.lan - RELOC/tex/startex/startex.tex -docfiles size=186 - RELOC/doc/otherformats/startex/INSTALL - RELOC/doc/otherformats/startex/README - RELOC/doc/otherformats/startex/README.TEXLIVE - RELOC/doc/otherformats/startex/guide.pdf - RELOC/doc/otherformats/startex/ideas.pdf - RELOC/doc/otherformats/startex/startex.bib - RELOC/doc/otherformats/startex/startex.pdf -srcfiles size=26 - RELOC/source/startex/startex/startex.dtx - RELOC/source/startex/startex/startex.ins -catalogue-ctan /macros/startex -catalogue-date 2012-06-04 22:31:14 +0200 -catalogue-license pd -catalogue-version 1.04 - -name statex2 -category Package -revision 23961 -shortdesc Statistics style. -relocated 1 -longdesc The package defines many macros for items of significance in -longdesc statistical presentations. It represents a syntax-incompatible -longdesc upgrade of statex. -runfiles size=5 - RELOC/tex/latex/statex2/statex2.sty -docfiles size=45 - RELOC/doc/latex/statex2/statex2-example.pdf - RELOC/doc/latex/statex2/statex2-example.tex -catalogue-ctan /macros/latex/contrib/statex2 -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 2.1 - -name statex -category Package -revision 20306 -shortdesc Statistics style. -relocated 1 -longdesc A package defining many macros for items of significance in -longdesc statistical presentations. An updated, but incompatible, -longdesc version of the package is available: statex2. -runfiles size=4 - RELOC/tex/latex/statex/statex.sty -docfiles size=45 - RELOC/doc/latex/statex/statex-example.pdf - RELOC/doc/latex/statex/statex-example.tex -catalogue-ctan /macros/latex/contrib/statex -catalogue-date 2012-07-10 15:21:46 +0200 -catalogue-license lppl -catalogue-version 1.6 - -name statistik -category Package -revision 20334 -shortdesc Store statistics of a document. -relocated 1 -longdesc The package counts the numbers of pages per chapter, and stores -longdesc the results in a separate file; the format of the file is -longdesc selectable. -runfiles size=2 - RELOC/tex/latex/statistik/statistik.sty -docfiles size=28 - RELOC/doc/latex/statistik/sta_cvs.tex - RELOC/doc/latex/statistik/sta_mytable.tex - RELOC/doc/latex/statistik/sta_tab.tex - RELOC/doc/latex/statistik/sta_textable.tex - RELOC/doc/latex/statistik/sta_xml.tex - RELOC/doc/latex/statistik/statistik.pdf -srcfiles size=5 - RELOC/source/latex/statistik/statistik.dtx - RELOC/source/latex/statistik/statistik.ins -catalogue-ctan /macros/latex/contrib/statistik -catalogue-date 2012-02-20 12:52:09 +0100 -catalogue-license gpl -catalogue-version 0.03 - -name staves -category Package -revision 15878 -shortdesc Typeset Icelandic staves and runic letters. -relocated 1 -longdesc This package contains all the necessary tools to typeset the -longdesc "magical" Icelandic staves plus the runic letters used in -longdesc Iceland. Included are a font in Adobe Type 1 format and LaTeX -longdesc support. -execute addMap icelandic.map -runfiles size=34 - RELOC/fonts/map/dvips/staves/icelandic.map - RELOC/fonts/tfm/public/staves/icelandic.tfm - RELOC/fonts/type1/public/staves/icelandic.pfb - RELOC/tex/latex/staves/staves.sty -docfiles size=74 - RELOC/doc/fonts/staves/README - RELOC/doc/fonts/staves/staves.pdf - RELOC/doc/fonts/staves/symbols.pdf -srcfiles size=4 - RELOC/source/latex/staves/staves.dtx - RELOC/source/latex/staves/staves.ins -catalogue-ctan /language/staves -catalogue-date 2014-04-23 18:48:25 +0200 -catalogue-license lppl - -name stdclsdv -category Package -revision 15878 -shortdesc Provide sectioning information for package writers. -relocated 1 -longdesc The stdclsdv package is designed for package writers who need -longdesc to know what sectioning divsions are provided by the document's -longdesc class. It also provides a version of \CheckCommand that sets a -longdesc flag rather than printing a warning. -runfiles size=1 - RELOC/tex/latex/stdclsdv/stdclsdv.sty -docfiles size=38 - RELOC/doc/latex/stdclsdv/README - RELOC/doc/latex/stdclsdv/stdclsdv.pdf -srcfiles size=5 - RELOC/source/latex/stdclsdv/stdclsdv.dtx - RELOC/source/latex/stdclsdv/stdclsdv.ins -catalogue-ctan /macros/latex/contrib/stdclsdv -catalogue-date 2012-07-10 15:21:46 +0200 -catalogue-license lppl -catalogue-version 1.1a - -name stdpage -category Package -revision 15878 -shortdesc Standard pages with n lines of at most m characters each. -relocated 1 -longdesc For translations, proofreading, journal contributions etc. -longdesc standard pages are used. Those standard pages consist of a -longdesc fixed number of lines and characters per line. This package -longdesc produces pages with n lines of at most m characters each. For -longdesc instance the German "Normseite": 60 lines of 30 characters -longdesc each. -runfiles size=2 - RELOC/tex/latex/stdpage/stdpage.sty -docfiles size=31 - RELOC/doc/latex/stdpage/README - RELOC/doc/latex/stdpage/stdpage-test.tex - RELOC/doc/latex/stdpage/stdpage.pdf -srcfiles size=6 - RELOC/source/latex/stdpage/stdpage.dtx - RELOC/source/latex/stdpage/stdpage.ins -catalogue-ctan /macros/latex/contrib/stdpage -catalogue-date 2012-07-10 15:51:55 +0200 -catalogue-license lppl1.2 -catalogue-version 0.6 - -name steinmetz -category Package -revision 15878 -shortdesc Print Steinmetz notation. -relocated 1 -longdesc The steinmetz package provides a command for typesetting -longdesc complex numbers in the Steinmetz notation used in -longdesc electrotechnics as: ; The package makes use of pict2e. -runfiles size=1 - RELOC/tex/latex/steinmetz/steinmetz.sty -docfiles size=31 - RELOC/doc/latex/steinmetz/README - RELOC/doc/latex/steinmetz/steinmetz-test.tex - RELOC/doc/latex/steinmetz/steinmetz.pdf -srcfiles size=4 - RELOC/source/latex/steinmetz/steinmetz.dtx - RELOC/source/latex/steinmetz/steinmetz.ins -catalogue-ctan /macros/latex/contrib/steinmetz -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 - -name stellenbosch -category Package -revision 36696 -shortdesc Stellenbosch thesis bundle. -relocated 1 -longdesc The usthesis class/style files are provided to typeset reports, -longdesc theses and dissertations that conform to the requirements of -longdesc the Engineering Faculty of the University of Stellenbosch. The -longdesc class file usthesis.cls is based on the standard LaTeX book -longdesc class, while usthesis.sty is a style file to be loaded on top -longdesc of the very powerful memoir class. Both options give identical -longdesc output, but the benefit of the using memoir is that it has many -longdesc additional command and environments for formatting and -longdesc processing of a document. Usthesis is primarily concerned with -longdesc the formatting of the front matter such as the title page, -longdesc abstract, etc. and a decent page layout on A4 paper. It also -longdesc works together with the babel package to provide language -longdesc options to typeset documents in Afrikaans or in English. -longdesc Additional packages are provided for bibliographic matter, note -longdesc title pages, lists of symbols, as well as various graphic files -longdesc for logos. -runfiles size=384 - RELOC/bibtex/bst/stellenbosch/usmeg-a.bst - RELOC/bibtex/bst/stellenbosch/usmeg-n.bst - RELOC/bibtex/bst/stellenbosch/ussagus.bst - RELOC/tex/latex/stellenbosch/logos/USEngLogo-BW-top.eps - RELOC/tex/latex/stellenbosch/logos/USEngLogo-BW-top.pdf - RELOC/tex/latex/stellenbosch/logos/USEngLogo-BW.eps - RELOC/tex/latex/stellenbosch/logos/USEngLogo-BW.pdf - RELOC/tex/latex/stellenbosch/logos/USEngLogo-top.eps - RELOC/tex/latex/stellenbosch/logos/USEngLogo-top.pdf - RELOC/tex/latex/stellenbosch/logos/USEngLogo.eps - RELOC/tex/latex/stellenbosch/logos/USEngLogo.pdf - RELOC/tex/latex/stellenbosch/logos/UScrest-BW.eps - RELOC/tex/latex/stellenbosch/logos/UScrest-BW.jpg - RELOC/tex/latex/stellenbosch/logos/UScrest-WM.eps - RELOC/tex/latex/stellenbosch/logos/UScrest-WM.jpg - RELOC/tex/latex/stellenbosch/logos/UScrest-stack.eps - RELOC/tex/latex/stellenbosch/logos/UScrest-stack.jpg - RELOC/tex/latex/stellenbosch/logos/UScrest-top.eps - RELOC/tex/latex/stellenbosch/logos/UScrest-top.jpg - RELOC/tex/latex/stellenbosch/logos/UScrest.eps - RELOC/tex/latex/stellenbosch/logos/UScrest.jpg - RELOC/tex/latex/stellenbosch/logos/USleaf-BW.eps - RELOC/tex/latex/stellenbosch/logos/USleaf-BW.pdf - RELOC/tex/latex/stellenbosch/logos/USleaf-gold.eps - RELOC/tex/latex/stellenbosch/logos/USleaf-gold.pdf - RELOC/tex/latex/stellenbosch/logos/USleaf-grey.eps - RELOC/tex/latex/stellenbosch/logos/USleaf-grey.pdf - RELOC/tex/latex/stellenbosch/logos/USleaf-maroon.eps - RELOC/tex/latex/stellenbosch/logos/USleaf-maroon.pdf - RELOC/tex/latex/stellenbosch/logos/USlogo-BW-left.eps - RELOC/tex/latex/stellenbosch/logos/USlogo-BW-left.pdf - RELOC/tex/latex/stellenbosch/logos/USlogo-BW-stack.eps - RELOC/tex/latex/stellenbosch/logos/USlogo-BW-stack.pdf - RELOC/tex/latex/stellenbosch/logos/USlogo-BW-top.eps - RELOC/tex/latex/stellenbosch/logos/USlogo-BW-top.pdf - RELOC/tex/latex/stellenbosch/logos/USlogo-BW.eps - RELOC/tex/latex/stellenbosch/logos/USlogo-BW.pdf - RELOC/tex/latex/stellenbosch/logos/USlogo-left.eps - RELOC/tex/latex/stellenbosch/logos/USlogo-left.pdf - RELOC/tex/latex/stellenbosch/logos/USlogo-stack.eps - RELOC/tex/latex/stellenbosch/logos/USlogo-stack.pdf - RELOC/tex/latex/stellenbosch/logos/USlogo-top.eps - RELOC/tex/latex/stellenbosch/logos/USlogo-top.pdf - RELOC/tex/latex/stellenbosch/logos/USlogo.eps - RELOC/tex/latex/stellenbosch/logos/USlogo.pdf - RELOC/tex/latex/stellenbosch/usbib.afr - RELOC/tex/latex/stellenbosch/usbib.eng - RELOC/tex/latex/stellenbosch/usbib.sty - RELOC/tex/latex/stellenbosch/usnomencl.sty - RELOC/tex/latex/stellenbosch/ussummary.sty - RELOC/tex/latex/stellenbosch/usthesis.afr - RELOC/tex/latex/stellenbosch/usthesis.cls - RELOC/tex/latex/stellenbosch/usthesis.eng - RELOC/tex/latex/stellenbosch/usthesis.sty - RELOC/tex/latex/stellenbosch/ustitle.sty -docfiles size=835 - RELOC/doc/latex/stellenbosch/CHANGELOG - RELOC/doc/latex/stellenbosch/README - RELOC/doc/latex/stellenbosch/USbib-1.0.pdf - RELOC/doc/latex/stellenbosch/USlogos-4.0.pdf - RELOC/doc/latex/stellenbosch/USnomencl-1.1.pdf - RELOC/doc/latex/stellenbosch/USsummary-1.0a.pdf - RELOC/doc/latex/stellenbosch/USthesis-5.0.pdf - RELOC/doc/latex/stellenbosch/UStitle-1.0.pdf - RELOC/doc/latex/stellenbosch/templates/masters-sample.zip - RELOC/doc/latex/stellenbosch/templates/report-sample.zip -srcfiles size=108 - RELOC/source/latex/stellenbosch/USbib-1.0-scr.zip - RELOC/source/latex/stellenbosch/USlogos-4.0-src.zip - RELOC/source/latex/stellenbosch/USnomencl-1.1-src.zip - RELOC/source/latex/stellenbosch/USsummary-1.0a-src.zip - RELOC/source/latex/stellenbosch/USthesis-5.0-src.zip - RELOC/source/latex/stellenbosch/UStitle-1.0-src.zip -catalogue-ctan /macros/latex/contrib/stellenbosch -catalogue-date 2015-04-01 17:17:44 +0200 -catalogue-license lppl -catalogue-version 11a - -name stex -category Package -revision 29803 -shortdesc An Infrastructure for Semantic Preloading of LaTeX Documents. -relocated 1 -longdesc The sTeX package collection is a version of TeX/LaTeX that -longdesc allows to markup TeX/LaTeX documents semantically without -longdesc leaving the document format, essentially turning it into a -longdesc document format for mathematical knowledge management (MKM). -runfiles size=110 - RELOC/tex/latex/stex/cmath/cmath.sty - RELOC/tex/latex/stex/cmath/cmath.sty.ltxml - RELOC/tex/latex/stex/cmathml/cmathml.sty - RELOC/tex/latex/stex/cmathml/cmathml.sty.ltxml - RELOC/tex/latex/stex/cmathml/cmathmlx.sty - RELOC/tex/latex/stex/cmathml/cmathmlx.sty.ltxml - RELOC/tex/latex/stex/cnx/cnx.cls - RELOC/tex/latex/stex/cnx/cnx.cls.ltxml - RELOC/tex/latex/stex/ctansvn.sty - RELOC/tex/latex/stex/dcm/dcm.sty - RELOC/tex/latex/stex/dcm/dcm.sty.ltxml - RELOC/tex/latex/stex/hwexam/hwexam.cls - RELOC/tex/latex/stex/hwexam/hwexam.cls.ltxml - RELOC/tex/latex/stex/hwexam/hwexam.sty - RELOC/tex/latex/stex/hwexam/hwexam.sty.ltxml - RELOC/tex/latex/stex/metakeys/metakeys.sty - RELOC/tex/latex/stex/metakeys/metakeys.sty.ltxml - RELOC/tex/latex/stex/mikoslides/beamerthemeJacobs.sty - RELOC/tex/latex/stex/mikoslides/cc-by-sa.png - RELOC/tex/latex/stex/mikoslides/cc_somerights.png - RELOC/tex/latex/stex/mikoslides/dangerous-bend.png - RELOC/tex/latex/stex/mikoslides/jacobs-logo.png - RELOC/tex/latex/stex/mikoslides/mikoaffiliation.sty - RELOC/tex/latex/stex/mikoslides/mikoaffiliation.sty.ltxml - RELOC/tex/latex/stex/mikoslides/mikoslides.cls - RELOC/tex/latex/stex/mikoslides/mikoslides.cls.ltxml - RELOC/tex/latex/stex/mikoslides/shading-l2r.png - RELOC/tex/latex/stex/modules/modules.sty - RELOC/tex/latex/stex/modules/modules.sty.ltxml - RELOC/tex/latex/stex/omdoc/omdoc.cls - RELOC/tex/latex/stex/omdoc/omdoc.cls.ltxml - RELOC/tex/latex/stex/omdoc/omdoc.sty - RELOC/tex/latex/stex/omdoc/omdoc.sty.ltxml - RELOC/tex/latex/stex/omtext/omtext.sty - RELOC/tex/latex/stex/omtext/omtext.sty.ltxml - RELOC/tex/latex/stex/presentation/presentation.sty - RELOC/tex/latex/stex/presentation/presentation.sty.ltxml - RELOC/tex/latex/stex/problem/problem.sty - RELOC/tex/latex/stex/problem/problem.sty.ltxml - RELOC/tex/latex/stex/rdfmeta/rdfmeta.sty - RELOC/tex/latex/stex/rdfmeta/rdfmeta.sty.ltxml - RELOC/tex/latex/stex/reqdoc/reqdoc.sty - RELOC/tex/latex/stex/reqdoc/reqdoc.sty.ltxml - RELOC/tex/latex/stex/sproof/sproof.sty - RELOC/tex/latex/stex/sproof/sproof.sty.ltxml - RELOC/tex/latex/stex/sref/sref.sty - RELOC/tex/latex/stex/sref/sref.sty.ltxml - RELOC/tex/latex/stex/statements/statements.sty - RELOC/tex/latex/stex/statements/statements.sty.ltxml - RELOC/tex/latex/stex/stex-logo.sty - RELOC/tex/latex/stex/stex-logo.sty.ltxml - RELOC/tex/latex/stex/stex.sty - RELOC/tex/latex/stex/stex.sty.ltxml - RELOC/tex/latex/stex/stex.tex - RELOC/tex/latex/stex/workaddress/workaddress.sty - RELOC/tex/latex/stex/workaddress/workaddress.sty.ltxml -docfiles size=1802 - RELOC/doc/latex/stex/README - RELOC/doc/latex/stex/cmath/README - RELOC/doc/latex/stex/cmath/cmath.pdf - RELOC/doc/latex/stex/cmathml/README - RELOC/doc/latex/stex/cmathml/cmathml.pdf - RELOC/doc/latex/stex/cnx/README - RELOC/doc/latex/stex/cnx/cnx.pdf - RELOC/doc/latex/stex/dcm/README - RELOC/doc/latex/stex/dcm/dcm.pdf - RELOC/doc/latex/stex/example/Makefile - RELOC/doc/latex/stex/example/README - RELOC/doc/latex/stex/example/background/Makefile - RELOC/doc/latex/stex/example/background/all.omdoc - RELOC/doc/latex/stex/example/background/all.tex - RELOC/doc/latex/stex/example/background/functions.omdoc - RELOC/doc/latex/stex/example/background/functions.sms - RELOC/doc/latex/stex/example/background/functions.tex - RELOC/doc/latex/stex/example/background/post.tex - RELOC/doc/latex/stex/example/background/pre.tex - RELOC/doc/latex/stex/example/background/reals.omdoc - RELOC/doc/latex/stex/example/background/reals.sms - RELOC/doc/latex/stex/example/background/reals.tex - RELOC/doc/latex/stex/example/paper/Makefile - RELOC/doc/latex/stex/example/paper/continuous.omdoc - RELOC/doc/latex/stex/example/paper/continuous.sms - RELOC/doc/latex/stex/example/paper/continuous.tex - RELOC/doc/latex/stex/example/paper/differentiable.omdoc - RELOC/doc/latex/stex/example/paper/differentiable.sms - RELOC/doc/latex/stex/example/paper/differentiable.tex - RELOC/doc/latex/stex/example/paper/intro.omdoc - RELOC/doc/latex/stex/example/paper/intro.sms - RELOC/doc/latex/stex/example/paper/intro.tex - RELOC/doc/latex/stex/example/paper/paper.omdoc - RELOC/doc/latex/stex/example/paper/paper.pdf - RELOC/doc/latex/stex/example/paper/paper.tex - RELOC/doc/latex/stex/example/test/Makefile - RELOC/doc/latex/stex/hwexam/README - RELOC/doc/latex/stex/hwexam/hwexam.pdf - RELOC/doc/latex/stex/metakeys/README - RELOC/doc/latex/stex/metakeys/metakeys.pdf - RELOC/doc/latex/stex/mikoslides/README - RELOC/doc/latex/stex/mikoslides/mikoslides.pdf - RELOC/doc/latex/stex/modules/README - RELOC/doc/latex/stex/modules/modules.pdf - RELOC/doc/latex/stex/omdoc/README - RELOC/doc/latex/stex/omdoc/omdoc.pdf - RELOC/doc/latex/stex/omtext/README - RELOC/doc/latex/stex/omtext/omtext.pdf - RELOC/doc/latex/stex/presentation/README - RELOC/doc/latex/stex/presentation/presentation.pdf - RELOC/doc/latex/stex/problem/README - RELOC/doc/latex/stex/problem/problem.pdf - RELOC/doc/latex/stex/rdfmeta/README - RELOC/doc/latex/stex/rdfmeta/certification.pdf - RELOC/doc/latex/stex/rdfmeta/certification.tex - RELOC/doc/latex/stex/rdfmeta/rdfmeta.pdf - RELOC/doc/latex/stex/reqdoc/README - RELOC/doc/latex/stex/reqdoc/reqdoc.pdf - RELOC/doc/latex/stex/reqdoc/requirements.pdf - RELOC/doc/latex/stex/reqdoc/requirements.tex - RELOC/doc/latex/stex/sproof/README - RELOC/doc/latex/stex/sproof/sproof.pdf - RELOC/doc/latex/stex/sref/README - RELOC/doc/latex/stex/sref/book.pdf - RELOC/doc/latex/stex/sref/book.tex - RELOC/doc/latex/stex/sref/idc.pdf - RELOC/doc/latex/stex/sref/idc.tex - RELOC/doc/latex/stex/sref/idcmain.tex - RELOC/doc/latex/stex/sref/scr.pdf - RELOC/doc/latex/stex/sref/scr.tex - RELOC/doc/latex/stex/sref/scrmain.tex - RELOC/doc/latex/stex/sref/sref.pdf - RELOC/doc/latex/stex/statements/README - RELOC/doc/latex/stex/statements/statements.pdf - RELOC/doc/latex/stex/stex.pdf - RELOC/doc/latex/stex/workaddress/README - RELOC/doc/latex/stex/workaddress/workaddress.pdf -srcfiles size=910 - RELOC/source/latex/stex/bin/Makefile - RELOC/source/latex/stex/bin/Modparse.pm - RELOC/source/latex/stex/bin/README - RELOC/source/latex/stex/bin/TexId.pm - RELOC/source/latex/stex/bin/allgen - RELOC/source/latex/stex/bin/bms - RELOC/source/latex/stex/bin/checksum - RELOC/source/latex/stex/bin/convert-paths - RELOC/source/latex/stex/bin/filedate - RELOC/source/latex/stex/bin/gen-symdef-table.pl - RELOC/source/latex/stex/bin/grep-rerun - RELOC/source/latex/stex/bin/idcheck - RELOC/source/latex/stex/bin/msplit - RELOC/source/latex/stex/bin/old/Makefile - RELOC/source/latex/stex/bin/old/defcon.l - RELOC/source/latex/stex/bin/old/idcheck.l - RELOC/source/latex/stex/bin/old/modstr.l - RELOC/source/latex/stex/bin/old/symdef - RELOC/source/latex/stex/bin/rf - RELOC/source/latex/stex/bin/rng2dot/ModelRNC.pm - RELOC/source/latex/stex/bin/rng2dot/rng2dot - RELOC/source/latex/stex/bin/sgraph - RELOC/source/latex/stex/bin/sms - RELOC/source/latex/stex/bin/stexml - RELOC/source/latex/stex/bin/stexmlmod - RELOC/source/latex/stex/bin/termin - RELOC/source/latex/stex/cmath/cmath.dtx - RELOC/source/latex/stex/cmath/cmath.ins - RELOC/source/latex/stex/cmathml/cmathml.dtx - RELOC/source/latex/stex/cmathml/cmathml.ins - RELOC/source/latex/stex/cnx/cnx.dtx - RELOC/source/latex/stex/cnx/cnx.ins - RELOC/source/latex/stex/dcm/dcm.dtx - RELOC/source/latex/stex/dcm/dcm.ins - RELOC/source/latex/stex/hwexam/hwexam.dtx - RELOC/source/latex/stex/hwexam/hwexam.ins - RELOC/source/latex/stex/make/Makefile - RELOC/source/latex/stex/make/Makefile.base.in - RELOC/source/latex/stex/make/Makefile.base.vars - RELOC/source/latex/stex/make/Makefile.in - RELOC/source/latex/stex/make/Makefile.latex.in - RELOC/source/latex/stex/make/Makefile.latex.vars - RELOC/source/latex/stex/make/Makefile.latexml.in - RELOC/source/latex/stex/make/Makefile.latexml.vars - RELOC/source/latex/stex/make/Makefile.subdirs - RELOC/source/latex/stex/make/Makefile.vars - RELOC/source/latex/stex/make/README - RELOC/source/latex/stex/metakeys/metakeys.dtx - RELOC/source/latex/stex/metakeys/metakeys.ins - RELOC/source/latex/stex/mikoslides/mikoslides.dtx - RELOC/source/latex/stex/mikoslides/mikoslides.ins - RELOC/source/latex/stex/modules/modules.dtx - RELOC/source/latex/stex/modules/modules.ins - RELOC/source/latex/stex/omdoc/omdoc.dtx - RELOC/source/latex/stex/omdoc/omdoc.ins - RELOC/source/latex/stex/omtext/omtext.dtx - RELOC/source/latex/stex/omtext/omtext.ins - RELOC/source/latex/stex/presentation/presentation.dtx - RELOC/source/latex/stex/presentation/presentation.ins - RELOC/source/latex/stex/problem/problem.dtx - RELOC/source/latex/stex/problem/problem.ins - RELOC/source/latex/stex/rdfmeta/rdfmeta.dtx - RELOC/source/latex/stex/rdfmeta/rdfmeta.ins - RELOC/source/latex/stex/reqdoc/reqdoc.dtx - RELOC/source/latex/stex/reqdoc/reqdoc.ins - RELOC/source/latex/stex/schema/Makefile - RELOC/source/latex/stex/schema/rnc/LaTeXML/LaTeXML-bib.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/LaTeXML-bib.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/LaTeXML-block.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/LaTeXML-block.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/LaTeXML-common.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/LaTeXML-common.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/LaTeXML-inline.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/LaTeXML-inline.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/LaTeXML-math.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/LaTeXML-math.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/LaTeXML-para.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/LaTeXML-para.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/LaTeXML-picture.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/LaTeXML-picture.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/LaTeXML-structure.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/LaTeXML-structure.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/LaTeXML-tabular.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/LaTeXML-tabular.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/LaTeXML.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/LaTeXML.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/TAGS - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-animation.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-animation.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-animevents-attrib.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-animevents-attrib.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-basic-clip.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-basic-clip.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-basic-filter.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-basic-filter.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-basic-font.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-basic-font.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-basic-graphics-attrib.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-basic-graphics-attrib.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-basic-structure.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-basic-structure.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-basic-text.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-basic-text.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-clip.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-clip.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-conditional.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-conditional.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-container-attrib.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-container-attrib.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-core-attrib.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-core-attrib.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-cursor.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-cursor.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-datatypes.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-datatypes.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-docevents-attrib.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-docevents-attrib.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-extensibility.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-extensibility.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-extresources-attrib.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-extresources-attrib.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-filter.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-filter.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-font.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-font.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-gradient.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-gradient.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-graphevents-attrib.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-graphevents-attrib.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-graphics-attrib.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-graphics-attrib.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-hyperlink.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-hyperlink.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-image.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-image.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-marker.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-marker.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-mask.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-mask.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-opacity-attrib.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-opacity-attrib.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-paint-attrib.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-paint-attrib.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-pattern.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-pattern.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-profile.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-profile.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-qname.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-script.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-script.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-shape.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-shape.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-structure.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-structure.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-style.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-style.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-text.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-text.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-view.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-view.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-viewport-attrib.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-viewport-attrib.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-xlink-attrib.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg-xlink-attrib.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg11-basic.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg11-tiny.rng - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg11.rnc - RELOC/source/latex/stex/schema/rnc/LaTeXML/svg11.rng - RELOC/source/latex/stex/schema/rnc/Makefile - RELOC/source/latex/stex/schema/rnc/metadata.rnc - RELOC/source/latex/stex/schema/rnc/omdoc+ltxml.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/MARCRelators.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/Makefile - RELOC/source/latex/stex/schema/rnc/omdoc/README - RELOC/source/latex/stex/schema/rnc/omdoc/arith1.omdoc - RELOC/source/latex/stex/schema/rnc/omdoc/creativecommons.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/dublincore.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/mathml3-common.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/mathml3-content.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/mathml3-presentation.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/mathml3-strict-content.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/mathml3-strict.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/mathml3.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/mocksoap.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/omcd2.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/omcdgroup2.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/omcdsig2.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/omdoc-common.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/omdoc.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/omdocadt.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/omdoccc.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/omdoccth.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/omdocdc.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/omdocdg.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/omdocdoc.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/omdocext.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/omdocmeta.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/omdocmobj.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/omdocmtxt.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/omdocpf.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/omdocphys.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/omdocpres.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/omdocquiz.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/omdocrt.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/omdocst.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/openmath2.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/pxhtml.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/schemas.xml - RELOC/source/latex/stex/schema/rnc/omdoc/todo - RELOC/source/latex/stex/schema/rnc/omdoc/todo.txt - RELOC/source/latex/stex/schema/rnc/omdoc/xhtml-applet.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/xhtml-attribs.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/xhtml-basic-table.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/xhtml-bdo.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/xhtml-datatypes.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/xhtml-hypertext.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/xhtml-image.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/xhtml-inlstyle.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/xhtml-list.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/xhtml-object.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/xhtml-param.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/xhtml-table.rnc - RELOC/source/latex/stex/schema/rnc/omdoc/xhtml-text.rnc - RELOC/source/latex/stex/schema/rnc/owl.rnc - RELOC/source/latex/stex/schema/rnc/owl2+ltxml.rnc - RELOC/source/latex/stex/schema/rnc/owl2-xml.rnc - RELOC/source/latex/stex/schema/rnc/owl2xml.rnc - RELOC/source/latex/stex/schema/rnc/schemas.xml - RELOC/source/latex/stex/schema/rnc/statements.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-animation.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-animevents-attrib.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-basic-clip.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-basic-filter.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-basic-font.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-basic-graphics-attrib.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-basic-structure.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-basic-text.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-clip.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-conditional.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-container-attrib.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-core-attrib.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-cursor.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-datatypes.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-docevents-attrib.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-extensibility.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-extresources-attrib.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-filter.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-font.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-gradient.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-graphevents-attrib.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-graphics-attrib.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-hyperlink.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-image.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-marker.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-mask.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-opacity-attrib.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-paint-attrib.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-pattern.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-profile.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-qname.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-script.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-shape.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-structure.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-style.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-text.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-view.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-viewport-attrib.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg-xlink-attrib.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg11-basic.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg11-tiny.rnc - RELOC/source/latex/stex/schema/rnc/svg/svg11.rnc - RELOC/source/latex/stex/schema/rng/LaTeXML-bib.rng - RELOC/source/latex/stex/schema/rng/LaTeXML-block.rng - RELOC/source/latex/stex/schema/rng/LaTeXML-common.rng - RELOC/source/latex/stex/schema/rng/LaTeXML-inline.rng - RELOC/source/latex/stex/schema/rng/LaTeXML-math.rng - RELOC/source/latex/stex/schema/rng/LaTeXML-para.rng - RELOC/source/latex/stex/schema/rng/LaTeXML-picture.rng - RELOC/source/latex/stex/schema/rng/LaTeXML-structure.rng - RELOC/source/latex/stex/schema/rng/LaTeXML-tabular.rng - RELOC/source/latex/stex/schema/rng/LaTeXML.rng - RELOC/source/latex/stex/schema/rng/MARCRelators.rng - RELOC/source/latex/stex/schema/rng/Makefile - RELOC/source/latex/stex/schema/rng/creativecommons.rng - RELOC/source/latex/stex/schema/rng/dublincore.rng - RELOC/source/latex/stex/schema/rng/mathml3-cds-pragmatic.rng - RELOC/source/latex/stex/schema/rng/mathml3-common.rng - RELOC/source/latex/stex/schema/rng/mathml3-content.rng - RELOC/source/latex/stex/schema/rng/mathml3-pragmatic.rng - RELOC/source/latex/stex/schema/rng/mathml3-presentation.rng - RELOC/source/latex/stex/schema/rng/mathml3-strict-content.rng - RELOC/source/latex/stex/schema/rng/mathml3-strict.rng - RELOC/source/latex/stex/schema/rng/mathml3.rng - RELOC/source/latex/stex/schema/rng/metadata.rng - RELOC/source/latex/stex/schema/rng/omdoc+ltxml.rng - RELOC/source/latex/stex/schema/rng/omdoc-common.rng - RELOC/source/latex/stex/schema/rng/omdoc-xhtml.rng - RELOC/source/latex/stex/schema/rng/omdoc.rng - RELOC/source/latex/stex/schema/rng/omdocadt.rng - RELOC/source/latex/stex/schema/rng/omdocattribs.rng - RELOC/source/latex/stex/schema/rng/omdoccc.rng - RELOC/source/latex/stex/schema/rng/omdoccth.rng - RELOC/source/latex/stex/schema/rng/omdocdc.rng - RELOC/source/latex/stex/schema/rng/omdocdg.rng - RELOC/source/latex/stex/schema/rng/omdocdoc.rng - RELOC/source/latex/stex/schema/rng/omdocext.rng - RELOC/source/latex/stex/schema/rng/omdocmeta.rng - RELOC/source/latex/stex/schema/rng/omdocmobj.rng - RELOC/source/latex/stex/schema/rng/omdocmtxt.rng - RELOC/source/latex/stex/schema/rng/omdocpf.rng - RELOC/source/latex/stex/schema/rng/omdocpres.rng - RELOC/source/latex/stex/schema/rng/omdocquiz.rng - RELOC/source/latex/stex/schema/rng/omdocrt.rng - RELOC/source/latex/stex/schema/rng/omdocst.rng - RELOC/source/latex/stex/schema/rng/openmath2.rng - RELOC/source/latex/stex/schema/rng/openmath3.rng - RELOC/source/latex/stex/schema/rng/owl.rng - RELOC/source/latex/stex/schema/rng/owl2+ltxml.rng - RELOC/source/latex/stex/schema/rng/owl2-xml.rng - RELOC/source/latex/stex/schema/rng/owl2xml.rng - RELOC/source/latex/stex/schema/rng/pxhtml.rng - RELOC/source/latex/stex/schema/rng/statements.rng - RELOC/source/latex/stex/schema/rng/svg-animation.rng - RELOC/source/latex/stex/schema/rng/svg-animevents-attrib.rng - RELOC/source/latex/stex/schema/rng/svg-basic-clip.rng - RELOC/source/latex/stex/schema/rng/svg-basic-filter.rng - RELOC/source/latex/stex/schema/rng/svg-basic-font.rng - RELOC/source/latex/stex/schema/rng/svg-basic-graphics-attrib.rng - RELOC/source/latex/stex/schema/rng/svg-basic-structure.rng - RELOC/source/latex/stex/schema/rng/svg-basic-text.rng - RELOC/source/latex/stex/schema/rng/svg-clip.rng - RELOC/source/latex/stex/schema/rng/svg-conditional.rng - RELOC/source/latex/stex/schema/rng/svg-container-attrib.rng - RELOC/source/latex/stex/schema/rng/svg-core-attrib.rng - RELOC/source/latex/stex/schema/rng/svg-cursor.rng - RELOC/source/latex/stex/schema/rng/svg-datatypes.rng - RELOC/source/latex/stex/schema/rng/svg-docevents-attrib.rng - RELOC/source/latex/stex/schema/rng/svg-extensibility.rng - RELOC/source/latex/stex/schema/rng/svg-extresources-attrib.rng - RELOC/source/latex/stex/schema/rng/svg-filter.rng - RELOC/source/latex/stex/schema/rng/svg-font.rng - RELOC/source/latex/stex/schema/rng/svg-gradient.rng - RELOC/source/latex/stex/schema/rng/svg-graphevents-attrib.rng - RELOC/source/latex/stex/schema/rng/svg-graphics-attrib.rng - RELOC/source/latex/stex/schema/rng/svg-hyperlink.rng - RELOC/source/latex/stex/schema/rng/svg-image.rng - RELOC/source/latex/stex/schema/rng/svg-marker.rng - RELOC/source/latex/stex/schema/rng/svg-mask.rng - RELOC/source/latex/stex/schema/rng/svg-opacity-attrib.rng - RELOC/source/latex/stex/schema/rng/svg-paint-attrib.rng - RELOC/source/latex/stex/schema/rng/svg-pattern.rng - RELOC/source/latex/stex/schema/rng/svg-profile.rng - RELOC/source/latex/stex/schema/rng/svg-script.rng - RELOC/source/latex/stex/schema/rng/svg-shape.rng - RELOC/source/latex/stex/schema/rng/svg-structure.rng - RELOC/source/latex/stex/schema/rng/svg-style.rng - RELOC/source/latex/stex/schema/rng/svg-text.rng - RELOC/source/latex/stex/schema/rng/svg-view.rng - RELOC/source/latex/stex/schema/rng/svg-viewport-attrib.rng - RELOC/source/latex/stex/schema/rng/svg-xlink-attrib.rng - RELOC/source/latex/stex/schema/rng/svg11.rng - RELOC/source/latex/stex/schema/rng/xhtml-applet.rng - RELOC/source/latex/stex/schema/rng/xhtml-attribs.rng - RELOC/source/latex/stex/schema/rng/xhtml-base.rng - RELOC/source/latex/stex/schema/rng/xhtml-basic-table.rng - RELOC/source/latex/stex/schema/rng/xhtml-bdo.rng - RELOC/source/latex/stex/schema/rng/xhtml-datatypes.rng - RELOC/source/latex/stex/schema/rng/xhtml-hypertext.rng - RELOC/source/latex/stex/schema/rng/xhtml-image.rng - RELOC/source/latex/stex/schema/rng/xhtml-inlstyle.rng - RELOC/source/latex/stex/schema/rng/xhtml-link.rng - RELOC/source/latex/stex/schema/rng/xhtml-list.rng - RELOC/source/latex/stex/schema/rng/xhtml-object.rng - RELOC/source/latex/stex/schema/rng/xhtml-param.rng - RELOC/source/latex/stex/schema/rng/xhtml-table.rng - RELOC/source/latex/stex/schema/rng/xhtml-text.rng - RELOC/source/latex/stex/sproof/sproof.dtx - RELOC/source/latex/stex/sproof/sproof.ins - RELOC/source/latex/stex/sref/sref.dtx - RELOC/source/latex/stex/sref/sref.ins - RELOC/source/latex/stex/statements/statements.dtx - RELOC/source/latex/stex/statements/statements.ins - RELOC/source/latex/stex/workaddress/workaddress.dtx - RELOC/source/latex/stex/workaddress/workaddress.ins - RELOC/source/latex/stex/xsl/LaTeXML/LaTeXML-bib-xhtml.xsl - RELOC/source/latex/stex/xsl/LaTeXML/LaTeXML-block-xhtml.xsl - RELOC/source/latex/stex/xsl/LaTeXML/LaTeXML-common.xsl - RELOC/source/latex/stex/xsl/LaTeXML/LaTeXML-html.xsl - RELOC/source/latex/stex/xsl/LaTeXML/LaTeXML-html5.xsl - RELOC/source/latex/stex/xsl/LaTeXML/LaTeXML-inline-xhtml.xsl - RELOC/source/latex/stex/xsl/LaTeXML/LaTeXML-math-image.xsl - RELOC/source/latex/stex/xsl/LaTeXML/LaTeXML-math-mathml-html5.xsl - RELOC/source/latex/stex/xsl/LaTeXML/LaTeXML-math-mathml.xsl - RELOC/source/latex/stex/xsl/LaTeXML/LaTeXML-para-html5.xsl - RELOC/source/latex/stex/xsl/LaTeXML/LaTeXML-para-xhtml.xsl - RELOC/source/latex/stex/xsl/LaTeXML/LaTeXML-picture-image.xsl - RELOC/source/latex/stex/xsl/LaTeXML/LaTeXML-picture-svg-html5.xsl - RELOC/source/latex/stex/xsl/LaTeXML/LaTeXML-picture-svg.xsl - RELOC/source/latex/stex/xsl/LaTeXML/LaTeXML-structure-html5.xsl - RELOC/source/latex/stex/xsl/LaTeXML/LaTeXML-structure-xhtml.xsl - RELOC/source/latex/stex/xsl/LaTeXML/LaTeXML-tabular-xhtml.xsl - RELOC/source/latex/stex/xsl/LaTeXML/LaTeXML-webpage-html5.xsl - RELOC/source/latex/stex/xsl/LaTeXML/LaTeXML-webpage-xhtml.xsl - RELOC/source/latex/stex/xsl/LaTeXML/LaTeXML-xhtml.xsl - RELOC/source/latex/stex/xsl/LaTeXML/amsart.css - RELOC/source/latex/stex/xsl/LaTeXML/closedbib.css - RELOC/source/latex/stex/xsl/LaTeXML/core.css - RELOC/source/latex/stex/xsl/LaTeXML/marginpar.css - RELOC/source/latex/stex/xsl/LaTeXML/navbar-left.css - RELOC/source/latex/stex/xsl/LaTeXML/navbar-right.css - RELOC/source/latex/stex/xsl/LaTeXML/theme-blue.css - RELOC/source/latex/stex/xsl/Makefile - RELOC/source/latex/stex/xsl/doc.xsl - RELOC/source/latex/stex/xsl/graphics.xsl - RELOC/source/latex/stex/xsl/listings.xsl - RELOC/source/latex/stex/xsl/ltxml2cnx.xsl - RELOC/source/latex/stex/xsl/math.xsl - RELOC/source/latex/stex/xsl/notations.xsl - RELOC/source/latex/stex/xsl/omdocpost.xsl - RELOC/source/latex/stex/xsl/owl2post.xsl - RELOC/source/latex/stex/xsl/symbols.xsl -catalogue-ctan /macros/latex/contrib/stex -catalogue-date 2014-04-30 19:02:32 +0200 -catalogue-license lppl -catalogue-version 1.4 - -name stix -category Package -revision 36914 -shortdesc OpenType Unicode maths fonts. -relocated 1 -longdesc The STIX fonts are a suite of unicode OpenType fonts containing -longdesc a complete set of mathematical glyphs. The CTAN package is a -longdesc copy of the fonts' official release, organised as specified by -longdesc the TeX Directory Structure, for inclusion in standard TeX -longdesc distributions. A Type 1-only distribution of the fonts is -longdesc available in the esstix bundle. -execute addMap stix.map -runfiles size=1398 - RELOC/fonts/enc/dvips/stix/stix-extra1.enc - RELOC/fonts/enc/dvips/stix/stix-extra2.enc - RELOC/fonts/enc/dvips/stix/stix-extra3.enc - RELOC/fonts/enc/dvips/stix/stix-ot1.enc - RELOC/fonts/enc/dvips/stix/stix-ot2.enc - RELOC/fonts/enc/dvips/stix/stix-t1.enc - RELOC/fonts/enc/dvips/stix/stix-ts1.enc - RELOC/fonts/map/dvips/stix/stix.map - RELOC/fonts/opentype/public/stix/STIX-Bold.otf - RELOC/fonts/opentype/public/stix/STIX-BoldItalic.otf - RELOC/fonts/opentype/public/stix/STIX-Italic.otf - RELOC/fonts/opentype/public/stix/STIX-Regular.otf - RELOC/fonts/opentype/public/stix/STIXMath-Regular.otf - RELOC/fonts/source/public/stix/ot1-stixgeneral-bold.pl - RELOC/fonts/source/public/stix/ot1-stixgeneral-bolditalic.pl - RELOC/fonts/source/public/stix/ot1-stixgeneral-italic.pl - RELOC/fonts/source/public/stix/ot1-stixgeneral.pl - RELOC/fonts/source/public/stix/ot1-stixgeneralsc-bold.vpl - RELOC/fonts/source/public/stix/ot1-stixgeneralsc.vpl - RELOC/fonts/source/public/stix/ot2-stixgeneral-bold.pl - RELOC/fonts/source/public/stix/ot2-stixgeneral-bolditalic.pl - RELOC/fonts/source/public/stix/ot2-stixgeneral-italic.pl - RELOC/fonts/source/public/stix/ot2-stixgeneral.pl - RELOC/fonts/source/public/stix/ot2-stixgeneralsc-bold.vpl - RELOC/fonts/source/public/stix/ot2-stixgeneralsc.vpl - RELOC/fonts/source/public/stix/stix-extra1-bold.pl - RELOC/fonts/source/public/stix/stix-extra1.pl - RELOC/fonts/source/public/stix/stix-extra2-bold.pl - RELOC/fonts/source/public/stix/stix-extra2.pl - RELOC/fonts/source/public/stix/stix-extra3-bold.pl - RELOC/fonts/source/public/stix/stix-extra3.pl - RELOC/fonts/source/public/stix/stix-mathbb-bold.pl - RELOC/fonts/source/public/stix/stix-mathbb.pl - RELOC/fonts/source/public/stix/stix-mathbbit-bold.pl - RELOC/fonts/source/public/stix/stix-mathbbit.pl - RELOC/fonts/source/public/stix/stix-mathcal-bold.pl - RELOC/fonts/source/public/stix/stix-mathcal.pl - RELOC/fonts/source/public/stix/stix-mathex-bold.pl - RELOC/fonts/source/public/stix/stix-mathex.pl - RELOC/fonts/source/public/stix/stix-mathfrak-bold.pl - RELOC/fonts/source/public/stix/stix-mathfrak.pl - RELOC/fonts/source/public/stix/stix-mathit-bold.pl - RELOC/fonts/source/public/stix/stix-mathit.pl - RELOC/fonts/source/public/stix/stix-mathrm-bold.pl - RELOC/fonts/source/public/stix/stix-mathrm.pl - RELOC/fonts/source/public/stix/stix-mathscr-bold.pl - RELOC/fonts/source/public/stix/stix-mathscr.pl - RELOC/fonts/source/public/stix/stix-mathsf-bold.pl - RELOC/fonts/source/public/stix/stix-mathsf.pl - RELOC/fonts/source/public/stix/stix-mathsfit-bold.pl - RELOC/fonts/source/public/stix/stix-mathsfit.pl - RELOC/fonts/source/public/stix/stix-mathtt-bold.pl - RELOC/fonts/source/public/stix/stix-mathtt.pl - RELOC/fonts/source/public/stix/t1-stixgeneral-bold.pl - RELOC/fonts/source/public/stix/t1-stixgeneral-bolditalic.pl - RELOC/fonts/source/public/stix/t1-stixgeneral-italic.pl - RELOC/fonts/source/public/stix/t1-stixgeneral.pl - RELOC/fonts/source/public/stix/t1-stixgeneralsc-bold.vpl - RELOC/fonts/source/public/stix/t1-stixgeneralsc.vpl - RELOC/fonts/source/public/stix/ts1-stixgeneral-bold.pl - RELOC/fonts/source/public/stix/ts1-stixgeneral-bolditalic.pl - RELOC/fonts/source/public/stix/ts1-stixgeneral-italic.pl - RELOC/fonts/source/public/stix/ts1-stixgeneral.pl - RELOC/fonts/tfm/public/stix/ot1-stixgeneral-bold.tfm - RELOC/fonts/tfm/public/stix/ot1-stixgeneral-bolditalic.tfm - RELOC/fonts/tfm/public/stix/ot1-stixgeneral-italic.tfm - RELOC/fonts/tfm/public/stix/ot1-stixgeneral.tfm - RELOC/fonts/tfm/public/stix/ot1-stixgeneralsc-bold.tfm - RELOC/fonts/tfm/public/stix/ot1-stixgeneralsc.tfm - RELOC/fonts/tfm/public/stix/ot2-stixgeneral-bold.tfm - RELOC/fonts/tfm/public/stix/ot2-stixgeneral-bolditalic.tfm - RELOC/fonts/tfm/public/stix/ot2-stixgeneral-italic.tfm - RELOC/fonts/tfm/public/stix/ot2-stixgeneral.tfm - RELOC/fonts/tfm/public/stix/ot2-stixgeneralsc-bold.tfm - RELOC/fonts/tfm/public/stix/ot2-stixgeneralsc.tfm - RELOC/fonts/tfm/public/stix/stix-extra1.tfm - RELOC/fonts/tfm/public/stix/stix-extra2.tfm - RELOC/fonts/tfm/public/stix/stix-extra3.tfm - RELOC/fonts/tfm/public/stix/stix-mathbb-bold.tfm - RELOC/fonts/tfm/public/stix/stix-mathbb.tfm - RELOC/fonts/tfm/public/stix/stix-mathbbit-bold.tfm - RELOC/fonts/tfm/public/stix/stix-mathbbit.tfm - RELOC/fonts/tfm/public/stix/stix-mathcal-bold.tfm - RELOC/fonts/tfm/public/stix/stix-mathcal.tfm - RELOC/fonts/tfm/public/stix/stix-mathex-bold.tfm - RELOC/fonts/tfm/public/stix/stix-mathex.tfm - RELOC/fonts/tfm/public/stix/stix-mathfrak-bold.tfm - RELOC/fonts/tfm/public/stix/stix-mathfrak.tfm - RELOC/fonts/tfm/public/stix/stix-mathit-bold.tfm - RELOC/fonts/tfm/public/stix/stix-mathit.tfm - RELOC/fonts/tfm/public/stix/stix-mathrm-bold.tfm - RELOC/fonts/tfm/public/stix/stix-mathrm.tfm - RELOC/fonts/tfm/public/stix/stix-mathscr-bold.tfm - RELOC/fonts/tfm/public/stix/stix-mathscr.tfm - RELOC/fonts/tfm/public/stix/stix-mathsf-bold.tfm - RELOC/fonts/tfm/public/stix/stix-mathsf.tfm - RELOC/fonts/tfm/public/stix/stix-mathsfit-bold.tfm - RELOC/fonts/tfm/public/stix/stix-mathsfit.tfm - RELOC/fonts/tfm/public/stix/stix-mathtt-bold.tfm - RELOC/fonts/tfm/public/stix/stix-mathtt.tfm - RELOC/fonts/tfm/public/stix/t1-stixgeneral-bold.tfm - RELOC/fonts/tfm/public/stix/t1-stixgeneral-bolditalic.tfm - RELOC/fonts/tfm/public/stix/t1-stixgeneral-italic.tfm - RELOC/fonts/tfm/public/stix/t1-stixgeneral.tfm - RELOC/fonts/tfm/public/stix/t1-stixgeneralsc-bold.tfm - RELOC/fonts/tfm/public/stix/t1-stixgeneralsc.tfm - RELOC/fonts/tfm/public/stix/ts1-stixgeneral-bold.tfm - RELOC/fonts/tfm/public/stix/ts1-stixgeneral-bolditalic.tfm - RELOC/fonts/tfm/public/stix/ts1-stixgeneral-italic.tfm - RELOC/fonts/tfm/public/stix/ts1-stixgeneral.tfm - RELOC/fonts/type1/public/stix/STIXGeneral-Bold.pfb - RELOC/fonts/type1/public/stix/STIXGeneral-BoldItalic.pfb - RELOC/fonts/type1/public/stix/STIXGeneral-Italic.pfb - RELOC/fonts/type1/public/stix/STIXGeneral-Regular.pfb - RELOC/fonts/type1/public/stix/stix-mathbb-bold.pfb - RELOC/fonts/type1/public/stix/stix-mathbb.pfb - RELOC/fonts/type1/public/stix/stix-mathbbit-bold.pfb - RELOC/fonts/type1/public/stix/stix-mathbbit.pfb - RELOC/fonts/type1/public/stix/stix-mathcal-bold.pfb - RELOC/fonts/type1/public/stix/stix-mathcal.pfb - RELOC/fonts/type1/public/stix/stix-mathex-bold.pfb - RELOC/fonts/type1/public/stix/stix-mathex.pfb - RELOC/fonts/type1/public/stix/stix-mathfrak-bold.pfb - RELOC/fonts/type1/public/stix/stix-mathfrak.pfb - RELOC/fonts/type1/public/stix/stix-mathit-bold.pfb - RELOC/fonts/type1/public/stix/stix-mathit.pfb - RELOC/fonts/type1/public/stix/stix-mathrm-bold.pfb - RELOC/fonts/type1/public/stix/stix-mathrm.pfb - RELOC/fonts/type1/public/stix/stix-mathscr-bold.pfb - RELOC/fonts/type1/public/stix/stix-mathscr.pfb - RELOC/fonts/type1/public/stix/stix-mathsf-bold.pfb - RELOC/fonts/type1/public/stix/stix-mathsf.pfb - RELOC/fonts/type1/public/stix/stix-mathsfit-bold.pfb - RELOC/fonts/type1/public/stix/stix-mathsfit.pfb - RELOC/fonts/type1/public/stix/stix-mathtt-bold.pfb - RELOC/fonts/type1/public/stix/stix-mathtt.pfb - RELOC/fonts/vf/public/stix/ot1-stixgeneralsc-bold.vf - RELOC/fonts/vf/public/stix/ot1-stixgeneralsc.vf - RELOC/fonts/vf/public/stix/ot2-stixgeneralsc-bold.vf - RELOC/fonts/vf/public/stix/ot2-stixgeneralsc.vf - RELOC/fonts/vf/public/stix/t1-stixgeneralsc-bold.vf - RELOC/fonts/vf/public/stix/t1-stixgeneralsc.vf - RELOC/tex/latex/stix/ls1stix.fd - RELOC/tex/latex/stix/ls1stixbb.fd - RELOC/tex/latex/stix/ls1stixfrak.fd - RELOC/tex/latex/stix/ls1stixscr.fd - RELOC/tex/latex/stix/ls1stixsf.fd - RELOC/tex/latex/stix/ls2stix.fd - RELOC/tex/latex/stix/ls2stixcal.fd - RELOC/tex/latex/stix/ls2stixex.fd - RELOC/tex/latex/stix/ls2stixtt.fd - RELOC/tex/latex/stix/ot1stix.fd - RELOC/tex/latex/stix/ot2stix.fd - RELOC/tex/latex/stix/stix.sty - RELOC/tex/latex/stix/t1stix.fd - RELOC/tex/latex/stix/ts1stix.fd -docfiles size=589 - RELOC/doc/fonts/stix/README - RELOC/doc/fonts/stix/STIX_Font_1.1.1-latex_Release_Documentation.doc - RELOC/doc/fonts/stix/STIX_Font_1.1.1-latex_Release_Documentation.pdf - RELOC/doc/fonts/stix/STIX_Font_1.1.1_Release_Documentation.doc - RELOC/doc/fonts/stix/STIX_Font_1.1.1_Release_Documentation.pdf - RELOC/doc/fonts/stix/STIX_Font_License_2010.txt - RELOC/doc/fonts/stix/stix.pdf -srcfiles size=52 - RELOC/source/latex/stix/stix.dtx - RELOC/source/latex/stix/stix.fdd -catalogue-ctan /fonts/stix -catalogue-date 2015-04-17 21:30:40 +0200 -catalogue-license ofl -catalogue-version 1.1.2 - -name stmaryrd -category Package -revision 22027 -shortdesc St Mary Road symbols for theoretical computer science. -relocated 1 -longdesc The fonts were originally distributed as Metafont sources only, -longdesc but Adobe Type 1 versions are also now available. Macro support -longdesc is provided for use under LaTeX; the package supports the -longdesc "only" option (provided by the somedefs package) to restrict -longdesc what is loaded, for those who don't need the whole font. -execute addMixedMap stmaryrd.map -runfiles size=98 - RELOC/fonts/afm/public/stmaryrd/stmary10.afm - RELOC/fonts/afm/public/stmaryrd/stmary5.afm - RELOC/fonts/afm/public/stmaryrd/stmary6.afm - RELOC/fonts/afm/public/stmaryrd/stmary7.afm - RELOC/fonts/afm/public/stmaryrd/stmary8.afm - RELOC/fonts/afm/public/stmaryrd/stmary9.afm - RELOC/fonts/map/dvips/stmaryrd/stmaryrd.map - RELOC/fonts/source/public/stmaryrd/stmary10.mf - RELOC/fonts/source/public/stmaryrd/stmary5.mf - RELOC/fonts/source/public/stmaryrd/stmary6.mf - RELOC/fonts/source/public/stmaryrd/stmary7.mf - RELOC/fonts/source/public/stmaryrd/stmary8.mf - RELOC/fonts/source/public/stmaryrd/stmary9.mf - RELOC/fonts/source/public/stmaryrd/stmaryaj.mf - RELOC/fonts/source/public/stmaryrd/stmaryba.mf - RELOC/fonts/source/public/stmaryrd/stmarych.mf - RELOC/fonts/source/public/stmaryrd/stmaryjg.mf - RELOC/fonts/source/public/stmaryrd/stmaryrd.mf - RELOC/fonts/tfm/public/stmaryrd/stmary10.tfm - RELOC/fonts/tfm/public/stmaryrd/stmary5.tfm - RELOC/fonts/tfm/public/stmaryrd/stmary6.tfm - RELOC/fonts/tfm/public/stmaryrd/stmary7.tfm - RELOC/fonts/tfm/public/stmaryrd/stmary8.tfm - RELOC/fonts/tfm/public/stmaryrd/stmary9.tfm - RELOC/fonts/type1/public/stmaryrd/stmary10.pfb - RELOC/fonts/type1/public/stmaryrd/stmary10.pfm - RELOC/fonts/type1/public/stmaryrd/stmary5.pfb - RELOC/fonts/type1/public/stmaryrd/stmary5.pfm - RELOC/fonts/type1/public/stmaryrd/stmary6.pfb - RELOC/fonts/type1/public/stmaryrd/stmary6.pfm - RELOC/fonts/type1/public/stmaryrd/stmary7.pfb - RELOC/fonts/type1/public/stmaryrd/stmary7.pfm - RELOC/fonts/type1/public/stmaryrd/stmary8.pfb - RELOC/fonts/type1/public/stmaryrd/stmary8.pfm - RELOC/fonts/type1/public/stmaryrd/stmary9.pfb - RELOC/fonts/type1/public/stmaryrd/stmary9.pfm - RELOC/tex/latex/stmaryrd/Ustmry.fd - RELOC/tex/latex/stmaryrd/stmaryrd.sty -docfiles size=28 - RELOC/doc/fonts/stmaryrd/INSTALL - RELOC/doc/fonts/stmaryrd/README - RELOC/doc/fonts/stmaryrd/README.hoekwater - RELOC/doc/fonts/stmaryrd/stmaryrd.pdf -srcfiles size=7 - RELOC/source/fonts/stmaryrd/stmaryrd.dtx - RELOC/source/fonts/stmaryrd/stmaryrd.ins -catalogue-ctan /fonts/stmaryrd -catalogue-date 2014-04-11 12:20:27 +0200 -catalogue-license lppl - -name storebox -category Package -revision 24895 -shortdesc Storing information for reuse. -relocated 1 -longdesc The package provides "store boxes" whose user interface matches -longdesc that of normal LaTeX "save boxes", except that the content of a -longdesc store box appears at most once in the output PDF file, however -longdesc often it is used. The present version of the package supports -longdesc pdfLaTeX and LuaLaTeX; when DVI is output, store boxes behave -longdesc the same as save boxes. -runfiles size=4 - RELOC/tex/latex/storebox/storebox-pgf.sty - RELOC/tex/latex/storebox/storebox.sty -docfiles size=49 - RELOC/doc/latex/storebox/README - RELOC/doc/latex/storebox/storebox.pdf -srcfiles size=7 - RELOC/source/latex/storebox/storebox.dtx - RELOC/source/latex/storebox/storebox.ins -catalogue-ctan /macros/latex/contrib/storebox -catalogue-date 2015-03-22 20:18:57 +0100 -catalogue-license lppl1.3 -catalogue-version 1.3a - -name storecmd -category Package -revision 24431 -shortdesc Store the name of a defined command in a container. -relocated 1 -longdesc The package provides macros for command definition that save -longdesc the name of the command being defined in a file or a macro -longdesc container. The list could be useful for spelling exceptions in -longdesc text editors that do not support TeX syntax. -runfiles size=3 - RELOC/tex/latex/storecmd/storecmd.sty -docfiles size=71 - RELOC/doc/latex/storecmd/README - RELOC/doc/latex/storecmd/storecmd-example.tex - RELOC/doc/latex/storecmd/storecmd-guide.pdf - RELOC/doc/latex/storecmd/storecmd-guide.tex -catalogue-ctan /macros/latex/contrib/storecmd -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.0.2 - -name stringstrings -category Package -revision 36203 -shortdesc String manipulation for cosmetic and programming application. -relocated 1 -longdesc The package provides a large and sundry set of macros for the -longdesc manipulation of strings. The macros are developed not merely -longdesc for cosmetic application (such as changing the case of letters -longdesc and string substitution), but also for programming applications -longdesc such as character look-ahead, argument parsing, conditional -longdesc tests on various string conditions, etc. The macros were -longdesc designed all to be expandable (note that things such as -longdesc \uppercase and \lowercase are not expandable), so that the -longdesc macros may be strung together sequentially and nested (after a -longdesc fashion) to achieve rather complex manipulations. -runfiles size=15 - RELOC/tex/latex/stringstrings/stringstrings.sty -docfiles size=108 - RELOC/doc/latex/stringstrings/README - RELOC/doc/latex/stringstrings/stringstrings.pdf -srcfiles size=40 - RELOC/source/latex/stringstrings/stringstrings.dtx - RELOC/source/latex/stringstrings/stringstrings.ins -catalogue-ctan /macros/latex/contrib/stringstrings -catalogue-date 2015-02-02 22:12:14 +0100 -catalogue-license lppl1.3 -catalogue-version 1.23 - -name struktex -category Package -revision 25916 -shortdesc Draw Nassi-Schneidermann charts -relocated 1 -longdesc Even in the age of OOP one must develop algorithms. Nassi- -longdesc Shneiderman diagrams are a well known tool to describe an -longdesc algorithm in a graphical way. The package offers some macros -longdesc for generating those diagrams in a LaTeX document. The package -longdesc provides the most important elements of a Nassi-Shneiderman -longdesc diagram, including processing blocks, loops, mapping -longdesc conventions for alternatives, etc. Diagrams are drawn using the -longdesc picture environment (using pict2e for preference). -runfiles size=14 - RELOC/tex/latex/struktex/strukdoc.sty - RELOC/tex/latex/struktex/struktex.sty - RELOC/tex/latex/struktex/struktxf.sty - RELOC/tex/latex/struktex/struktxp.sty -docfiles size=226 - RELOC/doc/latex/struktex/LIESMICH - RELOC/doc/latex/struktex/README - RELOC/doc/latex/struktex/THIS_IS_VERSION_v141 - RELOC/doc/latex/struktex/getversion.tex - RELOC/doc/latex/struktex/struktex-test-0.nss - RELOC/doc/latex/struktex/struktex-test-1.tex - RELOC/doc/latex/struktex/struktex-test-2.tex - RELOC/doc/latex/struktex/struktex-test-3.tex - RELOC/doc/latex/struktex/struktex-test-4.tex - RELOC/doc/latex/struktex/struktex.de.pdf - RELOC/doc/latex/struktex/struktex.el - RELOC/doc/latex/struktex/struktex.en.pdf - RELOC/doc/latex/struktex/struktex.makemake - RELOC/doc/latex/struktex/struktex.mk -srcfiles size=70 - RELOC/source/latex/struktex/struktex.dtx - RELOC/source/latex/struktex/struktex.ins -catalogue-ctan /macros/latex/contrib/struktex -catalogue-date 2012-04-11 11:11:10 +0200 -catalogue-license lppl1.2 -catalogue-version 141 - -name sttools -category Package -revision 36868 -shortdesc Various macros. -relocated 1 -longdesc A collection of tools and macros, providing: miscellaneous -longdesc float control, page styles for floats, multipage tabulars, even -longdesc columns at end of twocolumn region, switching between one- and -longdesc two-column anywhere, getting more mileage from \marginpar, -longdesc simulating the effect of "midfloats", a package to manipulate -longdesc numerical lists and arrays. -runfiles size=26 - RELOC/tex/latex/sttools/cuted.sty - RELOC/tex/latex/sttools/floatpag.sty - RELOC/tex/latex/sttools/flushend.sty - RELOC/tex/latex/sttools/marginal.sty - RELOC/tex/latex/sttools/midfloat.sty - RELOC/tex/latex/sttools/stabular.sty - RELOC/tex/latex/sttools/stfloats.sty - RELOC/tex/latex/sttools/texsort.sty -docfiles size=263 - RELOC/doc/latex/sttools/README - RELOC/doc/latex/sttools/cuted.pdf - RELOC/doc/latex/sttools/floatpag.pdf - RELOC/doc/latex/sttools/flushend.pdf - RELOC/doc/latex/sttools/marginal.pdf - RELOC/doc/latex/sttools/midfloat.pdf - RELOC/doc/latex/sttools/stabular.pdf - RELOC/doc/latex/sttools/stfloats.pdf - RELOC/doc/latex/sttools/sttools.pdf - RELOC/doc/latex/sttools/texsort.pdf -srcfiles size=38 - RELOC/source/latex/sttools/cuted.dtx - RELOC/source/latex/sttools/floatpag.dtx - RELOC/source/latex/sttools/flushend.dtx - RELOC/source/latex/sttools/marginal.dtx - RELOC/source/latex/sttools/midfloat.dtx - RELOC/source/latex/sttools/stabular.dtx - RELOC/source/latex/sttools/stfloats.dtx - RELOC/source/latex/sttools/sttools.dtx - RELOC/source/latex/sttools/sttools.ins - RELOC/source/latex/sttools/texsort.dtx -catalogue-ctan /macros/latex/contrib/sttools -catalogue-date 2015-04-14 14:20:04 +0200 -catalogue-license lppl1.3 -catalogue-version 1.7 - -name stubs -category Package -revision 19440 -shortdesc Create tear-off stubs at the bottom of a page. -relocated 1 -longdesc The \stubs command creates as many repetitions as possible of -longdesc its argument, at the bottom of the page; these stubs may be -longdesc used (for example) for contact information. -runfiles size=1 - RELOC/tex/latex/stubs/stubs.sty -docfiles size=14 - RELOC/doc/latex/stubs/COPYING - RELOC/doc/latex/stubs/README - RELOC/doc/latex/stubs/README.TEXLIVE - RELOC/doc/latex/stubs/changelog.txt - RELOC/doc/latex/stubs/stubs_ex.pdf - RELOC/doc/latex/stubs/stubs_ex.tex -catalogue-ctan /macros/latex/contrib/stubs -catalogue-date 2012-05-27 21:37:20 +0200 -catalogue-license gpl -catalogue-version 0.1.1 - -name sty2dtx -category Package -revision 29743 -shortdesc Create a .dtx file from a .sty file. -longdesc The package provides a Perl script that converts a .sty file -longdesc (LaTeX package) to .dtx format (documented LaTeX source), by -longdesc surrounding macro definitions with macro and macrocode -longdesc environments. The macro name is automatically inserted as an -longdesc argument to the macro environemnt. Code lines outside macro -longdesc definitions are wrapped only in macrocode environments. Empty -longdesc lines are removed. The script should not be thought to be fool -longdesc proof and 100% accurate but rather as a good start to the -longdesc business of making a .dtx file from an undocumented style file. -longdesc Full .dtx files are generated. A template based on the skeleton -longdesc file from 'dtxtut' is used. User level macros are added -longdesc automatically to the 'Usage' section of the .dtx file. A -longdesc corresponding .ins file can be generated as well. -depend sty2dtx.ARCH -runfiles size=8 - texmf-dist/scripts/sty2dtx/sty2dtx.pl -docfiles size=43 - texmf-dist/doc/man/man1/sty2dtx.1 - texmf-dist/doc/man/man1/sty2dtx.man1.pdf - texmf-dist/doc/support/sty2dtx/README - texmf-dist/doc/support/sty2dtx/sty2dtx.pdf -catalogue-ctan /support/sty2dtx -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license gpl3 -catalogue-version 2.3 - -name sty2dtx.i386-linux -category Package -revision 21215 -shortdesc i386-linux files of sty2dtx -binfiles arch=i386-linux size=1 - bin/i386-linux/sty2dtx - -name suanpan -category Package -revision 15878 -shortdesc MetaPost macros for drawing Chinese and Japanese abaci. -relocated 1 -longdesc These macros are described in Denis Roegel: MetaPost macros for -longdesc drawing Chinese and Japanese abaci, TUGboat (volume 30, number -longdesc 1, 2009, pages 74-79) -runfiles size=5 - RELOC/metapost/suanpan/abacus.mp - RELOC/metapost/suanpan/suanpan.mp -docfiles size=2 - RELOC/doc/metapost/suanpan/README - RELOC/doc/metapost/suanpan/article.txt -catalogue-ctan /graphics/metapost/contrib/macros/suanpan -catalogue-date 2012-05-27 21:37:20 +0200 -catalogue-license lppl - -name subdepth -category Package -revision 15878 -shortdesc Unify maths subscript height. -relocated 1 -longdesc This package is based on code (posted long ago to comp.text.tex -longdesc by Donald Arseneau) to equalise the height of subscripts in -longdesc maths. The default behaviour is to place subscripts slightly -longdesc lower when there is a superscript as well, but this can look -longdesc odd in some situations. -runfiles size=1 - RELOC/tex/latex/subdepth/subdepth.sty -docfiles size=28 - RELOC/doc/latex/subdepth/README - RELOC/doc/latex/subdepth/subdepth.pdf -srcfiles size=4 - RELOC/source/latex/subdepth/subdepth.dtx - RELOC/source/latex/subdepth/subdepth.ins -catalogue-ctan /macros/latex/contrib/subdepth -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.1 - -name subeqnarray -category Package -revision 15878 -shortdesc Equation array with sub numbering. -relocated 1 -longdesc This package defines the subeqnarray and subeqnarray* -longdesc environments, which behave like the corresponding eqnarray and -longdesc eqnarray* environments, except that the individual lines are -longdesc numbered like 1a, 1b, 1c, etc. To refer to these numbers an -longdesc extra label command \slabel is provided. Users are urged to -longdesc consider the alignment capabilities of the amsmath bundle, -longdesc which produce better results than eqnarray-related macros. -runfiles size=2 - RELOC/tex/latex/subeqnarray/subeqnarray.sty -docfiles size=33 - RELOC/doc/latex/subeqnarray/manifest.txt - RELOC/doc/latex/subeqnarray/subeqnarray.pdf - RELOC/doc/latex/subeqnarray/subeqnarray.tex -srcfiles size=5 - RELOC/source/latex/subeqnarray/subeqnarray.dtx - RELOC/source/latex/subeqnarray/subeqnarray.ins -catalogue-ctan /macros/latex/contrib/subeqnarray -catalogue-date 2012-05-27 21:37:20 +0200 -catalogue-license lppl -catalogue-version 2.1c - -name subeqn -category Package -revision 15878 -shortdesc Package for subequation numbering. -relocated 1 -longdesc Sometimes it is necessary to be able to refer to subexpressions -longdesc of an equation. In order to do that these subexpressions should -longdesc be numbered. In standard LaTeX there is no provision for this. -longdesc To solve this problem Stephen Gildea once wrote subeqn.sty for -longdesc LaTeX 2.09; Donald Arsenau rewrote the macros and Johannes -longdesc Braams made them available for LaTeX2e. Note that this package -longdesc is not compatible with the package subeqnarray (written by -longdesc Johannes Braams), but it can be used together with the LaTeX -longdesc class options leqno and fleqn. -runfiles size=1 - RELOC/tex/latex/subeqn/subeqn.sty -docfiles size=25 - RELOC/doc/latex/subeqn/manifest.txt - RELOC/doc/latex/subeqn/subeqn.pdf - RELOC/doc/latex/subeqn/subeqn.tex -srcfiles size=4 - RELOC/source/latex/subeqn/subeqn.dtx - RELOC/source/latex/subeqn/subeqn.ins -catalogue-ctan /macros/latex/contrib/subeqn -catalogue-date 2012-05-27 21:37:20 +0200 -catalogue-license lppl -catalogue-version 2.0b - -name subfigmat -category Package -revision 20308 -shortdesc Automates layout when using the subfigure package. -relocated 1 -longdesc Defines an array/matrix-type environment that is used with the -longdesc subfigure package to automate the placement of subfigures (or -longdesc tables or text). The subfigures are placed left-to-right, top- -longdesc to-bottom. -runfiles size=2 - RELOC/tex/latex/subfigmat/subfigmat.sty -docfiles size=72 - RELOC/doc/latex/subfigmat/subfigmat-doc.pdf - RELOC/doc/latex/subfigmat/subfigmat-doc.tex -catalogue-ctan /macros/latex/contrib/subfigmat -catalogue-date 2012-05-27 21:37:20 +0200 -catalogue-license lppl -catalogue-version 1.0 - -name subfig -category Package -revision 15878 -shortdesc Figures broken into subfigures -relocated 1 -longdesc The package provides support for the manipulation and reference -longdesc of small or 'sub' figures and tables within a single figure or -longdesc table environment. It is convenient to use this package when -longdesc your subfigures are to be separately captioned, referenced, or -longdesc are to be included in the List-of-Figures. A new \subfigure -longdesc command is introduced which can be used inside a figure -longdesc environment for each subfigure. An optional first argument is -longdesc used as the caption for that subfigure. This package supersedes -longdesc the subfigure package (which is no longer maintained). The name -longdesc was changed since the package is completely backward compatible -longdesc with the older package The major advantage to the new package -longdesc is that the user interface is keyword/value driven and easier -longdesc to use. To ease the transition from the subfigure package, the -longdesc distribution it includes a configuration file (subfig.cfg) -longdesc which nearly emulates the subfigure package. The functionality -longdesc of the package is provided by the (more recent still) -longdesc subcaption package. -runfiles size=8 - RELOC/tex/latex/subfig/altsf.cfg - RELOC/tex/latex/subfig/subfig.sty -docfiles size=181 - RELOC/doc/latex/subfig/README - RELOC/doc/latex/subfig/ltxdoc.cfg - RELOC/doc/latex/subfig/subfig.pdf - RELOC/doc/latex/subfig/test1.tex - RELOC/doc/latex/subfig/test2.tex - RELOC/doc/latex/subfig/test3.tex - RELOC/doc/latex/subfig/test4.tex - RELOC/doc/latex/subfig/test5.tex - RELOC/doc/latex/subfig/test6.tex - RELOC/doc/latex/subfig/test7.tex -srcfiles size=50 - RELOC/source/latex/subfig/Makefile - RELOC/source/latex/subfig/subfig.dtx - RELOC/source/latex/subfig/subfig.ins -catalogue-ctan /macros/latex/contrib/subfig -catalogue-date 2014-09-06 10:51:19 +0200 -catalogue-license lppl -catalogue-version 1.3 - -name subfigure -category Package -revision 15878 -shortdesc Deprecated: Figures divided into subfigures. -relocated 1 -longdesc Provides support for the manipulation and reference of small or -longdesc 'sub' figures and tables within a single figure or table -longdesc environment. It is convenient to use this package when your -longdesc subfigures are to be separately captioned, referenced, or are -longdesc to be included in the List-of-Figures. A new \subfigure command -longdesc is introduced which can be used inside a figure environment for -longdesc each subfigure. An optional first argument is used as the -longdesc caption for that subfigure. The package is now considered -longdesc obsolete: it was superseded by subfig, but users may find the -longdesc more recent subcaption package more satisfactory. -runfiles size=5 - RELOC/tex/latex/subfigure/subfigure.cfg - RELOC/tex/latex/subfigure/subfigure.sty -docfiles size=106 - RELOC/doc/latex/subfigure/README - RELOC/doc/latex/subfigure/ltxdoc.cfg - RELOC/doc/latex/subfigure/subfigure.pdf - RELOC/doc/latex/subfigure/test.tex - RELOC/doc/latex/subfigure/test2.tex - RELOC/doc/latex/subfigure/test3.tex - RELOC/doc/latex/subfigure/test4.tex - RELOC/doc/latex/subfigure/test5.tex -srcfiles size=41 - RELOC/source/latex/subfigure/Makefile - RELOC/source/latex/subfigure/subfigure.dtx - RELOC/source/latex/subfigure/subfigure.ins -catalogue-ctan /obsolete/macros/latex/contrib/subfigure -catalogue-date 2013-01-31 17:58:59 +0100 -catalogue-license lppl -catalogue-version 2.1.5 - -name subfiles -category Package -revision 26645 -shortdesc Individual typesetting of subfiles of a "main" document. -relocated 1 -longdesc Using subfiles the user can handle multi-file projects more -longdesc comfortably making it possible to both process the subsidiary -longdesc files by themselves and to process the main file that includes -longdesc them, without making any changes to either. -runfiles size=2 - RELOC/tex/latex/subfiles/subfiles.cls - RELOC/tex/latex/subfiles/subfiles.sty -docfiles size=15 - RELOC/doc/latex/subfiles/README - RELOC/doc/latex/subfiles/subfiles.pdf -srcfiles size=4 - RELOC/source/latex/subfiles/subfiles.dtx - RELOC/source/latex/subfiles/subfiles.ins -catalogue-ctan /macros/latex/contrib/subfiles -catalogue-date 2012-07-09 13:08:44 +0200 -catalogue-license lppl1.3 -catalogue-version 1.1 - -name subfloat -category Package -revision 29349 -shortdesc Sub-numbering for figures and tables. -relocated 1 -longdesc This package enables sub-numbering of floats (figures and -longdesc tables) similar to the subequations-environment of the amsmath -longdesc package. The subfloat package is not to be confused with the -longdesc subfig package which generates sub-figures within one normal -longdesc figure, and manages their placement; subfloat only affects -longdesc captions and numbering. -runfiles size=2 - RELOC/tex/latex/subfloat/subfloat.sty -docfiles size=30 - RELOC/doc/latex/subfloat/ChangeLog - RELOC/doc/latex/subfloat/README - RELOC/doc/latex/subfloat/install.sh - RELOC/doc/latex/subfloat/subfloat.pdf -srcfiles size=10 - RELOC/source/latex/subfloat/Makefile - RELOC/source/latex/subfloat/subfloat.dtx - RELOC/source/latex/subfloat/subfloat.ins -catalogue-ctan /macros/latex/contrib/subfloat -catalogue-date 2012-05-06 01:06:11 +0200 -catalogue-license lppl -catalogue-version 2.14 - -name substances -category Package -revision 27182 -shortdesc A database of chemicals. -relocated 1 -longdesc The package provides the means to create a database-like file -longdesc that contains data of various chemicals. These data may be -longdesc retrieved in the document; an index of the chemicals mentioned -longdesc in the document can be created.. -runfiles size=5 - RELOC/tex/latex/substances/substances-default.def - RELOC/tex/latex/substances/substances.sty -docfiles size=204 - RELOC/doc/latex/substances/README - RELOC/doc/latex/substances/substances-examples.sub - RELOC/doc/latex/substances/substances_en.pdf - RELOC/doc/latex/substances/substances_en.tex -catalogue-ctan /macros/latex/contrib/substances -catalogue-date 2014-08-08 18:30:06 +0200 -catalogue-license lppl1.3 -catalogue-version 0.1 - -name substitutefont -category Package -revision 32066 -shortdesc Easy font substitution. -relocated 1 -longdesc Many free fonts are extensions of a basic font family with new -longdesc glyphs or shapes. Such fonts may be given a new name due to -longdesc licence reasons or to the creator's preference. The package -longdesc facilitates the task of setting up a font family as substitute -longdesc for another one, using its \substitutefont command. -runfiles size=1 - RELOC/tex/latex/substitutefont/substitutefont.sty -docfiles size=374 - RELOC/doc/latex/substitutefont/README - RELOC/doc/latex/substitutefont/cyrillic-lm-lgc.pdf - RELOC/doc/latex/substitutefont/cyrillic-lm-lgc.tex - RELOC/doc/latex/substitutefont/cyrillic-paratype.pdf - RELOC/doc/latex/substitutefont/cyrillic-paratype.tex - RELOC/doc/latex/substitutefont/greek-palatino-didot.pdf - RELOC/doc/latex/substitutefont/greek-palatino-didot.tex - RELOC/doc/latex/substitutefont/greek-times-artemisia.pdf - RELOC/doc/latex/substitutefont/greek-times-artemisia.tex - RELOC/doc/latex/substitutefont/substitutefont-doc.html - RELOC/doc/latex/substitutefont/substitutefont-test.pdf - RELOC/doc/latex/substitutefont/substitutefont-test.tex - RELOC/doc/latex/substitutefont/substitutefont.sty.html -catalogue-ctan /macros/latex/contrib/substitutefont -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.1.4 - -name substr -category Package -revision 16117 -shortdesc Deal with substrings in strings. -relocated 1 -longdesc The package provides commands to deal with substrings of -longdesc strings. Macros are provided to: determine if one string is a -longdesc substring of another, return the parts of a string before or -longdesc after a substring, and count the number of occurrences of a -longdesc substring. -runfiles size=2 - RELOC/tex/latex/substr/substr.sty -docfiles size=8 - RELOC/doc/latex/substr/ChangeLog - RELOC/doc/latex/substr/README - RELOC/doc/latex/substr/testsubstr.pdf - RELOC/doc/latex/substr/testsubstr.tex -catalogue-ctan /macros/latex/contrib/substr -catalogue-date 2014-10-15 15:52:30 +0200 -catalogue-license lppl1 -catalogue-version 1.2 - -name subsupscripts -category Package -revision 16080 -shortdesc A range of sub- and superscript commands. -relocated 1 -longdesc The package provides a comprehensive and flexible set of -longdesc commands for combinations of left and right sub- and -longdesc superscripts. -runfiles size=1 - RELOC/tex/latex/subsupscripts/subsupscripts.sty -docfiles size=31 - RELOC/doc/latex/subsupscripts/README - RELOC/doc/latex/subsupscripts/SubSupScripts.pdf - RELOC/doc/latex/subsupscripts/SubSupScripts.tex -catalogue-ctan /macros/latex/contrib/subsupscripts -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 - -name sudokubundle -category Package -revision 15878 -shortdesc A set of sudoku-related packages. -relocated 1 -longdesc The bundle provides three packages: printsudoku, which provides -longdesc a command \sudoku whose argument is the name of a file -longdesc containing a puzzle specification; solvesudoku, which attempts -longdesc to find a solution to the puzzle in the file named in the -longdesc argument; and createsudoku, which uses the random package to -longdesc generate a puzzle according to a bunch of parameters that the -longdesc user sets via macros. The bundle comes with a set of ready- -longdesc prepared puzzle files. -runfiles size=14 - RELOC/tex/latex/sudokubundle/createsudoku.sty - RELOC/tex/latex/sudokubundle/printsudoku.sty - RELOC/tex/latex/sudokubundle/solvesudoku.sty -docfiles size=97 - RELOC/doc/latex/sudokubundle/README - RELOC/doc/latex/sudokubundle/somesudoku.tex - RELOC/doc/latex/sudokubundle/sudokubundle.pdf -srcfiles size=36 - RELOC/source/latex/sudokubundle/sudokubundle.dtx - RELOC/source/latex/sudokubundle/sudokubundle.ins -catalogue-ctan /macros/latex/contrib/sudokubundle -catalogue-date 2014-10-15 15:52:30 +0200 -catalogue-license lppl -catalogue-version 1.0a - -name sudoku -category Package -revision 15878 -shortdesc Create sudoku grids. -relocated 1 -longdesc The sudoku package provides an environment for typesetting -longdesc sudoku grids. A sudoku puzzle is a 9x9 grid where some of the -longdesc squares in the grid contain numbers. The rules are simple: -longdesc every column can only contain the digits 1 to 9, every row can -longdesc only contain the digits 1 to 9 and every 3x3 box can only -longdesc contain the digits 1 to 9. More information, including help and -longdesc example puzzles, can be found at sudoku.org.uk. This site also -longdesc has blank sudoku grids (or worksheets), but you will not need -longdesc to print them from there if you have this package installed. -runfiles size=1 - RELOC/tex/latex/sudoku/sudoku.sty -docfiles size=19 - RELOC/doc/latex/sudoku/CHANGES - RELOC/doc/latex/sudoku/README - RELOC/doc/latex/sudoku/sudoku.pdf -srcfiles size=4 - RELOC/source/latex/sudoku/sudoku.dtx - RELOC/source/latex/sudoku/sudoku.ins -catalogue-ctan /macros/latex/contrib/sudoku -catalogue-date 2012-05-27 23:10:31 +0200 -catalogue-license lppl -catalogue-version 1.0 - -name suftesi -category Package -revision 38354 -shortdesc A document class for typesetting theses, books and articles -relocated 1 -longdesc The class is specifically designed for use with theses in the -longdesc humanities. -runfiles size=20 - RELOC/tex/latex/suftesi/suftesi.cls -docfiles size=269 - RELOC/doc/latex/suftesi/README - RELOC/doc/latex/suftesi/suftesi.pdf - RELOC/doc/latex/suftesi/templates.zip -srcfiles size=38 - RELOC/source/latex/suftesi/suftesi.dtx -catalogue-ctan /macros/latex/contrib/suftesi -catalogue-date 2015-09-10 21:31:46 +0200 -catalogue-license lppl1.3 -catalogue-topics book-pub class dissertation -catalogue-version 2.2 - -name sugconf -category Package -revision 15878 -shortdesc SAS(R) user group conference proceedings document class. -relocated 1 -longdesc The class may be used to typeset articles to be published in -longdesc the proceedings of SAS(R) User group conferences and workshops. -longdesc The layout produced by the class is based on that published by -longdesc SAS Institute (2006). -runfiles size=2 - RELOC/tex/latex/sugconf/sugconf.cls -docfiles size=33 - RELOC/doc/latex/sugconf/README - RELOC/doc/latex/sugconf/SUGI-paper-example.txt - RELOC/doc/latex/sugconf/article-example.bat - RELOC/doc/latex/sugconf/article-example.pdf - RELOC/doc/latex/sugconf/article-example.tex - RELOC/doc/latex/sugconf/sugconf-example.bat - RELOC/doc/latex/sugconf/sugconf-example.pdf - RELOC/doc/latex/sugconf/sugconf-example.tex -catalogue-ctan /macros/latex/contrib/conferences/sugconf -catalogue-date 2012-06-04 22:31:14 +0200 -catalogue-license lppl - -name superiors -category Package -revision 36422 -shortdesc Attach superior figures to a font family. -relocated 1 -longdesc The package allows the attachment of an arbitrary superior -longdesc figures font to a font family that lacks one. (Superior figures -longdesc are commonly used as footnote markers.) Two superior figures -longdesc fonts are provided--one matching Times, the other matching -longdesc Libertine. -execute addMap superiors.map -runfiles size=7 - RELOC/fonts/enc/dvips/superiors/sups.enc - RELOC/fonts/map/dvips/superiors/superiors.map - RELOC/fonts/tfm/public/superiors/libertinesups.tfm - RELOC/fonts/type1/public/superiors/libertinesups.pfb - RELOC/tex/latex/superiors/superiors.sty -docfiles size=89 - RELOC/doc/fonts/superiors/README - RELOC/doc/fonts/superiors/libfoot0-crop.pdf - RELOC/doc/fonts/superiors/libfoot1-crop.pdf - RELOC/doc/fonts/superiors/stempelfoot0-crop.pdf - RELOC/doc/fonts/superiors/stempelfoot1-crop.pdf - RELOC/doc/fonts/superiors/superiors-doc.pdf - RELOC/doc/fonts/superiors/superiors-doc.tex -catalogue-ctan /fonts/superiors -catalogue-date 2015-03-02 06:05:08 +0100 -catalogue-license lppl -catalogue-version 1.05 - -name supertabular -category Package -revision 15878 -shortdesc A multi-page tables package. -relocated 1 -longdesc The package was a predecessor of longtable; the newer package -longdesc (designed on quite different principles) is easier to use and -longdesc more flexible, in many cases, but supertabular retains its -longdesc usefulness in a few situations where longtable has problems. -runfiles size=4 - RELOC/tex/latex/supertabular/supertabular.sty -docfiles size=45 - RELOC/doc/latex/supertabular/CATALOG - RELOC/doc/latex/supertabular/ChangeLog - RELOC/doc/latex/supertabular/MANIFEST - RELOC/doc/latex/supertabular/README - RELOC/doc/latex/supertabular/supertabular.pdf -srcfiles size=15 - RELOC/source/latex/supertabular/supertabular.dtx - RELOC/source/latex/supertabular/supertabular.ins -catalogue-ctan /macros/latex/contrib/supertabular -catalogue-date 2011-12-30 16:30:48 +0100 -catalogue-license lppl1.3 -catalogue-version 4.1a - -name susy -category Package -revision 19440 -shortdesc Macros for SuperSymmetry-related work. -relocated 1 -longdesc The package provides abbreviations of longer expressions. -runfiles size=1 - RELOC/tex/latex/susy/susy.sty -docfiles size=2 - RELOC/doc/latex/susy/README - RELOC/doc/latex/susy/README.TEXLIVE -catalogue-ctan /macros/latex/contrib/susy -catalogue-date 2012-05-27 23:10:31 +0200 -catalogue-license lppl - -name svgcolor -category Package -revision 15878 -shortdesc Define SVG named colours. -relocated 1 -longdesc The package defines the W3C Scalable Vector Graphics (SVG) -longdesc colour names for use with both the color and PSTricks packages. -runfiles size=4 - RELOC/tex/latex/svgcolor/svgcolor.sty -docfiles size=1 - RELOC/doc/latex/svgcolor/README -catalogue-ctan /macros/latex/contrib/svgcolor -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 - -name svg-inkscape -category Package -revision 32199 -shortdesc How to include an SVG image in LaTeX using Inkscape. -relocated 1 -longdesc The document demonstrates the use of SVG images in LaTeX -longdesc documents. Using the "PDF+LaTeX output" option of Inkscape, it -longdesc is possible to include SVG in documents, in which LaTeX -longdesc typesets the text. This results in uniform text style -longdesc throughout the document, including text in images; moreover, -longdesc LaTeX commands may be used in the image's text, providing such -longdesc things as mathematics and references. The document also -longdesc describes how to automate the conversion from SVG to PDF+LaTeX -longdesc using Inkscape. -docfiles size=90 - RELOC/doc/latex/svg-inkscape/InkscapePDFLaTeX.pdf - RELOC/doc/latex/svg-inkscape/InkscapePDFLaTeX.tex - RELOC/doc/latex/svg-inkscape/README - RELOC/doc/latex/svg-inkscape/image-normal.pdf - RELOC/doc/latex/svg-inkscape/image.pdf - RELOC/doc/latex/svg-inkscape/image.pdf_tex - RELOC/doc/latex/svg-inkscape/image.svg -catalogue-ctan /info/svg-inkscape -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 - -name svg -category Package -revision 33063 -shortdesc Include and extract SVG pictures using Inkscape. -relocated 1 -longdesc The package provides a command similar to \includegraphics -longdesc command of the graphicx package, which enables the inclusion of -longdesc SVG images using Inkscape. \includesvg[]{} A variety of options is available, including width, -longdesc height, and path of the SVG. The image is converted to an -longdesc appropriate format, using the \write18 mechanism to execute a -longdesc shell command, and the package also offers the means of saving -longdesc a PDF, EPS, or PNG copy of the image, at the same time. The -longdesc documentation shows an example using an SVG created from the -longdesc high energy particle physics analysis package ROOT. -runfiles size=3 - RELOC/tex/latex/svg/svg.sty -docfiles size=450 - RELOC/doc/latex/svg/Fig.1a.pdf - RELOC/doc/latex/svg/Fig.1b.eps - RELOC/doc/latex/svg/Fig.2.pdf - RELOC/doc/latex/svg/Fig.2.png - RELOC/doc/latex/svg/README - RELOC/doc/latex/svg/example.pdf - RELOC/doc/latex/svg/example.pdf_tex - RELOC/doc/latex/svg/example.svg - RELOC/doc/latex/svg/preamble.tex - RELOC/doc/latex/svg/root.C - RELOC/doc/latex/svg/root.pdf - RELOC/doc/latex/svg/root.pdf_tex - RELOC/doc/latex/svg/root.svg - RELOC/doc/latex/svg/svg.pdf -srcfiles size=8 - RELOC/source/latex/svg/svg.dtx -catalogue-ctan /graphics/svg -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0 - -name svninfo -category Package -revision 17554 -shortdesc Typeset Subversion keywords. -relocated 1 -longdesc A package for incorporating the values of Subversion keywords -longdesc into typeset documents. Information about Subversion (a -longdesc replacement for CVS) is available from -longdesc http://subversion.tigris.org/ -runfiles size=5 - RELOC/tex/latex/svninfo/svninfo.cfg - RELOC/tex/latex/svninfo/svninfo.sty -docfiles size=70 - RELOC/doc/latex/svninfo/README - RELOC/doc/latex/svninfo/svninfo.init - RELOC/doc/latex/svninfo/svninfo.pdf -srcfiles size=14 - RELOC/source/latex/svninfo/Makefile - RELOC/source/latex/svninfo/svninfo.dtx - RELOC/source/latex/svninfo/svninfo.ins -catalogue-ctan /macros/latex/contrib/svninfo -catalogue-date 2011-11-11 12:03:47 +0100 -catalogue-license lppl1 -catalogue-version 0.7.4 - -name svn-multi -category Package -revision 26313 -shortdesc Subversion keywords in multi-file LaTeX documents -longdesc This package lets you typeset keywords of the version control -longdesc system Subversion inside your LaTeX files anywhere you like. -longdesc Unlike the otherwise similar package svn the use of multiple -longdesc files for one LaTeX document is well supported. The package -longdesc uses the author's filehook and currfile packages. The package -longdesc interacts with an external Perl script, to retrieve information -longdesc necessary for the required output. -depend svn-multi.ARCH -runfiles size=15 - texmf-dist/scripts/svn-multi/svn-multi.pl - texmf-dist/tex/latex/svn-multi/svn-multi.sty - texmf-dist/tex/latex/svn-multi/svnkw.sty -docfiles size=104 - texmf-dist/doc/latex/svn-multi/README - texmf-dist/doc/latex/svn-multi/example_chap1.tex - texmf-dist/doc/latex/svn-multi/example_main.tex - texmf-dist/doc/latex/svn-multi/group_example.tex - texmf-dist/doc/latex/svn-multi/svn-multi.pdf - texmf-dist/doc/support/svn-multi/svn-multi-pl.pdf -srcfiles size=42 - texmf-dist/source/latex/svn-multi/svn-multi-pl.dtx - texmf-dist/source/latex/svn-multi/svn-multi.dtx - texmf-dist/source/latex/svn-multi/svn-multi.ins -catalogue-ctan /macros/latex/contrib/svn-multi -catalogue-date 2015-03-22 20:18:57 +0100 -catalogue-license lppl -catalogue-version 2.4d - -name svn-multi.i386-linux -category Package -revision 13663 -shortdesc i386-linux files of svn-multi -binfiles arch=i386-linux size=1 - bin/i386-linux/svn-multi - -name svn-prov -category Package -revision 18017 -shortdesc Subversion variants of \Provides... macros. -relocated 1 -longdesc The package introduces Subversion variants of the standard -longdesc LaTeX macros \ProvidesPackage, \ProvidesClass and \ProvidesFile -longdesc where the file name and date is extracted from Subversion Id -longdesc keywords. The file name may also be given explicitly as an -longdesc optional argument. -runfiles size=2 - RELOC/tex/latex/svn-prov/svn-prov.sty -docfiles size=74 - RELOC/doc/latex/svn-prov/svn-prov.pdf -srcfiles size=10 - RELOC/source/latex/svn-prov/Makefile - RELOC/source/latex/svn-prov/svn-prov.dtx - RELOC/source/latex/svn-prov/svn-prov.ins -catalogue-ctan /macros/latex/contrib/svn-prov -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 3.1862 - -name svn -category Package -revision 15878 -shortdesc Typeset Subversion keywords. -relocated 1 -longdesc The svn package lets you typeset (in LaTeX) the value of -longdesc Subversion keywords. It is approximately an equivalent to the -longdesc rcs package, but for Subversion rather than CVS. Details of -longdesc Subversion (a replacement for CVS) is available from the -longdesc project's home site. -runfiles size=1 - RELOC/tex/latex/svn/svn.sty -docfiles size=112 - RELOC/doc/latex/svn/README - RELOC/doc/latex/svn/svn.pdf -srcfiles size=7 - RELOC/source/latex/svn/Makefile - RELOC/source/latex/svn/svn.dtx - RELOC/source/latex/svn/svn.ins -catalogue-ctan /macros/latex/contrib/svn -catalogue-date 2011-11-11 20:00:31 +0100 -catalogue-license lppl1.3 -catalogue-version 43 - -name swebib -category Package -revision 15878 -shortdesc Swedish bibliography styles. -relocated 1 -longdesc The bundle contains Swedish versions of the standard -longdesc bibliography styles, and of the style plainnat. The styles -longdesc should be funtionally equivalent to the corresponding original -longdesc styles, apart from the Swedish translations. The styles do not -longdesc implement Swedish collation. -runfiles size=27 - RELOC/bibtex/bst/swebib/sweabbrv.bst - RELOC/bibtex/bst/swebib/swealpha.bst - RELOC/bibtex/bst/swebib/sweplain.bst - RELOC/bibtex/bst/swebib/sweplnat.bst - RELOC/bibtex/bst/swebib/sweunsrt.bst -docfiles size=1 - RELOC/doc/latex/swebib/README -catalogue-ctan /biblio/bibtex/contrib/swebib -catalogue-date 2012-05-27 23:10:31 +0200 -catalogue-license lppl1.2 - -name swimgraf -category Package -revision 25446 -shortdesc Graphical/textual representations of swimming performances -relocated 1 -longdesc The package provides two macros that produce representations of -longdesc a swimmer's performances. The user records data in a text file -longdesc and specifies as arguments of the macros the date range of -longdesc interest. The macros extract the relevant information from the -longdesc file and process it: \swimgraph produces a graph of the times -longdesc in a single swimming event (specified as an argument), plotting -longdesc long course and short course times in separate lines. Records -longdesc and qualifying times, stored in text files, may optionally be -longdesc included on the graph. \swimtext produces a written record of -longdesc the times in all events. Files of current world and Canadian -longdesc records are included. The package requires the PSTricks and -longdesc keyval packages. For attractive output it also requires a -longdesc colour output device. -runfiles size=13 - RELOC/tex/latex/swimgraf/swimgraf.cfg - RELOC/tex/latex/swimgraf/swimgraf.sty -docfiles size=46 - RELOC/doc/latex/swimgraf/100br1.pdf - RELOC/doc/latex/swimgraf/100br1.tex - RELOC/doc/latex/swimgraf/100br2.pdf - RELOC/doc/latex/swimgraf/100br2.tex - RELOC/doc/latex/swimgraf/README - RELOC/doc/latex/swimgraf/README.TEXLIVE - RELOC/doc/latex/swimgraf/fcanada.dat - RELOC/doc/latex/swimgraf/fcanada11.dat - RELOC/doc/latex/swimgraf/fcanada12.dat - RELOC/doc/latex/swimgraf/fcanada13.dat - RELOC/doc/latex/swimgraf/fcanada14.dat - RELOC/doc/latex/swimgraf/fcanada15.dat - RELOC/doc/latex/swimgraf/fcanada16.dat - RELOC/doc/latex/swimgraf/fcanada17.dat - RELOC/doc/latex/swimgraf/fontario10.dat - RELOC/doc/latex/swimgraf/fontario11.dat - RELOC/doc/latex/swimgraf/fontario12.dat - RELOC/doc/latex/swimgraf/fontario13.dat - RELOC/doc/latex/swimgraf/fontario14.dat - RELOC/doc/latex/swimgraf/fontario15.dat - RELOC/doc/latex/swimgraf/fontario16.dat - RELOC/doc/latex/swimgraf/fontario17.dat - RELOC/doc/latex/swimgraf/fontario8.dat - RELOC/doc/latex/swimgraf/fontario9.dat - RELOC/doc/latex/swimgraf/fworld.dat - RELOC/doc/latex/swimgraf/mcanada.dat - RELOC/doc/latex/swimgraf/mworld.dat - RELOC/doc/latex/swimgraf/sample1.dat - RELOC/doc/latex/swimgraf/sample2.dat - RELOC/doc/latex/swimgraf/text1.pdf - RELOC/doc/latex/swimgraf/text1.tex - RELOC/doc/latex/swimgraf/text2.pdf - RELOC/doc/latex/swimgraf/text2.tex -catalogue-ctan /macros/latex/contrib/swimgraf -catalogue-date 2012-06-11 14:51:53 +0200 -catalogue-license lppl - -name syllogism -category Package -revision 15878 -shortdesc Typeset syllogisms in LaTeX. -relocated 1 -longdesc The package provides a simple, configurable, way for neatly -longdesc typesetting syllogisms and syllogistic-like arguments, composed -longdesc of two premises and a conclusion. -runfiles size=3 - RELOC/tex/latex/syllogism/syllogism.sty -docfiles size=95 - RELOC/doc/latex/syllogism/Examples.pdf - RELOC/doc/latex/syllogism/Examples.tex - RELOC/doc/latex/syllogism/README - RELOC/doc/latex/syllogism/syllogism.pdf - RELOC/doc/latex/syllogism/syllogism.tex -catalogue-ctan /macros/latex/contrib/syllogism -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.2 - -name symbol -category Package -revision 31835 -catalogue urw-base35 -shortdesc URW "Base 35" font pack for LaTeX. -relocated 1 -longdesc A set of fonts for use as "drop-in" replacements for Adobe's -longdesc basic set, comprising: Century Schoolbook (substituting for -longdesc Adobe's New Century Schoolbook); Dingbats (substituting for -longdesc Adobe's Zapf Dingbats); Nimbus Mono L (substituting for Abobe's -longdesc Courier); Nimbus Roman No9 L (substituting for Adobe's Times); -longdesc Nimbus Sans L (substituting for Adobe's Helvetica); Standard -longdesc Symbols L (substituting for Adobe's Symbol); URW Bookman; URW -longdesc Chancery L Medium Italic (substituting for Adobe's Zapf -longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant -longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). -execute addMap usy.map -runfiles size=25 - RELOC/dvips/symbol/config.usy - RELOC/fonts/afm/adobe/symbol/psyb.afm - RELOC/fonts/afm/adobe/symbol/psyr.afm - RELOC/fonts/afm/urw/symbol/usyr.afm - RELOC/fonts/map/dvips/symbol/usy.map - RELOC/fonts/tfm/adobe/symbol/psyr.tfm - RELOC/fonts/tfm/monotype/symbol/msyr.tfm - RELOC/fonts/tfm/urw35vf/symbol/usyr.tfm - RELOC/fonts/type1/urw/symbol/usyr.pfb - RELOC/fonts/type1/urw/symbol/usyr.pfm - RELOC/tex/latex/symbol/uusy.fd -catalogue-ctan /fonts/urw/base35 -catalogue-date 2014-06-07 20:47:53 +0200 -catalogue-license gpl - -name sympytexpackage -category Package -revision 34176 -relocated 1 -runfiles size=4 - RELOC/scripts/sympytexpackage/sympytex.py - RELOC/tex/latex/sympytexpackage/sympytex.sty -docfiles size=191 - RELOC/doc/latex/sympytexpackage/README - RELOC/doc/latex/sympytexpackage/example.pdf - RELOC/doc/latex/sympytexpackage/sympytexpackage.pdf -srcfiles size=15 - RELOC/source/latex/sympytexpackage/sympytexpackage.dtx - RELOC/source/latex/sympytexpackage/sympytexpackage.ins - -name synctex -category TLCore -revision 37078 -depend synctex.ARCH -docfiles size=8 - texmf-dist/doc/man/man1/synctex.1 - texmf-dist/doc/man/man1/synctex.man1.pdf - texmf-dist/doc/man/man5/synctex.5 - texmf-dist/doc/man/man5/synctex.man5.pdf - -name synctex.i386-linux -category TLCore -revision 36790 -shortdesc i386-linux files of synctex -binfiles arch=i386-linux size=46 - bin/i386-linux/synctex - -name synproof -category Package -revision 15878 -shortdesc Easy drawing of syntactic proofs. -relocated 1 -longdesc The package provides a set of macros based on PSTricks that -longdesc will enable you to draw syntactic proofs easily (inspired by -longdesc the Gamut books). Very few commands are needed, however fine -longdesc tuning of the various parameters (dimensions) can still be -longdesc achieved through "key=value" pairs. -runfiles size=2 - RELOC/tex/latex/synproof/synproof.sty -docfiles size=21 - RELOC/doc/latex/synproof/README - RELOC/doc/latex/synproof/synproof-doc.pdf - RELOC/doc/latex/synproof/synproof-doc.tex -catalogue-ctan /macros/latex/contrib/synproof -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 - -name syntax -category Package -revision 15878 -catalogue syntax2 -shortdesc Creation of syntax diagrams. -relocated 1 -longdesc Create syntax diagrams using special environments and commands -longdesc to represent the diagram structure. -runfiles size=3 - RELOC/tex/latex/syntax/syntax.tex -docfiles size=35 - RELOC/doc/latex/syntax/README - RELOC/doc/latex/syntax/syntaxintro.pdf - RELOC/doc/latex/syntax/syntaxintro.tex - RELOC/doc/latex/syntax/syntaxtest.pdf - RELOC/doc/latex/syntax/syntaxtest.tex -catalogue-ctan /macros/latex/contrib/syntax -catalogue-date 2012-01-31 13:03:20 +0100 -catalogue-license gpl - -name syntrace -category Package -revision 15878 -shortdesc Labels for tracing in a syntax tree. -relocated 1 -longdesc This package adds support for traces in trees created using -longdesc either the synttree or the qtree package. The package provides -longdesc two commands (\traceLabel and \traceReference) to set and use a -longdesc trace. -runfiles size=1 - RELOC/tex/latex/syntrace/syntrace.sty -docfiles size=17 - RELOC/doc/latex/syntrace/README - RELOC/doc/latex/syntrace/syntrace.pdf -srcfiles size=3 - RELOC/source/latex/syntrace/syntrace.dtx - RELOC/source/latex/syntrace/syntrace.ins -catalogue-ctan /macros/latex/contrib/syntrace -catalogue-date 2012-06-04 22:31:14 +0200 -catalogue-license lppl -catalogue-version 1.1 - -name synttree -category Package -revision 16252 -shortdesc Typeset syntactic trees. -relocated 1 -longdesc A package to typeset syntactic trees such as those used in -longdesc Chomsky's Generative grammar, based on a description of the -longdesc structure of the tree. -runfiles size=4 - RELOC/tex/latex/synttree/synttree.sty -docfiles size=41 - RELOC/doc/latex/synttree/README - RELOC/doc/latex/synttree/synttree.pdf -srcfiles size=10 - RELOC/source/latex/synttree/synttree.dtx - RELOC/source/latex/synttree/synttree.ins -catalogue-ctan /macros/latex/contrib/synttree -catalogue-date 2012-06-11 14:51:53 +0200 -catalogue-license lppl -catalogue-version 1.4.2 - -name systeme -category Package -revision 32473 -shortdesc Format systems of equations. -relocated 1 -longdesc The package allows you to enter systems of equations or -longdesc inequalities in an intuitive way, and produces typeset output -longdesc where the terms and signs are aligned vertically. The package -longdesc works with plain TeX or LaTeX, but e-TeX is required. Cette -longdesc petite extension permet de saisir des systemes d'equations ou -longdesc inequations de facon intuitive, et produit un affichage ou les -longdesc termes et les signes sont alignes verticalement. -runfiles size=8 - RELOC/tex/generic/systeme/systeme.sty - RELOC/tex/generic/systeme/systeme.tex -docfiles size=124 - RELOC/doc/generic/systeme/systeme_doc_fr.pdf - RELOC/doc/generic/systeme/systeme_doc_fr.tex -catalogue-ctan /macros/generic/systeme -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.3 - -name t2 -category Package -revision 29349 -shortdesc Support for using T2 encoding. -relocated 1 -longdesc The T2 bundle provides a variety of separate support functions, -longdesc for using Cyrillic characters in LaTeX: - the mathtext package, -longdesc for using Cyrillic letters 'transparently' in formulae - the -longdesc citehack package, for using Cyrillic (or indeed any non-ascii) -longdesc characters in citation keys; - support for Cyrillic in BibTeX; - -longdesc support for Cyrillic in Makeindex; and - various items of font -longdesc support. -execute AddFormat name=cyramstex mode=disabled engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx *cyramstx.ini" -execute AddFormat name=cyrtex mode=disabled engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx *cyrtex.ini" -execute AddFormat name=cyrtexinfo mode=disabled engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx *cyrtxinf.ini" -runfiles size=109 - RELOC/fonts/enc/t2/t2a-mod1.enc - RELOC/fonts/enc/t2/t2a-mod2.enc - RELOC/fonts/enc/t2/t2a.enc - RELOC/fonts/enc/t2/t2b.enc - RELOC/fonts/enc/t2/t2c.enc - RELOC/fonts/enc/t2/x2.enc - RELOC/tex/generic/t2/cyrfinst/6r.etx - RELOC/tex/generic/t2/cyrfinst/README - RELOC/tex/generic/t2/cyrfinst/cyrillic.mtx - RELOC/tex/generic/t2/cyrfinst/derivatives/lcyc.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/lcyci.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/lcycij.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/lcycj.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/lcyctt.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/lcyi.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/lcyij.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/lcyitt.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/lcyj.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/lcytt.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/ot2c.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/ot2cj.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/ot2i.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/ot2ij.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/ot2j.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/t2ac.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/t2acj.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/t2ai.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/t2aij.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/t2aj.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/t2bc.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/t2bcj.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/t2bi.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/t2bij.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/t2bj.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/t2cc.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/t2ccj.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/t2ci.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/t2cij.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/t2cj.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/x2c.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/x2cj.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/x2i.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/x2ij.etx - RELOC/tex/generic/t2/cyrfinst/derivatives/x2j.etx - RELOC/tex/generic/t2/cyrfinst/etc/alias-cmc.tex - RELOC/tex/generic/t2/cyrfinst/etc/alias-wncy.tex - RELOC/tex/generic/t2/cyrfinst/etc/cyralias.tex - RELOC/tex/generic/t2/cyrfinst/etc/fnstcorr.tex - RELOC/tex/generic/t2/cyrfinst/etc/showenc - RELOC/tex/generic/t2/cyrfinst/lcy-hi.etx - RELOC/tex/generic/t2/cyrfinst/lcy.etx - RELOC/tex/generic/t2/cyrfinst/ot2.etx - RELOC/tex/generic/t2/cyrfinst/t2a.etx - RELOC/tex/generic/t2/cyrfinst/t2b.etx - RELOC/tex/generic/t2/cyrfinst/t2c.etx - RELOC/tex/generic/t2/cyrfinst/x2.etx - RELOC/tex/latex/t2/citehack.sty - RELOC/tex/latex/t2/mathtext.sty - RELOC/tex/latex/t2/misccorr.sty -docfiles size=66 - RELOC/doc/generic/t2/Makefile - RELOC/doc/generic/t2/OT2uni.map - RELOC/doc/generic/t2/README - RELOC/doc/generic/t2/T2Auni.map - RELOC/doc/generic/t2/T2Buni.map - RELOC/doc/generic/t2/T2Cuni.map - RELOC/doc/generic/t2/X2uni.map - RELOC/doc/generic/t2/amscyr.txt - RELOC/doc/generic/t2/broken1.txt - RELOC/doc/generic/t2/broken2.txt - RELOC/doc/generic/t2/cyrcset7.txt - RELOC/doc/generic/t2/cyrcset8.txt - RELOC/doc/generic/t2/cyrcsets.ind - RELOC/doc/generic/t2/etc/amsppt.diff - RELOC/doc/generic/t2/etc/mathtext.dtx - RELOC/doc/generic/t2/etc/mathtext.ins - RELOC/doc/generic/t2/etc/rubibtex/README - RELOC/doc/generic/t2/etc/rubibtex/rubibtex - RELOC/doc/generic/t2/etc/rubibtex/rubibtex.bat - RELOC/doc/generic/t2/etc/rubibtex/rubibtex.old - RELOC/doc/generic/t2/etc/rubibtex/rubibtex.sed - RELOC/doc/generic/t2/etc/ruinpenc - RELOC/doc/generic/t2/etc/rumkidx/README - RELOC/doc/generic/t2/etc/rumkidx/rumakeindex - RELOC/doc/generic/t2/etc/rumkidx/rumkidx1.sed - RELOC/doc/generic/t2/etc/rumkidx/rumkidx2.sed - RELOC/doc/generic/t2/etc/rumkidx/rumkidx3.sed - RELOC/doc/generic/t2/etc/rumkidx/rumkidxd.bat - RELOC/doc/generic/t2/etc/rumkidx/rumkidxw.bat - RELOC/doc/generic/t2/etc/t2filter.c - RELOC/doc/generic/t2/etc/utf-8/test-utf8.tex - RELOC/doc/generic/t2/etc/utf-8/utf-8.def - RELOC/doc/generic/t2/etc/utf-8/utfcyr.def - RELOC/doc/generic/t2/etc/utf-8/utflat.def - RELOC/doc/generic/t2/examples/example1.tex - RELOC/doc/generic/t2/examples/example2.tex - RELOC/doc/generic/t2/examples/example3.tex - RELOC/doc/generic/t2/examples/example4.tex - RELOC/doc/generic/t2/examples/example5.tex - RELOC/doc/generic/t2/make-enc.pl - RELOC/doc/generic/t2/mkencs.sh - RELOC/doc/generic/t2/mtcyr.txt - RELOC/doc/generic/t2/t2cyr.txt - RELOC/doc/generic/t2/t2lat.txt - RELOC/doc/generic/t2/urwcyr.txt -catalogue-ctan /macros/latex/contrib/t2 -catalogue-date 2012-06-05 14:57:36 +0200 -catalogue-license lppl - -name Tabbing -category Package -revision 17022 -shortdesc Tabbing with accented letters. -relocated 1 -longdesc By default, some of the tabbing environment's commands clash -longdesc with default accent commands; LaTeX provides the odd commands -longdesc \a', etc., to deal with the clash. The package offers a variant -longdesc of the tabbing environment which does not create this -longdesc difficulty, so that users need not learn two sets of accent -longdesc commands. -runfiles size=1 - RELOC/tex/latex/Tabbing/Tabbing.sty -docfiles size=58 - RELOC/doc/latex/Tabbing/00readme - RELOC/doc/latex/Tabbing/Tabbing.pdf -srcfiles size=3 - RELOC/source/latex/Tabbing/Tabbing.dtx - RELOC/source/latex/Tabbing/Tabbing.ins -catalogue-ctan /macros/latex/contrib/Tabbing -catalogue-date 2013-10-03 14:20:59 +0200 -catalogue-license lppl1 - -name tabfigures -category Package -revision 25202 -shortdesc Maintain vertical alignment of figures. -relocated 1 -longdesc Knuth designed his original fonts with tabular figures (figures -longdesc whose width is uniform); this makes some layout problems rather -longdesc simple. In more recent times, fonts (such as Minion Pro), which -longdesc offer proportionally spaced figures, are increasingly being -longdesc used. The package provides mechanisms whereby such proportional -longdesc figures may still be aligned in tabular style (for example, in -longdesc the table of contents). -runfiles size=2 - RELOC/tex/latex/tabfigures/tabfigures.sty -docfiles size=61 - RELOC/doc/latex/tabfigures/README - RELOC/doc/latex/tabfigures/tabfigures.pdf -srcfiles size=5 - RELOC/source/latex/tabfigures/tabfigures.dtx - RELOC/source/latex/tabfigures/tabfigures.ins -catalogue-ctan /macros/latex/contrib/tabfigures -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.1 - -name tableaux -category Package -revision 34843 -shortdesc Construct tables of signs and variations. -relocated 1 -longdesc The package uses PStricks; the user may define the width of the -longdesc table, the number of lines and the height of each line. -longdesc Placement of labels within the boxes may be absolute, or as a -longdesc percentage of the width; various other controls are available. -runfiles size=3 - RELOC/tex/latex/tableaux/minimum.sty - RELOC/tex/latex/tableaux/tableau.sty -docfiles size=25 - RELOC/doc/latex/tableaux/exemples.pdf - RELOC/doc/latex/tableaux/exemples.tex - RELOC/doc/latex/tableaux/tableau.pdf - RELOC/doc/latex/tableaux/tableau.tex -catalogue-ctan /macros/latex/contrib/tableaux -catalogue-date 2012-04-10 17:31:04 +0200 -catalogue-license lppl - -name tablefootnote -category Package -revision 32804 -shortdesc Permit footnotes in tables. -relocated 1 -longdesc The package provides the command \tablefootnote to be used in a -longdesc table or sidewaystable environment, where \footnote will not -longdesc work (and when using \footnotemark and \footnotetext, and -longdesc adjusting the counter as necessary, is too much work). -runfiles size=5 - RELOC/tex/latex/tablefootnote/tablefootnote.sty -docfiles size=128 - RELOC/doc/latex/tablefootnote/README - RELOC/doc/latex/tablefootnote/tablefootnote-example.pdf - RELOC/doc/latex/tablefootnote/tablefootnote-example.tex - RELOC/doc/latex/tablefootnote/tablefootnote.pdf -srcfiles size=20 - RELOC/source/latex/tablefootnote/tablefootnote.drv - RELOC/source/latex/tablefootnote/tablefootnote.dtx - RELOC/source/latex/tablefootnote/tablefootnote.ins -catalogue-ctan /macros/latex/contrib/tablefootnote -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.1c - -name tableof -category Package -revision 36489 -shortdesc Tagging tables of contents. -relocated 1 -longdesc The package provides the commands to flag chapters or sections -longdesc (or anything else destined to become a TOC line). The command -longdesc \nexttocwithtags{req1,req2,...}{excl1,excl2,...} specifies -longdesc which tags are to be required and which ones are to be excluded -longdesc by the next \tableofcontents (or equivalent) command. In a -longdesc document that uses a class where \tableofcontents may only be -longdesc used once, the command -longdesc \tableoftaggedcontents{req1,req2,...}{excl1,excl2,...} may be -longdesc used to provide several tables. -runfiles size=2 - RELOC/tex/latex/tableof/tableof.sty -docfiles size=16 - RELOC/doc/latex/tableof/README - RELOC/doc/latex/tableof/README.md - RELOC/doc/latex/tableof/tableof.pdf -srcfiles size=10 - RELOC/source/latex/tableof/tableof.dtx - RELOC/source/latex/tableof/tableof.ins -catalogue-ctan /macros/latex/contrib/tableof -catalogue-date 2015-03-11 06:09:26 +0100 -catalogue-license lppl1.3 -catalogue-version 1.4a - -name tablestyles -category Package -revision 34495 -relocated 1 -runfiles size=2 - RELOC/tex/latex/tablestyles/tablestyles.sty -docfiles size=113 - RELOC/doc/latex/tablestyles/README - RELOC/doc/latex/tablestyles/tablestyles.pdf -srcfiles size=12 - RELOC/source/latex/tablestyles/tablestyles.dtx - RELOC/source/latex/tablestyles/tablestyles.ins - -name tablists -category Package -revision 15878 -shortdesc Tabulated lists of short items. -relocated 1 -longdesc This package offers environments and commands for one-level and -longdesc two-level lists of short items (e.g., exercises in textbooks). -longdesc The environments support optional arguments of item numbering -longdesc similar to the enumerate or paralist packages. -runfiles size=2 - RELOC/tex/latex/tablists/tablists.sty -docfiles size=69 - RELOC/doc/latex/tablists/README - RELOC/doc/latex/tablists/tablists-rus.pdf - RELOC/doc/latex/tablists/tablists-rus.tex - RELOC/doc/latex/tablists/tablists.pdf -srcfiles size=8 - RELOC/source/latex/tablists/tablists.dtx -catalogue-ctan /macros/latex/contrib/tablists -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.0e - -name tablor -category Package -revision 31855 -shortdesc Create tables of signs and of variations. -relocated 1 -longdesc The package allows the user to use the computer algebra system -longdesc XCAS to generate tables of signs and of variations (the actual -longdesc plotting of the tables uses the MetaPost macro package -longdesc tableauVariations). Tables with forbidden regions may be -longdesc developed using the package. A configuration file permits some -longdesc configuration of the language to be used in the diagrams. The -longdesc tablor package requires that shell escape be enabled. -runfiles size=48 - RELOC/tex/latex/tablor/tablor-xetex.sty - RELOC/tex/latex/tablor/tablor.cfg - RELOC/tex/latex/tablor/tablor.sty -docfiles size=293 - RELOC/doc/latex/tablor/Figures/TSav-105.mp - RELOC/doc/latex/tablor/Figures/capture.eps - RELOC/doc/latex/tablor/Figures/tablor_Tab.0 - RELOC/doc/latex/tablor/Figures/tablor_Tab.1 - RELOC/doc/latex/tablor/Figures/tablor_Tab.10 - RELOC/doc/latex/tablor/Figures/tablor_Tab.105 - RELOC/doc/latex/tablor/Figures/tablor_Tab.11 - RELOC/doc/latex/tablor/Figures/tablor_Tab.12 - RELOC/doc/latex/tablor/Figures/tablor_Tab.13 - RELOC/doc/latex/tablor/Figures/tablor_Tab.14 - RELOC/doc/latex/tablor/Figures/tablor_Tab.15 - RELOC/doc/latex/tablor/Figures/tablor_Tab.16 - RELOC/doc/latex/tablor/Figures/tablor_Tab.17 - RELOC/doc/latex/tablor/Figures/tablor_Tab.18 - RELOC/doc/latex/tablor/Figures/tablor_Tab.19 - RELOC/doc/latex/tablor/Figures/tablor_Tab.2 - RELOC/doc/latex/tablor/Figures/tablor_Tab.20 - RELOC/doc/latex/tablor/Figures/tablor_Tab.21 - RELOC/doc/latex/tablor/Figures/tablor_Tab.22 - RELOC/doc/latex/tablor/Figures/tablor_Tab.23 - RELOC/doc/latex/tablor/Figures/tablor_Tab.24 - RELOC/doc/latex/tablor/Figures/tablor_Tab.25 - RELOC/doc/latex/tablor/Figures/tablor_Tab.26 - RELOC/doc/latex/tablor/Figures/tablor_Tab.27 - RELOC/doc/latex/tablor/Figures/tablor_Tab.28 - RELOC/doc/latex/tablor/Figures/tablor_Tab.29 - RELOC/doc/latex/tablor/Figures/tablor_Tab.3 - RELOC/doc/latex/tablor/Figures/tablor_Tab.30 - RELOC/doc/latex/tablor/Figures/tablor_Tab.31 - RELOC/doc/latex/tablor/Figures/tablor_Tab.32 - RELOC/doc/latex/tablor/Figures/tablor_Tab.33 - RELOC/doc/latex/tablor/Figures/tablor_Tab.35 - RELOC/doc/latex/tablor/Figures/tablor_Tab.36 - RELOC/doc/latex/tablor/Figures/tablor_Tab.37 - RELOC/doc/latex/tablor/Figures/tablor_Tab.38 - RELOC/doc/latex/tablor/Figures/tablor_Tab.39 - RELOC/doc/latex/tablor/Figures/tablor_Tab.4 - RELOC/doc/latex/tablor/Figures/tablor_Tab.40 - RELOC/doc/latex/tablor/Figures/tablor_Tab.41 - RELOC/doc/latex/tablor/Figures/tablor_Tab.42 - RELOC/doc/latex/tablor/Figures/tablor_Tab.43 - RELOC/doc/latex/tablor/Figures/tablor_Tab.44 - RELOC/doc/latex/tablor/Figures/tablor_Tab.45 - RELOC/doc/latex/tablor/Figures/tablor_Tab.47 - RELOC/doc/latex/tablor/Figures/tablor_Tab.48 - RELOC/doc/latex/tablor/Figures/tablor_Tab.49 - RELOC/doc/latex/tablor/Figures/tablor_Tab.5 - RELOC/doc/latex/tablor/Figures/tablor_Tab.50 - RELOC/doc/latex/tablor/Figures/tablor_Tab.51 - RELOC/doc/latex/tablor/Figures/tablor_Tab.52 - RELOC/doc/latex/tablor/Figures/tablor_Tab.53 - RELOC/doc/latex/tablor/Figures/tablor_Tab.54 - RELOC/doc/latex/tablor/Figures/tablor_Tab.55 - RELOC/doc/latex/tablor/Figures/tablor_Tab.56 - RELOC/doc/latex/tablor/Figures/tablor_Tab.57 - RELOC/doc/latex/tablor/Figures/tablor_Tab.6 - RELOC/doc/latex/tablor/Figures/tablor_Tab.7 - RELOC/doc/latex/tablor/Figures/tablor_Tab.8 - RELOC/doc/latex/tablor/Figures/tablor_Tab.9 - RELOC/doc/latex/tablor/Figures/tablor_Tab.mp - RELOC/doc/latex/tablor/README - RELOC/doc/latex/tablor/README-fr.txt - RELOC/doc/latex/tablor/auto/tablor-xetex.el - RELOC/doc/latex/tablor/auto/tablor.el - RELOC/doc/latex/tablor/tablor.html - RELOC/doc/latex/tablor/tablor.pdf - RELOC/doc/latex/tablor/tablor.tex -catalogue-ctan /macros/latex/contrib/tablor -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 4.07-g - -name tabls -category Package -revision 17255 -shortdesc Better vertical spacing in tables and arrays. -relocated 1 -longdesc Modifies LaTeX's array and tabular environments to keep text -longdesc from touching other text or hlines above or below. Several new -longdesc parameters are defined and some standard macros are re-defined. -longdesc The package slows down compilation of tables, since each entry -longdesc is boxed twice. -runfiles size=3 - RELOC/tex/latex/tabls/tabls.sty -docfiles size=59 - RELOC/doc/latex/tabls/miscdoc.sty - RELOC/doc/latex/tabls/tabls.pdf - RELOC/doc/latex/tabls/tabls.tex -catalogue-ctan /macros/latex/contrib/tabls -catalogue-date 2011-09-27 11:41:05 +0200 -catalogue-license other-free -catalogue-version 3.5 - -name tabriz-thesis -category Package -revision 29421 -shortdesc A template for the University of Tabriz. -relocated 1 -longdesc The package offers a document class for typesetting theses and -longdesc dissertations at the University of Tabriz. The class requires -longdesc use of XeLaTeX. -runfiles size=3 - RELOC/tex/latex/tabriz-thesis/tabriz-thesis.cls -docfiles size=85 - RELOC/doc/latex/tabriz-thesis/README - RELOC/doc/latex/tabriz-thesis/appendix1.tex - RELOC/doc/latex/tabriz-thesis/chapter1.tex - RELOC/doc/latex/tabriz-thesis/chapter2.tex - RELOC/doc/latex/tabriz-thesis/chapter3.tex - RELOC/doc/latex/tabriz-thesis/dicen2fa.tex - RELOC/doc/latex/tabriz-thesis/dicfa2en.tex - RELOC/doc/latex/tabriz-thesis/en-title.tex - RELOC/doc/latex/tabriz-thesis/fa-title.tex - RELOC/doc/latex/tabriz-thesis/logo.jpg - RELOC/doc/latex/tabriz-thesis/references.tex - RELOC/doc/latex/tabriz-thesis/tabriz-thesis.pdf - RELOC/doc/latex/tabriz-thesis/tabriz-thesis.tex -catalogue-ctan /macros/latex/contrib/tabriz-thesis -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.1 - -name tabstackengine -category Package -revision 33006 -shortdesc "Tabbing" front-end to stackengine. -relocated 1 -longdesc The package provides a front end to the stackengine package, to -longdesc allow tabbed stacking. In most cases, an existing stackengine -longdesc command may be prepended with the word "tabbed", "align" or -longdesc "tabular" to create a new tabbed version of a stacking macro. -longdesc In addition, hooks in the package's parser, that tabbed strings -longdesc of data may be parsed, extracted and reconstituted (not -longdesc requiring use of any stacking constructions). -runfiles size=3 - RELOC/tex/latex/tabstackengine/tabstackengine.sty -docfiles size=83 - RELOC/doc/latex/tabstackengine/README - RELOC/doc/latex/tabstackengine/tabstackengine.pdf - RELOC/doc/latex/tabstackengine/tabstackengine.tex -catalogue-ctan /macros/latex/contrib/tabstackengine -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.10 - -name tabto-generic -category Package -revision 15878 -shortdesc "Tab" to a measured position in the line. -relocated 1 -longdesc \tabto{} moves the typesetting position to -longdesc from the left margin of the paragraph. If the typesetting -longdesc position is already further along, \tabto starts a new line. -runfiles size=1 - RELOC/tex/generic/tabto-generic/tabto.tex -catalogue-ctan /macros/generic/misc/tabto.tex -catalogue-date 2012-06-21 14:54:52 +0200 -catalogue-license pd - -name tabto-ltx -category Package -revision 30710 -shortdesc "Tab" to a measured position in the line. -relocated 1 -longdesc \tabto{} moves the typesetting position to -longdesc from the left margin of the paragraph. If the typesetting -longdesc position is already further along, \tabto starts a new line; -longdesc the command \tabto* will move position backwards if necessary, -longdesc so that previous text may be overwritten. The command -longdesc \TabPositions may be used to define a set of tabbing positions, -longdesc after which the command \tab advances typesetting position to -longdesc the next defined 'tab stop'. -runfiles size=2 - RELOC/tex/latex/tabto-ltx/tabto.sty -docfiles size=30 - RELOC/doc/latex/tabto-ltx/tabto-doc.pdf - RELOC/doc/latex/tabto-ltx/tabto-doc.tex -catalogue-ctan /macros/latex/contrib/tabto -catalogue-date 2013-09-30 15:04:43 +0200 -catalogue-license lppl -catalogue-version 1.3 - -name tabularborder -category Package -revision 17885 -shortdesc Remove excess space at left and right of tabular. -relocated 1 -longdesc The tabular environment is changed so that the outer -longdesc \tabcolseps are compensated and a \hline has the same length as -longdesc the text. No @{} is needed. -runfiles size=1 - RELOC/tex/latex/tabularborder/tabularborder.sty -docfiles size=29 - RELOC/doc/latex/tabularborder/tabularborder.pdf -srcfiles size=5 - RELOC/source/latex/tabularborder/tabularborder.dtx - RELOC/source/latex/tabularborder/tabularborder.ins -catalogue-ctan /macros/latex/contrib/tabularborder -catalogue-date 2011-09-27 11:41:05 +0200 -catalogue-license lppl1.2 -catalogue-version 1.0a - -name tabularcalc -category Package -revision 15878 -shortdesc Calculate formulas in a tabular environment. -relocated 1 -longdesc Given a list of numbers and one (or more) formulas, the package -longdesc offers an easy syntax to build a table of values, i.e., a -longdesc tabular in which the first row contains the list of numbers, -longdesc and the other rows contain the calculated values of the -longdesc formulas for each number of the list. The table may be built -longdesc either horizontally or vertically and is fully customizable. -runfiles size=5 - RELOC/tex/latex/tabularcalc/tabularcalc.sty -docfiles size=261 - RELOC/doc/latex/tabularcalc/README - RELOC/doc/latex/tabularcalc/tabularcalc_doc_en.pdf - RELOC/doc/latex/tabularcalc/tabularcalc_doc_en.tex - RELOC/doc/latex/tabularcalc/tabularcalc_doc_fr.pdf - RELOC/doc/latex/tabularcalc/tabularcalc_doc_fr.tex - RELOC/doc/latex/tabularcalc/tabularcalc_doc_vn.pdf - RELOC/doc/latex/tabularcalc/tabularcalc_doc_vn.tex -catalogue-ctan /macros/latex/contrib/tabularcalc -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.2 - -name tabularew -category Package -revision 15878 -shortdesc A variation on the tabular environment. -relocated 1 -longdesc The package offers a modification of the tabular environment, -longdesc which deals with the problem of column heads that are -longdesc significantly wider than the body of the column. -runfiles size=2 - RELOC/tex/latex/tabularew/tabularew.sty -docfiles size=43 - RELOC/doc/latex/tabularew/README - RELOC/doc/latex/tabularew/tabularew.pdf -srcfiles size=7 - RELOC/source/latex/tabularew/tabularew.dtx - RELOC/source/latex/tabularew/tabularew.ins -catalogue-ctan /macros/latex/contrib/tabularew -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.1 - -name tabulars-e -category Package -revision 21191 -shortdesc Examples from the book "Typesetting tables with LaTeX". -relocated 1 -longdesc The bundle presents the examples of the book "Typesetting -longdesc tables with LaTeX" (ISBN 978-1-906860-25-7), as standalone -longdesc documents. -docfiles size=350 - RELOC/doc/latex/tabulars-e/01-01-1.ltxps - RELOC/doc/latex/tabulars-e/01-01-10.ltx - RELOC/doc/latex/tabulars-e/01-01-11.ltx - RELOC/doc/latex/tabulars-e/01-01-12.ltx - RELOC/doc/latex/tabulars-e/01-01-13.ltx - RELOC/doc/latex/tabulars-e/01-01-14.ltx - RELOC/doc/latex/tabulars-e/01-01-15.ltx - RELOC/doc/latex/tabulars-e/01-01-16.ltx - RELOC/doc/latex/tabulars-e/01-01-17.ltx - RELOC/doc/latex/tabulars-e/01-01-18.ltx - RELOC/doc/latex/tabulars-e/01-01-19.ltx - RELOC/doc/latex/tabulars-e/01-01-2.ltx - RELOC/doc/latex/tabulars-e/01-01-3.ltx - RELOC/doc/latex/tabulars-e/01-01-4.ltx - RELOC/doc/latex/tabulars-e/01-01-5.ltx - RELOC/doc/latex/tabulars-e/01-01-6.ltx - RELOC/doc/latex/tabulars-e/01-01-7.ltx - RELOC/doc/latex/tabulars-e/01-01-8.ltx - RELOC/doc/latex/tabulars-e/01-01-9.ltx - RELOC/doc/latex/tabulars-e/01-02-1.ltxps - RELOC/doc/latex/tabulars-e/01-02-10.ltx - RELOC/doc/latex/tabulars-e/01-02-2.ltx - RELOC/doc/latex/tabulars-e/01-02-3.ltx - RELOC/doc/latex/tabulars-e/01-02-4.ltx - RELOC/doc/latex/tabulars-e/01-02-5.ltx - RELOC/doc/latex/tabulars-e/01-02-6.ltx - RELOC/doc/latex/tabulars-e/01-02-7.ltx - RELOC/doc/latex/tabulars-e/01-02-8.ltx - RELOC/doc/latex/tabulars-e/01-02-9.ltx - RELOC/doc/latex/tabulars-e/02-01-1.ltx - RELOC/doc/latex/tabulars-e/02-01-10.ltx - RELOC/doc/latex/tabulars-e/02-01-11.ltx - RELOC/doc/latex/tabulars-e/02-01-12.ltx - RELOC/doc/latex/tabulars-e/02-01-13.ltx - RELOC/doc/latex/tabulars-e/02-01-14.ltx - RELOC/doc/latex/tabulars-e/02-01-15.ltx - RELOC/doc/latex/tabulars-e/02-01-16.ltx - RELOC/doc/latex/tabulars-e/02-01-17.ltx - RELOC/doc/latex/tabulars-e/02-01-18.ltx - RELOC/doc/latex/tabulars-e/02-01-2.ltx - RELOC/doc/latex/tabulars-e/02-01-3.ltx - RELOC/doc/latex/tabulars-e/02-01-4.ltx - RELOC/doc/latex/tabulars-e/02-01-5.ltx - RELOC/doc/latex/tabulars-e/02-01-6.ltx - RELOC/doc/latex/tabulars-e/02-01-7.ltx - RELOC/doc/latex/tabulars-e/02-01-8.ltx - RELOC/doc/latex/tabulars-e/02-01-9.ltx - RELOC/doc/latex/tabulars-e/02-02-1.ltx - RELOC/doc/latex/tabulars-e/02-02-2.ltx - RELOC/doc/latex/tabulars-e/02-02-3.ltx - RELOC/doc/latex/tabulars-e/02-02-4.ltx - RELOC/doc/latex/tabulars-e/02-02-5.ltx - RELOC/doc/latex/tabulars-e/02-02-6.ltx - RELOC/doc/latex/tabulars-e/02-03-1.ltx - RELOC/doc/latex/tabulars-e/02-03-10.ltx - RELOC/doc/latex/tabulars-e/02-03-11.ltx - RELOC/doc/latex/tabulars-e/02-03-12.ltx - RELOC/doc/latex/tabulars-e/02-03-13.ltx - RELOC/doc/latex/tabulars-e/02-03-14.ltx - RELOC/doc/latex/tabulars-e/02-03-15.ltx - RELOC/doc/latex/tabulars-e/02-03-2.ltx - RELOC/doc/latex/tabulars-e/02-03-3.ltx - RELOC/doc/latex/tabulars-e/02-03-4.ltx - RELOC/doc/latex/tabulars-e/02-03-5.ltx - RELOC/doc/latex/tabulars-e/02-03-6.ltx - RELOC/doc/latex/tabulars-e/02-03-7.ltx - RELOC/doc/latex/tabulars-e/02-03-8.ltx - RELOC/doc/latex/tabulars-e/02-03-9.ltx - RELOC/doc/latex/tabulars-e/02-04-1.ltx - RELOC/doc/latex/tabulars-e/02-04-10.ltx - RELOC/doc/latex/tabulars-e/02-04-11.ltx2crop - RELOC/doc/latex/tabulars-e/02-04-2.ltx - RELOC/doc/latex/tabulars-e/02-04-3.ltx - RELOC/doc/latex/tabulars-e/02-04-4.ltx - RELOC/doc/latex/tabulars-e/02-04-5.ltx - RELOC/doc/latex/tabulars-e/02-04-6.ltx - RELOC/doc/latex/tabulars-e/02-04-7.ltx - RELOC/doc/latex/tabulars-e/02-04-8.ltx - RELOC/doc/latex/tabulars-e/02-04-9.ltx - RELOC/doc/latex/tabulars-e/02-05-1.ltx - RELOC/doc/latex/tabulars-e/02-05-10.ltx - RELOC/doc/latex/tabulars-e/02-05-11.ltx - RELOC/doc/latex/tabulars-e/02-05-2.ltx - RELOC/doc/latex/tabulars-e/02-05-3.ltx - RELOC/doc/latex/tabulars-e/02-05-4.ltx - RELOC/doc/latex/tabulars-e/02-05-5.ltx - RELOC/doc/latex/tabulars-e/02-05-6.ltx - RELOC/doc/latex/tabulars-e/02-05-7.ltx - RELOC/doc/latex/tabulars-e/02-05-8.ltx - RELOC/doc/latex/tabulars-e/02-05-9.ltx - RELOC/doc/latex/tabulars-e/02-06-1.ltx - RELOC/doc/latex/tabulars-e/02-06-2.ltx - RELOC/doc/latex/tabulars-e/02-06-3.ltx - RELOC/doc/latex/tabulars-e/02-06-4.ltx - RELOC/doc/latex/tabulars-e/02-06-5.ltx - RELOC/doc/latex/tabulars-e/02-07-1.ltx - RELOC/doc/latex/tabulars-e/02-07-2.ltx - RELOC/doc/latex/tabulars-e/02-07-3.ltx - RELOC/doc/latex/tabulars-e/02-07-4.ltx2 - RELOC/doc/latex/tabulars-e/02-07-5.ltx - RELOC/doc/latex/tabulars-e/02-08-1.ltx - RELOC/doc/latex/tabulars-e/02-08-2.ltx - RELOC/doc/latex/tabulars-e/02-08-3.ltx - RELOC/doc/latex/tabulars-e/02-08-4.ltx - RELOC/doc/latex/tabulars-e/02-08-5.ltx - RELOC/doc/latex/tabulars-e/02-08-6.ltx - RELOC/doc/latex/tabulars-e/02-08-7.ltx - RELOC/doc/latex/tabulars-e/02-08-8.ltx - RELOC/doc/latex/tabulars-e/02-09-1.ltx - RELOC/doc/latex/tabulars-e/02-09-2.ltx - RELOC/doc/latex/tabulars-e/02-09-3.ltx - RELOC/doc/latex/tabulars-e/02-10-1.ltx - RELOC/doc/latex/tabulars-e/02-11-1.ltx - RELOC/doc/latex/tabulars-e/02-11-10.ltx - RELOC/doc/latex/tabulars-e/02-11-11.ltx - RELOC/doc/latex/tabulars-e/02-11-12.ltx - RELOC/doc/latex/tabulars-e/02-11-13.ltx - RELOC/doc/latex/tabulars-e/02-11-2.ltx - RELOC/doc/latex/tabulars-e/02-11-3.ltx - RELOC/doc/latex/tabulars-e/02-11-4.ltx - RELOC/doc/latex/tabulars-e/02-11-5.ltx - RELOC/doc/latex/tabulars-e/02-11-6.ltx - RELOC/doc/latex/tabulars-e/02-11-7.ltx - RELOC/doc/latex/tabulars-e/02-11-8.ltx - RELOC/doc/latex/tabulars-e/02-11-9.ltx - RELOC/doc/latex/tabulars-e/02-12-1.ltx - RELOC/doc/latex/tabulars-e/02-12-2.ltx - RELOC/doc/latex/tabulars-e/02-13-1.ltx - RELOC/doc/latex/tabulars-e/02-13-2.ltx - RELOC/doc/latex/tabulars-e/02-13-3.ltx - RELOC/doc/latex/tabulars-e/02-13-4.ltx - RELOC/doc/latex/tabulars-e/02-14-1.ltx - RELOC/doc/latex/tabulars-e/02-14-10.ltx - RELOC/doc/latex/tabulars-e/02-14-11.ltx - RELOC/doc/latex/tabulars-e/02-14-12.ltx - RELOC/doc/latex/tabulars-e/02-14-13.ltx - RELOC/doc/latex/tabulars-e/02-14-14.ltx - RELOC/doc/latex/tabulars-e/02-14-15.ltx - RELOC/doc/latex/tabulars-e/02-14-2.ltx - RELOC/doc/latex/tabulars-e/02-14-3.ltx - RELOC/doc/latex/tabulars-e/02-14-4.ltx - RELOC/doc/latex/tabulars-e/02-14-5.ltx - RELOC/doc/latex/tabulars-e/02-14-6.ltx - RELOC/doc/latex/tabulars-e/02-14-7.ltx - RELOC/doc/latex/tabulars-e/02-14-8.ltx - RELOC/doc/latex/tabulars-e/02-14-9.ltx - RELOC/doc/latex/tabulars-e/02-15-1.ltx - RELOC/doc/latex/tabulars-e/02-15-2.ltx - RELOC/doc/latex/tabulars-e/02-15-3.ltx - RELOC/doc/latex/tabulars-e/02-16-1.ltx - RELOC/doc/latex/tabulars-e/02-16-2.ltx - RELOC/doc/latex/tabulars-e/02-16-3.ltx - RELOC/doc/latex/tabulars-e/02-17-1.ltx - RELOC/doc/latex/tabulars-e/02-17-2.ltx - RELOC/doc/latex/tabulars-e/02-17-3.ltx - RELOC/doc/latex/tabulars-e/02-17-4.ltx - RELOC/doc/latex/tabulars-e/02-17-5.ltx - RELOC/doc/latex/tabulars-e/02-18-1.ltx - RELOC/doc/latex/tabulars-e/02-18-2.ltx - RELOC/doc/latex/tabulars-e/02-18-3.ltx - RELOC/doc/latex/tabulars-e/02-18-4.ltx - RELOC/doc/latex/tabulars-e/02-18-5.ltx - RELOC/doc/latex/tabulars-e/02-19-1.ltx - RELOC/doc/latex/tabulars-e/02-19-2.ltx - RELOC/doc/latex/tabulars-e/02-20-1.ltx - RELOC/doc/latex/tabulars-e/02-20-2.ltx - RELOC/doc/latex/tabulars-e/02-20-3.ltx - RELOC/doc/latex/tabulars-e/02-20-4.ltx - RELOC/doc/latex/tabulars-e/02-21-1.ltx2 - RELOC/doc/latex/tabulars-e/02-21-2.ltx2 - RELOC/doc/latex/tabulars-e/02-21-3.ltx - RELOC/doc/latex/tabulars-e/02-21-4.ltx - RELOC/doc/latex/tabulars-e/02-22-1.ltx - RELOC/doc/latex/tabulars-e/02-22-2.ltx - RELOC/doc/latex/tabulars-e/02-22-3.ltx - RELOC/doc/latex/tabulars-e/02-22-4.ltx - RELOC/doc/latex/tabulars-e/02-23-1.ltx - RELOC/doc/latex/tabulars-e/02-23-2.ltx - RELOC/doc/latex/tabulars-e/02-23-3.ltx - RELOC/doc/latex/tabulars-e/02-23-4.ltx - RELOC/doc/latex/tabulars-e/02-24-1.ltx - RELOC/doc/latex/tabulars-e/02-24-2.ltx - RELOC/doc/latex/tabulars-e/02-24-3.ltx - RELOC/doc/latex/tabulars-e/02-24-4.ltx - RELOC/doc/latex/tabulars-e/02-25-1.ltx - RELOC/doc/latex/tabulars-e/02-25-2.ltx - RELOC/doc/latex/tabulars-e/02-25-3.ltx - RELOC/doc/latex/tabulars-e/02-25-4.ltx - RELOC/doc/latex/tabulars-e/02-25-5.ltx - RELOC/doc/latex/tabulars-e/02-25-6.ltx - RELOC/doc/latex/tabulars-e/02-25-7.ltx - RELOC/doc/latex/tabulars-e/02-25-8.ltx - RELOC/doc/latex/tabulars-e/02-25-9.ltx - RELOC/doc/latex/tabulars-e/02-26-1.ltx - RELOC/doc/latex/tabulars-e/02-26-10.ltx - RELOC/doc/latex/tabulars-e/02-26-2.ltx - RELOC/doc/latex/tabulars-e/02-26-3.ltx - RELOC/doc/latex/tabulars-e/02-26-4.ltx - RELOC/doc/latex/tabulars-e/02-26-5.ltx - RELOC/doc/latex/tabulars-e/02-26-6.ltx - RELOC/doc/latex/tabulars-e/02-26-7.ltx - RELOC/doc/latex/tabulars-e/02-26-8.ltx - RELOC/doc/latex/tabulars-e/02-26-9.ltx - RELOC/doc/latex/tabulars-e/02-27-1.ltx - RELOC/doc/latex/tabulars-e/02-27-2.ltx - RELOC/doc/latex/tabulars-e/02-27-3.ltx - RELOC/doc/latex/tabulars-e/02-27-4.ltx - RELOC/doc/latex/tabulars-e/02-28-1.ltx - RELOC/doc/latex/tabulars-e/02-28-2.ltx - RELOC/doc/latex/tabulars-e/02-28-3.ltx - RELOC/doc/latex/tabulars-e/02-28-4.ltx - RELOC/doc/latex/tabulars-e/02-29-1.ltx - RELOC/doc/latex/tabulars-e/03-01-1.ltx - RELOC/doc/latex/tabulars-e/03-01-10.ltx - RELOC/doc/latex/tabulars-e/03-01-11.ltx - RELOC/doc/latex/tabulars-e/03-01-12.ltx - RELOC/doc/latex/tabulars-e/03-01-13.ltx - RELOC/doc/latex/tabulars-e/03-01-2.ltx - RELOC/doc/latex/tabulars-e/03-01-3.ltx - RELOC/doc/latex/tabulars-e/03-01-4.ltx - RELOC/doc/latex/tabulars-e/03-01-5.ltx - RELOC/doc/latex/tabulars-e/03-01-6.ltx - RELOC/doc/latex/tabulars-e/03-01-7.ltx - RELOC/doc/latex/tabulars-e/03-01-8.ltx - RELOC/doc/latex/tabulars-e/03-01-9.ltx - RELOC/doc/latex/tabulars-e/03-02-1.ltx - RELOC/doc/latex/tabulars-e/03-02-2.ltx - RELOC/doc/latex/tabulars-e/03-02-3.ltx - RELOC/doc/latex/tabulars-e/03-02-4.ltx - RELOC/doc/latex/tabulars-e/03-02-5.ltx - RELOC/doc/latex/tabulars-e/03-02-6.ltx - RELOC/doc/latex/tabulars-e/03-02-7.ltx - RELOC/doc/latex/tabulars-e/03-03-1.ltx - RELOC/doc/latex/tabulars-e/03-03-2.ltx - RELOC/doc/latex/tabulars-e/03-03-3.ltxb - RELOC/doc/latex/tabulars-e/03-03-4.ltx - RELOC/doc/latex/tabulars-e/03-03-5.ltx - RELOC/doc/latex/tabulars-e/03-03-6.ltx - RELOC/doc/latex/tabulars-e/04-01-1.ltx - RELOC/doc/latex/tabulars-e/04-01-10.ltx2 - RELOC/doc/latex/tabulars-e/04-01-11.ltx2 - RELOC/doc/latex/tabulars-e/04-01-12.ltx2 - RELOC/doc/latex/tabulars-e/04-01-13.ltx2 - RELOC/doc/latex/tabulars-e/04-01-14.ltx1 - RELOC/doc/latex/tabulars-e/04-01-15.ltx2 - RELOC/doc/latex/tabulars-e/04-01-2.ltx2 - RELOC/doc/latex/tabulars-e/04-01-3.ltx2 - RELOC/doc/latex/tabulars-e/04-01-4.ltx2 - RELOC/doc/latex/tabulars-e/04-01-5.ltx2 - RELOC/doc/latex/tabulars-e/04-01-6.ltx - RELOC/doc/latex/tabulars-e/04-01-7.ltx - RELOC/doc/latex/tabulars-e/04-01-8.ltx2 - RELOC/doc/latex/tabulars-e/04-01-9.ltx2 - RELOC/doc/latex/tabulars-e/04-02-1.ltx2 - RELOC/doc/latex/tabulars-e/04-02-2.ltx2 - RELOC/doc/latex/tabulars-e/04-03-1.ltx - RELOC/doc/latex/tabulars-e/04-03-2.ltx2 - RELOC/doc/latex/tabulars-e/04-03-3.ltx2 - RELOC/doc/latex/tabulars-e/04-04-1.ltx - RELOC/doc/latex/tabulars-e/04-04-2.ltx2 - RELOC/doc/latex/tabulars-e/04-04-3.ltx2 - RELOC/doc/latex/tabulars-e/04-04-4.ltx2 - RELOC/doc/latex/tabulars-e/04-04-5.ltx2 - RELOC/doc/latex/tabulars-e/04-05-1.ltx2 - RELOC/doc/latex/tabulars-e/04-05-2.ltx2 - RELOC/doc/latex/tabulars-e/04-05-3.ltx2 - RELOC/doc/latex/tabulars-e/04-05-4.ltx2 - RELOC/doc/latex/tabulars-e/04-05-5.ltx2 - RELOC/doc/latex/tabulars-e/04-05-6.ltx2 - RELOC/doc/latex/tabulars-e/04-05-7.ltx2 - RELOC/doc/latex/tabulars-e/04-05-8.ltx2 - RELOC/doc/latex/tabulars-e/04-06-1.ltx2 - RELOC/doc/latex/tabulars-e/04-06-2.ltx2 - RELOC/doc/latex/tabulars-e/04-06-3.ltx2 - RELOC/doc/latex/tabulars-e/04-06-4.ltx2 - RELOC/doc/latex/tabulars-e/04-06-5.ltx2 - RELOC/doc/latex/tabulars-e/04-06-6.ltx2 - RELOC/doc/latex/tabulars-e/04-06-7.ltx2 - RELOC/doc/latex/tabulars-e/04-06-8.ltx2 - RELOC/doc/latex/tabulars-e/04-06-9.ltx2 - RELOC/doc/latex/tabulars-e/05-01-1.ltx - RELOC/doc/latex/tabulars-e/05-01-2.ltx - RELOC/doc/latex/tabulars-e/05-01-3.ltx - RELOC/doc/latex/tabulars-e/05-01-4.ltx - RELOC/doc/latex/tabulars-e/05-01-5.ltx - RELOC/doc/latex/tabulars-e/05-02-1.ltx - RELOC/doc/latex/tabulars-e/05-03-1.ltx - RELOC/doc/latex/tabulars-e/05-03-2.ltx - RELOC/doc/latex/tabulars-e/05-03-3.ltx - RELOC/doc/latex/tabulars-e/05-04-1.ltx2 - RELOC/doc/latex/tabulars-e/05-04-2.ltx2 - RELOC/doc/latex/tabulars-e/05-05-1.ltx - RELOC/doc/latex/tabulars-e/05-05-2.ltx - RELOC/doc/latex/tabulars-e/05-06-1.ltxE - RELOC/doc/latex/tabulars-e/05-06-2.ltxE - RELOC/doc/latex/tabulars-e/05-06-3.ltxE - RELOC/doc/latex/tabulars-e/06-00-1.ltx - RELOC/doc/latex/tabulars-e/06-00-10.ltx - RELOC/doc/latex/tabulars-e/06-00-11.ltx - RELOC/doc/latex/tabulars-e/06-00-12.ltx - RELOC/doc/latex/tabulars-e/06-00-13.ltx - RELOC/doc/latex/tabulars-e/06-00-14.ltx - RELOC/doc/latex/tabulars-e/06-00-15.ltx - RELOC/doc/latex/tabulars-e/06-00-16.ltx - RELOC/doc/latex/tabulars-e/06-00-17.ltx - RELOC/doc/latex/tabulars-e/06-00-18.ltx - RELOC/doc/latex/tabulars-e/06-00-19.ltx - RELOC/doc/latex/tabulars-e/06-00-2.ltx - RELOC/doc/latex/tabulars-e/06-00-20.ltx - RELOC/doc/latex/tabulars-e/06-00-21.ltx - RELOC/doc/latex/tabulars-e/06-00-22.ltx - RELOC/doc/latex/tabulars-e/06-00-23.ltx - RELOC/doc/latex/tabulars-e/06-00-24.ltx - RELOC/doc/latex/tabulars-e/06-00-25.ltx - RELOC/doc/latex/tabulars-e/06-00-26.ltx2 - RELOC/doc/latex/tabulars-e/06-00-27.ltx - RELOC/doc/latex/tabulars-e/06-00-28.ltx - RELOC/doc/latex/tabulars-e/06-00-29.ltx - RELOC/doc/latex/tabulars-e/06-00-3.ltx - RELOC/doc/latex/tabulars-e/06-00-30.ltx - RELOC/doc/latex/tabulars-e/06-00-31.ltx - RELOC/doc/latex/tabulars-e/06-00-32.ltx2 - RELOC/doc/latex/tabulars-e/06-00-33.ltx - RELOC/doc/latex/tabulars-e/06-00-34.ltx - RELOC/doc/latex/tabulars-e/06-00-35.ltx - RELOC/doc/latex/tabulars-e/06-00-36.ltx2 - RELOC/doc/latex/tabulars-e/06-00-37.ltx2 - RELOC/doc/latex/tabulars-e/06-00-38.ltxps - RELOC/doc/latex/tabulars-e/06-00-39.ltx - RELOC/doc/latex/tabulars-e/06-00-4.ltxps - RELOC/doc/latex/tabulars-e/06-00-40.ltx - RELOC/doc/latex/tabulars-e/06-00-41.ltx - RELOC/doc/latex/tabulars-e/06-00-42.ltx - RELOC/doc/latex/tabulars-e/06-00-43.ltx2 - RELOC/doc/latex/tabulars-e/06-00-44.ltx - RELOC/doc/latex/tabulars-e/06-00-45.ltx - RELOC/doc/latex/tabulars-e/06-00-46.ltx - RELOC/doc/latex/tabulars-e/06-00-5.ltxps - RELOC/doc/latex/tabulars-e/06-00-6.ltxps - RELOC/doc/latex/tabulars-e/06-00-7.ltxps - RELOC/doc/latex/tabulars-e/06-00-8.ltx - RELOC/doc/latex/tabulars-e/06-00-9.ltx - RELOC/doc/latex/tabulars-e/07-02-1.ltx2 - RELOC/doc/latex/tabulars-e/07-02-2.ltx2 - RELOC/doc/latex/tabulars-e/07-03-1.ltx2 - RELOC/doc/latex/tabulars-e/07-03-2.ltx2 - RELOC/doc/latex/tabulars-e/README - RELOC/doc/latex/tabulars-e/din8.eps -catalogue-ctan /info/examples/tabulars-e -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 - -name tabulary -category Package -revision 34368 -shortdesc Tabular with variable width columns balanced. -relocated 1 -longdesc The package defines a tabular*-like environment, tabulary, -longdesc taking a 'total width' argument as well as the column -longdesc specifications. The environment uses column types L, C, R and J -longdesc for variable width columns (\raggedright', \centering, -longdesc \raggedleft, and normally justified). In contrast to tabularx's -longdesc X columns, the width of each column is weighted according to -longdesc the natural width of the widest cell in the column. -runfiles size=4 - RELOC/tex/latex/tabulary/tabulary.sty -docfiles size=64 - RELOC/doc/latex/tabulary/README - RELOC/doc/latex/tabulary/tabulary.pdf -srcfiles size=9 - RELOC/source/latex/tabulary/tabulary.dtx - RELOC/source/latex/tabulary/tabulary.ins -catalogue-ctan /macros/latex/contrib/tabulary -catalogue-date 2014-06-22 00:36:26 +0200 -catalogue-license lppl -catalogue-version 0.10 - -name tabu -category Package -revision 21534 -shortdesc Flexible LaTeX tabulars. -relocated 1 -longdesc The package provides an environment, tabu, which will make any -longdesc sort of tabular (that doesn't need to split across pages), and -longdesc an environment longtabu which provides the facilities of tabu -longdesc in a modified longtable environment. (Note that this latter -longdesc offers an enhancement of ltxtable.) The package requires the -longdesc array package, and needs e-TeX to run (since array.sty is -longdesc present in every conforming distribution of LaTeX, and since -longdesc every publicly available LaTeX format is built using e-TeX, the -longdesc requirements are provided by default on any reasonable system). -longdesc The package also requires xcolor for coloured rules in tables, -longdesc and colortbl for coloured cells. The longtabu environment -longdesc further requires that longtable be loaded. The package itself -longdesc does not load any of these packages for the user. The tabu -longdesc environment may be used in place of tabular, tabular* and -longdesc tabularx environments, as well as the array environment in -longdesc maths mode. It overloads tabularx's X-column specification, -longdesc allowing a width specification, alignment (l, r, c and j) and -longdesc column type indication (p, m and b). \begin{tabu} to -longdesc specifies a target width, and \begin{tabu} spread -longdesc enlarges the environment's "natural" width. -runfiles size=29 - RELOC/tex/latex/tabu/tabu.sty -docfiles size=603 - RELOC/doc/latex/tabu/README - RELOC/doc/latex/tabu/tabu.pdf -srcfiles size=90 - RELOC/source/latex/tabu/tabu.drv - RELOC/source/latex/tabu/tabu.dtx - RELOC/source/latex/tabu/tabu.ins -catalogue-ctan /macros/latex/contrib/tabu -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 2.8 - -name tabvar -category Package -revision 28908 -shortdesc Typesetting tables showing variations of functions. -relocated 1 -longdesc This LaTeX package is meant to ease the typesetting of tables -longdesc showing variations of functions as they are used in France. -execute addMap tabvar.map -runfiles size=13 - RELOC/fonts/afm/public/tabvar/tabvar.afm - RELOC/fonts/map/dvips/tabvar/tabvar.map - RELOC/fonts/tfm/public/tabvar/tabvar.tfm - RELOC/fonts/type1/public/tabvar/tabvar.pfb - RELOC/metapost/tabvar/tabvar.mp - RELOC/tex/latex/tabvar/tabvar.1 - RELOC/tex/latex/tabvar/tabvar.2 - RELOC/tex/latex/tabvar/tabvar.3 - RELOC/tex/latex/tabvar/tabvar.cfg - RELOC/tex/latex/tabvar/tabvar.sty -docfiles size=151 - RELOC/doc/latex/tabvar/README - RELOC/doc/latex/tabvar/demo.pdf - RELOC/doc/latex/tabvar/demo.tex - RELOC/doc/latex/tabvar/tabvar.pdf -srcfiles size=10 - RELOC/source/latex/tabvar/tabvar.dtx - RELOC/source/latex/tabvar/tabvar.ins -catalogue-ctan /macros/latex/contrib/tabvar -catalogue-date 2013-01-22 17:38:01 +0100 -catalogue-license lppl1.3 -catalogue-version 1.7 - -name tagging -category Package -revision 23761 -shortdesc Document configuration with tags. -relocated 1 -longdesc The package allows the user to generate multiple documents from -longdesc a single source, by marking pieces of the document with tags -longdesc and specifying which marked pieces to include or exclude. -runfiles size=1 - RELOC/tex/latex/tagging/tagging.sty -docfiles size=26 - RELOC/doc/latex/tagging/README - RELOC/doc/latex/tagging/tagging.pdf - RELOC/doc/latex/tagging/tagging.tex -catalogue-ctan /macros/latex/contrib/tagging -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 - -name tagpair -category Package -revision 37398 -shortdesc Word-by-word glosses, translations, and bibliographic attributions. -relocated 1 -longdesc This package provides environments and commands for pairing -longdesc lines, bottom lines, and tagged lines, intended to be used in -longdesc particular for word-by-word glosses, translations, and -longdesc bibliographic attributions, respectively. This LaTeX package is -longdesc inspired by Marcel R. van der Goot's classic Plain TeX macros -longdesc in gloss.tex. -runfiles size=1 - RELOC/tex/latex/tagpair/tagpair.sty -docfiles size=26 - RELOC/doc/latex/tagpair/COPYING - RELOC/doc/latex/tagpair/ChangeLog - RELOC/doc/latex/tagpair/README - RELOC/doc/latex/tagpair/sample.pdf - RELOC/doc/latex/tagpair/sample.tex - RELOC/doc/latex/tagpair/tagpair.pdf - RELOC/doc/latex/tagpair/tagpair.tex -catalogue-ctan /macros/latex/contrib/tagpair -catalogue-date 2015-05-14 13:29:25 +0200 -catalogue-license lppl1.3 -catalogue-version 1.0 - -name talk -category Package -revision 15878 -shortdesc A LaTeX class for presentations. -relocated 1 -longdesc The talk document class allows you to create slides for screen -longdesc presentations or printing on transparencies. It also allows you -longdesc to print personal notes for your talk. You can create overlays -longdesc and display structure information (current section / -longdesc subsection, table of contents) on your slides. The main feature -longdesc that distinguishes talk from other presentation classes like -longdesc beamer or prosper is that it allows the user to define an -longdesc arbitrary number of slide styles and switch between these -longdesc styles from slide to slide. This way the slide layout can be -longdesc adapted to the slide content. For example, the title or -longdesc contents page of a talk can be given a slightly different -longdesc layout than the other slides. The talk class makes no -longdesc restrictions on the slide design whatsoever. The entire look -longdesc and feel of the presentation can be defined by the user. The -longdesc style definitions should be put in a separate sty file. -longdesc Currently the package comes with only one set of pre-defined -longdesc slide styles (greybars.sty). Contributions from people who are -longdesc artistically more gifted than the author are more than welcome! -runfiles size=5 - RELOC/tex/latex/talk/sidebars.sty - RELOC/tex/latex/talk/talk.cls -docfiles size=45 - RELOC/doc/latex/talk/README - RELOC/doc/latex/talk/example.tex - RELOC/doc/latex/talk/talkdoc.pdf - RELOC/doc/latex/talk/talkdoc.tex -srcfiles size=1 - RELOC/source/latex/talk/Makefile -catalogue-ctan /macros/latex/contrib/talk -catalogue-date 2012-02-24 11:11:42 +0100 -catalogue-license lppl -catalogue-version 1.1 - -name tamefloats -category Package -revision 27345 -shortdesc Experimentally use \holdinginserts with LaTeX floats. -relocated 1 -longdesc LaTeX's figures, tables, and \marginpars are dangerous for -longdesc footnotes (and probably also \enlargethispage). Here is a -longdesc proposal (a 'patch' package) to help, by using \holdinginserts -longdesc in a simple way. It replaces the original problem with a new -longdesc one -- it is an experiment to find out whether the new problem -longdesc is less bad (or it is just a contribution to the discussion, -longdesc maybe just a summary of previous work). The files provide -longdesc further information. -runfiles size=3 - RELOC/tex/latex/tamefloats/tameflts.sty -docfiles size=4 - RELOC/doc/latex/tamefloats/README.txt - RELOC/doc/latex/tamefloats/deml3541.tex - RELOC/doc/latex/tamefloats/fltfltdk.tex - RELOC/doc/latex/tamefloats/newbug.tex -catalogue-ctan /macros/latex/contrib/tamefloats -catalogue-date 2012-08-13 12:34:19 +0200 -catalogue-license lppl1.3 -catalogue-version v0.42 - -name tamethebeast -category Package -revision 15878 -shortdesc A manual about bibliographies and especially BibTeX. -relocated 1 -longdesc An (as-complete-as-possible) manual about bibliographies in -longdesc LaTeX, and thus mainly about BibTeX. -docfiles size=264 - RELOC/doc/bibtex/tamethebeast/CHANGES - RELOC/doc/bibtex/tamethebeast/Makefile - RELOC/doc/bibtex/tamethebeast/README - RELOC/doc/bibtex/tamethebeast/idxstyle.ist - RELOC/doc/bibtex/tamethebeast/local.bib - RELOC/doc/bibtex/tamethebeast/ttb_en.pdf - RELOC/doc/bibtex/tamethebeast/ttb_en.sec1.tex - RELOC/doc/bibtex/tamethebeast/ttb_en.sec2.tex - RELOC/doc/bibtex/tamethebeast/ttb_en.sec3.tex - RELOC/doc/bibtex/tamethebeast/ttb_en.sec4.tex - RELOC/doc/bibtex/tamethebeast/ttb_en.sec5.tex - RELOC/doc/bibtex/tamethebeast/ttb_en.tex - RELOC/doc/bibtex/tamethebeast/ttb_style.sty -catalogue-ctan /info/bibtex/tamethebeast -catalogue-date 2012-06-05 14:57:36 +0200 -catalogue-license lppl1.3 -catalogue-version 1.4 - -name t-angles -category Package -revision 15878 -shortdesc Draw tangles, trees, Hopf algebra operations and other pictures. -relocated 1 -longdesc A LaTeX2e package for drawing tangles, trees, Hopf algebra -longdesc operations and other pictures. It is based on emTeX or TPIC -longdesc \specials. Therefore, it can be used with the most popular -longdesc drivers, including emTeX drivers, dviwin, xdvi and dvips, and -longdesc (using some code from ConTeXt) it may also be used with -longdesc PDFLaTeX. -runfiles size=6 - RELOC/tex/latex/t-angles/t-angles.sty -docfiles size=39 - RELOC/doc/latex/t-angles/README - RELOC/doc/latex/t-angles/t-manual.pdf - RELOC/doc/latex/t-angles/t-manual.tex -catalogue-ctan /macros/latex/contrib/t-angles -catalogue-date 2012-06-21 14:54:52 +0200 -catalogue-license gpl - -name tapir -category Package -revision 20484 -shortdesc A simple geometrical font. -relocated 1 -longdesc Tapir is a simple geometrical font mostly created of line and -longdesc circular segments with constant thickness. The font is -longdesc available as Metafont source and in Adobe Type 1 format. The -longdesc character set contains all characters in the range 0-127 (as in -longdesc cmr10), accented characters used in the Czech, Slovak and -longdesc Polish languages. -runfiles size=49 - RELOC/fonts/source/public/tapir/tap-enc.mf - RELOC/fonts/source/public/tapir/tap.mf - RELOC/fonts/type1/public/tapir/tap.pfb -docfiles size=16 - RELOC/doc/fonts/tapir/readme - RELOC/doc/fonts/tapir/readme.pdf -catalogue-ctan /fonts/tapir -catalogue-date 2014-05-28 18:13:44 +0200 -catalogue-license gpl -catalogue-version 0.2 - -name tap -category Package -revision 31731 -shortdesc TeX macros for typesetting complex tables. -relocated 1 -longdesc The package offers a simple notation for pretty complex tables -longdesc (to Michael J. Ferguson's credit). With PostScript, the package -longdesc allows shaded/coloured tables, diagonal rules, etc. The package -longdesc is supposed to work with both Plain and LaTeX. An AWK converter -longdesc from ASCII semigraphic tables to TAP notation is included. -runfiles size=9 - RELOC/tex/generic/tap/tap.tex -docfiles size=46 - RELOC/doc/generic/tap/0README.TAP - RELOC/doc/generic/tap/0tapdoc.inf - RELOC/doc/generic/tap/circ.eps - RELOC/doc/generic/tap/circmag.eps - RELOC/doc/generic/tap/epsfx.tex - RELOC/doc/generic/tap/tapanch.100 - RELOC/doc/generic/tap/tapanch.mp - RELOC/doc/generic/tap/tapcv/sampdos/0sampdos.inf - RELOC/doc/generic/tap/tapcv/sampdos/post1.tex - RELOC/doc/generic/tap/tapcv/sampdos/post2.tex - RELOC/doc/generic/tap/tapcv/sampdos/prea1.tex - RELOC/doc/generic/tap/tapcv/sampdos/prea2.tex - RELOC/doc/generic/tap/tapcv/sampdos/prea3.tex - RELOC/doc/generic/tap/tapcv/sampdos/tapcv0.raw - RELOC/doc/generic/tap/tapcv/sampdos/tapcv1.raw - RELOC/doc/generic/tap/tapcv/sampdos/tapcv2.raw - RELOC/doc/generic/tap/tapcv/sampdos/tapcv3.raw - RELOC/doc/generic/tap/tapcv/sampdos/tapcv4.raw - RELOC/doc/generic/tap/tapcv/sampdos/tapcv5.raw - RELOC/doc/generic/tap/tapcv/sampdos/tapcv6.raw - RELOC/doc/generic/tap/tapcv/sampdos/tcv.bat - RELOC/doc/generic/tap/tapcv/sampdos/tcv_.bat - RELOC/doc/generic/tap/tapcv/tapcv.awk - RELOC/doc/generic/tap/tapdoc.tex - RELOC/doc/generic/tap/tapxamp1.tex - RELOC/doc/generic/tap/tapxamp2.tex -catalogue-ctan /macros/generic/tables/tap077.zip -catalogue-date 2012-06-22 13:21:57 +0200 -catalogue-license pd -catalogue-version 0.77 - -name tasks -category Package -revision 34779 -shortdesc Horizontally columned lists. -relocated 1 -longdesc The reason for the creation of the tasks environment was an -longdesc unwritten agreement in German maths textbooks (exspecially -longdesc (junior) high school textbooks) to organize exercises in -longdesc columns counting horizontally rather than vertically. This is -longdesc what the tasks package helps to achieve. -runfiles size=8 - RELOC/tex/latex/tasks/tasks.cfg - RELOC/tex/latex/tasks/tasks.sty -docfiles size=119 - RELOC/doc/latex/tasks/README - RELOC/doc/latex/tasks/tasks_en.pdf - RELOC/doc/latex/tasks/tasks_en.tex -catalogue-ctan /macros/latex/contrib/tasks -catalogue-date 2014-08-08 18:24:57 +0200 -catalogue-license lppl1.3 -catalogue-version 0.10a - -name tcldoc -category Package -revision 22018 -catalogue tclldoc -shortdesc Doc/docstrip for tcl. -relocated 1 -longdesc The tclldoc package and class simplify the application of the -longdesc doc/docstrip style of literate programming with Dr. John -longdesc Ousterhout's Tool Command Language (Tcl, pronounced "tickle", -longdesc a.k.a. The Cool Language). The tclldoc package is a bit like -longdesc the doc package is for LaTeX, whereas the tclldoc class more -longdesc parallels the ltxdoc class. -runfiles size=9 - RELOC/tex/latex/tcldoc/tcldoc.cls - RELOC/tex/latex/tcldoc/tcldoc.sty - RELOC/tex/latex/tcldoc/tclldoc.cls - RELOC/tex/latex/tcldoc/tclldoc.sty -docfiles size=178 - RELOC/doc/latex/tcldoc/README.txt - RELOC/doc/latex/tcldoc/examples/README.txt - RELOC/doc/latex/tcldoc/examples/parsetcl.dtx - RELOC/doc/latex/tcldoc/examples/parsetcl.ins - RELOC/doc/latex/tcldoc/examples/pdf.dtx - RELOC/doc/latex/tcldoc/examples/pdf.ins - RELOC/doc/latex/tcldoc/tclldoc.pdf - RELOC/doc/latex/tcldoc/tools/README.txt - RELOC/doc/latex/tcldoc/tools/eemenu.dtx - RELOC/doc/latex/tcldoc/tools/eemenu.ins - RELOC/doc/latex/tcldoc/tools/sourcedtx.dtx - RELOC/doc/latex/tcldoc/tools/sourcedtx.ins -srcfiles size=41 - RELOC/source/latex/tcldoc/tclldoc.dtx - RELOC/source/latex/tcldoc/tclldoc.ins -catalogue-ctan /macros/latex/contrib/tclldoc -catalogue-date 2012-06-22 13:21:57 +0200 -catalogue-license lppl -catalogue-version 2.40 - -name tcolorbox -category Package -revision 38107 -shortdesc Coloured boxes, for LaTeX examples and theorems, etc -relocated 1 -longdesc The package provides an environment for coloured and framed -longdesc text boxes with a heading line. Optionally, such a box may be -longdesc split in an upper and a lower part; thus the package may be -longdesc used for the setting of LaTeX examples where one part of the -longdesc box displays the source code and the other part shows the -longdesc output. Another common use case is the setting of theorems. The -longdesc package supports saving and reuse of source code and text -longdesc parts. -runfiles size=124 - RELOC/tex/latex/tcolorbox/blueshade.png - RELOC/tex/latex/tcolorbox/crinklepaper.png - RELOC/tex/latex/tcolorbox/goldshade.png - RELOC/tex/latex/tcolorbox/pink_marble.png - RELOC/tex/latex/tcolorbox/tcbbreakable.code.tex - RELOC/tex/latex/tcolorbox/tcbdocumentation.code.tex - RELOC/tex/latex/tcolorbox/tcbexternal.code.tex - RELOC/tex/latex/tcolorbox/tcbfitting.code.tex - RELOC/tex/latex/tcolorbox/tcbhooks.code.tex - RELOC/tex/latex/tcolorbox/tcblistings.code.tex - RELOC/tex/latex/tcolorbox/tcblistingscore.code.tex - RELOC/tex/latex/tcolorbox/tcblistingsutf8.code.tex - RELOC/tex/latex/tcolorbox/tcbmagazine.code.tex - RELOC/tex/latex/tcolorbox/tcbminted.code.tex - RELOC/tex/latex/tcolorbox/tcbraster.code.tex - RELOC/tex/latex/tcolorbox/tcbskins.code.tex - RELOC/tex/latex/tcolorbox/tcbskinsjigsaw.code.tex - RELOC/tex/latex/tcolorbox/tcbtheorems.code.tex - RELOC/tex/latex/tcolorbox/tcbxparse.code.tex - RELOC/tex/latex/tcolorbox/tcolorbox.sty -docfiles size=1833 - RELOC/doc/latex/tcolorbox/Basilica_5.png - RELOC/doc/latex/tcolorbox/CHANGES - RELOC/doc/latex/tcolorbox/README - RELOC/doc/latex/tcolorbox/lichtspiel.jpg - RELOC/doc/latex/tcolorbox/tcolorbox-example.pdf - RELOC/doc/latex/tcolorbox/tcolorbox-example.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.abstract.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.bib - RELOC/doc/latex/tcolorbox/tcolorbox.doc.breakable.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.coremacros.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.coreoptions.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.documentation.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.external.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.filling.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.fitting.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.graphics.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.hooks.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.index.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.initoptions.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.intro.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.listings.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.magazine.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.picturecredits.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.quickref.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.raster.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.recording.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.references.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.s_main.sty - RELOC/doc/latex/tcolorbox/tcolorbox.doc.s_snippet.sty - RELOC/doc/latex/tcolorbox/tcolorbox.doc.skins.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.technical.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.theorems.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.verbatim.tex - RELOC/doc/latex/tcolorbox/tcolorbox.doc.xparse.tex - RELOC/doc/latex/tcolorbox/tcolorbox.pdf - RELOC/doc/latex/tcolorbox/tcolorbox.tex -catalogue-ctan /macros/latex/contrib/tcolorbox -catalogue-date 2015-08-12 14:13:33 +0200 -catalogue-license lppl1.3 -catalogue-topics boxing colour verbatim listing -catalogue-version 3.72 - -name tdclock -category Package -revision 33043 -shortdesc A ticking digital clock package for PDF output. -relocated 1 -longdesc A ticking digital clock package to be used in Pdf-LaTeX -longdesc documents, for example in presentations. -runfiles size=5 - RELOC/tex/latex/tdclock/tdclock.sty -docfiles size=70 - RELOC/doc/latex/tdclock/Changelog - RELOC/doc/latex/tdclock/README - RELOC/doc/latex/tdclock/tdclock-beamer-example.pdf - RELOC/doc/latex/tdclock/tdclock-beamer-example.tex - RELOC/doc/latex/tdclock/tdclock-doc.pdf - RELOC/doc/latex/tdclock/tdclock-doc.tex -catalogue-ctan /macros/latex/contrib/tdclock -catalogue-date 2014-02-24 19:15:41 +0100 -catalogue-license gpl2 -catalogue-version v2.5 - -name tdsfrmath -category Package -revision 15878 -shortdesc Macros for French teachers of mathematics. -relocated 1 -longdesc A collection of macros for French maths teachers in colleges -longdesc and lycees (and perhaps elsewhere). It is hoped that the -longdesc package will facilitate the everyday use of LaTeX by -longdesc mathematics teachers. -runfiles size=7 - RELOC/tex/latex/tdsfrmath/suite.sto - RELOC/tex/latex/tdsfrmath/taupe.sto - RELOC/tex/latex/tdsfrmath/tdsfrmath.sty -docfiles size=201 - RELOC/doc/latex/tdsfrmath/LISEZMOI - RELOC/doc/latex/tdsfrmath/README - RELOC/doc/latex/tdsfrmath/tdsfrmath.pdf -srcfiles size=32 - RELOC/source/latex/tdsfrmath/Makefile - RELOC/source/latex/tdsfrmath/tdsfrmath.dtx - RELOC/source/latex/tdsfrmath/tdsfrmath.ins -catalogue-ctan /macros/latex/contrib/tdsfrmath -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.3 - -name tds -category Package -revision 15878 -shortdesc The TeX Directory Structure standard. -relocated 1 -longdesc Defines a structure for placement of TeX-related files on an -longdesc hierarchical file system, in a way that is well-defined, and is -longdesc readily implementable. -docfiles size=129 - RELOC/doc/generic/tds/ChangeLog - RELOC/doc/generic/tds/Makefile - RELOC/doc/generic/tds/README - RELOC/doc/generic/tds/index.html - RELOC/doc/generic/tds/tds.dvi - RELOC/doc/generic/tds/tds.html - RELOC/doc/generic/tds/tds.pdf - RELOC/doc/generic/tds/tds.sed - RELOC/doc/generic/tds/tds.tex - RELOC/doc/generic/tds/tds2texi.el - RELOC/doc/generic/tds/tdsguide.cls -catalogue-ctan /tds -catalogue-date 2012-06-23 14:35:06 +0200 -catalogue-license other-free -catalogue-version 1.1 - -name technics -category Package -revision 29349 -shortdesc A package to format technical documents. -relocated 1 -longdesc The package provides a very simple LaTeX document template, in -longdesc the hope that this use of LaTeX will become attractive to -longdesc typical word processor users. (Presentation is as if it were a -longdesc class; users are expected to start from a template document.) -runfiles size=1 - RELOC/tex/latex/technics/technics.sty -docfiles size=31 - RELOC/doc/latex/technics/png2eps.sh - RELOC/doc/latex/technics/rf-logo.zip - RELOC/doc/latex/technics/technics.pdf - RELOC/doc/latex/technics/technics.tex - RELOC/doc/latex/technics/view-dvi.sh - RELOC/doc/latex/technics/vmlinux.eps - RELOC/doc/latex/technics/vmlinux.png -catalogue-ctan /macros/latex/contrib/technics -catalogue-date 2012-08-31 01:04:09 +0200 -catalogue-license lppl -catalogue-version 1.0 - -name ted -category Package -revision 15878 -shortdesc A (primitive) token list editor. -relocated 1 -longdesc Just like sed is a stream editor, ted is a token list editor. -longdesc Actually, it is not as powerfull as sed, but its main feature -longdesc is that it really works with tokens, not only characters. The -longdesc ted package provides two user macros: \Substitute and -longdesc \ShowTokens. The first is maybe the most useful: it performs -longdesc substitutions in token lists (even inside braces). The second -longdesc displays each token of the list (one per line) with its catcode -longdesc (in the list, not just the current one), and can be useful for -longdesc debugging or for TeX learners. Ted is designed to work well -longdesc even if strange tokens (that is, unusual {charcode, catcode} -longdesc pairs or tokens with a confusing meaning) occur in the list. -runfiles size=3 - RELOC/tex/latex/ted/ted.sty -docfiles size=53 - RELOC/doc/latex/ted/README - RELOC/doc/latex/ted/ted-fr.pdf - RELOC/doc/latex/ted/ted.pdf -srcfiles size=13 - RELOC/source/latex/ted/ted.dtx -catalogue-ctan /macros/latex/contrib/ted -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.06 - -name templates-fenn -category Package -revision 15878 -shortdesc Templates for TeX usage. -relocated 1 -longdesc A set of templates for using LaTeX packages that the author -longdesc uses, comprising: - scrlttr2.tex: a letter, written with -longdesc scrlttr2.cls from the KOMA-Script bundle; - dinbrief.tex: a -longdesc letter according to the German (DIN) standards, written with -longdesc dinbrief.cls; - kbrief.tex: a brief memo ('Kurzbrief') to -longdesc accompany enclosures, as used in German offices, again based on -longdesc dinbrief; - vermerk.tex: a general form for taking down notes -longdesc on events in the office; and - diabetes.tex: a diary for the -longdesc basis-bolus insulin therapy of diabetes mellitus, using -longdesc scrartcl.cls from the KOMA-Script bundle. -docfiles size=10 - RELOC/doc/latex/templates-fenn/diabetes.tex - RELOC/doc/latex/templates-fenn/dinbrief.tex - RELOC/doc/latex/templates-fenn/kbrief.tex - RELOC/doc/latex/templates-fenn/scrlttr2.tex - RELOC/doc/latex/templates-fenn/scrlttr2en.tex - RELOC/doc/latex/templates-fenn/templates-fenn-de.txt - RELOC/doc/latex/templates-fenn/templates-fenn-en.txt - RELOC/doc/latex/templates-fenn/vermerk.tex -catalogue-ctan /info/templates/fenn -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl - -name templates-sommer -category Package -revision 15878 -shortdesc Templates for TeX usage. -relocated 1 -longdesc A set of templates for using LaTeX packages that the author -longdesc uses, comprising: - Hausarbeit.tex: for students of the -longdesc Lehrstuhl Volkskunde an der Friedrich-Schiller-Universitat -longdesc Jena; - Psycho-Dipl.tex: for diploma theses in psychology. -docfiles size=14 - RELOC/doc/latex/templates-sommer/Hausarbeit.bib - RELOC/doc/latex/templates-sommer/Hausarbeit.tex - RELOC/doc/latex/templates-sommer/Logo.jpg - RELOC/doc/latex/templates-sommer/Psycho-Dipl.bib - RELOC/doc/latex/templates-sommer/Psycho-Dipl.tex - RELOC/doc/latex/templates-sommer/README.de -catalogue-ctan /info/templates/sommer -catalogue-date 2012-06-22 15:48:59 +0200 -catalogue-license lppl - -name templatetools -category Package -revision 34495 -shortdesc Commands useful in LaTeX templates. -relocated 1 -longdesc The package provides a collection of tools, which are helpful -longdesc for the creation of a LaTeX template if conditional paths for -longdesc code execution are required. All the commands work both in the -longdesc preamble and in the document. -runfiles size=2 - RELOC/tex/latex/templatetools/templatetools.sty -docfiles size=109 - RELOC/doc/latex/templatetools/README - RELOC/doc/latex/templatetools/templatetools.pdf -srcfiles size=8 - RELOC/source/latex/templatetools/templatetools.dtx - RELOC/source/latex/templatetools/templatetools.ins -catalogue-ctan /macros/latex/contrib/templatetools -catalogue-date 2015-03-30 22:55:45 +0200 -catalogue-license lppl1.3 - -name tengwarscript -category Package -revision 34594 -shortdesc LaTeX support for using Tengwar fonts. -relocated 1 -longdesc The package provides "mid-level" access to tengwar fonts, -longdesc providing good quality output. Each tengwar sign is represented -longdesc by a command, which will place the sign nicely in relation to -longdesc previous signs. A transcription package is available from the -longdesc package's home page: writing all those tengwar commands would -longdesc quickly become untenable. The package supports the use of a -longdesc wide variety of tengwar fonts that are available from the net; -longdesc metric and map files are provided for all the supported fonts. -runfiles size=125 - RELOC/fonts/enc/dvips/tengwarscript/tengwaralt.enc - RELOC/fonts/enc/dvips/tengwarscript/tengwarcap.enc - RELOC/fonts/enc/dvips/tengwarscript/tengwarscript.enc - RELOC/fonts/map/dvips/tengwarscript/tengwarscript.map - RELOC/fonts/tfm/public/tengwarscript/Elfica32.tfm - RELOC/fonts/tfm/public/tengwarscript/Parmaite.tfm - RELOC/fonts/tfm/public/tengwarscript/Parmaite_alt.tfm - RELOC/fonts/tfm/public/tengwarscript/Parmaite_full.tfm - RELOC/fonts/tfm/public/tengwarscript/TengwarFormal12.tfm - RELOC/fonts/tfm/public/tengwarscript/TengwarFormalA12.tfm - RELOC/fonts/tfm/public/tengwarscript/TengwarFormal_full.tfm - RELOC/fonts/tfm/public/tengwarscript/TengwarGothika050.tfm - RELOC/fonts/tfm/public/tengwarscript/TengwarNoldor.tfm - RELOC/fonts/tfm/public/tengwarscript/TengwarNoldorAlt.tfm - RELOC/fonts/tfm/public/tengwarscript/TengwarNoldorCapitals1.tfm - RELOC/fonts/tfm/public/tengwarscript/TengwarNoldorCapitals2.tfm - RELOC/fonts/tfm/public/tengwarscript/TengwarNoldor_full.tfm - RELOC/fonts/tfm/public/tengwarscript/TengwarQuenya.tfm - RELOC/fonts/tfm/public/tengwarscript/TengwarQuenyaAlt.tfm - RELOC/fonts/tfm/public/tengwarscript/TengwarQuenyaCapitals1.tfm - RELOC/fonts/tfm/public/tengwarscript/TengwarQuenyaCapitals2.tfm - RELOC/fonts/tfm/public/tengwarscript/TengwarQuenya_full.tfm - RELOC/fonts/tfm/public/tengwarscript/TengwarSindarin.tfm - RELOC/fonts/tfm/public/tengwarscript/TengwarSindarinAlt.tfm - RELOC/fonts/tfm/public/tengwarscript/TengwarSindarinCapitals1.tfm - RELOC/fonts/tfm/public/tengwarscript/TengwarSindarinCapitals2.tfm - RELOC/fonts/tfm/public/tengwarscript/TengwarSindarin_full.tfm - RELOC/fonts/tfm/public/tengwarscript/TengwarTelerin.tfm - RELOC/fonts/tfm/public/tengwarscript/UnicodeParmaite.tfm - RELOC/fonts/tfm/public/tengwarscript/tngan.tfm - RELOC/fonts/tfm/public/tengwarscript/tngan_full.tfm - RELOC/fonts/tfm/public/tengwarscript/tngana.tfm - RELOC/fonts/tfm/public/tengwarscript/tnganab.tfm - RELOC/fonts/tfm/public/tengwarscript/tnganabi.tfm - RELOC/fonts/tfm/public/tengwarscript/tnganai.tfm - RELOC/fonts/tfm/public/tengwarscript/tnganb.tfm - RELOC/fonts/tfm/public/tengwarscript/tnganb_full.tfm - RELOC/fonts/tfm/public/tengwarscript/tnganbi.tfm - RELOC/fonts/tfm/public/tengwarscript/tnganbi_full.tfm - RELOC/fonts/tfm/public/tengwarscript/tngani.tfm - RELOC/fonts/tfm/public/tengwarscript/tngani_full.tfm - RELOC/fonts/vf/public/tengwarscript/Parmaite_full.vf - RELOC/fonts/vf/public/tengwarscript/TengwarFormal_full.vf - RELOC/fonts/vf/public/tengwarscript/TengwarNoldor_full.vf - RELOC/fonts/vf/public/tengwarscript/TengwarQuenya_full.vf - RELOC/fonts/vf/public/tengwarscript/TengwarSindarin_full.vf - RELOC/fonts/vf/public/tengwarscript/tngan_full.vf - RELOC/fonts/vf/public/tengwarscript/tnganb_full.vf - RELOC/fonts/vf/public/tengwarscript/tnganbi_full.vf - RELOC/fonts/vf/public/tengwarscript/tngani_full.vf - RELOC/tex/latex/tengwarscript/annatar.cfg - RELOC/tex/latex/tengwarscript/annatarbold.cfg - RELOC/tex/latex/tengwarscript/annatarbolditalic.cfg - RELOC/tex/latex/tengwarscript/annataritalic.cfg - RELOC/tex/latex/tengwarscript/elfica.cfg - RELOC/tex/latex/tengwarscript/formal.cfg - RELOC/tex/latex/tengwarscript/gothika.cfg - RELOC/tex/latex/tengwarscript/noldor.cfg - RELOC/tex/latex/tengwarscript/noldorcapI.cfg - RELOC/tex/latex/tengwarscript/noldorcapII.cfg - RELOC/tex/latex/tengwarscript/parmaite.cfg - RELOC/tex/latex/tengwarscript/quenya.cfg - RELOC/tex/latex/tengwarscript/quenyacapI.cfg - RELOC/tex/latex/tengwarscript/quenyacapII.cfg - RELOC/tex/latex/tengwarscript/sindarin.cfg - RELOC/tex/latex/tengwarscript/sindarincapI.cfg - RELOC/tex/latex/tengwarscript/sindarincapII.cfg - RELOC/tex/latex/tengwarscript/teleri.cfg - RELOC/tex/latex/tengwarscript/tengwarscript.sty - RELOC/tex/latex/tengwarscript/unicodeparmaite.cfg -docfiles size=146 - RELOC/doc/latex/tengwarscript/COPYING - RELOC/doc/latex/tengwarscript/README - RELOC/doc/latex/tengwarscript/install-tengwar-scripts.sh - RELOC/doc/latex/tengwarscript/quetta.eps - RELOC/doc/latex/tengwarscript/quetta.pdf - RELOC/doc/latex/tengwarscript/tengfonts.pdf - RELOC/doc/latex/tengwarscript/tengfonts.tex - RELOC/doc/latex/tengwarscript/tengtest.pdf - RELOC/doc/latex/tengwarscript/tengtest.tex - RELOC/doc/latex/tengwarscript/tengwarscript.pdf -srcfiles size=74 - RELOC/source/latex/tengwarscript/tengwarscript.dtx - RELOC/source/latex/tengwarscript/tengwarscript.ins -catalogue-ctan /macros/latex/contrib/tengwarscript -catalogue-date 2014-07-13 00:16:41 +0200 -catalogue-license lppl -catalogue-version 1.3.1 - -name tensor -category Package -revision 15878 -shortdesc Typeset tensors. -relocated 1 -longdesc A package which allows the user to set tensor-style super- and -longdesc subscripts with offsets between successive indices. It supports -longdesc the typesetting of tensors with mixed upper and lower indices -longdesc with spacing, also typset preposed indices. This is a complete -longdesc revision and extension of the original 'tensor' package by Mike -longdesc Piff. -runfiles size=2 - RELOC/tex/latex/tensor/tensor.sty -docfiles size=28 - RELOC/doc/latex/tensor/README - RELOC/doc/latex/tensor/tensor.pdf -srcfiles size=7 - RELOC/source/latex/tensor/tensor.dtx - RELOC/source/latex/tensor/tensor.ins -catalogue-ctan /macros/latex/contrib/tensor -catalogue-date 2012-06-01 21:24:39 +0200 -catalogue-license lppl -catalogue-version 2.1 - -name termcal -category Package -revision 22514 -shortdesc Print a class calendar. -relocated 1 -longdesc This package is intended to print a term calendar for use in -longdesc planning a class. It has a flexible mechanism for specifying -longdesc which days of the week are to be included and for inserting -longdesc text either regularly on the same day each week, or on selected -longdesc days, or for a series of consecutive days. It also has a -longdesc flexible mechanism for specifing class and nonclass days. Text -longdesc may be inserted into consecutive days so that it automatically -longdesc flows around nonclass days. -runfiles size=2 - RELOC/tex/latex/termcal/termcal.sty -docfiles size=25 - RELOC/doc/latex/termcal/Contents - RELOC/doc/latex/termcal/README - RELOC/doc/latex/termcal/termcal.pdf -srcfiles size=8 - RELOC/source/latex/termcal/termcal.dtx - RELOC/source/latex/termcal/termcal.ins -catalogue-ctan /macros/latex/contrib/termcal -catalogue-date 2012-04-19 12:58:26 +0200 -catalogue-license lppl1 -catalogue-version 1.8 - -name termlist -category Package -revision 18923 -shortdesc Label any kind of term with a continuous counter. -relocated 1 -longdesc The termlist package provides environments to indent and label -longdesc any kind of terms with a continuous number. Candidate terms may -longdesc appear inside an equation or eqnarray environment. -runfiles size=1 - RELOC/tex/latex/termlist/termlist.sty -docfiles size=43 - RELOC/doc/latex/termlist/README - RELOC/doc/latex/termlist/termlist.pdf -srcfiles size=4 - RELOC/source/latex/termlist/termlist.dtx -catalogue-ctan /macros/latex/contrib/termlist -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.1 - -name termmenu -category Package -revision 37700 -shortdesc The package provides support for terminal-based menus using expl3 -relocated 1 -longdesc When writing programs, it's often required to present the user -longdesc with a list of options/actions. The user is then expected to -longdesc select one of these options for the program to process. -longdesc termmenu provides this mechanism for TeX. It requires only -longdesc expl3 support, thus the l3kernel and l3packages are both -longdesc required. -runfiles size=2 - RELOC/tex/generic/termmenu/termmenu.tex -docfiles size=117 - RELOC/doc/generic/termmenu/README - RELOC/doc/generic/termmenu/termmenu.pdf -srcfiles size=7 - RELOC/source/generic/termmenu/termmenu.dtx - RELOC/source/generic/termmenu/termmenu.ins -catalogue-ctan /macros/generic/termmenu -catalogue-date 2015-06-27 05:51:16 +0200 -catalogue-license lppl1.3 -catalogue-topics comp-mgmt expl3 - -name testhyphens -category Package -revision 35162 -shortdesc Testing hyphenation patterns -relocated 1 -longdesc The package may be used for testing hyphenation patterns or for -longdesc controlling that specific words are hyphenated as expected. -longdesc This package implements some old TUGboat code to adapt it to -longdesc LaTeX with some enhancements. It differs form \showhyphens, -longdesc because it typesets its output on the document's output file. -longdesc It also works with xelatex, where \showhyphens requires a -longdesc workaround. -runfiles size=1 - RELOC/tex/latex/testhyphens/testhyphens.sty -docfiles size=96 - RELOC/doc/latex/testhyphens/README - RELOC/doc/latex/testhyphens/manifest.txt - RELOC/doc/latex/testhyphens/testhyphens.pdf -srcfiles size=6 - RELOC/source/latex/testhyphens/testhyphens.dtx -catalogue-ctan /macros/latex/contrib/testhyphens -catalogue-date 2014-09-13 14:35:43 +0200 -catalogue-license lppl1.3 -catalogue-version 0.6 - -name tetex -category TLCore -revision 38208 -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 -runfiles size=103 - 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 -docfiles size=145 - texmf-dist/doc/man/man1/allcm.1 - texmf-dist/doc/man/man1/allcm.man1.pdf - texmf-dist/doc/man/man1/allec.1 - texmf-dist/doc/man/man1/allec.man1.pdf - texmf-dist/doc/man/man1/allneeded.1 - texmf-dist/doc/man/man1/allneeded.man1.pdf - texmf-dist/doc/man/man1/dvi2fax.1 - texmf-dist/doc/man/man1/dvi2fax.man1.pdf - texmf-dist/doc/man/man1/dvired.1 - texmf-dist/doc/man/man1/dvired.man1.pdf - texmf-dist/doc/man/man1/fmtutil-sys.1 - texmf-dist/doc/man/man1/fmtutil-sys.man1.pdf - texmf-dist/doc/man/man1/fmtutil.1 - texmf-dist/doc/man/man1/fmtutil.man1.pdf - texmf-dist/doc/man/man1/kpsepath.1 - texmf-dist/doc/man/man1/kpsepath.man1.pdf - texmf-dist/doc/man/man1/kpsetool.1 - texmf-dist/doc/man/man1/kpsetool.man1.pdf - texmf-dist/doc/man/man1/kpsewhere.1 - texmf-dist/doc/man/man1/kpsewhere.man1.pdf - texmf-dist/doc/man/man1/kpsexpand.1 - texmf-dist/doc/man/man1/kpsexpand.man1.pdf - texmf-dist/doc/man/man1/texlinks.1 - texmf-dist/doc/man/man1/texlinks.man1.pdf - texmf-dist/doc/man/man1/updmap-sys.1 - texmf-dist/doc/man/man1/updmap-sys.man1.pdf - texmf-dist/doc/man/man1/updmap.1 - texmf-dist/doc/man/man1/updmap.man1.pdf - texmf-dist/doc/man/man5/fmtutil.cnf.5 - texmf-dist/doc/man/man5/fmtutil.cnf.man5.pdf - texmf-dist/doc/man/man5/updmap.cfg.5 - texmf-dist/doc/man/man5/updmap.cfg.man5.pdf - texmf-dist/doc/tetex/TETEXDOC.pdf - texmf-dist/doc/tetex/teTeX-FAQ -catalogue-ctan /obsolete/systems/unix/teTeX -catalogue-date 2015-08-03 05:43:12 +0200 -catalogue-license other-free -catalogue-topics distribution obsolete -catalogue-version 3.0 - -name tetex.i386-linux -category TLCore -revision 36770 -shortdesc i386-linux files of tetex -binfiles arch=i386-linux size=16 - bin/i386-linux/allcm - bin/i386-linux/allec - bin/i386-linux/allneeded - bin/i386-linux/dvi2fax - bin/i386-linux/dvired - bin/i386-linux/fmtutil - bin/i386-linux/fmtutil-sys - bin/i386-linux/kpsepath - bin/i386-linux/kpsetool - bin/i386-linux/kpsewhere - bin/i386-linux/kpsexpand - bin/i386-linux/texconfig-dialog - bin/i386-linux/texconfig-sys - bin/i386-linux/texlinks - bin/i386-linux/updmap - bin/i386-linux/updmap-sys - -name teubner -category Package -revision 36085 -shortdesc Philological typesetting of classical Greek. -relocated 1 -longdesc An extension to babel greek option for typesetting classical -longdesc Greek with a philological approach. The package works with the -longdesc author's greek fonts using the 'Lispiakos' font shape derived -longdesc from that of the fonts used in printers' shops in Lispia. The -longdesc package name honours the publisher B.G. Teubner -longdesc Verlaggesellschaft whose Greek text publications are of high -longdesc quality. -runfiles size=15 - RELOC/tex/latex/teubner/teubner.sty - RELOC/tex/latex/teubner/teubnertx.sty -docfiles size=266 - RELOC/doc/latex/teubner/README - RELOC/doc/latex/teubner/teubner-doc.pdf - RELOC/doc/latex/teubner/teubner-doc.tex - RELOC/doc/latex/teubner/teubner.pdf - RELOC/doc/latex/teubner/teubner.txt -srcfiles size=43 - RELOC/source/latex/teubner/teubner.dtx -catalogue-ctan /macros/latex/contrib/teubner -catalogue-date 2015-01-18 15:34:38 +0100 -catalogue-license lppl1.3 -catalogue-version 4.5a - -name tex4ebook -category Package -revision 37771 -shortdesc Convertor from LaTeX to ebook formats. -longdesc This is a bundle of lua scripts and LaTeX packages for -longdesc conversion of LaTeX files to ebook formats such as epub, mobi -longdesc and epub3. tex4ht is used as conversion engine. -depend tex4ebook.ARCH -runfiles size=15 - texmf-dist/scripts/tex4ebook/config-t4e.lua - texmf-dist/scripts/tex4ebook/exec_epub.lua - texmf-dist/scripts/tex4ebook/exec_epub3.lua - texmf-dist/scripts/tex4ebook/exec_mobi.lua - texmf-dist/scripts/tex4ebook/list-fonts.lua - texmf-dist/scripts/tex4ebook/tex4ebook - texmf-dist/tex/latex/tex4ebook/tex4ebook-epub3.4ht - texmf-dist/tex/latex/tex4ebook/tex4ebook.4ht - texmf-dist/tex/latex/tex4ebook/tex4ebook.sty -docfiles size=24 - texmf-dist/doc/support/tex4ebook/README - texmf-dist/doc/support/tex4ebook/changelog.tex - texmf-dist/doc/support/tex4ebook/readme.tex - texmf-dist/doc/support/tex4ebook/tex4ebook-doc.pdf - texmf-dist/doc/support/tex4ebook/tex4ebook-doc.tex -catalogue-ctan /support/tex4ebook -catalogue-date 2015-07-05 13:32:53 +0200 -catalogue-license lppl1.3 -catalogue-topics ebook -catalogue-version 0.1a - -name tex4ebook.i386-linux -category Package -revision 37771 -shortdesc i386-linux files of tex4ebook -binfiles arch=i386-linux size=1 - bin/i386-linux/tex4ebook - -name tex4ht -category Package -revision 38177 -shortdesc Convert (La)TeX to HTML/XML -longdesc A converter from TeX and LaTeX to SGML-based formats such as -longdesc (X)HTML, MathML, OpenDocument, and DocBook, providing a -longdesc configurable (La)TeX-based authoring system for hypertext. -longdesc Tex4ht does not parse (La)TeX source (so that it avoids the -longdesc difficulties encountered by many other converters, arising from -longdesc the irregularity of (La)TeX syntax). Instead, Tex4ht uses -longdesc (La)TeX itself (with an extra macro package) to produce a non- -longdesc standard DVI file that it can then process. This technique -longdesc allows TeX4ht to approach the robustness characteristic of -longdesc restricted-syntax systems such as hyperlatex and gellmu. Note -longdesc that CTAN no longer holds the definitive sources of the -longdesc package: see the 'Readme' file. -depend tex4ht.ARCH -runfiles size=6529 - texmf-dist/scripts/tex4ht/ht.sh - texmf-dist/scripts/tex4ht/htcontext.sh - texmf-dist/scripts/tex4ht/htcopy.pl - texmf-dist/scripts/tex4ht/htlatex.sh - texmf-dist/scripts/tex4ht/htmex.sh - texmf-dist/scripts/tex4ht/htmove.pl - texmf-dist/scripts/tex4ht/httex.sh - texmf-dist/scripts/tex4ht/httexi.sh - texmf-dist/scripts/tex4ht/htxelatex.sh - texmf-dist/scripts/tex4ht/htxetex.sh - texmf-dist/scripts/tex4ht/mk4ht.pl - texmf-dist/tex/generic/tex4ht/2up.4ht - texmf-dist/tex/generic/tex4ht/8859-6.4ht - texmf-dist/tex/generic/tex4ht/CJK.4ht - texmf-dist/tex/generic/tex4ht/IEEEtran.4ht - texmf-dist/tex/generic/tex4ht/JHEP.4ht - texmf-dist/tex/generic/tex4ht/ProTex.4ht - texmf-dist/tex/generic/tex4ht/SIunits.4ht - texmf-dist/tex/generic/tex4ht/TextBook.4ht - texmf-dist/tex/generic/tex4ht/aa.4ht - texmf-dist/tex/generic/tex4ht/abidir.4ht - texmf-dist/tex/generic/tex4ht/accents.4ht - texmf-dist/tex/generic/tex4ht/acm_proc_article-sp.4ht - texmf-dist/tex/generic/tex4ht/afterpage.4ht - texmf-dist/tex/generic/tex4ht/alatex.4ht - texmf-dist/tex/generic/tex4ht/algorithm.4ht - texmf-dist/tex/generic/tex4ht/algorithmic.4ht - texmf-dist/tex/generic/tex4ht/algorithmicx.4ht - texmf-dist/tex/generic/tex4ht/alltt.4ht - texmf-dist/tex/generic/tex4ht/alphanum.4ht - texmf-dist/tex/generic/tex4ht/amsart.4ht - texmf-dist/tex/generic/tex4ht/amsbook.4ht - texmf-dist/tex/generic/tex4ht/amsbsy.4ht - texmf-dist/tex/generic/tex4ht/amscd.4ht - texmf-dist/tex/generic/tex4ht/amsdtx.4ht - texmf-dist/tex/generic/tex4ht/amsfonts.4ht - texmf-dist/tex/generic/tex4ht/amsldoc.4ht - texmf-dist/tex/generic/tex4ht/amsmath.4ht - texmf-dist/tex/generic/tex4ht/amsopn.4ht - texmf-dist/tex/generic/tex4ht/amsppt.4ht - texmf-dist/tex/generic/tex4ht/amsproc.4ht - texmf-dist/tex/generic/tex4ht/amssymb.4ht - texmf-dist/tex/generic/tex4ht/amstex.4ht - texmf-dist/tex/generic/tex4ht/amstex1.4ht - texmf-dist/tex/generic/tex4ht/amstext.4ht - texmf-dist/tex/generic/tex4ht/amsthm.4ht - texmf-dist/tex/generic/tex4ht/aoutput.4ht - texmf-dist/tex/generic/tex4ht/apa-a.4ht - texmf-dist/tex/generic/tex4ht/apa.4ht - texmf-dist/tex/generic/tex4ht/apacite.4ht - texmf-dist/tex/generic/tex4ht/aps.4ht - texmf-dist/tex/generic/tex4ht/arabicore.4ht - texmf-dist/tex/generic/tex4ht/array.4ht - texmf-dist/tex/generic/tex4ht/article.4ht - texmf-dist/tex/generic/tex4ht/austrian.4ht - texmf-dist/tex/generic/tex4ht/babel.4ht - texmf-dist/tex/generic/tex4ht/beamer.4ht - texmf-dist/tex/generic/tex4ht/beamerbasefont.4ht - texmf-dist/tex/generic/tex4ht/beamerbasetoc.4ht - texmf-dist/tex/generic/tex4ht/beton.4ht - texmf-dist/tex/generic/tex4ht/biblatex.4ht - texmf-dist/tex/generic/tex4ht/bibtex.4ht - texmf-dist/tex/generic/tex4ht/bibtex2.4ht - texmf-dist/tex/generic/tex4ht/bibtopic.4ht - texmf-dist/tex/generic/tex4ht/bm.4ht - texmf-dist/tex/generic/tex4ht/book.4ht - texmf-dist/tex/generic/tex4ht/booktabs.4ht - texmf-dist/tex/generic/tex4ht/boxedminipage.4ht - texmf-dist/tex/generic/tex4ht/byname.4ht - texmf-dist/tex/generic/tex4ht/caption.4ht - texmf-dist/tex/generic/tex4ht/catalan.4ht - texmf-dist/tex/generic/tex4ht/cgloss4e.4ht - texmf-dist/tex/generic/tex4ht/chapterbib.4ht - texmf-dist/tex/generic/tex4ht/chicago.4ht - texmf-dist/tex/generic/tex4ht/color.4ht - texmf-dist/tex/generic/tex4ht/colortbl.4ht - texmf-dist/tex/generic/tex4ht/combine.4ht - texmf-dist/tex/generic/tex4ht/cond4ht.4ht - texmf-dist/tex/generic/tex4ht/context.4ht - texmf-dist/tex/generic/tex4ht/covington.4ht - texmf-dist/tex/generic/tex4ht/cp1250.4ht - texmf-dist/tex/generic/tex4ht/cp1252.4ht - texmf-dist/tex/generic/tex4ht/cp1256.4ht - texmf-dist/tex/generic/tex4ht/cp437.4ht - texmf-dist/tex/generic/tex4ht/cp437de.4ht - texmf-dist/tex/generic/tex4ht/cp850.4ht - texmf-dist/tex/generic/tex4ht/cp852.4ht - texmf-dist/tex/generic/tex4ht/cp862.4ht - texmf-dist/tex/generic/tex4ht/cp865.4ht - texmf-dist/tex/generic/tex4ht/croatian.4ht - texmf-dist/tex/generic/tex4ht/curve.4ht - texmf-dist/tex/generic/tex4ht/czech.4ht - texmf-dist/tex/generic/tex4ht/danish.4ht - texmf-dist/tex/generic/tex4ht/dcolumn.4ht - texmf-dist/tex/generic/tex4ht/debug.4ht - texmf-dist/tex/generic/tex4ht/diagram.4ht - texmf-dist/tex/generic/tex4ht/diagrams.4ht - texmf-dist/tex/generic/tex4ht/doc.4ht - texmf-dist/tex/generic/tex4ht/docbook-math.4ht - texmf-dist/tex/generic/tex4ht/docbook-mml.4ht - texmf-dist/tex/generic/tex4ht/docbook.4ht - texmf-dist/tex/generic/tex4ht/dratex.4ht - texmf-dist/tex/generic/tex4ht/dsfont.4ht - texmf-dist/tex/generic/tex4ht/dutch.4ht - texmf-dist/tex/generic/tex4ht/dvipdf.4ht - texmf-dist/tex/generic/tex4ht/dvips.4ht - texmf-dist/tex/generic/tex4ht/dvipsnam.4ht - texmf-dist/tex/generic/tex4ht/dvipsone.4ht - texmf-dist/tex/generic/tex4ht/elsart.4ht - texmf-dist/tex/generic/tex4ht/emacspeak.4ht - texmf-dist/tex/generic/tex4ht/emulateapj.4ht - texmf-dist/tex/generic/tex4ht/endfloat.4ht - texmf-dist/tex/generic/tex4ht/endnotes.4ht - texmf-dist/tex/generic/tex4ht/english.4ht - texmf-dist/tex/generic/tex4ht/enumerate.4ht - texmf-dist/tex/generic/tex4ht/enumitem.4ht - texmf-dist/tex/generic/tex4ht/epigraph.4ht - texmf-dist/tex/generic/tex4ht/eplain.4ht - texmf-dist/tex/generic/tex4ht/epsf.4ht - texmf-dist/tex/generic/tex4ht/epsfig.4ht - texmf-dist/tex/generic/tex4ht/errata.4ht - texmf-dist/tex/generic/tex4ht/esperant.4ht - texmf-dist/tex/generic/tex4ht/esperanto.4ht - texmf-dist/tex/generic/tex4ht/estonian.4ht - texmf-dist/tex/generic/tex4ht/eucal.4ht - texmf-dist/tex/generic/tex4ht/euler.4ht - texmf-dist/tex/generic/tex4ht/europecv.4ht - texmf-dist/tex/generic/tex4ht/eurosym.4ht - texmf-dist/tex/generic/tex4ht/everyshi.4ht - texmf-dist/tex/generic/tex4ht/exam.4ht - texmf-dist/tex/generic/tex4ht/exerquiz.4ht - texmf-dist/tex/generic/tex4ht/exerqz.4ht - texmf-dist/tex/generic/tex4ht/extarticle.4ht - texmf-dist/tex/generic/tex4ht/extbook.4ht - texmf-dist/tex/generic/tex4ht/extletter.4ht - texmf-dist/tex/generic/tex4ht/extproc.4ht - texmf-dist/tex/generic/tex4ht/extreport.4ht - texmf-dist/tex/generic/tex4ht/fancybox.4ht - texmf-dist/tex/generic/tex4ht/fancyvrb.4ht - texmf-dist/tex/generic/tex4ht/fig4tex.4ht - texmf-dist/tex/generic/tex4ht/finnish.4ht - texmf-dist/tex/generic/tex4ht/fleqn.4ht - texmf-dist/tex/generic/tex4ht/float.4ht - texmf-dist/tex/generic/tex4ht/floatflt.4ht - texmf-dist/tex/generic/tex4ht/foils.4ht - texmf-dist/tex/generic/tex4ht/fontmath.4ht - texmf-dist/tex/generic/tex4ht/footmisc.4ht - texmf-dist/tex/generic/tex4ht/footnote-dw.4ht - texmf-dist/tex/generic/tex4ht/francais.4ht - texmf-dist/tex/generic/tex4ht/french.4ht - texmf-dist/tex/generic/tex4ht/frenchb.4ht - texmf-dist/tex/generic/tex4ht/g-brief.4ht - texmf-dist/tex/generic/tex4ht/galician.4ht - texmf-dist/tex/generic/tex4ht/gauss.4ht - texmf-dist/tex/generic/tex4ht/german.4ht - texmf-dist/tex/generic/tex4ht/germanb.4ht - texmf-dist/tex/generic/tex4ht/gloss.4ht - texmf-dist/tex/generic/tex4ht/glossaries.4ht - texmf-dist/tex/generic/tex4ht/glossary.4ht - texmf-dist/tex/generic/tex4ht/go.4ht - texmf-dist/tex/generic/tex4ht/graphics.4ht - texmf-dist/tex/generic/tex4ht/graphicx.4ht - texmf-dist/tex/generic/tex4ht/greek.4ht - texmf-dist/tex/generic/tex4ht/harvard.4ht - texmf-dist/tex/generic/tex4ht/hebrew.4ht - texmf-dist/tex/generic/tex4ht/hebtex.4ht - texmf-dist/tex/generic/tex4ht/hewrite.4ht - texmf-dist/tex/generic/tex4ht/holtxdoc.4ht - texmf-dist/tex/generic/tex4ht/html-jsmath.4ht - texmf-dist/tex/generic/tex4ht/html-mltx.4ht - texmf-dist/tex/generic/tex4ht/html-mml.4ht - texmf-dist/tex/generic/tex4ht/html-speech-math.4ht - texmf-dist/tex/generic/tex4ht/html-speech.4ht - texmf-dist/tex/generic/tex4ht/html0.4ht - texmf-dist/tex/generic/tex4ht/html32-math.4ht - texmf-dist/tex/generic/tex4ht/html32.4ht - texmf-dist/tex/generic/tex4ht/html4-l2-url.4ht - texmf-dist/tex/generic/tex4ht/html4-math.4ht - texmf-dist/tex/generic/tex4ht/html4-russian-accents.4ht - texmf-dist/tex/generic/tex4ht/html4-svg.4ht - texmf-dist/tex/generic/tex4ht/html4-uni.4ht - texmf-dist/tex/generic/tex4ht/html4.4ht - texmf-dist/tex/generic/tex4ht/htmlw.4ht - texmf-dist/tex/generic/tex4ht/hypcap.4ht - texmf-dist/tex/generic/tex4ht/hyperref.4ht - texmf-dist/tex/generic/tex4ht/idxmake.4ht - texmf-dist/tex/generic/tex4ht/ifthen.4ht - texmf-dist/tex/generic/tex4ht/index.4ht - texmf-dist/tex/generic/tex4ht/info4ht.4ht - texmf-dist/tex/generic/tex4ht/infoht4.4ht - texmf-dist/tex/generic/tex4ht/infojh.4ht - texmf-dist/tex/generic/tex4ht/infomml.4ht - texmf-dist/tex/generic/tex4ht/infoof.4ht - texmf-dist/tex/generic/tex4ht/infosvg.4ht - texmf-dist/tex/generic/tex4ht/inputenc.4ht - texmf-dist/tex/generic/tex4ht/italian.4ht - texmf-dist/tex/generic/tex4ht/javahelp-a.4ht - texmf-dist/tex/generic/tex4ht/javahelp.4ht - texmf-dist/tex/generic/tex4ht/jeep.4ht - texmf-dist/tex/generic/tex4ht/jsmath.4ht - texmf-dist/tex/generic/tex4ht/jsml-math.4ht - texmf-dist/tex/generic/tex4ht/jsml.4ht - texmf-dist/tex/generic/tex4ht/jurabib.4ht - texmf-dist/tex/generic/tex4ht/koi8-r.4ht - texmf-dist/tex/generic/tex4ht/latex.4ht - texmf-dist/tex/generic/tex4ht/latex209.4ht - texmf-dist/tex/generic/tex4ht/latex2man.4ht - texmf-dist/tex/generic/tex4ht/latin1.4ht - texmf-dist/tex/generic/tex4ht/latin2.4ht - texmf-dist/tex/generic/tex4ht/lb.4ht - texmf-dist/tex/generic/tex4ht/letter.4ht - texmf-dist/tex/generic/tex4ht/lettrine.4ht - texmf-dist/tex/generic/tex4ht/lfeenc.4ht - texmf-dist/tex/generic/tex4ht/lineno.4ht - texmf-dist/tex/generic/tex4ht/linguex.4ht - texmf-dist/tex/generic/tex4ht/listings.4ht - texmf-dist/tex/generic/tex4ht/llncs-a.4ht - texmf-dist/tex/generic/tex4ht/llncs.4ht - texmf-dist/tex/generic/tex4ht/lncse-a.4ht - texmf-dist/tex/generic/tex4ht/lncse.4ht - texmf-dist/tex/generic/tex4ht/longdiv.4ht - texmf-dist/tex/generic/tex4ht/longtable.4ht - texmf-dist/tex/generic/tex4ht/ltugboat-a.4ht - texmf-dist/tex/generic/tex4ht/ltugboat.4ht - texmf-dist/tex/generic/tex4ht/ltugproc-a.4ht - texmf-dist/tex/generic/tex4ht/ltugproc.4ht - texmf-dist/tex/generic/tex4ht/ltxguide.4ht - texmf-dist/tex/generic/tex4ht/m-tex4ht.tex - texmf-dist/tex/generic/tex4ht/makeidx.4ht - texmf-dist/tex/generic/tex4ht/manju.4ht - texmf-dist/tex/generic/tex4ht/manmac.4ht - texmf-dist/tex/generic/tex4ht/mathltx.4ht - texmf-dist/tex/generic/tex4ht/mathml.4ht - texmf-dist/tex/generic/tex4ht/mathplayer.4ht - texmf-dist/tex/generic/tex4ht/mathtools.4ht - texmf-dist/tex/generic/tex4ht/mdwlist.4ht - texmf-dist/tex/generic/tex4ht/mdwtab.4ht - texmf-dist/tex/generic/tex4ht/memoir.4ht - texmf-dist/tex/generic/tex4ht/mempatch.4ht - texmf-dist/tex/generic/tex4ht/mex.4ht - texmf-dist/tex/generic/tex4ht/mfpic.4ht - texmf-dist/tex/generic/tex4ht/microtype.4ht - texmf-dist/tex/generic/tex4ht/minitoc.4ht - texmf-dist/tex/generic/tex4ht/mkht-scripts.4ht - texmf-dist/tex/generic/tex4ht/mkht.4ht - texmf-dist/tex/generic/tex4ht/mktex4ht.4ht - texmf-dist/tex/generic/tex4ht/mla.4ht - texmf-dist/tex/generic/tex4ht/mls.4ht - texmf-dist/tex/generic/tex4ht/moreverb.4ht - texmf-dist/tex/generic/tex4ht/mozilla.4ht - texmf-dist/tex/generic/tex4ht/multicol.4ht - texmf-dist/tex/generic/tex4ht/multind.4ht - texmf-dist/tex/generic/tex4ht/multirow.4ht - texmf-dist/tex/generic/tex4ht/mwart.4ht - texmf-dist/tex/generic/tex4ht/mwbk.4ht - texmf-dist/tex/generic/tex4ht/mwrep.4ht - texmf-dist/tex/generic/tex4ht/nameref.4ht - texmf-dist/tex/generic/tex4ht/natbib.4ht - texmf-dist/tex/generic/tex4ht/ngerman.4ht - texmf-dist/tex/generic/tex4ht/ngermanb.4ht - texmf-dist/tex/generic/tex4ht/nicefrac.4ht - texmf-dist/tex/generic/tex4ht/nomencl.4ht - texmf-dist/tex/generic/tex4ht/norsk.4ht - texmf-dist/tex/generic/tex4ht/ntheorem.4ht - texmf-dist/tex/generic/tex4ht/onmouseover.4ht - texmf-dist/tex/generic/tex4ht/ooffice-mml.4ht - texmf-dist/tex/generic/tex4ht/ooffice.4ht - texmf-dist/tex/generic/tex4ht/ooimpress.4ht - texmf-dist/tex/generic/tex4ht/osudeG.4ht - texmf-dist/tex/generic/tex4ht/ot4enc.4ht - texmf-dist/tex/generic/tex4ht/overcite.4ht - texmf-dist/tex/generic/tex4ht/overpic.4ht - texmf-dist/tex/generic/tex4ht/paralist.4ht - texmf-dist/tex/generic/tex4ht/path.4ht - texmf-dist/tex/generic/tex4ht/pb-diagram.4ht - texmf-dist/tex/generic/tex4ht/pctable.4ht - texmf-dist/tex/generic/tex4ht/pctex32.4ht - texmf-dist/tex/generic/tex4ht/pd1enc.4ht - texmf-dist/tex/generic/tex4ht/pgf.4ht - texmf-dist/tex/generic/tex4ht/picins.4ht - texmf-dist/tex/generic/tex4ht/pictex.4ht - texmf-dist/tex/generic/tex4ht/pifont.4ht - texmf-dist/tex/generic/tex4ht/plain.4ht - texmf-dist/tex/generic/tex4ht/polish.4ht - texmf-dist/tex/generic/tex4ht/polski.4ht - texmf-dist/tex/generic/tex4ht/portuges.4ht - texmf-dist/tex/generic/tex4ht/powerdot-a.4ht - texmf-dist/tex/generic/tex4ht/powerdot.4ht - texmf-dist/tex/generic/tex4ht/prosper-a.4ht - texmf-dist/tex/generic/tex4ht/prosper.4ht - texmf-dist/tex/generic/tex4ht/psfig.4ht - texmf-dist/tex/generic/tex4ht/pst-all.4ht - texmf-dist/tex/generic/tex4ht/pst-jtree.4ht - texmf-dist/tex/generic/tex4ht/pstricks.4ht - texmf-dist/tex/generic/tex4ht/quoting.4ht - texmf-dist/tex/generic/tex4ht/reading.4ht - texmf-dist/tex/generic/tex4ht/report.4ht - texmf-dist/tex/generic/tex4ht/res-a.4ht - texmf-dist/tex/generic/tex4ht/res.4ht - texmf-dist/tex/generic/tex4ht/resume.4ht - texmf-dist/tex/generic/tex4ht/revsymb.4ht - texmf-dist/tex/generic/tex4ht/revtex.4ht - texmf-dist/tex/generic/tex4ht/revtex4.4ht - texmf-dist/tex/generic/tex4ht/rlbabel.4ht - texmf-dist/tex/generic/tex4ht/romanian.4ht - texmf-dist/tex/generic/tex4ht/rotating.4ht - texmf-dist/tex/generic/tex4ht/russianb.4ht - texmf-dist/tex/generic/tex4ht/scottish.4ht - texmf-dist/tex/generic/tex4ht/scrartcl.4ht - texmf-dist/tex/generic/tex4ht/scrbook.4ht - texmf-dist/tex/generic/tex4ht/scrreprt.4ht - texmf-dist/tex/generic/tex4ht/seminar-a.4ht - texmf-dist/tex/generic/tex4ht/seminar.4ht - texmf-dist/tex/generic/tex4ht/seslideb.4ht - texmf-dist/tex/generic/tex4ht/showfonts.4ht - texmf-dist/tex/generic/tex4ht/sig-alternate.4ht - texmf-dist/tex/generic/tex4ht/sistyle.4ht - texmf-dist/tex/generic/tex4ht/slides.4ht - texmf-dist/tex/generic/tex4ht/slidesec.4ht - texmf-dist/tex/generic/tex4ht/slovak.4ht - texmf-dist/tex/generic/tex4ht/slovene.4ht - texmf-dist/tex/generic/tex4ht/soul.4ht - texmf-dist/tex/generic/tex4ht/spanish.4ht - texmf-dist/tex/generic/tex4ht/splitidx.4ht - texmf-dist/tex/generic/tex4ht/srcltx.4ht - texmf-dist/tex/generic/tex4ht/subeqnarray.4ht - texmf-dist/tex/generic/tex4ht/subfigure.4ht - texmf-dist/tex/generic/tex4ht/supertabular.4ht - texmf-dist/tex/generic/tex4ht/sverb.4ht - texmf-dist/tex/generic/tex4ht/svg.4ht - texmf-dist/tex/generic/tex4ht/svgnam.4ht - texmf-dist/tex/generic/tex4ht/swedish.4ht - texmf-dist/tex/generic/tex4ht/syntax.4ht - texmf-dist/tex/generic/tex4ht/t2benc.4ht - texmf-dist/tex/generic/tex4ht/tabularx.4ht - texmf-dist/tex/generic/tex4ht/tabulary-a.4ht - texmf-dist/tex/generic/tex4ht/tabulary.4ht - texmf-dist/tex/generic/tex4ht/tcilatex.4ht - texmf-dist/tex/generic/tex4ht/tei-math.4ht - texmf-dist/tex/generic/tex4ht/tei-mml.4ht - texmf-dist/tex/generic/tex4ht/tei-mmltei.4ht - texmf-dist/tex/generic/tex4ht/tei.4ht - texmf-dist/tex/generic/tex4ht/tex4ht.4ht - texmf-dist/tex/generic/tex4ht/tex4ht.sty - texmf-dist/tex/generic/tex4ht/texinfo.4ht - texmf-dist/tex/generic/tex4ht/texpower.4ht - texmf-dist/tex/generic/tex4ht/textures.4ht - texmf-dist/tex/generic/tex4ht/th4.4ht - texmf-dist/tex/generic/tex4ht/theorem.4ht - texmf-dist/tex/generic/tex4ht/titlesec.4ht - texmf-dist/tex/generic/tex4ht/tocloft.4ht - texmf-dist/tex/generic/tex4ht/tugboat.4ht - texmf-dist/tex/generic/tex4ht/turkish.4ht - texmf-dist/tex/generic/tex4ht/ucs.4ht - texmf-dist/tex/generic/tex4ht/ukraineb.4ht - texmf-dist/tex/generic/tex4ht/ulem.4ht - texmf-dist/tex/generic/tex4ht/unicode.4ht - texmf-dist/tex/generic/tex4ht/url.4ht - texmf-dist/tex/generic/tex4ht/usepackage.4ht - texmf-dist/tex/generic/tex4ht/ushort.4ht - texmf-dist/tex/generic/tex4ht/usorbian.4ht - texmf-dist/tex/generic/tex4ht/utf8.4ht - texmf-dist/tex/generic/tex4ht/utf8x.4ht - texmf-dist/tex/generic/tex4ht/vanilla.4ht - texmf-dist/tex/generic/tex4ht/varioref.4ht - texmf-dist/tex/generic/tex4ht/verbatim.4ht - texmf-dist/tex/generic/tex4ht/verbatimfiles.4ht - texmf-dist/tex/generic/tex4ht/verse.4ht - texmf-dist/tex/generic/tex4ht/vowel.4ht - texmf-dist/tex/generic/tex4ht/web.4ht - texmf-dist/tex/generic/tex4ht/welsh.4ht - texmf-dist/tex/generic/tex4ht/wrapfig.4ht - texmf-dist/tex/generic/tex4ht/writer.4ht - texmf-dist/tex/generic/tex4ht/xcolor.4ht - texmf-dist/tex/generic/tex4ht/xr-hyper.4ht - texmf-dist/tex/generic/tex4ht/xr.4ht - texmf-dist/tex/generic/tex4ht/xy.4ht - texmf-dist/tex4ht/base/unix/tex4ht.env - texmf-dist/tex4ht/base/win32/tex4ht.env - texmf-dist/tex4ht/bin/tex4ht.jar - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagd.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagd7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagd8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagd8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagd8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdc.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdc7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdc8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdo.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdo7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdo8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdo8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdo8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagk.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagk7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagk8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagk8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagk8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagkc.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagkc7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagkc8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagko.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagko7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagko8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagko8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagko8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/rpagd.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/rpagdo.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/rpagk.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/rpagko.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkd.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkd7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkd8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkd8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkd8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdc.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdc7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdc8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdi.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdi7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdi8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdi8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdi8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdo.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdo7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdo8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdo8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdo8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkl.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkl7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkl8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkl8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkl8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklc.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklc7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklc8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkli.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkli7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkli8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkli8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkli8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklo.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklo7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklo8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklo8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklo8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/rpbkd.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/rpbkdi.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/rpbkl.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/rpbkli.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrb.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrb7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrb8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrb8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrb8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrb8u.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbc.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbc7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbc8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbo.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbo7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbo8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbo8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbo8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbo8u.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrr.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrr8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrr8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrr8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrr8u.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrrc.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrrc8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrro.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrro7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrro8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrro8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/rpcrb.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/rpcrbo.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/rpcrr.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/rpcrro.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8cn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8rn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8tn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8z.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbc.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbc7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbc7tn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbc8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbc8tn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo7tn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo8cn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo8rn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo8tn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbon.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbrn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr8cn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr8rn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr8tn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvrc.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvrc7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvrc7tn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvrc8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvrc8tn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro7tn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro8cn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro8rn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro8tn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvron.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvrrn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/pplb8z.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/pplbi8z.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/pplr8z.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/pplri8z.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvb.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvbo.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvbon.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvbrn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvr.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvro.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvron.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvrrn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmb.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmbm.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmby.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmr.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmrm.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmrv.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmry.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/mathptmx/zptmcm7m.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/mathptmx/zptmcm7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/mathptmx/zptmcm7v.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/mathptmx/zptmcm7y.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncb.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncb7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncb8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncb8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncb8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbc.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbc7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbc8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbi.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbi7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbi8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbi8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbi8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbo.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbo7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbo8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbo8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbo8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncr.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncr7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncr8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncr8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncr8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncrc.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncrc7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncrc8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncri.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncri7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncri8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncri8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncri8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncro.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncro7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncro8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncro8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncro8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/rpncb.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/rpncbi.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/rpncr.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/rpncri.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb9d.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb9e.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb9o.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb9t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbc.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbc7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbc8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbc8z.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi9c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi9d.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi9e.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi9o.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi9t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbo.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbo7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbo8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbo8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbo8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbu.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbu8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr8rn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr9c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr9d.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr9e.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr9o.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr9t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrc7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrc8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrc8z.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrc9d.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrc9e.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrc9o.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri9c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri9d.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri9e.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri9o.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplro.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplro7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplro8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplro8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplro8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrr8re.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrre.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrrn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplru.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplru8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplb.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplbi.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplbu.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplr.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplri.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplro.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplrre.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplrrn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplru.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplb7d.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplb8a.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbcj7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbcj8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbi7d.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbi8a.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbij7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbij8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbij8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbj7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbj8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbj8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbjo7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbjo8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbjo8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppll7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppll8a.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppll8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppll8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppll8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppllc7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppllc8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplli7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplli8a.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplli8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplli8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplli8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppllo7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppllo8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppllo8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppllo8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplm7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplm8a.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplm8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplm8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplm8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmc7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmc8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmi7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmi8a.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmi8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmi8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmi8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmo7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmo8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmo8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmo8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplr8a.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrc7d.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrcj7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrcj8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrcj8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrcjo8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplri7d.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplri8a.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrij.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrij7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrij8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrj.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrj7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrjo7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplx7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplx8a.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplx8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplx8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplx8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxc7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxc8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxi7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxi8a.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxi8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxi8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxi8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxo7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxo8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxo8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxo8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/pslatex/pcrr8rn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/pslatex/pcrr8tn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/symbol/psyro.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/symbol/rpsyr.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/symbol/rpsyro.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmb.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmb7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmb8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmb8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmb8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbc7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbc8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbi.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbi7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbi8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbi8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbi8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbo.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbo7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbo8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbo8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbo8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmr.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmr8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmr8rn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmr8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmr8z.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmrc8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmri.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmri8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmri8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmri8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmri8z.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmro7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmro8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmro8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmro8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmrr8re.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmrrn.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmb.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmbi.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmbo.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmr.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmri.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmro.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmrre.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putb7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putb8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putb8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbc7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbc8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbi7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbi8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbi8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbo7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbo8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbo8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putr7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putr8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putr8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putrc7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putrc8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putri7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putri8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putri8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putro7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putro8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putro8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfchan/rpzcmi.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfding/pzcmi.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfding/pzcmi7t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfding/pzcmi8c.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfding/pzcmi8r.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfding/pzcmi8t.htf - texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfding/rpzdr.htf - texmf-dist/tex4ht/ht-fonts/alias/ae/ae.htf - texmf-dist/tex4ht/ht-fonts/alias/ae/aetcsc.htf - texmf-dist/tex4ht/ht-fonts/alias/ams/euler/eurb.htf - texmf-dist/tex4ht/ht-fonts/alias/ams/euler/eurm.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/antpb.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/antpbi.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/antpri.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/anttb.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/anttri.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/cs-antt.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttbcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttcbcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttcbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttclcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttclicap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttcmcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttcmicap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttcrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttcricap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttlcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttlicap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttmcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttmicap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttricap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/ec-antt.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttcbcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttcbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttclcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttclicap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttcmcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttcmicap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttcrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttcricap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttlcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttlicap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttmcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttmicap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttricap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/el-antt.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/ex-antt.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/exp-antt.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/greek-antt.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/qx-antt.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttcbcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttcbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttclcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttclicap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttcmcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttcmicap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttcrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttcricap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttlcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttlicap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttmcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttmicap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttricap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/rm-antt.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/sy-anttrz.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/t2a-antt.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/t2b-antt.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/t2c-antt.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/t5-antt.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-antt.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttbcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttcbcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttcbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttclcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttclicap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttcmcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttcmicap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttcrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttcricap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttlcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttlicap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttmcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttmicap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttricap.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/ts1-antt.htf - texmf-dist/tex4ht/ht-fonts/alias/antt/wncy-antt.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aealbattar.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aealmateen.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aealmohanadb.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aealmothnna.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aealyermook.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aearab.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aecortoba.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aedimnah.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aefurat.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aegranada.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aegraph.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aehani.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aekayrawan.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aekhalid.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aemashq.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aemetal.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aenada.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aenagham.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aenice.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aeostorah.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aeouhod.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aepetra.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aerehan.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aesalem.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aeshado.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aesharjah.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aesindibad.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aetarablus.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/aetholoth.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/homa.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/nazlib.htf - texmf-dist/tex4ht/ht-fonts/alias/arabi/titr.htf - texmf-dist/tex4ht/ht-fonts/alias/arev/favb8r.htf - texmf-dist/tex4ht/ht-fonts/alias/arev/favbi8r.htf - texmf-dist/tex4ht/ht-fonts/alias/arev/favri8r.htf - texmf-dist/tex4ht/ht-fonts/alias/arev/zavmb7t.htf - texmf-dist/tex4ht/ht-fonts/alias/arev/zavmbi7m.htf - texmf-dist/tex4ht/ht-fonts/alias/arev/zavmr7t.htf - texmf-dist/tex4ht/ht-fonts/alias/arev/zavmr7y.htf - texmf-dist/tex4ht/ht-fonts/alias/arev/zavmri7m.htf - texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchb7t.htf - texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchbc7t.htf - texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchbi7t.htf - texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchbo7t.htf - texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchr7t.htf - texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchrc7t.htf - texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchri7t.htf - texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchro7t.htf - texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchro8t.htf - texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchb8r.htf - texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchb8t.htf - texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchbc8t.htf - texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchbi8r.htf - texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchbi8t.htf - texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchbo8r.htf - texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchbo8t.htf - texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchr8r.htf - texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchrc8t.htf - texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchri8r.htf - texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchri8t.htf - texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchro8r.htf - texmf-dist/tex4ht/ht-fonts/alias/cc-pl/pccsc.htf - texmf-dist/tex4ht/ht-fonts/alias/cc-pl/pcmi.htf - texmf-dist/tex4ht/ht-fonts/alias/cc-pl/pcr.htf - texmf-dist/tex4ht/ht-fonts/alias/cc-pl/pcsl.htf - texmf-dist/tex4ht/ht-fonts/alias/cc-pl/pcti.htf - texmf-dist/tex4ht/ht-fonts/alias/chartervn/bchri8v.htf - texmf-dist/tex4ht/ht-fonts/alias/chess/chess10f.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm01.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm02.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm03.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm04.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm05.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm06.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm07.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm08.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm09.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm10.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm11.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm12.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm13.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm14.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm15.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm16.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm17.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm18.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm19.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm20.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm21.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm22.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm23.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm24.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm25.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm26.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm27.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm28.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm29.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm30.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm31.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm32.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm33.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm34.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm35.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm36.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm37.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm38.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm39.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm40.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm41.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm42.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm43.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm44.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm45.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm46.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm47.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm48.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm49.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm50.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm51.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm52.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm53.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm54.htf - texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm55.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/cmb.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/cmbsy.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/cmbx.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/cmbxti.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/cmcs.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/cmcsc.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/cmcss.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/cmcti.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/cmcyr.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/cmdunh.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/cmff.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/cmfi.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/cmitt.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/cmsl.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/cmsltt.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/cmss.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/cmssq.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/cmtex.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/cmtt.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/cmu.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/cmvtt.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/sauter/wnbx.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/sauter/wnbxti.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/sauter/wnr.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/sauter/wnsl.htf - texmf-dist/tex4ht/ht-fonts/alias/cm/wncyi.htf - texmf-dist/tex4ht/ht-fonts/alias/concrete/ccmi.htf - texmf-dist/tex4ht/ht-fonts/alias/concrete/ccr.htf - texmf-dist/tex4ht/ht-fonts/alias/concrete/ccsl.htf - texmf-dist/tex4ht/ht-fonts/alias/concrete/ccti.htf - texmf-dist/tex4ht/ht-fonts/alias/cs/csti.htf - texmf-dist/tex4ht/ht-fonts/alias/cs/cstt.htf - texmf-dist/tex4ht/ht-fonts/alias/currency/feybl.htf - texmf-dist/tex4ht/ht-fonts/alias/currency/feybo.htf - texmf-dist/tex4ht/ht-fonts/alias/currency/feybr.htf - texmf-dist/tex4ht/ht-fonts/alias/currency/feyml.htf - texmf-dist/tex4ht/ht-fonts/alias/currency/feymo.htf - texmf-dist/tex4ht/ht-fonts/alias/cyklop/cs-cyklopr-sc.htf - texmf-dist/tex4ht/ht-fonts/alias/cyklop/ec-cyklopr-sc.htf - texmf-dist/tex4ht/ht-fonts/alias/cyklop/l7x-cyklopi-sc.htf - texmf-dist/tex4ht/ht-fonts/alias/cyklop/l7x-cyklopi.htf - texmf-dist/tex4ht/ht-fonts/alias/cyklop/l7x-cyklopr-sc.htf - texmf-dist/tex4ht/ht-fonts/alias/cyklop/l7x-cyklopr.htf - texmf-dist/tex4ht/ht-fonts/alias/cyklop/ly1-cyklopi.htf - texmf-dist/tex4ht/ht-fonts/alias/cyklop/ly1-cyklopr-sc.htf - texmf-dist/tex4ht/ht-fonts/alias/cyklop/ly1-cyklopr.htf - texmf-dist/tex4ht/ht-fonts/alias/cyklop/qx-cyklopi.htf - texmf-dist/tex4ht/ht-fonts/alias/cyklop/qx-cyklopr-sc.htf - texmf-dist/tex4ht/ht-fonts/alias/cyklop/t5-cyklopr.htf - texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmcb.htf - texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmcitt.htf - texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmcsltt.htf - texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmcssbx.htf - texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmcssi.htf - texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmctt.htf - texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmcu.htf - texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmbx.htf - texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmbxti.htf - texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmcsc.htf - texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmdunh.htf - texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmff.htf - texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmsl.htf - texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmsltt.htf - texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmss.htf - texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmssbx.htf - texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmssdc.htf - texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmssi.htf - texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmti.htf - texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmtt.htf - texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmvtt.htf - texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmvtti.htf - texmf-dist/tex4ht/ht-fonts/alias/cyrillic/wbxipa.htf - texmf-dist/tex4ht/ht-fonts/alias/cyrillic/wslipa.htf - texmf-dist/tex4ht/ht-fonts/alias/ec/dc.htf - texmf-dist/tex4ht/ht-fonts/alias/ec/dccc.htf - texmf-dist/tex4ht/ht-fonts/alias/ec/ec.htf - texmf-dist/tex4ht/ht-fonts/alias/ec/eccc.htf - texmf-dist/tex4ht/ht-fonts/alias/ec/ecxc.htf - texmf-dist/tex4ht/ht-fonts/alias/eulervm/zeuex.htf - texmf-dist/tex4ht/ht-fonts/alias/eulervm/zeur.htf - texmf-dist/tex4ht/ht-fonts/alias/eulervm/zeus.htf - texmf-dist/tex4ht/ht-fonts/alias/euro/zpeub.htf - texmf-dist/tex4ht/ht-fonts/alias/euro/zpeubi.htf - texmf-dist/tex4ht/ht-fonts/alias/euro/zpeubis.htf - texmf-dist/tex4ht/ht-fonts/alias/euro/zpeubit.htf - texmf-dist/tex4ht/ht-fonts/alias/euro/zpeubs.htf - texmf-dist/tex4ht/ht-fonts/alias/euro/zpeubt.htf - texmf-dist/tex4ht/ht-fonts/alias/euro/zpeuri.htf - texmf-dist/tex4ht/ht-fonts/alias/euro/zpeuris.htf - texmf-dist/tex4ht/ht-fonts/alias/euro/zpeurit.htf - texmf-dist/tex4ht/ht-fonts/alias/euro/zpeurs.htf - texmf-dist/tex4ht/ht-fonts/alias/euro/zpeurt.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy01.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy02.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy03.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy04.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy05.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy06.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy07.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy08.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy09.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy10.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy11.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy12.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy13.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy14.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy15.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy16.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy17.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy18.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy19.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy20.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy21.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy22.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy23.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy24.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy25.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy26.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy27.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy28.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy29.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy30.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy31.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy32.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy33.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy34.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy35.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy36.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy37.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy38.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy39.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy40.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy41.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy42.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy43.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy44.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy45.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy46.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy47.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy48.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy49.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy50.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy51.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy52.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy53.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy54.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy55.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy56.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy57.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy58.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy59.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy60.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy61.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy62.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy63.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy64.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy65.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy66.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy67.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy68.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy69.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy70.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy71.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy72.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy73.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy74.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy75.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy76.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy77.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy78.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy79.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy80.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy81.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy82.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy83.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy84.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy85.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy86.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy87.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy88.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy89.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy90.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy91.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy92.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy93.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy94.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs01.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs02.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs03.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs04.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs05.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs06.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs07.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs08.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs09.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs10.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs11.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs12.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs13.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs14.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs15.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs16.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs17.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs18.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs19.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs20.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs21.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs22.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs23.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs24.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs25.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs26.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs27.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs28.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs29.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs30.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs31.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs32.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs33.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs34.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs35.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs36.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs37.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs38.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs39.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs40.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs41.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs42.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs43.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs44.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs45.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs46.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs47.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs48.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs49.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs50.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs51.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs52.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs53.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs54.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs55.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs56.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs57.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs58.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs59.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs60.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs61.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs62.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs63.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs64.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs65.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs66.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs67.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs68.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs69.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs70.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs71.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs72.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs73.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs74.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs75.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs76.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs77.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs78.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs79.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs80.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs81.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs82.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs83.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs84.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs85.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs86.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs87.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs88.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs89.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs90.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs91.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs92.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs93.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs94.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei01.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei02.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei03.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei04.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei05.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei06.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei07.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei08.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei09.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei10.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei11.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei12.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei13.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei14.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei15.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei16.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei17.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei18.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei19.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei20.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei21.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei22.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei23.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei24.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei25.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei26.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei27.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei28.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei29.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei30.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei31.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei32.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei33.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei34.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei35.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei36.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei37.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei38.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei39.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei40.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei41.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei42.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei43.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei44.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei45.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei46.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei47.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei48.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei49.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei50.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei51.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei52.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei53.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei54.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei55.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei56.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei57.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei58.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei59.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei60.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei61.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei62.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei63.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei64.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei65.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei66.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei67.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei68.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei69.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei70.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei71.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei72.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei73.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei74.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei75.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei76.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei77.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei78.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei79.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei80.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei81.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei82.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei83.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei84.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei85.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei86.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei87.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei88.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei89.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei90.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei91.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei92.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei93.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei94.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai01.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai02.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai03.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai04.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai05.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai06.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai07.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai08.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai09.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai10.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai11.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai12.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai13.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai14.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai15.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai16.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai17.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai18.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai19.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai20.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai21.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai22.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai23.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai24.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai25.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai26.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai27.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai28.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai29.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai30.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai31.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai32.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai33.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai34.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai35.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai36.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai37.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai38.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai39.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai40.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai41.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai42.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai43.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai44.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai45.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai46.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai47.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai48.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai49.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai50.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai51.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai52.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai53.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai54.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai55.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai56.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai57.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai58.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai59.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai60.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai61.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai62.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai63.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai64.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai65.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai66.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai67.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai68.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai69.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai70.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai71.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai72.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai73.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai74.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai75.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai76.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai77.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai78.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai79.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai80.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai81.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai82.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai83.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai84.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai85.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai86.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai87.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai88.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai89.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai90.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai91.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai92.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai93.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai94.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli01.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli02.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli03.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli04.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli05.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli06.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli07.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli08.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli09.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli10.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli11.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli12.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli13.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli14.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli15.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli16.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli17.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli18.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli19.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli20.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli21.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli22.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli23.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli24.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli25.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli26.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli27.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli28.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli29.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli30.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli31.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli32.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli33.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli34.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli35.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli36.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli37.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli38.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli39.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli40.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli41.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli42.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli43.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli44.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli45.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli46.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli47.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli48.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli49.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli50.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli51.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli52.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli53.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli54.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli55.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli56.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli57.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli58.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli59.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli60.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli61.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli62.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli63.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli64.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli65.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli66.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli67.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli68.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli69.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli70.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli71.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli72.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli73.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli74.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli75.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli76.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli77.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli78.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli79.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli80.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli81.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli82.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli83.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli84.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli85.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli86.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli87.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli88.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli89.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli90.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli91.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli92.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli93.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli94.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu01.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu02.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu03.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu04.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu05.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu06.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu07.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu08.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu09.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu10.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu11.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu12.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu13.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu14.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu15.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu16.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu17.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu18.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu19.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu20.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu21.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu22.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu23.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu24.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu25.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu26.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu27.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu28.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu29.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu30.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu31.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu32.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu33.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu34.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu35.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu36.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu37.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu38.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu39.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu40.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu41.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu42.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu43.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu44.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu45.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu46.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu47.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu48.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu49.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu50.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu51.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu52.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu53.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu54.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu55.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu56.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu57.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu58.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu59.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu60.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu61.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu62.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu63.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu64.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu65.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu66.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu67.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu68.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu69.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu70.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu71.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu72.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu73.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu74.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu75.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu76.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu77.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu78.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu79.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu80.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu81.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu82.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu83.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu84.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu85.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu86.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu87.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu88.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu89.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu90.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu91.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu92.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu93.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu94.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu01.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu02.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu03.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu04.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu05.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu06.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu07.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu08.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu09.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu10.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu11.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu12.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu13.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu14.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu15.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu16.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu17.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu18.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu19.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu20.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu21.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu22.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu23.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu24.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu25.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu26.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu27.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu28.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu29.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu30.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu31.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu32.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu33.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu34.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu35.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu36.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu37.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu38.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu39.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu40.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu41.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu42.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu43.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu44.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu45.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu46.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu47.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu48.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu49.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu50.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu51.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu52.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu53.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu54.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu55.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu56.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu57.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu58.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu59.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu60.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu61.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu62.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu63.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu64.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu65.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu66.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu67.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu68.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu69.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu70.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu71.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu72.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu73.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu74.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu75.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu76.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu77.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu78.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu79.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu80.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu81.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu82.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu83.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu84.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu85.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu86.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu87.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu88.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu89.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu90.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu91.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu92.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu93.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu94.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh01.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh02.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh03.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh04.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh05.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh06.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh07.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh08.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh09.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh10.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh11.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh12.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh13.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh14.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh15.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh16.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh17.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh18.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh19.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh20.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh21.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh22.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh23.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh24.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh25.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh26.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh27.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh28.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh29.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh30.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh31.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh32.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh33.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh34.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh35.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh36.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh37.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh38.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh39.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh40.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh41.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh42.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh43.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh44.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh45.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh46.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh47.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh48.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh49.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh50.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh51.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh52.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh53.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh54.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh55.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh56.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh57.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh58.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh59.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh60.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh61.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh62.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh63.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh64.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh65.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh66.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh67.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh68.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh69.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh70.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh71.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh72.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh73.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh74.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh75.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh76.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh77.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh78.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh79.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh80.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh81.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh82.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh83.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh84.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh85.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh86.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh87.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh88.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh89.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh90.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh91.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh92.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh93.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh94.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk01.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk02.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk03.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk04.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk05.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk06.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk07.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk08.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk09.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk10.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk11.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk12.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk13.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk14.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk15.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk16.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk17.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk18.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk19.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk20.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk21.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk22.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk23.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk24.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk25.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk26.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk27.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk28.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk29.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk30.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk31.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk32.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk33.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk34.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk35.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk36.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk37.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk38.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk39.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk40.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk41.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk42.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk43.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk44.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk45.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk46.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk47.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk48.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk49.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk50.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk51.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk52.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk53.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk54.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk55.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk56.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk57.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk58.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk59.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk60.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk61.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk62.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk63.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk64.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk65.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk66.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk67.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk68.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk69.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk70.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk71.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk72.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk73.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk74.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk75.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk76.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk77.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk78.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk79.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk80.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk81.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk82.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk83.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk84.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk85.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk86.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk87.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk88.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk89.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk90.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk91.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk92.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk93.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk94.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw01.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw02.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw03.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw04.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw05.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw06.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw07.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw08.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw09.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw10.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw11.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw12.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw13.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw14.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw15.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw16.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw17.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw18.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw19.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw20.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw21.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw22.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw23.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw24.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw25.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw26.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw27.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw28.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw29.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw30.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw31.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw32.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw33.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw34.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw35.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw36.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw37.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw38.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw39.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw40.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw41.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw42.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw43.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw44.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw45.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw46.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw47.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw48.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw49.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw50.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw51.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw52.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw53.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw54.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw55.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw56.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw57.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw58.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw59.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw60.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw61.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw62.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw63.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw64.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw65.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw66.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw67.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw68.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw69.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw70.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw71.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw72.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw73.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw74.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw75.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw76.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw77.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw78.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw79.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw80.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw81.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw82.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw83.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw84.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw85.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw86.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw87.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw88.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw89.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw90.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw91.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw92.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw93.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw94.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao01.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao02.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao03.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao04.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao05.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao06.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao07.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao08.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao09.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao10.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao11.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao12.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao13.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao14.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao15.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao16.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao17.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao18.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao19.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao20.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao21.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao22.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao23.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao24.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao25.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao26.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao27.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao28.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao29.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao30.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao31.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao32.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao33.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao34.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao35.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao36.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao37.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao38.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao39.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao40.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao41.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao42.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao43.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao44.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao45.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao46.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao47.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao48.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao49.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao50.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao51.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao52.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao53.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao54.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao55.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao56.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao57.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao58.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao59.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao60.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao61.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao62.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao63.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao64.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao65.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao66.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao67.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao68.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao69.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao70.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao71.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao72.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao73.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao74.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao75.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao76.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao77.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao78.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao79.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao80.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao81.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao82.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao83.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao84.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao85.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao86.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao87.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao88.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao89.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao90.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao91.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao92.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao93.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao94.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou01.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou02.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou03.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou04.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou05.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou06.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou07.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou08.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou09.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou10.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou11.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou12.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou13.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou14.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou15.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou16.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou17.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou18.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou19.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou20.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou21.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou22.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou23.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou24.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou25.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou26.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou27.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou28.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou29.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou30.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou31.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou32.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou33.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou34.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou35.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou36.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou37.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou38.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou39.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou40.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou41.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou42.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou43.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou44.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou45.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou46.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou47.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou48.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou49.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou50.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou51.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou52.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou53.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou54.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou55.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou56.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou57.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou58.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou59.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou60.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou61.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou62.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou63.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou64.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou65.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou66.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou67.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou68.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou69.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou70.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou71.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou72.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou73.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou74.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou75.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou76.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou77.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou78.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou79.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou80.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou81.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou82.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou83.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou84.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou85.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou86.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou87.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou88.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou89.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou90.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou91.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou92.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou93.htf - texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou94.htf - texmf-dist/tex4ht/ht-fonts/alias/greek/ibygrk/fibo.htf - texmf-dist/tex4ht/ht-fonts/alias/hebrew/cjheblsm.htf - texmf-dist/tex4ht/ht-fonts/alias/hebrew/deads.htf - texmf-dist/tex4ht/ht-fonts/alias/hebrew/hcaption.htf - texmf-dist/tex4ht/ht-fonts/alias/hebrew/oldjaf.htf - texmf-dist/tex4ht/ht-fonts/alias/hebrew/rcjheblsm.htf - texmf-dist/tex4ht/ht-fonts/alias/hebrew/rcjhebltx.htf - texmf-dist/tex4ht/ht-fonts/alias/hebrew/telav.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonabcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonabicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonacbcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonacbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonachcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonachicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonaclcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonaclicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonacmcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonacmicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonacrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonacricap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonahcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonahicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonalcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonalicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonamcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonamicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonarcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonaricap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwona.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonabcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonabicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonacbcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonacbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonachcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonachicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonaclcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonaclicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonacmcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonacmicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonacrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonacricap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonahcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonahicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonalcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonalicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonamcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonamicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonarcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonaricap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/mi-iwona.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonabcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonabicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonacbcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonacbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonachcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonachicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonaclcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonaclicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonacmcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonacmicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonacrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonacricap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonahcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonahicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonalcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonalicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonamcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonamicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonarcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonaricap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonabcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonabicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonacbcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonacbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonachcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonachicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonaclcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonaclicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonacmcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonacmicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonacrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonacricap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonahcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonahicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonalcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonalicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonamcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonamicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonarcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonaricap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonabcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonabicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonacbcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonacbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonachcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonachicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonaclcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonaclicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonacmcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonacmicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonacrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonacricap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonahcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonahicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonalcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonalicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonamcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonamicap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonarcap.htf - texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonaricap.htf - texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcbi.htf - texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcbl.htf - texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcbx.htf - texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcci.htf - texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcit.htf - texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcrb.htf - texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcsi.htf - texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcsl.htf - texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcso.htf - texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcss.htf - texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcst.htf - texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcsx.htf - texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcti.htf - texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tctt.htf - texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcui.htf - texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcvi.htf - texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcvt.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwona/cs-kurier.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierbcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercbcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierchcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierchicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierclcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierclicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercmcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercmicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercricap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierhcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierhicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierlcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierlicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriermcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriermicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierricap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurier.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierbcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercbcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierchcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierchicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierclcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierclicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercmcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercmicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercricap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierhcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierhicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierlcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierlicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriermcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriermicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierricap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/ex-iwona/ex-kurier.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/exp-iwona/exp-kurier.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/greek-iwona/greek-kurier.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/mi-iwona/mi-kurier.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwona/qx-kurier.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierbcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercbcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierchcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierchicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierclcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierclicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercmcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercmicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercricap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierhcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierhicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierlcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierlicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriermcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriermicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierricap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/rm-iwona/rm-kurier.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/sy-iwona/sy-kurier.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t2a-iwona/t2a-kurier.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t2b-iwona/t2b-kurier.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t2c-iwona/t2c-kurier.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwona/t5-kurier.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierbcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercbcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierchcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierchicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierclcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierclicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercmcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercmicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercricap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierhcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierhicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierlcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierlicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriermcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriermicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierricap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurier.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierbcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercbcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierchcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierchicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierclcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierclicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercmcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercmicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercricap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierhcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierhicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierlcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierlicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriermcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriermicap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierricap.htf - texmf-dist/tex4ht/ht-fonts/alias/kurier/wncy-iwona/wncy-kurier.htf - texmf-dist/tex4ht/ht-fonts/alias/latex/lcmss.htf - texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/labx.htf - texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lass.htf - texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lati.htf - texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/latt.htf - texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lbbx.htf - texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lbcc.htf - texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lbrm.htf - texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lbss.htf - texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lbti.htf - texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lbtt.htf - texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lcbx.htf - texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lccc.htf - texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lcrm.htf - texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lcss.htf - texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lcti.htf - texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lctt.htf - texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/ldbx.htf - texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/ldcc.htf - texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/ldrm.htf - texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/ldss.htf - texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/ldti.htf - texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/ldtt.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxl.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-8r.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-lgi.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-lgr.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-00.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-01.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-02.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-03.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-04.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-05.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-1e.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-1f.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-20.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-21.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-22.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-23.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-24.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-25.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-26.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-27.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-2c.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-a7.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-circle.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-e0.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-e1.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-f6.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-fb.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-ff.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-infsup.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-lgi.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-lgr.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbc-t1o.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbc-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-8r.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-lgi.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-lgr.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-00.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-01.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-02.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-03.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-04.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-05.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-1e.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-1f.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-20.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-21.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-23.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-25.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-26.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-2c.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-a7.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-circle.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-fb.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-ff.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-infsup.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-lgi.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-lgr.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbic-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbic-t1o.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbic-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlr-lgr.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlr-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlr-xl-infsup.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlrc-t1o.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlrc-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-8r.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-lgi.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-lgr.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-00.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-01.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-02.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-03.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-04.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-05.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-1e.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-1f.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-20.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-21.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-22.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-23.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-25.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-27.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-2c.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-a7.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-e0.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-f6.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-fb.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-ff.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-infsup.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-lgi.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-lgr.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlric-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlric-t1o.htf - texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlric-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/cs-lmcs.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-ec/ec-lm.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-qx/lm-qx.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-qx/qx-lm.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cmin/cminch.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cmrm/cmr.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cmsc/cmcscsl.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csin/csinch.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csb.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csbx.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csbxsl.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csbxti.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/cssl.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csss.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csssbx.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csssdc.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csssi.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csssq.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csssqi.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csu.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cstt/csitt.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cstt/cssltt.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cstt/cstcsc.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cstt/csvtt.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-plrm/plss.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-t5psn/vntcsc.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lmbsy.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lmex.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lmmi.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/lmsy.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/pre2005/cork-lmtcs.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/pre2005/qx-.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/pre2005/qx-lmtcs.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/pre2005/qx-lmvt.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/pre2005/texnansi-lm.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/pre2005/texnansi-lmtcs.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/t5-lm.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/t5-lmtcs.htf - texmf-dist/tex4ht/ht-fonts/alias/lm/ts1-.htf - texmf-dist/tex4ht/ht-fonts/alias/marvosym/fmvri8x.htf - texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchb7m.htf - texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchb7t.htf - texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchb7v.htf - texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchb7y.htf - texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchbi7m.htf - texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchbi7t.htf - texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchbo7t.htf - texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchr7m.htf - texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchr7t.htf - texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchr7y.htf - texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchri7m.htf - texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchri7t.htf - texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchro7t.htf - texmf-dist/tex4ht/ht-fonts/alias/mathpple/eurbo.htf - texmf-dist/tex4ht/ht-fonts/alias/mathpple/eurmo.htf - texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppleb7m.htf - texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppleb7t.htf - texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppleb7y.htf - texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppler7m.htf - texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppler7t.htf - texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppler7v.htf - texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppler7y.htf - texmf-dist/tex4ht/ht-fonts/alias/mathtime/blex.htf - texmf-dist/tex4ht/ht-fonts/alias/mathtime/blmi.htf - texmf-dist/tex4ht/ht-fonts/alias/mathtime/blsy.htf - texmf-dist/tex4ht/ht-fonts/alias/mathtime/mtex.htf - texmf-dist/tex4ht/ht-fonts/alias/mathtime/mtmi.htf - texmf-dist/tex4ht/ht-fonts/alias/mathtime/mtsy.htf - texmf-dist/tex4ht/ht-fonts/alias/mathtime/mtsyn.htf - texmf-dist/tex4ht/ht-fonts/alias/pazo/fplmbb.htf - texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmb7m.htf - texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmb7t.htf - texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmb7y.htf - texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmr7m.htf - texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmr7t.htf - texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmr7v.htf - texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmr7y.htf - texmf-dist/tex4ht/ht-fonts/alias/pl/plb.htf - texmf-dist/tex4ht/ht-fonts/alias/pl/plbxsl.htf - texmf-dist/tex4ht/ht-fonts/alias/pl/plbxti.htf - texmf-dist/tex4ht/ht-fonts/alias/pl/plcsc.htf - texmf-dist/tex4ht/ht-fonts/alias/pl/pldunh.htf - texmf-dist/tex4ht/ht-fonts/alias/pl/plex.htf - texmf-dist/tex4ht/ht-fonts/alias/pl/plff.htf - texmf-dist/tex4ht/ht-fonts/alias/pl/plfi.htf - texmf-dist/tex4ht/ht-fonts/alias/pl/plitt.htf - texmf-dist/tex4ht/ht-fonts/alias/pl/plmi.htf - texmf-dist/tex4ht/ht-fonts/alias/pl/plr.htf - texmf-dist/tex4ht/ht-fonts/alias/pl/plsl.htf - texmf-dist/tex4ht/ht-fonts/alias/pl/plsltt.htf - texmf-dist/tex4ht/ht-fonts/alias/pl/plsy.htf - texmf-dist/tex4ht/ht-fonts/alias/pl/plti.htf - texmf-dist/tex4ht/ht-fonts/alias/pl/pltt.htf - texmf-dist/tex4ht/ht-fonts/alias/pl/plu.htf - texmf-dist/tex4ht/ht-fonts/alias/pl/plvtt.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/p1x.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/p1xbsc.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/p1xsc.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pcx.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxb.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbex.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbexa.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbi.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbmi.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbmi1.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbmia.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbsc.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbsl.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbsy.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbsya.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbsyb.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxex.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxi.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxmi.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxmi1.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxmia.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxsl.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxsy.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxsya.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxsyb.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpcxb.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpcxi.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpcxsl.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpxbmi.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpxbsc.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpxi.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpxmi.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpxpplb.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpxr.htf - texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpxsl.htf - texmf-dist/tex4ht/ht-fonts/alias/qfonts/qbkb.htf - texmf-dist/tex4ht/ht-fonts/alias/qfonts/qbkbi.htf - texmf-dist/tex4ht/ht-fonts/alias/qfonts/qbkri.htf - texmf-dist/tex4ht/ht-fonts/alias/qfonts/qcrb.htf - texmf-dist/tex4ht/ht-fonts/alias/qfonts/qcrbi.htf - texmf-dist/tex4ht/ht-fonts/alias/qfonts/qcrri.htf - texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvb.htf - texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvbi.htf - texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvcb.htf - texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvcbi.htf - texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvcr.htf - texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvcri.htf - texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvr.htf - texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvri.htf - texmf-dist/tex4ht/ht-fonts/alias/qfonts/qplb.htf - texmf-dist/tex4ht/ht-fonts/alias/qfonts/qplbi.htf - texmf-dist/tex4ht/ht-fonts/alias/qfonts/qplr.htf - texmf-dist/tex4ht/ht-fonts/alias/qfonts/qplri.htf - texmf-dist/tex4ht/ht-fonts/alias/qfonts/qtmb.htf - texmf-dist/tex4ht/ht-fonts/alias/qfonts/qtmbi.htf - texmf-dist/tex4ht/ht-fonts/alias/qfonts/qtmr.htf - texmf-dist/tex4ht/ht-fonts/alias/qfonts/qtmri.htf - texmf-dist/tex4ht/ht-fonts/alias/sw/arial.htf - texmf-dist/tex4ht/ht-fonts/alias/sw/cour.htf - texmf-dist/tex4ht/ht-fonts/alias/sw/times.htf - texmf-dist/tex4ht/ht-fonts/alias/times.htf - texmf-dist/tex4ht/ht-fonts/alias/times/ptmr7t.htf - texmf-dist/tex4ht/ht-fonts/alias/tipa/tipx.htf - texmf-dist/tex4ht/ht-fonts/alias/tipa/xipa.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/pxbsyc.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtcxb.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtcxbi.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtcxbsl.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtcxbss.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtcxbsso.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtcxi.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtcxsl.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtcxsssl.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxbmi.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxbsc.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxbsssc.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxmi.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxphvb.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxphvbo.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxphvr.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxphvro.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxptmb.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxptmbi.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxptmbo.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxptmr.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxptmri.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxptmro.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxsssc.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/t1x.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/t1xbsc.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/t1xbsssc.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/t1xbttsc.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/t1xsssc.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/t1xttsc.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/tcxi.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/tcxr.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/tcxsl.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/tcxss.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/tcxsssl.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/tcxtt.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/tcxttsl.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/txbex.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/txbmi.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/txbsc.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/txbtt.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/txbttsc.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/txex.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/txexa.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/txi.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/txmi.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/txmia.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/txr.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/txsl.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/txss.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/txsssc.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/txsssl.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/txsy.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/txsya.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/txsyb.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/txttsc.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/tyx.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/tyxbsc.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/tyxbsssc.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/tyxbttsc.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/tyxsssc.htf - texmf-dist/tex4ht/ht-fonts/alias/txfonts/tyxttsc.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/arevvn/fav.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchb8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchbc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchbi8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchbo8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchr8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchrc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchro8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/txtt.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/classicovn/uop.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/cmbrightvn/vncm.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/comicsansvn/comic.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/concretevn/vncc.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/garamondvn/ugm.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/grotesqvn/ugq.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jthb8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jthbc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jthr8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jthrc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jvnb8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jvnbc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jvnbi8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jvnr8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jvnrc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jvnri8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/lprb8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/lprbc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/lprbi8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/lprr8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/lprrc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/lprri8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/ma1b8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/ma1bc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/ma1bi8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/ma1r8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/ma1rc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/ma1ri8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mcrb8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mcrbc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mcrbi8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mcrr8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mcrrc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mcrri8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mnsb8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mnsbc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mnsbi8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mnsr8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mnsrc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mnsri8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-ant.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttbcap.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttcbcap.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttcbicap.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttclcap.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttclicap.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttcmcap.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttcmicap.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttcrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttcricap.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttlcap.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttlicap.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttmcap.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttmicap.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttrcap.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttricap.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/fplrc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uagd8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uagdc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uagdo8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uagk8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uagkc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uagko8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubkd8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubkdc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubkdi8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubkdo8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubkl8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubklc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubkli8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubklo8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ucrb8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ucrbc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ucrbo8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ucrr8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ucrrc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ucrro8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uhvb8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uhvbc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uhvbo8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uhvr8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uhvrc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uhvro8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncb8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncbc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncbi8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncbo8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncr8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncrc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncri8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncro8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplb8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplbc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplbi8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplbo8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplr8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplrc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplri8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplro8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmb8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmbc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmbi8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmbo8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmr8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmrc8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmri8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmro8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uzcmi8v.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/utopiavn/put.htf - texmf-dist/tex4ht/ht-fonts/alias/vntex/vnr/vn.htf - texmf-dist/tex4ht/ht-fonts/aliase/mathtime/mtsy-bs.htf - texmf-dist/tex4ht/ht-fonts/ascii/manfnt/manfnt.htf - texmf-dist/tex4ht/ht-fonts/cp1256/charset/unicode.4hf - texmf-dist/tex4ht/ht-fonts/css/emacspeak/cm/cmbx.4es - texmf-dist/tex4ht/ht-fonts/css/emacspeak/cm/cmmi.4es - texmf-dist/tex4ht/ht-fonts/css/emacspeak/cm/cmti.4es - texmf-dist/tex4ht/ht-fonts/css/emacspeak/cm/cmtt.4es - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1201.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1202.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1203.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1204.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1205.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1206.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1207.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1208.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1209.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1210.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1211.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1212.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1213.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1214.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1215.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1216.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1217.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1218.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1219.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1220.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1221.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1222.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1223.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1224.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1225.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1226.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1227.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1228.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1229.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1230.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1231.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1232.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1233.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1234.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1235.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1236.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1237.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1238.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1239.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1240.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1241.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1242.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1243.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1244.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1245.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1246.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1247.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1248.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1249.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1250.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1251.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1252.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1253.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1254.htf - texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1255.htf - texmf-dist/tex4ht/ht-fonts/gb2312/charset/unicode.4hf - texmf-dist/tex4ht/ht-fonts/gbk/charset/unicode.4hf - texmf-dist/tex4ht/ht-fonts/html-speech/charset/unicode.4hf - texmf-dist/tex4ht/ht-fonts/iso8859/1/charset/uni/unicode.4hf - texmf-dist/tex4ht/ht-fonts/iso8859/1/charset/unicode.4hf - texmf-dist/tex4ht/ht-fonts/iso8859/1/chess/chess.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/chess/chessf.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/chess/fselch.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/cm/cminch.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/devanagari/dvng.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/euro/zpeur.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/go/go.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/go/go1bla.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/go/go1whi.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/go/go2bla.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/go/go2whi.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/html/charset/unicode.4hf - texmf-dist/tex4ht/ht-fonts/iso8859/1/ipa/wsuipa.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/blex-bs.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/blmi-bs.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/blsy-bs.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/mtex-bs.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/mtmi-bs.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/mtsy-bs.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/mtsyn-bs.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/mongolian/bicigh.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/mongolian/bthh.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/mongolian/bthv.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/ps2mf/times-ps.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/sw/curr.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/sw/times-sw.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/tibetan/ctib.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/xypic/xyatip.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/xypic/xybsql.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/xypic/xybtip.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/xypic/xydash.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/xypic/xyebut.htf - texmf-dist/tex4ht/ht-fonts/iso8859/1/xypic/xymisc.htf - texmf-dist/tex4ht/ht-fonts/iso8859/2/charset/unicode.4hf - texmf-dist/tex4ht/ht-fonts/iso8859/2/html/charset/unicode.4hf - texmf-dist/tex4ht/ht-fonts/iso8859/5/charset/unicode.4hf - texmf-dist/tex4ht/ht-fonts/iso8859/5/cm/sauter/wnr.htf - texmf-dist/tex4ht/ht-fonts/iso8859/5/cm/sauter/wnti.htf - texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/cmcyr/cmcbx.htf - texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/cmcyr/cmcbxti.htf - texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/cmcyr/cmccsc.htf - texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/kminch.htf - texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/kmitt.htf - texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/kmr.htf - texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/kmtcsc.htf - texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/wncsc.htf - texmf-dist/tex4ht/ht-fonts/iso8859/5/html/charset/unicode.4hf - texmf-dist/tex4ht/ht-fonts/iso8859/5/lh/lh-t2a/larm.htf - texmf-dist/tex4ht/ht-fonts/iso8859/6/charset/unicode.4hf - texmf-dist/tex4ht/ht-fonts/iso8859/6/html/charset/unicode.4hf - texmf-dist/tex4ht/ht-fonts/iso8859/7/charset/unicode.4hf - texmf-dist/tex4ht/ht-fonts/iso8859/8/hebrew/hclassic.htf - texmf-dist/tex4ht/ht-fonts/iso8859/8/hebrew/jerus.htf - texmf-dist/tex4ht/ht-fonts/jsml/charset/unicode.4hf - texmf-dist/tex4ht/ht-fonts/koi/8r/charset/unicode.4hf - texmf-dist/tex4ht/ht-fonts/koi/8r/lh/lh-t2a/larm.htf - texmf-dist/tex4ht/ht-fonts/mozilla/charset/mnemonic/unicode.4hf - texmf-dist/tex4ht/ht-fonts/mozilla/charset/native/unicode.4hf - texmf-dist/tex4ht/ht-fonts/mozilla/charset/unicode.4hf - texmf-dist/tex4ht/ht-fonts/ooffice/charset/unicode.4hf - texmf-dist/tex4ht/ht-fonts/share/adobe/helvetic/phvr8z.htf - texmf-dist/tex4ht/ht-fonts/symbol/charset/unicode.4hf - texmf-dist/tex4ht/ht-fonts/symbol/cyrillic/xcmr.htf - texmf-dist/tex4ht/ht-fonts/symbol/cyrillic/xcmti.htf - texmf-dist/tex4ht/ht-fonts/symbol/hebrew/hclassic.htf - texmf-dist/tex4ht/ht-fonts/symbol/mathtime/blex-bs.htf - texmf-dist/tex4ht/ht-fonts/symbol/mathtime/blmi-bs.htf - texmf-dist/tex4ht/ht-fonts/symbol/mathtime/blsy-bs.htf - texmf-dist/tex4ht/ht-fonts/symbol/mathtime/mtex-bs.htf - texmf-dist/tex4ht/ht-fonts/symbol/mathtime/mtmi-bs.htf - texmf-dist/tex4ht/ht-fonts/symbol/mathtime/mtsy-bs.htf - texmf-dist/tex4ht/ht-fonts/symbol/mathtime/mtsyn-bs.htf - texmf-dist/tex4ht/ht-fonts/unicode/adobe/courier/pcrr7t.htf - texmf-dist/tex4ht/ht-fonts/unicode/adobe/courier/pcrrc7t.htf - texmf-dist/tex4ht/ht-fonts/unicode/adobe/courier/pcrro8r.htf - texmf-dist/tex4ht/ht-fonts/unicode/adobe/courier/pcrro8u.htf - texmf-dist/tex4ht/ht-fonts/unicode/adobe/courier/pplrc8r.htf - texmf-dist/tex4ht/ht-fonts/unicode/adobe/helvetic/ptmb8z.htf - texmf-dist/tex4ht/ht-fonts/unicode/adobe/helvetic/ptmrc8z.htf - texmf-dist/tex4ht/ht-fonts/unicode/adobe/mathptm/zpsycmrv.htf - texmf-dist/tex4ht/ht-fonts/unicode/adobe/mathptm/zptmcmr.htf - texmf-dist/tex4ht/ht-fonts/unicode/adobe/mathptm/zptmcmrm.htf - texmf-dist/tex4ht/ht-fonts/unicode/adobe/mathptm/zpzccmry.htf - texmf-dist/tex4ht/ht-fonts/unicode/adobe/palatino/pplb9c.htf - texmf-dist/tex4ht/ht-fonts/unicode/adobe/palatino/pplrc9t.htf - texmf-dist/tex4ht/ht-fonts/unicode/adobe/palatino/pplri9t.htf - texmf-dist/tex4ht/ht-fonts/unicode/adobe/symbol/psyr.htf - texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/ptmr8c.htf - texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/ptmrc.htf - texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/ptmrc7t.htf - texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/ptmri7t.htf - texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/ptmro.htf - texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/ptmrre.htf - texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/rptmrrn.htf - texmf-dist/tex4ht/ht-fonts/unicode/adobe/zapfding/pzdr.htf - texmf-dist/tex4ht/ht-fonts/unicode/ae/aecsc.htf - texmf-dist/tex4ht/ht-fonts/unicode/ams/cyrillic/wncyr.htf - texmf-dist/tex4ht/ht-fonts/unicode/ams/euler/euex.htf - texmf-dist/tex4ht/ht-fonts/unicode/ams/euler/eufb.htf - texmf-dist/tex4ht/ht-fonts/unicode/ams/euler/eufm.htf - texmf-dist/tex4ht/ht-fonts/unicode/ams/euler/eusb.htf - texmf-dist/tex4ht/ht-fonts/unicode/ams/euler/eusm.htf - texmf-dist/tex4ht/ht-fonts/unicode/ams/symbols/msam.htf - texmf-dist/tex4ht/ht-fonts/unicode/ams/symbols/msbm.htf - texmf-dist/tex4ht/ht-fonts/unicode/antt/antpr.htf - texmf-dist/tex4ht/ht-fonts/unicode/antt/anttr.htf - texmf-dist/tex4ht/ht-fonts/unicode/antt/ec-anttbcap.htf - texmf-dist/tex4ht/ht-fonts/unicode/antt/mi-antt.htf - texmf-dist/tex4ht/ht-fonts/unicode/antt/qx-anttbcap.htf - texmf-dist/tex4ht/ht-fonts/unicode/antt/sy-antt.htf - texmf-dist/tex4ht/ht-fonts/unicode/antt/sy-anttlz.htf - texmf-dist/tex4ht/ht-fonts/unicode/arabi/aehor.htf - texmf-dist/tex4ht/ht-fonts/unicode/arabi/nazli.htf - texmf-dist/tex4ht/ht-fonts/unicode/arev/favr8r.htf - texmf-dist/tex4ht/ht-fonts/unicode/bbold/bbold.htf - texmf-dist/tex4ht/ht-fonts/unicode/bitstrea/charter/bchr8t.htf - texmf-dist/tex4ht/ht-fonts/unicode/cbgreek/grmc.htf - texmf-dist/tex4ht/ht-fonts/unicode/cbgreek/grmn.htf - texmf-dist/tex4ht/ht-fonts/unicode/charset/unicode.4hf - texmf-dist/tex4ht/ht-fonts/unicode/chess/chess.htf - texmf-dist/tex4ht/ht-fonts/unicode/chess/chessf.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1201.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1202.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1203.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1204.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1205.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1206.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1207.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1208.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1209.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1210.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1211.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1212.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1213.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1214.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1215.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1216.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1217.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1218.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1219.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1220.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1221.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1222.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1223.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1224.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1225.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1226.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1227.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1228.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1229.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1230.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1231.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1232.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1233.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1234.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1235.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1236.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1237.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1238.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1239.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1240.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1241.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1242.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1243.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1244.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1245.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1246.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1247.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1248.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1249.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1250.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1251.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1252.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1253.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1254.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1255.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong01.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong02.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong03.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong04.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong05.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong06.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong07.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong08.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong09.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong10.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong11.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong12.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong13.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong14.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong15.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong16.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong17.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong18.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong19.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong20.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong21.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong22.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong23.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong24.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong25.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong26.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong27.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong28.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong29.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong30.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong31.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong32.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong33.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong34.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong35.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong36.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong37.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong38.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong39.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong40.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong41.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong42.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong43.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong44.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong45.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong46.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong47.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong48.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong49.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong50.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong51.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong52.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong53.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong54.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong55.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong56.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong57.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong58.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong59.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong60.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong61.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong62.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong63.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong64.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong65.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong66.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong67.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong68.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong69.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong70.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong71.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong72.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong73.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong74.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong75.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong76.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong77.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong78.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong79.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong80.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong81.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong82.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong83.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong84.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong85.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong86.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong87.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong88.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong89.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong90.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong91.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong92.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong93.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong94.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong25.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong27.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong28.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong32.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong35.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong90.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong92.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong93.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong94.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song01.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song02.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song03.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song04.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song05.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song06.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song07.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song08.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song09.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song0a.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song0b.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song0c.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song0d.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song0e.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song0f.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song10.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song11.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song12.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song13.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song14.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song15.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song16.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song17.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song18.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song19.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song1a.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song1b.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song1c.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song1d.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song1e.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song1f.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song20.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song21.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song22.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song23.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song24.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song25.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song26.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song27.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song28.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song29.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song2a.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song2b.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song2c.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song2d.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song2e.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song2f.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song30.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song31.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song32.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song33.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song34.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song35.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song36.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song37.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song38.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song39.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song3a.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song3b.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song3c.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song3d.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song3e.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song3f.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song40.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song41.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song42.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song43.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song44.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song45.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song46.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song47.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song48.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song49.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song4a.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song4b.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song4c.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song4d.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song4e.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song4f.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song50.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song51.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song52.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song53.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song54.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song55.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song56.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song57.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song58.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song59.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song5a.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song5b.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song5c.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song5d.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song5e.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song5f.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song60.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song61.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song62.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song63.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song64.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song65.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song66.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song67.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song68.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song69.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song6a.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song6b.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song6c.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song6d.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song6e.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song6f.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song70.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song71.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song72.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song73.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song74.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song75.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song76.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song77.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song78.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song79.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song7a.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song7b.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song7c.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song7d.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song7e.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song7f.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song80.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song81.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song82.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song83.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song84.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song85.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song86.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song87.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song88.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song89.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song8a.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song8b.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song8c.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song8d.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song8e.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song8f.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song90.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song91.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song92.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song93.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song94.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song95.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song96.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song97.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song98.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song99.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song9a.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song9b.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song9c.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song9d.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song9e.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song9f.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa0.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa1.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa2.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa3.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa4.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa5.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa6.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa7.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa8.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa9.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songaa.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songab.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songac.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songad.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songae.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songaf.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb0.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb1.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb2.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb3.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb4.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb5.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb6.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb7.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb8.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb9.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songba.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songbb.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songbc.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songbd.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songbe.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songbf.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc0.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc1.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc2.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc3.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc4.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc5.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc6.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc7.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc8.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc9.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songca.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songcb.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songcc.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songcd.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songce.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songcf.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songd0.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songd1.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songd2.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songd3.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songd4.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songd5.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songd6.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songd7.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songdc.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songdd.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songde.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songdf.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe0.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe1.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe2.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe3.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe4.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe5.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe6.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe7.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe8.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe9.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songea.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songeb.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songec.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songed.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songee.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songef.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf0.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf1.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf2.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf3.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf4.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf5.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf6.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf7.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf8.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf9.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songfa.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songfb.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songfc.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songfd.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songfe.htf - texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songff.htf - texmf-dist/tex4ht/ht-fonts/unicode/cm/cmex.htf - texmf-dist/tex4ht/ht-fonts/unicode/cm/cmmi.htf - texmf-dist/tex4ht/ht-fonts/unicode/cm/cmsy.htf - texmf-dist/tex4ht/ht-fonts/unicode/cm/cmtcsc.htf - texmf-dist/tex4ht/ht-fonts/unicode/cm/cmti.htf - texmf-dist/tex4ht/ht-fonts/unicode/concrete/cccsc.htf - texmf-dist/tex4ht/ht-fonts/unicode/cs/cscsc.htf - texmf-dist/tex4ht/ht-fonts/unicode/cs/csr.htf - texmf-dist/tex4ht/ht-fonts/unicode/currency/feymr.htf - texmf-dist/tex4ht/ht-fonts/unicode/cyklop/cs-cyklop.htf - texmf-dist/tex4ht/ht-fonts/unicode/cyklop/cs-cyklopi-sc.htf - texmf-dist/tex4ht/ht-fonts/unicode/cyklop/ec-cyklopi-sc.htf - texmf-dist/tex4ht/ht-fonts/unicode/cyklop/ly1-cyklopi-sc.htf - texmf-dist/tex4ht/ht-fonts/unicode/cyklop/qx-cyklopi-sc.htf - texmf-dist/tex4ht/ht-fonts/unicode/cyklop/qx-cyklopr.htf - texmf-dist/tex4ht/ht-fonts/unicode/cyklop/t5-cyklopi-sc.htf - texmf-dist/tex4ht/ht-fonts/unicode/cyklop/t5-cyklopi.htf - texmf-dist/tex4ht/ht-fonts/unicode/cyrillic/cmcyr/cmcbx.htf - texmf-dist/tex4ht/ht-fonts/unicode/cyrillic/cmcyr/cmcbxti.htf - texmf-dist/tex4ht/ht-fonts/unicode/cyrillic/cmcyr/cmccsc.htf - texmf-dist/tex4ht/ht-fonts/unicode/dstroke/dsrom.htf - texmf-dist/tex4ht/ht-fonts/unicode/dstroke/esint.htf - texmf-dist/tex4ht/ht-fonts/unicode/ec/eccc-uni.htf - texmf-dist/tex4ht/ht-fonts/unicode/ec/eccc.htf - texmf-dist/tex4ht/ht-fonts/unicode/greek/ibygrk/fibr.htf - texmf-dist/tex4ht/ht-fonts/unicode/hebrew/cjhebltx.htf - texmf-dist/tex4ht/ht-fonts/unicode/hebrew/crml.htf - texmf-dist/tex4ht/ht-fonts/unicode/hebrew/fr.htf - texmf-dist/tex4ht/ht-fonts/unicode/hebrew/hclassic.htf - texmf-dist/tex4ht/ht-fonts/unicode/hebrew/jerus.htf - texmf-dist/tex4ht/ht-fonts/unicode/hebrew/redis.htf - texmf-dist/tex4ht/ht-fonts/unicode/hebrew/shold.htf - texmf-dist/tex4ht/ht-fonts/unicode/hebrew/shscr.htf - texmf-dist/tex4ht/ht-fonts/unicode/hebrew/shstk.htf - texmf-dist/tex4ht/ht-fonts/unicode/html/charset/unicode.4hf - texmf-dist/tex4ht/ht-fonts/unicode/iwona/cs-iwona.htf - texmf-dist/tex4ht/ht-fonts/unicode/iwona/cs-iwonacap.htf - texmf-dist/tex4ht/ht-fonts/unicode/iwona/ec-iwonacap.htf - texmf-dist/tex4ht/ht-fonts/unicode/iwona/ex-iwona.htf - texmf-dist/tex4ht/ht-fonts/unicode/iwona/exp-iwona.htf - texmf-dist/tex4ht/ht-fonts/unicode/iwona/greek-iwona.htf - texmf-dist/tex4ht/ht-fonts/unicode/iwona/qx-iwona.htf - texmf-dist/tex4ht/ht-fonts/unicode/iwona/qx-iwonacap.htf - texmf-dist/tex4ht/ht-fonts/unicode/iwona/rm-iwona.htf - texmf-dist/tex4ht/ht-fonts/unicode/iwona/sy-iwona.htf - texmf-dist/tex4ht/ht-fonts/unicode/iwona/t2a-iwona.htf - texmf-dist/tex4ht/ht-fonts/unicode/iwona/t2b-iwona.htf - texmf-dist/tex4ht/ht-fonts/unicode/iwona/t2c-iwona.htf - texmf-dist/tex4ht/ht-fonts/unicode/iwona/t5-iwona.htf - texmf-dist/tex4ht/ht-fonts/unicode/iwona/t5-iwonacap.htf - texmf-dist/tex4ht/ht-fonts/unicode/iwona/texnansi-iwona.htf - texmf-dist/tex4ht/ht-fonts/unicode/iwona/texnansi-iwonacap.htf - texmf-dist/tex4ht/ht-fonts/unicode/iwona/wncy-iwona.htf - texmf-dist/tex4ht/ht-fonts/unicode/jknappen/tc/tcrm.htf - texmf-dist/tex4ht/ht-fonts/unicode/latex/lasy.htf - texmf-dist/tex4ht/ht-fonts/unicode/latex/lcircle.htf - texmf-dist/tex4ht/ht-fonts/unicode/latex/line.htf - texmf-dist/tex4ht/ht-fonts/unicode/lh/lh-t2a/lacc.htf - texmf-dist/tex4ht/ht-fonts/unicode/lh/lh-t2a/larm.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlbi-xl-22.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlbi-xl-24.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlbi-xl-27.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlbi-xl-8x.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlbi-xl-e0.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlbi-xl-f6.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-8r.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-lgi.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-00.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-01.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-02.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-03.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-04.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-05.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-1e.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-1f.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-20.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-21.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-22.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-23.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-24.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-25.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-26.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-27.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-2c.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-8x.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-a7.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-circle.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-e0.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-e1.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-f6.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-fb.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-ff.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-lgi.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-lgr.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-ts1.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlrc-t1.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlri-xl-26.htf - texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlri-xl-e1.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/cs-lm.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/el-lm.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/el-lmcs.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/l7x-lm.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/l7x-lmcsc.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-ec.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-qxtt.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cmin.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cmit.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cmitt.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cmrm.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cmsc.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cmtt.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-csin.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-csrm.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cssc.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cstt.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-plin.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-plit.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-plitt.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-plrm.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-plsc.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-pltt.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-t5psn.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-t5.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-texnansi.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-ts1.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/pre2005/cork-.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/pre2005/cork-lmcs.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/pre2005/qx-lmcs.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/pre2005/qx-lmtt.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/pre2005/texnansi-lmcs.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/rm-lm.htf - texmf-dist/tex4ht/ht-fonts/unicode/lm/t5-lmcsc.htf - texmf-dist/tex4ht/ht-fonts/unicode/marvosym/fmvr8x.htf - texmf-dist/tex4ht/ht-fonts/unicode/math/rsfs.htf - texmf-dist/tex4ht/ht-fonts/unicode/mathdesign/mdbchr7v.htf - texmf-dist/tex4ht/ht-fonts/unicode/mathtime/blex-bs.htf - texmf-dist/tex4ht/ht-fonts/unicode/mathtime/blmi-bs.htf - texmf-dist/tex4ht/ht-fonts/unicode/mathtime/blsy-bs.htf - texmf-dist/tex4ht/ht-fonts/unicode/mathtime/mtex-bs.htf - texmf-dist/tex4ht/ht-fonts/unicode/mathtime/mtmi-bs.htf - texmf-dist/tex4ht/ht-fonts/unicode/mathtime/mtsyn-bs.htf - texmf-dist/tex4ht/ht-fonts/unicode/mflogo/logo.htf - texmf-dist/tex4ht/ht-fonts/unicode/misc/cmman.htf - texmf-dist/tex4ht/ht-fonts/unicode/misc/ifsym.htf - texmf-dist/tex4ht/ht-fonts/unicode/misc/wasy.htf - texmf-dist/tex4ht/ht-fonts/unicode/pl/plbsy.htf - texmf-dist/tex4ht/ht-fonts/unicode/pl/plinch.htf - texmf-dist/tex4ht/ht-fonts/unicode/pl/pltcsc.htf - texmf-dist/tex4ht/ht-fonts/unicode/pl/pltex.htf - texmf-dist/tex4ht/ht-fonts/unicode/public/bbding.htf - texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/pxbsyc.htf - texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/pxexa.htf - texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/pxr.htf - texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/pxsc.htf - texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/pxsyc.htf - texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/rpcxr.htf - texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/rpxb.htf - texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/rpxpplr.htf - texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/rpxsc.htf - texmf-dist/tex4ht/ht-fonts/unicode/stmaryrd/stmary.htf - texmf-dist/tex4ht/ht-fonts/unicode/tibetan/ctib.htf - texmf-dist/tex4ht/ht-fonts/unicode/tipa/tipa.htf - texmf-dist/tex4ht/ht-fonts/unicode/tipa/xipx.htf - texmf-dist/tex4ht/ht-fonts/unicode/txfonts/rtcxr.htf - texmf-dist/tex4ht/ht-fonts/unicode/txfonts/rtcxss.htf - texmf-dist/tex4ht/ht-fonts/unicode/txfonts/rtx.htf - texmf-dist/tex4ht/ht-fonts/unicode/txfonts/rtxsc.htf - texmf-dist/tex4ht/ht-fonts/unicode/txfonts/t1x.htf - texmf-dist/tex4ht/ht-fonts/unicode/txfonts/t1xsc.htf - texmf-dist/tex4ht/ht-fonts/unicode/txfonts/tcxb.htf - texmf-dist/tex4ht/ht-fonts/unicode/txfonts/txb.htf - texmf-dist/tex4ht/ht-fonts/unicode/txfonts/txbexa.htf - texmf-dist/tex4ht/ht-fonts/unicode/txfonts/txbmia.htf - texmf-dist/tex4ht/ht-fonts/unicode/txfonts/txbsy.htf - texmf-dist/tex4ht/ht-fonts/unicode/txfonts/txbsyc.htf - texmf-dist/tex4ht/ht-fonts/unicode/txfonts/txsc.htf - texmf-dist/tex4ht/ht-fonts/unicode/txfonts/tyxsc.htf - texmf-dist/tex4ht/ht-fonts/utf8/charset/unicode.4hf - texmf-dist/tex4ht/ht-fonts/viqr/charset/unicode.4hf - texmf-dist/tex4ht/ht-fonts/viscii/charset/unicode.4hf - texmf-dist/tex4ht/ht-fonts/win/1251/charset/unicode.4hf - texmf-dist/tex4ht/ht-fonts/win/1251/cm/sauter/wnti.htf - texmf-dist/tex4ht/ht-fonts/win/1251/cyrillic/cmcyr/cmcbx.htf - texmf-dist/tex4ht/ht-fonts/win/1251/cyrillic/cmcyr/cmcbxti.htf - texmf-dist/tex4ht/ht-fonts/win/1251/cyrillic/cmcyr/cmccsc.htf - texmf-dist/tex4ht/ht-fonts/win/1251/cyrillic/wncsc.htf - texmf-dist/tex4ht/ht-fonts/win/1251/lh/lh-t2a/larm.htf - texmf-dist/tex4ht/xtpipes/docbook.4xt - texmf-dist/tex4ht/xtpipes/htspk.4xt - texmf-dist/tex4ht/xtpipes/javahelp.4xt - texmf-dist/tex4ht/xtpipes/jsml.4xt - texmf-dist/tex4ht/xtpipes/oo-math.4xt - texmf-dist/tex4ht/xtpipes/oo-text.4xt - texmf-dist/tex4ht/xtpipes/xhtml.4xt - texmf-dist/tex4ht/xtpipes/xhtmml.4xt - texmf-dist/tex4ht/xtpipes/xtpipes-default.4xt - texmf-dist/tex4ht/xtpipes/xtpipes-map.dtd - texmf-dist/tex4ht/xtpipes/xtpipes.dtd +longdesc The Math Design project offers free mathematical fonts that +longdesc match with existing text fonts. To date, three free font +longdesc families are available: Adobe Utopia, URW Garamond and +longdesc Bitstream Charter. Three commercial fonts are also supported: +longdesc Adobe Garamond Pro, Adobe UtopiaStd and ITC Charter. Mathdesign +longdesc covers the whole LaTeX glyph set, including AMS symbols and +longdesc some extra. Both roman and bold versions of these symbols can +longdesc be used. Moreover you can choose between three greek fonts (two +longdesc of them created by the Greek Font Society). +execute addMap mdbch.map +execute addMap mdgreek.map +execute addMap mdici.map +execute addMap mdpgd.map +execute addMap mdpus.map +execute addMap mdput.map +execute addMap mdugm.map +containersize 2170832 +containerchecksum cc8a1c58348f8f81417178434c9bc3d9edea79dc5d300753f41870734f8fca8f43325d56f73e3113aee8e9f38be1fbc6abd3cefe4458af1e1e22900ce889c315 +doccontainersize 587524 +doccontainerchecksum f6c0a3595beb7b25ab5ef2c8a08b3e0be90cdbfa20c946b7b3f5cfd29f5c9a38963262818990ef78be02d95c2d2a5991581be77834048fab4eb0e4c0252e6871 +docfiles size=232 + RELOC/doc/fonts/mathdesign/MD-Adobe-Adobe-Garamond-Pro-example.tex + RELOC/doc/fonts/mathdesign/MD-Adobe-Utopia-Std-example.tex + RELOC/doc/fonts/mathdesign/MD-Adobe-Utopia-example.pdf + RELOC/doc/fonts/mathdesign/MD-Adobe-Utopia-example.tex + RELOC/doc/fonts/mathdesign/MD-Bitstream-Bitstream-Charter-example.pdf + RELOC/doc/fonts/mathdesign/MD-Bitstream-Bitstream-Charter-example.tex + RELOC/doc/fonts/mathdesign/MD-itc-Charter-ITC-Std-example.tex + RELOC/doc/fonts/mathdesign/MD-urw-GaramondNo8-example.tex + RELOC/doc/fonts/mathdesign/README + RELOC/doc/fonts/mathdesign/mathdesign-doc.pdf details="Package documentation" + RELOC/doc/fonts/mathdesign/mathdesign-doc.tex +runfiles size=2805 + RELOC/dvips/mathdesign/config.mdbch + RELOC/dvips/mathdesign/config.mdici + RELOC/dvips/mathdesign/config.mdpgd + RELOC/dvips/mathdesign/config.mdpus + RELOC/dvips/mathdesign/config.mdput + RELOC/dvips/mathdesign/config.mdugm + RELOC/fonts/enc/dvips/mathdesign/a_2dncez.enc + RELOC/fonts/enc/dvips/mathdesign/a_2rwgaw.enc + RELOC/fonts/enc/dvips/mathdesign/a_42s2zl.enc + RELOC/fonts/enc/dvips/mathdesign/a_45o73x.enc + RELOC/fonts/enc/dvips/mathdesign/a_4b5i6w.enc + RELOC/fonts/enc/dvips/mathdesign/a_57soyv.enc + RELOC/fonts/enc/dvips/mathdesign/a_csqf63.enc + RELOC/fonts/enc/dvips/mathdesign/a_e65dz6.enc + RELOC/fonts/enc/dvips/mathdesign/a_g2masa.enc + RELOC/fonts/enc/dvips/mathdesign/a_g47ck7.enc + RELOC/fonts/enc/dvips/mathdesign/a_ipzj2o.enc + RELOC/fonts/enc/dvips/mathdesign/a_kld4uc.enc + RELOC/fonts/enc/dvips/mathdesign/a_mdpn2k.enc + RELOC/fonts/enc/dvips/mathdesign/a_n2elaj.enc + RELOC/fonts/enc/dvips/mathdesign/a_oxfbe4.enc + RELOC/fonts/enc/dvips/mathdesign/a_py5znv.enc + RELOC/fonts/enc/dvips/mathdesign/a_qnfjtt.enc + RELOC/fonts/enc/dvips/mathdesign/a_qzg4u4.enc + RELOC/fonts/enc/dvips/mathdesign/a_r2nxhw.enc + RELOC/fonts/enc/dvips/mathdesign/a_rl4tn2.enc + RELOC/fonts/enc/dvips/mathdesign/a_rxz3ga.enc + RELOC/fonts/enc/dvips/mathdesign/a_telfo7.enc + RELOC/fonts/enc/dvips/mathdesign/a_uwwzqd.enc + RELOC/fonts/enc/dvips/mathdesign/a_yezm6g.enc + RELOC/fonts/enc/dvips/mathdesign/md8x.enc + RELOC/fonts/map/dvips/mathdesign/mdbch.map + RELOC/fonts/map/dvips/mathdesign/mdgreek.map + RELOC/fonts/map/dvips/mathdesign/mdici.map + RELOC/fonts/map/dvips/mathdesign/mdpgd.map + RELOC/fonts/map/dvips/mathdesign/mdpus.map + RELOC/fonts/map/dvips/mathdesign/mdput.map + RELOC/fonts/map/dvips/mathdesign/mdugm.map + RELOC/fonts/tfm/public/mathdesign/mdbch/bchb8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/bchbc8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/bchbc8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/bchbi8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/bchr8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/bchrc8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/bchrc8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/bchri8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chb7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chb7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chb7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chb7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chb8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chb8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chb8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbc8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbi8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbma.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbo7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbo8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbo8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chbo8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chboc8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chr7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chr7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chr8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chr8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chrc8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chree.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chri8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chri8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chrma.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chrmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chro7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chro8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chro8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chro8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/md-chroc8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchb7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchb7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchb7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchb7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchb8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchb8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbma.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbo7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbo8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbo8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchbofc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchr7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchr7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchr8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchrc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchrfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchri8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchrifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchrma.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchrmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchro7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchro8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchro8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdbch/mdbchrofc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/md-grbb7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/md-grbbi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/md-grbr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/md-grbri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/md-grdb7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/md-grdbi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/md-grdr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/md-grdri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrbCb7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrbCbi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrbCr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrbCri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrbb7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrbbi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrbr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrbri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrdCb7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrdCbi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrdCri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrdb7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrdbi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrdr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrdrC7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdgreek/mdgrdri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cib7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cib7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cib7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cib7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cib8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cib8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cibee.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cibi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cibi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cibi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cibi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cibma.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cibmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cir7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cir7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cir7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cir7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cir8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cir8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-ciree.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-ciri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-ciri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-ciri8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-ciri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cirma.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/md-cirmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicib7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicib7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicib7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicib7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicib8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicib8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicibc8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicibc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicibfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicibi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicibi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicibi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicibi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicibic8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicibic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicibifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicibma.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicibmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicic8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicicc8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicicc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicicfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicici8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicici8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicicic8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicicic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicicifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicir7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicir7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicir7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicir7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicir8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicir8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicirc8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicirc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicirfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdiciri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdiciri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdiciri8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdiciri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdiciric8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdiciric8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicirifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicirma.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdicirmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcib7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcib7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcib8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcibc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcibi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcibi7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcibi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcibic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcic7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcic7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcicc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcici7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcici7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcici8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcicic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcir7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcir7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcir8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwcirc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwciri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwciri7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwciri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdwciric8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcib7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcib7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcib8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcibc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcibi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcibi7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcibi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcibic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcic7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcic7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcicc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcici7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcici7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcici8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcicic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcir7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcir7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcir8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxcirc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxciri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxciri7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxciri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdici/mdxciric8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdr7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdr7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdr8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdree.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdri8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdrma.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdrmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gds7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gds7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gds7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gds7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gds8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gds8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdsi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdsi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdsi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdsi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdsma.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/md-gdsmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdb8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdb8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdbc8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdbc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdbfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdbi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdbi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdbic8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdbic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdbifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdr7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdr7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdr8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdrc8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdrc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdrfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdri8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdric8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdric8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdrifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdrma.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdrmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgds7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgds7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgds7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgds7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgds8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgds8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsc8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsic8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsma.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdpgdsmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdb7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdb7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdb8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdbc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdbi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdbi7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdbi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdbic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdrc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdri7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdric8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgds7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgds7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgds8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdsc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdsi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdsi7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdsi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdwgdsic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdb7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdb7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdb8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdbc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdbi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdbi7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdbi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdbic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdr7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdrc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdri7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdric8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgds7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgds7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgds8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdsc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdsi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdsi7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdsi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpgd/mdxgdsic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7t5.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7t6.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7t7.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7t8.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7t9.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usree.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri7t5.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri7t6.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri7t7.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri7t8.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri7t9.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usrma.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-usrmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-uss7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-uss7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-uss7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-uss7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-uss8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-uss8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-ussi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-ussi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-ussi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-ussi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-ussma.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/md-ussmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusb8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusb8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusbc8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusbc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusbfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusbi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusbi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusbic8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusbic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusbifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusr7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusr7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusr8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusrc8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusrc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusrfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusri8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusric8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusric8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusrifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusrma.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpusrmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpuss7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpuss7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpuss7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpuss7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpuss8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpuss8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussc8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussic8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussma.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdpussmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusb7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusb7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusb8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusbc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusbi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusbi7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusbi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusbic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusrc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusri7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwusric8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwuss7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwuss7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwuss8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwussc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwussi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwussi7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwussi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdwussic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusb7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusb7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusb8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusbc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusbi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusbi7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusbi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusbic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusr7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusrc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusri7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxusric8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxuss7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxuss7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxuss8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxussc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxussi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxussi7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxussi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdpus/mdxussic8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utb7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utb7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utb7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utb7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utb8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utb8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utb8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utbee.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utbi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utbi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utbi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utbi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utbi8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utbma.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utbmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utbo7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utbo8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utbo8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utbo8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utr7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utr7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utr8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utr8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utree.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utri8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utri8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utrma.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utrmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utro7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utro8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utro8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/md-utro8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputb7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputb7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputb7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputb7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputb8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputb8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbma.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbo7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbo8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbo8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputbofc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputr7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputr7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputr8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputrc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputrfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputri8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputrifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputrma.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputrmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputro7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputro8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputro8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/mdputrofc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/putb8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/putb8x.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/putbi8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/putr8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/putr8x.tfm + RELOC/fonts/tfm/public/mathdesign/mdput/putri8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmm7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmm7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmm7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmm7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmm8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmm8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmm8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmi8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmma.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmo7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmo8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmo8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmmo8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmr7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmr7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmr8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmr8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmree.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmri8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmri8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmrma.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmrmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmro7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmro8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmro8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/md-gmro8y.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmm7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmm7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmm7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmm7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmm8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmm8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmi7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmi7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmi8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmi8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmma.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmo7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmo8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmo8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmmofc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmr7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmr7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmr7v.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmr7y.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmr8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmr8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmrfc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmri7m.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmri7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmri8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmri8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmrifc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmrma.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmrmb.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmro7t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmro8c.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmro8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/mdugmrofc8t.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/ugmm8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/ugmmi8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/ugmr8a.tfm + RELOC/fonts/tfm/public/mathdesign/mdugm/ugmri8a.tfm + RELOC/fonts/type1/public/mathdesign/mdbch/md-chb7m.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chb7t.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chb7v.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chb7y.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chb8c.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chb8t.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chbi7m.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chbi7t.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chbi8c.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chbi8t.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chbma.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chbmb.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chr7m.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chr7t.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chr7v.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chr7y.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chr8c.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chr8t.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chree.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chri7m.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chri7t.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chri8c.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chri8t.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chrma.pfb + RELOC/fonts/type1/public/mathdesign/mdbch/md-chrmb.pfb + RELOC/fonts/type1/public/mathdesign/mdici/UtopiaStd-Regular.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cib7m.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cib7t.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cib7v.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cib7y.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cib8c.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cib8t.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cibee.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cibi7m.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cibi7t.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cibi8c.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cibi8t.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cibma.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cibmb.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cir7m.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cir7t.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cir7v.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cir7y.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cir8c.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cir8t.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-ciree.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-ciri7m.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-ciri7t.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-ciri8c.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-ciri8t.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cirma.pfb + RELOC/fonts/type1/public/mathdesign/mdici/md-cirmb.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdr7m.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdr7t.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdr7v.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdr7y.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdr8c.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdr8t.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdree.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdri7m.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdri7t.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdri8c.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdri8t.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdrma.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdrmb.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gds7m.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gds7t.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gds7v.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gds7y.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gds8c.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gds8t.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdsi7m.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdsi7t.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdsi8c.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdsi8t.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdsma.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-gdsmb.pfb + RELOC/fonts/type1/public/mathdesign/mdpgd/md-utrma.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7m.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7t.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7t5.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7t6.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7t7.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7t8.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7t9.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7v.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usr7y.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usr8c.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usr8t.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usree.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usri7m.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usri7t.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usri7t5.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usri7t6.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usri7t7.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usri7t8.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usri7t9.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usri8c.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usri8t.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usrma.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-usrmb.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-uss7m.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-uss7t.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-uss7v.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-uss7y.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-uss8c.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-uss8t.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-ussi7m.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-ussi7t.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-ussi8c.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-ussi8t.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-ussma.pfb + RELOC/fonts/type1/public/mathdesign/mdpus/md-ussmb.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utb7m.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utb7t.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utb7v.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utb7y.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utb8c.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utb8t.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utbee.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utbi7m.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utbi7t.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utbi8c.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utbi8t.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utbma.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utbmb.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utr7m.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utr7t.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utr7v.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utr7y.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utr8c.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utr8t.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utree.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utri7m.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utri7t.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utri8c.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utri8t.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utrma.pfb + RELOC/fonts/type1/public/mathdesign/mdput/md-utrmb.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmm7m.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmm7t.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmm7v.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmm7y.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmm8c.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmm8t.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmmi7m.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmmi7t.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmmi8c.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmmi8t.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmmma.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmmmb.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmr7m.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmr7t.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmr7v.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmr7y.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmr8c.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmr8t.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmree.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmri7m.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmri7t.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmri8c.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmri8t.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmrma.pfb + RELOC/fonts/type1/public/mathdesign/mdugm/md-gmrmb.pfb + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchb7m.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchb7t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchb7v.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchb7y.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchb8c.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchb8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbc8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbi7m.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbi7t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbi8c.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbi8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbma.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbmb.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbo7t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbo8c.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbo8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchbofc8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchr7m.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchr7t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchr7v.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchr7y.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchr8c.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchr8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchrc8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchrfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchri7m.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchri7t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchri8c.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchri8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchrifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchrma.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchrmb.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchro7t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchro8c.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchro8t.vf + RELOC/fonts/vf/public/mathdesign/mdbch/mdbchrofc8t.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrbCb7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrbCbi7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrbCr7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrbCri7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrbb7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrbbi7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrbr7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrbri7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrdCb7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrdCbi7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrdCri7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrdb7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrdbi7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrdr7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrdrC7m.vf + RELOC/fonts/vf/public/mathdesign/mdgreek/mdgrdri7m.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicib7m.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicib7t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicib7v.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicib7y.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicib8c.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicib8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibc8c.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibc8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibi7m.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibi7t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibi8c.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibi8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibic8c.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibic8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibiu7m.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibma.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibmb.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicibui7m.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicic8c.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicic8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicicc8c.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicicc8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicicfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicici8c.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicici8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicicic8c.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicicic8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicicifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicir7m.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicir7t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicir7v.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicir7y.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicir8c.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicir8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicirc8c.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicirc8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicirfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdiciri7m.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdiciri7t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdiciri8c.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdiciri8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdiciric8c.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdiciric8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicirifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdiciriu7m.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicirma.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicirmb.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdicirui7m.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcib7y.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcib8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcibc8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcibi7y.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcibi8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcibic8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcic7y.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcic8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcicc8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcici7y.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcici8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcicic8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcir7y.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcir8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxcirc8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxciri7y.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxciri8t.vf + RELOC/fonts/vf/public/mathdesign/mdici/mdxciric8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdb8c.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdb8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdbc8c.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdbc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdbfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdbi8c.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdbi8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdbic8c.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdbic8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdbifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdr7m.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdr7t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdr7v.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdr7y.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdr8c.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdr8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdrc8c.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdrc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdrfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdri7m.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdri7t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdri8c.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdri8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdric8c.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdric8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdrifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdrma.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdrmb.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgds7m.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgds7t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgds7v.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgds7y.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgds8c.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgds8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsc8c.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsi7m.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsi7t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsi8c.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsi8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsic8c.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsic8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsma.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdpgdsmb.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdb7y.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdb8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdbc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdbi7y.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdbi8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdbic8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdr7y.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdr8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdrc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdri7y.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdri8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdric8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgds7y.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgds8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdsc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdsi7y.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdsi8t.vf + RELOC/fonts/vf/public/mathdesign/mdpgd/mdxgdsic8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusb8c.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusb8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusbc8c.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusbc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusbfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusbi8c.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusbi8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusbic8c.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusbic8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusbifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusr7m.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusr7t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusr7v.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusr7y.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusr8c.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusr8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusrc8c.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusrc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusrfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusri7m.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusri7t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusri8c.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusri8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusric8c.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusric8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusrifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusrma.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpusrmb.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpuss7m.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpuss7t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpuss7v.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpuss7y.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpuss8c.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpuss8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpussc8c.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpussc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpussfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpussi7m.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpussi7t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpussi8c.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpussi8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpussic8c.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpussic8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpussifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpussma.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdpussmb.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxusb7y.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxusb8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxusbc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxusbi7y.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxusbi8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxusbic8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxusr7y.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxusr8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxusrc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxusri7y.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxusri8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxusric8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxuss7y.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxuss8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxussc8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxussi7y.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxussi8t.vf + RELOC/fonts/vf/public/mathdesign/mdpus/mdxussic8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputb7m.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputb7t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputb7v.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputb7y.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputb8c.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputb8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbc8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbi7m.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbi7t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbi8c.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbi8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbma.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbmb.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbo7t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbo8c.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbo8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputbofc8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputr7m.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputr7t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputr7v.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputr7y.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputr8c.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputr8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputrc8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputrfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputri7m.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputri7t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputri8c.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputri8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputrifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputrma.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputrmb.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputro7t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputro8c.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputro8t.vf + RELOC/fonts/vf/public/mathdesign/mdput/mdputrofc8t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmm7m.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmm7t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmm7v.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmm7y.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmm8c.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmm8t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmi7m.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmi7t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmi8c.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmi8t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmma.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmmb.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmo7t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmo8c.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmo8t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmmofc8t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmr7m.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmr7t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmr7v.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmr7y.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmr8c.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmr8t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmrfc8t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmri7m.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmri7t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmri8c.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmri8t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmrifc8t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmrma.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmrmb.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmro7t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmro8c.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmro8t.vf + RELOC/fonts/vf/public/mathdesign/mdugm/mdugmrofc8t.vf + RELOC/tex/latex/mathdesign/mathdesign.sty + RELOC/tex/latex/mathdesign/mdacmr.fd + RELOC/tex/latex/mathdesign/mdbch/mdamdbch.fd + RELOC/tex/latex/mathdesign/mdbch/mdbch.cfg + RELOC/tex/latex/mathdesign/mdbch/mdbch.sty + RELOC/tex/latex/mathdesign/mdbch/mdbmdbch.fd + RELOC/tex/latex/mathdesign/mdbch/omlmdbch.fd + RELOC/tex/latex/mathdesign/mdbch/omsmdbch.fd + RELOC/tex/latex/mathdesign/mdbch/omxmdbch.fd + RELOC/tex/latex/mathdesign/mdbch/ot1mdbch.fd + RELOC/tex/latex/mathdesign/mdbch/t1mdbch.fd + RELOC/tex/latex/mathdesign/mdbch/ts1mdbch.fd + RELOC/tex/latex/mathdesign/mdbcmr.fd + RELOC/tex/latex/mathdesign/mdfont.def + RELOC/tex/latex/mathdesign/mdici/mdamdici.fd + RELOC/tex/latex/mathdesign/mdici/mdbmdici.fd + RELOC/tex/latex/mathdesign/mdici/mdici.cfg + RELOC/tex/latex/mathdesign/mdici/mdici.sty + RELOC/tex/latex/mathdesign/mdici/omlmdici.fd + RELOC/tex/latex/mathdesign/mdici/omsmdici.fd + RELOC/tex/latex/mathdesign/mdici/omxmdici.fd + RELOC/tex/latex/mathdesign/mdici/ot1mdici.fd + RELOC/tex/latex/mathdesign/mdici/t1mdici.fd + RELOC/tex/latex/mathdesign/mdici/ts1mdici.fd + RELOC/tex/latex/mathdesign/mdpgd/mdamdpgd.fd + RELOC/tex/latex/mathdesign/mdpgd/mdbmdpgd.fd + RELOC/tex/latex/mathdesign/mdpgd/mdpgd.cfg + RELOC/tex/latex/mathdesign/mdpgd/mdpgd.sty + RELOC/tex/latex/mathdesign/mdpgd/omlmdpgd.fd + RELOC/tex/latex/mathdesign/mdpgd/omsmdpgd.fd + RELOC/tex/latex/mathdesign/mdpgd/omxmdpgd.fd + RELOC/tex/latex/mathdesign/mdpgd/ot1mdpgd.fd + RELOC/tex/latex/mathdesign/mdpgd/t1mdpgd.fd + RELOC/tex/latex/mathdesign/mdpgd/ts1mdpgd.fd + RELOC/tex/latex/mathdesign/mdpus/mdamdpus.fd + RELOC/tex/latex/mathdesign/mdpus/mdbmdpus.fd + RELOC/tex/latex/mathdesign/mdpus/mdpus.cfg + RELOC/tex/latex/mathdesign/mdpus/mdpus.sty + RELOC/tex/latex/mathdesign/mdpus/omlmdpus.fd + RELOC/tex/latex/mathdesign/mdpus/omsmdpus.fd + RELOC/tex/latex/mathdesign/mdpus/omxmdpus.fd + RELOC/tex/latex/mathdesign/mdpus/ot1mdpus.fd + RELOC/tex/latex/mathdesign/mdpus/t1mdpus.fd + RELOC/tex/latex/mathdesign/mdpus/ts1mdpus.fd + RELOC/tex/latex/mathdesign/mdput/mdamdput.fd + RELOC/tex/latex/mathdesign/mdput/mdbmdput.fd + RELOC/tex/latex/mathdesign/mdput/mdput.cfg + RELOC/tex/latex/mathdesign/mdput/mdput.sty + RELOC/tex/latex/mathdesign/mdput/omlmdput.fd + RELOC/tex/latex/mathdesign/mdput/omsmdput.fd + RELOC/tex/latex/mathdesign/mdput/omxmdput.fd + RELOC/tex/latex/mathdesign/mdput/ot1mdput.fd + RELOC/tex/latex/mathdesign/mdput/t1mdput.fd + RELOC/tex/latex/mathdesign/mdput/ts1mdput.fd + RELOC/tex/latex/mathdesign/mdsffont.def + RELOC/tex/latex/mathdesign/mdttfont.def + RELOC/tex/latex/mathdesign/mdugm/mdamdugm.fd + RELOC/tex/latex/mathdesign/mdugm/mdbmdugm.fd + RELOC/tex/latex/mathdesign/mdugm/mdugm.cfg + RELOC/tex/latex/mathdesign/mdugm/mdugm.sty + RELOC/tex/latex/mathdesign/mdugm/omlmdugm.fd + RELOC/tex/latex/mathdesign/mdugm/omsmdugm.fd + RELOC/tex/latex/mathdesign/mdugm/omxmdugm.fd + RELOC/tex/latex/mathdesign/mdugm/ot1mdugm.fd + RELOC/tex/latex/mathdesign/mdugm/t1mdugm.fd + RELOC/tex/latex/mathdesign/mdugm/ts1mdugm.fd + RELOC/tex/latex/mathdesign/omlmdgrb.fd + RELOC/tex/latex/mathdesign/omlmdgrbc.fd + RELOC/tex/latex/mathdesign/omlmdgrd.fd + RELOC/tex/latex/mathdesign/omlmdgrdc.fd +catalogue-also fourier +catalogue-ctan /fonts/mathdesign +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics font font-type1 font-maths font-supp-maths +catalogue-version 2.31 + +name mathdots +category Package +revision 34301 +shortdesc Commands to produce dots in math that respect font size +relocated 1 +longdesc Redefines \ddots and \vdots, and defines \iddots. The dots +longdesc produced by \iddots slant in the opposite direction to \ddots. +longdesc All the commands are designed to change size appropriately in +longdesc scripts, as well as in response to LaTeX size changing +longdesc commands. The commands may also be used in plain TeX. +containersize 2168 +containerchecksum 1235583223f831852458d53e1e8cb767495987829d4930387f4dccf7ab060b9f0af8722d6c1aaa820c1a371f8ce1c0222633e6feb064e0344e639eedbaa4129d +doccontainersize 397300 +doccontainerchecksum b1ce238b3abb3397b0085983e752dbb9eb9d9c1026046726360498d089304f7f4deecd656dceee27b63934092568f0ca46620231f03e0952c43f28ae73e97dc0 +docfiles size=106 + RELOC/doc/generic/mathdots/README details="Readme" + RELOC/doc/generic/mathdots/mathdots.pdf details="Package documentation" + RELOC/doc/generic/mathdots/mdotest.pdf + RELOC/doc/generic/mathdots/mdotest.tex + RELOC/doc/generic/mathdots/plmdotest.tex +srccontainersize 7252 +srccontainerchecksum dd590187fadbf0eb788eade245d4198a4c1075433db1a0df00ce2d5cf2b6f332e09ce995292d21ad46f13ba68284808cfea6c7818a47bf99a61ae44e5381fe55 +srcfiles size=7 + RELOC/source/generic/mathdots/mathdots.dtx + RELOC/source/generic/mathdots/mathdots.ins +runfiles size=3 + RELOC/tex/generic/mathdots/mathdots.sty + RELOC/tex/generic/mathdots/mathdots.tex +catalogue-ctan /macros/generic/mathdots +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics maths +catalogue-version 0.9 + +name mathexam +category Package +revision 15878 +shortdesc Package for typesetting exams +relocated 1 +longdesc The package can help you typeset exams (mostly in mathematics +longdesc and related disciplines where students are required to show +longdesc their calculations followed by one or more short answers). It +longdesc provides commands for inclusion of space for calculations, as +longdesc well as commands for automatic creation of "answer spaces". In +longdesc addition, the package will automatically create page headers +longdesc and footers, and will let you include instructions and space +longdesc for students to put their name. +containersize 1620 +containerchecksum 30fc0cc9c44f2b7a64860a7d8eeecd25eec7e888f4ebdafade236edebecbd79f5d832566d151243430a60c5995807ea77d34e19cfd5e0d8cb037ca67d3e933bc +doccontainersize 148812 +doccontainerchecksum 6af2944d12d09f1ab593a7002b9de71d14c5436885b79e5e495dc0ba1fdf9dc6b9080bd009bafff988b019ec3e75da934a7c8c043870fdd52a9a46b36c9d646d +docfiles size=47 + RELOC/doc/latex/mathexam/README details="Readme" + RELOC/doc/latex/mathexam/mathexam.pdf details="Package documentation" + RELOC/doc/latex/mathexam/sample.pdf details="Sample exam" + RELOC/doc/latex/mathexam/sample.tex +srccontainersize 5988 +srccontainerchecksum f2324e1f9e0fe8f259b6e1d2a1370ddfec87091c82650432e24b08c598fd6ce57334b88ab53a6049f416ff14c3ccfc7c250029767eccf05456d6c233e665f6a7 +srcfiles size=5 + RELOC/source/latex/mathexam/mathexam.dtx + RELOC/source/latex/mathexam/mathexam.ins +runfiles size=1 + RELOC/tex/latex/mathexam/mathexam.sty +catalogue-ctan /macros/latex/contrib/mathexam +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics exam maths +catalogue-version 1.00 + +name mathfam256 +category Package +revision 46412 +shortdesc Extend math family up to 256 for pLaTeX/upLaTeX/Lamed +relocated 1 +longdesc This package increases the upper limit of math symbols up to +longdesc 256, using \omath... primitives. These primitives were +longdesc originally introduced in Omega and are currently available in +longdesc the following formats: pLaTeX (runs on e-pTeX), upLaTeX (runs +longdesc on e-upTeX), Lamed (runs on Aleph, successor of Omega). +containersize 3528 +containerchecksum 941f8e9ba79106482b489852690c8a2451a182608ebc4be5f34de9ed1b094b2df50c2127f3c33e78f26231069e3b62ed1fbcea89734395672f6d8b52c2152686 +doccontainersize 85204 +doccontainerchecksum 4a5558b33b7cd8a22977696f93f1ce598e2435e894c28e2a73c5dc13d94ed6aee2e0c3b01746ca337518db949a37dc2b5bbcf59c2df41c8f5e9ef3b81811555b +docfiles size=24 + RELOC/doc/latex/mathfam256/LICENSE + RELOC/doc/latex/mathfam256/README.md details="Readme" + RELOC/doc/latex/mathfam256/mathfam256.pdf details="Package documentation" + RELOC/doc/latex/mathfam256/mathfam256.tex +runfiles size=4 + RELOC/tex/latex/mathfam256/mathfam256.sty +catalogue-contact-repository https://github.com/aminophen/mathfam256 +catalogue-ctan /macros/latex/contrib/mathfam256 +catalogue-date 2018-01-24 04:32:31 +0100 +catalogue-license bsd3 +catalogue-topics maths omega japanese etex +catalogue-version 0.2 + +name mathfixs +category Package +revision 49547 +shortdesc Fix various layout issues in math mode +relocated 1 +longdesc This is a LaTeX2e package to fix some odd behaviour in math +longdesc mode such as spacing around fractions and roots, math symbols +longdesc within bold text as well as capital Greek letters. It also adds +longdesc some related macros. +containersize 2796 +containerchecksum 513e5dd9eb58ca5b1eb8daec663c48577fa2102ade0234412dbb22b6d756ad37009c689746c57c6624c731df64fa8d58eabfecbd4cdc31c576eb0ecd1e232fdf +doccontainersize 293968 +doccontainerchecksum c9ad8dda9ffaa77ba727f536016ba1dcbfb91c4d7ab98b1e4b72156591e8ff0359f623475324e57c6b22f509cdfe7e30ba67c3fb22f9dd152e59f1557c96a6a6 +docfiles size=76 + RELOC/doc/latex/mathfixs/README.txt details="Readme" + RELOC/doc/latex/mathfixs/mafxsamp.tex + RELOC/doc/latex/mathfixs/mathfixs.pdf details="Package documentation" +srccontainersize 11900 +srccontainerchecksum f08a26458ed871a11a44a1e957a1e9140b3e95c98ba1bd958cb9d63cbe483ee94e91217a5a7e54745b2cf245ee7f898fb64238941d1a8fce04699a3b8a06b7e3 +srcfiles size=13 + RELOC/source/latex/mathfixs/mathfixs.dtx + RELOC/source/latex/mathfixs/mathfixs.ins +runfiles size=3 + RELOC/tex/latex/mathfixs/mathfixs.sty +catalogue-ctan /macros/latex/contrib/mathfixs +catalogue-date 2018-12-30 15:31:01 +0100 +catalogue-license lppl1.3 +catalogue-topics maths bugfix +catalogue-version 1.01 + +name mathfont +category Package +revision 51017 +shortdesc Use TrueType and OpenType fonts in math mode +relocated 1 +longdesc This package provides a flexible interface for changing the +longdesc font of math mode characters. The package allows the user to +longdesc specify a default unicode font for each of six basic classes of +longdesc Latin and Greek characters, and it provides additional support +longdesc for unicode alphanumeric symbols. Crucially, mathfont is +longdesc compatible with both LuaLaTeX and XeLaTeX, and it provides +longdesc several font-loading commands that allow the user to change +longdesc fonts locally or for individual symbols within math mode. +containersize 6384 +containerchecksum bf99697b79edd78de3390556b030125cc325da1d3dbf28684f9a3324a2de614d1582a8306797e8cebd6be6000a3be64f178e6cf67a68a3c68f0f74757a652fa3 +doccontainersize 389508 +doccontainerchecksum 4caef345e33342b06807d38097b4d3bd8a51f9f3278d069ce73c35b10dd72ca9e48f485a4870de4e2b3d827d1a433b4549a562c6eb9be68b2823bbd557f98fda +docfiles size=100 + RELOC/doc/latex/mathfont/README.TEXLIVE + RELOC/doc/latex/mathfont/README.txt details="Readme" + RELOC/doc/latex/mathfont/mathfont.pdf details="Package documentation" + RELOC/doc/latex/mathfont/mathfont_example.pdf + RELOC/doc/latex/mathfont/mathfont_example.tex + RELOC/doc/latex/mathfont/mathfont_greek.tex +srccontainersize 23384 +srccontainerchecksum c9c569ec7b1e740212969fecce09008455fa6f72b28f00cbe62bc5c2087600f6c368ca4b49c312a553f16c5f9f416a17752a70c3e00885441807278c81195429 +srcfiles size=26 + RELOC/source/latex/mathfont/mathfont.dtx +runfiles size=11 + RELOC/tex/latex/mathfont/mathfont.sty +catalogue-ctan /macros/latex/contrib/mathfont +catalogue-date 2019-04-07 21:57:41 +0200 +catalogue-license lppl1.3c +catalogue-topics font-mgmt font-use maths +catalogue-version 1.5 + +name mathpartir +category Package +revision 39864 +shortdesc Typesetting sequences of math formulas, e.g. type inference rules +relocated 1 +longdesc The package provides macros for typesetting math formulas in +longdesc mixed horizontal and vertical mode, automatically as best fit. +longdesc It provides an environment mathpar that behaves much as a loose +longdesc centered paragraph where words are math formulas, and spaces +longdesc between them are larger and adjustable. It also provides a +longdesc macro \inferrule for typeseting fractions where both the +longdesc numerator and denominator may be sequences of formulas that +longdesc will be also typeset in a similar way. It can typically be used +longdesc for typeseting sets of type inference rules or typing +longdesc derivations. A macro inferrule for typesetting type inference +longdesc rules. +containersize 4608 +containerchecksum 8e1c99db2d64e9c815bf8b6784d1c717969a5ecc96281df2f815ba7c0d779b53484c61ca233468de793be94cf636373f4fc0e3413c0ce32d4715db30cafe5471 +doccontainersize 271876 +doccontainerchecksum fca6b3e2650ada022617af137dc86858c83c51c55fcadf2ff21832a1fcd9fc44f371f89e8943c5e1d117a09893c3587f15a3e8021b11f7472dd3c9d37383f8a0 +docfiles size=71 + RELOC/doc/latex/mathpartir/COPYING + RELOC/doc/latex/mathpartir/README details="Readme" + RELOC/doc/latex/mathpartir/mathpartir.pdf details="Package documentation" +srccontainersize 11552 +srccontainerchecksum f5c5b328745494965d1907f6dc187859a5f9bda5a8beda164e7317dc1b8a6e886073f9d2e9b564c6aa56d55e7cb7191afeea38edc059b2dd55066e68ff826dd8 +srcfiles size=11 + RELOC/source/latex/mathpartir/mathpartir.dtx + RELOC/source/latex/mathpartir/mathpartir.ins +runfiles size=4 + RELOC/tex/latex/mathpartir/mathpartir.sty +catalogue-ctan /macros/latex/contrib/mathpartir +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license gpl2 +catalogue-topics maths +catalogue-version 1.3.2 + +name mathpazo +category Package +revision 15878 +shortdesc Fonts to typeset mathematics to match Palatino +relocated 1 +longdesc The Pazo Math fonts are a family of PostScript fonts suitable +longdesc for typesetting mathematics in combination with the Palatino +longdesc family of text fonts. The Pazo Math family is made up of five +longdesc fonts provided in Adobe Type 1 format (PazoMath, +longdesc PazoMath-Italic, PazoMath-Bold, PazoMath-BoldItalic, and +longdesc PazoMathBlackboardBold). These contain, in designs that match +longdesc Palatino, glyphs that are usually not available in Palatino and +longdesc for which Computer Modern looks odd when combined with +longdesc Palatino. These glyphs include the uppercase Greek alphabet in +longdesc upright and slanted shapes in regular and bold weights, the +longdesc lowercase Greek alphabet in slanted shape in regular and bold +longdesc weights, several mathematical glyphs (partialdiff, summation, +longdesc product, coproduct, emptyset, infinity, and proportional) in +longdesc regular and bold weights, other glyphs (Euro and dotlessj) in +longdesc upright and slanted shapes in regular and bold weights, and the +longdesc uppercase letters commonly used to represent various number +longdesc sets (C, I, N, Q, R, and Z) in blackboard bold. LaTeX macro +longdesc support (using package mathpazo.sty) is provided in psnfss (a +longdesc required part of any LaTeX distribution). +containersize 63632 +containerchecksum e81a55353385ff86614cbfca0826298c6b5ae269e3d17ad8c9eb391ac37b25c95c059e916dadb67ac7432bab96be5d8a496880d24e56327129f6274c4950bb28 +doccontainersize 373532 +doccontainerchecksum 0f325490cd35d94b202deaa7a27f4e4685ae15760dc06813d67ba7f156cf62ef56510c2e07fd8759a6c27d3d947d608bd72819fc36aa83674ca97af4641bc368 +docfiles size=109 + RELOC/doc/latex/mathpazo/README.txt + RELOC/doc/latex/mathpazo/gpl.txt + RELOC/doc/latex/mathpazo/mapfplm.tex + RELOC/doc/latex/mathpazo/mapppl.tex + RELOC/doc/latex/mathpazo/mapzplm.tex + RELOC/doc/latex/mathpazo/pazofnst.tex + RELOC/doc/latex/mathpazo/pazotest.pdf details="Font tables:" +srccontainersize 17980 +srccontainerchecksum 65d2a446e86431d805db9e7384f18c1f73fc8a5e7ef4bd55dd2bb30493345434f9b5b190b650e0af6ac170372a410f149d3b538e57b7b2189bb029a07e144745 +srcfiles size=117 + RELOC/source/latex/mathpazo/Makefile + RELOC/source/latex/mathpazo/cmbsy10.pl + RELOC/source/latex/mathpazo/cmbx10.pl + RELOC/source/latex/mathpazo/cmex10.pl + RELOC/source/latex/mathpazo/cmmi10.pl + RELOC/source/latex/mathpazo/cmmib10.pl + RELOC/source/latex/mathpazo/cmr10.pl + RELOC/source/latex/mathpazo/cmsy10.pl + RELOC/source/latex/mathpazo/fplmb.inf + RELOC/source/latex/mathpazo/fplmb.mtx + RELOC/source/latex/mathpazo/fplmb.pl + RELOC/source/latex/mathpazo/fplmbb.inf + RELOC/source/latex/mathpazo/fplmbb.mtx + RELOC/source/latex/mathpazo/fplmbb.pl + RELOC/source/latex/mathpazo/fplmbi.inf + RELOC/source/latex/mathpazo/fplmbi.mtx + RELOC/source/latex/mathpazo/fplmbi.pl + RELOC/source/latex/mathpazo/fplmr.inf + RELOC/source/latex/mathpazo/fplmr.mtx + RELOC/source/latex/mathpazo/fplmr.pl + RELOC/source/latex/mathpazo/fplmri.inf + RELOC/source/latex/mathpazo/fplmri.mtx + RELOC/source/latex/mathpazo/fplmri.pl + RELOC/source/latex/mathpazo/haxzplmb.mtx + RELOC/source/latex/mathpazo/haxzplmr.mtx + RELOC/source/latex/mathpazo/inf/fplmb.inf + RELOC/source/latex/mathpazo/inf/fplmbb.inf + RELOC/source/latex/mathpazo/inf/fplmbi.inf + RELOC/source/latex/mathpazo/inf/fplmr.inf + RELOC/source/latex/mathpazo/inf/fplmri.inf + RELOC/source/latex/mathpazo/nokernum.mtx + RELOC/source/latex/mathpazo/omsnames.mtx + RELOC/source/latex/mathpazo/pazofnst/Makefile + RELOC/source/latex/mathpazo/pazofnst/cmbsy10.pl + RELOC/source/latex/mathpazo/pazofnst/cmbx10.pl + RELOC/source/latex/mathpazo/pazofnst/cmex10.pl + RELOC/source/latex/mathpazo/pazofnst/cmmi10.pl + RELOC/source/latex/mathpazo/pazofnst/cmmib10.pl + RELOC/source/latex/mathpazo/pazofnst/cmr10.pl + RELOC/source/latex/mathpazo/pazofnst/cmsy10.pl + RELOC/source/latex/mathpazo/pazofnst/haxzplmb.mtx + RELOC/source/latex/mathpazo/pazofnst/haxzplmr.mtx + RELOC/source/latex/mathpazo/pazofnst/nokernum.mtx + RELOC/source/latex/mathpazo/pazofnst/omsnames.mtx + RELOC/source/latex/mathpazo/pazofnst/pazofnst.tex + RELOC/source/latex/mathpazo/pazofnst/unsetcm4pl.mtx + RELOC/source/latex/mathpazo/pazofnst/unsetint.mtx + RELOC/source/latex/mathpazo/pazofnst/unsetosf.mtx + RELOC/source/latex/mathpazo/pazofnst/unsetpl4cm.mtx + RELOC/source/latex/mathpazo/pazofnst/unsetpunct.mtx + RELOC/source/latex/mathpazo/pazofnst/zplmbgop.mtx + RELOC/source/latex/mathpazo/pazofnst/zplmsum.mtx + RELOC/source/latex/mathpazo/pplr8a.mtx + RELOC/source/latex/mathpazo/unsetcm4pl.mtx + RELOC/source/latex/mathpazo/unsetint.mtx + RELOC/source/latex/mathpazo/unsetosf.mtx + RELOC/source/latex/mathpazo/unsetpl4cm.mtx + RELOC/source/latex/mathpazo/unsetpunct.mtx + RELOC/source/latex/mathpazo/zplmbgop.mtx + RELOC/source/latex/mathpazo/zplmsum.mtx +runfiles size=41 + RELOC/fonts/afm/public/mathpazo/fplmb.afm + RELOC/fonts/afm/public/mathpazo/fplmbb.afm + RELOC/fonts/afm/public/mathpazo/fplmbi.afm + RELOC/fonts/afm/public/mathpazo/fplmr.afm + RELOC/fonts/afm/public/mathpazo/fplmri.afm + RELOC/fonts/tfm/public/mathpazo/fplmb.tfm + RELOC/fonts/tfm/public/mathpazo/fplmbb.tfm + RELOC/fonts/tfm/public/mathpazo/fplmbi.tfm + RELOC/fonts/tfm/public/mathpazo/fplmr.tfm + RELOC/fonts/tfm/public/mathpazo/fplmri.tfm + RELOC/fonts/tfm/public/mathpazo/zplmb7m.tfm + RELOC/fonts/tfm/public/mathpazo/zplmb7t.tfm + RELOC/fonts/tfm/public/mathpazo/zplmb7y.tfm + RELOC/fonts/tfm/public/mathpazo/zplmr7m.tfm + RELOC/fonts/tfm/public/mathpazo/zplmr7t.tfm + RELOC/fonts/tfm/public/mathpazo/zplmr7v.tfm + RELOC/fonts/tfm/public/mathpazo/zplmr7y.tfm + RELOC/fonts/type1/public/mathpazo/fplmb.pfb + RELOC/fonts/type1/public/mathpazo/fplmbb.pfb + RELOC/fonts/type1/public/mathpazo/fplmbi.pfb + RELOC/fonts/type1/public/mathpazo/fplmr.pfb + RELOC/fonts/type1/public/mathpazo/fplmri.pfb + RELOC/fonts/vf/public/mathpazo/zplmb7m.vf + RELOC/fonts/vf/public/mathpazo/zplmb7t.vf + RELOC/fonts/vf/public/mathpazo/zplmb7y.vf + RELOC/fonts/vf/public/mathpazo/zplmr7m.vf + RELOC/fonts/vf/public/mathpazo/zplmr7t.vf + RELOC/fonts/vf/public/mathpazo/zplmr7v.vf + RELOC/fonts/vf/public/mathpazo/zplmr7y.vf +catalogue-also pxfonts newpx tex-gyre-math-pagella +catalogue-ctan /fonts/mathpazo +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license gpl +catalogue-topics font font-type1 font-maths font-bbd +catalogue-version 1.003 + +name mathpunctspace +category Package +revision 46754 +shortdesc Control the space after punctuation in math expressions +relocated 1 +longdesc This package provides a mechanism to control the space after +longdesc commas and semicolons in mathematical expressions. +containersize 1356 +containerchecksum 81d1fa6ce0e96190516f2440517d554e259013869065a4242c55bcc06f2d9eab1f8102464da71fe72dd0d231248b637d54733b2a11b832d2153f151dc5513339 +doccontainersize 190188 +doccontainerchecksum ce318466af0c6690a905c92e9f24f9a7c2891c4afac7c51eead8ebf211bf13e2c20d368782ed41f20a2bb2d6f3a6cd6bf44eb6a0c848ff8006564ec98aeae2d7 +docfiles size=108 + RELOC/doc/latex/mathpunctspace/README.md details="Readme" + RELOC/doc/latex/mathpunctspace/comma0mu-semicolonnat-colonnat.pdf + RELOC/doc/latex/mathpunctspace/comma10mu-semicolon20mu-colon30mu.pdf + RELOC/doc/latex/mathpunctspace/comma5pt-semicolon5pt-colon5pt.pdf + RELOC/doc/latex/mathpunctspace/latexorg.pdf + RELOC/doc/latex/mathpunctspace/mathpunctspace.pdf details="Package documentation" + RELOC/doc/latex/mathpunctspace/mathpunctspace.tex +runfiles size=2 + RELOC/tex/latex/mathpunctspace/mathpunctspace.sty +catalogue-contact-repository https://github.com/yuw/texmf-mathpunctspace +catalogue-ctan /macros/latex/contrib/mathpunctspace +catalogue-date 2018-02-27 20:50:56 +0100 +catalogue-license bsd2 +catalogue-topics maths typesetting +catalogue-version 1.1 + +name maths-symbols +category Package +revision 37763 +shortdesc Summary of mathematical symbols available in LaTeX +relocated 1 +longdesc A predecessor of the comprehensive symbols list, covering +longdesc mathematical symbols available in standard LaTeX (including the +longdesc AMS symbols, if available at compile time). +containersize 520 +containerchecksum f2028a2b8dad52aee2db1fcf679647192cb926e13cca831a419d876783e492dbc590e4745302addae7d3f01eabf7eaa1fd7cc6f757eff2ab9d9b5c39a1b0b785 +doccontainersize 348784 +doccontainerchecksum b60a66b3cc67e4dde62b0fc0552233ab59b1981ab92cedbe4c0de31a4c9e9d3207cf54ec5d2361f81937867d81bd345e77c4ab3e36fcd8588851765ec3267864 +docfiles size=94 + RELOC/doc/latex/maths-symbols/README details="Readme" + RELOC/doc/latex/maths-symbols/maths-symbols.pdf details="The document itself" + RELOC/doc/latex/maths-symbols/maths-symbols.tex + RELOC/doc/latex/maths-symbols/scriptfonts.pdf + RELOC/doc/latex/maths-symbols/scriptfonts.tex +catalogue-contact-repository https://github.com/davidcarlisle/dpctex/tree/master/maths-symbols +catalogue-ctan /info/symbols/math +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.2 +catalogue-topics font-index +catalogue-version 3.4 + +name mathspec +category Package +revision 42773 +shortdesc Specify arbitrary fonts for mathematics in XeTeX +relocated 1 +longdesc The mathspec package provides an interface to typeset +longdesc mathematics in XeLaTeX with arbitrary text fonts using fontspec +longdesc as a backend. The package is under development and later +longdesc versions might to be incompatible with this version, as this +longdesc version is incompatible with earlier versions. The package +longdesc requires at least version 0.9995 of XeTeX. +containersize 9728 +containerchecksum 7e9838ad2f212354b103b9beb61d60f124d2f47e52a04e2fad61de01e2e8220ca5f19f5b2188cbfefb379f94dc4b76573355dbde563f887beec29c57b3648ae9 +doccontainersize 172736 +doccontainerchecksum d22c19bd2114bc48f438d820177006170d52d1a261f3cfe69452148f4e11a0ddeb1bb25e1c1fa22ef8d2284c7f34f7ef41bcf9d8e90a89705b3a7515a679a922 +docfiles size=50 + RELOC/doc/xelatex/mathspec/README.txt details="Readme" + RELOC/doc/xelatex/mathspec/mathspec.pdf details="Package documentation" + RELOC/doc/xelatex/mathspec/mathspec.tex +runfiles size=11 + RELOC/tex/xelatex/mathspec/mathspec.sty +catalogue-ctan /macros/xetex/latex/mathspec +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl +catalogue-topics font-maths font-sel +catalogue-version 0.2b + +name mathspic +category Package +revision 31957 +shortdesc A Perl filter program for use with PiCTeX +longdesc MathsPIC(Perl) is a development of the earlier MathsPIC(DOS) +longdesc program, now implemented as a Perl script, being much more +longdesc portable than the earlier program. MathsPIC parses a plain text +longdesc input file and generates a plain text output-file containing +longdesc commands for drawing a diagram. Version 1.0 produces output +longdesc containing PiCTeX and (La)TeX commands, which may then be +longdesc processed by plain TeX or LaTeX in the usual way. MathsPIC also +longdesc outputs a comprehensive log-file. MathsPIC facilitates creating +longdesc figures using PiCTeX by providing an environment for +longdesc manipulating named points and also allows the use of variables +longdesc and maths (advance, multiply, and divide)--in short--it takes +longdesc the pain out of PiCTeX. Both the original DOS version and the +longdesc new Perl version are available. +depend mathspic.ARCH +containersize 18060 +containerchecksum e556960f07a003e877ce678110e724ef94d34aabc0ae52c59ec2ae487fc7d3e5de169844baaefd61e467e98a7a9718d94d881c3f0d43855e133040bdbddb6a62 +doccontainersize 2460876 +doccontainerchecksum 1702071f4c26097e241ba161258a51461405954105c8a7f2d92a552d6397ef69af029652ba5528df999c569fae32955d1b194b0f7c4475b3fc870656b473386a +docfiles size=1303 + texmf-dist/doc/latex/mathspic/HELP.txt + texmf-dist/doc/latex/mathspic/MATHSPIC.BAT + texmf-dist/doc/latex/mathspic/README.txt details="Readme (Perl version)" + texmf-dist/doc/latex/mathspic/grabtexdata.tex + texmf-dist/doc/latex/mathspic/mathsPICfigures.zip + texmf-dist/doc/latex/mathspic/mathsPICmanual.pdf details="User documentation (Perl version)" + texmf-dist/doc/latex/mathspic/mathsPICmanual.zip + texmf-dist/doc/latex/mathspic/mathspic.lib + texmf-dist/doc/latex/mathspic/mathspic.sh + texmf-dist/doc/latex/mathspic/sourcecode113.html + texmf-dist/doc/latex/mathspic/sourcecode113.nw + texmf-dist/doc/latex/mathspic/sourcecode113.pdf details="Perl source listing" + texmf-dist/doc/man/man1/mathspic.1 + texmf-dist/doc/man/man1/mathspic.man1.pdf +runfiles size=33 + texmf-dist/scripts/mathspic/mathspic.pl + texmf-dist/tex/latex/mathspic/mathspic.sty +catalogue-ctan /graphics/mathspic +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-prep +catalogue-version 1.13 + +name mathspic.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of mathspic +containersize 340 +containerchecksum 4edf0bad1093171933233a215de5300155b6ddbf5656f4d6f59982f453b7686d161cda6fd6ee210c0492cc5b909f26278acbe6164f7d46193a56b2541190e9c0 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/mathspic + +name mathspic.amd64-freebsd +category Package +revision 23661 +shortdesc amd64-freebsd files of mathspic +containersize 340 +containerchecksum db9a4009beac8a198341e1478ad776e061b599cba8a178b5a56afb6f840cd83252333618463b364350580bc5c862cb4a1fca1cd356fd06f3886103f87e37882c +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/mathspic + +name mathspic.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of mathspic +containersize 344 +containerchecksum e461e4d35f889f9ea0dcd03067815fb7d6bed8062e579e6c8afe356cee2fc73fe4ca50c15f4ac873500ed09e247b61909fe1cab492614a298b771f3e3c987ff8 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/mathspic + +name mathspic.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of mathspic +containersize 340 +containerchecksum 2294bc1a888efa5d855dc81db3483f8dc0b646a04a8f210de889886f2d17dad211f66aa986ee19e12d05c28cee5e2773f888df484617ae882187f91dd4e5a408 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/mathspic + +name mathspic.i386-cygwin +category Package +revision 23661 +shortdesc i386-cygwin files of mathspic +containersize 340 +containerchecksum d7b1d85cdb2c845c6192077e237f5a30590cc0c2eea3bc7c9a3f0f9ee49074110e84561380ecad7ba1e0e23c49ba80e581de75025e3d8ac4b6009fdd4d781c6c +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/mathspic + +name mathspic.i386-freebsd +category Package +revision 23661 +shortdesc i386-freebsd files of mathspic +containersize 340 +containerchecksum 583e843950be36c7df357ee6d98f8a7ce7c6be18a624f364e346ce230fcb45f59825aefbd0c76740998e3087643004fae81a00a3cc582ee76dc2601e4228f6cf +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/mathspic + +name mathspic.i386-linux +category Package +revision 23661 +shortdesc i386-linux files of mathspic +containersize 340 +containerchecksum ea345806fe7441e2b8820b8d7d2e49c5076e7c09080e544ba444da4be99d5402d21aa6aacb26a6717922d6702df3786e1716053f18cafd071dbbc3d9f61d3114 +binfiles arch=i386-linux size=1 + bin/i386-linux/mathspic + +name mathspic.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of mathspic +containersize 344 +containerchecksum 21e66f1cf4e0ee8ed3f72de07c1df80ba78450d22598c0c58395e7ec852b9d25a8d3d7d9a9c1d8d07a29f1aa83cf04698f5272662029170fcfb7647f13bff852 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/mathspic + +name mathspic.i386-solaris +category Package +revision 23661 +shortdesc i386-solaris files of mathspic +containersize 340 +containerchecksum b1e039b3c2699396c3f6255b4c04c7046599d447a4afbd8ca3668a630844a9cab8f0f6b53a8b6c92ae6631bcc6e3eaa66e9dc87e6d9c1f3889d800cadcac1467 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/mathspic + +name mathspic.win32 +category Package +revision 44131 +shortdesc win32 files of mathspic +containersize 680 +containerchecksum e593037252e9bc51914c6e7224794b929d3d70eed023ead8ba37167aab63b47b9b0ca6e18f24a85e59db0532b797813871092af3eea419f559710e273249b170 +binfiles arch=win32 size=1 + bin/win32/mathspic.exe + +name mathspic.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of mathspic +containersize 344 +containerchecksum 8d715cde6124782013e2ac37ed07163b9cd3f6bb81c1117c8cb867e1d77266b691779b8784ed319ce531cd68152eadbeac0a5ae597062c07b8f72d94e8c06def +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/mathspic + +name mathspic.x86_64-darwin +category Package +revision 23661 +shortdesc x86_64-darwin files of mathspic +containersize 344 +containerchecksum b2e25be9791f924b5e6a7493760e75d15305aac4021430ad59ab9206132d653528f6045b2bd65bb0a02674a616ccb813bb2e5a68dfe3b6c7b46f1b967db4ebb3 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/mathspic + +name mathspic.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of mathspic +containersize 348 +containerchecksum f24cacd4c081ee045f85e1f9a43dc37e48820a7119424ca053cade2f571c232bd59b4daf0c3da5165a5f943a76d070a6ad8c76c47bc23829e0b180a69c7b2005 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/mathspic + +name mathspic.x86_64-linux +category Package +revision 23661 +shortdesc x86_64-linux files of mathspic +containersize 340 +containerchecksum f4081d212519716264c151fd7d10d2b2a36928c1879f31a93b00aa2ba77900dc2440329d577b75c5858e4a0110ee2e369d7b3ee9fdfea783ba367497ce61e868 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/mathspic + +name mathspic.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of mathspic +containersize 348 +containerchecksum f8184cdc4b6f7cba3993c109d3e3279bace1272d6203675f1d5dd392023d98d27daf41294e936f689d9e2f919f17d38c1b4a62ed8bb9d3c04a1cf829c7f7e787 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/mathspic + +name mathspic.x86_64-solaris +category Package +revision 23661 +shortdesc x86_64-solaris files of mathspic +containersize 340 +containerchecksum 188b9b1f27fbb4c266f77fdbc8abec87fae2aba9f9440332238b4ba56cd91c789d900e6e89a8730406f5b0123c9c62e9adaceaee27edf27fe819ee202b999b70 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/mathspic + +name mathtools +category Package +revision 46250 +shortdesc Mathematical tools to use with amsmath +relocated 1 +longdesc Mathtools provides a series of packages designed to enhance the +longdesc appearance of documents containing a lot of mathematics. The +longdesc main backbone is amsmath, so those unfamiliar with this +longdesc required part of the LaTeX system will probably not find the +longdesc packages very useful. Mathtools provides many useful tools for +longdesc mathematical typesetting. It is based on amsmath and fixes +longdesc various deficiencies of amsmath and standard LaTeX. It +longdesc provides: Extensible symbols, such as brackets, arrows, +longdesc harpoons, etc.; Various symbols such as \coloneqq (:=); Easy +longdesc creation of new tag forms; Showing equation numbers only for +longdesc referenced equations; Extensible arrows, harpoons and +longdesc hookarrows; Starred versions of the amsmath matrix environments +longdesc for specifying the column alignment; More building blocks: +longdesc multlined, cases-like environments, new gathered environments; +longdesc Maths versions of \makebox, \llap, \rlap etc.; Cramped math +longdesc styles; and more... Mathtools requires mhsetup. +containersize 19112 +containerchecksum ad121970fb30bca9b043490862029ffbcb21a0d07f69aaa9938fc6e91c2545783bea36e4e931d0d921548d8b8ae45b4ace0d04767f2d7ad13c5ff5d9096f418b +doccontainersize 965596 +doccontainerchecksum fd2754e2048d1615a25a001915ac02ffc88be0237fd963be778785325ec0e05bcfcea0d1c12f84d87728a2802f1b0945d1adf4e527d5b893a4fa1eb1da58f262 +docfiles size=243 + RELOC/doc/latex/mathtools/README details="Package README" + RELOC/doc/latex/mathtools/empheq.pdf + RELOC/doc/latex/mathtools/mathtools.pdf details="Package documentation" + RELOC/doc/latex/mathtools/mhsetup.pdf +srccontainersize 81732 +srccontainerchecksum f55c3957012385446dbbdf6f8d0339b28ce42578f8864ab40d629aa8af605cb41fb2eab8e7a5d12bc7d28ea9aed1744381cc207b89addca9227f542643c15c8c +srcfiles size=97 + RELOC/source/latex/mathtools/empheq.dtx + RELOC/source/latex/mathtools/mathtools.dtx + RELOC/source/latex/mathtools/mhsetup.dtx +runfiles size=28 + RELOC/tex/latex/mathtools/empheq.sty + RELOC/tex/latex/mathtools/mathtools.sty + RELOC/tex/latex/mathtools/mhsetup.sty +catalogue-also mhsetup empheq +catalogue-ctan /macros/latex/contrib/mathtools +catalogue-date 2018-01-08 15:01:37 +0100 +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 1.21 + +name matlab-prettifier +category Package +revision 34323 +shortdesc Pretty-print Matlab source code +relocated 1 +longdesc The package extends the facilities of the listings package, to +longdesc pretty-print Matlab and Octave source code. (Note that support +longdesc of Octave syntax is not complete.) +containersize 4140 +containerchecksum 840d860303925d148c10a980218018ed14e2d0ba2b1638f8328308a0400e8862ced7cd28822fd81c3c3533d2ef4cd37e1c4009065b1300011898fefb407ac202 +doccontainersize 663904 +doccontainerchecksum 22b783fbe09f661d1e5034cb623fab29e54df35b4f0379579f430b17a80236a843c15201b6583bf58f22ae39dba34d7f5a4f8482b1c6d185822940c67ac06942 +docfiles size=164 + RELOC/doc/latex/matlab-prettifier/README details="Readme" + RELOC/doc/latex/matlab-prettifier/matlab-prettifier.pdf details="Package documentation" +srccontainersize 21700 +srccontainerchecksum 25daf7d57d376a2a218a48c275b07459b512bb0e6ab95e78969883a3ca26f010c2e3204c0fe9af0922a50b48aa0f87c6b47973cc7adf9678d351faf9e263a9d3 +srcfiles size=23 + RELOC/source/latex/matlab-prettifier/matlab-prettifier.dtx + RELOC/source/latex/matlab-prettifier/matlab-prettifier.ins +runfiles size=4 + RELOC/tex/latex/matlab-prettifier/matlab-prettifier.sty +catalogue-also matlabweb +catalogue-ctan /macros/latex/contrib/matlab-prettifier +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics listing +catalogue-version 0.3 + +name mattens +category Package +revision 17582 +shortdesc Matrices/tensor typesetting +relocated 1 +longdesc The mattens package contains the definitions to typeset +longdesc matrices, vectors and tensors as used in the engineering +longdesc community for the representation of common vectors and tensors +longdesc such as forces, velocities, moments of inertia, etc. +containersize 2844 +containerchecksum 9ae7b4d3e3386a5c9b94a30eafc02d00c9a6376ed356755ba283f7b9b43fc27d3b9dc2994d808360b77d23f39014e230434f404bcf6dc20bc974d9efae97a3dc +doccontainersize 708948 +doccontainerchecksum d67ce30be2e20c5182460b8e567d955c41b364383acd350cba1c07b52576d78016a865148ed871ce7ef3f937eb045201e64e5d5f52fd5b173fe93cf84def2119 +docfiles size=191 + RELOC/doc/latex/mattens/README details="Readme" + RELOC/doc/latex/mattens/mattens.pdf details="Package documentation" + RELOC/doc/latex/mattens/mattens_sample.pdf details="Sample of use" + RELOC/doc/latex/mattens/mattens_sample_src.zip +srccontainersize 14384 +srccontainerchecksum d199c5fe62172d98e7184a2689c3415944128251b75ee45e0629da5200cbb7b954cef1243a165ce2713582afcdac30dcd9f1445ffcaa18a69ece0aa79391d852 +srcfiles size=15 + RELOC/source/latex/mattens/mattens.dtx + RELOC/source/latex/mattens/mattens.ins +runfiles size=3 + RELOC/tex/latex/mattens/mattens.sty +catalogue-ctan /macros/latex/contrib/mattens +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics maths engineering +catalogue-version 1.3 + +name maybemath +category Package +revision 15878 +shortdesc Make math bold or italic according to context +relocated 1 +longdesc The \maybebm and \maybeit macros can be used in maths +longdesc expressions to make the arguments typeset as bold or italic +longdesc respectively if the surrounding context is appropriate. They +longdesc are useful for writing user macros for use in general contexts. +longdesc \maybebm is especially appropriate when section titles contain +longdesc math expressions, since the title will appear bold but the +longdesc header and table of contents usually replicate the title in +longdesc normal width. It uses the bm package to make things bold +longdesc \maybeit performs a similar role to \mathrm{} but the maths +longdesc expression will be italicised if the surrounding text is. +longdesc \maybeitsubscript is provided to shift subscripts to the left +longdesc if the expression is italicised. +containersize 1520 +containerchecksum 32520ff01d76e11bd70694a07b86272425680ca8bf21b6da9412c133836f9ecbc9a9537377ee67cf9292e33dedaa1d33e906b4f681b89f075d1fcbbbbdc989dd +doccontainersize 60212 +doccontainerchecksum b0f978f89ebb7f681e7b045d03a9a6e7e9083d7c468c91d52ef417c85d707243fa0ef253b3e2d1f1737a9c7235fefae06c4a8fe2975cf2c13f7f09ada7752f26 +docfiles size=20 + RELOC/doc/latex/maybemath/README details="Package README" + RELOC/doc/latex/maybemath/maybemath.pdf details="Package documentation" + RELOC/doc/latex/maybemath/maybemath.tex +runfiles size=1 + RELOC/tex/latex/maybemath/maybemath.sty +catalogue-ctan /macros/latex/contrib/maybemath +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics maths font-sel + +name mcaption +category Package +revision 15878 +shortdesc Put captions in the margin +relocated 1 +longdesc The mcaption package provides an mcaption environment which +longdesc puts figure or table captions in the margin. The package works +longdesc with the standard classes and with the KOMA-Script document +longdesc classes scrartcl, scrreprt and scrbook. The package requires +longdesc the changepage package. +containersize 1744 +containerchecksum c3e1c2948e2687bf720dc05dfa1ed6140a1ea55de3cad7ebcfe518d720ed96793b6bde32fb0882cae773f986b11150482fdfb382391650a8c513131b7041555a +doccontainersize 121432 +doccontainerchecksum e803f5731e6ac1c299bc3a42666acb81a75a3f110be729639357a15633e0e7b8ad0a244820b96ae9f8b435d9d1fea54a0b7f14c5db02799b3a632b2f0c5cb4b9 +docfiles size=37 + RELOC/doc/latex/mcaption/CHANGES + RELOC/doc/latex/mcaption/README details="Readme" + RELOC/doc/latex/mcaption/example.tex + RELOC/doc/latex/mcaption/mcaption.pdf details="Package documentation" +srccontainersize 6548 +srccontainerchecksum e859c83efb88fa03790b2ddbe18cea57ee489dd59679559f8d7f3b93a0804d93478412414e131f39bece090ed5b3433e2784facbff9b3ad705a81d1adc542e77 +srcfiles size=7 + RELOC/source/latex/mcaption/mcaption.dtx + RELOC/source/latex/mcaption/mcaption.ins +runfiles size=2 + RELOC/tex/latex/mcaption/mcaption.sty +catalogue-ctan /macros/latex/contrib/mcaption +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics caption +catalogue-version 3.0 + +name mceinleger +category Package +revision 15878 +shortdesc Creating covers for music cassettes +relocated 1 +longdesc A package for creating MC-covers on your own. It allows the +longdesc creation of simple covers as well as covers with an additional +longdesc page for more information about the cassette (table of contents +longdesc e.g.). The rotating package is required. +containersize 1092 +containerchecksum 0792d7a5289965b2379001a54177e1aed4a3356d8611e52ef77f5097bed1918dac324bdf5c618ca76d2925d11539b623cd9d4016ff0f4d1f9283137816ec145d +doccontainersize 43372 +doccontainerchecksum 2dab78fd096927e3958d7270ddf15de9350ec30d1d000e7cf92be3b249ccf70e6faa1dce482a07995e65b4a4549693ce3b34d1a63bcc403ebe81f3d1887ecf90 +docfiles size=15 + RELOC/doc/latex/mceinleger/mceinleger.pdf details="Package documentation" + RELOC/doc/latex/mceinleger/mceinleger.tex +runfiles size=1 + RELOC/tex/latex/mceinleger/mceinleger.sty +catalogue-also cdcover +catalogue-ctan /macros/latex/contrib/mceinleger +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics covers + +name mcexam +category Package +revision 46155 +shortdesc Create randomized Multiple Choice questions +relocated 1 +longdesc This LaTeX package automatically randomly permutes the order of +longdesc questions as well as the answer options in different versions +longdesc of a multiple choice exam/test. Next to the exam versions +longdesc themselves, the package also allows printing a concept version +longdesc of the exam, a key table with the correct answers or points, +longdesc and a document with solutions and explanations per exam +longdesc version. The package also allows writing an R code which +longdesc processes the results of the exam and calculates the grades. +longdesc The following other LaTeX packages are required: enumitem, +longdesc environ, etoolbox, longtable, newfile, pgffor (from the +longdesc PGF/TikZ bundle), xkeyval, and xstring. +containersize 11424 +containerchecksum 37637616c9ccbe4e20ebae6b479e076fe87b6bd5f3bbf9124c79b93cef6e992d82bbb4fcfbbec3e4a7dcc187d66742c410c4a6280328c80765495685b4fa2cac +doccontainersize 241840 +doccontainerchecksum 5d1eddfdca3ebb7fbe28d93ed6e7332147857d7523d3b64e908aa56ef71d9bb2546d05c150737a3401b5ac7f76110a421513db2d8fba906173afbde9e012f7f8 +docfiles size=71 + RELOC/doc/latex/mcexam/README.md details="Readme" + RELOC/doc/latex/mcexam/mcexam.pdf details="Package documentation" + RELOC/doc/latex/mcexam/mcexam.tex + RELOC/doc/latex/mcexam/mcexam_example.r + RELOC/doc/latex/mcexam/mcexam_example.tex +runfiles size=18 + RELOC/tex/latex/mcexam/mcexam.sty +catalogue-also esami +catalogue-ctan /macros/latex/contrib/mcexam +catalogue-date 2017-12-27 11:23:06 +0100 +catalogue-license lppl1.3c +catalogue-topics exam +catalogue-version 0.4 + +name mcf2graph +category Package +revision 51090 +shortdesc Draw chemical structure diagrams with Metafont/MetaPost +relocated 1 +longdesc The Molecular Coding Format (MCF) is a linear notation for +longdesc describing chemical structure diagrams. This package converts +longdesc MCF to graphic files using Metafont / MetaPost. +containersize 18612 +containerchecksum d139dff8719ae966d13611d8ebf4201bded42302175b32cb2de10484d92b20c1b5ab7f5d9b82e6223651951100b718f00399266734a270155eb41d1bc8c97c1d +doccontainersize 1035020 +doccontainerchecksum f7b06ddee5c5383e5e47bcbdcf9ff685eec8747d7ad7d882bd8e8e73f7e3bb46160ca6972078f29ca0f3f35546c7e445ab65608313162ddc6c5868ea6230a3ac +docfiles size=301 + RELOC/doc/metapost/mcf2graph/CHANGELOG + RELOC/doc/metapost/mcf2graph/README details="Readme" + RELOC/doc/metapost/mcf2graph/mcf_exa_soc.mf + RELOC/doc/metapost/mcf2graph/mcf_example.pdf details="Molecular Coding Format Examples" + RELOC/doc/metapost/mcf2graph/mcf_example.tex + RELOC/doc/metapost/mcf2graph/mcf_man_soc-064.mps + RELOC/doc/metapost/mcf2graph/mcf_man_soc.mf + RELOC/doc/metapost/mcf2graph/mcf_manual.pdf details="Package documentation" + RELOC/doc/metapost/mcf2graph/mcf_manual.tex + RELOC/doc/metapost/mcf2graph/mcf_mplib_exa.pdf details="MCF Example for LuaLaTeX" + RELOC/doc/metapost/mcf2graph/mcf_mplib_exa.tex +runfiles size=20 + RELOC/metapost/mcf2graph/mcf2graph.mf +catalogue-ctan /graphics/mcf2graph +catalogue-date 2019-05-11 09:16:30 +0200 +catalogue-license mit +catalogue-topics graphics graphics-mpost chemistry +catalogue-version 4.41 + +name mcite +category Package +revision 18173 +shortdesc Multiple items in a single citation +relocated 1 +longdesc The mcite package allows the user to collapse multiple +longdesc citations into one, as is customary in physics journals. The +longdesc package requires a customised BibTeX style for its work; the +longdesc documentation explains how to do that customisation. +containersize 2656 +containerchecksum 71276681ec29d3d77450a8c343d64a1ea734bb48de0d693a4e9ca795e4a4c9a3d5f4103b5641c8684d49b5c95f56bfd08bd12e1d7e37d06f9170008b51804897 +doccontainersize 138716 +doccontainerchecksum 8c5ae4b1beb334ecba3294108345bd616746ee651f03d39a7bd5f5cac97f671a861fb046e29ae7565863aecf4b043ebe25bf9a4180889c39e48735251e430004 +docfiles size=45 + RELOC/doc/latex/mcite/COPYING + RELOC/doc/latex/mcite/README details="Readme" + RELOC/doc/latex/mcite/mcite.bib + RELOC/doc/latex/mcite/mcite.pdf details="Package documentation" +srccontainersize 7060 +srccontainerchecksum 9f6e6edf49906bf3300123f8fe265ac8f8580c6838d59f7147e9337e67bff71325ee41a3993b3d1cdc9c036b5d519834261fb0a2a9cfe4d3afdbe070b454af8f +srcfiles size=7 + RELOC/source/latex/mcite/Makefile + RELOC/source/latex/mcite/mcite.drv + RELOC/source/latex/mcite/mcite.dtx + RELOC/source/latex/mcite/mcite.ins +runfiles size=2 + RELOC/tex/latex/mcite/mcite.sty +catalogue-ctan /macros/latex/contrib/mcite +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics cite-supp +catalogue-version 1.6 + +name mciteplus +category Package +revision 31648 +shortdesc Enhanced multiple citations +relocated 1 +longdesc The mciteplus LaTeX package is an enhanced reimplementation of +longdesc Thorsten Ohl's mcite package which provides support for the +longdesc grouping of multiple citations together as is often done in +longdesc physics journals. An extensive set of features provide for +longdesc other applications such as reference sublisting. +containersize 34344 +containerchecksum 5be1980964ea8342321964f0db1c750c33fee9f21724608a260ebed22500d1fcfb0fcb7e588a0dd030a6c534b0da904b8bfc3eb0da7b2df34c0b3f2b1b8fb637 +doccontainersize 391980 +doccontainerchecksum 5e720fc2b32ca00d71ade77fd0a47c6ef44d9b7692a8160ddc55a5f60495a40272a7a0c6c2f5bed923ea10703654f155701d4571d72805c1ef900780a209a0a4 +docfiles size=138 + RELOC/doc/latex/mciteplus/README details="Readme" + RELOC/doc/latex/mciteplus/changelog.txt + RELOC/doc/latex/mciteplus/mciteplus_code.txt details="Details for modifying .bst code" + RELOC/doc/latex/mciteplus/mciteplus_doc.pdf details="Package documentation" + RELOC/doc/latex/mciteplus/mciteplus_doc.tex +runfiles size=70 + RELOC/bibtex/bst/mciteplus/IEEEtranM.bst + RELOC/bibtex/bst/mciteplus/IEEEtranMN.bst + RELOC/bibtex/bst/mciteplus/apsrevM.bst + RELOC/bibtex/bst/mciteplus/apsrmpM.bst + RELOC/tex/latex/mciteplus/mciteplus.sty +catalogue-contact-home http://www.michaelshell.org/tex/mciteplus/ +catalogue-ctan /macros/latex/contrib/mciteplus +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl +catalogue-topics cite-supp +catalogue-version 1.2 + +name mcmthesis +category Package +revision 49825 +shortdesc Template designed for MCM/ICM +relocated 1 +longdesc The package offers a template for MCM (The Mathematical Contest +longdesc in Modeling) and ICM (The Interdisciplinary Contest in +longdesc Modeling). +containersize 3516 +containerchecksum 1b74cb3339eae2ea8fbfccdd993b69177f901166015fd10a422471bfd84495774309a7bed56a36a5ff56d3ca119954353f844ec01bd64ae5dc64e7586b1de17d +doccontainersize 373300 +doccontainerchecksum 5944885065187151f4336d34cc94328f264ea35fde8cce35a0da4a13f52d1261a3bd32885f21ca442694cc98219d2c4a63708f31c918c4768f6e8e8f4bd54f52 +docfiles size=199 + RELOC/doc/latex/mcmthesis/LICENSE + RELOC/doc/latex/mcmthesis/LICENSE.tex + RELOC/doc/latex/mcmthesis/README details="Readme" + RELOC/doc/latex/mcmthesis/README.tex + RELOC/doc/latex/mcmthesis/code/mcmthesis-matlab1.m + RELOC/doc/latex/mcmthesis/code/mcmthesis-sudoku.cpp + RELOC/doc/latex/mcmthesis/figures/mcmthesis-aaa.eps + RELOC/doc/latex/mcmthesis/figures/mcmthesis-logo.pdf + RELOC/doc/latex/mcmthesis/mcmthesis-demo.pdf details="Example of use" + RELOC/doc/latex/mcmthesis/mcmthesis-demo.tex + RELOC/doc/latex/mcmthesis/mcmthesis.pdf details="Package documentation" +srccontainersize 12824 +srccontainerchecksum 9ca1ba748ca82968a940326ad695ad631f9a4e081a635b845b6ca94467a52a4e63fc67074414a214adfe0f7c14f91e07339b32bff28b5e770b6ae7bdd5ab3b9e +srcfiles size=11 + RELOC/source/latex/mcmthesis/mcmthesis.dtx +runfiles size=3 + RELOC/tex/latex/mcmthesis/mcmthesis.cls +catalogue-contact-repository https://github.com/Liam0205/mcmthesis +catalogue-ctan /macros/latex/contrib/mcmthesis +catalogue-date 2019-01-26 10:02:14 +0100 +catalogue-license lppl1.3 +catalogue-topics dissertation class +catalogue-version 6.2.2 + +name mdframed +category Package +revision 31075 +shortdesc Framed environments that can split at page boundaries +relocated 1 +longdesc The package develops the facilities of framed in providing +longdesc breakable framed and coloured boxes. The user may instruct the +longdesc package to perform its operations using default LaTeX commands, +longdesc PStricks or TikZ. +containersize 21404 +containerchecksum 0cff0945adc04102e0b0a154cac1f78e9ea903b29e3f880156b888abeb4ca23565d39a7b66d8097c35534baebdf6af152c5b3830d08e1287e8e8d18e8f6344d0 +doccontainersize 1396108 +doccontainerchecksum 06822404872899d6f509fa94f69cdcb81dd69866fbc5a82fd54ca361aaf27133140290cec2d08800dbb39c896ebb7cc19dc4cce38d2a0e45de9c658bbadf3352 +docfiles size=470 + RELOC/doc/latex/mdframed/README.txt + RELOC/doc/latex/mdframed/ctan-lion.png + RELOC/doc/latex/mdframed/mdframed-example-default.pdf + RELOC/doc/latex/mdframed/mdframed-example-default.tex + RELOC/doc/latex/mdframed/mdframed-example-pstricks.pdf + RELOC/doc/latex/mdframed/mdframed-example-pstricks.tex + RELOC/doc/latex/mdframed/mdframed-example-texsx.pdf + RELOC/doc/latex/mdframed/mdframed-example-texsx.tex + RELOC/doc/latex/mdframed/mdframed-example-tikz.pdf + RELOC/doc/latex/mdframed/mdframed-example-tikz.tex + RELOC/doc/latex/mdframed/mdframed.pdf details="Package documentation" +srccontainersize 41792 +srccontainerchecksum 04fa6379f9840676b4fbc31029f091d9112524f8450747ce31687c9ba77a02e41c25ff51676424e97b788c48bf0bbab690459b6b84e128514cda8efd459255d4 +srcfiles size=71 + RELOC/source/latex/mdframed/Makefile + RELOC/source/latex/mdframed/mdframed.dtx + RELOC/source/latex/mdframed/mdframed.ins + RELOC/source/latex/mdframed/mdframedmake.bat +runfiles size=54 + RELOC/tex/latex/mdframed/ltxmdf.cls + RELOC/tex/latex/mdframed/md-frame-0.mdf + RELOC/tex/latex/mdframed/md-frame-1.mdf + RELOC/tex/latex/mdframed/md-frame-2.mdf + RELOC/tex/latex/mdframed/md-frame-3.mdf + RELOC/tex/latex/mdframed/mdframed.sty +catalogue-also framed +catalogue-contact-repository https://github.com/marcodaniel/mdframed +catalogue-ctan /macros/latex/contrib/mdframed +catalogue-date 2018-09-15 12:23:45 +0200 +catalogue-license lppl +catalogue-topics boxing box-breaking decoration +catalogue-version 1.9b + +name mdputu +category Package +revision 20298 +shortdesc Upright digits in Adobe Utopia Italic +relocated 1 +longdesc The Annals of Mathematics uses italics for theorems. However, +longdesc slanted digits and parentheses look disturbing when surrounded +longdesc by (upright) mathematics. This package provides virtual fonts +longdesc with italics and upright digits and punctuation, as an +longdesc extension to Mathdesign's Utopia bundle. +containersize 16964 +containerchecksum 2720c63845939d2befea3af157eae95d2550a216cd22634ab0a923a06d50b48e7133e914d210c5d3aaae6fd620312d23d2e55a015c2a24ee1881bc7ed4868778 +doccontainersize 196940 +doccontainerchecksum 8c8097552ffa1f11944203e818742bec244abc5a7708207cbb69c46ffc64acaac28ca390c1ee256cd1cf2af093e39189cc9bcf655e948062cd217b58acee7628 +docfiles size=61 + RELOC/doc/latex/mdputu/README details="Readme" + RELOC/doc/latex/mdputu/mdputu.dtx + RELOC/doc/latex/mdputu/mdputu.ins + RELOC/doc/latex/mdputu/mdputu.pdf details="Package documentation" + RELOC/doc/latex/mdputu/sample.pdf + RELOC/doc/latex/mdputu/sample.tex +runfiles size=29 + RELOC/fonts/tfm/public/mdputu/mdputubi7t.tfm + RELOC/fonts/tfm/public/mdputu/mdputubi8t.tfm + RELOC/fonts/tfm/public/mdputu/mdputuri7t.tfm + RELOC/fonts/tfm/public/mdputu/mdputuri8t.tfm + RELOC/fonts/vf/public/mdputu/mdputubi7t.vf + RELOC/fonts/vf/public/mdputu/mdputubi8t.vf + RELOC/fonts/vf/public/mdputu/mdputuri7t.vf + RELOC/fonts/vf/public/mdputu/mdputuri8t.vf + RELOC/tex/latex/mdputu/mdputu.sty + RELOC/tex/latex/mdputu/ot1mdputu.fd + RELOC/tex/latex/mdputu/t1mdputu.fd +catalogue-ctan /fonts/mdputu +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics font-maths font-virtual +catalogue-version 1.2 + +name mdsymbol +category Package +revision 28399 +shortdesc Symbol fonts to match Adobe Myriad Pro +relocated 1 +longdesc The package provides a font of mathematical symbols, MyriadPro +longdesc The font is designed as a companion to Adobe Myriad Pro, but it +longdesc might also fit well with other contemporary typefaces. +execute addMap mdsymbol.map +containersize 905656 +containerchecksum 49b52141928fedfdf5fdd63251de182761825a6cdcbf423bff562a863df159ac0d1c001239f777e7aef68ddce23c52407758c70f7da42f066775e204ac8c841d +doccontainersize 392096 +doccontainerchecksum ea4ddd0fd65204ec0ed980108d86e97be267ba46c1cf45711c36721bfab9302766ec1d0849b38de75003af564a797f8566def377d8d947d464367bfa40b91399 +docfiles size=100 + RELOC/doc/fonts/mdsymbol/FONTLOG.txt + RELOC/doc/fonts/mdsymbol/OFL.txt + RELOC/doc/latex/mdsymbol/mdsymbol.pdf details="Package documentation, including font tables" +srccontainersize 20092 +srccontainerchecksum 0b649eba13871f6da834bbfb2c6523db6d50bd6a491b042a19f0e061ce9794d2ca03c39d277669b6698b48806fd0b705f322a69743c4fc50233559fd10406280 +srcfiles size=41 + RELOC/source/latex/mdsymbol/mdsymbol.dtx + RELOC/source/latex/mdsymbol/mdsymbol.ins +runfiles size=469 + RELOC/fonts/enc/dvips/mdsymbol/mdsymbol-a.enc + RELOC/fonts/enc/dvips/mdsymbol/mdsymbol-b.enc + RELOC/fonts/enc/dvips/mdsymbol/mdsymbol-c.enc + RELOC/fonts/enc/dvips/mdsymbol/mdsymbol-d.enc + RELOC/fonts/enc/dvips/mdsymbol/mdsymbol-e.enc + RELOC/fonts/enc/dvips/mdsymbol/mdsymbol-f.enc + RELOC/fonts/map/dvips/mdsymbol/mdsymbol.map + RELOC/fonts/opentype/public/mdsymbol/MdSymbol-Bold.otf + RELOC/fonts/opentype/public/mdsymbol/MdSymbol-Light.otf + RELOC/fonts/opentype/public/mdsymbol/MdSymbol-Regular.otf + RELOC/fonts/opentype/public/mdsymbol/MdSymbol-Semibold.otf + RELOC/fonts/source/public/mdsymbol/MdSymbolA-Bold.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolA-Light.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolA-Regular.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolA-Semibold.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolA.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolB-Bold.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolB-Light.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolB-Regular.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolB-Semibold.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolB.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolC-Bold.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolC-Light.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolC-Regular.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolC-Semibold.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolC.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolD-Bold.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolD-Light.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolD-Regular.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolD-Semibold.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolD.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolE-Bold.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolE-Light.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolE-Regular.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolE-Semibold.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolE.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolF-Bold.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolF-Light.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolF-Regular.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolF-Semibold.mf + RELOC/fonts/source/public/mdsymbol/MdSymbolF.mf + RELOC/fonts/source/public/mdsymbol/mdaccents.mf + RELOC/fonts/source/public/mdsymbol/mdarrows.mf + RELOC/fonts/source/public/mdsymbol/mdbase.mf + RELOC/fonts/source/public/mdsymbol/mddelims.mf + RELOC/fonts/source/public/mdsymbol/mdgeometric.mf + RELOC/fonts/source/public/mdsymbol/mdoperators.mf + RELOC/fonts/source/public/mdsymbol/mdrelations.mf + RELOC/fonts/source/public/mdsymbol/mdturnstile.mf + RELOC/fonts/tfm/public/mdsymbol/MdSymbolA-Bold.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolA-Light.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolA-Regular.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolA-Semibold.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolB-Bold.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolB-Light.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolB-Regular.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolB-Semibold.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolC-Bold.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolC-Light.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolC-Regular.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolC-Semibold.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolD-Bold.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolD-Light.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolD-Regular.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolD-Semibold.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolE-Bold.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolE-Light.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolE-Regular.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolE-Semibold.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolF-Bold.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolF-Light.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolF-Regular.tfm + RELOC/fonts/tfm/public/mdsymbol/MdSymbolF-Semibold.tfm + RELOC/fonts/type1/public/mdsymbol/MdSymbolA-Bold.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolA-Light.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolA-Regular.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolA-Semibold.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolB-Bold.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolB-Light.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolB-Regular.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolB-Semibold.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolC-Bold.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolC-Light.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolC-Regular.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolC-Semibold.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolD-Bold.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolD-Light.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolD-Regular.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolD-Semibold.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolE-Bold.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolE-Light.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolE-Regular.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolE-Semibold.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolF-Bold.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolF-Light.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolF-Regular.pfb + RELOC/fonts/type1/public/mdsymbol/MdSymbolF-Semibold.pfb + RELOC/tex/latex/mdsymbol/mdsymbol.sty +catalogue-ctan /fonts/mdsymbol +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license ofl +catalogue-topics font-symbol font-symbol-maths font-mf font-type1 font-otf +catalogue-version 0.5 + +name mdwtools +category Package +revision 15878 +shortdesc Miscellaneous tools by Mark Wooding +relocated 1 +longdesc This collection of tools includes: support for short commands +longdesc starting with @, macros to sanitise the OT1 encoding of the +longdesc cmtt fonts; a 'do after' command; improved footnote support; +longdesc mathenv for various alignment in maths; list handling; mdwmath +longdesc which adds some minor changes to LaTeX maths; a rewrite of +longdesc LaTeX's tabular and array environments; verbatim handling; and +longdesc syntax diagrams. +containersize 19108 +containerchecksum bd78773e42fe20cce637a8fbc7c0e3f4f37ed50810190ffcc035a20c83508b6b7de7f7432b7bba8fbd039ba62f43a5b5e1f4839acb3fe62b425b650f23ff71bd +doccontainersize 1605404 +doccontainerchecksum 06c8619d8bcce2c5cf9f5fce65318521bbb0c2ce53acd6b1793d0fe19a8f7a32c36ff68f355b6809491cec365d09f5f14b0589ddcbea6c5b48900d11fda4867f +docfiles size=514 + RELOC/doc/latex/mdwtools/COPYING + RELOC/doc/latex/mdwtools/README details="Bundle readme" + RELOC/doc/latex/mdwtools/at.pdf + RELOC/doc/latex/mdwtools/cmtt.pdf + RELOC/doc/latex/mdwtools/doafter.pdf + RELOC/doc/latex/mdwtools/doafter.tex + RELOC/doc/latex/mdwtools/footnote.pdf + RELOC/doc/latex/mdwtools/gpl.tex + RELOC/doc/latex/mdwtools/mathenv.tex + RELOC/doc/latex/mdwtools/mdwlist.pdf + RELOC/doc/latex/mdwtools/mdwmath.pdf + RELOC/doc/latex/mdwtools/mdwtab.pdf + RELOC/doc/latex/mdwtools/mdwtools.tex + RELOC/doc/latex/mdwtools/sverb.pdf + RELOC/doc/latex/mdwtools/syntax.pdf +srccontainersize 104804 +srccontainerchecksum b3e6ba09116dd83187a55f205527c318d9afb4742404bc21b12e0be3b754140ecba82642154d92947cbc0706f0f9d3e6d876bc27108f13373d3c9d6ede4d7f5c +srcfiles size=112 + RELOC/source/latex/mdwtools/at.dtx + RELOC/source/latex/mdwtools/cmtt.dtx + RELOC/source/latex/mdwtools/doafter.dtx + RELOC/source/latex/mdwtools/footnote.dtx + RELOC/source/latex/mdwtools/mdwlist.dtx + RELOC/source/latex/mdwtools/mdwmath.dtx + RELOC/source/latex/mdwtools/mdwtab.dtx + RELOC/source/latex/mdwtools/mdwtools.ins + RELOC/source/latex/mdwtools/sverb.dtx + RELOC/source/latex/mdwtools/syntax.dtx +runfiles size=31 + RELOC/tex/latex/mdwtools/at.sty + RELOC/tex/latex/mdwtools/cmtt.sty + RELOC/tex/latex/mdwtools/doafter.sty + RELOC/tex/latex/mdwtools/footnote.sty + RELOC/tex/latex/mdwtools/mTTcmtt.fd + RELOC/tex/latex/mdwtools/mTTenc.def + RELOC/tex/latex/mdwtools/mathenv.sty + RELOC/tex/latex/mdwtools/mdwlist.sty + RELOC/tex/latex/mdwtools/mdwmath.sty + RELOC/tex/latex/mdwtools/mdwtab.sty + RELOC/tex/latex/mdwtools/sverb.sty + RELOC/tex/latex/mdwtools/syntax.sty +catalogue-ctan /macros/latex/contrib/mdwtools +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics list-supp notes footnote syntax maths macro-supp table verbatim +catalogue-version 1.05.4 + +name media9 +category Package +revision 51147 +shortdesc Multimedia inclusion package with Adobe Reader-9/X compatibility +relocated 1 +longdesc The package provides an interface to embed interactive Flash +longdesc (SWF) and 3D objects (Adobe U3D & PRC), as well as video and +longdesc sound files or streams in the popular MP4, FLV and MP3 formats +longdesc into PDF documents with Acrobat-9/X compatibility. Playback of +longdesc multimedia files uses the built-in Flash Player of Adobe Reader +longdesc and does, therefore, not depend on external plug-ins. Flash +longdesc Player supports the efficient H.264 codec for video +longdesc compression. The package is based on the RichMedia Annotation, +longdesc an Adobe addition to the PDF specification. It replaces the now +longdesc obsolete movie15 package. +containersize 1894880 +containerchecksum 1b6317b712b5400b4c2161e5257f52991d74d9bc9f49e123ed7e4b62a830723993b96c5e516b9fcb081edb2e92c238ef26c2e832da991aa4a8c18e775c6aa452 +doccontainersize 3721352 +doccontainerchecksum edf46a5f62acd31b195277e082d2785c1240c625c46a78e5e0dd34267a31190a07826881f23ffb0b323d4710288f3bffdb976ee3284f41ae3b804a51a0f1e588 +docfiles size=921 + RELOC/doc/latex/media9/ChangeLog + RELOC/doc/latex/media9/README.txt + RELOC/doc/latex/media9/media9.pdf details="Package documentation" +srccontainersize 1776668 +srccontainerchecksum 1a9766921a7a68e23511d4ddcb1773c8dbec6c396318dbfdd46b10ed821ddd6f7e599fd68e4b627363d8c4a58c51cd34bc4eddd5473b87941649afe7c739df63 +srcfiles size=555 + RELOC/source/latex/media9/files/3dsystem.fig + RELOC/source/latex/media9/files/3dsystem.pdf + RELOC/source/latex/media9/files/3dsystem.tex + RELOC/source/latex/media9/files/bird.mp3 + RELOC/source/latex/media9/files/boutona.pdf + RELOC/source/latex/media9/files/boutonb.pdf + RELOC/source/latex/media9/files/boutonc.pdf + RELOC/source/latex/media9/files/boutond.pdf + RELOC/source/latex/media9/files/boutone.pdf + RELOC/source/latex/media9/files/boutonf.pdf + RELOC/source/latex/media9/files/config.xml + RELOC/source/latex/media9/files/ctan_lion_1200.png + RELOC/source/latex/media9/files/ctan_lion_200.png + RELOC/source/latex/media9/files/ctan_lion_400.png + RELOC/source/latex/media9/files/ctan_lion_800.png + RELOC/source/latex/media9/files/cube.asy + RELOC/source/latex/media9/files/cube.mp4 + RELOC/source/latex/media9/files/cubeposter.png + RELOC/source/latex/media9/files/dice.u3d + RELOC/source/latex/media9/files/dice.vws + RELOC/source/latex/media9/files/dice.wrl + RELOC/source/latex/media9/files/epix.asy + RELOC/source/latex/media9/files/epix.prc + RELOC/source/latex/media9/files/epixposter.pdf + RELOC/source/latex/media9/files/malte.js + RELOC/source/latex/media9/files/malte.u3d + RELOC/source/latex/media9/files/random.mp4 + RELOC/source/latex/media9/media9.tex + RELOC/source/latex/media9/players/APlayer.mxml + RELOC/source/latex/media9/players/APlayer9.mxml + RELOC/source/latex/media9/players/BSD-License + RELOC/source/latex/media9/players/SMPfixes.patch + RELOC/source/latex/media9/players/SlideShow.mxml + RELOC/source/latex/media9/players/StrobeMediaPlayback-license + RELOC/source/latex/media9/players/VPlayer.mxml + RELOC/source/latex/media9/players/VPlayer9.mxml +runfiles size=503 + RELOC/tex/latex/media9/javascript/3Dmenu.js + RELOC/tex/latex/media9/javascript/3Dspintool.js + RELOC/tex/latex/media9/javascript/animation.js + RELOC/tex/latex/media9/javascript/asylabels.js + RELOC/tex/latex/media9/media9.sty + RELOC/tex/latex/media9/pdfbase.sty + RELOC/tex/latex/media9/players/APlayer.swf + RELOC/tex/latex/media9/players/APlayer9.swf + RELOC/tex/latex/media9/players/SlideShow.swf + RELOC/tex/latex/media9/players/StrobeMediaPlayback.swf + RELOC/tex/latex/media9/players/VPlayer.swf + RELOC/tex/latex/media9/players/VPlayer9.swf +catalogue-contact-repository https://gitlab.com/agrahn/media9 +catalogue-ctan /macros/latex/contrib/media9 +catalogue-date 2019-05-17 18:09:12 +0200 +catalogue-license lppl +catalogue-topics multimedia +catalogue-version 1.0 + +name medstarbeamer +category Package +revision 38828 +shortdesc Beamer document class for MedStar Health Research Institute +relocated 1 +longdesc This is a beamer template for MedStar Health presentations. It +longdesc includes sample presentations using both .tex files and .rnw +longdesc files. The document class is obviously compatible with both. +longdesc The advantage of the .rnw file is that it can be used with +longdesc knitr such that you can weave your R code with your +longdesc presentation. +containersize 2228 +containerchecksum 731eb6f78875aa38a90a228626d7cb5b7129c60085418d7ddadff056c9b82f8db95ee17f20ec8cd4611aa90bec391868f6b0b16fa0eae518358a869b576c150b +doccontainersize 1496 +doccontainerchecksum 1605cf9ac4eba56059b6e90e6a6e7f3cba9a924df1cf3dcfed300e218bbb71d79bd69b47a5e376da209490a8869061d6de8415e1670b4ac5b0fa977f74d7c035 +docfiles size=2 + RELOC/doc/latex/medstarbeamer/README.txt details="Readme" + RELOC/doc/latex/medstarbeamer/example.tex +runfiles size=2 + RELOC/tex/latex/medstarbeamer/beamercolorthemeMedStarColors.sty + RELOC/tex/latex/medstarbeamer/medstarbeamer.cls +catalogue-ctan /macros/latex/contrib/medstarbeamer +catalogue-date 2018-04-22 08:09:44 +0200 +catalogue-license lppl1.3 +catalogue-topics presentation statistics + +name meetingmins +category Package +revision 31878 +shortdesc Format written minutes of meetings +relocated 1 +longdesc The class allows formatting of meeting minutes using \section +longdesc commands (which provide hierarchical structure). An agenda can +longdesc also be produced for distribution prior to the meeting, with +longdesc user-selected portions suppressed from printing. +containersize 2484 +containerchecksum 315897eff4ae50257057f8191ff92535b669fb174a2eca5c368a9a4b9f75cd71ad745f3feff1c6863705b3e9e4a954afa449cf56f86bf60c389250842aef5215 +doccontainersize 599084 +doccontainerchecksum 6afbfe02ee39e26e2f38ce462affa66e7e0acf5f26534ff9ace0b26b4e63514a3b1702e34bf478988a50c55fbb09b7d9421a8e79da6a6c46de88c6a958afa874 +docfiles size=199 + RELOC/doc/latex/meetingmins/README details="Readme" + RELOC/doc/latex/meetingmins/meetingmins.pdf details="Package documentation" + RELOC/doc/latex/meetingmins/samples/agenda.pdf + RELOC/doc/latex/meetingmins/samples/agenda.tex + RELOC/doc/latex/meetingmins/samples/chair.pdf + RELOC/doc/latex/meetingmins/samples/chair.tex + RELOC/doc/latex/meetingmins/samples/department.min + RELOC/doc/latex/meetingmins/samples/minutes.pdf + RELOC/doc/latex/meetingmins/samples/minutes.tex +srccontainersize 6908 +srccontainerchecksum 3f4a274000889e9160943ca0b7a7af30bdbf7aa9a33c8cccd0e938ad3ab94ad8f24a6685bc99596a1046a22d32855061a7c511046dd6c306353c4f5979e1f230 +srcfiles size=8 + RELOC/source/latex/meetingmins/meetingmins.dtx + RELOC/source/latex/meetingmins/meetingmins.ins +runfiles size=2 + RELOC/tex/latex/meetingmins/meetingmins.cls +catalogue-ctan /macros/latex/contrib/meetingmins +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics meeting-admin +catalogue-version 1.6 + +name memdesign +category Package +revision 48664 +shortdesc Notes on book design +relocated 1 +longdesc "A Few Notes on Book Design" provides an introduction to the +longdesc business of book design. It is an extended version of what used +longdesc to be the first part of the memoir users' manual. Please note +longdesc that the compiled copy, supplied in the package, uses +longdesc commercial fonts; the README file contains instructions on how +longdesc to compile the document without these fonts. +containersize 564 +containerchecksum 42949db3193952d1ae75855110ed40a1ff467b3cef0bb6d43195bac960a0873a47fad002695ad1376da2d4a1df5e1e05f89289102780d27b173da2e852b53cdc +doccontainersize 1785516 +doccontainerchecksum f4dfa00676379ce33857cc0fdeae867d1ae5c99e6767884a029285a94d2197926a68cd85c574bd876a2eeb85f0453520ef5efcb7f2a71a77c725f8066e7adf8d +docfiles size=507 + RELOC/doc/fonts/memdesign/README details="Readme" + RELOC/doc/fonts/memdesign/memdesign.pdf details="The document itself" + RELOC/doc/fonts/memdesign/memdesign.tex + RELOC/doc/fonts/memdesign/memetc.bib +catalogue-ctan /info/memdesign +catalogue-date 2018-09-16 05:33:39 +0200 +catalogue-license lppl1.3 +catalogue-topics review-document + +name memexsupp +category Package +revision 15878 +shortdesc Experimental memoir support +relocated 1 +longdesc A package of code proposed as supporting material for memoir. +longdesc The package is intended as a test bed for such code, which may +longdesc in the fullness of time be adopted into the main memoir +longdesc release. +containersize 1836 +containerchecksum 74931ebb1a146edadcde19d8c404ff8df750c4eb8f2f59fa83e6da9f8dc6567005d51f58e4b7bd2cdfa6b960adb072e9fee7b1842142076df88887c3c2b41051 +doccontainersize 121636 +doccontainerchecksum 645bb189fca1c74e249745ad42c470dcd5d9fa4412a6dfefbcb6377555047bdbcf005f1c07977762e0026e8a4f8ea49e6965a7d50b0d5d5e7efd0228ac2141a0 +docfiles size=35 + RELOC/doc/latex/memexsupp/README details="Readme" + RELOC/doc/latex/memexsupp/memexsupp.pdf details="Package documentation" + RELOC/doc/latex/memexsupp/memexsupp.tex +runfiles size=1 + RELOC/tex/latex/memexsupp/memexsupp.sty +catalogue-ctan /macros/latex/contrib/memexsupp +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics test-dist +catalogue-version 0.1 + +name memoir +category Package +revision 49394 +shortdesc Typeset fiction, non-fiction and mathematical books +relocated 1 +longdesc The memoir class is for typesetting poetry, fiction, +longdesc non-fiction, and mathematical works. Permissible document +longdesc 'base' font sizes range from 9 to 60pt. There is a range of +longdesc page-styles and well over a dozen chapter-styles to choose +longdesc from, as well as methods for specifying your own layouts and +longdesc designs. The class also provides the functionality of over +longdesc thirty of the more popular packages, thus simplifying document +longdesc sources. Users who wish to use the hyperref package, in a +longdesc document written with the memoir class, should also use the +longdesc memhfixc package (part of this bundle). Note, however, that any +longdesc current version of hyperref actually loads the package +longdesc automatically if it detects that it is running under memoir. +containersize 74516 +containerchecksum b20d8d7f3e4a65d033f97ccace40b4e0f7ecb6ee143b6f0ecc7de46de7610305d04247ea4bba6b415940ca75ffe468793233df5965a5e366668fcb0a4ea2fbf6 +doccontainersize 3110544 +doccontainerchecksum 16ff13049125d9e3e9d1a735ed2a0c89c169769b543048b9443b5d03192897296727e878a9612a63683eb71fca9535eb0f737be6a2e764e9413c9b723d783b5b +docfiles size=1136 + RELOC/doc/latex/memoir/Makeidxglo + RELOC/doc/latex/memoir/README details="Readme" + RELOC/doc/latex/memoir/anvil2.mps + RELOC/doc/latex/memoir/memfonts.sty + RELOC/doc/latex/memoir/memlays.sty + RELOC/doc/latex/memoir/memman.gst + RELOC/doc/latex/memoir/memman.ist + RELOC/doc/latex/memoir/memman.pdf details="Basic user manual" + RELOC/doc/latex/memoir/memman.tex + RELOC/doc/latex/memoir/memnoidxnum.tex + RELOC/doc/latex/memoir/memsty.sty + RELOC/doc/latex/memoir/setpage-example.pdf + RELOC/doc/latex/memoir/titlepages.sty + RELOC/doc/latex/memoir/trims-example.tex +srccontainersize 238224 +srccontainerchecksum e1586285097ba0adda9cc667afdc4ca143b967b5756ec3b661b2def79a3b13efc418a6204e3400b5bc799051ed62dca940c683de5d64563cc5839dc171b794a3 +srcfiles size=316 + RELOC/source/latex/memoir/memoir.dtx + RELOC/source/latex/memoir/memoir.ins + RELOC/source/latex/memoir/mempatch.dtx + RELOC/source/latex/memoir/mempatch.ins +runfiles size=119 + RELOC/makeindex/memoir/basic.gst + RELOC/tex/latex/memoir/mem10.clo + RELOC/tex/latex/memoir/mem11.clo + RELOC/tex/latex/memoir/mem12.clo + RELOC/tex/latex/memoir/mem14.clo + RELOC/tex/latex/memoir/mem17.clo + RELOC/tex/latex/memoir/mem20.clo + RELOC/tex/latex/memoir/mem25.clo + RELOC/tex/latex/memoir/mem30.clo + RELOC/tex/latex/memoir/mem36.clo + RELOC/tex/latex/memoir/mem48.clo + RELOC/tex/latex/memoir/mem60.clo + RELOC/tex/latex/memoir/mem9.clo + RELOC/tex/latex/memoir/memhfixc.sty + RELOC/tex/latex/memoir/memoir.cls +catalogue-also memdesign +catalogue-ctan /macros/latex/contrib/memoir +catalogue-date 2018-12-12 17:35:45 +0100 +catalogue-license lppl1.3 +catalogue-topics book-pub class +catalogue-version 3.7h + +name memory +category Package +revision 30452 +shortdesc Containers for data in LaTeX +relocated 1 +longdesc The package allows the user to declare single object or array +longdesc containers. +containersize 1168 +containerchecksum 9b760613dc36895edf50a592aa5ef994a30117cc9da6ea256835cd3ad9ed62ab8d8c39de95bda5058d1bd3f06451d1c79d78d52ff6d068c28d75410c5ad98516 +doccontainersize 29908 +doccontainerchecksum 479428f1af468d909fa291388cde319aff1ac9ef6d7c0168577c5f6978c0fa7e6b23f8f81dedaf746b7e394c92d51d5799bd17aa3488207be494621b77220cd3 +docfiles size=9 + RELOC/doc/latex/memory/README details="Readme" + RELOC/doc/latex/memory/memory.pdf details="Package documentation" +srccontainersize 2768 +srccontainerchecksum 731d4e4c874a58c2c1ddf6a394dd9eb67e557608b0d2a736cb500e4e299be2a726d4312d2eb4a05008684cf5fe14d458a7c020bd31fe134f8208d9fb618b312b +srcfiles size=3 + RELOC/source/latex/memory/memory.dtx + RELOC/source/latex/memory/memory.ins +runfiles size=1 + RELOC/tex/latex/memory/memory.sty +catalogue-ctan /macros/latex/contrib/memory +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 1.2 + +name memorygraphs +category Package +revision 49631 +shortdesc TikZ styles to typeset graphs of program memory +relocated 1 +longdesc This package defines some TikZ styles and adds anchors to +longdesc existing styles that ease the declaration of "memory graphs". +longdesc It is intended for graphs that represent the memory of a +longdesc computer program during its execution. +containersize 2048 +containerchecksum e35c7e727cf5d6e496c9c0e52252b5169670006b9bc9e96b1c95584085d57a3f25cb9464bb55fc4138640ebb6fdb079908cc49c0f1bfff130a509b6866d3eec1 +doccontainersize 191084 +doccontainerchecksum 1c04e25d1c16348e594191c17f9f104e9388bb608b10783927ab3412f2f316138d6b41242046f12853b37560873bb61e0a0ec3f884cf8fc26ae2ba5809b094c0 +docfiles size=50 + RELOC/doc/latex/memorygraphs/README.md details="Readme" + RELOC/doc/latex/memorygraphs/memorygraphs.pdf details="Package documentation" + RELOC/doc/latex/memorygraphs/memorygraphs.tex +runfiles size=2 + RELOC/tex/latex/memorygraphs/memorygraphs.sty +catalogue-contact-bugs https://gitlab.science.ru.nl/cstaps/memorygraphs/issues +catalogue-contact-development https://gitlab.science.ru.nl/cstaps/memorygraphs +catalogue-contact-home https://gitlab.science.ru.nl/cstaps/memorygraphs +catalogue-contact-repository https://gitlab.science.ru.nl/cstaps/memorygraphs +catalogue-contact-support https://gitlab.science.ru.nl/cstaps/memorygraphs/issues +catalogue-ctan /graphics/pgf/contrib/memorygraphs +catalogue-date 2019-01-07 10:23:44 +0100 +catalogue-license lppl1.3 +catalogue-topics graphics pgf-tikz +catalogue-version 0.1.1 + +name mendex-doc +category Package +revision 50268 +shortdesc Documentation for Mendex index processor +relocated 1 +longdesc This package provides documentation for Mendex (Japanese index +longdesc processor). The source code of the program is not included, it +longdesc can be obtained from TeX Live subversion repository. +containersize 492 +containerchecksum 2a4b24f7340194fa80160681fb038369e45c1e6783765860d3f57be944c4b79533febc82cdbc65f89b9ad99308cb4ecae4baad37205d0f375f244e5211a87df6 +doccontainersize 184476 +doccontainerchecksum e8c8e773169a262e9f19bb9ab704c05968440aa0ea5928e329c79851e9e23fec5f78a108188fd2512becf7d78ea1e9f388ffa80b0795bbb4ff8cb81893b4e869 +docfiles size=51 + RELOC/doc/support/mendex-doc/LICENSE + RELOC/doc/support/mendex-doc/README.md details="Readme" + RELOC/doc/support/mendex-doc/mendex.pdf details="Package documentation" language="ja" + RELOC/doc/support/mendex-doc/mendex.tex +srccontainersize 644 +srccontainerchecksum b526ed09c503619dc128721e9ae439b89b5b143ae18d388fa387cb7407533e47f0bcaecb6967380f3ebc067f9e310f596f0302fca5438212734730d3ca7931cf +srcfiles size=1 + RELOC/source/latex/mendex-doc/Makefile +catalogue-contact-repository https://github.com/texjporg/mendex-doc +catalogue-ctan /info/mendex-doc +catalogue-date 2019-03-05 05:43:38 +0100 +catalogue-license bsd3 +catalogue-topics index documentation + +name mensa-tex +category Package +revision 45997 +shortdesc Typeset simple school cafeteria menus +relocated 1 +longdesc This package provides a flexible LaTeX2e class for typesetting +longdesc school cafeteria menus consisting of two lunches (with +longdesc dessert), and dinner. It supports two different layouts: The +longdesc first layout is optimized for printing the menu on A4 paper. +longdesc The second layout is optimized for smartphone screens and uses +longdesc one (A6 sized) page per day. Supported localizations are +longdesc English (GB/US) and German. A way of defining additional +longdesc localizations is described in the documentation. The package +longdesc requires array, colortbl, datetime2, datetime2-calc, geometry, +longdesc graphicx, lmodern, textcomp, and xcolor. +containersize 3996 +containerchecksum c453044a7f744cf89605996d0b913c56208f10c46e26e0ba37a85bb1d63ed08426a18d87cc7841aabcf44231c71dc33a5c858de482c6d48759893066168d5fc8 +doccontainersize 168228 +doccontainerchecksum 8297e3f69517f3bace8f509dfb42616e223073f5d428c2269d9dbeeb53579f105fb65755b22ab552e5635f1267e437c4aaeda284a8325b2d95717cf7adc2de01 +docfiles size=70 + RELOC/doc/latex/mensa-tex/README.md details="Readme" + RELOC/doc/latex/mensa-tex/doc/cafe-logo.png + RELOC/doc/latex/mensa-tex/doc/mensa-tex-doc.pdf details="Package documentation" + RELOC/doc/latex/mensa-tex/doc/mensa-tex-doc.tex + RELOC/doc/latex/mensa-tex/doc/mensa-tex-example.pdf + RELOC/doc/latex/mensa-tex/doc/mensa-tex-example.tex +runfiles size=4 + RELOC/tex/latex/mensa-tex/mensa-tex.cls +catalogue-contact-bugs https://github.com/sfr682k/mensa-tex/issues +catalogue-contact-repository https://github.com/sfr682k/mensa-tex +catalogue-ctan /macros/latex/contrib/mensa-tex +catalogue-date 2017-12-05 22:30:21 +0100 +catalogue-license lppl1.3c +catalogue-topics class cooking + +name mentis +category Package +revision 15878 +shortdesc A basis for books to be published by Mentis publishers +relocated 1 +longdesc This LaTeX class loads scrbook and provides changes necessary +longdesc for publishing at Mentis publishers in Paderborn, Germany. It +longdesc is not an official Mentis class, merely one developed by an +longdesc author in close co-operation with Mentis. +containersize 4180 +containerchecksum ee03fae28adbf147945a88548e8223bfe8c8ce220a61726bc6738f34cc90ec776aa468a1cf7fc862d1f7f091cf87964cf665839922819130f3575d56301a5d26 +doccontainersize 137680 +doccontainerchecksum 2e869d1368b807a70f3de5550d2c79f229dbeb8d888a927005fcc43c70644da0ccd36eb2464fa6437c9947c78d59e77c4013824b1e8d5a4bb517b80f1cfb5a8e +docfiles size=40 + RELOC/doc/latex/mentis/README details="Readme" + RELOC/doc/latex/mentis/mentis.pdf details="Package documentation" +srccontainersize 16980 +srccontainerchecksum 10858cb9cb2db0f7db31d371e42436ca001ef20fede5f6b34dca61fa48248383e32547576a2dd3a4a98acddfcaf9e1d3fec89183c48ae76d5b3b677fabda7549 +srcfiles size=14 + RELOC/source/latex/mentis/mentis.dtx + RELOC/source/latex/mentis/mentis.ins +runfiles size=4 + RELOC/tex/latex/mentis/mentis.cls +catalogue-ctan /macros/latex/contrib/mentis +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics class book-pub publisher +catalogue-version 1.5 + +name menu +category Package +revision 15878 +shortdesc Typesetting menus +relocated 1 +longdesc The package defines command \menu which assists typesetting of +longdesc a path through a program's menu. +containersize 2132 +containerchecksum 2b2560a1df5091d19ff37bcbac1465fbfc54a848e4d19782602d656bf42abe47bd2bb1946f87a127c70725cf508ff9712337f3a8719d1fc0bcd4dab4473c7bc4 +doccontainersize 115344 +doccontainerchecksum ce8ddeed4e1bd859865f548d8ffc6978a620d9003f908d360e656085f6010a0f179218cc8b2bda4f754685369b53ad59245fef8d8f8a766b241f092162bb76b5 +docfiles size=34 + RELOC/doc/latex/menu/README details="Readme" + RELOC/doc/latex/menu/menu.pdf details="Package documentation" +srccontainersize 5648 +srccontainerchecksum 6c96cb64584802af2248bf43ccb7cc5215d8a2d2c13f1d6cf8567934938979095bbd51760bad7892a6d894a9651304dc9f5e4ed038f68ba0af087567de0777ad +srcfiles size=6 + RELOC/source/latex/menu/menu.dtx + RELOC/source/latex/menu/menu.ins +runfiles size=2 + RELOC/tex/latex/menu/menu.sty +catalogue-ctan /macros/latex/contrib/menu +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics doc-supp +catalogue-version 0.994 + +name menukeys +category Package +revision 41823 +shortdesc Format menu sequences, paths and keystrokes from lists +relocated 1 +longdesc This package is designed to format menu sequences, paths and +longdesc keyboard shortcuts automatically. There are several predefined +longdesc styles and one can define his own styles in a flexible way. +containersize 5604 +containerchecksum 690a07e343a3358179b271fb51b33f6b9dd952fead758405bdbdea9afc8d410d1bc72a15557d90d0699f26dcf7e51a6df3aec1ddb7ca752f5088de46dd5b7711 +doccontainersize 562936 +doccontainerchecksum 4b962d91d637a69f7443fb6ac4a94fe63901a7fe7a2d880eed320314ac6114c341add9e589547649331f123d9bd3af7830c19f83389581a936c67fd0dfc4424f +docfiles size=140 + RELOC/doc/latex/menukeys/README details="Readme" + RELOC/doc/latex/menukeys/menukeys.pdf details="Package documentation" +srccontainersize 17300 +srccontainerchecksum 35b57df92bf1eeb8ecec107c913ee8be0c84d27c2f98e7f2c7ee42b182905d3da1ac0e0969056d4d5db849c47d6953a8d2c6555259dc37fbcc432df4dd0e3808 +srcfiles size=20 + RELOC/source/latex/menukeys/menukeys.dtx + RELOC/source/latex/menukeys/menukeys.ins +runfiles size=8 + RELOC/tex/latex/menukeys/menukeys.sty +catalogue-contact-repository http://github.com/tweh/menukeys +catalogue-ctan /macros/latex/contrib/menukeys +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics doc-supp +catalogue-version 1.5 + +name merriweather +category Package +revision 34315 +shortdesc Merriweather and MerriweatherSans fonts, with LaTeX support +relocated 1 +longdesc Merriweather features a very large x height, slightly condensed +longdesc letterforms, a mild diagonal stress, sturdy serifs and open +longdesc forms. The Sans family closely harmonizes with the weights and +longdesc styles of the serif family. There are four weights and italics +longdesc for each. +execute addMap merriweather.map +containersize 2268480 +containerchecksum 07494687dbb662efb1eccc83c768512ae6aa093a21cd3878cfe5d79d9d20db22b3ffda1b028148f254727f7af58fe29675d737eab52eae6ca612459a1dd75f07 +doccontainersize 112496 +doccontainerchecksum eed4985d86a33794ff775fa2f8c1bf998f91702a9abc97bc38c622678bcdeabcbeb38054c7530bc7cc95952b10e9ff1780fb057c9b5755aa7670e2596b5b4309 +docfiles size=31 + RELOC/doc/fonts/merriweather/OFL.txt + RELOC/doc/fonts/merriweather/README details="Readme" + RELOC/doc/fonts/merriweather/merriweather-samples.pdf details="Font samples" + RELOC/doc/fonts/merriweather/merriweather-samples.tex +runfiles size=1091 + RELOC/fonts/enc/dvips/merriweather/mwth_5q2vgd.enc + RELOC/fonts/enc/dvips/merriweather/mwth_cn5sfl.enc + RELOC/fonts/enc/dvips/merriweather/mwth_fuknsh.enc + RELOC/fonts/enc/dvips/merriweather/mwth_jnnjab.enc + RELOC/fonts/enc/dvips/merriweather/mwth_libw2m.enc + RELOC/fonts/enc/dvips/merriweather/mwth_lnkfbl.enc + RELOC/fonts/enc/dvips/merriweather/mwth_oaf34p.enc + RELOC/fonts/enc/dvips/merriweather/mwth_xz5wux.enc + RELOC/fonts/enc/dvips/merriweather/mwth_ywgpba.enc + RELOC/fonts/enc/dvips/merriweather/mwth_z4e4wk.enc + RELOC/fonts/map/dvips/merriweather/merriweather.map + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Bold-osf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Bold-osf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Bold-osf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Bold-osf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Italic-osf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Italic-osf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Italic-osf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Italic-osf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Light-osf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Light-osf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Light-osf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Light-osf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Light-osf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-LightIt-osf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-LightIt-osf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-LightIt-osf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-LightIt-osf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-LightIt-osf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-LightIt-osf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Regular-osf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Regular-osf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Regular-osf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-Regular-osf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-UltraBdIt-osf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-UltraBdIt-osf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-UltraBdIt-osf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-UltraBdIt-osf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-UltraBdIt-osf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-UltraBdIt-osf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-UltraBold-osf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-UltraBold-osf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-UltraBold-osf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-UltraBold-osf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-UltraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/Merriweather-UltraBold-osf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Bold-tlf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Italic-tlf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Light-tlf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Light-tlf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Light-tlf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Light-tlf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Regular-tlf-t1.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/sorkin/merriweather/MerriweatherSans-Regular-tlf-ts1.tfm + RELOC/fonts/truetype/sorkin/merriweather/Merriweather-Bold.ttf + RELOC/fonts/truetype/sorkin/merriweather/Merriweather-BoldIt.ttf + RELOC/fonts/truetype/sorkin/merriweather/Merriweather-Italic.ttf + RELOC/fonts/truetype/sorkin/merriweather/Merriweather-Light.ttf + RELOC/fonts/truetype/sorkin/merriweather/Merriweather-LightIt.ttf + RELOC/fonts/truetype/sorkin/merriweather/Merriweather-Regular.ttf + RELOC/fonts/truetype/sorkin/merriweather/Merriweather-UltraBdIt.ttf + RELOC/fonts/truetype/sorkin/merriweather/Merriweather-UltraBold.ttf + RELOC/fonts/truetype/sorkin/merriweather/MerriweatherSans-Bold.ttf + RELOC/fonts/truetype/sorkin/merriweather/MerriweatherSans-BoldItalic.ttf + RELOC/fonts/truetype/sorkin/merriweather/MerriweatherSans-ExBoldIt.ttf + RELOC/fonts/truetype/sorkin/merriweather/MerriweatherSans-ExtraBold.ttf + RELOC/fonts/truetype/sorkin/merriweather/MerriweatherSans-Italic.ttf + RELOC/fonts/truetype/sorkin/merriweather/MerriweatherSans-Light.ttf + RELOC/fonts/truetype/sorkin/merriweather/MerriweatherSans-LightItalic.ttf + RELOC/fonts/truetype/sorkin/merriweather/MerriweatherSans-Regular.ttf + RELOC/fonts/type1/sorkin/merriweather/Merriweather-Bold.pfb + RELOC/fonts/type1/sorkin/merriweather/Merriweather-BoldIt.pfb + RELOC/fonts/type1/sorkin/merriweather/Merriweather-Italic.pfb + RELOC/fonts/type1/sorkin/merriweather/Merriweather-Light.pfb + RELOC/fonts/type1/sorkin/merriweather/Merriweather-LightIt.pfb + RELOC/fonts/type1/sorkin/merriweather/Merriweather-Regular.pfb + RELOC/fonts/type1/sorkin/merriweather/Merriweather-UltraBdIt.pfb + RELOC/fonts/type1/sorkin/merriweather/Merriweather-UltraBold.pfb + RELOC/fonts/type1/sorkin/merriweather/MerriweatherSans-Bold.pfb + RELOC/fonts/type1/sorkin/merriweather/MerriweatherSans-BoldItalic.pfb + RELOC/fonts/type1/sorkin/merriweather/MerriweatherSans-ExBoldIt.pfb + RELOC/fonts/type1/sorkin/merriweather/MerriweatherSans-ExtraBold.pfb + RELOC/fonts/type1/sorkin/merriweather/MerriweatherSans-Italic.pfb + RELOC/fonts/type1/sorkin/merriweather/MerriweatherSans-Light.pfb + RELOC/fonts/type1/sorkin/merriweather/MerriweatherSans-LightItalic.pfb + RELOC/fonts/type1/sorkin/merriweather/MerriweatherSans-Regular.pfb + RELOC/fonts/vf/sorkin/merriweather/Merriweather-Bold-osf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriweather-Bold-osf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriweather-BoldItalic-osf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriweather-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriweather-Italic-osf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriweather-Italic-osf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriweather-Light-osf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriweather-Light-osf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriweather-LightIt-osf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriweather-LightIt-osf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriweather-Regular-osf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriweather-Regular-osf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriweather-UltraBdIt-osf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriweather-UltraBdIt-osf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriweather-UltraBold-osf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/Merriweather-UltraBold-osf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-Bold-tlf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-Bold-tlf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-Italic-tlf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-Italic-tlf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-Light-tlf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-Light-tlf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-LightItalic-tlf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-Regular-tlf-t1.vf + RELOC/fonts/vf/sorkin/merriweather/MerriweatherSans-Regular-tlf-ts1.vf + RELOC/tex/latex/merriweather/LY1Merriweather-OsF.fd + RELOC/tex/latex/merriweather/LY1MerriweatherSans-TLF.fd + RELOC/tex/latex/merriweather/OT1Merriweather-OsF.fd + RELOC/tex/latex/merriweather/OT1MerriweatherSans-TLF.fd + RELOC/tex/latex/merriweather/T1Merriweather-OsF.fd + RELOC/tex/latex/merriweather/T1MerriweatherSans-TLF.fd + RELOC/tex/latex/merriweather/TS1Merriweather-OsF.fd + RELOC/tex/latex/merriweather/TS1MerriweatherSans-TLF.fd + RELOC/tex/latex/merriweather/merriweather.sty +catalogue-contact-home http://www.google.com/webfonts +catalogue-ctan /fonts/merriweather +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license ofl +catalogue-topics font font-serif font-sans font-ttf font-type1 + +name metafont +category Package +revision 50602 +shortdesc A system for specifying fonts +longdesc The program takes a semi-algorithmic specification of a font, +longdesc and produces a bitmap font (whose properties are defined by a +longdesc set of parameters of the target device), and a set metrics for +longdesc use by TeX. The bitmap output may be converted into a format +longdesc directly usable by a device driver, etc., by the tools provided +longdesc in the parallel mfware distribution. (Third parties have +longdesc developed tools to convert the bitmap output to outline fonts.) +longdesc The distribution includes the source of Knuth's Metafont book; +longdesc this source is there to read, as an example of writing TeX -- +longdesc it should not be processed without Knuth's direct permission. +depend kpathsea +depend metafont.ARCH +execute AddFormat name=mf engine=mf-nowin options="-translate-file=cp227.tcx mf.ini" +containersize 33572 +containerchecksum 7a1a5d0090a538bda4abe8f994a6891f46a8c276f45f26b0be0901102fdb55103a86848a153d3b0a980d08321471cea3f4249595aa4dc6398875d1d14cef8e96 +doccontainersize 52792 +doccontainerchecksum 119568cd01c06d8772495ff725f3056d648b844b58591216e8f35caf0f80b5d5908ef796c725eb7d917b04ca734fbff1ec0a4ad1e554ecb6a5d243a829644beb +docfiles size=36 + texmf-dist/doc/man/man1/inimf.1 + texmf-dist/doc/man/man1/inimf.man1.pdf + texmf-dist/doc/man/man1/mf-nowin.1 + texmf-dist/doc/man/man1/mf-nowin.man1.pdf + texmf-dist/doc/man/man1/mf.1 + texmf-dist/doc/man/man1/mf.man1.pdf +runfiles size=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-alias mf +catalogue-also metapost +catalogue-contact-bugs http://lists.tug.org/tex-k +catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-contact-support http://lists.tug.org/tex-k +catalogue-ctan /systems/knuth/dist/mf +catalogue-date 2018-12-30 20:38:59 +0100 +catalogue-license knuth +catalogue-topics font-devel font-proc +catalogue-version 2.7182818 + +name metafont-beginners +category Package +revision 29803 +shortdesc An introductory tutorial for Metafont +relocated 1 +longdesc An old introduction to the use of Metafont, that has stood the +longdesc test of time. It focuses on using the program, rather than +longdesc designing fonts, but does offer advice about understanding +longdesc errors in other people's fonts. +containersize 496 +containerchecksum 39352d8b181f3010fd4dbfbfad18a8cd3f68f0c38bdb89996ea4c77a649acbbd15e9a7fa318193db08733b3722a07a8ebfb17a6430bcc9af8101dc444608d75b +doccontainersize 178916 +doccontainerchecksum 4fb7148b0668845447fd38411df0288972312a56897b1d5bce69a7e57ae632aacd12c273a911045204705a5534ac1d1c290af08a7057bd62184a59eb7146feb6 +docfiles size=60 + RELOC/doc/fonts/metafont-beginners/metafont-for-beginners.pdf details="The introductory document itself:" language="en" + RELOC/doc/fonts/metafont-beginners/metafont-for-beginners.tex +catalogue-ctan /info/metafont/beginners +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics mf-doc + +name metafont.aarch64-linux +category Package +revision 50700 +shortdesc aarch64-linux files of metafont +containersize 166740 +containerchecksum f1a5d9a10696053006fa15fef498569dad75b59f43fd31bb3ff577ea98190ab8ec971b4a8a5283771e05f163e6af5b495ef6d74e0f0060c535440d766a1cbcdd +binfiles arch=aarch64-linux size=194 + bin/aarch64-linux/inimf + bin/aarch64-linux/mf + bin/aarch64-linux/mf-nowin + +name metafont.amd64-freebsd +category Package +revision 50700 +shortdesc amd64-freebsd files of metafont +containersize 255676 +containerchecksum eed670976e5e22c13863dd5c59701f5cd088052028c97e839c36dcecee4b30ebad22e7032e388a9fdbac19199a887cc492b4604e622460d3e82f37cac728eeca +binfiles arch=amd64-freebsd size=256 + bin/amd64-freebsd/inimf + bin/amd64-freebsd/mf + bin/amd64-freebsd/mf-nowin + +name metafont.amd64-netbsd +category Package +revision 50693 +shortdesc amd64-netbsd files of metafont +containersize 194948 +containerchecksum e488a61ab9e9c7015c4a8b5138376e06341930df8a19cb46d0cfebdfbe8dab014d187216e4fc4594e23668ea24d004bb2741d8371104d323e6861b447a6f0ed9 +binfiles arch=amd64-netbsd size=224 + bin/amd64-netbsd/inimf + bin/amd64-netbsd/mf + bin/amd64-netbsd/mf-nowin + +name metafont.armhf-linux +category Package +revision 50790 +shortdesc armhf-linux files of metafont +containersize 146028 +containerchecksum 87193614e5c2977a6f5154f2adcc595868bec90cfdfd94864f56982ed3d3852200f48871690b883ec46e3042e8b9835f06e2cba25200aaf437defa0fc5ce14dd +binfiles arch=armhf-linux size=155 + bin/armhf-linux/inimf + bin/armhf-linux/mf + bin/armhf-linux/mf-nowin + +name metafont.i386-cygwin +category Package +revision 50855 +shortdesc i386-cygwin files of metafont +containersize 135648 +containerchecksum 0810cad26f355a5f38f55855891e713383d53a2ccd33d8d4c45d7ea243c9006a2d09b2e7ea0a1aa1165ef2f788b300c990f6e243c0f32d1daa2c81113f1ce1e7 +binfiles arch=i386-cygwin size=138 + bin/i386-cygwin/inimf + bin/i386-cygwin/mf-nowin.exe + bin/i386-cygwin/mf.exe + +name metafont.i386-freebsd +category Package +revision 50700 +shortdesc i386-freebsd files of metafont +containersize 183604 +containerchecksum c94d99e29bee9259211283469664ec2ae361d7301e96089d53bc26db5346b508841f6922ab1dc37fa5ca43f5737bd2c1cfdb7b5f9f4925d3b3e0a27500c6c378 +binfiles arch=i386-freebsd size=215 + bin/i386-freebsd/inimf + bin/i386-freebsd/mf + bin/i386-freebsd/mf-nowin + +name metafont.i386-linux +category Package +revision 50700 +shortdesc i386-linux files of metafont +containersize 176584 +containerchecksum 272f9e6fec449284dcc607c3338b7d484b7a05d3f73b361923ebf43843ec43adc29e94ef54a08d064e96f4128eaef198cfbc19d998a9b67caa26099b5c85b4e5 +binfiles arch=i386-linux size=186 + bin/i386-linux/inimf + bin/i386-linux/mf + bin/i386-linux/mf-nowin + +name metafont.i386-netbsd +category Package +revision 50693 +shortdesc i386-netbsd files of metafont +containersize 148252 +containerchecksum fa3e6b0f05c294cb8c8a4a61737bf4c01186168d25040ecf034414d60f18803b9ce71aa809e46b6d8d1acaa7fa9ba3dc32941dee613073e09d035140f3869337 +binfiles arch=i386-netbsd size=202 + bin/i386-netbsd/inimf + bin/i386-netbsd/mf + bin/i386-netbsd/mf-nowin + +name metafont.i386-solaris +category Package +revision 50700 +shortdesc i386-solaris files of metafont +containersize 177252 +containerchecksum 50b95c16d49730e803778a43786c69d863ae99ab4f575b766b53ce1b3481ccfc9c19e7f9c3055c950dbba73cfe191065d7b18ed69b6a5b2847f6c0057ba2b2ad +binfiles arch=i386-solaris size=170 + bin/i386-solaris/inimf + bin/i386-solaris/mf + bin/i386-solaris/mf-nowin + +name metafont.win32 +category Package +revision 50540 +shortdesc win32 files of metafont +containersize 142632 +containerchecksum b0f0e9781cc479a8dbb5f114bc1d6bbcb79f9a3902203bf1a000249528ba1450f1c3198182dce33a82d3b97ff1d99fa171d8e07371fa75dccc8901544b2e3926 +binfiles arch=win32 size=138 + bin/win32/inimf.exe + bin/win32/mf-nowin.exe + bin/win32/mf.exe + +name metafont.x86_64-cygwin +category Package +revision 50889 +shortdesc x86_64-cygwin files of metafont +containersize 141980 +containerchecksum c883a052bbb8503d90e0afcc8d3b97018005c0edb2df527707b590bb626daf16fdd919c6a229cc98329da09ace6e3eac4baafe2b0d334cfa771380ec0c5f1cd3 +binfiles arch=x86_64-cygwin size=138 + bin/x86_64-cygwin/inimf + bin/x86_64-cygwin/mf-nowin.exe + bin/x86_64-cygwin/mf.exe + +name metafont.x86_64-darwin +category Package +revision 50700 +shortdesc x86_64-darwin files of metafont +containersize 241328 +containerchecksum cf33a8994cc684c04da21b0d7227aebe1d5c7aede9e50027ed7225caa39d387016e3d278fd2a6bd51791749b3b800764f2562c46bc713c539989a58a3d3e6310 +binfiles arch=x86_64-darwin size=240 + bin/x86_64-darwin/inimf + bin/x86_64-darwin/mf + bin/x86_64-darwin/mf-nowin + +name metafont.x86_64-darwinlegacy +category Package +revision 50700 +shortdesc x86_64-darwinlegacy files of metafont +containersize 182664 +containerchecksum 90bbc744859971bc60ddea71a286df4a107dd0c88cb96a9bbdc6270167ced5e13cf597b1602e4c337f2f3ae746ca05274db03322c481c66202341c14da3f2f93 +binfiles arch=x86_64-darwinlegacy size=166 + bin/x86_64-darwinlegacy/inimf + bin/x86_64-darwinlegacy/mf + bin/x86_64-darwinlegacy/mf-nowin + +name metafont.x86_64-linux +category Package +revision 50700 +shortdesc x86_64-linux files of metafont +containersize 193584 +containerchecksum 2d70c884c9aeaec8461a631f2cb0d1eaf140ca2f38db01c69e7b9f005d55f12be5fd58e87ba6f96de2fd78a107c73aa8b218fff1dae8be6b9ce4223d8b8e30ad +binfiles arch=x86_64-linux size=170 + bin/x86_64-linux/inimf + bin/x86_64-linux/mf + bin/x86_64-linux/mf-nowin + +name metafont.x86_64-linuxmusl +category Package +revision 50700 +shortdesc x86_64-linuxmusl files of metafont +containersize 208064 +containerchecksum 2331f18a9d0244e22cd8dc582f0a77202aaa140957aa67b0d9b9a766754e0735b7920d6f149ae29a1e711d2db0864bb90522a04f38020e508655dd66961ca88c +binfiles arch=x86_64-linuxmusl size=205 + bin/x86_64-linuxmusl/inimf + bin/x86_64-linuxmusl/mf + bin/x86_64-linuxmusl/mf-nowin + +name metafont.x86_64-solaris +category Package +revision 50700 +shortdesc x86_64-solaris files of metafont +containersize 217880 +containerchecksum a9bd32282a3e93a313deadf3ee15b4766e336f036eea3a35b239392378ad755680ccfb938bd159bed93287a19b51beeef80dc25a08acc6a79fcdacab9eea4dce +binfiles arch=x86_64-solaris size=192 + bin/x86_64-solaris/inimf + bin/x86_64-solaris/mf + bin/x86_64-solaris/mf-nowin + +name metago +category Package +revision 15878 +shortdesc MetaPost output of Go positions +relocated 1 +longdesc The package allows you to draw Go game positions with MetaPost. +longdesc Two methods of usage are provided, either using the package +longdesc programmatically, or using the package via a script (which may +longdesc produce several images). +containersize 5048 +containerchecksum e7b3661d99ea50f7b20fe3af370e59e960fc0599409b5c11bfc9618c12c38e44b89e4e81d69ae7ba5e2565e46078ee52ed0bef46aa619408b386bb73926caeb7 +doccontainersize 27136 +doccontainerchecksum 8396725c0afc87c63d16256d5ab0d575a19f05d78ed245099a60785f0810a012e8c0026cf13d03781d09d7c0007bb9ed9b87072ed732ba706c893e5465461052 +docfiles size=24 + RELOC/doc/metapost/metago/README details="Readme" + RELOC/doc/metapost/metago/example-program.mp + RELOC/doc/metapost/metago/example-program.pdf + RELOC/doc/metapost/metago/example-script-1.pdf + RELOC/doc/metapost/metago/example-script-2.pdf + RELOC/doc/metapost/metago/example-script-3.pdf + RELOC/doc/metapost/metago/example-script-4.pdf + RELOC/doc/metapost/metago/example-script-5.pdf + RELOC/doc/metapost/metago/example-script-6.pdf + RELOC/doc/metapost/metago/example-script-7.pdf + RELOC/doc/metapost/metago/example-script-8.pdf + RELOC/doc/metapost/metago/example-script.mp + RELOC/doc/metapost/metago/script.go +runfiles size=5 + RELOC/metapost/metago/metago.mp +catalogue-also go igo +catalogue-ctan /graphics/metapost/contrib/macros/metago +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics mp-use games +catalogue-version 0.9 + +name metalogo +category Package +revision 18611 +shortdesc Extended TeX logo macros +relocated 1 +longdesc This package exposes spacing parameters for various TeX logos +longdesc to the end user, to optimise the logos for different fonts. +longdesc Written especially for XeLaTeX users. +containersize 2228 +containerchecksum 20d5a9b8454166535aa3aa80da7d2931937fc6a4d730c1ab70c856311c223d466e9fce2ed6e3b2fbf4b4fc75778d7d4c2649111df5f92dd58b6fc42b3ec72696 +doccontainersize 77852 +doccontainerchecksum 48318b396e4e227dc1b80e21474a296ba4dfd37e81b95f9669dd8c96ca7318abd8a1e21ceb95e0ca7832ed64a85ede985fae7e2e52b3aa742c64b86e54fc563c +docfiles size=26 + RELOC/doc/latex/metalogo/README details="Readme" + RELOC/doc/latex/metalogo/TeXoutline.pdf + RELOC/doc/latex/metalogo/eLaToutline.pdf + RELOC/doc/latex/metalogo/metalogo.pdf details="Package documentation" +srccontainersize 7148 +srccontainerchecksum bf240b77ef00d5351218674baf851b0eabcb22257fd6ce9dbd6b66afec5323a730df7b27d522f5130830ecf92af377edb3ec7906be206e760971dbe8f6266942 +srcfiles size=7 + RELOC/source/latex/metalogo/metalogo.dtx + RELOC/source/latex/metalogo/metalogo.ins +runfiles size=2 + RELOC/tex/latex/metalogo/metalogo.sty +catalogue-also metalogox +catalogue-ctan /macros/latex/contrib/metalogo +catalogue-date 2019-01-20 19:29:16 +0100 +catalogue-license lppl +catalogue-topics logo +catalogue-version 0.12 + +name metalogox +category Package +revision 49774 +shortdesc Adjust TeX logos, with font detection +relocated 1 +longdesc This package extends the metalogo package to automatically +longdesc adjust the appearance of the logos TeX, LaTeX, LaTeX2e, +longdesc XeLaTeX, and LuaLaTeX, depending on the font detected or the +longdesc option given to metalogox. Most of the serif and sans fonts +longdesc listed at The LaTeX Font Catalogue are supported. The package +longdesc depends on metalogo, xparse, and etoolbox. +containersize 4232 +containerchecksum d2f6bb89071ae56b0083e5b38a629e6089d5d2c73fc9206181b2aa3071e0a4a350a3f5266997063a011d41e4d369745ec5f246d8f3b723c00c8dfa84452e7cea +doccontainersize 426460 +doccontainerchecksum d55aa00226b6c7773cb275d33ed698e2617b82af5a2b060b58af7468e8be2d9c65bb8b052b66c28a94551fd51867a34e2c6b9d0147161e3df9cd05a03567a59f +docfiles size=106 + RELOC/doc/latex/metalogox/README.txt details="Readme" + RELOC/doc/latex/metalogox/metalogox.pdf details="Package documentation" +srccontainersize 8896 +srccontainerchecksum b6354ba439f3514a491c271294436f01aac26f77225455d1fb1a91d55a5353d63f2de6d3814bec21c0f043c95186411353c87992387f2e174d9cb03057ef0560 +srcfiles size=12 + RELOC/source/latex/metalogox/metalogox.dtx + RELOC/source/latex/metalogox/metalogox.ins +runfiles size=7 + RELOC/tex/latex/metalogox/metalogox.sty +catalogue-also metalogo +catalogue-contact-home http://bdtechconcepts.com/ +catalogue-ctan /macros/latex/contrib/metalogox +catalogue-date 2019-01-28 05:39:57 +0100 +catalogue-license lppl1.3 +catalogue-topics logo +catalogue-version 1.00 + +name metaobj +category Package +revision 15878 +shortdesc MetaPost package providing high-level objects +relocated 1 +longdesc METAOBJ is a large MetaPost package providing high-level +longdesc objects. It implements many of PSTricks' features for node +longdesc connections, but also trees, matrices, and many other things. +longdesc It more or less contains boxes.mp and rboxes.mp. There is a +longdesc large (albeit not complete) documentation distributed with the +longdesc package. It is easily extensible with new objects. +containersize 57644 +containerchecksum cf587c174e44da9496ece876bfcb8330bc52173cc3bd6d1b1351efc75a7c333ed8c7cbd41c079d492947a1ee43d8043fabebc80b4c7a5d348eb054e82c704e3b +doccontainersize 585804 +doccontainerchecksum 0bfe1fa6a4b3a8923cfbe9bdc4fa1b27567df66365db447346fdcc739675d1d815515e09fbe96f44369643c38e6a8007a0f8d089ed8504020fe0a0e2a795ea9a +docfiles size=247 + RELOC/doc/metapost/metaobj/README details="Readme" + RELOC/doc/metapost/metaobj/license.txt + RELOC/doc/metapost/metaobj/momanual.pdf details="Package documentation" +runfiles size=82 + RELOC/metapost/metaobj/connections.mp + RELOC/metapost/metaobj/metaobj.mp + RELOC/metapost/metaobj/mobjstandard.mp + RELOC/metapost/metaobj/proofex.mp + RELOC/metapost/metaobj/pstricksex1.mp + RELOC/metapost/metaobj/pstricksex2.mp + RELOC/metapost/metaobj/pstricksex3.mp + RELOC/metapost/metaobj/pstricksex4.mp +catalogue-ctan /graphics/metapost/contrib/macros/metaobj +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-engn +catalogue-version 0.93 + +name metaplot +category Package +revision 15878 +shortdesc Plot-manipulation macros for use in MetaPost +relocated 1 +longdesc MetaPlot is a set of MetaPost macros for manipulating +longdesc pre-generated plots (and similar objects), and formatting them +longdesc for inclusion in a MetaPost figure. The intent is that the +longdesc plots can be generated by some outside program, in an abstract +longdesc manner that does not require making decisions about on-page +longdesc sizing and layout, and then they can be imported into MetaPlot +longdesc and arranged using the full capabilities of MetaPost. Metaplot +longdesc also includes a very flexible set of macros for generating plot +longdesc axes, which may be useful in other contexts as well. Presently, +longdesc MetaPlot is in something of a pre-release beta state; it is +longdesc quite functional, but the syntax of the commands is still +longdesc potentially in flux. +containersize 3884 +containerchecksum eb083316720a5d7379c0ef7c1afa0e82ea5df63a3a98200b7041637a6fa47aa33dc20a265e05bdbc63abfc375e6b59fa199d4091875c057a044821c557963dab +doccontainersize 289128 +doccontainerchecksum 1732b5a572a3d4c0a646308d3c102be29de845030a624763dd6075a44a739a29e65fd9f224229eed6dbe8dfc6b590a3df1cc07c184881dcd2f3dc5b0642a48dd +docfiles size=141 + RELOC/doc/latex/metaplot/README details="Readme" + RELOC/doc/latex/metaplot/examples/cap1.cc + RELOC/doc/latex/metaplot/examples/cap1.mp + RELOC/doc/latex/metaplot/examples/capillary.cc + RELOC/doc/latex/metaplot/examples/cpoint.cc + RELOC/doc/latex/metaplot/examples/cpoint.h + RELOC/doc/latex/metaplot/examples/figure_1.mp + RELOC/doc/latex/metaplot/examples/figures_2-7.mp + RELOC/doc/latex/metaplot/examples/figures_8-9.mp + RELOC/doc/latex/metaplot/examples/gpl.txt + RELOC/doc/latex/metaplot/examples/mc2.mp + RELOC/doc/latex/metaplot/examples/metacontour.cc + RELOC/doc/latex/metaplot/examples/metacontour.h + RELOC/doc/latex/metaplot/examples/metacontour_main.cc + RELOC/doc/latex/metaplot/metaplot_preprint.pdf +runfiles size=5 + RELOC/metapost/metaplot/axes.mp + RELOC/metapost/metaplot/metaplot.mp +catalogue-ctan /graphics/metaplot +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-plot +catalogue-version 0.91 + +name metapost +category Package +revision 50602 +shortdesc A development of Metafont for creating graphics +longdesc MetaPost uses a language based on that of Metafont to produce +longdesc precise technical illustrations. Its output is scalable +longdesc PostScript or SVG, rather than the bitmaps Metafont creates. +depend kpathsea +depend metapost.ARCH +execute addMap troff-updmap.map +containersize 73784 +containerchecksum 1e3aea7c28d13658b40187358303d63cfdd40bf9bf324fbd7e873ae7e68038ba953fa28e9fcb1cf73b3034d9f60394f281490ad15aee77d2f0779698f7751ada +doccontainersize 2395868 +doccontainerchecksum f3fe9809c525cccbc3b1dcb3ed5ca7d93390486b85da13d1d005495ed74343c4445f1d3492b2a7b2383c2e96483ed9fca4d37fde1218e752536fcad5a616cfe9 +docfiles size=818 + texmf-dist/doc/man/man1/dvitomp.1 + texmf-dist/doc/man/man1/dvitomp.man1.pdf + texmf-dist/doc/man/man1/mpost.1 + texmf-dist/doc/man/man1/mpost.man1.pdf + texmf-dist/doc/metapost/base/CHANGES + texmf-dist/doc/metapost/base/grdemo-doc.pdf + texmf-dist/doc/metapost/base/grdemo.pdf + texmf-dist/doc/metapost/base/mpboxes.pdf + texmf-dist/doc/metapost/base/mpgraph.pdf + texmf-dist/doc/metapost/base/mpintro.pdf + texmf-dist/doc/metapost/base/mplibapi.pdf + texmf-dist/doc/metapost/base/mpman.pdf details="METAPOST Users Manual" + texmf-dist/doc/metapost/base/source-manual/Makefile + texmf-dist/doc/metapost/base/source-manual/README + texmf-dist/doc/metapost/base/source-manual/TODO + texmf-dist/doc/metapost/base/source-manual/agepop91.d + texmf-dist/doc/metapost/base/source-manual/agepopm.d + texmf-dist/doc/metapost/base/source-manual/charts.mp + texmf-dist/doc/metapost/base/source-manual/cm2lm.map + texmf-dist/doc/metapost/base/source-manual/countries.d + texmf-dist/doc/metapost/base/source-manual/ctabbing.sty + texmf-dist/doc/metapost/base/source-manual/demo.ms + texmf-dist/doc/metapost/base/source-manual/energy.d + texmf-dist/doc/metapost/base/source-manual/figs.1 + texmf-dist/doc/metapost/base/source-manual/figs.mp + texmf-dist/doc/metapost/base/source-manual/grdemo-doc.ms + texmf-dist/doc/metapost/base/source-manual/grdemo-doc.ps + texmf-dist/doc/metapost/base/source-manual/grdemo.eps + texmf-dist/doc/metapost/base/source-manual/grdemo.mp + texmf-dist/doc/metapost/base/source-manual/grdemo.ms + texmf-dist/doc/metapost/base/source-manual/lead.d + texmf-dist/doc/metapost/base/source-manual/matmul.d + texmf-dist/doc/metapost/base/source-manual/mpboxes.bib + texmf-dist/doc/metapost/base/source-manual/mpboxes.mp + texmf-dist/doc/metapost/base/source-manual/mpboxes.tex + texmf-dist/doc/metapost/base/source-manual/mpgraph.bib + texmf-dist/doc/metapost/base/source-manual/mpgraph.mp + texmf-dist/doc/metapost/base/source-manual/mpgraph.tex + texmf-dist/doc/metapost/base/source-manual/mplibapi.tex + texmf-dist/doc/metapost/base/source-manual/mpman-app-legacy.tex + texmf-dist/doc/metapost/base/source-manual/mpman-app-numbersystems.tex + texmf-dist/doc/metapost/base/source-manual/mpman-app-optab.tex + texmf-dist/doc/metapost/base/source-manual/mpman-app-refman.tex + texmf-dist/doc/metapost/base/source-manual/mpman-charts.mp + texmf-dist/doc/metapost/base/source-manual/mpman.bib + texmf-dist/doc/metapost/base/source-manual/mpman.ist + texmf-dist/doc/metapost/base/source-manual/mpman.mp + texmf-dist/doc/metapost/base/source-manual/mpman.tex + texmf-dist/doc/metapost/base/source-manual/timepop.d + texmf-dist/doc/metapost/base/source-tutorial/Makefile + texmf-dist/doc/metapost/base/source-tutorial/abstract.tex + texmf-dist/doc/metapost/base/source-tutorial/annulus.mp + texmf-dist/doc/metapost/base/source-tutorial/arrows.tex + texmf-dist/doc/metapost/base/source-tutorial/biblio.tex + texmf-dist/doc/metapost/base/source-tutorial/circles.mp + texmf-dist/doc/metapost/base/source-tutorial/commands.tex + texmf-dist/doc/metapost/base/source-tutorial/compilation.tex + texmf-dist/doc/metapost/base/source-tutorial/conclusion.tex + texmf-dist/doc/metapost/base/source-tutorial/data.d + texmf-dist/doc/metapost/base/source-tutorial/data.mp + texmf-dist/doc/metapost/base/source-tutorial/data.tex + texmf-dist/doc/metapost/base/source-tutorial/draw.mp + texmf-dist/doc/metapost/base/source-tutorial/draw.tex + texmf-dist/doc/metapost/base/source-tutorial/fill.mp + texmf-dist/doc/metapost/base/source-tutorial/fill.tex + texmf-dist/doc/metapost/base/source-tutorial/graph.tex + texmf-dist/doc/metapost/base/source-tutorial/inclusion.tex + texmf-dist/doc/metapost/base/source-tutorial/intro.tex + texmf-dist/doc/metapost/base/source-tutorial/label.mp + texmf-dist/doc/metapost/base/source-tutorial/label.tex + texmf-dist/doc/metapost/base/source-tutorial/mpintro.bib + texmf-dist/doc/metapost/base/source-tutorial/mpintro.ltx + texmf-dist/doc/metapost/base/source-tutorial/paperclip.mp + texmf-dist/doc/metapost/base/source-tutorial/parabola.mp + texmf-dist/doc/metapost/base/source-tutorial/previewer.eps + texmf-dist/doc/metapost/base/source-tutorial/previewer.pdf + texmf-dist/doc/metapost/base/source-tutorial/previewer.png +runfiles size=112 + texmf-dist/fonts/afm/metapost/freeeuro.afm + texmf-dist/fonts/afm/metapost/psyrgo.afm + texmf-dist/fonts/afm/metapost/zpzdr-reversed.afm + texmf-dist/fonts/enc/dvips/metapost/groff.enc + texmf-dist/fonts/map/dvips/metapost/troff-updmap.map + texmf-dist/fonts/map/dvips/metapost/troff.map + texmf-dist/fonts/tfm/metapost/freeeuro.tfm + texmf-dist/fonts/tfm/metapost/pagd8g.tfm + texmf-dist/fonts/tfm/metapost/pagdo8g.tfm + texmf-dist/fonts/tfm/metapost/pagk8g.tfm + texmf-dist/fonts/tfm/metapost/pagko8g.tfm + texmf-dist/fonts/tfm/metapost/pbkd8g.tfm + texmf-dist/fonts/tfm/metapost/pbkdi8g.tfm + texmf-dist/fonts/tfm/metapost/pbkl8g.tfm + texmf-dist/fonts/tfm/metapost/pbkli8g.tfm + texmf-dist/fonts/tfm/metapost/pcrb8g.tfm + texmf-dist/fonts/tfm/metapost/pcrbo8g.tfm + texmf-dist/fonts/tfm/metapost/pcrr8g.tfm + texmf-dist/fonts/tfm/metapost/pcrro8g.tfm + texmf-dist/fonts/tfm/metapost/phvb8g.tfm + texmf-dist/fonts/tfm/metapost/phvb8gn.tfm + texmf-dist/fonts/tfm/metapost/phvbo8g.tfm + texmf-dist/fonts/tfm/metapost/phvbo8gn.tfm + texmf-dist/fonts/tfm/metapost/phvr8g.tfm + texmf-dist/fonts/tfm/metapost/phvr8gn.tfm + texmf-dist/fonts/tfm/metapost/phvro8g.tfm + texmf-dist/fonts/tfm/metapost/phvro8gn.tfm + texmf-dist/fonts/tfm/metapost/pncb8g.tfm + texmf-dist/fonts/tfm/metapost/pncbi8g.tfm + texmf-dist/fonts/tfm/metapost/pncr8g.tfm + texmf-dist/fonts/tfm/metapost/pncri8g.tfm + texmf-dist/fonts/tfm/metapost/pplb8g.tfm + texmf-dist/fonts/tfm/metapost/pplbi8g.tfm + texmf-dist/fonts/tfm/metapost/pplr8g.tfm + texmf-dist/fonts/tfm/metapost/pplri8g.tfm + texmf-dist/fonts/tfm/metapost/psyrgo.tfm + texmf-dist/fonts/tfm/metapost/ptmb8g.tfm + texmf-dist/fonts/tfm/metapost/ptmbi8g.tfm + texmf-dist/fonts/tfm/metapost/ptmr8g.tfm + texmf-dist/fonts/tfm/metapost/ptmri8g.tfm + texmf-dist/fonts/tfm/metapost/pzcmi8g.tfm + texmf-dist/fonts/tfm/metapost/zpzdr-reversed.tfm + texmf-dist/fonts/type1/metapost/freeeuro.pfa + texmf-dist/metapost/base/TEX.mp + texmf-dist/metapost/base/boxes.mp + texmf-dist/metapost/base/format.mp + texmf-dist/metapost/base/graph.mp + texmf-dist/metapost/base/marith.mp + texmf-dist/metapost/base/mfplain.mp + texmf-dist/metapost/base/mpost.mp + texmf-dist/metapost/base/plain.mp + texmf-dist/metapost/base/pmpost.mp + texmf-dist/metapost/base/rboxes.mp + texmf-dist/metapost/base/sarith.mp + texmf-dist/metapost/base/string.mp + texmf-dist/metapost/base/texnum.mp + texmf-dist/metapost/base/troffnum.mp + texmf-dist/metapost/base/upmpost.mp + texmf-dist/metapost/config/mfplain.ini + texmf-dist/metapost/misc/null.mp + texmf-dist/metapost/support/charlib/12 + texmf-dist/metapost/support/charlib/14 + texmf-dist/metapost/support/charlib/34 + texmf-dist/metapost/support/charlib/Ao + texmf-dist/metapost/support/charlib/Fi + texmf-dist/metapost/support/charlib/Fl + texmf-dist/metapost/support/charlib/L1 + texmf-dist/metapost/support/charlib/LH + texmf-dist/metapost/support/charlib/Lb + texmf-dist/metapost/support/charlib/Sl + texmf-dist/metapost/support/charlib/ao.x + texmf-dist/metapost/support/charlib/bx + texmf-dist/metapost/support/charlib/ci + texmf-dist/metapost/support/charlib/ff + texmf-dist/metapost/support/charlib/lh.x + texmf-dist/metapost/support/charlib/ob + texmf-dist/metapost/support/charlib/rh + texmf-dist/metapost/support/charlib/sq + texmf-dist/metapost/support/charlib/twiddle + texmf-dist/metapost/support/trchars.adj + texmf-dist/metapost/support/trfonts.map + texmf-dist/tex/generic/metapost/mproof.tex + texmf-dist/tex/generic/metapost/mpsproof.tex +catalogue-alias mp mpost +catalogue-also asymptote +catalogue-contact-home http://tug.org/metapost +catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/mplibdir +catalogue-contact-support http://lists.tug.org/metapost +catalogue-date 2018-12-31 06:55:45 +0100 +catalogue-license lgpl +catalogue-topics graphics-engn + +name metapost-colorbrewer +category Package +revision 48753 +shortdesc An implementation of the colorbrewer2.org colours for MetaPost +relocated 1 +longdesc This package provides two MetaPost include files that define +longdesc all the colorbrewer2.org colours: colorbrewer-cmyk.mp +longdesc colorbrewer-rgb.mp The first defines all the colours as CMYK, +longdesc the second as RGB. Use whichever one you prefer. For an example +longdesc of what you can do, and a list of all the names, have a look at +longdesc colorbrewer-sampler.mp. You can also see the names on +longdesc http://colorbrewer2.org. The package also includes the Python +longdesc script used to generate the MP source from the colorbrewer +longdesc project. +containersize 11784 +containerchecksum e59dd121f9a176e628697e31b720507723867a0b7b68b73531aa825bb02b07d04ff705bdfbeb369fe3a2d304f4c6c5aad3f823aaa4c82257540f1459cf099cb1 +doccontainersize 219680 +doccontainerchecksum 59f17d78ef78a142bde5783996f149b3a7c740c2b3ec6f90133115ebddcf6c460dada543482f5379872054a74eb772bab8afd96fa48b2484f7932a478b8bde2d +docfiles size=66 + RELOC/doc/metapost/metapost-colorbrewer/README.md details="Readme" + RELOC/doc/metapost/metapost-colorbrewer/colorbrewer-sampler.mp + RELOC/doc/metapost/metapost-colorbrewer/colorbrewer-sampler.pdf + RELOC/doc/metapost/metapost-colorbrewer/colorbrewer-sampler.png + RELOC/doc/metapost/metapost-colorbrewer/make_mp_colorbrewer.py +runfiles size=30 + RELOC/metapost/metapost-colorbrewer/colorbrewer-cmyk.mp + RELOC/metapost/metapost-colorbrewer/colorbrewer-rgb.mp +catalogue-contact-repository https://github.com/thruston/metapost-colorbrewer +catalogue-ctan /graphics/metapost/contrib/macros/metapost-colorbrewer +catalogue-date 2018-09-25 05:22:19 +0200 +catalogue-license gpl3+ +catalogue-topics mp-supp mp-use + +name metapost-examples +category Package +revision 15878 +shortdesc Example drawings using MetaPost +relocated 1 +longdesc These are a few (hundred) example pictures drawn with MetaPost, +longdesc ranging from very simple (lines and circles) to rather +longdesc intricate (uncommon geometric transformations, fractals, +longdesc bitmap, etc). +containersize 488 +containerchecksum 95942b1b110e65274839ba01c16fed3e63a0ac99aa564d7a000bc9d9a0f5625ddc1dca13e786d0721bf93e76410722d4d76c86a05297bc39cd9af6dc91c2e6f8 +doccontainersize 21248 +doccontainerchecksum 2a3aec80b511864878e07ff973e17ed4fe1aec692c7e6983b57dde586aa19500cdd373687b0e081dc80c8584f116f0fa3de7ed4f09ba232eee8adce5e998c954 +docfiles size=37 + RELOC/doc/metapost/metapost-examples/Makefile + RELOC/doc/metapost/metapost-examples/README details="Readme" + RELOC/doc/metapost/metapost-examples/data1 + RELOC/doc/metapost/metapost-examples/data2 + RELOC/doc/metapost/metapost-examples/data3 + RELOC/doc/metapost/metapost-examples/examples.mp + RELOC/doc/metapost/metapost-examples/mp2html.pl +catalogue-ctan /info/metapost/examples +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics demo-code + +name metapost.aarch64-linux +category Package +revision 50594 +shortdesc aarch64-linux files of metapost +containersize 741380 +containerchecksum f7bcee0317e2525b42ac17b7957517856df6b6d71f1056c9cc1bd125b7bf2a31d0faeae9fd039a8edbca882bd1165a908f9ad08c1f7e289f199dae0341fc1479 +binfiles arch=aarch64-linux size=491 + bin/aarch64-linux/dvitomp + bin/aarch64-linux/mfplain + bin/aarch64-linux/mpost + bin/aarch64-linux/r-mpost + +name metapost.amd64-freebsd +category Package +revision 50594 +shortdesc amd64-freebsd files of metapost +containersize 972244 +containerchecksum c93500a5a45bc59b85a31b6260882029db2d3660c85f39b7ee66a0308426e9fa953fb826c770176454b71a53fe9d0fee49e78230987772b898184d5ba894f903 +binfiles arch=amd64-freebsd size=677 + bin/amd64-freebsd/dvitomp + bin/amd64-freebsd/mfplain + bin/amd64-freebsd/mpost + bin/amd64-freebsd/r-mpost + +name metapost.amd64-netbsd +category Package +revision 50581 +shortdesc amd64-netbsd files of metapost +containersize 766440 +containerchecksum 93551f292d8d54e305a9061e06f12fbe7a20aabb054f116a21fa4c2431d5b3fd30a85575df90ca34605ad91ec93e3b3e38f344a5742dc59c2a748983725ecd48 +binfiles arch=amd64-netbsd size=1292 + bin/amd64-netbsd/dvitomp + bin/amd64-netbsd/mfplain + bin/amd64-netbsd/mpost + bin/amd64-netbsd/r-mpost + +name metapost.armhf-linux +category Package +revision 50606 +shortdesc armhf-linux files of metapost +containersize 723880 +containerchecksum b87ce2cb573fe9be9b13aa6a7f93205d73ad59612e624a9820d8c8ed51c8eaf119b6c2eace5b2d464c5d22706d24a118a28b988bf6f96672fc8f4ff1d3402315 +binfiles arch=armhf-linux size=480 + bin/armhf-linux/dvitomp + bin/armhf-linux/mfplain + bin/armhf-linux/mpost + bin/armhf-linux/r-mpost + +name metapost.i386-cygwin +category Package +revision 50603 +shortdesc i386-cygwin files of metapost +containersize 853988 +containerchecksum f4919704c027a3a6ffce045353a3ee53d7bbd7538f6c1a018ef8e8f7e66077240f8d19f212eeb082b9837b7ce3db93f46ad86026a30f3c827468c0ddb8fa0c3b +binfiles arch=i386-cygwin size=600 + bin/i386-cygwin/dvitomp + bin/i386-cygwin/mfplain + bin/i386-cygwin/mpost.exe + bin/i386-cygwin/r-mpost + +name metapost.i386-freebsd +category Package +revision 50594 +shortdesc i386-freebsd files of metapost +containersize 825708 +containerchecksum 63b5d3b8a950bb1e733db47e80f1c5a1845855912d178e31532753822d0813669a76312185aa2eb295345c5f2a0f9d0d92d7ce78398ec58e38ff36cca6ae0156 +binfiles arch=i386-freebsd size=544 + bin/i386-freebsd/dvitomp + bin/i386-freebsd/mfplain + bin/i386-freebsd/mpost + bin/i386-freebsd/r-mpost + +name metapost.i386-linux +category Package +revision 50594 +shortdesc i386-linux files of metapost +containersize 955620 +containerchecksum 8e868bc276485fce9f922624e460aa0541b6b4a8160ccd560d1b31c4d992d9fb85dacd6ef9ba4869ada1a4bba01693152319053d79c3761ebd7132fab4c93b86 +binfiles arch=i386-linux size=671 + bin/i386-linux/dvitomp + bin/i386-linux/mfplain + bin/i386-linux/mpost + bin/i386-linux/r-mpost + +name metapost.i386-netbsd +category Package +revision 50581 +shortdesc i386-netbsd files of metapost +containersize 690224 +containerchecksum 40a62ae0c84a41afa1c9830fbb082a8cb21cae8c43eec1fe29329dc4c605ad228f32d4947a05b1020eee616e8d67a85986c8a674ffcbbf7e3ef6c71018914558 +binfiles arch=i386-netbsd size=1142 + bin/i386-netbsd/dvitomp + bin/i386-netbsd/mfplain + bin/i386-netbsd/mpost + bin/i386-netbsd/r-mpost + +name metapost.i386-solaris +category Package +revision 50594 +shortdesc i386-solaris files of metapost +containersize 832396 +containerchecksum eb238451145648c04a0be6e0c0fdf7386ea5a17c0aed34960de8068875b24fec2e2a937f3d7fac745459715908cd73d8d3c670491129804f10b967cddddb0bbd +binfiles arch=i386-solaris size=516 + bin/i386-solaris/dvitomp + bin/i386-solaris/mfplain + bin/i386-solaris/mpost + bin/i386-solaris/r-mpost + +name metapost.win32 +category Package +revision 50564 +shortdesc win32 files of metapost +containersize 766572 +containerchecksum 40fa48c38a7a41254178326033e95be630f0f4d480e279a14b283a19496c16a1d08363d3e01454f252c22902dbbf4fe24028ade8ceda84dce444c8725dc220d9 +binfiles arch=win32 size=489 + bin/win32/dvitomp.exe + bin/win32/mfplain.exe + bin/win32/mpost.dll + bin/win32/mpost.exe + bin/win32/r-mpost.exe + +name metapost.x86_64-cygwin +category Package +revision 50889 +shortdesc x86_64-cygwin files of metapost +containersize 860828 +containerchecksum b47d97708af0e8d76123801f3e6c11c6463eb80d98cde644c9377253fbb4eacb921c9d7cf2c8ddf96e7600b61583eb775d33346689ce9b39b87ca4c0f886daee +binfiles arch=x86_64-cygwin size=573 + bin/x86_64-cygwin/dvitomp + bin/x86_64-cygwin/mfplain + bin/x86_64-cygwin/mpost.exe + bin/x86_64-cygwin/r-mpost + +name metapost.x86_64-darwin +category Package +revision 50594 +shortdesc x86_64-darwin files of metapost +containersize 970668 +containerchecksum 93e21d6b154e2aeca1f42666a70e3d6cb5391dca60018ef186f33ec8ce1479f0606d0d894893cf56a5abe91348b45c70da4a1bb8467e3e6527bfc0ea4a1dd7fb +binfiles arch=x86_64-darwin size=646 + bin/x86_64-darwin/dvitomp + bin/x86_64-darwin/mfplain + bin/x86_64-darwin/mpost + bin/x86_64-darwin/r-mpost + +name metapost.x86_64-darwinlegacy +category Package +revision 50594 +shortdesc x86_64-darwinlegacy files of metapost +containersize 816832 +containerchecksum c62c5add6cc25c2a07ae88f7332711a281dbb8103c8bf3f6fa10cbd6f63eee1d981c2893631f4b93e31d1bd38c40b428ebd88578cc4579d49ea87a88a97f0b21 +binfiles arch=x86_64-darwinlegacy size=527 + bin/x86_64-darwinlegacy/dvitomp + bin/x86_64-darwinlegacy/mfplain + bin/x86_64-darwinlegacy/mpost + bin/x86_64-darwinlegacy/r-mpost + +name metapost.x86_64-linux +category Package +revision 50594 +shortdesc x86_64-linux files of metapost +containersize 911944 +containerchecksum 6be62ba97647d0eb5f7fcc4bac523ef8356533754cbfbd10362a9a7da123798ef215ebd58bd754740d378eeecc81c5ea92a47ea31b5f33f11384e9c53c692361 +binfiles arch=x86_64-linux size=594 + bin/x86_64-linux/dvitomp + bin/x86_64-linux/mfplain + bin/x86_64-linux/mpost + bin/x86_64-linux/r-mpost + +name metapost.x86_64-linuxmusl +category Package +revision 50594 +shortdesc x86_64-linuxmusl files of metapost +containersize 960256 +containerchecksum 88d245f72ab5eb1e4fd6babf97149661991334d865d1bc6aa3686993a3b48619ef26ffe8e27f6c55a5263bb4b38512f517a070f94fb9e0f46a0318a58077f10d +binfiles arch=x86_64-linuxmusl size=659 + bin/x86_64-linuxmusl/dvitomp + bin/x86_64-linuxmusl/mfplain + bin/x86_64-linuxmusl/mpost + bin/x86_64-linuxmusl/r-mpost + +name metapost.x86_64-solaris +category Package +revision 50594 +shortdesc x86_64-solaris files of metapost +containersize 919088 +containerchecksum fd0bab542c5d4d5ec4bdc024c679158670d6244073fe8385c1282208ece613c7402405eca64216cfcfccf393866c0e069dd6449c6ea57b8eb574884789895a6b +binfiles arch=x86_64-solaris size=596 + bin/x86_64-solaris/dvitomp + bin/x86_64-solaris/mfplain + bin/x86_64-solaris/mpost + bin/x86_64-solaris/r-mpost + +name metatex +category Package +revision 15878 +shortdesc Incorporate Metafont pictures in TeX source +relocated 1 +longdesc METATeX is a set of plain TeX and Metafont macros that you can +longdesc use to define both the text and the figures in a single source +longdesc file. Because METATeX sets up two way communication, from TeX +longdesc to Metafont and back from Metafont to TeX, drawing dimensions +longdesc can be controlled by TeX and labels can be located by Metafont. +longdesc Only standard features of TeX and Metafont are used, but two +longdesc runs of TeX and one of Metafont are needed. +containersize 3388 +containerchecksum 8d438cf0f3bd375c169681b242b7f00dca96cd3bcfb167c6aa664e27dba59eefb53a6d28ef537802d584b17bc578b1d63ca25799146ee6d986bc647ae1b0af2d +doccontainersize 137060 +doccontainerchecksum 3c2918a3bbb30b4abe2395baf32ed2fd5fb1ce3541f86250f0c4037aeb127fe7e90cfced87144d564813a437b39b184503ea9a2c0c61b979907db74d91860677 +docfiles size=55 + RELOC/doc/plain/metatex/README details="Readme" + RELOC/doc/plain/metatex/gpl.txt + RELOC/doc/plain/metatex/mtmp2pdf.tex + RELOC/doc/plain/metatex/mtpaper.pdf details="Package documentation" + RELOC/doc/plain/metatex/mtpaper/delay.mf + RELOC/doc/plain/metatex/mtpaper/diagram.tex + RELOC/doc/plain/metatex/mtpaper/frame.tex + RELOC/doc/plain/metatex/mtpaper/mtpaper.tex + RELOC/doc/plain/metatex/mtpaper/shadow.tex +runfiles size=2 + RELOC/tex/plain/metatex/metatex.tex +catalogue-also emp +catalogue-ctan /macros/plain/contrib/metatex +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license gpl +catalogue-topics graphics-inline +catalogue-version 1.1 + +name metatype1 +category Package +revision 37105 +shortdesc Generate Type 1 fonts from MetaPost +relocated 1 +longdesc The system employs scripts, common utility programs, and a set +longdesc of MetaPost macros to provide a means of expressing the details +longdesc outline fonts directly in the MetaPost language. The system was +longdesc employed to generate the Latin Modern fonts, and the +longdesc distribution includes an example development of Knuth's logo +longdesc fonts. +containersize 560 +containerchecksum 1dc34e3f826ebf09c6f3baf358aa0e5ee4ecbe86e2f82a7da12c706f443f5eba7fd8582bf46612b2fa3588515dac34c49d47cfa2b9c3ae905cc51dbe7779eb28 +srccontainersize 235276 +srccontainerchecksum 26f891bb5a62da78763df29f1d9caf26588c6dff57e063eb445ae23a5dfd7108956068de991bbb514ee394c49d4ad119d4a0fdb5398aad48d9be223b8f13d388 +srcfiles size=65 + RELOC/source/metapost/metatype1/README + RELOC/source/metapost/metatype1/logomp03.zip + RELOC/source/metapost/metatype1/metatype1-ver056.inf + RELOC/source/metapost/metatype1/metatype1-ver056.zip +catalogue-ctan /fonts/utilities/metatype1 +catalogue-date 2018-01-15 23:36:39 +0100 +catalogue-license pd +catalogue-topics font-devel +catalogue-version 0.56 + +name metauml +category Package +revision 49923 +shortdesc MetaPost library for typesetting UML diagrams +relocated 1 +longdesc MetaUML is a MetaPost library for typesetting UML diagrams, +longdesc which provides a usable, human-friendly textual notation for +longdesc UML, offering now support for class, package, activity, state, +longdesc and use case diagrams. +containersize 20596 +containerchecksum 96773f0d0e2788d13738930fa1aa727c7ca2edee020f3848326d7be3533c177ac977564aed533c59695b1e6c4c65e191784cbc3e7e70becdd651cd702b462ef5 +doccontainersize 444408 +doccontainerchecksum 6c649c32111a6350d36c69405fc272a917144be429bd84c0f118a74e1232c06744e66fb6647c5a742f58c6c78b46830a1484bbed3a9a962380ece6b16c555169 +docfiles size=175 + RELOC/doc/metapost/metauml/README details="Readme" + RELOC/doc/metapost/metauml/manual/fig/activity.mp + RELOC/doc/metapost/metauml/manual/fig/activity_diagrams.mp + RELOC/doc/metapost/metauml/manual/fig/appetizer.mp + RELOC/doc/metapost/metauml/manual/fig/boxes_vs_util.mp + RELOC/doc/metapost/metauml/manual/fig/class.mp + RELOC/doc/metapost/metauml/manual/fig/class_association.mp + RELOC/doc/metapost/metauml/manual/fig/class_customization.mp + RELOC/doc/metapost/metauml/manual/fig/class_customization2.mp + RELOC/doc/metapost/metauml/manual/fig/class_diagrams.mp + RELOC/doc/metapost/metauml/manual/fig/class_templates.mp + RELOC/doc/metapost/metauml/manual/fig/component.mp + RELOC/doc/metapost/metauml/manual/fig/group.mp + RELOC/doc/metapost/metauml/manual/fig/how-links-work.mp + RELOC/doc/metapost/metauml/manual/fig/instance.mp + RELOC/doc/metapost/metauml/manual/fig/mptextmp.mp + RELOC/doc/metapost/metauml/manual/fig/note.mp + RELOC/doc/metapost/metauml/manual/fig/object_stack.mp + RELOC/doc/metapost/metauml/manual/fig/package.mp + RELOC/doc/metapost/metauml/manual/fig/paths.mp + RELOC/doc/metapost/metauml/manual/fig/paths_man.mp + RELOC/doc/metapost/metauml/manual/fig/picture_info.mp + RELOC/doc/metapost/metauml/manual/fig/picture_stack.mp + RELOC/doc/metapost/metauml/manual/fig/positioning.mp + RELOC/doc/metapost/metauml/manual/fig/properties.mp + RELOC/doc/metapost/metauml/manual/fig/state.mp + RELOC/doc/metapost/metauml/manual/fig/statemachine_diagrams.mp + RELOC/doc/metapost/metauml/manual/fig/test_activity.mp + RELOC/doc/metapost/metauml/manual/fig/test_class.mp + RELOC/doc/metapost/metauml/manual/fig/test_class_feature_types.mp + RELOC/doc/metapost/metauml/manual/fig/test_class_qual_assoc.mp + RELOC/doc/metapost/metauml/manual/fig/test_class_templates.mp + RELOC/doc/metapost/metauml/manual/fig/test_component.mp + RELOC/doc/metapost/metauml/manual/fig/test_font.mp + RELOC/doc/metapost/metauml/manual/fig/test_group.mp + RELOC/doc/metapost/metauml/manual/fig/test_instance.mp + RELOC/doc/metapost/metauml/manual/fig/test_lars_issues.mp + RELOC/doc/metapost/metauml/manual/fig/test_lowlevel.mp + RELOC/doc/metapost/metauml/manual/fig/test_note.mp + RELOC/doc/metapost/metauml/manual/fig/test_package.mp + RELOC/doc/metapost/metauml/manual/fig/test_paths.mp + RELOC/doc/metapost/metauml/manual/fig/test_picture.mp + RELOC/doc/metapost/metauml/manual/fig/test_picture_stack.mp + RELOC/doc/metapost/metauml/manual/fig/test_picture_tex_rendering.mp + RELOC/doc/metapost/metauml/manual/fig/test_positioning.mp + RELOC/doc/metapost/metauml/manual/fig/test_skins.mp + RELOC/doc/metapost/metauml/manual/fig/test_skins_global_defaults.mp + RELOC/doc/metapost/metauml/manual/fig/test_state.mp + RELOC/doc/metapost/metauml/manual/fig/test_usecase.mp + RELOC/doc/metapost/metauml/manual/fig/usecase.mp + RELOC/doc/metapost/metauml/manual/fig/usecase_diagrams.mp + RELOC/doc/metapost/metauml/manual/metauml-manual.bib + RELOC/doc/metapost/metauml/manual/metauml-manual.tex + RELOC/doc/metapost/metauml/manual/test-suite.tex + RELOC/doc/metapost/metauml/metauml-manual-v0.2.6-19d34de3da75cbd9f814f0a9ec03b4e0861b1541.pdf details="Package documentation" +runfiles size=49 + RELOC/metapost/metauml/metauml.mp + RELOC/metapost/metauml/metauml_activity.mp + RELOC/metapost/metauml/metauml_base.mp + RELOC/metapost/metauml/metauml_behavioral_common.mp + RELOC/metapost/metauml/metauml_class.mp + RELOC/metapost/metauml/metauml_class_assoc.mp + RELOC/metapost/metauml/metauml_class_relations.mp + RELOC/metapost/metauml/metauml_component.mp + RELOC/metapost/metauml/metauml_component_relations.mp + RELOC/metapost/metauml/metauml_defaults.mp + RELOC/metapost/metauml/metauml_instance.mp + RELOC/metapost/metauml/metauml_links.mp + RELOC/metapost/metauml/metauml_note.mp + RELOC/metapost/metauml/metauml_package.mp + RELOC/metapost/metauml/metauml_package_relations.mp + RELOC/metapost/metauml/metauml_paths.mp + RELOC/metapost/metauml/metauml_skin_simple.mp + RELOC/metapost/metauml/metauml_state.mp + RELOC/metapost/metauml/metauml_stereotype.mp + RELOC/metapost/metauml/metauml_templates.mp + RELOC/metapost/metauml/metauml_usecase.mp + RELOC/metapost/metauml/metauml_usecase_clipart.mp + RELOC/metapost/metauml/util_commons.mp + RELOC/metapost/metauml/util_group.mp + RELOC/metapost/metauml/util_infrastructure.mp + RELOC/metapost/metauml/util_log.mp + RELOC/metapost/metauml/util_margins.mp + RELOC/metapost/metauml/util_object.mp + RELOC/metapost/metauml/util_picture.mp + RELOC/metapost/metauml/util_picture_stack.mp + RELOC/metapost/metauml/util_positioning.mp + RELOC/metapost/metauml/util_shade.mp +catalogue-also expressg pst-uml uml +catalogue-contact-repository https://github.com/ogheorghies/MetaUML +catalogue-ctan /graphics/metapost/contrib/macros/metauml +catalogue-date 2019-02-04 05:59:29 +0100 +catalogue-license gpl +catalogue-topics uml mp-use +catalogue-version 0.2.6 + +name method +category Package +revision 17485 +shortdesc Typeset method and variable declarations +relocated 1 +longdesc The package supports typesetting of programming language method +longdesc and variable declarations. It supports declarations in German, +longdesc French and English. +containersize 2792 +containerchecksum 9b71ed52073f831431ef6a3a81afe7efac97a6dd39d772b8f48cfa639dfec01411a5654830fcbaef6a3bef7aeb718bbbc38cbd18c592a080e67175dabc7e9919 +doccontainersize 339016 +doccontainerchecksum 2a211d1325322bfaf57c81a534f29fde51ef2e0dad8d7697c3af9fe10745c5f6245bb689b65d54c39a66b34ccec69d055f201aba34b2a4957ce2fea0827eab45 +docfiles size=89 + RELOC/doc/latex/method/README details="Readme" + RELOC/doc/latex/method/method.pdf details="Package documentation" + RELOC/doc/latex/method/methtest.tex +srccontainersize 7108 +srccontainerchecksum ba90537e63493073509e9407aeecb28797370d75aada1835d5fbbbf991ea9b933226950765b61ab831a708d5fddc10c2fccd624d2872148bb77759a3595cd275 +srcfiles size=9 + RELOC/source/latex/method/Makefile + RELOC/source/latex/method/method.dtx + RELOC/source/latex/method/method.ins +runfiles size=3 + RELOC/tex/latex/method/method.sty +catalogue-ctan /macros/latex/contrib/method +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics listing +catalogue-version 2.0b + +name metre +category Package +revision 18489 +shortdesc Support for the work of classicists +relocated 1 +longdesc The package provides classicists with some of the tools that +longdesc are needed for typesetting scholarly publications dealing with +longdesc Greek and Latin texts, with special emphasis on Greek verse. As +longdesc the package's name suggests, its core is a comprehensive set of +longdesc commands for generating metrical schemes and for placing +longdesc prosodical marks on text set in the Latin or the Greek +longdesc alphabet. The rest of the package provides a miscellany of +longdesc commands for symbols (most of them not directly related to +longdesc metre) that are often used in critical editions of classical +longdesc texts. The package does not require any special font: all +longdesc symbols are taken from the Computer Modern fonts (which are +longdesc included in all TeX distributions) and the package's commands +longdesc are based on TeX primitives. +containersize 10756 +containerchecksum 29d99fe061c828b4eef12047215451eaf6d603106b0ebb0b7c83c8f8b5ffd360160e29a0c86bc0cd329e6f694efae695ef03282885e872cf26c8177f951b705b +doccontainersize 135120 +doccontainerchecksum 73ca10e1d2b32d4f7b37de6c409b68dc38b3dd165f47f52714c3a17e7a5dc6c1562928e7a7f8c5a3ed9aadfe1324e451baf6cda5dce69043fef3811cb6ff8cf7 +docfiles size=99 + RELOC/doc/latex/metre/README details="Readme" + RELOC/doc/latex/metre/demo.pdf details="Example of usage" + RELOC/doc/latex/metre/demo.tex + RELOC/doc/latex/metre/greek1.tex + RELOC/doc/latex/metre/greek2.tex + RELOC/doc/latex/metre/greek3.tex + RELOC/doc/latex/metre/igreek1.tex + RELOC/doc/latex/metre/igreek2.tex + RELOC/doc/latex/metre/igreek3.tex + RELOC/doc/latex/metre/metre.pdf details="Package documentation" +srccontainersize 25376 +srccontainerchecksum d11bfb161dd68208b4f4e29b67131618a02cb60f4e87c3f2809759ab42c44603e790876ea84c6c9f4f053c3cac1bf189344110ff5b4acdc97d7ddfe4c466c977 +srcfiles size=31 + RELOC/source/latex/metre/metre.dtx + RELOC/source/latex/metre/metre.ins +runfiles size=15 + RELOC/tex/latex/metre/metre.sty +catalogue-ctan /macros/latex/contrib/metre +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl +catalogue-topics crit-ed linguistic +catalogue-version 1.0 + +name metrix +category Package +revision 51125 +shortdesc Typeset metric marks for Latin text +relocated 1 +longdesc The package may be used to type the prosodics/metrics of +longdesc (latin) verse; it provides macros to typeset the symbols +longdesc standing alone, and in combination with symbols, giving +longdesc automatic alignment. The package requires TikZ (including the +longdesc calc library), xpatch, and xparse (thus also requiring the +longdesc experimental LaTeX3 environment). +containersize 5520 +containerchecksum 59d2c8b239951bd469b792d1cf35e2a2dee0a2e1bdabd492645368364ce215c9b3407875e522f9ba86d9e2ff016375f9529beeb6e3e9bb15f807252b492bbf2b +doccontainersize 636848 +doccontainerchecksum 81261765132eb6573534fc4c9888d9cff77a5d35d2b29e13aa24e4dd0678a324f220cce513f17dc3a5e08183513fc2886b9723ee37d1139076b04fd56d60e876 +docfiles size=158 + RELOC/doc/latex/metrix/README details="Readme" + RELOC/doc/latex/metrix/metrix.pdf details="Package documentation" +srccontainersize 17628 +srccontainerchecksum d3ff4835d33d3d718516ce6debac031de1eaaa7d420429d257ae12c0d4b2972f9b5d1ebdccdc1c848f6271c921796c7f4f4d104edea4f60854e178c136c35a46 +srcfiles size=24 + RELOC/source/latex/metrix/metrix.dtx + RELOC/source/latex/metrix/metrix.ins +runfiles size=8 + RELOC/tex/latex/metrix/metrix.sty +catalogue-contact-bugs https://github.com/tweh/metrix/issues +catalogue-contact-repository https://github.com/tweh/metrix +catalogue-ctan /macros/latex/contrib/metrix +catalogue-date 2019-05-13 22:54:29 +0200 +catalogue-license lppl1.3c +catalogue-topics latin verse expl3 +catalogue-version 1.4a + +name mex +category Package +revision 45678 +shortdesc Polish formats for TeX +longdesc MeX is an adaptation of Plain TeX (MeX) and LaTeX209 (LaMeX) +longdesc formats to the Polish language and to Polish printing customs. +longdesc It contains a complete set of Metafont sources of Polish fonts, +longdesc hyphenation rules for the Polish language and sources of +longdesc formats. +depend pl +depend hyphen-polish +depend pdftex +depend tex +depend hyphen-base +depend knuth-lib +depend plain +depend tex-ini-files +depend enctex +depend utf8mex +depend mex.ARCH +execute AddFormat name=mex engine=pdftex patterns=mexconf.tex options="-translate-file=cp227.tcx *mex.ini" fmttriggers=hyphen-base,hyphen-polish,knuth-lib,pl,plain,tex-ini-files +execute AddFormat name=pdfmex engine=pdftex patterns=mexconf.tex options="-translate-file=cp227.tcx *pdfmex.ini" fmttriggers=hyphen-base,hyphen-polish,knuth-lib,pl,plain,tex-ini-files +execute AddFormat name=utf8mex engine=pdftex patterns=mexconf.tex options="-enc *utf8mex.ini" fmttriggers=hyphen-base,hyphen-polish,knuth-lib,pl,plain,tex-ini-files,enctex,utf8mex +containersize 11476 +containerchecksum 192ff9559722639d535d91d58d161594506374548a4414ff1508750e35b0b3e755e0c6c87559899e216901d62bc88cb28dfbe0725ca5a51325135f4251e1f110 +doccontainersize 35780 +doccontainerchecksum 0409918335f2b6fbaba3bab7027d91b2959c13927445bf64aab60a14b033c1e50d27c19878a65a56e8245ac025a881300e0f5e47ab0662e70e5872109097077b +docfiles size=31 + texmf-dist/doc/mex/base/00readme + texmf-dist/doc/mex/base/mex.html + texmf-dist/doc/mex/base/mexinfo.eng + texmf-dist/doc/mex/base/mexinfo.pol + texmf-dist/doc/mex/base/qq.eps + texmf-dist/doc/mex/base/tstmex.tex +srccontainersize 38840 +srccontainerchecksum 3d8246a6e7f3723904711f765f42282cdca89c88d62aea2d37a259900a645c094d6b1cf8185533341c82d14ed7c44e4b1b573e6524d5b4fccc74cc9d2cbdf1bf +srcfiles size=12 + texmf-dist/source/mex/base/eminst.zip + texmf-dist/source/mex/base/istyles.zip +runfiles size=13 + texmf-dist/tex/mex/base/lamex.tex + texmf-dist/tex/mex/base/mex.tex + texmf-dist/tex/mex/base/mex1.tex + texmf-dist/tex/mex/base/mex2.tex + texmf-dist/tex/mex/base/mexconf.tex + texmf-dist/tex/mex/config/mex.ini + texmf-dist/tex/mex/config/pdfmex.ini +catalogue-ctan /language/polish/mex105.zip +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics format polish +catalogue-version 1.05 + +name mex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of mex +containersize 356 +containerchecksum 2e3d1f00afad8ab58fcef9011ebbedcaa4f7be1182f657ba418f399db1be20bf32665c9ec0e92347b1c397bfc9b8a34a335421780752dc5f60ad2e0ee7e20f96 +binfiles arch=aarch64-linux size=3 + bin/aarch64-linux/mex + bin/aarch64-linux/pdfmex + bin/aarch64-linux/utf8mex + +name mex.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of mex +containersize 356 +containerchecksum 43f1d6a7024cbc267bca97c7f31a3baeb3fd299f33fd3aff80d5eaeb22183655c9602eacef073a2bf6bc1d843165e25bd1211b3ce110216dbdd057c9a00a3e3a +binfiles arch=amd64-freebsd size=3 + bin/amd64-freebsd/mex + bin/amd64-freebsd/pdfmex + bin/amd64-freebsd/utf8mex + +name mex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of mex +containersize 352 +containerchecksum b5c682f18af68c0d30e737e64f81e84cadcb69870188aa15012290d1daa18acc350db88a52837e1e59d99c40250b0dd3043b8597e7780671982fbc9d1b5a36cb +binfiles arch=amd64-netbsd size=3 + bin/amd64-netbsd/mex + bin/amd64-netbsd/pdfmex + bin/amd64-netbsd/utf8mex + +name mex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of mex +containersize 356 +containerchecksum b38edde7952c7310a2b24a8d3f93edf3930cd43125f9d54a665f61cc532958145fd44b53d01410da4f87a600a97e266410e82ea3a806e9152d352d348e8f7851 +binfiles arch=armhf-linux size=3 + bin/armhf-linux/mex + bin/armhf-linux/pdfmex + bin/armhf-linux/utf8mex + +name mex.i386-cygwin +category Package +revision 13930 +shortdesc i386-cygwin files of mex +containersize 356 +containerchecksum da498969dd082b214abd76c6bce40e7613786a0e3f759862653600739cec2dbb49dc63f673ac796dd1c2a54ce89b1edb1c17e76c9ced48f135273e25ee6ecbe1 +binfiles arch=i386-cygwin size=3 + bin/i386-cygwin/mex + bin/i386-cygwin/pdfmex + bin/i386-cygwin/utf8mex + +name mex.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of mex +containersize 356 +containerchecksum 25103cd8be4527230b630bf3cdf787be7606e6516d4f7e7c5813db6e6e5cd2cd5574f057a61b5e7c92a6264ea2e5eb73f0c393f808fdaf4929ae7b029a3771be +binfiles arch=i386-freebsd size=3 + bin/i386-freebsd/mex + bin/i386-freebsd/pdfmex + bin/i386-freebsd/utf8mex + +name mex.i386-linux +category Package +revision 3006 +shortdesc i386-linux files of mex +containersize 352 +containerchecksum 3c04b2d069e858a24c01d41fca557b54311e81764cf57b5e34aaaa4c89be1700f65a9e7464f5e905bb0432adfe9b4d6132ac9c98278f55d5d8b79d3343c90497 +binfiles arch=i386-linux size=3 + bin/i386-linux/mex + bin/i386-linux/pdfmex + bin/i386-linux/utf8mex + +name mex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of mex +containersize 356 +containerchecksum 71a805b3c6ca50da4452e6ad7e5b602fdda610e4b05b74f4ff36a0549238343088c9bccd3b908571517ce851ee693275df11f253802d9dc84c5c92eda66986a4 +binfiles arch=i386-netbsd size=3 + bin/i386-netbsd/mex + bin/i386-netbsd/pdfmex + bin/i386-netbsd/utf8mex + +name mex.i386-solaris +category Package +revision 8102 +shortdesc i386-solaris files of mex +containersize 356 +containerchecksum 0680ba5c75996c7ac174b2dcbdf640a7516d4ad4170809ed9d2e11f593b8b0b654a7d7992d0a86da45a3f6e9705e62b68d42c72385d707ab5086c41bd2ad1194 +binfiles arch=i386-solaris size=3 + bin/i386-solaris/mex + bin/i386-solaris/pdfmex + bin/i386-solaris/utf8mex + +name mex.win32 +category Package +revision 36810 +shortdesc win32 files of mex +containersize 904 +containerchecksum f88cc98dc02755e6a4fac03eb38abaf2dd55a2872b096cf142d17c9e54f9c2a13ea19c6aeaa382dd7ade0f80581cd35ea4b4372e5cef7bcc0d13e37957d9e28a +binfiles arch=win32 size=3 + bin/win32/mex.exe + bin/win32/pdfmex.exe + bin/win32/utf8mex.exe + +name mex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of mex +containersize 360 +containerchecksum f305134997e3d4f8dcbf563edf44217dbb8f625b8fb8952ade78f8d7bb7204e17fb3f5612ef3be6049c9a74dd017c6198d5f2dfb23438daa8fc6df543d74e2ab +binfiles arch=x86_64-cygwin size=3 + bin/x86_64-cygwin/mex + bin/x86_64-cygwin/pdfmex + bin/x86_64-cygwin/utf8mex + +name mex.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of mex +containersize 356 +containerchecksum 65ff274cca6a2760d44bc9005664c520ae49fb76e92a1fde1d28427d95e6fcb82dfd23dea49c845a6b59025cc78ca9ee5c46a61e6e089de7842889641ec1f92b +binfiles arch=x86_64-darwin size=3 + bin/x86_64-darwin/mex + bin/x86_64-darwin/pdfmex + bin/x86_64-darwin/utf8mex + +name mex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of mex +containersize 364 +containerchecksum ee9c17e0a9c0158bde7f04901cd01c6ef0ed9f02308273c376d83beca5670029d704db8b0d9c07d3e9c5ee58ed7f533d07e66b058744fd4dc87dad80470c975d +binfiles arch=x86_64-darwinlegacy size=3 + bin/x86_64-darwinlegacy/mex + bin/x86_64-darwinlegacy/pdfmex + bin/x86_64-darwinlegacy/utf8mex + +name mex.x86_64-linux +category Package +revision 3185 +shortdesc x86_64-linux files of mex +containersize 352 +containerchecksum 5a09d493c0a0eaeda5e7910499abb9bb0ad0eb1199f03b6352fc958e282ad5f77a865414a8ec2dbe344024aed62394d0637b15bc7914f333accd10cb67d6c4ce +binfiles arch=x86_64-linux size=3 + bin/x86_64-linux/mex + bin/x86_64-linux/pdfmex + bin/x86_64-linux/utf8mex + +name mex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of mex +containersize 360 +containerchecksum 21850fa1851597edc85295392ac7877a35989eac61ac852611f25d3ee3c831aeee1b11a5b205d6f8ce2dcb46f0f446754513b660137628dcc77c1f57f58f0290 +binfiles arch=x86_64-linuxmusl size=3 + bin/x86_64-linuxmusl/mex + bin/x86_64-linuxmusl/pdfmex + bin/x86_64-linuxmusl/utf8mex + +name mex.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of mex +containersize 356 +containerchecksum 867081ee0d83bc3e60e9accd91cfaaabfa4369358ee53b15e1192c0309af9643f71b30af9a5c51e0fcffd36f1aa9d345f6952a5af75814f143238eb7fb64584a +binfiles arch=x86_64-solaris size=3 + bin/x86_64-solaris/mex + bin/x86_64-solaris/pdfmex + bin/x86_64-solaris/utf8mex + +name mf2pt1 +category Package +revision 33802 +shortdesc Produce PostScript Type 1 fonts from Metafont source +longdesc mf2pt1 facilitates producing PostScript Type 1 fonts from a +longdesc Metafont source file. It is not, as the name may imply, an +longdesc automatic converter of arbitrary Metafont fonts to Type 1 +longdesc format. mf2pt1 imposes a number of restrictions on the Metafont +longdesc input. If these restrictions are met, mf2pt1 will produce valid +longdesc Type 1 output with more accurate control points than can be +longdesc reverse-engineered by TeXtrace, mftrace, and other programs +longdesc which convert bitmaps to outline fonts. +depend mf2pt1.ARCH +containersize 14268 +containerchecksum 87a90bdf45883da1291d8ef5a21e6f7fa51480f9933b92ad4a87384037de991ce36b47c238f822d466238f4bca6aa41a123c76a34f9f6efc2e43a2104f85182e +doccontainersize 213304 +doccontainerchecksum 8e672808d60133e8a06bfd7350b1f9f5a4b1e706e565382b015f8eb9dbdb6da246b12815388f445fec87e63305381717d817c1eaae7762fd7b8043c89e1f2401 +docfiles size=78 + texmf-dist/doc/info/mf2pt1.info + texmf-dist/doc/support/mf2pt1/ChangeLog + texmf-dist/doc/support/mf2pt1/README details="Readme" + texmf-dist/doc/support/mf2pt1/mf2pt1.pdf details="Package documentation" + texmf-dist/doc/support/mf2pt1/mf2pt1.texi +runfiles size=14 + texmf-dist/metapost/mf2pt1/mf2pt1.mp + texmf-dist/scripts/mf2pt1/mf2pt1.pl +catalogue-also metatype1 +catalogue-ctan /support/mf2pt1 +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl +catalogue-topics font-proc +catalogue-version 2.5a + +name mf2pt1.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of mf2pt1 +containersize 340 +containerchecksum c197ea4143b913d08fae0407b48366550e2ea0af0a7476959d1821c61c815feba38b2e0b26151e050d12081aeba37b3c33574f4b65fcb52903ec7c615a9da6b2 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/mf2pt1 + +name mf2pt1.amd64-freebsd +category Package +revision 23406 +shortdesc amd64-freebsd files of mf2pt1 +containersize 344 +containerchecksum ccd1e101bbaf34909c9ca01971a26a23ad9e9aee7aa7f4a5c91cbbe91f46f9f9aabb82c42e5da7541f56e7efcfce21887d6558eb52b0e7f43ef41c89524e9622 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/mf2pt1 + +name mf2pt1.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of mf2pt1 +containersize 340 +containerchecksum ea6a9391ce2917a465cfc29fe8bb0b07772f62e464b0b56f50a1cb73bfd854925cc853397c37769273413c4a7e9e2750f82435d62e80792d6f74302187edc48b +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/mf2pt1 + +name mf2pt1.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of mf2pt1 +containersize 340 +containerchecksum efd149c6640881e5c07e22fd3f3690a742a607ccc1d59fd193858bfd9eee3f1ef08715e38f497a37451e563cad71985b79af338983332b167eadad9c3780968e +binfiles arch=armhf-linux size=1 + bin/armhf-linux/mf2pt1 + +name mf2pt1.i386-cygwin +category Package +revision 23406 +shortdesc i386-cygwin files of mf2pt1 +containersize 340 +containerchecksum fc4327f7979a5d66765f0d4d8dbbb29adc053b525b6cee79e461379302b0cddcce4508dca032b114da9ea7041c37fa8d1d46341d2b63acda58074591e5266069 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/mf2pt1 + +name mf2pt1.i386-freebsd +category Package +revision 23406 +shortdesc i386-freebsd files of mf2pt1 +containersize 344 +containerchecksum 902b8bd700e607b8c63eb23ab2164c16457024e549d8328f4910ac73ed00efb2131389b9b029fa269cc8c3efcf65e32cbeb821db3a691959ef29e63be7707773 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/mf2pt1 + +name mf2pt1.i386-linux +category Package +revision 23406 +shortdesc i386-linux files of mf2pt1 +containersize 340 +containerchecksum 4c8ebde75e865079573c7ed719cdbfa39d736ce420c7d7777a167e5bc9baca2d2c41ced430e97f38f58a5e8c6afbf7bb4da87be6ca277db71b7eae57e66ff308 +binfiles arch=i386-linux size=1 + bin/i386-linux/mf2pt1 + +name mf2pt1.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of mf2pt1 +containersize 344 +containerchecksum ebfa26098006f8e6e56590d90726718746fe9fca31ed69f8ec304e9e9b9033dae39ef4f204262e12d6b22ebc8a7d4d88229b503168c314a7731fa7366be22d0e +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/mf2pt1 + +name mf2pt1.i386-solaris +category Package +revision 23406 +shortdesc i386-solaris files of mf2pt1 +containersize 340 +containerchecksum db23a1b9d0c1d3ff680cd763db4cfe2fb7584cfdb27a9581dcfd3f360adccd50f529bae27fda8884fdc7258de763d1476031db2df28bc1dd970f88f42591a197 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/mf2pt1 + +name mf2pt1.win32 +category Package +revision 23406 +shortdesc win32 files of mf2pt1 +containersize 680 +containerchecksum 8ee608dab95f6167950f745c50c158052ba747176db263ce83c9769c1179bb7d1b70ae6a8b172d7289904bbe73a13502ff0795082bad42448675776f8552e5c6 +binfiles arch=win32 size=1 + bin/win32/mf2pt1.exe + +name mf2pt1.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of mf2pt1 +containersize 340 +containerchecksum e20de1e38a228500e4c071be13581fef51c44a4f5a3f6a6feaa8f6a34f8f0fcda618777c9d97bc258bf14b953d5f68800d6ad15eba8695f8362ee8cb7565d5bf +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/mf2pt1 + +name mf2pt1.x86_64-darwin +category Package +revision 23406 +shortdesc x86_64-darwin files of mf2pt1 +containersize 344 +containerchecksum 93e4f35171cf696a1c5aa98f61b8adf2090d181768f434dad678cf88f5b009d25859792fc51c8470fb5a5062bc155d1b07cea3d04a6b3e8db81ea643f354605f +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/mf2pt1 + +name mf2pt1.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of mf2pt1 +containersize 348 +containerchecksum 258712e6008bb53a40858a1165d93e7177ddafe920f45170131fb1d26272f0b356a34e3768e2226f3971de2428d9f36c205255f6c46c19ab7ac9525bdb1058fe +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/mf2pt1 + +name mf2pt1.x86_64-linux +category Package +revision 23406 +shortdesc x86_64-linux files of mf2pt1 +containersize 340 +containerchecksum 18e8735c286b090b6c6a10e87c18588a489a402bc11665eabda446fad72dd874ae8dde287c15a13601bfa38c347245a5d78a839c2fd0d435aac56f4aee85a93f +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/mf2pt1 + +name mf2pt1.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of mf2pt1 +containersize 344 +containerchecksum 5db667dc317340884b25eacf5487f24fb24e617e8d53cf6ea3991a150be857322049a51c7246bb1577b41e3639cb24adb3d4440cdc70282b8b1050852e7b005c +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/mf2pt1 + +name mf2pt1.x86_64-solaris +category Package +revision 23406 +shortdesc x86_64-solaris files of mf2pt1 +containersize 344 +containerchecksum 4ac6e338cab96aa70ca3941f72eccd534e8c210b9836c934fbfbb154fc67ad66c4408a2987699531e9b69594eba648f6fc5e41fadb6949ae778d7cb35d21c04d +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/mf2pt1 + +name mfirstuc +category Package +revision 45803 +shortdesc Uppercase the first letter of a word +relocated 1 +longdesc The package provides commands \makefirstuc that uppercases the +longdesc first letter in its argument (with a check for a semantic +longdesc markup command at the start of the argument), and \xmakefirstuc +longdesc which expands the argument before uppercasing. It also provides +longdesc \capitalisewords{phrase} which applies \makefirstuc to each +longdesc word in the phrase, where the words are separated by regular +longdesc spaces. (Exceptions can be made for words that shouldn't be +longdesc converted.) +containersize 4316 +containerchecksum de7ca64b5a32f697ec1efb477c2230ac418799e72f298ee6ac80409952affb35ef6152fb366e822ba1b01e39afe4483d5437c4e9aa22130a90bef79f87ab77a5 +doccontainersize 661840 +doccontainerchecksum 1a2705a13325a97199095fbdb900b94e94f308311d7609ddfbb75efb7afeb1a2634a0f543da517a03d68e974d2b917f94a1b6a7b3d31965d7087ac585b6b0df5 docfiles size=195 - texmf-dist/doc/generic/tex4ht/bugfixes.css - texmf-dist/doc/generic/tex4ht/bugfixes.html - texmf-dist/doc/generic/tex4ht/cmmi10-b.gif - texmf-dist/doc/generic/tex4ht/cmsy10-28.gif - texmf-dist/doc/generic/tex4ht/index.html - texmf-dist/doc/generic/tex4ht/jhsample.tex - texmf-dist/doc/generic/tex4ht/mn-htf.html - texmf-dist/doc/generic/tex4ht/mn-index.html - texmf-dist/doc/generic/tex4ht/mn-mswin.html - texmf-dist/doc/generic/tex4ht/mn-port.html - texmf-dist/doc/generic/tex4ht/mn-unix.html - texmf-dist/doc/generic/tex4ht/mn.css - texmf-dist/doc/generic/tex4ht/mn.html - texmf-dist/doc/generic/tex4ht/mn0x.gif - texmf-dist/doc/generic/tex4ht/mn10.html - texmf-dist/doc/generic/tex4ht/mn11.html - texmf-dist/doc/generic/tex4ht/mn12.html - texmf-dist/doc/generic/tex4ht/mn13.html - texmf-dist/doc/generic/tex4ht/mn14.html - texmf-dist/doc/generic/tex4ht/mn15.html - texmf-dist/doc/generic/tex4ht/mn16.html - texmf-dist/doc/generic/tex4ht/mn17.html - texmf-dist/doc/generic/tex4ht/mn19.html - texmf-dist/doc/generic/tex4ht/mn1x.gif - texmf-dist/doc/generic/tex4ht/mn2.html - texmf-dist/doc/generic/tex4ht/mn20.html - texmf-dist/doc/generic/tex4ht/mn21.html - texmf-dist/doc/generic/tex4ht/mn23.html - texmf-dist/doc/generic/tex4ht/mn24.html - texmf-dist/doc/generic/tex4ht/mn25.html - texmf-dist/doc/generic/tex4ht/mn27.html - texmf-dist/doc/generic/tex4ht/mn28.html - texmf-dist/doc/generic/tex4ht/mn29.html - texmf-dist/doc/generic/tex4ht/mn2x.gif - texmf-dist/doc/generic/tex4ht/mn3.html - texmf-dist/doc/generic/tex4ht/mn31.html - texmf-dist/doc/generic/tex4ht/mn32.html - texmf-dist/doc/generic/tex4ht/mn33.html - texmf-dist/doc/generic/tex4ht/mn34.html - texmf-dist/doc/generic/tex4ht/mn35.html - texmf-dist/doc/generic/tex4ht/mn36.html - texmf-dist/doc/generic/tex4ht/mn37.html - texmf-dist/doc/generic/tex4ht/mn38.html - texmf-dist/doc/generic/tex4ht/mn39.html - texmf-dist/doc/generic/tex4ht/mn3x.gif - texmf-dist/doc/generic/tex4ht/mn4.html - texmf-dist/doc/generic/tex4ht/mn40.html - texmf-dist/doc/generic/tex4ht/mn41.html - texmf-dist/doc/generic/tex4ht/mn42.html - texmf-dist/doc/generic/tex4ht/mn43.html - texmf-dist/doc/generic/tex4ht/mn44.html - texmf-dist/doc/generic/tex4ht/mn45.html - texmf-dist/doc/generic/tex4ht/mn46.html - texmf-dist/doc/generic/tex4ht/mn47.html - texmf-dist/doc/generic/tex4ht/mn48.html - texmf-dist/doc/generic/tex4ht/mn49.html - texmf-dist/doc/generic/tex4ht/mn4x.gif - texmf-dist/doc/generic/tex4ht/mn5.html - texmf-dist/doc/generic/tex4ht/mn50.html - texmf-dist/doc/generic/tex4ht/mn51.html - texmf-dist/doc/generic/tex4ht/mn52.html - texmf-dist/doc/generic/tex4ht/mn53.html - texmf-dist/doc/generic/tex4ht/mn54.html - texmf-dist/doc/generic/tex4ht/mn55.html - texmf-dist/doc/generic/tex4ht/mn56.html - texmf-dist/doc/generic/tex4ht/mn57.html - texmf-dist/doc/generic/tex4ht/mn58.html - texmf-dist/doc/generic/tex4ht/mn59.html - texmf-dist/doc/generic/tex4ht/mn6.html - texmf-dist/doc/generic/tex4ht/mn60.html - texmf-dist/doc/generic/tex4ht/mn7.html - texmf-dist/doc/generic/tex4ht/mn8.html - texmf-dist/doc/generic/tex4ht/mn9.html -catalogue-ctan /obsolete/support/TeX4ht -catalogue-date 2015-08-03 05:43:12 +0200 + RELOC/doc/latex/mfirstuc/CHANGES + RELOC/doc/latex/mfirstuc/README details="Readme" + RELOC/doc/latex/mfirstuc/mfirstuc-code.pdf details="Package code and documentation (PDF)" + RELOC/doc/latex/mfirstuc/mfirstuc-manual.html details="Package documentation (HTML)" + RELOC/doc/latex/mfirstuc/mfirstuc-manual.pdf details="User manual (PDF)" + RELOC/doc/latex/mfirstuc/mfirstuc-manual.tex + RELOC/doc/latex/mfirstuc/sample-mfirstuc.pdf + RELOC/doc/latex/mfirstuc/sample-mfirstuc.tex +srccontainersize 8392 +srccontainerchecksum 021d1e945d7033ed18d3df4a3a0756c9048e7a576bd5d64f1fa2f963292a9aadf0c5bea95b29e3468117ea4f02e4b83785517516d87a31bd85bfb6fa0133e734 +srcfiles size=10 + RELOC/source/latex/mfirstuc/mfirstuc.dtx + RELOC/source/latex/mfirstuc/mfirstuc.ins +runfiles size=6 + RELOC/scripts/mfirstuc/mfirstuc.perl + RELOC/tex/latex/mfirstuc/mfirstuc-english.sty + RELOC/tex/latex/mfirstuc/mfirstuc.sty +catalogue-ctan /macros/latex/contrib/mfirstuc +catalogue-date 2017-11-14 14:02:48 +0100 +catalogue-license lppl1.3 +catalogue-topics text-manip macro-supp +catalogue-version 2.06 + +name mflogo +category Package +revision 42428 +shortdesc LaTeX support for Metafont logo fonts +relocated 1 +longdesc LaTeX package and font definition file to access the Knuthian +longdesc mflogo fonts described in 'The Metafontbook' and to typeset +longdesc Metafont logos in LaTeX documents. +containersize 1604 +containerchecksum a1c5168e37fd9cbe5fc2714ee43143f36cec662441a7a9d33085652a5d6f769838d351faf416df6fda78529b5f8712f1a056afa47577fe925dcca5249f1fda38 +doccontainersize 239476 +doccontainerchecksum 6d1dabc636d22c824838a82da83a4676b20bb8a55dd1ab5628d00b4543096f91d234a51a312eb83544891910d923650f09e8911ec9db668f411735de6ef5bf3f +docfiles size=66 + RELOC/doc/latex/mflogo/CATALOGUE + RELOC/doc/latex/mflogo/Makefile + RELOC/doc/latex/mflogo/README details="Readme" + RELOC/doc/latex/mflogo/mflogo.pdf details="Package documentation" +srccontainersize 5728 +srccontainerchecksum 7078092cdbcba668ebb440ca6214eb155221427ceaf4d1f574d1055d2f1f52d288cfc0f1d2212f2a62903e447c4aeb378fade068ab901833ab9c251b1890e15a +srcfiles size=5 + RELOC/source/latex/mflogo/mflogo.dtx + RELOC/source/latex/mflogo/mflogo.ins +runfiles size=4 + RELOC/fonts/source/public/mflogo/logosl8.mf + RELOC/fonts/tfm/public/mflogo/logosl8.tfm + RELOC/tex/latex/mflogo/mflogo.sty + RELOC/tex/latex/mflogo/ulogo.fd +catalogue-ctan /macros/latex/contrib/mflogo +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font-supp +catalogue-version 2.0 + +name mflogo-font +category Package +revision 36898 +shortdesc Metafont logo font +relocated 1 +longdesc These fonts were created in Metafont by Knuth, for his own +longdesc publications. At some stage, the letters 'P' and 'S' were +longdesc added, so that the MetaPost logo could also be expressed. The +longdesc fonts were originally issued (of course) as Metafont source; +longdesc they have since been autotraced and reissued in Adobe Type 1 +longdesc format by Taco Hoekwater. +execute addMixedMap mflogo.map +containersize 18152 +containerchecksum 8be2b2456a14bc9a8a741a11b033a844bf529b511eb1173887eefab646922a37b82b5847cf94331ad34ad19bf6c75629687a7e490dc57e7ab7be473f751945b3 +doccontainersize 1072 +doccontainerchecksum aec625435ec638a6c36b7303d9fa81681f355460392f42d78cd820d98f7b6489b978980ada6962db5c1143057133d32fc7f314dbd60f606db4b69209de5626d2 +docfiles size=1 + RELOC/doc/fonts/mflogo-font/README details="Readme" +runfiles size=17 + RELOC/fonts/afm/hoekwater/mflogo-font/logo10.afm + RELOC/fonts/afm/hoekwater/mflogo-font/logo8.afm + RELOC/fonts/afm/hoekwater/mflogo-font/logo9.afm + RELOC/fonts/afm/hoekwater/mflogo-font/logobf10.afm + RELOC/fonts/afm/hoekwater/mflogo-font/logod10.afm + RELOC/fonts/afm/hoekwater/mflogo-font/logosl10.afm + RELOC/fonts/afm/hoekwater/mflogo-font/logosl8.afm + RELOC/fonts/afm/hoekwater/mflogo-font/logosl9.afm + RELOC/fonts/map/dvips/mflogo-font/mflogo.map + RELOC/fonts/type1/hoekwater/mflogo-font/logo10.pfb + RELOC/fonts/type1/hoekwater/mflogo-font/logo8.pfb + RELOC/fonts/type1/hoekwater/mflogo-font/logo9.pfb + RELOC/fonts/type1/hoekwater/mflogo-font/logobf10.pfb + RELOC/fonts/type1/hoekwater/mflogo-font/logod10.pfb + RELOC/fonts/type1/hoekwater/mflogo-font/logosl10.pfb + RELOC/fonts/type1/hoekwater/mflogo-font/logosl8.pfb + RELOC/fonts/type1/hoekwater/mflogo-font/logosl9.pfb +catalogue-ctan /fonts/mflogo/ps-type1/hoekwater +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license knuth +catalogue-topics font font-mf font-type1 +catalogue-version 1.002 + +name mflua +category TLCore +revision 50829 +shortdesc configuration and base files for MFLua +longdesc For information on this Lua-enabled Metafont, see, for example: +longdesc tug.org/TUGboat/tb32-2/tb101scarso.pdf. +depend metafont +depend luatex +depend mflua.ARCH +execute AddFormat name=mflua engine=mflua-nowin options="mf.ini" fmttriggers=luatex,metafont mode=disabled +containersize 31672 +containerchecksum a12e8a56228f0e3c49ef08a47c989135028ce6a99db714eee1304feaa31ae10ca5f030291ac56e9a344b54626247a521a909a18a35038333dbdce6553019e31f +runfiles size=48 + texmf-dist/metafont/mflua/mflua.ini + texmf-dist/metafont/mflua/mfluajit.ini + texmf-dist/metafont/mflua/mfluamodes.mf + texmf-dist/metafont/mflua/mfluaplain.mf + texmf-dist/scripts/mflua/end_program.lua + texmf-dist/scripts/mflua/mflua.lua + texmf-dist/scripts/mflua/mflua_svg_backend.lua + texmf-dist/scripts/mflua/mflua_ttx_backend.lua + +name mflua.aarch64-linux +category TLCore +revision 50853 +shortdesc aarch64-linux files of mflua +containersize 454692 +containerchecksum 738f7d905f2c8fd98cb8285defa4bebb2bd5f98f8b759ec14d4c71410a642c3cd0a61b007e12b11b88b5ff2c043857134758afb54fcbea363d699747b36b3f49 +binfiles arch=aarch64-linux size=372 + bin/aarch64-linux/mflua + bin/aarch64-linux/mflua-nowin + bin/aarch64-linux/mfluajit + bin/aarch64-linux/mfluajit-nowin + +name mflua.amd64-freebsd +category TLCore +revision 50853 +shortdesc amd64-freebsd files of mflua +containersize 614848 +containerchecksum 30ddeed6333e9f38d532d8dfe91eaa722afedda9f125aeaa96a3999dd80ceef952534ef0e44fa93e44be4124dcc1f8a6bf13dd790db11dca163e023fc5d50e9a +binfiles arch=amd64-freebsd size=485 + bin/amd64-freebsd/mflua + bin/amd64-freebsd/mflua-nowin + bin/amd64-freebsd/mfluajit + bin/amd64-freebsd/mfluajit-nowin + +name mflua.amd64-netbsd +category TLCore +revision 50860 +shortdesc amd64-netbsd files of mflua +containersize 512784 +containerchecksum 1d9bbf3f10cd18f7230ace9749003e46246421ba9e819695205e15dd75cc8b086309df67d87a621542d3a2bdb61cb92eb33e8986a5c765c667da8be043b807ca +binfiles arch=amd64-netbsd size=526 + bin/amd64-netbsd/mflua + bin/amd64-netbsd/mflua-nowin + bin/amd64-netbsd/mfluajit + bin/amd64-netbsd/mfluajit-nowin + +name mflua.armhf-linux +category TLCore +revision 50874 +shortdesc armhf-linux files of mflua +containersize 415096 +containerchecksum a3bfba3758d83efc4bdf53fe3468ffd0b9229679fd72d8285d87ac5a94b0e7a1972bddadc312b9c56ae167f054b5e034b4792a801d4d350b9b31945eda7fe105 +binfiles arch=armhf-linux size=319 + bin/armhf-linux/mflua + bin/armhf-linux/mflua-nowin + bin/armhf-linux/mfluajit + bin/armhf-linux/mfluajit-nowin + +name mflua.i386-cygwin +category TLCore +revision 50855 +shortdesc i386-cygwin files of mflua +containersize 164320 +containerchecksum 57ab5f0c5be305eec19458b072c65b9c921c623de0d3ec49e5c6656f7b566cbebed75997b24c2478030276768501ff93620213abf6065951d367904b9adaba8d +binfiles arch=i386-cygwin size=175 + bin/i386-cygwin/mflua-nowin + bin/i386-cygwin/mflua.exe + bin/i386-cygwin/mfluajit-nowin + bin/i386-cygwin/mfluajit.exe + +name mflua.i386-freebsd +category TLCore +revision 50853 +shortdesc i386-freebsd files of mflua +containersize 509892 +containerchecksum 80b9e87fa0ed51e1d0847792cc5db1684601842593a2609cb79c8982e404721c70350e3c6b81c7ac180f2124dec98a3629b373b72f4cc066fbfc59c2e18f8c5d +binfiles arch=i386-freebsd size=400 + bin/i386-freebsd/mflua + bin/i386-freebsd/mflua-nowin + bin/i386-freebsd/mfluajit + bin/i386-freebsd/mfluajit-nowin + +name mflua.i386-linux +category TLCore +revision 50853 +shortdesc i386-linux files of mflua +containersize 535820 +containerchecksum 9dfe14e5712a3e0ff7ab9cf518a2b69a98693d504981a5bd4dbb6e66c90eab9f4974552ac3ad2ead747a7999600098a015ecb5707a3abd15b862d6c4bb1aef1e +binfiles arch=i386-linux size=398 + bin/i386-linux/mflua + bin/i386-linux/mflua-nowin + bin/i386-linux/mfluajit + bin/i386-linux/mfluajit-nowin + +name mflua.i386-netbsd +category TLCore +revision 50860 +shortdesc i386-netbsd files of mflua +containersize 459704 +containerchecksum 69be17808064689ef02d3cf46383a8e6f00383234f946fe761316d50ef46bb4c741a4d18d5114b2a6ca15dd4d8c211a72449777eebb88bde0023f297f0afc84e +binfiles arch=i386-netbsd size=472 + bin/i386-netbsd/mflua + bin/i386-netbsd/mflua-nowin + bin/i386-netbsd/mfluajit + bin/i386-netbsd/mfluajit-nowin + +name mflua.i386-solaris +category TLCore +revision 50853 +shortdesc i386-solaris files of mflua +containersize 488324 +containerchecksum c27f8725c9ce4b3db7486ef7d763d2aabec9a6ca8c8d8fd1afe0b99dbf681fcc39fb5e89e68fab022316a8bf2e4153033bfa51565b1d2e0abc132d504c0f0679 +binfiles arch=i386-solaris size=335 + bin/i386-solaris/mflua + bin/i386-solaris/mflua-nowin + bin/i386-solaris/mfluajit + bin/i386-solaris/mfluajit-nowin + +name mflua.win32 +category TLCore +revision 50830 +shortdesc win32 files of mflua +containersize 727760 +containerchecksum 4b18a8caa617d8a7bbfbb868cf76fbc27b7e78248b32cb85ad4c90762a411042b7bcc1543ad007a461dfc07c7ed42dc100cfda2f29fab74c38d316ecb2ef2f3e +binfiles arch=win32 size=858 + bin/win32/mflua-nowin.exe + bin/win32/mflua.exe + bin/win32/mfluajit-nowin.exe + bin/win32/mfluajit.exe + +name mflua.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of mflua +containersize 166740 +containerchecksum 6b75ca8bbe8d0536a3d986f6cda9e737399d34e862e6f82d8f1c20f4b0b42edab5378ace2d326d780b2ffcd90b6d228a7b26551de5af41dcfa2ad846bab6dac9 +binfiles arch=x86_64-cygwin size=164 + bin/x86_64-cygwin/mflua-nowin + bin/x86_64-cygwin/mflua.exe + bin/x86_64-cygwin/mfluajit-nowin + bin/x86_64-cygwin/mfluajit.exe + +name mflua.x86_64-darwin +category TLCore +revision 50853 +shortdesc x86_64-darwin files of mflua +containersize 566472 +containerchecksum 8caf0a8225803679dbeea18713a855db62dcd8af543dcc3f88c40e00bd423b490e86b164e8f3db5d924c25cf24ffd5deb40a7bb09944465d5b71668530acd79e +binfiles arch=x86_64-darwin size=432 + bin/x86_64-darwin/mflua + bin/x86_64-darwin/mflua-nowin + bin/x86_64-darwin/mfluajit + bin/x86_64-darwin/mfluajit-nowin + +name mflua.x86_64-darwinlegacy +category TLCore +revision 50853 +shortdesc x86_64-darwinlegacy files of mflua +containersize 469352 +containerchecksum 24569dd435e52d4b9861096d57de60c9e846a88b3c7c67b3afe7c384b641a31dec4ee3bd113ab0e4e1b1c259f9f2c69dd96fe2dba1d4f88162a1fa45ad896b2b +binfiles arch=x86_64-darwinlegacy size=330 + bin/x86_64-darwinlegacy/mflua + bin/x86_64-darwinlegacy/mflua-nowin + bin/x86_64-darwinlegacy/mfluajit + bin/x86_64-darwinlegacy/mfluajit-nowin + +name mflua.x86_64-linux +category TLCore +revision 50853 +shortdesc x86_64-linux files of mflua +containersize 522792 +containerchecksum 0df58273603e3b8c73900742ccde594c29e616aea0b8a300c60df3c944aaaa6bc6de9c89a23a1ea4ab04269e9c8ebf81a3ed8534c8bf613a37537121a936bfd5 +binfiles arch=x86_64-linux size=373 + bin/x86_64-linux/mflua + bin/x86_64-linux/mflua-nowin + bin/x86_64-linux/mfluajit + bin/x86_64-linux/mfluajit-nowin + +name mflua.x86_64-linuxmusl +category TLCore +revision 50853 +shortdesc x86_64-linuxmusl files of mflua +containersize 539588 +containerchecksum 829a47b1dccc402b0ac5c69ce1da4c87b7122edcf6de979b8b4c9093aff67e22377ca5b3476c28dcd169801143b5456ad989cfa79957151f2ef99572a79f0efe +binfiles arch=x86_64-linuxmusl size=424 + bin/x86_64-linuxmusl/mflua + bin/x86_64-linuxmusl/mflua-nowin + bin/x86_64-linuxmusl/mfluajit + bin/x86_64-linuxmusl/mfluajit-nowin + +name mflua.x86_64-solaris +category TLCore +revision 50853 +shortdesc x86_64-solaris files of mflua +containersize 266144 +containerchecksum dbd475f8dcdd294a4d52a7042fb76c84930c81f837425ed29d5a07584ffa7334e8a4b0d308d2ddd31ed82bb375ae946bfdfc093cc3560e01e8a297750be67019 +binfiles arch=x86_64-solaris size=156 + bin/x86_64-solaris/mflua + bin/x86_64-solaris/mflua-nowin + +name mfnfss +category Package +revision 46036 +shortdesc Packages to typeset oldgerman and pandora fonts in LaTeX +relocated 1 +longdesc This bundle contains two packages: - oldgerm, a package to +longdesc typeset with old german fonts designed by Yannis Haralambous. - +longdesc pandora, a package to typeset with Pandora fonts designed by +longdesc Neena Billawala. Note that support for the Pandora fonts is +longdesc also available via the pandora-latex package. +containersize 2140 +containerchecksum 33206fb4cb7ce8f18050d713be415abb95323599270b2b91c886e2ac3f24a58786a480e5d4d1ad6ad2083456231eacf94dc769b26e6cae7288e996c6e14bea29 +doccontainersize 448320 +doccontainerchecksum f8421e58ede77c8817679fcdcb43fecfc519427b3cb93ed2594fef5c8ac8124e0563a2182803a2a6bc417982df298abc7fe092f1cae5ed7583e2fa6fe94c8345 +docfiles size=121 + RELOC/doc/latex/mfnfss/README.md + RELOC/doc/latex/mfnfss/changes.txt + RELOC/doc/latex/mfnfss/manifest.txt + RELOC/doc/latex/mfnfss/oldgerm.pdf details="Documentation of the Old German support" + RELOC/doc/latex/mfnfss/pandora.pdf +srccontainersize 17544 +srccontainerchecksum 2bd5aee80abf38884cc4a3ad6d6226243a6ffe0d2e879101aee56168a10cd0c7293eec7ccf53c7a7e8087ca94398e3f4ef38d71ccbbfe48677ffee3f8b813bc9 +srcfiles size=16 + RELOC/source/latex/mfnfss/oldgerm.dtx + RELOC/source/latex/mfnfss/oldgerm.ins + RELOC/source/latex/mfnfss/pandora.dtx + RELOC/source/latex/mfnfss/pandora.ins +runfiles size=8 + RELOC/tex/latex/mfnfss/oldgerm.sty + RELOC/tex/latex/mfnfss/ot1panr.fd + RELOC/tex/latex/mfnfss/ot1pss.fd + RELOC/tex/latex/mfnfss/pandora.sty + RELOC/tex/latex/mfnfss/uyfrak.fd + RELOC/tex/latex/mfnfss/uygoth.fd + RELOC/tex/latex/mfnfss/uyinit.fd + RELOC/tex/latex/mfnfss/uyswab.fd +catalogue-contact-bugs https://github.com/FrankMittelbach/historical-fmitex/issues +catalogue-contact-repository https://github.com/FrankMittelbach/historical-fmitex/tree/master/mfnfss +catalogue-ctan /macros/latex/contrib/mfnfss +catalogue-date 2017-12-10 23:04:16 +0100 +catalogue-license lppl +catalogue-topics font-supp + +name mfpic +category Package +revision 28444 +shortdesc Draw Metafont/post pictures from (La)TeX commands +relocated 1 +longdesc Mfpic is a scheme for producing pictures from (La)TeX commands. +longdesc Commands \mfpic and \endmfpic (in LaTeX, the mfpic environment) +longdesc enclose a group in which drawing commands may be placed. The +longdesc commands generate a Meta-language file, which may be processed +longdesc by MetaPost (or even Metafont). The resulting image file will +longdesc be read back in to the document to place the picture at the +longdesc point where the original (La)TeX commands appeared. Note that +longdesc the ability to use MetaPost here means that the package works +longdesc equally well in LaTeX and pdfLaTeX. +containersize 47052 +containerchecksum 361983a020165d094bcd0fc9616be74bd2b5c72542b1e1b257b5ec42ac6be1175caf59c79e156da2bf6fecfe3746b4e33a4a8fc978eb124939ce0ffd2c383081 +doccontainersize 1174196 +doccontainerchecksum 97ec26cc1ed8e181c7d69af264204772c9075e3650044b58cad938fd6918f9cbf5c849699e31846f437e41410492b67668a7ec33e848cf6b5fb9c2d52d7a7947 +docfiles size=389 + RELOC/doc/generic/mfpic/README details="Readme" + RELOC/doc/generic/mfpic/changes.txt + RELOC/doc/generic/mfpic/coil.mps + RELOC/doc/generic/mfpic/examples/data.dat + RELOC/doc/generic/mfpic/examples/forfun.tex + RELOC/doc/generic/mfpic/examples/lapictures.tex + RELOC/doc/generic/mfpic/examples/pictures.tex + RELOC/doc/generic/mfpic/install.txt + RELOC/doc/generic/mfpic/lcheadings.ist + RELOC/doc/generic/mfpic/mfpcard.pdf details="Quick reference" language="en" + RELOC/doc/generic/mfpic/mfpcard.tex + RELOC/doc/generic/mfpic/mfpdoc.sty + RELOC/doc/generic/mfpic/mfpguide.pdf details="Short introduction" language="en" + RELOC/doc/generic/mfpic/mfpguide.tex + RELOC/doc/generic/mfpic/mfpic-doc.pdf details="Mfpic manual" language="en" + RELOC/doc/generic/mfpic/mfpic-doc.tex +srccontainersize 166720 +srccontainerchecksum 609b960a70d47edbb814c981c5cb03b91fd19e905f8caed599be2488e0ed9ef0bfe01af79353015e0d6dd2fcda6810bde10ec4d8e993356bb7371ed2805988c8 +srcfiles size=163 + RELOC/source/generic/mfpic/grafbase.dtx + RELOC/source/generic/mfpic/mfpic.dtx + RELOC/source/generic/mfpic/mfpic.ins +runfiles size=76 + RELOC/metafont/mfpic/grafbase.mf + RELOC/metapost/mfpic/dvipsnam.mp + RELOC/metapost/mfpic/grafbase.mp + RELOC/tex/generic/mfpic/mfpic.sty + RELOC/tex/generic/mfpic/mfpic.tex + RELOC/tex/generic/mfpic/mfpicdef.tex +catalogue-also mkpic +catalogue-ctan /graphics/mfpic +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics graphics-in-tex +catalogue-version 1.10 + +name mfpic4ode +category Package +revision 17745 +shortdesc Macros to draw direction fields and solutions of ODEs +relocated 1 +longdesc The package is a small set of macros for drawing direction +longdesc fields, phase portraits and trajectories of differential +longdesc equations and two dimensional autonomous systems. The Euler, +longdesc Runge-Kutta and 4th order Runge-Kutta algorithms are available +longdesc to solve the ODEs. The picture is translated into mfpic macros +longdesc and MetaPost is used to create the final drawing. The package +longdesc is was designed for use with LaTeX, but it can be used in plain +longdesc TeX as well. Online demonstration of the mfpic4ode macros is +longdesc available on the Mfpic Previewer as Example 6. +containersize 2408 +containerchecksum 4f3a314afb6b1f8c4fb07421244f2a05747f5d24194659053c561ba24ed90f325e82ab9d97981af6455081580f75e9e8f75d11f06aef9e1c027ed0f9bf17696b +doccontainersize 629724 +doccontainerchecksum 9d5f38873cd94fc3248b619f68e04bdb1824eb1249cf02e555a60c3e84dcab78d3e04f9451e1803943e898ed7f55e33615f673da8c58569219650976c25f0ae4 +docfiles size=172 + RELOC/doc/latex/mfpic4ode/README details="Readme" + RELOC/doc/latex/mfpic4ode/demo/demo-plain.pdf + RELOC/doc/latex/mfpic4ode/demo/demo-plain.tex + RELOC/doc/latex/mfpic4ode/demo/demo.pdf details="Examples of use" + RELOC/doc/latex/mfpic4ode/demo/demo.tex + RELOC/doc/latex/mfpic4ode/mfpic4ode.pdf details="Package documentation" +srccontainersize 5680 +srccontainerchecksum b5de6dee490578bc460f76ccb606b5d62d4f6f2c43e2f9967085f1a323ba287cfc596da70905a40e1ac602074323940a9e42ba8096a9a35190ca280217b2e10e +srcfiles size=5 + RELOC/source/latex/mfpic4ode/mfpic4ode.dtx + RELOC/source/latex/mfpic4ode/mfpic4ode.ins +runfiles size=3 + RELOC/tex/latex/mfpic4ode/mfpic4ode.sty + RELOC/tex/latex/mfpic4ode/mfpic4ode.tex +catalogue-ctan /macros/latex/contrib/mfpic4ode +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-plotfn maths +catalogue-version 0.4 + +name mftinc +category Package +revision 15878 +shortdesc Pretty-print Metafont source +relocated 1 +longdesc The mft program pretty-prints Metafont source code into a TeX +longdesc file. The mftinc package facilitates incorporating such files +longdesc into a LaTeX2e document. In addition, mftinc provides routines +longdesc for improved comment formatting and for typesetting font +longdesc tables. +containersize 2936 +containerchecksum 64fa5f38398a626d5a351be7ad866c75feb4549f836932dc936cb99f921e7b8abe5b3d6fc1e1e6c427344606ee5dacaf067d8678e7b199fa1ff8d5c94cbffa49 +doccontainersize 251032 +doccontainerchecksum 0846744cfd86bbcd8b6ad90d58bfe5788a79f43d05f3cf6f438fdef50cc4872ad8ec4d32005ced9ea9c424f3e86a799d79b0baf2a9544a3018531a99cd81fd5e +docfiles size=72 + RELOC/doc/latex/mftinc/README details="Readme" + RELOC/doc/latex/mftinc/mftinc.pdf details="Package documentation" +srccontainersize 17248 +srccontainerchecksum 50ca90a2f48970b3cca5552a361337ed138b4a9e31bca2766eb429cdceac2a09adc1cafa6c444c514fabe71c38ed82a63b847e1da014f2c131a15c362efaf09f +srcfiles size=16 + RELOC/source/latex/mftinc/mftinc.dtx + RELOC/source/latex/mftinc/mftinc.ins +runfiles size=2 + RELOC/tex/latex/mftinc/mftinc.sty +catalogue-also docmfp +catalogue-ctan /macros/latex/contrib/mftinc +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics listing +catalogue-version 1.0a + +name mfware +category TLCore +revision 50602 +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 3200 +containerchecksum 9379a31291d572743dd3d8f82e32e7057d686ef12d321e1f4c179df1d9d64116a61c7741b2be5b08a0f396e69b6c567e40cfb66141dae7a95ae3910366214a37 +doccontainersize 101288 +doccontainerchecksum f22a628dfe7d1566efa13502f38ac399e17bd90fd274a0fe4fba98de25bd24b6a3526bc0124e24277979ca42af8c01898f71e9bd9e1027a899b12c74c6ac205e +docfiles size=42 + texmf-dist/doc/man/man1/gftodvi.1 + texmf-dist/doc/man/man1/gftodvi.man1.pdf + texmf-dist/doc/man/man1/gftopk.1 + texmf-dist/doc/man/man1/gftopk.man1.pdf + texmf-dist/doc/man/man1/gftype.1 + texmf-dist/doc/man/man1/gftype.man1.pdf + texmf-dist/doc/man/man1/mft.1 + texmf-dist/doc/man/man1/mft.man1.pdf + texmf-dist/doc/man/man1/pktogf.1 + texmf-dist/doc/man/man1/pktogf.man1.pdf + texmf-dist/doc/man/man1/pktype.1 + texmf-dist/doc/man/man1/pktype.man1.pdf +runfiles size=4 + texmf-dist/mft/base/README + texmf-dist/mft/base/cmbase.mft + texmf-dist/mft/base/mplain.mft + texmf-dist/mft/base/plain.mft +catalogue-contact-bugs http://lists.tug.org/tex-k +catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-contact-support http://lists.tug.org/tex-k +catalogue-ctan /systems/knuth/dist/mfware +catalogue-date 2018-12-31 06:12:45 +0100 +catalogue-license knuth +catalogue-topics collection + +name mfware.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of mfware +containersize 109736 +containerchecksum 9fab5300e66d237e271fd6f5c150232313f3b23c08bd23cf044a15a37af8f9dca2f3fc953aa4e5d055b73af00f6723249557ffdb47a5780f90f35fefbdb8ea77 +binfiles arch=aarch64-linux size=146 + bin/aarch64-linux/gftodvi + bin/aarch64-linux/gftopk + bin/aarch64-linux/gftype + bin/aarch64-linux/mft + bin/aarch64-linux/pktogf + bin/aarch64-linux/pktype + +name mfware.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of mfware +containersize 132764 +containerchecksum c7859d05e19a1dcac08a0d1dce49440f3edd41e4c50304cd026f97deeb017e935f78684ba1659987ef7d1c007f33ad9ffc64d56f78d4df7dcc40de2590bc8147 +binfiles arch=amd64-freebsd size=160 + bin/amd64-freebsd/gftodvi + bin/amd64-freebsd/gftopk + bin/amd64-freebsd/gftype + bin/amd64-freebsd/mft + bin/amd64-freebsd/pktogf + bin/amd64-freebsd/pktype + +name mfware.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of mfware +containersize 119816 +containerchecksum 7f500df2ae5384e504b3257107896194dc38552e92b2034a2482ef4edac6db9cf1248e5f44bf535ccb02ddcd5f072d13391d2a23a117ceada49eb12e5d3f2073 +binfiles arch=amd64-netbsd size=186 + bin/amd64-netbsd/gftodvi + bin/amd64-netbsd/gftopk + bin/amd64-netbsd/gftype + bin/amd64-netbsd/mft + bin/amd64-netbsd/pktogf + bin/amd64-netbsd/pktype + +name mfware.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of mfware +containersize 89008 +containerchecksum 277b86538107360eee15c5cb5e6c5add16a8ba6fbf166e0f18f235b0b4a76250f18b0ba88e43a00c8212803f9c12c85048ee4a24d54856d90ea13721a1379cce +binfiles arch=armhf-linux size=128 + bin/armhf-linux/gftodvi + bin/armhf-linux/gftopk + bin/armhf-linux/gftype + bin/armhf-linux/mft + bin/armhf-linux/pktogf + bin/armhf-linux/pktype + +name mfware.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of mfware +containersize 50812 +containerchecksum b481bb85b7f38919fc4d72295e863edd0c843fda04421c049dd4dd60959ef05f7b107efb13b106c584de2e72de46807c6ac7d3ba92f97573bf3695ab0a6c9102 +binfiles arch=i386-cygwin size=47 + bin/i386-cygwin/gftodvi.exe + bin/i386-cygwin/gftopk.exe + bin/i386-cygwin/gftype.exe + bin/i386-cygwin/mft.exe + bin/i386-cygwin/pktogf.exe + bin/i386-cygwin/pktype.exe + +name mfware.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of mfware +containersize 107264 +containerchecksum 32cde16cb09239548cf6bd68e2df03f7cd9b3ee2527212037319def51fbf56531c6bc6bc97c0aa80431f57e39ed8ffe865a22463cc131b94afd709eec05f07f3 +binfiles arch=i386-freebsd size=130 + bin/i386-freebsd/gftodvi + bin/i386-freebsd/gftopk + bin/i386-freebsd/gftype + bin/i386-freebsd/mft + bin/i386-freebsd/pktogf + bin/i386-freebsd/pktype + +name mfware.i386-linux +category TLCore +revision 50281 +shortdesc i386-linux files of mfware +containersize 114380 +containerchecksum 900d1319b20a9f3567f39ee29b5546d260da5bc350476461176a5ccff276c928ccc539604e871f21c073f03b0c6e1b3b6bcecea4bbc1bb53520d277ac5ff50b0 +binfiles arch=i386-linux size=164 + bin/i386-linux/gftodvi + bin/i386-linux/gftopk + bin/i386-linux/gftype + bin/i386-linux/mft + bin/i386-linux/pktogf + bin/i386-linux/pktype + +name mfware.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of mfware +containersize 102200 +containerchecksum 45236ab855016e58cb85893beab402f4239c6d4a482b9f01a8d408e0e1b2a1fff948983e555535e1eb9be2ef72fda797c5cf64e14479759b8933a03a7147eafc +binfiles arch=i386-netbsd size=172 + bin/i386-netbsd/gftodvi + bin/i386-netbsd/gftopk + bin/i386-netbsd/gftype + bin/i386-netbsd/mft + bin/i386-netbsd/pktogf + bin/i386-netbsd/pktype + +name mfware.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of mfware +containersize 123976 +containerchecksum 15b6087ccbb1a8da425b82a9b005dbfd92ec6a456e8d749c9efa28cf04eb196ed514b90bad3b75e5fc6fbd4d585e13f9c36731ac2180681f61a51a82f2951619 +binfiles arch=i386-solaris size=147 + bin/i386-solaris/gftodvi + bin/i386-solaris/gftopk + bin/i386-solaris/gftype + bin/i386-solaris/mft + bin/i386-solaris/pktogf + bin/i386-solaris/pktype + +name mfware.win32 +category TLCore +revision 50155 +shortdesc win32 files of mfware +containersize 58804 +containerchecksum 1c6e30345ce626a82b512f8bab67a00f45a1e5d69106d18787f9ac0e310e2cf6f4093b8ba6db92e3c84d67356683805c2c6734452d8ed2796696f5399fab2dda +binfiles arch=win32 size=45 + bin/win32/gftodvi.exe + bin/win32/gftopk.exe + bin/win32/gftype.exe + bin/win32/mft.exe + bin/win32/pktogf.exe + bin/win32/pktype.exe + +name mfware.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of mfware +containersize 62148 +containerchecksum 0aa840ea3022efba03e67165a4ee9989ab2f079a77f8274310de69522703e8171c8d4125ba7d7a07c826b735b31047f0605f1a6f5c531f773b79592657019cb6 +binfiles arch=x86_64-cygwin size=48 + bin/x86_64-cygwin/gftodvi.exe + bin/x86_64-cygwin/gftopk.exe + bin/x86_64-cygwin/gftype.exe + bin/x86_64-cygwin/mft.exe + bin/x86_64-cygwin/pktogf.exe + bin/x86_64-cygwin/pktype.exe + +name mfware.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of mfware +containersize 121108 +containerchecksum 7ef1b8b0a504916505b4aa8bb402b75516e9ed2c0c1ad3b7041bff1dc703e40e4c388dccf0c0c27a46b3579f3a6077b17545072bab3e52bb117d59f01d49bdab +binfiles arch=x86_64-darwin size=148 + bin/x86_64-darwin/gftodvi + bin/x86_64-darwin/gftopk + bin/x86_64-darwin/gftype + bin/x86_64-darwin/mft + bin/x86_64-darwin/pktogf + bin/x86_64-darwin/pktype + +name mfware.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of mfware +containersize 115764 +containerchecksum c3860cceb7f7bd74297bd64240dc69af8fd5ea0491845fe10d411ef77c2caa05f0554a34d96074adbe06e7a335bd9611e2c8b07e21e4f6e6533725dcef99f95c +binfiles arch=x86_64-darwinlegacy size=148 + bin/x86_64-darwinlegacy/gftodvi + bin/x86_64-darwinlegacy/gftopk + bin/x86_64-darwinlegacy/gftype + bin/x86_64-darwinlegacy/mft + bin/x86_64-darwinlegacy/pktogf + bin/x86_64-darwinlegacy/pktype + +name mfware.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of mfware +containersize 122432 +containerchecksum 3628d9bf04db4ba44e00d65a71aff09cfb76af51a1cdfad2dc37b0a03dea262de7f153dded36419dc03a9107c3b2a386a127205c64e055bd9200d15792ea5f7b +binfiles arch=x86_64-linux size=145 + bin/x86_64-linux/gftodvi + bin/x86_64-linux/gftopk + bin/x86_64-linux/gftype + bin/x86_64-linux/mft + bin/x86_64-linux/pktogf + bin/x86_64-linux/pktype + +name mfware.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of mfware +containersize 128884 +containerchecksum 4d41eb5d74fdf5a1ffa85e3dcd9e19d9dab511439faaf78cc25d7fbd5065b763459795df04dc8694bc9246811ddee9371a2cb5bf8c8555a9b130f27c47adf460 +binfiles arch=x86_64-linuxmusl size=169 + bin/x86_64-linuxmusl/gftodvi + bin/x86_64-linuxmusl/gftopk + bin/x86_64-linuxmusl/gftype + bin/x86_64-linuxmusl/mft + bin/x86_64-linuxmusl/pktogf + bin/x86_64-linuxmusl/pktype + +name mfware.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of mfware +containersize 143652 +containerchecksum fd49f375a8e76d1802beae5998bfff0cc3c88768025ef9320fd9373a8883494cc5892271d7033fc8d71d17aab3bbe1dc6d529a59afa79139f5b519ec52ca2def +binfiles arch=x86_64-solaris size=171 + bin/x86_64-solaris/gftodvi + bin/x86_64-solaris/gftopk + bin/x86_64-solaris/gftype + bin/x86_64-solaris/mft + bin/x86_64-solaris/pktogf + bin/x86_64-solaris/pktype + +name mgltex +category Package +revision 41676 +shortdesc High-quality graphics from MGL scripts embedded in LaTeX documents +relocated 1 +longdesc This package allows you to create high-quality +longdesc publication-ready graphics directly from MGL scripts embedded +longdesc into your LaTeX document, using the MathGL library. Besides +longdesc following the LaTeX philosophy of allowing you to concentrate +longdesc on content rather than output (mglTeX takes care of producing +longdesc the output), mglTeX facilitates the maintenance of your +longdesc document, since both code for text and code for plots are +longdesc contained in a single file. MathGL. is a fast and efficient +longdesc library by Alexey Balakin for the creation of high-quality +longdesc publication-ready scientific graphics. Although it defines +longdesc interfaces for many programming languages, it also implements +longdesc its own scripting language, called MGL, which can be used +longdesc independently. +containersize 6364 +containerchecksum f9d98f3e964ecefaf420ecdbdf7187300613bd22df092714ba5b5e945b47c2b24b95dbdb22abb92725a7fdc1ca1fcc88cd14cef1cd1f241c02ce26328951d751 +doccontainersize 1747732 +doccontainerchecksum 3a987e0ac6ad678887e9a2aabb18d772a3bbe4d1d10d53184887f95191961b692d231c1a7942c3383a5468098432807030a0d3877c5f3b0e271d8b7efb1366df +docfiles size=521 + RELOC/doc/latex/mgltex/README details="Readme" + RELOC/doc/latex/mgltex/Recompilation_decision.eps + RELOC/doc/latex/mgltex/Recompilation_decision.pdf + RELOC/doc/latex/mgltex/Recompilation_decision.svg + RELOC/doc/latex/mgltex/mgltex.pdf details="Package documentation" + RELOC/doc/latex/mgltex/sample.pdf + RELOC/doc/latex/mgltex/sample.tex +srccontainersize 31240 +srccontainerchecksum 3467c64e09fd1d988619e93df1e2313639d2b8c95faac62db5d17d615d56e868c06be917624957efd7528b50cd16cdabeea1cf0647c347061632c57fe99543b9 +srcfiles size=40 + RELOC/source/latex/mgltex/mgltex.dtx + RELOC/source/latex/mgltex/mgltex.ins +runfiles size=7 + RELOC/tex/latex/mgltex/mgltex.sty +catalogue-ctan /graphics/mgltex +catalogue-date 2016-07-12 07:05:39 +0200 +catalogue-license gpl3 +catalogue-topics maths graphics-plot graphics-plotfn +catalogue-version 4.2 + +name mhchem +category Package +revision 48088 +shortdesc Typeset chemical formulae/equations and Risk and Safety phrases +relocated 1 +longdesc The bundle provides three packages: The mhchem package provides +longdesc commands for typesetting chemical molecular formulae and +longdesc equations. The hpstatement package provides commands for the +longdesc official hazard statements and precautionary statements (H and +longdesc P statements) that are used to label chemicals. The rsphrase +longdesc package provides commands for the official Risk and Safety (R +longdesc and S) Phrases that are used to label chemicals. The package +longdesc requires the expl3 bundle. +depend chemgreek +containersize 51492 +containerchecksum c6ab7b1a02d2b4c510e487d86857ca82b2d9e9b46a786b6067b91a097246ccd40e24aee09b2140ac2b5446f7b12d85614b31ce75d45641d923bbd77411696781 +doccontainersize 285508 +doccontainerchecksum 832897ccbc039a46d0c5e0c3c8dca172ac54451b8d22a5d275acd6fdd30f6119ed13345b0b473c44edff3c8cde47480e6fb3424b795db55957d40bed08a1def1 +docfiles size=88 + RELOC/doc/latex/mhchem/README details="Readme" + RELOC/doc/latex/mhchem/lppl-1-3c.txt + RELOC/doc/latex/mhchem/manifest.txt + RELOC/doc/latex/mhchem/mhchem.pdf details="Package documentation" + RELOC/doc/latex/mhchem/mhchem.tex +runfiles size=109 + RELOC/tex/latex/mhchem/hpstatement.sty + RELOC/tex/latex/mhchem/mhchem.sty + RELOC/tex/latex/mhchem/rsphrase.sty +catalogue-also r-und-s +catalogue-ctan /macros/latex/contrib/mhchem +catalogue-date 2018-06-24 22:16:57 +0200 +catalogue-license lppl1.3c +catalogue-topics safety-notice chemistry + +name mhequ +category Package +revision 38224 +shortdesc Multicolumn equations, tags, labels, sub-numbering +relocated 1 +longdesc MHequ simplifies creating multi-column equation environments, +longdesc and tagging the equations therein. It supports sub-numbers of +longdesc blocks of equations (like (1.2a), (1.2b), etc) and references +longdesc to each equation individually (1.2a) or to the whole block +longdesc (1.2). The labels can be shown in draft mode. Comments in the +longdesc package itself describe usage. +containersize 4264 +containerchecksum 90f7dabe6486f6566ad6f835838ddf58a6568364ca2b5a82ea9cb96f283c5025c1f93fb50bac98405e8200de32b2c27e592e401a44fab691331fe4f77d27a202 +doccontainersize 100304 +doccontainerchecksum 0d7a258a96604328231c1784f218ef3351f9ef02a0a9a9da42db36c89324ab5f74559f3ea91c12553ec5a39d14b3a5f282f61ab9e001994e22e266ce394df26c +docfiles size=27 + RELOC/doc/latex/mhequ/README details="Readme" + RELOC/doc/latex/mhequ/example.pdf details="Examples of package use" + RELOC/doc/latex/mhequ/example.tex +runfiles size=3 + RELOC/tex/latex/mhequ/mhequ.sty +catalogue-ctan /macros/latex/contrib/mhequ +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license pd +catalogue-topics maths +catalogue-version 1.7 + +name mi-solns +category Package +revision 49651 +shortdesc Extract solutions from exercises and quizzes +relocated 1 +longdesc This package is designed to mark a solution environment of an +longdesc exercise or quiz and insert it into the same or a different +longdesc document. Solutions are ones created by either the exerquiz or +longdesc eqexam package. All PDF creators are supported. +containersize 2296 +containerchecksum ac5beb872c78675bc9df379f8a2afe533647a1c39781c57fed2cec6e610cafbbb45a4fdcbd9826cb123a584e121ff752633d6c990109bb1f619b1d9fac6906de +doccontainersize 459540 +doccontainerchecksum cfd36e0a1476e0d148fb36f350ec236d57beb2c0b27f08eb56f69683790b16425a6f95b4f93a010fe0d450863fb34a7eb31b1c8e40fbe5319df128439dfa5372 +docfiles size=135 + RELOC/doc/latex/mi-solns/README.md details="Readme" + RELOC/doc/latex/mi-solns/docs/mi-solns.pdf details="Package documentation" + RELOC/doc/latex/mi-solns/docs/mi-solnsman.pdf details="User manual" + RELOC/doc/latex/mi-solns/docs/mi-solnsman.tex + RELOC/doc/latex/mi-solns/examples/create-db.tex + RELOC/doc/latex/mi-solns/examples/mi-solns-eq.tex + RELOC/doc/latex/mi-solns/examples/mi-solns-eqe.tex + RELOC/doc/latex/mi-solns/examples/use-db.tex +srccontainersize 6528 +srccontainerchecksum cf41fb6338270f2fbf56b33b9d0b3b6904f06a84b99dc8fc0613e10644b3f198b22634cd82b78bd50b236415ec6b8d46c9d0d99728480782459f514d2086426c +srcfiles size=6 + RELOC/source/latex/mi-solns/mi-solns.dtx + RELOC/source/latex/mi-solns/mi-solns.ins +runfiles size=2 + RELOC/tex/latex/mi-solns/mi-solns.sty +catalogue-ctan /macros/latex/contrib/mi-solns +catalogue-date 2019-01-12 06:10:36 +0100 +catalogue-license lppl1.2 +catalogue-topics exercise exam +catalogue-version 0.6 + +name miama +category Package +revision 39837 +shortdesc The Miama Nueva handwriting font with LaTeX support +relocated 1 +longdesc Miama Nueva is a handwriting / script font with over 1300 +longdesc glyphs that supports latin, cyrillic, and greek. It comes +longdesc complete with LaTeX support. +execute addMap miama.map +containersize 518716 +containerchecksum 382f9f59db1bee6c83b601682ae64bba1a1cf955ce40eee571327650f856631f9957af2b0500aa2f638710c50c8fdb3443b1099947be100c33351f54cc510c6a +doccontainersize 310388 +doccontainerchecksum af9b92f1b0870376fc8f70e6db395561fe17db3f6baa62660235aa9ec4f8f0b7f02f7202a49f146733335255a858ba6924335b43a04ddd35f099550886723290 +docfiles size=89 + RELOC/doc/fonts/miama/README details="Readme" + RELOC/doc/fonts/miama/miama.pdf details="Package documentation" +srccontainersize 5792 +srccontainerchecksum 44aa667f75e44e7df02f59706f363e92c3fd0488fd640b25d2902e32d5a14fdba109c3a01cfce37c0e47e75f35e92fc788746b53b5809b93990707e994fdd71b +srcfiles size=7 + RELOC/source/fonts/miama/miama.dtx + RELOC/source/fonts/miama/miama.ins +runfiles size=323 + RELOC/fonts/afm/public/miama/miama.afm + RELOC/fonts/enc/dvips/miama/lgr-miama.enc + RELOC/fonts/enc/dvips/miama/ot1-miama.enc + RELOC/fonts/enc/dvips/miama/qx-miama.enc + RELOC/fonts/enc/dvips/miama/t1-miama.enc + RELOC/fonts/enc/dvips/miama/t2a-miama.enc + RELOC/fonts/enc/dvips/miama/t2b-miama.enc + RELOC/fonts/enc/dvips/miama/t2c-miama.enc + RELOC/fonts/enc/dvips/miama/t5-miama.enc + RELOC/fonts/enc/dvips/miama/x2-miama.enc + RELOC/fonts/map/dvips/miama/miama.map + RELOC/fonts/opentype/public/miama/miama.otf + RELOC/fonts/tfm/public/miama/miama-lgr.tfm + RELOC/fonts/tfm/public/miama/miama-ot1.tfm + RELOC/fonts/tfm/public/miama/miama-qx.tfm + RELOC/fonts/tfm/public/miama/miama-t1.tfm + RELOC/fonts/tfm/public/miama/miama-t2a.tfm + RELOC/fonts/tfm/public/miama/miama-t2b.tfm + RELOC/fonts/tfm/public/miama/miama-t2c.tfm + RELOC/fonts/tfm/public/miama/miama-t5.tfm + RELOC/fonts/tfm/public/miama/miama-x2.tfm + RELOC/fonts/type1/public/miama/miama.pfb + RELOC/tex/latex/miama/lgrfmm.fd + RELOC/tex/latex/miama/miama.sty + RELOC/tex/latex/miama/ot1fmm.fd + RELOC/tex/latex/miama/qxfmm.fd + RELOC/tex/latex/miama/t1fmm.fd + RELOC/tex/latex/miama/t2afmm.fd + RELOC/tex/latex/miama/t2bfmm.fd + RELOC/tex/latex/miama/t2cfmm.fd + RELOC/tex/latex/miama/t5fmm.fd + RELOC/tex/latex/miama/x2fmm.fd +catalogue-ctan /fonts/miama +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics font-calligraphic font-cyrillic font-greek font-otf font-type1 +catalogue-version 1.0 + +name microtype +category Package +revision 50187 +shortdesc Subliminal refinements towards typographical perfection +relocated 1 +longdesc The package provides a LaTeX interface to the micro-typographic +longdesc extensions that were introduced by pdfTeX and have since also +longdesc propagated to XeTeX and LuaTeX: most prominently, character +longdesc protrusion and font expansion, furthermore the adjustment of +longdesc interword spacing and additional kerning, as well as +longdesc hyphenatable letterspacing (tracking) and the possibility to +longdesc disable all or selected ligatures. These features may be +longdesc applied to customisable sets of fonts, and all +longdesc micro-typographic aspects of the fonts can be configured in a +longdesc straight-forward and flexible way. Settings for various fonts +longdesc are provided. Note that character protrusion requires pdfTeX, +longdesc LuaTeX, or XeTeX. Font expansion works with pdfTeX or LuaTeX. +longdesc The package will by default enable protrusion and expansion if +longdesc they can safely be assumed to work. Disabling ligatures +longdesc requires pdfTeX or LuaTeX, while the adjustment of interword +longdesc spacing and of kerning only works with pdfTeX. Letterspacing is +longdesc available with pdfTeX or LuaTeX. The alternative package +longdesc `letterspace', which also works with plain TeX, provides the +longdesc user commands for letterspacing only, omitting support for all +longdesc other extensions. +containersize 45244 +containerchecksum b7a315e28a4014b17eec691a991ac03e2defc3acbf97c35688ea95c1d382da52272a0808ecc010e53e68c47c1474ad3308f4d8c3010493a716d25d8db6fc24c2 +doccontainersize 1630056 +doccontainerchecksum 7edfc8767d4a6902ec97d4e2dda818f03b0c868abe06ef221f6571bae0dabd9318d439845cce796d47494b2694c84dac9c41d9cd09e55bf224db7b0af678f065 +docfiles size=412 + RELOC/doc/latex/microtype/README.md details="Package README" + RELOC/doc/latex/microtype/microtype.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/microtype/test-microtype.tex +srccontainersize 141004 +srccontainerchecksum 995827403cfed4a1317d19df38fb0aac5b211ff1d21f83e687aec572f6e08a73fa51828793cec86266d20558274a31189d07386d66ffabf253ff0ae03bd17e48 +srcfiles size=171 + RELOC/source/latex/microtype/microtype-utf.dtx + RELOC/source/latex/microtype/microtype.dtx + RELOC/source/latex/microtype/microtype.ins +runfiles size=105 + RELOC/tex/latex/microtype/letterspace.sty + RELOC/tex/latex/microtype/microtype-luatex.def + RELOC/tex/latex/microtype/microtype-pdftex.def + RELOC/tex/latex/microtype/microtype-xetex.def + RELOC/tex/latex/microtype/microtype.cfg + RELOC/tex/latex/microtype/microtype.lua + RELOC/tex/latex/microtype/microtype.sty + RELOC/tex/latex/microtype/mt-CharisSIL.cfg + RELOC/tex/latex/microtype/mt-LatinModernRoman.cfg + RELOC/tex/latex/microtype/mt-PalatinoLinotype.cfg + RELOC/tex/latex/microtype/mt-bch.cfg + RELOC/tex/latex/microtype/mt-blg.cfg + RELOC/tex/latex/microtype/mt-cmr.cfg + RELOC/tex/latex/microtype/mt-euf.cfg + RELOC/tex/latex/microtype/mt-eur.cfg + RELOC/tex/latex/microtype/mt-euroitc.cfg + RELOC/tex/latex/microtype/mt-eus.cfg + RELOC/tex/latex/microtype/mt-msa.cfg + RELOC/tex/latex/microtype/mt-msb.cfg + RELOC/tex/latex/microtype/mt-mvs.cfg + RELOC/tex/latex/microtype/mt-pad.cfg + RELOC/tex/latex/microtype/mt-pmn.cfg + RELOC/tex/latex/microtype/mt-ppl.cfg + RELOC/tex/latex/microtype/mt-ptm.cfg + RELOC/tex/latex/microtype/mt-ugm.cfg + RELOC/tex/latex/microtype/mt-zpeu.cfg +catalogue-also pdfcprot +catalogue-ctan /macros/latex/contrib/microtype +catalogue-date 2019-03-01 06:53:03 +0100 +catalogue-license lppl1.3c +catalogue-topics micro-layout letterspace +catalogue-version 2.7b + +name microtype-de +category Package +revision 24549 +shortdesc Translation into German of the documentation of microtype +relocated 1 +containersize 388 +containerchecksum bd9b7ad26bf0d4125d1631a377328d934e6fb8b619e7040f6644a6df70bd43cfb8a93e8ce6b49afb90d824b73302d063bb23e67fa172d635e952b035510dd6f5 +doccontainersize 1378204 +doccontainerchecksum 1024c46f6b7dfdf4aae45090533087d1cb495d737856fdbd9691e7cbf489c19ce229d35ad55237e30998f154c9ef524c78068d338c236634df8922d50ae4fc17 +docfiles size=451 + RELOC/doc/latex/microtype-de/microtype-DE.dtx + RELOC/doc/latex/microtype-de/microtype-DE.pdf details="The document itself" +catalogue-ctan /info/translations/microtype/de +catalogue-date 2016-06-18 16:48:54 +0200 +catalogue-license lppl1.3 +catalogue-topics translation german-doc typesetting +catalogue-version 2.4 + +name midnight +category Package +revision 15878 +shortdesc A set of useful macro tools +relocated 1 +longdesc Included are: quire: making booklets, etc.; gloss: vertically +longdesc align words in consecutive sentences; loop: a looping +longdesc construct; dolines: 'meta'-macros to separate arguments by +longdesc newlines; labels: address labels and bulk mail letters; +longdesc styledef: selectively input part of a file; and border: borders +longdesc around boxes. +containersize 16348 +containerchecksum 8f8bf1d8d3c5c12147dd61a4d65d311552877a9f5eb7ebcce71602dc69ed5459187134d3a1e346a15255f2c4ba57f054c3d020817df0d5d89c7fc2f216b19cc3 +doccontainersize 330504 +doccontainerchecksum 0c594cac3c7e8d3064145f1b2b088d74a5445b7a7506fc2629b3df6f63419b025779e348116f7dbc859d7c406d87e5b5988d529e5da61d01b0759b0f0fec2382 +docfiles size=122 + RELOC/doc/generic/midnight/README details="Package Readme" + RELOC/doc/generic/midnight/border.doc + RELOC/doc/generic/midnight/dolines.doc + RELOC/doc/generic/midnight/gloss.doc + RELOC/doc/generic/midnight/labels.doc + RELOC/doc/generic/midnight/loop.doc + RELOC/doc/generic/midnight/midnight.pdf details="Package documentation" + RELOC/doc/generic/midnight/quire.doc + RELOC/doc/generic/midnight/styledef.doc +runfiles size=17 + RELOC/tex/generic/midnight/border.tex + RELOC/tex/generic/midnight/dolines.tex + RELOC/tex/generic/midnight/gloss.tex + RELOC/tex/generic/midnight/labels.tex + RELOC/tex/generic/midnight/loop.tex + RELOC/tex/generic/midnight/quire.tex + RELOC/tex/generic/midnight/styledef.tex +catalogue-ctan /macros/generic/midnight +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics linguistic macro-supp letter + +name midpage +category Package +revision 17484 +shortdesc Environment for vertical centring +relocated 1 +longdesc The environment will centre text, if immediately preceded and +longdesc followed by \clearpage. +containersize 788 +containerchecksum 9a13760b776cdce28cf3eb1e28e957265d7d4e83b23234f1590285bc83409f1d5b09040fc6cacd3b9f7a5ec2f61a4e5431fea92a5fcf20032c7bb919ed59612b +doccontainersize 189016 +doccontainerchecksum 25f41bb8cb12c6d310da66d36032eb4933248f0c84a67216cd0981fda7e61343c0dee03e96f522bddf969e925e6cf495754e52e863672f1cab4e94ae3b0400cd +docfiles size=49 + RELOC/doc/latex/midpage/midpage.pdf details="Package documentation" + RELOC/doc/latex/midpage/midpage.tex +runfiles size=1 + RELOC/tex/latex/midpage/midpage.sty +catalogue-ctan /macros/latex/contrib/midpage +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics layout +catalogue-version 1.1a + +name miller +category Package +revision 18789 +shortdesc Typeset miller indices +relocated 1 +longdesc Typeset miller indices, e.g., <1-20>, that are used in material +longdesc science with an easy syntax. Minus signs are printed as bar +longdesc above the corresponding number. +containersize 1456 +containerchecksum a1415d82a2a81c3dccdea1b59c4c0e8d2cb3902dbc6816cf7615fa3e571de26168a6a066f52bad94c38595102afcd1447721095bd084befc20b3fb3ad420e129 +doccontainersize 260992 +doccontainerchecksum 3f888fed2b909c269ead9e5191a788828048a21103c881a9b769fb0e8a3c0f3e6c41467827143f6b79a45d2497e3ac21d5c6da8727be3c987ab8a1fdbcec59ca +docfiles size=73 + RELOC/doc/latex/miller/ChangeLog + RELOC/doc/latex/miller/Makefile + RELOC/doc/latex/miller/README details="Readme" + RELOC/doc/latex/miller/miller-v.tex + RELOC/doc/latex/miller/miller.pdf details="Package documentation" + RELOC/doc/latex/miller/millertest.tex +srccontainersize 2884 +srccontainerchecksum 06e15ff6c146685a8b4d13c5d4e23de4ea343afe684924694f86104f362df7dfaa975b25e850b685e05efeeddf2ed079038cafff8a495116f27dd756e4dceab3 +srcfiles size=3 + RELOC/source/latex/miller/miller.dtx + RELOC/source/latex/miller/miller.ins +runfiles size=1 + RELOC/tex/latex/miller/miller.sty +catalogue-ctan /macros/latex/contrib/miller +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics mat-sci +catalogue-version 1.2 + +name milog +category Package +revision 41610 +shortdesc A LaTeX class for fulfilling the documentation duties according to the German minimum wage law MiLoG +relocated 1 +longdesc Seit dem 1. Januar 2015 gilt in Deutschland grundsatzlich fur +longdesc alle Arbeitnehmer ein flachendeckender gesetzlicher Mindestlohn +longdesc in Hohe von derzeit 8,50EUR pro Stunde. Mit Wirkung ab 1. +longdesc August 2015 wurden die Dokumentations- und +longdesc Aufzeichnungspflichten gelockert. Nach SS17 MiLoG, muss Beginn, +longdesc Ende und Dauer der taglichen Arbeitszeit der in SS22 MiLoG +longdesc definierten Arbeitnehmern (formlos) aufgezeichnet werden. +longdesc Zusatzlich ermoglicht milog.cls aus praktischen Grunden die +longdesc Aufzeichnug von unbezahlten Pausen und Bemerkungen (Ruhetag, +longdesc Urlaub, krank, ...). Die Erfassung der Arbeitszeiten erfolgt in +longdesc einer simplen CSV-Datei, aus der die Klasse automatisch einen +longdesc Arbeitszeitnachweis erstellt. Alternativ konnen die Daten auch +longdesc durch einen CSV-Export - mit eventueller Nachbearbeitung - +longdesc einer geeigneteten App erhoben werden. The milog.cls class +longdesc provides means to fulfill the documentation duties by the +longdesc German minimum wage law MiLoG. The recording of working hours +longdesc is carried out in a simple CSV file from which the class will +longdesc automatically create a time sheet. Alternatively, data can also +longdesc be collected by a CSV export of a suitable app. +containersize 3124 +containerchecksum 126942c7be2217843d5dd0a6a927d1a47537ced3b1a083caa54b4905625b57238cc0a3a8d1652da076144b8c2469f418077eb4051527e5d351c2d95f3d3a5f79 +doccontainersize 404068 +doccontainerchecksum 251b73ab0f52ff2672733c3855289e012965151e07ff447da373bea083b1ff6bfeff38adef72419f03ca153545fdb90bb18f3aa254fa7b59d3c5c061ec5d15ea +docfiles size=138 + RELOC/doc/latex/milog/201605.csv + RELOC/doc/latex/milog/201605.dat + RELOC/doc/latex/milog/README.md details="Readme" + RELOC/doc/latex/milog/makefile + RELOC/doc/latex/milog/manifest.txt + RELOC/doc/latex/milog/milog + RELOC/doc/latex/milog/milog-example.pdf details="Example" + RELOC/doc/latex/milog/milog-example.tex + RELOC/doc/latex/milog/milog-formular.pdf details="Example" + RELOC/doc/latex/milog/milog-formular.tex + RELOC/doc/latex/milog/milog.cfg + RELOC/doc/latex/milog/milog.dtx + RELOC/doc/latex/milog/milog.pdf details="Package documentation" language="de" +runfiles size=2 + RELOC/tex/latex/milog/milog.cls +catalogue-contact-home http://milog.jklatex.de/ +catalogue-ctan /macros/latex/contrib/milog +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl +catalogue-topics legal +catalogue-version 1.0 + +name milsymb +category Package +revision 47482 +shortdesc LaTeX package for TikZ based drawing of military symbols as per NATO APP-6(C) +relocated 1 +longdesc The package offers commands to draw military symbols as per +longdesc NATO APP-6(C) https://www.awl.edu.pl/images/en/APP_6_C.pdf. It +longdesc has a set of commands for drawing all symbols found in the +longdesc document up to the control measures, as well as support for +longdesc custom non-standard symbols. Control measures are planned to be +longdesc included in a future release. +containersize 22168 +containerchecksum a4ae59e46fd7a1c55701b9455c4d04c5b2a4d4bd8635978071ba79899ef28f5b506cac55df87537c07ba2c5d0fe68247ea275c354b4d6fc6ec1ea71d7e301584 +doccontainersize 1544388 +doccontainerchecksum b4be45d82539d53563e80bc8d7ccfcd4b49e06aeeca87dbfaf8447b8df5a80b6a8e3ef9a81389e30c63e5460e5460938f652571c86ff12ed62274c76b97cd65f +docfiles size=523 + RELOC/doc/latex/milsymb/LICENCE.md + RELOC/doc/latex/milsymb/README.md details="Readme" + RELOC/doc/latex/milsymb/manual_examples/772px-1st_Marine_Division_insignia.png + RELOC/doc/latex/milsymb/manual_examples/mef.tex + RELOC/doc/latex/milsymb/manual_scripts/Activity_main_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Activity_upper_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Air_lower_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Air_main_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Air_upper_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Equipment_main_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Equipment_mobility_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Installation_main_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Installation_upper_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Land_lower_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Land_main_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Land_upper_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Missile_left_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Missile_right_table.tex + RELOC/doc/latex/milsymb/manual_scripts/SeaSubsurface_lower_table.tex + RELOC/doc/latex/milsymb/manual_scripts/SeaSubsurface_main_table.tex + RELOC/doc/latex/milsymb/manual_scripts/SeaSubsurface_upper_table.tex + RELOC/doc/latex/milsymb/manual_scripts/SeaSurface_lower_table.tex + RELOC/doc/latex/milsymb/manual_scripts/SeaSurface_main_table.tex + RELOC/doc/latex/milsymb/manual_scripts/SeaSurface_upper_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Space_lower_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Space_main_table.tex + RELOC/doc/latex/milsymb/manual_scripts/Space_upper_table.tex + RELOC/doc/latex/milsymb/manual_scripts/gen_hidden.py + RELOC/doc/latex/milsymb/manual_scripts/gen_symbol_tables.py + RELOC/doc/latex/milsymb/milsymb.pdf details="Package documentation" + RELOC/doc/latex/milsymb/milsymb.tex +runfiles size=46 + RELOC/tex/latex/milsymb/milsymb.sty +catalogue-contact-bugs https://github.com/ralphieraccoon/MilSymb/issues +catalogue-contact-home https://github.com/ralphieraccoon/MilSymb/wiki +catalogue-contact-repository https://github.com/ralphieraccoon/MilSymb +catalogue-ctan /graphics/pgf/contrib/milsymb +catalogue-date 2018-05-03 05:20:47 +0200 +catalogue-license cc-by-sa-4 +catalogue-topics pgf-tikz symbol-supp +catalogue-version 1.0 + +name minibox +category Package +revision 30914 +shortdesc A simple type of box for LaTeX +relocated 1 +longdesc This small package provides a convenient input syntax for boxes +longdesc that don't break their text over lines automatically, but do +longdesc allow manual line breaks. The boxes shrink to the natural width +longdesc of the longest line they contain. +containersize 1052 +containerchecksum 18d409728f57cc2e423b5c74ad7ff4a9e93f2405497a96024769fb01f7604e019d914365f82fa5908bb679ce4a48cab64fd4435b531ef72235067481b8dbc96b +doccontainersize 281540 +doccontainerchecksum 0404b375fb0ef258d0e5acb8e7a78a60a55d08ce7339b9b63b1711dcc6d40b6f302b0f35f7d1fc8bfbf431b66bb5aaa2c94e92ee8e788a5f2156031425c0c4a3 +docfiles size=70 + RELOC/doc/latex/minibox/README details="Readme" + RELOC/doc/latex/minibox/minibox.pdf details="Package documentation" +srccontainersize 3056 +srccontainerchecksum 6aafb14003afb2ee18390391e15fb00f73a16f568158d72fea348e7052bf1ec5f25cd446569bb3c6dd815577fca7b2522d4474681b560ee3ea65b6053509df92 +srcfiles size=3 + RELOC/source/latex/minibox/minibox.ins + RELOC/source/latex/minibox/minibox.tex +runfiles size=1 + RELOC/tex/latex/minibox/minibox.sty +catalogue-ctan /macros/latex/contrib/minibox +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics boxing +catalogue-version 0.2a + +name minidocument +category Package +revision 43752 +shortdesc Creates miniature documents inside other LaTeX documents +relocated 1 +longdesc This package can be used to create miniature documents inside +longdesc other LaTeX documents. Inside the minidocument all features of +longdesc the outer vertical mode like page breaking, floats, marginpars, +longdesc etc. are available. +containersize 1464 +containerchecksum 33a7938dc25833faef05245d00219ad4d94902d1b5a8f63de8c08448da1f4ddd8e305cd261a3051df919b097f0b3b82081b57fa420e773dc89a1c8cb801ba463 +doccontainersize 188224 +doccontainerchecksum 03ac398f6f8e79003b155434992a53b1485032ef779e5fa05a43adf7528fec1966ba94731ab2fc11cdfadce51bfca6ca9d1a88f882ca87f08d8e4077896af4c3 +docfiles size=48 + RELOC/doc/latex/minidocument/Makefile + RELOC/doc/latex/minidocument/README details="Readme" + RELOC/doc/latex/minidocument/minidocument.pdf details="Package documentation" +srccontainersize 3616 +srccontainerchecksum 556f1c482366f1bf2bd6e2f4e92f0fb811d97e91e057994605a2794f9441f2df35bcd2e2dc4d6218e980e921b7d7a03e5ea2613b6d27d8258985521ecde2dbf0 +srcfiles size=4 + RELOC/source/latex/minidocument/minidocument.dtx + RELOC/source/latex/minidocument/minidocument.ins +runfiles size=1 + RELOC/tex/latex/minidocument/minidocument.sty +catalogue-also subfiles +catalogue-ctan /macros/latex/contrib/minidocument +catalogue-date 2018-01-07 12:14:32 +0100 +catalogue-license lppl1.3 +catalogue-topics subdocs +catalogue-version 1.0 + +name minifp +category Package +revision 32559 +shortdesc Fixed-point real computations to 8 decimals +relocated 1 +longdesc The package provides basic arithmetic operations to 8 decimal +longdesc places for plain TeX or LaTeX. Results are exact when they fit +longdesc within the digit limits. Along with the basic package is an +longdesc optional extension that adds computation of sin, cos, log, +longdesc sqrt, exp, powers and angles. These are also exact when +longdesc theoretically possible and are otherwise accurate to at least 7 +longdesc decimal places. In addition, the package provides a stack-based +longdesc programing environment. +containersize 10000 +containerchecksum 412bbd3466eee82a99b43d6f4a5998a0a22b20c2d51621368ecba1084010a5333bda9e221b07dcfc6ddea8810edd0dcf60c2be6f926ca0da33071e6a812108d9 +doccontainersize 435560 +doccontainerchecksum 56e1b71f8289c126df12091cf155c8c05f05a391abd40ff6ce0b84bb7620630a80747e23c25bbb4276aa5d110314076f61da72683b6846a44a53ad3515b91670 +docfiles size=116 + RELOC/doc/generic/minifp/README details="Readme" + RELOC/doc/generic/minifp/minifp.pdf details="Package documentation" + RELOC/doc/generic/minifp/test1.tex + RELOC/doc/generic/minifp/test2.tex +srccontainersize 43836 +srccontainerchecksum 32cd837a6c750ae92f9662db289a5479a102d09058bb4c85605820d6ced83f237d684fb07c9ba59f76062d6d383d1b45485ac2f2ec4e5bd43f780254facac1e5 +srcfiles size=42 + RELOC/source/generic/minifp/minifp.dtx + RELOC/source/generic/minifp/minifp.ins +runfiles size=13 + RELOC/tex/generic/minifp/mfpextra.tex + RELOC/tex/generic/minifp/minifp.sty +catalogue-ctan /macros/generic/minifp +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics arithmetic calculation random +catalogue-version 0.96 + +name minipage-marginpar +category Package +revision 15878 +shortdesc Minipages with marginal notes +relocated 1 +longdesc This package allows \marginpar-commands inside of minipages and +longdesc other boxes. (It takes another approach than marginnote by +longdesc Markus Kohm: it saves all \marginpar-commands and typesets them +longdesc outside (i.e., after) the box.) The package defines an +longdesc environment minipagewithmarginpars (to be used like +longdesc minipage)--and the internal commands may be used by other +longdesc packages to define similar environments or commands. +containersize 1588 +containerchecksum acf33aac7dea3c20986a9ed1f76efbb470d9fa1cbd31f29ed4fddd0e16835ace1946278fcfd04ea179122e603f63b269872953e40f8a64843ae8e60ded769356 +doccontainersize 72252 +doccontainerchecksum 20d503697a246b8b56a71cf324e4daaec436b62e9c3b9556095670c2b461d273e8b77e24da3cada37106c350304827a37bd6f658727373e384f11fe064e07992 +docfiles size=51 + RELOC/doc/latex/minipage-marginpar/README details="README file" + RELOC/doc/latex/minipage-marginpar/minipage-marginpar.pdf details="Package documentation" language="de" +srccontainersize 6140 +srccontainerchecksum 1050833e51b5a00963b616b496d9b18e49cc8ded901ccdffbaf949eac12fe8d31219c650936c083767e39a39dcd08686ef049ce11abbaad5daa998f4e9c1b7c6 +srcfiles size=5 + RELOC/source/latex/minipage-marginpar/minipage-marginpar.dtx + RELOC/source/latex/minipage-marginpar/minipage-marginpar.ins +runfiles size=2 + RELOC/tex/latex/minipage-marginpar/minipage-marginpar.sty + RELOC/tex/latex/minipage-marginpar/mpgmpar.sty +catalogue-ctan /macros/latex/contrib/minipage-marginpar +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics notes boxing +catalogue-version 0.2 + +name miniplot +category Package +revision 17483 +shortdesc A package for easy figure arrangement +relocated 1 +longdesc MiniPlot is a package to help the LaTeX user typeset EPS +longdesc figures using an easy-to-use interface. Figures can be arranged +longdesc as one-figure-only or as a collection of figures in columns and +longdesc rows which can itself contain sub-figures in columns and rows. +longdesc Wrapped figures are also supported. This package provides +longdesc commands to display a framebox instead of the figure as the +longdesc graphics package does already but additionally it writes useful +longdesc information such as the label and scaling factor into these +longdesc boxes. +containersize 6248 +containerchecksum 2c5d08c2476871dd182bb320c50ec96f202ef65a417e65d1de8aec391fb60dc66c1e9e4642ad2207f7f4bfdd12e83bfe2cf75e9fa4f0fff0f4ee72769f7ca84f +doccontainersize 166228 +doccontainerchecksum 6ae8000b3d0ef50e37dfbda399396a42bd348d6ed9ee485ff01ded9d850693f43b0c1945dfde93d9ea0f17494ac2e03391824f2f0c0eff67355c3d3f3ad6cccf +docfiles size=68 + RELOC/doc/latex/miniplot/disclaimer.txt + RELOC/doc/latex/miniplot/documentation.zip + RELOC/doc/latex/miniplot/miniplot.pdf details="Package documentation" + RELOC/doc/latex/miniplot/miniplot.tex +runfiles size=11 + RELOC/tex/latex/miniplot/miniplot.sty +catalogue-ctan /macros/latex/contrib/miniplot +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-use + +name minitoc +category Package +revision 48196 +shortdesc Produce a table of contents for each chapter, part or section +relocated 1 +longdesc The minitoc package allows you to add mini-tables-of-contents +longdesc (minitocs) at the beginning of every chapter, part or section. +longdesc There is also provision for mini-lists of figures and of +longdesc tables. At the part level, they are parttocs, partlofs and +longdesc partlots. If the type of document does not use chapters, the +longdesc basic provision is section level secttocs, sectlofs and +longdesc sectlots. The package has provision for language-specific +longdesc configuration of its own "fixed names", using .mld files +longdesc (analagous to babel .ldf files that do that job for LaTeX"s own +longdesc fixed names). +containersize 41924 +containerchecksum c5af65f4c1d7c19ac5bca84a6a8b465a6d00805164e0224ad3adfa473dbff8604d1ec39958568b3ab611364bf09aa671d277a7458595eac130b121b0972ee32c +doccontainersize 6354096 +doccontainerchecksum c193a77791f3304b09ae58faf19490bd68bf129c8ec435c378d3ebce6ecb47c284ab1e1412d10e43dd2e4d5ef60a9fc26088d8c35054f6099fa2675076adb6ce +docfiles size=2364 + RELOC/doc/latex/minitoc/INSTALL + RELOC/doc/latex/minitoc/README.md details="Readme" language="en" + RELOC/doc/latex/minitoc/TODO + RELOC/doc/latex/minitoc/boldsc.sty + RELOC/doc/latex/minitoc/cmk + RELOC/doc/latex/minitoc/dblaccnt.sty + RELOC/doc/latex/minitoc/emk + RELOC/doc/latex/minitoc/en-mtc.bst + RELOC/doc/latex/minitoc/examples/mtc-2c.pdf + RELOC/doc/latex/minitoc/examples/mtc-2c.tex + RELOC/doc/latex/minitoc/examples/mtc-2nd.pdf + RELOC/doc/latex/minitoc/examples/mtc-2nd.tex + RELOC/doc/latex/minitoc/examples/mtc-3co.pdf + RELOC/doc/latex/minitoc/examples/mtc-3co.tex + RELOC/doc/latex/minitoc/examples/mtc-add.bib + RELOC/doc/latex/minitoc/examples/mtc-add.pdf + RELOC/doc/latex/minitoc/examples/mtc-add.tex + RELOC/doc/latex/minitoc/examples/mtc-ads.pdf + RELOC/doc/latex/minitoc/examples/mtc-ads.tex + RELOC/doc/latex/minitoc/examples/mtc-amm.pdf + RELOC/doc/latex/minitoc/examples/mtc-amm.tex + RELOC/doc/latex/minitoc/examples/mtc-apx.pdf + RELOC/doc/latex/minitoc/examples/mtc-apx.tex + RELOC/doc/latex/minitoc/examples/mtc-art.pdf + RELOC/doc/latex/minitoc/examples/mtc-art.tex + RELOC/doc/latex/minitoc/examples/mtc-bk.pdf + RELOC/doc/latex/minitoc/examples/mtc-bk.tex + RELOC/doc/latex/minitoc/examples/mtc-bo.pdf + RELOC/doc/latex/minitoc/examples/mtc-bo.tex + RELOC/doc/latex/minitoc/examples/mtc-ch0.pdf + RELOC/doc/latex/minitoc/examples/mtc-ch0.tex + RELOC/doc/latex/minitoc/examples/mtc-cri.pdf + RELOC/doc/latex/minitoc/examples/mtc-cri.tex + RELOC/doc/latex/minitoc/examples/mtc-fko.pdf + RELOC/doc/latex/minitoc/examples/mtc-fko.tex + RELOC/doc/latex/minitoc/examples/mtc-fo1.pdf + RELOC/doc/latex/minitoc/examples/mtc-fo1.tex + RELOC/doc/latex/minitoc/examples/mtc-fo2.pdf + RELOC/doc/latex/minitoc/examples/mtc-fo2.tex + RELOC/doc/latex/minitoc/examples/mtc-gap.pdf + RELOC/doc/latex/minitoc/examples/mtc-gap.tex + RELOC/doc/latex/minitoc/examples/mtc-hi1.pdf + RELOC/doc/latex/minitoc/examples/mtc-hi1.tex + RELOC/doc/latex/minitoc/examples/mtc-hi2.pdf + RELOC/doc/latex/minitoc/examples/mtc-hi2.tex + RELOC/doc/latex/minitoc/examples/mtc-hia.pdf + RELOC/doc/latex/minitoc/examples/mtc-hia.tex + RELOC/doc/latex/minitoc/examples/mtc-hir.pdf + RELOC/doc/latex/minitoc/examples/mtc-hir.tex + RELOC/doc/latex/minitoc/examples/mtc-hop.pdf + RELOC/doc/latex/minitoc/examples/mtc-hop.tex + RELOC/doc/latex/minitoc/examples/mtc-liv.pdf + RELOC/doc/latex/minitoc/examples/mtc-liv.tex + RELOC/doc/latex/minitoc/examples/mtc-mem.pdf + RELOC/doc/latex/minitoc/examples/mtc-mem.tex + RELOC/doc/latex/minitoc/examples/mtc-mm1.pdf + RELOC/doc/latex/minitoc/examples/mtc-mm1.tex + RELOC/doc/latex/minitoc/examples/mtc-mu.pdf + RELOC/doc/latex/minitoc/examples/mtc-mu.tex + RELOC/doc/latex/minitoc/examples/mtc-nom.pdf + RELOC/doc/latex/minitoc/examples/mtc-nom.tex + RELOC/doc/latex/minitoc/examples/mtc-ocf.pdf + RELOC/doc/latex/minitoc/examples/mtc-ocf.tex + RELOC/doc/latex/minitoc/examples/mtc-ofs.pdf + RELOC/doc/latex/minitoc/examples/mtc-ofs.tex + RELOC/doc/latex/minitoc/examples/mtc-sbf.pdf + RELOC/doc/latex/minitoc/examples/mtc-sbf.tex + RELOC/doc/latex/minitoc/examples/mtc-scr.pdf + RELOC/doc/latex/minitoc/examples/mtc-scr.tex + RELOC/doc/latex/minitoc/examples/mtc-syn.pdf + RELOC/doc/latex/minitoc/examples/mtc-syn.tex + RELOC/doc/latex/minitoc/examples/mtc-tbi.pdf + RELOC/doc/latex/minitoc/examples/mtc-tbi.tex + RELOC/doc/latex/minitoc/examples/mtc-tlc.pdf + RELOC/doc/latex/minitoc/examples/mtc-tlc.tex + RELOC/doc/latex/minitoc/examples/mtc-tsf.pdf + RELOC/doc/latex/minitoc/examples/mtc-tsf.tex + RELOC/doc/latex/minitoc/examples/mtc-vti.pdf + RELOC/doc/latex/minitoc/examples/mtc-vti.tex + RELOC/doc/latex/minitoc/fmk + RELOC/doc/latex/minitoc/fr-mtc.bst + RELOC/doc/latex/minitoc/franc.sty + RELOC/doc/latex/minitoc/frbib.sty + RELOC/doc/latex/minitoc/frnew.sty + RELOC/doc/latex/minitoc/images/lamed3.png + RELOC/doc/latex/minitoc/imk + RELOC/doc/latex/minitoc/minitoc-fr.bib + RELOC/doc/latex/minitoc/minitoc-fr.dtx + RELOC/doc/latex/minitoc/minitoc-fr.ist + RELOC/doc/latex/minitoc/minitoc-fr.lan + RELOC/doc/latex/minitoc/minitoc-fr.pdf + RELOC/doc/latex/minitoc/minitoc.bib + RELOC/doc/latex/minitoc/minitoc.bug + RELOC/doc/latex/minitoc/minitoc.dtx + RELOC/doc/latex/minitoc/minitoc.ins + RELOC/doc/latex/minitoc/minitoc.ist + RELOC/doc/latex/minitoc/minitoc.l + RELOC/doc/latex/minitoc/minitoc.lan + RELOC/doc/latex/minitoc/minitoc.pdf details="Package documentation" + RELOC/doc/latex/minitoc/minitoc.pre + RELOC/doc/latex/minitoc/minitoc.sum + RELOC/doc/latex/minitoc/mypatches.sty + RELOC/doc/latex/minitoc/pmk + RELOC/doc/latex/minitoc/rmk + RELOC/doc/latex/minitoc/tmk + RELOC/doc/latex/minitoc/xmk +runfiles size=267 + RELOC/tex/latex/minitoc/UKenglish.mld + RELOC/tex/latex/minitoc/USenglish.mld + RELOC/tex/latex/minitoc/acadian.mld + RELOC/tex/latex/minitoc/acadien.mld + RELOC/tex/latex/minitoc/afrikaan.mld + RELOC/tex/latex/minitoc/afrikaans.mld + RELOC/tex/latex/minitoc/albanian.mld + RELOC/tex/latex/minitoc/american.mld + RELOC/tex/latex/minitoc/arab.mld + RELOC/tex/latex/minitoc/arab2.mld + RELOC/tex/latex/minitoc/arabi.mld + RELOC/tex/latex/minitoc/arabic.mld + RELOC/tex/latex/minitoc/armenian.mld + RELOC/tex/latex/minitoc/australian.mld + RELOC/tex/latex/minitoc/austrian.mld + RELOC/tex/latex/minitoc/bahasa.mld + RELOC/tex/latex/minitoc/bahasai.mld + RELOC/tex/latex/minitoc/bahasam.mld + RELOC/tex/latex/minitoc/bangla.mld + RELOC/tex/latex/minitoc/basque.mld + RELOC/tex/latex/minitoc/bengali.mld + RELOC/tex/latex/minitoc/bicig.mld + RELOC/tex/latex/minitoc/bicig2.mld + RELOC/tex/latex/minitoc/bicig3.mld + RELOC/tex/latex/minitoc/bithe.mld + RELOC/tex/latex/minitoc/brazil.mld + RELOC/tex/latex/minitoc/brazilian.mld + RELOC/tex/latex/minitoc/breton.mld + RELOC/tex/latex/minitoc/british.mld + RELOC/tex/latex/minitoc/bulgarian.mld + RELOC/tex/latex/minitoc/bulgarianb.mld + RELOC/tex/latex/minitoc/buryat.mld + RELOC/tex/latex/minitoc/buryat2.mld + RELOC/tex/latex/minitoc/canadian.mld + RELOC/tex/latex/minitoc/canadien.mld + RELOC/tex/latex/minitoc/castillan.mld + RELOC/tex/latex/minitoc/castillian.mld + RELOC/tex/latex/minitoc/catalan.mld + RELOC/tex/latex/minitoc/chinese1.mld + RELOC/tex/latex/minitoc/chinese1.mlo + RELOC/tex/latex/minitoc/chinese2.mld + RELOC/tex/latex/minitoc/chinese2.mlo + RELOC/tex/latex/minitoc/croatian.mld + RELOC/tex/latex/minitoc/czech.mld + RELOC/tex/latex/minitoc/danish.mld + RELOC/tex/latex/minitoc/devanagari.mld + RELOC/tex/latex/minitoc/dutch.mld + RELOC/tex/latex/minitoc/english.mld + RELOC/tex/latex/minitoc/english1.mld + RELOC/tex/latex/minitoc/english2.mld + RELOC/tex/latex/minitoc/esperant.mld + RELOC/tex/latex/minitoc/esperanto.mld + RELOC/tex/latex/minitoc/estonian.mld + RELOC/tex/latex/minitoc/ethiopia.mld + RELOC/tex/latex/minitoc/ethiopian.mld + RELOC/tex/latex/minitoc/ethiopian2.mld + RELOC/tex/latex/minitoc/farsi1.mld + RELOC/tex/latex/minitoc/farsi1.mlo + RELOC/tex/latex/minitoc/farsi2.mld + RELOC/tex/latex/minitoc/farsi2.mlo + RELOC/tex/latex/minitoc/farsi3.mld + RELOC/tex/latex/minitoc/finnish.mld + RELOC/tex/latex/minitoc/finnish2.mld + RELOC/tex/latex/minitoc/francais.mld + RELOC/tex/latex/minitoc/french.mld + RELOC/tex/latex/minitoc/french1.mld + RELOC/tex/latex/minitoc/french2.mld + RELOC/tex/latex/minitoc/frenchb.mld + RELOC/tex/latex/minitoc/frenchle.mld + RELOC/tex/latex/minitoc/frenchpro.mld + RELOC/tex/latex/minitoc/galician.mld + RELOC/tex/latex/minitoc/german.mld + RELOC/tex/latex/minitoc/germanb.mld + RELOC/tex/latex/minitoc/germanb2.mld + RELOC/tex/latex/minitoc/greek-mono.mld + RELOC/tex/latex/minitoc/greek-polydemo.mld + RELOC/tex/latex/minitoc/greek-polykatha.mld + RELOC/tex/latex/minitoc/greek.mld + RELOC/tex/latex/minitoc/guarani.mld + RELOC/tex/latex/minitoc/hangul-u8.mld + RELOC/tex/latex/minitoc/hangul-u8.mlo + RELOC/tex/latex/minitoc/hangul1.mld + RELOC/tex/latex/minitoc/hangul1.mlo + RELOC/tex/latex/minitoc/hangul2.mld + RELOC/tex/latex/minitoc/hangul2.mlo + RELOC/tex/latex/minitoc/hangul3.mld + RELOC/tex/latex/minitoc/hangul3.mlo + RELOC/tex/latex/minitoc/hangul4.mld + RELOC/tex/latex/minitoc/hangul4.mlo + RELOC/tex/latex/minitoc/hanja-u8.mld + RELOC/tex/latex/minitoc/hanja-u8.mlo + RELOC/tex/latex/minitoc/hanja1.mld + RELOC/tex/latex/minitoc/hanja1.mlo + RELOC/tex/latex/minitoc/hanja2.mld + RELOC/tex/latex/minitoc/hanja2.mlo + RELOC/tex/latex/minitoc/hebrew.mld + RELOC/tex/latex/minitoc/hebrew2.mld + RELOC/tex/latex/minitoc/hindi-modern.mld + RELOC/tex/latex/minitoc/hindi.mld + RELOC/tex/latex/minitoc/hungarian.mld + RELOC/tex/latex/minitoc/icelandic.mld + RELOC/tex/latex/minitoc/indon.mld + RELOC/tex/latex/minitoc/indonesian.mld + RELOC/tex/latex/minitoc/interlingua.mld + RELOC/tex/latex/minitoc/irish.mld + RELOC/tex/latex/minitoc/italian.mld + RELOC/tex/latex/minitoc/italian2.mld + RELOC/tex/latex/minitoc/japanese.mld + RELOC/tex/latex/minitoc/japanese.mlo + RELOC/tex/latex/minitoc/japanese2.mld + RELOC/tex/latex/minitoc/japanese2.mlo + RELOC/tex/latex/minitoc/japanese3.mld + RELOC/tex/latex/minitoc/japanese3.mlo + RELOC/tex/latex/minitoc/japanese4.mld + RELOC/tex/latex/minitoc/japanese4.mlo + RELOC/tex/latex/minitoc/japanese5.mld + RELOC/tex/latex/minitoc/japanese5.mlo + RELOC/tex/latex/minitoc/japanese6.mld + RELOC/tex/latex/minitoc/japanese6.mlo + RELOC/tex/latex/minitoc/kannada.mld + RELOC/tex/latex/minitoc/khalkha.mld + RELOC/tex/latex/minitoc/latin.mld + RELOC/tex/latex/minitoc/latin2.mld + RELOC/tex/latex/minitoc/latinc.mld + RELOC/tex/latex/minitoc/latinc2.mld + RELOC/tex/latex/minitoc/latvian.mld + RELOC/tex/latex/minitoc/latvian2.mld + RELOC/tex/latex/minitoc/letton.mld + RELOC/tex/latex/minitoc/letton2.mld + RELOC/tex/latex/minitoc/lithuanian.mld + RELOC/tex/latex/minitoc/lithuanian2.mld + RELOC/tex/latex/minitoc/lowersorbian.mld + RELOC/tex/latex/minitoc/lsorbian.mld + RELOC/tex/latex/minitoc/magyar.mld + RELOC/tex/latex/minitoc/magyar2.mld + RELOC/tex/latex/minitoc/magyar3.mld + RELOC/tex/latex/minitoc/malay.mld + RELOC/tex/latex/minitoc/malayalam-b.mld + RELOC/tex/latex/minitoc/malayalam-keli.mld + RELOC/tex/latex/minitoc/malayalam-keli2.mld + RELOC/tex/latex/minitoc/malayalam-mr.mld + RELOC/tex/latex/minitoc/malayalam-omega.mld + RELOC/tex/latex/minitoc/malayalam-omega.mlo + RELOC/tex/latex/minitoc/malayalam-rachana.mld + RELOC/tex/latex/minitoc/malayalam-rachana2.mld + RELOC/tex/latex/minitoc/malayalam-rachana3.mld + RELOC/tex/latex/minitoc/manju.mld + RELOC/tex/latex/minitoc/mexican.mld + RELOC/tex/latex/minitoc/meyalu.mld + RELOC/tex/latex/minitoc/minitoc.sty + RELOC/tex/latex/minitoc/mongol.mld + RELOC/tex/latex/minitoc/mongolb.mld + RELOC/tex/latex/minitoc/mongolian.mld + RELOC/tex/latex/minitoc/mtcmess.sty + RELOC/tex/latex/minitoc/mtcoff.sty + RELOC/tex/latex/minitoc/mtcpatchmem.sty + RELOC/tex/latex/minitoc/naustrian.mld + RELOC/tex/latex/minitoc/newzealand.mld + RELOC/tex/latex/minitoc/ngerman.mld + RELOC/tex/latex/minitoc/ngermanb.mld + RELOC/tex/latex/minitoc/ngermanb2.mld + RELOC/tex/latex/minitoc/norsk.mld + RELOC/tex/latex/minitoc/norsk2.mld + RELOC/tex/latex/minitoc/nynorsk.mld + RELOC/tex/latex/minitoc/nynorsk2.mld + RELOC/tex/latex/minitoc/occitan.mld + RELOC/tex/latex/minitoc/occitan2.mld + RELOC/tex/latex/minitoc/polish.mld + RELOC/tex/latex/minitoc/polish2.mld + RELOC/tex/latex/minitoc/polski.mld + RELOC/tex/latex/minitoc/portuges.mld + RELOC/tex/latex/minitoc/portuguese.mld + RELOC/tex/latex/minitoc/romanian.mld + RELOC/tex/latex/minitoc/romanian2.mld + RELOC/tex/latex/minitoc/romanian3.mld + RELOC/tex/latex/minitoc/russian-cca.mld + RELOC/tex/latex/minitoc/russian-cca.mlo + RELOC/tex/latex/minitoc/russian-cca1.mld + RELOC/tex/latex/minitoc/russian-cca1.mlo + RELOC/tex/latex/minitoc/russian-lh.mld + RELOC/tex/latex/minitoc/russian-lh.mlo + RELOC/tex/latex/minitoc/russian-lhcyralt.mld + RELOC/tex/latex/minitoc/russian-lhcyralt.mlo + RELOC/tex/latex/minitoc/russian-lhcyrkoi.mld + RELOC/tex/latex/minitoc/russian-lhcyrkoi.mlo + RELOC/tex/latex/minitoc/russian-lhcyrwin.mld + RELOC/tex/latex/minitoc/russian-lhcyrwin.mlo + RELOC/tex/latex/minitoc/russian.mld + RELOC/tex/latex/minitoc/russian2m.mld + RELOC/tex/latex/minitoc/russian2o.mld + RELOC/tex/latex/minitoc/russianb.mld + RELOC/tex/latex/minitoc/russianc.mld + RELOC/tex/latex/minitoc/samin.mld + RELOC/tex/latex/minitoc/scottish.mld + RELOC/tex/latex/minitoc/serbian.mld + RELOC/tex/latex/minitoc/serbianc.mld + RELOC/tex/latex/minitoc/slovak.mld + RELOC/tex/latex/minitoc/slovene.mld + RELOC/tex/latex/minitoc/spanish.mld + RELOC/tex/latex/minitoc/spanish2.mld + RELOC/tex/latex/minitoc/spanish3.mld + RELOC/tex/latex/minitoc/spanish4.mld + RELOC/tex/latex/minitoc/swahili.mld + RELOC/tex/latex/minitoc/swedish.mld + RELOC/tex/latex/minitoc/swedish2.mld + RELOC/tex/latex/minitoc/thai.mld + RELOC/tex/latex/minitoc/thai.mlo + RELOC/tex/latex/minitoc/turkish.mld + RELOC/tex/latex/minitoc/uighur.mld + RELOC/tex/latex/minitoc/uighur2.mld + RELOC/tex/latex/minitoc/uighur3.mld + RELOC/tex/latex/minitoc/ukraineb.mld + RELOC/tex/latex/minitoc/ukrainian.mld + RELOC/tex/latex/minitoc/uppersorbian.mld + RELOC/tex/latex/minitoc/usorbian.mld + RELOC/tex/latex/minitoc/vietnam.mld + RELOC/tex/latex/minitoc/vietnamese.mld + RELOC/tex/latex/minitoc/welsh.mld + RELOC/tex/latex/minitoc/xalx.mld + RELOC/tex/latex/minitoc/xalx2.mld + RELOC/tex/latex/minitoc/xalx3.mld +catalogue-contact-repository https://github.com/minitoc/minitoc +catalogue-contact-support https://github.com/minitoc/minitoc/issues +catalogue-ctan /macros/latex/contrib/minitoc +catalogue-date 2018-07-13 23:16:39 +0200 +catalogue-license lppl1.3 +catalogue-topics toc-etc +catalogue-version 62 + +name minorrevision +category Package +revision 32165 +shortdesc Quote and refer to a manuscript for minor revisions +relocated 1 +longdesc The package supports those who publish articles in +longdesc peer-reviewed journals. In the final stages of the review +longdesc process, the authors typically have to provide an additional +longdesc document (such as a letter to the editors), in which they +longdesc provide a list of modifications that they made to the +longdesc manuscript. The package automatically provides line numbers and +longdesc quotations from the manuscript, for this letter. The package +longdesc loads the package lineno, so (in effect) shares lineno's +longdesc incompatibilities. +containersize 1584 +containerchecksum d76224254aa18dd80f9bab56f055fde5bb7ee6b5c3dd88e6ce19667c939fb2dbd1e5cb987522a3f1c50082f46ee20cf918f1e01fb00f588ce11d30d300fcf574 +doccontainersize 166396 +doccontainerchecksum ab1484f7ec214d43b95a8bd5cd78ee28bf0055d99d8c63c424c5c1db1c77b41a8631ea35bef745ab0399dd1c8dd9c9ab66b60033bb151f46afb023b6b5e1ab44 +docfiles size=44 + RELOC/doc/latex/minorrevision/README details="Readme" + RELOC/doc/latex/minorrevision/minorrevision.pdf details="Package documentation" + RELOC/doc/latex/minorrevision/minorrevision.tex +runfiles size=1 + RELOC/tex/latex/minorrevision/minorrevision.sty +catalogue-ctan /macros/latex/contrib/minorrevision +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.2 +catalogue-topics editorial +catalogue-version 1.1 + +name minted +category Package +revision 44855 +shortdesc Highlighted source code for LaTeX +relocated 1 +longdesc The package that facilitates expressive syntax highlighting in +longdesc LaTeX using the powerful Pygments library. The package also +longdesc provides options to customize the highlighted source code +longdesc output using fancyvrb. +containersize 9496 +containerchecksum 5923b5e87e8bb2cf148a480035b906aab4b03b903308e8e9609f98376f82e23fedd529abca37bb4e9211719160abd9d4488f5c73a0283f67c7f11ee3e1f1d5fb +doccontainersize 803632 +doccontainerchecksum 0187a04f9e42c1bf3e5d961c28b977e527dfc1b57c0f823eda047d5e6c888f3f8da1fed691c8e3128d09b3740deb1b324baa607b9abc20a4fe47ea0a29915e90 +docfiles size=200 + RELOC/doc/latex/minted/Makefile + RELOC/doc/latex/minted/README details="Readme" + RELOC/doc/latex/minted/minted.pdf details="Package documentation" +srccontainersize 44376 +srccontainerchecksum 1595aac2da1fc9c7b9e50c92fd12eda866fc35e884e335b1f4883188a4b0f9603a39cffa252cc1bb11ffd4a67e16a80b05c5ecf2cd7440c50f0605e5fc44e302 +srcfiles size=49 + RELOC/source/latex/minted/minted.dtx + RELOC/source/latex/minted/minted.ins +runfiles size=15 + RELOC/tex/latex/minted/minted.sty + RELOC/tex/latex/minted/minted1.sty +catalogue-also texments verbments +catalogue-contact-repository https://github.com/gpoore/minted +catalogue-ctan /macros/latex/contrib/minted +catalogue-date 2017-07-19 21:24:20 +0200 +catalogue-license lppl1.3 +catalogue-topics listing +catalogue-version 2.5 + +name mintspirit +category Package +revision 32069 +shortdesc LaTeX support for MintSpirit font families +relocated 1 +longdesc The package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the MintSpirit and MintSpiritNo2 families of fonts, +longdesc designed by Hirwen Harendal. MintSpirit was originally designed +longdesc for use as a system font on a Linux Mint system. The No. 2 +longdesc variant provides more conventional shapes for some glyphs. +execute addMap mintspirit.map +containersize 1105488 +containerchecksum 0155fde1eddb9558959c260334ab1d5489ca5415b1f7afb687308feb67f6951932bdfcc2e59e6cd3a4b34449f129dc1eb53730b75d60347bf7e2647a18cbadb1 +doccontainersize 308404 +doccontainerchecksum 54211f0e40fcd0e3c248be16b647462cbe3e3953fbc6ab050634e6a9455b5d52157b77a49fa96c707e3a65c088a92e7e24e86359cfdfa141d48a0ba5b2bfb682 +docfiles size=84 + RELOC/doc/fonts/mintspirit/MintSpirit-Cat.pdf + RELOC/doc/fonts/mintspirit/OFL.txt + RELOC/doc/fonts/mintspirit/README details="Readme" + RELOC/doc/fonts/mintspirit/mintspirit-samples.pdf details="MintSpirit samples" + RELOC/doc/fonts/mintspirit/mintspirit-samples.tex + RELOC/doc/fonts/mintspirit/mintspirit2-samples.pdf details="MintSpirit2 samples" + RELOC/doc/fonts/mintspirit/mintspirit2-samples.tex +runfiles size=1255 + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_24uybq.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_2dxuba.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_3vy5j3.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_5cazkt.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_63vcua.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_6x4rw3.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_7ayy44.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_7u5374.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_amdskp.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_biiinc.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_bkoczj.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_dnk3mn.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_eex3ia.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_eqihrw.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_eqrkmo.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_fizmng.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_fm3wlu.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_j4bodc.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_k4fv75.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_l3e5vj.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_lm7mhw.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_lwraz3.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_me5dp6.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_oe76kg.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_ref42g.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_s7rd6p.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_taixll.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_tmtdfz.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt2_ywkmiw.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_2isll4.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_3sm7wd.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_3y5hmb.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_5lbatd.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_5yvi6n.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_675dmr.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_7enqs3.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_bjjcsi.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_f4utek.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_gcdgcc.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_gdx47l.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_girsvq.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_gr6qqq.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_imdxi4.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_lvhuc6.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_lzc2o4.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_oj7rfe.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_opresw.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_pulfbi.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_swumq4.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_v6lq4b.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_wk34ig.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_y4xqha.enc + RELOC/fonts/enc/dvips/mintspirit/mntsprt_zt2pqo.enc + RELOC/fonts/map/dvips/mintspirit/mintspirit.map + RELOC/fonts/opentype/arkandis/mintspirit/MintSpirit-Bold.otf + RELOC/fonts/opentype/arkandis/mintspirit/MintSpirit-BoldItalic.otf + RELOC/fonts/opentype/arkandis/mintspirit/MintSpirit-Italic.otf + RELOC/fonts/opentype/arkandis/mintspirit/MintSpirit-Regular.otf + RELOC/fonts/opentype/arkandis/mintspirit/MintSpiritNo2-Bold.otf + RELOC/fonts/opentype/arkandis/mintspirit/MintSpiritNo2-BoldItalic.otf + RELOC/fonts/opentype/arkandis/mintspirit/MintSpiritNo2-Italic.otf + RELOC/fonts/opentype/arkandis/mintspirit/MintSpiritNo2-Regular.otf + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-inf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-inf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-inf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-sup-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-sup-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-sup-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-inf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-inf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-inf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-sup-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-sup-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-sup-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-inf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-inf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-inf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-sup-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-sup-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-sup-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-inf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-inf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-inf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-sup-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-sup-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-sup-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-inf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-inf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-inf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-sup-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-sup-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-sup-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-inf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-inf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-inf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-sup-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-sup-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-sup-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-t1.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ts1.tfm + RELOC/fonts/type1/arkandis/mintspirit/MintSpirit-Bold.pfb + RELOC/fonts/type1/arkandis/mintspirit/MintSpirit-BoldItalic.pfb + RELOC/fonts/type1/arkandis/mintspirit/MintSpirit-Italic.pfb + RELOC/fonts/type1/arkandis/mintspirit/MintSpirit-Regular.pfb + RELOC/fonts/type1/arkandis/mintspirit/MintSpiritNo2-Bold.pfb + RELOC/fonts/type1/arkandis/mintspirit/MintSpiritNo2-BoldItalic.pfb + RELOC/fonts/type1/arkandis/mintspirit/MintSpiritNo2-Italic.pfb + RELOC/fonts/type1/arkandis/mintspirit/MintSpiritNo2-Regular.pfb + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-inf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-inf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-lf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-lf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-lf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-osf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-osf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-osf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-sup-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-sup-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-tlf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-tlf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-tlf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-tosf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-tosf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-tosf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-inf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-lf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-osf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-sup-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-inf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-inf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-lf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-lf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-lf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-osf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-osf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-osf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-sup-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-sup-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-tlf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-tlf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-tlf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-tosf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-tosf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-tosf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-inf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-inf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-lf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-lf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-lf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-osf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-osf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-osf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-sup-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-sup-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-tlf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-tlf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-tlf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-tosf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-tosf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-tosf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-inf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-inf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-lf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-osf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-sup-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-sup-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-inf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-inf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-lf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-osf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-sup-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-sup-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-inf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-inf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-lf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-osf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-sup-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-sup-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ts1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ly1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-t1.vf + RELOC/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ts1.vf + RELOC/tex/latex/mintspirit/LY1MintSpirit-Inf.fd + RELOC/tex/latex/mintspirit/LY1MintSpirit-LF.fd + RELOC/tex/latex/mintspirit/LY1MintSpirit-OsF.fd + RELOC/tex/latex/mintspirit/LY1MintSpirit-Sup.fd + RELOC/tex/latex/mintspirit/LY1MintSpirit-TLF.fd + RELOC/tex/latex/mintspirit/LY1MintSpirit-TOsF.fd + RELOC/tex/latex/mintspirit/LY1MintSpiritNoTwo-Inf.fd + RELOC/tex/latex/mintspirit/LY1MintSpiritNoTwo-LF.fd + RELOC/tex/latex/mintspirit/LY1MintSpiritNoTwo-OsF.fd + RELOC/tex/latex/mintspirit/LY1MintSpiritNoTwo-Sup.fd + RELOC/tex/latex/mintspirit/LY1MintSpiritNoTwo-TLF.fd + RELOC/tex/latex/mintspirit/LY1MintSpiritNoTwo-TOsF.fd + RELOC/tex/latex/mintspirit/OT1MintSpirit-Inf.fd + RELOC/tex/latex/mintspirit/OT1MintSpirit-LF.fd + RELOC/tex/latex/mintspirit/OT1MintSpirit-OsF.fd + RELOC/tex/latex/mintspirit/OT1MintSpirit-Sup.fd + RELOC/tex/latex/mintspirit/OT1MintSpirit-TLF.fd + RELOC/tex/latex/mintspirit/OT1MintSpirit-TOsF.fd + RELOC/tex/latex/mintspirit/OT1MintSpiritNoTwo-Inf.fd + RELOC/tex/latex/mintspirit/OT1MintSpiritNoTwo-LF.fd + RELOC/tex/latex/mintspirit/OT1MintSpiritNoTwo-OsF.fd + RELOC/tex/latex/mintspirit/OT1MintSpiritNoTwo-Sup.fd + RELOC/tex/latex/mintspirit/OT1MintSpiritNoTwo-TLF.fd + RELOC/tex/latex/mintspirit/OT1MintSpiritNoTwo-TOsF.fd + RELOC/tex/latex/mintspirit/T1MintSpirit-Inf.fd + RELOC/tex/latex/mintspirit/T1MintSpirit-LF.fd + RELOC/tex/latex/mintspirit/T1MintSpirit-OsF.fd + RELOC/tex/latex/mintspirit/T1MintSpirit-Sup.fd + RELOC/tex/latex/mintspirit/T1MintSpirit-TLF.fd + RELOC/tex/latex/mintspirit/T1MintSpirit-TOsF.fd + RELOC/tex/latex/mintspirit/T1MintSpiritNoTwo-Inf.fd + RELOC/tex/latex/mintspirit/T1MintSpiritNoTwo-LF.fd + RELOC/tex/latex/mintspirit/T1MintSpiritNoTwo-OsF.fd + RELOC/tex/latex/mintspirit/T1MintSpiritNoTwo-Sup.fd + RELOC/tex/latex/mintspirit/T1MintSpiritNoTwo-TLF.fd + RELOC/tex/latex/mintspirit/T1MintSpiritNoTwo-TOsF.fd + RELOC/tex/latex/mintspirit/TS1MintSpirit-LF.fd + RELOC/tex/latex/mintspirit/TS1MintSpirit-OsF.fd + RELOC/tex/latex/mintspirit/TS1MintSpirit-TLF.fd + RELOC/tex/latex/mintspirit/TS1MintSpirit-TOsF.fd + RELOC/tex/latex/mintspirit/TS1MintSpiritNoTwo-LF.fd + RELOC/tex/latex/mintspirit/TS1MintSpiritNoTwo-OsF.fd + RELOC/tex/latex/mintspirit/TS1MintSpiritNoTwo-TLF.fd + RELOC/tex/latex/mintspirit/TS1MintSpiritNoTwo-TOsF.fd + RELOC/tex/latex/mintspirit/mintspirit.sty + RELOC/tex/latex/mintspirit/mintspirit2.sty +catalogue-contact-home http://arkandis.tuxfamily.org/adffonts.html +catalogue-ctan /fonts/mintspirit +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license ofl +catalogue-topics font font-sans font-otf font-type1 + +name minutes +category Package +revision 42186 +shortdesc Typeset the minutes of meetings +relocated 1 +longdesc Supports the creation of a collection of minutes. Features +longdesc include: Support of tasks (who, schedule, what, time of +longdesc finishing; possibility of creating a list of open tasks; +longdesc inclusion of open tasks from other minutes; Support for +longdesc attachments; Support of schedule dates (in planning: support +longdesc for the calendar package); Different versions ('secret parts'); +longdesc and Macros for votes and decisions (list of decisions). Support +longdesc for minutes in German, Dutch and English is provided. +containersize 9028 +containerchecksum 3abd6c4963ceec3cf073048c21d2abc236d58f522000195fd459c554c10d2af9afaf772b0fd1545fdf72decbc7e1c62a0bb12d7bc1dfd9d5b025f5131ca5f145 +doccontainersize 393404 +doccontainerchecksum a069ea537eb1fc572c842a26dd406b1ef2f1343ef6066d266642dfe37515a3679c3a9e64eb37e1e992fc40281d855b817edf9116aae3922abc60e3c01106e3da +docfiles size=110 + RELOC/doc/latex/minutes/MinStyGd.tex + RELOC/doc/latex/minutes/Overview.tex + RELOC/doc/latex/minutes/Protokol.tex + RELOC/doc/latex/minutes/README.md details="Readme" + RELOC/doc/latex/minutes/Sample.tex + RELOC/doc/latex/minutes/SampleDE.tex + RELOC/doc/latex/minutes/SampleEN.tex + RELOC/doc/latex/minutes/SampleNL.tex + RELOC/doc/latex/minutes/minutes.pdf details="Package documentation" +srccontainersize 24608 +srccontainerchecksum 09b6260de696981f020835c61e20f23bfb81404df44af477f62341b9b07c65a1be58098d33dc876d6f07f3a5aaf6df25c8e3e7707c0f238ae76094ff0bfe5a2e +srcfiles size=24 + RELOC/source/latex/minutes/minutes.dtx + RELOC/source/latex/minutes/minutes.ins +runfiles size=9 + RELOC/tex/latex/minutes/minutes.sty +catalogue-ctan /macros/latex/contrib/minutes +catalogue-date 2016-09-30 11:34:18 +0200 +catalogue-license lppl +catalogue-topics meeting-admin +catalogue-version 1.8f + +name mismath +category Package +revision 51193 +shortdesc Miscellaneous mathematical macros +relocated 1 +longdesc The package provides some mathematical macros to typeset: +longdesc mathematical constants e, i, pi in upright shape +longdesc (automatically) as recommended by ISO 80000-2, vectors with +longdesc beautiful arrows and adjusted norm, some standard operator +longdesc names, improved spacings in mathematical formulas, systems of +longdesc equations and small matrices, displaymath in double columns for +longdesc long calculations. +containersize 2788 +containerchecksum 62719217fbcb7e9b7a0d6a85287601574f73eb7a26f8f706e29da4c6e16c16e0e04c8927cd6cdc43e61efe48b03b12e97e9f6f211b6149178732d9b96a4bd0e0 +doccontainersize 527300 +doccontainerchecksum c480edc52e1582527dd7a296b82d7ff617b58dae271c0d0340cffbee4a63d10daa148d6b46502168b1829991dfd90669b969c5557ad48baec3a9ea5435e495fd +docfiles size=130 + RELOC/doc/latex/mismath/README.md details="Readme" + RELOC/doc/latex/mismath/mismath.pdf details="Package documentation" +srccontainersize 14356 +srccontainerchecksum 620a373c80a99daacba5016577f13c2fdc62dcaa52b6b1c47f8c8336c9e22388ebb3a9b8c3259910b285c1afe4d30ad3d6003715d63f5a8b38a9b343ba39f1b0 +srcfiles size=12 + RELOC/source/latex/mismath/mismath.dtx + RELOC/source/latex/mismath/mismath.ins +runfiles size=2 + RELOC/tex/latex/mismath/mismath.sty +catalogue-ctan /macros/latex/contrib/mismath +catalogue-date 2019-05-22 19:09:49 +0200 +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 1.4 + +name missaali +category Package +revision 42810 +shortdesc A late medieval OpenType textura font +relocated 1 +longdesc This package contains the free OpenType Textura font Missaali +longdesc and a style file for using it with XeLaTeX. Textura is a +longdesc typeface based on the textus quadratus form of the textualis +longdesc formata that late medieval scribes used for the most valuable +longdesc manuscripts. The font Missaali is based on Textura that German +longdesc printer Bartholomew Ghotan used for printing missals and +longdesc psalters in the 1480s. This font has two intended use cases: as +longdesc a Gothic display font; and for emulating late-medieval +longdesc manuscripts. In addition to the basic textura letters, the font +longdesc contains a large number of abbreviation sigla as well as a set +longdesc of Lombardic initials. As modern typesetting algorithms are not +longdesc intended for creating 15th century style layout, the package +longdesc contains a XeLaTeX style file that makes it easier to achieve +longdesc the classic incunabula look. +containersize 63496 +containerchecksum d16285296232f45ba3eef2e427ecac59b248f9788abd5b2e9b9007f2013bcc52ceb482063290e3ebe6ea625adefdd05b5948546e0a4c17377a6e4de30ecca041 +doccontainersize 7898860 +doccontainerchecksum c786638ba6c5d03395e8efdcc1295ec7b7470daa058b7bdaff4452e4524cc2467606bd7eea5591826c8aa50ed22baecd18319dfdb28bcaed6d2afce176e984a1 +docfiles size=2183 + RELOC/doc/fonts/missaali/MANIFEST-Missaali.txt + RELOC/doc/fonts/missaali/Missaali.glyphs + RELOC/doc/fonts/missaali/OFL.txt + RELOC/doc/fonts/missaali/README details="Readme" + RELOC/doc/fonts/missaali/lppl.txt + RELOC/doc/fonts/missaali/missaali-smallfont.png + RELOC/doc/fonts/missaali/missaali.bib + RELOC/doc/fonts/missaali/missaali.pdf details="Package documentation" + RELOC/doc/fonts/missaali/missaali.tex + RELOC/doc/fonts/missaali/missale-largefont.png + RELOC/doc/fonts/missaali/missale-normal.png + RELOC/doc/fonts/missaali/missale-preface.png + RELOC/doc/fonts/missaali/missale-tinyfont.png + RELOC/doc/fonts/missaali/pic-1.png + RELOC/doc/fonts/missaali/pic-2.png + RELOC/doc/fonts/missaali/symbols.tex + RELOC/doc/fonts/missaali/word_features.png +runfiles size=68 + RELOC/fonts/opentype/public/missaali/Missaali-Regular.otf + RELOC/tex/latex/missaali/missaali.sty +catalogue-ctan /fonts/missaali +catalogue-date 2016-12-31 06:02:05 +0100 +catalogue-license ofllppl1.3 +catalogue-topics font-otf font-archaic +catalogue-version 1.004 + +name mkgrkindex +category Package +revision 26313 +catalogue greek-makeindex +shortdesc Makeindex working with Greek +longdesc Makeindex is resolutely stuck with Latin-based alphabets, so +longdesc will not deal with Greek indexes, unaided. This package +longdesc provides a Perl script that will transmute the index of a Greek +longdesc document in such a way that makeindex will sort the entries +longdesc according to the rules of the Greek alphabet. +depend mkgrkindex.ARCH +containersize 2892 +containerchecksum bbb0b306f30b4fe898f5d5bfdcb1eaa4d2d88a95cfa1ea0da51957aad1de028928562c930180f6c0a7d66b5cdfd804d52afbd229e7ca43173477a229cefff192 +doccontainersize 91480 +doccontainerchecksum 5a5b14d4282e97420f796456155a71c23a44d4197d4d92bfea1f0f20e95b42e506c7be3f2b0aba37508415341e999522bd823c649cc6259a6e26d42399c6b8cf +docfiles size=28 + texmf-dist/doc/support/mkgrkindex/mkgrkindex.nw + texmf-dist/doc/support/mkgrkindex/mkgrkindex.pdf details="Package documentation" +runfiles size=4 + texmf-dist/makeindex/mkgrkindex/lowercase-headers.ist + texmf-dist/makeindex/mkgrkindex/uppercase-headers.ist + texmf-dist/scripts/mkgrkindex/mkgrkindex +catalogue-ctan /language/greek/mkgrkindex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics index-proc greek +catalogue-version 2.0 + +name mkgrkindex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of mkgrkindex +containersize 340 +containerchecksum 3e612f75feb96af6329b1a79628fe8f0d3191f958b1fda624c3fba68c67cf883b242d0b9e49a57f7d4902358de9994d3c57507a5ef6f9a27b463f85f73ff6e58 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/mkgrkindex + +name mkgrkindex.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of mkgrkindex +containersize 340 +containerchecksum 5ae4de30084c552bd31829f7eacc53e3e26c8bcf37141ca9be8a90824f5632394ceb1eea40fa4b7b4ad1a15d694786ab551dcfde067104e05b4d9c1fca202b17 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/mkgrkindex + +name mkgrkindex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of mkgrkindex +containersize 340 +containerchecksum de97a0fe79b3999b657404babdfd16b3e9791618f7bb6774e9bbb7284470d72ea1cb2011fd6e4e9c20312d5572f69625548ca2ab07cce07755b30bb355008551 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/mkgrkindex + +name mkgrkindex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of mkgrkindex +containersize 340 +containerchecksum 8856521f8102263a9ab485ce3f9397752576780ee50f466f4d9690cecefc3b70885486a1a5c9fc72ded0a2e7c40ee47d46b18caf5f6405eb89e1b236de003b6e +binfiles arch=armhf-linux size=1 + bin/armhf-linux/mkgrkindex + +name mkgrkindex.i386-cygwin +category Package +revision 14431 +shortdesc i386-cygwin files of mkgrkindex +containersize 340 +containerchecksum 1b49e4391a305be8be23e101931d1e09a6c81e1540075c30defd0b1c75515c10109ecba1f70c21da385d1fa4aa63da6b82c19409dc51b30dd4b146a405d0f35b +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/mkgrkindex + +name mkgrkindex.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of mkgrkindex +containersize 344 +containerchecksum 01ebcc4da28b0880e1bb1eafafd59676b696727c7f687fe9d19b0aaffdfb7de0aa1021d3af5064e193b0a293bb28cca2827d18aaacd218b4620af32abb109276 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/mkgrkindex + +name mkgrkindex.i386-linux +category Package +revision 14428 +shortdesc i386-linux files of mkgrkindex +containersize 340 +containerchecksum 830052f8ac3738f3f68f402124cebc24729537d42e4750bfd270fc21d4dbb1cf433d8d265e32ea541cfd5dc9762caca9e9369d8f36f10fb137a6daaf59646b8b +binfiles arch=i386-linux size=1 + bin/i386-linux/mkgrkindex + +name mkgrkindex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of mkgrkindex +containersize 340 +containerchecksum df4ff921865d86e3f225c10645fcafb0d2ec9cc7872ce5a7866afa480cc6c4ecd185f14811d0b74bd7fcc4b467c71ffbb8649b613da6b31fbc62e39298d2cf61 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/mkgrkindex + +name mkgrkindex.i386-solaris +category Package +revision 14428 +shortdesc i386-solaris files of mkgrkindex +containersize 340 +containerchecksum b63e38774177dcb3d83473100e26a1f8b7af53e195b63e238e51eaf73d56a6cf76b97143c71e14babd119f1f1348a0462f7fe2ab668d251fc31067a691a36792 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/mkgrkindex + +name mkgrkindex.win32 +category Package +revision 15404 +shortdesc win32 files of mkgrkindex +containersize 688 +containerchecksum 4734cda199a26b57fc7a34e677fb2f77d9cfb5df82a6bbf6f8d3aa1ccda733c5c7895ada151d79162bf8d851e6f6d24088d82e6b5f975fb43889d66547b7d4ae +binfiles arch=win32 size=1 + bin/win32/mkgrkindex.exe + +name mkgrkindex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of mkgrkindex +containersize 344 +containerchecksum 636626d4c6bd180c5540e83d02bdd35b3abb26cf99028dc00fc961aa3b7ce62db7bb0494f5fa19b8d0bb51518d8479b3bef77f157036a3efc94206e32da4bb72 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/mkgrkindex + +name mkgrkindex.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of mkgrkindex +containersize 340 +containerchecksum dde014c126a66e67177eb5411ce4f9f8bb3534afba0a4b0de908bb09a5ce2e6b3d98c33695a7bca0e6455481ebc436de36d133759bd511257664400ba20af9c6 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/mkgrkindex + +name mkgrkindex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of mkgrkindex +containersize 352 +containerchecksum 310239d49b9088ffffc53e5dec419a3b8b64f04ccf6ad158fb3440d88158c2d581d9210565a7268f1952dd5eff2c61cac955e118859db1984e0ca6ecbdba45c3 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/mkgrkindex + +name mkgrkindex.x86_64-linux +category Package +revision 14428 +shortdesc x86_64-linux files of mkgrkindex +containersize 340 +containerchecksum 1f963a4f7f87de3e7c44831b7772f28bb62afee2a8d5d851bcc5de1b34466697e0d3689e9b471642ec6c32d24369f8c283a17c073fd1ed7ababbcd2aab347c6f +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/mkgrkindex + +name mkgrkindex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of mkgrkindex +containersize 344 +containerchecksum a15379ecb5cebb01eeb90c6cdcb16e5dcfb152fa88e4e2111b51856fd4dec30883abd96dd53fd9bb89318427cfb5fc0a95dc170e172e9fe14af3fb603f465fd7 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/mkgrkindex + +name mkgrkindex.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of mkgrkindex +containersize 340 +containerchecksum 9b4d190462e6c0eaa9ddda7033e9edc8a9ec3a005486f21e6f267770fa1df30cc876598b48cca109d07108f85598b0c699bf565c4ea8d13830869662886b0a2c +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/mkgrkindex + +name mkjobtexmf +category Package +revision 29725 +shortdesc Generate a texmf tree for a particular job +longdesc The package provides a Perl script, which runs a program and +longdesc tries to find the names of file used. Two methods are +longdesc available, option -recorder of (Web2C) TeX and the program +longdesc strace. Then it generates a directory with a texmf tree. It +longdesc checks the found files and tries sort them in this texmf tree. +longdesc The script may be used for archiving purposes or to speed up +longdesc later TeX runs. +depend mkjobtexmf.ARCH +containersize 7444 +containerchecksum c0dffdb276141b78bd2c47e6d2bfddcd13c1800d3a0806a05ca1fba72a91621364b827801430bc757601e07f2a5130366ade49d7ac1df27901fbec29827739c3 +doccontainersize 80276 +doccontainerchecksum 3ef5c333cedd5104b63c1457fff2eee40aea7d1f1b187d34ce4cfccd5b6bd38809b7686dc7b41a147fbee2ae0e951470f3ae574bd3c10a5f9b6fb76b686ce4f5 +docfiles size=37 + texmf-dist/doc/generic/mkjobtexmf/README + texmf-dist/doc/generic/mkjobtexmf/clean-case.pl + texmf-dist/doc/generic/mkjobtexmf/mkjobtexmf.html + texmf-dist/doc/generic/mkjobtexmf/mkjobtexmf.ltx + texmf-dist/doc/generic/mkjobtexmf/mkjobtexmf.pdf details="Package documentation (PDF format)" + texmf-dist/doc/generic/mkjobtexmf/mkjobtexmf.txt details="Package documentation (text format)" + texmf-dist/doc/generic/mkjobtexmf/version.pl + texmf-dist/doc/man/man1/mkjobtexmf.1 + texmf-dist/doc/man/man1/mkjobtexmf.man1.pdf +srccontainersize 19828 +srccontainerchecksum 7f9de9bafb890d12ef2f07d3b8596dc31c4bb97079f826c9efd4f318383f64d8250099a937d8d692fecf703e626b42f942962f4d906e705cf4b0155e354bff0f +srcfiles size=21 + texmf-dist/source/generic/mkjobtexmf/Makefile.in + texmf-dist/source/generic/mkjobtexmf/configure + texmf-dist/source/generic/mkjobtexmf/configure.ac + texmf-dist/source/generic/mkjobtexmf/install-sh +runfiles size=6 + texmf-dist/scripts/mkjobtexmf/mkjobtexmf.pl +catalogue-ctan /support/mkjobtexmf +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license artistic +catalogue-topics archival +catalogue-version 0.8 + +name mkjobtexmf.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of mkjobtexmf +containersize 340 +containerchecksum f4d1189556e62ac87c6b92b248251389f1bc863e3272571747a961007e4addf4347d15bfd738c2c53199222e5b5a3ce350cf88e1088591f8c42ad1b6ed3b0eae +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/mkjobtexmf + +name mkjobtexmf.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of mkjobtexmf +containersize 344 +containerchecksum 87941c9d1b4bbcd9b1b4a680e52ff872511a61fc5493267da84803e0b8b630b4781457a66350d3c4ec7f249f3614824b68d6ee09108d36165e4b6504e4cc6046 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/mkjobtexmf + +name mkjobtexmf.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of mkjobtexmf +containersize 344 +containerchecksum 9b04ec2c4133355e4f9e606940db2ef84d8b949f9cec5d919ad820a6ef856b32d8c2cd1d473bfce4c9ccfb079a5dc991254bd467bbc7da2265bd193c915c6738 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/mkjobtexmf + +name mkjobtexmf.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of mkjobtexmf +containersize 340 +containerchecksum 2378ecad1af32d83af57b71ee47235bf954d2185d44c0575f411939afc770a36656849d11026cad2e45bbb68b5858a6d0894924303f029f9df13d4a9ca9ee7b0 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/mkjobtexmf + +name mkjobtexmf.i386-cygwin +category Package +revision 25941 +shortdesc i386-cygwin files of mkjobtexmf +containersize 340 +containerchecksum d33a99fc7b4ec27d5436b40df185fed95e8d0d465ad5f414d4ac9e1c9f2f34c3653077c09b391b3135a5f75d9da44ea4c5177b965b81bbc57d89c415732cdf1d +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/mkjobtexmf + +name mkjobtexmf.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of mkjobtexmf +containersize 340 +containerchecksum 48724f1b5d8e76a6f053b80f98e54edbb37755c95c40a8b0e508a2fb1d96865ad779545b1d2b8288584a50672063642cf58d9ed03c54be3a74dabdf627e269bc +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/mkjobtexmf + +name mkjobtexmf.i386-linux +category Package +revision 8457 +shortdesc i386-linux files of mkjobtexmf +containersize 340 +containerchecksum 4f23714bb31b36a73b431cc0dce593ad532db75c3e7069ad24567ab5d2bd1004b042cad7ebae28e5ba061d5dbf841dfd4a237dd86bb3043d6abe532571b3af02 +binfiles arch=i386-linux size=1 + bin/i386-linux/mkjobtexmf + +name mkjobtexmf.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of mkjobtexmf +containersize 340 +containerchecksum e5ab05c45b1077dd7c0d50761d54c7fcb2d12010c3a94ae5471f666afad6017a3a7fdbd51ef369fbc6313718fd9b942c3f988beaad2706f1a57fbe6c73e4e015 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/mkjobtexmf + +name mkjobtexmf.i386-solaris +category Package +revision 8102 +shortdesc i386-solaris files of mkjobtexmf +containersize 340 +containerchecksum d3d35af667b40f6fb815008709bcc16dfb4560e7c0c99e8f39e63ac884e62974d94b45557f9a15adf81ddbbf1c80a92d89afe595631e7902b9e613ddd76f8fc0 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/mkjobtexmf + +name mkjobtexmf.win32 +category Package +revision 15404 +shortdesc win32 files of mkjobtexmf +containersize 688 +containerchecksum 5daa699bb75b1b46da97c415dc57b7999a9f3e6e7f1abe2c3e7a9d254a604368dba8ff7b2b69dc91fa12777fdc3f4f2c1da2b426d535137109b26816f5dd6c6b +binfiles arch=win32 size=1 + bin/win32/mkjobtexmf.exe + +name mkjobtexmf.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of mkjobtexmf +containersize 340 +containerchecksum e764c2174e548170cdc63a319760bb3424ff851d1d3c7b4aaff8ec924f89fed422ea1a9a97c45f8eb551de954dfe41793693c65f2bbe9b19ec97bb4f13fdfec5 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/mkjobtexmf + +name mkjobtexmf.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of mkjobtexmf +containersize 344 +containerchecksum 2ed9654fa9e51c6d2ef471216752c123ba14a9df6fd21c81abb8424c8c368738a66c12247df5011602e59795f176fd2d7990fd33853c04628c1d92ae2e805080 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/mkjobtexmf + +name mkjobtexmf.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of mkjobtexmf +containersize 348 +containerchecksum 04df7ef69e25faaf5066d894e41818c343fa2baad2d174b0659d58862c3f7b4dd0ab28518201b1a05b7d42dabaeaa00cd642a937048b0bd07d8b15fe49449bb2 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/mkjobtexmf + +name mkjobtexmf.x86_64-linux +category Package +revision 8601 +shortdesc x86_64-linux files of mkjobtexmf +containersize 340 +containerchecksum 6738365c83a915ec8e3c8d06e2871ebf5426b19873981efe49e0a78241eae5d4d4329f319b6cf53332ecf4ed46586ca438c8017f33d4e7cdb80c446e3dcf3d3d +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/mkjobtexmf + +name mkjobtexmf.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of mkjobtexmf +containersize 348 +containerchecksum a84b56bcbcde4a3843fbace344c2b76926011d69b4944946aa861410d7af8567376ca925d04ea03a7ee7f8704d7286e4867d7aa7e37fae0f3921d1ef865afe09 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/mkjobtexmf + +name mkjobtexmf.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of mkjobtexmf +containersize 340 +containerchecksum 7b89427a0eba5820a61f4c130648f5e25d91ae49c1809593d697f020f922345cd3df357b707345f5519b097c7ee8d15e193fcd6fccc651db5f0ca8045a6373e1 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/mkjobtexmf + +name mkpattern +category Package +revision 15878 +shortdesc A utility for making hyphenation patterns +relocated 1 +longdesc Mkpattern is a general purpose program for the generation of +longdesc hyphenation patterns, with definition of letter sets and +longdesc template-like constructions. It also provides an easy way to +longdesc handle different input and output encodings, and featgures +longdesc generation of clean UTF-8 patterns. The package was used for +longdesc the creation of the Galician patterns. +containersize 4924 +containerchecksum 0395c9258e6c4a8459e69ff2fbdfe511b0c6863e02333d9481a8a1e82362cf9e1be7e89e7447bda497e7ed2bc18e1986e0a5461e9f49c63ff869f39a4da4f007 +doccontainersize 82968 +doccontainerchecksum 8232866143444fab1ed1f15255dc5f8c1c5050812e2882d2e20636bfd300216815a53aa03cd4f69ed7f45aab255a8efae9bfdc10df6b7a246d36d4db075204ef +docfiles size=28 + RELOC/doc/plain/mkpattern/README details="Package README" + RELOC/doc/plain/mkpattern/mkpatdoc.tex + RELOC/doc/plain/mkpattern/mkpatter.pdf details="Package documentation" + RELOC/doc/plain/mkpattern/mkpattern-exmpl.tex +runfiles size=4 + RELOC/tex/plain/mkpattern/mkpatter.tex +catalogue-ctan /language/hyphenation/utils/mkpattern +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl +catalogue-topics hyphenation +catalogue-version 1.2 + +name mkpic +category Package +revision 33700 +shortdesc Perl interface to mfpic +longdesc mkpic provides an easy interface for making small pictures with +longdesc mfpic. To this end you create an input file consisting of +longdesc commands, one per line, with space separated parameters (or you +longdesc modify the DATA section of the mkpic script, which is used if +longdesc you run it without an input file). For an extensive description +longdesc see the file mkpicdoc.pdf, which is part of the distribution. +depend mkpic.ARCH +containersize 9264 +containerchecksum 7814f14293e10a23bc9348dcaea9af326ab4dd93cc55865320706984e50883742381b5df3e77774e7a63fbba7ebcbe0fae7268a3d1a34ebb2d8a0303f5b53034 +doccontainersize 200688 +doccontainerchecksum bfaf4232fc39c13fefd86c21b2f9f76cd93761c58e39c1420c601627e95adf9e6c5c06db73a0afda6621acef374089dd93afbd2a3bd761cf5aa8db29883375e2 +docfiles size=57 + texmf-dist/doc/support/mkpic/README details="Readme" + texmf-dist/doc/support/mkpic/mkpic.pdf details="Package manual page" + texmf-dist/doc/support/mkpic/mkpicdoc.pdf details="Package documentation" + texmf-dist/doc/support/mkpic/mkpicdoc.tex +runfiles size=7 + texmf-dist/scripts/mkpic/mkpic +catalogue-ctan /support/mkpic +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics graphics +catalogue-version 1.02 + +name mkpic.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of mkpic +containersize 336 +containerchecksum 178789160b631972ff3a6eddbcfb89b4c11ea32e44c81b89e0441cb91b6444a8013cc8c727a050c051205e1660dc4ea501839f7c8aea0f9049d7e14f8e8270d9 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/mkpic + +name mkpic.amd64-freebsd +category Package +revision 33688 +shortdesc amd64-freebsd files of mkpic +containersize 340 +containerchecksum fe25815dce769020b5d8a125dc3a52c245bdf4f8d8eb5a2ce5f970aa16e2b4a9e737d5a250d20f9af589bf6f9079f1d7d2061502a242fc5daced5dd30884cef7 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/mkpic + +name mkpic.amd64-netbsd +category Package +revision 33688 +shortdesc amd64-netbsd files of mkpic +containersize 336 +containerchecksum 580a4946fc54fe865c705fd8e3314194d4f3d59f71cd42075c4eb180da3292d404cb16b5d580385b4080f85776c6776576c859a10ac9391d1630b6f0a6e38e5f +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/mkpic + +name mkpic.armhf-linux +category Package +revision 33688 +shortdesc armhf-linux files of mkpic +containersize 336 +containerchecksum 0e5cbe8de9409ab34e5d7d72cd1a92def6ca2088b14d0bc759a4db7b3051039bfb6df8dc56c26a638ec28dc25bf7d20107abe990a85492c4f2792583d4748ee4 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/mkpic + +name mkpic.i386-cygwin +category Package +revision 33688 +shortdesc i386-cygwin files of mkpic +containersize 336 +containerchecksum b429cd618fc1c9ad1578765a14569ddef5c5e03873a0ad81a95af9c41edc4352e1657a709a53fa540b863489c4ba6d5dc6426fc2a4adaffa01c8e15a5a9ca490 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/mkpic + +name mkpic.i386-freebsd +category Package +revision 33688 +shortdesc i386-freebsd files of mkpic +containersize 336 +containerchecksum ca2cd973c382ee87f1200954bc283fb86a575b925d470c4551470cf0217445abdb3cba8b1119134a5a683ee82b5a39daa6d46b5db683cf2d5c512d1cde92c718 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/mkpic + +name mkpic.i386-linux +category Package +revision 33688 +shortdesc i386-linux files of mkpic +containersize 336 +containerchecksum 8e27737dbf5d1cb0274408172ce49591cb0ccfcd1c9132880dc42f0ae6474d09e94426c9d7ae86946ad1efe0fcb3a4cfdfb7c298d925e4319b9d62b18cd9d5c9 +binfiles arch=i386-linux size=1 + bin/i386-linux/mkpic + +name mkpic.i386-netbsd +category Package +revision 33688 +shortdesc i386-netbsd files of mkpic +containersize 336 +containerchecksum 908f5ed5f0528a24075fa89394e9b9aead3a4cc1d0e9f702399d39eb1d1bcbaa82c467f9c8f96fe2567a2bbf56d967dd40c8f09fa1a2dbb5017726cc4f07ba6d +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/mkpic + +name mkpic.i386-solaris +category Package +revision 33688 +shortdesc i386-solaris files of mkpic +containersize 336 +containerchecksum af75b5daf0319a142d8e1e1f13d482d79a827c7c5964b203f23e65f634da076ab0b2b7ebc49251c6cddbe1fdf02db66ce2e2d0da0ec5bdee287028a4b4fe636f +binfiles arch=i386-solaris size=1 + bin/i386-solaris/mkpic + +name mkpic.win32 +category Package +revision 33688 +shortdesc win32 files of mkpic +containersize 680 +containerchecksum 5116dc2bb077972e22e517f967b44290161fe08957f4948d202b6d530d08f4d3a19e20998ff150af7510c1f830c64f497353daf095d8d2de5437b0eb1397f8e2 +binfiles arch=win32 size=1 + bin/win32/mkpic.exe + +name mkpic.x86_64-cygwin +category Package +revision 33688 +shortdesc x86_64-cygwin files of mkpic +containersize 340 +containerchecksum dae750dbb05a7f7d4d85c173bebd460cb7bef4e1311360d466a500e8b173a743de2556e42c32b59ae3b9d454d0dafd1041f160ceecc5a5fb104aec5c631b6564 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/mkpic + +name mkpic.x86_64-darwin +category Package +revision 33688 +shortdesc x86_64-darwin files of mkpic +containersize 340 +containerchecksum 129a5f58e77731bc0d9d089794a656842aa2c481be04f8605fc37b8b9f8e3f22a631eecb631a73323cc981503ba8c15ce7536cfbdb13b2a877a1ded0c8a22413 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/mkpic + +name mkpic.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of mkpic +containersize 348 +containerchecksum 9f0d535967256b072640f50b3dd52ba0bb020377a10ef19a253659e254a897d45d97fa4e084ad751aedd0fb81d9ae3e99f22c49a2aee0bdd83b1034455fb0309 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/mkpic + +name mkpic.x86_64-linux +category Package +revision 33688 +shortdesc x86_64-linux files of mkpic +containersize 336 +containerchecksum a0e7c0cc7f8ec5f579d7195b772f416650b65792450e0f04e466d3abfad62801201de49c2b557e98eac1f51627366b92d303e2eea8426f10a76fa989226cedcb +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/mkpic + +name mkpic.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of mkpic +containersize 340 +containerchecksum 89eb01f41a3e1a4327f8161bc992503d4f84c87c94d12e13d92c80e3d5e65ea76dd9c914f921344a9b9533626e830139180b2ed02f8b670839b33bb52dba1264 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/mkpic + +name mkpic.x86_64-solaris +category Package +revision 33688 +shortdesc x86_64-solaris files of mkpic +containersize 336 +containerchecksum 0cd3b4c291972e65175cba35559e9b2cef02121d037aa6e9096d8643cba9e79887bde054bc6e2b4cf69658d486b4721bdf95d83a24c32c4a181ec27a0df775f1 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/mkpic + +name mla-paper +category Package +revision 20885 +shortdesc Proper MLA formatting +relocated 1 +longdesc The package formats articles using the MLA style. The aim is +longdesc that students and other academics in the humanities should be +longdesc able to typeset their materials, properly, with minimal effort +longdesc on their part. +containersize 2300 +containerchecksum 01e6bcd07d5dc7ead0ddb4f5d8ad537738bf0b863d2b43f04f0136a33627941b377e53d29808cd284dee3601bc7839c3f0697178ca586578207f9efb60a6f70c +doccontainersize 2004 +doccontainerchecksum 1367bb1bc5dd62faa89294141b74c7d2c9f5fd0acbfc37285421f9ff514ab67201de9c6a9070c5aeec396f0923afc8e10c5ec307fe89ad016ac167f33247154e +docfiles size=1 + RELOC/doc/latex/mla-paper/README details="Readme (with package use details)" +runfiles size=2 + RELOC/tex/latex/mla-paper/mla.sty +catalogue-ctan /macros/latex/contrib/mla-paper +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics gen-paper + +name mlacls +category Package +revision 51157 +shortdesc LaTeX class for MLA papers +relocated 1 +longdesc In the United States, secondary and undergraduate students are +longdesc generally expected to adhere to the format prescribed by the +longdesc Modern Language Association (MLA) for typewritten essays, +longdesc research papers and writings. This package provides a simple, +longdesc straightforward LaTeX class for composing papers almost +longdesc perfectly adherent to the MLA style guide. +containersize 2344 +containerchecksum 2c6bf74280d30538af99a4db5f736e28c1530472989f023c98495461bf1fd7db1eaeb73262aa0cdba2e08cfe6ecefb409517418f4d4da671ea3af12ca1c35587 +doccontainersize 372576 +doccontainerchecksum 51d69e28a99a249c2b62c7cc565963cc748d38ae4270e83c843153c3c81c86203fb183bc556b1c0d442be1d108eece8a2e7b7d279eb608b4b500a412a1bcf22a +docfiles size=98 + RELOC/doc/latex/mlacls/BUGS.md + RELOC/doc/latex/mlacls/LICENSE + RELOC/doc/latex/mlacls/README.md details="Readme" + RELOC/doc/latex/mlacls/mla-example.bib + RELOC/doc/latex/mlacls/mla-example.pdf + RELOC/doc/latex/mlacls/mla-example.tex + RELOC/doc/latex/mlacls/mla.pdf details="Package documentation" +srccontainersize 7808 +srccontainerchecksum d5bc4229c4a8e01c081193e42be7b42593b1f6260fba2fe3ed01f58439faf7f1df81cf6d32feb4464edea70e230e3a762f90e82d524b98ac26c14c1c5b12f410 +srcfiles size=7 + RELOC/source/latex/mlacls/mla.dtx + RELOC/source/latex/mlacls/mla.ins +runfiles size=2 + RELOC/tex/latex/mlacls/mla.cls +catalogue-also mla-paper +catalogue-contact-bugs https://gitlab.com/ssterling/mlacls/issues +catalogue-contact-repository https://gitlab.com/ssterling/mlacls +catalogue-ctan /macros/latex/contrib/mlacls +catalogue-date 2019-05-18 10:10:43 +0200 +catalogue-license lppl1.3c +catalogue-topics class gen-paper humanities +catalogue-version 0.4.1 + +name mlist +category Package +revision 15878 +shortdesc Logical markup for lists +relocated 1 +longdesc The package defines commands that create macros for typesetting +longdesc vectors, matrices and functions, in a logical way. For example, +longdesc logical indexing can then be used to refer to elements or +longdesc arguments without hard-coding the symbols in the document. +containersize 3068 +containerchecksum 23466ef3b73d8476c69632fe0c701f3ec675250b534fb4451cb0dcaf93c30a649ca07bb58cfbac89054cc31cc1219daaa1e7f746e6689927573175d42f78bfc0 +doccontainersize 186980 +doccontainerchecksum 771f51f52e47aceb7da064a0bf8ba4b19f0255fbd14d3b6d301457ad0dea80836f3e4c449611f5574c12e87185ab5ac9668404c5f1f97100971293425c7ecd13 +docfiles size=53 + RELOC/doc/latex/mlist/README details="Readme" + RELOC/doc/latex/mlist/mlist.pdf details="Package documentation" +srccontainersize 15480 +srccontainerchecksum 6112422b62304d0dafb8e4fa43239dd0899327dc952db6d1179af684049b46482a30675b8c44be534213d9b2fd9ff6bab267997bb0b08102e35e1ebdeca9956b +srcfiles size=13 + RELOC/source/latex/mlist/mlist.dtx + RELOC/source/latex/mlist/mlist.ins +runfiles size=4 + RELOC/tex/latex/mlist/mlist.cfg + RELOC/tex/latex/mlist/mlist.sty +catalogue-ctan /macros/latex/contrib/mlist +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics maths +catalogue-version 0.6a + +name mltex +category Package +revision 48634 +shortdesc The MLTeX system +longdesc MLTeX is a modification of TeX version >=3.0 that allows the +longdesc hyphenation of words with accented letters using ordinary +longdesc Computer Modern (CM) fonts. The system is distributed as a TeX +longdesc change file. +depend latex +depend cm +depend hyphen-base +depend babel +depend dehyph +depend latexconfig +depend latex-fonts +depend knuth-lib +depend plain +depend mltex.ARCH +execute AddFormat name=mllatex engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx -mltex *mllatex.ini" fmttriggers=cm,hyphen-base,babel,dehyph,latex,latexconfig,latex-fonts +execute AddFormat name=mltex engine=pdftex options="-translate-file=cp227.tcx -mltex mltex.ini" fmttriggers=cm,hyphen-base,knuth-lib,plain +containersize 6376 +containerchecksum 61f3712c0422eca9663cba6159a98ee20fc902e8c2afcebe700239958a97f948e8d02af04a5aec779751cd13f9d000128b4d6acb4b6d00f95164775693bd7f37 +doccontainersize 8676 +doccontainerchecksum 4a4f957ea1d27c25a4a5ca5a3aaaa7be0d65513741112512dcf65c4326c81ee090f371a6f8787629a8a7075344d8f8150da006004945a5075bfaee095e1ecb95 +docfiles size=9 + texmf-dist/doc/latex/mltex/README + texmf-dist/doc/latex/mltex/mltex.txt + texmf-dist/doc/latex/mltex/testmlft.dvi + texmf-dist/doc/latex/mltex/testmlft.tex + texmf-dist/doc/latex/mltex/testmlsw.dvi + texmf-dist/doc/latex/mltex/testmlsw.tex +runfiles size=8 + texmf-dist/tex/latex/mltex/lo1enc.def + texmf-dist/tex/latex/mltex/mlltxchg.def + texmf-dist/tex/latex/mltex/mltex.sty + texmf-dist/tex/mltex/config/mltex.ini +catalogue-ctan /systems/generic/mltex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license knuth +catalogue-topics engine multilingual +catalogue-version 2.2 + +name mltex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of mltex +containersize 340 +containerchecksum 6efdea87dc9ebfa5a88cb2c5453beff6749329dd0bd04a09ae1f5ed01f4a83fdd4b5abc24bb01f0ed5579bf8d99e33e9acb5c0af0d08fee035bf18d5e3f26bc3 +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/mllatex + bin/aarch64-linux/mltex + +name mltex.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of mltex +containersize 340 +containerchecksum 7a387e33ab904fd49096ede3a9b1f3de5eea101f5dcb0927ff6177ac7e1da7cc47786f757a1a364bf61eea4b7d14eaaa08e21722214cbd935754b94f74dfb9ea +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/mllatex + bin/amd64-freebsd/mltex + +name mltex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of mltex +containersize 336 +containerchecksum 640e23f173d95e88a65e732db0cf74f45915e1891cfb9526b6335b93f1ebf55748585e4ca8687a3e6733b43ef3fa3b8003c2cfcd20878bb29829ba6dbaf41948 +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/mllatex + bin/amd64-netbsd/mltex + +name mltex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of mltex +containersize 336 +containerchecksum c2291c293827058b41354d7fcf868fee2186f20070067a0059a3e9c616658949dee85e886a8f42ef4e36d9fb3d9a87345c3f25cc789527c586bc5c761b3d8024 +binfiles arch=armhf-linux size=2 + bin/armhf-linux/mllatex + bin/armhf-linux/mltex + +name mltex.i386-cygwin +category Package +revision 13930 +shortdesc i386-cygwin files of mltex +containersize 340 +containerchecksum a103fdc8ab5c92ee88226a6d659a9c80fffde6e57bc1e584964c5f1211675da49139b60d27ac3e7113afad8c33af59e7948dbbd809264a237095e85cfba2bb44 +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/mllatex + bin/i386-cygwin/mltex + +name mltex.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of mltex +containersize 340 +containerchecksum ace25eb01575a883bf6acf712c77a62786f97e8cd19fc7f4c7a7484bc744e16e132e54e625ac365614e772d5ca03f2458493dea7fb257356152324259f0047b0 +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/mllatex + bin/i386-freebsd/mltex + +name mltex.i386-linux +category Package +revision 3006 +shortdesc i386-linux files of mltex +containersize 336 +containerchecksum 7f51ca8a1558b5c97d35e0c1f059f6023fbe27a00fabb223999836454f93bdf663e3289e4b728cbcbcf218fafbc66c6553b24b605759a244e1aba0ced46d1b4a +binfiles arch=i386-linux size=2 + bin/i386-linux/mllatex + bin/i386-linux/mltex + +name mltex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of mltex +containersize 336 +containerchecksum 0316e2eaed69ac91d99389b97114529690cad6898fb22ed8ccc0f898e1058e578c3570676ab0fa084185e96047e1d6f12daea7adef3e534b59158304c7c2dbd8 +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/mllatex + bin/i386-netbsd/mltex + +name mltex.i386-solaris +category Package +revision 8102 +shortdesc i386-solaris files of mltex +containersize 336 +containerchecksum aab0f9dde0eb3eac27c83579b3f0042f28c1a221ca64a6a720f0b6401aa2bc3fe59c5f6d91178217b7b109a86b5263fd55ae728af20703aff22ec400a0387206 +binfiles arch=i386-solaris size=2 + bin/i386-solaris/mllatex + bin/i386-solaris/mltex + +name mltex.win32 +category Package +revision 36810 +shortdesc win32 files of mltex +containersize 888 +containerchecksum 458d7c47a7dc9a7bdb4c4cffb0117db4b1fe414bafddd38ad5534c888ac338bb7c88c6891403a6b7e806d52770260e7a8ac6d66c0c5850eea3243785074b0925 +binfiles arch=win32 size=2 + bin/win32/mllatex.exe + bin/win32/mltex.exe + +name mltex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of mltex +containersize 344 +containerchecksum daa6398fcef22f2e602f8b048b8d70ba0a82d8837e7ffbf830be27f1e7114bc85943e5253bf79a4a1855101595ea7865df9f64c0a036692d08ccd0a04fcf5a9f +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/mllatex + bin/x86_64-cygwin/mltex + +name mltex.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of mltex +containersize 340 +containerchecksum c1df01fde750f46a6d664ce560109d778ac50d36df9903ca7c8a1f30debdcd96320bb1dc1c388f7bcb485cfa3f838f286826decfdd2ebb5e33a86a01c40d412d +binfiles arch=x86_64-darwin size=2 + bin/x86_64-darwin/mllatex + bin/x86_64-darwin/mltex + +name mltex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of mltex +containersize 348 +containerchecksum 2cd479acfa750bc94c62db1a74eaf32103e6d4585fe842b35943e6ec1042f6cdc8bdc73759ea46264a98eb484a149d3c972b38a1989d8066ef54b107d7cf793f +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/mllatex + bin/x86_64-darwinlegacy/mltex + +name mltex.x86_64-linux +category Package +revision 3185 +shortdesc x86_64-linux files of mltex +containersize 336 +containerchecksum c16f85e5f863befe32f24f46589edbcef130e0be1462947f98f11f7bdd94fd8d703060b38f18a05a7abe11ec7604eb0cc4eb3b901c06d10f8d244c75b8548b91 +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/mllatex + bin/x86_64-linux/mltex + +name mltex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of mltex +containersize 340 +containerchecksum a5ab1a196706a4ae5e89595ffaf65091329a633ad27e734ebb5eb0260c9864e7c28d3bbcfe55663971d5047267c24e1b06ec66a9bacad861fbbf2a49d09aba46 +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/mllatex + bin/x86_64-linuxmusl/mltex + +name mltex.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of mltex +containersize 340 +containerchecksum c69b68647fdbe36a5177d665593c99d0a99252f7f056ad8781926bf2967bab4a79031b65b0a9b1ac72ae8f88e6d22d887da9c88fa95ed5d14dcb2c11479bf2ed +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/mllatex + bin/x86_64-solaris/mltex + +name mmap +category Package +revision 15878 +shortdesc Include CMap resources in PDF files from pdfTeX +relocated 1 +longdesc The package is an extension of cmap with improved flexibility +longdesc and coverage, including the ability to re-encode Knuth's basic +longdesc mathematics fonts. +containersize 19252 +containerchecksum a2427b9863ef37385507783dba7bdfd65bf022d1c7322e7560b78222c3d4e0ddfccfc70aa927196e64ca1a520e985eea8cb78a4129a39e73a8410bc210b801bb +doccontainersize 1040 +doccontainerchecksum 95a71c9a9b9cd46c1723c986ba41c29a7204fada2cd7bdd14ebfe5e0c4e1b06106f9c13469edd9caf0b94615bfbea9cc8a1f56a4f83cec37de481b39d2b4bd91 +docfiles size=1 + RELOC/doc/latex/mmap/README details="Readme" +runfiles size=74 + RELOC/tex/latex/mmap/lmr-m.cmap + RELOC/tex/latex/mmap/lmr.cmap + RELOC/tex/latex/mmap/ly1.cmap + RELOC/tex/latex/mmap/mmap.sty + RELOC/tex/latex/mmap/oml-m.cmap + RELOC/tex/latex/mmap/oml.cmap + RELOC/tex/latex/mmap/omlbit-m.cmap + RELOC/tex/latex/mmap/omlbit.cmap + RELOC/tex/latex/mmap/omlmit-m.cmap + RELOC/tex/latex/mmap/omlmit.cmap + RELOC/tex/latex/mmap/oms-m.cmap + RELOC/tex/latex/mmap/oms.cmap + RELOC/tex/latex/mmap/omsb-m.cmap + RELOC/tex/latex/mmap/omx-m.cmap + RELOC/tex/latex/mmap/omx.cmap + RELOC/tex/latex/mmap/ot1-m.cmap + RELOC/tex/latex/mmap/ot1.cmap + RELOC/tex/latex/mmap/ot1rbxit-m.cmap + RELOC/tex/latex/mmap/ot1rbxit.cmap + RELOC/tex/latex/mmap/ot1rbxn-m.cmap + RELOC/tex/latex/mmap/ot1rbxn.cmap + RELOC/tex/latex/mmap/ot1rmit-m.cmap + RELOC/tex/latex/mmap/ot1rmit.cmap + RELOC/tex/latex/mmap/ot1rmn-m.cmap + RELOC/tex/latex/mmap/ot1rmn.cmap + RELOC/tex/latex/mmap/ot1ssbxn-m.cmap + RELOC/tex/latex/mmap/ot1ssbxn.cmap + RELOC/tex/latex/mmap/ot1ssmn-m.cmap + RELOC/tex/latex/mmap/ot1ssmn.cmap + RELOC/tex/latex/mmap/ot1ttmn-m.cmap + RELOC/tex/latex/mmap/ot1ttmn.cmap + RELOC/tex/latex/mmap/ot1xxx-m.cmap + RELOC/tex/latex/mmap/t1-m.cmap + RELOC/tex/latex/mmap/t1.cmap + RELOC/tex/latex/mmap/ueuf-m.cmap + RELOC/tex/latex/mmap/ueufb-m.cmap + RELOC/tex/latex/mmap/ulasy-m.cmap + RELOC/tex/latex/mmap/ulasy.cmap + RELOC/tex/latex/mmap/umsa-m.cmap + RELOC/tex/latex/mmap/umsa.cmap + RELOC/tex/latex/mmap/umsb-m.cmap + RELOC/tex/latex/mmap/umsb.cmap + RELOC/tex/latex/mmap/upsy-m.cmap + RELOC/tex/latex/mmap/upsy.cmap + RELOC/tex/latex/mmap/upzd-m.cmap + RELOC/tex/latex/mmap/upzd.cmap +catalogue-also cmap +catalogue-ctan /macros/latex/contrib/mmap +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics pdf-feat +catalogue-version 1.03 + +name mnotes +category Package +revision 35521 +shortdesc Margin annotation for collaborative writing +relocated 1 +longdesc The package provides a flexible mechanism for annotating, and +longdesc commenting upon, collaboratively-written documents. +containersize 2008 +containerchecksum f95e4cbe33ec00e62aab2b3b9cdddaeceb762ccc34b736b8e2c0d658b3e871134d0a0b8805470f8c4e148057c513dad9cbbf6c1d5076843b2b2fdce03c84dd09 +doccontainersize 211560 +doccontainerchecksum 58c3d8def0ee368f1cb87567aab160b4af10de7137de1901f4c6428531f1d080146ee5cb7f0be73a09216d0aa5580bf4baa8cbcca4c7801a322731f88cadf2ec +docfiles size=54 + RELOC/doc/latex/mnotes/Makefile + RELOC/doc/latex/mnotes/README details="Readme" + RELOC/doc/latex/mnotes/mnotes.pdf details="Readme" +srccontainersize 5448 +srccontainerchecksum 4c0a9077711c44601ab9933cfd46b1ed8c5bb1866fb40ac0707100ed9173bdc67d59f7aab91972e6150ed65e385583dfd9851479c8f0cd651f61a6ab6fe39946 +srcfiles size=5 + RELOC/source/latex/mnotes/mnotes.dtx + RELOC/source/latex/mnotes/mnotes.ins +runfiles size=2 + RELOC/tex/latex/mnotes/mnotes.sty +catalogue-ctan /macros/latex/contrib/mnotes +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics marginal +catalogue-version 0.8 + +name mnras +category Package +revision 37579 +shortdesc Monthly Notices of the Royal Astronomical Society +relocated 1 +longdesc Package for preparing papers in the journal Monthly Notices of +longdesc the Royal Astronomical Society. +containersize 25856 +containerchecksum 8c8c49846a2bac72383b0481b0da0cbfeb67bcb0787815d3509e4b55bf5afda5f3aa74f44d03267891b42b609b1a10b1e1577a02e9a3e4c8d9cd5ec57585e9bf +doccontainersize 238704 +doccontainerchecksum e90ce259881ebc34dce52eeef5b6eeefe1659a3e8b4ff5a749604d5f3061d38e1cb749d8dadce757a173c1174fdbc9bb3b272ff1bc344a55ec2dbe946e90cdb2 +docfiles size=109 + RELOC/doc/latex/mnras/example.eps + RELOC/doc/latex/mnras/example.png + RELOC/doc/latex/mnras/example.ps + RELOC/doc/latex/mnras/legacy/legacy.txt + RELOC/doc/latex/mnras/legacy/mn2e.bst + RELOC/doc/latex/mnras/legacy/mn2e.cls + RELOC/doc/latex/mnras/mnras_guide.pdf details="Package documentation" + RELOC/doc/latex/mnras/mnras_guide.tex + RELOC/doc/latex/mnras/mnras_template.tex + RELOC/doc/latex/mnras/readme.txt +runfiles size=27 + RELOC/bibtex/bst/mnras/mnras.bst + RELOC/tex/latex/mnras/mnras.cls +catalogue-ctan /macros/latex/contrib/mnras +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics journalpub +catalogue-version 3.0 + +name mnsymbol +category Package +revision 18651 +shortdesc Mathematical symbol font for Adobe MinionPro +relocated 1 +longdesc MnSymbol is a symbol font family, designed to be used in +longdesc conjunction with Adobe Minion Pro (via the MinionPro package). +longdesc Almost all of LaTeX and AMS mathematical symbols are provided; +longdesc remaining coverage is available from the MinionPro font with +longdesc the MinionPro package. The fonts are available both as Metafont +longdesc source and as Adobe Type 1 format, and a comprehensive support +longdesc package is provided. While the fonts were designed to fit with +longdesc Minon Pro, the design should fit well with other renaissance or +longdesc baroque faces: indeed, it will probably work with most fonts +longdesc that are neither too wide nor too thin, for example Palatino or +longdesc Times; it is known to look good with Sabon. There is no package +longdesc designed to configure its use with any font other than Minion +longdesc Pro, but (for example) simply loading mnsymbol after mathpazo +longdesc will probably do what is needed. +execute addMap MnSymbol.map +containersize 4426364 +containerchecksum 68df6dcaca1d2f3b743c62e205a22427152ec6ac1deaa126e7511842ad7817ba4a7a232b72b45c6dae88d930837f46597c5f89e50b1057ba313a590157342ff5 +doccontainersize 239032 +doccontainerchecksum bf06a1534665ad50d33073e5d7332337c05f5d5315ba41af399f73f98d54b22a0610c65fa0e96b311925f40bebc1458fd0f0fa9c5fb41330f6d0b9b49aa12aba +docfiles size=76 + RELOC/doc/latex/mnsymbol/MnSymbol.pdf details="Package documentation" + RELOC/doc/latex/mnsymbol/README details="Readme" +srccontainersize 14064 +srccontainerchecksum 1d622e81bfa0c2e61ab64f058a356e66c98f75a2511728bc49c6cb3d998caf132def2f092db7ff18b4283829e7c118368fb09a39ba2e9c05b0a0be5e4cada210 +srcfiles size=35 + RELOC/source/latex/mnsymbol/MnSymbol.drv + RELOC/source/latex/mnsymbol/MnSymbol.dtx + RELOC/source/latex/mnsymbol/MnSymbol.ins +runfiles size=1656 + RELOC/fonts/enc/dvips/mnsymbol/MnSymbolA.enc + RELOC/fonts/enc/dvips/mnsymbol/MnSymbolB.enc + RELOC/fonts/enc/dvips/mnsymbol/MnSymbolC.enc + RELOC/fonts/enc/dvips/mnsymbol/MnSymbolD.enc + RELOC/fonts/enc/dvips/mnsymbol/MnSymbolE.enc + RELOC/fonts/enc/dvips/mnsymbol/MnSymbolF.enc + RELOC/fonts/enc/dvips/mnsymbol/MnSymbolS.enc + RELOC/fonts/map/dvips/mnsymbol/MnSymbol.map + RELOC/fonts/map/vtex/mnsymbol/MnSymbol.ali + RELOC/fonts/opentype/public/mnsymbol/MnSymbol-Bold10.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol-Bold12.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol-Bold5.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol-Bold6.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol-Bold7.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol-Bold8.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol-Bold9.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol10.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol12.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol5.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol6.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol7.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol8.otf + RELOC/fonts/opentype/public/mnsymbol/MnSymbol9.otf + RELOC/fonts/source/public/mnsymbol/MnSymbol-Parameter.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA-Bold.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA-Bold10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA-Bold12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA-Bold5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA-Bold6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA-Bold7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA-Bold8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA-Bold9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolA9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB-Bold.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB-Bold10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB-Bold12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB-Bold5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB-Bold6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB-Bold7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB-Bold8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB-Bold9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolB9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC-Bold.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC-Bold10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC-Bold12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC-Bold5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC-Bold6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC-Bold7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC-Bold8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC-Bold9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolC9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD-Bold.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD-Bold10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD-Bold12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD-Bold5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD-Bold6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD-Bold7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD-Bold8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD-Bold9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolD9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE-Bold.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE-Bold10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE-Bold12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE-Bold5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE-Bold6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE-Bold7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE-Bold8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE-Bold9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolE9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF-Bold.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF-Bold10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF-Bold12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF-Bold5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF-Bold6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF-Bold7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF-Bold8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF-Bold9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolF9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS-Bold.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS-Bold10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS-Bold12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS-Bold5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS-Bold6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS-Bold7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS-Bold8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS-Bold9.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS10.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS12.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS5.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS6.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS7.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS8.mf + RELOC/fonts/source/public/mnsymbol/MnSymbolS9.mf + RELOC/fonts/source/public/mnsymbol/Sym-Accent.mf + RELOC/fonts/source/public/mnsymbol/Sym-Arrows.mf + RELOC/fonts/source/public/mnsymbol/Sym-Base.mf + RELOC/fonts/source/public/mnsymbol/Sym-Delim.mf + RELOC/fonts/source/public/mnsymbol/Sym-Geometric.mf + RELOC/fonts/source/public/mnsymbol/Sym-Init.mf + RELOC/fonts/source/public/mnsymbol/Sym-Operators.mf + RELOC/fonts/source/public/mnsymbol/Sym-Order.mf + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA-Bold10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA-Bold12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA-Bold5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA-Bold6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA-Bold7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA-Bold8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA-Bold9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolA9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB-Bold10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB-Bold12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB-Bold5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB-Bold6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB-Bold7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB-Bold8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB-Bold9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolB9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC-Bold10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC-Bold12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC-Bold5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC-Bold6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC-Bold7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC-Bold8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC-Bold9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolC9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD-Bold10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD-Bold12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD-Bold5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD-Bold6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD-Bold7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD-Bold8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD-Bold9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolD9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE-Bold10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE-Bold12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE-Bold5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE-Bold6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE-Bold7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE-Bold8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE-Bold9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolE9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF-Bold10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF-Bold12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF-Bold5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF-Bold6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF-Bold7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF-Bold8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF-Bold9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolF9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS-Bold10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS-Bold12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS-Bold5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS-Bold6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS-Bold7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS-Bold8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS-Bold9.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS10.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS12.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS5.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS6.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS7.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS8.tfm + RELOC/fonts/tfm/public/mnsymbol/MnSymbolS9.tfm + RELOC/fonts/type1/public/mnsymbol/MnSymbol-Bold10.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol-Bold12.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol-Bold5.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol-Bold6.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol-Bold7.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol-Bold8.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol-Bold9.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol10.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol12.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol5.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol6.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol7.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol8.pfb + RELOC/fonts/type1/public/mnsymbol/MnSymbol9.pfb + RELOC/tex/latex/mnsymbol/MnSymbol.sty +catalogue-ctan /fonts/mnsymbol +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics font font-mf font-type1 font-symbol-maths +catalogue-version 1.4 + +name modeles-factures-belges-assocs +category Package +revision 50010 +shortdesc Generate invoices for Belgian non-profit organizations +relocated 1 +longdesc This package provides templates and a sty file for generating +longdesc invoices for Belgian non-profit organizations. +containersize 3096 +containerchecksum 870cd893fbb3bd36d9af8a35487fb47f9afeee75c6093fe3fe9167c4db4f0365499e0fd87b4b3debb0212076d1248902014fa374df3fca79108965bf0c3bb07b +doccontainersize 260136 +doccontainerchecksum f879904a96322990beafd7e444040b11fb9d69e93d73df5e5a159d70fd8e033d9a137e1bb4c54e4bbc4f8e5b04151336bed77aab0b46fcbeb531b346855df920 +docfiles size=88 + RELOC/doc/latex/modeles-factures-belges-assocs/LICENSE + RELOC/doc/latex/modeles-factures-belges-assocs/README-facture-banlieues.md + RELOC/doc/latex/modeles-factures-belges-assocs/README-facture-basique.md + RELOC/doc/latex/modeles-factures-belges-assocs/README.md details="Readme" + RELOC/doc/latex/modeles-factures-belges-assocs/doc-modeles-factures-belges-assocs.pdf details="Package documentation" + RELOC/doc/latex/modeles-factures-belges-assocs/doc-modeles-factures-belges-assocs.tex + RELOC/doc/latex/modeles-factures-belges-assocs/facture-banlieues-logo.png + RELOC/doc/latex/modeles-factures-belges-assocs/facture-banlieues-sponsors.png + RELOC/doc/latex/modeles-factures-belges-assocs/facture-banlieues.pdf + RELOC/doc/latex/modeles-factures-belges-assocs/facture-banlieues.tex + RELOC/doc/latex/modeles-factures-belges-assocs/facture-basique.pdf + RELOC/doc/latex/modeles-factures-belges-assocs/facture-basique.tex + RELOC/doc/latex/modeles-factures-belges-assocs/line_bas.png + RELOC/doc/latex/modeles-factures-belges-assocs/line_haut.png +runfiles size=3 + RELOC/tex/latex/modeles-factures-belges-assocs/modeles-factures-belges-associations.sty +catalogue-contact-announce https://gitlab.adullact.net/zenjo/modeles-factures-belges-assocs/wikis/annonces +catalogue-contact-bugs https://gitlab.adullact.net/zenjo/modeles-factures-belges-assocs/issues +catalogue-contact-development https://myblog.robert.sebille.name/spip.php?page=contact +catalogue-contact-home https://gitlab.adullact.net/zenjo/modeles-factures-belges-assocs/wikis/home +catalogue-contact-repository https://gitlab.adullact.net/zenjo/modeles-factures-belges-assocs/tree/master +catalogue-contact-support https://myblog.robert.sebille.name/spip.php?page=contact +catalogue-ctan /macros/latex/contrib/modeles-factures-belges-assocs +catalogue-date 2019-02-12 07:40:55 +0100 +catalogue-license lppl1.3c +catalogue-topics invoice +catalogue-version 1.0.1 + +name moderncv +category Package +revision 37992 +shortdesc A modern curriculum vitae class +relocated 1 +longdesc The class provides facilities for typesetting modern +longdesc curriculums vitae, both in a classic and in a casual style. It +longdesc is fairly customizable, allowing you to define your own style +longdesc by changing the colours, the fonts, etc. A number of templates +longdesc are provided in the distribution examples subdirectory. +containersize 21940 +containerchecksum 0d175791a9d10d0fa9fbe2702d663ff94d06f5486aff2b8563f9dab1f18305be0e29cdd050cc6e8206c07adefd0811a614589f7afd1af4fe37687c7eff229b43 +doccontainersize 839416 +doccontainerchecksum 3dcad35776d47e27e6013545d28e2f6891eb538775d30966ac89aee8a8d4111d86acb2dc51e546070c818731ef6a7d753a55939e80c2cb5346c5b127e7e63b77 +docfiles size=460 + RELOC/doc/latex/moderncv/CHANGELOG + RELOC/doc/latex/moderncv/KNOWN_BUGS + RELOC/doc/latex/moderncv/README details="Readme" + RELOC/doc/latex/moderncv/examples/Makefile + RELOC/doc/latex/moderncv/examples/picture.eps + RELOC/doc/latex/moderncv/examples/picture.jpg + RELOC/doc/latex/moderncv/examples/publications.bib + RELOC/doc/latex/moderncv/examples/template-es.pdf + RELOC/doc/latex/moderncv/examples/template-es.tex + RELOC/doc/latex/moderncv/examples/template-multibib.pdf + RELOC/doc/latex/moderncv/examples/template-multibib.tex + RELOC/doc/latex/moderncv/examples/template-zh.pdf + RELOC/doc/latex/moderncv/examples/template-zh.tex + RELOC/doc/latex/moderncv/examples/template.tex + RELOC/doc/latex/moderncv/examples/template_banking_red-fullrules-center.pdf + RELOC/doc/latex/moderncv/examples/template_banking_red-norules.pdf + RELOC/doc/latex/moderncv/examples/template_banking_red-shortrules-right.pdf + RELOC/doc/latex/moderncv/examples/template_banking_red.pdf + RELOC/doc/latex/moderncv/examples/template_casual_orange-left.pdf + RELOC/doc/latex/moderncv/examples/template_casual_orange.pdf + RELOC/doc/latex/moderncv/examples/template_classic_green-right.pdf + RELOC/doc/latex/moderncv/examples/template_classic_green.pdf + RELOC/doc/latex/moderncv/examples/template_fancy_purple.pdf + RELOC/doc/latex/moderncv/examples/template_oldstyle_grey.pdf +runfiles size=61 + RELOC/tex/latex/moderncv/moderncv.cls + RELOC/tex/latex/moderncv/moderncvbodyi.sty + RELOC/tex/latex/moderncv/moderncvbodyii.sty + RELOC/tex/latex/moderncv/moderncvbodyiii.sty + RELOC/tex/latex/moderncv/moderncvbodyiv.sty + RELOC/tex/latex/moderncv/moderncvbodyv.sty + RELOC/tex/latex/moderncv/moderncvcollection.sty + RELOC/tex/latex/moderncv/moderncvcolorblack.sty + RELOC/tex/latex/moderncv/moderncvcolorblue.sty + RELOC/tex/latex/moderncv/moderncvcolorburgundy.sty + RELOC/tex/latex/moderncv/moderncvcolorgreen.sty + RELOC/tex/latex/moderncv/moderncvcolorgrey.sty + RELOC/tex/latex/moderncv/moderncvcolororange.sty + RELOC/tex/latex/moderncv/moderncvcolorpurple.sty + RELOC/tex/latex/moderncv/moderncvcolorred.sty + RELOC/tex/latex/moderncv/moderncvcompatibility.sty + RELOC/tex/latex/moderncv/moderncvdebugtools.sty + RELOC/tex/latex/moderncv/moderncvfooti.sty + RELOC/tex/latex/moderncv/moderncvheadi.sty + RELOC/tex/latex/moderncv/moderncvheadii.sty + RELOC/tex/latex/moderncv/moderncvheadiii.sty + RELOC/tex/latex/moderncv/moderncvheadiv.sty + RELOC/tex/latex/moderncv/moderncvheadv.sty + RELOC/tex/latex/moderncv/moderncvheadvi.sty + RELOC/tex/latex/moderncv/moderncviconsawesome.sty + RELOC/tex/latex/moderncv/moderncviconsletters.sty + RELOC/tex/latex/moderncv/moderncviconsmarvosym.sty + RELOC/tex/latex/moderncv/moderncvstylebanking.sty + RELOC/tex/latex/moderncv/moderncvstylecasual.sty + RELOC/tex/latex/moderncv/moderncvstyleclassic.sty + RELOC/tex/latex/moderncv/moderncvstyleempty.sty + RELOC/tex/latex/moderncv/moderncvstylefancy.sty + RELOC/tex/latex/moderncv/moderncvstyleoldstyle.sty + RELOC/tex/latex/moderncv/tweaklist.sty +catalogue-contact-repository http://www.launchpad.net/moderncv +catalogue-ctan /macros/latex/contrib/moderncv +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics cv class +catalogue-version 2.0.0 + +name modernposter +category Package +revision 47269 +shortdesc A modern LaTeX poster theme +relocated 1 +longdesc This class extends the a0poster class in that it adds support +longdesc to easily create posters without the need for taking care of +longdesc the layout at all. It allows to use \maketitle to generate a +longdesc fancy header containing the title information and also provides +longdesc macros to position various different types of text boxes in a +longdesc two-column layout. The color scheme is inspired by the +longdesc metropolis beamer theme. +containersize 2552 +containerchecksum d631f058a0a17a841d4026c43fd086cbefd50d0ece85563ee81e34440650bdd7d3db6dd6f49d5e74278872961300bbd443b896586f5c7ea00a9ff816ef20b7a9 +doccontainersize 391208 +doccontainerchecksum 385c8b97c57053d861d72b4f10134cbf2d943e4bcedb55ec42bff51000843db3fe30737f7ada3ce569c1d96584ec0df80afadc39be98c16950828647165f6801 +docfiles size=101 + RELOC/doc/latex/modernposter/README.md details="Readme" + RELOC/doc/latex/modernposter/demo.pdf details="Example of use" + RELOC/doc/latex/modernposter/demo.tex + RELOC/doc/latex/modernposter/modernposter.pdf details="Package documentation" + RELOC/doc/latex/modernposter/modernposter.tex +runfiles size=2 + RELOC/tex/latex/modernposter/modernposter.cls +catalogue-also beamerposter +catalogue-contact-repository https://github.com/derlerd/modernposter +catalogue-ctan /macros/latex/contrib/modernposter +catalogue-date 2018-04-03 21:08:25 +0200 +catalogue-license cc-by-sa-4 +catalogue-topics poster class +catalogue-version 1.03.1 + +name moderntimeline +category Package +revision 50228 +shortdesc Timelines for use with moderncv +relocated 1 +longdesc The package provides commands to configure and to draw time +longdesc line diagrams; such diagrams are designed to fit into +longdesc Curriculum Vitae documents written using the moderncv class. +containersize 2304 +containerchecksum a38ab33c0ad2384699954688bed05d9ece3ba54107c962dd5e76fcb586699887ad5553dd12f801553ffab5e7a459cda9a9178c0d37d6eae3796766fed428058f +doccontainersize 184868 +doccontainerchecksum dd5f43c4287f5a5a23366c3cb982afdbf3385da2c19967e3a77ab42476536d2ba44887fe5fa657f18285448b0d7d3ef99b6f7003328924967529478e174625d7 +docfiles size=47 + RELOC/doc/latex/moderntimeline/README.md details="Readme" + RELOC/doc/latex/moderntimeline/moderntimeline.pdf details="Package documentation" +srccontainersize 6048 +srccontainerchecksum 4a794bd422b800ad7cfc41c47838798b6e1f3eeb9f7de10c4c6f99d4f2127b8f22e0d31875bd82595e6a99d5995648a70bb006c41dbc70c50379e8d37570222f +srcfiles size=7 + RELOC/source/latex/moderntimeline/moderntimeline.dtx + RELOC/source/latex/moderntimeline/moderntimeline.ins +runfiles size=2 + RELOC/tex/latex/moderntimeline/moderntimeline.sty +catalogue-ctan /macros/latex/contrib/moderntimeline +catalogue-date 2019-03-04 12:36:05 +0100 +catalogue-license lppl1.3 +catalogue-topics cv diagram +catalogue-version 0.10 + +name modiagram +category Package +revision 38448 +shortdesc Drawing molecular orbital diagrams +relocated 1 +longdesc The package provides an environment MOdiagram and some +longdesc commands, to create molecular orbital diagrams using TikZ. For +longdesc example, the MO diagram of dihydrogen would be written as: +longdesc \begin{MOdiagram} \atom{left}{ 1s = {0;up} } \atom{right}{ 1s = +longdesc {0;up} } \molecule{ 1sMO = {1;pair, } } \end{MOdiagram} The +longdesc package also needs the l3kernel and l3packages bundles from the +longdesc LaTeX 3 experimental distribution. +containersize 8612 +containerchecksum 7a84caae8d6811bed003266283674bf364d18b9d3cb01a440bfca97ee66124b991b4a3dfc9edd07059f02e047892d8cabff81bb0066d449171b669cc872be2fb +doccontainersize 625648 +doccontainerchecksum cf1ffc9c60773c8860cc4c0021e6af82a719aa02d1ae7c56dc332d1e2fb6bfccab85c09473ad8f62a7219703d792cd4bd9db311834a35a186accd4857661ec37 +docfiles size=164 + RELOC/doc/latex/modiagram/README details="Readme" + RELOC/doc/latex/modiagram/modiagram_en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/modiagram/modiagram_en.tex +runfiles size=20 + RELOC/tex/latex/modiagram/modiagram.sty +catalogue-ctan /macros/latex/contrib/modiagram +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics chemistry diagram expl3 +catalogue-version 0.2g + +name modref +category Package +revision 15878 +shortdesc Customisation of cross-references in LaTeX +relocated 1 +longdesc The package contains macros which allow authors to easily +longdesc customise how cross-references appear in their document, both +longdesc in general (across all cross-references) and for particular +longdesc types of references (identified by a prefix in the reference +longdesc label), in a very generic manner. +containersize 2604 +containerchecksum ef5d822fedbd5026903fb7d2630a837a3a1b0222150ee1a9f72a54e13d626a0387abd1fc20b18a257714c63cb65868ac885f8340d35c5453b42323da3b9b0782 +doccontainersize 148376 +doccontainerchecksum f7539376630672b6fc67821045eb8c891b4781d233e1b914f8fc5c255fdcc57ecb6e5ef4d36ae72ceac185e8d2e4aee42741538f27fb3ab1f5160855cfbc8def +docfiles size=42 + RELOC/doc/latex/modref/README details="Readme" + RELOC/doc/latex/modref/modref.pdf details="Package documentation" +srccontainersize 14244 +srccontainerchecksum 370a7287ed60084ce3d92ef722bb1b1c5f49faf6563a154dc2fa2442a60eb2ab06ea1c82d63e5c887b8aea859f9e647a5d80455f9cc87746d2c9be25f4920b47 +srcfiles size=15 + RELOC/source/latex/modref/modref.drv + RELOC/source/latex/modref/modref.dtx + RELOC/source/latex/modref/modref.ins +runfiles size=2 + RELOC/tex/latex/modref/modref.sty +catalogue-also refstyle +catalogue-ctan /macros/latex/contrib/modref +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics label-ref +catalogue-version 1.0 + +name modroman +category Package +revision 29803 +shortdesc Write numbers in lower case roman numerals +relocated 1 +longdesc This package provides only two macros viz. \modromannumeral +longdesc which writes the number given as argument in lower case roman +longdesc numeral with a 'j' instead of a 'i' as the final letter of +longdesc numbers greater than 1 and \modroman{MyCounter} which writes +longdesc the value of a counter in the same way. You use the first in +longdesc the same way as the TeX primitive \romannumeral and the second +longdesc as LaTeX command \roman. The default option is 'vpourv' with +longdesc which 5 is 'translated' as 'v' and option 'upourv' whith which +longdesc the same 5 is given as 'u'. +containersize 2444 +containerchecksum 3314a474cdb88e517fd16943b8f1f1da252608bc5505bd91581e87bca19ea317718d36694abc670d471d0028dcb5fe502a3be1b1294604cecf619de235fe63c8 +doccontainersize 1300104 +doccontainerchecksum 5c6ad1cdad66a5a7285b7c51074f724670880d4417df45cae51e5b3b35bf5cf99f374f7abca73c7ae68d12f626e4b9bf0dddd6b2bc94250c4e6146598d4c5ac6 +docfiles size=427 + RELOC/doc/latex/modroman/MODRdoctools.sty + RELOC/doc/latex/modroman/modroman-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/modroman/modroman-en.tex + RELOC/doc/latex/modroman/modroman-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/modroman/modroman-fr.tex + RELOC/doc/latex/modroman/modroman.dtx + RELOC/doc/latex/modroman/modroman.pdf details="Documentated source (bilingual)" +srccontainersize 18772 +srccontainerchecksum 21e8a2bf6f1d58800452dee77d7a7dc89bd8c952ced6f485b42a2e0b6300df9c823c23f4ab3327d9a367ef8e8d6ba1bae27d3c9bcf875270053c7fa65bcf9f70 +srcfiles size=19 + RELOC/source/latex/modroman/LISEZMOI + RELOC/source/latex/modroman/Makefile + RELOC/source/latex/modroman/README + RELOC/source/latex/modroman/modroman.dtx + RELOC/source/latex/modroman/modroman.ins +runfiles size=2 + RELOC/tex/latex/modroman/modroman.sty +catalogue-ctan /macros/latex/contrib/modroman +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics numbers +catalogue-version 1 + +name modular +category Package +revision 44142 +shortdesc Relative section headings for modular documents +relocated 1 +longdesc LaTeX sections have absolute depth, e.g. \section, \subsection, +longdesc etc. When composing modular documents, we want relative depths. +longdesc The coseoul package provides relative headings, but does not +longdesc get things right when composing a document modularly from +longdesc multiple parts. This package provides the missing piece. +longdesc modular relies on coseoul, import, and ifthen. +containersize 1004 +containerchecksum 13d80f572497551551151c35ac32c09cec70cd40c6d99d36c22ed84bcef509cbfafd511a8e2e284cd06ab1a57f4be7fe556d7e390f9d30135bd20cd49acf362a +doccontainersize 145240 +doccontainerchecksum 7d7201db0a2791700748d440fdc5cca9d8d274ceeacddb3715d99b68b4c04f52949e8b9897377168463059deec86177470a997bfea7a32a2765afda713aed499 +docfiles size=49 + RELOC/doc/latex/modular/README-doc.md + RELOC/doc/latex/modular/README.md details="Readme" + RELOC/doc/latex/modular/article.tex + RELOC/doc/latex/modular/article_fail.tex + RELOC/doc/latex/modular/content.tex + RELOC/doc/latex/modular/coseoul_limitations.tex + RELOC/doc/latex/modular/doc/content.tex + RELOC/doc/latex/modular/doc/example/octopus/article.tex + RELOC/doc/latex/modular/habitat.tex + RELOC/doc/latex/modular/introduction.tex + RELOC/doc/latex/modular/lifecycle.tex + RELOC/doc/latex/modular/modular.pdf details="Package documentation" + RELOC/doc/latex/modular/modular.tex + RELOC/doc/latex/modular/modular_to_the_rescue.tex + RELOC/doc/latex/modular/prerequisites.tex +runfiles size=1 + RELOC/tex/latex/modular/modular.sty +catalogue-also coseoul +catalogue-contact-bugs https://github.com/danielsank/tex-modular/issues +catalogue-contact-repository https://github.com/danielsank/tex-modular +catalogue-ctan /macros/latex/contrib/modular +catalogue-date 2017-06-05 06:58:27 +0200 +catalogue-license lppl1.3 +catalogue-topics headings file-control + +name modulus +category Package +revision 47599 +shortdesc A non-destructive modulus and integer quotient operator for TeX +relocated 1 +longdesc The package provides an easy way to take the remainder of a +longdesc division operation without destroying the values of the +longdesc counters containing the dividend and divisor. Also provides a +longdesc way to take the integer quotient of a division operation +longdesc without destroying the values of the counters containing the +longdesc dividend and divisor. A tiny but occasionally useful package, +longdesc when doing heavy TeX programming. +containersize 1212 +containerchecksum e5dde62c2e0730befb63612bfd6ea3626463db85b74291df5937d8f7e1995f6b63c8bc6d7e08536ae761457ab1e9a0ddeccf11afa4108910561075dcc03201f6 +doccontainersize 174792 +doccontainerchecksum 965d03005ef257526ffa6667d889a4b238ca5314f4fe8714bc8219ace1e909eb5765da6c0dc94e9b312635e0f9ca096f1d14364effb0045ed467da7c1d735474 +docfiles size=49 + RELOC/doc/generic/modulus/CHANGES + RELOC/doc/generic/modulus/README details="Readme" + RELOC/doc/generic/modulus/lppl.txt + RELOC/doc/generic/modulus/modulus.pdf details="Package documentation" +srccontainersize 3136 +srccontainerchecksum 0f33d1d241e0155eae39875b0ce72019740771c2e36b337255a0865cabeae78c93e24d7f7eddbe7cba9ce312090b251b26a632c260e097a2619d35b47fb050bb +srcfiles size=3 + RELOC/source/generic/modulus/modulus.dtx + RELOC/source/generic/modulus/modulus.ins +runfiles size=1 + RELOC/tex/generic/modulus/modulus.sty +catalogue-ctan /macros/generic/modulus +catalogue-date 2018-05-05 05:37:43 +0200 +catalogue-license lppl1.3c +catalogue-topics calculation +catalogue-version 1.0 + +name mongolian-babel +category Package +revision 15878 +shortdesc A language definition file for Mongolian in Babel +relocated 1 +longdesc This package provides support for Mongolian in a Cyrillic +longdesc alphabet. (The work derives from the earlier Russian work for +longdesc babel.) +containersize 5300 +containerchecksum a4e7abdc0b5817d88ad442e693fefe79df224a74f37d09b630fd7ded16e1335f563ca00a26aee8ba4b46b7516c0fa2f5dc9d37ec00455b11223e46a6e289cc01 +doccontainersize 89416 +doccontainerchecksum d0aa4f4a7f1b22d3d3a6a96b85d4d72acb71ee6b1374b70008b966ca2401b7b9434bca675601cc1cdf2f013520eb82c2cb193634b3ac9f9b9d40a201d10dbd58 +docfiles size=28 + RELOC/doc/latex/mongolian-babel/README + RELOC/doc/latex/mongolian-babel/mongolian.pdf details="Package documentation" +srccontainersize 12068 +srccontainerchecksum 07e75b2c9bb6c7596d698e0f31d8194ab5cc4e06f5ca472cc706214c342960378376406bdc0eef0940ac0179e989a92af496069ffb25ed75f5b3a0d5fe639517 +srcfiles size=12 + RELOC/source/latex/mongolian-babel/mongolian.dtx + RELOC/source/latex/mongolian-babel/mongolian.ins +runfiles size=6 + RELOC/tex/latex/mongolian-babel/mn.def + RELOC/tex/latex/mongolian-babel/mongolian.ldf + RELOC/tex/latex/mongolian-babel/mongolian.sty +catalogue-ctan /language/mongolian/babel +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics mongolian multilingual-addon +catalogue-version 1.2 + +name monofill +category Package +revision 28140 +shortdesc Alignment of plain text +relocated 1 +longdesc The package provides horizontal alignment, as in the LaTeX +longdesc command \listfiles (or the author's longnamefilelist package). +longdesc Uses may include in-text tables, or even code listings. +containersize 4116 +containerchecksum 6b9a45c32bd44aa01119c7bd8304ba8e5953422c14bfeaacad20f012188f9204c19f432719c74d9481a00611a18d4ef1ba2c1dc858b83b8a25205d40568e5fa3 +doccontainersize 290600 +doccontainerchecksum edb00621e74238c09d0ca0c04e5c57589012ef2272f0b470345845ddedd647c73fffc0fcaf4741726214b2419e9581127375ba2b36948ec73f4caef561c3e57c +docfiles size=83 + RELOC/doc/latex/monofill/Announce.txt + RELOC/doc/latex/monofill/README details="Readme" + RELOC/doc/latex/monofill/SrcFILEs.txt + RELOC/doc/latex/monofill/monofill.pdf details="Package documentation" +srccontainersize 3000 +srccontainerchecksum fba90d74e9b12086fb4dd431eba4bb3349a83a2b839db1f1a1f7f076e3568cdada03de56570bd38e937eb51a76990ab39778a1832ad233067025ae24877b279d +srcfiles size=3 + RELOC/source/latex/monofill/monofill.tex + RELOC/source/latex/monofill/srcfiles.tex +runfiles size=4 + RELOC/tex/latex/monofill/monofill.RLS + RELOC/tex/latex/monofill/monofill.sty +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html +catalogue-ctan /macros/latex/contrib/monofill +catalogue-date 2017-05-06 08:49:55 +0200 +catalogue-license lppl1.3 +catalogue-topics alignment +catalogue-version 0.2 + +name montex +category Package +revision 29349 +shortdesc Mongolian LaTeX +relocated 1 +longdesc MonTeX provides Mongolian and Manju support for the TeX/LaTeX +longdesc community. Mongolian is a language spoken in North East Asia, +longdesc namely Mongolia and the Inner Mongol Autonomous Region of +longdesc China. Today, it is written in an extended Cyrillic alphabet in +longdesc Mongolia whereas the Uighur writing continues to be in use in +longdesc Inner Mongolia, though it is also, legally speaking, the +longdesc official writing system of Mongolia. Manju is another language +longdesc of North East Asia, belonging to the Tungusic branch of the +longdesc Altaic languages. Though it is hardly spoken nowadays, it +longdesc survives in written form as Manju was the native language of +longdesc the rulers of the Qing dynasty (1644-1911) in China. Large +longdesc quantities of documents of the Imperial Archives survive, as +longdesc well as some of the finest dictionaries ever compiled in Asia, +longdesc like the Pentaglot, a dictionary comprising Manju, Tibetan, +longdesc Mongolian, Uighur and Chinese. MonTeX provides all necessary +longdesc characters for writing standard Mongolian in Cyrillic and +longdesc Classical (aka Traditional or Uighur) writing, and Manju as +longdesc well as transliterated Tibetan texts, for which purpose a +longdesc number of additional characters was created. In MonTeX, both +longdesc Mongolian and Manju are entered in romanized form. The +longdesc retransliteration (from Latin input to Mongolian and Manju +longdesc output) is completely realized in TeX/Metafont so that no +longdesc external preprocessor is required. Please note that most of the +longdesc enhanced functions of MonTeX require a working e-LaTeX +longdesc environment. This is especially true when compiling documents +longdesc with Mongolian or Manju as the main document language. It is +longdesc recommended to choose pdfelatex as the resulting PDF files are +longdesc truly portable. Vertical text generated by MonTeX is not +longdesc supported in DVI. +depend cbfonts +execute addMixedMap mongolian.map +containersize 1612052 +containerchecksum 9676cef9e0fbe7a0196b1ea0fb3ea4f0399a3ee8ed76ef06e824848a57922dc4f7cc1f50a1fcea47fc265465407653447ab80e80dbac3c4bc00488d0929f87bc +doccontainersize 721228 +doccontainerchecksum 1965f31e28a9f54d86a495b4b8cea50dc59f409d066918dedf77f86448b60ea547565dcf2069ee0e0a646d53f34d244868600951c4b1a4d4e099fe50e3c2b477 +docfiles size=504 + RELOC/doc/latex/montex/00README + RELOC/doc/latex/montex/00readme.mfinput.km + RELOC/doc/latex/montex/ANNOUNCE + RELOC/doc/latex/montex/EMTEX + RELOC/doc/latex/montex/HISTORY + RELOC/doc/latex/montex/INSTALL + RELOC/doc/latex/montex/MIKTEX + RELOC/doc/latex/montex/TODO + RELOC/doc/latex/montex/UPDATE + RELOC/doc/latex/montex/cyrename.pl + RELOC/doc/latex/montex/fontlist.tex + RELOC/doc/latex/montex/mfinput/bithe/testfont.input + RELOC/doc/latex/montex/mfinput/bithe/testfont.sh + RELOC/doc/latex/montex/mkmlsmf.pl + RELOC/doc/latex/montex/mls-diag.tex + RELOC/doc/latex/montex/mlsquick.pdf + RELOC/doc/latex/montex/mlsquick.tex + RELOC/doc/latex/montex/mnhyphen.tex + RELOC/doc/latex/montex/montex.pdf details="Package documentation" + RELOC/doc/latex/montex/montex.tex + RELOC/doc/latex/montex/montex.xml + RELOC/doc/latex/montex/mtdocmac.tex + RELOC/doc/latex/montex/testfont.input + RELOC/doc/latex/montex/testfont.sh + RELOC/doc/latex/montex/zanabazr.pdf + RELOC/doc/latex/montex/zanabazr.tex +runfiles size=848 + RELOC/fonts/map/dvips/montex/mongolian.map + RELOC/fonts/source/public/montex/bcghsb.mf + RELOC/fonts/source/public/montex/bcghsm.mf + RELOC/fonts/source/public/montex/bcghwb.mf + RELOC/fonts/source/public/montex/bcghwm.mf + RELOC/fonts/source/public/montex/bcgvsb.mf + RELOC/fonts/source/public/montex/bcgvsm.mf + RELOC/fonts/source/public/montex/bcgvwb.mf + RELOC/fonts/source/public/montex/bcgvwm.mf + RELOC/fonts/source/public/montex/bicighb.mf + RELOC/fonts/source/public/montex/bicighm.mf + RELOC/fonts/source/public/montex/bicigvb.mf + RELOC/fonts/source/public/montex/bicigvm.mf + RELOC/fonts/source/public/montex/bthhsb.mf + RELOC/fonts/source/public/montex/bthhsm.mf + RELOC/fonts/source/public/montex/bthhwb.mf + RELOC/fonts/source/public/montex/bthhwm.mf + RELOC/fonts/source/public/montex/bthvsb.mf + RELOC/fonts/source/public/montex/bthvsm.mf + RELOC/fonts/source/public/montex/bthvwb.mf + RELOC/fonts/source/public/montex/bthvwm.mf + RELOC/fonts/source/public/montex/bxghsb.mf + RELOC/fonts/source/public/montex/bxghsm.mf + RELOC/fonts/source/public/montex/bxghwb.mf + RELOC/fonts/source/public/montex/bxghwm.mf + RELOC/fonts/source/public/montex/bxgvsb.mf + RELOC/fonts/source/public/montex/bxgvsm.mf + RELOC/fonts/source/public/montex/bxgvwb.mf + RELOC/fonts/source/public/montex/bxgvwm.mf + RELOC/fonts/source/public/montex/cyrmorec.mf + RELOC/fonts/source/public/montex/cyrmorei.mf + RELOC/fonts/source/public/montex/cyrmorel.mf + RELOC/fonts/source/public/montex/cyrmoreu.mf + RELOC/fonts/source/public/montex/kmb10.mf + RELOC/fonts/source/public/montex/kmbx10.mf + RELOC/fonts/source/public/montex/kmbx12.mf + RELOC/fonts/source/public/montex/kmbx5.mf + RELOC/fonts/source/public/montex/kmbx6.mf + RELOC/fonts/source/public/montex/kmbx7.mf + RELOC/fonts/source/public/montex/kmbx8.mf + RELOC/fonts/source/public/montex/kmbx9.mf + RELOC/fonts/source/public/montex/kmbxsl10.mf + RELOC/fonts/source/public/montex/kmbxti10.mf + RELOC/fonts/source/public/montex/kmcsc10.mf + RELOC/fonts/source/public/montex/kmcsc8.mf + RELOC/fonts/source/public/montex/kmcsc9.mf + RELOC/fonts/source/public/montex/kmdunh10.mf + RELOC/fonts/source/public/montex/kmff10.mf + RELOC/fonts/source/public/montex/kmfi10.mf + RELOC/fonts/source/public/montex/kmfib8.mf + RELOC/fonts/source/public/montex/kminch.mf + RELOC/fonts/source/public/montex/kmitt10.mf + RELOC/fonts/source/public/montex/kmr10.mf + RELOC/fonts/source/public/montex/kmr12.mf + RELOC/fonts/source/public/montex/kmr17.mf + RELOC/fonts/source/public/montex/kmr5.mf + RELOC/fonts/source/public/montex/kmr6.mf + RELOC/fonts/source/public/montex/kmr7.mf + RELOC/fonts/source/public/montex/kmr8.mf + RELOC/fonts/source/public/montex/kmr9.mf + RELOC/fonts/source/public/montex/kmsl10.mf + RELOC/fonts/source/public/montex/kmsl12.mf + RELOC/fonts/source/public/montex/kmsl8.mf + RELOC/fonts/source/public/montex/kmsl9.mf + RELOC/fonts/source/public/montex/kmsltt10.mf + RELOC/fonts/source/public/montex/kmss10.mf + RELOC/fonts/source/public/montex/kmss12.mf + RELOC/fonts/source/public/montex/kmss17.mf + RELOC/fonts/source/public/montex/kmss8.mf + RELOC/fonts/source/public/montex/kmss9.mf + RELOC/fonts/source/public/montex/kmssbx10.mf + RELOC/fonts/source/public/montex/kmssdc10.mf + RELOC/fonts/source/public/montex/kmssi10.mf + RELOC/fonts/source/public/montex/kmssi12.mf + RELOC/fonts/source/public/montex/kmssi17.mf + RELOC/fonts/source/public/montex/kmssi8.mf + RELOC/fonts/source/public/montex/kmssi9.mf + RELOC/fonts/source/public/montex/kmssq8.mf + RELOC/fonts/source/public/montex/kmssqi8.mf + RELOC/fonts/source/public/montex/kmtcsc10.mf + RELOC/fonts/source/public/montex/kmti10.mf + RELOC/fonts/source/public/montex/kmti12.mf + RELOC/fonts/source/public/montex/kmti7.mf + RELOC/fonts/source/public/montex/kmti8.mf + RELOC/fonts/source/public/montex/kmti9.mf + RELOC/fonts/source/public/montex/kmtt10.mf + RELOC/fonts/source/public/montex/kmtt12.mf + RELOC/fonts/source/public/montex/kmtt8.mf + RELOC/fonts/source/public/montex/kmtt9.mf + RELOC/fonts/source/public/montex/kmu10.mf + RELOC/fonts/source/public/montex/kmvtt10.mf + RELOC/fonts/source/public/montex/kmvtti10.mf + RELOC/fonts/source/public/montex/lmligs.mf + RELOC/fonts/source/public/montex/macodes.mf + RELOC/fonts/source/public/montex/maglyphs.mf + RELOC/fonts/source/public/montex/mantrlig.mf + RELOC/fonts/source/public/montex/mbatoms.mf + RELOC/fonts/source/public/montex/mbcodes.mf + RELOC/fonts/source/public/montex/mbglyphs.mf + RELOC/fonts/source/public/montex/mbligtbl.mf + RELOC/fonts/source/public/montex/mbnums.mf + RELOC/fonts/source/public/montex/mbparmb.mf + RELOC/fonts/source/public/montex/mbparmm.mf + RELOC/fonts/source/public/montex/mbparms.mf + RELOC/fonts/source/public/montex/mbpunc.mf + RELOC/fonts/source/public/montex/mcccscco.mf + RELOC/fonts/source/public/montex/mccoding.mf + RELOC/fonts/source/public/montex/mctextit.mf + RELOC/fonts/source/public/montex/mcyccsc.mf + RELOC/fonts/source/public/montex/mcyitall.mf + RELOC/fonts/source/public/montex/mcyrill.mf + RELOC/fonts/source/public/montex/mcyrl.mf + RELOC/fonts/source/public/montex/mcyrligs.mf + RELOC/fonts/source/public/montex/mcyrsymb.mf + RELOC/fonts/source/public/montex/mcyru.mf + RELOC/fonts/source/public/montex/mcytitle.mf + RELOC/fonts/source/public/montex/mlscodes.mf + RELOC/fonts/source/public/montex/mocodes.mf + RELOC/fonts/source/public/montex/moglyphs.mf + RELOC/fonts/source/public/montex/montrlig.mf + RELOC/fonts/source/public/montex/mxcodes.mf + RELOC/fonts/source/public/montex/mxglyphs.mf + RELOC/fonts/source/public/montex/mxntrlig.mf + RELOC/fonts/tfm/public/montex/bcghsb.tfm + RELOC/fonts/tfm/public/montex/bcghsm.tfm + RELOC/fonts/tfm/public/montex/bcghwb.tfm + RELOC/fonts/tfm/public/montex/bcghwm.tfm + RELOC/fonts/tfm/public/montex/bcgvsb.tfm + RELOC/fonts/tfm/public/montex/bcgvsm.tfm + RELOC/fonts/tfm/public/montex/bcgvwb.tfm + RELOC/fonts/tfm/public/montex/bcgvwm.tfm + RELOC/fonts/tfm/public/montex/bicighb.tfm + RELOC/fonts/tfm/public/montex/bicighm.tfm + RELOC/fonts/tfm/public/montex/bicigvb.tfm + RELOC/fonts/tfm/public/montex/bicigvm.tfm + RELOC/fonts/tfm/public/montex/bthhsb.tfm + RELOC/fonts/tfm/public/montex/bthhsm.tfm + RELOC/fonts/tfm/public/montex/bthhwb.tfm + RELOC/fonts/tfm/public/montex/bthhwm.tfm + RELOC/fonts/tfm/public/montex/bthvsb.tfm + RELOC/fonts/tfm/public/montex/bthvsm.tfm + RELOC/fonts/tfm/public/montex/bthvwb.tfm + RELOC/fonts/tfm/public/montex/bthvwm.tfm + RELOC/fonts/tfm/public/montex/bxghsb.tfm + RELOC/fonts/tfm/public/montex/bxghsm.tfm + RELOC/fonts/tfm/public/montex/bxghwb.tfm + RELOC/fonts/tfm/public/montex/bxghwm.tfm + RELOC/fonts/tfm/public/montex/bxgvsb.tfm + RELOC/fonts/tfm/public/montex/bxgvsm.tfm + RELOC/fonts/tfm/public/montex/bxgvwb.tfm + RELOC/fonts/tfm/public/montex/bxgvwm.tfm + RELOC/fonts/tfm/public/montex/kmb10.tfm + RELOC/fonts/tfm/public/montex/kmbx10.tfm + RELOC/fonts/tfm/public/montex/kmbx12.tfm + RELOC/fonts/tfm/public/montex/kmbx5.tfm + RELOC/fonts/tfm/public/montex/kmbx6.tfm + RELOC/fonts/tfm/public/montex/kmbx7.tfm + RELOC/fonts/tfm/public/montex/kmbx8.tfm + RELOC/fonts/tfm/public/montex/kmbx9.tfm + RELOC/fonts/tfm/public/montex/kmbxsl10.tfm + RELOC/fonts/tfm/public/montex/kmbxti10.tfm + RELOC/fonts/tfm/public/montex/kmcsc10.tfm + RELOC/fonts/tfm/public/montex/kmcsc8.tfm + RELOC/fonts/tfm/public/montex/kmcsc9.tfm + RELOC/fonts/tfm/public/montex/kmdunh10.tfm + RELOC/fonts/tfm/public/montex/kmff10.tfm + RELOC/fonts/tfm/public/montex/kmfi10.tfm + RELOC/fonts/tfm/public/montex/kmfib8.tfm + RELOC/fonts/tfm/public/montex/kminch.tfm + RELOC/fonts/tfm/public/montex/kmitt10.tfm + RELOC/fonts/tfm/public/montex/kmr10.tfm + RELOC/fonts/tfm/public/montex/kmr12.tfm + RELOC/fonts/tfm/public/montex/kmr17.tfm + RELOC/fonts/tfm/public/montex/kmr5.tfm + RELOC/fonts/tfm/public/montex/kmr6.tfm + RELOC/fonts/tfm/public/montex/kmr7.tfm + RELOC/fonts/tfm/public/montex/kmr8.tfm + RELOC/fonts/tfm/public/montex/kmr9.tfm + RELOC/fonts/tfm/public/montex/kmsl10.tfm + RELOC/fonts/tfm/public/montex/kmsl12.tfm + RELOC/fonts/tfm/public/montex/kmsl8.tfm + RELOC/fonts/tfm/public/montex/kmsl9.tfm + RELOC/fonts/tfm/public/montex/kmsltt10.tfm + RELOC/fonts/tfm/public/montex/kmss10.tfm + RELOC/fonts/tfm/public/montex/kmss12.tfm + RELOC/fonts/tfm/public/montex/kmss17.tfm + RELOC/fonts/tfm/public/montex/kmss8.tfm + RELOC/fonts/tfm/public/montex/kmss9.tfm + RELOC/fonts/tfm/public/montex/kmssbx10.tfm + RELOC/fonts/tfm/public/montex/kmssdc10.tfm + RELOC/fonts/tfm/public/montex/kmssi10.tfm + RELOC/fonts/tfm/public/montex/kmssi12.tfm + RELOC/fonts/tfm/public/montex/kmssi17.tfm + RELOC/fonts/tfm/public/montex/kmssi8.tfm + RELOC/fonts/tfm/public/montex/kmssi9.tfm + RELOC/fonts/tfm/public/montex/kmssq8.tfm + RELOC/fonts/tfm/public/montex/kmssqi8.tfm + RELOC/fonts/tfm/public/montex/kmtcsc10.tfm + RELOC/fonts/tfm/public/montex/kmti10.tfm + RELOC/fonts/tfm/public/montex/kmti12.tfm + RELOC/fonts/tfm/public/montex/kmti7.tfm + RELOC/fonts/tfm/public/montex/kmti8.tfm + RELOC/fonts/tfm/public/montex/kmti9.tfm + RELOC/fonts/tfm/public/montex/kmtt10.tfm + RELOC/fonts/tfm/public/montex/kmtt12.tfm + RELOC/fonts/tfm/public/montex/kmtt8.tfm + RELOC/fonts/tfm/public/montex/kmtt9.tfm + RELOC/fonts/tfm/public/montex/kmu10.tfm + RELOC/fonts/tfm/public/montex/kmvtt10.tfm + RELOC/fonts/tfm/public/montex/kmvtti10.tfm + RELOC/fonts/type1/public/montex/bcghsb.pfb + RELOC/fonts/type1/public/montex/bcghsm.pfb + RELOC/fonts/type1/public/montex/bcghwb.pfb + RELOC/fonts/type1/public/montex/bcghwm.pfb + RELOC/fonts/type1/public/montex/bcgvsb.pfb + RELOC/fonts/type1/public/montex/bcgvsm.pfb + RELOC/fonts/type1/public/montex/bcgvwb.pfb + RELOC/fonts/type1/public/montex/bcgvwm.pfb + RELOC/fonts/type1/public/montex/bicighb.pfb + RELOC/fonts/type1/public/montex/bicighm.pfb + RELOC/fonts/type1/public/montex/bicigvb.pfb + RELOC/fonts/type1/public/montex/bicigvm.pfb + RELOC/fonts/type1/public/montex/bthhsb.pfb + RELOC/fonts/type1/public/montex/bthhsm.pfb + RELOC/fonts/type1/public/montex/bthhwb.pfb + RELOC/fonts/type1/public/montex/bthhwm.pfb + RELOC/fonts/type1/public/montex/bthvsb.pfb + RELOC/fonts/type1/public/montex/bthvsm.pfb + RELOC/fonts/type1/public/montex/bthvwb.pfb + RELOC/fonts/type1/public/montex/bthvwm.pfb + RELOC/fonts/type1/public/montex/bxghsb.pfb + RELOC/fonts/type1/public/montex/bxghsm.pfb + RELOC/fonts/type1/public/montex/bxghwb.pfb + RELOC/fonts/type1/public/montex/bxghwm.pfb + RELOC/fonts/type1/public/montex/bxgvsb.pfb + RELOC/fonts/type1/public/montex/bxgvsm.pfb + RELOC/fonts/type1/public/montex/bxgvwb.pfb + RELOC/fonts/type1/public/montex/bxgvwm.pfb + RELOC/fonts/type1/public/montex/kmbx10.pfb + RELOC/fonts/type1/public/montex/kmr10.pfb + RELOC/fonts/type1/public/montex/kmss10.pfb + RELOC/tex/latex/montex/bicig.def + RELOC/tex/latex/montex/bithe.def + RELOC/tex/latex/montex/buryat.def + RELOC/tex/latex/montex/cpctt.def + RELOC/tex/latex/montex/cpdbk.def + RELOC/tex/latex/montex/cpibmrus.def + RELOC/tex/latex/montex/cpkoi.def + RELOC/tex/latex/montex/cpmls.def + RELOC/tex/latex/montex/cpmnk.def + RELOC/tex/latex/montex/cpmos.def + RELOC/tex/latex/montex/cpncc.def + RELOC/tex/latex/montex/english.def + RELOC/tex/latex/montex/kazakh.def + RELOC/tex/latex/montex/lmabthhs.fd + RELOC/tex/latex/montex/lmabthhw.fd + RELOC/tex/latex/montex/lmabthvs.fd + RELOC/tex/latex/montex/lmabthvw.fd + RELOC/tex/latex/montex/lmaenc.def + RELOC/tex/latex/montex/lmccmdh.fd + RELOC/tex/latex/montex/lmccmfib.fd + RELOC/tex/latex/montex/lmccmfr.fd + RELOC/tex/latex/montex/lmccmiss.fd + RELOC/tex/latex/montex/lmccmr.fd + RELOC/tex/latex/montex/lmccmss.fd + RELOC/tex/latex/montex/lmccmssq.fd + RELOC/tex/latex/montex/lmccmtt.fd + RELOC/tex/latex/montex/lmccmvtt.fd + RELOC/tex/latex/montex/lmcenc.def + RELOC/tex/latex/montex/lmclcmss.fd + RELOC/tex/latex/montex/lmobcghs.fd + RELOC/tex/latex/montex/lmobcghw.fd + RELOC/tex/latex/montex/lmobcgvs.fd + RELOC/tex/latex/montex/lmobcgvw.fd + RELOC/tex/latex/montex/lmoenc.def + RELOC/tex/latex/montex/lmsbcgh.fd + RELOC/tex/latex/montex/lmsbcgv.fd + RELOC/tex/latex/montex/lmsenc.def + RELOC/tex/latex/montex/lmubxghs.fd + RELOC/tex/latex/montex/lmubxghw.fd + RELOC/tex/latex/montex/lmubxgvs.fd + RELOC/tex/latex/montex/lmubxgvw.fd + RELOC/tex/latex/montex/lmuenc.def + RELOC/tex/latex/montex/mls.sty + RELOC/tex/latex/montex/mlsgalig.tex + RELOC/tex/latex/montex/mlstrans.tex + RELOC/tex/latex/montex/mnhyphex.tex + RELOC/tex/latex/montex/rlbicig.sty + RELOC/tex/latex/montex/russian.def + RELOC/tex/latex/montex/xalx.def +catalogue-ctan /language/mongolian/montex +catalogue-date 2017-10-29 15:05:41 +0100 +catalogue-license gpl +catalogue-topics mongolian font font-mf +catalogue-version IVu.04.092 + +name montserrat +category Package +revision 43347 +shortdesc Montserrat sans serif, otf and pfb, with LaTeX support files +relocated 1 +longdesc Montserrat is a geometric sans-serif typeface designed by +longdesc Julieta Ulanovsky, inspired by posters and signage from her +longdesc historical Buenos Aires neighborhood of the same name. It is +longdesc rather close in spirit to Gotham and Proxima Nova, but has its +longdesc own individual appearance -- more informal, less extended, and +longdesc more idiosyncratic. It is provided in a total of nine different +longdesc weights, each having eight figure styles and small caps in both +longdesc upright and italic shapes. There are two quite different +longdesc versions that don't fit into the usual LaTeX classifications. +longdesc The version having the appellation "Alternates" has letter +longdesc shapes that are much more rounded than the default version, +longdesc reflecting the signage in the neighborhood of Montserrat. +execute addMap montserrat.map +containersize 10012156 +containerchecksum 10f6a7bbf0d3ae2ba7d859d6e180e38c01708439cf27c89f7998aed93eecf85096f368094ddaecef304e00a62bfc76d8106842bcfebdb94b2a5c8ed27c51825a +doccontainersize 221892 +doccontainerchecksum 63db767833f42d6340955aa67e0cc48fd0edf9e47ae129cd4fe39caea13f6613142a0042d97e366eef09b935fba2b3c27dd473d2cf7549d235fd6ebf27e4c1e6 +docfiles size=67 + RELOC/doc/fonts/montserrat/FONTLOG.txt + RELOC/doc/fonts/montserrat/OFL-FAQ.txt + RELOC/doc/fonts/montserrat/OFL.txt + RELOC/doc/fonts/montserrat/README details="Readme" + RELOC/doc/fonts/montserrat/montserrat-doc.pdf details="Package documentation" + RELOC/doc/fonts/montserrat/montserrat-doc.tex +runfiles size=8685 + RELOC/fonts/enc/dvips/montserrat/zmo_2475kw.enc + RELOC/fonts/enc/dvips/montserrat/zmo_2wpmsr.enc + RELOC/fonts/enc/dvips/montserrat/zmo_35dncn.enc + RELOC/fonts/enc/dvips/montserrat/zmo_3757re.enc + RELOC/fonts/enc/dvips/montserrat/zmo_3afaux.enc + RELOC/fonts/enc/dvips/montserrat/zmo_3xgpuk.enc + RELOC/fonts/enc/dvips/montserrat/zmo_3xjnji.enc + RELOC/fonts/enc/dvips/montserrat/zmo_46rasm.enc + RELOC/fonts/enc/dvips/montserrat/zmo_4jynbq.enc + RELOC/fonts/enc/dvips/montserrat/zmo_4teuyg.enc + RELOC/fonts/enc/dvips/montserrat/zmo_4upncp.enc + RELOC/fonts/enc/dvips/montserrat/zmo_544jjb.enc + RELOC/fonts/enc/dvips/montserrat/zmo_56el2v.enc + RELOC/fonts/enc/dvips/montserrat/zmo_5fadnl.enc + RELOC/fonts/enc/dvips/montserrat/zmo_5rna26.enc + RELOC/fonts/enc/dvips/montserrat/zmo_5ubf37.enc + RELOC/fonts/enc/dvips/montserrat/zmo_5z3jz7.enc + RELOC/fonts/enc/dvips/montserrat/zmo_67twef.enc + RELOC/fonts/enc/dvips/montserrat/zmo_bd3o7d.enc + RELOC/fonts/enc/dvips/montserrat/zmo_bdtbcv.enc + RELOC/fonts/enc/dvips/montserrat/zmo_bkgosm.enc + RELOC/fonts/enc/dvips/montserrat/zmo_byz2kr.enc + RELOC/fonts/enc/dvips/montserrat/zmo_c5wpta.enc + RELOC/fonts/enc/dvips/montserrat/zmo_cegcqk.enc + RELOC/fonts/enc/dvips/montserrat/zmo_d2kyeu.enc + RELOC/fonts/enc/dvips/montserrat/zmo_daczqg.enc + RELOC/fonts/enc/dvips/montserrat/zmo_dr7oop.enc + RELOC/fonts/enc/dvips/montserrat/zmo_eh44de.enc + RELOC/fonts/enc/dvips/montserrat/zmo_es6tpc.enc + RELOC/fonts/enc/dvips/montserrat/zmo_f642ba.enc + RELOC/fonts/enc/dvips/montserrat/zmo_fxccce.enc + RELOC/fonts/enc/dvips/montserrat/zmo_gttaze.enc + RELOC/fonts/enc/dvips/montserrat/zmo_hau3x5.enc + RELOC/fonts/enc/dvips/montserrat/zmo_hybuin.enc + RELOC/fonts/enc/dvips/montserrat/zmo_i2wmyu.enc + RELOC/fonts/enc/dvips/montserrat/zmo_iabfdf.enc + RELOC/fonts/enc/dvips/montserrat/zmo_ijcy2e.enc + RELOC/fonts/enc/dvips/montserrat/zmo_ivvhub.enc + RELOC/fonts/enc/dvips/montserrat/zmo_jumqgp.enc + RELOC/fonts/enc/dvips/montserrat/zmo_k3ucka.enc + RELOC/fonts/enc/dvips/montserrat/zmo_kg3mv7.enc + RELOC/fonts/enc/dvips/montserrat/zmo_kpjbgw.enc + RELOC/fonts/enc/dvips/montserrat/zmo_ktszbv.enc + RELOC/fonts/enc/dvips/montserrat/zmo_l6ekdc.enc + RELOC/fonts/enc/dvips/montserrat/zmo_ljoz2a.enc + RELOC/fonts/enc/dvips/montserrat/zmo_loozhj.enc + RELOC/fonts/enc/dvips/montserrat/zmo_m7viqr.enc + RELOC/fonts/enc/dvips/montserrat/zmo_mpjdp6.enc + RELOC/fonts/enc/dvips/montserrat/zmo_myxsx6.enc + RELOC/fonts/enc/dvips/montserrat/zmo_n233ks.enc + RELOC/fonts/enc/dvips/montserrat/zmo_n73q35.enc + RELOC/fonts/enc/dvips/montserrat/zmo_nimoma.enc + RELOC/fonts/enc/dvips/montserrat/zmo_nyafwi.enc + RELOC/fonts/enc/dvips/montserrat/zmo_o4eebi.enc + RELOC/fonts/enc/dvips/montserrat/zmo_o4tig7.enc + RELOC/fonts/enc/dvips/montserrat/zmo_o7oh2z.enc + RELOC/fonts/enc/dvips/montserrat/zmo_ogifq5.enc + RELOC/fonts/enc/dvips/montserrat/zmo_olufhi.enc + RELOC/fonts/enc/dvips/montserrat/zmo_ov66hc.enc + RELOC/fonts/enc/dvips/montserrat/zmo_pgha5c.enc + RELOC/fonts/enc/dvips/montserrat/zmo_pk4ncj.enc + RELOC/fonts/enc/dvips/montserrat/zmo_pogoar.enc + RELOC/fonts/enc/dvips/montserrat/zmo_ps2jnw.enc + RELOC/fonts/enc/dvips/montserrat/zmo_pslnjt.enc + RELOC/fonts/enc/dvips/montserrat/zmo_pub5az.enc + RELOC/fonts/enc/dvips/montserrat/zmo_qp4jag.enc + RELOC/fonts/enc/dvips/montserrat/zmo_qqaxlq.enc + RELOC/fonts/enc/dvips/montserrat/zmo_rfo7vr.enc + RELOC/fonts/enc/dvips/montserrat/zmo_s7irvx.enc + RELOC/fonts/enc/dvips/montserrat/zmo_scppf7.enc + RELOC/fonts/enc/dvips/montserrat/zmo_skw6h2.enc + RELOC/fonts/enc/dvips/montserrat/zmo_slhote.enc + RELOC/fonts/enc/dvips/montserrat/zmo_subnof.enc + RELOC/fonts/enc/dvips/montserrat/zmo_tjcog7.enc + RELOC/fonts/enc/dvips/montserrat/zmo_tjhwyu.enc + RELOC/fonts/enc/dvips/montserrat/zmo_tni2lj.enc + RELOC/fonts/enc/dvips/montserrat/zmo_ts2hdt.enc + RELOC/fonts/enc/dvips/montserrat/zmo_txtt2v.enc + RELOC/fonts/enc/dvips/montserrat/zmo_uqa4kb.enc + RELOC/fonts/enc/dvips/montserrat/zmo_utxkra.enc + RELOC/fonts/enc/dvips/montserrat/zmo_v3m2pu.enc + RELOC/fonts/enc/dvips/montserrat/zmo_vmhiwp.enc + RELOC/fonts/enc/dvips/montserrat/zmo_vrs6kn.enc + RELOC/fonts/enc/dvips/montserrat/zmo_w43b7b.enc + RELOC/fonts/enc/dvips/montserrat/zmo_wieltn.enc + RELOC/fonts/enc/dvips/montserrat/zmo_wuqpdh.enc + RELOC/fonts/enc/dvips/montserrat/zmo_wvuz2i.enc + RELOC/fonts/enc/dvips/montserrat/zmo_wygu6d.enc + RELOC/fonts/enc/dvips/montserrat/zmo_x7rqlm.enc + RELOC/fonts/enc/dvips/montserrat/zmo_xey7lb.enc + RELOC/fonts/enc/dvips/montserrat/zmo_xu2liq.enc + RELOC/fonts/enc/dvips/montserrat/zmo_xu4w3w.enc + RELOC/fonts/enc/dvips/montserrat/zmo_yntdxo.enc + RELOC/fonts/enc/dvips/montserrat/zmo_ytfxzt.enc + RELOC/fonts/enc/dvips/montserrat/zmo_yyqg6d.enc + RELOC/fonts/enc/dvips/montserrat/zmo_z64ahx.enc + RELOC/fonts/enc/dvips/montserrat/zmo_zfphbh.enc + RELOC/fonts/map/dvips/montserrat/montserrat.map + RELOC/fonts/opentype/public/montserrat/Montserrat-Black.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-BlackItalic.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-Bold.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-BoldItalic.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-ExtraBold.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-ExtraBoldItalic.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-ExtraLight.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-ExtraLightItalic.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-Italic.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-Light.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-LightItalic.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-Medium.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-MediumItalic.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-Regular.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-SemiBold.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-SemiBoldItalic.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-Thin.otf + RELOC/fonts/opentype/public/montserrat/Montserrat-ThinItalic.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-Black.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-BlackItalic.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-Bold.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-BoldItalic.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-ExtraBold.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-ExtraBoldItalic.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-ExtraLight.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-ExtraLightItalic.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-Italic.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-Light.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-LightItalic.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-Medium.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-MediumItalic.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-Regular.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-SemiBold.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-SemiBoldItalic.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-Thin.otf + RELOC/fonts/opentype/public/montserrat/MontserratAlternates-ThinItalic.otf + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Black-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Light-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-Thin-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/Montserrat-ThinItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Black-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Light-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-Thin-tosf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-inf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-numr-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/montserrat/MontserratAlternates-ThinItalic-tosf-ts1.tfm + RELOC/fonts/type1/public/montserrat/Montserrat-Black.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-BlackItalic.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-Bold.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-BoldItalic.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-ExtraBold.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-ExtraBoldItalic.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-ExtraLight.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-ExtraLightItalic.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-Italic.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-Light.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-LightItalic.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-Medium.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-MediumItalic.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-Regular.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-SemiBold.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-SemiBoldItalic.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-Thin.pfb + RELOC/fonts/type1/public/montserrat/Montserrat-ThinItalic.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-Black.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-BlackItalic.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-Bold.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-BoldItalic.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-ExtraBold.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-ExtraBoldItalic.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-ExtraLight.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-ExtraLightItalic.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-Italic.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-Light.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-LightItalic.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-Medium.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-MediumItalic.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-Regular.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-SemiBold.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-SemiBoldItalic.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-Thin.pfb + RELOC/fonts/type1/public/montserrat/MontserratAlternates-ThinItalic.pfb + RELOC/fonts/vf/public/montserrat/Montserrat-Black-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Black-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BlackItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ExtraLightItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Light-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Medium-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-SemiBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-Thin-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/Montserrat-ThinItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Black-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BlackItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ExtraLightItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Light-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Medium-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-SemiBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-Thin-tosf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-dnom-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-dnom-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-inf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-inf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-lf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-lf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-lf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-numr-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-numr-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-osf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-osf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-osf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-sup-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-sup-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-tosf-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-tosf-t1.vf + RELOC/fonts/vf/public/montserrat/MontserratAlternates-ThinItalic-tosf-ts1.vf + RELOC/tex/latex/montserrat/LY1Montserrat-Dnom.fd + RELOC/tex/latex/montserrat/LY1Montserrat-Inf.fd + RELOC/tex/latex/montserrat/LY1Montserrat-LF.fd + RELOC/tex/latex/montserrat/LY1Montserrat-Numr.fd + RELOC/tex/latex/montserrat/LY1Montserrat-OsF.fd + RELOC/tex/latex/montserrat/LY1Montserrat-Sup.fd + RELOC/tex/latex/montserrat/LY1Montserrat-TLF.fd + RELOC/tex/latex/montserrat/LY1Montserrat-TOsF.fd + RELOC/tex/latex/montserrat/LY1MontserratAlternates-Dnom.fd + RELOC/tex/latex/montserrat/LY1MontserratAlternates-Inf.fd + RELOC/tex/latex/montserrat/LY1MontserratAlternates-LF.fd + RELOC/tex/latex/montserrat/LY1MontserratAlternates-Numr.fd + RELOC/tex/latex/montserrat/LY1MontserratAlternates-OsF.fd + RELOC/tex/latex/montserrat/LY1MontserratAlternates-Sup.fd + RELOC/tex/latex/montserrat/LY1MontserratAlternates-TLF.fd + RELOC/tex/latex/montserrat/LY1MontserratAlternates-TOsF.fd + RELOC/tex/latex/montserrat/OT1Montserrat-Dnom.fd + RELOC/tex/latex/montserrat/OT1Montserrat-Inf.fd + RELOC/tex/latex/montserrat/OT1Montserrat-LF.fd + RELOC/tex/latex/montserrat/OT1Montserrat-Numr.fd + RELOC/tex/latex/montserrat/OT1Montserrat-OsF.fd + RELOC/tex/latex/montserrat/OT1Montserrat-Sup.fd + RELOC/tex/latex/montserrat/OT1Montserrat-TLF.fd + RELOC/tex/latex/montserrat/OT1Montserrat-TOsF.fd + RELOC/tex/latex/montserrat/OT1MontserratAlternates-Dnom.fd + RELOC/tex/latex/montserrat/OT1MontserratAlternates-Inf.fd + RELOC/tex/latex/montserrat/OT1MontserratAlternates-LF.fd + RELOC/tex/latex/montserrat/OT1MontserratAlternates-Numr.fd + RELOC/tex/latex/montserrat/OT1MontserratAlternates-OsF.fd + RELOC/tex/latex/montserrat/OT1MontserratAlternates-Sup.fd + RELOC/tex/latex/montserrat/OT1MontserratAlternates-TLF.fd + RELOC/tex/latex/montserrat/OT1MontserratAlternates-TOsF.fd + RELOC/tex/latex/montserrat/T1Montserrat-Dnom.fd + RELOC/tex/latex/montserrat/T1Montserrat-Inf.fd + RELOC/tex/latex/montserrat/T1Montserrat-LF.fd + RELOC/tex/latex/montserrat/T1Montserrat-Numr.fd + RELOC/tex/latex/montserrat/T1Montserrat-OsF.fd + RELOC/tex/latex/montserrat/T1Montserrat-Sup.fd + RELOC/tex/latex/montserrat/T1Montserrat-TLF.fd + RELOC/tex/latex/montserrat/T1Montserrat-TOsF.fd + RELOC/tex/latex/montserrat/T1MontserratAlternates-Dnom.fd + RELOC/tex/latex/montserrat/T1MontserratAlternates-Inf.fd + RELOC/tex/latex/montserrat/T1MontserratAlternates-LF.fd + RELOC/tex/latex/montserrat/T1MontserratAlternates-Numr.fd + RELOC/tex/latex/montserrat/T1MontserratAlternates-OsF.fd + RELOC/tex/latex/montserrat/T1MontserratAlternates-Sup.fd + RELOC/tex/latex/montserrat/T1MontserratAlternates-TLF.fd + RELOC/tex/latex/montserrat/T1MontserratAlternates-TOsF.fd + RELOC/tex/latex/montserrat/TS1Montserrat-LF.fd + RELOC/tex/latex/montserrat/TS1Montserrat-OsF.fd + RELOC/tex/latex/montserrat/TS1Montserrat-TLF.fd + RELOC/tex/latex/montserrat/TS1Montserrat-TOsF.fd + RELOC/tex/latex/montserrat/TS1MontserratAlternates-LF.fd + RELOC/tex/latex/montserrat/TS1MontserratAlternates-OsF.fd + RELOC/tex/latex/montserrat/TS1MontserratAlternates-TLF.fd + RELOC/tex/latex/montserrat/TS1MontserratAlternates-TOsF.fd + RELOC/tex/latex/montserrat/montserrat.fontspec + RELOC/tex/latex/montserrat/montserrat.sty + RELOC/tex/latex/montserrat/montserratalternates.fontspec +catalogue-ctan /fonts/montserrat +catalogue-date 2017-02-27 05:38:31 +0100 +catalogue-license ofllppl1.3 +catalogue-topics font font-sans font-otf font-type1 font-t1enc +catalogue-version 1.01 + +name moodle +category Package +revision 39367 +shortdesc Generating Moodle quizzes via LaTeX +relocated 1 +longdesc A package for writing Moodle quizzes in LaTeX. In addition to +longdesc typesetting the quizzes for proofreading, the package compiles +longdesc an XML file to be uploaded to a Moodle server. +containersize 16840 +containerchecksum 839db4d5082703e0b6d5516b6ec3c18b4fa4b449e732904569e839028bc3f7e27def83c56eb9929f65b0527cec9b180fd743aa3d0df2194aa6372922582173ce +doccontainersize 287120 +doccontainerchecksum 9448341e5c33054a39f6990b4f7942f45fbbd884cd5691fa8c0b82fa1b3f9cfc887a02edadcb0df0a7a62c53c9f4b20496db5e6e9ecca4bd6ce8bddf2749a71d +docfiles size=76 + RELOC/doc/latex/moodle/README.md details="Readme" + RELOC/doc/latex/moodle/moodle.pdf details="Package documentation" +srccontainersize 30644 +srccontainerchecksum 332251d2357ce64268a1bddf7e77f28f7cf4be10846da84c1512bb39eb804e671f38aea4843af0f1357307869794029c259a52f6ab62d96736fb691436d841c4 +srcfiles size=33 + RELOC/source/latex/moodle/moodle.dtx + RELOC/source/latex/moodle/moodle.ins +runfiles size=21 + RELOC/tex/latex/moodle/moodle.sty +catalogue-ctan /macros/latex/contrib/moodle +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics exam +catalogue-version 0.5 + +name moreenum +category Package +revision 24479 +shortdesc More enumeration options +relocated 1 +longdesc The package provides the following new enumerate styles: \greek +longdesc for lowercase Greek letters; \Greek for uppercase Greek +longdesc letters; \enumHex for uppercase hexadecimal enumeration; +longdesc \enumhex for lowercase hexadecimal enumeration; \enumbinary for +longdesc binary enumeration; \enumoctal for octal enumeration; \levelnth +longdesc for "1st", "2nd", "3rd" etc., with the "nth"s on the baseline; +longdesc raisenth for "1st", "2nd", "3rd" etc., with the "nth"s raised; +longdesc \nthwords for "first", "second", "third" etc.; \Nthwords for +longdesc "First", "Second", "Third" etc.; \NTHWORDS for "FIRST", +longdesc "SECOND", "THIRD" etc.; \nwords for "one", "two", "three" etc.; +longdesc \Nwords for "One", "Two", "Three" etc.; and \NWORDS for "ONE", +longdesc "TWO", "THREE" etc. Each of these works with enumitem's +longdesc "starred variant" feature. So +longdesc \begin{enumerate}[label=\enumhex*] will output a hex enumerated +longdesc list. Enumitem provides a start=0 option for starting your +longdesc enumerations at 0. The package requires amsmath, alphalph, +longdesc enumitem (of course), binhex and nth, all of which are widely +longdesc available. +containersize 2708 +containerchecksum 069ef44faaa8847a07ad00dae31c1b63278d59a560ed90823100cd601850a798f574d8210c07854a8b1a90165efb3bba852e100e53aee496f78395e3d6defade +doccontainersize 220832 +doccontainerchecksum 987a1dd96669b9202846fc604fbcfb935b68c79d13bbe4599f32fab9e869ca5b60f3b4bdfcf78d3b3f5102db9ab16955ec13958c4cf3df7ec64649268c226d1c +docfiles size=56 + RELOC/doc/latex/moreenum/README details="Readme" + RELOC/doc/latex/moreenum/moreenum-doc.pdf details="Package documentation" + RELOC/doc/latex/moreenum/moreenum-doc.tex +runfiles size=2 + RELOC/tex/latex/moreenum/moreenum.sty +catalogue-ctan /macros/latex/contrib/moreenum +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics list-enum numbers +catalogue-version 1.03 + +name morefloats +category Package +revision 37927 +shortdesc Increase the number of simultaneous LaTeX floats +relocated 1 +longdesc LaTeX can, by default, only cope with 18 outstanding floats; +longdesc any more, and you get the error "too many unprocessed floats". +longdesc This package releases the limit; TeX itself imposes limits +longdesc (which are independent of the help offered by e-TeX). However, +longdesc if your floats can't be placed anywhere, extending the number +longdesc of floats merely delays the arrival of the inevitable error +longdesc message. +containersize 4456 +containerchecksum 28fd471aa854852cc2a48597dda19cadda3c92c589d0419b8d36e044f9c04e406037f162e1d02c1f4b20a6288efe4a689fe4e03aafbfc6b06cf14019f7e880f0 +doccontainersize 555528 +doccontainerchecksum f542aecb6d3868559cee66a7c153dc80cb6aacebae40c0cd0dd120c4230cd358b4d2787286cb3e7bdfb5565949861a35af65ca616369585b8f28462a2b1dbcf6 +docfiles size=140 + RELOC/doc/latex/morefloats/README details="Readme" + RELOC/doc/latex/morefloats/morefloats-example.pdf + RELOC/doc/latex/morefloats/morefloats-example.tex + RELOC/doc/latex/morefloats/morefloats.pdf details="Package documentation" +srccontainersize 14488 +srccontainerchecksum 7f527c20294826a6d7e1c3ff390ca02f521e9b6824db41d078b4132201d1d7575cb43eebda9e66e8226ba2a641db692ae2d1f1ccac5c4f027851b75100e261db +srcfiles size=23 + RELOC/source/latex/morefloats/morefloats.drv + RELOC/source/latex/morefloats/morefloats.dtx + RELOC/source/latex/morefloats/morefloats.ins +runfiles size=10 + RELOC/tex/latex/morefloats/morefloats.sty +catalogue-ctan /macros/latex/contrib/morefloats +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics float +catalogue-version 1.0h + +name morehype +category Package +revision 38815 +shortdesc Hypertext tools for use with LaTeX +relocated 1 +longdesc The bundle provides three packages: texlinks: shorthand macros +longdesc for TeX-related external hyperlinks with hyperref, the blog +longdesc package in the present bundle, etc; hypertoc: adjust the +longdesc presentation of coloured frames in hyperref tables of contents +longdesc (article class only); blog: fast generation of simple HTML by +longdesc expanding LaTeX macros, using the fifinddo package. +containersize 62492 +containerchecksum 698ec10d9e70dc1b89ed5094369359fdeffb663ca95513b7207aed065515a66dd2c82b4e43d14fe271c9851e72a44e9c2f6e3baa177ed9430f89e88bdd692172 +doccontainersize 2321852 +doccontainerchecksum 2600045257c75dd15320a2f188f5b043358bfdb21ce4a19af2d1a696141a2f553da42c13143d14c8ba136fb1ef7a560684ac47c5274738c747f729a00b02a099 +docfiles size=666 + RELOC/doc/latex/morehype/README details="Readme" + RELOC/doc/latex/morehype/README.pdf + RELOC/doc/latex/morehype/RELEASEs.txt + RELOC/doc/latex/morehype/SrcFILEs.txt + RELOC/doc/latex/morehype/blog.pdf details="Package documentation: blog" + RELOC/doc/latex/morehype/blogdemo/hellowor/hellowor.htm + RELOC/doc/latex/morehype/blogdemo/hellowor/hellowor.tex + RELOC/doc/latex/morehype/blogdemo/hellowor/mkhellow.tex + RELOC/doc/latex/morehype/blogdemo/writings/makehtml.tex + RELOC/doc/latex/morehype/blogdemo/writings/schreibt.tex + RELOC/doc/latex/morehype/blogdemo/writings/writings.fdf + RELOC/doc/latex/morehype/blogexec.pdf + RELOC/doc/latex/morehype/hypertoc.pdf details="Package documentation: hypertoc" + RELOC/doc/latex/morehype/markblog.htm + RELOC/doc/latex/morehype/ref_alts.tex + RELOC/doc/latex/morehype/texlinks.pdf details="Package documentation: texlinks" + RELOC/doc/latex/morehype/wiki_mwe.pdf + RELOC/doc/latex/morehype/wiki_mwe.tex +srccontainersize 14396 +srccontainerchecksum f710fd59d5c99d7df8b84a365a8f8c110ac7086699f36d1851eb7fdd27ed43212c403c14d9f9105c78402b278d66fa77ca2f50a0253073f55842a60fb19b4c1f +srcfiles size=16 + RELOC/source/latex/morehype/README.tex + RELOC/source/latex/morehype/blog.tex + RELOC/source/latex/morehype/blogdot.css + RELOC/source/latex/morehype/blogexec.tex + RELOC/source/latex/morehype/fdatechk.tex + RELOC/source/latex/morehype/hypertoc.tex + RELOC/source/latex/morehype/markblog.tex + RELOC/source/latex/morehype/srcfiles.tex + RELOC/source/latex/morehype/texlinks.tex +runfiles size=64 + RELOC/tex/latex/morehype/atari_ht.fdf + RELOC/tex/latex/morehype/blog.sty + RELOC/tex/latex/morehype/blogdot.cfg + RELOC/tex/latex/morehype/blogdot.sty + RELOC/tex/latex/morehype/blogexec.sty + RELOC/tex/latex/morehype/blogligs.sty + RELOC/tex/latex/morehype/hypertoc.sty + RELOC/tex/latex/morehype/lnavicol.sty + RELOC/tex/latex/morehype/markblog.sty + RELOC/tex/latex/morehype/morehype.RLS + RELOC/tex/latex/morehype/texblog.fdf + RELOC/tex/latex/morehype/texlinks.sty +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html +catalogue-ctan /macros/latex/contrib/morehype +catalogue-date 2017-05-06 08:56:51 +0200 +catalogue-license lppl1.3 +catalogue-topics hyper +catalogue-version r0.83 + +name moresize +category Package +revision 17513 +shortdesc Allows font sizes up to 35.83pt +relocated 1 +longdesc A package for using font sizes up to 35.88pt, for example with +longdesc the EC fonts. New commands \HUGE and \ssmall for selecting font +longdesc sizes are provided together with some options working around +longdesc current LaTeX2e shortcomings in using big font sizes. The +longdesc package also provides options for improving the typesetting of +longdesc paragraphs (or headlines) with embedded math expressions at +longdesc font sizes above 17.28pt. +containersize 1532 +containerchecksum 92f67234dd9c0429798f9e8001a2d4b7004e11f2fa90130b738670e6228f45ebca3ba26ed98616e3af5c86148992f9915e3e6a1cfeb4c875fbd20fd818743525 +doccontainersize 248052 +doccontainerchecksum 3c1ed984163e2adbdaa7e94439e160327515f1c6999e40114819d8e5250e090c932909217d37d1d07fcb108c56ec50f294324c32523995f68f57fd918983a412 +docfiles size=68 + RELOC/doc/latex/moresize/moresize.pdf details="Package documentation" + RELOC/doc/latex/moresize/moresize.upl + RELOC/doc/latex/moresize/msizetst.tex +srccontainersize 9448 +srccontainerchecksum 701a2ba72c22bed8397350f92023b0b1d1587b837c4fd247dabe5860cc32e58499e8803a0286aa9f9e3831faff8b9ce0e74ac1a0f82d798a2f7f461b015b5809 +srcfiles size=8 + RELOC/source/latex/moresize/moresize.dtx + RELOC/source/latex/moresize/moresize.ins +runfiles size=1 + RELOC/tex/latex/moresize/moresize.sty +catalogue-ctan /macros/latex/contrib/moresize +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font-supp +catalogue-version 1.9 + +name moreverb +category Package +revision 22126 +shortdesc Extended verbatim +relocated 1 +longdesc A collection of verbatim facilities that provide line-numbered +longdesc verbatim, verbatim that obeys TAB characters, verbatim input +longdesc and verbatim output to file. The package makes use of the LaTeX +longdesc required verbatim package. The package is formed from a series +longdesc of small pieces, and is somewhat unstructured. The user who +longdesc looks for thought-through verbatim facilities is advised to +longdesc consider using the fancyvrb package in place of moreverb. +containersize 2324 +containerchecksum 673b7ab5951e418fe10622fb1a4b4a420c4c436684afbb1474c58b7aa7b235f7063555a220133257b351b5847be5e880714e44ca49bd9198a4306c0e821dcdde +doccontainersize 114952 +doccontainerchecksum 27e4f361f5d7193c97629debec048168045bc38e353f677829677cb5ce5c0a9ad8f5b2576bd9f870da8dfbf16d745e489ba79e3dfe6aa1da8a9cab1ad72ace06 +docfiles size=34 + RELOC/doc/latex/moreverb/README details="Package Readme" + RELOC/doc/latex/moreverb/moreverb.pdf details="Package documentation" +srccontainersize 7080 +srccontainerchecksum 55ec67b5b9616459a776b0ca386be19cb6ae57fa2a7bde1f6a1896233f4f303277474d629c884e40bcd8d076522ab4e41fbe8850304dbd33469a1f21750c81ef +srcfiles size=6 + RELOC/source/latex/moreverb/moreverb.dtx + RELOC/source/latex/moreverb/moreverb.ins +runfiles size=2 + RELOC/tex/latex/moreverb/moreverb.sty +catalogue-also vrb fancyvrb +catalogue-contact-repository https://github.com/rf-latex/moreverb +catalogue-contact-support https://github.com/rf-latex/moreverb/issues +catalogue-ctan /macros/latex/contrib/moreverb +catalogue-date 2018-09-14 18:12:25 +0200 +catalogue-license lppl +catalogue-topics verbatim +catalogue-version 2.3a + +name morewrites +category Package +revision 49531 +shortdesc Always room for a new write stream +relocated 1 +longdesc The package aims to solve the error "No room for a new \write", +longdesc which occurs when the user, or when the user's packages have +longdesc 'allocated too many streams' using \newwrite (TeX has a fixed +longdesc maximum number - 16 - such streams built-in to its code). The +longdesc package hooks into TeX primitive commands associated with +longdesc writing to files; it should be loaded near the beginning of the +longdesc sequence of loading packages for a document. The package uses +longdesc the l3kernel bundle. +containersize 5460 +containerchecksum fb1f515fa834c422f628464467411a51c8c9a99f353ab297ca0ac0b63d65a7f2e05ec3e6a649fa35260a6bedb91dedda594654e83e94a28baa62764a38d9ca8c +doccontainersize 1234300 +doccontainerchecksum 9f4bad59ec0f024d24956481d2f70baa56748c9deb000979490c001cd671dd07fc3712eca1917713775d6b879169050786b22a76e2ce1d8d57a99cd76487d167 +docfiles size=323 + RELOC/doc/latex/morewrites/README.md details="Readme" + RELOC/doc/latex/morewrites/morewrites.pdf details="Package documentation" + RELOC/doc/latex/morewrites/primargs.pdf +srccontainersize 19712 +srccontainerchecksum 21a6606687ac53e218408cc5790c1b93c9db3cef7b1f17fbfe574ee2f1a1c48e5c21a00d7b4f44f6fc1b98bd77af032be97c1cf48571bc439ee20fa6367d3bf1 +srcfiles size=22 + RELOC/source/latex/morewrites/morewrites.dtx + RELOC/source/latex/morewrites/morewrites.ins + RELOC/source/latex/morewrites/primargs.dtx +runfiles size=8 + RELOC/tex/latex/morewrites/morewrites.sty + RELOC/tex/latex/morewrites/primargs.sty +catalogue-also rvwrite +catalogue-contact-bugs https://github.com/blefloch/latex-morewrites/issues +catalogue-contact-repository https://github.com/blefloch/latex-morewrites +catalogue-ctan /macros/latex/contrib/morewrites +catalogue-date 2018-12-29 17:13:03 +0100 +catalogue-license lppl1.3c +catalogue-topics io-mgmt + +name morisawa +category Package +revision 46946 +shortdesc Enables selection of 5 standard Japanese fonts for pLaTeX + dvips +relocated 1 +longdesc The package enables selection of 5 standard Japanese fonts for +longdesc pLaTeX + dvips. It was originally written by Haruhiko Okumura +longdesc as part of jsclasses bundle, and the TFM/VF files were +longdesc previously distributed as part of the ptex-fonts package. +execute addKanjiMap morisawa5.map +containersize 8564 +containerchecksum 7f149fab67905d6b21670becb1c3e3afbc8fb4c45fa3c376960e5a87d7fe17abe091af63930a8385b5bcb63e550fc0b9bb16d522f50f90b911b09599dc5ccafa +doccontainersize 95032 +doccontainerchecksum 7af68b3a8233cec22efb49e8131c65e33db4076ed4f254f2d62f629c03d0122e8dddc3ba68d283affb5ca663d3b1f744780dc98c14eadfa1a69028df281e5bb2 +docfiles size=26 + RELOC/doc/fonts/morisawa/LICENSE + RELOC/doc/fonts/morisawa/Makefile + RELOC/doc/fonts/morisawa/README.md details="Readme" + RELOC/doc/fonts/morisawa/morisawa.pdf details="Package documentation" language="ja" +srccontainersize 3452 +srccontainerchecksum 7e3821bc1f5dad076307ebf00cacb68cdeb9e18a060c9c024c0fea85c558f7373f214f16952fa643f8b832376101ec8c8bb839a902e6e8213912a4cbc10862ad +srcfiles size=4 + RELOC/source/fonts/morisawa/morisawa.dtx + RELOC/source/fonts/morisawa/morisawa.ins +runfiles size=552 + RELOC/fonts/map/dvipdfmx/morisawa/morisawa5.map + RELOC/fonts/tfm/public/morisawa/FutoGoB101-Bold-H.tfm + RELOC/fonts/tfm/public/morisawa/FutoGoB101-Bold-J.tfm + RELOC/fonts/tfm/public/morisawa/FutoGoB101-Bold-V.tfm + RELOC/fonts/tfm/public/morisawa/FutoMinA101-Bold-H.tfm + RELOC/fonts/tfm/public/morisawa/FutoMinA101-Bold-J.tfm + RELOC/fonts/tfm/public/morisawa/FutoMinA101-Bold-V.tfm + RELOC/fonts/tfm/public/morisawa/GothicBBB-Medium-H.tfm + RELOC/fonts/tfm/public/morisawa/GothicBBB-Medium-J.tfm + RELOC/fonts/tfm/public/morisawa/GothicBBB-Medium-V.tfm + RELOC/fonts/tfm/public/morisawa/Jun101-Light-H.tfm + RELOC/fonts/tfm/public/morisawa/Jun101-Light-J.tfm + RELOC/fonts/tfm/public/morisawa/Jun101-Light-V.tfm + RELOC/fonts/tfm/public/morisawa/Ryumin-Light-H.tfm + RELOC/fonts/tfm/public/morisawa/Ryumin-Light-J.tfm + RELOC/fonts/tfm/public/morisawa/Ryumin-Light-V.tfm + RELOC/fonts/tfm/public/morisawa/futogo-b-v.tfm + RELOC/fonts/tfm/public/morisawa/futogo-b.tfm + RELOC/fonts/tfm/public/morisawa/futomin-b-v.tfm + RELOC/fonts/tfm/public/morisawa/futomin-b.tfm + RELOC/fonts/tfm/public/morisawa/gtbbb-m-v.tfm + RELOC/fonts/tfm/public/morisawa/gtbbb-m.tfm + RELOC/fonts/tfm/public/morisawa/jun101-l-v.tfm + RELOC/fonts/tfm/public/morisawa/jun101-l.tfm + RELOC/fonts/tfm/public/morisawa/ryumin-l-v.tfm + RELOC/fonts/tfm/public/morisawa/ryumin-l.tfm + RELOC/fonts/vf/public/morisawa/FutoGoB101-Bold-H.vf + RELOC/fonts/vf/public/morisawa/FutoGoB101-Bold-J.vf + RELOC/fonts/vf/public/morisawa/FutoGoB101-Bold-V.vf + RELOC/fonts/vf/public/morisawa/FutoMinA101-Bold-H.vf + RELOC/fonts/vf/public/morisawa/FutoMinA101-Bold-J.vf + RELOC/fonts/vf/public/morisawa/FutoMinA101-Bold-V.vf + RELOC/fonts/vf/public/morisawa/GothicBBB-Medium-H.vf + RELOC/fonts/vf/public/morisawa/GothicBBB-Medium-J.vf + RELOC/fonts/vf/public/morisawa/GothicBBB-Medium-V.vf + RELOC/fonts/vf/public/morisawa/Jun101-Light-H.vf + RELOC/fonts/vf/public/morisawa/Jun101-Light-J.vf + RELOC/fonts/vf/public/morisawa/Jun101-Light-V.vf + RELOC/fonts/vf/public/morisawa/Ryumin-Light-H.vf + RELOC/fonts/vf/public/morisawa/Ryumin-Light-J.vf + RELOC/fonts/vf/public/morisawa/Ryumin-Light-V.vf + RELOC/tex/latex/morisawa/morisawa.sty +catalogue-also jsclasses ptex-fonts +catalogue-contact-repository https://github.com/texjporg/morisawa +catalogue-ctan /fonts/morisawa +catalogue-date 2018-04-29 07:15:59 +0200 +catalogue-license bsd +catalogue-topics font-cjk + +name movie15 +category Package +revision 26473 +shortdesc Multimedia inclusion package +relocated 1 +longdesc The package provides an interface to embed movies, sounds and +longdesc 3D objects into PDF documents for use with LaTeX as well as +longdesc pdfLaTeX. The package defines a command \includemovie with +longdesc PDF-1.5 compatibility. Option 'autoplay' causes the media clip +longdesc to be started right after the page has loaded. This is useful +longdesc for side by side movie clips to be played back synchronously. +longdesc The package is now superseded by media9 +containersize 23660 +containerchecksum a45726b24f76683c44b0f006d720695c14ef51a260fa00f3223a075e48173638dbc9d9d361fb4e1f8f567cbe80f65d990aae485b669901a50d5b18750640b103 +doccontainersize 484140 +doccontainerchecksum 4df2fec7f0abac6ef4d948285b3156bb9489a3b7b18939fa109abcd9c537e383d505e308516e1bc852aa5c5bdd6b8825e8f7e887c9787d7c2d337124942cc9e5 +docfiles size=196 + RELOC/doc/latex/movie15/README details="README file" + RELOC/doc/latex/movie15/files/3dsystem.fig + RELOC/doc/latex/movie15/files/3dsystem.pdf + RELOC/doc/latex/movie15/files/3dsystem.tex + RELOC/doc/latex/movie15/files/dice.u3d + RELOC/doc/latex/movie15/files/dice.vws + RELOC/doc/latex/movie15/files/dice.wrl + RELOC/doc/latex/movie15/files/mailto.png + RELOC/doc/latex/movie15/files/random.mpg + RELOC/doc/latex/movie15/javascript/animation.js + RELOC/doc/latex/movie15/javascript/lights.js + RELOC/doc/latex/movie15/javascript/turntable.js + RELOC/doc/latex/movie15/movie15.pdf details="Package Documentation" + RELOC/doc/latex/movie15/movie15.tex + RELOC/doc/latex/movie15/overlay-example.pdf details="Overlay example" + RELOC/doc/latex/movie15/overlay-example.tex +runfiles size=39 + RELOC/tex/latex/movie15/movie15.sty +catalogue-also flashmovie +catalogue-ctan /macros/latex/contrib/movie15 +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics multimedia obsolete + +name mp3d +category Package +revision 29349 +shortdesc 3D animations +relocated 1 +longdesc Create animations of 3-dimensional objects (such as polyhedra) +longdesc in MetaPost. +containersize 22956 +containerchecksum e5899aace25cef3a690150cf09e76bddc008f426800588ef7d21361229b0040dff74af7b43d563b05d8c3d16166e34b5a21e8e25ae3e97ca80e5ffe5c4925392 +doccontainersize 728740 +doccontainerchecksum 2b64199f50ae5b0e6528bf041ac2422574f9adf467183f3ee3d58ebd91317ce25937699be29d0a5954565a4fd326719f11bc04a35cb4938489696ae479d5d7f5 +docfiles size=243 + RELOC/doc/metapost/mp3d/README details="Readme" + RELOC/doc/metapost/mp3d/README.doc + RELOC/doc/metapost/mp3d/create_animation.sh + RELOC/doc/metapost/mp3d/cube10.mp + RELOC/doc/metapost/mp3d/cube4-eng.mp + RELOC/doc/metapost/mp3d/cube5.mp + RELOC/doc/metapost/mp3d/cube6.mp + RELOC/doc/metapost/mp3d/cube7.mp + RELOC/doc/metapost/mp3d/cube8.mp + RELOC/doc/metapost/mp3d/cube9.mp + RELOC/doc/metapost/mp3d/gut2001.pdf details="Paper on geometry, for Cahiers Gutenberg" language="fr" + RELOC/doc/metapost/mp3d/gutmp1-eng.mp + RELOC/doc/metapost/mp3d/gutmp1.mp + RELOC/doc/metapost/mp3d/gutmp2-eng.mp + RELOC/doc/metapost/mp3d/gutmp2.mp + RELOC/doc/metapost/mp3d/gutmp3-eng.mp + RELOC/doc/metapost/mp3d/gutmp3.mp + RELOC/doc/metapost/mp3d/gutmp4-eng.mp + RELOC/doc/metapost/mp3d/gutmp4.mp + RELOC/doc/metapost/mp3d/gutmp5-eng.mp + RELOC/doc/metapost/mp3d/gutmp5.mp + RELOC/doc/metapost/mp3d/gutmp6-eng.mp + RELOC/doc/metapost/mp3d/gutmp6.mp + RELOC/doc/metapost/mp3d/gutmp7-eng.mp + RELOC/doc/metapost/mp3d/gutmp7.mp + RELOC/doc/metapost/mp3d/gutmp8-eng.mp + RELOC/doc/metapost/mp3d/gutmp8.mp + RELOC/doc/metapost/mp3d/gutmp9.mp + RELOC/doc/metapost/mp3d/monge-eng.mp + RELOC/doc/metapost/mp3d/monge.mp + RELOC/doc/metapost/mp3d/paper1997corrected.pdf details="Corrected TUGboat paper" language="en" + RELOC/doc/metapost/mp3d/tb57roeg.pdf + RELOC/doc/metapost/mp3d/tb57roegel.ltx + RELOC/doc/metapost/mp3d/tugboat-geometry-space.pdf details="Paper on geometry, for TUGboat" language="en" +runfiles size=26 + RELOC/metapost/mp3d/3d.mp + RELOC/metapost/mp3d/3danim.mp + RELOC/metapost/mp3d/3dgeom.mp + RELOC/metapost/mp3d/3dpoly.mp + RELOC/metapost/mp3d/3dutil.mp + RELOC/metapost/mp3d/animpoly.mp +catalogue-ctan /graphics/metapost/contrib/macros/mp3d +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics mp-use graphics-3d +catalogue-version 1.34 + +name mparhack +category Package +revision 15878 +shortdesc Work around a LaTeX bug in marginpars +relocated 1 +longdesc Works around the LaTeX bug that marginpars will sometimes come +longdesc out at the wrong margin. +containersize 2776 +containerchecksum 9f050b6ee0aabefe384f4b78678620b8a15a49f0582cf22caf0e5fc2b1b975eb0bfffbfe91165a121aad6d358044f97be410250597fd31b462630aa1e32ae96a +doccontainersize 58920 +doccontainerchecksum 0f28a6dce33e14636bf5515bc1395a80f9ced23553698d9db766e023715554fd87df292836c669b8492844c559eefaca4c4598fbee94db425c419dea16e90ca3 +docfiles size=23 + RELOC/doc/latex/mparhack/README details="Package README" + RELOC/doc/latex/mparhack/mparhack.pdf details="Package documentation" +srccontainersize 10616 +srccontainerchecksum 6c90b951bb47450ce9892a84e72c37083438682edb36393895d25d4499f8d5c071c969f830cccc229851a39811fd04593c6b7425a2b0ddcb134b73f7faa2a722 +srcfiles size=10 + RELOC/source/latex/mparhack/mparhack.dtx + RELOC/source/latex/mparhack/mparhack.ins +runfiles size=2 + RELOC/tex/latex/mparhack/mparhack.sty +catalogue-ctan /macros/latex/contrib/mparhack +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics marginal +catalogue-version 1.4 + +name mparrows +category Package +revision 39729 +shortdesc MetaPost module with different types of arrow heads +relocated 1 +longdesc A package to provide different types of arrow heads to be used +longdesc with MetaPost commands drawarrow and drawdblarrow commands. +containersize 1348 +containerchecksum 58e4a909374486cd2d4313d62a49e4e30a5e85f8ef2cc0d9a7e734b546ad8b36e3bbfb96f3eecaa9c10b8d7b3b1557aa9e0b5dae5b4547d42cabc64d2f2949d3 +doccontainersize 114292 +doccontainerchecksum d1ca204228c1bc76d4f15257687a865c650fa83742dd126b3d7cd5e93e725b2da31eedfbca9a86e93eaa08df487b0432cc41f0d4fd2f99951f874691acf47016 +docfiles size=39 + RELOC/doc/metapost/mparrows/LICENSE + RELOC/doc/metapost/mparrows/README details="Readme" + RELOC/doc/metapost/mparrows/mparrows.pdf details="Package documentation" + RELOC/doc/metapost/mparrows/mparrows.tex + RELOC/doc/metapost/mparrows/mparrowsexamples.mp +runfiles size=2 + RELOC/metapost/mparrows/mparrows.mp +catalogue-ctan /graphics/metapost/contrib/macros/mparrows +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics mp-supp +catalogue-version 0.1 + +name mpattern +category Package +revision 15878 +shortdesc Patterns in MetaPost +relocated 1 +longdesc A package for defining and using patterns in MetaPost, using +longdesc the Pattern Color Space available in PostScript Level 2. +containersize 2752 +containerchecksum 1efc3f1f1c93456a3038ae5037ad5dcc4b177c57852f7db475a7ce6d2002559b370ba22dcc6d312c68ba75c03523cdf0df8546fff8dab032832d3ff3148b5d65 +doccontainersize 11328 +doccontainerchecksum 4ec7cadd89449ca049fdd723de9e29f20199a630fc28585a4802e3ce3666783822e4f0769907cafbfb0fe097b1da4a08d3e5e5f4038ecebbe9fe3543dd3413d6 +docfiles size=8 + RELOC/doc/metapost/mpattern/README details="Package Readme (English)" language="en" + RELOC/doc/metapost/mpattern/README.PL details="Package Readme (Polish)" language="pl" + RELOC/doc/metapost/mpattern/mpattern_test.pdf details="Package test output" + RELOC/doc/metapost/mpattern/mpattern_test.tex + RELOC/doc/metapost/mpattern/test.mp +runfiles size=2 + RELOC/metapost/mpattern/mpattern.mp +catalogue-ctan /graphics/metapost/contrib/macros/mpattern +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics graphics-use + +name mpcolornames +category Package +revision 23252 +shortdesc Extend list of predefined colour names for MetaPost +relocated 1 +longdesc The MetaPost format plain.mp provides only five built-in colour +longdesc names (variables), all of which are defined in the RGB model: +longdesc red, green and blue for the primary colours and black and +longdesc white. The package makes more than 500 colour names from +longdesc different colour sets in different colour models available to +longdesc MetaPost. Colour sets include X11, SVG, DVIPS and xcolor +longdesc specifications. +containersize 6792 +containerchecksum 9808706010059e8d2683f88a47535b8039049681e5a9fdc013cc384bcacb1910cc7ab2f7614d35ed964c28507bf5fc062fe4db852afa45f9d9383c367838eeba +doccontainersize 108768 +doccontainerchecksum bfb9ce4c85de655b890948897deba96a5ff60cb7518b3e198cd0b088b63670531f29bd84dbde4837298a24f36dac0652f2d2d3491dbcd7ac8f9e57de6500c6dd +docfiles size=50 + RELOC/doc/metapost/mpcolornames/CHANGES + RELOC/doc/metapost/mpcolornames/LICENSE + RELOC/doc/metapost/mpcolornames/README details="Readme" + RELOC/doc/metapost/mpcolornames/expl-array-index.mp + RELOC/doc/metapost/mpcolornames/fig-clash-svg-dvips.mp + RELOC/doc/metapost/mpcolornames/mpcolornames.pdf details="Package documentation" + RELOC/doc/metapost/mpcolornames/mpcolornames.tex + RELOC/doc/metapost/mpcolornames/proof-mpcolornames.mp + RELOC/doc/metapost/mpcolornames/proof-spec-dvipsnam-def.mp + RELOC/doc/metapost/mpcolornames/proof-spec-plain-mp.mp + RELOC/doc/metapost/mpcolornames/proof-spec-svgnam-def.mp + RELOC/doc/metapost/mpcolornames/proof-spec-x11nam-def.mp + RELOC/doc/metapost/mpcolornames/proof-spec-xcolor-sty.mp + RELOC/doc/metapost/mpcolornames/tab-clash-svg-dvips.tex + RELOC/doc/metapost/mpcolornames/tab-spec-dvipsnam-def.tex + RELOC/doc/metapost/mpcolornames/tab-spec-plain-mp.tex + RELOC/doc/metapost/mpcolornames/tab-spec-svgnam-def.tex + RELOC/doc/metapost/mpcolornames/tab-spec-x11nam-def.tex + RELOC/doc/metapost/mpcolornames/tab-spec-xcolor-sty.tex +srccontainersize 3364 +srccontainerchecksum ec29085382f6464b10323680488140b483aa09c9df050806a154fce60bf92feb7d4e04de444d0fb4b1623c6ea3506ba619bf0fb2477f048fd4c5f2f0be9f272c +srcfiles size=8 + RELOC/source/metapost/mpcolornames/Makefile + RELOC/source/metapost/mpcolornames/spec-dvipsnam-def.awk + RELOC/source/metapost/mpcolornames/spec-plain-mp.awk + RELOC/source/metapost/mpcolornames/spec-svgnam-def.awk + RELOC/source/metapost/mpcolornames/spec-x11nam-def.awk + RELOC/source/metapost/mpcolornames/spec-xcolor-sty.awk + RELOC/source/metapost/mpcolornames/tab-clash-svg-dvips.awk +runfiles size=9 + RELOC/metapost/mpcolornames/mpcolornames-spec-dvipsnam-def.mp + RELOC/metapost/mpcolornames/mpcolornames-spec-plain-mp.mp + RELOC/metapost/mpcolornames/mpcolornames-spec-svgnam-def.mp + RELOC/metapost/mpcolornames/mpcolornames-spec-x11nam-def.mp + RELOC/metapost/mpcolornames/mpcolornames-spec-xcolor-sty.mp + RELOC/metapost/mpcolornames/mpcolornames.mp +catalogue-ctan /graphics/metapost/contrib/macros/mpcolornames +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl +catalogue-topics colour +catalogue-version 0.20 + +name mpgraphics +category Package +revision 29776 +shortdesc Process and display MetaPost figures inline +relocated 1 +longdesc The package allows LaTeX users to typeset MetaPost code inline +longdesc and display figures in their documents with only and only one +longdesc run of LaTeX, pdfLaTeX or XeLaTeX (no separate runs of mpost). +longdesc Mpgraphics achieves this by using the shell escape (\write 18) +longdesc feature of current TeX distributions, so that the whole process +longdesc is automatic and the end user is saved the tiresome processing. +containersize 4340 +containerchecksum 5d711f7a981f701e11874916fe8d22fa237404dc119fc2d5c8f8e9b3eaf8feb59a63023ec30f0c67d304839e4971288a669d70a697260af35e401edf00673adb +doccontainersize 182260 +doccontainerchecksum 954c8e3a8a0deafea163c9bea9da6bd1c27fcc9b5270408fdd29f0051ece1f4138a0af99808cf85279823cb48475b8e21b3a450f021d678fc5b2fbdf28e55320 +docfiles size=49 + RELOC/doc/latex/mpgraphics/README details="Readme" + RELOC/doc/latex/mpgraphics/mpgraphics-example.ltx + RELOC/doc/latex/mpgraphics/mpgraphics.pdf details="Package documentation" +srccontainersize 9484 +srccontainerchecksum 30e7324760efabffddf6920362ba213eb05fce2658d9a442677a2f8f322695d5a361b1d183c4f775b289ac116d586e2466be46d4ea1798cde251132b95a98bdd +srcfiles size=10 + RELOC/source/latex/mpgraphics/mpgraphics.dtx + RELOC/source/latex/mpgraphics/mpgraphics.ins +runfiles size=4 + RELOC/tex/latex/mpgraphics/mpgraphics.sty +catalogue-also emp +catalogue-contact-bugs https://github.com/bidi-tex/mpgraphics/issues +catalogue-contact-repository https://github.com/bidi-tex/mpgraphics +catalogue-ctan /macros/latex/contrib/mpgraphics +catalogue-date 2018-11-28 20:33:59 +0100 +catalogue-license lppl1.3 +catalogue-topics graphics-inline +catalogue-version 0.3 + +name mpman-ru +category Package +revision 15878 +shortdesc A Russian translation of the MetaPost manual +relocated 1 +longdesc A translation of the user manual, as distributed with MetaPost +longdesc itself. +containersize 428 +containerchecksum e234fc25e9d8e5aa89a59e21186a16de3c695ce45c9ee8d132546381cb18e9be681bd4ee9c70bb10b4769ada5e5874b500d2a3cd7d264d89610dcda35fcba9a1 +doccontainersize 864700 +doccontainerchecksum 57f2449eaed3651b808095348f056fdfa90b00979ba2e21fad120efe096dca9a9e48474e9dbb539f347ffe20ccd5582f4815ff4552c54e9ea5f9df391dd75edb +docfiles size=338 + RELOC/doc/metapost/mpman-ru/Makefile + RELOC/doc/metapost/mpman-ru/README details="Readme (English)" language="en" + RELOC/doc/metapost/mpman-ru/README.ru.koi8-r details="Readme (Russian, KOI-8 encoded)" language="ru" + RELOC/doc/metapost/mpman-ru/bm-to-utf16be.awk + RELOC/doc/metapost/mpman-ru/ctabbing.sty + RELOC/doc/metapost/mpman-ru/extract-bm.awk + RELOC/doc/metapost/mpman-ru/idx1.awk + RELOC/doc/metapost/mpman-ru/idx2.awk + RELOC/doc/metapost/mpman-ru/idx3.awk + RELOC/doc/metapost/mpman-ru/manfig-ru.mp + RELOC/doc/metapost/mpman-ru/mpman-optab-ru.tex + RELOC/doc/metapost/mpman-ru/mpman-ru.pdf details="The document itself" + RELOC/doc/metapost/mpman-ru/mpman-ru.tex + RELOC/doc/metapost/mpman-ru/mpman.ist +catalogue-ctan /info/metapost/doc/russian/mpman-ru +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics mp-doc russian-doc translation +catalogue-version 1.004 + +name mpostinl +category Package +revision 49559 +shortdesc Embed MetaPost figures within LaTeX documents +relocated 1 +longdesc This LaTeX2e package enables the embedding of MetaPost figures +longdesc within LaTeX documents. The package automatically collects the +longdesc embedded definitions and figures in a .mp file, adds an +longdesc appropriate LaTeX document structure, and compiles it to .mps +longdesc files. It also allows for various configuration options to +longdesc manage the generation of files and compilation. +containersize 5072 +containerchecksum 0749fdf4c54efe9b8c9ed9f735a851a0c0b08a9092679bbb80eb32a80ed6e7284094a043e27721dacf8112b6898a8c5f47bf0b0dea4af9082a40bead0599ee76 +doccontainersize 330676 +doccontainerchecksum ad639ec50e5b71a1ef02bcc04cb1c0b195e9ed2cdef9ff8e145d17cfb34dd853d96449620f5d0eba614154cdf6291902316f4fdfbd179a112cebbe2a059acc70 +docfiles size=86 + RELOC/doc/latex/mpostinl/README.txt details="Readme" + RELOC/doc/latex/mpostinl/mpinlsmp.tex + RELOC/doc/latex/mpostinl/mpostinl.pdf details="Package documentation" +srccontainersize 22036 +srccontainerchecksum 44ff22f1fb0496422dd760b786174e520643ae9c2b8d3b922a08f9e065708fb4c292169e58cd328381c29672d0526c13506429c55eb57100e96f876324e6fbb6 +srcfiles size=25 + RELOC/source/latex/mpostinl/mpostinl.dtx + RELOC/source/latex/mpostinl/mpostinl.ins +runfiles size=5 + RELOC/tex/latex/mpostinl/mpostinl.sty +catalogue-ctan /macros/latex/contrib/mpostinl +catalogue-date 2018-12-31 09:10:51 +0100 +catalogue-license lppl1.3 +catalogue-topics mp-supp graphics-inline graphics comp-mgmt +catalogue-version 1.5 + +name mptopdf +category Package +revision 50112 +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 plain +depend mptopdf.ARCH +execute AddFormat name=mptopdf engine=pdftex options="-translate-file=cp227.tcx mptopdf.tex" fmttriggers=plain +containersize 38452 +containerchecksum 342104203d04c1bfad2d70a5908e51dc8c2e7f340e1454c629f07041ed26d0974c37b208506db8273b7e2462e517ff3455e687d9c0386a711672a32144cda6df +doccontainersize 13680 +doccontainerchecksum 54e02a9a9e18daaceefb63163b227fdea123b0a7250cf2f9a55b839a7df6dc347586259af501ff60b630fb008cb26b046d1823fdb5799cb5bb988d1cbace0acf +docfiles size=6 + texmf-dist/doc/context/scripts/mkii/mptopdf.man + texmf-dist/doc/man/man1/mptopdf.1 + texmf-dist/doc/man/man1/mptopdf.man1.pdf +runfiles size=43 + texmf-dist/scripts/context/perl/mptopdf.pl + texmf-dist/scripts/context/stubs/mswin/mptopdf.exe + texmf-dist/tex/context/base/mkii/supp-mis.mkii + texmf-dist/tex/context/base/mkii/supp-mpe.mkii + texmf-dist/tex/context/base/mkii/supp-pdf.mkii + texmf-dist/tex/context/base/mkii/syst-tex.mkii + texmf-dist/tex/generic/context/mptopdf/mptopdf.tex + +name mptopdf.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of mptopdf +containersize 348 +containerchecksum 72ea8cffb4f65ae08f8737f0db464f29bd3cd8fada591704d1a4dc1a0c40a22b204b3731366c7a2b2bec0c3d9331e2596a02266bcda0acb69ab8e96cd593c4aa +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/mptopdf + +name mptopdf.amd64-freebsd +category Package +revision 18674 +shortdesc amd64-freebsd files of mptopdf +containersize 352 +containerchecksum 9a6ff4b3d2df26124567c0037db23d0b27e0844e0d75ae37f9bfb33679573e637752e13ef296f3e655e530c269a2c9adda2a0011109f3467605ff5827c28d454 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/mptopdf + +name mptopdf.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of mptopdf +containersize 348 +containerchecksum ea224b867825c91334f858dfb2048386ec492dbe29efc7236db68b2c37c16539751db79b029b4250a86842103ef5c073b06f2f3be1b6f6e05313412c981f7e51 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/mptopdf + +name mptopdf.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of mptopdf +containersize 348 +containerchecksum 100e4342c0287220352c5017750a63a1e225f58ba95dc166ea5d52fcdad04ba2ad34a6b5b4e4fb1ea6d7a520f21aa6f6ac83fa84689de57f95fa9ddca58b2258 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/mptopdf + +name mptopdf.i386-cygwin +category Package +revision 18674 +shortdesc i386-cygwin files of mptopdf +containersize 348 +containerchecksum 8cdcccc74b9d816f9089d58f1a51ceba6b452619ca267d0491604b1e50fb06c09d6e7aa618b6dd4f39d2ec2b20239b0551c6f4e9941935ebeaa15493bf2aeb0a +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/mptopdf + +name mptopdf.i386-freebsd +category Package +revision 18674 +shortdesc i386-freebsd files of mptopdf +containersize 352 +containerchecksum 6369430e12b325b4ce26d99e0fedf693e523fa35e5fcadd0ab64567cf648b9b913666415620bbb108ef821208fda12951c339ec96a7f7f5b10d2e34623252923 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/mptopdf + +name mptopdf.i386-linux +category Package +revision 18674 +shortdesc i386-linux files of mptopdf +containersize 348 +containerchecksum eeb042c69a2e3db47df6c8860ef7f9631547b12710147e8d1462f4ca85a796540265a25afa712755cf2ca2bd81ea276211c851658f57ece8057103f6b9457ef1 +binfiles arch=i386-linux size=1 + bin/i386-linux/mptopdf + +name mptopdf.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of mptopdf +containersize 348 +containerchecksum 78cac478608da3cf6b62e8654425f55e63df8bc7294fb45d55c6182f2081582a624080804f04f614f008617766eb92779d26c804d74a2ec897985f27f4d28443 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/mptopdf + +name mptopdf.i386-solaris +category Package +revision 18674 +shortdesc i386-solaris files of mptopdf +containersize 348 +containerchecksum 20f66ff309ca8afd2b01bef98cf8f60ac96921cb5198f2fa704a9f01f5c97c00849c786741292f20f54f147304423b8cbb03dd21f19c32c5744c3243c0c39d20 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/mptopdf + +name mptopdf.win32 +category Package +revision 29958 +shortdesc win32 files of mptopdf +containersize 684 +containerchecksum c9084f24dd7e08d0e78a86baf006df23ff668a046b26d8a68971f561e677b7bbffeffb5a0f21a6ac248b87b65bef758f87ba27f803a7a53e1d1de6bbb88729a2 +binfiles arch=win32 size=1 + bin/win32/mptopdf.exe + +name mptopdf.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of mptopdf +containersize 352 +containerchecksum be4ffd9729cfe1a190092af2065b0d1ed53e05c7dc6b9a7efd86e94a4a8b5a690e1221e58692430e5dd454e3812cf8e9af6f92fc6b86909fe11f9dd8a86e5591 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/mptopdf + +name mptopdf.x86_64-darwin +category Package +revision 18674 +shortdesc x86_64-darwin files of mptopdf +containersize 352 +containerchecksum 9ee9c54d6f3cc46b8fbc3c79324676929af5b0ac5a961b5b8d3c276130836373dd6a3c30c352ac96828746363f96cafb9188cbcc926e541e229cd92061461db1 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/mptopdf + +name mptopdf.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of mptopdf +containersize 356 +containerchecksum aaa553b4d37bafc7a7b7ddcd09853457ce8fb28e6c22949d9afca44e5ca224430fd93424b858d55384b50d315a1d7bb73694290b15c31d122deb368ba9cc1bfb +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/mptopdf + +name mptopdf.x86_64-linux +category Package +revision 18674 +shortdesc x86_64-linux files of mptopdf +containersize 348 +containerchecksum 5ce7fd8d447ae76a3ab4af367e4ae6ca47669185c89cd5425d2d59d8110997a378521f420e5c763ff73c186e12e34831eff981619391fb17fa4378d982fb893a +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/mptopdf + +name mptopdf.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of mptopdf +containersize 352 +containerchecksum 7c8b69084389df32612c9b5bd7daa238ac7f2520c63588efb872f9c3f177ea8babe1ca2857491a200ad96bdc85a1f3b5d6a11c8387266bcb641a36c0dc0c2713 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/mptopdf + +name mptopdf.x86_64-solaris +category Package +revision 18674 +shortdesc x86_64-solaris files of mptopdf +containersize 352 +containerchecksum c02ec0ff18c36d1c2e81cdedcdd0623ed469417a004acf150aa47411acc4467508fb751ae14e470ecd1b6c86a83f8d9e4ab32dd1c40e2f6054d580b7e5d43846 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/mptopdf + +name mptrees +category Package +revision 44453 +shortdesc Probability trees with MetaPost +relocated 1 +longdesc This package provides MetaPost tools for drawing simple +longdesc probability trees. One command and several parameters to +longdesc control the output are provided. +containersize 3572 +containerchecksum c495bed58639226b0552dff1d2e7c5e97a60ad4fb20cef65cfd873feaeffef4e0b7672a33d310576c042a94d6d27141056e8a56c0bd5d648841b860a3c1919de +doccontainersize 434004 +doccontainerchecksum 38935dd6694e4c731e6ea8e8a1575ac5985a24ad5d1e05d5766168d3b6f82be6e3bde8c57601565be67ebd0d1232191779f973adf5bcb7851154aab3bd6472a6 +docfiles size=112 + RELOC/doc/metapost/mptrees/README.md details="Readme" + RELOC/doc/metapost/mptrees/mptrees-doc.pdf details="Package documentation" + RELOC/doc/metapost/mptrees/mptrees-doc.tex +runfiles size=3 + RELOC/metapost/mptrees/mptrees.mp +catalogue-ctan /graphics/metapost/contrib/macros/mptrees +catalogue-date 2017-06-05 06:55:07 +0200 +catalogue-license lppl1.3 +catalogue-topics diagram-maths maths probability +catalogue-version 17.06 + +name ms +category Package +revision 42428 +shortdesc Various LaTeX packages by Martin Schroder +relocated 1 +longdesc A bundle of LaTeX packages by Martin Schroder; the collection +longdesc comprises: count1to, make use of fixed TeX counters; everysel, +longdesc set commands to execute every time a font is selected; +longdesc everyshi, set commands to execute whenever a page is shipped +longdesc out; multitoc, typeset the table of contents in multiple +longdesc columns; prelim2e, mark typeset pages as preliminary; and +longdesc ragged2e, typeset ragged text and allow hyphenation. +containersize 5880 +containerchecksum b318ac364209731f0a2eddd85f065926f11da8ea7dd46d7f16fda0f214730160bffd2bf32acb3a451e44e1ee08a3b635d242b551a5c786e23004d38bcbfba9d8 +doccontainersize 2070328 +doccontainerchecksum 4594818c6b6404bcc6a2e3ea13e10e64a171c4c7fb28d4dffa42a49776a9c2e2f6c611fffa227fa5ca5c16075d2d75e6482e6952104bfe2221330b64f4c05a6c +docfiles size=629 + RELOC/doc/latex/ms/count1to.pdf + RELOC/doc/latex/ms/everysel.pdf + RELOC/doc/latex/ms/everyshi.asc + RELOC/doc/latex/ms/everyshi.bug + RELOC/doc/latex/ms/everyshi.pdf + RELOC/doc/latex/ms/multitoc.asc + RELOC/doc/latex/ms/multitoc.bug + RELOC/doc/latex/ms/multitoc.pdf + RELOC/doc/latex/ms/prelim2e.pdf + RELOC/doc/latex/ms/ragged2e.pdf +srccontainersize 26860 +srccontainerchecksum 7a5ef51726319c2b8ffa62f216654b6f6954deb5f77882dfc2320bafa4300a99b29be8b88f25eadebb1a55dde8766a3fe552c91307a904d6406bf6bfc84bded1 +srcfiles size=49 + RELOC/source/latex/ms/count1to.drv + RELOC/source/latex/ms/count1to.dtx + RELOC/source/latex/ms/count1to.ins + RELOC/source/latex/ms/everysel.drv + RELOC/source/latex/ms/everysel.dtx + RELOC/source/latex/ms/everysel.ins + RELOC/source/latex/ms/everyshi.drv + RELOC/source/latex/ms/everyshi.dtx + RELOC/source/latex/ms/everyshi.ins + RELOC/source/latex/ms/multitoc.drv + RELOC/source/latex/ms/multitoc.dtx + RELOC/source/latex/ms/multitoc.ins + RELOC/source/latex/ms/prelim2e.drv + RELOC/source/latex/ms/prelim2e.dtx + RELOC/source/latex/ms/prelim2e.ins + RELOC/source/latex/ms/ragged2e.drv + RELOC/source/latex/ms/ragged2e.dtx + RELOC/source/latex/ms/ragged2e.ins +runfiles size=12 + RELOC/tex/latex/ms/count1to.sty + RELOC/tex/latex/ms/everysel.sty + RELOC/tex/latex/ms/everyshi.sty + RELOC/tex/latex/ms/multitoc.sty + RELOC/tex/latex/ms/prelim2e.sty + RELOC/tex/latex/ms/ragged2e.sty +catalogue-ctan /macros/latex/contrib/ms +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics collection + +name msc +category Package +revision 15878 +shortdesc Draw MSC diagrams +relocated 1 +longdesc The package should be useful to all people that prepare their +longdesc texts with LaTeX and want to draw Message Sequence Charts in +longdesc their texts. The package is not an MSC editor; it simply takes +longdesc a textual description of an MSC and draws the corresponding +longdesc MSC. The current version of the MSC macro package supports the +longdesc full MSC2000 language. +containersize 17840 +containerchecksum cfd66ed08d144698d11905ddf987f44782752e412d5ecb0a85fc27e569cedd4918ac05f19d986e0fa6e17065bf871e805094251eebd5d27653047d436541600d +doccontainersize 413856 +doccontainerchecksum 9485a70d19aa2754ae4e12e4311d4a03367c57a7bbba69cfc50a38aa50d6d9160aeb812c4a63b23f7da0e726b07cf836ac9df7b66b4c847b9cad0e7d66aff23b +docfiles size=151 + RELOC/doc/latex/msc/COPYRIGHT.txt + RELOC/doc/latex/msc/README details="Package Readme" + RELOC/doc/latex/msc/maintenance.pdf details="Maintenance manual" + RELOC/doc/latex/msc/maintenance.tex + RELOC/doc/latex/msc/manual.pdf details="User manual" + RELOC/doc/latex/msc/manual.tex + RELOC/doc/latex/msc/refman.pdf details="Reference manual" + RELOC/doc/latex/msc/refman.tex +runfiles size=29 + RELOC/bibtex/bib/msc/biblio.bib + RELOC/tex/latex/msc/msc.sty +catalogue-contact-home http://satoss.uni.lu/mscpackage/ +catalogue-ctan /macros/latex/contrib/msc +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl +catalogue-topics comp-net +catalogue-version 1.16 + +name msg +category Package +revision 49578 +shortdesc A package for LaTeX localisation +relocated 1 +longdesc The package is designed to localise any document class or +longdesc package. This should be very useful for end-users who could +longdesc obtain messages in their own preferred language. It is really +longdesc easy to use by writers of other classes and packages. +longdesc Volunteers are urged to test the package, report, and even to +longdesc localise the message file to their own language. Documentation +longdesc is provided in English. +containersize 7808 +containerchecksum 9419f306ccde237320abe22fe192a2473785244fd337063332a242e029b8650404df7f7d150b196d3bccb0e10e58e25e2b8aefb15627e89eda8636ddc50599e1 +doccontainersize 763960 +doccontainerchecksum 85db0022daca5aeeb50e2eded6214a3b144012bfd0bd433b4f9474307c2a37e57c7a311385b8de4efcdc4e462f39c53f6a5fcfac2eae7263e2d1583b0ba584df +docfiles size=288 + RELOC/doc/latex/msg/CHANGES + RELOC/doc/latex/msg/README details="Readme" + RELOC/doc/latex/msg/README_msg_doc.txt + RELOC/doc/latex/msg/msg.pdf details="Package documentation" + RELOC/doc/latex/msg/msgguide.pdf details="User guide" + RELOC/doc/latex/msg/msgguide.tex + RELOC/doc/latex/msg/msgtest.tex +srccontainersize 18688 +srccontainerchecksum 988d410412b2e7b3617678d0cdb2e8059f7261d48b942eff588c472ccb29e022a3e10ae2302268789331c20705ce062f0930ef53bb785245923ba199ed71b15f +srcfiles size=21 + RELOC/source/latex/msg/Makefile + RELOC/source/latex/msg/msg.dtx + RELOC/source/latex/msg/msg.ins + RELOC/source/latex/msg/msgfiles.dtx +runfiles size=10 + RELOC/tex/latex/msg/french_msg-msg.tex + RELOC/tex/latex/msg/german_msg-msg.tex + RELOC/tex/latex/msg/msg-msg.tex + RELOC/tex/latex/msg/msg.sty + RELOC/tex/latex/msg/norsk_msg-msg.tex +catalogue-ctan /macros/latex/contrib/msg +catalogue-date 2019-01-02 13:46:13 +0100 +catalogue-license lppl +catalogue-topics multilingual +catalogue-version 0.51 + +name mslapa +category Package +revision 17514 +shortdesc Michael Landy's APA citation style +relocated 1 +longdesc LaTeX and BibTeX style files for a respectably close +longdesc approximation to APA (American Psychological Association) +longdesc citation and reference style. +containersize 8996 +containerchecksum 76910e823a3d1114a2f7497c49d7a9edeabdfc3642309604654f244b060c4ef456aa170f677dfaa719d36416eaa41b68ab28c5cbf869f611a33155250bb44423 +doccontainersize 277424 +doccontainerchecksum af01997554d68c0c779950e3be4c92fe7ab0616eb2c5ab55c5131f17ef22eb6e7066c4190607b77c9cc44aa50c15a472ea27733add54fe82b7801c7724f1663c +docfiles size=75 + RELOC/doc/latex/mslapa/README details="Readme" + RELOC/doc/latex/mslapa/bibfile.bib + RELOC/doc/latex/mslapa/examp.tex + RELOC/doc/latex/mslapa/mslapa.pdf details="Package documentation" + RELOC/doc/latex/mslapa/mslapa.tex +runfiles size=10 + RELOC/bibtex/bst/mslapa/mslapa.bst + RELOC/tex/latex/mslapa/mslapa.sty +catalogue-also apacite apa +catalogue-ctan /macros/latex/contrib/mslapa +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics psychology journalpub bibtex-sty + +name msu-thesis +category Package +revision 46106 +shortdesc Class for Michigan State University Master's and PhD theses +relocated 1 +longdesc This is a class file for producing dissertations and theses +longdesc according to the Michigan State University Graduate School +longdesc Guidelines for Electronic Submission of Master's Theses and +longdesc Dissertations. The class should meet all current requirements +longdesc and is updated whenever the university guidelines change. The +longdesc class is based on the memoir document class, and inherits the +longdesc functionality of that class. +containersize 8512 +containerchecksum e05cdf909d11616692cb175b117a134f1eeae10cd9c62058847cca383b86eb99de675f4e534c3b9d378dbebef10312b773f111de46becf8e4f3c840faaf5555c +doccontainersize 433408 +doccontainerchecksum 1b3c8266ff9dbd2c757365d30772057433e1ddcb04c83a9f98e55c9c4707a380e5d289496887da9adb922f96e7f4c64b9d3828e2a758aa38fba31e59c39c7d1c +docfiles size=126 + RELOC/doc/latex/msu-thesis/README details="Readme" + RELOC/doc/latex/msu-thesis/msu-thesis.pdf details="Package documentation" + RELOC/doc/latex/msu-thesis/msu-thesis.tex + RELOC/doc/latex/msu-thesis/samples/MSU-thesis-template.pdf + RELOC/doc/latex/msu-thesis/samples/MSU-thesis-template.tex + RELOC/doc/latex/msu-thesis/samples/MSU-thesis-testfile.bib + RELOC/doc/latex/msu-thesis/samples/MSU-thesis-testfile.pdf + RELOC/doc/latex/msu-thesis/samples/MSU-thesis-testfile.tex + RELOC/doc/latex/msu-thesis/samples/unified.bst +runfiles size=7 + RELOC/tex/latex/msu-thesis/msu-thesis.cls +catalogue-ctan /macros/latex/contrib/msu-thesis +catalogue-date 2017-12-20 08:13:20 +0100 +catalogue-license lppl1.3 +catalogue-topics dissertation +catalogue-version 2.8 + +name mtgreek +category Package +revision 17967 +shortdesc Use italic and upright greek letters with mathtime +relocated 1 +longdesc This package is an add-on to the MathTime a style to provide +longdesc TeX support for the use of the MathTime(tm) fonts (formerly +longdesc distributed by YandY, Inc.). The MathTime package has uppercase +longdesc Greek letters hardwired to be upright and only upright; this +longdesc package provides a switch to choose between the two kinds of +longdesc Greek uppercase letters. +containersize 1744 +containerchecksum fbc20f61e1d4e9d3ebf4a92216c7c007f2aec2b2cac0aca6e08f0e1ea5f6f405a32d947efcea0057a025a138afc85e0d1486191ee82fa9a0e9f2f6e2542a9e11 +doccontainersize 160144 +doccontainerchecksum 49631058e9bfc59dd38a7e0e2134f6d9ddf68779a6f8087a056a89fef975154510496415b782102dfeae6b5563527fb6178ce301b004fe33a4dfa8dbeb4474ac +docfiles size=44 + RELOC/doc/latex/mtgreek/mtgreek.pdf details="Package documentation" + RELOC/doc/latex/mtgreek/mtgreek.tex + RELOC/doc/latex/mtgreek/mtgtest.tex +srccontainersize 2800 +srccontainerchecksum d69c6248a4d8fbb9a64cd539e7f66db5373f9551d27c98b755377594f9b1680a323719599f5963972d169399a0686b5e6f500148cc54881d23d8adb3b91bf4f9 +srcfiles size=3 + RELOC/source/latex/mtgreek/mtgreek.dtx + RELOC/source/latex/mtgreek/mtgreek.ins +runfiles size=1 + RELOC/tex/latex/mtgreek/mtgreek.sty +catalogue-ctan /macros/latex/contrib/mtgreek +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font-supp greek +catalogue-version 1.1+ + +name mucproc +category Package +revision 43445 +shortdesc Conference proceedings for the German MuC-conference +relocated 1 +longdesc The mucproc.cls is a document class to support the formatting +longdesc guidelines for submissions to the German Mensch und Computer +longdesc conference. This work consists of the files mucproc.dtx and +longdesc mucproc.ins and the derived files mucproc.cls, +longdesc mucfontsize10pt.clo. A compilable demonstration file using the +longdesc mucproc class can be found on +longdesc https://github.com/Blubu/mucproc/. This example fulfills the +longdesc formatting guidelines for MuC 2017. +containersize 5280 +containerchecksum 02ee23aa25152e80e8dc2c57f14b99c70ff57c38175498c179e505a76d967f826acf076cae2085d305cde93964f03134fc6d1027e0669acdbaba5ed5ff6efa8e +doccontainersize 334012 +doccontainerchecksum 01d154fab3c0ad8db790b5a22fcc4cae7a5beea1a2850f5e9d6fb1fcdc6c1071c2dc294568451f40db5455826f78ae910be9572de5a4a7d870e3a18a74fc0082 +docfiles size=83 + RELOC/doc/latex/mucproc/README.md details="Readme" + RELOC/doc/latex/mucproc/mucproc.pdf details="Package documentation" +srccontainersize 10308 +srccontainerchecksum f1ce5b80ed1c79cdb5939fda97b18bd263b313496a98cd7940e990ff719dff9e633d636505c0d538f37ff26a81c33d6f625f51a479e5ed6f949f7b3ebd845917 +srcfiles size=9 + RELOC/source/latex/mucproc/mucproc.dtx + RELOC/source/latex/mucproc/mucproc.ins +runfiles size=6 + RELOC/tex/latex/mucproc/mucfontsize10pt.clo + RELOC/tex/latex/mucproc/mucproc.cls +catalogue-contact-repository https://github.com/Blubu/mucproc/ +catalogue-ctan /macros/latex/contrib/mucproc +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics confproc class +catalogue-version 1.02 + +name mugsthesis +category Package +revision 34878 +shortdesc Thesis class complying with Marquette University Graduate School requirements +relocated 1 +longdesc The bundle offers a thesis class, based on memoir, that +longdesc complies with Marquette University Graduate School +longdesc requirements. +containersize 2988 +containerchecksum 26a40992f66bead658130b6a649e7da550c85a92dbf9bf5778d4987e06f3a5f7d168eeb77dab3e81c5f328d252be345265c2326760d861fff35fb4ffd1e3a4b0 +doccontainersize 357356 +doccontainerchecksum 2f9d069468c3ea0b420465200abafade7ec7c52cb22bee74865da5fb06064eeae47709a1ff60868bfbf675a4397d828e02581defd338ef3e79e179c0ae7cf7ef +docfiles size=103 + RELOC/doc/latex/mugsthesis/README details="Readme" + RELOC/doc/latex/mugsthesis/mugsthesis.pdf details="Package documentation" + RELOC/doc/latex/mugsthesis/sample/abstract.tex + RELOC/doc/latex/mugsthesis/sample/acknowledgments.tex + RELOC/doc/latex/mugsthesis/sample/appendix1.tex + RELOC/doc/latex/mugsthesis/sample/ch01.tex + RELOC/doc/latex/mugsthesis/sample/ch02.tex + RELOC/doc/latex/mugsthesis/sample/dedication.tex + RELOC/doc/latex/mugsthesis/sample/mugsthesis_sample.pdf + RELOC/doc/latex/mugsthesis/sample/mugsthesis_sample.tex + RELOC/doc/latex/mugsthesis/sample/refs.bib +srccontainersize 7696 +srccontainerchecksum bbbd79aef8db604e5349cfcac7fceed96d8b2570cbdb455b36f96d99e52660562b6d84bdb5a9e1a4c9ff32c9199867f491e91f96758635ca800ad5b69039b120 +srcfiles size=7 + RELOC/source/latex/mugsthesis/mugsthesis.dtx + RELOC/source/latex/mugsthesis/mugsthesis.ins +runfiles size=2 + RELOC/tex/latex/mugsthesis/mugsthesis.cls +catalogue-contact-repository https://github.com/pdgessler/mugsthesis +catalogue-ctan /macros/latex/contrib/mugsthesis +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics dissertation + +name multenum +category Package +revision 21775 +shortdesc Multi-column enumerated lists +relocated 1 +longdesc Defines an environment multienumerate, that produces an +longdesc enumerated array in which columns are vertically aligned on the +longdesc counter. The motivation was lists of answers for a text book, +longdesc where there are many rather small items; the multienumerate +longdesc environment goes some way to making such lists look neater. +containersize 1664 +containerchecksum e73e2d3fe45f562398de752520628032fea310e5345a247472a2807618b72467b245995f32f21474dcb5702106bf32d6394508a96c4aeae4dbeaf6fdda7bdf4e +doccontainersize 107660 +doccontainerchecksum 889ffbce149b1f0a98e22a1ebcafc60e29858d08b57e2e567956830c679515759a6c8209901641e3d77ded31238e8fe93f7e4cdff95d1be925e3972c9005f4a7 +docfiles size=37 + RELOC/doc/latex/multenum/README details="Readme" + RELOC/doc/latex/multenum/multienum.article + RELOC/doc/latex/multenum/multienum.pdf details="Package documentation" + RELOC/doc/latex/multenum/multienum.sample +runfiles size=2 + RELOC/tex/latex/multenum/multienum.sty +catalogue-also shortlst paralist +catalogue-ctan /macros/latex/contrib/multenum +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1 +catalogue-topics list list-enum + +name multiaudience +category Package +revision 38035 +shortdesc Several versions of output from the same source +relocated 1 +longdesc This package allows to generate several versions of the same +longdesc document for different audiences. +containersize 1520 +containerchecksum 58610f5b5138f7713fcd3e21fac721d0cc0a796e928bd5bd89e5981e08a0d4d6888f6f4f2dc2c6b9afecfbf0366462109be7a497ff6017e3b76ba83b361fe2f1 +doccontainersize 488772 +doccontainerchecksum 5db8176fc1c40091db428b73bbb8bb3eb2e7b14b8c8a681e7d5dcf04d990873fbe456d389e468456650faae3939e38d1217057485d60750cb29aef89e8e15b69 +docfiles size=181 + RELOC/doc/latex/multiaudience/Makefile + RELOC/doc/latex/multiaudience/README details="Readme" + RELOC/doc/latex/multiaudience/multiaudience.pdf details="Package documentation" + RELOC/doc/latex/multiaudience/sample-admins.pdf + RELOC/doc/latex/multiaudience/sample-devs.pdf + RELOC/doc/latex/multiaudience/sample-execs.pdf + RELOC/doc/latex/multiaudience/sample.tex + RELOC/doc/latex/multiaudience/verbatim.tex +srccontainersize 5124 +srccontainerchecksum acb69d29f8f12a205b4560700330d0a94593595056784275a79531351c674ecb560cb453956a5eb088f09a666ba4c72a2bc64a79b954d13263559093d06d33a7 +srcfiles size=5 + RELOC/source/latex/multiaudience/multiaudience.dtx + RELOC/source/latex/multiaudience/multiaudience.ins +runfiles size=1 + RELOC/tex/latex/multiaudience/multiaudience.sty +catalogue-ctan /macros/latex/contrib/multiaudience +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics cond-comp +catalogue-version 1.03 + +name multibbl +category Package +revision 15878 +shortdesc Multiple bibliographies +relocated 1 +longdesc The package multibbl redefines the standard bibliographic +longdesc commands so that one can generate multiple reference sections. +longdesc Each section has it own auxiliary file (for use with BibTeX) +longdesc and title. +containersize 1936 +containerchecksum 419f7bcf8f2226cf8c60119e30da278bf6138f4e1903dc322da33ca2b22120e50b205dc0bb01b46cab0c93fdaacc37b823a812121a731fdea4cf03354d1b0690 +doccontainersize 77252 +doccontainerchecksum 68a3f99cbde27d15fa8b56730f4e9f7587bcecfc9a6ebe19a7811a29278cbe21f214465942bd4ee6cc28833b9614dfef14714dceddcdb041d5676ee7ead810bb +docfiles size=28 + RELOC/doc/latex/multibbl/multibbl.pdf details="Package documentation" +srccontainersize 3840 +srccontainerchecksum be2bb39e0267d6a008dd3dab1d1fbfc22e38017656f6fd717e35d3252def115d451a1eddadc6fbb3787bee901b43b09327ebb0f676ee452db71196cd2299778c +srcfiles size=3 + RELOC/source/latex/multibbl/multibbl.dtx + RELOC/source/latex/multibbl/multibbl.ins +runfiles size=1 + RELOC/tex/latex/multibbl/multibbl.sty +catalogue-ctan /macros/latex/contrib/multibbl +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics bibtex-multi bibtex-supp +catalogue-version 1.1 + +name multibib +category Package +revision 15878 +shortdesc Multiple bibliographies within one document +relocated 1 +longdesc The package the creation of references to multiple +longdesc bibliographies within one document. It thus provides +longdesc complementary functionality to packages like bibunits and +longdesc chapterbib, which allow the creation of one bibliography for +longdesc multiple, but different parts of the document. Multibib is +longdesc compatible with inlinebib, natbib, and koma-script. +containersize 16576 +containerchecksum 82cd48cf9097b36664d4dcfb5d73dbd6e961c2f0a8bf7816d1bc59a33cb6d2c65e0f63a9d1d596dc9faa4339536746089e34bd1b510e1b2c0ea272df5840e396 +doccontainersize 188844 +doccontainerchecksum 1d4536094c09755fc91b2657cc0eb0b0b2fd8d1c5ca37bf2f046b62a4b0be6f83a93debac8be3c5481651dc75cac2066962556370bd84face6b03aaba24bbcc6 +docfiles size=55 + RELOC/doc/latex/multibib/README details="Package Readme" + RELOC/doc/latex/multibib/bibtexall + RELOC/doc/latex/multibib/multibib.pdf details="Package documentation" +srccontainersize 12980 +srccontainerchecksum c7777e3c32833538893ae463d8396f894b390f642fa697b8ba237cd7183e2bc7cb86a9773530962f41372e4ec016eb96c7a060dc63081b2faf29248a65f14a1f +srcfiles size=13 + RELOC/source/latex/multibib/multibib.dtx + RELOC/source/latex/multibib/multibib.ins +runfiles size=20 + RELOC/bibtex/bst/multibib/mbplain.bst + RELOC/bibtex/bst/multibib/mbunsrtdin.bst + RELOC/makeindex/multibib/mbgglo.ist + RELOC/makeindex/multibib/mbgind.ist + RELOC/tex/latex/multibib/multibib.sty +catalogue-ctan /macros/latex/contrib/multibib +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics bibtex-multi bibtex-supp +catalogue-version 1.4 + +name multibibliography +category Package +revision 30939 +shortdesc Multiple versions of a bibliography, with different sort orders +longdesc Conventional standards for bibliography styles impose a forced +longdesc choice between index and name/year citations, and corresponding +longdesc references. The package avoids this choice, by providing +longdesc alphabetic, sequenced, and even chronological orderings of +longdesc references. Inline citations, that integrate these +longdesc heterogeneous styles, are also supported (and work with other +longdesc bibliography packages). +depend multibibliography.ARCH +containersize 8300 +containerchecksum faa2e16b8bdb9309e2f16cdb2c717b59c8ecd5d73e4819d72ee3226a80fe0c0ff6b4d686d0f1d009601e0d6dea140cd4812c2f4cb94f37b5bd9cc1bd19137965 +doccontainersize 456972 +doccontainerchecksum 3e13c8c60ab8091a363b63a63259e53e3c5076feb224a6f426e55a351141f007ea8bf7526b0f80684c83e4e97b43f5f05217e254f978e8b69665c736efbe8512 +docfiles size=131 + texmf-dist/doc/latex/multibibliography/Makefile + texmf-dist/doc/latex/multibibliography/README details="Readme" + texmf-dist/doc/latex/multibibliography/figure.pdf + texmf-dist/doc/latex/multibibliography/multibibliography.bib + texmf-dist/doc/latex/multibibliography/multibibliography.pdf details="Package documentation" + texmf-dist/doc/latex/multibibliography/tug-paper.pdf details="TUGboat paper" + texmf-dist/doc/latex/multibibliography/tug-paper.tex + texmf-dist/doc/latex/multibibliography/type.bib +srccontainersize 4724 +srccontainerchecksum 544b3778bd0a51e99e89e18e606d37551576d655a01b46523786d6f910cf84b3886a8b29c72b9e0c25b3ae629045470b24e2741d7894f867437ca069cd692cb4 +srcfiles size=5 + texmf-dist/source/latex/multibibliography/multibibliography.dtx + texmf-dist/source/latex/multibibliography/multibibliography.ins +runfiles size=10 + texmf-dist/bibtex/bst/multibibliography/chronological.bst + texmf-dist/scripts/multibibliography/multibibliography.pl + texmf-dist/tex/latex/multibibliography/multibibliography.sty +catalogue-also nmbib +catalogue-ctan /macros/latex/contrib/multibibliography +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics bibtex-supp +catalogue-version 1.03 + +name multibibliography.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of multibibliography +containersize 352 +containerchecksum cda45045120aa92962bb9b863e3a2db323df5c6ee7aeae55eef58c2339d93164805fda91fea9190bab7e2a5cdcb223a5955dd253562851ecaf72cfcde6de54ae +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/multibibliography + +name multibibliography.amd64-freebsd +category Package +revision 30534 +shortdesc amd64-freebsd files of multibibliography +containersize 348 +containerchecksum 9888d3f0b944fcd9e5a764b61175d314b40ca5e4e8134ac6cda6fccbc029834c49bbfea03df6aa34781e95b506c5214e96fd2cda2d008adad379119d08d84100 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/multibibliography + +name multibibliography.amd64-netbsd +category Package +revision 30534 +shortdesc amd64-netbsd files of multibibliography +containersize 348 +containerchecksum 57d4b4d95be88d317cf0f9a6ea434755d7fc3bd6ef765abeadcbb6a1b9a8a292b2e51ecae20523e3ea48440617ee453e4b94fb7525d3b20ee124cde0012f5078 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/multibibliography + +name multibibliography.armhf-linux +category Package +revision 30534 +shortdesc armhf-linux files of multibibliography +containersize 348 +containerchecksum ba4950ecc9262c46a2970f88a67fcc270c21e2498f4c52ca7438930c232ed760f95ea8269b84f4075d868395df3427a1d43ecb91df1d3de120d340d62004fd03 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/multibibliography + +name multibibliography.i386-cygwin +category Package +revision 30526 +shortdesc i386-cygwin files of multibibliography +containersize 348 +containerchecksum 263e13412f85dab071e561e000f72595604674607159bb282bbedb0bb121a1dd469cd80064da7920f011c3d2d9b0b72cb567c796158863fd697570c834b33a5c +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/multibibliography + +name multibibliography.i386-freebsd +category Package +revision 30534 +shortdesc i386-freebsd files of multibibliography +containersize 352 +containerchecksum 6adbf081a55fb8198d8c1a1268de4ed5378b5a857d2a4b6cc02176ed55ba9dabf595a7be566a8e4faeb45a4deabe0607666d27f534c35d42eb52284071d87b1a +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/multibibliography + +name multibibliography.i386-linux +category Package +revision 30534 +shortdesc i386-linux files of multibibliography +containersize 352 +containerchecksum 53c1797ff1451f1e8b9984218d00b142ba266432c93ce23a73ff532701a53618cabcdd4ba432049a92d29b63f3b6f8c8e6a0c9b64d91c16ce678fa3bf9c31ee5 +binfiles arch=i386-linux size=1 + bin/i386-linux/multibibliography + +name multibibliography.i386-netbsd +category Package +revision 30534 +shortdesc i386-netbsd files of multibibliography +containersize 348 +containerchecksum 8852ae078678ed13e0ec7bb456590c2e5e74dae4b464a9b3fae73b932818cd9eaa432115e6ed2bf3ca160ee0d707fc1182cb78118d0665959ef1f67010fd6206 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/multibibliography + +name multibibliography.i386-solaris +category Package +revision 30534 +shortdesc i386-solaris files of multibibliography +containersize 352 +containerchecksum 8c0a5409a7ef4b1505c482fe13953212c498dcbbdcf6ed79649329069aa134425df837ee2819512fb60c8a8636776697351ddde1c2a1c8e3221899a77f42a783 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/multibibliography + +name multibibliography.win32 +category Package +revision 30534 +shortdesc win32 files of multibibliography +containersize 696 +containerchecksum 5d76e788b9585b7bf6c59748486bed4d5bf8fad2a8772eb0adcf9a3f31024f766d824b6aca12e5c779ce21c9b519a03211083680faf2610a77bed12907182405 +binfiles arch=win32 size=1 + bin/win32/multibibliography.exe + +name multibibliography.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of multibibliography +containersize 348 +containerchecksum 1f7b0ef985490c14ded4282a6361125c43e49438671e3242284c3aa7d540217a1a5acbc448a59174f9b49d87bb3971e2c3837fd5634f78d8aa3dc1893d6467ee +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/multibibliography + +name multibibliography.x86_64-darwin +category Package +revision 30534 +shortdesc x86_64-darwin files of multibibliography +containersize 348 +containerchecksum 42f8529a83c3dff17b07f2baac6c25b683ea30ba25831c9cf354204eb74cf29652fc2f12c6aab001e1c3db1ac228d8290da7d50326a642751907f6de2c229e81 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/multibibliography + +name multibibliography.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of multibibliography +containersize 356 +containerchecksum 7560dff7b3b516ed0cdede0a39586cf358b3f182698d55cb7fa0a35ebe833acfdfc735955c85abbcefc66417b63bb85d6145d60af699a60267234c1eb0e9e9b9 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/multibibliography + +name multibibliography.x86_64-linux +category Package +revision 30534 +shortdesc x86_64-linux files of multibibliography +containersize 348 +containerchecksum 91b22db3304a5ab30e155490cde40907971e986d6c427b88b2043373e35e5bc3a453f026c4504bd5da2cdac5ce583be43590a9c7c0968a9501e20f7b78e1eef0 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/multibibliography + +name multibibliography.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of multibibliography +containersize 356 +containerchecksum 753430befaec3e43500466f3cafbe780b865aeb6924cb7e9d2e5a69ca8ad8e1302f191f02a8bbbd36102adc005373275b5502ce9b72d8a047d80f17a56ee6d58 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/multibibliography + +name multibibliography.x86_64-solaris +category Package +revision 30534 +shortdesc x86_64-solaris files of multibibliography +containersize 348 +containerchecksum 9dc4c387adb446df5cdfc3901afcba9c13a9c233789b123d292c2788dab8a27ef37b72c0bc38320a7f6778ae6256387e718fe4d63d4dd4a4b3714737e0404d12 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/multibibliography + +name multicap +category Package +revision 15878 +shortdesc Format captions inside multicols +relocated 1 +longdesc This is a package for formatting captions of column figures and +longdesc column tabular material, which cannot be standard floats in a +longdesc multicols environment. The package also provides a convenient +longdesc way to customise your captions, whether they be in multicols or +longdesc not. +containersize 1708 +containerchecksum 5e4a4eebd7560d4aebdaf7035b9bc14116a32cb2e043aa93afb9f95eaf271fdd75fe7d2b6296d36327d7aa5b14b52046b0c941ae949584ad27a2b89ebe54b6de +doccontainersize 91288 +doccontainerchecksum 644f46fa6431f0f7bbbdfed8a346887d107c8ff7c8d5b2c826b16994faa48d83ca59cd139c16fa144122e0425e6a2c592762b86568f17fb914dd943cdb7eb808 +docfiles size=28 + RELOC/doc/latex/multicap/multicap.pdf details="Package documentation" +srccontainersize 6924 +srccontainerchecksum 95df0571a8741db7d0b4d3ab0fd0d1469c531a00e3cf524977fe2cec57c3cb9ce9cf3c3136b42a8d0fb8f9dea2e8f4cc6f07fa48490167094e04c0e688d45527 +srcfiles size=6 + RELOC/source/latex/multicap/multicap.dtx +runfiles size=1 + RELOC/tex/latex/multicap/multicap.sty +catalogue-also caption +catalogue-ctan /macros/latex/contrib/multicap +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics caption + +name multicolrule +category Package +revision 49579 +shortdesc Decorative rules between columns +relocated 1 +longdesc This package lets you customize the appearance of the vertical +longdesc rule that appears between columns of multicolumn text. It is +longdesc primarily intended to work with the multicol package, hence its +longdesc name, but also supports the twocolumn option and \twocolumn +longdesc macro provided by the standard classes (and related classes +longdesc such as the KOMA-Script equivalents). The package depends on +longdesc expl3 and xparse. +containersize 3848 +containerchecksum 0537c6387267aec6c1e867f2368a6de463521f5174fd9cd05a879e105ce11abeeaab7605d481dfa8033329e4139f2b63e53af2c7c28fb0a009ea7f44a6085446 +doccontainersize 598808 +doccontainerchecksum 93236dd20077c60afe44b70d913fe761b3be10ea1681d052613fd7bfc5931910b862948b9ba93883a4cd197d996041ce18a4b05730e4eef819bda1cdc4469c44 +docfiles size=150 + RELOC/doc/latex/multicolrule/README.md details="Readme" + RELOC/doc/latex/multicolrule/mcrule-examples.pdf + RELOC/doc/latex/multicolrule/mcrule-examples.tex + RELOC/doc/latex/multicolrule/multicolrule.pdf details="Package documentation" +srccontainersize 17532 +srccontainerchecksum 79354e1958e4dc5836991378c5504d7308349249a6f8663ef8cb099ca00d59debdab948f6260f731c5f0a2a8fe1a5882d76729f703775776a81da308d46ee149 +srcfiles size=18 + RELOC/source/latex/multicolrule/multicolrule.dtx + RELOC/source/latex/multicolrule/multicolrule.ins +runfiles size=4 + RELOC/tex/latex/multicolrule/multicolrule.sty +catalogue-contact-bugs https://github.com/polysyllabic/multicolrule/issues +catalogue-contact-repository https://github.com/polysyllabic/multicolrule +catalogue-ctan /macros/latex/contrib/multicolrule +catalogue-date 2019-01-01 23:43:18 +0100 +catalogue-license lppl1.3c +catalogue-topics decoration rule line-patt line-weight expl3 +catalogue-version 1.2 + +name multidef +category Package +revision 40637 +shortdesc Quickly define several similar macros +relocated 1 +longdesc Multidef provides a simple way of defining several macros +longdesc having similar definitions. +containersize 2544 +containerchecksum 2d15975c8a191cc08925cc8cd74b982af909a7488a68e4b6f5eb4c2ba0dc94dbcb40c4347c5c4774fda24f98efff52131f6a243e1e6bdcb4dde7e683e408d6a9 +doccontainersize 196512 +doccontainerchecksum 50b26f8fcfde20dd04f3e3701d611631c8914e9488a3f87d25e0c60803090133f9abe889b449c67a09ccd5053c67c4a3ea699d52d44480051391edaaa7ff9ef7 +docfiles size=50 + RELOC/doc/latex/multidef/README details="Readme" + RELOC/doc/latex/multidef/multidef-test.tex + RELOC/doc/latex/multidef/multidef.pdf details="Package documentation" +srccontainersize 4944 +srccontainerchecksum 4f506eef5dc2bbb8c740d3b25c00e21a56ccb02410adc85788f2cf2ec7da81531ec5843d0a29931ab1aea0b4e8280eeb235b6a97505fb777068d902199cfd084 +srcfiles size=5 + RELOC/source/latex/multidef/multidef.dtx + RELOC/source/latex/multidef/multidef.ins +runfiles size=2 + RELOC/tex/latex/multidef/multidef.sty +catalogue-ctan /macros/latex/contrib/multidef +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 1.10 + +name multido +category Package +revision 18302 +shortdesc A loop facility for Generic TeX +relocated 1 +longdesc The package provides the \multido command, which was originally +longdesc designed for use with PSTricks. Fixed-point arithmetic is used +longdesc when working on the loop variable, so that the package is +longdesc equally applicable in graphics applications like PSTricks as it +longdesc is with the more common integer loops. +containersize 3684 +containerchecksum 5c861bddcb8b2bdb654dc4438621834a68b2bca102799317c9a220f9bc9bc4c9d70775375302a85736f8706bb7fbfc1a4c24fae2f850237e8f54ad521b1cef83 +doccontainersize 106732 +doccontainerchecksum 8cef36438fbe57c54f625b178331f7a6ca19854abcddb475283fc0cb4a362764c443de05989245e962dba9e2e4f17734533502fbd4b2ef4fc8e8c36b96bc68ab +docfiles size=36 + RELOC/doc/generic/multido/Changes + RELOC/doc/generic/multido/multido-doc.pdf details="Package documentation" + RELOC/doc/generic/multido/multido-doc.tex + RELOC/doc/generic/multido/multido.pdf +srccontainersize 976 +srccontainerchecksum 3f3f6f5813ab1da542ebc9c4837da72339804866875bf225292d8a36ebf54b33f12d3e84de9d0b5027d3e8889e10180649a19e25c7ec6bb532296e9e204e25e5 +srcfiles size=1 + RELOC/source/generic/multido/Makefile +runfiles size=4 + RELOC/tex/generic/multido/multido.tex + RELOC/tex/latex/multido/multido.sty +catalogue-ctan /macros/generic/multido +catalogue-date 2018-09-15 12:25:56 +0200 +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1.42 + +name multienv +category Package +revision 26544 +shortdesc Multiple environments using a "key=value" syntax +relocated 1 +longdesc The package provides a multienv environment which permits easy +longdesc addition of multiple environments using a key=value syntax. +longdesc Macros to define environments using this syntax are also +longdesc provided. +containersize 1852 +containerchecksum b387532d90db9f46cb18518b27eb8853dd52366434c69693fd08d36942564c43a45605694a55783fe244690f4cb64b94f3082235e465336cb7536543b00b6f20 +doccontainersize 208908 +doccontainerchecksum 1ad0cbfb0c6029b77f2dfd71100ac43cf3c7512df88837c6da5c26fa9a520f4dacd970e331083a56ddf3d9cd19fd9934e863e4bea9e62c7a0b1cdd1ac6eb2a15 +docfiles size=52 + RELOC/doc/latex/multienv/README details="Readme" + RELOC/doc/latex/multienv/multienv.pdf details="Package documentation" +srccontainersize 4584 +srccontainerchecksum 5d22dae7cf44eef6e63cbda2e9421903f56a939c0393d3b91e9d009b29cf0b748215b455dd9143cd7e13b2ad81c08d7dbe447268d7d01ba495bbb307cfc8999d +srcfiles size=6 + RELOC/source/latex/multienv/multienv.dtx + RELOC/source/latex/multienv/multienv.ins +runfiles size=2 + RELOC/tex/latex/multienv/multienv.sty +catalogue-ctan /macros/latex/contrib/multienv +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 1.0 + +name multiexpand +category Package +revision 45943 +shortdesc Variations on the primitive command \expandafter +relocated 1 +longdesc The package provides two user commands; one that performs +longdesc multiple expansions, and one that does multiple \expandafter +longdesc operations, in a single macro call. The author suggests that +longdesc the same effect could be provided by use of the command variant +longdesc mechanisms of LaTeX 3 (see, for example, the interface +longdesc documentation of the experimental LaTeX 3 kernel). +containersize 1572 +containerchecksum 63f512ca5b9649c86a6936cc2407737e41afd6c6a3b4810fe81155a5b4127aecc538303e26b91f53decee900fba7946e90a46a545b3c9caafb3e0863940e0009 +doccontainersize 378352 +doccontainerchecksum 6b8a727aae2d314877df551ca5804e84be0bc530b4f09d8bfe6a9c1a4c1eb98647257beeb1813a183f0aa5422b0041443e817ce11b6db70e4129e3edc664e788 +docfiles size=97 + RELOC/doc/generic/multiexpand/README.md details="Readme" + RELOC/doc/generic/multiexpand/multiexpand.pdf details="Package documentation" + RELOC/doc/generic/multiexpand/multiexpand001.lvt + RELOC/doc/generic/multiexpand/multiexpand001.tlg + RELOC/doc/generic/multiexpand/multiexpand002.lvt + RELOC/doc/generic/multiexpand/multiexpand002.tlg +srccontainersize 5932 +srccontainerchecksum 197ad74e02212405fee0c79ea03021172e7ac5a99222e0c0d300da6a141bc694a2957c544bd357fb67fcac24acbbb4059041bd37f607b29f5f763b59b70613f9 +srcfiles size=6 + RELOC/source/generic/multiexpand/multiexpand.dtx + RELOC/source/generic/multiexpand/multiexpand.ins +runfiles size=1 + RELOC/tex/generic/multiexpand/multiexpand.sty +catalogue-contact-bugs https://github.com/blefloch/latex-multiexpand/issues +catalogue-contact-repository https://github.com/blefloch/latex-multiexpand +catalogue-ctan /macros/generic/multiexpand +catalogue-date 2017-11-29 21:17:19 +0100 +catalogue-license lppl1.3c +catalogue-topics macro-supp +catalogue-version 1.5 + +name multilang +category Package +revision 49065 +shortdesc A LaTeX package for maintaining multiple translations of a document +relocated 1 +longdesc Maintaining a LaTeX document with translations for multiple +longdesc languages can be cumbersome and error-prone. This package +longdesc provides a set of macros for defining macros and environments +longdesc as wrappers around existing macros and environments. These +longdesc wrappers allow one to clearly specify multiple translations for +longdesc the arguments to the wrapped macros and environments while only +longdesc the translation of the document's language is actually shown. +longdesc Choosing a translation then is as simple as choosing the +longdesc document's language via babel or polyglossia. +containersize 3436 +containerchecksum 57f9829b100068a84feb8a09a94066b93ec5fe70daf831ea99604089a4fc2f67af76f79505a2eab6dbc8f2b025feed6d908a1f24630e27e0f7606c4a3ebb71ca +doccontainersize 414176 +doccontainerchecksum e611f2195fc4f7083d6343eb3554a2e786fd6522383456544e45346481cd57d54b0899cdc6ffd9edc4b75567b1e092ecc597bff660d849e0ce2b3e2d1bd55507 +docfiles size=103 + RELOC/doc/latex/multilang/README.md details="Readme" + RELOC/doc/latex/multilang/multilang.pdf details="Package documentation" +srccontainersize 17232 +srccontainerchecksum 1e52e9c740d0eae4f89eb4a65e1d12b3d5f159cd6c938f729bdd019ccb8bcf98300a544fa7131fe214cde9b7b58f9b64a771a49513f45943c681893fbfc78b6e +srcfiles size=18 + RELOC/source/latex/multilang/multilang.dtx + RELOC/source/latex/multilang/multilang.ins +runfiles size=5 + RELOC/tex/latex/multilang/multilang-sect.sty + RELOC/tex/latex/multilang/multilang-tags.sty + RELOC/tex/latex/multilang/multilang.sty +catalogue-contact-bugs https://github.com/Ri-Ga/multilang/issues +catalogue-contact-repository https://github.com/Ri-Ga/multilang +catalogue-ctan /macros/latex/contrib/multilang +catalogue-date 2018-11-03 14:35:33 +0100 +catalogue-license lppl1.2 +catalogue-topics multilingual +catalogue-version 0.9b + +name multiobjective +category Package +revision 15878 +shortdesc Symbols for multiobjective optimisation etc +relocated 1 +longdesc The package provides a series of operators commonly used in +longdesc papers related to multiobjective optimisation, multiobjective +longdesc evolutionary algorithms, multicriteria decision making and +longdesc similar fields. +containersize 1436 +containerchecksum 80b0f340f19dff329cd9f0fc32cbb9a8cf690243aa925d6687b9da345984f9eba9c0db7b62fedd2a54f077d841b9cbe91e47c98140f1cfeebdb16fc05408898d +doccontainersize 95288 +doccontainerchecksum 3a7c68054a85bbad36b6516c52ea74c35ce11c5ffd6f3d1f235ecc2ea55209343a4ff609857877094fb7f8861e8b7c54c8c979d06cc3b3583fb64e997372ae9c +docfiles size=29 + RELOC/doc/latex/multiobjective/README details="Readme" + RELOC/doc/latex/multiobjective/multiobjective.pdf details="Package documentation" +srccontainersize 2968 +srccontainerchecksum 99b9d17438d9f3f8a6ac40d0e705371d255af957fa5dc78dd6d98c89b515cb5af7377b5ac11558c84c7908b7efc7faadc9be83b86c2a255ba8c4033a69be3f4c +srcfiles size=3 + RELOC/source/latex/multiobjective/multiobjective.dtx + RELOC/source/latex/multiobjective/multiobjective.ins +runfiles size=1 + RELOC/tex/latex/multiobjective/multiobjective.sty +catalogue-ctan /macros/latex/contrib/multiobjective +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics maths-symbol +catalogue-version 1.0 + +name multirow +category Package +revision 49572 +shortdesc Create tabular cells spanning multiple rows +relocated 1 +longdesc The package has a lot of flexibility, including an option for +longdesc specifying an entry at the "natural" width of its text. The +longdesc package is distributed with the bigdelim and bigstrut packages, +longdesc which can be used to advantage with \multirow cells. +containersize 2616 +containerchecksum 06d152233b256a58811395ca770414fdea113e9771e594c4cbffc3097be5c30e75ae1eea881b6d12f7570159a7143db223989147f02f26876a0a646b145532c8 +doccontainersize 612424 +doccontainerchecksum c72f6a48c2af805de9614d38bc9d8962f52c1334e944b8fd72772c60377565756ea8be72415a79440b5b6a9431880354297f7103804a15e03d6af2262d1eb11a +docfiles size=151 + RELOC/doc/latex/multirow/README details="Readme" + RELOC/doc/latex/multirow/multirow.pdf details="Package documentation" +srccontainersize 18496 +srccontainerchecksum 048ecf8499a7a54a6217c7b45b642a65244d020dfdbea1734ada3ce657aac2e14939ba2b644a4a906d8ba2ff4274b4e3694c2c15998b2a09a9440dd7d698852b +srcfiles size=21 + RELOC/source/latex/multirow/multirow.dtx + RELOC/source/latex/multirow/multirow.ins +runfiles size=4 + RELOC/tex/latex/multirow/bigdelim.sty + RELOC/tex/latex/multirow/bigstrut.sty + RELOC/tex/latex/multirow/multirow.sty +catalogue-also bigstrut bigdelim +catalogue-ctan /macros/latex/contrib/multirow +catalogue-date 2019-01-01 14:36:00 +0100 +catalogue-license lppl1.3 +catalogue-topics table +catalogue-version 2.4 + +name munich +category Package +revision 15878 +shortdesc An alternative authordate bibliography style +relocated 1 +longdesc The Munich BibTeX style is produced with custom-bib, as a +longdesc German (and, more generally, Continental European) alternative +longdesc to such author-date styles as harvard and oxford. +containersize 6916 +containerchecksum d8d2de2245f24c6993fcd178e2a21891e66b5b99039e8969639d2a9cba15abc6c3c50374db61c8082695a969a69ddce902ff8b5fb8104fe66ba1384ef99b93f2 +doccontainersize 276956 +doccontainerchecksum ed2dc99df090a012f1b1b922659eebe4c2d8523127e17341b9c4b66413acfc89f8b64ed639c8fd40ace0f4fddc8662f42630411c67026311a26fed436a363b78 +docfiles size=75 + RELOC/doc/latex/munich/README details="Readme" + RELOC/doc/latex/munich/documenation_munich_Bibtex_style.pdf details="Package documentation" + RELOC/doc/latex/munich/documenation_munich_Bibtex_style.tex + RELOC/doc/latex/munich/example_DB.bib + RELOC/doc/latex/munich/example_munich_Bibtex_style.pdf details="Usage example" + RELOC/doc/latex/munich/example_munich_Bibtex_style.tex +runfiles size=8 + RELOC/bibtex/bst/munich/munich.bst +catalogue-ctan /biblio/bibtex/contrib/munich +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics bibtex-sty + +name musicography +category Package +revision 47838 +shortdesc Accessing symbols for music writing with pdfLaTeX +relocated 1 +longdesc This package makes available the most commonly used symbols in +longdesc writing about music in a way that can be used with pdfLaTeX and +longdesc looks consistent and attractive. It includes accidentals, +longdesc meters, and notes of different rhythmic values. The package +longdesc builds on the approach used in the harmony package, where the +longdesc symbols are taken from the MusiXTeX fonts. But it provides a +longdesc larger range of symbols and a more flexible, user-friendly +longdesc interface written using xparse. +containersize 2748 +containerchecksum 72c7f814945343d20c30edb66d22b6cdf080daa670a23c8b503f0895682923c12712992bac5d61d170563a67fc0e4f71a3d3a2c1290d052654dbd544196bd935 +doccontainersize 265968 +doccontainerchecksum d115c20f9da0c8fecdfc037d161ec4db6149f44e483f007ee4a238795e9fa71cd23c9250a00ae3ce0bea9837906c2329feee91b5472018b063ca96ca26bc5f68 +docfiles size=68 + RELOC/doc/latex/musicography/README.md details="Readme" + RELOC/doc/latex/musicography/musicography.pdf details="Package documentation" + RELOC/doc/latex/musicography/musicography.tex +runfiles size=2 + RELOC/tex/latex/musicography/musicography.sty +catalogue-contact-repository https://bitbucket.org/andrewacashner/musicography +catalogue-ctan /macros/latex/contrib/musicography +catalogue-date 2018-05-24 21:54:18 +0200 +catalogue-license lppl1.3 +catalogue-topics music font-supp-symbol + +name musikui +category Package +revision 47472 +shortdesc Easy creation of "arithmetical restoration" puzzles +relocated 1 +longdesc This package permits to easily typeset arithmetical +longdesc restorations using LaTeX. This package requires the graphicx +longdesc package. +containersize 2392 +containerchecksum 602132bc51f1ed20f045bf0c822f201f7bbf3386f9181599894e66cb3c59f4ed15364013a5e30bfc59b22ab3fe4931872b779d1e7f34b8dbcd1eabe058b1f5e3 +doccontainersize 430404 +doccontainerchecksum 29cc8526543698f218e8c9c20b424fb2b05d3ee0a67c70a2afadd33dc49f0030ceb440b349898b8bd66a53a5682aa8289d081e4502fa5ccdfe481b4e2430de03 +docfiles size=209 + RELOC/doc/latex/musikui/README.txt details="Readme" + RELOC/doc/latex/musikui/kake.pdf + RELOC/doc/latex/musikui/musikui.pdf details="Package documentation" + RELOC/doc/latex/musikui/musikui.tex + RELOC/doc/latex/musikui/wari.pdf +runfiles size=2 + RELOC/tex/latex/musikui/musikui.sty +catalogue-contact-repository https://github.com/puripuri2100/musikui.sty +catalogue-ctan /macros/latex/contrib/musikui +catalogue-date 2018-05-03 05:20:47 +0200 +catalogue-license lppl +catalogue-topics puzzle maths +catalogue-version 1 + +name musixguit +category Package +revision 21649 +shortdesc Easy notation for guitar music, in MusixTeX +relocated 1 +longdesc The package provides commands for typesetting notes for guitar, +longdesc especially for simplifying guitar notation with MusixTeX. +containersize 2796 +containerchecksum 6262e1b447f517680ddfd9e5e076ea384dfa7fc8d219e7a2613a80ba66a0f0435d9dc31502f6abbfc150fa1e2de001afbdec25dd5778e3ffe559ea389d57208a +doccontainersize 159672 +doccontainerchecksum 8a6c9a42383d6b35c1300b958a7629306a6883bec1bd68751165eb3514f8f069c9995247142bad459e06fa42378a9ddd23093cb749bb2ccd58743312f83425dd +docfiles size=57 + RELOC/doc/latex/musixguit/README details="Readme" + RELOC/doc/latex/musixguit/musixguit_de.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/musixguit/musixguit_de.tex +runfiles size=3 + RELOC/tex/latex/musixguit/musixguit.sty +catalogue-ctan /macros/latex/contrib/musixguit +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics music +catalogue-version 1.2.2 + +name musixtex +category Package +revision 48353 +shortdesc Sophisticated music typesetting +longdesc MusiXTeX provides a set of macros, based on the earlier +longdesc MusicTeX, for typesetting music with TeX. To produce optimal +longdesc spacing, MusiXTeX is a three-pass system: etex, musixflx, and +longdesc etex again. (Musixflx is a lua script that is provided in the +longdesc bundle.) The three-pass process, optionally followed by +longdesc processing for printed output, is automated by the musixtex +longdesc wrapper script. The package uses its own specialised fonts, +longdesc which must be available on the system for musixtex to run. This +longdesc version of MusiXTeX builds upon work by Andreas Egler, whose +longdesc own version is no longer being developed. The MusiXTeX macros +longdesc are universally acknowledged to be challenging to use directly: +longdesc the pmx preprocessor compiles a simpler input language to +longdesc MusiXTeX macros.. +depend musixtex.ARCH +containersize 100880 +containerchecksum 2793fe7e110e97df26dc0a681b24cd738eadbc6bf322b438141b66718b561af3d1c7cb029e465827151be5242d620a3182aa304467f3e8e7c58f457310881c0f +doccontainersize 2032188 +doccontainerchecksum 29e7bbfda630825726d716ec45e4112b7d35e180a5d9294a5d1f7a1c8a8c544a8f9020021d17a1db74068ec23ed0c744593f74426fe465182d139d3e9e70e829 +docfiles size=1387 + texmf-dist/doc/generic/musixtex/ChangeLog-114.txt + texmf-dist/doc/generic/musixtex/ChangeLog-115.txt + texmf-dist/doc/generic/musixtex/ChangeLog-116.txt + texmf-dist/doc/generic/musixtex/ChangeLog-117.txt + texmf-dist/doc/generic/musixtex/ChangeLog-118.txt + texmf-dist/doc/generic/musixtex/ChangeLog-119.txt + texmf-dist/doc/generic/musixtex/ChangeLog-120.txt + texmf-dist/doc/generic/musixtex/ChangeLog-121.txt + texmf-dist/doc/generic/musixtex/ChangeLog-122.txt + texmf-dist/doc/generic/musixtex/ChangeLog-123.txt + texmf-dist/doc/generic/musixtex/ChangeLog-124.txt + texmf-dist/doc/generic/musixtex/ChangeLog-125.txt + texmf-dist/doc/generic/musixtex/ChangeLog-126.txt + texmf-dist/doc/generic/musixtex/ChangeLog-127.txt + texmf-dist/doc/generic/musixtex/ChangeLog-128.txt + texmf-dist/doc/generic/musixtex/ChangeLog-129.txt + texmf-dist/doc/generic/musixtex/ChangeLog-musixdoc.txt + texmf-dist/doc/generic/musixtex/README details="Readme" + texmf-dist/doc/generic/musixtex/examples/adagio.tex + texmf-dist/doc/generic/musixtex/examples/albinoni.tex + texmf-dist/doc/generic/musixtex/examples/angescam.tex + texmf-dist/doc/generic/musixtex/examples/angescao.tex + texmf-dist/doc/generic/musixtex/examples/angescax.tex + texmf-dist/doc/generic/musixtex/examples/avemaria.tex + texmf-dist/doc/generic/musixtex/examples/avemarid.tex + texmf-dist/doc/generic/musixtex/examples/avemaril.tex + texmf-dist/doc/generic/musixtex/examples/avemario.tex + texmf-dist/doc/generic/musixtex/examples/avemarix.tex + texmf-dist/doc/generic/musixtex/examples/avemaroo.tex + texmf-dist/doc/generic/musixtex/examples/aveverch.tex + texmf-dist/doc/generic/musixtex/examples/aveverdd.tex + texmf-dist/doc/generic/musixtex/examples/aveveruc.tex + texmf-dist/doc/generic/musixtex/examples/aveverud.tex + texmf-dist/doc/generic/musixtex/examples/aveverum.tex + texmf-dist/doc/generic/musixtex/examples/changecontext.tex + texmf-dist/doc/generic/musixtex/examples/chanson.tex + texmf-dist/doc/generic/musixtex/examples/dissonan.tex + texmf-dist/doc/generic/musixtex/examples/eightbitchar.tex + texmf-dist/doc/generic/musixtex/examples/fantaisc.tex + texmf-dist/doc/generic/musixtex/examples/fantaisd.tex + texmf-dist/doc/generic/musixtex/examples/fantaisi.tex + texmf-dist/doc/generic/musixtex/examples/fantcmol.tex + texmf-dist/doc/generic/musixtex/examples/fantfuga.tex + texmf-dist/doc/generic/musixtex/examples/fugcmoll.tex + texmf-dist/doc/generic/musixtex/examples/fugue.tex + texmf-dist/doc/generic/musixtex/examples/gloriab.tex + texmf-dist/doc/generic/musixtex/examples/glorias.tex + texmf-dist/doc/generic/musixtex/examples/gloriax.tex + texmf-dist/doc/generic/musixtex/examples/gymnoman.tex + texmf-dist/doc/generic/musixtex/examples/ilestne.tex + texmf-dist/doc/generic/musixtex/examples/ilestnex.tex + texmf-dist/doc/generic/musixtex/examples/ilfaitda.tex + texmf-dist/doc/generic/musixtex/examples/ilfaitdx.tex + texmf-dist/doc/generic/musixtex/examples/kinder.tex + texmf-dist/doc/generic/musixtex/examples/kv315.tex + texmf-dist/doc/generic/musixtex/examples/kv315f.tex + texmf-dist/doc/generic/musixtex/examples/kv315h.tex + texmf-dist/doc/generic/musixtex/examples/kv315o.tex + texmf-dist/doc/generic/musixtex/examples/kv315org.tex + texmf-dist/doc/generic/musixtex/examples/marcello.tex + texmf-dist/doc/generic/musixtex/examples/marcon1.tex + texmf-dist/doc/generic/musixtex/examples/marcon2.tex + texmf-dist/doc/generic/musixtex/examples/marcon3.tex + texmf-dist/doc/generic/musixtex/examples/marconf.tex + texmf-dist/doc/generic/musixtex/examples/marconh.tex + texmf-dist/doc/generic/musixtex/examples/marcono.tex + texmf-dist/doc/generic/musixtex/examples/musixdbrexample.tex + texmf-dist/doc/generic/musixtex/examples/onuitbri.tex + texmf-dist/doc/generic/musixtex/examples/onuitbrr.tex + texmf-dist/doc/generic/musixtex/examples/onuitbrx.tex + texmf-dist/doc/generic/musixtex/examples/ossiaexa.tex + texmf-dist/doc/generic/musixtex/examples/ostinato.tex + texmf-dist/doc/generic/musixtex/examples/pacifiqb.tex + texmf-dist/doc/generic/musixtex/examples/pacifiqn.tex + texmf-dist/doc/generic/musixtex/examples/pacifiqt.tex + texmf-dist/doc/generic/musixtex/examples/parnasum.tex + texmf-dist/doc/generic/musixtex/examples/partitur.tex + texmf-dist/doc/generic/musixtex/examples/pedal.tex + texmf-dist/doc/generic/musixtex/examples/prelfug.tex + texmf-dist/doc/generic/musixtex/examples/prelude.tex + texmf-dist/doc/generic/musixtex/examples/pslurvgap.tex + texmf-dist/doc/generic/musixtex/examples/quod.tex + texmf-dist/doc/generic/musixtex/examples/racine.tex + texmf-dist/doc/generic/musixtex/examples/recit.tex + texmf-dist/doc/generic/musixtex/examples/recueil.tex + texmf-dist/doc/generic/musixtex/examples/rests.tex + texmf-dist/doc/generic/musixtex/examples/reves.tex + texmf-dist/doc/generic/musixtex/examples/romances.tex + texmf-dist/doc/generic/musixtex/examples/scale.tex + texmf-dist/doc/generic/musixtex/examples/souvenir.tex + texmf-dist/doc/generic/musixtex/examples/souvenix.tex + texmf-dist/doc/generic/musixtex/examples/tierce.tex + texmf-dist/doc/generic/musixtex/examples/traeumer.tex + texmf-dist/doc/generic/musixtex/examples/widor.tex + texmf-dist/doc/generic/musixtex/examples/widor_16.tex + texmf-dist/doc/generic/musixtex/examples/widor_20.tex + texmf-dist/doc/generic/musixtex/musixcrd/doc.pdf + texmf-dist/doc/generic/musixtex/musixdoc.pdf details="Package documentation" + texmf-dist/doc/generic/musixtex/musixdoc/accidentals.tex + texmf-dist/doc/generic/musixtex/musixdoc/barlines.tex + texmf-dist/doc/generic/musixtex/musixdoc/barnumbering.tex + texmf-dist/doc/generic/musixtex/musixdoc/beams.tex + texmf-dist/doc/generic/musixtex/musixdoc/changing.tex + texmf-dist/doc/generic/musixtex/musixdoc/embedding.tex + texmf-dist/doc/generic/musixtex/musixdoc/examples.tex + texmf-dist/doc/generic/musixtex/musixdoc/extensions.tex + texmf-dist/doc/generic/musixtex/musixdoc/extracting.tex + texmf-dist/doc/generic/musixtex/musixdoc/fonts.tex + texmf-dist/doc/generic/musixtex/musixdoc/frontmatter.tex + texmf-dist/doc/generic/musixtex/musixdoc/index.tex + texmf-dist/doc/generic/musixtex/musixdoc/introduction.tex + texmf-dist/doc/generic/musixtex/musixdoc/layout.tex + texmf-dist/doc/generic/musixtex/musixdoc/lyrics.tex + texmf-dist/doc/generic/musixtex/musixdoc/miscellaneous.tex + texmf-dist/doc/generic/musixtex/musixdoc/musixdoc.ltx + texmf-dist/doc/generic/musixtex/musixdoc/musixdoc.pdf details="Package documentation" + texmf-dist/doc/generic/musixtex/musixdoc/musixdoc.sty + texmf-dist/doc/generic/musixtex/musixdoc/parameters.tex + texmf-dist/doc/generic/musixtex/musixdoc/preparing.tex + texmf-dist/doc/generic/musixtex/musixdoc/repeats.tex + texmf-dist/doc/generic/musixtex/musixdoc/restsdoc.tex + texmf-dist/doc/generic/musixtex/musixdoc/settingup.tex + texmf-dist/doc/generic/musixtex/musixdoc/slurstiesTypeK.tex + texmf-dist/doc/generic/musixtex/musixdoc/slurstiesfont.tex + texmf-dist/doc/generic/musixtex/musixdoc/smaller.tex + texmf-dist/doc/generic/musixtex/musixdoc/spacing.tex + texmf-dist/doc/generic/musixtex/musixdoc/staffsize.tex + texmf-dist/doc/generic/musixtex/musixdoc/summary.tex + texmf-dist/doc/generic/musixtex/musixdoc/transposition.tex + texmf-dist/doc/generic/musixtex/musixdoc/writingnotes.tex + texmf-dist/doc/generic/musixtex/musixlyr/README.musixlyr + texmf-dist/doc/generic/musixtex/musixlyr/examples/nonmoriar.pdf + texmf-dist/doc/generic/musixtex/musixlyr/examples/nonmoriar.tex + texmf-dist/doc/generic/musixtex/musixlyr/mxlyrdoc.pdf + texmf-dist/doc/generic/musixtex/musixlyr/mxlyrdoc.tex + texmf-dist/doc/generic/musixtex/musixtex-install.pdf details="Package installation notes" + texmf-dist/doc/generic/musixtex/musixtex-install.tex + texmf-dist/doc/generic/musixtex/notationMistakes/coulhack.tex + texmf-dist/doc/generic/musixtex/notationMistakes/sottieng.pdf + texmf-dist/doc/generic/musixtex/notationMistakes/sottieng.tex + texmf-dist/doc/generic/musixtex/notationMistakes/sottiger.pdf + texmf-dist/doc/generic/musixtex/notationMistakes/sottiger.tex + texmf-dist/doc/generic/musixtex/notationMistakes/sottigra.pdf + texmf-dist/doc/generic/musixtex/notationMistakes/sottigra.tex + texmf-dist/doc/generic/musixtex/psslurs/README.psslurs + texmf-dist/doc/generic/musixtex/psslurs/slurs.pdf + texmf-dist/doc/generic/musixtex/psslurs/slurs.tex + texmf-dist/doc/generic/musixtex/reference/musixre1.pdf + texmf-dist/doc/generic/musixtex/scripts/musixflx.pdf + texmf-dist/doc/generic/musixtex/scripts/musixtex.pdf + texmf-dist/doc/man/man1/musixflx.1 + texmf-dist/doc/man/man1/musixflx.man1.pdf + texmf-dist/doc/man/man1/musixtex.1 + texmf-dist/doc/man/man1/musixtex.man1.pdf +srccontainersize 9012 +srccontainerchecksum 62a04ce4d437ada5b2a267b648844cc6702194979530f985bd7fb96b2242d9e92d9fd6367917352aa7f9a699f520569acd2fbfc4d6d56f2f33e9f6173f311909 +srcfiles size=12 + texmf-dist/source/generic/musixtex/musixcrd/doc.tex + texmf-dist/source/generic/musixtex/musixcrd/makefile + texmf-dist/source/generic/musixtex/musixcrd/musixcrd.dtx + texmf-dist/source/generic/musixtex/musixcrd/readme + texmf-dist/source/generic/musixtex/musixcrd/strip.tex +runfiles size=148 + texmf-dist/dvips/musixtex/psslurs.pro + texmf-dist/scripts/musixtex/musixflx.lua + texmf-dist/scripts/musixtex/musixtex.lua + texmf-dist/tex/generic/musixtex/musixadd.tex + texmf-dist/tex/generic/musixtex/musixadf.tex + texmf-dist/tex/generic/musixtex/musixbar.tex + texmf-dist/tex/generic/musixtex/musixbbm.tex + texmf-dist/tex/generic/musixtex/musixblx.tex + texmf-dist/tex/generic/musixtex/musixbm.tex + texmf-dist/tex/generic/musixtex/musixcho.tex + texmf-dist/tex/generic/musixtex/musixcpt.tex + texmf-dist/tex/generic/musixtex/musixcrd.tex + texmf-dist/tex/generic/musixtex/musixdat.tex + texmf-dist/tex/generic/musixtex/musixdbr.tex + texmf-dist/tex/generic/musixtex/musixdia.tex + texmf-dist/tex/generic/musixtex/musixec.tex + texmf-dist/tex/generic/musixtex/musixeng.tex + texmf-dist/tex/generic/musixtex/musixesf.tex + texmf-dist/tex/generic/musixtex/musixevo.tex + texmf-dist/tex/generic/musixtex/musixext.tex + texmf-dist/tex/generic/musixtex/musixfll.tex + texmf-dist/tex/generic/musixtex/musixgre.tex + texmf-dist/tex/generic/musixtex/musixgui.tex + texmf-dist/tex/generic/musixtex/musixhor.tex + texmf-dist/tex/generic/musixtex/musixhou.tex + texmf-dist/tex/generic/musixtex/musixhv.tex + texmf-dist/tex/generic/musixtex/musixinv.tex + texmf-dist/tex/generic/musixtex/musixlit.tex + texmf-dist/tex/generic/musixtex/musixlyr.tex + texmf-dist/tex/generic/musixtex/musixmad.tex + texmf-dist/tex/generic/musixtex/musixper.tex + texmf-dist/tex/generic/musixtex/musixplt.tex + texmf-dist/tex/generic/musixtex/musixpoi.tex + texmf-dist/tex/generic/musixtex/musixppff.tex + texmf-dist/tex/generic/musixtex/musixps.tex + texmf-dist/tex/generic/musixtex/musixref.tex + texmf-dist/tex/generic/musixtex/musixslu.tex + texmf-dist/tex/generic/musixtex/musixsqr.tex + texmf-dist/tex/generic/musixtex/musixste.tex + texmf-dist/tex/generic/musixtex/musixstf.tex + texmf-dist/tex/generic/musixtex/musixstr.tex + texmf-dist/tex/generic/musixtex/musixsty.tex + texmf-dist/tex/generic/musixtex/musixtex.tex + texmf-dist/tex/generic/musixtex/musixtmr.tex + texmf-dist/tex/generic/musixtex/musixtri.tex + texmf-dist/tex/generic/musixtex/tuplet.tex + texmf-dist/tex/latex/musixtex/musixcpt.sty + texmf-dist/tex/latex/musixtex/musixcrd.sty + texmf-dist/tex/latex/musixtex/musixfll.sty + texmf-dist/tex/latex/musixtex/musixltx.tex + texmf-dist/tex/latex/musixtex/musixtex.sty +catalogue-also pmx +catalogue-contact-home http://icking-music-archive.org/software/htdocs +catalogue-ctan /macros/musixtex +catalogue-date 2018-08-05 08:12:10 +0200 +catalogue-license gpl2+ +catalogue-topics music +catalogue-version 1.29 + +name musixtex-fonts +category Package +revision 37762 +shortdesc Fonts used by MusixTeX +relocated 1 +longdesc These are fonts for use with MusixTeX; they are provided both +longdesc as original Metafont source, and as converted Adobe Type 1. The +longdesc bundle renders the older (Type 1 fonts only) bundle +longdesc musixtex-t1fonts obsolete. +execute addMixedMap musix.map +containersize 4183304 +containerchecksum 9cb72eba919842dcd8f892562a9f6f2c4638a46b4152509ffce1666e3e4243a2686b4feff3d9d68ac3c70c755606cda7b8659ceb1d8347b49bdfc4c0c7f35eda +doccontainersize 78176 +doccontainerchecksum 6fbc429483bbb7e1382d72622168d692dc5686ee21b9172ddd3a14df04397cdb9a3b45bae57b2ba2851aff401a5819d81894354e2e942d41812ebede75c45164 +docfiles size=24 + RELOC/doc/fonts/musixtex-fonts/CHANGES.psfonts + RELOC/doc/fonts/musixtex-fonts/README details="Readme" + RELOC/doc/fonts/musixtex-fonts/README.psfonts + RELOC/doc/fonts/musixtex-fonts/musixtex-fonts-install.pdf details="Installation details" + RELOC/doc/fonts/musixtex-fonts/musixtex-fonts-install.tex +runfiles size=1361 + RELOC/fonts/map/dvips/musixtex-fonts/musix.map + RELOC/fonts/source/public/musixtex-fonts/musexgen.mf + RELOC/fonts/source/public/musixtex-fonts/musix11.mf + RELOC/fonts/source/public/musixtex-fonts/musix13.mf + RELOC/fonts/source/public/musixtex-fonts/musix16.mf + RELOC/fonts/source/public/musixtex-fonts/musix20.mf + RELOC/fonts/source/public/musixtex-fonts/musix24.mf + RELOC/fonts/source/public/musixtex-fonts/musix25.mf + RELOC/fonts/source/public/musixtex-fonts/musix29.mf + RELOC/fonts/source/public/musixtex-fonts/musixgen.mf + RELOC/fonts/source/public/musixtex-fonts/musixsps.mf + RELOC/fonts/source/public/musixtex-fonts/musixspx.mf + RELOC/fonts/source/public/musixtex-fonts/mxsk.mf + RELOC/fonts/source/public/musixtex-fonts/xadf11.mf + RELOC/fonts/source/public/musixtex-fonts/xadf13.mf + RELOC/fonts/source/public/musixtex-fonts/xadf16.mf + RELOC/fonts/source/public/musixtex-fonts/xadf20.mf + RELOC/fonts/source/public/musixtex-fonts/xadf24.mf + RELOC/fonts/source/public/musixtex-fonts/xadf29.mf + RELOC/fonts/source/public/musixtex-fonts/xadfgen.mf + RELOC/fonts/source/public/musixtex-fonts/xdrawsl.mf + RELOC/fonts/source/public/musixtex-fonts/xdrawzl.mf + RELOC/fonts/source/public/musixtex-fonts/xgreg11.mf + RELOC/fonts/source/public/musixtex-fonts/xgreg13.mf + RELOC/fonts/source/public/musixtex-fonts/xgreg16.mf + RELOC/fonts/source/public/musixtex-fonts/xgreg20.mf + RELOC/fonts/source/public/musixtex-fonts/xgreg24.mf + RELOC/fonts/source/public/musixtex-fonts/xgreg25.mf + RELOC/fonts/source/public/musixtex-fonts/xgreg29.mf + RELOC/fonts/source/public/musixtex-fonts/xgreggen.mf + RELOC/fonts/source/public/musixtex-fonts/xppff10.mf + RELOC/fonts/source/public/musixtex-fonts/xppffgen.mf + RELOC/fonts/source/public/musixtex-fonts/xsld11.mf + RELOC/fonts/source/public/musixtex-fonts/xsld11d.mf + RELOC/fonts/source/public/musixtex-fonts/xsld13.mf + RELOC/fonts/source/public/musixtex-fonts/xsld13d.mf + RELOC/fonts/source/public/musixtex-fonts/xsld16.mf + RELOC/fonts/source/public/musixtex-fonts/xsld16d.mf + RELOC/fonts/source/public/musixtex-fonts/xsld20.mf + RELOC/fonts/source/public/musixtex-fonts/xsld20d.mf + RELOC/fonts/source/public/musixtex-fonts/xsld24.mf + RELOC/fonts/source/public/musixtex-fonts/xsld24d.mf + RELOC/fonts/source/public/musixtex-fonts/xsld29.mf + RELOC/fonts/source/public/musixtex-fonts/xsld29d.mf + RELOC/fonts/source/public/musixtex-fonts/xsldd20.mf + RELOC/fonts/source/public/musixtex-fonts/xsldu20.mf + RELOC/fonts/source/public/musixtex-fonts/xslgen.mf + RELOC/fonts/source/public/musixtex-fonts/xslgend.mf + RELOC/fonts/source/public/musixtex-fonts/xslgenu.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd11.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd11d.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd13.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd13d.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd16.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd16d.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd20.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd20d.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd24.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd24d.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd29.mf + RELOC/fonts/source/public/musixtex-fonts/xslhd29d.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu11.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu11d.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu13.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu13d.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu16.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu16d.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu20.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu20d.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu24.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu24d.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu29.mf + RELOC/fonts/source/public/musixtex-fonts/xslhu29d.mf + RELOC/fonts/source/public/musixtex-fonts/xslhz-o.mf + RELOC/fonts/source/public/musixtex-fonts/xslhz.mf + RELOC/fonts/source/public/musixtex-fonts/xslhz20.mf + RELOC/fonts/source/public/musixtex-fonts/xslhz20d.mf + RELOC/fonts/source/public/musixtex-fonts/xslu11.mf + RELOC/fonts/source/public/musixtex-fonts/xslu11d.mf + RELOC/fonts/source/public/musixtex-fonts/xslu13.mf + RELOC/fonts/source/public/musixtex-fonts/xslu13d.mf + RELOC/fonts/source/public/musixtex-fonts/xslu16.mf + RELOC/fonts/source/public/musixtex-fonts/xslu16d.mf + RELOC/fonts/source/public/musixtex-fonts/xslu20.mf + RELOC/fonts/source/public/musixtex-fonts/xslu20d.mf + RELOC/fonts/source/public/musixtex-fonts/xslu24.mf + RELOC/fonts/source/public/musixtex-fonts/xslu24d.mf + RELOC/fonts/source/public/musixtex-fonts/xslu29.mf + RELOC/fonts/source/public/musixtex-fonts/xslu29d.mf + RELOC/fonts/source/public/musixtex-fonts/xslud20.mf + RELOC/fonts/source/public/musixtex-fonts/xslup20.mf + RELOC/fonts/source/public/musixtex-fonts/xslz.mf + RELOC/fonts/source/public/musixtex-fonts/xslz20.mf + RELOC/fonts/source/public/musixtex-fonts/xslz20d.mf + RELOC/fonts/source/public/musixtex-fonts/xtie20.mf + RELOC/fonts/tfm/public/musixtex-fonts/musix11.tfm + RELOC/fonts/tfm/public/musixtex-fonts/musix13.tfm + RELOC/fonts/tfm/public/musixtex-fonts/musix16.tfm + RELOC/fonts/tfm/public/musixtex-fonts/musix20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/musix24.tfm + RELOC/fonts/tfm/public/musixtex-fonts/musix25.tfm + RELOC/fonts/tfm/public/musixtex-fonts/musix29.tfm + RELOC/fonts/tfm/public/musixtex-fonts/musixsps.tfm + RELOC/fonts/tfm/public/musixtex-fonts/musixspx.tfm + RELOC/fonts/tfm/public/musixtex-fonts/mxsk.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xadf11.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xadf13.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xadf16.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xadf20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xadf24.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xadf29.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xgreg11.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xgreg13.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xgreg16.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xgreg20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xgreg24.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xgreg29.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xppff10.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsld11.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsld11d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsld13.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsld13d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsld16.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsld16d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsld20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsld20d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsld24.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsld24d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsld29.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsld29d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsldd20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xsldu20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhd11.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhd11d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhd13.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhd13d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhd16.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhd16d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhd20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhd20d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhd24.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhd24d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhd29.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhd29d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu11.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu11d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu13.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu13d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu16.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu16d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu20d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu20m.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu24.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu24d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu29.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhu29d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhz20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslhz20d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslu11.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslu11d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslu13.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslu13d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslu16.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslu16d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslu20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslu20d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslu24.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslu24d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslu29.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslu29d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslud20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslup20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslz20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xslz20d.tfm + RELOC/fonts/tfm/public/musixtex-fonts/xtie20.tfm + RELOC/fonts/type1/public/musixtex-fonts/musix11.pfb + RELOC/fonts/type1/public/musixtex-fonts/musix13.pfb + RELOC/fonts/type1/public/musixtex-fonts/musix16.pfb + RELOC/fonts/type1/public/musixtex-fonts/musix20.pfb + RELOC/fonts/type1/public/musixtex-fonts/musix24.pfb + RELOC/fonts/type1/public/musixtex-fonts/musix29.pfb + RELOC/fonts/type1/public/musixtex-fonts/musixsps.pfb + RELOC/fonts/type1/public/musixtex-fonts/musixspx.pfb + RELOC/fonts/type1/public/musixtex-fonts/mxsk.pfb + RELOC/fonts/type1/public/musixtex-fonts/xadf11.pfb + RELOC/fonts/type1/public/musixtex-fonts/xadf13.pfb + RELOC/fonts/type1/public/musixtex-fonts/xadf16.pfb + RELOC/fonts/type1/public/musixtex-fonts/xadf20.pfb + RELOC/fonts/type1/public/musixtex-fonts/xadf24.pfb + RELOC/fonts/type1/public/musixtex-fonts/xadf29.pfb + RELOC/fonts/type1/public/musixtex-fonts/xgreg11.pfb + RELOC/fonts/type1/public/musixtex-fonts/xgreg13.pfb + RELOC/fonts/type1/public/musixtex-fonts/xgreg16.pfb + RELOC/fonts/type1/public/musixtex-fonts/xgreg20.pfb + RELOC/fonts/type1/public/musixtex-fonts/xgreg24.pfb + RELOC/fonts/type1/public/musixtex-fonts/xgreg29.pfb + RELOC/fonts/type1/public/musixtex-fonts/xppff10.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsld11.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsld11d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsld13.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsld13d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsld16.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsld16d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsld20.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsld20d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsld24.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsld24d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsld29.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsld29d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsldd20.pfb + RELOC/fonts/type1/public/musixtex-fonts/xsldu20.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhd11.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhd11d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhd13.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhd13d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhd16.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhd16d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhd20.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhd20d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhd24.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhd24d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhd29.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhd29d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhu11.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhu11d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhu13.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhu13d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhu16.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhu16d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhu20.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhu20d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhu24.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhu24d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhu29.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhu29d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhz20.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslhz20d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslu11.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslu11d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslu13.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslu13d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslu16.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslu16d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslu20.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslu20d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslu24.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslu24d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslu29.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslu29d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslud20.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslup20.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslz20.pfb + RELOC/fonts/type1/public/musixtex-fonts/xslz20d.pfb + RELOC/fonts/type1/public/musixtex-fonts/xtie20.pfb +catalogue-ctan /fonts/musixtex-fonts +catalogue-date 2017-10-29 15:28:07 +0100 +catalogue-license gpl +catalogue-topics font font-mf font-type1 font-music + +name musixtex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of musixtex +containersize 364 +containerchecksum e2d5a9e6b501cd56e1cc5b15a14dfefeb6decdef59f591a5ca19517162d259b1bd1997b68886456baf43abd0f865de8ec5191615bb511b14dd10fc806fe24211 +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/musixflx + bin/aarch64-linux/musixtex + +name musixtex.amd64-freebsd +category Package +revision 37026 +shortdesc amd64-freebsd files of musixtex +containersize 364 +containerchecksum 4112f0b6650dac57f41d5c758e755bd7b3a4d195c6fb3bbbf89ef88e9fddfe49ef330fbd5396fefa8dcd20bdbb6c3e21a4c4f231859066454ec8f356c20773a5 +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/musixflx + bin/amd64-freebsd/musixtex + +name musixtex.amd64-netbsd +category Package +revision 37026 +shortdesc amd64-netbsd files of musixtex +containersize 364 +containerchecksum 1ee42539e698161627641cf66844715ae8bdcaae0d967fd6265bb27eb6b5e93bd9ba0ea021000195c45a12c25f6fded8c27fc63ee34ac97ba60d423f6ca2901a +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/musixflx + bin/amd64-netbsd/musixtex + +name musixtex.armhf-linux +category Package +revision 37026 +shortdesc armhf-linux files of musixtex +containersize 364 +containerchecksum bd58347c0b626c451dabd7eaed5289eaea8980bd7f50a32e2f26f42044b8c79abb25d0e82aa9a318cf921311cea33b1df18a46ddf859fc4df0f5947f4fd53d74 +binfiles arch=armhf-linux size=2 + bin/armhf-linux/musixflx + bin/armhf-linux/musixtex + +name musixtex.i386-cygwin +category Package +revision 37026 +shortdesc i386-cygwin files of musixtex +containersize 360 +containerchecksum a2ae36151da6e84a2d4d5bac9a1c6320e4a27555abd3f6aa929e015bb86fa82e49a81cf48e4d52a8942e1afe394980e0f5b4b988e1cd0e27af0c2b39b079acc8 +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/musixflx + bin/i386-cygwin/musixtex + +name musixtex.i386-freebsd +category Package +revision 37026 +shortdesc i386-freebsd files of musixtex +containersize 364 +containerchecksum 5655e1f0fbe79fff97ebfeb984102d3588a412a74708b0e4e9df1f059b4d4e04a7ace07347e8ca4fc4bbc486f4769897d0a697d055c10401567a78e61ca8fc9b +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/musixflx + bin/i386-freebsd/musixtex + +name musixtex.i386-linux +category Package +revision 37026 +shortdesc i386-linux files of musixtex +containersize 360 +containerchecksum b11d2a78da7ebfd221b4a24a864f85e10464db3e44ae05c82f52a8ba8e31080f0d05b648d301b9ee40772db9e7e44960d9d3b25eadd27c7e095b7de036620259 +binfiles arch=i386-linux size=2 + bin/i386-linux/musixflx + bin/i386-linux/musixtex + +name musixtex.i386-netbsd +category Package +revision 37026 +shortdesc i386-netbsd files of musixtex +containersize 360 +containerchecksum 83380646c4f9ba5bb038df208ce898773968c5e7dd97aa3bce754ce4a1a58a3615318ee3a008063606d73149558a3dc870973979ba2cd6c10f5a9e9f185cda62 +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/musixflx + bin/i386-netbsd/musixtex + +name musixtex.i386-solaris +category Package +revision 22187 +shortdesc i386-solaris files of musixtex +containersize 364 +containerchecksum 7f4d34863adef1d2bada737fd798626ba9757b219f13438658924d0a34a7a55e68a0eba1d96c131bc6f8993d0081884fc6c125676618bc10c9c27f8050c3ed81 +binfiles arch=i386-solaris size=2 + bin/i386-solaris/musixflx + bin/i386-solaris/musixtex + +name musixtex.win32 +category Package +revision 37026 +shortdesc win32 files of musixtex +containersize 704 +containerchecksum 71cb98f76e93dbad0fea47ef0f1ef0b5abb37ae8def405c99e72ea9b28fe25ed7279a06ed99c327fdfe36767010fb9b5ec8f6506aebabc94d88a9fdd41b6e957 +binfiles arch=win32 size=2 + bin/win32/musixflx.exe + bin/win32/musixtex.exe + +name musixtex.x86_64-cygwin +category Package +revision 37026 +shortdesc x86_64-cygwin files of musixtex +containersize 364 +containerchecksum 39efb690cddb97e951f4603f9234b6427fe3ba71411fda595b4b36d932918aa9cd219a1e5143c21a2c5e1fbc748b2f53abe18f760edf4e23c4eab907d9fc871a +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/musixflx + bin/x86_64-cygwin/musixtex + +name musixtex.x86_64-darwin +category Package +revision 37026 +shortdesc x86_64-darwin files of musixtex +containersize 364 +containerchecksum 42a53f86251c7bd5321ad7a4e36aab4436da176d589b25995b8c8e35b275a095c2f5ace84423aba5c42c218477dce22d3ad8a1455bc0fb0b39046d5bc76f1946 +binfiles arch=x86_64-darwin size=2 + bin/x86_64-darwin/musixflx + bin/x86_64-darwin/musixtex + +name musixtex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of musixtex +containersize 372 +containerchecksum 3f5b13e942f805fec013d80c8476672ab084c2ced8985c4ba48b4d2c28c3db51027e1ce7e0eb83d12f9b51433ce81b8036ce59e930fe273501e475a562bee873 +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/musixflx + bin/x86_64-darwinlegacy/musixtex + +name musixtex.x86_64-linux +category Package +revision 37026 +shortdesc x86_64-linux files of musixtex +containersize 360 +containerchecksum 57dee9581407233fb989d0a260248f9fbe0771fbf8742f3cd9d47abaaab08257146d681704601b32da35da97d927360ceec9a6103088d15e56630d853bb3a2c1 +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/musixflx + bin/x86_64-linux/musixtex + +name musixtex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of musixtex +containersize 368 +containerchecksum e43882a00a8f175eee2e463154828995e508028034d9d29725bbcbfaf2586f640710626e7b8fc62980a98c758fbdb0e37b3ccb6c7387654a960e9c0fe1d1a1f5 +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/musixflx + bin/x86_64-linuxmusl/musixtex + +name musixtex.x86_64-solaris +category Package +revision 22187 +shortdesc x86_64-solaris files of musixtex +containersize 364 +containerchecksum a1a3edc6dde599748759f70f9aa70e5030b39ddf0570c04eda245335c0f9623190cccbb8f7d6c7346a8204473f0f3a77e61327817b90aaa45d41b8e6c126bc8e +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/musixflx + bin/x86_64-solaris/musixtex + +name musixtnt +category Package +revision 40307 +shortdesc A MusiXTeX extension library that enables transformations of the effect of notes commands +longdesc The package includes an archive containing a MusiXTeX extension +longdesc library musixtnt and C source code, binaries for Windows (32 +longdesc bit and 64 bit) and MacOSX, and documentation for two programs: +longdesc fixmsxpart and msxlint. musixtnt.tex provides a macro +longdesc \TransformNotes that enables transformations of the effect of +longdesc notes commands such as \notes. In general, the effect of +longdesc \TransformNotes{input}{output} is that notes commands in the +longdesc source will expect their arguments to match the input pattern, +longdesc but the notes will be typeset according to the output pattern. +longdesc An example is extracting single-instrument parts from a +longdesc multi-instrument score. fixmsxpart corrects note spacing in a +longdesc single-part MusiXTeX source (possibly derived from a +longdesc multi-instrument score and as a result having irregular note +longdesc spacing). msxlint detects incorrectly formatted notes lines in +longdesc a MusiXTeX source file. This should be used before using +longdesc \TransformNotes. +depend musixtex +depend musixtnt.ARCH +containersize 1480 +containerchecksum eab6332d626f199e46dcd03ea546abbc4446b41c4b0354c066790ebfde154c6fa90f861dcff77206318b58a31565d884576899629520e78b3285bac673d1f4bf +doccontainersize 119400 +doccontainerchecksum 2da473ad2425064747187da005e01d6844731c536b75095828a85d358ffb1344331ef483c0cebe79b346b4fa96a358a1e416cce7d7cfcce6b1242cf3c0a3645e +docfiles size=36 + texmf-dist/doc/generic/musixtnt/README details="Readme" + texmf-dist/doc/generic/musixtnt/TransformNotes.3 + texmf-dist/doc/generic/musixtnt/TransformNotes.pdf + texmf-dist/doc/generic/musixtnt/msxlint.pdf details="Package documentation" + texmf-dist/doc/generic/musixtnt/musixtnt-2016-01-30.tar.gz + texmf-dist/doc/man/man1/msxlint.1 + texmf-dist/doc/man/man1/msxlint.man1.pdf +runfiles size=1 + texmf-dist/tex/generic/musixtnt/musixtnt.tex +catalogue-ctan /macros/musixtnt +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl2 +catalogue-topics music + +name musixtnt.aarch64-linux +category Package +revision 48789 +shortdesc aarch64-linux files of musixtnt +containersize 5188 +containerchecksum 961d0945d25acedb5e5bd4bfbea85fe8ef5896e671b2116520faf42de49ede422fd5967311b2067ffc141583c171787ccfe83e281b48a4a4475b858a7a23193d +binfiles arch=aarch64-linux size=4 + bin/aarch64-linux/msxlint + +name musixtnt.amd64-freebsd +category Package +revision 50445 +shortdesc amd64-freebsd files of musixtnt +containersize 8796 +containerchecksum f8d8f18d3b324f11dcf7cc830889747c4e0529be6c06104cff3d07c8db58b72e0f421bc586d41791b93c6bc2c632ad2ba3a8e3f9b9ab84dde42c7e2a5ecababc +binfiles arch=amd64-freebsd size=5 + bin/amd64-freebsd/msxlint + +name musixtnt.amd64-netbsd +category Package +revision 48698 +shortdesc amd64-netbsd files of musixtnt +containersize 7900 +containerchecksum b60b7ec4b7cbf7b5b219e7ca4aa06a7d8bfddd672ffa6e0611643eeef1a2080c2809ead9eb2b2b4942745b089b7e3e85fdb3d47d03dfaabd2126319f9268701f +binfiles arch=amd64-netbsd size=6 + bin/amd64-netbsd/msxlint + +name musixtnt.armhf-linux +category Package +revision 50150 +shortdesc armhf-linux files of musixtnt +containersize 4948 +containerchecksum a2bb1214bcc838e9f87008b593e1e339f60873ebbf08c0ac66785bc85f5271fa30e3efb9198a40fd055cfb874a319ebeccc07a47b947a8844b6ffbcee232f4ea +binfiles arch=armhf-linux size=4 + bin/armhf-linux/msxlint + +name musixtnt.i386-cygwin +category Package +revision 50455 +shortdesc i386-cygwin files of musixtnt +containersize 6100 +containerchecksum 1721d5444e93312bf5a2dfae3424ccc81916ddbc6a616fd51e1ac27a9d7738d42c2371e5e48525ff347c81ccb4400977302b448af11cdeb414bb623ffbcf3203 +binfiles arch=i386-cygwin size=5 + bin/i386-cygwin/msxlint.exe + +name musixtnt.i386-freebsd +category Package +revision 50473 +shortdesc i386-freebsd files of musixtnt +containersize 7280 +containerchecksum 80880dd2ffb9782843d012de528b21f2b0aed3ed3f2d570340860c885e55d202f8d84f0b4ba9b234bd24a90cd5add6b0b0245b6f34f9b6b03b7b897c856c9e4a +binfiles arch=i386-freebsd size=4 + bin/i386-freebsd/msxlint + +name musixtnt.i386-linux +category Package +revision 50281 +shortdesc i386-linux files of musixtnt +containersize 5676 +containerchecksum 7456747da6fe52677ea3349b3c5e5675a885e7b51eded9f7753ab46a8d4e1b98e07e4e594ed139e00893d1bbccdec366195cd26b84e71d95d1b09822f535b28d +binfiles arch=i386-linux size=4 + bin/i386-linux/msxlint + +name musixtnt.i386-netbsd +category Package +revision 50171 +shortdesc i386-netbsd files of musixtnt +containersize 7020 +containerchecksum a7d71cec0a7ff42c7ab878c57d9bb874ad99fe8bff87c46096d20619171f9ba3fd1e0f5bd5a68f8344663aed4ff7aa07d5000b76124b34a9a2081e5107e1b2fd +binfiles arch=i386-netbsd size=5 + bin/i386-netbsd/msxlint + +name musixtnt.i386-solaris +category Package +revision 46829 +shortdesc i386-solaris files of musixtnt +containersize 8032 +containerchecksum 5d2b47e3914b010f138a3bee7dd3dd8e3db014fc3f61bc4550076e02e5e302d21bca0fb4f2e063acdb344332abde0eef7991b62fae6c3f6b063af5fefec89d2a +binfiles arch=i386-solaris size=5 + bin/i386-solaris/msxlint + +name musixtnt.win32 +category Package +revision 50155 +shortdesc win32 files of musixtnt +containersize 6384 +containerchecksum efd86776eb519222871c5e79c976920b20b210ad633adbc759eb68146ca4741c09c9e7f7d7d45a17a08b6c1c94d7255eccacc820a504f3b62cd013b859b78277 +binfiles arch=win32 size=4 + bin/win32/msxlint.exe + +name musixtnt.x86_64-cygwin +category Package +revision 50889 +shortdesc x86_64-cygwin files of musixtnt +containersize 6052 +containerchecksum 9803783d39c70aae0d0974c8d0073fabfd12f510ddc3dbe7ded09522efeb29e58bcd3b8f083eb3e5cbc17c52ebc85fc12e7d70ce345c8ea5527181db6ef48086 +binfiles arch=x86_64-cygwin size=4 + bin/x86_64-cygwin/msxlint.exe + +name musixtnt.x86_64-darwin +category Package +revision 50150 +shortdesc x86_64-darwin files of musixtnt +containersize 7608 +containerchecksum 4e0acaa5c7932341764230b9a5addc0cd88fa94cc4b549cd375d04fc093829a2f727170423ea96541549833c1ec8142c6680487cdef79cda7cd29c190add3316 +binfiles arch=x86_64-darwin size=6 + bin/x86_64-darwin/msxlint + +name musixtnt.x86_64-darwinlegacy +category Package +revision 50282 +shortdesc x86_64-darwinlegacy files of musixtnt +containersize 7220 +containerchecksum 93fcaf1dc83e4d7cc8c0913283ba2f5bd7508574304284d346d3964edd80fcb485d6e7fabd4cd80db481c60cdef8288860b1861c005582bbbfaafef5a5d25b44 +binfiles arch=x86_64-darwinlegacy size=6 + bin/x86_64-darwinlegacy/msxlint + +name musixtnt.x86_64-linux +category Package +revision 50281 +shortdesc x86_64-linux files of musixtnt +containersize 5492 +containerchecksum 622d214c5a70916dd166db34e52f601a896a23943893cf4d3187db4d2f948b8ef36536e4421a4bdb4f11d9520f6ec7e6511e61f207753d45f792d5b7289c6985 +binfiles arch=x86_64-linux size=4 + bin/x86_64-linux/msxlint + +name musixtnt.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of musixtnt +containersize 8352 +containerchecksum 322b75ed6d951a6a249235a00adc099680a820f58bf9f9a37d10427c2ef82524ada70845bf980f429ece58327c9b8a2d1f9770cbc22bcce25513abf1f2b41dc1 +binfiles arch=x86_64-linuxmusl size=6 + bin/x86_64-linuxmusl/msxlint + +name musixtnt.x86_64-solaris +category Package +revision 46829 +shortdesc x86_64-solaris files of musixtnt +containersize 8732 +containerchecksum c1472477de0d8bcc009df2dbe361043fa4f035809a8309545a75c07a248a3c83fd072cd106f1eb2b8063d76159314b27f3271717f55e625d20c735fbf86bb8c8 +binfiles arch=x86_64-solaris size=5 + bin/x86_64-solaris/msxlint + +name musuos +category Package +revision 24857 +shortdesc Typeset papers for the department of music, Osnabruck +relocated 1 +longdesc The package provides a LaTeX class for typesetting term papers +longdesc at the institute of music and musicology of the University of +longdesc Osnabruck, Germany, according to the specifications of Prof. +longdesc Stefan Hahnheide. A BibLaTeX style is provided. +containersize 3756 +containerchecksum 3ad7bc18f20b0df70f6c92f7816d4e5bc90070a392788d93caffaba39f25e516a1ca4a6ef5438dbe55b514822d2882e7dfb809eaa4fb1380475fd624ec3efb9f +doccontainersize 509936 +doccontainerchecksum a2bc27d789cbd6833961d41ee6d697004fa7539810aafa8749af918572dbd20e2f267bb7435c068fd604540d0a75d1a558fea38a8cc7748c9dcf087c17469a61 +docfiles size=127 + RELOC/doc/latex/musuos/README details="Readme" + RELOC/doc/latex/musuos/musuos-doc.ist + RELOC/doc/latex/musuos/musuos.pdf details="Package documentation" +srccontainersize 15972 +srccontainerchecksum 55cbd375a48388b310c52e26b02b6dcd56f7d50761addaf275de656a2668bbb0c436c742649cfa07355e626c3ee01572960fc0177ce4226f764db2b5c3e04598 +srcfiles size=14 + RELOC/source/latex/musuos/musuos.dtx + RELOC/source/latex/musuos/musuos.ins +runfiles size=3 + RELOC/tex/latex/musuos/musuos.cls +catalogue-also biblatex-musuos +catalogue-ctan /macros/latex/contrib/musuos +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics dissertation music +catalogue-version 1.1d + +name muthesis +category Package +revision 23861 +shortdesc Classes for University of Manchester Dept of Computer Science +relocated 1 +longdesc The bundle provides thesis and project report document classes +longdesc from the University of Manchester's Department of Computer +longdesc Science. +containersize 8164 +containerchecksum 66345512d1713dcd352feeb46d8ad9c609d4c9364a37b47b5fc0207800f6576831e15d7be59ce13f560ebedaeac9a595f2bd7045b621fbdc8e20a3b3c553524d +doccontainersize 628 +doccontainerchecksum 5ed08b459ffdc954f5857be1a1970e9a23d2cfc23cbb04e820b82368b1febb9bf04811e53ce6fd05cc12da302d182179d29b278fb99157e801afd05db15cbaa1 +docfiles size=1 + RELOC/doc/latex/muthesis/README details="Readme" +runfiles size=6 + RELOC/tex/latex/muthesis/muthesis.cls + RELOC/tex/latex/muthesis/third-rep.cls +catalogue-ctan /macros/latex/contrib/muthesis +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics dissertation + +name mversion +category Package +revision 29370 +shortdesc Keeping track of document versions +relocated 1 +longdesc The package enables the user to keep track of different +longdesc versions of a LaTeX document. The command \version prints the +longdesc version and build numbers; each time you compile your document, +longdesc the build number is increased by one. By placing \version in +longdesc the header or footer, each page can be marked with the unique +longdesc build number describing the progress of your document. +containersize 1288 +containerchecksum 3031b6aa9408bfb0994ff23c36f6b3f770aa8beac0e94bfe1361dc2ec6ac47859a996ddea9f5283833e5711d0308ebfe5aae91bc0ab564c6e83056d7394f14f5 +doccontainersize 153968 +doccontainerchecksum bf7639f024b214c2b8b73cbe4f87848f390d106f46afff6f6a1257d80b37a6b7b02d8d9224580d945b93b3f86a43495d00c5c07d22e8428703036dc43273ad41 +docfiles size=41 + RELOC/doc/latex/mversion/README details="Readme" + RELOC/doc/latex/mversion/mVersion.pdf details="Package documentation" +srccontainersize 3072 +srccontainerchecksum 22ea633c451f88302061c2d3427ed52e561bf31bde30456e632f3abbca918a329c40e239ecf0a2f2b219a23da063101ebc9a23ea5fa355e479ee28a9404d50b7 +srcfiles size=3 + RELOC/source/latex/mversion/mVersion.dtx + RELOC/source/latex/mversion/mVersion.ins +runfiles size=1 + RELOC/tex/latex/mversion/mVersion.sty +catalogue-ctan /macros/latex/contrib/mversion +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.2 +catalogue-topics doc-mgmt doc-tool +catalogue-version 1.0.1 + +name mwcls +category Package +revision 44352 +shortdesc Polish-oriented document classes +relocated 1 +longdesc mwcls is a set of document classes for LaTeX 2e designed with +longdesc Polish typographical tradition in mind. Classes include: +longdesc 'mwart' (which is a replacement for 'article'), 'mwrep' +longdesc (replacing 'report'), and 'mwbk' (replacing 'book'). Most +longdesc features present in standard classes work with mwcls classes. +longdesc Some extensions/exceptions include: sectioning commands allow +longdesc for second optional argument (it is possible to state different +longdesc texts for running head and for TOC), new environments +longdesc 'itemize*' and 'enumerate*' for lists with long items, page +longdesc styles have variants for normal, opening, closing, and blank +longdesc pages. +containersize 11340 +containerchecksum 045fbe4985684ff7bad3a7c493fa0b37e412e698ee5eaf31b4ccdf3e185433d185faeb78bbbae7e11b84354e4dcbc24c8f2cf549a64b81ed0b6adfceb4bc8d8a +doccontainersize 138172 +doccontainerchecksum 17b548e9db8a842c16367cd27b3f5639fdaf418f1967155a72c90e3e91d47a121c87dcf2bf0c6eb9042005d54e04ee40b367e0d81c7e2ff57de04da617f8b1b2 +docfiles size=44 + RELOC/doc/latex/mwcls/CZYTAJ details="Package README" language="pl" + RELOC/doc/latex/mwcls/ChangeLog + RELOC/doc/latex/mwcls/README details="Package README" language="en" + RELOC/doc/latex/mwcls/mwclsdoc.pdf details="Package documentation" language="pl" +srccontainersize 35232 +srccontainerchecksum aff2829633113538493a5634fa11d11a65d643e65afe74255ab31141ddd5fb39f6da59764507af10314b1d458c5c75b1f970b808b1e90c53d211cb4bc11f3b55 +srcfiles size=37 + RELOC/source/latex/mwcls/mwcls.dtx + RELOC/source/latex/mwcls/mwcls.ins +runfiles size=42 + RELOC/tex/latex/mwcls/mw10.clo + RELOC/tex/latex/mwcls/mw11.clo + RELOC/tex/latex/mwcls/mw12.clo + RELOC/tex/latex/mwcls/mwart.cls + RELOC/tex/latex/mwcls/mwbk.cls + RELOC/tex/latex/mwcls/mwbk10.clo + RELOC/tex/latex/mwcls/mwbk11.clo + RELOC/tex/latex/mwcls/mwbk12.clo + RELOC/tex/latex/mwcls/mwrep.cls +catalogue-ctan /macros/latex/contrib/mwcls +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl1.2 +catalogue-topics book-pub class +catalogue-version 0.75 + +name mwe +category Package +revision 47194 +shortdesc Packages and image files for MWEs +relocated 1 +longdesc The bundle provides several files useful when creating a +longdesc minimal working example (MWE). The package itself loads a small +longdesc set of packages often used when creating MWEs. In addition, a +longdesc range of images are provided, which will be installed in the +longdesc TEXMF tree, so that they may be used in any (La)TeX document. +longdesc This allows different users to share MWEs which include image +longdesc commands, without the need to share image files or to use +longdesc replacement code. +containersize 807112 +containerchecksum fab45c12e55ddd3b748ac6a07041c64efd1b344cd8375d870ab3ddda155d9c43adb1fbed21c82237732c8d15ad68201ade3eeb54714e4737a79ee3fe22db48bd +doccontainersize 308880 +doccontainerchecksum 361130c8fd556a564975ed94286645e1b2ebb399a4895b59244bbe941cbac20d0e4271cd74cd122595faad4f2ff1db24ad522c04bbded59df2ccfdbbfdb19c7e +docfiles size=82 + RELOC/doc/latex/mwe/INSTALL + RELOC/doc/latex/mwe/README details="Readme" + RELOC/doc/latex/mwe/mwe.pdf details="Package documentation" +srccontainersize 8444 +srccontainerchecksum 3511bbe2629f5a69023836495e768ba9fb218d23f05f2587c39298c007017b272bece226dcfdd9f9b6625891d6d4be5622c4dff35ed413c797adbe1db1c60c00 +srcfiles size=12 + RELOC/source/latex/mwe/mwe.dtx + RELOC/source/latex/mwe/mwe.ins +runfiles size=513 + RELOC/tex/latex/mwe/example-grid-100x100bp.eps + RELOC/tex/latex/mwe/example-grid-100x100bp.jpg + RELOC/tex/latex/mwe/example-grid-100x100bp.pdf + RELOC/tex/latex/mwe/example-grid-100x100bp.png + RELOC/tex/latex/mwe/example-grid-100x100bp.tex + RELOC/tex/latex/mwe/example-grid-100x100pt.eps + RELOC/tex/latex/mwe/example-grid-100x100pt.jpg + RELOC/tex/latex/mwe/example-grid-100x100pt.pdf + RELOC/tex/latex/mwe/example-grid-100x100pt.png + RELOC/tex/latex/mwe/example-grid-100x100pt.tex + RELOC/tex/latex/mwe/example-image-10x16.eps + RELOC/tex/latex/mwe/example-image-10x16.jpg + RELOC/tex/latex/mwe/example-image-10x16.pdf + RELOC/tex/latex/mwe/example-image-10x16.png + RELOC/tex/latex/mwe/example-image-10x16.tex + RELOC/tex/latex/mwe/example-image-16x10.eps + RELOC/tex/latex/mwe/example-image-16x10.jpg + RELOC/tex/latex/mwe/example-image-16x10.pdf + RELOC/tex/latex/mwe/example-image-16x10.png + RELOC/tex/latex/mwe/example-image-16x10.tex + RELOC/tex/latex/mwe/example-image-16x9.eps + RELOC/tex/latex/mwe/example-image-16x9.jpg + RELOC/tex/latex/mwe/example-image-16x9.pdf + RELOC/tex/latex/mwe/example-image-16x9.png + RELOC/tex/latex/mwe/example-image-16x9.tex + RELOC/tex/latex/mwe/example-image-1x1.eps + RELOC/tex/latex/mwe/example-image-1x1.jpg + RELOC/tex/latex/mwe/example-image-1x1.pdf + RELOC/tex/latex/mwe/example-image-1x1.png + RELOC/tex/latex/mwe/example-image-1x1.tex + RELOC/tex/latex/mwe/example-image-4x3.eps + RELOC/tex/latex/mwe/example-image-4x3.jpg + RELOC/tex/latex/mwe/example-image-4x3.pdf + RELOC/tex/latex/mwe/example-image-4x3.png + RELOC/tex/latex/mwe/example-image-4x3.tex + RELOC/tex/latex/mwe/example-image-9x16.eps + RELOC/tex/latex/mwe/example-image-9x16.jpg + RELOC/tex/latex/mwe/example-image-9x16.pdf + RELOC/tex/latex/mwe/example-image-9x16.png + RELOC/tex/latex/mwe/example-image-9x16.tex + RELOC/tex/latex/mwe/example-image-a.eps + RELOC/tex/latex/mwe/example-image-a.jpg + RELOC/tex/latex/mwe/example-image-a.pdf + RELOC/tex/latex/mwe/example-image-a.png + RELOC/tex/latex/mwe/example-image-a.tex + RELOC/tex/latex/mwe/example-image-a3-landscape.pdf + RELOC/tex/latex/mwe/example-image-a3-landscape.tex + RELOC/tex/latex/mwe/example-image-a3.pdf + RELOC/tex/latex/mwe/example-image-a3.tex + RELOC/tex/latex/mwe/example-image-a4-landscape.pdf + RELOC/tex/latex/mwe/example-image-a4-landscape.tex + RELOC/tex/latex/mwe/example-image-a4-numbered.pdf + RELOC/tex/latex/mwe/example-image-a4-numbered.tex + RELOC/tex/latex/mwe/example-image-a4.pdf + RELOC/tex/latex/mwe/example-image-a4.tex + RELOC/tex/latex/mwe/example-image-a5-landscape.pdf + RELOC/tex/latex/mwe/example-image-a5-landscape.tex + RELOC/tex/latex/mwe/example-image-a5.pdf + RELOC/tex/latex/mwe/example-image-a5.tex + RELOC/tex/latex/mwe/example-image-b.eps + RELOC/tex/latex/mwe/example-image-b.jpg + RELOC/tex/latex/mwe/example-image-b.pdf + RELOC/tex/latex/mwe/example-image-b.png + RELOC/tex/latex/mwe/example-image-b.tex + RELOC/tex/latex/mwe/example-image-c.eps + RELOC/tex/latex/mwe/example-image-c.jpg + RELOC/tex/latex/mwe/example-image-c.pdf + RELOC/tex/latex/mwe/example-image-c.png + RELOC/tex/latex/mwe/example-image-c.tex + RELOC/tex/latex/mwe/example-image-empty.pdf + RELOC/tex/latex/mwe/example-image-empty.tex + RELOC/tex/latex/mwe/example-image-golden-upright.pdf + RELOC/tex/latex/mwe/example-image-golden-upright.tex + RELOC/tex/latex/mwe/example-image-golden.pdf + RELOC/tex/latex/mwe/example-image-golden.tex + RELOC/tex/latex/mwe/example-image-letter-landscape.pdf + RELOC/tex/latex/mwe/example-image-letter-landscape.tex + RELOC/tex/latex/mwe/example-image-letter-numbered.pdf + RELOC/tex/latex/mwe/example-image-letter-numbered.tex + RELOC/tex/latex/mwe/example-image-letter.pdf + RELOC/tex/latex/mwe/example-image-letter.tex + RELOC/tex/latex/mwe/example-image-plain.pdf + RELOC/tex/latex/mwe/example-image-plain.tex + RELOC/tex/latex/mwe/example-image.eps + RELOC/tex/latex/mwe/example-image.jpg + RELOC/tex/latex/mwe/example-image.pdf + RELOC/tex/latex/mwe/example-image.png + RELOC/tex/latex/mwe/example-image.tex + RELOC/tex/latex/mwe/example-movie.mp4 + RELOC/tex/latex/mwe/example-movie.pdf + RELOC/tex/latex/mwe/example-movie.tex + RELOC/tex/latex/mwe/mwe.sty +catalogue-contact-bugs https://bitbucket.org/martin_scharrer/mwe/issues +catalogue-contact-home https://bitbucket.org/martin_scharrer/mwe +catalogue-contact-repository https://bitbucket.org/martin_scharrer/mwe/src +catalogue-ctan /macros/latex/contrib/mwe +catalogue-date 2018-03-30 18:31:59 +0200 +catalogue-license lppl1.3 +catalogue-topics debug-supp +catalogue-version 0.5 + +name mweights +category Package +revision 43647 +shortdesc Support for multiple-weight font packages +relocated 1 +longdesc Many font families available for use with LaTeX are available +longdesc at multiple weights. Many Type 1-oriented support packages for +longdesc such fonts re-define the standard \mddefault or \bfdefault +longdesc macros. This can create difficulties if the weight desired for +longdesc one font family isn't available for another font family, or if +longdesc it differs from the weight desired for another font family. The +longdesc package provides a solution to these difficulties. +containersize 1256 +containerchecksum 944c84225a923fb3a1b72f8f44872fbf9f1207194924c9fba8c9c45a2de304748f9630a6267868eaabb5feba4b268a702568ed81cea6cc587319a1cecb94de0d +doccontainersize 1252 +doccontainerchecksum 613f3a22759878a34e659a9606b289cd9969280a3de4e8a7614d277aee66aeefb44776f555efd0d2e11d61f70342f747301002bf9b84b888f01216c439cb5a5f +docfiles size=1 + RELOC/doc/latex/mweights/README details="Readme" +runfiles size=2 + RELOC/tex/latex/mweights/mweights.sty +catalogue-ctan /macros/latex/contrib/mweights +catalogue-date 2017-03-30 19:47:45 +0200 +catalogue-license lppl +catalogue-topics font-use font-supp + +name mxedruli +category Package +revision 30021 +shortdesc A pair of fonts for different Georgian alphabets +relocated 1 +longdesc Two Georgian fonts, in both Metafont and Type 1 formats, which +longdesc cover the Mxedruli and the Xucuri alphabets. +execute addMap mxedruli.map +containersize 138692 +containerchecksum f721b48b71ae2eb74104e23989cae84d3316b322ebff4703d9bddf74e0ddacf742e279813977bf29883fd17f01049112169d02aa3e4a9be887c049f8484ca0fe +doccontainersize 308524 +doccontainerchecksum ea9de17ac138af2fdfbd624e0c516faa2eca674ae1c423cc7f972f87c1bfbd37812e199f68b463c07213fa263636490b7207baf68506514f73fdef1d6c041a49 +docfiles size=95 + RELOC/doc/fonts/mxedruli/README details="Readme" + RELOC/doc/fonts/mxedruli/alphabets.tex + RELOC/doc/fonts/mxedruli/mxeddoc.pdf details="Package documentation" + RELOC/doc/fonts/mxedruli/mxeddoc.tex + RELOC/doc/fonts/mxedruli/ossetic.tex + RELOC/doc/fonts/mxedruli/vepxis.tex +runfiles size=112 + RELOC/fonts/afm/public/mxedruli/mxed10.afm + RELOC/fonts/afm/public/mxedruli/mxedbf10.afm + RELOC/fonts/afm/public/mxedruli/mxedc10.afm + RELOC/fonts/afm/public/mxedruli/mxedi10.afm + RELOC/fonts/afm/public/mxedruli/xuc10.afm + RELOC/fonts/map/dvips/mxedruli/mxedruli.map + RELOC/fonts/source/public/mxedruli/mxed.mf + RELOC/fonts/source/public/mxedruli/mxed10.mf + RELOC/fonts/source/public/mxedruli/mxedacc.mf + RELOC/fonts/source/public/mxedruli/mxedbase.mf + RELOC/fonts/source/public/mxedruli/mxedbf10.mf + RELOC/fonts/source/public/mxedruli/mxedc10.mf + RELOC/fonts/source/public/mxedruli/mxedcaps.mf + RELOC/fonts/source/public/mxedruli/mxedd.mf + RELOC/fonts/source/public/mxedruli/mxedfont.mf + RELOC/fonts/source/public/mxedruli/mxedi10.mf + RELOC/fonts/source/public/mxedruli/mxedp.mf + RELOC/fonts/source/public/mxedruli/xuc.mf + RELOC/fonts/source/public/mxedruli/xuc10.mf + RELOC/fonts/source/public/mxedruli/xucbase.mf + RELOC/fonts/source/public/mxedruli/xucd.mf + RELOC/fonts/source/public/mxedruli/xucfont.mf + RELOC/fonts/source/public/mxedruli/xucl.mf + RELOC/fonts/source/public/mxedruli/xucp.mf + RELOC/fonts/tfm/public/mxedruli/mxed10.tfm + RELOC/fonts/tfm/public/mxedruli/mxedbf10.tfm + RELOC/fonts/tfm/public/mxedruli/mxedc10.tfm + RELOC/fonts/tfm/public/mxedruli/mxedi10.tfm + RELOC/fonts/tfm/public/mxedruli/xuc10.tfm + RELOC/fonts/type1/public/mxedruli/mxed10.pfb + RELOC/fonts/type1/public/mxedruli/mxedbf10.pfb + RELOC/fonts/type1/public/mxedruli/mxedc10.pfb + RELOC/fonts/type1/public/mxedruli/mxedi10.pfb + RELOC/fonts/type1/public/mxedruli/xuc10.pfb + RELOC/tex/latex/mxedruli/mxedruli.sty + RELOC/tex/latex/mxedruli/umxed.fd + RELOC/tex/latex/mxedruli/uxuc.fd + RELOC/tex/latex/mxedruli/xucuri.sty +catalogue-also georgian-stanier +catalogue-contact-home http://heinecke.pagesperso-orange.fr/mxedruli/ +catalogue-ctan /fonts/georgian/mxedruli +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl +catalogue-topics georgian font font-type1 font-mf +catalogue-version 3.3c + +name mychemistry +category Package +revision 28611 +shortdesc Create reaction schemes with LaTeX and ChemFig +relocated 1 +longdesc The package provides commands for typesetting complex chemical +longdesc reaction schemes with LaTeX and ChemFig. The package requires +longdesc the packages ChemFig, mhchem, chemcompounds and (sometimes) +longdesc chemexec. +containersize 9592 +containerchecksum bf8fbe30dd3d1637db289bb92f6339545f4d52b3876e5a81e5153b4ac72be0b54af48f46fa7d1dbd5a129bc83223c53163a760e6cec0bc61101496b25b677f68 +doccontainersize 1713136 +doccontainerchecksum 7f9a9d6c6e0f66805dc37120a4c76787e60452067d9f379cadaf4993a76d7363553699eba7af1b9e507bab4e68e66791a5c93d940e6079521de5d1b7a83e5a58 +docfiles size=442 + RELOC/doc/latex/mychemistry/README details="Readme" + RELOC/doc/latex/mychemistry/examples.pdf + RELOC/doc/latex/mychemistry/examples.tex + RELOC/doc/latex/mychemistry/mychemistry_en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/mychemistry/mychemistry_en.tex +runfiles size=15 + RELOC/tex/latex/mychemistry/mychemistry.sty +catalogue-contact-repository https://bitbucket.org/cgnieder/mychemistry/ +catalogue-ctan /macros/latex/contrib/mychemistry +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics chemistry +catalogue-version 1.99b + +name mycv +category Package +revision 26807 +shortdesc A list-driven CV class, allowing TikZ decorations +relocated 1 +longdesc The class provides a set of functionality for writing +longdesc "curriculum vitae" with different layouts. The idea is that a +longdesc user can write some custom configuration directives, by means +longdesc of which is possible both to produce different c.v. layouts and +longdesc quickly switch among them. In order to process such directives, +longdesc the class uses a set of lists, provided by the package +longdesc etextools. Basic support for using TikZ decorations is also +longdesc provided. +containersize 8084 +containerchecksum 72e74c30c994441aac708e719e894d01bc3d1a6570863a589dbacae8e3c69f70d192abf7473b58a026b2859f7f10dfd1e56827cc759898248e3cfc9d36f37583 +doccontainersize 512164 +doccontainerchecksum 892d0c10fb8a2dd9a65bb6fa4dd48fc3ea49803a7e633cd390427bfbcc8f16f6d213f9ef511c7202521b518db4c94bfdad5197c30b2c8786bbbb6c6f188293a7 +docfiles size=183 + RELOC/doc/latex/mycv/CHANGELOG + RELOC/doc/latex/mycv/Doc/Images/logo-1.png + RELOC/doc/latex/mycv/Doc/mycv.tex + RELOC/doc/latex/mycv/Examples/Notes.txt + RELOC/doc/latex/mycv/Examples/mycv-example-dpl.pdf + RELOC/doc/latex/mycv/Examples/mycv-example-dpl2.pdf + RELOC/doc/latex/mycv/Examples/mycv-example-spl.pdf + RELOC/doc/latex/mycv/Examples/mycv-example-spl2.pdf + RELOC/doc/latex/mycv/Examples/mycv-examples.dtx + RELOC/doc/latex/mycv/README details="Readme" + RELOC/doc/latex/mycv/checksum.pl + RELOC/doc/latex/mycv/mycv.pdf details="Package documentation" +srccontainersize 8664 +srccontainerchecksum 56901df8931579aae3cc8f51e7c6c6542cca3b1b231512e6cc27b88104c39dea50026f0cf21b2b4251f4e1ddfe4119de7ddbde6f50bde743296bb84195fb5f05 +srcfiles size=10 + RELOC/source/latex/mycv/mycv.dtx + RELOC/source/latex/mycv/mycv.ins +runfiles size=11 + RELOC/scripts/mycv/mycv_split_contents.pl + RELOC/tex/latex/mycv/mycv.cls + RELOC/tex/latex/mycv/mycv_base.def + RELOC/tex/latex/mycv/mycv_dec.sty + RELOC/tex/latex/mycv/mycv_misc.def + RELOC/tex/latex/mycv/mycv_style.sty + RELOC/tex/latex/mycv/mycv_version.def +catalogue-ctan /macros/latex/contrib/mycv +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics cv class +catalogue-version 1.5.6 + +name mylatexformat +category Package +revision 21392 +shortdesc Build a format based on the preamble of a LaTeX file +relocated 1 +longdesc The use of formats helps to speed up compilations: packages +longdesc which have been dumped in the format are loaded at very high +longdesc speed. This is useful when a document loads many packages +longdesc (including large packages such as pgf-TikZ). The package was +longdesc developed from the work in mylatex, and eliminates many of the +longdesc limitations and problems of that package. +containersize 4628 +containerchecksum 476e2c739c9a99a53a9f6bb7eb32e6122c149fe224497cd8e777af0ebd139ffadfa792090d8673ff96b4e17466e918f9af4ecb7a12c608d4c33d4e17f2b26f0a +doccontainersize 141756 +doccontainerchecksum c0754ef147a457e7c91b16a50dab2220fbf2f5385e126e796b1c65025f0fd998371b4e58d96ae72b8c6eb21b2030906729270c88c0914b1748714455e78d1bbb +docfiles size=51 + RELOC/doc/latex/mylatexformat/README details="Readme" + RELOC/doc/latex/mylatexformat/mylatexformat.pdf details="Package documentation" +srccontainersize 12888 +srccontainerchecksum 4f172517cd3e0bec77bc9003201a4488acfedcbddbca217ecac4878d3df9ab86719c5d9fc645671bbf3a5d5b66a1c4e80f9acc01ef27c82a3eaf13aeed45f857 +srcfiles size=13 + RELOC/source/latex/mylatexformat/mylatexformat.drv + RELOC/source/latex/mylatexformat/mylatexformat.dtx + RELOC/source/latex/mylatexformat/mylatexformat.ins +runfiles size=4 + RELOC/tex/latex/mylatexformat/mylatexformat.ltx +catalogue-ctan /macros/latex/contrib/mylatexformat +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics format +catalogue-version 3.4 + +name mynsfc +category Package +revision 41996 +shortdesc XeLaTeX template for writing the main body of NSFC proposals +relocated 1 +longdesc The package provides a XeLaTeX template for writing the main +longdesc body of National Natural Science Foundation of China (NSFC) +longdesc proposals, which are allowed to apply online. The package +longdesc defines styles of the outlines and uses BibLaTeX/biber for the +longdesc management of references. +containersize 3420 +containerchecksum fbf6a66d9e4f7863b380f6cea43c58bcfb54e458d56fe2867b3e1354cb2489d4a0576e6c392e4825023db33465176161e226d954bc12080722317e92edfb3d0b +doccontainersize 225920 +doccontainerchecksum 11b2d4647cac4aa2280aeac24abca47b9d92680845eba5a99fdf05fbcd4590760927495ef87b04900084ec64652a8b2e28263d4d1a26765cd3e027393f2d7417 +docfiles size=60 + RELOC/doc/xelatex/mynsfc/my-nsfc-proposal.bib + RELOC/doc/xelatex/mynsfc/my-nsfc-proposal.pdf + RELOC/doc/xelatex/mynsfc/my-nsfc-proposal.tex + RELOC/doc/xelatex/mynsfc/mynsfc.pdf details="Package documentation" +srccontainersize 4404 +srccontainerchecksum 4ca3be26449fb263e32a0302f5b85194e29b1c4e55012881a60f84a81a3498d82447934e60df522aa1b3e20ffc746bc78cba535e7208f88ddc46aa9831ffaf81 +srcfiles size=4 + RELOC/source/xelatex/mynsfc/mynsfc.dtx +runfiles size=3 + RELOC/tex/xelatex/mynsfc/mynsfc.cls +catalogue-ctan /macros/xetex/latex/mynsfc +catalogue-date 2016-09-05 15:36:08 +0200 +catalogue-license lppl1.3 +catalogue-topics proposal +catalogue-version 1.01 + +name na-box +category Package +revision 45130 +shortdesc Arabic-aware version of pas-cours package +relocated 1 +longdesc This is a modified version of the pas-cours package made +longdesc compatible with XeLaTeX/polyglossia to write arabic documents +longdesc with fancy boxed theorem-alike environments. +containersize 2952 +containerchecksum 8b0659454d8324ca51c9e97f7957a3c14230dca0b4b8e047b961bad1b81d2a8b0220cf275bf84e9aae6a3d601fe93df3de94f603a198f6bea716064ae8675d0f +doccontainersize 978596 +doccontainerchecksum 2c78a71155eab3cfdf551830051dd360f6e9fc8085ebe364c13a79a1ebda0693d633e7ba08e31c356e46140c33bf3b190365cb88d944d2b3e8c0799ff68cdc8f +docfiles size=264 + RELOC/doc/xelatex/na-box/29.png + RELOC/doc/xelatex/na-box/30.png + RELOC/doc/xelatex/na-box/31.png + RELOC/doc/xelatex/na-box/README details="Readme" + RELOC/doc/xelatex/na-box/na-box_doc-back.pdf + RELOC/doc/xelatex/na-box/na-box_doc.listing + RELOC/doc/xelatex/na-box/na-box_doc.pdf details="Package documentation (in Arabic)" language="ar" + RELOC/doc/xelatex/na-box/na-box_doc.tex + RELOC/doc/xelatex/na-box/naammoh.tex + RELOC/doc/xelatex/na-box/nabox.png +runfiles size=3 + RELOC/tex/xelatex/na-box/na-box.sty +catalogue-also pas-cours +catalogue-ctan /macros/xetex/latex/na-box +catalogue-date 2017-08-28 05:03:56 +0200 +catalogue-license lppl +catalogue-topics teaching +catalogue-version 1.0 + +name na-position +category Package +revision 48071 +shortdesc Tables of relative positions of curves and asymptotes or tangents in Arabic documents +relocated 1 +longdesc This package facilitates, in most cases, the creation of tables +longdesc of relative positions of a curve and its asymptote, or a curve +longdesc and a tangent in one of its points. It depends on tkz-tab and +longdesc listofitems, as well as amsmath, amsfonts, mathrsfs, and +longdesc amssymb. This package has to be used with polyglossia and +longdesc XeLaTeX to produce documents in Arabic. +containersize 2280 +containerchecksum 1f5d742e5fcfce8495f2c772ae166775151b555b1e4922615e5f62ce161a167969c8d6043d542018debc69ef75f472995f498ef9f3b1f094b97d5b986285b1be +doccontainersize 359988 +doccontainerchecksum 569a4c0a03c224195752a072581e4c8a2ec428fc4644ba66c43c94e322ac495137f52b3b1cd5cf40741c83937ce056e610a2fb4f4b02f3f8a73d43fcb3fdb4d9 +docfiles size=96 + RELOC/doc/xelatex/na-position/README details="Readme" + RELOC/doc/xelatex/na-position/na-position.pdf details="Package documentation (Arabic)" language="ar" + RELOC/doc/xelatex/na-position/na-position.tex +runfiles size=4 + RELOC/tex/xelatex/na-position/na-position.sty +catalogue-ctan /macros/xetex/latex/na-position +catalogue-date 2018-06-22 05:53:55 +0200 +catalogue-license lppl +catalogue-topics maths arabic xetex +catalogue-version 1.1 + +name nag +category Package +revision 24741 +shortdesc Detecting and warning about obsolete LaTeX commands +relocated 1 +longdesc Old habits die hard. All the same, there are commands, classes +longdesc and packages which are outdated and superseded. The nag package +longdesc provides routines to warn the user about the use of such +longdesc obsolete things. As an example, we provide an extension that +longdesc detects many of the "sins" described in l2tabu. +containersize 7800 +containerchecksum a2d239ed1e12fd1b082c8df5531c9b83cf55c39b13781aa01848f3fd06136a9522598abf9e63580a93fb12ad7c392061b14d5e96b4d4f4dcf8180180280224a0 +doccontainersize 438652 +doccontainerchecksum 9a4859b67182b40428f720e2e955b591fd3fdf30acbe7c3214548766312833b3ebd5a046d1ca2e2b824e3bad95bde635a1cd112e8023395333cdcdb9cdf55ba9 +docfiles size=110 + RELOC/doc/latex/nag/README details="Readme" + RELOC/doc/latex/nag/nag.pdf details="Package documentation" + RELOC/doc/latex/nag/nagdemo.tex +srccontainersize 17648 +srccontainerchecksum 969b7e463e6e8eca51af114ba51d538d0a1f7b9ed3cb5dfecab92ec7eb913a872b740b2f434e854a7c11b31c7b3364120379a5732220833235912e73ee202878 +srcfiles size=15 + RELOC/source/latex/nag/nag.dtx + RELOC/source/latex/nag/nag.ins +runfiles size=10 + RELOC/tex/latex/nag/nag-abort.cfg + RELOC/tex/latex/nag/nag-experimental.cfg + RELOC/tex/latex/nag/nag-l2tabu.cfg + RELOC/tex/latex/nag/nag-orthodox.cfg + RELOC/tex/latex/nag/nag.sty +catalogue-ctan /macros/latex/contrib/nag +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics latex-qual +catalogue-version 0.7 + +name nameauth +category Package +revision 43586 +shortdesc Name authority mechanism for consistency in body text and index +relocated 1 +longdesc Publications, that reference many names, require editors and +longdesc proofreaders to track those names in the text and index. The +longdesc package offers name authority macros that allow authors and +longdesc compilers to normalize occurrences of names, variant name +longdesc forms, and pen names in the text and index. This may help +longdesc minimize writing and production time and cost. +containersize 6128 +containerchecksum e393937e84856a21433266f18f78d739036df951f68d21ff17c607206abcf6b77f32253be2e7a771f10f1f789df47fe6bd45f629417eff94b91ff9b4f7179f74 +doccontainersize 976704 +doccontainerchecksum b586f85eb88204670384a0c7559219704f92c9f03922f98ca01ae2a8206ba3afbd920f94374f3c62ea3923129708a2edd74bc9b79be0d09ed1c29491811cc2d1 +docfiles size=245 + RELOC/doc/latex/nameauth/Makefile + RELOC/doc/latex/nameauth/README details="Readme" + RELOC/doc/latex/nameauth/README.txt + RELOC/doc/latex/nameauth/examples.tex + RELOC/doc/latex/nameauth/nameauth.hd + RELOC/doc/latex/nameauth/nameauth.pdf details="Package documentation" +srccontainersize 63968 +srccontainerchecksum 781de5fa5d74cf295718a0225e5faa87c3f65aa7f42def1610eb43ea86371ee3dff406f7b7fb7ff5a1dcfba84671847ac975bd55b14ec15875712405d912bd9f +srcfiles size=81 + RELOC/source/latex/nameauth/nameauth.dtx + RELOC/source/latex/nameauth/nameauth.ins +runfiles size=12 + RELOC/tex/latex/nameauth/nameauth.sty +catalogue-ctan /macros/latex/contrib/nameauth +catalogue-date 2017-03-22 22:56:13 +0100 +catalogue-license lppl1.3 +catalogue-topics editorial editorial-consistency +catalogue-version 3.2 + +name namespc +category Package +revision 15878 +shortdesc Rudimentary C++-like namespaces in LaTeX +relocated 1 +longdesc The namespc package adds rudimentary C++-like namespace +longdesc functionality to LaTeX. It may be used to declare local LaTeX +longdesc commands, which can be made accessible in a later contexts +longdesc without defining them globally. +containersize 976 +containerchecksum 71ec09a2aee5f299e9620b9b90558bca11415cdbf4304d0e5777896f85cf4e30cc39508fd69ff831a86707e230cfca1773fd9a8bc50c37f310f8bfeff629d2d6 +doccontainersize 82880 +doccontainerchecksum 4bd240f3ce155ea517fc267af1925f2e84f7af694a1ee4a068a2679d97cb6f97fd77f8812017e05f33c935bb54a34459a9deeaaf43cdb4ed69d792676316734f +docfiles size=35 + RELOC/doc/latex/namespc/README details="Readme" + RELOC/doc/latex/namespc/namespc.pdf details="Package documentation" +srccontainersize 3492 +srccontainerchecksum 33579dd40ba708e2e8a727f923f727f893f2f8e9562d369b1e025b50300250010d2829217a7aa72c1ee5781f3ed501e60b010cfc3cf3211b4bed1168494fa4ab +srcfiles size=3 + RELOC/source/latex/namespc/namespc.dtx +runfiles size=1 + RELOC/tex/latex/namespc/namespc.sty +catalogue-ctan /macros/latex/contrib/namespc +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics latex-devel + +name nanicolle +category Package +revision 50930 +shortdesc Herbarium specimen labels in Chinese +relocated 1 +longdesc This package provides a LaTeX class nanicolle.cls for +longdesc typesetting labels of collection and of identification in +longdesc Chinese for plant herbarium specimens. So far, documents using +longdesc this class can only be compiled with XeLaTeX. Note: The name of +longdesc the package is a compound of the Japanese "nani" (meaning +longdesc "what") and a truncated form of the English "collect", thus +longdesc expressing the ideas of identification/classification +longdesc (taxonomy) and collection. +containersize 4936 +containerchecksum 19370551984748d28de078410056d6a31bf0d143075bcc672e7b48c4b77d59c08cb41af70218c01cbff752e37b799d1aaf016a3ef8eb0d9ea2bcf60e22bafe1f +doccontainersize 428604 +doccontainerchecksum 48b5a39be888b6a76fc2ca5996d13d60c20094061a4c84c59c212c6bc3fe57de2890ef317c69b84230e7430cb922775258b0a08f5090556609fc2c80f6e3f02f +docfiles size=186 + RELOC/doc/xelatex/nanicolle/ChinaMainland.pdf + RELOC/doc/xelatex/nanicolle/Dongguan.pdf + RELOC/doc/xelatex/nanicolle/README.md details="Readme" + RELOC/doc/xelatex/nanicolle/nanicolle-example.pdf + RELOC/doc/xelatex/nanicolle/nanicolle-example.tex + RELOC/doc/xelatex/nanicolle/nanicolle.pdf details="Package documentation" + RELOC/doc/xelatex/nanicolle/nanicolle.tex + RELOC/doc/xelatex/nanicolle/point.pdf +runfiles size=4 + RELOC/tex/xelatex/nanicolle/nanicolle.cls +catalogue-contact-bugs https://github.com/Mikumikunisiteageru/nanicolle/issues +catalogue-contact-repository https://github.com/Mikumikunisiteageru/nanicolle +catalogue-ctan /macros/xetex/latex/nanicolle +catalogue-date 2019-04-30 05:22:05 +0200 +catalogue-license lppl1.3c +catalogue-topics class biology covers labels chinese xetex +catalogue-version 2.00 + +name nanumtype1 +category Package +revision 29558 +shortdesc Type1 subfonts of Nanum Korean fonts +relocated 1 +longdesc Nanum is a unicode font designed especially for Korean-language +longdesc script. The font was designed by Sandoll Communication and +longdesc Fontrix; it includes the sans serif (gothic), serif (myeongjo), +longdesc pen script and brush script typefaces. The package provides +longdesc Type1 subfonts converted from Nanum Myeongjo (Regular and +longdesc ExtraBold) and Nanum Gothic (Regular and Bold) OTFs. C70, LUC, +longdesc T1, and TS1 font definition files are also provided. (The +longdesc package does not include OpenType/TrueType files, which are +longdesc available from Naver) +execute addMap nanumfonts.map +containersize 28242732 +containerchecksum fc775dae204d8f1ca7e05005ccba0bd568f00819519d34b2282028d7f2b89b9c1f9a091ed192def7281de97ea97c75b9327727489e8ff88585bb97cf5e8b8f10 +doccontainersize 78704 +doccontainerchecksum ff0bd0bcc32eb8166e7bff9d440692a3c21c5cc7fd7b8139b472fbc2e079cba0591d162e2a81090919990dba31d1e04b57d50c35ac1d0670ef9102c64abc88ad +docfiles size=29 + RELOC/doc/fonts/nanumtype1/COPYING + RELOC/doc/fonts/nanumtype1/README details="Readme" + RELOC/doc/fonts/nanumtype1/nanum-sampler.pdf details="Font sampler" + RELOC/doc/fonts/nanumtype1/nanum-sampler.tex +runfiles size=9476 + RELOC/fonts/afm/public/nanumtype1/nanumgtb00.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb01.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb02.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb03.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb04.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb11.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb20.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb21.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb22.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb23.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb24.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb25.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb26.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb27.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb2a.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb30.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb31.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb32.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb33.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb4e.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb4f.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb50.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb51.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb52.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb53.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb54.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb55.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb56.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb57.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb58.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb59.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb5a.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb5b.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb5c.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb5d.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb5e.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb5f.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb60.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb61.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb62.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb63.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb64.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb65.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb66.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb67.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb68.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb69.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb6a.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb6b.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb6c.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb6d.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb6e.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb6f.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb70.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb71.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb72.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb73.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb74.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb75.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb76.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb77.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb78.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb79.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb7a.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb7b.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb7c.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb7d.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb7e.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb7f.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb80.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb81.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb82.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb83.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb84.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb85.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb86.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb87.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb88.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb89.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb8a.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb8b.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb8c.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb8d.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb8e.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb8f.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb90.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb91.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb92.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb93.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb94.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb95.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb96.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb97.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb98.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb99.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb9a.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb9b.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb9c.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb9d.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb9e.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtb9f.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbac.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbad.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbae.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbaf.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbb0.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbb1.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbb2.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbb3.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbb4.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbb5.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbb6.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbb7.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbb8.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbb9.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbba.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbbb.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbbc.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbbd.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbbe.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbbf.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbc0.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbc1.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbc2.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbc3.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbc4.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbc5.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbc6.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbc7.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbc8.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbc9.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbca.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbcb.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbcc.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbcd.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbce.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbcf.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbd0.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbd1.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbd2.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbd3.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbd4.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbd5.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbd6.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbd7.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbf9.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbfa.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtbff.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm00.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm01.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm02.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm03.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm04.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm11.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm20.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm21.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm22.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm23.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm24.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm25.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm26.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm27.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm2a.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm30.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm31.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm32.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm33.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm4e.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm4f.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm50.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm51.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm52.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm53.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm54.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm55.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm56.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm57.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm58.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm59.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm5a.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm5b.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm5c.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm5d.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm5e.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm5f.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm60.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm61.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm62.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm63.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm64.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm65.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm66.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm67.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm68.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm69.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm6a.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm6b.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm6c.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm6d.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm6e.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm6f.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm70.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm71.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm72.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm73.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm74.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm75.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm76.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm77.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm78.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm79.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm7a.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm7b.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm7c.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm7d.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm7e.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm7f.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm80.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm81.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm82.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm83.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm84.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm85.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm86.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm87.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm88.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm89.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm8a.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm8b.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm8c.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm8d.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm8e.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm8f.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm90.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm91.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm92.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm93.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm94.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm95.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm96.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm97.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm98.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm99.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm9a.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm9b.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm9c.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm9d.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm9e.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtm9f.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmac.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmad.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmae.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmaf.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmb0.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmb1.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmb2.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmb3.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmb4.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmb5.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmb6.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmb7.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmb8.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmb9.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmba.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmbb.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmbc.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmbd.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmbe.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmbf.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmc0.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmc1.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmc2.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmc3.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmc4.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmc5.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmc6.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmc7.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmc8.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmc9.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmca.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmcb.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmcc.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmcd.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmce.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmcf.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmd0.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmd1.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmd2.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmd3.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmd4.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmd5.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmd6.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmd7.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmf9.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmfa.afm + RELOC/fonts/afm/public/nanumtype1/nanumgtmff.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb00.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb01.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb02.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb03.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb04.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb20.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb21.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb22.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb23.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb24.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb25.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb26.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb27.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb2a.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb30.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb31.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb32.afm + RELOC/fonts/afm/public/nanumtype1/nanummjb33.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbac.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbad.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbae.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbaf.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbb0.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbb1.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbb2.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbb3.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbb4.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbb5.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbb6.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbb7.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbb8.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbb9.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbba.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbbb.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbbc.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbbd.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbbe.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbbf.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbc0.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbc1.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbc2.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbc3.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbc4.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbc5.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbc6.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbc7.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbc8.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbc9.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbca.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbcb.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbcc.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbcd.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbce.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbcf.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbd0.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbd1.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbd2.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbd3.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbd4.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbd5.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbd6.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbd7.afm + RELOC/fonts/afm/public/nanumtype1/nanummjbff.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm00.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm01.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm02.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm03.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm04.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm20.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm21.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm22.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm23.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm24.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm25.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm26.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm27.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm30.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm31.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm32.afm + RELOC/fonts/afm/public/nanumtype1/nanummjm33.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmac.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmad.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmae.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmaf.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmb0.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmb1.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmb2.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmb3.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmb4.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmb5.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmb6.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmb7.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmb8.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmb9.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmba.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmbb.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmbc.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmbd.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmbe.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmbf.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmc0.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmc1.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmc2.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmc3.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmc4.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmc5.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmc6.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmc7.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmc8.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmc9.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmca.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmcb.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmcc.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmcd.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmce.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmcf.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmd0.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmd1.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmd2.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmd3.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmd4.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmd5.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmd6.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmd7.afm + RELOC/fonts/afm/public/nanumtype1/nanummjmff.afm + RELOC/fonts/afm/public/nanumtype1/t1nanumgtb.afm + RELOC/fonts/afm/public/nanumtype1/t1nanumgtm.afm + RELOC/fonts/afm/public/nanumtype1/t1nanummjb.afm + RELOC/fonts/afm/public/nanumtype1/t1nanummjm.afm + RELOC/fonts/map/dvips/nanumtype1/nanumfonts.map + RELOC/fonts/tfm/public/nanumtype1/nanumgtb00.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb01.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb02.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb03.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb04.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb11.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb20.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb21.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb22.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb23.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb24.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb25.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb26.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb27.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb2a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb30.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb31.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb32.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb33.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb4e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb4f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb50.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb51.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb52.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb53.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb54.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb55.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb56.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb57.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb58.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb59.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb5a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb5b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb5c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb5d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb5e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb5f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb60.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb61.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb62.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb63.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb64.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb65.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb66.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb67.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb68.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb69.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb6a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb6b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb6c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb6d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb6e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb6f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb70.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb71.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb72.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb73.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb74.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb75.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb76.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb77.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb78.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb79.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb7a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb7b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb7c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb7d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb7e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb7f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb80.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb81.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb82.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb83.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb84.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb85.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb86.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb87.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb88.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb89.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb8a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb8b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb8c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb8d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb8e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb8f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb90.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb91.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb92.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb93.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb94.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb95.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb96.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb97.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb98.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb99.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb9a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb9b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb9c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb9d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb9e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtb9f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbac.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbad.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbae.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbaf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbb0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbb1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbb2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbb3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbb4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbb5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbb6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbb7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbb8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbb9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbba.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbbb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbbc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbbd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbbe.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbbf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbc0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbc1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbc2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbc3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbc4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbc5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbc6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbc7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbc8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbc9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbca.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbcb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbcc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbcd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbce.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbcf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbd0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbd1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbd2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbd3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbd4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbd5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbd6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbd7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbf9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbfa.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbff.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo00.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo01.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo02.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo03.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo04.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo11.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo20.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo21.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo22.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo23.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo24.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo25.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo26.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo27.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo2a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo30.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo31.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo32.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo33.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo4e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo4f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo50.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo51.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo52.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo53.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo54.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo55.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo56.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo57.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo58.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo59.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo5a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo5b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo5c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo5d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo5e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo5f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo60.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo61.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo62.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo63.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo64.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo65.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo66.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo67.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo68.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo69.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo6a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo6b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo6c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo6d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo6e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo6f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo70.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo71.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo72.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo73.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo74.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo75.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo76.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo77.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo78.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo79.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo7a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo7b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo7c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo7d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo7e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo7f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo80.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo81.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo82.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo83.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo84.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo85.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo86.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo87.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo88.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo89.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo8a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo8b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo8c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo8d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo8e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo8f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo90.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo91.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo92.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo93.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo94.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo95.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo96.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo97.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo98.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo99.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo9a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo9b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo9c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo9d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo9e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbo9f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboac.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboad.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboae.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboaf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbob0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbob1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbob2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbob3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbob4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbob5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbob6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbob7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbob8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbob9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboba.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbobb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbobc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbobd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbobe.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbobf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboc0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboc1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboc2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboc3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboc4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboc5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboc6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboc7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboc8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboc9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboca.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbocb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbocc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbocd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboce.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbocf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbod0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbod1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbod2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbod3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbod4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbod5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbod6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbod7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbof9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtbofa.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtboff.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm00.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm01.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm02.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm03.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm04.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm11.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm20.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm21.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm22.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm23.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm24.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm25.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm26.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm27.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm2a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm30.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm31.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm32.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm33.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm4e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm4f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm50.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm51.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm52.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm53.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm54.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm55.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm56.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm57.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm58.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm59.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm5a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm5b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm5c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm5d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm5e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm5f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm60.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm61.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm62.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm63.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm64.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm65.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm66.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm67.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm68.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm69.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm6a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm6b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm6c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm6d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm6e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm6f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm70.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm71.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm72.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm73.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm74.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm75.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm76.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm77.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm78.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm79.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm7a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm7b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm7c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm7d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm7e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm7f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm80.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm81.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm82.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm83.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm84.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm85.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm86.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm87.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm88.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm89.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm8a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm8b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm8c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm8d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm8e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm8f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm90.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm91.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm92.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm93.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm94.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm95.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm96.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm97.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm98.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm99.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm9a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm9b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm9c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm9d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm9e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtm9f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmac.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmad.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmae.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmaf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmb0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmb1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmb2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmb3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmb4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmb5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmb6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmb7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmb8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmb9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmba.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmbb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmbc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmbd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmbe.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmbf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmc0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmc1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmc2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmc3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmc4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmc5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmc6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmc7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmc8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmc9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmca.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmcb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmcc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmcd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmce.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmcf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmd0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmd1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmd2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmd3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmd4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmd5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmd6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmd7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmf9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmfa.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmff.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo00.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo01.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo02.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo03.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo04.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo11.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo20.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo21.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo22.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo23.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo24.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo25.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo26.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo27.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo2a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo30.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo31.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo32.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo33.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo4e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo4f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo50.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo51.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo52.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo53.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo54.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo55.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo56.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo57.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo58.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo59.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo5a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo5b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo5c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo5d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo5e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo5f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo60.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo61.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo62.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo63.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo64.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo65.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo66.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo67.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo68.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo69.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo6a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo6b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo6c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo6d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo6e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo6f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo70.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo71.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo72.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo73.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo74.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo75.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo76.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo77.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo78.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo79.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo7a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo7b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo7c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo7d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo7e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo7f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo80.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo81.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo82.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo83.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo84.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo85.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo86.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo87.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo88.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo89.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo8a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo8b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo8c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo8d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo8e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo8f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo90.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo91.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo92.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo93.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo94.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo95.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo96.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo97.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo98.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo99.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo9a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo9b.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo9c.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo9d.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo9e.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmo9f.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoac.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoad.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoae.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoaf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmob0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmob1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmob2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmob3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmob4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmob5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmob6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmob7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmob8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmob9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoba.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmobb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmobc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmobd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmobe.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmobf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoc9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoca.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmocb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmocc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmocd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoce.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmocf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmod0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmod1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmod2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmod3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmod4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmod5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmod6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmod7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmof9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmofa.tfm + RELOC/fonts/tfm/public/nanumtype1/nanumgtmoff.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb00.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb01.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb02.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb03.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb04.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb20.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb21.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb22.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb23.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb24.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb25.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb26.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb27.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb2a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb30.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb31.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb32.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjb33.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbac.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbad.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbae.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbaf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbb0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbb1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbb2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbb3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbb4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbb5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbb6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbb7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbb8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbb9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbba.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbbb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbbc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbbd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbbe.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbbf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbc0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbc1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbc2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbc3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbc4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbc5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbc6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbc7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbc8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbc9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbca.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbcb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbcc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbcd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbce.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbcf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbd0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbd1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbd2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbd3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbd4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbd5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbd6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbd7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbff.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo00.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo01.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo02.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo03.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo04.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo20.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo21.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo22.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo23.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo24.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo25.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo26.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo27.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo2a.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo30.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo31.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo32.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbo33.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboac.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboad.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboae.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboaf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbob0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbob1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbob2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbob3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbob4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbob5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbob6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbob7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbob8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbob9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboba.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbobb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbobc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbobd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbobe.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbobf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboc0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboc1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboc2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboc3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboc4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboc5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboc6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboc7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboc8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboc9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboca.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbocb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbocc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbocd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboce.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbocf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbod0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbod1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbod2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbod3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbod4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbod5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbod6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjbod7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjboff.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm00.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm01.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm02.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm03.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm04.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm20.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm21.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm22.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm23.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm24.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm25.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm26.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm27.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm30.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm31.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm32.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjm33.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmac.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmad.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmae.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmaf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmb0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmb1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmb2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmb3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmb4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmb5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmb6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmb7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmb8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmb9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmba.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmbb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmbc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmbd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmbe.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmbf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmc0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmc1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmc2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmc3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmc4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmc5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmc6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmc7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmc8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmc9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmca.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmcb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmcc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmcd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmce.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmcf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmd0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmd1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmd2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmd3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmd4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmd5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmd6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmd7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmff.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo00.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo01.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo02.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo03.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo04.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo20.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo21.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo22.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo23.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo24.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo25.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo26.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo27.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo30.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo31.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo32.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmo33.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoac.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoad.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoae.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoaf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmob0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmob1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmob2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmob3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmob4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmob5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmob6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmob7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmob8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmob9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoba.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmobb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmobc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmobd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmobe.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmobf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoc0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoc1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoc2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoc3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoc4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoc5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoc6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoc7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoc8.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoc9.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoca.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmocb.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmocc.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmocd.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoce.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmocf.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmod0.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmod1.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmod2.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmod3.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmod4.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmod5.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmod6.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmod7.tfm + RELOC/fonts/tfm/public/nanumtype1/nanummjmoff.tfm + RELOC/fonts/tfm/public/nanumtype1/t1nanumgtb.tfm + RELOC/fonts/tfm/public/nanumtype1/t1nanumgtbo.tfm + RELOC/fonts/tfm/public/nanumtype1/t1nanumgtm.tfm + RELOC/fonts/tfm/public/nanumtype1/t1nanumgtmo.tfm + RELOC/fonts/tfm/public/nanumtype1/t1nanummjb.tfm + RELOC/fonts/tfm/public/nanumtype1/t1nanummjbo.tfm + RELOC/fonts/tfm/public/nanumtype1/t1nanummjm.tfm + RELOC/fonts/tfm/public/nanumtype1/t1nanummjmo.tfm + RELOC/fonts/tfm/public/nanumtype1/ts1nanumgtb.tfm + RELOC/fonts/tfm/public/nanumtype1/ts1nanumgtbo.tfm + RELOC/fonts/tfm/public/nanumtype1/ts1nanumgtm.tfm + RELOC/fonts/tfm/public/nanumtype1/ts1nanumgtmo.tfm + RELOC/fonts/tfm/public/nanumtype1/ts1nanummjb.tfm + RELOC/fonts/tfm/public/nanumtype1/ts1nanummjbo.tfm + RELOC/fonts/tfm/public/nanumtype1/ts1nanummjm.tfm + RELOC/fonts/tfm/public/nanumtype1/ts1nanummjmo.tfm + RELOC/fonts/type1/public/nanumtype1/nanumgtb00.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb01.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb02.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb03.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb04.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb11.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb20.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb21.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb22.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb23.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb24.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb25.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb26.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb27.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb2a.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb30.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb31.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb32.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb33.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb4e.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb4f.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb50.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb51.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb52.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb53.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb54.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb55.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb56.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb57.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb58.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb59.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb5a.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb5b.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb5c.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb5d.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb5e.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb5f.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb60.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb61.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb62.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb63.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb64.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb65.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb66.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb67.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb68.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb69.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb6a.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb6b.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb6c.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb6d.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb6e.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb6f.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb70.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb71.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb72.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb73.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb74.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb75.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb76.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb77.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb78.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb79.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb7a.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb7b.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb7c.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb7d.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb7e.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb7f.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb80.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb81.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb82.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb83.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb84.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb85.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb86.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb87.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb88.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb89.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb8a.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb8b.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb8c.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb8d.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb8e.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb8f.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb90.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb91.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb92.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb93.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb94.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb95.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb96.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb97.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb98.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb99.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb9a.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb9b.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb9c.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb9d.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb9e.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtb9f.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbac.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbad.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbae.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbaf.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbb0.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbb1.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbb2.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbb3.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbb4.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbb5.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbb6.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbb7.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbb8.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbb9.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbba.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbbb.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbbc.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbbd.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbbe.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbbf.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbc0.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbc1.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbc2.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbc3.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbc4.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbc5.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbc6.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbc7.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbc8.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbc9.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbca.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbcb.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbcc.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbcd.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbce.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbcf.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbd0.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbd1.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbd2.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbd3.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbd4.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbd5.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbd6.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbd7.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbf9.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbfa.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtbff.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm00.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm01.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm02.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm03.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm04.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm11.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm20.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm21.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm22.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm23.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm24.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm25.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm26.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm27.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm2a.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm30.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm31.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm32.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm33.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm4e.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm4f.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm50.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm51.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm52.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm53.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm54.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm55.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm56.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm57.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm58.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm59.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm5a.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm5b.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm5c.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm5d.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm5e.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm5f.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm60.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm61.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm62.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm63.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm64.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm65.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm66.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm67.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm68.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm69.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm6a.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm6b.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm6c.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm6d.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm6e.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm6f.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm70.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm71.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm72.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm73.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm74.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm75.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm76.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm77.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm78.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm79.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm7a.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm7b.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm7c.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm7d.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm7e.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm7f.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm80.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm81.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm82.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm83.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm84.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm85.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm86.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm87.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm88.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm89.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm8a.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm8b.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm8c.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm8d.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm8e.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm8f.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm90.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm91.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm92.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm93.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm94.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm95.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm96.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm97.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm98.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm99.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm9a.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm9b.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm9c.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm9d.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm9e.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtm9f.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmac.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmad.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmae.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmaf.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmb0.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmb1.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmb2.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmb3.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmb4.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmb5.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmb6.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmb7.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmb8.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmb9.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmba.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmbb.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmbc.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmbd.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmbe.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmbf.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmc0.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmc1.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmc2.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmc3.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmc4.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmc5.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmc6.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmc7.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmc8.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmc9.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmca.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmcb.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmcc.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmcd.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmce.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmcf.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmd0.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmd1.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmd2.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmd3.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmd4.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmd5.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmd6.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmd7.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmf9.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmfa.pfb + RELOC/fonts/type1/public/nanumtype1/nanumgtmff.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb00.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb01.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb02.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb03.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb04.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb20.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb21.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb22.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb23.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb24.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb25.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb26.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb27.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb2a.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb30.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb31.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb32.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjb33.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbac.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbad.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbae.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbaf.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbb0.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbb1.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbb2.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbb3.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbb4.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbb5.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbb6.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbb7.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbb8.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbb9.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbba.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbbb.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbbc.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbbd.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbbe.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbbf.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbc0.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbc1.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbc2.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbc3.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbc4.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbc5.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbc6.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbc7.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbc8.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbc9.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbca.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbcb.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbcc.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbcd.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbce.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbcf.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbd0.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbd1.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbd2.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbd3.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbd4.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbd5.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbd6.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbd7.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjbff.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm00.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm01.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm02.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm03.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm04.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm20.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm21.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm22.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm23.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm24.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm25.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm26.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm27.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm30.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm31.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm32.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjm33.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmac.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmad.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmae.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmaf.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmb0.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmb1.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmb2.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmb3.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmb4.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmb5.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmb6.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmb7.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmb8.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmb9.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmba.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmbb.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmbc.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmbd.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmbe.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmbf.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmc0.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmc1.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmc2.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmc3.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmc4.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmc5.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmc6.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmc7.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmc8.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmc9.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmca.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmcb.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmcc.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmcd.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmce.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmcf.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmd0.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmd1.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmd2.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmd3.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmd4.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmd5.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmd6.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmd7.pfb + RELOC/fonts/type1/public/nanumtype1/nanummjmff.pfb + RELOC/fonts/type1/public/nanumtype1/t1nanumgtb.pfb + RELOC/fonts/type1/public/nanumtype1/t1nanumgtm.pfb + RELOC/fonts/type1/public/nanumtype1/t1nanummjb.pfb + RELOC/fonts/type1/public/nanumtype1/t1nanummjm.pfb + RELOC/fonts/vf/public/nanumtype1/ts1nanumgtb.vf + RELOC/fonts/vf/public/nanumtype1/ts1nanumgtbo.vf + RELOC/fonts/vf/public/nanumtype1/ts1nanumgtm.vf + RELOC/fonts/vf/public/nanumtype1/ts1nanumgtmo.vf + RELOC/fonts/vf/public/nanumtype1/ts1nanummjb.vf + RELOC/fonts/vf/public/nanumtype1/ts1nanummjbo.vf + RELOC/fonts/vf/public/nanumtype1/ts1nanummjm.vf + RELOC/fonts/vf/public/nanumtype1/ts1nanummjmo.vf + RELOC/tex/latex/nanumtype1/c70nanumgt.fd + RELOC/tex/latex/nanumtype1/c70nanummj.fd + RELOC/tex/latex/nanumtype1/c70uhcmj.fd + RELOC/tex/latex/nanumtype1/lucnanumgt.fd + RELOC/tex/latex/nanumtype1/lucnanummj.fd + RELOC/tex/latex/nanumtype1/t1nanumgt.fd + RELOC/tex/latex/nanumtype1/t1nanummj.fd + RELOC/tex/latex/nanumtype1/ts1nanumgt.fd + RELOC/tex/latex/nanumtype1/ts1nanummj.fd +catalogue-ctan /fonts/nanumtype1 +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license ofl +catalogue-topics font font-cjk font-type1 korean +catalogue-version 3.0 + +name nar +category Package +revision 38100 +shortdesc BibTeX style for Nucleic Acid Research +relocated 1 +longdesc This BibTeX bibliography style is for the journal Nucleic Acid +longdesc Research. It was adapted from the standard unsrt.bst style +longdesc file. +containersize 6324 +containerchecksum 212f1a002743ba14eac41de05a88325533db8b25d9f12b141064b9aa98f78dd5c28caa7cdaa4419829e6180e56ff93e42b069cdebb52fb8ef40c9652b8a23c79 +runfiles size=6 + RELOC/bibtex/bst/nar/nar.bst +catalogue-ctan /biblio/bibtex/contrib/misc/nar.bst +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics bibtex-sty journalpub +catalogue-version 3.19 + +name natbib +category Package +revision 20668 +shortdesc Flexible bibliography support +relocated 1 +longdesc The bundle provides a package that implements both author-year +longdesc and numbered references, as well as much detailed of support +longdesc for other bibliography use. Also Provided are versions of the +longdesc standard BibTeX styles that are compatible with +longdesc natbib--plainnat, unsrtnat, abbrnat. The bibliography styles +longdesc produced by custom-bib are designed from the start to be +longdesc compatible with natbib. +containersize 16616 +containerchecksum 7e78ab76bd86a864eeccef86a64fb28b6b063d5a12210da80f0c5a5608df429fc2939580b88263dc50fd68d841580a12358617e20a0048ccbc9e148ba04d5f26 +doccontainersize 423668 +doccontainerchecksum afe78103a6ba2d58c6f6ba6927101cb481abb1b028c4cc09dca59296d30978c636e837c248eb4f8fa44aa8fa7f6db1e1b6855afac9d99b0cfa030dbad6e59edc +docfiles size=123 + RELOC/doc/latex/natbib/README.1st + RELOC/doc/latex/natbib/README.v831b details="Readme for this release" language="en" + RELOC/doc/latex/natbib/natbib.ltx + RELOC/doc/latex/natbib/natbib.pdf details="Package documentation" language="en" + RELOC/doc/latex/natbib/natnotes.pdf details="Reference Sheet" language="en" + RELOC/doc/latex/natbib/natnotes.tex +srccontainersize 64136 +srccontainerchecksum ac850d6b92e7cf538f564d052593319ec1b1366d74dbf86e55f0c59ab3a01ad79b780378e816289aedf9b645774cbde56b7d186abafa8d1ddaa6c32d676141eb +srcfiles size=70 + RELOC/source/latex/natbib/bibentry.drv + RELOC/source/latex/natbib/bibentry.dtx + RELOC/source/latex/natbib/bibentry.ins + RELOC/source/latex/natbib/natbib.dtx + RELOC/source/latex/natbib/natbib.ins +runfiles size=33 + RELOC/bibtex/bst/natbib/abbrvnat.bst + RELOC/bibtex/bst/natbib/plainnat.bst + RELOC/bibtex/bst/natbib/unsrtnat.bst + RELOC/tex/latex/natbib/bibentry.sty + RELOC/tex/latex/natbib/natbib.sty +catalogue-ctan /macros/latex/contrib/natbib +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics bibtex-supp +catalogue-version 8.31b + +name natded +category Package +revision 32693 +shortdesc Typeset natural deduction proofs +relocated 1 +longdesc The package provides commands to typeset proofs in the style +longdesc used by Jaskowski, or that of Kalish and Montague. +containersize 3044 +containerchecksum 85568d2bd3b729cda5e4512a2e3309353e7abdcd6a02ee3f86e07bf65cd74ca9581d7b2746d582b704a116313b77cc5ea94f19fe0d233a3b41c4ae88a8704f12 +doccontainersize 339336 +doccontainerchecksum 5cc23aaaf6006c1f77d676ad1f20d3a62d9ac8d8be6f41e68085844f6060d570baa04000bf3108c975add502c7ad62086509464753474a74c43d045122b28294 +docfiles size=92 + RELOC/doc/latex/natded/README.md + RELOC/doc/latex/natded/extended_doc.pdf details="Extended documentation" + RELOC/doc/latex/natded/extended_doc.tex + RELOC/doc/latex/natded/natded.pdf details="Package documentation" + RELOC/doc/latex/natded/natded.tex +runfiles size=4 + RELOC/tex/latex/natded/natded.sty +catalogue-ctan /macros/latex/contrib/natded +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics proof +catalogue-version 0.1 + +name nath +category Package +revision 15878 +shortdesc Natural mathematics notation +relocated 1 +longdesc Nath is a LaTeX (both 2e and 2.09) style to separate +longdesc presentation and content in mathematical typography. The style +longdesc delivers a particular context-dependent presentation on the +longdesc basis of a rather coarse context-independent notation. +longdesc Highlighted features: depending on the context, the command +longdesc \frac produces either built-up or case or solidus fractions, +longdesc with parentheses added whenever required for preservation of +longdesc the mathematical meaning; delimiters adapt their size to the +longdesc material enclosed, rendering \left and \right almost obsolete. +containersize 22156 +containerchecksum 2eed9bc55d9d994df8710703c5acee9fb07d8c9732288740cc3c20740bd8db1e3d22617886818ceffb0346110dcd0dbfafaf192878500b2865523d00c6e02bf0 +doccontainersize 133380 +doccontainerchecksum ea75b3f282f81963484b2f6b29513a99f3153f222931dfa811deca40cc79a814a225a0a79e67237f53e3aabd33f7749095d3c7fb8f374ec802ee054ebca291d4 +docfiles size=48 + RELOC/doc/latex/nath/README details="Package Readme" + RELOC/doc/latex/nath/nathguide.pdf details="Package documentation" + RELOC/doc/latex/nath/nathguide.tex +runfiles size=21 + RELOC/tex/latex/nath/nath.sty +catalogue-ctan /macros/latex/contrib/nath +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics maths + +name nature +category Package +revision 21819 +shortdesc Prepare papers for the journal Nature +relocated 1 +longdesc Nature does not accept papers in LaTeX, but it does accept PDF. +longdesc This class and BibTeX style provide what seems to be necessary +longdesc to produce papers in a format acceptable to the publisher. +containersize 9504 +containerchecksum 78b6e945642bf2073e49acb318a0ff78c1ad24d38c28133b08d5e2881e6e5ee2dd6e8634b467047145dd72d08bfefefc631fd81c7e0facb590be2f9f4798ff6d +doccontainersize 3148 +doccontainerchecksum cac72025fbb65e32fff8dbe3a457e28b2953ce2a14b9359b93724073d1c56761524f2e3200f80aabfea1aa0747fb010bb78586978856c89348fcb255630e5d9a +docfiles size=3 + RELOC/doc/latex/nature/README details="Readme" + RELOC/doc/latex/nature/nature-template.tex +runfiles size=11 + RELOC/bibtex/bst/nature/naturemag.bst + RELOC/tex/latex/nature/nature.cls +catalogue-ctan /macros/latex/contrib/nature +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics journalpub +catalogue-version 1.0 + +name navigator +category Package +revision 41413 +shortdesc PDF features across formats and engines +relocated 1 +longdesc Navigator implements PDF features for all formats (with some +longdesc limitations in ConTeXt) with pdfTeX, LuaTeX and XeTeX (i.e. +longdesc xdvipdfmx). Features include: Customizable outlines (i.e. +longdesc bookmarks); Anchors; Links and actions (e.g. JavaScript or +longdesc user-defined PDF actions); File embedding (not in ConTeXt); +longdesc Document information and PDF viewer's display (not in ConTeXt); +longdesc and Commands to create and use raw PDF objects. Navigator +longdesc requires texapi and yax, both version at least 1.03. +containersize 6840 +containerchecksum 868f3c08b71f670010fdad0320e4792929d31c2be1b29fbb38da518288596dc299b58635ebc8e7551b9191954b76280e87c47b1eb3c4987fbae3afcd133a5c2d +doccontainersize 140676 +doccontainerchecksum 56605790284309e8b6432152bdd6765172e9e7c9c6ca88b07ce5b4b19ac792df21879999a47663dbffe7b3dfcf6da0de3e8f8399cc65fc96dc2e8e3a57350f47 +docfiles size=42 + RELOC/doc/generic/navigator/README details="Readme" + RELOC/doc/generic/navigator/navigator-doc.pdf details="Package documentation" + RELOC/doc/generic/navigator/navigator-doc.tex +runfiles size=8 + RELOC/tex/generic/navigator/navigator.sty + RELOC/tex/generic/navigator/navigator.tex + RELOC/tex/generic/navigator/t-navigator.tex +catalogue-also hyperref +catalogue-ctan /macros/generic/navigator +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics hyper pdf-feat +catalogue-version 1.1 + +name navydocs +category Package +revision 41643 +shortdesc Support for Technical Reports by US Navy Organizations +relocated 1 +longdesc The navydocs package provides an easy means for creating title +longdesc pages and the following supplementary material pages used in +longdesc technical reports by United States Navy organizations. These +longdesc pages are generated by specifying the page content via a set of +longdesc commands and then calling a macro to create the page at its +longdesc occurence in the document. This package is provided in the hope +longdesc that it proves useful to other Navy organizations, with users +longdesc contributing macros for their organizations. +containersize 4116 +containerchecksum b1a5afb90babbdf8fbba1915b88cdbf30a0244d8363c25dd9ce33bb153f9e8e0437146d9883016a40b1cf55c1dc02a06a7d2b72947326f5dc13998beaabff923 +doccontainersize 1048836 +doccontainerchecksum 2122252986f1fc852a121e09ac4f6a6a6c23f9227e374809f2968e729602f6d870bd9293fe1d456c4cc04aa48ee01361d37695c7290bb047f2c8f9a41981d3d0 +docfiles size=278 + RELOC/doc/latex/navydocs/Makefile + RELOC/doc/latex/navydocs/README.txt details="Readme" + RELOC/doc/latex/navydocs/graphics/navy-logo-102.png + RELOC/doc/latex/navydocs/navydocs.pdf details="Package documentation" + RELOC/doc/latex/navydocs/sampleNavyReport.tex +srccontainersize 13888 +srccontainerchecksum aedc1a3bde2379780b1042f9fb103081acde19e4f76f5608d0382756b8f9bf0d4743aa3aa66556bfc9240d2044336a609f3b1efbf0b4780af87b66109293b225 +srcfiles size=13 + RELOC/source/latex/navydocs/navydocs.dtx + RELOC/source/latex/navydocs/navydocs.ins +runfiles size=3 + RELOC/tex/latex/navydocs/navydocs.sty +catalogue-ctan /macros/latex/contrib/navydocs +catalogue-date 2016-07-13 07:24:29 +0200 +catalogue-license lppl1.3 +catalogue-topics titlepage report-like +catalogue-version 1.1 + +name ncclatex +category Package +revision 15878 +shortdesc An extended general-purpose class +relocated 1 +longdesc The ncc class provides a framework for a common class to +longdesc replace the standard article, book and report classes, and +longdesc providing a "preprint" class. The class's extensions are +longdesc provided in a number of small packages, some of which may also +longdesc be used with the standard classes. The ncclatex package also +longdesc loads many of the packages of, and requires the latest version +longdesc of the ncctools bundle. +containersize 17908 +containerchecksum 88ec3d2c350521fdb978734d32bb7eb9bacee0ecb95ae051d7bb039cb86e6dd1eba3b4ae93881ef8fa2623e99f6dba9b126373f181c4668176eaaafa94aa992e +doccontainersize 574580 +doccontainerchecksum e9c08ac08ee2316b07610bde89aee98289b937e8dbfdc86b392cae02037632d6d303c799f74f381f89a6bd4f4397a8c4d78025a88b8fa4ebbce4be663167f2ce +docfiles size=172 + RELOC/doc/latex/ncclatex/README details="Readme" + RELOC/doc/latex/ncclatex/changes.txt + RELOC/doc/latex/ncclatex/manifest.txt + RELOC/doc/latex/ncclatex/ncclatex.pdf details="Package documentation" + RELOC/doc/latex/ncclatex/ncclatex.tex + RELOC/doc/latex/ncclatex/nccnews.pdf details="Package news" language="ru" +runfiles size=30 + RELOC/tex/latex/ncclatex/cp1251-light.def + RELOC/tex/latex/ncclatex/ncc.cls + RELOC/tex/latex/ncclatex/ncc10.clo + RELOC/tex/latex/ncclatex/ncc11.clo + RELOC/tex/latex/ncclatex/ncc12.clo + RELOC/tex/latex/ncclatex/ncc14.clo + RELOC/tex/latex/ncclatex/nccart.clo + RELOC/tex/latex/ncclatex/nccbiblist.sty + RELOC/tex/latex/ncclatex/nccbook.clo + RELOC/tex/latex/ncclatex/nccdefaults.sty + RELOC/tex/latex/ncclatex/nccfit.clo + RELOC/tex/latex/ncclatex/ncchdr.sty + RELOC/tex/latex/ncclatex/nccheadings.sty + RELOC/tex/latex/ncclatex/nccindex.sty + RELOC/tex/latex/ncclatex/ncclatex.sty + RELOC/tex/latex/ncclatex/nccltrus.sty + RELOC/tex/latex/ncclatex/nccold.sty + RELOC/tex/latex/ncclatex/nccproc.cls + RELOC/tex/latex/ncclatex/nccsections.sty + RELOC/tex/latex/ncclatex/ncctheorems.sty + RELOC/tex/latex/ncclatex/ncctitle.clo + RELOC/tex/latex/ncclatex/ncctitle.sty + RELOC/tex/latex/ncclatex/ncctitlepage.sty + RELOC/tex/latex/ncclatex/sibjnm.cls +catalogue-ctan /macros/latex/contrib/ncclatex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics class +catalogue-version 1.5 + +name ncctools +category Package +revision 48127 +shortdesc A collection of general packages for LaTeX +relocated 1 +longdesc The NCCtools bundle contains many packages for general use +longdesc under LaTeX; many are also used by NCC LaTeX. The bundle +longdesc includes tools for: executing commands after a package is +longdesc loaded; watermarks; counter manipulation (dynamic counters, +longdesc changing counter numbering with another counter); improvements +longdesc to the description environment; hyphenation of compound words; +longdesc new levels of footnotes; space-filling patterns; "poor man's" +longdesc Black Board Bold symbols; alignment of the content of a box; +longdesc use comma as decimal separator; boxes with their own crop +longdesc marks; page cropmarks; improvements to fancy headers; float +longdesc "styles", mini floats, side floats; manually marked footnotes; +longdesc extension of amsmath; control of paragraph skip; an envelope to +longdesc the graphicx package; dashed and multiple rules; alternative +longdesc techniques for declarations of sections, captions, and +longdesc toc-entries; generalised text-stretching; generation of new +longdesc theorem-like environments; control of the text area; centred +longdesc page layouts; and un-numbered top-level section. +containersize 24564 +containerchecksum d9d575679a675341325138a67c1349d2941666fd37780f4cde0d7f7342d6ebe35a810f49fcb352bb25166a9ed46c28e5828c932e4abd10ce42fc95cc9044d62b +doccontainersize 2371452 +doccontainerchecksum 9eed57455759857c495f9fd3094d27e2b21d9456847f0e84f96b10c975fb3cc93c0af0f07f4aba87b31269b94d124d613d69f98a4d5d1c79e6adc4549d44df41 +docfiles size=753 + RELOC/doc/latex/ncctools/README details="Readme" + RELOC/doc/latex/ncctools/README.source + RELOC/doc/latex/ncctools/afterpackage.pdf + RELOC/doc/latex/ncctools/changes.txt + RELOC/doc/latex/ncctools/dcounter.pdf + RELOC/doc/latex/ncctools/desclist.pdf + RELOC/doc/latex/ncctools/extdash.pdf + RELOC/doc/latex/ncctools/manifest.txt + RELOC/doc/latex/ncctools/manyfoot.pdf + RELOC/doc/latex/ncctools/mboxfill.pdf + RELOC/doc/latex/ncctools/nccbbb.pdf + RELOC/doc/latex/ncctools/nccboxes.pdf + RELOC/doc/latex/ncctools/ncccomma.pdf + RELOC/doc/latex/ncctools/ncccropbox.pdf + RELOC/doc/latex/ncctools/ncccropmark.pdf + RELOC/doc/latex/ncctools/nccfancyhdr.pdf + RELOC/doc/latex/ncctools/nccfloats.pdf + RELOC/doc/latex/ncctools/nccfoots.pdf + RELOC/doc/latex/ncctools/nccmath.pdf + RELOC/doc/latex/ncctools/nccparskip.pdf + RELOC/doc/latex/ncctools/nccpic.pdf + RELOC/doc/latex/ncctools/nccrules.pdf + RELOC/doc/latex/ncctools/nccsect.pdf + RELOC/doc/latex/ncctools/nccstretch.pdf + RELOC/doc/latex/ncctools/nccthm.pdf + RELOC/doc/latex/ncctools/ncctools.pdf + RELOC/doc/latex/ncctools/ncctools.tex + RELOC/doc/latex/ncctools/textarea.pdf + RELOC/doc/latex/ncctools/tocenter.pdf + RELOC/doc/latex/ncctools/topsection.pdf + RELOC/doc/latex/ncctools/watermark.pdf +srccontainersize 91368 +srccontainerchecksum 184ac1ffbbc2933485e32f08abe0f488aeaa7b5bfd0d8a9f4f67974f8d7e759eef0085ac46b0eb49f781306f4579c4746947895c66f897e48cee30b6adfafdec +srcfiles size=120 + RELOC/source/latex/ncctools/afterpackage.dtx + RELOC/source/latex/ncctools/dcounter.dtx + RELOC/source/latex/ncctools/desclist.dtx + RELOC/source/latex/ncctools/extdash.dtx + RELOC/source/latex/ncctools/manyfoot.dtx + RELOC/source/latex/ncctools/mboxfill.dtx + RELOC/source/latex/ncctools/nccbbb.dtx + RELOC/source/latex/ncctools/nccboxes.dtx + RELOC/source/latex/ncctools/ncccomma.dtx + RELOC/source/latex/ncctools/ncccropbox.dtx + RELOC/source/latex/ncctools/ncccropmark.dtx + RELOC/source/latex/ncctools/nccfancyhdr.dtx + RELOC/source/latex/ncctools/nccfloats.dtx + RELOC/source/latex/ncctools/nccfoots.dtx + RELOC/source/latex/ncctools/nccmath.dtx + RELOC/source/latex/ncctools/nccparskip.dtx + RELOC/source/latex/ncctools/nccpic.dtx + RELOC/source/latex/ncctools/nccrules.dtx + RELOC/source/latex/ncctools/nccsect.dtx + RELOC/source/latex/ncctools/nccstretch.dtx + RELOC/source/latex/ncctools/nccthm.dtx + RELOC/source/latex/ncctools/ncctools.ins + RELOC/source/latex/ncctools/textarea.dtx + RELOC/source/latex/ncctools/tocenter.dtx + RELOC/source/latex/ncctools/topsection.dtx + RELOC/source/latex/ncctools/watermark.dtx +runfiles size=43 + RELOC/tex/latex/ncctools/afterpackage.sty + RELOC/tex/latex/ncctools/dcounter.sty + RELOC/tex/latex/ncctools/desclist.sty + RELOC/tex/latex/ncctools/extdash.sty + RELOC/tex/latex/ncctools/manyfoot.sty + RELOC/tex/latex/ncctools/mboxfill.sty + RELOC/tex/latex/ncctools/nccbbb.sty + RELOC/tex/latex/ncctools/nccboxes.sty + RELOC/tex/latex/ncctools/ncccomma.sty + RELOC/tex/latex/ncctools/ncccropbox.sty + RELOC/tex/latex/ncctools/ncccropmark.sty + RELOC/tex/latex/ncctools/nccfancyhdr.sty + RELOC/tex/latex/ncctools/nccfloats.sty + RELOC/tex/latex/ncctools/nccfoots.sty + RELOC/tex/latex/ncctools/nccmath.sty + RELOC/tex/latex/ncctools/nccparskip.sty + RELOC/tex/latex/ncctools/nccpic.sty + RELOC/tex/latex/ncctools/nccrules.sty + RELOC/tex/latex/ncctools/nccsect.sty + RELOC/tex/latex/ncctools/nccstretch.sty + RELOC/tex/latex/ncctools/nccthm.sty + RELOC/tex/latex/ncctools/textarea.sty + RELOC/tex/latex/ncctools/tocenter.sty + RELOC/tex/latex/ncctools/topsection.sty + RELOC/tex/latex/ncctools/watermark.sty +catalogue-ctan /macros/latex/contrib/ncctools +catalogue-date 2018-07-03 18:43:47 +0200 +catalogue-license lppl +catalogue-topics collection +catalogue-version 3.5.2 + +name ncntrsbk +category Package +revision 31835 +catalogue urw-base35 +shortdesc URW "Base 35" font pack for LaTeX +relocated 1 +longdesc A set of fonts for use as "drop-in" replacements for Adobe's +longdesc basic set, comprising: Century Schoolbook (substituting for +longdesc Adobe's New Century Schoolbook); Dingbats (substituting for +longdesc Adobe's Zapf Dingbats); Nimbus Mono L (substituting for Abobe's +longdesc Courier); Nimbus Roman No9 L (substituting for Adobe's Times); +longdesc Nimbus Sans L (substituting for Adobe's Helvetica); Standard +longdesc Symbols L (substituting for Adobe's Symbol); URW Bookman; URW +longdesc Chancery L Medium Italic (substituting for Adobe's Zapf +longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant +longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). +execute addMap unc.map +containersize 290876 +containerchecksum e023d0a407f666de1415728a90014041feb5d04ceb1007e8fc293452ecef1b9bdbd014adedb9e25993e57c0196632b1413ec19893f4c37c26a8e8e42a20a9de9 +runfiles size=305 + RELOC/dvips/ncntrsbk/config.unc + RELOC/fonts/afm/adobe/ncntrsbk/pncb8a.afm + RELOC/fonts/afm/adobe/ncntrsbk/pncbi8a.afm + RELOC/fonts/afm/adobe/ncntrsbk/pncr8a.afm + RELOC/fonts/afm/adobe/ncntrsbk/pncri8a.afm + RELOC/fonts/afm/urw/ncntrsbk/uncb8a.afm + RELOC/fonts/afm/urw/ncntrsbk/uncbi8a.afm + RELOC/fonts/afm/urw/ncntrsbk/uncr8a.afm + RELOC/fonts/afm/urw/ncntrsbk/uncri8a.afm + RELOC/fonts/map/dvips/ncntrsbk/unc.map + RELOC/fonts/tfm/adobe/ncntrsbk/pncb.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncb7t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncb8c.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncb8r.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncb8t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbc.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbc7t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbc8t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbi.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbi7t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbi8c.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbi8r.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbi8t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbo.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbo7t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbo8c.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbo8r.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncbo8t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncr.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncr7t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncr8c.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncr8r.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncr8t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncrc.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncrc7t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncrc8t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncri.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncri7t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncri8c.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncri8r.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncri8t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncro.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncro7t.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncro8c.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncro8r.tfm + RELOC/fonts/tfm/adobe/ncntrsbk/pncro8t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncb7t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncb8c.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncb8r.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncb8t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbc7t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbc8t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbi7t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbi8c.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbi8r.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbi8t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbo7t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbo8c.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbo8r.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncbo8t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncr7t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncr8c.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncr8r.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncr8t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncrc7t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncrc8t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncri7t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncri8c.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncri8r.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncri8t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncro7t.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncro8c.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncro8r.tfm + RELOC/fonts/tfm/urw35vf/ncntrsbk/uncro8t.tfm + RELOC/fonts/type1/urw/ncntrsbk/uncb8a.pfb + RELOC/fonts/type1/urw/ncntrsbk/uncb8a.pfm + RELOC/fonts/type1/urw/ncntrsbk/uncbi8a.pfb + RELOC/fonts/type1/urw/ncntrsbk/uncbi8a.pfm + RELOC/fonts/type1/urw/ncntrsbk/uncr8a.pfb + RELOC/fonts/type1/urw/ncntrsbk/uncr8a.pfm + RELOC/fonts/type1/urw/ncntrsbk/uncri8a.pfb + RELOC/fonts/type1/urw/ncntrsbk/uncri8a.pfm + RELOC/fonts/vf/adobe/ncntrsbk/pncb.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncb7t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncb8c.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncb8t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncbc.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncbc7t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncbc8t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncbi.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncbi7t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncbi8c.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncbi8t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncbo.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncbo7t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncbo8c.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncbo8t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncr.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncr7t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncr8c.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncr8t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncrc.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncrc7t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncrc8t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncri.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncri7t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncri8c.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncri8t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncro.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncro7t.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncro8c.vf + RELOC/fonts/vf/adobe/ncntrsbk/pncro8t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncb7t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncb8c.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncb8t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncbc7t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncbc8t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncbi7t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncbi8c.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncbi8t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncbo7t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncbo8c.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncbo8t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncr7t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncr8c.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncr8t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncrc7t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncrc8t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncri7t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncri8c.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncri8t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncro7t.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncro8c.vf + RELOC/fonts/vf/urw35vf/ncntrsbk/uncro8t.vf + RELOC/tex/latex/ncntrsbk/8runc.fd + RELOC/tex/latex/ncntrsbk/omlunc.fd + RELOC/tex/latex/ncntrsbk/omsunc.fd + RELOC/tex/latex/ncntrsbk/ot1unc.fd + RELOC/tex/latex/ncntrsbk/t1unc.fd + RELOC/tex/latex/ncntrsbk/ts1unc.fd +catalogue-also tex-gyre +catalogue-ctan /fonts/urw/base35 +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics font font-type1 font-collection + +name nddiss +category Package +revision 45107 +shortdesc Notre Dame Dissertation format class +relocated 1 +longdesc This class file conforms to the requirements of the Graduate +longdesc School of the University of Notre Dame; with it a user can +longdesc format a thesis or dissertation in LaTeX. +containersize 11852 +containerchecksum 62f951bce52bab564ab2671bd5d019ff9f6f5ad1d8a18ae9f8b574226aa83e4d3a9c6c931f4830f71c43499f68b8b06e539d55a027e712ce4cd2c03e349d3fd1 +doccontainersize 384324 +doccontainerchecksum bd92c614f160c50a22ff83d296f0e511909906459cfcb7100c615170ee9fadbd38ba032bf95f7b25a083cae33c80ede96964d3b81e23c481fe5a836d91967ad1 +docfiles size=102 + RELOC/doc/latex/nddiss/LICENSE + RELOC/doc/latex/nddiss/README.md details="Readme" + RELOC/doc/latex/nddiss/nddiss2e.pdf details="Package documentation" + RELOC/doc/latex/nddiss/process.sh + RELOC/doc/latex/nddiss/template.tex +srccontainersize 24516 +srccontainerchecksum 498e13f4e4bbf8e2133870854f75feb5617a517b55593ab90c203ba860f95599ac5b010bee58d4f35706a6e17bdba54c66e02e04281bb548e62b335c576a6357 +srcfiles size=24 + RELOC/source/latex/nddiss/ltxdoc.cfg + RELOC/source/latex/nddiss/nddiss2e.dtx + RELOC/source/latex/nddiss/nddiss2e.ins +runfiles size=14 + RELOC/bibtex/bst/nddiss/nddiss2e.bst + RELOC/tex/latex/nddiss/nddiss2e.cls +catalogue-contact-repository https://github.com/ndlib/nddiss +catalogue-ctan /macros/latex/contrib/nddiss +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl1.2 +catalogue-topics dissertation class +catalogue-version 3.2017.2 + +name ndsu-thesis +category Package +revision 46639 +shortdesc North Dakota State University disquisition class +relocated 1 +longdesc A class for generating disquisitions, intended to be in +longdesc compliance with North Dakota State University requirements. +containersize 3556 +containerchecksum d79b603726abaa506ec0cd59c30e4c341839c1dd6f7b7aaeb536385d22d69a37d764499aba390fe7e1efc6a6e25ae6dbb7e92bf659a771b6f4d6ae3b5a2c98d9 +doccontainersize 139828 +doccontainerchecksum 8e93554ef50d43562d1c42fff3da81b77b4ae444d644e5b1a818571e80cef88a2006f1b1c61c320e467724df7847be50f4f3ec1663bd767261720cc1a80419ba +docfiles size=38 + RELOC/doc/latex/ndsu-thesis/README details="Readme" + RELOC/doc/latex/ndsu-thesis/ndsu-thesis.pdf details="Package documentation" + RELOC/doc/latex/ndsu-thesis/ndsu-thesis.tex +runfiles size=3 + RELOC/tex/latex/ndsu-thesis/ndsu-thesis.cls +catalogue-ctan /macros/latex/contrib/ndsu-thesis +catalogue-date 2018-02-14 07:10:49 +0100 +catalogue-license lppl1.3 +catalogue-topics dissertation class + +name needspace +category Package +revision 29601 +shortdesc Insert pagebreak if not enough space +relocated 1 +longdesc Provides commands to disable pagebreaking within a given +longdesc vertical space. If there is not enough space between the +longdesc command and the bottom of the page, a new page will be started. +containersize 828 +containerchecksum 663b2ffe30b1d9a588183916ccb0e3fecf3098d3e67f2a40fc49e1db1e5c1a892bfb56eb177bccd923415dfe51d4a225e2017be3b2f3f7185071836cb2e04391 +doccontainersize 158552 +doccontainerchecksum 3af05a6704a8d3c9539cab0871f9f9c8b7a241549c1b3127dfce2a0eaf77b87d54fdafff4b2749eb4614ad9aba45bd2e3d695a92243ea30472e62f7945eff004 +docfiles size=40 + RELOC/doc/latex/needspace/README + RELOC/doc/latex/needspace/needspace.pdf details="Package documentation" +srccontainersize 2120 +srccontainerchecksum a629e9b798ab772feed1e66b773fbc141b0b2c2cb6c336acf61e8e3884246da1b36f90260fd47121e53e552f6569528e81ee788b6d1779c9e87eb54517a2d787 +srcfiles size=3 + RELOC/source/latex/needspace/needspace.ins + RELOC/source/latex/needspace/needspace.tex +runfiles size=1 + RELOC/tex/latex/needspace/needspace.sty +catalogue-ctan /macros/latex/contrib/needspace +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics layout +catalogue-version 1.3d + +name nestquot +category Package +revision 27323 +shortdesc Alternate quotes between double and single with nesting +relocated 1 +longdesc Provides two new commands: \nlq and \nrq for nesting left and +longdesc right quotes that properly change between double and single +longdesc quotes according to their nesting level. For example, the input +longdesc \nlq Foo \nlq bar\nrq\ bletch\nrq will be typeset as if it had +longdesc been entered as "Foo 'bar' bletch". +containersize 1920 +containerchecksum cc75905a3423deb02f226340eeb6a5f97d9d83470f156bc75cdf39569da845279fe8d4a3907fdf269bac75e7afae02faa04dea367cf0326720301ba3f1c31395 +runfiles size=1 + RELOC/tex/latex/nestquot/nestquot.sty +catalogue-ctan /macros/latex/contrib/nestquot +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics quote-marks + +name neuralnetwork +category Package +revision 31500 +shortdesc Graph-drawing for neural networks +relocated 1 +longdesc The package provides facilities for graph-drawing, with +longdesc facilities designed for neural network diagrams. +containersize 3604 +containerchecksum ba66b86e10f4425c063c76ffcc97759863677a673960255d5c335d215ff8c0eeb4d0f12fdac584ae1fdcec00ab04705cad716ff9290f6b1ca9c8635841f580ff +doccontainersize 641544 +doccontainerchecksum fc2cda90284e4360c9dd9c03611f582c7c4569331a3bf04d51152408ff8533dcc1f398f641ece389e63f9b7dd12ae471c3f6b5d8fbdea5d206afb1ab15df4852 +docfiles size=163 + RELOC/doc/latex/neuralnetwork/examples/neural-networks-ebook.pdf details="Sample of a book using the package" + RELOC/doc/latex/neuralnetwork/examples/neuralnetwork.pdf + RELOC/doc/latex/neuralnetwork/examples/neuralnetwork.tex + RELOC/doc/latex/neuralnetwork/examples/xor.pdf + RELOC/doc/latex/neuralnetwork/examples/xor.tex +runfiles size=3 + RELOC/tex/latex/neuralnetwork/neuralnetwork.sty +catalogue-contact-repository https://github.com/battlesnake/neural +catalogue-ctan /graphics/pgf/contrib/neuralnetwork +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license gpl +catalogue-topics diagram +catalogue-version 1.0 + +name nevelok +category Package +revision 39029 +shortdesc LaTeX package for automatic definite articles for Hungarian +relocated 1 +longdesc LaTeX package for automatic definite articles for Hungarian +containersize 1860 +containerchecksum 01d207fe9d77df0a225cd5fe718f118bc755c1e23c9dcb2bc4e0b4c2983205469baeeefcc195b150cc54f4540ea71d96cfc393fe61a32f7e85d5c9b5944c5938 +doccontainersize 211280 +doccontainerchecksum 653fea96310508e8a30c76821d1cd83dbf579052fecbb8c859d40cb39926d24ae0141b4788901b34b4839615b33d5995eed2b6a27f6abcae981b9d47b6ebeb34 +docfiles size=53 + RELOC/doc/latex/nevelok/README.md details="Readme" + RELOC/doc/latex/nevelok/nevelok.pdf details="Package documentation" +srccontainersize 4000 +srccontainerchecksum 455ceb971d4617b096bb2d1c42fdb487208e8c6ccb3fa94869df08c9e89516e0f5c9e5513b0573d17929bc3284fa41ec19ef092ac7c7c99ca8a7f9e63a1559c0 +srcfiles size=4 + RELOC/source/latex/nevelok/nevelok.dtx + RELOC/source/latex/nevelok/nevelok.ins +runfiles size=2 + RELOC/tex/latex/nevelok/nevelok.sty +catalogue-ctan /macros/latex/contrib/nevelok +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics hungarian +catalogue-version 1.03 + +name newcommand +category Package +revision 18704 +shortdesc Generate new LaTeX command definitions +relocated 1 +longdesc Generating any other than the simple \newcommand-style +longdesc commands, in LaTeX, is tedious (in the least). This script +longdesc allows the specification of commands in a 'natural' style; the +longdesc script then generates macros to define the command. +containersize 496 +containerchecksum e4716ec35793f0ed4140ed3bb221bbaedaf121b2529dbde5114a575bfb8aa32a8fc56e79e43068adf560423aaf68c5f09dd5d6b624e37005bbaa4def2b280060 +doccontainersize 407624 +doccontainerchecksum 84f71adb1cdf4213f34e30a2737f41c93fd0e8ac4970b2adb832570c98c5f3876502556392fa077a8cb647a552a8e914b2a30e4e38a039c355802e2c85c5f3e1 +docfiles size=117 + RELOC/doc/latex/newcommand/README details="Readme" + RELOC/doc/latex/newcommand/newcommand.pdf details="Package documentation" + RELOC/doc/latex/newcommand/newcommand.py + RELOC/doc/latex/newcommand/newcommand.tex + RELOC/doc/latex/newcommand/spark.py +catalogue-ctan /support/newcommand +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 2.0 + +name newenviron +category Package +revision 29331 +shortdesc Processing an environment's body +relocated 1 +longdesc The package offers tools for collecting and executing an +longdesc environment's body. +containersize 2488 +containerchecksum 4ddcc24de158fb1a5b585c65adf769c3f92c4598355306e08257f4ef62718c6ca7f2dea80d742759601b37133a951d031445a39ed5d8062496459cc2f98a71b4 +doccontainersize 1632 +doccontainerchecksum cadfcd8ecc9c0904bc9a45542a24c1b6907dabacc94f45a1ed1b885557304a27e7e836b55cbebcc6130da0bffeff7c56fd89f0b7a16430dacccd670c8c6ddc7b +docfiles size=2 + RELOC/doc/latex/newenviron/README details="Readme" + RELOC/doc/latex/newenviron/newenviron-examples.tex +runfiles size=2 + RELOC/tex/latex/newenviron/newenviron.sty +catalogue-also environ +catalogue-ctan /macros/latex/contrib/newenviron +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 1.0 + +name newfile +category Package +revision 15878 +shortdesc User level management of LaTeX input and output +relocated 1 +longdesc Commands are defined to manage the limited pool of input and +longdesc output handles provided by TeX. The streams so provided are +longdesc mapped to various of the LaTeX input and output mechanisms. +longdesc Some facilities of the verbatim package are also mapped. +containersize 2240 +containerchecksum b949934073af1aaaada73c93e493fd39ca01ad625d72bcfa5df915b2c2f759a39d77b7c2a0a952711c8c3e0af5e6cca59eb7f333fcd27e7232c3780ad5400ec8 +doccontainersize 147644 +doccontainerchecksum c2c0e825ae7fee4fa551e831c822190f7682392d47bd8bffa3ee947900d6eaf00a363edd204f7404c834ade0bd5a05e9bb0a8284f8c660eeddf7f75179c0060f +docfiles size=43 + RELOC/doc/latex/newfile/README details="Readme" + RELOC/doc/latex/newfile/newfile.pdf details="Package documentation" +srccontainersize 9220 +srccontainerchecksum 9cc5d4e1ac98c2884af3a2e5d11e9cf573660679658450d0705d6d0c4004a8994c3b471078db8a6a95527f5aa84b3a7ea18a1c00b7cdcd9169fa1cb870a277f3 +srcfiles size=10 + RELOC/source/latex/newfile/newfile.dtx + RELOC/source/latex/newfile/newfile.ins +runfiles size=2 + RELOC/tex/latex/newfile/newfile.sty +catalogue-ctan /macros/latex/contrib/newfile +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics io-mgmt +catalogue-version 1.0c + +name newlfm +category Package +revision 15878 +shortdesc Write letters, facsimiles, and memos +relocated 1 +longdesc Integrates the letter class with fancyhdr and geometry to +longdesc automatically make letterhead stationery. Useful for writing +longdesc letters, fax, and memos. You can set up an address book using +longdesc 'wrapper' macros. You put all the information for a person into +longdesc a wrapper and then put the wrapper in a document. The class +longdesc handles letterheads automatically. You place the object for the +longdesc letterhead (picture, information, etc.) in a box and all sizing +longdesc is set automatically. +containersize 20156 +containerchecksum 72f7b087ba1002541e3d26d5b41b58380443e30061b92885bbd3bcc017b17cbad9227c14074a53706b98c785117c7b07c6d49639c84c617782066491dc0cabf5 +doccontainersize 342164 +doccontainerchecksum 8391122e13223055582bfe0f9e6d62315c9a48588848ab02cebd5b2d7045be5f1d476145e8ca29392820d4ee018b9f84380408331b3ea56e7e99071024a8c369 +docfiles size=298 + RELOC/doc/latex/newlfm/README details="Readme" + RELOC/doc/latex/newlfm/chk1.tex + RELOC/doc/latex/newlfm/demoa.tex + RELOC/doc/latex/newlfm/draft.eps + RELOC/doc/latex/newlfm/draft.pdf + RELOC/doc/latex/newlfm/extracd.tex + RELOC/doc/latex/newlfm/hletrinf.tex + RELOC/doc/latex/newlfm/letrinfo.tex + RELOC/doc/latex/newlfm/lvb.eps + RELOC/doc/latex/newlfm/lvb.pdf + RELOC/doc/latex/newlfm/make_clean + RELOC/doc/latex/newlfm/make_unix + RELOC/doc/latex/newlfm/make_win.bat + RELOC/doc/latex/newlfm/makeclean_win.bat + RELOC/doc/latex/newlfm/manual.pdf + RELOC/doc/latex/newlfm/mintrx.bat + RELOC/doc/latex/newlfm/newlfm.pdf details="Package documentation" + RELOC/doc/latex/newlfm/newlfm.txt + RELOC/doc/latex/newlfm/palm.eps + RELOC/doc/latex/newlfm/palm.pdf + RELOC/doc/latex/newlfm/problems.tex + RELOC/doc/latex/newlfm/prx.bat + RELOC/doc/latex/newlfm/setup.bat + RELOC/doc/latex/newlfm/sfaxpage.tex + RELOC/doc/latex/newlfm/smemosec.tex + RELOC/doc/latex/newlfm/sprsrls.tex + RELOC/doc/latex/newlfm/test1.tex + RELOC/doc/latex/newlfm/test10.tex + RELOC/doc/latex/newlfm/test11.tex + RELOC/doc/latex/newlfm/test12.tex + RELOC/doc/latex/newlfm/test1alt.tex + RELOC/doc/latex/newlfm/test2.tex + RELOC/doc/latex/newlfm/test2a.tex + RELOC/doc/latex/newlfm/test2alt.tex + RELOC/doc/latex/newlfm/test3.tex + RELOC/doc/latex/newlfm/test3alt.tex + RELOC/doc/latex/newlfm/test4.tex + RELOC/doc/latex/newlfm/test4alt.tex + RELOC/doc/latex/newlfm/test5.tex + RELOC/doc/latex/newlfm/test5alt.tex + RELOC/doc/latex/newlfm/test6.tex + RELOC/doc/latex/newlfm/test6alt.tex + RELOC/doc/latex/newlfm/test7.tex + RELOC/doc/latex/newlfm/test7alt.tex + RELOC/doc/latex/newlfm/test8.tex + RELOC/doc/latex/newlfm/test8alt.tex + RELOC/doc/latex/newlfm/test9.tex + RELOC/doc/latex/newlfm/testms.pdf + RELOC/doc/latex/newlfm/wine.eps + RELOC/doc/latex/newlfm/wine.pdf +srccontainersize 48828 +srccontainerchecksum fa807aaba787c52d3e769e240a04f5fa23e469908d2eb5a60967e2b08cfb7a694612e85514a56c3138925ce2f3c480bd5b6d0f701031d8ee8e646c3017cd0022 +srcfiles size=60 + RELOC/source/latex/newlfm/newlfm.dtx + RELOC/source/latex/newlfm/newlfm.ins +runfiles size=33 + RELOC/tex/latex/newlfm/addrset.sty + RELOC/tex/latex/newlfm/newlfm.cls + RELOC/tex/latex/newlfm/setdim.sty +catalogue-ctan /macros/latex/contrib/newlfm +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics class letter +catalogue-version 9.4 + +name newpx +category Package +revision 49438 +shortdesc Alternative uses of the PX fonts, with improved metrics +relocated 1 +longdesc This package, initially based on pxfonts, provides many fixes +longdesc and enhancements to that package, and splits it in two parts +longdesc (newpxtext and newpxmath) which may be run independently of one +longdesc another. It provides scaling, improved metrics, and other +longdesc options. For proper operation, the packages require that the +longdesc packages newtxmath, pxfonts, and TeXGyrePagella be installed +longdesc and their map files enabled. +execute addMap newpx.map +containersize 1465484 +containerchecksum 3845d51b93f12346549620619c810f6423dab8447e3eb80fae9d60fc0a4a52919c490096ca447cb8ac80f1e545f2081eeb94822c01a8862d7baedae746163331 +doccontainersize 300088 +doccontainerchecksum 2019caf0423c382abec61154f1360286a38853cc3d52d718586c4c9c7b213ed409ab7e8fa6f5484961905b4a1a1135a5ecb3a233364cf3cdaedd16d9a066a15b +docfiles size=89 + RELOC/doc/fonts/newpx/MANIFEST-newpx.txt + RELOC/doc/fonts/newpx/README details="Readme" + RELOC/doc/fonts/newpx/newpxdoc.pdf details="Package documentation" + RELOC/doc/fonts/newpx/newpxdoc.tex + RELOC/doc/fonts/newpx/newpxeg-crop.pdf + RELOC/doc/fonts/newpx/pxfontseg-crop.pdf +runfiles size=1773 + RELOC/fonts/afm/public/newpx/TeXGyrePagella-Regular.afm + RELOC/fonts/afm/public/newpx/TeXGyrePagellaX-Bold.afm + RELOC/fonts/afm/public/newpx/TeXGyrePagellaX-BoldItalic.afm + RELOC/fonts/afm/public/newpx/TeXGyrePagellaX-Italic.afm + RELOC/fonts/afm/public/newpx/TeXGyrePagellaX-Regular.afm + RELOC/fonts/afm/public/newpx/pxbsys.afm + RELOC/fonts/afm/public/newpx/pxsys.afm + RELOC/fonts/afm/public/newpx/qplr.afm + RELOC/fonts/afm/public/newpx/zplb.afm + RELOC/fonts/afm/public/newpx/zplbi.afm + RELOC/fonts/afm/public/newpx/zplr.afm + RELOC/fonts/afm/public/newpx/zplri.afm + RELOC/fonts/enc/dvips/newpx/ecsups.enc + RELOC/fonts/enc/dvips/newpx/ot1sups.enc + RELOC/fonts/enc/dvips/newpx/texnansxsups.enc + RELOC/fonts/enc/dvips/newpx/tgpdiff.enc + RELOC/fonts/map/dvips/newpx/newpx.map + RELOC/fonts/opentype/public/newpx/TeXGyrePagellaX-Bold.otf + RELOC/fonts/opentype/public/newpx/TeXGyrePagellaX-BoldItalic.otf + RELOC/fonts/opentype/public/newpx/TeXGyrePagellaX-Italic.otf + RELOC/fonts/opentype/public/newpx/TeXGyrePagellaX-Regular.otf + RELOC/fonts/tfm/public/newpx/pxbsys.tfm + RELOC/fonts/tfm/public/newpx/pxsys.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-th-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-th-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-osf-th-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-th-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-th-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tlf-th-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/newpx/zplb-x.tfm + RELOC/fonts/tfm/public/newpx/zplbexa.tfm + RELOC/fonts/tfm/public/newpx/zplbexx.tfm + RELOC/fonts/tfm/public/newpx/zplbmi.tfm + RELOC/fonts/tfm/public/newpx/zplbmi0.tfm + RELOC/fonts/tfm/public/newpx/zplbmi1.tfm + RELOC/fonts/tfm/public/newpx/zplbmia.tfm + RELOC/fonts/tfm/public/newpx/zplbsy.tfm + RELOC/fonts/tfm/public/newpx/zplbsyc.tfm + RELOC/fonts/tfm/public/newpx/zplbsym.tfm + RELOC/fonts/tfm/public/newpx/zplexa.tfm + RELOC/fonts/tfm/public/newpx/zplexx.tfm + RELOC/fonts/tfm/public/newpx/zplmi.tfm + RELOC/fonts/tfm/public/newpx/zplmi1.tfm + RELOC/fonts/tfm/public/newpx/zplmia.tfm + RELOC/fonts/tfm/public/newpx/zplr-x.tfm + RELOC/fonts/tfm/public/newpx/zplsups-Bold-ly1.tfm + RELOC/fonts/tfm/public/newpx/zplsups-Bold-ot1.tfm + RELOC/fonts/tfm/public/newpx/zplsups-Bold-t1.tfm + RELOC/fonts/tfm/public/newpx/zplsups-BoldItalic-ly1.tfm + RELOC/fonts/tfm/public/newpx/zplsups-BoldItalic-ot1.tfm + RELOC/fonts/tfm/public/newpx/zplsups-BoldItalic-t1.tfm + RELOC/fonts/tfm/public/newpx/zplsups-Italic-ly1.tfm + RELOC/fonts/tfm/public/newpx/zplsups-Italic-ot1.tfm + RELOC/fonts/tfm/public/newpx/zplsups-Italic-t1.tfm + RELOC/fonts/tfm/public/newpx/zplsups-Regular-ly1.tfm + RELOC/fonts/tfm/public/newpx/zplsups-Regular-ot1.tfm + RELOC/fonts/tfm/public/newpx/zplsups-Regular-t1.tfm + RELOC/fonts/tfm/public/newpx/zplsy.tfm + RELOC/fonts/tfm/public/newpx/zplsyc.tfm + RELOC/fonts/tfm/public/newpx/zplsym.tfm + RELOC/fonts/type1/public/newpx/pxbsys.pfb + RELOC/fonts/type1/public/newpx/pxsys.pfb + RELOC/fonts/type1/public/newpx/zplb.pfb + RELOC/fonts/type1/public/newpx/zplbi.pfb + RELOC/fonts/type1/public/newpx/zplr.pfb + RELOC/fonts/type1/public/newpx/zplri.pfb + RELOC/fonts/type1/public/newpx/zplx-bold.pfb + RELOC/fonts/type1/public/newpx/zplx-regular.pfb + RELOC/fonts/vf/public/newpx/zpl-Bold-lf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-Bold-lf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-Bold-lf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-Bold-osf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-Bold-osf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-Bold-osf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-Bold-tlf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-Bold-tlf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-Bold-tlf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-Bold-tosf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-Bold-tosf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-Bold-tosf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-BoldItalic-lf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-BoldItalic-lf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-BoldItalic-lf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-BoldItalic-osf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-BoldItalic-osf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-BoldItalic-osf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-BoldItalic-tlf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-BoldItalic-tlf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-BoldItalic-tlf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-BoldItalic-tosf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-BoldItalic-tosf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-BoldItalic-tosf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-Italic-lf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-Italic-lf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-Italic-lf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-Italic-osf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-Italic-osf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-Italic-osf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-Italic-tlf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-Italic-tlf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-Italic-tlf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-Italic-tosf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-Italic-tosf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-Italic-tosf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-Regular-lf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-Regular-lf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-Regular-lf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-Regular-osf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-Regular-osf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-Regular-osf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-Regular-tlf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-Regular-tlf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-Regular-tlf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zpl-Regular-tosf-scl-ly1.vf + RELOC/fonts/vf/public/newpx/zpl-Regular-tosf-scl-ot1.vf + RELOC/fonts/vf/public/newpx/zpl-Regular-tosf-scl-t1.vf + RELOC/fonts/vf/public/newpx/zplbexa.vf + RELOC/fonts/vf/public/newpx/zplbexx.vf + RELOC/fonts/vf/public/newpx/zplbmi.vf + RELOC/fonts/vf/public/newpx/zplbmi0.vf + RELOC/fonts/vf/public/newpx/zplbmi1.vf + RELOC/fonts/vf/public/newpx/zplbmia.vf + RELOC/fonts/vf/public/newpx/zplbsy.vf + RELOC/fonts/vf/public/newpx/zplbsyc.vf + RELOC/fonts/vf/public/newpx/zplbsym.vf + RELOC/fonts/vf/public/newpx/zplexa.vf + RELOC/fonts/vf/public/newpx/zplexx.vf + RELOC/fonts/vf/public/newpx/zplmi.vf + RELOC/fonts/vf/public/newpx/zplmi1.vf + RELOC/fonts/vf/public/newpx/zplmia.vf + RELOC/fonts/vf/public/newpx/zplsy.vf + RELOC/fonts/vf/public/newpx/zplsyc.vf + RELOC/fonts/vf/public/newpx/zplsym.vf + RELOC/tex/latex/newpx/TeXGyrePagellaX.fontspec + RELOC/tex/latex/newpx/lmsnpxsy.fd + RELOC/tex/latex/newpx/lmxnpxexx.fd + RELOC/tex/latex/newpx/ly1npxtt.fd + RELOC/tex/latex/newpx/ly1zpllf.fd + RELOC/tex/latex/newpx/ly1zplosf.fd + RELOC/tex/latex/newpx/ly1zplsups.fd + RELOC/tex/latex/newpx/ly1zpltlf.fd + RELOC/tex/latex/newpx/ly1zpltosf.fd + RELOC/tex/latex/newpx/newpxmath.sty + RELOC/tex/latex/newpx/newpxtext.sty + RELOC/tex/latex/newpx/omlnpxmi.fd + RELOC/tex/latex/newpx/ot1npxtt.fd + RELOC/tex/latex/newpx/ot1zpllf.fd + RELOC/tex/latex/newpx/ot1zplosf.fd + RELOC/tex/latex/newpx/ot1zplsups.fd + RELOC/tex/latex/newpx/ot1zpltlf.fd + RELOC/tex/latex/newpx/ot1zpltosf.fd + RELOC/tex/latex/newpx/t1npxtt.fd + RELOC/tex/latex/newpx/t1zpllf.fd + RELOC/tex/latex/newpx/t1zplosf.fd + RELOC/tex/latex/newpx/t1zplsups.fd + RELOC/tex/latex/newpx/t1zpltlf.fd + RELOC/tex/latex/newpx/t1zpltosf.fd + RELOC/tex/latex/newpx/ts1npxtt.fd + RELOC/tex/latex/newpx/ts1zpllf.fd + RELOC/tex/latex/newpx/ts1zplosf.fd + RELOC/tex/latex/newpx/ts1zpltlf.fd + RELOC/tex/latex/newpx/ts1zpltosf.fd + RELOC/tex/latex/newpx/unpxexa.fd + RELOC/tex/latex/newpx/unpxmia.fd + RELOC/tex/latex/newpx/unpxss.fd + RELOC/tex/latex/newpx/unpxsyc.fd + RELOC/tex/latex/newpx/unpxsym.fd + RELOC/tex/latex/newpx/unpxtt.fd +catalogue-also pxfonts +catalogue-ctan /fonts/newpx +catalogue-date 2018-12-17 06:00:20 +0100 +catalogue-license lppl +catalogue-topics font-maths font font-type1 font-otf font-t1enc +catalogue-version 1.33 + +name newsletr +category Package +revision 15878 +shortdesc Macros for making newsletters with Plain TeX +relocated 1 +containersize 16788 +containerchecksum e2f1995420ed7b94b980fd794df5dca89e89dd96daefa43559d568881ffd17668717de1baaff18bf27e8519663203e0ea7fef214b8f7541bde81d436a3a5c378 +doccontainersize 137580 +doccontainerchecksum aff23fd9e3397c52a1566930d6da6184786f07adc64c63e5d9e0062451014d261db8dab06e9d393cb66b3b56a51b57f494f01c9ab27b05bbe2a226cd4623d590 +docfiles size=53 + RELOC/doc/plain/newsletr/italic.tex + RELOC/doc/plain/newsletr/lodriver.tex + RELOC/doc/plain/newsletr/losample.tex + RELOC/doc/plain/newsletr/newsletr.txt details="Help for newsletr format" + RELOC/doc/plain/newsletr/newssamp.pdf details="Sample Newsletter" + RELOC/doc/plain/newsletr/newssamp.tex + RELOC/doc/plain/newsletr/quote.tex + RELOC/doc/plain/newsletr/read.me + RELOC/doc/plain/newsletr/sample.pdf details="Another sample Newsletter" +runfiles size=14 + RELOC/tex/plain/newsletr/newsletr.tex +catalogue-ctan /macros/plain/contrib/newsletr +catalogue-date 2016-06-18 16:48:54 +0200 +catalogue-license other-free +catalogue-topics magazine + +name newspaper +category Package +revision 15878 +shortdesc Typeset newsletters to resemble newspapers +relocated 1 +longdesc The newspaper package redefines the page style and \maketitle +longdesc command to produce a typeset page similar to that of a +longdesc newspaper. It also provides several commands that (when used +longdesc with other packages) simplify the writing of articles in a +longdesc newspaper-style column format. +containersize 1924 +containerchecksum 227fd249bba9deea4f191c59060c49d2d1cb8e367bb3007d3b123c17dd4328206962946ce3f637c8e6ae079a9c95244ce9027b0c9f83e0901801dde066a0405a +doccontainersize 196212 +doccontainerchecksum b08d57346ba93e37e93f3c6e2487d56a0ac67eac0e4d9db564d221319e6403a1055729a2a1e43db4e161877b7300aa90e1853d75843c95295481d7cfaa3f6c1f +docfiles size=71 + RELOC/doc/latex/newspaper/Figure1.pdf + RELOC/doc/latex/newspaper/Figure2.pdf + RELOC/doc/latex/newspaper/README details="Readme" + RELOC/doc/latex/newspaper/atom.jpg + RELOC/doc/latex/newspaper/newspaper.pdf details="Package documentation" + RELOC/doc/latex/newspaper/newspaperExample.tex +srccontainersize 6804 +srccontainerchecksum 172e832bd15e8aecf6f80f8cb768d2d7b3721975638007ce631b78cf5f6dab27ef24ff63f5693f5c46cc430bfecae577beefe4fd2f6fef22d6f5fdf9ff20dfe7 +srcfiles size=5 + RELOC/source/latex/newspaper/newspaper.dtx +runfiles size=1 + RELOC/tex/latex/newspaper/newspaper.sty +catalogue-ctan /macros/latex/contrib/newspaper +catalogue-date 2018-12-30 10:18:35 +0100 +catalogue-license lppl +catalogue-topics magazine +catalogue-version 1.0 + +name newtx +category Package +revision 47889 +shortdesc Alternative uses of the TX fonts, with improved metrics +relocated 1 +longdesc The bundle splits txfonts.sty (from the TX fonts distribution) +longdesc into two independent packages, newtxtext.sty and newtxmath.sty, +longdesc each with fixes and enhancements. newtxmath's metrics have been +longdesc re-evaluated to provide a less tight appearance, and to provide +longdesc a libertine option that substitutes Libertine italic and Greek +longdesc letter for the existing math italic and Greek glyphs, making a +longdesc mathematics package that matches Libertine text quite well. +longdesc newtxmath can also use the maths italic font provided with the +longdesc garamondx package, thus offering a garamond-alike +longdesc text-with-maths combination. +depend kastrup +execute addMap newtx.map +containersize 3824632 +containerchecksum 0874beea1104e0652c2ddfa0fe59183f627addc635dcd92760952f6d97383e8b7bd248bc7371adc802dc81af4ad9c466b7de9629c8711972dad2b8ab9f44167b +doccontainersize 723404 +doccontainerchecksum b263d256e6a7db10f196c7361fec6e03e2a68055c9539e0c627277f2d907d059586ff04535376c8bbcf89b4d8dfb0c4acaf2074fecc88a02d35a720eb60f1246 +docfiles size=236 + RELOC/doc/fonts/newtx/MANIFEST-newtx.txt + RELOC/doc/fonts/newtx/README details="Readme" + RELOC/doc/fonts/newtx/implementation.pdf details="Implementation notes" + RELOC/doc/fonts/newtx/implementation.tex + RELOC/doc/fonts/newtx/mathnotes.pdf details="Notes concerning math fonts" + RELOC/doc/fonts/newtx/mathnotes.tex + RELOC/doc/fonts/newtx/newtxdoc.pdf details="Package documentation" + RELOC/doc/fonts/newtx/newtxdoc.tex + RELOC/doc/fonts/newtx/sample-lib-crop.pdf + RELOC/doc/fonts/newtx/sample-libmtp-crop.pdf + RELOC/doc/fonts/newtx/sample-mtp-crop.pdf + RELOC/doc/fonts/newtx/sample-ntx-crop.pdf + RELOC/doc/fonts/newtx/sample-ptmx-crop.pdf + RELOC/doc/fonts/newtx/sample-tx-crop.pdf +runfiles size=2165 + RELOC/fonts/afm/public/newtx/ntxsups-Bold.afm + RELOC/fonts/afm/public/newtx/ntxsups-BoldItalic.afm + RELOC/fonts/afm/public/newtx/ntxsups-Italic.afm + RELOC/fonts/afm/public/newtx/ntxsups-Regular.afm + RELOC/fonts/afm/public/newtx/ntxtmb.afm + RELOC/fonts/afm/public/newtx/ntxtmbi.afm + RELOC/fonts/afm/public/newtx/ntxtmr.afm + RELOC/fonts/afm/public/newtx/ntxtmri.afm + RELOC/fonts/afm/public/newtx/txbex-bar.afm + RELOC/fonts/afm/public/newtx/txbexas.afm + RELOC/fonts/afm/public/newtx/txbmiaX.afm + RELOC/fonts/afm/public/newtx/txbsys.afm + RELOC/fonts/afm/public/newtx/txex-bar.afm + RELOC/fonts/afm/public/newtx/txexas.afm + RELOC/fonts/afm/public/newtx/txexs.afm + RELOC/fonts/afm/public/newtx/txmiaX.afm + RELOC/fonts/afm/public/newtx/txsys.afm + RELOC/fonts/enc/dvips/newtx/alt-mn-greek.enc + RELOC/fonts/enc/dvips/newtx/libcaps.enc + RELOC/fonts/enc/dvips/newtx/libertinealt.enc + RELOC/fonts/enc/dvips/newtx/ntx-ec-lf-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ec-lf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ec-osf-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ec-osf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ec-tlf-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ec-tlf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ec-tosf-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ec-tosf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ecth-lf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ecth-osf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ecth-tlf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ecth-tosf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ly1-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-lf-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-lf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-osf-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-osf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-th-osf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-th-tlf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-tlf-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-tlf.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-tosf-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-ot1-tosf.enc + RELOC/fonts/enc/dvips/newtx/ntx-t1-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-texnansi-lf-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-texnansi-lf.enc + RELOC/fonts/enc/dvips/newtx/ntx-texnansi-osf-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-texnansi-osf.enc + RELOC/fonts/enc/dvips/newtx/ntx-texnansi-th-osf.enc + RELOC/fonts/enc/dvips/newtx/ntx-texnansi-th-tlf.enc + RELOC/fonts/enc/dvips/newtx/ntx-texnansi-tlf-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-texnansi-tlf.enc + RELOC/fonts/enc/dvips/newtx/ntx-texnansi-tosf-sc.enc + RELOC/fonts/enc/dvips/newtx/ntx-texnansi-tosf.enc + RELOC/fonts/enc/dvips/newtx/ntxmiaalt.enc + RELOC/fonts/map/dvips/newtx/newtx.map + RELOC/fonts/map/dvips/newtx/zmn.map + RELOC/fonts/opentype/public/newtx/TeXGyreTermesX-Bold.otf + RELOC/fonts/opentype/public/newtx/TeXGyreTermesX-BoldItalic.otf + RELOC/fonts/opentype/public/newtx/TeXGyreTermesX-Italic.otf + RELOC/fonts/opentype/public/newtx/TeXGyreTermesX-Regular.otf + RELOC/fonts/tfm/public/newtx/Libertine-nu.tfm + RELOC/fonts/tfm/public/newtx/LibertineI-5nu.tfm + RELOC/fonts/tfm/public/newtx/LibertineI-7nu.tfm + RELOC/fonts/tfm/public/newtx/LibertineI-nu.tfm + RELOC/fonts/tfm/public/newtx/LibertineTheta-Regular.tfm + RELOC/fonts/tfm/public/newtx/LibertineZ-nu.tfm + RELOC/fonts/tfm/public/newtx/LibertineZI-5nu.tfm + RELOC/fonts/tfm/public/newtx/LibertineZI-7nu.tfm + RELOC/fonts/tfm/public/newtx/LibertineZI-nu.tfm + RELOC/fonts/tfm/public/newtx/MinLibBol-ly1.tfm + RELOC/fonts/tfm/public/newtx/MinLibBol-ot1.tfm + RELOC/fonts/tfm/public/newtx/MinLibBol-t1.tfm + RELOC/fonts/tfm/public/newtx/MinLibBolIta-ly1.tfm + RELOC/fonts/tfm/public/newtx/MinLibBolIta-ot1.tfm + RELOC/fonts/tfm/public/newtx/MinLibBolIta-t1.tfm + RELOC/fonts/tfm/public/newtx/MinLibIta-ly1.tfm + RELOC/fonts/tfm/public/newtx/MinLibIta-ot1.tfm + RELOC/fonts/tfm/public/newtx/MinLibIta-t1.tfm + RELOC/fonts/tfm/public/newtx/MinLibReg-ly1.tfm + RELOC/fonts/tfm/public/newtx/MinLibReg-ot1.tfm + RELOC/fonts/tfm/public/newtx/MinLibReg-t1.tfm + RELOC/fonts/tfm/public/newtx/fxlri-5alt.tfm + RELOC/fonts/tfm/public/newtx/fxlri-5letters.tfm + RELOC/fonts/tfm/public/newtx/fxlri-7alt.tfm + RELOC/fonts/tfm/public/newtx/fxlri-7letters.tfm + RELOC/fonts/tfm/public/newtx/fxlzi-5alt.tfm + RELOC/fonts/tfm/public/newtx/fxlzi-5letters.tfm + RELOC/fonts/tfm/public/newtx/fxlzi-7alt.tfm + RELOC/fonts/tfm/public/newtx/fxlzi-7letters.tfm + RELOC/fonts/tfm/public/newtx/fxlzi-jv.tfm + RELOC/fonts/tfm/public/newtx/fxlzi-jv5.tfm + RELOC/fonts/tfm/public/newtx/fxlzi-jv7.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-th-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-th-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-th-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-th-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-th-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-th-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxbex.tfm + RELOC/fonts/tfm/public/newtx/ntxbexa.tfm + RELOC/fonts/tfm/public/newtx/ntxbexb.tfm + RELOC/fonts/tfm/public/newtx/ntxbexmods.tfm + RELOC/fonts/tfm/public/newtx/ntxbexx.tfm + RELOC/fonts/tfm/public/newtx/ntxbmi.tfm + RELOC/fonts/tfm/public/newtx/ntxbmi0.tfm + RELOC/fonts/tfm/public/newtx/ntxbmi05.tfm + RELOC/fonts/tfm/public/newtx/ntxbmi07.tfm + RELOC/fonts/tfm/public/newtx/ntxbmi1.tfm + RELOC/fonts/tfm/public/newtx/ntxbmi15.tfm + RELOC/fonts/tfm/public/newtx/ntxbmi17.tfm + RELOC/fonts/tfm/public/newtx/ntxbmi1x.tfm + RELOC/fonts/tfm/public/newtx/ntxbmi5.tfm + RELOC/fonts/tfm/public/newtx/ntxbmi7.tfm + RELOC/fonts/tfm/public/newtx/ntxbmia.tfm + RELOC/fonts/tfm/public/newtx/ntxbmial1.tfm + RELOC/fonts/tfm/public/newtx/ntxbmials.tfm + RELOC/fonts/tfm/public/newtx/ntxbsy.tfm + RELOC/fonts/tfm/public/newtx/ntxbsy5.tfm + RELOC/fonts/tfm/public/newtx/ntxbsy7.tfm + RELOC/fonts/tfm/public/newtx/ntxbsyc.tfm + RELOC/fonts/tfm/public/newtx/ntxbsym.tfm + RELOC/fonts/tfm/public/newtx/ntxexa.tfm + RELOC/fonts/tfm/public/newtx/ntxexb.tfm + RELOC/fonts/tfm/public/newtx/ntxexmods.tfm + RELOC/fonts/tfm/public/newtx/ntxexx.tfm + RELOC/fonts/tfm/public/newtx/ntxmi.tfm + RELOC/fonts/tfm/public/newtx/ntxmi0.tfm + RELOC/fonts/tfm/public/newtx/ntxmi05.tfm + RELOC/fonts/tfm/public/newtx/ntxmi07.tfm + RELOC/fonts/tfm/public/newtx/ntxmi1.tfm + RELOC/fonts/tfm/public/newtx/ntxmi15.tfm + RELOC/fonts/tfm/public/newtx/ntxmi17.tfm + RELOC/fonts/tfm/public/newtx/ntxmi5.tfm + RELOC/fonts/tfm/public/newtx/ntxmi7.tfm + RELOC/fonts/tfm/public/newtx/ntxmia.tfm + RELOC/fonts/tfm/public/newtx/ntxstx2bmi.tfm + RELOC/fonts/tfm/public/newtx/ntxstx2bmia.tfm + RELOC/fonts/tfm/public/newtx/ntxstx2mi.tfm + RELOC/fonts/tfm/public/newtx/ntxstx2mia.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-Bold-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-Bold-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-Bold-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-Bold.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-BoldItalic-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-BoldItalic-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-BoldItalic-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-BoldItalic.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-Italic-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-Italic-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-Italic-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-Italic.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-Regular-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-Regular-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-Regular-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxsups-Regular.tfm + RELOC/fonts/tfm/public/newtx/ntxsy.tfm + RELOC/fonts/tfm/public/newtx/ntxsy5.tfm + RELOC/fonts/tfm/public/newtx/ntxsy7.tfm + RELOC/fonts/tfm/public/newtx/ntxsybalt.tfm + RELOC/fonts/tfm/public/newtx/ntxsyc.tfm + RELOC/fonts/tfm/public/newtx/ntxsym.tfm + RELOC/fonts/tfm/public/newtx/ntxsyralt.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi0.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi01.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi015.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi017.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi02.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi025.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi027.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi03.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi035.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi037.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi05.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi07.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi1.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi15.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi17.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi2.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi25.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi27.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi3.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi35.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi37.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi5.tfm + RELOC/fonts/tfm/public/newtx/nxlbmi7.tfm + RELOC/fonts/tfm/public/newtx/nxlbmia.tfm + RELOC/fonts/tfm/public/newtx/nxlbsy5.tfm + RELOC/fonts/tfm/public/newtx/nxlbsy7.tfm + RELOC/fonts/tfm/public/newtx/nxlmi.tfm + RELOC/fonts/tfm/public/newtx/nxlmi0.tfm + RELOC/fonts/tfm/public/newtx/nxlmi01.tfm + RELOC/fonts/tfm/public/newtx/nxlmi015.tfm + RELOC/fonts/tfm/public/newtx/nxlmi017.tfm + RELOC/fonts/tfm/public/newtx/nxlmi02.tfm + RELOC/fonts/tfm/public/newtx/nxlmi025.tfm + RELOC/fonts/tfm/public/newtx/nxlmi027.tfm + RELOC/fonts/tfm/public/newtx/nxlmi03.tfm + RELOC/fonts/tfm/public/newtx/nxlmi035.tfm + RELOC/fonts/tfm/public/newtx/nxlmi037.tfm + RELOC/fonts/tfm/public/newtx/nxlmi05.tfm + RELOC/fonts/tfm/public/newtx/nxlmi07.tfm + RELOC/fonts/tfm/public/newtx/nxlmi1.tfm + RELOC/fonts/tfm/public/newtx/nxlmi15.tfm + RELOC/fonts/tfm/public/newtx/nxlmi17.tfm + RELOC/fonts/tfm/public/newtx/nxlmi2.tfm + RELOC/fonts/tfm/public/newtx/nxlmi25.tfm + RELOC/fonts/tfm/public/newtx/nxlmi27.tfm + RELOC/fonts/tfm/public/newtx/nxlmi3.tfm + RELOC/fonts/tfm/public/newtx/nxlmi35.tfm + RELOC/fonts/tfm/public/newtx/nxlmi37.tfm + RELOC/fonts/tfm/public/newtx/nxlmi5.tfm + RELOC/fonts/tfm/public/newtx/nxlmi7.tfm + RELOC/fonts/tfm/public/newtx/nxlmia.tfm + RELOC/fonts/tfm/public/newtx/nxlsy5.tfm + RELOC/fonts/tfm/public/newtx/nxlsy7.tfm + RELOC/fonts/tfm/public/newtx/rfxlr-alt.tfm + RELOC/fonts/tfm/public/newtx/rfxlri-alt.tfm + RELOC/fonts/tfm/public/newtx/rfxlri-vw.tfm + RELOC/fonts/tfm/public/newtx/rfxlri-vw5.tfm + RELOC/fonts/tfm/public/newtx/rfxlri-vw7.tfm + RELOC/fonts/tfm/public/newtx/rfxlz-alt.tfm + RELOC/fonts/tfm/public/newtx/rfxlzi-alt.tfm + RELOC/fonts/tfm/public/newtx/rfxlzi-vw.tfm + RELOC/fonts/tfm/public/newtx/rfxlzi-vw5.tfm + RELOC/fonts/tfm/public/newtx/rfxlzi-vw7.tfm + RELOC/fonts/tfm/public/newtx/rntxbmi.tfm + RELOC/fonts/tfm/public/newtx/rntxbmi5.tfm + RELOC/fonts/tfm/public/newtx/rntxbmi7.tfm + RELOC/fonts/tfm/public/newtx/rntxmi.tfm + RELOC/fonts/tfm/public/newtx/rntxmi5.tfm + RELOC/fonts/tfm/public/newtx/rntxmi7.tfm + RELOC/fonts/tfm/public/newtx/rtxbmi-rev.tfm + RELOC/fonts/tfm/public/newtx/rtxbmi-ut.tfm + RELOC/fonts/tfm/public/newtx/rtxbmi5-rev.tfm + RELOC/fonts/tfm/public/newtx/rtxbmi5.tfm + RELOC/fonts/tfm/public/newtx/rtxbmi7-rev.tfm + RELOC/fonts/tfm/public/newtx/rtxbmi7.tfm + RELOC/fonts/tfm/public/newtx/rtxbmio.tfm + RELOC/fonts/tfm/public/newtx/rtxmi-ut.tfm + RELOC/fonts/tfm/public/newtx/rtxmi5.tfm + RELOC/fonts/tfm/public/newtx/rtxmi7.tfm + RELOC/fonts/tfm/public/newtx/rtxmio.tfm + RELOC/fonts/tfm/public/newtx/stx2rm.tfm + RELOC/fonts/tfm/public/newtx/txbex-bar.tfm + RELOC/fonts/tfm/public/newtx/txbexas.tfm + RELOC/fonts/tfm/public/newtx/txbexs.tfm + RELOC/fonts/tfm/public/newtx/txbmiaX.tfm + RELOC/fonts/tfm/public/newtx/txbsy5.tfm + RELOC/fonts/tfm/public/newtx/txbsy7.tfm + RELOC/fonts/tfm/public/newtx/txbsys.tfm + RELOC/fonts/tfm/public/newtx/txex-bar.tfm + RELOC/fonts/tfm/public/newtx/txexas.tfm + RELOC/fonts/tfm/public/newtx/txexs.tfm + RELOC/fonts/tfm/public/newtx/txmiaX.tfm + RELOC/fonts/tfm/public/newtx/txsy5.tfm + RELOC/fonts/tfm/public/newtx/txsy7.tfm + RELOC/fonts/tfm/public/newtx/txsys.tfm + RELOC/fonts/tfm/public/newtx/zmn-vw-b.tfm + RELOC/fonts/tfm/public/newtx/zmn-vw-r.tfm + RELOC/fonts/tfm/public/newtx/zutbmi.tfm + RELOC/fonts/tfm/public/newtx/zutmi.tfm + RELOC/fonts/tfm/public/newtx/zxlr-5nums.tfm + RELOC/fonts/tfm/public/newtx/zxlr-7nums.tfm + RELOC/fonts/tfm/public/newtx/zxlr-8r.tfm + RELOC/fonts/tfm/public/newtx/zxlr-caps.tfm + RELOC/fonts/tfm/public/newtx/zxlri-8r.tfm + RELOC/fonts/tfm/public/newtx/zxlz-8r.tfm + RELOC/fonts/tfm/public/newtx/zxlz-caps.tfm + RELOC/fonts/tfm/public/newtx/zxlzi-8r.tfm + RELOC/fonts/type1/public/newtx/Libertine-nu.pfb + RELOC/fonts/type1/public/newtx/LibertineI-5nu.pfb + RELOC/fonts/type1/public/newtx/LibertineI-7nu.pfb + RELOC/fonts/type1/public/newtx/LibertineI-nu.pfb + RELOC/fonts/type1/public/newtx/LibertineTheta-Regular.pfb + RELOC/fonts/type1/public/newtx/LibertineZ-nu.pfb + RELOC/fonts/type1/public/newtx/LibertineZI-5nu.pfb + RELOC/fonts/type1/public/newtx/LibertineZI-7nu.pfb + RELOC/fonts/type1/public/newtx/LibertineZI-nu.pfb + RELOC/fonts/type1/public/newtx/MinLibBol.pfb + RELOC/fonts/type1/public/newtx/MinLibBolIta.pfb + RELOC/fonts/type1/public/newtx/MinLibIta.pfb + RELOC/fonts/type1/public/newtx/MinLibReg.pfb + RELOC/fonts/type1/public/newtx/fxlri-5letters.pfb + RELOC/fonts/type1/public/newtx/fxlri-7letters.pfb + RELOC/fonts/type1/public/newtx/fxlri-vw.pfb + RELOC/fonts/type1/public/newtx/fxlri-vw5.pfb + RELOC/fonts/type1/public/newtx/fxlri-vw7.pfb + RELOC/fonts/type1/public/newtx/fxlzi-5letters.pfb + RELOC/fonts/type1/public/newtx/fxlzi-7letters.pfb + RELOC/fonts/type1/public/newtx/fxlzi-jv.pfb + RELOC/fonts/type1/public/newtx/fxlzi-jv5.pfb + RELOC/fonts/type1/public/newtx/fxlzi-jv7.pfb + RELOC/fonts/type1/public/newtx/fxlzi-vw.pfb + RELOC/fonts/type1/public/newtx/fxlzi-vw5.pfb + RELOC/fonts/type1/public/newtx/fxlzi-vw7.pfb + RELOC/fonts/type1/public/newtx/ntxbexb.pfb + RELOC/fonts/type1/public/newtx/ntxbexmods.pfb + RELOC/fonts/type1/public/newtx/ntxexb.pfb + RELOC/fonts/type1/public/newtx/ntxexmods.pfb + RELOC/fonts/type1/public/newtx/ntxsups-Bold.pfb + RELOC/fonts/type1/public/newtx/ntxsups-BoldItalic.pfb + RELOC/fonts/type1/public/newtx/ntxsups-Italic.pfb + RELOC/fonts/type1/public/newtx/ntxsups-Regular.pfb + RELOC/fonts/type1/public/newtx/ntxsybalt.pfb + RELOC/fonts/type1/public/newtx/ntxsyralt.pfb + RELOC/fonts/type1/public/newtx/ntxtmb.pfb + RELOC/fonts/type1/public/newtx/ntxtmbi.pfb + RELOC/fonts/type1/public/newtx/ntxtmr.pfb + RELOC/fonts/type1/public/newtx/ntxtmri.pfb + RELOC/fonts/type1/public/newtx/rntxbmi.pfb + RELOC/fonts/type1/public/newtx/rntxbmi5.pfb + RELOC/fonts/type1/public/newtx/rntxbmi7.pfb + RELOC/fonts/type1/public/newtx/rntxmi.pfb + RELOC/fonts/type1/public/newtx/rntxmi5.pfb + RELOC/fonts/type1/public/newtx/rntxmi7.pfb + RELOC/fonts/type1/public/newtx/rtxbmi-rev.pfb + RELOC/fonts/type1/public/newtx/rtxbmi5-rev.pfb + RELOC/fonts/type1/public/newtx/rtxbmi5.pfb + RELOC/fonts/type1/public/newtx/rtxbmi7-rev.pfb + RELOC/fonts/type1/public/newtx/rtxbmi7.pfb + RELOC/fonts/type1/public/newtx/rtxmi5.pfb + RELOC/fonts/type1/public/newtx/rtxmi7.pfb + RELOC/fonts/type1/public/newtx/txbex-bar.pfb + RELOC/fonts/type1/public/newtx/txbexas.pfb + RELOC/fonts/type1/public/newtx/txbexs.pfb + RELOC/fonts/type1/public/newtx/txbmiaX.pfb + RELOC/fonts/type1/public/newtx/txbsy5.pfb + RELOC/fonts/type1/public/newtx/txbsy7.pfb + RELOC/fonts/type1/public/newtx/txbsys.pfb + RELOC/fonts/type1/public/newtx/txex-bar.pfb + RELOC/fonts/type1/public/newtx/txexas.pfb + RELOC/fonts/type1/public/newtx/txexs.pfb + RELOC/fonts/type1/public/newtx/txmiaX.pfb + RELOC/fonts/type1/public/newtx/txsy5.pfb + RELOC/fonts/type1/public/newtx/txsy7.pfb + RELOC/fonts/type1/public/newtx/txsys.pfb + RELOC/fonts/type1/public/newtx/zmn-vw-b.pfb + RELOC/fonts/type1/public/newtx/zmn-vw-r.pfb + RELOC/fonts/type1/public/newtx/zxlr-5nums.pfb + RELOC/fonts/type1/public/newtx/zxlr-7nums.pfb + RELOC/fonts/type1/public/newtx/zxlr.pfb + RELOC/fonts/type1/public/newtx/zxlri.pfb + RELOC/fonts/type1/public/newtx/zxlz.pfb + RELOC/fonts/type1/public/newtx/zxlzi.pfb + RELOC/fonts/vf/public/newtx/ntxbex.vf + RELOC/fonts/vf/public/newtx/ntxbexa.vf + RELOC/fonts/vf/public/newtx/ntxbexx.vf + RELOC/fonts/vf/public/newtx/ntxbmi.vf + RELOC/fonts/vf/public/newtx/ntxbmi0.vf + RELOC/fonts/vf/public/newtx/ntxbmi05.vf + RELOC/fonts/vf/public/newtx/ntxbmi07.vf + RELOC/fonts/vf/public/newtx/ntxbmi1.vf + RELOC/fonts/vf/public/newtx/ntxbmi15.vf + RELOC/fonts/vf/public/newtx/ntxbmi17.vf + RELOC/fonts/vf/public/newtx/ntxbmi1x.vf + RELOC/fonts/vf/public/newtx/ntxbmi5.vf + RELOC/fonts/vf/public/newtx/ntxbmi7.vf + RELOC/fonts/vf/public/newtx/ntxbmia.vf + RELOC/fonts/vf/public/newtx/ntxbsy.vf + RELOC/fonts/vf/public/newtx/ntxbsy5.vf + RELOC/fonts/vf/public/newtx/ntxbsy7.vf + RELOC/fonts/vf/public/newtx/ntxbsyc.vf + RELOC/fonts/vf/public/newtx/ntxbsym.vf + RELOC/fonts/vf/public/newtx/ntxexa.vf + RELOC/fonts/vf/public/newtx/ntxexx.vf + RELOC/fonts/vf/public/newtx/ntxmi.vf + RELOC/fonts/vf/public/newtx/ntxmi0.vf + RELOC/fonts/vf/public/newtx/ntxmi05.vf + RELOC/fonts/vf/public/newtx/ntxmi07.vf + RELOC/fonts/vf/public/newtx/ntxmi1.vf + RELOC/fonts/vf/public/newtx/ntxmi15.vf + RELOC/fonts/vf/public/newtx/ntxmi17.vf + RELOC/fonts/vf/public/newtx/ntxmi5.vf + RELOC/fonts/vf/public/newtx/ntxmi7.vf + RELOC/fonts/vf/public/newtx/ntxmia.vf + RELOC/fonts/vf/public/newtx/ntxstx2bmi.vf + RELOC/fonts/vf/public/newtx/ntxstx2bmia.vf + RELOC/fonts/vf/public/newtx/ntxstx2mi.vf + RELOC/fonts/vf/public/newtx/ntxstx2mia.vf + RELOC/fonts/vf/public/newtx/ntxsy.vf + RELOC/fonts/vf/public/newtx/ntxsy5.vf + RELOC/fonts/vf/public/newtx/ntxsy7.vf + RELOC/fonts/vf/public/newtx/ntxsyc.vf + RELOC/fonts/vf/public/newtx/ntxsym.vf + RELOC/fonts/vf/public/newtx/nxlbmi.vf + RELOC/fonts/vf/public/newtx/nxlbmi0.vf + RELOC/fonts/vf/public/newtx/nxlbmi01.vf + RELOC/fonts/vf/public/newtx/nxlbmi015.vf + RELOC/fonts/vf/public/newtx/nxlbmi017.vf + RELOC/fonts/vf/public/newtx/nxlbmi02.vf + RELOC/fonts/vf/public/newtx/nxlbmi025.vf + RELOC/fonts/vf/public/newtx/nxlbmi027.vf + RELOC/fonts/vf/public/newtx/nxlbmi03.vf + RELOC/fonts/vf/public/newtx/nxlbmi035.vf + RELOC/fonts/vf/public/newtx/nxlbmi037.vf + RELOC/fonts/vf/public/newtx/nxlbmi05.vf + RELOC/fonts/vf/public/newtx/nxlbmi07.vf + RELOC/fonts/vf/public/newtx/nxlbmi1.vf + RELOC/fonts/vf/public/newtx/nxlbmi15.vf + RELOC/fonts/vf/public/newtx/nxlbmi17.vf + RELOC/fonts/vf/public/newtx/nxlbmi2.vf + RELOC/fonts/vf/public/newtx/nxlbmi25.vf + RELOC/fonts/vf/public/newtx/nxlbmi27.vf + RELOC/fonts/vf/public/newtx/nxlbmi3.vf + RELOC/fonts/vf/public/newtx/nxlbmi35.vf + RELOC/fonts/vf/public/newtx/nxlbmi37.vf + RELOC/fonts/vf/public/newtx/nxlbmi5.vf + RELOC/fonts/vf/public/newtx/nxlbmi7.vf + RELOC/fonts/vf/public/newtx/nxlbmia.vf + RELOC/fonts/vf/public/newtx/nxlbsy5.vf + RELOC/fonts/vf/public/newtx/nxlbsy7.vf + RELOC/fonts/vf/public/newtx/nxlmi.vf + RELOC/fonts/vf/public/newtx/nxlmi0.vf + RELOC/fonts/vf/public/newtx/nxlmi01.vf + RELOC/fonts/vf/public/newtx/nxlmi015.vf + RELOC/fonts/vf/public/newtx/nxlmi017.vf + RELOC/fonts/vf/public/newtx/nxlmi02.vf + RELOC/fonts/vf/public/newtx/nxlmi025.vf + RELOC/fonts/vf/public/newtx/nxlmi027.vf + RELOC/fonts/vf/public/newtx/nxlmi03.vf + RELOC/fonts/vf/public/newtx/nxlmi035.vf + RELOC/fonts/vf/public/newtx/nxlmi037.vf + RELOC/fonts/vf/public/newtx/nxlmi05.vf + RELOC/fonts/vf/public/newtx/nxlmi07.vf + RELOC/fonts/vf/public/newtx/nxlmi1.vf + RELOC/fonts/vf/public/newtx/nxlmi15.vf + RELOC/fonts/vf/public/newtx/nxlmi17.vf + RELOC/fonts/vf/public/newtx/nxlmi2.vf + RELOC/fonts/vf/public/newtx/nxlmi25.vf + RELOC/fonts/vf/public/newtx/nxlmi27.vf + RELOC/fonts/vf/public/newtx/nxlmi3.vf + RELOC/fonts/vf/public/newtx/nxlmi35.vf + RELOC/fonts/vf/public/newtx/nxlmi37.vf + RELOC/fonts/vf/public/newtx/nxlmi5.vf + RELOC/fonts/vf/public/newtx/nxlmi7.vf + RELOC/fonts/vf/public/newtx/nxlmia.vf + RELOC/fonts/vf/public/newtx/nxlsy5.vf + RELOC/fonts/vf/public/newtx/nxlsy7.vf + RELOC/fonts/vf/public/newtx/zutbmi.vf + RELOC/fonts/vf/public/newtx/zutmi.vf + RELOC/tex/latex/newtx/TeXGyreTermesX.fontspec + RELOC/tex/latex/newtx/lmsntxsy.fd + RELOC/tex/latex/newtx/lmxntxexx.fd + RELOC/tex/latex/newtx/ly1minlibertine.fd + RELOC/tex/latex/newtx/ly1ntxlf.fd + RELOC/tex/latex/newtx/ly1ntxosf.fd + RELOC/tex/latex/newtx/ly1ntxsups.fd + RELOC/tex/latex/newtx/ly1ntxtlf.fd + RELOC/tex/latex/newtx/ly1ntxtosf.fd + RELOC/tex/latex/newtx/ly1ntxtt.fd + RELOC/tex/latex/newtx/newtxmath.sty + RELOC/tex/latex/newtx/newtxtext.sty + RELOC/tex/latex/newtx/omlntxmi.fd + RELOC/tex/latex/newtx/omlntxstx2mi.fd + RELOC/tex/latex/newtx/omlnxlmi.fd + RELOC/tex/latex/newtx/omlzbvmi.fd + RELOC/tex/latex/newtx/omlzmnmi.fd + RELOC/tex/latex/newtx/omlzutmi.fd + RELOC/tex/latex/newtx/ot1minlibertine.fd + RELOC/tex/latex/newtx/ot1ntxlf.fd + RELOC/tex/latex/newtx/ot1ntxosf.fd + RELOC/tex/latex/newtx/ot1ntxsups.fd + RELOC/tex/latex/newtx/ot1ntxtlf.fd + RELOC/tex/latex/newtx/ot1ntxtosf.fd + RELOC/tex/latex/newtx/ot1ntxtt.fd + RELOC/tex/latex/newtx/t1fxl1.fd + RELOC/tex/latex/newtx/t1minlibertine.fd + RELOC/tex/latex/newtx/t1ntxlf.fd + RELOC/tex/latex/newtx/t1ntxosf.fd + RELOC/tex/latex/newtx/t1ntxsups.fd + RELOC/tex/latex/newtx/t1ntxtlf.fd + RELOC/tex/latex/newtx/t1ntxtosf.fd + RELOC/tex/latex/newtx/t1ntxtt.fd + RELOC/tex/latex/newtx/ts1ntxlf.fd + RELOC/tex/latex/newtx/ts1ntxosf.fd + RELOC/tex/latex/newtx/ts1ntxtlf.fd + RELOC/tex/latex/newtx/ts1ntxtosf.fd + RELOC/tex/latex/newtx/ts1ntxtt.fd + RELOC/tex/latex/newtx/untxexa.fd + RELOC/tex/latex/newtx/untxmia.fd + RELOC/tex/latex/newtx/untxsyc.fd + RELOC/tex/latex/newtx/untxsym.fd + RELOC/tex/latex/newtx/untxtt.fd + RELOC/tex/latex/newtx/uzmnmia.fd +catalogue-also minion2newtx +catalogue-ctan /fonts/newtx +catalogue-date 2018-05-31 19:53:12 +0200 +catalogue-license lppl1.3 +catalogue-topics font font-proportional font-maths font-type1 font-otf font-t1enc +catalogue-version 1.554 + +name newtxsf +category Package +revision 47958 +shortdesc Sans-math fonts for use with newtx +relocated 1 +longdesc The package provides a maths support that amounts to +longdesc modifications of the STIX sans serif Roman and Greek letters +longdesc with most symbols taken from newtxmath (which must of course be +longdesc installed and its map file enabled). +execute addMap newtxsf.map +containersize 105228 +containerchecksum ce1497bcc316b555b47dcab2bf68888fb580e0f1252fa1e1f73f2b3cfad2b9754ea4963ef0c39b967ac374323b6f75cdf28d0d25f93212b09a1e66bf90976c51 +doccontainersize 332220 +doccontainerchecksum 426c11211d3f66c8d87b1b2522ed8bd9b2ed0e4e006dac4c0751d0b479100e2cc1aa60ab2c32b8e6362b767300f568ed295bcabf4a86c51f2ada7ea868483066 +docfiles size=93 + RELOC/doc/fonts/newtxsf/OFL-FAQ.txt + RELOC/doc/fonts/newtxsf/OFL.txt + RELOC/doc/fonts/newtxsf/README details="Readme" + RELOC/doc/fonts/newtxsf/newtxsf-doc.pdf details="Package documentation" + RELOC/doc/fonts/newtxsf/newtxsf-doc.tex +runfiles size=61 + RELOC/fonts/map/dvips/newtxsf/newtxsf.map + RELOC/fonts/tfm/public/newtxsf/ntxsfbmi.tfm + RELOC/fonts/tfm/public/newtxsf/ntxsfbmia.tfm + RELOC/fonts/tfm/public/newtxsf/ntxsfmi.tfm + RELOC/fonts/tfm/public/newtxsf/ntxsfmia.tfm + RELOC/fonts/tfm/public/newtxsf/zsfmi-bol.tfm + RELOC/fonts/tfm/public/newtxsf/zsfmi-reg.tfm + RELOC/fonts/tfm/public/newtxsf/zsfmia-bol.tfm + RELOC/fonts/tfm/public/newtxsf/zsfmia-reg.tfm + RELOC/fonts/type1/public/newtxsf/zsfmi-bol.pfb + RELOC/fonts/type1/public/newtxsf/zsfmi-reg.pfb + RELOC/fonts/type1/public/newtxsf/zsfmia-bol.pfb + RELOC/fonts/type1/public/newtxsf/zsfmia-reg.pfb + RELOC/fonts/vf/public/newtxsf/ntxsfbmi.vf + RELOC/fonts/vf/public/newtxsf/ntxsfbmia.vf + RELOC/fonts/vf/public/newtxsf/ntxsfmi.vf + RELOC/fonts/vf/public/newtxsf/ntxsfmia.vf + RELOC/tex/latex/newtxsf/newtxsf.sty + RELOC/tex/latex/newtxsf/omlntxsfmi.fd + RELOC/tex/latex/newtxsf/untxsfmia.fd +catalogue-also newtx stix +catalogue-ctan /fonts/newtxsf +catalogue-date 2018-06-07 22:19:28 +0200 +catalogue-license ofl +catalogue-topics font font-sans font-maths font-type1 +catalogue-version 1.051 + +name newtxtt +category Package +revision 44510 +shortdesc Enhancement of typewriter fonts from newtx +relocated 1 +longdesc The package provides enhanced fonts with LaTeX support files +longdesc providing access to the typewriter fonts from newtx. Regular +longdesc and bold weights, slanted variants and a choice of four +longdesc different styles for zero. +execute addMap newtxtt.map +containersize 116900 +containerchecksum 95c25791796b56eb6e54be98c522861d3704e76c3d2a88c871fb88c9dfca616867a8cb839d8ba9f5b42e03eddf6d27f37cf91bfbdaae5aa13c4ce9fa681be9c9 +doccontainersize 80548 +doccontainerchecksum c4f9e344d0060b569e7503d12b1021bfd68bc58842778d2d9c4014b9f70c10a9a23ebca6495f2acac358a4d6d5710e8db48dcf445b3be5d278cc9818a57bb999 +docfiles size=22 + RELOC/doc/fonts/newtxtt/README details="Readme" + RELOC/doc/fonts/newtxtt/newtxtt-doc.pdf details="Package documentation" + RELOC/doc/fonts/newtxtt/newtxtt-doc.tex +runfiles size=204 + RELOC/fonts/enc/dvips/newtxtt/txttAec.enc + RELOC/fonts/enc/dvips/newtxtt/txttAqec.enc + RELOC/fonts/enc/dvips/newtxtt/txttBec.enc + RELOC/fonts/enc/dvips/newtxtt/txttBqec.enc + RELOC/fonts/enc/dvips/newtxtt/txttCec.enc + RELOC/fonts/enc/dvips/newtxtt/txttCqec.enc + RELOC/fonts/enc/dvips/newtxtt/txttDec.enc + RELOC/fonts/enc/dvips/newtxtt/txttDqec.enc + RELOC/fonts/enc/dvips/newtxtt/txttEec.enc + RELOC/fonts/enc/dvips/newtxtt/txttEqec.enc + RELOC/fonts/map/dvips/newtxtt/newtxtt.map + RELOC/fonts/tfm/public/newtxtt/newtxbtta.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttaq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttb.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttbq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttc.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttcq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttd.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttdq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbtte.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbtteq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttsca.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttscaq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttscb.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttscbq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttscc.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttsccq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttscd.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttscdq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttsce.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttsceq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttsla.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttslaq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttslb.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttslbq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttslc.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttslcq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttsld.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttsldq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttsle.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttsleq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttza.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzaq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzb.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzbq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzc.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzcq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzd.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzdq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttze.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzeq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzsca.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzscaq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzscb.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzscbq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzscc.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzsccq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzscd.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzscdq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzsce.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzsceq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzsla.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzslaq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzslb.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzslbq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzslc.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzslcq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzsld.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzsldq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzsle.tfm + RELOC/fonts/tfm/public/newtxtt/newtxbttzsleq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxtta.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttaq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttb.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttbq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttc.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttcq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttd.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttdq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxtte.tfm + RELOC/fonts/tfm/public/newtxtt/newtxtteq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttsca.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttscaq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttscb.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttscbq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttscc.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttsccq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttscd.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttscdq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttsce.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttsceq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttsla.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttslaq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttslb.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttslbq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttslc.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttslcq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttsld.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttsldq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttsle.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttsleq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttza.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzaq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzb.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzbq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzc.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzcq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzd.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzdq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttze.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzeq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzsca.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzscaq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzscb.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzscbq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzscc.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzsccq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzscd.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzscdq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzsce.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzsceq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzsla.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzslaq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzslb.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzslbq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzslc.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzslcq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzsld.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzsldq.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzsle.tfm + RELOC/fonts/tfm/public/newtxtt/newtxttzsleq.tfm + RELOC/fonts/tfm/public/newtxtt/tcxbttz.tfm + RELOC/fonts/tfm/public/newtxtt/tcxbttzsl.tfm + RELOC/fonts/tfm/public/newtxtt/tcxttz.tfm + RELOC/fonts/tfm/public/newtxtt/tcxttzsl.tfm + RELOC/fonts/type1/public/newtxtt/newtxbtt.pfb + RELOC/fonts/type1/public/newtxtt/newtxbttsc.pfb + RELOC/fonts/type1/public/newtxtt/newtxtt.pfb + RELOC/fonts/type1/public/newtxtt/newtxttsc.pfb + RELOC/tex/latex/newtxtt/newtxtt.sty + RELOC/tex/latex/newtxtt/t1newtxtt.fd + RELOC/tex/latex/newtxtt/t1newtxttz.fd + RELOC/tex/latex/newtxtt/ts1newtxtt.fd + RELOC/tex/latex/newtxtt/ts1newtxttz.fd +catalogue-ctan /fonts/newtxtt +catalogue-date 2017-05-22 18:08:04 +0200 +catalogue-license gpl3lppl +catalogue-topics font font-type1 font-mono font-t1enc +catalogue-version 1.055 + +name newunicodechar +category Package +revision 47382 +shortdesc Definitions of the meaning of Unicode characters +relocated 1 +longdesc The package provides a friendly interface for defining the +longdesc meaning of Unicode characters. The document should be processed +longdesc by (pdf)LaTeX with the unicode option of inputenc or inputenx, +longdesc or by XeLaTeX/LuaLaTeX. The command provided is +longdesc \newunicodechar{}{} where is a +longdesc directly-typed Unicode character, and is its +longdesc replacement. +containersize 2116 +containerchecksum 8e1748abc585f51033a857db126c4b18f0c42e015d7193f8bc7b69493fb13a218db38da97f3a6733df01dbc247093beb544651a050c5a690f3cd5479c4ad9e6a +doccontainersize 389624 +doccontainerchecksum 9ec3bdc81587e8b2553dd4ff45ca4ba0bb504ded0726aa44d1e88423cdf425124334d04ebfbdbbe57b576b0fa52cfe1771c97308f146ea19d89d41eb4475eb9e +docfiles size=96 + RELOC/doc/latex/newunicodechar/README details="Readme" + RELOC/doc/latex/newunicodechar/newunicodechar.pdf details="Package documentation" +srccontainersize 6964 +srccontainerchecksum 0464584e516c8f5d9c7ab4db114fbe3ea9e07d33c1544109ebd0d3b25e4e3ddac222dd69b6a8222e290ae2b6a7d7166a76b54ff9fbe7ffd5225368986e2af6d4 +srcfiles size=6 + RELOC/source/latex/newunicodechar/newunicodechar.dtx + RELOC/source/latex/newunicodechar/newunicodechar.ins +runfiles size=2 + RELOC/tex/latex/newunicodechar/newunicodechar.sty +catalogue-ctan /macros/latex/contrib/newunicodechar +catalogue-date 2018-04-08 14:20:27 +0200 +catalogue-license lppl1.3c +catalogue-topics inputenc unicode +catalogue-version 1.2 + +name newvbtm +category Package +revision 23996 +shortdesc Define your own verbatim-like environment +relocated 1 +longdesc Defines general purpose macro named \newverbatim to define your +longdesc own verbatim-like environment. It also has a supplementary +longdesc style file varvbtm.sty to provide set of macros for variants of +longdesc verbatim, such as tab emulation. +containersize 3396 +containerchecksum 029829b1da07d7e2fcc5950c32021707058f3d7228f6ff82404aeb962663277ed107934f04a93e7f43bd7b67f7034821437f3a8116f21028b7c9a154449ea53e +doccontainersize 69108 +doccontainerchecksum dda7ae47bb076f03cba83438c573405f1c67e5407d83fa0894e9575952c284010b62f62720022ffb7a8e723e829610d1e8ff6a8b5098c92207e8ab8755dcb409 +docfiles size=23 + RELOC/doc/latex/newvbtm/README details="Readme" + RELOC/doc/latex/newvbtm/newvbtm-man.pdf details="Package manual" + RELOC/doc/latex/newvbtm/newvbtm-man.tex +srccontainersize 13024 +srccontainerchecksum 8d58e55977d708c8e3fd9ea6394494f68ccb21712703b2302355234d12355c23de97cb392d7ceda95bc078ddb2cbdd2030461b5b4069805d4ba01b5e3a8b8f59 +srcfiles size=13 + RELOC/source/latex/newvbtm/newvbtm.dtx + RELOC/source/latex/newvbtm/newvbtm.ins +runfiles size=3 + RELOC/tex/latex/newvbtm/newvbtm.sty + RELOC/tex/latex/newvbtm/varvbtm.sty +catalogue-ctan /macros/latex/contrib/newvbtm +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics verbatim listing +catalogue-version 1.1 + +name newverbs +category Package +revision 26258 +shortdesc Define new versions of \verb, including short verb versions +relocated 1 +longdesc The package allows the definition of \verb variants which add +longdesc TeX code before and after the verbatim text (e.g., quotes or +longdesc surrounding \fbox{}). When used together with the shortvrb +longdesc package it allows the definition of short verbatim characters +longdesc which use this package's variant instead of the normal \verb. +longdesc In addition, it is possible to collect an argument verbatim to +longdesc either typeset or write it into a file. The \Verbdef command +longdesc defines verbatim text to a macro which can later be used to +longdesc write the verbatim text to a file. +containersize 2608 +containerchecksum 438115370b2895a717a89aefa991dd781099cac31c1f3e28168e618f932fec4ee2774f82ecdf0a52a89c87fdc8d83654d28061f742410d5cfb96a308941fbc6e +doccontainersize 181084 +doccontainerchecksum 17bc12bb030e8279d51ccc6675c1db6aa28f1ad762079daef73caf2c00cf2c42a725488857014d1e8bc04682f6869c2e626194f27b75d0b17129ef292dd138bd +docfiles size=46 + RELOC/doc/latex/newverbs/README details="Readme" + RELOC/doc/latex/newverbs/newverbs.pdf details="Package documentation" +srccontainersize 6196 +srccontainerchecksum 2e2e8a13e0bba6d740a4b00cbb1c30188ee94b6b6bf185a2b453763574c3f026a56959504b2fca51cc4c858dabcca0cfdea8834d8fe34536176e0b8389f291dd +srcfiles size=7 + RELOC/source/latex/newverbs/newverbs.dtx + RELOC/source/latex/newverbs/newverbs.ins +runfiles size=2 + RELOC/tex/latex/newverbs/newverbs.sty +catalogue-also shortvrb +catalogue-contact-repository https://bitbucket.org/martin_scharrer/newverbs +catalogue-ctan /macros/latex/contrib/newverbs +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics verbatim +catalogue-version 1.3a + +name nextpage +category Package +revision 15878 +shortdesc Generalisations of the page advance commands +relocated 1 +longdesc Provides \clearpage and \newpage variants that guarantee to end +longdesc up on even/odd numbered pages; these 4 commands all have an +longdesc optional argument whose content will be placed on any "empty" +longdesc page generated. +containersize 1172 +containerchecksum fca0aec60c5c7277dcadb0f86d757617484d700575fae13df8b386775e153ea89c52935ffdb2448c52e351593b396fdf3394f5b97e23a0d2d40dac339e584f59 +runfiles size=1 + RELOC/tex/latex/nextpage/nextpage.sty +catalogue-ctan /macros/latex/contrib/misc/nextpage.sty +catalogue-date 2016-07-17 15:22:03 +0200 +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1.1a + +name nfssext-cfr +category Package +revision 43640 +shortdesc Extensions to the LaTeX NFSS +relocated 1 +longdesc The package is a development of nfssext.sty, distributed with +longdesc the examples for the font installation guide. The package has +longdesc been developed for use in packages such as cfr-lm and +longdesc venturisadf, +containersize 5276 +containerchecksum 5083d4ff4168b857a7391855ce02ea354cb17a26242a3e3b2693d6bbb35f722f750299669a37afbb99a52180433d697fbf65a6fb6afd6bd58d4b16c63e5b0d67 +doccontainersize 184888 +doccontainerchecksum 28b2aff47d74de3a42c441dafc156297904b5db20d267f1af07d1e3210e7f9959474b3cec387be7d9b20dc04560b4100a0d9da6979ab8ad2a7cd1e4518cec278 +docfiles size=49 + RELOC/doc/latex/nfssext-cfr/README details="Readme" + RELOC/doc/latex/nfssext-cfr/nfssext-cfr.pdf details="Package documentation" + RELOC/doc/latex/nfssext-cfr/nfssext-cfr.tex +runfiles size=6 + RELOC/tex/latex/nfssext-cfr/nfssext-cfr.sty +catalogue-ctan /macros/latex/contrib/nfssext-cfr +catalogue-date 2017-03-29 11:57:53 +0200 +catalogue-license lppl1.3 +catalogue-topics font-sel + +name nicefilelist +category Package +revision 28527 +shortdesc Provide \listfiles alignment +relocated 1 +longdesc The package extends longnamefilelist, keeping separate columns +longdesc for date, version and "caption" (the caption now separately +longdesc listed). Alignment is not disturbed by short file name +longdesc extensions, such as ".fd". The package is not compatible with +longdesc longnamefilelist: users need to re-read the documentation. +containersize 6364 +containerchecksum 4e3e1b651a5f3828c1806ee199ddff3a022f27381da241f2d9400cc3943d9aa29e0dd56bd10d7fab60da1901f221cb54c74823b35f163ace0efbd3217b767ca3 +doccontainersize 598780 +doccontainerchecksum 5c909c6dce453a7a73abd63896c0916db3f609b7d4283b70af33bfc31ec44e7aa5b3dc2e8d1ef6fb3d33605d23e079db4e7cadf4fa13197823ca3c177b82f527 +docfiles size=161 + RELOC/doc/latex/nicefilelist/README details="Readme" + RELOC/doc/latex/nicefilelist/SrcFILEs.txt + RELOC/doc/latex/nicefilelist/nicefilelist.pdf details="Package documentation" +srccontainersize 7160 +srccontainerchecksum b7915ca4c8a24ae84b1caea7bbdd395f5c12305a81f193f35ab4bfe91a12a21417e41b5d46b6ca72c69357782a1e6e4a8366e0bad85a9c453759ea6bd1ee4874 +srcfiles size=8 + RELOC/source/latex/nicefilelist/empty.f + RELOC/source/latex/nicefilelist/nicefilelist.tex + RELOC/source/latex/nicefilelist/provonly.fd + RELOC/source/latex/nicefilelist/srcfiles.tex + RELOC/source/latex/nicefilelist/wrong.prv +runfiles size=5 + RELOC/tex/latex/nicefilelist/nicefilelist.RLS + RELOC/tex/latex/nicefilelist/nicefilelist.sty +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html +catalogue-ctan /macros/latex/contrib/nicefilelist +catalogue-date 2017-05-06 09:02:27 +0200 +catalogue-license lppl1.3 +catalogue-topics doc-mgmt +catalogue-version 0.7a + +name niceframe +category Package +revision 36086 +shortdesc Support for fancy frames +relocated 1 +longdesc The package defines means of drawing frames around boxes, using +longdesc dingbat fonts. Some (Metafont) font sources are included; the +longdesc fonts are available separately in Type 1 format. +containersize 34512 +containerchecksum 539d4a6f3a192188064fafd94366ad2f8a9146175d9e04b08cd83d1386bccc730a0e3be4a9fd45e4f47152f10710191b063138ba504fca95e4226fc179f70a29 +doccontainersize 225404 +doccontainerchecksum aaf777520d300b5e8c9a17c2dfb5b12406f5e6926b17c4244feaa8d6c5bc28d87277f23fd814304a7efb91dab8a42e1ed88f6568b96f13f30c831e81201ff4f7 +docfiles size=65 + RELOC/doc/latex/niceframe/dingbat.mf + RELOC/doc/latex/niceframe/example.tex + RELOC/doc/latex/niceframe/niceframe.pdf details="Package documentation" +srccontainersize 7064 +srccontainerchecksum fb0106ee32e36d34767c6200be1d2415e11c275e5540dbd54777a6876474424f1c82ba52bcc0fd76da9ecf3b37671d37c762834b3e6ef714028c1917dee45235 +srcfiles size=7 + RELOC/source/latex/niceframe/niceframe.drv + RELOC/source/latex/niceframe/niceframe.dtx + RELOC/source/latex/niceframe/niceframe.ins +runfiles size=58 + RELOC/fonts/source/public/niceframe/karta.mf + RELOC/fonts/source/public/niceframe/karta15.mf + RELOC/fonts/source/public/niceframe/umrand.mf + RELOC/fonts/source/public/niceframe/umranda.mf + RELOC/fonts/source/public/niceframe/umrandb.mf + RELOC/fonts/tfm/public/niceframe/karta15.tfm + RELOC/fonts/tfm/public/niceframe/umranda.tfm + RELOC/fonts/tfm/public/niceframe/umrandb.tfm + RELOC/tex/latex/niceframe/niceframe.sty +catalogue-also umrand +catalogue-ctan /macros/latex/contrib/niceframe +catalogue-date 2017-10-29 15:00:32 +0100 +catalogue-license lppl +catalogue-topics decoration font font-mf +catalogue-version 1.1c + +name niceframe-type1 +category Package +revision 44671 +shortdesc Type 1 versions of the fonts recommended in niceframe +relocated 1 +longdesc The bundle provides Adobe Type 1 versions of the fonts +longdesc bbding10, dingbat, karta15, umranda and umrandb. +execute addMap niceframe.map +containersize 276328 +containerchecksum c99757f9907622958267f042f0ee0aec8dc6317839fba05309116f9151e476e37f24dde00e6de59fb0204beb9383eae039c0fabb089d6349d6f6031e8df196f0 +doccontainersize 604 +doccontainerchecksum 5ab28cf7091ba993d7b4ac9f5caf2d563c60e63a3ce8975bae105f460e2dadbc963efd17b7ec5ddeeb8a35bea1b05a007590d3f6f9d5cf5dba0495e5b0ee8ad8 +docfiles size=2 + RELOC/doc/fonts/niceframe-type1/README.md details="Readme" + RELOC/doc/fonts/niceframe-type1/config.niceframe +runfiles size=84 + RELOC/fonts/afm/public/niceframe-type1/bbding10.afm + RELOC/fonts/afm/public/niceframe-type1/dingbat.afm + RELOC/fonts/afm/public/niceframe-type1/karta15.afm + RELOC/fonts/afm/public/niceframe-type1/umranda.afm + RELOC/fonts/afm/public/niceframe-type1/umrandb.afm + RELOC/fonts/map/dvips/niceframe-type1/niceframe.map + RELOC/fonts/type1/public/niceframe-type1/bbding10.pfb + RELOC/fonts/type1/public/niceframe-type1/dingbat.pfb + RELOC/fonts/type1/public/niceframe-type1/karta15.pfb + RELOC/fonts/type1/public/niceframe-type1/umranda.pfb + RELOC/fonts/type1/public/niceframe-type1/umrandb.pfb +catalogue-ctan /fonts/niceframe +catalogue-date 2017-06-23 04:27:05 +0200 +catalogue-license lppl +catalogue-topics font font-type1 font-decor + +name nicematrix +category Package +revision 49866 +shortdesc Several features to improve the typesetting of mathematical matrices with TikZ +relocated 1 +longdesc This package provides new environments similar to the +longdesc environments matrix, pmatrix, bmatrix, etc. of amsmath and +longdesc mathtools. In these new environments, a TikZ node is created +longdesc for each cell of the matrix. The user can use these nodes +longdesc directly but nicematrix also provides commands which use these +longdesc nodes to draw continuous dotted lines from two cells of the +longdesc matrix (the result is more aesthetic than the classical result +longdesc obtained using \cdots, \vdots, \ddots, etc.). This package also +longdesc provides a control over the width of the columns and the +longdesc possibility to add an exterior line and an exterior column. +containersize 8244 +containerchecksum af54c75598589c6b424afcccc3a6771523b9957ce457ee0440ac0e0946c09d6e8ab379e23a1cebcb42470584fa09ec9c039c39fd04ab896821be040186b1c007 +doccontainersize 369984 +doccontainerchecksum a461981241f15a73799a59781527b2d9dcdaf07c70c8f0f4835ae19f8a9fde7d1ed4363f341ef172479e88526b69fb31d4c9ba6354b1b3063ba48aa4d4ae7cd7 +docfiles size=94 + RELOC/doc/latex/nicematrix/README.md details="Readme" + RELOC/doc/latex/nicematrix/nicematrix.pdf details="Package documentation" +srccontainersize 30076 +srccontainerchecksum fbb4916fa0206da20449c2f0e3244aff06b2b4f7de4301bd224b5393da87baaa6e9eb32fdb004b6520c461b435b2d1bf1825a841790271bf7bb0ddaa1b7bb171 +srcfiles size=44 + RELOC/source/latex/nicematrix/nicematrix.dtx + RELOC/source/latex/nicematrix/nicematrix.ins +runfiles size=15 + RELOC/tex/latex/nicematrix/nicematrix.sty +catalogue-ctan /macros/latex/contrib/nicematrix +catalogue-date 2019-01-28 22:49:06 +0100 +catalogue-license lppl1.3 +catalogue-topics maths pgf-tikz +catalogue-version 2.1.4 + +name nicetext +category Package +revision 38914 +shortdesc Minimal markup for simple text (Wikipedia style) and documentation +relocated 1 +longdesc The bundle offers "minimal" markup syntax for various simple +longdesc kinds of text. The user will typically involve little more than +longdesc is printed, and will still get LaTeX quality. The bundle +longdesc provides four packages: wiki addresses general texts, marked up +longdesc in the simple style used on Wikipedia; niceverb is yet another +longdesc means of documenting LaTeX packages: it offers syntax-aware +longdesc typesetting of meta-variables (macro arguments) and for +longdesc referring to commands (and their syntax) in footnotes, section +longdesc titles etc.; fifinddo aims to parse plain text or (La)TeX files +longdesc using TeX, and to write the results to an external file; the +longdesc package is used by another member of the bundle: makedoc, which +longdesc provides the means to produce typeset documentation direct from +longdesc package files. +containersize 54740 +containerchecksum 04a555a82287a39249cf6b0e18d890329098a1d0d6957fe9a1c535024b63a5f50b6487dc1fe4fd69d87908abd385b0366474ebe3af0b31f41f6a35c519a6ba9c +doccontainersize 2473836 +doccontainerchecksum 96cd1694ae0cb116bb4620f7cdc1f9e24385886c78cf87466cd329c5ca0d78111005ff89e9be50f07078eaedb69c4f3d495b1fc5063a1a69e483b86a6c8534b1 +docfiles size=697 + RELOC/doc/latex/nicetext/ANNOUNCE.txt + RELOC/doc/latex/nicetext/CHANGE.LOG + RELOC/doc/latex/nicetext/FILEs.txt + RELOC/doc/latex/nicetext/README details="Readme" + RELOC/doc/latex/nicetext/README.pdf + RELOC/doc/latex/nicetext/RELEAS03.txt + RELOC/doc/latex/nicetext/RELEAS04.txt + RELOC/doc/latex/nicetext/RELEAS05.txt + RELOC/doc/latex/nicetext/RELEASE042.txt + RELOC/doc/latex/nicetext/RELEASE043.txt + RELOC/doc/latex/nicetext/RELEASE044.txt + RELOC/doc/latex/nicetext/RELEASE051.txt + RELOC/doc/latex/nicetext/RELEASE064.txt + RELOC/doc/latex/nicetext/RELEASE066.txt + RELOC/doc/latex/nicetext/SrcFILEs.txt + RELOC/doc/latex/nicetext/demo/arseneau.pdf + RELOC/doc/latex/nicetext/demo/iso.txt + RELOC/doc/latex/nicetext/demo/lns.txt + RELOC/doc/latex/nicetext/demo/sample.tex + RELOC/doc/latex/nicetext/demo/substr.pdf + RELOC/doc/latex/nicetext/fifinddo.pdf details="Fifinddo documentation" + RELOC/doc/latex/nicetext/makedoc.pdf details="Makedoc documentation" + RELOC/doc/latex/nicetext/mdoccheat.pdf details="Cheat sheet for the makedoc package" + RELOC/doc/latex/nicetext/niceverb.pdf details="Niceverb documentation" + RELOC/doc/latex/nicetext/wikicheat.pdf details="Cheatsheet for the wiki package" +srccontainersize 28908 +srccontainerchecksum d7c556fb2fc34e7eca9038667842825053ac03478e32a6a58cdda2209b33ece494071e47d54bb24f7c085f90b45375bb5db7781db642bd9f8cf661853d077f60 +srcfiles size=27 + RELOC/source/latex/nicetext/README.tex + RELOC/source/latex/nicetext/fifinddo.tex + RELOC/source/latex/nicetext/makedoc.tex + RELOC/source/latex/nicetext/mdoccheat.tex + RELOC/source/latex/nicetext/niceverb.tex + RELOC/source/latex/nicetext/srcfiles.tex + RELOC/source/latex/nicetext/updsfl.sh + RELOC/source/latex/nicetext/wikicheat.tex +runfiles size=62 + RELOC/tex/latex/nicetext/fifinddo.sty + RELOC/tex/latex/nicetext/makedoc.cfg + RELOC/tex/latex/nicetext/makedoc.sty + RELOC/tex/latex/nicetext/mdoccorr.cfg + RELOC/tex/latex/nicetext/nicetext.RLS + RELOC/tex/latex/nicetext/niceverb.sty + RELOC/tex/latex/nicetext/run/README-run.txt + RELOC/tex/latex/nicetext/run/arseneau.tex + RELOC/tex/latex/nicetext/run/atari.cfg + RELOC/tex/latex/nicetext/run/atari.txt + RELOC/tex/latex/nicetext/run/copyfile.cfg + RELOC/tex/latex/nicetext/run/copyfile.tex + RELOC/tex/latex/nicetext/run/fddial0g.sty + RELOC/tex/latex/nicetext/run/fdtxttex.cfg + RELOC/tex/latex/nicetext/run/fdtxttex.tex + RELOC/tex/latex/nicetext/run/fdtxttex.tpl + RELOC/tex/latex/nicetext/run/lines.txt + RELOC/tex/latex/nicetext/run/makedoc.tpl + RELOC/tex/latex/nicetext/run/sample.txt + RELOC/tex/latex/nicetext/run/substr.tex + RELOC/tex/latex/nicetext/run/u8atablg.fdf + RELOC/tex/latex/nicetext/wiki.sty +catalogue-also easylatex txt2latex makedtx doc gmdoc +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html +catalogue-ctan /macros/latex/contrib/nicetext +catalogue-date 2017-05-06 09:07:27 +0200 +catalogue-license lppl1.3 +catalogue-topics markup +catalogue-version r0.67 + +name nidanfloat +category Package +revision 48295 +shortdesc Bottom placement option for double float in two column mode (nidan-kumi) +relocated 1 +longdesc This package enables a bottom placement option for double +longdesc floats in two column mode (nidan-kumi). It was originally part +longdesc of the Japanese pLaTeX bundle and is now distributed as a +longdesc separate package because it supports all LaTeX formats. +containersize 4172 +containerchecksum 42ef65277deaf474a619e5ffd570309db8c8349f32e9bcfdf216251e81136a3da87a745b3dcea5212f636396179210c6acaa96a957ffd9588d1f414d6a59bded +doccontainersize 225904 +doccontainerchecksum 2be76c8e243de71698ae5264a8e3af4da8dcfcd130b0554d1547a0a238e55ee71ec57d8757648b162a6ebd17ce1047206979cf139003a02921a4308a852f0030 +docfiles size=59 + RELOC/doc/latex/nidanfloat/LICENSE + RELOC/doc/latex/nidanfloat/README.md details="Readme" + RELOC/doc/latex/nidanfloat/nidanfloat-en.pdf + RELOC/doc/latex/nidanfloat/nidanfloat.pdf details="Package documentation (Japanese)" language="ja" +srccontainersize 12840 +srccontainerchecksum 8a778b33036445dbe375af746244433470e5d10a963ebbfbc397c0376d5c4f7c23cdbc2ff3ff6455e274e83b465a64d8bac5023e8537d5b949fff038098d862e +srcfiles size=15 + RELOC/source/latex/nidanfloat/Makefile + RELOC/source/latex/nidanfloat/nidanfloat.dtx + RELOC/source/latex/nidanfloat/nidanfloat.ins +runfiles size=5 + RELOC/tex/latex/nidanfloat/nidanfloat.sty +catalogue-contact-repository https://github.com/texjporg/nidanfloat +catalogue-ctan /macros/latex/contrib/nidanfloat +catalogue-date 2018-07-28 14:57:17 +0200 +catalogue-license bsd3 +catalogue-topics float japanese + +name nih +category Package +revision 15878 +shortdesc A class for NIH grant applications +relocated 1 +longdesc The nih class offers support for grant applications to NIH, the +longdesc National Institutes of Health, a US government agency. The +longdesc example-* files provide a template for using nih.cls and +longdesc submitting the biographical sketches the NIH wants. They +longdesc (potentially) use denselists package, which just reduces list +longdesc spacing; the package is distributed with the class, but is not +longdesc part of the class proper. (The examples may be distributed +longdesc without even the restrictions of the LaTeX licence.) +containersize 2728 +containerchecksum 5f016d57b1b55c698a902c7a85a652fdcd40062b409a14e38c1356b9030129b46631929e49c6fa70db7ed499043a75060c97919f15876ac7a647d31c2f0bf729 +doccontainersize 32224 +doccontainerchecksum 1c209615f0745ed0ae4d2f4c55cf9447ec4711e9345ca3db778fbf45ccca76792039e6a7e51f2e7286034ae229b5c696ba7deee5bb8c224dbf95a4cccca650f2 +docfiles size=17 + RELOC/doc/latex/nih/README + RELOC/doc/latex/nih/example-biosketch.pdf details="Example -- an NIH biographical sketch" + RELOC/doc/latex/nih/example-biosketch.tex + RELOC/doc/latex/nih/example-nih-cls.pdf details="Example -- the class in normal use" + RELOC/doc/latex/nih/example-nih-cls.tex +runfiles size=3 + RELOC/tex/latex/nih/denselists.sty + RELOC/tex/latex/nih/nih.cls +catalogue-contact-home http://www.cs.duke.edu/brd/NIH/tips/ +catalogue-ctan /macros/latex/contrib/nih +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl +catalogue-topics proposal + +name nihbiosketch +category Package +revision 39460 +shortdesc A class for NIH biosketches based on the 2015 updated format +relocated 1 +longdesc This LaTeX document class tries to adhere to the Biographical +longdesc Sketch formatting requirements outlined in NIH Notice +longdesc [NOT-OD-15-032] +longdesc (http://grants.nih.gov/grants/guide/notice-files/NOT-OD-15-032. +longdesc html). This new format is required for applications submitted +longdesc for due dates on or after May 25, 2015. The package tries to +longdesc mimic the example documents provided on the [SF 424 (R&R) Forms +longdesc and Applications page] +longdesc (http://grants.nih.gov/grants/funding/424/index.htm#format) as +longdesc closely as possible. The author has used this class for his own +longdesc grant submissions; however he offers no guarantee of conformity +longdesc to NIH requirements. +containersize 2432 +containerchecksum fed3f5fc0886ad44c9f442cb0e4d3289d9027375e3b0563be9fdccf2a963cea09a0b16db2ef51a57e652f27a5dc5c20a36e9d284162433b958cd4fcc905989c6 +doccontainersize 71940 +doccontainerchecksum 707adc7971861a35b352aba04521caa61ea3d84e15cf698f847be43e9a22e6157ba133f9d787c8c65610706481880571e82a1037082d00efaf08a5812f612e94 +docfiles size=22 + RELOC/doc/latex/nihbiosketch/LICENSE.md + RELOC/doc/latex/nihbiosketch/README.md details="Readme" + RELOC/doc/latex/nihbiosketch/example-nihbiosketch.pdf + RELOC/doc/latex/nihbiosketch/example-nihbiosketch.tex +runfiles size=2 + RELOC/tex/latex/nihbiosketch/nihbiosketch.cls +catalogue-also nih +catalogue-ctan /macros/latex/contrib/nihbiosketch +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics cv + +name nimbus15 +category Package +revision 48734 +shortdesc Support files for Nimbus 2015 Core fonts +relocated 1 +longdesc The Nimbus 2015 Core fonts added Greek and Cyrillic glyphs. +longdesc This package may be best suited as an add-on the a +longdesc comprehensive Times package, providing support for Greek and +longdesc Cyrillic. A new intermediate weight of NimbusMono (AKA Courier) +longdesc is provided, along with a narrower version which may be useful +longdesc for rendering code. +execute addMap nimbus15.map +containersize 3811492 +containerchecksum 914621d7bc2d7f17f5536f7298885d720b348f15ee45a56493b6e227b8845136ae9394b93a20b8cd48c8333131bad21b4be473d61f57d5dd449dd416c3536c42 +doccontainersize 724840 +doccontainerchecksum 4721c451b5f1a108ec86e9db369f34015e501aac3185f2dcdf34151a422ba94276d51ef09d1aecc86616ef7a72fb911c5634247c36e7fec79b60203a5e42e7aa +docfiles size=205 + RELOC/doc/fonts/nimbus15/COPYING + RELOC/doc/fonts/nimbus15/LICENSE + RELOC/doc/fonts/nimbus15/README details="Readme" + RELOC/doc/fonts/nimbus15/nimbus15-doc.pdf details="Package documentation" + RELOC/doc/fonts/nimbus15/nimbus15-doc.tex + RELOC/doc/fonts/nimbus15/ot2trans.pdf +runfiles size=2045 + RELOC/fonts/afm/public/nimbus15/zco-Bold.afm + RELOC/fonts/afm/public/nimbus15/zco-BoldOblique.afm + RELOC/fonts/afm/public/nimbus15/zco-Light.afm + RELOC/fonts/afm/public/nimbus15/zco-LightOblique.afm + RELOC/fonts/afm/public/nimbus15/zco-Oblique.afm + RELOC/fonts/afm/public/nimbus15/zco-Regular.afm + RELOC/fonts/afm/public/nimbus15/zcoN-Oblique.afm + RELOC/fonts/afm/public/nimbus15/zcoN-Regular.afm + RELOC/fonts/afm/public/nimbus15/zhv-Bol.afm + RELOC/fonts/afm/public/nimbus15/zhv-BolIta.afm + RELOC/fonts/afm/public/nimbus15/zhv-Reg.afm + RELOC/fonts/afm/public/nimbus15/zhv-RegIta.afm + RELOC/fonts/afm/public/nimbus15/ztm-Med.afm + RELOC/fonts/afm/public/nimbus15/ztm-MedIta.afm + RELOC/fonts/afm/public/nimbus15/ztm-MedObl.afm + RELOC/fonts/afm/public/nimbus15/ztm-Reg.afm + RELOC/fonts/afm/public/nimbus15/ztm-RegIta.afm + RELOC/fonts/afm/public/nimbus15/ztm-RegObl.afm + RELOC/fonts/enc/dvips/nimbus15/nimbus15-ec.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15-lgr.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15-ot1.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15-ot2.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15-t2a.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15-t2b.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15-t2c.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15-x2.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15mono-ec.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15mono-lgr.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15mono-ot1.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15mono-ot2.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15mono-t2a.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15mono-t2b.enc + RELOC/fonts/enc/dvips/nimbus15/nimbus15mono-t2c.enc + RELOC/fonts/map/dvips/nimbus15/nimbus15.map + RELOC/fonts/opentype/public/nimbus15/zco-Bold.otf + RELOC/fonts/opentype/public/nimbus15/zco-BoldOblique.otf + RELOC/fonts/opentype/public/nimbus15/zco-Light.otf + RELOC/fonts/opentype/public/nimbus15/zco-LightOblique.otf + RELOC/fonts/opentype/public/nimbus15/zco-Oblique.otf + RELOC/fonts/opentype/public/nimbus15/zco-Regular.otf + RELOC/fonts/opentype/public/nimbus15/zcoN-Oblique.otf + RELOC/fonts/opentype/public/nimbus15/zcoN-Regular.otf + RELOC/fonts/opentype/public/nimbus15/zhv-Bol.otf + RELOC/fonts/opentype/public/nimbus15/zhv-BolIta.otf + RELOC/fonts/opentype/public/nimbus15/zhv-Reg.otf + RELOC/fonts/opentype/public/nimbus15/zhv-RegIta.otf + RELOC/fonts/opentype/public/nimbus15/ztm-Med.otf + RELOC/fonts/opentype/public/nimbus15/ztm-MedIta.otf + RELOC/fonts/opentype/public/nimbus15/ztm-MedObl.otf + RELOC/fonts/opentype/public/nimbus15/ztm-Reg.otf + RELOC/fonts/opentype/public/nimbus15/ztm-RegIta.otf + RELOC/fonts/opentype/public/nimbus15/ztm-RegObl.otf + RELOC/fonts/tfm/public/nimbus15/zco-Bold-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Bold-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Bold-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Bold-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Bold-t1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Bold-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Bold-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Bold-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Bold-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-BoldOblique-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/zco-BoldOblique-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-BoldOblique-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/zco-BoldOblique-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/zco-BoldOblique-t1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-BoldOblique-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/zco-BoldOblique-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/zco-BoldOblique-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/zco-BoldOblique-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Light-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Light-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Light-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Light-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Light-t1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Light-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Light-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Light-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Light-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Light.tfm + RELOC/fonts/tfm/public/nimbus15/zco-LightOblique-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/zco-LightOblique-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-LightOblique-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/zco-LightOblique-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/zco-LightOblique-t1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-LightOblique-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/zco-LightOblique-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/zco-LightOblique-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/zco-LightOblique-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Oblique-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Oblique-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Oblique-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Oblique-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Oblique-t1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Oblique-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Oblique-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Oblique-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Oblique-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Regular-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Regular-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Regular-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Regular-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Regular-t1.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Regular-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Regular-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Regular-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/zco-Regular-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Oblique-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Oblique-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Oblique-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Oblique-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Oblique-t1.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Oblique-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Oblique-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Oblique-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Oblique-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Regular-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Regular-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Regular-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Regular-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Regular-t1.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Regular-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Regular-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Regular-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/zcoN-Regular-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Bol-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Bol-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Bol-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Bol-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Bol-t1.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Bol-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Bol-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Bol-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Bol-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-BolIta-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-BolIta-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-BolIta-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-BolIta-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-BolIta-t1.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-BolIta-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-BolIta-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-BolIta-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-BolIta-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Reg-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Reg-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Reg-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Reg-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Reg-t1.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Reg-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Reg-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Reg-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-Reg-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-RegIta-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-RegIta-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-RegIta-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-RegIta-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-RegIta-t1.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-RegIta-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-RegIta-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-RegIta-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/zhv-RegIta-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Med-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Med-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Med-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Med-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Med-t1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Med-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Med-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Med-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Med-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedIta-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedIta-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedIta-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedIta-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedIta-t1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedIta-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedIta-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedIta-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedIta-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedObl-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedObl-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedObl-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedObl-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedObl-t1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedObl-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedObl-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedObl-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-MedObl-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Reg-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Reg-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Reg-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Reg-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Reg-t1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Reg-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Reg-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Reg-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-Reg-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegIta-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegIta-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegIta-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegIta-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegIta-t1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegIta-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegIta-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegIta-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegIta-ts1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegObl-lgr.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegObl-ot1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegObl-ot2--base.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegObl-ot2.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegObl-t1.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegObl-t2a.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegObl-t2b.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegObl-t2c.tfm + RELOC/fonts/tfm/public/nimbus15/ztm-RegObl-ts1.tfm + RELOC/fonts/type1/public/nimbus15/zco-Bold.pfb + RELOC/fonts/type1/public/nimbus15/zco-BoldOblique.pfb + RELOC/fonts/type1/public/nimbus15/zco-Light.pfb + RELOC/fonts/type1/public/nimbus15/zco-LightOblique.pfb + RELOC/fonts/type1/public/nimbus15/zco-Oblique.pfb + RELOC/fonts/type1/public/nimbus15/zco-Regular.pfb + RELOC/fonts/type1/public/nimbus15/zcoN-Oblique.pfb + RELOC/fonts/type1/public/nimbus15/zcoN-Regular.pfb + RELOC/fonts/type1/public/nimbus15/zhv-Bol.pfb + RELOC/fonts/type1/public/nimbus15/zhv-BolIta.pfb + RELOC/fonts/type1/public/nimbus15/zhv-Reg.pfb + RELOC/fonts/type1/public/nimbus15/zhv-RegIta.pfb + RELOC/fonts/type1/public/nimbus15/ztm-Med.pfb + RELOC/fonts/type1/public/nimbus15/ztm-MedIta.pfb + RELOC/fonts/type1/public/nimbus15/ztm-MedObl.pfb + RELOC/fonts/type1/public/nimbus15/ztm-Reg.pfb + RELOC/fonts/type1/public/nimbus15/ztm-RegIta.pfb + RELOC/fonts/type1/public/nimbus15/ztm-RegObl.pfb + RELOC/fonts/vf/public/nimbus15/zco-Bold-ot2.vf + RELOC/fonts/vf/public/nimbus15/zco-BoldOblique-ot2.vf + RELOC/fonts/vf/public/nimbus15/zco-Light-ot2.vf + RELOC/fonts/vf/public/nimbus15/zco-LightOblique-ot2.vf + RELOC/fonts/vf/public/nimbus15/zco-Oblique-ot2.vf + RELOC/fonts/vf/public/nimbus15/zco-Regular-ot2.vf + RELOC/fonts/vf/public/nimbus15/zcoN-Oblique-ot2.vf + RELOC/fonts/vf/public/nimbus15/zcoN-Regular-ot2.vf + RELOC/fonts/vf/public/nimbus15/zhv-Bol-ot2.vf + RELOC/fonts/vf/public/nimbus15/zhv-BolIta-ot2.vf + RELOC/fonts/vf/public/nimbus15/zhv-Reg-ot2.vf + RELOC/fonts/vf/public/nimbus15/zhv-RegIta-ot2.vf + RELOC/fonts/vf/public/nimbus15/ztm-Med-ot2.vf + RELOC/fonts/vf/public/nimbus15/ztm-MedIta-ot2.vf + RELOC/fonts/vf/public/nimbus15/ztm-MedObl-ot2.vf + RELOC/fonts/vf/public/nimbus15/ztm-Reg-ot2.vf + RELOC/fonts/vf/public/nimbus15/ztm-RegIta-ot2.vf + RELOC/fonts/vf/public/nimbus15/ztm-RegObl-ot2.vf + RELOC/tex/latex/nimbus15/LGRNimbuSans.fd + RELOC/tex/latex/nimbus15/LGRNimbusMono.fd + RELOC/tex/latex/nimbus15/LGRNimbusMonoN.fd + RELOC/tex/latex/nimbus15/LGRNimbusSerif.fd + RELOC/tex/latex/nimbus15/OT1NimbusMono.fd + RELOC/tex/latex/nimbus15/OT1NimbusMonoN.fd + RELOC/tex/latex/nimbus15/OT1NimbusSans.fd + RELOC/tex/latex/nimbus15/OT1NimbusSerif.fd + RELOC/tex/latex/nimbus15/OT2NimbusMono.fd + RELOC/tex/latex/nimbus15/OT2NimbusMonoN.fd + RELOC/tex/latex/nimbus15/OT2NimbusSans.fd + RELOC/tex/latex/nimbus15/OT2NimbusSerif.fd + RELOC/tex/latex/nimbus15/T1NimbusMono.fd + RELOC/tex/latex/nimbus15/T1NimbusMonoN.fd + RELOC/tex/latex/nimbus15/T1NimbusSans.fd + RELOC/tex/latex/nimbus15/T1NimbusSerif.fd + RELOC/tex/latex/nimbus15/T2ANimbusMono.fd + RELOC/tex/latex/nimbus15/T2ANimbusMonoN.fd + RELOC/tex/latex/nimbus15/T2ANimbusSans.fd + RELOC/tex/latex/nimbus15/T2ANimbusSerif.fd + RELOC/tex/latex/nimbus15/T2BNimbusMono.fd + RELOC/tex/latex/nimbus15/T2BNimbusMonoN.fd + RELOC/tex/latex/nimbus15/T2BNimbusSans.fd + RELOC/tex/latex/nimbus15/T2BNimbusSerif.fd + RELOC/tex/latex/nimbus15/T2CNimbusMono.fd + RELOC/tex/latex/nimbus15/T2CNimbusMonoN.fd + RELOC/tex/latex/nimbus15/T2CNimbusSans.fd + RELOC/tex/latex/nimbus15/T2CNimbusSerif.fd + RELOC/tex/latex/nimbus15/TS1NimbusMono.fd + RELOC/tex/latex/nimbus15/TS1NimbusMonoN.fd + RELOC/tex/latex/nimbus15/TS1NimbusSans.fd + RELOC/tex/latex/nimbus15/TS1NimbusSerif.fd + RELOC/tex/latex/nimbus15/nimbusmono.fontspec + RELOC/tex/latex/nimbus15/nimbusmono.sty + RELOC/tex/latex/nimbus15/nimbusmononarrow.sty + RELOC/tex/latex/nimbus15/nimbussans.fontspec + RELOC/tex/latex/nimbus15/nimbussans.sty + RELOC/tex/latex/nimbus15/nimbusserif.fontspec + RELOC/tex/latex/nimbus15/nimbusserif.sty + RELOC/tex/latex/nimbus15/zco.fontspec + RELOC/tex/latex/nimbus15/zcoN.fontspec + RELOC/tex/latex/nimbus15/zhv.fontspec + RELOC/tex/latex/nimbus15/ztm.fontspec +catalogue-ctan /fonts/nimbus15 +catalogue-date 2018-09-21 21:32:03 +0200 +catalogue-license other-free +catalogue-topics font font-ttf font-type1 font-otf +catalogue-version 1.011 + +name njurepo +category Package +revision 50492 +shortdesc Reports for Nanjing University +relocated 1 +longdesc This LaTeX document class provides a thesis template for +longdesc Nanjing University in order to make it easy to write experiment +longdesc reports and homework for the bachelor's curriculum. NJUrepo +longdesc stands for Nanjing University versatile Report. +containersize 10944 +containerchecksum a62efcf4630d7c26bbedb19e0c4405e730733b71361cbec9abed7a06a377c230bee561d8b48427104bef8dbd4e0bd56b0eaf9f0f7bbcdc8b289c726cd7b6cef7 +doccontainersize 1088508 +doccontainerchecksum 61f32efbea3b94749fa0cfc3ef2a3b3a34ccfb4ed3b6b09afa74e4f6dbd2540c1a263c81ca6406288f015303250f51acab0b6a4a4d51c95a2f9bbf1f3360f8e9 +docfiles size=287 + RELOC/doc/latex/njurepo/README.md details="Readme" + RELOC/doc/latex/njurepo/dtx-style.sty + RELOC/doc/latex/njurepo/example.pdf + RELOC/doc/latex/njurepo/njurepo.pdf details="Package documentation" + RELOC/doc/latex/njurepo/ref/author-year.bst + RELOC/doc/latex/njurepo/ref/numeric.bst +srccontainersize 21544 +srccontainerchecksum 6a790ae4e533c8e040ede3355967ee030e136d42afbe222a8fc4b7c3810817901aaca1625199d88443c8dd64d3d6b52ef9364d706fd1cfd5a6dd8a7916890df8 +srcfiles size=19 + RELOC/source/latex/njurepo/njurepo.dtx + RELOC/source/latex/njurepo/njurepo.ins +runfiles size=10 + RELOC/tex/latex/njurepo/njurepo.cls +catalogue-also seuthesix +catalogue-ctan /macros/latex/contrib/njurepo +catalogue-date 2019-03-20 20:58:45 +0100 +catalogue-license lppl1.3c +catalogue-topics dissertation class +catalogue-version 1.1.2 + +name nkarta +category Package +revision 16437 +shortdesc A "new" version of the karta cartographic fonts +relocated 1 +longdesc A development of the karta font, offering more mathematical +longdesc stability in Metafont. A version that will produce the glyphs +longdesc as Encapsulated PostScript, using MetaPost, is also provided. +containersize 27392 +containerchecksum 60537472bed0bd22d64789008ff8bbbab92ffcde68cbd74eb0b6d9910705f9f476e8f2c4dafa0020a24b0ff2e27c42a39de1791f2c91040af07dd429e0fa28ad +doccontainersize 93256 +doccontainerchecksum b3cb0205fdc567fbed23f797031e7336fb231c11490f463ee3bb3887e5d8ad1aba90bed1b14178b1d9ba15d76ba02ba93598362b9655eea78bf086c7df6c8b61 +docfiles size=39 + RELOC/doc/fonts/nkarta/README details="Readme" + RELOC/doc/fonts/nkarta/figtable.pdf details="A table of the MetaPost images" + RELOC/doc/fonts/nkarta/figtable.tex + RELOC/doc/fonts/nkarta/fonttable.pdf details="A testfont table of the font" + RELOC/doc/fonts/nkarta/fonttable.tex +srccontainersize 27360 +srccontainerchecksum f96b85f2a779ae64c9c2a056e16d2d8473844b45c0d906f97a3b62f6f517ea614600312d44151d9b9b676f3ec7360638c72fd43c7a35e183bad0d4602dd84aee +srcfiles size=34 + RELOC/source/latex/nkarta/nkarta.dtx + RELOC/source/latex/nkarta/nkarta.ins +runfiles size=68 + RELOC/fonts/source/public/nkarta/nkarta.mf + RELOC/fonts/source/public/nkarta/nkarta15.mf + RELOC/fonts/source/public/nkarta/nkchars.mf + RELOC/fonts/tfm/public/nkarta/nkarta15.tfm + RELOC/metapost/nkarta/nkarta.mp + RELOC/metapost/nkarta/nkchars.mp +catalogue-ctan /fonts/nkarta +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics font font-mf font-symbol +catalogue-version 0.2 + +name nlctdoc +category Package +revision 44353 +shortdesc Package documentation class +relocated 1 +longdesc The class provides support for the documentation of the +longdesc author's packages, using koma-script. This class is provided +longdesc "as is" solely for the benefit of anyone who wants to compile +longdesc the documentation of those packages. +containersize 5060 +containerchecksum a13148e7c821353e23d9f378313023aa9140e48108ee7af258a5fd7bca9b42e620ce8eca00c3f6c9a27d78a7a2085fc86f5a2b73456d093b1aea2ff8a2f54159 +doccontainersize 696 +doccontainerchecksum 573ad374a072c3fd99c72a719f05dc37ef0b53742e78b1c3512ec8c495adba78183fcd3cbfe9ab809ad603dbf63d7dc26d7212a44272cf9a1114d0d954bc746c +docfiles size=1 + RELOC/doc/latex/nlctdoc/README details="Readme" +runfiles size=5 + RELOC/tex/latex/nlctdoc/nlctdoc.cls +catalogue-ctan /macros/latex/contrib/nlctdoc +catalogue-date 2019-01-12 10:21:49 +0100 +catalogue-license lppl +catalogue-topics doc-supp class +catalogue-version 1.06 + +name nmbib +category Package +revision 37984 +shortdesc Multiple versions of a bibliography, with different sort orders +relocated 1 +longdesc This package is a rewrite of the multibibliography package +longdesc providing multiple bibliographies with different sorting. The +longdesc new version offers a number of citation commands, streamlines +longdesc the creation of bibliographies, ensures compatibility with the +longdesc natbib package, and provides other improvements. +containersize 9092 +containerchecksum c915b266e2a7644a88de6476bd4cf81943f7da31472f1b8eb889e048df8acc4afc36e247b8fc63bfdeb8c0384d87fc59f43d87f3ff09822d076c62a0edd1c110 +doccontainersize 443656 +doccontainerchecksum 0014c7fdade3685ce03bf9fcc2725b430f6272025809e224b88361960cb47e5b533d88d60f0ce55e011dbb943c8fc025340fadc506eedf10189724ae79dd2bda +docfiles size=117 + RELOC/doc/latex/nmbib/Makefile + RELOC/doc/latex/nmbib/README details="Readme" + RELOC/doc/latex/nmbib/nmbib.bib + RELOC/doc/latex/nmbib/nmbib.pdf details="Package documentation" + RELOC/doc/latex/nmbib/nmbibtex.1 + RELOC/doc/latex/nmbib/nmbibtex.pl + RELOC/doc/latex/nmbib/nmsample.pdf details="Example of use" + RELOC/doc/latex/nmbib/nmsample.tex + RELOC/doc/latex/nmbib/type.bib +srccontainersize 11372 +srccontainerchecksum 52297a890da760e2c945522094f128612ceb521500c81ce54da2f481581000bf42302665585fa056b31ff0f096a3a170ce56013e0979ae2043a94b68e7d32a5a +srcfiles size=12 + RELOC/source/latex/nmbib/nmbib.dtx + RELOC/source/latex/nmbib/nmbib.ins +runfiles size=24 + RELOC/bibtex/bst/nmbib/chronoplainnm.bst + RELOC/bibtex/bst/nmbib/plainnm.bst + RELOC/bibtex/bst/nmbib/unsrtnm.bst + RELOC/tex/latex/nmbib/nmbib.sty +catalogue-also multibibliography +catalogue-ctan /macros/latex/contrib/nmbib +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics bibtex-supp +catalogue-version 1.04 + +name noconflict +category Package +revision 30140 +shortdesc Resolve macro name conflict between packages +relocated 1 +longdesc The package provides several commands to prefix (and hence +longdesc obscure) a macro's (or a sequence of macros') name, and to +longdesc restore the original macro(s) at places in a document where +longdesc they are needed. +containersize 1688 +containerchecksum 660ea2bc008866130d0955eabecf0afa1e21ce38fcaa0ff0d4364ebc32ea8af6a2ba57c80b340f824b14f0488d2b40e5c7ddcf663e37d6170a7ac0aa740ca260 +doccontainersize 1104 +doccontainerchecksum b403c57b0d794bd95416ae09ed3fbc0c4a164689f9885dbb15e8a4c25ff8751376e6e61b622c9a94feacc4dfb905a7926500368bf51e5e568efa31e1dc5c785f +docfiles size=1 + RELOC/doc/latex/noconflict/README details="Readme" +runfiles size=1 + RELOC/tex/latex/noconflict/noconflict.sty +catalogue-ctan /macros/latex/contrib/noconflict +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 1.0 + +name nodetree +category Package +revision 43011 +shortdesc Visualize node lists in a tree view +relocated 1 +longdesc nodetree is a development package that visualizes the structure +longdesc of node lists. nodetree shows its debug informations in the +longdesc console output when you compile a LuaTeX file. It uses a +longdesc similar visual representation for node lists as the UNIX tree +longdesc command for a folder structure. +containersize 5396 +containerchecksum bc333202800520cf68e2aae42e849fdbbe8b2a1936245f35805adb3ba6795d724b8c6c5bf3973d760d5bb1327324c43721bef909d3440a3e7b8c559dc57aa61e +doccontainersize 371936 +doccontainerchecksum d81032f9f78e49d49a6e88c4017a6f95ca8e3ced2a24210716d456ff4ea1461933540d0b553eb66e6b74c8c94e3f93328b9ab0cef2ea91c2ac37a1ab4a28ed39 +docfiles size=98 + RELOC/doc/luatex/nodetree/README.md details="Readme" + RELOC/doc/luatex/nodetree/nodetree.pdf details="Package documentation" +srccontainersize 11120 +srccontainerchecksum a702d084e98c3a79df85baf0155d33b7187b31ab4d0c32af4cf3e1147ea5abcb6a989a5f09983d1e2446c11f9f99fb6a66f9c714553157e4acfc39003e770f2b +srcfiles size=13 + RELOC/source/luatex/nodetree/nodetree.dtx + RELOC/source/luatex/nodetree/nodetree.ins +runfiles size=7 + RELOC/tex/luatex/nodetree/nodetree.lua + RELOC/tex/luatex/nodetree/nodetree.sty + RELOC/tex/luatex/nodetree/nodetree.tex +catalogue-contact-repository https://github.com/Josef-Friedrich/nodetree +catalogue-ctan /macros/luatex/generic/nodetree +catalogue-date 2018-01-07 12:06:50 +0100 +catalogue-license lppl1.3 +catalogue-topics lua-supp +catalogue-version 1.2 + +name noindentafter +category Package +revision 35709 +shortdesc Tool to prevent paragraph indentation after environments/macros +relocated 1 +longdesc The package, as the name suggests, supplies tools to +longdesc automatically suppress indentations in following paragraphs, +longdesc specifically those following a particular macro or environment. +containersize 2284 +containerchecksum 6037e5b7b36742c2956f39020f7e9bd2072b17ab313f5d7d86e8b0c348b89ef1392571b8cba22190221a14c6f1e44a0156ddafce8f5e2bbf5362e443f590b2d8 +doccontainersize 228912 +doccontainerchecksum 1cc385e0bed9559d66c13967a5ffe83f1d01ad2005e4c7ca92243ca246da4f5f5e9abfde9b244ac54d73de4f874b800dc6620f7c93f6fb03a6d0ac8b2593fc96 +docfiles size=62 + RELOC/doc/latex/noindentafter/README details="Readme" + RELOC/doc/latex/noindentafter/noindentafter-dry.sty + RELOC/doc/latex/noindentafter/noindentafter-packagedoc.cls + RELOC/doc/latex/noindentafter/noindentafter.pdf details="Package documentation" + RELOC/doc/latex/noindentafter/noindentafter.tex +runfiles size=2 + RELOC/tex/latex/noindentafter/noindentafter.sty +catalogue-ctan /macros/latex/contrib/noindentafter +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 0.2.2 + +name noitcrul +category Package +revision 15878 +shortdesc Improved underlines in mathematics +relocated 1 +longdesc The package provides a (maths mode) \underline variant which +longdesc doesn't impose italics correction at the end. +containersize 1280 +containerchecksum 1629f5c0f832927093283cd5cb534cfb7ee35bd74f306fdf6cc18cfca3c72d5c1501139c180b7cf3fe71ef7131dd6a42465ee666c7bbb5c83a86f2a69a5a3c8a +doccontainersize 78216 +doccontainerchecksum c9c3adf9742b329ddbfdcfc41126c22039e89642f0c0d93ad064ff2160f7708b62ab28994a81860aa08d83f11a111bc11a2a54bbab88bf3713f3f6ee4aa2e641 +docfiles size=26 + RELOC/doc/latex/noitcrul/README details="Readme" + RELOC/doc/latex/noitcrul/noitcrul.pdf details="Benutzerdoku" language="de" +srccontainersize 3760 +srccontainerchecksum 5be6bf65ca4dc0c5819a1bc870f704b595b25e5ed6900beb8a53fa8167680929a7fe038e80fef120e77d5b8731c13f92f7907469ce7aa4825ee4e207c09268a3 +srcfiles size=3 + RELOC/source/latex/noitcrul/noitcrul.dtx + RELOC/source/latex/noitcrul/noitcrul.ins +runfiles size=1 + RELOC/tex/latex/noitcrul/noitcrul.sty +catalogue-ctan /macros/latex/contrib/noitcrul +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics underline maths +catalogue-version 0.2 + +name nolbreaks +category Package +revision 26786 +shortdesc No line breaks in text +relocated 1 +longdesc Use \nolbreaks{some text} to prevent line breaks in "some +longdesc text". This has the advantage over \mbox{} that glue (rubber +longdesc space) remains flexible. Most common cases are handled here +longdesc (\linebreak is disabled, for example) but spaces hidden in +longdesc macros or { } can still create break-points. +containersize 2596 +containerchecksum 4057a988b0357e2256eea6ae47c560d8535528e63b93d648c45d65ac44c4894104015e3411b7046606b9a68afc44033d037229d684f0c5427d9dd2ff5b272279 +doccontainersize 123832 +doccontainerchecksum 8cd5d7336097abd2d873af36b2ba6ebc8cd1c405c9a715c67e6c04d02dbdea067c0b7a8603418005ce223e0f1bff161a3dcb669da7c07c30b2ccdccc7f953fa0 +docfiles size=34 + RELOC/doc/latex/nolbreaks/nolbreaks.pdf details="Package documentation" + RELOC/doc/latex/nolbreaks/nolbreaks.tex +runfiles size=2 + RELOC/tex/latex/nolbreaks/nolbreaks.sty +catalogue-ctan /macros/latex/contrib/nolbreaks +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics typesetting +catalogue-version 1.2 + +name nomencl +category Package +revision 51025 +shortdesc Produce lists of symbols as in nomenclature +relocated 1 +longdesc Produces lists of symbols using the capabilities of the +longdesc MakeIndex program. +containersize 3592 +containerchecksum 00f02434a164b721d996032ee97e3d6594b3e1119128cae47ef759a935fd454ae477648d1c1e506673a139c52dd8e8ef74b349748759b109588eca353d390604 +doccontainersize 521732 +doccontainerchecksum b7a2659e324207e37c38d37cf372c237cc94a3f8902bf9d907ed2a45ecfa94d463b550a4c3339dc75825a36b1e89e9cac771cfb2ae6bdfe3ad157aa235f488d2 +docfiles size=161 + RELOC/doc/latex/nomencl/README details="Readme" + RELOC/doc/latex/nomencl/nomencl.pdf details="Package documentation" + RELOC/doc/latex/nomencl/sample01.pdf + RELOC/doc/latex/nomencl/sample01.tex + RELOC/doc/latex/nomencl/sample02.pdf + RELOC/doc/latex/nomencl/sample02.tex + RELOC/doc/latex/nomencl/sample03.pdf + RELOC/doc/latex/nomencl/sample03.tex + RELOC/doc/latex/nomencl/sample04.cfg + RELOC/doc/latex/nomencl/sample04.pdf + RELOC/doc/latex/nomencl/sample04.tex + RELOC/doc/latex/nomencl/sample05.cfg + RELOC/doc/latex/nomencl/sample05.pdf + RELOC/doc/latex/nomencl/sample05.tex + RELOC/doc/latex/nomencl/sample06.cfg +srccontainersize 18524 +srccontainerchecksum ccc6093b379548c03a070b6443f308f757ea425148ab32dabafc3c271937f5d090918ad6f3c9f013bbbc6534c12dc9ffd7e8786f22999a8640650386b8ca3e30 +srcfiles size=19 + RELOC/source/latex/nomencl/Makefile + RELOC/source/latex/nomencl/nomencl.drv + RELOC/source/latex/nomencl/nomencl.dtx + RELOC/source/latex/nomencl/nomencl.ins +runfiles size=4 + RELOC/makeindex/nomencl/nomencl.ist + RELOC/tex/latex/nomencl/nomencl.sty +catalogue-also glosstex +catalogue-contact-bugs https://github.com/borisveytsman/nomencl +catalogue-contact-home https://github.com/borisveytsman/nomencl +catalogue-contact-repository https://github.com/borisveytsman/nomencl +catalogue-ctan /macros/latex/contrib/nomencl +catalogue-date 2019-05-06 08:51:15 +0200 +catalogue-license lppl +catalogue-topics glossary +catalogue-version 5.2 + +name nomentbl +category Package +revision 16549 +shortdesc Nomenclature typeset in a longtable +relocated 1 +longdesc Nomentbl typeset nomenclatures in a longtable instead of the +longdesc makeindex style of nomencl. A nomenclature entry may have three +longdesc arguments: Symbol, description and physical unit. +containersize 2456 +containerchecksum 195cd134db2faf9c7405d040d0d3b4a71ec39ac201fad47c855d34d8f734d069c03424ddec6b1af978e7b244b3907f846fbd80fff6063e7b25df3de508fc51ed +doccontainersize 174560 +doccontainerchecksum 4ea606a78da4c0c4f5c35b38b9a430de8dcea49c8662081a85f3aa575523c40f5951bd54e2c8acb368b52f75a3214c0a4b0d178dc262a64b8f6485852c4458ba +docfiles size=53 + RELOC/doc/latex/nomentbl/README + RELOC/doc/latex/nomentbl/example.pdf details="Example of use" + RELOC/doc/latex/nomentbl/example.tex + RELOC/doc/latex/nomentbl/nomentbl.pdf details="Package documentation" +srccontainersize 6048 +srccontainerchecksum 5cf26c7871ccb841bb8350d594ed9333d7b46c7d2e3db70080ce743fdfd7c7fbfa3c8f7f976bf8f37decc653e54954a5e0a90385fb99ac3428a8dea4a5311719 +srcfiles size=6 + RELOC/source/latex/nomentbl/nomentbl.dtx + RELOC/source/latex/nomentbl/nomentbl.ins +runfiles size=3 + RELOC/makeindex/nomentbl/nomentbl.ist + RELOC/tex/latex/nomentbl/nomentbl.sty +catalogue-ctan /macros/latex/contrib/nomentbl +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics glossary +catalogue-version 0.4 + +name nonfloat +category Package +revision 17598 +shortdesc Non-floating table and figure captions +relocated 1 +longdesc Adjusts the figure and table environments to ensure that +longdesc centered objects as one line captions are centered as well. +longdesc Also the vertical spaces for table captions above the table are +longdesc changed. +containersize 1484 +containerchecksum 39f8f0a4d9ef1cf8f1dc02c63612980f25cee80cb545bf405d9d2a080256ba6799ff3030c98c26e6f2aaa10ac71015e58e4233bf84703b290220b12db45c70c0 +doccontainersize 306696 +doccontainerchecksum 2d090fa397a385cb32c26957b5c4c05ba8443fb1bb7ce7e3eda777ddc2d3af11ec3ae6297bf014f40e71d4668044ab729a6dedd74e8802ce9089b59d57663374 +docfiles size=87 + RELOC/doc/latex/nonfloat/nonfloat-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/nonfloat/nonfloat-en.tex + RELOC/doc/latex/nonfloat/nonfloat.pdf details="Package documentation (German)" language="de" +srccontainersize 5596 +srccontainerchecksum be5e0b078adb8c530d8255bcc72daf50ad8cbb48343fa76f132e1b75fd64d033c7caf287b6901f1bc49422956f6901dec0f7e7b7639dd71c10c1a76ec958aaf6 +srcfiles size=6 + RELOC/source/latex/nonfloat/nonfloat.drv + RELOC/source/latex/nonfloat/nonfloat.dtx + RELOC/source/latex/nonfloat/nonfloat.ins +runfiles size=1 + RELOC/tex/latex/nonfloat/nonfloat.sty +catalogue-ctan /macros/latex/contrib/nonfloat +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics float +catalogue-version 1.0 + +name nonumonpart +category Package +revision 22114 +shortdesc Prevent page numbers on part pages +relocated 1 +longdesc The package bundles the answer to the long-standing FAQ about +longdesc removing page numbers on \part pages. The package accepts no +longdesc options and defines no user commands; the user needs only to +longdesc load it, and the requirement is met. +containersize 1176 +containerchecksum e97fcc36af3e86c1a432d0e425dd86308429e764c976a2f7f8106c3433ae5a148bf3abc45706bcc3090089911e2dfe175156eccaba7d97f544154ad0b288e58b +doccontainersize 782604 +doccontainerchecksum 0cd6b115638c3151e5983845dd2964ed90f24bd35a06e904a005755696d6faccd90bbf88c7bbb5a0282ffcd266cb55e9eb1d058fd78432ba062fb4fd723348f3 +docfiles size=210 + RELOC/doc/latex/nonumonpart/LISEZMOI details="Readme" language="fr" + RELOC/doc/latex/nonumonpart/README details="Readme" language="en" + RELOC/doc/latex/nonumonpart/nonumonpart-en.pdf details="Package documentation" language="en" + RELOC/doc/latex/nonumonpart/nonumonpart-fr.pdf details="Package documentation" language="fr" + RELOC/doc/latex/nonumonpart/nonumonpart.pdf +srccontainersize 6716 +srccontainerchecksum 46130f9c35465685dc690096405791f82d70e73091f6654b5bbdaebc71b5fa3703a013461aedbe2cfe59975dd6233668f0c204e817ed65fc83c30be59be52505 +srcfiles size=7 + RELOC/source/latex/nonumonpart/Makefile + RELOC/source/latex/nonumonpart/nonumonpart.dtx + RELOC/source/latex/nonumonpart/nonumonpart.ins +runfiles size=1 + RELOC/tex/latex/nonumonpart/nonumonpart.sty +catalogue-ctan /macros/latex/contrib/nonumonpart +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.2 +catalogue-topics page-nos +catalogue-version 1 + +name nopageno +category Package +revision 18128 +shortdesc No page numbers in LaTeX documents +relocated 1 +longdesc LaTeX's standard styles use two page styles, one on normal +longdesc pages and one on 'opening' pages with \maketitle or \chapter, +longdesc etc. Unfortunately there is only easy access to changing one of +longdesc these two so if you want something other than 'plain' on the +longdesc opening pages you must use \thispagestyle on each such page. +longdesc The fancyhdr package does provide a more flexible interface, +longdesc but if you just want an empty page style on all pages then this +longdesc package will do the job. +containersize 1020 +containerchecksum 0e152caa8b8df06444f50e2f9ca93f18088a0c58e2d5936f612a770b90cdb8f4bb0142064f56573d8569eee274adbc2703037ce4d7477c24d23c7c8de8748a62 +doccontainersize 170376 +doccontainerchecksum 5988c42840efc02f816ca0f9ff7ad2d731c66563c0c4de21b857de975bbec08962cef4ed1dad096abc39ecd8489d3a34a66809e98f49b0a280c186d03e6540a2 +docfiles size=44 + RELOC/doc/latex/nopageno/nopageno.pdf details="Package documentation" + RELOC/doc/latex/nopageno/nopageno.tex +runfiles size=1 + RELOC/tex/latex/nopageno/nopageno.sty +catalogue-ctan /macros/latex/contrib/nopageno +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics page-nos + +name norasi-c90 +category Package +revision 37675 +shortdesc TeX support (from CJK) for the norasi font +relocated 1 +depend fonts-tlwg +execute addMap norasi-c90.map +containersize 8720 +containerchecksum d52fb16ee07ef72f6484b784346933a23b5a3357aa2f00ee212bb1decbfd3299153e88cd4bc352cfc2e888dbf37ea86a2bd6442b6393634c5f144f4accab55a5 +srccontainersize 1440 +srccontainerchecksum 0170578bca4c4e4a7307fc125a6d845881fe32e2d361c73369ac1bb1b7d510bca8eddae831fc8421b3e30ce996f2eda4d7b2e449873ae6226a7806ed2bbd4047 +srcfiles size=1 + RELOC/source/fonts/norasi-c90/norasi-c90.fontinst +runfiles size=10 + RELOC/dvips/norasi-c90/config.norasi-c90 + RELOC/fonts/map/dvips/norasi-c90/norasi-c90.map + RELOC/fonts/tfm/public/norasi-c90/ftnb8z.tfm + RELOC/fonts/tfm/public/norasi-c90/ftnbi8z.tfm + RELOC/fonts/tfm/public/norasi-c90/ftni8z.tfm + RELOC/fonts/tfm/public/norasi-c90/ftnr8z.tfm + +name normalcolor +category Package +revision 40125 +shortdesc Changing \normalcolor +relocated 1 +longdesc This package provides a command \setnormalcolor with the same +longdesc syntax as the command \color either of package color or of +longdesc package xcolor. However, \setnormalcolor will not change the +longdesc current colour but the normal / default color. +containersize 1388 +containerchecksum 013354a5f7514f6267d57d098ca93eb48970df0ce1cb2db0c60ecf664cbcea177b934ab8f252cfb9dd4c0979417937462ef55e51502bca7f32a7de1a0e820e32 +doccontainersize 156456 +doccontainerchecksum ca7a9c008f72aa1287092f881f9ffcbe58ed45bfc97ec3231fbeceeb007f6248629d9cf49598afe604ac8cc30a4e8117f54fe517fcbf52548add2f6ac6fdb662 +docfiles size=40 + RELOC/doc/latex/normalcolor/README details="Readme" + RELOC/doc/latex/normalcolor/normalcolor-example.tex + RELOC/doc/latex/normalcolor/normalcolor.pdf details="Package documentation" +srccontainersize 4048 +srccontainerchecksum ac6fcbd939d13714f21106c6b0786a9ede4ae6a3023348678ce22bca59343d7379fce9ef12bde91fd05b4912c70c8b4eb64b95f2869f4a30c03c4443640b9d80 +srcfiles size=4 + RELOC/source/latex/normalcolor/normalcolor.dtx +runfiles size=1 + RELOC/tex/latex/normalcolor/normalcolor.sty +catalogue-ctan /macros/latex/contrib/normalcolor +catalogue-date 2016-11-16 07:56:28 +0100 +catalogue-license lppl1.3 +catalogue-topics colour +catalogue-version r11 + +name nostarch +category Package +revision 15878 +shortdesc LaTeX class for No Starch Press +relocated 1 +longdesc The package provides the "official" LaTeX style for No Starch +longdesc Press. Provided are a class, a package for interfacing to +longdesc hyperref and an index style file. The style serves both for +longdesc printed and for electronic books. +containersize 7816 +containerchecksum 45992ab970abe997f3b01c9dae5e15303db81878b085f45fea4ba07209160ff0307550e9ecca9b67e0d01712831b6541def54382170d43db4dd547f2969f9fb9 +doccontainersize 618136 +doccontainerchecksum 94efe6a2b41a47b559b4b7c9e04dda1f32d0c6f5da79b51d994fda1af58b4e1cc7e808f9465f7874be6b67231383c38543fb3e98706c32da32d73a4ae07da9fe +docfiles size=219 + RELOC/doc/latex/nostarch/100euroie.png + RELOC/doc/latex/nostarch/100euroit.png + RELOC/doc/latex/nostarch/1eurogr.jpg + RELOC/doc/latex/nostarch/README details="Readme" + RELOC/doc/latex/nostarch/nostarch.pdf details="Package documentation" + RELOC/doc/latex/nostarch/nssample.pdf details="Sample book" + RELOC/doc/latex/nostarch/nssample.tex + RELOC/doc/latex/nostarch/recycled.png + RELOC/doc/latex/nostarch/vitruvian.jpg +srccontainersize 18644 +srccontainerchecksum 1d46d17f9f43981c89bffdc5e2167342e6168423068b4d02c180fa18fc4243ece749ebab18c5b47be0184e76034378a7ee6ea09aca3c782184f389c6639df38f +srcfiles size=20 + RELOC/source/latex/nostarch/Makefile + RELOC/source/latex/nostarch/nostarch.dtx + RELOC/source/latex/nostarch/nostarch.ins +runfiles size=10 + RELOC/bibtex/bib/nostarch/nostarch.bib + RELOC/makeindex/nostarch/nostarch.ist + RELOC/tex/latex/nostarch/nostarch.cls + RELOC/tex/latex/nostarch/nshyper.sty +catalogue-contact-home http://www.nostarch.com +catalogue-ctan /macros/latex/contrib/nostarch +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl +catalogue-topics book-pub class +catalogue-version 1.3 + +name notes +category Package +revision 42428 +shortdesc Mark sections of a document +relocated 1 +longdesc The package provides environments to highlight significant +longdesc portions of text within a document, by putting the text in a +longdesc box and adding an icon in the margin. (The icons are provided +longdesc as 'fig' sources, processable by xfig.) +containersize 6912 +containerchecksum 7b569f27ec34c103c5808036a6ffd7f97f9171287883f38c048b8eabbd979559fbf15b20c7002dc9b8b0577889482c4347e4986e076079809a4a5656aed46101 +doccontainersize 75084 +doccontainerchecksum 4e66790b76290925f49ab7f56175e2d41a20e715c43518edbae39e444d02b945ec05ca918574f52fbb6ca10fbbb060242c688fb9344094df2e025de83272322b +docfiles size=32 + RELOC/doc/latex/notes/book.layout + RELOC/doc/latex/notes/hand.fig + RELOC/doc/latex/notes/info.fig + RELOC/doc/latex/notes/makedoc + RELOC/doc/latex/notes/makedoc.bat + RELOC/doc/latex/notes/notes.inc + RELOC/doc/latex/notes/notes.pdf details="Package documentation" + RELOC/doc/latex/notes/testnotes.tex + RELOC/doc/latex/notes/warn.fig +srccontainersize 5768 +srccontainerchecksum f5405540929d6d99471bac43d89b01ed7ba59bdb8f1e7d978dc9a43a563e6b16c9cc4645d291054308f06b3d4df10547e09a72081c210063d37810da511dcac1 +srcfiles size=7 + RELOC/source/latex/notes/Makefile + RELOC/source/latex/notes/notes.drv + RELOC/source/latex/notes/notes.dtx + RELOC/source/latex/notes/notes.ins +runfiles size=11 + RELOC/tex/latex/notes/hand.eps + RELOC/tex/latex/notes/hand.pdf + RELOC/tex/latex/notes/hand.png + RELOC/tex/latex/notes/info.eps + RELOC/tex/latex/notes/info.pdf + RELOC/tex/latex/notes/info.png + RELOC/tex/latex/notes/notes.sty + RELOC/tex/latex/notes/warn.eps + RELOC/tex/latex/notes/warn.pdf + RELOC/tex/latex/notes/warn.png +catalogue-ctan /macros/latex/contrib/notes +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics decoration +catalogue-version 1.0.1 + +name notes2bib +category Package +revision 31162 +shortdesc Integrating notes into the bibliography +relocated 1 +longdesc The package defines a new type of note, bibnote, which will +longdesc always be added to the bibliography. The package allows +longdesc footnotes and endnotes to be moved into the bibliography in the +longdesc same way. The package can be used with natbib and BibLaTeX as +longdesc well as plain LaTeX citations. Both sorted and unsorted +longdesc bibliography styles are supported. The package uses the LaTeX 3 +longdesc macros and the associated xpackages bundle. It also makes use +longdesc of the e-TeX extensions (any post-2005 LaTeX distribution will +longdesc provide these by default, but users of older systems may need +longdesc to use an elatex command or equivalent). The package relies on +longdesc LaTeX 3 support from the l3kernel and l3packages bundles. +containersize 4300 +containerchecksum 9077d8e8f9d3e8bf2c119fb479811020db19e359274fee502a97499f6cc8490a24301ef2ebb2dfe6fbca3a98b06c944b8918623b5cf3bcde2b1c9bb956d85d7a +doccontainersize 198284 +doccontainerchecksum cedcee9dbe903f218dad6e8fce767056662dd181716931ff15f898f58b677ba29ba5c96a82474da5ed42d330d0af5bbfbb8db9d37351b6dfc0677b63e2dae4c9 +docfiles size=50 + RELOC/doc/latex/notes2bib/README details="Readme" + RELOC/doc/latex/notes2bib/notes2bib.pdf details="Package documentation" +srccontainersize 14288 +srccontainerchecksum 605542baf0da122302918f46643db474b0fe5b84463c93bec50476422a0ee89aff719f30342e757b097e6a3f678b786456c6b8e1338fc92d2910c5bf140365f9 +srcfiles size=15 + RELOC/source/latex/notes2bib/notes2bib.dtx +runfiles size=5 + RELOC/tex/latex/notes2bib/notes2bib.sty +catalogue-ctan /macros/latex/contrib/notes2bib +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics notes bib-use expl3 +catalogue-version 2.0k + +name notespages +category Package +revision 41906 +shortdesc Filling documents with notes pages and notes areas +relocated 1 +longdesc This package package provides one macro to insert a single +longdesc notes page and another to fill the document with multiple notes +longdesc pages, until the total number of pages (so far) is a multiple +longdesc of a given number. A third command can be used to fill half +longdesc empty pages with a notes area. +containersize 5828 +containerchecksum f5f6960bfade079642a4b4f221a7b762cfb5276a74b20bb3eada51706cd2e3496f91ca23e35cb39f221c57da19012597eabc8d3aa63c58e0749c8a01b6a28ab4 +doccontainersize 878820 +doccontainerchecksum 8af2f746d4484a2e06bd0f7f766c49cc9b0b790da2cf0faf1c83d959f2e2f60fcdcb7cdb6f1ffed89c2b03846215b589de332dc20935d0c0add4e3dc025c42cb +docfiles size=333 + RELOC/doc/latex/notespages/README details="Readme" + RELOC/doc/latex/notespages/notespages.pdf details="Package documentation" + RELOC/doc/latex/notespages/np-test.pdf details="Example of use" + RELOC/doc/latex/notespages/np-test.tex +srccontainersize 31444 +srccontainerchecksum 96b547ad56fc2e503c2cf9b6089dd74e2902831d99fc8899b57affdcc1c1d23463dbc7472878cf30ee26078c30cac9bdc20975925de01a86982af19b6a3113fa +srcfiles size=37 + RELOC/source/latex/notespages/notespages.dtx + RELOC/source/latex/notespages/notespages.ins +runfiles size=6 + RELOC/tex/latex/notespages/notespages.sty +catalogue-ctan /macros/latex/contrib/notespages +catalogue-date 2016-08-21 23:18:57 +0200 +catalogue-license lppl1.3 +catalogue-topics blank-page notes +catalogue-version 0.8.1 + +name notestex +category Package +revision 45396 +shortdesc An all-in-one LaTeX notes package for students +relocated 1 +longdesc This is a modification of the original Jhep journal format in +longdesc order to suit the needs of students in university. The goal of +longdesc this package was to make notetaking easier for students and +longdesc offer easy support for marginnotes along with a reliable and +longdesc legible formatting structure. +containersize 6372 +containerchecksum 64f9704fd3646cdcfdc03f6a3e03f9fb37859b9f11463fa77e1d3d076115297fac9c0b8d6875c8b6b7f3d37127a400e6205239957526018d9ad5cdf36a984269 +doccontainersize 538532 +doccontainerchecksum c47bd3a4153467a63ac2e2b149f498f9458132e841cd70da9871f10674e77d928f7f88e58855c139dacdc225d286615caf0297077b843750e6940482398f02a2 +docfiles size=148 + RELOC/doc/latex/notestex/NotesTeX.pdf details="Package documentation" + RELOC/doc/latex/notestex/NotesTeX.tex + RELOC/doc/latex/notestex/README.md details="Readme" +runfiles size=6 + RELOC/tex/latex/notestex/NotesTeX.sty +catalogue-contact-repository https://github.com/Adhumunt/NotesTeX +catalogue-ctan /macros/latex/contrib/notestex +catalogue-date 2017-09-26 06:08:42 +0200 +catalogue-license lppl1.3 +catalogue-topics notes misc-paper gen-paper +catalogue-version 1.0 + +name notex-bst +category Package +revision 42361 +shortdesc A BibTeX style that outputs HTML +relocated 1 +longdesc noTeX.bst produces a number of beautifully formatted HTML P +longdesc elements instead of TeX code. It can be used to automatically +longdesc generate bibliographies to be served on the web starting from +longdesc BibTeX files. +containersize 4412 +containerchecksum 68627ca4a07ed0228b9b9ea4b70cdea5196e907f71f343310259d19464d503e76e2ea8fb5f59f01337916ee1f2ef398bdb1d3e4d97f0d49eac660fdce20590ff +runfiles size=5 + RELOC/bibtex/bst/notex-bst/noTeX.bst +catalogue-ctan /biblio/bibtex/utils/misc/noTeX.bst +catalogue-date 2016-10-28 06:12:41 +0200 +catalogue-license pd +catalogue-topics bibtex-sty cvt-html + +name noto +category Package +revision 51172 +shortdesc Support for Noto fonts +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the NotoSerif, NotoSans and NotoSansMono families +longdesc of fonts, designed by Steve Matteson for Google. +execute addMap noto.map +containersize 68259700 +containerchecksum c85ad7e8084ba85bfb7a9ff38b194c193a824c644b86274b2bd176bc9cecd824832ca7d7173746d2ceb5bc8b57c06837300eb4ed3c7eb3366a307da1bad3fe81 +doccontainersize 132412 +doccontainerchecksum 775de58e34709bace36638977eda8fc95cba6fefc42306305aa1c3dd863ef0360704c798d7bb3652bb826bc834a2721b7e3963d4d56e0b5ed1900c7cef6417e5 +docfiles size=36 + RELOC/doc/fonts/noto/LICENSE_OFL.txt + RELOC/doc/fonts/noto/README details="Readme" + RELOC/doc/fonts/noto/noto-samples.pdf details="Font samples" + RELOC/doc/fonts/noto/noto-samples.tex +runfiles size=51166 + RELOC/fonts/enc/dvips/noto/nto_2banio.enc + RELOC/fonts/enc/dvips/noto/nto_34ragx.enc + RELOC/fonts/enc/dvips/noto/nto_35ihh3.enc + RELOC/fonts/enc/dvips/noto/nto_3dj5zo.enc + RELOC/fonts/enc/dvips/noto/nto_3eub66.enc + RELOC/fonts/enc/dvips/noto/nto_3idd2i.enc + RELOC/fonts/enc/dvips/noto/nto_3j7uec.enc + RELOC/fonts/enc/dvips/noto/nto_3kuu7o.enc + RELOC/fonts/enc/dvips/noto/nto_3nbfkd.enc + RELOC/fonts/enc/dvips/noto/nto_3qzkog.enc + RELOC/fonts/enc/dvips/noto/nto_3ubgsk.enc + RELOC/fonts/enc/dvips/noto/nto_453igs.enc + RELOC/fonts/enc/dvips/noto/nto_4lhdnu.enc + RELOC/fonts/enc/dvips/noto/nto_4ovuef.enc + RELOC/fonts/enc/dvips/noto/nto_5taitr.enc + RELOC/fonts/enc/dvips/noto/nto_5uhkks.enc + RELOC/fonts/enc/dvips/noto/nto_5xcjwt.enc + RELOC/fonts/enc/dvips/noto/nto_5yrndq.enc + RELOC/fonts/enc/dvips/noto/nto_5zgfs6.enc + RELOC/fonts/enc/dvips/noto/nto_6egtta.enc + RELOC/fonts/enc/dvips/noto/nto_6fjq7h.enc + RELOC/fonts/enc/dvips/noto/nto_6rzsnl.enc + RELOC/fonts/enc/dvips/noto/nto_6wawwp.enc + RELOC/fonts/enc/dvips/noto/nto_72byc5.enc + RELOC/fonts/enc/dvips/noto/nto_772cjc.enc + RELOC/fonts/enc/dvips/noto/nto_7bgfws.enc + RELOC/fonts/enc/dvips/noto/nto_7fe4g3.enc + RELOC/fonts/enc/dvips/noto/nto_7iwj6f.enc + RELOC/fonts/enc/dvips/noto/nto_7q7hcv.enc + RELOC/fonts/enc/dvips/noto/nto_7wbp6x.enc + RELOC/fonts/enc/dvips/noto/nto_7xrktb.enc + RELOC/fonts/enc/dvips/noto/nto_a3kb4x.enc + RELOC/fonts/enc/dvips/noto/nto_ad2lir.enc + RELOC/fonts/enc/dvips/noto/nto_b2rbwz.enc + RELOC/fonts/enc/dvips/noto/nto_b374rf.enc + RELOC/fonts/enc/dvips/noto/nto_b6ko55.enc + RELOC/fonts/enc/dvips/noto/nto_bcpmuc.enc + RELOC/fonts/enc/dvips/noto/nto_bkthom.enc + RELOC/fonts/enc/dvips/noto/nto_bvui6g.enc + RELOC/fonts/enc/dvips/noto/nto_c3lxz4.enc + RELOC/fonts/enc/dvips/noto/nto_ccnh7u.enc + RELOC/fonts/enc/dvips/noto/nto_cev6wb.enc + RELOC/fonts/enc/dvips/noto/nto_cgirjw.enc + RELOC/fonts/enc/dvips/noto/nto_clpsiq.enc + RELOC/fonts/enc/dvips/noto/nto_cn5brv.enc + RELOC/fonts/enc/dvips/noto/nto_cpzaze.enc + RELOC/fonts/enc/dvips/noto/nto_cwvxtj.enc + RELOC/fonts/enc/dvips/noto/nto_dekpws.enc + RELOC/fonts/enc/dvips/noto/nto_dqalc5.enc + RELOC/fonts/enc/dvips/noto/nto_dvdq72.enc + RELOC/fonts/enc/dvips/noto/nto_dxp6is.enc + RELOC/fonts/enc/dvips/noto/nto_escgn7.enc + RELOC/fonts/enc/dvips/noto/nto_etmgrc.enc + RELOC/fonts/enc/dvips/noto/nto_fs55i7.enc + RELOC/fonts/enc/dvips/noto/nto_fw5lcu.enc + RELOC/fonts/enc/dvips/noto/nto_gfowk7.enc + RELOC/fonts/enc/dvips/noto/nto_hbzp5p.enc + RELOC/fonts/enc/dvips/noto/nto_hcdl7d.enc + RELOC/fonts/enc/dvips/noto/nto_hioxzc.enc + RELOC/fonts/enc/dvips/noto/nto_hvbi2c.enc + RELOC/fonts/enc/dvips/noto/nto_ib6ubx.enc + RELOC/fonts/enc/dvips/noto/nto_ibgtat.enc + RELOC/fonts/enc/dvips/noto/nto_jayyhr.enc + RELOC/fonts/enc/dvips/noto/nto_jfjta2.enc + RELOC/fonts/enc/dvips/noto/nto_jg4zjm.enc + RELOC/fonts/enc/dvips/noto/nto_jkat5h.enc + RELOC/fonts/enc/dvips/noto/nto_jl7jon.enc + RELOC/fonts/enc/dvips/noto/nto_jzlekz.enc + RELOC/fonts/enc/dvips/noto/nto_kntwfo.enc + RELOC/fonts/enc/dvips/noto/nto_l7r7sw.enc + RELOC/fonts/enc/dvips/noto/nto_mcmm5k.enc + RELOC/fonts/enc/dvips/noto/nto_mhwely.enc + RELOC/fonts/enc/dvips/noto/nto_mpk62p.enc + RELOC/fonts/enc/dvips/noto/nto_n3n24g.enc + RELOC/fonts/enc/dvips/noto/nto_nhjuvf.enc + RELOC/fonts/enc/dvips/noto/nto_nhzdio.enc + RELOC/fonts/enc/dvips/noto/nto_nog6ox.enc + RELOC/fonts/enc/dvips/noto/nto_op2juy.enc + RELOC/fonts/enc/dvips/noto/nto_p6rwlx.enc + RELOC/fonts/enc/dvips/noto/nto_pcckjc.enc + RELOC/fonts/enc/dvips/noto/nto_ph33kq.enc + RELOC/fonts/enc/dvips/noto/nto_prsxmw.enc + RELOC/fonts/enc/dvips/noto/nto_pz6pv7.enc + RELOC/fonts/enc/dvips/noto/nto_q2bt4y.enc + RELOC/fonts/enc/dvips/noto/nto_q2iokw.enc + RELOC/fonts/enc/dvips/noto/nto_qdgiej.enc + RELOC/fonts/enc/dvips/noto/nto_qgk3xb.enc + RELOC/fonts/enc/dvips/noto/nto_qielb2.enc + RELOC/fonts/enc/dvips/noto/nto_qimki2.enc + RELOC/fonts/enc/dvips/noto/nto_qsoqct.enc + RELOC/fonts/enc/dvips/noto/nto_r2ghbj.enc + RELOC/fonts/enc/dvips/noto/nto_r5bxyy.enc + RELOC/fonts/enc/dvips/noto/nto_rmq6cj.enc + RELOC/fonts/enc/dvips/noto/nto_rscbfi.enc + RELOC/fonts/enc/dvips/noto/nto_ryh2se.enc + RELOC/fonts/enc/dvips/noto/nto_s4kl56.enc + RELOC/fonts/enc/dvips/noto/nto_scavxs.enc + RELOC/fonts/enc/dvips/noto/nto_sez6pn.enc + RELOC/fonts/enc/dvips/noto/nto_sg5txc.enc + RELOC/fonts/enc/dvips/noto/nto_sqptsk.enc + RELOC/fonts/enc/dvips/noto/nto_swkvov.enc + RELOC/fonts/enc/dvips/noto/nto_tc2epv.enc + RELOC/fonts/enc/dvips/noto/nto_tfnsyt.enc + RELOC/fonts/enc/dvips/noto/nto_tu4uv7.enc + RELOC/fonts/enc/dvips/noto/nto_uc5ky7.enc + RELOC/fonts/enc/dvips/noto/nto_ucmn45.enc + RELOC/fonts/enc/dvips/noto/nto_uh42dr.enc + RELOC/fonts/enc/dvips/noto/nto_uncbtn.enc + RELOC/fonts/enc/dvips/noto/nto_uoung7.enc + RELOC/fonts/enc/dvips/noto/nto_urvlpy.enc + RELOC/fonts/enc/dvips/noto/nto_uszcsk.enc + RELOC/fonts/enc/dvips/noto/nto_uvb24m.enc + RELOC/fonts/enc/dvips/noto/nto_v63ahm.enc + RELOC/fonts/enc/dvips/noto/nto_vfbpi4.enc + RELOC/fonts/enc/dvips/noto/nto_vgqgh3.enc + RELOC/fonts/enc/dvips/noto/nto_vrre3e.enc + RELOC/fonts/enc/dvips/noto/nto_vuovel.enc + RELOC/fonts/enc/dvips/noto/nto_w43d4m.enc + RELOC/fonts/enc/dvips/noto/nto_wh7viy.enc + RELOC/fonts/enc/dvips/noto/nto_wiy4e7.enc + RELOC/fonts/enc/dvips/noto/nto_wp6ela.enc + RELOC/fonts/enc/dvips/noto/nto_wwfksr.enc + RELOC/fonts/enc/dvips/noto/nto_wxkdfs.enc + RELOC/fonts/enc/dvips/noto/nto_xhwpwl.enc + RELOC/fonts/enc/dvips/noto/nto_xhxifo.enc + RELOC/fonts/enc/dvips/noto/nto_xmopsz.enc + RELOC/fonts/enc/dvips/noto/nto_xqbchv.enc + RELOC/fonts/enc/dvips/noto/nto_y2n3gg.enc + RELOC/fonts/enc/dvips/noto/nto_y52y4f.enc + RELOC/fonts/enc/dvips/noto/nto_yifqxs.enc + RELOC/fonts/enc/dvips/noto/nto_yyuepd.enc + RELOC/fonts/enc/dvips/noto/nto_z4ievu.enc + RELOC/fonts/enc/dvips/noto/nto_zogsyl.enc + RELOC/fonts/enc/dvips/noto/nto_zpdbre.enc + RELOC/fonts/enc/dvips/noto/nto_zpj5tn.enc + RELOC/fonts/map/dvips/noto/noto.map + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-sup-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-sup-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-sup-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-t2c.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-ts1.tfm + RELOC/fonts/truetype/google/noto/NotoSans-Black.ttf + RELOC/fonts/truetype/google/noto/NotoSans-BlackItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-Bold.ttf + RELOC/fonts/truetype/google/noto/NotoSans-BoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-Condensed.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedBlack.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedBlackItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedBold.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedExtraBold.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedExtraBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedExtraLight.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedExtraLightItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedLight.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedLightItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedMedium.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedMediumItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedSemiBold.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedSemiBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedThin.ttf + RELOC/fonts/truetype/google/noto/NotoSans-CondensedThinItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraBold.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensed.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedBlack.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedBlackItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedBold.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedExtraBold.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedExtraBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedExtraLight.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedExtraLightItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedLight.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedLightItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedMedium.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedMediumItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedSemiBold.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedSemiBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedThin.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedThinItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraLight.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ExtraLightItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-Italic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-Light.ttf + RELOC/fonts/truetype/google/noto/NotoSans-LightItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-Medium.ttf + RELOC/fonts/truetype/google/noto/NotoSans-MediumItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-Regular.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiBold.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensed.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedBlack.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedBlackItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedBold.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedExtraBold.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedExtraBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedExtraLight.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedExtraLightItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedLight.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedLightItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedMedium.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedMediumItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedSemiBold.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedSemiBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedThin.ttf + RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedThinItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSans-Thin.ttf + RELOC/fonts/truetype/google/noto/NotoSans-ThinItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-Black.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-Bold.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-BoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-Condensed.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-CondensedBlack.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-CondensedBold.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-CondensedExtraBold.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-CondensedExtraLight.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-CondensedLight.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-CondensedMedium.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-CondensedSemiBold.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-CondensedThin.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraBold.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensed.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensedBlack.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensedBold.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensedExtraBold.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensedExtraLight.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensedLight.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensedMedium.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensedSemiBold.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensedThin.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraLight.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-Italic.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-Light.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-Medium.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-Regular.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-SemiBold.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensed.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensedBlack.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensedBold.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensedExtraBold.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensedExtraLight.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensedLight.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensedMedium.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensedSemiBold.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensedThin.ttf + RELOC/fonts/truetype/google/noto/NotoSansMono-Thin.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-Black.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-BlackItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-Bold.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-BoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-ExtraBold.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-ExtraBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-ExtraLight.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-ExtraLightItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-Italic.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-Light.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-LightItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-Medium.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-MediumItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-Regular.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-SemiBold.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-SemiBoldItalic.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-Thin.ttf + RELOC/fonts/truetype/google/noto/NotoSerif-ThinItalic.ttf + RELOC/fonts/type1/google/noto/NotoMono-Bold.pfb + RELOC/fonts/type1/google/noto/NotoMono-BoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoMono-Italic.pfb + RELOC/fonts/type1/google/noto/NotoMono-Regular.pfb + RELOC/fonts/type1/google/noto/NotoSans-Black.pfb + RELOC/fonts/type1/google/noto/NotoSans-BlackItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-Bold.pfb + RELOC/fonts/type1/google/noto/NotoSans-BoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-Condensed.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedBlack.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedBlackItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedBold.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedExtraBold.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedExtraBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedExtraLight.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedExtraLightItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedLight.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedLightItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedMedium.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedMediumItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedSemiBold.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedSemiBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedThin.pfb + RELOC/fonts/type1/google/noto/NotoSans-CondensedThinItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraBold.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensed.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedBlack.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedBlackItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedBold.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedExtraBold.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedExtraBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedExtraLight.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedExtraLightItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedLight.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedLightItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedMedium.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedMediumItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedSemiBold.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedSemiBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedThin.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedThinItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraLight.pfb + RELOC/fonts/type1/google/noto/NotoSans-ExtraLightItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-Italic.pfb + RELOC/fonts/type1/google/noto/NotoSans-Light.pfb + RELOC/fonts/type1/google/noto/NotoSans-LightItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-Medium.pfb + RELOC/fonts/type1/google/noto/NotoSans-MediumItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-Regular.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiBold.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensed.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedBlack.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedBlackItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedBold.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedExtraBold.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedExtraBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedExtraLight.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedExtraLightItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedLight.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedLightItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedMedium.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedMediumItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedSemiBold.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedSemiBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedThin.pfb + RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedThinItalic.pfb + RELOC/fonts/type1/google/noto/NotoSans-Thin.pfb + RELOC/fonts/type1/google/noto/NotoSans-ThinItalic.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-Black.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-Bold.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-BoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-Condensed.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-CondensedBlack.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-CondensedBold.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-CondensedExtraBold.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-CondensedExtraLight.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-CondensedLight.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-CondensedMedium.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-CondensedSemiBold.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-CondensedThin.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-ExtraBold.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensed.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensedBlack.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensedBold.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensedExtraBold.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensedExtraLight.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensedLight.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensedMedium.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensedSemiBold.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensedThin.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-ExtraLight.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-Italic.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-Light.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-Medium.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-Regular.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-SemiBold.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensed.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensedBlack.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensedBold.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensedExtraBold.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensedExtraLight.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensedLight.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensedMedium.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensedSemiBold.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensedThin.pfb + RELOC/fonts/type1/google/noto/NotoSansMono-Thin.pfb + RELOC/fonts/type1/google/noto/NotoSerif-Black.pfb + RELOC/fonts/type1/google/noto/NotoSerif-BlackItalic.pfb + RELOC/fonts/type1/google/noto/NotoSerif-Bold.pfb + RELOC/fonts/type1/google/noto/NotoSerif-BoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSerif-ExtraBold.pfb + RELOC/fonts/type1/google/noto/NotoSerif-ExtraBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSerif-ExtraLight.pfb + RELOC/fonts/type1/google/noto/NotoSerif-ExtraLightItalic.pfb + RELOC/fonts/type1/google/noto/NotoSerif-Italic.pfb + RELOC/fonts/type1/google/noto/NotoSerif-Light.pfb + RELOC/fonts/type1/google/noto/NotoSerif-LightItalic.pfb + RELOC/fonts/type1/google/noto/NotoSerif-Medium.pfb + RELOC/fonts/type1/google/noto/NotoSerif-MediumItalic.pfb + RELOC/fonts/type1/google/noto/NotoSerif-Regular.pfb + RELOC/fonts/type1/google/noto/NotoSerif-SemiBold.pfb + RELOC/fonts/type1/google/noto/NotoSerif-SemiBoldItalic.pfb + RELOC/fonts/type1/google/noto/NotoSerif-Thin.pfb + RELOC/fonts/type1/google/noto/NotoSerif-ThinItalic.pfb + RELOC/fonts/vf/google/noto/NotoSans-Black-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Condensed-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-BoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Italic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Italic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Italic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Italic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Italic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tosf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-lf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-lf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-osf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-osf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-sup-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tosf-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tosf-ts1.vf + RELOC/tex/latex/noto/LGRNotoSans-LF.fd + RELOC/tex/latex/noto/LGRNotoSans-OsF.fd + RELOC/tex/latex/noto/LGRNotoSans-Sup.fd + RELOC/tex/latex/noto/LGRNotoSans-TLF.fd + RELOC/tex/latex/noto/LGRNotoSans-TOsF.fd + RELOC/tex/latex/noto/LGRNotoSansMono-Sup.fd + RELOC/tex/latex/noto/LGRNotoSansMono-TLF.fd + RELOC/tex/latex/noto/LGRNotoSansMono-TOsF.fd + RELOC/tex/latex/noto/LGRNotoSerif-LF.fd + RELOC/tex/latex/noto/LGRNotoSerif-OsF.fd + RELOC/tex/latex/noto/LGRNotoSerif-Sup.fd + RELOC/tex/latex/noto/LGRNotoSerif-TLF.fd + RELOC/tex/latex/noto/LGRNotoSerif-TOsF.fd + RELOC/tex/latex/noto/LY1NotoSans-LF.fd + RELOC/tex/latex/noto/LY1NotoSans-OsF.fd + RELOC/tex/latex/noto/LY1NotoSans-Sup.fd + RELOC/tex/latex/noto/LY1NotoSans-TLF.fd + RELOC/tex/latex/noto/LY1NotoSans-TOsF.fd + RELOC/tex/latex/noto/LY1NotoSansMono-Sup.fd + RELOC/tex/latex/noto/LY1NotoSansMono-TLF.fd + RELOC/tex/latex/noto/LY1NotoSansMono-TOsF.fd + RELOC/tex/latex/noto/LY1NotoSerif-LF.fd + RELOC/tex/latex/noto/LY1NotoSerif-OsF.fd + RELOC/tex/latex/noto/LY1NotoSerif-Sup.fd + RELOC/tex/latex/noto/LY1NotoSerif-TLF.fd + RELOC/tex/latex/noto/LY1NotoSerif-TOsF.fd + RELOC/tex/latex/noto/OT1NotoSans-LF.fd + RELOC/tex/latex/noto/OT1NotoSans-OsF.fd + RELOC/tex/latex/noto/OT1NotoSans-Sup.fd + RELOC/tex/latex/noto/OT1NotoSans-TLF.fd + RELOC/tex/latex/noto/OT1NotoSans-TOsF.fd + RELOC/tex/latex/noto/OT1NotoSansMono-Sup.fd + RELOC/tex/latex/noto/OT1NotoSansMono-TLF.fd + RELOC/tex/latex/noto/OT1NotoSansMono-TOsF.fd + RELOC/tex/latex/noto/OT1NotoSerif-LF.fd + RELOC/tex/latex/noto/OT1NotoSerif-OsF.fd + RELOC/tex/latex/noto/OT1NotoSerif-Sup.fd + RELOC/tex/latex/noto/OT1NotoSerif-TLF.fd + RELOC/tex/latex/noto/OT1NotoSerif-TOsF.fd + RELOC/tex/latex/noto/T1NotoSans-LF.fd + RELOC/tex/latex/noto/T1NotoSans-OsF.fd + RELOC/tex/latex/noto/T1NotoSans-Sup.fd + RELOC/tex/latex/noto/T1NotoSans-TLF.fd + RELOC/tex/latex/noto/T1NotoSans-TOsF.fd + RELOC/tex/latex/noto/T1NotoSansMono-Sup.fd + RELOC/tex/latex/noto/T1NotoSansMono-TLF.fd + RELOC/tex/latex/noto/T1NotoSansMono-TOsF.fd + RELOC/tex/latex/noto/T1NotoSerif-LF.fd + RELOC/tex/latex/noto/T1NotoSerif-OsF.fd + RELOC/tex/latex/noto/T1NotoSerif-Sup.fd + RELOC/tex/latex/noto/T1NotoSerif-TLF.fd + RELOC/tex/latex/noto/T1NotoSerif-TOsF.fd + RELOC/tex/latex/noto/T2ANotoSans-LF.fd + RELOC/tex/latex/noto/T2ANotoSans-OsF.fd + RELOC/tex/latex/noto/T2ANotoSans-Sup.fd + RELOC/tex/latex/noto/T2ANotoSans-TLF.fd + RELOC/tex/latex/noto/T2ANotoSans-TOsF.fd + RELOC/tex/latex/noto/T2ANotoSansMono-Sup.fd + RELOC/tex/latex/noto/T2ANotoSansMono-TLF.fd + RELOC/tex/latex/noto/T2ANotoSansMono-TOsF.fd + RELOC/tex/latex/noto/T2ANotoSerif-LF.fd + RELOC/tex/latex/noto/T2ANotoSerif-OsF.fd + RELOC/tex/latex/noto/T2ANotoSerif-Sup.fd + RELOC/tex/latex/noto/T2ANotoSerif-TLF.fd + RELOC/tex/latex/noto/T2ANotoSerif-TOsF.fd + RELOC/tex/latex/noto/T2BNotoSans-LF.fd + RELOC/tex/latex/noto/T2BNotoSans-OsF.fd + RELOC/tex/latex/noto/T2BNotoSans-Sup.fd + RELOC/tex/latex/noto/T2BNotoSans-TLF.fd + RELOC/tex/latex/noto/T2BNotoSans-TOsF.fd + RELOC/tex/latex/noto/T2BNotoSansMono-Sup.fd + RELOC/tex/latex/noto/T2BNotoSansMono-TLF.fd + RELOC/tex/latex/noto/T2BNotoSansMono-TOsF.fd + RELOC/tex/latex/noto/T2BNotoSerif-LF.fd + RELOC/tex/latex/noto/T2BNotoSerif-OsF.fd + RELOC/tex/latex/noto/T2BNotoSerif-Sup.fd + RELOC/tex/latex/noto/T2BNotoSerif-TLF.fd + RELOC/tex/latex/noto/T2BNotoSerif-TOsF.fd + RELOC/tex/latex/noto/T2CNotoSans-LF.fd + RELOC/tex/latex/noto/T2CNotoSans-OsF.fd + RELOC/tex/latex/noto/T2CNotoSans-Sup.fd + RELOC/tex/latex/noto/T2CNotoSans-TLF.fd + RELOC/tex/latex/noto/T2CNotoSans-TOsF.fd + RELOC/tex/latex/noto/T2CNotoSansMono-Sup.fd + RELOC/tex/latex/noto/T2CNotoSansMono-TLF.fd + RELOC/tex/latex/noto/T2CNotoSansMono-TOsF.fd + RELOC/tex/latex/noto/T2CNotoSerif-LF.fd + RELOC/tex/latex/noto/T2CNotoSerif-OsF.fd + RELOC/tex/latex/noto/T2CNotoSerif-Sup.fd + RELOC/tex/latex/noto/T2CNotoSerif-TLF.fd + RELOC/tex/latex/noto/T2CNotoSerif-TOsF.fd + RELOC/tex/latex/noto/TS1NotoSans-LF.fd + RELOC/tex/latex/noto/TS1NotoSans-OsF.fd + RELOC/tex/latex/noto/TS1NotoSans-TLF.fd + RELOC/tex/latex/noto/TS1NotoSans-TOsF.fd + RELOC/tex/latex/noto/TS1NotoSansMono-TLF.fd + RELOC/tex/latex/noto/TS1NotoSansMono-TOsF.fd + RELOC/tex/latex/noto/TS1NotoSerif-LF.fd + RELOC/tex/latex/noto/TS1NotoSerif-OsF.fd + RELOC/tex/latex/noto/TS1NotoSerif-TLF.fd + RELOC/tex/latex/noto/TS1NotoSerif-TOsF.fd + RELOC/tex/latex/noto/noto-mono.sty + RELOC/tex/latex/noto/noto-sans.sty + RELOC/tex/latex/noto/noto-serif.sty + RELOC/tex/latex/noto/noto.sty +catalogue-contact-home https://www.google.com/get/noto/ +catalogue-ctan /fonts/noto +catalogue-date 2019-05-20 19:02:47 +0200 +catalogue-license lpplofl +catalogue-topics font font-ttf font-type1 font-body font-proportional font-sans font-serif font-t1enc + +name notoccite +category Package +revision 18129 +shortdesc Prevent trouble from citations in table of contents, etc +relocated 1 +longdesc If you have \cite commands in \section-like commands, or in +longdesc \caption, the citation will also appear in the table of +longdesc contents, or list of whatever. If you are also using an +longdesc unsrt-like bibliography style, these citations will come at the +longdesc very start of the bibliography, which is confusing. This +longdesc package suppresses the effect. +containersize 1440 +containerchecksum b63b890933b27717625383488d2cbeb1501ace58b83e5af66a35ba440816527dc879df444af78090294df6d4d412d21fddbab43068a6d677b22d750ddb4105e6 +doccontainersize 227152 +doccontainerchecksum 83b3d2c7b97bb88af13d888d04f08ebb7e79661b4924ed6e328f26b9d19e4c6eea6719b49e6f227dc37c96201a901fe57da3745dfa7151bec27c7e8bfb81b236 +docfiles size=58 + RELOC/doc/latex/notoccite/notoccite.pdf details="Package documentation" + RELOC/doc/latex/notoccite/notoccite.tex +runfiles size=1 + RELOC/tex/latex/notoccite/notoccite.sty +catalogue-ctan /macros/latex/contrib/notoccite +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics headings cite-supp + +name novel +category Package +revision 47492 +shortdesc Class for printing fiction, such as novels +relocated 1 +longdesc This LuaLaTeX document class is specifically written to meet +longdesc the needs of original fiction writers, who are typesetting +longdesc their own novels for non-color print-on-demand technology. +longdesc Built-in PDF/X is available, using new technology. The package +longdesc is well suited for detective novels, science fiction, and short +longdesc stories. It is however not recommended for creating color +longdesc picture books or dissertations. +containersize 120912 +containerchecksum ab6fd183a8f1fefa9d7e56fd234cf577bfbfbf6635d8e8fb6665e05b5d2f98dacf285731b32df64abc3d314865409003d89a935e2af2cce8990e0cc3c4510998 +doccontainersize 4672576 +doccontainerchecksum 3e1bf9313cf7e52f1d08f94b24be24153f4f2b68c19517e5be81c2bd224033fbfff5a17857866ad274cc54a96c0bb9f9da6536af5213bd561ea48b7ebb4e7cdb +docfiles size=1339 + RELOC/doc/lualatex/novel/extras/CPmodified.otf + RELOC/doc/lualatex/novel/extras/NovelDeco-glyphs.pdf + RELOC/doc/lualatex/novel/extras/novel-Gallery-ChapterStart.pdf + RELOC/doc/lualatex/novel/extras/novel-example.tex + RELOC/doc/lualatex/novel/extras/novel-extras-README.html + RELOC/doc/lualatex/novel/extras/novel-scripts.zip + RELOC/doc/lualatex/novel/extras/novel-testimage.jpg + RELOC/doc/lualatex/novel/extras/novel-testimage.png + RELOC/doc/lualatex/novel/extras/novel-testscript.jpg + RELOC/doc/lualatex/novel/extras/novel-testscript.png + RELOC/doc/lualatex/novel/extras/novel-testsuite.tex + RELOC/doc/lualatex/novel/html-resources/10transold.png + RELOC/doc/lualatex/novel/html-resources/10trueold.png + RELOC/doc/lualatex/novel/html-resources/CPmodified-sample.png + RELOC/doc/lualatex/novel/html-resources/I-shade.png + RELOC/doc/lualatex/novel/html-resources/Iboxcap.png + RELOC/doc/lualatex/novel/html-resources/acronym2.png + RELOC/doc/lualatex/novel/html-resources/alphabetagamma.png + RELOC/doc/lualatex/novel/html-resources/authorsnote.png + RELOC/doc/lualatex/novel/html-resources/badaboom.png + RELOC/doc/lualatex/novel/html-resources/bixby-original.png + RELOC/doc/lualatex/novel/html-resources/bixby-softproof.png + RELOC/doc/lualatex/novel/html-resources/bookmanglerdashboard.png + RELOC/doc/lualatex/novel/html-resources/bookofbeirh.png + RELOC/doc/lualatex/novel/html-resources/chaptertitlesubtitle.png + RELOC/doc/lualatex/novel/html-resources/charscaletext.png + RELOC/doc/lualatex/novel/html-resources/closecrop.png + RELOC/doc/lualatex/novel/html-resources/colormax-original.png + RELOC/doc/lualatex/novel/html-resources/colormax-softproof.png + RELOC/doc/lualatex/novel/html-resources/colorsampler-softproof.png + RELOC/doc/lualatex/novel/html-resources/colorsampler.png + RELOC/doc/lualatex/novel/html-resources/cropmarks.png + RELOC/doc/lualatex/novel/html-resources/cropview.png + RELOC/doc/lualatex/novel/html-resources/ctimg35.png + RELOC/doc/lualatex/novel/html-resources/doordie.png + RELOC/doc/lualatex/novel/html-resources/dorfmcnorf.png + RELOC/doc/lualatex/novel/html-resources/dropcap-antestar.png + RELOC/doc/lualatex/novel/html-resources/dropcap-gap.png + RELOC/doc/lualatex/novel/html-resources/dropcap-scalebloat.png + RELOC/doc/lualatex/novel/html-resources/dropcap.png + RELOC/doc/lualatex/novel/html-resources/emblembar.png + RELOC/doc/lualatex/novel/html-resources/emblemdingbats.png + RELOC/doc/lualatex/novel/html-resources/emblemimg.png + RELOC/doc/lualatex/novel/html-resources/endnotetext.png + RELOC/doc/lualatex/novel/html-resources/firstletterspecial.png + RELOC/doc/lualatex/novel/html-resources/firstlinespecial.png + RELOC/doc/lualatex/novel/html-resources/fluffy-conspiracy.png + RELOC/doc/lualatex/novel/html-resources/font-tree.png + RELOC/doc/lualatex/novel/html-resources/fontbyfamily.png + RELOC/doc/lualatex/novel/html-resources/fontbyfilenamei.png + RELOC/doc/lualatex/novel/html-resources/fpaper.png + RELOC/doc/lualatex/novel/html-resources/frankenfont.png + RELOC/doc/lualatex/novel/html-resources/gnome-censored.png + RELOC/doc/lualatex/novel/html-resources/graytext.png + RELOC/doc/lualatex/novel/html-resources/head-foot-jumps.png + RELOC/doc/lualatex/novel/html-resources/headfont-default.png + RELOC/doc/lualatex/novel/html-resources/headfont-montserrat-el.png + RELOC/doc/lualatex/novel/html-resources/headfont-roboto.png + RELOC/doc/lualatex/novel/html-resources/headfoot1.png + RELOC/doc/lualatex/novel/html-resources/headfoot2.png + RELOC/doc/lualatex/novel/html-resources/headfoot3.png + RELOC/doc/lualatex/novel/html-resources/headfoot4.png + RELOC/doc/lualatex/novel/html-resources/headfoot5.png + RELOC/doc/lualatex/novel/html-resources/headfoot6.png + RELOC/doc/lualatex/novel/html-resources/human-robot-talk.png + RELOC/doc/lualatex/novel/html-resources/imgdialogs.png + RELOC/doc/lualatex/novel/html-resources/info18.png + RELOC/doc/lualatex/novel/html-resources/inlineimagest.png + RELOC/doc/lualatex/novel/html-resources/jackbequick.png + RELOC/doc/lualatex/novel/html-resources/jollybeers.png + RELOC/doc/lualatex/novel/html-resources/jpgcolorspace.png + RELOC/doc/lualatex/novel/html-resources/jump-change.png + RELOC/doc/lualatex/novel/html-resources/looseheads.png + RELOC/doc/lualatex/novel/html-resources/lowdown.png + RELOC/doc/lualatex/novel/html-resources/map.png + RELOC/doc/lualatex/novel/html-resources/margins-trim-media.png + RELOC/doc/lualatex/novel/html-resources/mcdingle.png + RELOC/doc/lualatex/novel/html-resources/mediasize.png + RELOC/doc/lualatex/novel/html-resources/megadocprops.png + RELOC/doc/lualatex/novel/html-resources/megatitlepagesm.png + RELOC/doc/lualatex/novel/html-resources/monitorgamut.png + RELOC/doc/lualatex/novel/html-resources/no-brainer.png + RELOC/doc/lualatex/novel/html-resources/novel-color-sampler.png + RELOC/doc/lualatex/novel/html-resources/overflowrule.png + RELOC/doc/lualatex/novel/html-resources/page-leaf.png + RELOC/doc/lualatex/novel/html-resources/parascale.png + RELOC/doc/lualatex/novel/html-resources/perfectbinding.png + RELOC/doc/lualatex/novel/html-resources/pngcolortype.png + RELOC/doc/lualatex/novel/html-resources/printgamut.png + RELOC/doc/lualatex/novel/html-resources/quickchapter.png + RELOC/doc/lualatex/novel/html-resources/raffaelino-original.png + RELOC/doc/lualatex/novel/html-resources/raffaelino-softproof.png + RELOC/doc/lualatex/novel/html-resources/robberies.png + RELOC/doc/lualatex/novel/html-resources/scenebreaks.png + RELOC/doc/lualatex/novel/html-resources/shademargins.png + RELOC/doc/lualatex/novel/html-resources/shakepi.png + RELOC/doc/lualatex/novel/html-resources/signature.png + RELOC/doc/lualatex/novel/html-resources/simpletoc.png + RELOC/doc/lualatex/novel/html-resources/sixpage-frontmatter.png + RELOC/doc/lualatex/novel/html-resources/skygrad.jpg + RELOC/doc/lualatex/novel/html-resources/smallcapsrealfake.png + RELOC/doc/lualatex/novel/html-resources/smfingerprint8.png + RELOC/doc/lualatex/novel/html-resources/smythsewn.png + RELOC/doc/lualatex/novel/html-resources/toc.png + RELOC/doc/lualatex/novel/html-resources/topmargins.png + RELOC/doc/lualatex/novel/html-resources/trdol.png + RELOC/doc/lualatex/novel/html-resources/trimsize.png + RELOC/doc/lualatex/novel/html-resources/ublibser.png + RELOC/doc/lualatex/novel/html-resources/unsafe-vs-margin.png + RELOC/doc/lualatex/novel/html-resources/whichgutter.png + RELOC/doc/lualatex/novel/html-resources/win10libser.png + RELOC/doc/lualatex/novel/html-resources/workedforme.png + RELOC/doc/lualatex/novel/html-resources/wrapme.png + RELOC/doc/lualatex/novel/novel-documentation.html details="Package documentation (HTML)" + RELOC/doc/lualatex/novel/novel.pdf details="Example document" + RELOC/doc/lualatex/novel/novel.tex +runfiles size=104 + RELOC/fonts/opentype/novel/NovelDeco.otf + RELOC/tex/lualatex/novel/novel-CGATSTR001.clo + RELOC/tex/lualatex/novel/novel-CalculateLayout.sty + RELOC/tex/lualatex/novel/novel-ChapterScene.sty + RELOC/tex/lualatex/novel/novel-DropCap.sty + RELOC/tex/lualatex/novel/novel-FOGRA39.clo + RELOC/tex/lualatex/novel/novel-FileData.sty + RELOC/tex/lualatex/novel/novel-Fonts.sty + RELOC/tex/lualatex/novel/novel-Footnotes.sty + RELOC/tex/lualatex/novel/novel-HeadFootStyles.sty + RELOC/tex/lualatex/novel/novel-Images.sty + RELOC/tex/lualatex/novel/novel-JC200103.clo + RELOC/tex/lualatex/novel/novel-LayoutSettings.sty + RELOC/tex/lualatex/novel/novel-Obsolete.sty + RELOC/tex/lualatex/novel/novel-PostLayout.sty + RELOC/tex/lualatex/novel/novel-Sandbox.sty + RELOC/tex/lualatex/novel/novel-TextMacros.sty + RELOC/tex/lualatex/novel/novel-microtype.cfg + RELOC/tex/lualatex/novel/novel-pdfx.sty + RELOC/tex/lualatex/novel/novel-xmppacket.sty + RELOC/tex/lualatex/novel/novel.cls +catalogue-ctan /macros/luatex/latex/novel +catalogue-date 2018-04-28 21:25:48 +0200 +catalogue-license lppl1.3cofl +catalogue-topics luatex production book-pub class +catalogue-version 1.52 + +name nowidow +category Package +revision 24066 +shortdesc Avoid widows +relocated 1 +longdesc This package provides a useful macro to manage widow lines. +containersize 1200 +containerchecksum 2dff380964c5c487a015073ade0cef996f5786b204657ec5c8948748f485c03b457f6d8caa5bce8148cdbba2623489a01b5370bcd38eb73469d07da4afb8a216 +doccontainersize 175128 +doccontainerchecksum b11e2051543215f3f19c4d1e3398564093202be07771b7b3711e9ba5359e750bd8f73118b099f82fc3bb1e9a5f202027b168c371ca6587703d82f853ced4d538 +docfiles size=44 + RELOC/doc/latex/nowidow/README details="Readme file" + RELOC/doc/latex/nowidow/nowidow.pdf details="Package documentation" +srccontainersize 3340 +srccontainerchecksum 862f3fcfb0a165473657d8e8616fa200a017c410e162bc8ce95376028fa4f2c0959e7d116152e73ba6c6cf4d39ad34d1c57f2320dc20f637e1d3a0e2cb2ec7b6 +srcfiles size=3 + RELOC/source/latex/nowidow/nowidow.dtx + RELOC/source/latex/nowidow/nowidow.ins +runfiles size=1 + RELOC/tex/latex/nowidow/nowidow.sty +catalogue-contact-repository https://github.com/raphink/nowidow +catalogue-ctan /macros/latex/contrib/nowidow +catalogue-date 2018-01-31 08:51:50 +0100 +catalogue-license lppl1.3 +catalogue-topics layout +catalogue-version 1.0 + +name nox +category Package +revision 30991 +shortdesc Adaptable tables +relocated 1 +longdesc The package allows data, text (including (La)TeX commands or +longdesc environments) to be formatted into a array which may be split. +containersize 4380 +containerchecksum 0061e0bc12a06b79c4339684d0598587f3aaf1c2aeacc7aa32118d7b91d3937ffe0ca50b55f5ba9d1b7a4a1c511811191160c58bc51b68dfdfa2b0cee900b409 +doccontainersize 175740 +doccontainerchecksum 2383ebed9a9c6f65d6271317b46147915afdfd6caf39893e4cfe470e302f9ed6f30ca9f725bc2bec296cc88027462765b4ca5731cd5ccf98fa5c8156b1d88987 +docfiles size=47 + RELOC/doc/latex/nox/README details="Readme (German)" language="de" + RELOC/doc/latex/nox/nox.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/nox/nox.tex +runfiles size=4 + RELOC/tex/latex/nox/nox.sty +catalogue-ctan /macros/latex/contrib/nox +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics table-long table +catalogue-version 1.0 + +name npp-for-context +category Package +revision 47282 +shortdesc ConTeXt plugin for Notepad++ +relocated 1 +longdesc This package provides A plugin for Notepad++ that implements, +longdesc for the ConTeXt document processing system, a language lexer +longdesc for semantic highlighting of TeX, LuaTeX, and ConTeXt commands; +longdesc autocompletion of commands with full support for calltips (set +longdesc in columns); tagging and insertion of markup and templates, +longdesc with support for mnemonic keys. A color scheme and two +longdesc complementary Notepad++ themes: "Silver Twilight Hi" and +longdesc "Silver Twilight Lo". +containersize 668 +containerchecksum a8bb3e735d10ceb3aa2b0266716b8c72fb52f8dc6b85706284262558afabaf2704e16edda85d8b82a49f1b7fdc5224f6fd1ffb3fd302ca3a239c07b5a14e3aa8 +doccontainersize 2155852 +doccontainerchecksum e123c6f42b5756bd3764fb91518710c2cca0ba5b3e7d37bb6f68d5da3ff021f44e4385321038719ae96855db20a9eae4f0eb731eec6335235601e74e37d4a4f8 +docfiles size=690 + RELOC/doc/context/third/npp-for-context/LICENSE + RELOC/doc/context/third/npp-for-context/Npp-for-ConTeXt.sha256sum + RELOC/doc/context/third/npp-for-context/Npp-for-ConTeXt.zip + RELOC/doc/context/third/npp-for-context/README.md details="Readme" + RELOC/doc/context/third/npp-for-context/doc/autocompletion-command.jpg + RELOC/doc/context/third/npp-for-context/doc/autocompletion-word.jpg + RELOC/doc/context/third/npp-for-context/doc/bidi01.jpg + RELOC/doc/context/third/npp-for-context/doc/bidi02.jpg + RELOC/doc/context/third/npp-for-context/doc/bidi03.jpg + RELOC/doc/context/third/npp-for-context/doc/bidi04.jpg + RELOC/doc/context/third/npp-for-context/doc/bidi05.jpg + RELOC/doc/context/third/npp-for-context/doc/bidi06.jpg + RELOC/doc/context/third/npp-for-context/doc/bidi07.jpg + RELOC/doc/context/third/npp-for-context/doc/bidi08.jpg + RELOC/doc/context/third/npp-for-context/doc/bidi09.jpg + RELOC/doc/context/third/npp-for-context/doc/bidi10.jpg + RELOC/doc/context/third/npp-for-context/doc/calltip.jpg + RELOC/doc/context/third/npp-for-context/doc/dividingline.jpg + RELOC/doc/context/third/npp-for-context/doc/keywindow.jpg + RELOC/doc/context/third/npp-for-context/doc/npp-context-manual.pdf details="Package documentation" + RELOC/doc/context/third/npp-for-context/doc/npp-context-manual.tex + RELOC/doc/context/third/npp-for-context/doc/nppexec1.jpg + RELOC/doc/context/third/npp-for-context/doc/nppexec2.jpg + RELOC/doc/context/third/npp-for-context/doc/nppexec3.jpg + RELOC/doc/context/third/npp-for-context/doc/rightclickmenu.jpg + RELOC/doc/context/third/npp-for-context/doc/scite-tools.jpg + RELOC/doc/context/third/npp-for-context/doc/style-configurator.jpg + RELOC/doc/context/third/npp-for-context/doc/tagsmenu.jpg +catalogue-contact-repository https://github.com/luigiScarso/context-npp +catalogue-ctan /support/npp-for-context +catalogue-date 2018-04-29 07:15:59 +0200 +catalogue-license noinfo +catalogue-topics editor-extn +catalogue-version 0.98 + +name nrc +category Package +revision 29027 +shortdesc Class for the NRC technical journals +relocated 1 +longdesc Macros, and some documentation, for typesetting papers for +longdesc submission to journals published by the National Research +longdesc Council Research Press. At present, only nrc2.cls (for +longdesc two-column layout) should be used. +containersize 14420 +containerchecksum 2d93fc25d0305b8bee0e5e9ae61bba492bc265e023980a411ffa521f15746c6d73940e352c886ed5dbe08502f472a63559191aea44c3801518bca8b28d0b753a +doccontainersize 208276 +doccontainerchecksum 35f86598105db616ea379175f3a098cf7c94f4a0a8836302de664c7bb65bbb5f72f41c5c9dc58bf336781a23553ec49e0a5c4d7d0be12b1cff68108aba77e88d +docfiles size=75 + RELOC/doc/latex/nrc/00-2013-feb-authors.txt details="Notes for authors" + RELOC/doc/latex/nrc/README details="Readme" + RELOC/doc/latex/nrc/userguide.pdf details="Package documentation" + RELOC/doc/latex/nrc/userguide.tex +srccontainersize 37568 +srccontainerchecksum 3404facf13d3ddaaf4a9aa295cd7c0777308502075d1ba70bfd6be6e8158eea6ff4b88db2414f8ea5e758ebdf52dcd5f44b6bb55e903c0e11dc6260b02a1779d +srcfiles size=41 + RELOC/source/latex/nrc/nrc.dtx + RELOC/source/latex/nrc/nrc.ins +runfiles size=34 + RELOC/tex/latex/nrc/nrc1.cls + RELOC/tex/latex/nrc/nrc1.sty + RELOC/tex/latex/nrc/nrc2.cls + RELOC/tex/latex/nrc/nrc2.sty +catalogue-ctan /macros/latex/contrib/nrc +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics journalpub physics +catalogue-version 2.01a + +name ntgclass +category Package +revision 15878 +shortdesc "European" versions of standard classes +relocated 1 +longdesc The bundle offers versions of the standard LaTeX article and +longdesc report classes, rewritten to reflect a more European design, +longdesc and the a4 package, which is better tuned to the shape of a4 +longdesc paper than is the a4paper class option of the standard classes. +longdesc The classes include several for article and report +longdesc requirements, and a letter class. The elements of the bundle +longdesc were designed by members of the Dutch TeX Users Group NTG. +containersize 16552 +containerchecksum a801b4653b65eb27764a37330bd01b690c6eaf6cf569d18df01019af61b9a32efdfe3d1140ce6101f58a06294bdbe07a4c30110abaa9932df693d594d3a17135 +doccontainersize 1003764 +doccontainerchecksum bf6d05d54c425b716b6a3c9a4f2e899d37bb7233b5386700e27e365f236ccb38b025722b7148529923bb94a4e88222a4c34855ab5c7490104a8d02f759acf3fc +docfiles size=313 + RELOC/doc/latex/ntgclass/00readme.txt details="Readme" + RELOC/doc/latex/ntgclass/a4.pdf + RELOC/doc/latex/ntgclass/artdoc.pdf details="The artikel (article) classes" language="nl" + RELOC/doc/latex/ntgclass/artdoc.tex + RELOC/doc/latex/ntgclass/brief.pdf + RELOC/doc/latex/ntgclass/brief.tex + RELOC/doc/latex/ntgclass/briefdoc.pdf details="The brief (letter) class" language="nl" + RELOC/doc/latex/ntgclass/briefdoc.tex + RELOC/doc/latex/ntgclass/catalog.txt + RELOC/doc/latex/ntgclass/changes.txt + RELOC/doc/latex/ntgclass/classdoc.pdf details="Introduction to the classes" + RELOC/doc/latex/ntgclass/classdoc.tex + RELOC/doc/latex/ntgclass/manifest.txt + RELOC/doc/latex/ntgclass/ntgclass.pdf + RELOC/doc/latex/ntgclass/rapdoc.pdf details="The rapport (report) classes" language="nl" + RELOC/doc/latex/ntgclass/rapdoc.tex +srccontainersize 54560 +srccontainerchecksum 1462eb56cddc974bc562c258eaeb6e031f89c3d0e0983c7810e276f500513bca0819f6ebbeb65182dfddc1dd495242ea260d945845e3b2c5e72ebcf15b8b13cf +srcfiles size=74 + RELOC/source/latex/ntgclass/a4.dtx + RELOC/source/latex/ntgclass/a4.ins + RELOC/source/latex/ntgclass/brief.dtx + RELOC/source/latex/ntgclass/ntgclass.dtx + RELOC/source/latex/ntgclass/ntgclass.ins +runfiles size=73 + RELOC/tex/latex/ntgclass/a4.sty + RELOC/tex/latex/ntgclass/artikel1.cls + RELOC/tex/latex/ntgclass/artikel2.cls + RELOC/tex/latex/ntgclass/artikel3.cls + RELOC/tex/latex/ntgclass/boek.cls + RELOC/tex/latex/ntgclass/boek3.cls + RELOC/tex/latex/ntgclass/brief.cls + RELOC/tex/latex/ntgclass/ntg10.clo + RELOC/tex/latex/ntgclass/ntg11.clo + RELOC/tex/latex/ntgclass/ntg12.clo + RELOC/tex/latex/ntgclass/rapport1.cls + RELOC/tex/latex/ntgclass/rapport3.cls +catalogue-ctan /macros/latex/contrib/ntgclass +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics class letter +catalogue-version 2.1a + +name ntheorem +category Package +revision 27609 +shortdesc Enhanced theorem environment +relocated 1 +longdesc The package offers enhancements for theorem-like environments: +longdesc easier control of layout; proper placement of endmarks even +longdesc when the environment ends with \end{enumerate} or +longdesc \end{displaymath} (including support for amsmath +longdesc displayed-equation environments); and support for making a list +longdesc of theorems, analagous to \listoffigures. +containersize 9652 +containerchecksum aabab9d6f1a5d9e9bd2ee2ec4b9ca8200098a8f3dc786b9c06d4b0e00431dd66f32a254d452bce7e1bb595454e178dcdd71d724b8d835b6f1c9ad9de41107295 +doccontainersize 420704 +doccontainerchecksum fdea81cedc9ceca6ee29ee006867a05f018f210db2cb59c763adc4bc15db65a7e96ffc93bcd576a4c1a50e7e55d4b199132371686538216eba6fed65dce77ba1 +docfiles size=118 + RELOC/doc/latex/ntheorem/README details="Readme" + RELOC/doc/latex/ntheorem/ntheorem.pdf details="Package documentation (English)" language="en" +srccontainersize 46428 +srccontainerchecksum bb0eb98e3344c4be782d113a0e5f1c91d615a5530e1c0a786938b1cf608fe8828d59d365c0d1011e62517f0f76139ea13bad1857f2e1315a2b919af1de3335d2 +srcfiles size=52 + RELOC/source/latex/ntheorem/ntheorem.drv + RELOC/source/latex/ntheorem/ntheorem.dtx + RELOC/source/latex/ntheorem/ntheorem.ins +runfiles size=12 + RELOC/tex/latex/ntheorem/ntheorem.std + RELOC/tex/latex/ntheorem/ntheorem.sty +catalogue-also amsthm thmtools empheq +catalogue-contact-home http://user.informatik.uni-goettingen.de/~may/Ntheorem/ +catalogue-ctan /macros/latex/contrib/ntheorem +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl +catalogue-topics maths-theorem +catalogue-version 1.33 + +name ntheorem-vn +category Package +revision 15878 +shortdesc Vietnamese translation of documentation of ntheorem +relocated 1 +longdesc This is a translation of the documentation provided with +longdesc ntheorem. +containersize 404 +containerchecksum 90460e92cb52bbf8ac9b56bb950d36551b40ba260a9745e8f4d339bbca855286f8682c1a5bd7dd4ecb53e85448f96d558e6c35ffb42d8b862d4680930f3a64ab +doccontainersize 379260 +doccontainerchecksum e097290ec9f9696aaabaef4dce11bec4337050848ee547535c30a9ecdf12a1e0be014f905b235fa1d851ad2c20426cd4a9a442a19475063dd4fa73945c3e1780 +docfiles size=145 + RELOC/doc/latex/ntheorem-vn/COPYING + RELOC/doc/latex/ntheorem-vn/FILELIST + RELOC/doc/latex/ntheorem-vn/README details="Readme" + RELOC/doc/latex/ntheorem-vn/ntheorem-doc-vn.pdf details="The document itself" language="vi" + RELOC/doc/latex/ntheorem-vn/src/Makefile + RELOC/doc/latex/ntheorem-vn/src/README.src + RELOC/doc/latex/ntheorem-vn/src/TODO + RELOC/doc/latex/ntheorem-vn/src/endmarks.tex + RELOC/doc/latex/ntheorem-vn/src/example.tex + RELOC/doc/latex/ntheorem-vn/src/help.tex + RELOC/doc/latex/ntheorem-vn/src/interference.tex + RELOC/doc/latex/ntheorem-vn/src/intro.tex + RELOC/doc/latex/ntheorem-vn/src/license.tex + RELOC/doc/latex/ntheorem-vn/src/ntheorem-doc-vn.tex + RELOC/doc/latex/ntheorem-vn/src/preamble.tex + RELOC/doc/latex/ntheorem-vn/src/thanks.tex + RELOC/doc/latex/ntheorem-vn/src/title-abstract.tex + RELOC/doc/latex/ntheorem-vn/src/user-interface.tex + RELOC/doc/latex/ntheorem-vn/test.pdf + RELOC/doc/latex/ntheorem-vn/test.tex +catalogue-ctan /info/translations/ntheorem/vn +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics vietnamese-doc translation +catalogue-version 1.203 + +name nuc +category Package +revision 22256 +shortdesc Notation for nuclear isotopes +relocated 1 +longdesc A simple package providing nuclear sub- and superscripts as +longdesc commonly used in radiochemistry, radiation science, and nuclear +longdesc physics and engineering applications. Isotopes which have Z +longdesc with more digits than A require special spacing to appear +longdesc properly; this spacing is supported in the package. +containersize 1788 +containerchecksum d540e5dc8a3edb41994ef4ed8af6a51fea544ac929ef059fc50cd561891e02e9ee9b55a62782757101cfc5eface3a170bd585c144e7c8e79e191299527f979c6 +doccontainersize 80404 +doccontainerchecksum ac118243f5fa4c7a4000344dfd5793dfbacc4d7a16a7031fca6305578e06bdd627473eb065a13c4d9cc5d9ef3c1712202c2d65a913c75043e36221fc7df25ac1 +docfiles size=23 + RELOC/doc/latex/nuc/README details="Readme" + RELOC/doc/latex/nuc/nuc.pdf details="Package documentation" + RELOC/doc/latex/nuc/nuc.tex +runfiles size=3 + RELOC/tex/latex/nuc/nuc.sty +catalogue-ctan /macros/latex/contrib/nuc +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics physics subsup-pos +catalogue-version 0.1 + +name nucleardata +category Package +revision 47307 +shortdesc Provides data about atomic nuclides for documents +relocated 1 +longdesc The package provides data and commands for including nuclear +longdesc and atomic mass and energy data in LaTeX documents. It uses the +longdesc PythonTeX package and requires pythontex.exe to be called with +longdesc the TeX file as the argument. +containersize 128004 +containerchecksum 68f9d542701bb9d2db956e70784dfce8a14058b5cab5c8316f9d76d59d20de4bc7fa05f22cfe318312b9ecd823a0d0b5cd084b809bcd615217f14e9e0ba76de8 +doccontainersize 407408 +doccontainerchecksum 3d03a8b301c91fcc3e8221f913574b4542e0aa645d83e443d117ad0d69b7198c4780207f0a5e36f7e24f538a249097e1ac4d828e192f6dd22684e905ce9f1cb6 +docfiles size=102 + RELOC/doc/latex/nucleardata/README details="Readme" + RELOC/doc/latex/nucleardata/nuccommandtest.pdf + RELOC/doc/latex/nucleardata/nuccommandtest.tex + RELOC/doc/latex/nucleardata/nucleardata.pdf details="Package documentation" +srccontainersize 132560 +srccontainerchecksum cf26f591795ce6db64ee7548c0384764c42f2eda260b5e5c1d56f7f08c54e13fef84616ea0a3bf9a9bfbf95ca139adf675eaae3047c80faf49e14d6330cb25c9 +srcfiles size=121 + RELOC/source/latex/nucleardata/nucleardata.dtx + RELOC/source/latex/nucleardata/nucleardata.ins +runfiles size=120 + RELOC/tex/latex/nucleardata/elementlist.csv + RELOC/tex/latex/nucleardata/massdata.csv + RELOC/tex/latex/nucleardata/nucleardata.hd + RELOC/tex/latex/nucleardata/nucleardata.pytxcode + RELOC/tex/latex/nucleardata/nucleardata.sty +catalogue-ctan /macros/latex/contrib/nucleardata +catalogue-date 2018-04-05 06:30:46 +0200 +catalogue-license lppl1.3 +catalogue-topics callback physics chemistry +catalogue-version 1.1 + +name numberedblock +category Package +revision 33109 +shortdesc Print a block of code, with unique index number +relocated 1 +longdesc The package has been created for the convenience of the report +longdesc writer; it provides the means to number, and label, code-block +longdesc snippets in your document. In this way, you can (unambiguously) +longdesc refer to each snippet elsewhere in your document. +containersize 2516 +containerchecksum d45a69881dee3aa3b6de69587b8c59d889fcae528c3c66f10cc14d653dbf7281e9ef4045dd2595d1a5c7305686bb0d12696bc00b672c5907dc58481a4e00d70e +doccontainersize 73436 +doccontainerchecksum 99443d809e77b32fafaf59b3faecbd121f038e3ce8e054304e8fdae6b145a0d19a67b5e7d003db72f06528d975c3e543a2fb9bbfbae9f48be460b1a344a0d2c8 +docfiles size=21 + RELOC/doc/latex/numberedblock/README details="Readme" + RELOC/doc/latex/numberedblock/testnumberedblock.pdf details="Demonstration of use" + RELOC/doc/latex/numberedblock/testnumberedblock.tex +runfiles size=2 + RELOC/tex/latex/numberedblock/numberedblock.sty +catalogue-ctan /macros/latex/contrib/numberedblock +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics listing label-ref +catalogue-version 1.10 + +name numericplots +category Package +revision 31729 +shortdesc Plot numeric data (including Matlab export) using PSTricks +relocated 1 +longdesc Plotting numeric data is a task which has often to be done for +longdesc scientific papers. LaTeX itself provides no facilities for +longdesc drawing more than the simplest plots from supplied data. The +longdesc package will process user input, and uses PSTricks to plot the +longdesc results. The package provides Matlab functions to transform +longdesc Matlab results to plottable data. +containersize 8808 +containerchecksum 6b51a7c68357dced9627d3c618a167d689b573ea44c2f36de5417735f39f5b3d1034558cf188bad2da5eb25f81a2bdee3df6059b8c14879770c3b300422cf016 +doccontainersize 442268 +doccontainerchecksum 1c9f9856ec2f8cfef61829256f1076099e6bcb79cb45e8155116d6c24feaa52f481c739593c6cc51df803fa76e8ec38b8d276e796660327a2bd1d86957896332 +docfiles size=373 + RELOC/doc/latex/numericplots/License.txt + RELOC/doc/latex/numericplots/NumericPlots.pdf details="Package documentation" + RELOC/doc/latex/numericplots/README details="Readme" + RELOC/doc/latex/numericplots/README.TEXLIVE + RELOC/doc/latex/numericplots/src/BasicFunctionality.tex + RELOC/doc/latex/numericplots/src/FurtherExamples.tex + RELOC/doc/latex/numericplots/src/MatlabSupport.tex + RELOC/doc/latex/numericplots/src/MultiplePlots.tex + RELOC/doc/latex/numericplots/src/NumericPlotsDoc.tex + RELOC/doc/latex/numericplots/src/Roll406_Ref2288.tex + RELOC/doc/latex/numericplots/src/TechnicalDetails.tex + RELOC/doc/latex/numericplots/src/TestPlots.tex + RELOC/doc/latex/numericplots/src/examples/BodeDiagramm.tex + RELOC/doc/latex/numericplots/src/examples/DataTestRealData.tex + RELOC/doc/latex/numericplots/src/examples/DefineData.tex + RELOC/doc/latex/numericplots/src/examples/LabelsNTickLabels.tex + RELOC/doc/latex/numericplots/src/examples/NyquistPlot.tex + RELOC/doc/latex/numericplots/src/examples/Sprungantwort_PT1Glied.tex + RELOC/doc/latex/numericplots/src/examples/basic_Boxes.tex + RELOC/doc/latex/numericplots/src/examples/basic_EasyPlot.tex + RELOC/doc/latex/numericplots/src/examples/basic_Grid.tex + RELOC/doc/latex/numericplots/src/examples/basic_Labels.tex + RELOC/doc/latex/numericplots/src/examples/basic_Legend.tex + RELOC/doc/latex/numericplots/src/examples/basic_LegendI.tex + RELOC/doc/latex/numericplots/src/examples/basic_LegendII.tex + RELOC/doc/latex/numericplots/src/examples/basic_LegendIII.tex + RELOC/doc/latex/numericplots/src/examples/basic_LineStyles.tex + RELOC/doc/latex/numericplots/src/examples/basic_Lines.tex + RELOC/doc/latex/numericplots/src/examples/basic_LogarithmicI.tex + RELOC/doc/latex/numericplots/src/examples/basic_LogarithmicII.tex + RELOC/doc/latex/numericplots/src/examples/basic_LogarithmicIII.tex + RELOC/doc/latex/numericplots/src/examples/basic_MultipleData.tex + RELOC/doc/latex/numericplots/src/examples/basic_Objects.tex + RELOC/doc/latex/numericplots/src/examples/basic_PlaceObjects.tex + RELOC/doc/latex/numericplots/src/examples/basic_PlaceObjectsII.tex + RELOC/doc/latex/numericplots/src/examples/basic_PlotWHoles.tex + RELOC/doc/latex/numericplots/src/examples/basic_UseRput.tex + RELOC/doc/latex/numericplots/src/examples/basic_UserLinestyles.tex + RELOC/doc/latex/numericplots/src/examples/data_BodeDiagrammLinearerTerm.tex + RELOC/doc/latex/numericplots/src/examples/data_Nyquist.tex + RELOC/doc/latex/numericplots/src/examples/data_SprungantwortPT1Glied.tex + RELOC/doc/latex/numericplots/src/examples/furtherEx_TickLabels.tex + RELOC/doc/latex/numericplots/src/examples/multiplots_exampleI.tex + RELOC/doc/latex/numericplots/src/examples/multiplots_exampleII.tex + RELOC/doc/latex/numericplots/src/examples/multiplots_exampleIII.tex + RELOC/doc/latex/numericplots/src/fig_NoiseData_ClosedLine.eps + RELOC/doc/latex/numericplots/src/fig_NoiseData_OpenLine.eps + RELOC/doc/latex/numericplots/src/history.tex + RELOC/doc/latex/numericplots/src/keys_NumericDataPlot.tex + RELOC/doc/latex/numericplots/src/options.tex +runfiles size=16 + RELOC/tex/latex/numericplots/NumericPlots.sty + RELOC/tex/latex/numericplots/NumericPlots_TickLabels.tex + RELOC/tex/latex/numericplots/NumericPlots_labels.tex + RELOC/tex/latex/numericplots/NumericPlots_legend.tex + RELOC/tex/latex/numericplots/NumericPlots_macros.tex + RELOC/tex/latex/numericplots/NumericPlots_styles.tex +catalogue-also pst-plot pgfplots +catalogue-ctan /graphics/pstricks/contrib/numericplots +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl3 +catalogue-topics graphics-plot +catalogue-version 2.0.2 + +name numname +category Package +revision 18130 +shortdesc Convert a number to its English expression +relocated 1 +longdesc The package can generate cardinal (one, two, ...) and ordinal +longdesc (first, second, ...) numbers. The code derives from the memoir +longdesc class, and is extracted for the convenience of non-users of +longdesc that class. +containersize 2944 +containerchecksum b2859430992fa6ee99f4d96f58cabe26b0f216d5e3b512c69b4db74738d933ea8d54503a61257d304201ac3fbc2ba49e908eeca5953ccc0f0023cbbe8b3df76c +doccontainersize 110948 +doccontainerchecksum 41aaa9057415ad83177f416e43fde4c8c81e335b2f3c025cbc53ffe1d9d61fc05dfe33221c16f1d652837e4ab5a797f60391fb4c319339517090ad0e2ffe66bb +docfiles size=30 + RELOC/doc/latex/numname/README details="Readme" + RELOC/doc/latex/numname/numname.pdf details="Package documentation" + RELOC/doc/latex/numname/numname.tex +runfiles size=5 + RELOC/tex/latex/numname/numname.sty +catalogue-ctan /macros/latex/contrib/numname +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics numbers + +name numnameru +category Package +revision 44895 +shortdesc Converts a number to the russian spelled out name +relocated 1 +longdesc This package converts a numerical number to the russian spelled +longdesc out name of the number. For example, 1 - odin, 2 - dva, 12 - +longdesc dvenadtsat'. +containersize 2512 +containerchecksum c6f92a720fc5baf6f55c3bc18e22113de0f7cad8a051c2019360f5f3c64eaa450bb12d6c361c52a5a802f558ff8d2cbfaa35897682d6ad218e9adbbc788f3c57 +doccontainersize 68608 +doccontainerchecksum 5e67f1908356e1f21e672e63a8873e46ebb36af39e55a64c174c3bc5c49057c6d19ac36523c34a7f1c1fc53346f6ddde8fd239ca88b5790ebba1eb8b7dbeb0ed +docfiles size=19 + RELOC/doc/latex/numnameru/README details="Readme" + RELOC/doc/latex/numnameru/numnameru.pdf details="Package documentation" + RELOC/doc/latex/numnameru/numnameru.tex +runfiles size=3 + RELOC/tex/latex/numnameru/numnameru.sty +catalogue-also numname +catalogue-ctan /macros/latex/contrib/numnameru +catalogue-date 2018-01-07 12:14:32 +0100 +catalogue-license lppl1.3 +catalogue-topics numbers + +name numprint +category Package +revision 27498 +shortdesc Print numbers with separators and exponent if necessary +relocated 1 +longdesc The package numprint prints numbers with a separator every +longdesc three digits and converts numbers given as 12345.6e789 to +longdesc 12\,345,6\cdot 10^{789}. Numbers are printed in the current +longdesc mode (text or math) in order to use the correct font. Many +longdesc things, including the decimal sign, the thousand separator, as +longdesc well as the product sign can be changed by the user, e.g., to +longdesc reach 12,345.6\times 10^{789}. If an optional argument is given +longdesc it is printed upright as unit. Numbers can be rounded to a +longdesc given number of digits. The package supports an automatic, +longdesc language-dependent change of the number format. Tabular +longdesc alignment using the tabular(*), array, tabularx, and longtable +longdesc environments (similar to the dcolumn and rccol packages) is +longdesc supported using all features of numprint. Additional text can +longdesc be added before and after the formatted number. +containersize 10552 +containerchecksum cdebfa502a461292b02186b146ad8086f46447b5d8a0292fd7943d93a39796eff1710563866506679e903b7a4d415af9a8d863fa81a62395c7bdeec2cd68e66f +doccontainersize 1178624 +doccontainerchecksum b821566e6fc532425c8f1b901b5613c763eb392461644850428707105626b6eb1a53784d6a693e7f9fe2aa612b72b4d5a38ddf65f22a0d022981771b2b303d04 +docfiles size=297 + RELOC/doc/latex/numprint/ChangeLog.nbaseprt + RELOC/doc/latex/numprint/ChangeLog.numprint + RELOC/doc/latex/numprint/Makefile + RELOC/doc/latex/numprint/README + RELOC/doc/latex/numprint/getversion.tex + RELOC/doc/latex/numprint/nbaseprt.pdf + RELOC/doc/latex/numprint/nbaseprttest.tex + RELOC/doc/latex/numprint/numprint.pdf details="Package documentation" + RELOC/doc/latex/numprint/numprinttest.tex +srccontainersize 42884 +srccontainerchecksum d4af01527564c9818840a87d9c876ec8d8cf6e7712913ea3deae4012fd0d4f0dae19e4016fc205814620d1cf97f3c12b98f1003fc6fc81857101d2ecd90fbe83 +srcfiles size=61 + RELOC/source/latex/numprint/nbaseprt.dtx + RELOC/source/latex/numprint/numprint.dtx + RELOC/source/latex/numprint/numprint.ins + RELOC/source/latex/numprint/numprint032.dtx +runfiles size=17 + RELOC/tex/latex/numprint/nbaseprt.sty + RELOC/tex/latex/numprint/numprint.sty + RELOC/tex/latex/numprint/numprint032.sty +catalogue-ctan /macros/latex/contrib/numprint +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics numbers +catalogue-version 1.39 + +name numspell +category Package +revision 45441 +shortdesc Spelling cardinal and ordinal numbers +relocated 1 +longdesc This package supports the spelling of cardinal and ordinal +longdesc numbers. Supported languages are English, French, German, +longdesc Hungarian, and Italian. The package requires xstring, +longdesc pdftexcmds, and etoolbox. +containersize 8924 +containerchecksum bf6d58521c82638b9f9e93fd5314db075fddd4cb249d7e8fe8b605581ed19414d259eef98a4f205d497fe4b9c552427ac202c0c0b5810e81ce1bf7ea903ec3ae +doccontainersize 225372 +doccontainerchecksum 6f3f26985e8c656fd68fa716fcd3ffbdc890da7cd0797934351b4d128444eeff4b2f2adb05210fe45fdd627c0da22716153aa8ebaf4b5d7644235ed8b6c2b507 +docfiles size=61 + RELOC/doc/latex/numspell/README details="Readme" + RELOC/doc/latex/numspell/numspell.pdf details="Package documentation" + RELOC/doc/latex/numspell/numspell.tex +runfiles size=25 + RELOC/tex/latex/numspell/numspell-english.sty + RELOC/tex/latex/numspell/numspell-french.sty + RELOC/tex/latex/numspell/numspell-german.sty + RELOC/tex/latex/numspell/numspell-italian.sty + RELOC/tex/latex/numspell/numspell-magyar.sty + RELOC/tex/latex/numspell/numspell.sty +catalogue-ctan /macros/latex/contrib/numspell +catalogue-date 2017-09-30 13:16:00 +0200 +catalogue-license lppl1.3 +catalogue-topics numbers multilingual english french german hungarian italian +catalogue-version 1.2 + +name nwejm +category Package +revision 50447 +shortdesc Support for the journal "North-Western European Journal of Mathematics" +relocated 1 +longdesc The bundle includes LaTeX classes and BibLaTeX styles files +longdesc dedicated to the new journal "North-Western European Journal of +longdesc Mathematics": nwejm for the complete issues of the journal, +longdesc aimed at the NWEJM's team, nwejmart, intended for the authors +longdesc who wish to publish an article in the NWEJM. This class's goal +longdesc is to: faithfully reproduce the layout of the nwejm, thus +longdesc enabling the authors to be able to work their document in +longdesc actual conditions, provide a number of tools (commands and +longdesc environments) to facilitate the drafting of documents, in +longdesc particular those containing mathematical formulas. +containersize 4047836 +containerchecksum 3f5ba2d0971207cc76735268242e4cbaeb2ef956e5157b5c52fbfa061d4467061dc351f4dc9109d45bb155e3d7c098673f212e521a5efc55a3985cf8426da923 +doccontainersize 1546672 +doccontainerchecksum 7399a838fc6cb2a5c4a403c6f46bbeb373b9deb8435cdab0a892fce147dd365598a993cfbce3b9884cb4d2549fc1b3dd330a256c351b7df2a44aafdcda5f4545 +docfiles size=516 + RELOC/doc/latex/nwejm/README.md details="Readme.md" + RELOC/doc/latex/nwejm/addons/completion/nwejm.cwl + RELOC/doc/latex/nwejm/addons/completion/nwejmart.cwl + RELOC/doc/latex/nwejm/english/README-TRANSLATION.md + RELOC/doc/latex/nwejm/examples/article-in-dutch.pdf + RELOC/doc/latex/nwejm/examples/article-in-dutch.tex + RELOC/doc/latex/nwejm/examples/article-in-english.pdf + RELOC/doc/latex/nwejm/examples/article-in-english.tex + RELOC/doc/latex/nwejm/examples/article-in-french.pdf + RELOC/doc/latex/nwejm/examples/article-in-french.tex + RELOC/doc/latex/nwejm/examples/article-in-german.pdf + RELOC/doc/latex/nwejm/examples/article-in-german.tex + RELOC/doc/latex/nwejm/examples/issue.pdf + RELOC/doc/latex/nwejm/examples/issue.tex + RELOC/doc/latex/nwejm/examples/sample.bib + RELOC/doc/latex/nwejm/examples/sample.pdf details="Example of use" + RELOC/doc/latex/nwejm/examples/sample.tex + RELOC/doc/latex/nwejm/examples/template.tex + RELOC/doc/latex/nwejm/french/documentation/latexmkrc + RELOC/doc/latex/nwejm/french/documentation/nwejm-fr.bib + RELOC/doc/latex/nwejm/french/documentation/nwejm-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/nwejm/french/documentation/nwejm-fr.tex +srccontainersize 46784 +srccontainerchecksum cdadfdae87ccd8be021ef9c73b75d284c6bc34d98acccfe8faa16539e1eda6901a0f334fe2604273fe91d2b3860ea97a9266eaff6918fefd69b2b386dc993222 +srcfiles size=57 + RELOC/source/latex/nwejm/nwejm-examples-template.dtx + RELOC/source/latex/nwejm/nwejm.dtx +runfiles size=2104 + RELOC/tex/latex/nwejm/images/nwejm-cover-background.jpg + RELOC/tex/latex/nwejm/images/nwejm-federation-recherche-math-npdc-logo.pdf + RELOC/tex/latex/nwejm/images/nwejm-fields-institute-logo.pdf + RELOC/tex/latex/nwejm/images/nwejm-kwg-logo.pdf + RELOC/tex/latex/nwejm/images/nwejm-logo-NB.pdf + RELOC/tex/latex/nwejm/images/nwejm-logo.pdf + RELOC/tex/latex/nwejm/images/nwejm-logos-collection.pdf + RELOC/tex/latex/nwejm/images/nwejm-logos-collection.tex + RELOC/tex/latex/nwejm/images/nwejm-smf-logo.pdf + RELOC/tex/latex/nwejm/images/nwejm-sml-logo.pdf + RELOC/tex/latex/nwejm/nwejm-dutch.trsl + RELOC/tex/latex/nwejm/nwejm-english.trsl + RELOC/tex/latex/nwejm/nwejm-french.trsl + RELOC/tex/latex/nwejm/nwejm-german.trsl + RELOC/tex/latex/nwejm/nwejm.bbx + RELOC/tex/latex/nwejm/nwejm.cbx + RELOC/tex/latex/nwejm/nwejm.cfg + RELOC/tex/latex/nwejm/nwejm.cls + RELOC/tex/latex/nwejm/nwejm.dbx + RELOC/tex/latex/nwejm/nwejm.lbx + RELOC/tex/latex/nwejm/nwejmart.cls +catalogue-contact-repository https://github.com/dbitouze/nwejm +catalogue-ctan /macros/latex/contrib/nwejm +catalogue-date 2019-03-18 13:04:06 +0100 +catalogue-license lppl1.3 +catalogue-topics journalpub class +catalogue-version 0.98f + +name oberdiek +category Package +revision 49285 +shortdesc A bundle of packages submitted by Heiko Oberdiek +relocated 1 +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 226656 +containerchecksum 8f6cc905af9c85af76e09e6639cfdaceeef43f0e6d79f66a43860bf47046615150ba05bf67e1cbe1e833b3807dafdb571f2ce4b80b5c358d247cc63bec73f7b5 +doccontainersize 13965960 +doccontainerchecksum 9b3f8275b9c08ca0ba26ecbe52601ff7cdd11ac3d0045102c3f7b99aa076082994e55cb837d42d230dbccf60d88b4a223220c589fa97fc8f195328ecee492f08 +docfiles size=4256 + RELOC/doc/latex/oberdiek/accsupp-example1.tex + RELOC/doc/latex/oberdiek/accsupp-example2.tex + RELOC/doc/latex/oberdiek/accsupp.pdf + RELOC/doc/latex/oberdiek/aliascnt.pdf + RELOC/doc/latex/oberdiek/alphalph.pdf + RELOC/doc/latex/oberdiek/askinclude.pdf + RELOC/doc/latex/oberdiek/atbegshi-example1.tex + RELOC/doc/latex/oberdiek/atbegshi-example2.tex + RELOC/doc/latex/oberdiek/atbegshi.pdf + RELOC/doc/latex/oberdiek/atenddvi.pdf + RELOC/doc/latex/oberdiek/attachfile2.pdf + RELOC/doc/latex/oberdiek/atveryend.pdf + RELOC/doc/latex/oberdiek/auxhook.pdf + RELOC/doc/latex/oberdiek/bigintcalc.pdf + RELOC/doc/latex/oberdiek/bitset.pdf + RELOC/doc/latex/oberdiek/bmpsize.pdf + RELOC/doc/latex/oberdiek/bookmark-example.tex + RELOC/doc/latex/oberdiek/bookmark.pdf + RELOC/doc/latex/oberdiek/catchfile.pdf + RELOC/doc/latex/oberdiek/centernot.pdf + RELOC/doc/latex/oberdiek/chemarr-example.tex + RELOC/doc/latex/oberdiek/chemarr.pdf + RELOC/doc/latex/oberdiek/classlist.pdf + RELOC/doc/latex/oberdiek/colonequals.pdf + RELOC/doc/latex/oberdiek/dvipscol.pdf + RELOC/doc/latex/oberdiek/embedfile-example-collection.tex + RELOC/doc/latex/oberdiek/embedfile-example-plain.tex + RELOC/doc/latex/oberdiek/embedfile.pdf + RELOC/doc/latex/oberdiek/engord.pdf + RELOC/doc/latex/oberdiek/enparen.pdf + RELOC/doc/latex/oberdiek/eolgrab.pdf + RELOC/doc/latex/oberdiek/epstopdf.pdf + RELOC/doc/latex/oberdiek/etexcmds.pdf + RELOC/doc/latex/oberdiek/example-mycolorsetup.sty + RELOC/doc/latex/oberdiek/example/eolgrab-example-env.tex + RELOC/doc/latex/oberdiek/example/eolgrab-example-ltx.tex + RELOC/doc/latex/oberdiek/example/eolgrab-example-sec.tex + RELOC/doc/latex/oberdiek/example/hologo-example.tex + RELOC/doc/latex/oberdiek/fibnum.pdf + RELOC/doc/latex/oberdiek/flags.pdf + RELOC/doc/latex/oberdiek/gettitlestring.pdf + RELOC/doc/latex/oberdiek/grfext.pdf + RELOC/doc/latex/oberdiek/grffile.pdf + RELOC/doc/latex/oberdiek/hobsub.pdf + RELOC/doc/latex/oberdiek/hologo.pdf + RELOC/doc/latex/oberdiek/holtxdoc.pdf + RELOC/doc/latex/oberdiek/hopatch.pdf + RELOC/doc/latex/oberdiek/hycolor.pdf + RELOC/doc/latex/oberdiek/hypbmsec.pdf + RELOC/doc/latex/oberdiek/hypcap.pdf + RELOC/doc/latex/oberdiek/hypdestopt.pdf + RELOC/doc/latex/oberdiek/hypdoc.pdf + RELOC/doc/latex/oberdiek/hypgotoe-example.tex + RELOC/doc/latex/oberdiek/hypgotoe.pdf + RELOC/doc/latex/oberdiek/hyphsubst.pdf + RELOC/doc/latex/oberdiek/ifdraft.pdf + RELOC/doc/latex/oberdiek/iflang.pdf + RELOC/doc/latex/oberdiek/ifpdf.pdf + RELOC/doc/latex/oberdiek/ifvtex.pdf + RELOC/doc/latex/oberdiek/infwarerr.pdf + RELOC/doc/latex/oberdiek/inputenx-licrcmds.txt + RELOC/doc/latex/oberdiek/inputenx-utf8enc.txt + RELOC/doc/latex/oberdiek/inputenx.pdf + RELOC/doc/latex/oberdiek/intcalc.pdf + RELOC/doc/latex/oberdiek/kvdefinekeys.pdf + RELOC/doc/latex/oberdiek/kvoptions.pdf + RELOC/doc/latex/oberdiek/kvsetkeys-example.tex + RELOC/doc/latex/oberdiek/kvsetkeys.pdf + RELOC/doc/latex/oberdiek/letltxmacro-showcases.tex + RELOC/doc/latex/oberdiek/letltxmacro.pdf + RELOC/doc/latex/oberdiek/listingsutf8.pdf + RELOC/doc/latex/oberdiek/ltxcmds.pdf + RELOC/doc/latex/oberdiek/luacolor.pdf + RELOC/doc/latex/oberdiek/luatex.pdf + RELOC/doc/latex/oberdiek/magicnum.pdf + RELOC/doc/latex/oberdiek/magicnum.txt + RELOC/doc/latex/oberdiek/makerobust-example.tex + RELOC/doc/latex/oberdiek/makerobust.pdf + RELOC/doc/latex/oberdiek/mleftright.pdf + RELOC/doc/latex/oberdiek/oberdiek.pdf details="Table of contents of the bundle" + RELOC/doc/latex/oberdiek/pagegrid.pdf + RELOC/doc/latex/oberdiek/pagesel.pdf + RELOC/doc/latex/oberdiek/pdfcol.pdf + RELOC/doc/latex/oberdiek/pdfcolfoot.pdf + RELOC/doc/latex/oberdiek/pdfcolmk.pdf + RELOC/doc/latex/oberdiek/pdfcolparallel.pdf + RELOC/doc/latex/oberdiek/pdfcolparcolumns.pdf + RELOC/doc/latex/oberdiek/pdfcrypt.pdf + RELOC/doc/latex/oberdiek/pdfescape.pdf + RELOC/doc/latex/oberdiek/pdflscape.pdf + RELOC/doc/latex/oberdiek/pdfrender.pdf + RELOC/doc/latex/oberdiek/pdftexcmds.pdf + RELOC/doc/latex/oberdiek/picture-example.tex + RELOC/doc/latex/oberdiek/picture.pdf + RELOC/doc/latex/oberdiek/pmboxdraw.pdf + RELOC/doc/latex/oberdiek/protecteddef.pdf + RELOC/doc/latex/oberdiek/refcount.pdf + RELOC/doc/latex/oberdiek/rerunfilecheck-example.cfg + RELOC/doc/latex/oberdiek/rerunfilecheck.pdf + RELOC/doc/latex/oberdiek/resizegather.pdf + RELOC/doc/latex/oberdiek/rotchiffre.pdf + RELOC/doc/latex/oberdiek/scrindex-example1.tex + RELOC/doc/latex/oberdiek/scrindex-example2.tex + RELOC/doc/latex/oberdiek/scrindex.pdf + RELOC/doc/latex/oberdiek/selinput.pdf + RELOC/doc/latex/oberdiek/setouterhbox-example.tex + RELOC/doc/latex/oberdiek/setouterhbox.pdf + RELOC/doc/latex/oberdiek/settobox-example.tex + RELOC/doc/latex/oberdiek/settobox.pdf + RELOC/doc/latex/oberdiek/soulutf8.pdf + RELOC/doc/latex/oberdiek/stackrel.pdf + RELOC/doc/latex/oberdiek/stampinclude.pdf + RELOC/doc/latex/oberdiek/stringenc.pdf + RELOC/doc/latex/oberdiek/tabularht-example1.tex + RELOC/doc/latex/oberdiek/tabularht-example2.tex + RELOC/doc/latex/oberdiek/tabularht.pdf + RELOC/doc/latex/oberdiek/tabularkv-example.tex + RELOC/doc/latex/oberdiek/tabularkv.pdf + RELOC/doc/latex/oberdiek/telprint.pdf + RELOC/doc/latex/oberdiek/thepdfnumber.pdf + RELOC/doc/latex/oberdiek/transparent-example.tex + RELOC/doc/latex/oberdiek/transparent.pdf + RELOC/doc/latex/oberdiek/twoopt.pdf + RELOC/doc/latex/oberdiek/uniquecounter-example.tex + RELOC/doc/latex/oberdiek/uniquecounter.pdf + RELOC/doc/latex/oberdiek/zref-example-lastpage.tex + RELOC/doc/latex/oberdiek/zref-example-nextpage.tex + RELOC/doc/latex/oberdiek/zref-example.tex + RELOC/doc/latex/oberdiek/zref.pdf +srccontainersize 501712 +srccontainerchecksum a86ee28fd4da386eaac12364a432dceb286d2ce76cd205bafc804bc54ebeeecd5553a62b8704b0ca5388f493b4418eb9cd27bc37f0e3d3339413aa5446c8db25 +srcfiles size=1205 + RELOC/source/latex/oberdiek/accsupp.dtx + RELOC/source/latex/oberdiek/aliascnt.dtx + RELOC/source/latex/oberdiek/alphalph.dtx + RELOC/source/latex/oberdiek/askinclude.dtx + RELOC/source/latex/oberdiek/atbegshi.dtx + RELOC/source/latex/oberdiek/atenddvi.dtx + RELOC/source/latex/oberdiek/attachfile2.dtx + RELOC/source/latex/oberdiek/atveryend.dtx + RELOC/source/latex/oberdiek/auxhook.dtx + RELOC/source/latex/oberdiek/bigintcalc.dtx + RELOC/source/latex/oberdiek/bitset.dtx + RELOC/source/latex/oberdiek/bmpsize.dtx + RELOC/source/latex/oberdiek/bookmark.dtx + RELOC/source/latex/oberdiek/catchfile.dtx + RELOC/source/latex/oberdiek/centernot.dtx + RELOC/source/latex/oberdiek/chemarr.dtx + RELOC/source/latex/oberdiek/classlist.dtx + RELOC/source/latex/oberdiek/colonequals.dtx + RELOC/source/latex/oberdiek/dvipscol.dtx + RELOC/source/latex/oberdiek/embedfile.dtx + RELOC/source/latex/oberdiek/engord.dtx + RELOC/source/latex/oberdiek/enparen.dtx + RELOC/source/latex/oberdiek/eolgrab.dtx + RELOC/source/latex/oberdiek/epstopdf.dtx + RELOC/source/latex/oberdiek/etexcmds.dtx + RELOC/source/latex/oberdiek/fibnum.dtx + RELOC/source/latex/oberdiek/flags.dtx + RELOC/source/latex/oberdiek/gettitlestring.dtx + RELOC/source/latex/oberdiek/grfext.dtx + RELOC/source/latex/oberdiek/grffile.dtx + RELOC/source/latex/oberdiek/hobsub.dtx + RELOC/source/latex/oberdiek/hologo.dtx + RELOC/source/latex/oberdiek/holtxdoc.dtx + RELOC/source/latex/oberdiek/hopatch.dtx + RELOC/source/latex/oberdiek/hycolor.dtx + RELOC/source/latex/oberdiek/hypbmsec.dtx + RELOC/source/latex/oberdiek/hypcap.dtx + RELOC/source/latex/oberdiek/hypdestopt.dtx + RELOC/source/latex/oberdiek/hypdoc.dtx + RELOC/source/latex/oberdiek/hypgotoe.dtx + RELOC/source/latex/oberdiek/hyphsubst.dtx + RELOC/source/latex/oberdiek/ifdraft.dtx + RELOC/source/latex/oberdiek/iflang.dtx + RELOC/source/latex/oberdiek/ifpdf.dtx + RELOC/source/latex/oberdiek/ifvtex.dtx + RELOC/source/latex/oberdiek/infwarerr.dtx + RELOC/source/latex/oberdiek/inputenx.dtx + RELOC/source/latex/oberdiek/intcalc.dtx + RELOC/source/latex/oberdiek/kvdefinekeys.dtx + RELOC/source/latex/oberdiek/kvoptions.dtx + RELOC/source/latex/oberdiek/kvsetkeys.dtx + RELOC/source/latex/oberdiek/letltxmacro.dtx + RELOC/source/latex/oberdiek/listingsutf8.dtx + RELOC/source/latex/oberdiek/ltxcmds.dtx + RELOC/source/latex/oberdiek/luacolor.dtx + RELOC/source/latex/oberdiek/luatex.dtx + RELOC/source/latex/oberdiek/magicnum.dtx + RELOC/source/latex/oberdiek/makerobust.dtx + RELOC/source/latex/oberdiek/mleftright.dtx + RELOC/source/latex/oberdiek/oberdiek.ins + RELOC/source/latex/oberdiek/oberdiek.tex + RELOC/source/latex/oberdiek/pagegrid.dtx + RELOC/source/latex/oberdiek/pagesel.dtx + RELOC/source/latex/oberdiek/pdfcol.dtx + RELOC/source/latex/oberdiek/pdfcolfoot.dtx + RELOC/source/latex/oberdiek/pdfcolmk.dtx + RELOC/source/latex/oberdiek/pdfcolparallel.dtx + RELOC/source/latex/oberdiek/pdfcolparcolumns.dtx + RELOC/source/latex/oberdiek/pdfcrypt.dtx + RELOC/source/latex/oberdiek/pdfescape.dtx + RELOC/source/latex/oberdiek/pdflscape.dtx + RELOC/source/latex/oberdiek/pdfrender.dtx + RELOC/source/latex/oberdiek/pdftexcmds.dtx + RELOC/source/latex/oberdiek/picture.dtx + RELOC/source/latex/oberdiek/pmboxdraw.dtx + RELOC/source/latex/oberdiek/protecteddef.dtx + RELOC/source/latex/oberdiek/readme-ctan.txt + RELOC/source/latex/oberdiek/refcount.dtx + RELOC/source/latex/oberdiek/rerunfilecheck.dtx + RELOC/source/latex/oberdiek/resizegather.dtx + RELOC/source/latex/oberdiek/rotchiffre.dtx + RELOC/source/latex/oberdiek/scrindex.dtx + RELOC/source/latex/oberdiek/selinput.dtx + RELOC/source/latex/oberdiek/setouterhbox.dtx + RELOC/source/latex/oberdiek/settobox.dtx + RELOC/source/latex/oberdiek/soulutf8.dtx + RELOC/source/latex/oberdiek/stackrel.dtx + RELOC/source/latex/oberdiek/stampinclude.dtx + RELOC/source/latex/oberdiek/stringenc.dtx + RELOC/source/latex/oberdiek/tabularht.dtx + RELOC/source/latex/oberdiek/tabularkv.dtx + RELOC/source/latex/oberdiek/telprint.dtx + RELOC/source/latex/oberdiek/thepdfnumber.dtx + RELOC/source/latex/oberdiek/transparent.dtx + RELOC/source/latex/oberdiek/twoopt.dtx + RELOC/source/latex/oberdiek/uniquecounter.dtx + RELOC/source/latex/oberdiek/zref.dtx +runfiles size=699 + RELOC/bibtex/bib/oberdiek/oberdiek-bundle.bib + RELOC/bibtex/bib/oberdiek/oberdiek-source.bib + RELOC/scripts/oberdiek/luacolor.lua + RELOC/scripts/oberdiek/magicnum.lua + RELOC/scripts/oberdiek/oberdiek.luatex.lua + RELOC/scripts/oberdiek/oberdiek.magicnum.lua + RELOC/scripts/oberdiek/oberdiek.pdftexcmds.lua + RELOC/scripts/oberdiek/pdfatfi.pl + RELOC/scripts/oberdiek/pdftexcmds.lua + RELOC/tex/generic/oberdiek/alphalph.sty + RELOC/tex/generic/oberdiek/atbegshi.sty + RELOC/tex/generic/oberdiek/bigintcalc.sty + RELOC/tex/generic/oberdiek/bitset.sty + RELOC/tex/generic/oberdiek/catchfile.sty + RELOC/tex/generic/oberdiek/embedfile.sty + RELOC/tex/generic/oberdiek/engord.sty + RELOC/tex/generic/oberdiek/eolgrab.sty + RELOC/tex/generic/oberdiek/etexcmds.sty + RELOC/tex/generic/oberdiek/fibnum.sty + RELOC/tex/generic/oberdiek/gettitlestring.sty + RELOC/tex/generic/oberdiek/hobsub-generic.sty + RELOC/tex/generic/oberdiek/hobsub-hyperref.sty + RELOC/tex/generic/oberdiek/hobsub.sty + RELOC/tex/generic/oberdiek/hologo.sty + RELOC/tex/generic/oberdiek/hyphsubst.sty + RELOC/tex/generic/oberdiek/iflang.sty + RELOC/tex/generic/oberdiek/ifpdf.sty + RELOC/tex/generic/oberdiek/ifvtex.sty + RELOC/tex/generic/oberdiek/infwarerr.sty + RELOC/tex/generic/oberdiek/intcalc.sty + RELOC/tex/generic/oberdiek/kvdefinekeys.sty + RELOC/tex/generic/oberdiek/kvsetkeys.sty + RELOC/tex/generic/oberdiek/ltxcmds.sty + RELOC/tex/generic/oberdiek/luatex-loader.sty + RELOC/tex/generic/oberdiek/luatex.sty + RELOC/tex/generic/oberdiek/magicnum.sty + RELOC/tex/generic/oberdiek/mleftright.sty + RELOC/tex/generic/oberdiek/pdfcol.sty + RELOC/tex/generic/oberdiek/pdfcrypt.sty + RELOC/tex/generic/oberdiek/pdfescape.sty + RELOC/tex/generic/oberdiek/pdfrender.sty + RELOC/tex/generic/oberdiek/pdftexcmds.sty + RELOC/tex/generic/oberdiek/protecteddef.sty + RELOC/tex/generic/oberdiek/rotchiffre.sty + RELOC/tex/generic/oberdiek/se-ascii-print.def + RELOC/tex/generic/oberdiek/se-ascii.def + RELOC/tex/generic/oberdiek/se-clean7bit.def + RELOC/tex/generic/oberdiek/se-cp1250.def + RELOC/tex/generic/oberdiek/se-cp1251.def + RELOC/tex/generic/oberdiek/se-cp1252.def + RELOC/tex/generic/oberdiek/se-cp1257.def + RELOC/tex/generic/oberdiek/se-cp437.def + RELOC/tex/generic/oberdiek/se-cp850.def + RELOC/tex/generic/oberdiek/se-cp852.def + RELOC/tex/generic/oberdiek/se-cp855.def + RELOC/tex/generic/oberdiek/se-cp858.def + RELOC/tex/generic/oberdiek/se-cp865.def + RELOC/tex/generic/oberdiek/se-cp866.def + RELOC/tex/generic/oberdiek/se-dec-mcs.def + RELOC/tex/generic/oberdiek/se-iso-8859-1.def + RELOC/tex/generic/oberdiek/se-iso-8859-10.def + RELOC/tex/generic/oberdiek/se-iso-8859-11.def + RELOC/tex/generic/oberdiek/se-iso-8859-13.def + RELOC/tex/generic/oberdiek/se-iso-8859-14.def + RELOC/tex/generic/oberdiek/se-iso-8859-15.def + RELOC/tex/generic/oberdiek/se-iso-8859-16.def + RELOC/tex/generic/oberdiek/se-iso-8859-2.def + RELOC/tex/generic/oberdiek/se-iso-8859-3.def + RELOC/tex/generic/oberdiek/se-iso-8859-4.def + RELOC/tex/generic/oberdiek/se-iso-8859-5.def + RELOC/tex/generic/oberdiek/se-iso-8859-6.def + RELOC/tex/generic/oberdiek/se-iso-8859-7.def + RELOC/tex/generic/oberdiek/se-iso-8859-8.def + RELOC/tex/generic/oberdiek/se-iso-8859-9.def + RELOC/tex/generic/oberdiek/se-koi8-r.def + RELOC/tex/generic/oberdiek/se-mac-centeuro.def + RELOC/tex/generic/oberdiek/se-mac-cyrillic.def + RELOC/tex/generic/oberdiek/se-mac-roman.def + RELOC/tex/generic/oberdiek/se-nextstep.def + RELOC/tex/generic/oberdiek/se-pdfdoc.def + RELOC/tex/generic/oberdiek/se-utf16le.def + RELOC/tex/generic/oberdiek/se-utf32be.def + RELOC/tex/generic/oberdiek/se-utf32le.def + RELOC/tex/generic/oberdiek/se-utf8.def + RELOC/tex/generic/oberdiek/setouterhbox.sty + RELOC/tex/generic/oberdiek/soulutf8.sty + RELOC/tex/generic/oberdiek/stringenc.sty + RELOC/tex/generic/oberdiek/telprint.sty + RELOC/tex/generic/oberdiek/thepdfnumber.sty + RELOC/tex/generic/oberdiek/uniquecounter.sty + RELOC/tex/latex/oberdiek/accsupp-dvipdfm.def + RELOC/tex/latex/oberdiek/accsupp-dvips.def + RELOC/tex/latex/oberdiek/accsupp-luatex.def + RELOC/tex/latex/oberdiek/accsupp-pdftex.def + RELOC/tex/latex/oberdiek/accsupp.sty + RELOC/tex/latex/oberdiek/aliascnt.sty + RELOC/tex/latex/oberdiek/askinclude.sty + RELOC/tex/latex/oberdiek/atenddvi.sty + RELOC/tex/latex/oberdiek/atfi-dvipdfmx.def + RELOC/tex/latex/oberdiek/atfi-dvips.def + RELOC/tex/latex/oberdiek/atfi-pdftex.def + RELOC/tex/latex/oberdiek/attachfile2.sty + RELOC/tex/latex/oberdiek/atveryend.sty + RELOC/tex/latex/oberdiek/auxhook.sty + RELOC/tex/latex/oberdiek/bkm-dvipdfm.def + RELOC/tex/latex/oberdiek/bkm-dvips.def + RELOC/tex/latex/oberdiek/bkm-dvipsone.def + RELOC/tex/latex/oberdiek/bkm-pdftex.def + RELOC/tex/latex/oberdiek/bkm-textures.def + RELOC/tex/latex/oberdiek/bkm-vtex.def + RELOC/tex/latex/oberdiek/bmpsize-base.sty + RELOC/tex/latex/oberdiek/bmpsize-dvipdfm.def + RELOC/tex/latex/oberdiek/bmpsize-dvipdfmx.def + RELOC/tex/latex/oberdiek/bmpsize-dvips.def + RELOC/tex/latex/oberdiek/bmpsize-test.tex + RELOC/tex/latex/oberdiek/bmpsize.sty + RELOC/tex/latex/oberdiek/bookmark.sty + RELOC/tex/latex/oberdiek/centernot.sty + RELOC/tex/latex/oberdiek/chemarr.sty + RELOC/tex/latex/oberdiek/classlist.sty + RELOC/tex/latex/oberdiek/colonequals.sty + RELOC/tex/latex/oberdiek/dtx-attach.sty + RELOC/tex/latex/oberdiek/dvipscol.sty + RELOC/tex/latex/oberdiek/enparen.sty + RELOC/tex/latex/oberdiek/epstopdf-base.sty + RELOC/tex/latex/oberdiek/epstopdf.sty + RELOC/tex/latex/oberdiek/flags.sty + RELOC/tex/latex/oberdiek/grfext.sty + RELOC/tex/latex/oberdiek/grffile.sty + RELOC/tex/latex/oberdiek/holtxdoc.sty + RELOC/tex/latex/oberdiek/hopatch.sty + RELOC/tex/latex/oberdiek/hycolor.sty + RELOC/tex/latex/oberdiek/hypbmsec.sty + RELOC/tex/latex/oberdiek/hypcap.sty + RELOC/tex/latex/oberdiek/hypdestopt.sty + RELOC/tex/latex/oberdiek/hypdoc.sty + RELOC/tex/latex/oberdiek/hypgotoe.sty + RELOC/tex/latex/oberdiek/ifdraft.sty + RELOC/tex/latex/oberdiek/inputenx.sty + RELOC/tex/latex/oberdiek/ix-alias.def + RELOC/tex/latex/oberdiek/ix-math.def + RELOC/tex/latex/oberdiek/ix-name.def + RELOC/tex/latex/oberdiek/ix-slot.def + RELOC/tex/latex/oberdiek/ix-uc.def + RELOC/tex/latex/oberdiek/ix-utf8enc.dfu + RELOC/tex/latex/oberdiek/kvoptions-patch.sty + RELOC/tex/latex/oberdiek/kvoptions.sty + RELOC/tex/latex/oberdiek/letltxmacro.sty + RELOC/tex/latex/oberdiek/listingsutf8.sty + RELOC/tex/latex/oberdiek/luacolor.sty + RELOC/tex/latex/oberdiek/makerobust.sty + RELOC/tex/latex/oberdiek/pagegrid.sty + RELOC/tex/latex/oberdiek/pagesel.sty + RELOC/tex/latex/oberdiek/pdfcolfoot.sty + RELOC/tex/latex/oberdiek/pdfcolmk.sty + RELOC/tex/latex/oberdiek/pdfcolparallel.sty + RELOC/tex/latex/oberdiek/pdfcolparcolumns.sty + RELOC/tex/latex/oberdiek/pdflscape.sty + RELOC/tex/latex/oberdiek/picture.sty + RELOC/tex/latex/oberdiek/pmboxdraw.sty + RELOC/tex/latex/oberdiek/pmboxdrawenc.dfu + RELOC/tex/latex/oberdiek/refcount.sty + RELOC/tex/latex/oberdiek/rerunfilecheck.sty + RELOC/tex/latex/oberdiek/resizegather.sty + RELOC/tex/latex/oberdiek/scrindex.sty + RELOC/tex/latex/oberdiek/selinput.sty + RELOC/tex/latex/oberdiek/settobox.sty + RELOC/tex/latex/oberdiek/stackrel.sty + RELOC/tex/latex/oberdiek/stampinclude.sty + RELOC/tex/latex/oberdiek/tabularht.sty + RELOC/tex/latex/oberdiek/tabularkv.sty + RELOC/tex/latex/oberdiek/transparent.sty + RELOC/tex/latex/oberdiek/twoopt.sty + RELOC/tex/latex/oberdiek/x-ascii.def + RELOC/tex/latex/oberdiek/x-atarist.def + RELOC/tex/latex/oberdiek/x-cp1250.def + RELOC/tex/latex/oberdiek/x-cp1251.def + RELOC/tex/latex/oberdiek/x-cp1252.def + RELOC/tex/latex/oberdiek/x-cp1255.def + RELOC/tex/latex/oberdiek/x-cp1257.def + RELOC/tex/latex/oberdiek/x-cp437.def + RELOC/tex/latex/oberdiek/x-cp850.def + RELOC/tex/latex/oberdiek/x-cp852.def + RELOC/tex/latex/oberdiek/x-cp855.def + RELOC/tex/latex/oberdiek/x-cp858.def + RELOC/tex/latex/oberdiek/x-cp865.def + RELOC/tex/latex/oberdiek/x-cp866.def + RELOC/tex/latex/oberdiek/x-dec-mcs.def + RELOC/tex/latex/oberdiek/x-iso-8859-1.def + RELOC/tex/latex/oberdiek/x-iso-8859-10.def + RELOC/tex/latex/oberdiek/x-iso-8859-13.def + RELOC/tex/latex/oberdiek/x-iso-8859-14.def + RELOC/tex/latex/oberdiek/x-iso-8859-15.def + RELOC/tex/latex/oberdiek/x-iso-8859-16.def + RELOC/tex/latex/oberdiek/x-iso-8859-2.def + RELOC/tex/latex/oberdiek/x-iso-8859-3.def + RELOC/tex/latex/oberdiek/x-iso-8859-4.def + RELOC/tex/latex/oberdiek/x-iso-8859-5.def + RELOC/tex/latex/oberdiek/x-iso-8859-8.def + RELOC/tex/latex/oberdiek/x-iso-8859-9.def + RELOC/tex/latex/oberdiek/x-koi8-r.def + RELOC/tex/latex/oberdiek/x-mac-centeuro.def + RELOC/tex/latex/oberdiek/x-mac-cyrillic.def + RELOC/tex/latex/oberdiek/x-mac-roman.def + RELOC/tex/latex/oberdiek/x-nextstep.def + RELOC/tex/latex/oberdiek/x-verbatim.def + RELOC/tex/latex/oberdiek/xcolor-patch.sty + RELOC/tex/latex/oberdiek/zref-abspage.sty + RELOC/tex/latex/oberdiek/zref-abspos.sty + RELOC/tex/latex/oberdiek/zref-base.sty + RELOC/tex/latex/oberdiek/zref-counter.sty + RELOC/tex/latex/oberdiek/zref-dotfill.sty + RELOC/tex/latex/oberdiek/zref-env.sty + RELOC/tex/latex/oberdiek/zref-hyperref.sty + RELOC/tex/latex/oberdiek/zref-lastpage.sty + RELOC/tex/latex/oberdiek/zref-marks.sty + RELOC/tex/latex/oberdiek/zref-nextpage.sty + RELOC/tex/latex/oberdiek/zref-pageattr.sty + RELOC/tex/latex/oberdiek/zref-pagelayout.sty + RELOC/tex/latex/oberdiek/zref-perpage.sty + RELOC/tex/latex/oberdiek/zref-runs.sty + RELOC/tex/latex/oberdiek/zref-savepos.sty + RELOC/tex/latex/oberdiek/zref-thepage.sty + RELOC/tex/latex/oberdiek/zref-titleref.sty + RELOC/tex/latex/oberdiek/zref-totpages.sty + RELOC/tex/latex/oberdiek/zref-user.sty + RELOC/tex/latex/oberdiek/zref-xr.sty + RELOC/tex/latex/oberdiek/zref.sty +catalogue-contact-bugs https://github.com/ho-tex/oberdiek/issues +catalogue-contact-repository https://github.com/ho-tex/oberdiek +catalogue-ctan /macros/latex/contrib/oberdiek +catalogue-date 2018-12-01 05:57:03 +0100 +catalogue-license lppl1.3 +catalogue-topics collection + +name objectz +category Package +revision 19389 +shortdesc Macros for typesetting Object Z +relocated 1 +longdesc The package will typeset both Z and Object-Z specifications; it +longdesc develops the original zed package +containersize 9788 +containerchecksum e98bb9208838b8e55d9fe793af3eb6439aff2809067878051a9849cf483a42e612ca7c9a43a86520e582161b1a9f575e4e7a5f4bf7bbcabbbbdb314595c58fd7 +doccontainersize 261448 +doccontainerchecksum afcb2681f0983c345ddcf4cd484d337461a53af27f6d5467b12a5368f6ce3974b9d54cdd77365995e7268895f4f0edbb814a4f4e61e4cee947f6ea49c8381d85 +docfiles size=87 + RELOC/doc/latex/objectz/catalog + RELOC/doc/latex/objectz/makefile + RELOC/doc/latex/objectz/manifest + RELOC/doc/latex/objectz/ozguide.pdf details="Package documentation" + RELOC/doc/latex/objectz/ozguide.tex + RELOC/doc/latex/objectz/oztest.tex + RELOC/doc/latex/objectz/readme details="Readme" +srccontainersize 15088 +srccontainerchecksum c2bd789d5acb1174aeb50cd3eace6ab67d0074adcdb8c00d6ec0581be096a931a5f9a666630e96abd30dda31a418eb7b9e6e0f06c3d93eecbc7a287c4a7e61b3 +srcfiles size=15 + RELOC/source/latex/objectz/oz.dtx + RELOC/source/latex/objectz/oz.ins +runfiles size=10 + RELOC/tex/latex/objectz/oz.sty +catalogue-also zed-csp +catalogue-contact-home http://www.itee.uq.edu.au/~smith/objectz.html +catalogue-ctan /macros/latex/contrib/objectz +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl +catalogue-topics formal-spec + +name obnov +category Package +revision 33355 +shortdesc Obyknovennaya Novaya fonts +relocated 1 +longdesc The Obyknovennaya Novaya (Ordinary New Face) typeface was +longdesc widely used in the USSR for scientific and technical +longdesc publications, as well as textbooks. The fonts are encoded to +longdesc KOI8-R (which is a long-established Russian font encoding, +longdesc rather than a TeX/LaTeX encoding). To use the fonts, the user +longdesc needs Cyrillic font support. +containersize 58304 +containerchecksum 8adb7a1e6183576b4ed9d709b2f64cc778217602c807fce0daaa62b59786d5629fded5e7ad4824cdee90ad5333b9fff4fd47d462e38005fcd1026af8838f04ed +doccontainersize 808596 +doccontainerchecksum 6fca30705b614ede4e055a39b92deac91daa6e9ca0922725f29c801e58b4a1ddc7176148b03de147aa906289962a3ff45a743828c0636d7f8fa3279b88e5103a +docfiles size=347 + RELOC/doc/fonts/obnov/README details="Readme" + RELOC/doc/fonts/obnov/example_obn.pdf details="Font samples" + RELOC/doc/fonts/obnov/example_obn.tex +runfiles size=680 + RELOC/fonts/source/public/obnov/obn10.mf + RELOC/fonts/source/public/obnov/obn12.mf + RELOC/fonts/source/public/obnov/obn17.mf + RELOC/fonts/source/public/obnov/obn7.mf + RELOC/fonts/source/public/obnov/obn_lcyw_code.mf + RELOC/fonts/source/public/obnov/obnb10.mf + RELOC/fonts/source/public/obnov/obnb12.mf + RELOC/fonts/source/public/obnov/obnb17.mf + RELOC/fonts/source/public/obnov/obnb7.mf + RELOC/fonts/source/public/obnov/obnit10.mf + RELOC/fonts/source/public/obnov/obnit12.mf + RELOC/fonts/source/public/obnov/obnit17.mf + RELOC/fonts/source/public/obnov/obnit7.mf + RELOC/fonts/source/public/obnov/obnitb10.mf + RELOC/fonts/source/public/obnov/obnitb12.mf + RELOC/fonts/source/public/obnov/obnitb17.mf + RELOC/fonts/source/public/obnov/obnsc10.mf + RELOC/fonts/source/public/obnov/obnsc12.mf + RELOC/fonts/source/public/obnov/obnsc17.mf + RELOC/fonts/source/public/obnov/obnsc7.mf + RELOC/fonts/source/public/obnov/obnsl10.mf + RELOC/fonts/source/public/obnov/obnsl12.mf + RELOC/fonts/source/public/obnov/obnsl17.mf + RELOC/fonts/source/public/obnov/obnsl7.mf + RELOC/fonts/tfm/public/obnov/obn10.tfm + RELOC/fonts/tfm/public/obnov/obn12.tfm + RELOC/fonts/tfm/public/obnov/obn17.tfm + RELOC/fonts/tfm/public/obnov/obn7.tfm + RELOC/fonts/tfm/public/obnov/obnb10.tfm + RELOC/fonts/tfm/public/obnov/obnb12.tfm + RELOC/fonts/tfm/public/obnov/obnb17.tfm + RELOC/fonts/tfm/public/obnov/obnb7.tfm + RELOC/fonts/tfm/public/obnov/obnit10.tfm + RELOC/fonts/tfm/public/obnov/obnit12.tfm + RELOC/fonts/tfm/public/obnov/obnit17.tfm + RELOC/fonts/tfm/public/obnov/obnit7.tfm + RELOC/fonts/tfm/public/obnov/obnitb10.tfm + RELOC/fonts/tfm/public/obnov/obnitb12.tfm + RELOC/fonts/tfm/public/obnov/obnitb17.tfm + RELOC/fonts/tfm/public/obnov/obnsc10.tfm + RELOC/fonts/tfm/public/obnov/obnsc12.tfm + RELOC/fonts/tfm/public/obnov/obnsc17.tfm + RELOC/fonts/tfm/public/obnov/obnsc7.tfm + RELOC/fonts/tfm/public/obnov/obnsl10.tfm + RELOC/fonts/tfm/public/obnov/obnsl12.tfm + RELOC/fonts/tfm/public/obnov/obnsl17.tfm + RELOC/fonts/tfm/public/obnov/obnsl7.tfm + RELOC/tex/latex/obnov/lcyw.cmap + RELOC/tex/latex/obnov/lcywobn.fd +catalogue-ctan /fonts/obnov +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font font-mf font-cyrillic cyrillic +catalogue-version 0.11 + +name ocg-p +category Package +revision 28803 +shortdesc PDF OCG support in LaTeX +relocated 1 +longdesc The package provides OCG (Optional Content Groups) support +longdesc within a PDF document, replacing the ocg.sty distributed with +longdesc asymptote. Nested OCGs are supported. The package may be used +longdesc with pdfLaTeX and XeLaTeX. +containersize 4368 +containerchecksum 23b0b4377ec615d8d334d09018629f524a775311c3d227b350e7dfe95c6154795d1d3e44e7e1e405d45b623ecc614892d0996631615efae2ad6f040c1c4d8dd0 +doccontainersize 499988 +doccontainerchecksum c51169bf3398b17f3dfd2e0aa0efb574cedf40c4739f1b4693f9282042fe9f024dd48675bdf5ec04895c49e0583ac436bfb36e12ac51ce89bc23ac587b3f92f7 +docfiles size=187 + RELOC/doc/latex/ocg-p/README details="Readme" + RELOC/doc/latex/ocg-p/examples/ocg-p_example_1.pdf + RELOC/doc/latex/ocg-p/examples/ocg-p_example_1.tex + RELOC/doc/latex/ocg-p/examples/ocg-p_example_2.pdf + RELOC/doc/latex/ocg-p/examples/ocg-p_example_2.tex + RELOC/doc/latex/ocg-p/examples/ocg-p_example_3.pdf + RELOC/doc/latex/ocg-p/examples/ocg-p_example_3.tex + RELOC/doc/latex/ocg-p/examples/ocg-p_example_4.pdf + RELOC/doc/latex/ocg-p/examples/ocg-p_example_4.tex + RELOC/doc/latex/ocg-p/ocg-p.pdf details="Package documentation" + RELOC/doc/latex/ocg-p/ocg-p.tex +runfiles size=4 + RELOC/tex/latex/ocg-p/ocg-p.sty +catalogue-ctan /macros/latex/contrib/ocg-p +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics pdf-feat +catalogue-version 0.4 + +name ocgx +category Package +revision 28492 +shortdesc Use OCGs within a PDF document without JavaScript +relocated 1 +longdesc The package extends the ocg package, which allows you to create +longdesc OCGs (Optional Content Groups) in PDF documents. (The ocg +longdesc package is distributed as part of Asymptote.) Every OCG +longdesc includes TeX material into a layer of the PDF file. Each of +longdesc these layers can be displayed or not. Links can enable or +longdesc disable the display of OCGs. The ocgx package does not use +longdesc Javascript embedded in the PDF document to enable (to show) or +longdesc disable (to hide) OCGs. +containersize 2120 +containerchecksum 5e8e27f2ad058f30431a78d006869d4448fcb722c6b86a306505afc54a4e39e9136980affad1267da479bb175b8608d093ea531f85302e1c4f450ee93451ac33 +doccontainersize 991560 +doccontainerchecksum 62dd19282c5ff9b030b1caa8a779590f46aae1bafeb4ecb90195e2e0469669c21e130408fdcf855a0a0859100d04cd7b3494ce60bc21e32ea5c3c6fc162ea69e +docfiles size=253 + RELOC/doc/latex/ocgx/README details="Readme" + RELOC/doc/latex/ocgx/demo-ocgx.pdf details="Package demo" + RELOC/doc/latex/ocgx/ocgx-manual-en.pdf details="Package documentation" +srccontainersize 7776 +srccontainerchecksum 3abfd38cb39915bb6a1a5610c5d760174cf0caa7de99b8f975f8084f01579a2211c45ceb0912b84f9ab09d26ad091801869c11f393d1b59eacbb133dbd6b1603 +srcfiles size=9 + RELOC/source/latex/ocgx/demo-ocgx.tex + RELOC/source/latex/ocgx/ocgx-example-1.tex + RELOC/source/latex/ocgx/ocgx-manual-en.tex +runfiles size=2 + RELOC/tex/latex/ocgx/ocgx.sty + RELOC/tex/latex/ocgx/tikzlibraryocgx.code.tex +catalogue-also asymptote +catalogue-ctan /macros/latex/contrib/ocgx +catalogue-date 2016-12-28 10:23:26 +0100 +catalogue-license lppllppl +catalogue-topics pdf-feat +catalogue-version 0.5 + +name ocgx2 +category Package +revision 49580 +shortdesc Drop-in replacement for 'ocgx' and 'ocg-p' +relocated 1 +longdesc This package serves as a drop-in replacement for the packages +longdesc ocgx by Paul Gaborit and ocg-p by Werner Moshammer for the +longdesc creation of PDF Layers. It re-implements the functionality of +longdesc the ocg, ocgx, and ocg-p packages and adds support for all +longdesc known engines and back-ends including: LaTeX - dvips - +longdesc ps2pdf/Distiller (Xe)LaTeX(x) - dvipdfmx pdfLaTeX and LuaLaTeX +longdesc . It also ensures compatibility with the media9 and animate +longdesc packages. +containersize 11024 +containerchecksum 9b2772ca8d89b6fc184ed3645c72135e56b1bf64e7bd19ad37408b337abbc50fad58746017948f3bc7624aeecfb1b2c45934ee6c0bbfecdf3b72f9c23bde23ad +doccontainersize 4564 +doccontainerchecksum 6991761492b7ffd0d5f1609cd8a745342acc8520678845a7bc8b290589b478b18a1fbe3c46904bed15737f619d11ff266babfbf5702395cc89df335061fca64b +docfiles size=4 + RELOC/doc/latex/ocgx2/ChangeLog + RELOC/doc/latex/ocgx2/README.txt +runfiles size=15 + RELOC/tex/latex/ocgx2/fixocgx.sty + RELOC/tex/latex/ocgx2/ocgbase.sty + RELOC/tex/latex/ocgx2/ocgx2.sty +catalogue-also ocgx ocg-p +catalogue-contact-repository https://gitlab.com/agrahn/ocgx2 +catalogue-ctan /macros/latex/contrib/ocgx2 +catalogue-date 2019-01-02 18:29:33 +0100 +catalogue-license lppl +catalogue-topics pdf-feat adobe-distiller expl3 +catalogue-version 0.40 + +name ocherokee +category Package +revision 25689 +shortdesc LaTeX Support for the Cherokee language +relocated 1 +longdesc Macros and Type 1 fonts for Typesetting the Cherokee language +longdesc with the Omega version of LaTeX (known as Lambda). +execute addMap cherokee.map +containersize 70964 +containerchecksum 9638c408e96fa861d395881d1bac87b55048a25de61561823242d78f836522205c9621f5a01bbb5ad1c8390230dac727b4fae333c22966a04ff5df1f923b5909 +doccontainersize 53440 +doccontainerchecksum 40bb5e47b2ac627007d349c0b043f299f09321aa0d6fc11ad9f345576fd7a902be4d012d56ceede9e66c8a5972828e7b5a5646c101c08fd28fa3ab1c935f8256 +docfiles size=19 + RELOC/doc/omega/ocherokee/READ.ME + RELOC/doc/omega/ocherokee/cherokee.pdf details="Package documentation" + RELOC/doc/omega/ocherokee/chief.tex + RELOC/doc/omega/ocherokee/proverb.tex +runfiles size=96 + RELOC/fonts/afm/public/ocherokee/Cherokee-Bold.afm + RELOC/fonts/afm/public/ocherokee/Cherokee.afm + RELOC/fonts/map/dvips/ocherokee/cherokee.map + RELOC/fonts/ofm/public/ocherokee/OCherokee.ofm + RELOC/fonts/ofm/public/ocherokee/OCherokeeb.ofm + RELOC/fonts/ofm/public/ocherokee/OCherokeebo.ofm + RELOC/fonts/ofm/public/ocherokee/OCherokeeo.ofm + RELOC/fonts/ovf/public/ocherokee/OCherokee.ovf + RELOC/fonts/ovf/public/ocherokee/OCherokeeb.ovf + RELOC/fonts/ovf/public/ocherokee/OCherokeebo.ovf + RELOC/fonts/ovf/public/ocherokee/OCherokeeo.ovf + RELOC/fonts/ovp/public/ocherokee/OCherokee.ovp + RELOC/fonts/ovp/public/ocherokee/OCherokeeb.ovp + RELOC/fonts/ovp/public/ocherokee/OCherokeebo.ovp + RELOC/fonts/ovp/public/ocherokee/OCherokeeo.ovp + RELOC/fonts/tfm/public/ocherokee/Cherokee.tfm + RELOC/fonts/tfm/public/ocherokee/Cherokeeb.tfm + RELOC/fonts/tfm/public/ocherokee/Cherokeebo.tfm + RELOC/fonts/tfm/public/ocherokee/Cherokeeo.tfm + RELOC/fonts/type1/public/ocherokee/Cherokee-Bold.pfb + RELOC/fonts/type1/public/ocherokee/Cherokee.pfb + RELOC/omega/ocp/ocherokee/cher2uni.ocp + RELOC/omega/otp/ocherokee/cher2uni.otp + RELOC/tex/lambda/ocherokee/lchcmr.fd + RELOC/tex/lambda/ocherokee/lchenc.def + RELOC/tex/lambda/ocherokee/ocherokee.sty +catalogue-also omega +catalogue-ctan /language/cherokee/ocherokee +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics cherokee omega + +name ocr-b +category Package +revision 20852 +shortdesc Fonts for OCR-B +relocated 1 +longdesc Metafont source for OCR-B at several sizes. +containersize 10164 +containerchecksum 30b658802a2a30776cef18c2ea0f1a71044b5b7819c75ec58df9acc04134cf1aaf85b97f93231d439d79c47f66d7bc57b43494aca073871ec3479ae70178fc58 +doccontainersize 1352 +doccontainerchecksum 6d162b10b558a9db8269b2535ac9df4f76973c54d7e23dea20efb29974b839278888fceab2da85f945da483415bbbafc614c8ae4c1cea6d262d6a46dea5b69a2 +docfiles size=1 + RELOC/doc/fonts/ocr-b/README details="Readme" +runfiles size=28 + RELOC/fonts/source/public/ocr-b/ocrb10.mf + RELOC/fonts/source/public/ocr-b/ocrb10e.mf + RELOC/fonts/source/public/ocr-b/ocrb10f.mf + RELOC/fonts/source/public/ocr-b/ocrb10g.mf + RELOC/fonts/source/public/ocr-b/ocrb10l.mf + RELOC/fonts/source/public/ocr-b/ocrb10s.mf + RELOC/fonts/source/public/ocr-b/ocrb10x.mf + RELOC/fonts/source/public/ocr-b/ocrb5.mf + RELOC/fonts/source/public/ocr-b/ocrb6.mf + RELOC/fonts/source/public/ocr-b/ocrb7.mf + RELOC/fonts/source/public/ocr-b/ocrb8.mf + RELOC/fonts/source/public/ocr-b/ocrb9.mf + RELOC/fonts/source/public/ocr-b/ocrbdef.mf + RELOC/fonts/source/public/ocr-b/ocrbmac.mf + RELOC/fonts/tfm/public/ocr-b/ocrb10.tfm + RELOC/fonts/tfm/public/ocr-b/ocrb5.tfm + RELOC/fonts/tfm/public/ocr-b/ocrb6.tfm + RELOC/fonts/tfm/public/ocr-b/ocrb7.tfm + RELOC/fonts/tfm/public/ocr-b/ocrb8.tfm + RELOC/fonts/tfm/public/ocr-b/ocrb9.tfm +catalogue-ctan /fonts/ocr-b +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license other-free +catalogue-topics font font-specialist font-mf + +name ocr-b-outline +category Package +revision 20969 +shortdesc OCR-B fonts in Type 1 and OpenType +relocated 1 +longdesc The package contains OCR-B fonts in Type1 and OpenType formats. +longdesc They were generated from the Metafont sources of the OCR-B +longdesc fonts. The metric files are not included here, so that original +longdesc ocr-b package should also be installed. +execute addMap ocrb.map +containersize 242544 +containerchecksum ac15acebab9c9f81f0e7786cb3222b336aae3fa4a379592d5fa231e145cfcab536e28c9078ac617bf9b8b672f6dd24b30caa998242ba1e3f4633873ae8d54609 +doccontainersize 1124 +doccontainerchecksum 7bafe00b9c5d846f21cac682d9577ffe696eb54a55f4bee9314646451fec37d883eca7531f594a7994fa8038f7bb5c78a55dd8a8264255a6e60ff90929596d00 +docfiles size=2 + RELOC/doc/fonts/ocr-b-outline/README details="Readme" + RELOC/doc/fonts/ocr-b-outline/xe-test.tex +srccontainersize 32724 +srccontainerchecksum b2fa5f4561a4fe61c216e800fcb47bf99a09a62d41d62e30669753139484b58b137649248ec152f7631461c54ab4e51873f3c7a42d43ccf2db86d3cd21d3493f +srcfiles size=174 + RELOC/source/fonts/ocr-b-outline/ocrb10.sfd + RELOC/source/fonts/ocr-b-outline/ocrb5.sfd + RELOC/source/fonts/ocr-b-outline/ocrb6.sfd + RELOC/source/fonts/ocr-b-outline/ocrb7.sfd + RELOC/source/fonts/ocr-b-outline/ocrb8.sfd + RELOC/source/fonts/ocr-b-outline/ocrb9.sfd +runfiles size=103 + RELOC/fonts/map/dvips/ocr-b-outline/ocrb.map + RELOC/fonts/opentype/public/ocr-b-outline/ocrb10.otf + RELOC/fonts/opentype/public/ocr-b-outline/ocrb5.otf + RELOC/fonts/opentype/public/ocr-b-outline/ocrb6.otf + RELOC/fonts/opentype/public/ocr-b-outline/ocrb7.otf + RELOC/fonts/opentype/public/ocr-b-outline/ocrb8.otf + RELOC/fonts/opentype/public/ocr-b-outline/ocrb9.otf + RELOC/fonts/type1/public/ocr-b-outline/ocrb10.pfb + RELOC/fonts/type1/public/ocr-b-outline/ocrb5.pfb + RELOC/fonts/type1/public/ocr-b-outline/ocrb6.pfb + RELOC/fonts/type1/public/ocr-b-outline/ocrb7.pfb + RELOC/fonts/type1/public/ocr-b-outline/ocrb8.pfb + RELOC/fonts/type1/public/ocr-b-outline/ocrb9.pfb +catalogue-ctan /fonts/ocr-b-outline +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics font font-specialist font-type1 font-otf + +name ocr-latex +category Package +revision 15878 +shortdesc LaTeX support for ocr fonts +relocated 1 +longdesc The package supports use of both ocr-a and ocr-b fonts in LaTeX +longdesc documents. +containersize 1752 +containerchecksum d6a4377f66293f8f7ad8b7f8fe3a3a3dd294a302dabb33e193921882d6681fc1c5537b8de2bb188396139bbdd33f14d4f1c20f6edf44ce680df837b250ee83b4 +doccontainersize 172760 +doccontainerchecksum d0de99d5cf93517f5be8627d649a1d8018766cbba44c40cfbe0f93a3b69c1a5f10b4057dd79194d148030948509a26ef45ea83208c2922cc64b10473d663d591 +docfiles size=48 + RELOC/doc/latex/ocr-latex/README + RELOC/doc/latex/ocr-latex/ocr.pdf details="Package documentation" + RELOC/doc/latex/ocr-latex/ocr.tex +runfiles size=8 + RELOC/tex/latex/ocr-latex/ocr.sty + RELOC/tex/latex/ocr-latex/ot1oca.fd + RELOC/tex/latex/ocr-latex/ot1ocra.fd + RELOC/tex/latex/ocr-latex/ot1ocrb.fd + RELOC/tex/latex/ocr-latex/ot1ocrbn.fd + RELOC/tex/latex/ocr-latex/ot1ocrbns.fd + RELOC/tex/latex/ocr-latex/ot1ocrbo.fd + RELOC/tex/latex/ocr-latex/ot1ocrbs.fd +catalogue-ctan /macros/latex/contrib/ocr-latex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics font-supp + +name octave +category Package +revision 45674 +shortdesc Typeset musical pitches with octave designations +relocated 1 +longdesc This package package typesets musical pitch names with +longdesc designation for the octave in either the Helmholtz system (with +longdesc octave numbers), or the traditional system (with prime +longdesc symbols). Authors can just write \pitch{C}{4} and the pitches +longdesc will be rendered correctly depending on which package option +longdesc was selected. The system can also be changed mid-document. +containersize 2332 +containerchecksum f7063b207152ebdbd29da1e93db1b65796dabcc1eee1fcf36a470c6074b7abf239c87f5e4e765f08ec70d8ff7f2ebc8fa29a5590fa9a9d6740a5e74c0e3d719a +doccontainersize 256924 +doccontainerchecksum 0fc6b228fff15a4dc90973339f2b155ede7051ce69066e24d7dcdb9c9d5ee162c8d684298c8ef7fae64274dfc4f101dbca8fc38ca68200c36cf901153fc461f9 +docfiles size=65 + RELOC/doc/latex/octave/README.md details="Readme" + RELOC/doc/latex/octave/octave.pdf details="Package documentation" + RELOC/doc/latex/octave/octave.tex +runfiles size=2 + RELOC/tex/latex/octave/octave.sty +catalogue-contact-repository https://bitbucket.org/andrewacashner/octave +catalogue-ctan /macros/latex/contrib/octave +catalogue-date 2017-10-31 23:20:06 +0100 +catalogue-license lppl1.3 +catalogue-topics music + +name octavo +category Package +revision 15878 +shortdesc Typeset books following classical design and layout +relocated 1 +longdesc The octavo class is a modification of the standard LaTeX book +longdesc class. Its purpose is to typeset books following classical +longdesc design and layout principles, with the express intention of +longdesc encouraging the making of beautiful books by anyone with access +longdesc to a good printer and with an inclination towards venerable +longdesc crafts, e.g., bookbinding. The octavo class differs from the +longdesc book class by implementing many of the proposals and insights +longdesc of respected experts, especially Jan Tschichold and Hugh +longdesc Williamson. The documentation discusses methods to organise and +longdesc print out any text into signatures, which can then be gathered, +longdesc folded and sewn into a book. +containersize 6544 +containerchecksum 06de0f1e69c4bd8bf0a65e08515994a10ae8df83e6e8981daf70b6eeb424fd59b58808249782d76b9373d9982aee50e7c12c17e090e3697533b87d35480f94a2 +doccontainersize 85180 +doccontainerchecksum daa628a0c047ece5aaf15425c0123128a771a17f08fe9212856e2d63b40340dbd7a50a4ed1e19b04198637e11b530239f4280b810ee3813fc6275b78d37bd8a6 +docfiles size=48 + RELOC/doc/latex/octavo/README details="Readme" + RELOC/doc/latex/octavo/changes + RELOC/doc/latex/octavo/tub-octavo.pdf details="Package documentation" +srccontainersize 26140 +srccontainerchecksum 3632856effd0e32e8595bca0f2a1ea569261cd0d273fa200d9cd9c70908a96da613f06eb315389fe9b8e6fcdcd9db233ca8c148120625f6813848a930fdeea67 +srcfiles size=27 + RELOC/source/latex/octavo/octavo.dtx + RELOC/source/latex/octavo/octavo.ins +runfiles size=11 + RELOC/tex/latex/octavo/oct10.clo + RELOC/tex/latex/octavo/oct11.clo + RELOC/tex/latex/octavo/oct12.clo + RELOC/tex/latex/octavo/octavo.cls +catalogue-ctan /macros/latex/contrib/octavo +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl +catalogue-topics book-pub class +catalogue-version 1.2 + +name odsfile +category Package +revision 38449 +shortdesc Read OpenDocument Spreadsheet documents as LaTeX tables +relocated 1 +longdesc The distribution includes a package and a lua library that can +longdesc together read OpenDocument spreadsheet documents as LaTeX +longdesc tables. Cells in the tables may be processed by LaTeX macros, +longdesc so that (for example) the package may be used for drawing some +longdesc plots. The package uses lua's zip library. +containersize 4976 +containerchecksum c739d1d20c26fde107649ae8aa5a3f767f59d6db3acd063264be6ffd0dcf43d2a1c87eaf9449d1e1f71a7c10cb24cbc55849255cf95fb72983e476e0cb2a8ee0 +doccontainersize 272368 +doccontainerchecksum 9be750187f9b4476748bb1bc7440dd68437ba8d11e8198af8a1d532b09c37696aa9341dbd91198922ef2ea0a2991d44a946fe080f68fd1d6bfcf563cac50a29b +docfiles size=71 + RELOC/doc/lualatex/odsfile/README details="Readme" + RELOC/doc/lualatex/odsfile/odsfile.pdf details="Package documentation" + RELOC/doc/lualatex/odsfile/odsfile.tex + RELOC/doc/lualatex/odsfile/pokus.ods +runfiles size=4 + RELOC/tex/lualatex/odsfile/odsfile.lua + RELOC/tex/lualatex/odsfile/odsfile.sty +catalogue-ctan /macros/luatex/latex/odsfile +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics foreign-import table luatex +catalogue-version 0.6 + +name ofs +category Package +revision 16991 +shortdesc Macros for managing large font collections +relocated 1 +longdesc OFS (Olsak's Font System) is a set of Plain TeX and LaTeX +longdesc macros for managing large font collections; it has been used by +longdesc Czech/Slovak users for many years. Main features include: +longdesc Mapping from long names of fonts to the metric file name. The +longdesc user can specify only exact long names in documents. Support +longdesc for many font encodings. Printing of catalogues of fonts and +longdesc test samples of font families; the interactive macro \showfonts +longdesc shows all font families you have installed via OFS. The user +longdesc interface is the same for Plain TeX and for LaTeX, but the +longdesc implementation differs: the LaTeX variant of OFS uses NFSS, but +longdesc the Plain variant implements its own font management (which may +longdesc even be better than NFSS) Support for math fonts including TX +longdesc fonts. +containersize 52908 +containerchecksum 347dc05e8742fa09679e3f16465077b0bbf5e34a4be5a5c2e1da094ad22c0e69ff9f4abb4aacb9be2c698b27da7e169adb0c1840da3e56b277514a9f9631dd02 +doccontainersize 689980 +doccontainerchecksum 13f7fd3ab4cb31ae521827b703cf4c3a0c796b6a33f46b2a24a2a8c488e92d6039a9b136440b00b6a0aba14a2dbad832b777cd5a3aa120ccfc4888ee147954e7 +docfiles size=265 + RELOC/doc/generic/ofs/changes.txt + RELOC/doc/generic/ofs/eurotex2003-ofs.pdf details="EuroTeX paper" language="en" + RELOC/doc/generic/ofs/eurotex2003-ofs.tex + RELOC/doc/generic/ofs/ofs-slt.pdf + RELOC/doc/generic/ofs/ofsdoc-e.pdf details="Package documentation" language="en" + RELOC/doc/generic/ofs/ofsdoc-e.tex + RELOC/doc/generic/ofs/ofsdoc.pdf details="Package documentation" language="cs" + RELOC/doc/generic/ofs/ofsdoc.tex + RELOC/doc/generic/ofs/ofsmtdef.tex + RELOC/doc/generic/ofs/ofstest.tex + RELOC/doc/generic/ofs/readme.ofs +runfiles size=93 + RELOC/tex/generic/ofs/a117.tex + RELOC/tex/generic/ofs/a35.sty + RELOC/tex/generic/ofs/a35.tex + RELOC/tex/generic/ofs/allfonts.sty + RELOC/tex/generic/ofs/allfonts.tex + RELOC/tex/generic/ofs/amsfn.tex + RELOC/tex/generic/ofs/mtfn.tex + RELOC/tex/generic/ofs/ofs-6a.tex + RELOC/tex/generic/ofs/ofs-6c.tex + RELOC/tex/generic/ofs/ofs-6k.tex + RELOC/tex/generic/ofs/ofs-6s.tex + RELOC/tex/generic/ofs/ofs-6t.tex + RELOC/tex/generic/ofs/ofs-6x.tex + RELOC/tex/generic/ofs/ofs-6y.tex + RELOC/tex/generic/ofs/ofs-8c.tex + RELOC/tex/generic/ofs/ofs-8t.tex + RELOC/tex/generic/ofs/ofs-8x.tex + RELOC/tex/generic/ofs/ofs-8z.tex + RELOC/tex/generic/ofs/ofs-ams.tex + RELOC/tex/generic/ofs/ofs-cm.tex + RELOC/tex/generic/ofs/ofs-mt.tex + RELOC/tex/generic/ofs/ofs-ps.tex + RELOC/tex/generic/ofs/ofs-px.tex + RELOC/tex/generic/ofs/ofs-slt.tex + RELOC/tex/generic/ofs/ofs-tx.tex + RELOC/tex/generic/ofs/ofs.sty + RELOC/tex/generic/ofs/ofs.tex + RELOC/tex/generic/ofs/ofsdef.tex + RELOC/tex/generic/ofs/pantyk.tex + RELOC/tex/generic/ofs/txfn.tex +catalogue-also plnfss font-selection fontch +catalogue-contact-home http://petr.olsak.net/ofs.html +catalogue-ctan /macros/generic/ofs +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license knuth +catalogue-topics font-sel plain-ext + +name ogham +category Package +revision 24876 +shortdesc Fonts for typesetting Ogham script +relocated 1 +longdesc The font provides the Ogham alphabet, which is found on a +longdesc number of Irish and Pictish carvings dating from the 4th +longdesc century AD. The font is distributed as Metafont source, which +longdesc has been patched (with the author's permission) for stability +longdesc at different output device resolutions. (Thanks are due to +longdesc Peter Flynn and Dan Luecking.) +containersize 1888 +containerchecksum fe651bcbdb0e8f9ded07fdc412f1273cc8d473894f06af69ae65ac4c6895daba3f61571eac9a49d16de043ae6ed6e03ea386f11dd6b395347d98784bece4c8b1 +doccontainersize 11932 +doccontainerchecksum 6d406cd0a2ba68946be8d2eb148a6c9286a164ae701f66802ecabe6661807ea54eba175617e00920d37a88dee376c1bfcecef6184320ef1790716d53e5a07871 +docfiles size=7 + RELOC/doc/fonts/ogham/testfont.pdf details="Testfont print" +runfiles size=3 + RELOC/fonts/source/public/ogham/ogham.mf + RELOC/fonts/tfm/public/ogham/ogham.tfm +catalogue-contact-repository https://github.com/rf-latex/ogham +catalogue-contact-support https://github.com/rf-latex/ogham/issues +catalogue-ctan /fonts/ogham +catalogue-date 2018-09-15 15:44:01 +0200 +catalogue-license pd +catalogue-topics font font-mf font-archaic + +name oinuit +category Package +revision 28668 +shortdesc LaTeX Support for the Inuktitut Language +relocated 1 +longdesc The package provides a set of Lambda (Omega LaTeX) typesetting +longdesc tools for the Inuktitut language. Five different input methods +longdesc are supported and with the necessary fonts are also provided. +execute addMap oinuit.map +containersize 147668 +containerchecksum 4d6b72ce539766a3453f7edb24c243a2a495f3916ee9fd650917c510a0e8fe36e12399843c1de3dc0b0de704bf5362ea20e9bd0d6c3100e659c5641395d658dc +doccontainersize 150228 +doccontainerchecksum dfb7275002731695086aa8733a543ca1eaa207bc57cd0b324666940ab932cd9301cb1c0b0bbfa4df36278ac8e289ac1be78a2e0a58ec656c470ff4b841a70803 +docfiles size=82 + RELOC/doc/fonts/oinuit/README.1ST + RELOC/doc/fonts/oinuit/README.TEXLIVE + RELOC/doc/fonts/oinuit/Table.eps + RELOC/doc/fonts/oinuit/book.tex + RELOC/doc/fonts/oinuit/inuit.tex + RELOC/doc/fonts/oinuit/taqtu.tex +srccontainersize 10304 +srccontainerchecksum 0d81c9803b9b45b20c096ab00d0c0e5ca26e71d5af463e511660c5bbd28b5b962afe243f21418883575b5d40f503bada65b5c34ba48486aa74a6f9ddcbd48680 +srcfiles size=11 + RELOC/source/lambda/oinuit/oinuit.dtx + RELOC/source/lambda/oinuit/oinuit.ins +runfiles size=563 + RELOC/fonts/map/dvips/oinuit/oinuit.map + RELOC/fonts/ofm/public/oinuit/OInuit.ofm + RELOC/fonts/ofm/public/oinuit/OInuitb.ofm + RELOC/fonts/ofm/public/oinuit/OInuitbo.ofm + RELOC/fonts/ofm/public/oinuit/OInuito.ofm + RELOC/fonts/ovf/public/oinuit/OInuit.ovf + RELOC/fonts/ovf/public/oinuit/OInuitb.ovf + RELOC/fonts/ovf/public/oinuit/OInuitbo.ovf + RELOC/fonts/ovf/public/oinuit/OInuito.ovf + RELOC/fonts/tfm/public/oinuit/Inuit.tfm + RELOC/fonts/tfm/public/oinuit/Inuitb.tfm + RELOC/fonts/tfm/public/oinuit/Inuitbo.tfm + RELOC/fonts/tfm/public/oinuit/Inuito.tfm + RELOC/fonts/type1/public/oinuit/Inuit.pfb + RELOC/fonts/type1/public/oinuit/Inuitb.pfb + RELOC/fonts/type1/public/oinuit/Inuitbo.pfb + RELOC/fonts/type1/public/oinuit/Inuito.pfb + RELOC/fonts/type1/public/oinuit/cmssbxo10.pfb + RELOC/omega/ocp/oinuit/Ninuit2uni.ocp + RELOC/omega/ocp/oinuit/Qinuit2uni.ocp + RELOC/omega/ocp/oinuit/inuitscii.ocp + RELOC/omega/otp/oinuit/Ninuit2uni.otp + RELOC/omega/otp/oinuit/Qinuit2uni.otp + RELOC/omega/otp/oinuit/inuitscii.otp + RELOC/tex/lambda/oinuit/litcmr.fd + RELOC/tex/lambda/oinuit/litenc.def + RELOC/tex/lambda/oinuit/oinuit.sty +catalogue-ctan /language/inuktitut/oinuit +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics other-lang omega + +name old-arrows +category Package +revision 42872 +shortdesc Computer Modern old-style arrows with smaller arrowheads +relocated 1 +longdesc This package provides Computer Modern old-style arrows with +longdesc smaller arrowheads, associated with the usual LaTeX commands. +longdesc It can be used in documents that contain other amssymb arrow +longdesc characters that also have small arrowheads. It is also possible +longdesc to use the usual new-style Computer Modern arrows together with +longdesc the old-style ones. +execute addMap oasy.map +containersize 32044 +containerchecksum 2b67317d41349c6d601d8ddcba6ba58cf503756f5bb2f4343c1447cbe4e24c8949a4de58e7cf3863a730bfa809dd09f5f1ce9944e3dc5d4de104e4817d6add17 +doccontainersize 861792 +doccontainerchecksum d142a95119386f85d1e6ff0f6a24bcf09b9bf7ec83a581ca43be67376cd4a44453d090e4eedf97bcba1026827eff29f97add3a6ed676833b02b718da4811a3ef +docfiles size=245 + RELOC/doc/fonts/old-arrows/README details="Readme" + RELOC/doc/fonts/old-arrows/old-arrows-italian.pdf details="Package documentation (Italian)" language="it" + RELOC/doc/fonts/old-arrows/old-arrows-italian.tex + RELOC/doc/fonts/old-arrows/old-arrows.pdf details="Package documentation" + RELOC/doc/fonts/old-arrows/old-arrows.tex +runfiles size=55 + RELOC/fonts/afm/public/old-arrows/oabsy10.afm + RELOC/fonts/afm/public/old-arrows/oabsy5.afm + RELOC/fonts/afm/public/old-arrows/oabsy7.afm + RELOC/fonts/afm/public/old-arrows/oasy10.afm + RELOC/fonts/afm/public/old-arrows/oasy5.afm + RELOC/fonts/afm/public/old-arrows/oasy6.afm + RELOC/fonts/afm/public/old-arrows/oasy7.afm + RELOC/fonts/afm/public/old-arrows/oasy8.afm + RELOC/fonts/afm/public/old-arrows/oasy9.afm + RELOC/fonts/enc/dvips/old-arrows/oasy.enc + RELOC/fonts/map/dvips/old-arrows/oasy.map + RELOC/fonts/tfm/public/old-arrows/oabsy10.tfm + RELOC/fonts/tfm/public/old-arrows/oabsy5.tfm + RELOC/fonts/tfm/public/old-arrows/oabsy6.tfm + RELOC/fonts/tfm/public/old-arrows/oabsy7.tfm + RELOC/fonts/tfm/public/old-arrows/oabsy8.tfm + RELOC/fonts/tfm/public/old-arrows/oabsy9.tfm + RELOC/fonts/tfm/public/old-arrows/oasy10.tfm + RELOC/fonts/tfm/public/old-arrows/oasy5.tfm + RELOC/fonts/tfm/public/old-arrows/oasy6.tfm + RELOC/fonts/tfm/public/old-arrows/oasy7.tfm + RELOC/fonts/tfm/public/old-arrows/oasy8.tfm + RELOC/fonts/tfm/public/old-arrows/oasy9.tfm + RELOC/fonts/type1/public/old-arrows/oabsy10.pfb + RELOC/fonts/type1/public/old-arrows/oabsy10.pfm + RELOC/fonts/type1/public/old-arrows/oabsy5.pfb + RELOC/fonts/type1/public/old-arrows/oabsy5.pfm + RELOC/fonts/type1/public/old-arrows/oabsy7.pfb + RELOC/fonts/type1/public/old-arrows/oabsy7.pfm + RELOC/fonts/type1/public/old-arrows/oasy10.pfb + RELOC/fonts/type1/public/old-arrows/oasy10.pfm + RELOC/fonts/type1/public/old-arrows/oasy5.pfb + RELOC/fonts/type1/public/old-arrows/oasy5.pfm + RELOC/fonts/type1/public/old-arrows/oasy6.pfb + RELOC/fonts/type1/public/old-arrows/oasy6.pfm + RELOC/fonts/type1/public/old-arrows/oasy7.pfb + RELOC/fonts/type1/public/old-arrows/oasy7.pfm + RELOC/fonts/type1/public/old-arrows/oasy8.pfb + RELOC/fonts/type1/public/old-arrows/oasy8.pfm + RELOC/fonts/type1/public/old-arrows/oasy9.pfb + RELOC/fonts/type1/public/old-arrows/oasy9.pfm + RELOC/tex/latex/old-arrows/old-arrows.sty +catalogue-ctan /fonts/old-arrows +catalogue-date 2017-01-05 17:35:49 +0100 +catalogue-license lppl1.3 +catalogue-topics font-symbol-maths font-type1 +catalogue-version 2.0 + +name oldlatin +category Package +revision 17932 +shortdesc Compute Modern-like font with long s +relocated 1 +longdesc Metafont sources modified from Computer Modern in order to +longdesc generate "long s" which was used in old text. +containersize 33676 +containerchecksum 02ba84762eccf816178cc652d7f8d8f7d962db7d5386de4a8274dbc9524fd7a212116de0d7a53886bd5b431ddb8a5cd8ffca7defe3174cbb50f417172d2963f2 +doccontainersize 408808 +doccontainerchecksum 1ed3c1640420272b33178c62aaf4c0d538f5f1ffc5350c377788210128c74eef4e6023fa20b3d9f214f518079e8a8c3753c74d30084f5a71a994dd4b5534635e +docfiles size=237 + RELOC/doc/fonts/oldlatin/README details="Readme" + RELOC/doc/fonts/oldlatin/oldlatin.pdf details="Package documentation" + RELOC/doc/fonts/oldlatin/oldlatin.tex + RELOC/doc/fonts/oldlatin/test_alphabet.tex + RELOC/doc/fonts/oldlatin/test_ol_all.pdf + RELOC/doc/fonts/oldlatin/test_ol_all.tex + RELOC/doc/fonts/oldlatin/test_ol_bf.pdf + RELOC/doc/fonts/oldlatin/test_ol_bf.tex + RELOC/doc/fonts/oldlatin/test_ol_rm.pdf + RELOC/doc/fonts/oldlatin/test_ol_rm.tex + RELOC/doc/fonts/oldlatin/test_ol_sl.pdf + RELOC/doc/fonts/oldlatin/test_ol_sl.tex + RELOC/doc/fonts/oldlatin/test_ol_ss.pdf + RELOC/doc/fonts/oldlatin/test_ol_ss.tex + RELOC/doc/fonts/oldlatin/test_ol_tt.pdf + RELOC/doc/fonts/oldlatin/test_ol_tt.tex +runfiles size=112 + RELOC/fonts/source/public/oldlatin/olb10.mf + RELOC/fonts/source/public/oldlatin/olbx10.mf + RELOC/fonts/source/public/oldlatin/olbx12.mf + RELOC/fonts/source/public/oldlatin/olbx5.mf + RELOC/fonts/source/public/oldlatin/olbx6.mf + RELOC/fonts/source/public/oldlatin/olbx7.mf + RELOC/fonts/source/public/oldlatin/olbx8.mf + RELOC/fonts/source/public/oldlatin/olbx9.mf + RELOC/fonts/source/public/oldlatin/olbxsl10.mf + RELOC/fonts/source/public/oldlatin/oldunh10.mf + RELOC/fonts/source/public/oldlatin/olff10.mf + RELOC/fonts/source/public/oldlatin/olfib8.mf + RELOC/fonts/source/public/oldlatin/olr10.mf + RELOC/fonts/source/public/oldlatin/olr10s.mf + RELOC/fonts/source/public/oldlatin/olr12.mf + RELOC/fonts/source/public/oldlatin/olr17.mf + RELOC/fonts/source/public/oldlatin/olr5.mf + RELOC/fonts/source/public/oldlatin/olr6.mf + RELOC/fonts/source/public/oldlatin/olr7.mf + RELOC/fonts/source/public/oldlatin/olr8.mf + RELOC/fonts/source/public/oldlatin/olr9.mf + RELOC/fonts/source/public/oldlatin/olsl10.mf + RELOC/fonts/source/public/oldlatin/olsl12.mf + RELOC/fonts/source/public/oldlatin/olsl8.mf + RELOC/fonts/source/public/oldlatin/olsl9.mf + RELOC/fonts/source/public/oldlatin/olsltt10.mf + RELOC/fonts/source/public/oldlatin/olss10.mf + RELOC/fonts/source/public/oldlatin/olss12.mf + RELOC/fonts/source/public/oldlatin/olss17.mf + RELOC/fonts/source/public/oldlatin/olss8.mf + RELOC/fonts/source/public/oldlatin/olss9.mf + RELOC/fonts/source/public/oldlatin/olssbx10.mf + RELOC/fonts/source/public/oldlatin/olssdc10.mf + RELOC/fonts/source/public/oldlatin/olssi10.mf + RELOC/fonts/source/public/oldlatin/olssi12.mf + RELOC/fonts/source/public/oldlatin/olssi17.mf + RELOC/fonts/source/public/oldlatin/olssi8.mf + RELOC/fonts/source/public/oldlatin/olssi9.mf + RELOC/fonts/source/public/oldlatin/olssq8.mf + RELOC/fonts/source/public/oldlatin/olssqi8.mf + RELOC/fonts/source/public/oldlatin/oltt10.mf + RELOC/fonts/source/public/oldlatin/oltt12.mf + RELOC/fonts/source/public/oldlatin/oltt8.mf + RELOC/fonts/source/public/oldlatin/oltt9.mf + RELOC/fonts/source/public/oldlatin/olvtt10.mf + RELOC/fonts/source/public/oldlatin/oroman.mf + RELOC/fonts/source/public/oldlatin/oromanl.mf + RELOC/fonts/source/public/oldlatin/oromlig.mf + RELOC/fonts/source/public/oldlatin/oromligs.mf + RELOC/fonts/tfm/public/oldlatin/olb10.tfm + RELOC/fonts/tfm/public/oldlatin/olbx10.tfm + RELOC/fonts/tfm/public/oldlatin/olbx12.tfm + RELOC/fonts/tfm/public/oldlatin/olbx5.tfm + RELOC/fonts/tfm/public/oldlatin/olbx6.tfm + RELOC/fonts/tfm/public/oldlatin/olbx7.tfm + RELOC/fonts/tfm/public/oldlatin/olbx8.tfm + RELOC/fonts/tfm/public/oldlatin/olbx9.tfm + RELOC/fonts/tfm/public/oldlatin/olbxsl10.tfm + RELOC/fonts/tfm/public/oldlatin/oldunh10.tfm + RELOC/fonts/tfm/public/oldlatin/olff10.tfm + RELOC/fonts/tfm/public/oldlatin/olfib8.tfm + RELOC/fonts/tfm/public/oldlatin/olr10.tfm + RELOC/fonts/tfm/public/oldlatin/olr12.tfm + RELOC/fonts/tfm/public/oldlatin/olr17.tfm + RELOC/fonts/tfm/public/oldlatin/olr5.tfm + RELOC/fonts/tfm/public/oldlatin/olr6.tfm + RELOC/fonts/tfm/public/oldlatin/olr7.tfm + RELOC/fonts/tfm/public/oldlatin/olr8.tfm + RELOC/fonts/tfm/public/oldlatin/olr9.tfm + RELOC/fonts/tfm/public/oldlatin/olsl10.tfm + RELOC/fonts/tfm/public/oldlatin/olsl12.tfm + RELOC/fonts/tfm/public/oldlatin/olsl8.tfm + RELOC/fonts/tfm/public/oldlatin/olsl9.tfm + RELOC/fonts/tfm/public/oldlatin/olsltt10.tfm + RELOC/fonts/tfm/public/oldlatin/olss10.tfm + RELOC/fonts/tfm/public/oldlatin/olss12.tfm + RELOC/fonts/tfm/public/oldlatin/olss17.tfm + RELOC/fonts/tfm/public/oldlatin/olss8.tfm + RELOC/fonts/tfm/public/oldlatin/olss9.tfm + RELOC/fonts/tfm/public/oldlatin/olssbx10.tfm + RELOC/fonts/tfm/public/oldlatin/olssdc10.tfm + RELOC/fonts/tfm/public/oldlatin/olssi10.tfm + RELOC/fonts/tfm/public/oldlatin/olssi12.tfm + RELOC/fonts/tfm/public/oldlatin/olssi17.tfm + RELOC/fonts/tfm/public/oldlatin/olssi8.tfm + RELOC/fonts/tfm/public/oldlatin/olssi9.tfm + RELOC/fonts/tfm/public/oldlatin/olssq8.tfm + RELOC/fonts/tfm/public/oldlatin/olssqi8.tfm + RELOC/fonts/tfm/public/oldlatin/oltt10.tfm + RELOC/fonts/tfm/public/oldlatin/oltt12.tfm + RELOC/fonts/tfm/public/oldlatin/oltt8.tfm + RELOC/fonts/tfm/public/oldlatin/oltt9.tfm + RELOC/fonts/tfm/public/oldlatin/olvtt10.tfm +catalogue-ctan /fonts/gothic/oldlatin +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font font-mf font-historical +catalogue-version 1.00 + +name oldstandard +category Package +revision 41735 +shortdesc Old Standard: A Unicode Font for Classical and Medieval Studies +relocated 1 +longdesc Old Standard is designed to reproduce the actual printing style +longdesc of the early 20th century, reviving a specific type of Modern +longdesc (classicist) style of serif typefaces, very commonly used in +longdesc various editions of the late 19th and early 20th century, but +longdesc almost completely abandoned later. The font supports +longdesc typesetting of Old and Middle English, Old Icelandic, Cyrillic +longdesc (with historical characters, extensions for Old Slavonic and +longdesc localised forms), Gothic transliterations, critical editions of +longdesc Classical Greek and Latin, and many more. Old Standard works +longdesc with TeX engines that directly support OpenType features, such +longdesc as XeTeX and LuaTeX. +execute addMap OldStandard.map +containersize 1207824 +containerchecksum 4bed370a641cddad586b3313bb63c75dd5d2cf50af1bba5618bf9cdbd9390b62cf9acba11903370cd9a94aedcd04bfe62b837e27d4d719cac07fcc5a974428ae +doccontainersize 1197036 +doccontainerchecksum fd2798a62143cf66650249cb8c0682f07ce2b74acfa93654470ffa7f5cf58d8b4a9460840f013ed148ea3f7a2ccbe1ed17dc3fea9c35a933e43d91bfb8fd4242 +docfiles size=339 + RELOC/doc/fonts/oldstandard/FONTLOG.txt + RELOC/doc/fonts/oldstandard/OFL-FAQ.txt + RELOC/doc/fonts/oldstandard/OFL.txt + RELOC/doc/fonts/oldstandard/README details="Readme" + RELOC/doc/fonts/oldstandard/didot-de.png + RELOC/doc/fonts/oldstandard/didot-fr.png + RELOC/doc/fonts/oldstandard/gendocs.sh + RELOC/doc/fonts/oldstandard/greek-contextual.png + RELOC/doc/fonts/oldstandard/oldstand-manual.pdf details="Package documentation" + RELOC/doc/fonts/oldstandard/oldstand-manual.tex + RELOC/doc/fonts/oldstandard/oldstandard-samples.pdf + RELOC/doc/fonts/oldstandard/oldstandard-samples.tex + RELOC/doc/fonts/oldstandard/opentype.png + RELOC/doc/fonts/oldstandard/serbian.png + RELOC/doc/fonts/oldstandard/spadmin-add.png + RELOC/doc/fonts/oldstandard/spadmin.png + RELOC/doc/fonts/oldstandard/stand-su.png + RELOC/doc/fonts/oldstandard/teubner.png + RELOC/doc/fonts/oldstandard/truetype.png +runfiles size=459 + RELOC/fonts/enc/dvips/oldstandard/ost_26r254.enc + RELOC/fonts/enc/dvips/oldstandard/ost_dgnoxb.enc + RELOC/fonts/enc/dvips/oldstandard/ost_dgu773.enc + RELOC/fonts/enc/dvips/oldstandard/ost_dpv76i.enc + RELOC/fonts/enc/dvips/oldstandard/ost_hn3tfb.enc + RELOC/fonts/enc/dvips/oldstandard/ost_lb4p2v.enc + RELOC/fonts/enc/dvips/oldstandard/ost_sfa7gz.enc + RELOC/fonts/enc/dvips/oldstandard/ost_urxscd.enc + RELOC/fonts/enc/dvips/oldstandard/ost_wf5qbf.enc + RELOC/fonts/enc/dvips/oldstandard/ost_wle65k.enc + RELOC/fonts/enc/dvips/oldstandard/ost_yewge3.enc + RELOC/fonts/map/dvips/oldstandard/OldStandard.map + RELOC/fonts/opentype/public/oldstandard/OldStandard-Bold.otf + RELOC/fonts/opentype/public/oldstandard/OldStandard-Italic.otf + RELOC/fonts/opentype/public/oldstandard/OldStandard-Regular.otf + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/oldstandard/OldStandard-Regular-tlf-ts1.tfm + RELOC/fonts/type1/public/oldstandard/OldStandard-Bold.pfb + RELOC/fonts/type1/public/oldstandard/OldStandard-Italic.pfb + RELOC/fonts/type1/public/oldstandard/OldStandard-Regular.pfb + RELOC/fonts/vf/public/oldstandard/OldStandard-Bold-sup-t1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Bold-tlf-t1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Italic-sup-t1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Italic-tlf-t1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Regular-sup-t1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Regular-tlf-t1.vf + RELOC/fonts/vf/public/oldstandard/OldStandard-Regular-tlf-ts1.vf + RELOC/tex/latex/oldstandard/LY1OldStandard-Sup.fd + RELOC/tex/latex/oldstandard/LY1OldStandard-TLF.fd + RELOC/tex/latex/oldstandard/OT1OldStandard-Sup.fd + RELOC/tex/latex/oldstandard/OT1OldStandard-TLF.fd + RELOC/tex/latex/oldstandard/OldStandard.sty + RELOC/tex/latex/oldstandard/T1OldStandard-Sup.fd + RELOC/tex/latex/oldstandard/T1OldStandard-TLF.fd + RELOC/tex/latex/oldstandard/TS1OldStandard-TLF.fd +catalogue-ctan /fonts/oldstandard +catalogue-date 2016-07-20 09:11:51 +0200 +catalogue-license ofl +catalogue-topics font font-serif font-type1 font-otf +catalogue-version 2.2 + +name oldstyle +category Package +revision 15878 +shortdesc Old style numbers in OT1 encoding +relocated 1 +longdesc Font information needed to load the cmmi and cmmib fonts for +longdesc use to produce oldstyle numbers. +containersize 1688 +containerchecksum 968ff7b641f6ae6e8aaf43d1ae9617710b0bfed9894dad135cfd11050eef1c35c48d589d58d3a94e34f93c22d85c58b047ce8d0bbf0ae5c2e645de72e327f9cb +doccontainersize 51512 +doccontainerchecksum 79e2c2d155bab57456cf7d2ec08930d54e538a830c1e7fb12c0731b246b917840d0ba06d31939ca97e7a20e53a061caa5a5a3beb139fc1a05f32dd9497a37ca7 +docfiles size=18 + RELOC/doc/latex/oldstyle/oldstyle.pdf details="Package documentation" +srccontainersize 2636 +srccontainerchecksum a9200c32d19045cd56121a64727c1465ef16f48269e4b9bc6957106451694707fc0fc3db253e0db425fa8396b32560b5922f8556fafdeb68ad129d90f027d944 +srcfiles size=3 + RELOC/source/latex/oldstyle/oldstyle.dtx + RELOC/source/latex/oldstyle/oldstyle.ins +runfiles size=2 + RELOC/tex/latex/oldstyle/Ucmm.fd + RELOC/tex/latex/oldstyle/oldstyle.sty +catalogue-also eco +catalogue-contact-repository https://github.com/rf-latex/oldstyle +catalogue-contact-support https://github.com/rf-latex/oldstyle/issues +catalogue-ctan /macros/latex/contrib/oldstyle +catalogue-date 2018-09-15 15:48:11 +0200 +catalogue-license lppl +catalogue-topics font-supp +catalogue-version 0.2 + +name olsak-misc +category Package +revision 51063 +shortdesc Collection of plain TeX macros written by Petr Olsak +relocated 1 +longdesc This is a collection with various single-file plain TeX macros +longdesc written by Petr Olsak. The documentation is included in each +longdesc file separately. booklet.tex: re-orders PDF pages and collects +longdesc them for booklet printing cnv.tex: conversion of texts +longdesc cnv-pu.tex: example of usage of cnv.tex --- pdf outlines in +longdesc Unicode cnv-word.tex: example of usage of cnv.tex --- word to +longdesc word conversion eparam.tex: Full expansion during parameter +longdesc scanning fun-coffee.tex: generates splotches in the document +longdesc openclose.tex: repairs balanced text between \Open ...\Close +longdesc pair qrcode.tex: QR code generated at TeX level scanbase.tex: +longdesc parser of text-style mysql outputs scancsv.tex: parser of CSV +longdesc format seplist.tex: macros with alternative separators of a +longdesc parameter xmlparser.tex: parser of XML language +containersize 25880 +containerchecksum 17f360186b44fbeca93ebbe6bb99c51b1815bf376272de824e8a62474e59a1cecc09757639d0542270aa1f1c84ad8042f5859032a141f353b112ffeb8f5ba866 +doccontainersize 41764 +doccontainerchecksum da6afafbde8ece27fc082b15ad29fdf53ae08ec8674f138f1a45afd39a1cc0a906287390986406b4c5aaabc009aee1843560f078fcac1aad2d7739ecf3e16a68 +docfiles size=49 + RELOC/doc/generic/olsak-misc/README details="Readme" + RELOC/doc/generic/olsak-misc/booklet.tex + RELOC/doc/generic/olsak-misc/cnv-pu.tex + RELOC/doc/generic/olsak-misc/cnv-word.tex + RELOC/doc/generic/olsak-misc/cnv.tex + RELOC/doc/generic/olsak-misc/eparam.tex + RELOC/doc/generic/olsak-misc/fun-coffee.tex + RELOC/doc/generic/olsak-misc/openclose.tex + RELOC/doc/generic/olsak-misc/seplist.tex +runfiles size=31 + RELOC/tex/generic/olsak-misc/qrcode.tex + RELOC/tex/generic/olsak-misc/scanbase.tex + RELOC/tex/generic/olsak-misc/scancsv.tex + RELOC/tex/generic/olsak-misc/xmlparser.tex +catalogue-contact-home http://petr.olsak.net/ftp/olsak/makra/ +catalogue-ctan /macros/generic/olsak-misc +catalogue-date 2019-05-08 22:09:09 +0200 +catalogue-license pd +catalogue-topics misc-support +catalogue-version May 2019 + +name omega +category Package +revision 33046 +shortdesc A wide-character-set extension of TeX +relocated 1 +longdesc A development of TeX, which deals in multi-octet Unicode +longdesc characters, to enable native treatment of a wide range of +longdesc languages without changing character-set. Work on Omega has +longdesc ceased (the TeX Live package contains only support files); its +longdesc compatible successor is aleph, which is itself also in major +longdesc maintenance mode only. Ongoing projects developing Omega (and +longdesc Aleph) ideas include Omega-2 and LuaTeX. +execute addMap omega.map +containersize 992228 +containerchecksum bd07f654ad56219136e2f9e7612b87892bf8c6d0c8f2e41434a7fabb8b159bc43f79444301383adf560f1985f64e639dd496dad6d3ea97ccbd85fcee4d7a36e0 +doccontainersize 196080 +doccontainerchecksum 31eb2aa643ec37d68d902f4de7be391e7da3af61bde93e78beb1e6df1c6367fcfe00f88e29c8cc878b9cd40f2e3a45f9e46bf24ca3a5608aeae09be491130fef +docfiles size=138 + RELOC/doc/omega/base/doc-1.8.tex + RELOC/doc/omega/base/torture.ps + RELOC/doc/omega/base/torture.tex +runfiles size=1523 + RELOC/dvips/omega/config.omega + RELOC/dvips/omega/omega.cfg + RELOC/fonts/afm/public/omega/omsea1.afm + RELOC/fonts/afm/public/omega/omsea1b.afm + RELOC/fonts/afm/public/omega/omsea2.afm + RELOC/fonts/afm/public/omega/omsea2b.afm + RELOC/fonts/afm/public/omega/omsea3.afm + RELOC/fonts/afm/public/omega/omsea3b.afm + RELOC/fonts/afm/public/omega/omseco.afm + RELOC/fonts/afm/public/omega/omsecob.afm + RELOC/fonts/afm/public/omega/omsecobi.afm + RELOC/fonts/afm/public/omega/omsecoi.afm + RELOC/fonts/afm/public/omega/omsecx.afm + RELOC/fonts/afm/public/omega/omsecy.afm + RELOC/fonts/afm/public/omega/omsegr.afm + RELOC/fonts/afm/public/omega/omsegrb.afm + RELOC/fonts/afm/public/omega/omsegrbi.afm + RELOC/fonts/afm/public/omega/omsegri.afm + RELOC/fonts/afm/public/omega/omseha.afm + RELOC/fonts/afm/public/omega/omsehe.afm + RELOC/fonts/afm/public/omega/omseip.afm + RELOC/fonts/afm/public/omega/omsela.afm + RELOC/fonts/afm/public/omega/omselab.afm + RELOC/fonts/afm/public/omega/omselabi.afm + RELOC/fonts/afm/public/omega/omselai.afm + RELOC/fonts/afm/public/omega/omseti.afm + RELOC/fonts/map/dvips/omega/omega.map + RELOC/fonts/ofm/public/omega/omarab.ofm + RELOC/fonts/ofm/public/omega/omarabb.ofm + RELOC/fonts/ofm/public/omega/omlgc.ofm + RELOC/fonts/ofm/public/omega/omlgcb.ofm + RELOC/fonts/ofm/public/omega/omlgcbi.ofm + RELOC/fonts/ofm/public/omega/omlgci.ofm + RELOC/fonts/ofm/public/omega/ucitt10.ofm + RELOC/fonts/ofm/public/omega/ucsltt10.ofm + RELOC/fonts/ofm/public/omega/uctt10.ofm + RELOC/fonts/ofm/public/omega/uctt12.ofm + RELOC/fonts/ofm/public/omega/uctt8.ofm + RELOC/fonts/ofm/public/omega/uctt9.ofm + RELOC/fonts/ofm/public/omega/ucvtt10.ofm + RELOC/fonts/ovf/public/omega/omarab.ovf + RELOC/fonts/ovf/public/omega/omarabb.ovf + RELOC/fonts/ovf/public/omega/omlgc.ovf + RELOC/fonts/ovf/public/omega/omlgcb.ovf + RELOC/fonts/ovf/public/omega/omlgcbi.ovf + RELOC/fonts/ovf/public/omega/omlgci.ovf + RELOC/fonts/ovf/public/omega/ucitt10.ovf + RELOC/fonts/ovf/public/omega/ucsltt10.ovf + RELOC/fonts/ovf/public/omega/uctt10.ovf + RELOC/fonts/ovf/public/omega/uctt12.ovf + RELOC/fonts/ovf/public/omega/uctt8.ovf + RELOC/fonts/ovf/public/omega/uctt9.ovf + RELOC/fonts/ovf/public/omega/ucvtt10.ovf + RELOC/fonts/ovp/public/omega/omarab.ovp + RELOC/fonts/ovp/public/omega/omarabb.ovp + RELOC/fonts/ovp/public/omega/omlgc.ovp + RELOC/fonts/ovp/public/omega/omlgcb.ovp + RELOC/fonts/ovp/public/omega/omlgcbi.ovp + RELOC/fonts/ovp/public/omega/omlgci.ovp + RELOC/fonts/ovp/public/omega/ucitt10.ovp + RELOC/fonts/ovp/public/omega/ucsltt10.ovp + RELOC/fonts/ovp/public/omega/uctt10.ovp + RELOC/fonts/ovp/public/omega/uctt12.ovp + RELOC/fonts/ovp/public/omega/uctt8.ovp + RELOC/fonts/ovp/public/omega/uctt9.ovp + RELOC/fonts/ovp/public/omega/ucvtt10.ovp + RELOC/fonts/tfm/public/omega/omding.tfm + RELOC/fonts/tfm/public/omega/omsea1.tfm + RELOC/fonts/tfm/public/omega/omsea1b.tfm + RELOC/fonts/tfm/public/omega/omsea2.tfm + RELOC/fonts/tfm/public/omega/omsea2b.tfm + RELOC/fonts/tfm/public/omega/omsea3.tfm + RELOC/fonts/tfm/public/omega/omsea3b.tfm + RELOC/fonts/tfm/public/omega/omseco.tfm + RELOC/fonts/tfm/public/omega/omsecob.tfm + RELOC/fonts/tfm/public/omega/omsecobi.tfm + RELOC/fonts/tfm/public/omega/omsecoi.tfm + RELOC/fonts/tfm/public/omega/omsecx.tfm + RELOC/fonts/tfm/public/omega/omsecy.tfm + RELOC/fonts/tfm/public/omega/omsegr.tfm + RELOC/fonts/tfm/public/omega/omsegrb.tfm + RELOC/fonts/tfm/public/omega/omsegrbi.tfm + RELOC/fonts/tfm/public/omega/omsegri.tfm + RELOC/fonts/tfm/public/omega/omseha.tfm + RELOC/fonts/tfm/public/omega/omseip.tfm + RELOC/fonts/tfm/public/omega/omsela.tfm + RELOC/fonts/tfm/public/omega/omselab.tfm + RELOC/fonts/tfm/public/omega/omselabi.tfm + RELOC/fonts/tfm/public/omega/omselai.tfm + RELOC/fonts/tfm/public/omega/omseti.tfm + RELOC/fonts/tfm/public/omega/omssti.tfm + RELOC/fonts/type1/public/omega/omding.pfb + RELOC/fonts/type1/public/omega/omsea1.pfb + RELOC/fonts/type1/public/omega/omsea1b.pfb + RELOC/fonts/type1/public/omega/omsea2.pfb + RELOC/fonts/type1/public/omega/omsea2b.pfb + RELOC/fonts/type1/public/omega/omsea3.pfb + RELOC/fonts/type1/public/omega/omsea3b.pfb + RELOC/fonts/type1/public/omega/omseco.pfb + RELOC/fonts/type1/public/omega/omsecob.pfb + RELOC/fonts/type1/public/omega/omsecobi.pfb + RELOC/fonts/type1/public/omega/omsecoi.pfb + RELOC/fonts/type1/public/omega/omsecx.pfb + RELOC/fonts/type1/public/omega/omsecy.pfb + RELOC/fonts/type1/public/omega/omsecyb.pfb + RELOC/fonts/type1/public/omega/omsecyi.pfb + RELOC/fonts/type1/public/omega/omsegr.pfb + RELOC/fonts/type1/public/omega/omsegrb.pfb + RELOC/fonts/type1/public/omega/omsegrbi.pfb + RELOC/fonts/type1/public/omega/omsegri.pfb + RELOC/fonts/type1/public/omega/omseha.pfb + RELOC/fonts/type1/public/omega/omsehe.pfb + RELOC/fonts/type1/public/omega/omseip.pfb + RELOC/fonts/type1/public/omega/omsela.pfb + RELOC/fonts/type1/public/omega/omselab.pfb + RELOC/fonts/type1/public/omega/omselabi.pfb + RELOC/fonts/type1/public/omega/omselai.pfb + RELOC/fonts/type1/public/omega/omseti.pfb + RELOC/fonts/type1/public/omega/omssti.pfb + RELOC/omega/ocp/char2uni/in646.ocp + RELOC/omega/ocp/char2uni/in88591.ocp + RELOC/omega/ocp/char2uni/in88592.ocp + RELOC/omega/ocp/char2uni/in88593.ocp + RELOC/omega/ocp/char2uni/in88594.ocp + RELOC/omega/ocp/char2uni/in88595.ocp + RELOC/omega/ocp/char2uni/in88596.ocp + RELOC/omega/ocp/char2uni/in88597.ocp + RELOC/omega/ocp/char2uni/in88598.ocp + RELOC/omega/ocp/char2uni/in88599.ocp + RELOC/omega/ocp/char2uni/in8859a.ocp + RELOC/omega/ocp/char2uni/in8859d.ocp + RELOC/omega/ocp/char2uni/in8859e.ocp + RELOC/omega/ocp/char2uni/in8859f.ocp + RELOC/omega/ocp/char2uni/in8859g.ocp + RELOC/omega/ocp/char2uni/inatari.ocp + RELOC/omega/ocp/char2uni/inav.ocp + RELOC/omega/ocp/char2uni/inbig5.ocp + RELOC/omega/ocp/char2uni/incp1250.ocp + RELOC/omega/ocp/char2uni/incp1251.ocp + RELOC/omega/ocp/char2uni/incp1252.ocp + RELOC/omega/ocp/char2uni/incp1253.ocp + RELOC/omega/ocp/char2uni/incp1254.ocp + RELOC/omega/ocp/char2uni/incp1255.ocp + RELOC/omega/ocp/char2uni/incp1256.ocp + RELOC/omega/ocp/char2uni/incp1257.ocp + RELOC/omega/ocp/char2uni/incp1258.ocp + RELOC/omega/ocp/char2uni/incp866.ocp + RELOC/omega/ocp/char2uni/incp874.ocp + RELOC/omega/ocp/char2uni/inebcdic.ocp + RELOC/omega/ocp/char2uni/ingb.ocp + RELOC/omega/ocp/char2uni/inkoi8.ocp + RELOC/omega/ocp/char2uni/inmac.ocp + RELOC/omega/ocp/char2uni/inmsdos.ocp + RELOC/omega/ocp/char2uni/inmsdos2.ocp + RELOC/omega/ocp/char2uni/innext.ocp + RELOC/omega/ocp/char2uni/inov.ocp + RELOC/omega/ocp/char2uni/inps2.ocp + RELOC/omega/ocp/char2uni/insf1.ocp + RELOC/omega/ocp/char2uni/insf2.ocp + RELOC/omega/ocp/char2uni/intis620.ocp + RELOC/omega/ocp/char2uni/inucode.ocp + RELOC/omega/ocp/char2uni/inutf8.ocp + RELOC/omega/ocp/char2uni/inviet1.ocp + RELOC/omega/ocp/char2uni/inviet2.ocp + RELOC/omega/ocp/char2uni/inviscii.ocp + RELOC/omega/ocp/misc/ebcdic.ocp + RELOC/omega/ocp/misc/id.ocp + RELOC/omega/ocp/omega/7arb2uni.ocp + RELOC/omega/ocp/omega/7ber2uni.ocp + RELOC/omega/ocp/omega/7cyr2uni.ocp + RELOC/omega/ocp/omega/7hma2uni.ocp + RELOC/omega/ocp/omega/7in88593.ocp + RELOC/omega/ocp/omega/7lbe2uni.ocp + RELOC/omega/ocp/omega/7pap2uni.ocp + RELOC/omega/ocp/omega/7pas2uni.ocp + RELOC/omega/ocp/omega/7snd2uni.ocp + RELOC/omega/ocp/omega/7syr2uni.ocp + RELOC/omega/ocp/omega/7tbe2uni.ocp + RELOC/omega/ocp/omega/7urd2uni.ocp + RELOC/omega/ocp/omega/8mac-arb2uni.ocp + RELOC/omega/ocp/omega/8mac-cyr2uni.ocp + RELOC/omega/ocp/omega/apostr2psili.ocp + RELOC/omega/ocp/omega/cuni2acad.ocp + RELOC/omega/ocp/omega/cuni2amal.ocp + RELOC/omega/ocp/omega/cuni2arab.ex.ocp + RELOC/omega/ocp/omega/cuni2arab.ocp + RELOC/omega/ocp/omega/cuni2asv.ocp + RELOC/omega/ocp/omega/cuni2bout.ocp + RELOC/omega/ocp/omega/cuni2mona.ocp + RELOC/omega/ocp/omega/cuni2nar.ocp + RELOC/omega/ocp/omega/cuni2nva.ocp + RELOC/omega/ocp/omega/cuni2oar-novow.ocp + RELOC/omega/ocp/omega/cuni2oar.ocp + RELOC/omega/ocp/omega/cunioara.ocp + RELOC/omega/ocp/omega/dblquote-point.ocp + RELOC/omega/ocp/omega/destroy.ocp + RELOC/omega/ocp/omega/french2uni.ocp + RELOC/omega/ocp/omega/greek.ocp + RELOC/omega/ocp/omega/grpo2uni.ocp + RELOC/omega/ocp/omega/grpotilde2uni.ocp + RELOC/omega/ocp/omega/inverted-iota-upsilon.ocp + RELOC/omega/ocp/omega/isogr2uni-verbatim.ocp + RELOC/omega/ocp/omega/isogr2uni.ocp + RELOC/omega/ocp/omega/lat2uni.ocp + RELOC/omega/ocp/omega/lowercase.ocp + RELOC/omega/ocp/omega/lunatesigma.ocp + RELOC/omega/ocp/omega/macgr2uni.ocp + RELOC/omega/ocp/omega/medbeta.ocp + RELOC/omega/ocp/omega/mixedgreek2uni.ocp + RELOC/omega/ocp/omega/tarauni.ocp + RELOC/omega/ocp/omega/test1.ocp + RELOC/omega/ocp/omega/test3.ocp + RELOC/omega/ocp/omega/tiqwah.ocp + RELOC/omega/ocp/omega/tiqwah2.ocp + RELOC/omega/ocp/omega/tsinduni.ocp + RELOC/omega/ocp/omega/turduuni.ocp + RELOC/omega/ocp/omega/uni2cuni.ocp + RELOC/omega/ocp/omega/uni2greek-verbatim.ocp + RELOC/omega/ocp/omega/uni2greek.ocp + RELOC/omega/ocp/omega/uni2lat-noffi.ocp + RELOC/omega/ocp/omega/uni2lat.ocp + RELOC/omega/ocp/omega/unicuni.ocp + RELOC/omega/ocp/omega/uppercase-no-accents.ocp + RELOC/omega/ocp/omega/uppercase.ocp + RELOC/omega/ocp/uni2char/out88591.ocp + RELOC/omega/ocp/uni2char/oututf8.ocp + RELOC/omega/otp/char2uni/in646.otp + RELOC/omega/otp/char2uni/in88591.otp + RELOC/omega/otp/char2uni/in88592.otp + RELOC/omega/otp/char2uni/in88593.otp + RELOC/omega/otp/char2uni/in88594.otp + RELOC/omega/otp/char2uni/in88595.otp + RELOC/omega/otp/char2uni/in88596.otp + RELOC/omega/otp/char2uni/in88597.otp + RELOC/omega/otp/char2uni/in88598.otp + RELOC/omega/otp/char2uni/in88599.otp + RELOC/omega/otp/char2uni/in8859a.otp + RELOC/omega/otp/char2uni/in8859d.otp + RELOC/omega/otp/char2uni/in8859e.otp + RELOC/omega/otp/char2uni/in8859f.otp + RELOC/omega/otp/char2uni/in8859g.otp + RELOC/omega/otp/char2uni/inatari.otp + RELOC/omega/otp/char2uni/inav.otp + RELOC/omega/otp/char2uni/inbig5.otp + RELOC/omega/otp/char2uni/incp1250.otp + RELOC/omega/otp/char2uni/incp1251.otp + RELOC/omega/otp/char2uni/incp1252.otp + RELOC/omega/otp/char2uni/incp1253.otp + RELOC/omega/otp/char2uni/incp1254.otp + RELOC/omega/otp/char2uni/incp1255.otp + RELOC/omega/otp/char2uni/incp1256.otp + RELOC/omega/otp/char2uni/incp1257.otp + RELOC/omega/otp/char2uni/incp1258.otp + RELOC/omega/otp/char2uni/incp866.otp + RELOC/omega/otp/char2uni/incp874.otp + RELOC/omega/otp/char2uni/inebcdic.otp + RELOC/omega/otp/char2uni/ingb.otp + RELOC/omega/otp/char2uni/inkoi8.otp + RELOC/omega/otp/char2uni/inmac.otp + RELOC/omega/otp/char2uni/inmsdos.otp + RELOC/omega/otp/char2uni/inmsdos2.otp + RELOC/omega/otp/char2uni/innext.otp + RELOC/omega/otp/char2uni/inov.otp + RELOC/omega/otp/char2uni/inps2.otp + RELOC/omega/otp/char2uni/insf1.otp + RELOC/omega/otp/char2uni/insf2.otp + RELOC/omega/otp/char2uni/intis620.otp + RELOC/omega/otp/char2uni/inucode.otp + RELOC/omega/otp/char2uni/inutf8.otp + RELOC/omega/otp/char2uni/inviet1.otp + RELOC/omega/otp/char2uni/inviet2.otp + RELOC/omega/otp/char2uni/inviscii.otp + RELOC/omega/otp/misc/ebcdic.otp + RELOC/omega/otp/misc/id.otp + RELOC/omega/otp/omega/7arb2uni.otp + RELOC/omega/otp/omega/7ber2uni.otp + RELOC/omega/otp/omega/7cyr2uni.otp + RELOC/omega/otp/omega/7hma2uni.otp + RELOC/omega/otp/omega/7in88593.otp + RELOC/omega/otp/omega/7lbe2uni.otp + RELOC/omega/otp/omega/7pap2uni.otp + RELOC/omega/otp/omega/7pas2uni.otp + RELOC/omega/otp/omega/7snd2uni.otp + RELOC/omega/otp/omega/7syr2uni.otp + RELOC/omega/otp/omega/7tbe2uni.otp + RELOC/omega/otp/omega/7urd2uni.otp + RELOC/omega/otp/omega/8mac-arb2uni.otp + RELOC/omega/otp/omega/8mac-cyr2uni.otp + RELOC/omega/otp/omega/apostr2psili.otp + RELOC/omega/otp/omega/cuni2acad.otp + RELOC/omega/otp/omega/cuni2amal.otp + RELOC/omega/otp/omega/cuni2arab.ex.otp + RELOC/omega/otp/omega/cuni2asv.otp + RELOC/omega/otp/omega/cuni2bout.otp + RELOC/omega/otp/omega/cuni2mona.otp + RELOC/omega/otp/omega/cuni2nar.otp + RELOC/omega/otp/omega/cuni2nva.otp + RELOC/omega/otp/omega/cuni2oar-novow.otp + RELOC/omega/otp/omega/cuni2oar.otp + RELOC/omega/otp/omega/dblquote-point.otp + RELOC/omega/otp/omega/destroy.otp + RELOC/omega/otp/omega/french2uni.otp + RELOC/omega/otp/omega/grpo2uni.otp + RELOC/omega/otp/omega/grpotilde2uni.otp + RELOC/omega/otp/omega/inverted-iota-upsilon.otp + RELOC/omega/otp/omega/isogr2uni-verbatim.otp + RELOC/omega/otp/omega/isogr2uni.otp + RELOC/omega/otp/omega/lat2uni.otp + RELOC/omega/otp/omega/lowercase.otp + RELOC/omega/otp/omega/lunatesigma.otp + RELOC/omega/otp/omega/macgr2uni.otp + RELOC/omega/otp/omega/medbeta.otp + RELOC/omega/otp/omega/mixedgreek2uni.otp + RELOC/omega/otp/omega/uni2cuni.otp + RELOC/omega/otp/omega/uni2greek-verbatim.otp + RELOC/omega/otp/omega/uni2greek.otp + RELOC/omega/otp/omega/uni2lat-noffi.otp + RELOC/omega/otp/omega/uni2lat.otp + RELOC/omega/otp/omega/uppercase-no-accents.otp + RELOC/omega/otp/omega/uppercase.otp + RELOC/omega/otp/uni2char/out88591.otp + RELOC/omega/otp/uni2char/oututf8.otp + RELOC/tex/generic/encodings/cmbsy.onm + RELOC/tex/generic/encodings/cmbx.onm + RELOC/tex/generic/encodings/cmcsc.onm + RELOC/tex/generic/encodings/cmex.onm + RELOC/tex/generic/encodings/cmmi.onm + RELOC/tex/generic/encodings/cmmib.onm + RELOC/tex/generic/encodings/cmr.onm + RELOC/tex/generic/encodings/cmr1.onm + RELOC/tex/generic/encodings/cmsl.onm + RELOC/tex/generic/encodings/cmsy.onm + RELOC/tex/generic/encodings/cmti.onm + RELOC/tex/generic/encodings/cmtt.onm + RELOC/tex/generic/encodings/ecrm.onm + RELOC/tex/generic/encodings/euex.onm + RELOC/tex/generic/encodings/eufb.onm + RELOC/tex/generic/encodings/eufm.onm + RELOC/tex/generic/encodings/eurb.onm + RELOC/tex/generic/encodings/eurm.onm + RELOC/tex/generic/encodings/eusb.onm + RELOC/tex/generic/encodings/eusm.onm + RELOC/tex/generic/encodings/msam.onm + RELOC/tex/generic/encodings/msbm.onm + RELOC/tex/generic/omegahyph/bghyph.tex + RELOC/tex/generic/omegahyph/lthyph.tex + RELOC/tex/generic/omegahyph/srhyph.tex + RELOC/tex/plain/omega/grlccode.tex + RELOC/tex/plain/omega/omega.tex +catalogue-ctan /obsolete/systems/omega +catalogue-date 2017-04-24 05:22:45 +0200 +catalogue-license gpl +catalogue-topics engine omega obsolete + +name omegaware +category TLCore +revision 50602 +catalogue omega +shortdesc A wide-character-set extension of TeX +longdesc A development of TeX, which deals in multi-octet Unicode +longdesc characters, to enable native treatment of a wide range of +longdesc languages without changing character-set. Work on Omega has +longdesc ceased (the TeX Live package contains only support files); its +longdesc compatible successor is aleph, which is itself also in major +longdesc maintenance mode only. Ongoing projects developing Omega (and +longdesc Aleph) ideas include Omega-2 and LuaTeX. +depend omegaware.ARCH +containersize 628 +containerchecksum da2ea42b840a49e8213bc4b1cbf30d042ec718a916fbc58a6a5db4bb352cba8a669a788530e54bc50c4918a5f106dea69f791c6f30adfb570fec8f8ae80096a0 +doccontainersize 148980 +doccontainerchecksum 5eef2e7061a6b44086cb8c9a2e4230db2abbf7b1d9cea678264900f9b2c8da056dda07db004b26031ec6d79192b11ce0cb139a3080dd84421bd527cb92f144a3 +docfiles size=61 + texmf-dist/doc/man/man1/odvicopy.1 + texmf-dist/doc/man/man1/odvicopy.man1.pdf + texmf-dist/doc/man/man1/odvitype.1 + texmf-dist/doc/man/man1/odvitype.man1.pdf + texmf-dist/doc/man/man1/ofm2opl.1 + texmf-dist/doc/man/man1/ofm2opl.man1.pdf + texmf-dist/doc/man/man1/opl2ofm.1 + texmf-dist/doc/man/man1/opl2ofm.man1.pdf + texmf-dist/doc/man/man1/otangle.1 + texmf-dist/doc/man/man1/otangle.man1.pdf + texmf-dist/doc/man/man1/otp2ocp.1 + texmf-dist/doc/man/man1/otp2ocp.man1.pdf + texmf-dist/doc/man/man1/outocp.1 + texmf-dist/doc/man/man1/outocp.man1.pdf + texmf-dist/doc/man/man1/ovf2ovp.1 + texmf-dist/doc/man/man1/ovf2ovp.man1.pdf + texmf-dist/doc/man/man1/ovp2ovf.1 + texmf-dist/doc/man/man1/ovp2ovf.man1.pdf +catalogue-ctan /obsolete/systems/omega +catalogue-date 2017-04-24 05:22:45 +0200 +catalogue-license gpl +catalogue-topics engine omega obsolete + +name omegaware.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of omegaware +containersize 239888 +containerchecksum c9f7d68b913b29493188408fe608066e47f5081686615c60e02bec0ac4130aaaa7e698085dd8ae76e6aa7714015dcfd05e72b18738ce5371d8e909cf53d2e593 +binfiles arch=aarch64-linux size=285 + bin/aarch64-linux/odvicopy + bin/aarch64-linux/odvitype + bin/aarch64-linux/ofm2opl + bin/aarch64-linux/omfonts + bin/aarch64-linux/opl2ofm + bin/aarch64-linux/otangle + bin/aarch64-linux/otp2ocp + bin/aarch64-linux/outocp + bin/aarch64-linux/ovf2ovp + bin/aarch64-linux/ovp2ovf + bin/aarch64-linux/wofm2opl + bin/aarch64-linux/wopl2ofm + bin/aarch64-linux/wovf2ovp + +name omegaware.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of omegaware +containersize 295596 +containerchecksum b040661668fc57bd65cf8e9704b2806f286a5dd84bea89ec52c4241cfe028152b2ef4b8eb2ad5f019ee0ba070823b8837dff1594f10f2e496a95ad631dda9f03 +binfiles arch=amd64-freebsd size=323 + bin/amd64-freebsd/odvicopy + bin/amd64-freebsd/odvitype + bin/amd64-freebsd/ofm2opl + bin/amd64-freebsd/omfonts + bin/amd64-freebsd/opl2ofm + bin/amd64-freebsd/otangle + bin/amd64-freebsd/otp2ocp + bin/amd64-freebsd/outocp + bin/amd64-freebsd/ovf2ovp + bin/amd64-freebsd/ovp2ovf + bin/amd64-freebsd/wofm2opl + bin/amd64-freebsd/wopl2ofm + bin/amd64-freebsd/wovf2ovp + +name omegaware.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of omegaware +containersize 246296 +containerchecksum 70c2f82d9e0446569a79ffd37f6c2a34e665798bdf98a04195c8d8e9370114bf0d47f768bf17ed3aa691db6de57fdb6f3d9d7aa9d3fe07c24f3f4151f72649da +binfiles arch=amd64-netbsd size=337 + bin/amd64-netbsd/odvicopy + bin/amd64-netbsd/odvitype + bin/amd64-netbsd/ofm2opl + bin/amd64-netbsd/omfonts + bin/amd64-netbsd/opl2ofm + bin/amd64-netbsd/otangle + bin/amd64-netbsd/otp2ocp + bin/amd64-netbsd/outocp + bin/amd64-netbsd/ovf2ovp + bin/amd64-netbsd/ovp2ovf + bin/amd64-netbsd/wofm2opl + bin/amd64-netbsd/wopl2ofm + bin/amd64-netbsd/wovf2ovp + +name omegaware.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of omegaware +containersize 195864 +containerchecksum 26990a52c4bc5faeebde553d668c6ad09f94717b4a9a5ccfc332bf3e82338ce934d86d21cd0f239644813f155c0a32e6c5c4847c20df4d7e344ed5293c37a08e +binfiles arch=armhf-linux size=238 + bin/armhf-linux/odvicopy + bin/armhf-linux/odvitype + bin/armhf-linux/ofm2opl + bin/armhf-linux/omfonts + bin/armhf-linux/opl2ofm + bin/armhf-linux/otangle + bin/armhf-linux/otp2ocp + bin/armhf-linux/outocp + bin/armhf-linux/ovf2ovp + bin/armhf-linux/ovp2ovf + bin/armhf-linux/wofm2opl + bin/armhf-linux/wopl2ofm + bin/armhf-linux/wovf2ovp + +name omegaware.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of omegaware +containersize 155076 +containerchecksum 0a75f153c76d8340047f8e63f6857c36a74d63837d4d06a5682c4fa15d58ae2186f04b6d48573ec7a4b27fe98a6239102227289b0495f4a1487f262481bc3819 +binfiles arch=i386-cygwin size=142 + bin/i386-cygwin/odvicopy.exe + bin/i386-cygwin/odvitype.exe + bin/i386-cygwin/ofm2opl + bin/i386-cygwin/omfonts.exe + bin/i386-cygwin/opl2ofm + bin/i386-cygwin/otangle.exe + bin/i386-cygwin/otp2ocp.exe + bin/i386-cygwin/outocp.exe + bin/i386-cygwin/ovf2ovp + bin/i386-cygwin/ovp2ovf + bin/i386-cygwin/wofm2opl.exe + bin/i386-cygwin/wopl2ofm.exe + bin/i386-cygwin/wovf2ovp.exe + +name omegaware.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of omegaware +containersize 219564 +containerchecksum 7b70a13bc01eb9f68508a71982b3f65a7d8d6fdcaf02f4845ac6c77c208688b15250e5c669f0246b3c1adb40e2b5e40152da8754d1466f9c6fe04ca340f1f09d +binfiles arch=i386-freebsd size=252 + bin/i386-freebsd/odvicopy + bin/i386-freebsd/odvitype + bin/i386-freebsd/ofm2opl + bin/i386-freebsd/omfonts + bin/i386-freebsd/opl2ofm + bin/i386-freebsd/otangle + bin/i386-freebsd/otp2ocp + bin/i386-freebsd/outocp + bin/i386-freebsd/ovf2ovp + bin/i386-freebsd/ovp2ovf + bin/i386-freebsd/wofm2opl + bin/i386-freebsd/wopl2ofm + bin/i386-freebsd/wovf2ovp + +name omegaware.i386-linux +category TLCore +revision 50281 +shortdesc i386-linux files of omegaware +containersize 237940 +containerchecksum 9e068216dad1e535f86d6b1f47b8dfc1ce843bf77d8e59ee1d5aded4f51977c73414dea8357b69aafc38b45256bc0bcbc1822fb3848239bc64a6b4ce638dff89 +binfiles arch=i386-linux size=300 + bin/i386-linux/odvicopy + bin/i386-linux/odvitype + bin/i386-linux/ofm2opl + bin/i386-linux/omfonts + bin/i386-linux/opl2ofm + bin/i386-linux/otangle + bin/i386-linux/otp2ocp + bin/i386-linux/outocp + bin/i386-linux/ovf2ovp + bin/i386-linux/ovp2ovf + bin/i386-linux/wofm2opl + bin/i386-linux/wopl2ofm + bin/i386-linux/wovf2ovp + +name omegaware.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of omegaware +containersize 209676 +containerchecksum a21dfdfe4db327961ac06688e626e9c6c884db3e9f80c19f48986de51e27f90617d06653a24afd0af94f44e796e5adc8903c8ac8c2bff74b39ac63caa57c991a +binfiles arch=i386-netbsd size=317 + bin/i386-netbsd/odvicopy + bin/i386-netbsd/odvitype + bin/i386-netbsd/ofm2opl + bin/i386-netbsd/omfonts + bin/i386-netbsd/opl2ofm + bin/i386-netbsd/otangle + bin/i386-netbsd/otp2ocp + bin/i386-netbsd/outocp + bin/i386-netbsd/ovf2ovp + bin/i386-netbsd/ovp2ovf + bin/i386-netbsd/wofm2opl + bin/i386-netbsd/wopl2ofm + bin/i386-netbsd/wovf2ovp + +name omegaware.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of omegaware +containersize 257504 +containerchecksum 25f2e1b994e3d86bde793dd3065843507a5e62b0ac83f8505d0299a938e4f9210cd08e84b015f03843dedc7cdb8f7cc65b498c89d302492ba87785e3d1e56644 +binfiles arch=i386-solaris size=279 + bin/i386-solaris/odvicopy + bin/i386-solaris/odvitype + bin/i386-solaris/ofm2opl + bin/i386-solaris/omfonts + bin/i386-solaris/opl2ofm + bin/i386-solaris/otangle + bin/i386-solaris/otp2ocp + bin/i386-solaris/outocp + bin/i386-solaris/ovf2ovp + bin/i386-solaris/ovp2ovf + bin/i386-solaris/wofm2opl + bin/i386-solaris/wopl2ofm + bin/i386-solaris/wovf2ovp + +name omegaware.win32 +category TLCore +revision 50155 +shortdesc win32 files of omegaware +containersize 170336 +containerchecksum 8f89af667041ca83cf8e0c08197e67716a40ef9d7aed6c8e058f3fa7fbb45be280437701c56bffc80ba69297d2e7568eb4087debe8a9ceb8710a24ace0c2fec2 +binfiles arch=win32 size=184 + bin/win32/odvicopy.exe + bin/win32/odvitype.exe + bin/win32/ofm2opl.exe + bin/win32/omfonts.exe + bin/win32/opl2ofm.exe + bin/win32/otangle.exe + bin/win32/otp2ocp.exe + bin/win32/outocp.exe + bin/win32/ovf2ovp.exe + bin/win32/ovp2ovf.exe + bin/win32/wofm2opl.exe + bin/win32/wopl2ofm.exe + bin/win32/wovf2ovp.exe + +name omegaware.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of omegaware +containersize 183628 +containerchecksum e1e78bbba3c55b2f8c701780c58be18a592bbfa055c0b1b738d4e0bee7d01ce5c6b67bfa934a48251070344991a09e4ae8f034a11ff9cf07023ff1388d6c2ce3 +binfiles arch=x86_64-cygwin size=136 + bin/x86_64-cygwin/odvicopy.exe + bin/x86_64-cygwin/odvitype.exe + bin/x86_64-cygwin/ofm2opl + bin/x86_64-cygwin/omfonts.exe + bin/x86_64-cygwin/opl2ofm + bin/x86_64-cygwin/otangle.exe + bin/x86_64-cygwin/otp2ocp.exe + bin/x86_64-cygwin/outocp.exe + bin/x86_64-cygwin/ovf2ovp + bin/x86_64-cygwin/ovp2ovf + bin/x86_64-cygwin/wofm2opl.exe + bin/x86_64-cygwin/wopl2ofm.exe + bin/x86_64-cygwin/wovf2ovp.exe + +name omegaware.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of omegaware +containersize 268696 +containerchecksum 7232f05aa4b89f06b93894ddfab0c23768eaffc9cd6e2b4f7ed762e7e3ba41a124d51bae221c6dc049044050127d4972eaa4b7c8d829fe4880a82886c130182c +binfiles arch=x86_64-darwin size=280 + bin/x86_64-darwin/odvicopy + bin/x86_64-darwin/odvitype + bin/x86_64-darwin/ofm2opl + bin/x86_64-darwin/omfonts + bin/x86_64-darwin/opl2ofm + bin/x86_64-darwin/otangle + bin/x86_64-darwin/otp2ocp + bin/x86_64-darwin/outocp + bin/x86_64-darwin/ovf2ovp + bin/x86_64-darwin/ovp2ovf + bin/x86_64-darwin/wofm2opl + bin/x86_64-darwin/wopl2ofm + bin/x86_64-darwin/wovf2ovp + +name omegaware.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of omegaware +containersize 255116 +containerchecksum 4d28c6ab07b942c574f895af4d753a87ae89a7fc903201ad10ff546f94feb3470572d7b379b705cd1b85fa7a4784012b4f0f0359a9e9700d8c0aad48e9a5e578 +binfiles arch=x86_64-darwinlegacy size=272 + bin/x86_64-darwinlegacy/odvicopy + bin/x86_64-darwinlegacy/odvitype + bin/x86_64-darwinlegacy/ofm2opl + bin/x86_64-darwinlegacy/omfonts + bin/x86_64-darwinlegacy/opl2ofm + bin/x86_64-darwinlegacy/otangle + bin/x86_64-darwinlegacy/otp2ocp + bin/x86_64-darwinlegacy/outocp + bin/x86_64-darwinlegacy/ovf2ovp + bin/x86_64-darwinlegacy/ovp2ovf + bin/x86_64-darwinlegacy/wofm2opl + bin/x86_64-darwinlegacy/wopl2ofm + bin/x86_64-darwinlegacy/wovf2ovp + +name omegaware.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of omegaware +containersize 255964 +containerchecksum 64e2b21b7749e5ce8bd697c5665c8e77be322a2c8c9489dedb0c93e2203f76d8ed288bdacfa77cd8f8550123d4206a443049b8b565caf5102346e22dc848a05e +binfiles arch=x86_64-linux size=268 + bin/x86_64-linux/odvicopy + bin/x86_64-linux/odvitype + bin/x86_64-linux/ofm2opl + bin/x86_64-linux/omfonts + bin/x86_64-linux/opl2ofm + bin/x86_64-linux/otangle + bin/x86_64-linux/otp2ocp + bin/x86_64-linux/outocp + bin/x86_64-linux/ovf2ovp + bin/x86_64-linux/ovp2ovf + bin/x86_64-linux/wofm2opl + bin/x86_64-linux/wopl2ofm + bin/x86_64-linux/wovf2ovp + +name omegaware.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of omegaware +containersize 274268 +containerchecksum 29b5ea66250f528980d80eed12ebc6ab85641aa6c7e59293efc7f902d75b591fa6655806970b0ee9b723bb53121d777629e79302b005d28597d166dc72038f30 +binfiles arch=x86_64-linuxmusl size=309 + bin/x86_64-linuxmusl/odvicopy + bin/x86_64-linuxmusl/odvitype + bin/x86_64-linuxmusl/ofm2opl + bin/x86_64-linuxmusl/omfonts + bin/x86_64-linuxmusl/opl2ofm + bin/x86_64-linuxmusl/otangle + bin/x86_64-linuxmusl/otp2ocp + bin/x86_64-linuxmusl/outocp + bin/x86_64-linuxmusl/ovf2ovp + bin/x86_64-linuxmusl/ovp2ovf + bin/x86_64-linuxmusl/wofm2opl + bin/x86_64-linuxmusl/wopl2ofm + bin/x86_64-linuxmusl/wovf2ovp + +name omegaware.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of omegaware +containersize 293340 +containerchecksum ce46749fb19be98990c2c616a1457d23bd87ae6184a974d7470c4555bec52b8f8fe5ab0e2978e4c3fc5b252a6eb344c52b1380565bfb7698283f790be7e5cbbc +binfiles arch=x86_64-solaris size=310 + bin/x86_64-solaris/odvicopy + bin/x86_64-solaris/odvitype + bin/x86_64-solaris/ofm2opl + bin/x86_64-solaris/omfonts + bin/x86_64-solaris/opl2ofm + bin/x86_64-solaris/otangle + bin/x86_64-solaris/otp2ocp + bin/x86_64-solaris/outocp + bin/x86_64-solaris/ovf2ovp + bin/x86_64-solaris/ovp2ovf + bin/x86_64-solaris/wofm2opl + bin/x86_64-solaris/wopl2ofm + bin/x86_64-solaris/wovf2ovp + +name onedown +category Package +revision 50104 +shortdesc Typeset Bridge Diagrams +relocated 1 +longdesc This is a comprehensive package to draw all sorts of bridge +longdesc diagrams, including hands (stand alone or arround a compass), +longdesc bidding tables (stand alone or in connection with +longdesc hands/compass), trick tables, and expert quizzes. Features: +longdesc Works for all fontsizes from \ssmall to \HUGE. Different fonts +longdesc for hands, bidding diagrams, compass, etc. are possible. +longdesc Annotations to card and bidding diagrams. Automated check on +longdesc consistency of suit and hands. Multilingual output of bridge +longdesc terms. Extensive documentation: User manual, Reference manual, +longdesc and Examples. +containersize 17336 +containerchecksum e19fb9cccc481df8609b32fe79de5fcf5f963c0908e9ef7316b9d363d66f1e39bc3fcf85df9ca3f280d948b8ed6d59bcd646a1a11647c366a96764f4271153a4 +doccontainersize 2058648 +doccontainerchecksum 89c1065b82d603f3ad337519fc92866686457463152f06fd1c9e2aacc43a6d49cf28c9c2bed11af67d623ec945dfd59269baa5b63a5f3c15bdba682c0fa12894 +docfiles size=535 + RELOC/doc/latex/onedown/README details="Readme" + RELOC/doc/latex/onedown/examples/Bidding.tex + RELOC/doc/latex/onedown/examples/Compass.tex + RELOC/doc/latex/onedown/examples/ExpertQuiz.tex + RELOC/doc/latex/onedown/examples/Hands.tex + RELOC/doc/latex/onedown/examples/Languages.tex + RELOC/doc/latex/onedown/examples/Legends.tex + RELOC/doc/latex/onedown/examples/Play.tex + RELOC/doc/latex/onedown/examples/Select-Hands.tex + RELOC/doc/latex/onedown/examples/Suits.tex + RELOC/doc/latex/onedown/examples/Wrapping.tex + RELOC/doc/latex/onedown/examples/bidAll.tex + RELOC/doc/latex/onedown/examples/bidEW.tex + RELOC/doc/latex/onedown/examples/bidNE.tex + RELOC/doc/latex/onedown/examples/bidNS.tex + RELOC/doc/latex/onedown/examples/bidNW.tex + RELOC/doc/latex/onedown/examples/onedown-examples.pdf details="Examples of use" + RELOC/doc/latex/onedown/examples/onedown-examples.tex + RELOC/doc/latex/onedown/examples/onedown-ref.pdf details="Reference Guide" + RELOC/doc/latex/onedown/examples/onedown-ref.tex + RELOC/doc/latex/onedown/examples/showAll.tex + RELOC/doc/latex/onedown/examples/showNS-align.tex + RELOC/doc/latex/onedown/examples/showNS-warn-I.tex + RELOC/doc/latex/onedown/examples/showNS-warn-II.tex + RELOC/doc/latex/onedown/onedown.pdf details="Package documentation" +srccontainersize 48260 +srccontainerchecksum 6ef509399c88093917715fc32b725d3ee671be045a8ef70ae13a89345a9efd0bdf53698a2b86abbedacc1a4d21e141a363b31b53f70bd9a9c26e11333b698922 +srcfiles size=54 + RELOC/source/latex/onedown/onedown.dtx + RELOC/source/latex/onedown/onedown.ins +runfiles size=35 + RELOC/tex/latex/onedown/ODw-danish.trsl + RELOC/tex/latex/onedown/ODw-dutch.trsl + RELOC/tex/latex/onedown/ODw-english.trsl + RELOC/tex/latex/onedown/ODw-fallback.trsl + RELOC/tex/latex/onedown/ODw-french.trsl + RELOC/tex/latex/onedown/ODw-german.trsl + RELOC/tex/latex/onedown/ODw-norwegian.trsl + RELOC/tex/latex/onedown/ODw-swedish.trsl + RELOC/tex/latex/onedown/ODw-turkish.trsl + RELOC/tex/latex/onedown/onedown.sty +catalogue-ctan /macros/latex/contrib/onedown +catalogue-date 2019-02-23 19:45:42 +0100 +catalogue-license lppl1.3 +catalogue-topics games +catalogue-version 1.3 + +name onlyamsmath +category Package +revision 42927 +shortdesc Inhibit use of non-amsmath mathematics markup when using amsmath +relocated 1 +longdesc This package inhibits the usage of plain TeX and (on demand) of +longdesc standard LaTeX mathematics environments. This is useful for +longdesc class writers who want to encourage their users to use the +longdesc environments provided by the amsmath package. +containersize 1412 +containerchecksum 5452647ee6eb939c292457ee26cb3639560eb55893e44ebbbeaf27ef1c2ed30346d91d733422e65f6780af7c434cf02ac740d722612f888fca8dc45538d81303 +doccontainersize 215088 +doccontainerchecksum 154273f8589b0d8bfa0ed46cfb297d44000eaa750e8d34b1a7aad9f7b26cb19423d7f7ba362e3739cb7d22b2aa077fa44e59d9c46a52db5a82a57659e86a6dcf +docfiles size=57 + RELOC/doc/latex/onlyamsmath/ChangeLog + RELOC/doc/latex/onlyamsmath/Makefile + RELOC/doc/latex/onlyamsmath/README details="Readme" + RELOC/doc/latex/onlyamsmath/onlyamsmath-v.tex + RELOC/doc/latex/onlyamsmath/onlyamsmath.pdf details="Package documentation" + RELOC/doc/latex/onlyamsmath/onlyamsmathtest.tex +srccontainersize 3920 +srccontainerchecksum 2a3568cde9264ed3f074ad47fb5afa22f4c4835c7e0eb53699f691bf4c52b829c31724e56b9bbc84bffab76d425d9fb72b2bbb49ce14ff7cff0d57f538218783 +srcfiles size=4 + RELOC/source/latex/onlyamsmath/onlyamsmath.dtx + RELOC/source/latex/onlyamsmath/onlyamsmath.ins +runfiles size=1 + RELOC/tex/latex/onlyamsmath/onlyamsmath.sty +catalogue-also nag +catalogue-ctan /macros/latex/contrib/onlyamsmath +catalogue-date 2017-01-10 23:29:26 +0100 +catalogue-license lppl +catalogue-topics maths latex-qual +catalogue-version 0.20 + +name onrannual +category Package +revision 17474 +shortdesc Class for Office of Naval Research Ocean Battlespace Sensing annual report +relocated 1 +longdesc This is an unofficial document class for writing ONR annual +longdesc reports using LaTeX; as ONR has had numerous problems with +longdesc LaTeX-generated PDF submissions in the past. A skeleton +longdesc document (and its PDF output) are included. +containersize 3024 +containerchecksum 0c9f717c54d70ad24a1d3b08a6bd44a4e96e932af4d78ba2895f40e16ae5e5b841cd421b71ff3e90490c13e0843d48b8a28efd49b33ee3f74ef9b6476c88f8ae +doccontainersize 155840 +doccontainerchecksum 4a4f46965a0de8ca99585d4af31aa2f0f94e51328c8cf1ed29768bb9e2f8cb7e14d63315a008a1d0446d7496ce4f8abb224946277ddf47223808f8f2277cfb64 +docfiles size=60 + RELOC/doc/latex/onrannual/README details="Readme" + RELOC/doc/latex/onrannual/sample.bib + RELOC/doc/latex/onrannual/samplefigure.eps + RELOC/doc/latex/onrannual/samplefigure.pdf + RELOC/doc/latex/onrannual/skeleton.pdf + RELOC/doc/latex/onrannual/skeleton.tex +runfiles size=2 + RELOC/tex/latex/onrannual/onrannual.cls +catalogue-ctan /macros/latex/contrib/onrannual +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics report-like +catalogue-version 1.1 + +name opcit +category Package +revision 15878 +shortdesc Footnote-style bibliographical references +relocated 1 +longdesc This package addresses the problem of expressing citations in a +longdesc style that is natural for humanities studies, yet does not +longdesc interfere with the flow of text (as author-year styles do). The +longdesc package differs from footbib in that it uses real footnotes, +longdesc potentially in the same series as any of the document's other +longdesc footnotes. Opcit also, as its name implies, avoids repetition +longdesc of full citations, achieving this, to a large extent, +longdesc automatically. +containersize 6916 +containerchecksum 4514d83e3554810da7fec3cc165c89a87a4aef04866755a5b42861b484ffea81bfff694609d18fb5e3bbdacc3723cbed96305ba0c09bc48af92456cef3b7b5a5 +doccontainersize 255312 +doccontainerchecksum 6c4e48aa8ea0dd464d7d2902513b1640437518661e9d7237b958b95ad091053b41c6c5ed4407f9c9d87ff5f0ce0b2bda3a99947d3bb0cf70352d5737419e22aa +docfiles size=76 + RELOC/doc/latex/opcit/README + RELOC/doc/latex/opcit/opcit.pdf details="Package documentation" +srccontainersize 20876 +srccontainerchecksum 031596b3dceeda2782e355e3b19c23a1a31f71295d9ac763055a2ba07eb550a501c9672cbd63929984a3c65108e6084ff6a46fb03e885510e9d696df220b1e70 +srcfiles size=20 + RELOC/source/latex/opcit/opcit.dtx + RELOC/source/latex/opcit/opcit.ins +runfiles size=8 + RELOC/bibtex/bst/opcit/opcit.bst + RELOC/tex/latex/opcit/opcit.sty +catalogue-ctan /macros/latex/contrib/opcit +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics bibtex-supp footnote +catalogue-version 1.1 + +name opensans +category Package +revision 24706 +shortdesc The Open Sans font family, and LaTeX support +relocated 1 +longdesc Open Sans is a humanist sans serif typeface designed by Steve +longdesc Matteson; the font is available from the Google Font Directory +longdesc as TrueType files licensed under the Apache License version +longdesc 2.0. The package provides support for this font family in +longdesc LaTeX. It includes the original TrueType fonts, as well as Type +longdesc 1 versions, converted for this package using FontForge for full +longdesc support with dvips +execute addMap opensans.map +containersize 2056776 +containerchecksum 97e56ffd7429e96e1b418be78ecde059191783df367ad81088a2458ff78b4723d32043e3b0cc22cddc765720da718a105759a6a2bec793fc6bc1b5a4403d4d79 +doccontainersize 620156 +doccontainerchecksum fb581b2b10db0f1f4730b94b91daac6d7c8b5fc2034aeff99a541c5cd3127d9170bd86d25e80a34a5dda49b1b3220088bea6c343f3795a43d83a3b3bdf199f9d +docfiles size=170 + RELOC/doc/fonts/opensans/CHANGES + RELOC/doc/fonts/opensans/README details="Readme" + RELOC/doc/fonts/opensans/manifest.txt + RELOC/doc/fonts/opensans/opensans-samples.pdf details="Font samples" + RELOC/doc/fonts/opensans/opensans-samples.tex + RELOC/doc/fonts/opensans/opensans.pdf details="Package documentation" + RELOC/doc/fonts/opensans/opensans.tex +srccontainersize 9888 +srccontainerchecksum 734eae35aeb0d84c2fb5160752fc95df07f96d512712cd6dc3d89383ce146ebc27b77057e03585e38262a7a7a4ef9f052c60a49024c9661ea48c19d7f880c909 +srcfiles size=44 + RELOC/source/fonts/opensans/Makefile + RELOC/source/fonts/opensans/opensans-01.etx + RELOC/source/fonts/opensans/opensans-02.etx + RELOC/source/fonts/opensans/opensans-03.etx + RELOC/source/fonts/opensans/opensans-04.etx + RELOC/source/fonts/opensans/opensans-drv.tex + RELOC/source/fonts/opensans/opensans-fixcyrillic.mtx + RELOC/source/fonts/opensans/opensans-fixgreek.mtx + RELOC/source/fonts/opensans/opensans-fixlatin.mtx + RELOC/source/fonts/opensans/opensans-fixtextcomp.mtx + RELOC/source/fonts/opensans/opensans-map.tex + RELOC/source/fonts/opensans/opensans-osfigures.etx + RELOC/source/fonts/opensans/ttf2type1.pe +runfiles size=3539 + RELOC/fonts/afm/public/opensans/OpenSans-Bold.afm + RELOC/fonts/afm/public/opensans/OpenSans-BoldItalic.afm + RELOC/fonts/afm/public/opensans/OpenSans-CondLight.afm + RELOC/fonts/afm/public/opensans/OpenSans-CondLightItalic.afm + RELOC/fonts/afm/public/opensans/OpenSans-ExtraBold.afm + RELOC/fonts/afm/public/opensans/OpenSans-ExtraBoldItalic.afm + RELOC/fonts/afm/public/opensans/OpenSans-Italic.afm + RELOC/fonts/afm/public/opensans/OpenSans-Light.afm + RELOC/fonts/afm/public/opensans/OpenSans-LightItalic.afm + RELOC/fonts/afm/public/opensans/OpenSans-Regular.afm + RELOC/fonts/afm/public/opensans/OpenSans-Semibold.afm + RELOC/fonts/afm/public/opensans/OpenSans-SemiboldItalic.afm + RELOC/fonts/enc/dvips/opensans/opensans-01.enc + RELOC/fonts/enc/dvips/opensans/opensans-02.enc + RELOC/fonts/enc/dvips/opensans/opensans-03.enc + RELOC/fonts/enc/dvips/opensans/opensans-04.enc + RELOC/fonts/map/dvips/opensans/opensans.map + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-01.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-02.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-03.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-04.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-OSFigures-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-OSFigures-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-OSFigures-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-OSFigures-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-OSFigures-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-OSFigures-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-OSFigures-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-ts1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Bold-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-01.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-02.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-03.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-04.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-OSFigures-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-OSFigures-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-OSFigures-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-OSFigures-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-OSFigures-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-OSFigures-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-OSFigures-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-ts1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-BoldItalic-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-01.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-02.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-03.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-04.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-OSFigures-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-OSFigures-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-OSFigures-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-OSFigures-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-OSFigures-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-OSFigures-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-OSFigures-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-ts1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLight-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-01.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-02.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-03.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-04.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-OSFigures-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-OSFigures-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-OSFigures-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-OSFigures-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-OSFigures-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-OSFigures-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-OSFigures-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-ts1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-CondLightItalic-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-01.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-02.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-03.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-04.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-OSFigures-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-OSFigures-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-OSFigures-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-OSFigures-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-OSFigures-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-OSFigures-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-OSFigures-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-ts1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBold-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-01.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-02.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-03.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-04.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-ts1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-ExtraBoldItalic-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-01.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-02.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-03.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-04.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-OSFigures-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-OSFigures-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-OSFigures-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-OSFigures-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-OSFigures-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-OSFigures-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-OSFigures-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-ts1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Italic-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-01.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-02.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-03.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-04.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-OSFigures-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-OSFigures-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-OSFigures-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-OSFigures-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-OSFigures-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-OSFigures-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-OSFigures-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-OSFigures-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-OSFigures-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-OSFigures-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-OSFigures-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-OSFigures-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-OSFigures-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-OSFigures-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-ts1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Light-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-01.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-02.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-03.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-04.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-OSFigures-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-OSFigures-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-OSFigures-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-OSFigures-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-OSFigures-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-OSFigures-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-OSFigures-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-ts1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-LightItalic-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-01.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-02.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-03.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-04.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-OSFigures-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-OSFigures-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-OSFigures-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-OSFigures-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-OSFigures-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-OSFigures-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-OSFigures-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-ts1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Regular-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-01.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-02.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-03.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-04.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-OSFigures-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-OSFigures-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-OSFigures-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-OSFigures-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-OSFigures-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-OSFigures-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-OSFigures-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-ts1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-Semibold-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-01.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-02.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-03.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-04.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-OSFigures-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-OSFigures-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-OSFigures-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-OSFigures-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-OSFigures-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-OSFigures-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-OSFigures-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-lgr.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-ot1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-t1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-t2a.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-t2b.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-t2c.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-ts1.tfm + RELOC/fonts/tfm/public/opensans/OpenSans-SemiboldItalic-x2.tfm + RELOC/fonts/truetype/public/opensans/OpenSans-Bold.ttf + RELOC/fonts/truetype/public/opensans/OpenSans-BoldItalic.ttf + RELOC/fonts/truetype/public/opensans/OpenSans-CondLight.ttf + RELOC/fonts/truetype/public/opensans/OpenSans-CondLightItalic.ttf + RELOC/fonts/truetype/public/opensans/OpenSans-ExtraBold.ttf + RELOC/fonts/truetype/public/opensans/OpenSans-ExtraBoldItalic.ttf + RELOC/fonts/truetype/public/opensans/OpenSans-Italic.ttf + RELOC/fonts/truetype/public/opensans/OpenSans-Light.ttf + RELOC/fonts/truetype/public/opensans/OpenSans-LightItalic.ttf + RELOC/fonts/truetype/public/opensans/OpenSans-Regular.ttf + RELOC/fonts/truetype/public/opensans/OpenSans-Semibold.ttf + RELOC/fonts/truetype/public/opensans/OpenSans-SemiboldItalic.ttf + RELOC/fonts/type1/public/opensans/OpenSans-Bold.pfb + RELOC/fonts/type1/public/opensans/OpenSans-BoldItalic.pfb + RELOC/fonts/type1/public/opensans/OpenSans-CondLight.pfb + RELOC/fonts/type1/public/opensans/OpenSans-CondLightItalic.pfb + RELOC/fonts/type1/public/opensans/OpenSans-ExtraBold.pfb + RELOC/fonts/type1/public/opensans/OpenSans-ExtraBoldItalic.pfb + RELOC/fonts/type1/public/opensans/OpenSans-Italic.pfb + RELOC/fonts/type1/public/opensans/OpenSans-Light.pfb + RELOC/fonts/type1/public/opensans/OpenSans-LightItalic.pfb + RELOC/fonts/type1/public/opensans/OpenSans-Regular.pfb + RELOC/fonts/type1/public/opensans/OpenSans-Semibold.pfb + RELOC/fonts/type1/public/opensans/OpenSans-SemiboldItalic.pfb + RELOC/fonts/vf/public/opensans/OpenSans-Bold-OSFigures-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-OSFigures-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-OSFigures-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-OSFigures-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-OSFigures-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-OSFigures-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-OSFigures-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-OSFigures-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-SmallCaps-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-ts1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Bold-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-OSFigures-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-OSFigures-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-OSFigures-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-OSFigures-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-OSFigures-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-OSFigures-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-OSFigures-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-OSFigures-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-SmallCaps-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-ts1.vf + RELOC/fonts/vf/public/opensans/OpenSans-BoldItalic-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-OSFigures-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-OSFigures-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-OSFigures-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-OSFigures-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-OSFigures-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-OSFigures-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-OSFigures-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-OSFigures-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-SmallCaps-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-ts1.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLight-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-OSFigures-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-OSFigures-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-OSFigures-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-OSFigures-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-OSFigures-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-OSFigures-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-OSFigures-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-OSFigures-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-SmallCaps-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-ts1.vf + RELOC/fonts/vf/public/opensans/OpenSans-CondLightItalic-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-OSFigures-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-OSFigures-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-OSFigures-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-OSFigures-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-OSFigures-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-OSFigures-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-OSFigures-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-OSFigures-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-SmallCaps-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-ts1.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBold-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-OSFigures-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-SmallCaps-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-ts1.vf + RELOC/fonts/vf/public/opensans/OpenSans-ExtraBoldItalic-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-OSFigures-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-OSFigures-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-OSFigures-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-OSFigures-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-OSFigures-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-OSFigures-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-OSFigures-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-OSFigures-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-SmallCaps-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-ts1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Italic-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-OSFigures-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-OSFigures-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-OSFigures-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-OSFigures-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-OSFigures-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-OSFigures-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-OSFigures-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-OSFigures-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-OSFigures-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-OSFigures-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-OSFigures-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-OSFigures-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-OSFigures-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-OSFigures-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-SmallCaps-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-ts1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Light-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-OSFigures-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-OSFigures-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-OSFigures-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-OSFigures-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-OSFigures-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-OSFigures-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-OSFigures-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-OSFigures-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-SmallCaps-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-ts1.vf + RELOC/fonts/vf/public/opensans/OpenSans-LightItalic-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-OSFigures-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-OSFigures-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-OSFigures-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-OSFigures-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-OSFigures-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-OSFigures-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-OSFigures-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-OSFigures-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-SmallCaps-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-ts1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Regular-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-OSFigures-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-OSFigures-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-OSFigures-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-OSFigures-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-OSFigures-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-OSFigures-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-OSFigures-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-OSFigures-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-SmallCaps-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-ts1.vf + RELOC/fonts/vf/public/opensans/OpenSans-Semibold-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-OSFigures-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-OSFigures-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-OSFigures-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-OSFigures-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-OSFigures-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-OSFigures-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-OSFigures-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-OSFigures-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-SmallCaps-x2.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-lgr.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-ot1.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-t1.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-t2a.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-t2b.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-t2c.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-ts1.vf + RELOC/fonts/vf/public/opensans/OpenSans-SemiboldItalic-x2.vf + RELOC/tex/latex/opensans/lgrfos.fd + RELOC/tex/latex/opensans/lgrfosj.fd + RELOC/tex/latex/opensans/opensans.sty + RELOC/tex/latex/opensans/ot1fos.fd + RELOC/tex/latex/opensans/ot1fosj.fd + RELOC/tex/latex/opensans/t1fos.fd + RELOC/tex/latex/opensans/t1fosj.fd + RELOC/tex/latex/opensans/t2afos.fd + RELOC/tex/latex/opensans/t2afosj.fd + RELOC/tex/latex/opensans/t2bfos.fd + RELOC/tex/latex/opensans/t2bfosj.fd + RELOC/tex/latex/opensans/t2cfos.fd + RELOC/tex/latex/opensans/t2cfosj.fd + RELOC/tex/latex/opensans/ts1fos.fd + RELOC/tex/latex/opensans/ts1fosj.fd + RELOC/tex/latex/opensans/x2fos.fd + RELOC/tex/latex/opensans/x2fosj.fd +catalogue-ctan /fonts/opensans +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics font font-type1 font-ttf font-sans +catalogue-version 1.2 + +name oplotsymbl +category Package +revision 44951 +shortdesc Some symbols which are not easily available +relocated 1 +longdesc This package is named oPlotSymbl and it includes symbols, which +longdesc are not easily available. Especially, these symbols are used in +longdesc scientific plots, but the potential user is allowed to use them +longdesc in other ways. This package uses TikZ and xcolor. +containersize 4016 +containerchecksum bb894b28fd62f95807bf00856aa2250bbe58b0c1def385d6528b50ba925410ff177ebef97279338bff7ab70db012ba916edad067584989f86797b1fbd7e21863 +doccontainersize 235340 +doccontainerchecksum cd4ceb0b923da7c0f56817602eca672442d03f628440c8beb82c953cf73a9d1bf8e24939a3ba4c813c99b7a2aa98adede0c98b4678b06fffd3f0bdfe8fae52ad +docfiles size=68 + RELOC/doc/latex/oplotsymbl/LICENSE.md + RELOC/doc/latex/oplotsymbl/README.md details="Readme" + RELOC/doc/latex/oplotsymbl/literatur.bib + RELOC/doc/latex/oplotsymbl/oPlotSymbl-Manual-en.pdf details="Package documentation" + RELOC/doc/latex/oplotsymbl/oPlotSymbl-Manual-en.tex +runfiles size=10 + RELOC/tex/latex/oplotsymbl/oplotsymbl.sty +catalogue-also comprehensive +catalogue-contact-repository https://github.com/micheld93/oPlotSymbl-LaTeX +catalogue-ctan /macros/latex/contrib/oplotsymbl +catalogue-date 2017-08-04 18:01:52 +0200 +catalogue-license lppl1.3 +catalogue-topics graphics-symb pgf-tikz +catalogue-version 1.4 + +name opteng +category Package +revision 27331 +shortdesc SPIE Optical Engineering and OE Letters manuscript template +relocated 1 +longdesc With this template, and associated style and LaTeX packages, it +longdesc is possible to estimate the page length of manuscripts for +longdesc submission to the SPIE journals 'Optical Engineering' and +longdesc 'Optical Engineering Letters'. With a strict three-page limit, +longdesc this is particularly important for the latter. The template +longdesc gives simple instructions on how to prepare the manuscript. +containersize 5824 +containerchecksum 1af8edfbde5ac2abae770765a437bb42d5852877438d283d8021493c621e94d09bd62d9012556024ddecbeaddd838b37ae9abd0486d73e2698956ef49ab585e9 +doccontainersize 37400 +doccontainerchecksum b1dc3f9f107e1e8313bfa25b843a4959522eec2e6bc886e8b6271c2175258d7108c824bcbed8d243f0e51b70851e68246fd572bcf6afa6aecdeb86a946bc247e +docfiles size=17 + RELOC/doc/latex/opteng/OptEngInstruct.pdf details="Package documentation" + RELOC/doc/latex/opteng/OptEngInstruct.tex + RELOC/doc/latex/opteng/README details="Readme" +runfiles size=5 + RELOC/tex/latex/opteng/opteng.sty +catalogue-also spie +catalogue-ctan /macros/latex/contrib/opteng +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics journalpub +catalogue-version 1.0 + +name optidef +category Package +revision 50941 +shortdesc Environments for writing optimization problems +relocated 1 +longdesc This small library provides a standard set of environments for +longdesc writing optimization problems. It automatically aligns the +longdesc problems in three points with an optional fourth: Beginning of +longdesc the words "minimize/argmin" and "subject to" The objective +longdesc function and the longest left hand side of the constraints. The +longdesc $= | > | <$ signs of the constraints. Optionally, the user can +longdesc add manually a double align character && to align some common +longdesc constraints feature. A clear example could be the constraints +longdesc names, e.g. (boundary constraint) alignment with (dynamic +longdesc constraint). Furthermore, it provides an easy interface to +longdesc define optimization problem for three different reference +longdesc situations: Where no equation is referenced/numbered. Where the +longdesc problem is referenced with a single number. Where each equation +longdesc has an individual reference. Finally, it also allows a +longdesc definition of any optimization problem without a limitless +longdesc number of constraints. +containersize 4948 +containerchecksum dfd704e585df8d01b279e67ea3a2baba6e86ddb9f38bc9747e370580a5f218e7ae4446d2429fc6bffc605ef0ea56c8077a8f41f3ca6a8e857df29d0e3f328143 +doccontainersize 256448 +doccontainerchecksum 3b80346a15a6e1d7209c3584d4fc9de944c55867ee7f21b018300b87615c0ff4fbe290a8683088c0e81f0eb20cf514f13fba0eb141808d8e5f5986c75bc9546d +docfiles size=71 + RELOC/doc/latex/optidef/README.md details="Readme" + RELOC/doc/latex/optidef/optidef.pdf details="Package documentation" + RELOC/doc/latex/optidef/optidef.tex +runfiles size=7 + RELOC/tex/latex/optidef/optidef.sty +catalogue-contact-bugs https://github.com/jeslago/optidef/issues +catalogue-contact-repository https://github.com/jeslago/optidef +catalogue-ctan /macros/latex/contrib/optidef +catalogue-date 2019-04-23 21:57:10 +0200 +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 3.1 + +name optional +category Package +revision 18131 +shortdesc Facilitate optional printing of parts of a document +relocated 1 +longdesc Optional provides simple, flexible, optional compilation of +longdesc LaTeX documents. Option switches may be given via package +longdesc options, by the \UseOption command, or interactively via the +longdesc \AskOption command (help text may be provided, by defining the +longdesc \ExplainOptions command). The package is not robust, in the way +longdesc that comment package is, against ill-behaved text. In +longdesc particular, verbatim text may not be directly included in +longdesc optional sections (whether they're included or not). +containersize 3352 +containerchecksum 3f6d031b4bf863a339a80c3a05b101393f88dcefb67c61a67e01d9647e74def1fbf30f3d018158a83c8a171b875959bf57d7a3e90dc724c32868f9aafcd5cabd +doccontainersize 295236 +doccontainerchecksum d975e4f1b31e2335e55a41b317096be36161fc36fd589255a461772eb701376ce3fe714d727c4de9663ed8e4300bf0b570855b6b3ccb6b55fccd56206ac69692 +docfiles size=77 + RELOC/doc/latex/optional/optional.pdf details="Package documentation" + RELOC/doc/latex/optional/optional.tex +runfiles size=2 + RELOC/tex/latex/optional/optional.sty +catalogue-ctan /macros/latex/contrib/optional +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics cond-comp editorial +catalogue-version 2.2b + +name options +category Package +revision 39030 +shortdesc Provides convenient key-value options for LaTeX package writers +relocated 1 +longdesc The options package provides easy to use key-value options for +longdesc LaTeX package writers. It has a similar interface as pgfkeys +longdesc with path options but comes with more built-in data types and +longdesc more convenient support for families and searching. +containersize 11224 +containerchecksum 3cdcd07f3c279a601da49a843169f0cb44aea573ac6c1c67a347712e5a087df4b21c6481168407ac6383e8fd5cdc511ea29fd7ec944edd2d514ac88b560633a3 +doccontainersize 223064 +doccontainerchecksum f23bc3575d6c93d056c752c63bb39e3ef9c92de1a90177e204e4d6a1fd90ce8c9afb36e727ac8ce827a59dad96a3b236e5c3c09af081160113cee1b529bc1973 +docfiles size=119 + RELOC/doc/latex/options/README details="Readme" + RELOC/doc/latex/options/options.html + RELOC/doc/latex/options/options.pdf details="Package documentation" +runfiles size=13 + RELOC/tex/latex/options/options.sty +catalogue-also keyval pgfkeys xkeyval +catalogue-ctan /macros/latex/contrib/options +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics keyval +catalogue-version 1.0 + +name ordinalpt +category Package +revision 15878 +shortdesc Counters as ordinal numbers in Portuguese +relocated 1 +longdesc The package provides a counter style (like \arabic, \alph and +longdesc others) which produces as output strings like "primeiro" +longdesc ("first" in Portuguese), "segundo" (second), and so on up to +longdesc 1999th. Separate counter commands are provided for different +longdesc letter case variants, and for masculine and feminine gender +longdesc inflections. +containersize 1900 +containerchecksum c494aee642949d56d8fe4aa28c18e38faf5f66ca8d9f1990419b7197ba6d8547004bb11c3d7b1d63cfcb7414b5c618af81425e4fd61fcf114dc36f9b7fcfb039 +doccontainersize 258992 +doccontainerchecksum dbcad860dd1fcff2e44f568caac9d3d60f4e9ac2312c672b9e9b46f9b31a2498a7e92bd646df8c622b024aefa8f2ecdc9c24e3f95f72f30f1e9b213d6bc4a53b +docfiles size=67 + RELOC/doc/latex/ordinalpt/README details="Readme" + RELOC/doc/latex/ordinalpt/ordinalpt.pdf details="Package documentation" +srccontainersize 4580 +srccontainerchecksum c4264de0f61c1d2abb6785f2a19e76578a154bcdb5314a3016c3a8bf700725294847a482f33095bf7173885e765db2afb4a3a34de3fdeb1d0c2a213c1e60b614 +srcfiles size=5 + RELOC/source/latex/ordinalpt/ordinalpt.dtx + RELOC/source/latex/ordinalpt/ordinalpt.ins +runfiles size=2 + RELOC/tex/latex/ordinalpt/ordinalpt.sty +catalogue-ctan /macros/latex/contrib/ordinalpt +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics numbers portuguese +catalogue-version 2.1 + +name orkhun +category Package +revision 15878 +shortdesc A font for orkhun script +relocated 1 +longdesc The font covers an old Turkic script. It is provided as +longdesc Metafont source. +containersize 2776 +containerchecksum c1e52283e54e4de7caccfe605438e2775ebacc9c3fd21c143e29d7966c591ccc3fba77019e4f9ed9850762a0c80475edb6c9142d7ac2e3ba54007f3dac8b056f +doccontainersize 106092 +doccontainerchecksum ad0c15ca89057f2ff7d43a1bb8ea4513973978e1316e661a0e32ad8fb8005257a634954e85990958ba22360d29eea2d6ea9d87049435416616349874617d9dd0 +docfiles size=42 + RELOC/doc/fonts/orkhun/README_Orkhun.txt + RELOC/doc/fonts/orkhun/rakhimov.pdf details="Package documentation" + RELOC/doc/fonts/orkhun/rakhimov.tex +runfiles size=21 + RELOC/fonts/source/public/orkhun/orhant.mf + RELOC/fonts/source/public/orkhun/orhant11.mf + RELOC/fonts/source/public/orkhun/orhant14.mf + RELOC/fonts/source/public/orkhun/orhant16.mf + RELOC/fonts/source/public/orkhun/orhant20.mf + RELOC/fonts/source/public/orkhun/orhant25.mf + RELOC/fonts/tfm/public/orkhun/orhant11.tfm + RELOC/fonts/tfm/public/orkhun/orhant14.tfm + RELOC/fonts/tfm/public/orkhun/orhant16.tfm + RELOC/fonts/tfm/public/orkhun/orhant20.tfm + RELOC/fonts/tfm/public/orkhun/orhant25.tfm +catalogue-ctan /fonts/orkhun +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics turkish + +name oscola +category Package +revision 49772 +shortdesc BibLaTeX style for the Oxford Standard for the Citation of Legal Authorities +relocated 1 +longdesc The package provides a set of style files for use with BibLaTeX +longdesc (v 2+) and Biber (v 1+) to produce citations and bibliographies +longdesc in accordance with the widely-used Oxford Standard for the +longdesc Citation of Legal Authorities. It also includes facilities for +longdesc constructing tables of cases and legislation from citations (in +longdesc conjunction with appropriate indexing packages). +containersize 22596 +containerchecksum 849e2daf4a7a48c6a2371b01392726c28d55d4da7ab7fdecdba545d9a9f8a7c2b026e856cdb3ff1104c1872584d6f180d5ee3e272c8b2adc3325a846a8c0478f +doccontainersize 651060 +doccontainerchecksum 3d38a95beb8d399e33d6c9e1674410f14d7941fcd83524b658373d06c897e8bc5474eaf32063077b4a9ee9e5db4055bdf908ab8574b74e44b04dc1977714c1e7 +docfiles size=203 + RELOC/doc/latex/oscola/README.md details="Readme" + RELOC/doc/latex/oscola/oscola.pdf details="Package documentation" + RELOC/doc/latex/oscola/oscola.tex +runfiles size=55 + RELOC/makeindex/oscola/oscola.ist + RELOC/tex/latex/oscola/american-oscola.lbx + RELOC/tex/latex/oscola/british-oscola.lbx + RELOC/tex/latex/oscola/english-oscola.lbx + RELOC/tex/latex/oscola/oscola.bbx + RELOC/tex/latex/oscola/oscola.cbx +catalogue-ctan /macros/latex/contrib/biblatex-contrib/oscola +catalogue-date 2019-01-20 10:41:30 +0100 +catalogue-license lppl1.3 +catalogue-topics legal biblatex +catalogue-version 1.6 + +name ot-tableau +category Package +revision 44889 +shortdesc Optimality Theory tableaux in LaTeX +relocated 1 +longdesc The package makes it easy to create beautiful +longdesc optimality-theoretic tableaux. The LaTeX source is visually +longdesc very similar to a formatted tableau, which makes working with +longdesc the source code painless (well, less painful). A variety of +longdesc stylistic variants are available to suit personal taste. +containersize 2096 +containerchecksum f3240c0688276ab6537201b20d6eee422a795d5d994c6bc8eab3f275a037e7adcec7e54c9500a3a5a6d2fe237b44b0b350a7ce6f72c7012bb48a69c9c43f2fca +doccontainersize 81048 +doccontainerchecksum 396256f0ce1bda04fe1c84cb45928d82651b4f6363928e33bf092737ee6ab224f473567aa5432fa00a8e4cfd9b5a3f7e7ad8448090afaaaf89f97b33ff695876 +docfiles size=25 + RELOC/doc/latex/ot-tableau/README details="Readme" + RELOC/doc/latex/ot-tableau/ot-tableau.pdf details="Package documentation" + RELOC/doc/latex/ot-tableau/ot-tableau.tex +runfiles size=2 + RELOC/tex/latex/ot-tableau/ot-tableau.sty +catalogue-ctan /macros/latex/contrib/ot-tableau +catalogue-date 2017-07-25 17:13:01 +0200 +catalogue-license lppl +catalogue-topics linguistic + +name othello +category Package +revision 15878 +shortdesc Modification of a Go package to create othello boards +relocated 1 +longdesc A package (based on Kolodziejska's go), and fonts (as Metafont +longdesc source) are provided. +containersize 5456 +containerchecksum cddd446d5b63ed22ebc4e561e43fa8b4b1ab2cdb1ecc45ab98e60d6799646845a9d432aa45248e7cf70bfc4aea10cd42960a8846479df46a7cd701f792b4ca74 +doccontainersize 12056 +doccontainerchecksum 8ba85bf32ff739e4588512c2b33bf242b00e3f38a7ddb1b3f5582cd19b925e1adf52b4243857f1ef4b9d8198e8dc80a9aff8a63a7b3ff926978dc7e5c81262de +docfiles size=14 + RELOC/doc/latex/othello/boards.tex + RELOC/doc/latex/othello/ot.bat + RELOC/doc/latex/othello/ot1.bat.bat + RELOC/doc/latex/othello/othello.tex +runfiles size=41 + RELOC/fonts/source/public/othello/ot.mf + RELOC/fonts/source/public/othello/ot10.mf + RELOC/fonts/source/public/othello/ot15.mf + RELOC/fonts/source/public/othello/ot1bla10.mf + RELOC/fonts/source/public/othello/ot1bla15.mf + RELOC/fonts/source/public/othello/ot1bla20.mf + RELOC/fonts/source/public/othello/ot1black.mf + RELOC/fonts/source/public/othello/ot1neu.mf + RELOC/fonts/source/public/othello/ot1neu10.mf + RELOC/fonts/source/public/othello/ot1neu15.mf + RELOC/fonts/source/public/othello/ot1neu20.mf + RELOC/fonts/source/public/othello/ot1whi10.mf + RELOC/fonts/source/public/othello/ot1whi15.mf + RELOC/fonts/source/public/othello/ot1whi20.mf + RELOC/fonts/source/public/othello/ot1white.mf + RELOC/fonts/tfm/public/othello/ot10.tfm + RELOC/fonts/tfm/public/othello/ot15.tfm + RELOC/fonts/tfm/public/othello/ot1bla10.tfm + RELOC/fonts/tfm/public/othello/ot1bla15.tfm + RELOC/fonts/tfm/public/othello/ot1bla20.tfm + RELOC/fonts/tfm/public/othello/ot1neu10.tfm + RELOC/fonts/tfm/public/othello/ot1neu15.tfm + RELOC/fonts/tfm/public/othello/ot1neu20.tfm + RELOC/fonts/tfm/public/othello/ot1whi10.tfm + RELOC/fonts/tfm/public/othello/ot1whi15.tfm + RELOC/fonts/tfm/public/othello/ot1whi20.tfm + RELOC/tex/latex/othello/othello.sty +catalogue-ctan /macros/latex/contrib/othello +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics games font font-mf font-specialist + +name othelloboard +category Package +revision 23714 +shortdesc Typeset Othello (Reversi) diagrams of any size, with annotations +relocated 1 +longdesc The package enables the user to generate high-quality Othello +longdesc (also known as Reversi) board diagrams of any size. The +longdesc diagrams support annotations, including full game transcripts. +longdesc Automated board or transcript creation, from plain text formats +longdesc standard to WZebra (and other programs) is also supported. +containersize 6276 +containerchecksum c975c73b8737f008b7f31af86e6c8a89de3f907c6fe782f075b04819bd936da3853a8ecf15935c04970777a4873b5baa38f9c675cc8943190df84ddc511dedba +doccontainersize 209224 +doccontainerchecksum af025805142a845bde22a5fe095fb96cd533d69c50bfcea8716dd7d61fc95c41727c16127c2f2b60c5bf2b55870d698db54d307c2b025aff3e251419ed58a3ce +docfiles size=76 + RELOC/doc/latex/othelloboard/README details="Readme" + RELOC/doc/latex/othelloboard/example-rose-chps1-2.pdf details="Usage example" + RELOC/doc/latex/othelloboard/example-rose-chps1-2.tex + RELOC/doc/latex/othelloboard/othelloboard.pdf details="Package documentation" + RELOC/doc/latex/othelloboard/othelloboard.tex +runfiles size=18 + RELOC/tex/latex/othelloboard/othelloboard.sty +catalogue-also othello +catalogue-ctan /macros/latex/contrib/othelloboard +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics games +catalogue-version 1.2 + +name otibet +category Package +revision 45777 +shortdesc support for Tibetan using Omega +relocated 1 +containersize 96688 +containerchecksum 8fdc06f22bc9d25b61cb7b3b151919b7d2d6cf3d78f3cfe5a11284d9246acb858410ccab56996cd521eb98518be9c232a4c8e0f8ebbe52d7e93c510e3a0ac070 +doccontainersize 21248 +doccontainerchecksum 96f9d64c8f668f67afe20dad97d1cd3cfec19df3300204831fbfe0d245c1e15d8d0cea48bb94fb002cfa18db45d3ade730848908b0d77b867fff7557b0fb826f +docfiles size=26 + RELOC/doc/latex/otibet/README + RELOC/doc/latex/otibet/allbasic-mule.tex + RELOC/doc/latex/otibet/allbasic.dvi + RELOC/doc/latex/otibet/allbasic.tex + RELOC/doc/latex/otibet/otibet-mule.tex + RELOC/doc/latex/otibet/testtib.tex + RELOC/doc/latex/otibet/tiblatex.dvi + RELOC/doc/latex/otibet/tiblatex.tex + RELOC/doc/latex/otibet/unidoc.dvi + RELOC/doc/latex/otibet/unidoc.tex + RELOC/doc/latex/otibet/yugpacan.dvi + RELOC/doc/latex/otibet/yugpacan.tex +srccontainersize 19456 +srccontainerchecksum 4b51b49e3d3a802a3a19aea604a63f1e9503f7d9d86c81200dc5e2f2051b06e184add9292321f4895905a07595de6771eeda2463ae0c1b096a98f2d2fd210721 +srcfiles size=31 + RELOC/source/latex/otibet/Makefile + RELOC/source/latex/otibet/allbasic.odvi + RELOC/source/latex/otibet/convnum.scm + RELOC/source/latex/otibet/generate-otp.el + RELOC/source/latex/otibet/oct2otp.c + RELOC/source/latex/otibet/pl2ovp.scm + RELOC/source/latex/otibet/tibetan.pl + RELOC/source/latex/otibet/tiblatex.odvi + RELOC/source/latex/otibet/tibovp.scm + RELOC/source/latex/otibet/unidoc.odvi + RELOC/source/latex/otibet/yugpacan.odvi +runfiles size=175 + RELOC/fonts/ofm/public/otibet/otibetan.ofm + RELOC/fonts/ovf/public/otibet/otibetan.ovf + RELOC/fonts/ovp/public/otibet/otibetan.ovp + RELOC/fonts/source/public/otibet/bzrsetup.mf + RELOC/fonts/source/public/otibet/tibetan.mf + RELOC/fonts/tfm/public/otibet/tibetan.tfm + RELOC/omega/ocp/otibet/tibadjusttsheg.ocp + RELOC/omega/ocp/otibet/tibinunicode.ocp + RELOC/omega/ocp/otibet/tibinwylie.ocp + RELOC/omega/ocp/otibet/tibout.ocp + RELOC/omega/ocp/otibet/tibspecial.ocp + RELOC/omega/ocp/otibet/tibuniuni.ocp + RELOC/omega/ocp/otibet/tibvowel.ocp + RELOC/omega/otp/otibet/tibadjusttsheg.otp + RELOC/omega/otp/otibet/tibetan-mule2uni-old.otp + RELOC/omega/otp/otibet/tibetan-mule2uni.otp + RELOC/omega/otp/otibet/tibinunicode.otp + RELOC/omega/otp/otibet/tibinwylie.otp + RELOC/omega/otp/otibet/tibout.otp + RELOC/omega/otp/otibet/tibshow.otp + RELOC/omega/otp/otibet/tibspecial.otp + RELOC/omega/otp/otibet/tibuniuni.otp + RELOC/omega/otp/otibet/tibvowel.otp + RELOC/tex/latex/otibet/ot1tib.fd + RELOC/tex/latex/otibet/otibet.sty + RELOC/tex/latex/otibet/otibet.tex + RELOC/tex/latex/otibet/t1tib.fd + +name oubraces +category Package +revision 21833 +shortdesc Braces over and under a formula +relocated 1 +longdesc Provides a means to interleave \overbrace and \underbrace in +longdesc the same formula. +containersize 1660 +containerchecksum 8a0a6e0648cc3dd9a342a960dec6512fc9153a083c8fc74eb08c4e0f46d091e5f2c71bdb69bae80fc13a857175ec6bab4b18cc81a0963d794028f4faedd0def3 +doccontainersize 60352 +doccontainerchecksum c97f91df77f64d824605c56669136585b94d95031ed5a4a67f3404c54b2c96f32bafaecc06d114755d0e65c3fcd0379d63f28f94aa32ccb8d23730f5f3eaf63c +docfiles size=19 + RELOC/doc/latex/oubraces/oubraces.pdf details="Package documentation" + RELOC/doc/latex/oubraces/oubraces.tex +runfiles size=1 + RELOC/tex/latex/oubraces/oubraces.sty +catalogue-ctan /macros/latex/contrib/oubraces +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics maths + +name outline +category Package +revision 18360 +shortdesc List environment for making outlines +relocated 1 +longdesc The package defines an outline environment, which provides +longdesc facilities similar to enumerate, but up to 6 levels deep. +containersize 1528 +containerchecksum ccfb49c4e035f0d246f00aae56efa9d6570ad3997c44e2bf70588ce67a0bc3fb7bccff19b65629fb27158b0156a9802d97ea1f8edf6f4494f644f40df5d97118 +doccontainersize 234580 +doccontainerchecksum 301ad12a8f964a7dab05b208649c74ad39a64264f113963ebf36dbf83c90ed8ed042d8cc15f626f6081bd41f51d66dec592eaadabec32c65a0d67d15e8ead37a +docfiles size=66 + RELOC/doc/latex/outline/README details="Readme" + RELOC/doc/latex/outline/outline-sample.tex + RELOC/doc/latex/outline/outline.pdf details="Package documentation" + RELOC/doc/latex/outline/outline.tex +runfiles size=1 + RELOC/tex/latex/outline/outline.sty +catalogue-ctan /macros/latex/contrib/outline +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics list list-enum + +name outliner +category Package +revision 21095 +shortdesc Change section levels easily +relocated 1 +longdesc Allows you to write "\Level 2 {Some heading}" instead of the +longdesc usual \section stuff; the definitions of the levels can then +longdesc easily be changed. There is a mechanism for shifting all +longdesc levels. This makes it easy to bundle existing articles into a +longdesc compilation. +containersize 3380 +containerchecksum 9251cb4154042c7620f545b2fb305cb996af9ff51c44259287a1f5ec490cd83bfb82321c4d8512ca2d22e5d2a7409ac5dad9f7a7d51f38a76bfe77faf2ca4af2 +doccontainersize 964 +doccontainerchecksum 024095493b4b7301597798285afbdaca9fad291dffec9707b82da9f23b1ee0585345e4f201d6b322a1a65ceb6f703ab5430d14973c3fb25970b04d2785ebb9d2 +docfiles size=1 + RELOC/doc/latex/outliner/outline_test.tex +runfiles size=3 + RELOC/tex/latex/outliner/outliner.sty +catalogue-ctan /macros/latex/contrib/outliner +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics headings +catalogue-version 0.94 + +name outlines +category Package +revision 25192 +shortdesc Produce "outline" lists +relocated 1 +longdesc Defines an outline environment, which allows outline-style +longdesc indented lists with freely mixed levels up to four levels deep. +longdesc It replaces the nested begin/end pairs by different item tags +longdesc \1 to \4 for each nesting level. This is very convenient in +longdesc cases where nested lists are used a lot, such as for to-do +longdesc lists or presentation slides. +containersize 2044 +containerchecksum 1611e4ba3b8fe21db83a542da9d7e0c3431330bc24e3733d28c8c5b3172ce3e4b46ff5b7dda41f95b4edb6502236f6d558608487ac47f8726420a2afafed75db +doccontainersize 130384 +doccontainerchecksum bdc507a3f3cb966d03df37d9385145811c5750bce6341935231ae987b0a30dd65424a1bbb772920586721e25711caa429cd6d8b8149088f753f36b9dd69ddaac +docfiles size=37 + RELOC/doc/latex/outlines/README details="Readme" + RELOC/doc/latex/outlines/outlines.pdf details="Package documentation" + RELOC/doc/latex/outlines/outlines.tex +runfiles size=2 + RELOC/tex/latex/outlines/outlines.sty +catalogue-ctan /macros/latex/contrib/outlines +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics list +catalogue-version 1.1 + +name outlining +category Package +revision 45601 +shortdesc Create outlines for scientific documents +relocated 1 +longdesc Every scientifc document requires outlining before it is +longdesc written. This package adds simple macros for your LaTeX +longdesc document. +containersize 1304 +containerchecksum 0d2b7dbe710d1ccd54a70cfbf6464a3ee5ad0fab8ccfa61306d5d5d83252c0f3b64f1caba6b5e8e75f7e6237fdfc675981acb67fbb730282978071e76e92ee40 +doccontainersize 138744 +doccontainerchecksum c083046671d159fc118f25e56ba34d04f8011e0c49169920fe679ffcb78d93e52a6f8bb5bcfb34c47f0b23f73579519c431976229ef143a31ab059cde6dd64ce +docfiles size=38 + RELOC/doc/latex/outlining/README.md details="Readme" + RELOC/doc/latex/outlining/outlining.pdf details="Package documentation" +srccontainersize 2504 +srccontainerchecksum 8a2f640df3572a5cb8336342b49035ad97513ac97eb87483a73c0d41ef4b98e2ec39b994f9a7005c7c6cdc2564aa55fdd8cc0e34bd79b189882df34ab10e6cb0 +srcfiles size=3 + RELOC/source/latex/outlining/outlining.dtx + RELOC/source/latex/outlining/outlining.ins +runfiles size=1 + RELOC/tex/latex/outlining/outlining.sty +catalogue-contact-announce https://github.com/dimitriblock/latex-outlining/releases +catalogue-contact-bugs https://github.com/dimitriblock/latex-outlining/issues +catalogue-contact-repository https://github.com/dimitriblock/latex-outlining +catalogue-ctan /macros/latex/contrib/outlining +catalogue-date 2017-10-27 05:58:14 +0200 +catalogue-license lppl1.3 +catalogue-topics outline +catalogue-version 0.1 + +name overlays +category Package +revision 46122 +shortdesc Incremental slides +relocated 1 +longdesc The overlay package allows to write presentations with +longdesc incremental slides. It does not presuppose any specific +longdesc document class. Rather, it is a lightweight alternative to +longdesc full-fledged presentation classes like beamer. The package +longdesc requires xcolor, environ, and pgffor (from the pgf bundle). +containersize 2440 +containerchecksum 6ee154baa88428dfa149de77fa12e9d37ba6e5dda7c54f5e7f28b9d274be7457ae9a71484f3cc588a0797d4209bdef37a15de9e3175f0708711a54a845274084 +doccontainersize 105112 +doccontainerchecksum 3e9962fb56116a4cfbaf0e54e95a3129aa2414be617a12cda9b0d6199afa24021ab9fb1f8d5ddbad8edd7af915c1b80ee42504ab7873385a391916c96fefd6c8 +docfiles size=36 + RELOC/doc/latex/overlays/COPYING + RELOC/doc/latex/overlays/ChangeLog + RELOC/doc/latex/overlays/README details="Readme" + RELOC/doc/latex/overlays/overlays.pdf details="Package documentation" + RELOC/doc/latex/overlays/overlays.tex + RELOC/doc/latex/overlays/sample.pdf details="Example of use" + RELOC/doc/latex/overlays/sample.tex +runfiles size=2 + RELOC/tex/latex/overlays/overlays.sty +catalogue-also beamer +catalogue-ctan /macros/latex/contrib/overlays +catalogue-date 2017-12-22 07:37:34 +0100 +catalogue-license lppl1.3 +catalogue-topics presentation +catalogue-version 2.10 + +name overlock +category Package +revision 34409 +shortdesc Overlook sans fonts with LaTeX support +relocated 1 +longdesc The package provides the Overlock and OverlockSC families of +longdesc fonts, designed by Dario Manuel Muhafara of the TIPO foundry +longdesc (http://www.tipo.net.ar) are "rounded" sans-serif fonts in +longdesc three weights (Regular, Bold, Black) with italic variants for +longdesc each of them. There are also small-caps and old-style figures +longdesc in the Regular weight. +execute addMap overlock.map +containersize 530796 +containerchecksum f3abad88638095f426cc8d078d40b27b4a1516816f9eb0de9636606a770017ef21fbaa3d52ef068aeec46772f7c984849e2b89e63aab7b9572741670bf6293de +doccontainersize 42360 +doccontainerchecksum 284e78ffc1647100bbbeaf594dcdafe7a898b389c75761a766304c4d77d6d9ec167e1f83593960d975fa028b21c35a077c283e9e131559c16af35f0fd03c1c62 +docfiles size=14 + RELOC/doc/fonts/overlock/License.txt + RELOC/doc/fonts/overlock/README details="Readme" + RELOC/doc/fonts/overlock/overlock-samples.pdf details="Package documentation" + RELOC/doc/fonts/overlock/overlock-samples.tex +runfiles size=270 + RELOC/fonts/enc/dvips/overlock/ovlk_47cn4f.enc + RELOC/fonts/enc/dvips/overlock/ovlk_aqjbqj.enc + RELOC/fonts/enc/dvips/overlock/ovlk_fvk6cm.enc + RELOC/fonts/enc/dvips/overlock/ovlk_irzqhk.enc + RELOC/fonts/enc/dvips/overlock/ovlk_k6z3ge.enc + RELOC/fonts/enc/dvips/overlock/ovlk_u2ziis.enc + RELOC/fonts/enc/dvips/overlock/ovlk_y3zmsf.enc + RELOC/fonts/enc/dvips/overlock/ovlk_yaegef.enc + RELOC/fonts/map/dvips/overlock/overlock.map + RELOC/fonts/tfm/muhafara/overlock/Overlock-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Black-lf-ly1.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Black-lf-ot1.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Black-lf-t1--base.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Black-lf-t1.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Black-lf-ts1.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-BlackItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-BlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-BlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-BlackItalic-lf-t1.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-BlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Bold-lf-ly1.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Bold-lf-ot1.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Bold-lf-t1.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Bold-lf-ts1.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Italic-lf-ly1.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Italic-lf-ot1.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Italic-lf-t1.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Italic-lf-ts1.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Regular-lf-ly1.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Regular-lf-ot1.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Regular-lf-t1.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/muhafara/overlock/Overlock-Regular-lf-ts1.tfm + RELOC/fonts/tfm/muhafara/overlock/OverlockSC-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/muhafara/overlock/OverlockSC-Regular-lf-ly1.tfm + RELOC/fonts/tfm/muhafara/overlock/OverlockSC-Regular-lf-ot1.tfm + RELOC/fonts/tfm/muhafara/overlock/OverlockSC-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/muhafara/overlock/OverlockSC-Regular-lf-t1.tfm + RELOC/fonts/tfm/muhafara/overlock/OverlockSC-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/muhafara/overlock/OverlockSC-Regular-lf-ts1.tfm + RELOC/fonts/truetype/muhafara/overlock/Overlock-Black.ttf + RELOC/fonts/truetype/muhafara/overlock/Overlock-BlackItalic.ttf + RELOC/fonts/truetype/muhafara/overlock/Overlock-Bold.ttf + RELOC/fonts/truetype/muhafara/overlock/Overlock-BoldItalic.ttf + RELOC/fonts/truetype/muhafara/overlock/Overlock-Italic.ttf + RELOC/fonts/truetype/muhafara/overlock/Overlock-Regular.ttf + RELOC/fonts/truetype/muhafara/overlock/OverlockSC-Regular.ttf + RELOC/fonts/type1/muhafara/overlock/Overlock-Black.pfb + RELOC/fonts/type1/muhafara/overlock/Overlock-BlackItalic.pfb + RELOC/fonts/type1/muhafara/overlock/Overlock-Bold.pfb + RELOC/fonts/type1/muhafara/overlock/Overlock-BoldItalic.pfb + RELOC/fonts/type1/muhafara/overlock/Overlock-Italic.pfb + RELOC/fonts/type1/muhafara/overlock/Overlock-Regular.pfb + RELOC/fonts/type1/muhafara/overlock/OverlockSC-Regular.pfb + RELOC/fonts/vf/muhafara/overlock/Overlock-Black-lf-ly1.vf + RELOC/fonts/vf/muhafara/overlock/Overlock-Black-lf-t1.vf + RELOC/fonts/vf/muhafara/overlock/Overlock-Black-lf-ts1.vf + RELOC/fonts/vf/muhafara/overlock/Overlock-BlackItalic-lf-ly1.vf + RELOC/fonts/vf/muhafara/overlock/Overlock-BlackItalic-lf-t1.vf + RELOC/fonts/vf/muhafara/overlock/Overlock-BlackItalic-lf-ts1.vf + RELOC/fonts/vf/muhafara/overlock/Overlock-Bold-lf-ly1.vf + RELOC/fonts/vf/muhafara/overlock/Overlock-Bold-lf-t1.vf + RELOC/fonts/vf/muhafara/overlock/Overlock-Bold-lf-ts1.vf + RELOC/fonts/vf/muhafara/overlock/Overlock-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/muhafara/overlock/Overlock-BoldItalic-lf-t1.vf + RELOC/fonts/vf/muhafara/overlock/Overlock-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/muhafara/overlock/Overlock-Italic-lf-ly1.vf + RELOC/fonts/vf/muhafara/overlock/Overlock-Italic-lf-t1.vf + RELOC/fonts/vf/muhafara/overlock/Overlock-Italic-lf-ts1.vf + RELOC/fonts/vf/muhafara/overlock/Overlock-Regular-lf-ly1.vf + RELOC/fonts/vf/muhafara/overlock/Overlock-Regular-lf-t1.vf + RELOC/fonts/vf/muhafara/overlock/Overlock-Regular-lf-ts1.vf + RELOC/fonts/vf/muhafara/overlock/OverlockSC-Regular-lf-ly1.vf + RELOC/fonts/vf/muhafara/overlock/OverlockSC-Regular-lf-t1.vf + RELOC/fonts/vf/muhafara/overlock/OverlockSC-Regular-lf-ts1.vf + RELOC/tex/latex/overlock/LY1Overlock-LF.fd + RELOC/tex/latex/overlock/LY1OverlockSC-LF.fd + RELOC/tex/latex/overlock/OT1Overlock-LF.fd + RELOC/tex/latex/overlock/OT1OverlockSC-LF.fd + RELOC/tex/latex/overlock/T1Overlock-LF.fd + RELOC/tex/latex/overlock/T1OverlockSC-LF.fd + RELOC/tex/latex/overlock/TS1Overlock-LF.fd + RELOC/tex/latex/overlock/TS1OverlockSC-LF.fd + RELOC/tex/latex/overlock/overlock.sty +catalogue-ctan /fonts/overlock +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license ofl +catalogue-topics font font-sans font-ttf font-type1 + +name overpic +category Package +revision 48550 +shortdesc Combine LaTeX commands over included graphics +relocated 1 +longdesc The overpic environment is a cross between the LaTeX picture +longdesc environment and the \includegraphics command of graphicx. The +longdesc resulting picture environment has the same dimensions as the +longdesc included graphic. LaTeX commands can be placed on the graphic +longdesc at defined positions; a grid for orientation is available. +containersize 1756 +containerchecksum 2f5d8f46c4997a5eca5f82901727dc1ed790a6a2d55cd7aac45605d444191dd022c22bb7e120fd45f318fc0949dcde07e154c81f4e0c0bc3b9720cc99024dddf +doccontainersize 348652 +doccontainerchecksum a4b721ebdfd6fc38559407c902599be2599c4887a28fabb976ba0525ab8d6e17ab9fd5470b11f1b70618365182012152f5bfd0d9308395db98f868addc8cee73 +docfiles size=87 + RELOC/doc/latex/overpic/README.de.md details="Readme (German)" language="de" + RELOC/doc/latex/overpic/README.md details="Readme (English)" language="en" + RELOC/doc/latex/overpic/overpic.pdf details="Documentation" language="en" +srccontainersize 4768 +srccontainerchecksum 58ba7aaa6fab2bdcd55fa3cfffc0c18ffc029bf1fd0caa122f61fa6a67ff9e9dae0be3db916705fdd60dec84f7a14f89583d0400dfcd979df59cc463357fbabd +srcfiles size=5 + RELOC/source/latex/overpic/overpic.dtx + RELOC/source/latex/overpic/overpic.ins +runfiles size=1 + RELOC/tex/latex/overpic/overpic.sty +catalogue-contact-bugs https://github.com/rolfn/overpic/issues +catalogue-contact-home https://github.com/rolfn/overpic +catalogue-contact-repository https://github.com/rolfn/overpic +catalogue-ctan /macros/latex/contrib/overpic +catalogue-date 2018-09-02 16:18:17 +0200 +catalogue-license lppl1.3 +catalogue-topics graphics-text +catalogue-version 1.2 + +name pacioli +category Package +revision 24947 +shortdesc Fonts designed by Fra Luca de Pacioli in 1497 +relocated 1 +longdesc Pacioli was a c.15 mathematician, and his font was designed +longdesc according to 'the divine proportion'. The font is uppercase +longdesc letters together with punctuation and some analphabetics; no +longdesc lowercase or digits. The Metafont source is distributed in a +longdesc .dtx file, together with LaTeX support. +containersize 14936 +containerchecksum a82b391630b5f572d8ded331ae98f480fb0cf7f3eaefdcab3100bc839e2b026f012320e334e82d04e01a27657f36927a4d1570086899ad637f8c47ddd0f22b2f +doccontainersize 26000 +doccontainerchecksum fa911ec25c0d6cfa62a2d5396aedf893b9078604611ae5d34b06f24740f65fd62895e4d53a10931071d19ddd24244e3c7ee9893f4eff03efd0920fd1c1626610 +docfiles size=58 + RELOC/doc/fonts/pacioli/README details="Readme" + RELOC/doc/fonts/pacioli/tryfont.ps details="Font sample" + RELOC/doc/fonts/pacioli/tryfont.tex +srccontainersize 20624 +srccontainerchecksum d9347b85cd548f5861b83ef2f213760805c3cb76fe0313f02935bf28baae72caf2d548459aed2acb7ad5061e49c6e6694e46e88bccc1164e83f63a6f97045d04 +srcfiles size=23 + RELOC/source/fonts/pacioli/pacioli.dtx + RELOC/source/fonts/pacioli/pacioli.ins +runfiles size=23 + RELOC/fonts/source/public/pacioli/cpclig.mf + RELOC/fonts/source/public/pacioli/cpcpunct.mf + RELOC/fonts/source/public/pacioli/cpcr10.mf + RELOC/fonts/source/public/pacioli/cpcromanp.mf + RELOC/fonts/source/public/pacioli/cpcromanu.mf + RELOC/fonts/source/public/pacioli/cpcsl10.mf + RELOC/fonts/source/public/pacioli/cpctitle.mf + RELOC/fonts/tfm/public/pacioli/cpcr10.tfm + RELOC/fonts/tfm/public/pacioli/cpcsl10.tfm + RELOC/tex/latex/pacioli/ot1cpc.fd + RELOC/tex/latex/pacioli/pacioli.sty + RELOC/tex/latex/pacioli/t1cpc.fd +catalogue-ctan /fonts/pacioli +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font font-mf font-historical + +name padauk +category Package +revision 42617 +shortdesc A high-quality TrueType font that supports the many diverse languages that use the Myanmar script +relocated 1 +longdesc Padauk is a Unicode-based font family with broad support for +longdesc writing systems that use the Myanmar script. +containersize 206092 +containerchecksum fec57c3e7bd299671ae8d6489723a4d33c54b11223f5f37f3f3b3cc148fcbb6d9a9aa46587ab83e414221cde3a7d0e4493877d90e9536952d9069a4cec7c758f +doccontainersize 10652 +doccontainerchecksum ffa9d45c971b7fe4fbc55644be4093268f842e13a2ffb1713be401cc88934dae86f012741951f30580a94a57f35b85cac9525869e0abca5601278d48a19782c0 +docfiles size=11 + RELOC/doc/fonts/padauk/FONTLOG.txt + RELOC/doc/fonts/padauk/OFL-FAQ.txt + RELOC/doc/fonts/padauk/OFL.txt + RELOC/doc/fonts/padauk/README details="Readme" + RELOC/doc/fonts/padauk/README.TEXLIVE +runfiles size=418 + RELOC/fonts/truetype/public/padauk/Padauk-Bold.ttf + RELOC/fonts/truetype/public/padauk/Padauk-Regular.ttf + RELOC/fonts/truetype/public/padauk/PadaukBook-Bold.ttf + RELOC/fonts/truetype/public/padauk/PadaukBook-Regular.ttf +catalogue-contact-home http://software.sil.org/padauk/ +catalogue-ctan /fonts/padauk +catalogue-date 2018-01-07 12:14:32 +0100 +catalogue-license ofl +catalogue-topics font-ttf +catalogue-version 3.002 + +name padcount +category Package +revision 47621 +shortdesc Pad numbers with arbitrary characters +relocated 1 +longdesc This package provides some simple macros which will pad numbers +longdesc (or, indeed, any expanded token) with your choice of character +longdesc (defaulting to "0") to your choice of number of places +longdesc (defaults to "2"). This works not only on arabic numerals, but +longdesc on any expanded list of tokens passed to it. This makes it +longdesc suitable for, among other things, counters of all kinds. +containersize 1360 +containerchecksum 9378dbaa1d3a569a3cb4bd70fa1b5a6dcdb0fe089d3a2c3eecef4cfdb776607f42b7fb018461c00781f8b022dd962e790146297f5df29889db13794e25c1cbb0 +doccontainersize 147788 +doccontainerchecksum 68ffec3a80473b3b2899ae262fcbca47198c61bf1363b9c167986cc95214c778fdd49ed65e8fda8f15d48d3d9941ac54c6660f28729dda176123fa1b3f7e8631 +docfiles size=42 + RELOC/doc/latex/padcount/CHANGES + RELOC/doc/latex/padcount/README details="Readme" + RELOC/doc/latex/padcount/lppl.txt + RELOC/doc/latex/padcount/padcount.pdf details="Package documentation" +srccontainersize 2952 +srccontainerchecksum 088fd314ec5717f6b40f66762af47a32eb01f40259948945b48bfde12923474cbf0a7aa8389b4ea83127915782bffab4d9cc0be40d2f7d752dca734b0fc0b62e +srcfiles size=3 + RELOC/source/latex/padcount/padcount.dtx + RELOC/source/latex/padcount/padcount.ins +runfiles size=1 + RELOC/tex/latex/padcount/padcount.sty +catalogue-ctan /macros/latex/contrib/padcount +catalogue-date 2018-05-07 04:39:01 +0200 +catalogue-license lppl1.3c +catalogue-topics numbers +catalogue-version 1.0 + +name pagecolor +category Package +revision 44487 +shortdesc Interrogate page colour +relocated 1 +longdesc This package provides the command \thepagecolor, which gives +longdesc the current page (background) colour, i. e. the argument used +longdesc with the most recent call of \pagecolor{...}. The command +longdesc \thepagecolornone gives the same colour as \thepagecolor, +longdesc except when the page background colour is "none" (e.g., as a +longdesc result of using the \nopagecolor command). In that case +longdesc \thepagecolor is "white" and \thepagecolornone is "none". +containersize 3192 +containerchecksum 6df1ddc270fa99a658d2ffe94b29e31e54e665b3c3c41c8c1f992adb8453f5bb6b59356c2ef049ac4679f4e996a6888911e5c8c5d92500df0a3f53d5a11f5fb1 +doccontainersize 407548 +doccontainerchecksum c63adfeddcd00a7d738fd74c047b034d4a88264185d519d4891a429b82c62f20dc28196e1657e1c7c1dd3fa8a570d5a66e6af3aed5c78ca851ec40153f2396e3 +docfiles size=104 + RELOC/doc/latex/pagecolor/README details="Readme" + RELOC/doc/latex/pagecolor/pagecolor-example.pdf details="Example" + RELOC/doc/latex/pagecolor/pagecolor-example.tex + RELOC/doc/latex/pagecolor/pagecolor.pdf details="Package documentation" +srccontainersize 12008 +srccontainerchecksum 2cb9a6c424ec6b1a649a592a51d4c06f67685042da8cba22ac088ca962ecbd2b93806a962409ea94f28e9183cebc02d7e2b9ee298d645a330fab8722534ecebc +srcfiles size=15 + RELOC/source/latex/pagecolor/pagecolor.drv + RELOC/source/latex/pagecolor/pagecolor.dtx + RELOC/source/latex/pagecolor/pagecolor.ins +runfiles size=3 + RELOC/tex/latex/pagecolor/pagecolor.sty +catalogue-ctan /macros/latex/contrib/pagecolor +catalogue-date 2017-05-29 13:22:07 +0200 +catalogue-license lppl1.3c +catalogue-topics colour +catalogue-version 1.0i + +name pagecont +category Package +revision 15878 +shortdesc Page numbering that continues between documents +relocated 1 +longdesc The package provides the facility that several documents can be +longdesc typeset independently with page numbers in sequence, as if they +longdesc were a single document. +containersize 1344 +containerchecksum 53b0f558c6198181349a66b39f0b54108a931279766882bfb713390e79ad0f62218ed841416e143c6909161ffec548592ffccb337505eba61f643a05d49f1fa6 +doccontainersize 73804 +doccontainerchecksum 634110b7cde040e5ae7be237abd6817055f7886d9fed5ce1a00b5ea93e9bc885f0c15398c280abe8472e27ce89aade2a827e66fc041081c8d31cdaf7755119bc +docfiles size=22 + RELOC/doc/latex/pagecont/README details="Readme" + RELOC/doc/latex/pagecont/pagecont.pdf details="Package documentation" +srccontainersize 2920 +srccontainerchecksum 86417ff0f398efbf5b6abf2272df933734724a7d94f93d0a94704c393e195ca0a5828698d4d91527fe1bb0d70a26af49998513f0e9d80e1b8966239555a3dfab +srcfiles size=3 + RELOC/source/latex/pagecont/pagecont.dtx + RELOC/source/latex/pagecont/pagecont.ins +runfiles size=1 + RELOC/tex/latex/pagecont/pagecont.sty +catalogue-ctan /macros/latex/contrib/pagecont +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics page-nos +catalogue-version 1.0 + +name pagenote +category Package +revision 15878 +shortdesc Notes at end of document +relocated 1 +longdesc The pagenote package provides tagged notes on a separate page +longdesc (also known as 'end notes'). Unless the memoir class is used, +longdesc the package requires the ifmtarg package. +containersize 2020 +containerchecksum f1db9829d909add12458cd17771136ef642b5655b03779c8b2fa46cf25afcb8843d91de331737f8f6537e7afc5f2dfd275926e6f4502c8022b0472d61b433b1e +doccontainersize 138600 +doccontainerchecksum b57cbcef6a6ecec75b351f6a3dc09f0422873155a8f90819dc4dd2caf60cd562a21de7ce62b241259c2f0dc3889c0deceb25c00f7f3d8764a90f5861c8e8c1ee +docfiles size=40 + RELOC/doc/latex/pagenote/README details="Readme" + RELOC/doc/latex/pagenote/pagenote.pdf details="Package documentation" +srccontainersize 7888 +srccontainerchecksum 3a7f4cdfa5839de85f476c3f059847ba05f7e5eb10ef4f5d951ac4e07a33091c4ccda5570dea1bf47fbc7f15272ca411afd68197fba56c9ec133d163671483db +srcfiles size=7 + RELOC/source/latex/pagenote/pagenote.dtx + RELOC/source/latex/pagenote/pagenote.ins +runfiles size=2 + RELOC/tex/latex/pagenote/pagenote.sty +catalogue-also endnote +catalogue-ctan /macros/latex/contrib/pagenote +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics notes +catalogue-version 1.1a + +name pagerange +category Package +revision 16915 +shortdesc Flexible and configurable page range typesetting +relocated 1 +longdesc The package defines a command \pagerange that typesets ranges +longdesc of page numbers, expanding them (e.g., adding first or last +longdesc page numbers) and standardising them. +containersize 3932 +containerchecksum 9216d443f44deba5cfc4ce04174031cae55f2adffa0f3400bf3f315c3b9003d1ee015fb6df69cb2cba23eb117f2ed191b7033ad46a51bc718260a44778783c47 +doccontainersize 81944 +doccontainerchecksum 862ed02746c6d91a2b8d9e19bb2e943e251dd18f0d94562bce9cc9e8ad603f7554e77ccfa2485b9a4eb7a2d6d5185756985f104d870e95823a4b33072f24bc9b +docfiles size=27 + RELOC/doc/latex/pagerange/README details="Readme" + RELOC/doc/latex/pagerange/pagerange-guide.pdf details="Samples of usage" + RELOC/doc/latex/pagerange/pagerange-guide.tex +runfiles size=3 + RELOC/tex/latex/pagerange/pagerange-guide.cfg + RELOC/tex/latex/pagerange/pagerange.sty +catalogue-ctan /macros/latex/contrib/pagerange +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics label-ref macro-supp +catalogue-version 0.5 + +name pageslts +category Package +revision 39164 +shortdesc Variants of last page labels +relocated 1 +longdesc The package was designed as an extension of the lastpage +longdesc package -- as well as that package's LastPage label (created +longdesc \AtEndDocument) it adds a VeryLastPage (created +longdesc \AfterLastShipout). When more than one page numbering scheme is +longdesc in operation (as in a book class document with frontmatter), +longdesc the labels above do not give the total number of pages, so the +longdesc package also provides labels pagesLTS., where +longdesc the numbering scheme is arabic, roman, etc. The package relies +longdesc on the undolabl package. +containersize 9820 +containerchecksum 7db146bce45ee5ceeec5904e8f3ed6efe0010885b657b0f74546644c3ce2a018deafa95a11390da3d8a62eef16508b82c3efa9d02ac1662cbed18e905cf869b5 +doccontainersize 933088 +doccontainerchecksum 58fe6250af4ecdd6d62c231778c89e0b049995feface3af66dc73b920f4dcdca8838d3274a7648caf2b38746fbdaaddd1b4f87577c77dabad2096e9c8b681619 +docfiles size=244 + RELOC/doc/latex/pageslts/README details="Readme" + RELOC/doc/latex/pageslts/pageslts-example.pdf details="Package examples" + RELOC/doc/latex/pageslts/pageslts-example.tex + RELOC/doc/latex/pageslts/pageslts.pdf details="Package documentation" +srccontainersize 40972 +srccontainerchecksum 99db221ae4c7795ca4093b7708aac14fededf3c55aaf314433602906d8b0f3d9c074fc0b8cc6807474e81e510f35bca486db3aa525e95a5486c7ff379cdd5e18 +srcfiles size=56 + RELOC/source/latex/pageslts/pageslts.drv + RELOC/source/latex/pageslts/pageslts.dtx + RELOC/source/latex/pageslts/pageslts.ins +runfiles size=12 + RELOC/tex/latex/pageslts/pageslts.sty +catalogue-ctan /macros/latex/contrib/pageslts +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics label-ref +catalogue-version 1.2f + +name palatino +category Package +revision 31835 +catalogue urw-base35 +shortdesc URW "Base 35" font pack for LaTeX +relocated 1 +longdesc A set of fonts for use as "drop-in" replacements for Adobe's +longdesc basic set, comprising: Century Schoolbook (substituting for +longdesc Adobe's New Century Schoolbook); Dingbats (substituting for +longdesc Adobe's Zapf Dingbats); Nimbus Mono L (substituting for Abobe's +longdesc Courier); Nimbus Roman No9 L (substituting for Adobe's Times); +longdesc Nimbus Sans L (substituting for Adobe's Helvetica); Standard +longdesc Symbols L (substituting for Adobe's Symbol); URW Bookman; URW +longdesc Chancery L Medium Italic (substituting for Adobe's Zapf +longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant +longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). +execute addMap upl.map +containersize 325820 +containerchecksum f21fdeb0423853294f52427bbe1477bbfd49b1a6255bed5f561dfa2156cf8309b2f71d2c09ad74bd64bc1fd69fc73816e3d84e72d975db5925d4c3c4db6fe8ca +runfiles size=388 + RELOC/dvips/palatino/config.upl + RELOC/fonts/afm/adobe/palatino/pplb8a.afm + RELOC/fonts/afm/adobe/palatino/pplbi8a.afm + RELOC/fonts/afm/adobe/palatino/pplr8a.afm + RELOC/fonts/afm/adobe/palatino/pplri8a.afm + RELOC/fonts/afm/urw/palatino/uplb8a.afm + RELOC/fonts/afm/urw/palatino/uplbi8a.afm + RELOC/fonts/afm/urw/palatino/uplr8a.afm + RELOC/fonts/afm/urw/palatino/uplri8a.afm + RELOC/fonts/map/dvips/palatino/upl.map + RELOC/fonts/tfm/adobe/palatino/eurbo10.tfm + RELOC/fonts/tfm/adobe/palatino/eurmo10.tfm + RELOC/fonts/tfm/adobe/palatino/pplb.tfm + RELOC/fonts/tfm/adobe/palatino/pplb7t.tfm + RELOC/fonts/tfm/adobe/palatino/pplb8c.tfm + RELOC/fonts/tfm/adobe/palatino/pplb8r.tfm + RELOC/fonts/tfm/adobe/palatino/pplb8t.tfm + RELOC/fonts/tfm/adobe/palatino/pplb9c.tfm + RELOC/fonts/tfm/adobe/palatino/pplb9d.tfm + RELOC/fonts/tfm/adobe/palatino/pplb9e.tfm + RELOC/fonts/tfm/adobe/palatino/pplb9o.tfm + RELOC/fonts/tfm/adobe/palatino/pplb9t.tfm + RELOC/fonts/tfm/adobe/palatino/pplbc.tfm + RELOC/fonts/tfm/adobe/palatino/pplbc7t.tfm + RELOC/fonts/tfm/adobe/palatino/pplbc8t.tfm + RELOC/fonts/tfm/adobe/palatino/pplbi.tfm + RELOC/fonts/tfm/adobe/palatino/pplbi7t.tfm + RELOC/fonts/tfm/adobe/palatino/pplbi8c.tfm + RELOC/fonts/tfm/adobe/palatino/pplbi8r.tfm + RELOC/fonts/tfm/adobe/palatino/pplbi8t.tfm + RELOC/fonts/tfm/adobe/palatino/pplbi9c.tfm + RELOC/fonts/tfm/adobe/palatino/pplbi9d.tfm + RELOC/fonts/tfm/adobe/palatino/pplbi9e.tfm + RELOC/fonts/tfm/adobe/palatino/pplbi9o.tfm + RELOC/fonts/tfm/adobe/palatino/pplbi9t.tfm + RELOC/fonts/tfm/adobe/palatino/pplbij8r.tfm + RELOC/fonts/tfm/adobe/palatino/pplbj8r.tfm + RELOC/fonts/tfm/adobe/palatino/pplbo.tfm + RELOC/fonts/tfm/adobe/palatino/pplbo7t.tfm + RELOC/fonts/tfm/adobe/palatino/pplbo8c.tfm + RELOC/fonts/tfm/adobe/palatino/pplbo8r.tfm + RELOC/fonts/tfm/adobe/palatino/pplbo8t.tfm + RELOC/fonts/tfm/adobe/palatino/pplbu.tfm + RELOC/fonts/tfm/adobe/palatino/pplbu8r.tfm + RELOC/fonts/tfm/adobe/palatino/pplr.tfm + RELOC/fonts/tfm/adobe/palatino/pplr7t.tfm + RELOC/fonts/tfm/adobe/palatino/pplr8c.tfm + RELOC/fonts/tfm/adobe/palatino/pplr8r.tfm + RELOC/fonts/tfm/adobe/palatino/pplr8rn.tfm + RELOC/fonts/tfm/adobe/palatino/pplr8t.tfm + RELOC/fonts/tfm/adobe/palatino/pplr9c.tfm + RELOC/fonts/tfm/adobe/palatino/pplr9d.tfm + RELOC/fonts/tfm/adobe/palatino/pplr9e.tfm + RELOC/fonts/tfm/adobe/palatino/pplr9o.tfm + RELOC/fonts/tfm/adobe/palatino/pplr9t.tfm + RELOC/fonts/tfm/adobe/palatino/pplrc.tfm + RELOC/fonts/tfm/adobe/palatino/pplrc7t.tfm + RELOC/fonts/tfm/adobe/palatino/pplrc8r.tfm + RELOC/fonts/tfm/adobe/palatino/pplrc8t.tfm + RELOC/fonts/tfm/adobe/palatino/pplrc9d.tfm + RELOC/fonts/tfm/adobe/palatino/pplrc9e.tfm + RELOC/fonts/tfm/adobe/palatino/pplrc9o.tfm + RELOC/fonts/tfm/adobe/palatino/pplrc9t.tfm + RELOC/fonts/tfm/adobe/palatino/pplri.tfm + RELOC/fonts/tfm/adobe/palatino/pplri7t.tfm + RELOC/fonts/tfm/adobe/palatino/pplri8c.tfm + RELOC/fonts/tfm/adobe/palatino/pplri8r.tfm + RELOC/fonts/tfm/adobe/palatino/pplri8t.tfm + RELOC/fonts/tfm/adobe/palatino/pplri9c.tfm + RELOC/fonts/tfm/adobe/palatino/pplri9d.tfm + RELOC/fonts/tfm/adobe/palatino/pplri9e.tfm + RELOC/fonts/tfm/adobe/palatino/pplri9o.tfm + RELOC/fonts/tfm/adobe/palatino/pplri9t.tfm + RELOC/fonts/tfm/adobe/palatino/pplrij8r.tfm + RELOC/fonts/tfm/adobe/palatino/pplro.tfm + RELOC/fonts/tfm/adobe/palatino/pplro7t.tfm + RELOC/fonts/tfm/adobe/palatino/pplro8c.tfm + RELOC/fonts/tfm/adobe/palatino/pplro8r.tfm + RELOC/fonts/tfm/adobe/palatino/pplro8t.tfm + RELOC/fonts/tfm/adobe/palatino/pplrr8re.tfm + RELOC/fonts/tfm/adobe/palatino/pplrre.tfm + RELOC/fonts/tfm/adobe/palatino/pplrrn.tfm + RELOC/fonts/tfm/adobe/palatino/pplru.tfm + RELOC/fonts/tfm/adobe/palatino/pplru8r.tfm + RELOC/fonts/tfm/adobe/palatino/zppleb7m.tfm + RELOC/fonts/tfm/adobe/palatino/zppleb7t.tfm + RELOC/fonts/tfm/adobe/palatino/zppleb7y.tfm + RELOC/fonts/tfm/adobe/palatino/zppler7m.tfm + RELOC/fonts/tfm/adobe/palatino/zppler7t.tfm + RELOC/fonts/tfm/adobe/palatino/zppler7v.tfm + RELOC/fonts/tfm/adobe/palatino/zppler7y.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplb7t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplb8c.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplb8r.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplb8t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplbc7t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplbc8t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplbi7t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplbi8c.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplbi8r.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplbi8t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplbo7t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplbo8c.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplbo8r.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplbo8t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplr7t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplr8c.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplr8r.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplr8t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplrc7t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplrc8t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplri7t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplri8c.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplri8r.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplri8t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplro7t.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplro8c.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplro8r.tfm + RELOC/fonts/tfm/urw35vf/palatino/uplro8t.tfm + RELOC/fonts/type1/urw/palatino/uplb8a.pfb + RELOC/fonts/type1/urw/palatino/uplb8a.pfm + RELOC/fonts/type1/urw/palatino/uplbi8a.pfb + RELOC/fonts/type1/urw/palatino/uplbi8a.pfm + RELOC/fonts/type1/urw/palatino/uplr8a.pfb + RELOC/fonts/type1/urw/palatino/uplr8a.pfm + RELOC/fonts/type1/urw/palatino/uplri8a.pfb + RELOC/fonts/type1/urw/palatino/uplri8a.pfm + RELOC/fonts/vf/adobe/palatino/pplb.vf + RELOC/fonts/vf/adobe/palatino/pplb7t.vf + RELOC/fonts/vf/adobe/palatino/pplb8c.vf + RELOC/fonts/vf/adobe/palatino/pplb8t.vf + RELOC/fonts/vf/adobe/palatino/pplb9c.vf + RELOC/fonts/vf/adobe/palatino/pplb9d.vf + RELOC/fonts/vf/adobe/palatino/pplb9e.vf + RELOC/fonts/vf/adobe/palatino/pplb9o.vf + RELOC/fonts/vf/adobe/palatino/pplb9t.vf + RELOC/fonts/vf/adobe/palatino/pplbc.vf + RELOC/fonts/vf/adobe/palatino/pplbc7t.vf + RELOC/fonts/vf/adobe/palatino/pplbc8t.vf + RELOC/fonts/vf/adobe/palatino/pplbi.vf + RELOC/fonts/vf/adobe/palatino/pplbi7t.vf + RELOC/fonts/vf/adobe/palatino/pplbi8c.vf + RELOC/fonts/vf/adobe/palatino/pplbi8t.vf + RELOC/fonts/vf/adobe/palatino/pplbi9c.vf + RELOC/fonts/vf/adobe/palatino/pplbi9d.vf + RELOC/fonts/vf/adobe/palatino/pplbi9e.vf + RELOC/fonts/vf/adobe/palatino/pplbi9o.vf + RELOC/fonts/vf/adobe/palatino/pplbi9t.vf + RELOC/fonts/vf/adobe/palatino/pplbo.vf + RELOC/fonts/vf/adobe/palatino/pplbo7t.vf + RELOC/fonts/vf/adobe/palatino/pplbo8c.vf + RELOC/fonts/vf/adobe/palatino/pplbo8t.vf + RELOC/fonts/vf/adobe/palatino/pplbu.vf + RELOC/fonts/vf/adobe/palatino/pplr.vf + RELOC/fonts/vf/adobe/palatino/pplr7t.vf + RELOC/fonts/vf/adobe/palatino/pplr8c.vf + RELOC/fonts/vf/adobe/palatino/pplr8t.vf + RELOC/fonts/vf/adobe/palatino/pplr9c.vf + RELOC/fonts/vf/adobe/palatino/pplr9d.vf + RELOC/fonts/vf/adobe/palatino/pplr9e.vf + RELOC/fonts/vf/adobe/palatino/pplr9o.vf + RELOC/fonts/vf/adobe/palatino/pplr9t.vf + RELOC/fonts/vf/adobe/palatino/pplrc.vf + RELOC/fonts/vf/adobe/palatino/pplrc7t.vf + RELOC/fonts/vf/adobe/palatino/pplrc8t.vf + RELOC/fonts/vf/adobe/palatino/pplrc9d.vf + RELOC/fonts/vf/adobe/palatino/pplrc9e.vf + RELOC/fonts/vf/adobe/palatino/pplrc9o.vf + RELOC/fonts/vf/adobe/palatino/pplrc9t.vf + RELOC/fonts/vf/adobe/palatino/pplri.vf + RELOC/fonts/vf/adobe/palatino/pplri7t.vf + RELOC/fonts/vf/adobe/palatino/pplri8c.vf + RELOC/fonts/vf/adobe/palatino/pplri8t.vf + RELOC/fonts/vf/adobe/palatino/pplri9c.vf + RELOC/fonts/vf/adobe/palatino/pplri9d.vf + RELOC/fonts/vf/adobe/palatino/pplri9e.vf + RELOC/fonts/vf/adobe/palatino/pplri9o.vf + RELOC/fonts/vf/adobe/palatino/pplri9t.vf + RELOC/fonts/vf/adobe/palatino/pplro.vf + RELOC/fonts/vf/adobe/palatino/pplro7t.vf + RELOC/fonts/vf/adobe/palatino/pplro8c.vf + RELOC/fonts/vf/adobe/palatino/pplro8t.vf + RELOC/fonts/vf/adobe/palatino/pplrre.vf + RELOC/fonts/vf/adobe/palatino/pplrrn.vf + RELOC/fonts/vf/adobe/palatino/pplru.vf + RELOC/fonts/vf/adobe/palatino/zppleb7m.vf + RELOC/fonts/vf/adobe/palatino/zppleb7t.vf + RELOC/fonts/vf/adobe/palatino/zppleb7y.vf + RELOC/fonts/vf/adobe/palatino/zppler7m.vf + RELOC/fonts/vf/adobe/palatino/zppler7t.vf + RELOC/fonts/vf/adobe/palatino/zppler7v.vf + RELOC/fonts/vf/adobe/palatino/zppler7y.vf + RELOC/fonts/vf/urw35vf/palatino/uplb7t.vf + RELOC/fonts/vf/urw35vf/palatino/uplb8c.vf + RELOC/fonts/vf/urw35vf/palatino/uplb8t.vf + RELOC/fonts/vf/urw35vf/palatino/uplbc7t.vf + RELOC/fonts/vf/urw35vf/palatino/uplbc8t.vf + RELOC/fonts/vf/urw35vf/palatino/uplbi7t.vf + RELOC/fonts/vf/urw35vf/palatino/uplbi8c.vf + RELOC/fonts/vf/urw35vf/palatino/uplbi8t.vf + RELOC/fonts/vf/urw35vf/palatino/uplbo7t.vf + RELOC/fonts/vf/urw35vf/palatino/uplbo8c.vf + RELOC/fonts/vf/urw35vf/palatino/uplbo8t.vf + RELOC/fonts/vf/urw35vf/palatino/uplr7t.vf + RELOC/fonts/vf/urw35vf/palatino/uplr8c.vf + RELOC/fonts/vf/urw35vf/palatino/uplr8t.vf + RELOC/fonts/vf/urw35vf/palatino/uplrc7t.vf + RELOC/fonts/vf/urw35vf/palatino/uplrc8t.vf + RELOC/fonts/vf/urw35vf/palatino/uplri7t.vf + RELOC/fonts/vf/urw35vf/palatino/uplri8c.vf + RELOC/fonts/vf/urw35vf/palatino/uplri8t.vf + RELOC/fonts/vf/urw35vf/palatino/uplro7t.vf + RELOC/fonts/vf/urw35vf/palatino/uplro8c.vf + RELOC/fonts/vf/urw35vf/palatino/uplro8t.vf + RELOC/tex/latex/palatino/8rupl.fd + RELOC/tex/latex/palatino/omlupl.fd + RELOC/tex/latex/palatino/omsupl.fd + RELOC/tex/latex/palatino/ot1upl.fd + RELOC/tex/latex/palatino/t1upl.fd + RELOC/tex/latex/palatino/ts1upl.fd +catalogue-also tex-gyre +catalogue-ctan /fonts/urw/base35 +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics font font-type1 font-collection + +name paper +category Package +revision 34521 +shortdesc Versions of article class, tuned for scholarly publications +relocated 1 +longdesc A pair of classes derived from article, tuned for producing +longdesc papers for journals. The classes introduce new layout options +longdesc and font commands for sections/parts, and define a new keywords +longdesc environment, subtitle and institution commands for the title +longdesc section and new commands for revisions. +containersize 8144 +containerchecksum 484964a6da8fffb001e29b471f7c9fa52d2f1aecf66da8f9365376b987c79e8e39cdede0f0d61977381aea78f9e6429216c0cc2eaa67a831e4f1ace29e2c9503 +doccontainersize 128876 +doccontainerchecksum 2fd771d5f1035cb48c0a4de89f1174a988b3b8254caf535ca75633efe2ddc0483d095a720a9dae93aa7e832b0d4e63bc49cbdcd801e4190209f56bb0632c5aa6 +docfiles size=43 + RELOC/doc/latex/paper/README details="Readme" + RELOC/doc/latex/paper/install + RELOC/doc/latex/paper/journal1.tex + RELOC/doc/latex/paper/journal2.tex + RELOC/doc/latex/paper/local.tex + RELOC/doc/latex/paper/paper.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/paper/testj.tex + RELOC/doc/latex/paper/testp.tex +srccontainersize 16644 +srccontainerchecksum 74ad404eaa44a523f97d245d6ccada1546d9c991bfc64186ab1ee7f6efdecddf87897d7e64136c0285e4d6541f1bf164173efb020adc113893d8e9309a687967 +srcfiles size=18 + RELOC/source/latex/paper/paper.drv + RELOC/source/latex/paper/paper.dtx +runfiles size=12 + RELOC/tex/latex/paper/journal.cls + RELOC/tex/latex/paper/journal.sty + RELOC/tex/latex/paper/paper.cls + RELOC/tex/latex/paper/paper.sty +catalogue-ctan /macros/latex/contrib/paper +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license gpl +catalogue-topics journalpub +catalogue-version 1.0l + +name papercdcase +category Package +revision 15878 +shortdesc Origami-style folding paper CD case +relocated 1 +longdesc This package implements a LaTeX style file to produce +longdesc origami-style folding paper CD cases. +containersize 3824 +containerchecksum 8f2c923e72c7f16b394222ad86bc3f07304e6c39965473482c708b15574b0475af6eb6aaa085b94be6b0ddcce3324cd5639a8317caad55844998868ff18f0e73 +doccontainersize 131280 +doccontainerchecksum 01d43ccf0be5caa114f1b406e5cd4c1f8f44f06ea92e6d3fc999a5bc71e911d6c99dbcb8a1b9c49105b978d0d36e6ad2642f73446e3ba6a55edb11f82f40638a +docfiles size=39 + RELOC/doc/latex/papercdcase/example.tex + RELOC/doc/latex/papercdcase/interactive.tex + RELOC/doc/latex/papercdcase/papercdcase.pdf details="Package documentation" +srccontainersize 10444 +srccontainerchecksum 7bce5742cc7504e789011ec877fc2a934300b0edfa2e6b8f89d625184e5dd0c8cc6116aae7701c313e133d8669522c1414a2a16d11e7e6eec0d1c7112fc44d56 +srcfiles size=12 + RELOC/source/latex/papercdcase/papercdcase.dtx + RELOC/source/latex/papercdcase/papercdcase.ins +runfiles size=6 + RELOC/tex/latex/papercdcase/papercdcase.sty +catalogue-ctan /macros/latex/contrib/papercdcase +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics covers + +name papermas +category Package +revision 23667 +shortdesc Compute the mass of a printed version of a document +relocated 1 +longdesc The package computes the number of sheets of paper used by, and +longdesc hence the mass of a document. This is useful (for example) when +longdesc calculating postal charges. +containersize 3648 +containerchecksum b5ef2975638a8eb48e7aa9fee72024eaf5695ee3133a35a4326461de03e04b750ac90e0874de232176435e0855807aaa074e6555f3368fee55fcaf61e6abb552 +doccontainersize 409740 +doccontainerchecksum 2d0a43fd05efe6c96a7852f35c560b77b9461e005432f972a9896184831fb81f72946956f3aefd115ca0f5fbbf684ab615d50a7ab98a5e09a190b72a08e56793 +docfiles size=108 + RELOC/doc/latex/papermas/README details="Readme" + RELOC/doc/latex/papermas/papermas-example.pdf details="Package examples" + RELOC/doc/latex/papermas/papermas-example.tex + RELOC/doc/latex/papermas/papermas.pdf details="Package documentation" +srccontainersize 14044 +srccontainerchecksum 2db3f6acb382f73ac6d220a4ec378026673ab16d54cb02a93926d30eeb8d5377d5329869cdfb3563915bb93253d64a3741a3498e197958e93929e8651f33cb02 +srcfiles size=15 + RELOC/source/latex/papermas/papermas.drv + RELOC/source/latex/papermas/papermas.dtx + RELOC/source/latex/papermas/papermas.ins +runfiles size=3 + RELOC/tex/latex/papermas/papermas.sty +catalogue-ctan /macros/latex/contrib/papermas +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics calculation +catalogue-version 1.0h + +name papertex +category Package +revision 19230 +shortdesc Class for newspapers, etc +relocated 1 +longdesc This class allows LaTeX users to create a paperTeX newspaper. +longdesc The final document has a front page and as many inner pages as +longdesc desired. News items appear one after another and the user can +longdesc choose the number of columns, style and so on. The class allows +longdesc users to create newsletters too. +containersize 5644 +containerchecksum 489718b18bff9055917d9aa1329c34218282c2dec743c4a136625b6c39dc5102bc85d7da6dfb5e2b6a0f4bfe5a8fe27341ba9c7cd205cb8435ed3bc81a7a5c1c +doccontainersize 437088 +doccontainerchecksum aa36046e89f7e4486020a62dc8cb10f0a680247a3148149831153400a4ee935d3120525de3fbf29eac5c6cd58b655c1a2dcc2c4a8baf7d849a40f842d3b895fa +docfiles size=144 + RELOC/doc/latex/papertex/CHANGES + RELOC/doc/latex/papertex/README details="Readme" + RELOC/doc/latex/papertex/example/example.pdf details="Example newspaper page" + RELOC/doc/latex/papertex/example/example.tex + RELOC/doc/latex/papertex/example/img/ireland.jpg + RELOC/doc/latex/papertex/example/img/weather/clouds.jpg + RELOC/doc/latex/papertex/example/img/weather/rain.jpg + RELOC/doc/latex/papertex/example/img/weather/sun.jpg + RELOC/doc/latex/papertex/papertex.pdf details="Package documentation" +srccontainersize 14804 +srccontainerchecksum 9afa6d8e8d23108266bae48e78caedc5bb20c06eb15e3de8969a2e8bfaea880901a184fa8f2409e6d7ec0a4341105151049e1763fa4f4cdce8150e6bb3a52174 +srcfiles size=16 + RELOC/source/latex/papertex/papertex.dtx + RELOC/source/latex/papertex/papertex.ins +runfiles size=6 + RELOC/tex/latex/papertex/papertex.cls +catalogue-ctan /macros/latex/contrib/papertex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics magazine +catalogue-version 1.2b + +name paracol +category Package +revision 49560 +shortdesc Multiple columns with texts "in parallel" +relocated 1 +longdesc The package provides yet another multi-column typesetting +longdesc mechanism by which you produce multi-column (e.g., bilingual) +longdesc document switching and sychronizing each corresponding part in +longdesc "parallel". +containersize 18856 +containerchecksum ff7f60734dcf6d1db89a0b80747b31eb95bb28ac90ea5d83546feb08389fe890c6e3b4c44995b115d3e9d446823e81e27bf08337ae2d236a5a89c2c79258f741 +doccontainersize 2088752 +doccontainerchecksum a5711614d817193cf34cce405fc57f00dc17f3757b8c945dd174ba03453943c22e9c66b19a0f83444abd61f486e5df10246556e59d281f10f95452ad1931fb49 +docfiles size=544 + RELOC/doc/latex/paracol/README details="Readme" + RELOC/doc/latex/paracol/paracol-man.pdf details="Package documentation" + RELOC/doc/latex/paracol/paracol-man.tex + RELOC/doc/latex/paracol/paracol.pdf +srccontainersize 211364 +srccontainerchecksum cfa0bb83368dc27a7d71fb5e8772aa1c0ab69f597b2b00630fa1a95cf448684e6b59d46bd6dbe011953c51c0195b5cd0981a2df8d7d5fb951aecdee0a9ed0576 +srcfiles size=267 + RELOC/source/latex/paracol/bgpaint.dtx + RELOC/source/latex/paracol/impl.dtx + RELOC/source/latex/paracol/man.dtx + RELOC/source/latex/paracol/paracol.dtx + RELOC/source/latex/paracol/paracol.ins + RELOC/source/latex/paracol/ppts.dtx + RELOC/source/latex/paracol/probs.dtx + RELOC/source/latex/paracol/pwfnote.dtx + RELOC/source/latex/paracol/ref.dtx +runfiles size=26 + RELOC/tex/latex/paracol/paracol.sty +catalogue-also parallel parcolumns +catalogue-ctan /macros/latex/contrib/paracol +catalogue-date 2018-12-31 09:38:06 +0100 +catalogue-license lppl +catalogue-topics parallel linguistic +catalogue-version 1.35 + +name parades +category Package +revision 40042 +shortdesc Tabulators and space between paragraphs in galley approach +relocated 1 +longdesc The LaTeX package paravesp controls the spaces above and below +longdesc paragraphs. The python script parades.py generates paragraph +longdesc styles with support of space above, space below and tabulators. +longdesc The system imposes the galley approach on the document. +containersize 1044 +containerchecksum 6eda005756083b1ca0c1ee09efe44830874d8090c25aaddb8d6631284a057130d2f03ca7f88b460fbeb7bea90ad31da8242028a70b07f6a66bfb978cd7390e26 +doccontainersize 213564 +doccontainerchecksum eca6b66f0bb424730177498fd6310718a78ffdd031961f8de877bd6f9d027430143c19310b158abf26f92b4280016cdac696f423b493aa49d60b06cefc546688 +docfiles size=67 + RELOC/doc/latex/parades/README details="Readme" + RELOC/doc/latex/parades/example/README.example + RELOC/doc/latex/parades/example/SConstruct + RELOC/doc/latex/parades/example/paras.py + RELOC/doc/latex/parades/example/paras.sty + RELOC/doc/latex/parades/example/udhr.pdf + RELOC/doc/latex/parades/example/udhr.tex + RELOC/doc/latex/parades/example/udhr.xsl + RELOC/doc/latex/parades/example/udhr_eng.xml + RELOC/doc/latex/parades/parades.pdf details="Package documentation" + RELOC/doc/latex/parades/parades.py +runfiles size=1 + RELOC/tex/latex/parades/paravesp.sty +catalogue-ctan /macros/latex/contrib/parades +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics parshape + +name paralist +category Package +revision 43021 +shortdesc Enumerate and itemize within paragraphs +relocated 1 +longdesc Provides enumerate and itemize environments that can be used +longdesc within paragraphs to format the items either as running text or +longdesc as separate paragraphs with a preceding number or symbol. Also +longdesc provides compacted versions of enumerate and itemize. +containersize 3724 +containerchecksum e05bbd65ae7146515dd5dcc6ad7e40fc8437fae29ee26861aa9c2b4b6da0015fc00974f0a2328a72e6487660794a822bb64b35ea3282eac980c3e7fd23f4b899 +doccontainersize 209088 +doccontainerchecksum 5f103c629d1c0bb94aaf6c86f7baefe3e99a854e764306cd21e256011ae5ed95601416e33677f73f6471bf4ce2a375b6dc98b8aaf35b8dab1c41ca91b7ec3ec5 +docfiles size=55 + RELOC/doc/latex/paralist/README details="Readme" + RELOC/doc/latex/paralist/paralist.pdf details="Package documentation" +srccontainersize 14836 +srccontainerchecksum 1cb11b8e7792df9be259e1a5ef3b2efdc85b5454265deb66e2a527c4696d7e9297e2022d5191b1d666996f1be1f638517ce4441d0bb696f6b33ae490f4138e78 +srcfiles size=17 + RELOC/source/latex/paralist/paralist.drv + RELOC/source/latex/paralist/paralist.dtx + RELOC/source/latex/paralist/paralist.ins +runfiles size=4 + RELOC/tex/latex/paralist/paralist.sty +catalogue-also shortlst multenum +catalogue-ctan /macros/latex/contrib/paralist +catalogue-date 2017-01-22 18:34:47 +0100 +catalogue-license lppl +catalogue-topics list list-bull list-enum +catalogue-version 2.7 + +name parallel +category Package +revision 15878 +shortdesc Typeset parallel texts +relocated 1 +longdesc Provides a parallel environment which allows two potentially +longdesc different texts to be typeset in two columns, while maintaining +longdesc alignment. The two columns may be on the same page, or on +longdesc facing pages. This arrangement of text is commonly used when +longdesc typesetting translations, but it can have value when comparing +longdesc any two texts. +containersize 3744 +containerchecksum 975bb869ea0df9236f0e86cbfe880e9bd59ab2d6aeb98f0a399f5bfc7e4367b3f14eb64e707e4e7ba8bd3e0ee641765b9ddfd79ee1abac61f96414f215fa5cbf +doccontainersize 117072 +doccontainerchecksum ab4c283176cf1fd3d524151cc647c1da360a1772e57b282a91007edb1269d6bade379775d0efe6731fee18b3f3bc02292057d67795475a291a4dadc748d5b185 +docfiles size=38 + RELOC/doc/latex/parallel/example1.tex + RELOC/doc/latex/parallel/example2.tex + RELOC/doc/latex/parallel/parallel.pdf details="Package documentation" + RELOC/doc/latex/parallel/readme +srccontainersize 11060 +srccontainerchecksum 6dde2ae1a2ee65decf5c1ba547d2683948d58a7955b75e5a3bd74d0b6705e7c6a75f2fe4dbed01562211b670d455a0360d0fff3ac0f24e3e77b4bb01a65577b5 +srcfiles size=12 + RELOC/source/latex/parallel/parallel.drv + RELOC/source/latex/parallel/parallel.dtx + RELOC/source/latex/parallel/parallel.ins +runfiles size=4 + RELOC/tex/latex/parallel/parallel.sty +catalogue-also parcolumns paracol +catalogue-ctan /macros/latex/contrib/parallel +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics parallel + +name paratype +category Package +revision 32859 +shortdesc LaTeX support for free fonts by ParaType +relocated 1 +longdesc The package offers LaTeX support for the fonts PT Sans, PT +longdesc Serif and PT Mono developed by ParaType for the project "Public +longdesc Types of Russian Federation", and released under an open user +longdesc license. The fonts themselves are provided in both the TrueType +longdesc and Type 1 formats, both created by ParaType). The fonts +longdesc provide encodings OT1, T1, IL2, TS1, T2* and X2. The package +longdesc provides a convenient replacement of the two packages ptsans +longdesc and ptserif. +execute addMap paratype-type1.map +containersize 4164732 +containerchecksum f7c3089b516e40d9d5534a1d25ba104623f37c3d2b77b6545b07034114644025873c0317f4a0bd5b54c6471853f5e4c7847176b42a6bdae29a6efea555fd7ae7 +doccontainersize 906420 +doccontainerchecksum 5d11fcd66eb57909bdc56416f53c060cd248731cea02bbeee232d10cbcd2e10753a66ad7347212337b6b110e94a82970f98b1486ce21a6ce61fffa50135a6b6f +docfiles size=289 + RELOC/doc/fonts/paratype/CHANGELOG + RELOC/doc/fonts/paratype/OT_TT_Install_E.txt + RELOC/doc/fonts/paratype/OT_TT_Install_R.txt + RELOC/doc/fonts/paratype/PT_Free_Font_License_eng_1.3.txt + RELOC/doc/fonts/paratype/PT_Free_Font_License_rus_1.3.txt + RELOC/doc/fonts/paratype/README details="Readme" + RELOC/doc/fonts/paratype/manifest.txt + RELOC/doc/fonts/paratype/paratype-sample.pdf details="Font samples" + RELOC/doc/fonts/paratype/paratype-sample.tex + RELOC/doc/fonts/paratype/paratype.pdf details="Package documentation" + RELOC/doc/fonts/paratype/paratype.tex +runfiles size=5365 + RELOC/fonts/afm/paratype/ptmono/PTM55F.afm + RELOC/fonts/afm/paratype/ptmono/PTM55F.inf + RELOC/fonts/afm/paratype/ptmono/PTM75F.afm + RELOC/fonts/afm/paratype/ptmono/PTM75F.inf + RELOC/fonts/afm/paratype/ptsans/PTC55F.afm + RELOC/fonts/afm/paratype/ptsans/PTC55F.inf + RELOC/fonts/afm/paratype/ptsans/PTC75F.afm + RELOC/fonts/afm/paratype/ptsans/PTC75F.inf + RELOC/fonts/afm/paratype/ptsans/PTN57F.afm + RELOC/fonts/afm/paratype/ptsans/PTN57F.inf + RELOC/fonts/afm/paratype/ptsans/PTN77F.afm + RELOC/fonts/afm/paratype/ptsans/PTN77F.inf + RELOC/fonts/afm/paratype/ptsans/PTS55F.afm + RELOC/fonts/afm/paratype/ptsans/PTS55F.inf + RELOC/fonts/afm/paratype/ptsans/PTS56F.afm + RELOC/fonts/afm/paratype/ptsans/PTS56F.inf + RELOC/fonts/afm/paratype/ptsans/PTS75F.afm + RELOC/fonts/afm/paratype/ptsans/PTS75F.inf + RELOC/fonts/afm/paratype/ptsans/PTS76F.afm + RELOC/fonts/afm/paratype/ptsans/PTS76F.inf + RELOC/fonts/afm/paratype/ptserif/PTF55F.afm + RELOC/fonts/afm/paratype/ptserif/PTF55F.inf + RELOC/fonts/afm/paratype/ptserif/PTF56F.afm + RELOC/fonts/afm/paratype/ptserif/PTF56F.inf + RELOC/fonts/afm/paratype/ptserif/PTF75F.afm + RELOC/fonts/afm/paratype/ptserif/PTF75F.inf + RELOC/fonts/afm/paratype/ptserif/PTF76F.afm + RELOC/fonts/afm/paratype/ptserif/PTF76F.inf + RELOC/fonts/afm/paratype/ptserif/PTZ55F.afm + RELOC/fonts/afm/paratype/ptserif/PTZ55F.inf + RELOC/fonts/afm/paratype/ptserif/PTZ56F.afm + RELOC/fonts/afm/paratype/ptserif/PTZ56F.inf + RELOC/fonts/enc/dvips/paratype/ptmono_il2.enc + RELOC/fonts/enc/dvips/paratype/ptmono_ot1.enc + RELOC/fonts/enc/dvips/paratype/ptmono_ot2.enc + RELOC/fonts/enc/dvips/paratype/ptmono_t1.enc + RELOC/fonts/enc/dvips/paratype/ptmono_t2a.enc + RELOC/fonts/enc/dvips/paratype/ptmono_t2b.enc + RELOC/fonts/enc/dvips/paratype/ptmono_t2c.enc + RELOC/fonts/enc/dvips/paratype/ptmono_ts1.enc + RELOC/fonts/enc/dvips/paratype/ptmono_x2.enc + RELOC/fonts/enc/dvips/paratype/ptsans_il2.enc + RELOC/fonts/enc/dvips/paratype/ptsans_ot1.enc + RELOC/fonts/enc/dvips/paratype/ptsans_ot2.enc + RELOC/fonts/enc/dvips/paratype/ptsans_t1.enc + RELOC/fonts/enc/dvips/paratype/ptsans_t2a.enc + RELOC/fonts/enc/dvips/paratype/ptsans_t2b.enc + RELOC/fonts/enc/dvips/paratype/ptsans_t2c.enc + RELOC/fonts/enc/dvips/paratype/ptsans_ts1.enc + RELOC/fonts/enc/dvips/paratype/ptsans_x2.enc + RELOC/fonts/enc/dvips/paratype/ptserif_il2.enc + RELOC/fonts/enc/dvips/paratype/ptserif_ot1.enc + RELOC/fonts/enc/dvips/paratype/ptserif_ot2.enc + RELOC/fonts/enc/dvips/paratype/ptserif_t1.enc + RELOC/fonts/enc/dvips/paratype/ptserif_t2a.enc + RELOC/fonts/enc/dvips/paratype/ptserif_t2b.enc + RELOC/fonts/enc/dvips/paratype/ptserif_t2c.enc + RELOC/fonts/enc/dvips/paratype/ptserif_ts1.enc + RELOC/fonts/enc/dvips/paratype/ptserif_x2.enc + RELOC/fonts/map/dvips/paratype/paratype-truetype.map + RELOC/fonts/map/dvips/paratype/paratype-type1.map + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-il2--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-ot1--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-il2--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-ot1--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-ot2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-x2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-il2.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-t1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-t2a--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-t2a.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-t2b--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-t2b.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-t2c--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-t2c.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-x2--base.tfm + RELOC/fonts/tfm/paratype/ptserif/PTSerif-UprightItalic-tlf-x2.tfm + RELOC/fonts/truetype/paratype/ptmono/PTM55F.ttf + RELOC/fonts/truetype/paratype/ptmono/PTM75F.ttf + RELOC/fonts/truetype/paratype/ptsans/PTC55F.ttf + RELOC/fonts/truetype/paratype/ptsans/PTC75F.ttf + RELOC/fonts/truetype/paratype/ptsans/PTN57F.ttf + RELOC/fonts/truetype/paratype/ptsans/PTN77F.ttf + RELOC/fonts/truetype/paratype/ptsans/PTS55F.ttf + RELOC/fonts/truetype/paratype/ptsans/PTS56F.ttf + RELOC/fonts/truetype/paratype/ptsans/PTS75F.ttf + RELOC/fonts/truetype/paratype/ptsans/PTS76F.ttf + RELOC/fonts/truetype/paratype/ptserif/PTF55F.ttf + RELOC/fonts/truetype/paratype/ptserif/PTF56F.ttf + RELOC/fonts/truetype/paratype/ptserif/PTF75F.ttf + RELOC/fonts/truetype/paratype/ptserif/PTF76F.ttf + RELOC/fonts/truetype/paratype/ptserif/PTZ55F.ttf + RELOC/fonts/truetype/paratype/ptserif/PTZ56F.ttf + RELOC/fonts/type1/paratype/ptmono/PTM55F.pfb + RELOC/fonts/type1/paratype/ptmono/PTM55F.pfm + RELOC/fonts/type1/paratype/ptmono/PTM75F.pfb + RELOC/fonts/type1/paratype/ptmono/PTM75F.pfm + RELOC/fonts/type1/paratype/ptsans/PTC55F.pfb + RELOC/fonts/type1/paratype/ptsans/PTC55F.pfm + RELOC/fonts/type1/paratype/ptsans/PTC75F.pfb + RELOC/fonts/type1/paratype/ptsans/PTC75F.pfm + RELOC/fonts/type1/paratype/ptsans/PTN57F.pfb + RELOC/fonts/type1/paratype/ptsans/PTN57F.pfm + RELOC/fonts/type1/paratype/ptsans/PTN77F.pfb + RELOC/fonts/type1/paratype/ptsans/PTN77F.pfm + RELOC/fonts/type1/paratype/ptsans/PTS55F.pfb + RELOC/fonts/type1/paratype/ptsans/PTS55F.pfm + RELOC/fonts/type1/paratype/ptsans/PTS56F.pfb + RELOC/fonts/type1/paratype/ptsans/PTS56F.pfm + RELOC/fonts/type1/paratype/ptsans/PTS75F.pfb + RELOC/fonts/type1/paratype/ptsans/PTS75F.pfm + RELOC/fonts/type1/paratype/ptsans/PTS76F.pfb + RELOC/fonts/type1/paratype/ptsans/PTS76F.pfm + RELOC/fonts/type1/paratype/ptserif/PTF55F.pfb + RELOC/fonts/type1/paratype/ptserif/PTF55F.pfm + RELOC/fonts/type1/paratype/ptserif/PTF56F.pfb + RELOC/fonts/type1/paratype/ptserif/PTF56F.pfm + RELOC/fonts/type1/paratype/ptserif/PTF75F.pfb + RELOC/fonts/type1/paratype/ptserif/PTF75F.pfm + RELOC/fonts/type1/paratype/ptserif/PTF76F.pfb + RELOC/fonts/type1/paratype/ptserif/PTF76F.pfm + RELOC/fonts/type1/paratype/ptserif/PTZ55F.pfb + RELOC/fonts/type1/paratype/ptserif/PTZ55F.pfm + RELOC/fonts/type1/paratype/ptserif/PTZ56F.pfb + RELOC/fonts/type1/paratype/ptserif/PTZ56F.pfm + RELOC/fonts/vf/paratype/ptmono/PTMono-Bold-tlf-il2.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Bold-tlf-ot1.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Bold-tlf-t1.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Bold-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Bold-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Bold-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Bold-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Bold-tlf-x2.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-BoldSlanted-tlf-t1.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-BoldSlanted-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-BoldSlanted-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-BoldSlanted-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-BoldSlanted-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-BoldSlanted-tlf-x2.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Regular-tlf-il2.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Regular-tlf-ot1.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Regular-tlf-t1.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Regular-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Regular-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Regular-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Regular-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Regular-tlf-x2.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Slanted-tlf-t1.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Slanted-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Slanted-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Slanted-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Slanted-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptmono/PTMono-Slanted-tlf-x2.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Bold-tlf-t1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Bold-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Bold-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Bold-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Bold-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Bold-tlf-x2.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-BoldItalic-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-BoldItalic-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-BoldItalic-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-BoldItalic-tlf-x2.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Caption-tlf-t1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Caption-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Caption-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Caption-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Caption-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Caption-tlf-x2.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBold-tlf-t1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBold-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBold-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBold-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBold-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBold-tlf-x2.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-x2.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionSlanted-tlf-t1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionSlanted-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-CaptionSlanted-tlf-x2.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Italic-tlf-t1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Italic-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Italic-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Italic-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Italic-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Italic-tlf-x2.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Narrow-tlf-t1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Narrow-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Narrow-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Narrow-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Narrow-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Narrow-tlf-x2.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBold-tlf-t1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBold-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBold-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBold-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBold-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBold-tlf-x2.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-x2.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowSlanted-tlf-t1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowSlanted-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-NarrowSlanted-tlf-x2.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Regular-tlf-t1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Regular-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Regular-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Regular-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Regular-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptsans/PTSans-Regular-tlf-x2.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Bold-tlf-t1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Bold-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Bold-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Bold-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Bold-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Bold-tlf-x2.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldItalic-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldItalic-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldItalic-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldItalic-tlf-x2.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldSlanted-tlf-t1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldSlanted-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldSlanted-tlf-x2.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-x2.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Caption-tlf-t1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Caption-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Caption-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Caption-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Caption-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Caption-tlf-x2.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionItalic-tlf-t1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionItalic-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionItalic-tlf-x2.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionSlanted-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionSlanted-tlf-x2.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-x2.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Italic-tlf-t1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Italic-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Italic-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Italic-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Italic-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Italic-tlf-x2.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Regular-tlf-t1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Regular-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Regular-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Regular-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Regular-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Regular-tlf-x2.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Slanted-tlf-t1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Slanted-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Slanted-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Slanted-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Slanted-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-Slanted-tlf-x2.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-UprightItalic-tlf-t1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-UprightItalic-tlf-t2a.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-UprightItalic-tlf-t2b.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-UprightItalic-tlf-t2c.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-UprightItalic-tlf-ts1.vf + RELOC/fonts/vf/paratype/ptserif/PTSerif-UprightItalic-tlf-x2.vf + RELOC/tex/latex/paratype/IL2PTMono-TLF.fd + RELOC/tex/latex/paratype/IL2PTSans-TLF.fd + RELOC/tex/latex/paratype/IL2PTSansCaption-TLF.fd + RELOC/tex/latex/paratype/IL2PTSansNarrow-TLF.fd + RELOC/tex/latex/paratype/IL2PTSerif-TLF.fd + RELOC/tex/latex/paratype/IL2PTSerifCaption-TLF.fd + RELOC/tex/latex/paratype/OT1PTMono-TLF.fd + RELOC/tex/latex/paratype/OT1PTSans-TLF.fd + RELOC/tex/latex/paratype/OT1PTSansCaption-TLF.fd + RELOC/tex/latex/paratype/OT1PTSansNarrow-TLF.fd + RELOC/tex/latex/paratype/OT1PTSerif-TLF.fd + RELOC/tex/latex/paratype/OT1PTSerifCaption-TLF.fd + RELOC/tex/latex/paratype/OT2PTMono-TLF.fd + RELOC/tex/latex/paratype/OT2PTSans-TLF.fd + RELOC/tex/latex/paratype/OT2PTSansCaption-TLF.fd + RELOC/tex/latex/paratype/OT2PTSansNarrow-TLF.fd + RELOC/tex/latex/paratype/OT2PTSerif-TLF.fd + RELOC/tex/latex/paratype/OT2PTSerifCaption-TLF.fd + RELOC/tex/latex/paratype/PTMono.sty + RELOC/tex/latex/paratype/PTSans.sty + RELOC/tex/latex/paratype/PTSansCaption.sty + RELOC/tex/latex/paratype/PTSansNarrow.sty + RELOC/tex/latex/paratype/PTSerif.sty + RELOC/tex/latex/paratype/PTSerifCaption.sty + RELOC/tex/latex/paratype/T1PTMono-TLF.fd + RELOC/tex/latex/paratype/T1PTSans-TLF.fd + RELOC/tex/latex/paratype/T1PTSansCaption-TLF.fd + RELOC/tex/latex/paratype/T1PTSansNarrow-TLF.fd + RELOC/tex/latex/paratype/T1PTSerif-TLF.fd + RELOC/tex/latex/paratype/T1PTSerifCaption-TLF.fd + RELOC/tex/latex/paratype/T2APTMono-TLF.fd + RELOC/tex/latex/paratype/T2APTSans-TLF.fd + RELOC/tex/latex/paratype/T2APTSansCaption-TLF.fd + RELOC/tex/latex/paratype/T2APTSansNarrow-TLF.fd + RELOC/tex/latex/paratype/T2APTSerif-TLF.fd + RELOC/tex/latex/paratype/T2APTSerifCaption-TLF.fd + RELOC/tex/latex/paratype/T2BPTMono-TLF.fd + RELOC/tex/latex/paratype/T2BPTSans-TLF.fd + RELOC/tex/latex/paratype/T2BPTSansCaption-TLF.fd + RELOC/tex/latex/paratype/T2BPTSansNarrow-TLF.fd + RELOC/tex/latex/paratype/T2BPTSerif-TLF.fd + RELOC/tex/latex/paratype/T2BPTSerifCaption-TLF.fd + RELOC/tex/latex/paratype/T2CPTMono-TLF.fd + RELOC/tex/latex/paratype/T2CPTSans-TLF.fd + RELOC/tex/latex/paratype/T2CPTSansCaption-TLF.fd + RELOC/tex/latex/paratype/T2CPTSansNarrow-TLF.fd + RELOC/tex/latex/paratype/T2CPTSerif-TLF.fd + RELOC/tex/latex/paratype/T2CPTSerifCaption-TLF.fd + RELOC/tex/latex/paratype/TS1PTMono-TLF.fd + RELOC/tex/latex/paratype/TS1PTSans-TLF.fd + RELOC/tex/latex/paratype/TS1PTSansCaption-TLF.fd + RELOC/tex/latex/paratype/TS1PTSansNarrow-TLF.fd + RELOC/tex/latex/paratype/TS1PTSerif-TLF.fd + RELOC/tex/latex/paratype/TS1PTSerifCaption-TLF.fd + RELOC/tex/latex/paratype/X2PTMono-TLF.fd + RELOC/tex/latex/paratype/X2PTSans-TLF.fd + RELOC/tex/latex/paratype/X2PTSansCaption-TLF.fd + RELOC/tex/latex/paratype/X2PTSansNarrow-TLF.fd + RELOC/tex/latex/paratype/X2PTSerif-TLF.fd + RELOC/tex/latex/paratype/X2PTSerifCaption-TLF.fd + RELOC/tex/latex/paratype/paratype.sty +catalogue-ctan /fonts/paratype +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font font-sans font-mono font-type1 font-ttf + +name paresse +category Package +revision 29803 +shortdesc Define simple macros for greek letters +relocated 1 +longdesc The package defines macros using SS to type greek letters. so +longdesc that the user may (for example) type SSa to get the effect of +longdesc $\alpha$. +containersize 3408 +containerchecksum 92c265c8f34f24ea37a478926c127b203b9ddd143015875869745ea1633cc1458cfbbf4129f24ff141e91724f9bbeb1384912ee753ab7a26336c8470897430c3 +doccontainersize 1412304 +doccontainerchecksum ac71db33fbc694555438441de4d03d5277c598f12a7a59f8d0b4df05c39bb29571691c3165dfe121deebaa4bfb90fa5e7b1a2460d8731bbaa71502ee79b37a00 +docfiles size=406 + RELOC/doc/latex/paresse/paresse-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/paresse/paresse-ex-en.pdf details="Usage examples (English)" language="en" + RELOC/doc/latex/paresse/paresse-ex-fr.pdf details="Usage examples (French)" language="fr" + RELOC/doc/latex/paresse/paresse-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/paresse/paresse.pdf +srccontainersize 23384 +srccontainerchecksum 4c442470bc63c0cf2df221e02c890aeb1375c51e02753618ba51f13f20e054769e700b6d226c8d2690f8b49d86bc0e0306418ed741c44c4bc7127986b6941935 +srcfiles size=21 + RELOC/source/latex/paresse/LISEZMOI + RELOC/source/latex/paresse/Makefile + RELOC/source/latex/paresse/README + RELOC/source/latex/paresse/paresse-TEST.zip + RELOC/source/latex/paresse/paresse-doc.dtx + RELOC/source/latex/paresse/paresse.dtx + RELOC/source/latex/paresse/paresse.ins +runfiles size=5 + RELOC/tex/latex/paresse/paresse.sty + RELOC/tex/latex/paresse/paresseold.sto + RELOC/tex/latex/paresse/paresseutf8.sto +catalogue-ctan /macros/latex/contrib/paresse +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl +catalogue-topics shortcut +catalogue-version 4.1 + +name parnotes +category Package +revision 41868 +shortdesc Notes after every paragraph (or elsewhere) +relocated 1 +longdesc The package provides the \parnote command. The notes are set as +longdesc (normal) running paragraphs; placement is at the end of each +longdesc paragraph, or manually, using the \parnotes command. +containersize 3596 +containerchecksum 66a804e4797b08114cb18f244a5c6bf8f894ed32d4fb555ffcbba2f46df18e41eee5c1a08e6ecbeee231d6aeb3c0505a65e31b929de7962b9b8dfc44c8305031 +doccontainersize 128260 +doccontainerchecksum 170a5b43c6a16000cc7410c8c1cb28541d2eed2edfd2fc6d70b25ebf190173988bb697e04f3fd565bd0b457a92ce56434e17e8bf94828a0864b8e69aefd76d76 +docfiles size=37 + RELOC/doc/latex/parnotes/README.md details="Readme" + RELOC/doc/latex/parnotes/parnotes.pdf details="Package documentation" + RELOC/doc/latex/parnotes/parnotes.tex +runfiles size=3 + RELOC/tex/latex/parnotes/parnotes.sty +catalogue-ctan /macros/latex/contrib/parnotes +catalogue-date 2016-08-16 08:35:16 +0200 +catalogue-license lppl1.3 +catalogue-topics notes +catalogue-version 3 + +name parrun +category Package +revision 15878 +shortdesc Typesets (two) streams of text running parallel +relocated 1 +longdesc For typesetting translated text and the original source, +longdesc parallel on the same page, one above the other. +containersize 2856 +containerchecksum 1a09e6dbde9c24d88e21fffe24ead7ee7567a2c7bccd2ef33e49eb1bc8eff2befb3828a87616872f63d1d8eeba21814cefc8bbe756b17f887558449aaccb1668 +doccontainersize 105064 +doccontainerchecksum cf284387780c9b2f4a79ebdd781388525aeb2a03ad9d85048061a6c43728bb6f2f4fc840ebb499a44a3fdf612ff4a20f36c17a377f959be813b4ee4d12288fb7 +docfiles size=39 + RELOC/doc/latex/parrun/parrun.pdf details="Package documentation" + RELOC/doc/latex/parrun/readme details="Readme" +srccontainersize 6912 +srccontainerchecksum 9a4fb32c53f5bd2f6f79992b4ce076ab211c24e2c0f4ca2665c903b2e3d5268b5615bb5e9c8107d1d44df6a9e50a9f942f61cbb1fd05a388738449e4b312f306 +srcfiles size=6 + RELOC/source/latex/parrun/parrun.dtx + RELOC/source/latex/parrun/parrun.ins +runfiles size=3 + RELOC/tex/latex/parrun/parrun.sty +catalogue-also parallel +catalogue-ctan /macros/latex/contrib/parrun +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics parallel + +name parselines +category Package +revision 21475 +shortdesc Apply a macro to each line of an environment +relocated 1 +longdesc The package defines an environment "parse lines" which +longdesc processes each line of an environment with a macro. An example +longdesc of shading the lines of an environment is given. +containersize 1872 +containerchecksum 81d18bfa1f70157ca04383a2f6e4cf228f23d878a9e157e79ea0bbbb743090046f5058ff0731ac42f881f5cef13063fa0ff2fa9b80992b334e02dd7f2a1a33d2 +doccontainersize 134028 +doccontainerchecksum b6dfad3ceac162f9c122c2b18fa168469cb6c4befce1c4b2c8f003507ff4b2aed30e6728bf29f04545a080efada1fd98a9c8c064f4ac1eea521fb486624e60b2 +docfiles size=46 + RELOC/doc/latex/parselines/README details="Readme" + RELOC/doc/latex/parselines/parselines.pdf details="Package documentation" +srccontainersize 9128 +srccontainerchecksum 454fd4c9032ff1075237294f346d55fdd0926c316813c3eaa487e1649db569455f89a364b9688d024567a15edfd16c397bb1ab76652b46112791874bae5db36f +srcfiles size=9 + RELOC/source/latex/parselines/parselines.drv + RELOC/source/latex/parselines/parselines.dtx + RELOC/source/latex/parselines/parselines.ins +runfiles size=1 + RELOC/tex/latex/parselines/parselines.sty +catalogue-ctan /macros/latex/contrib/parselines +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics decoration macro-supp +catalogue-version 1.4 + +name parskip +category Package +revision 49730 +shortdesc Layout with zero \parindent, non-zero \parskip +relocated 1 +longdesc Simply changing \parskip and \parindent leaves a layout that is +longdesc untidy; this package (though it is no substitute for a +longdesc properly-designed class) helps alleviate this untidiness. +containersize 2852 +containerchecksum 7a157e443317d05b31cdbb34a07e69b9496116d52aedbd021c710751fcf1f5db4565803e26a824166d283e043ba52a865638e739a6e81dd48623cd7230e86731 +doccontainersize 309408 +doccontainerchecksum fc4484eb846ea726e69e890f5ef3e0f64479739aae3929f663935a6b26597fa706a34e1e2eb86284c79dce2bbc7a9c13f2d7e8285d7bb9a0148eab1a150aa584 +docfiles size=102 + RELOC/doc/latex/parskip/README.md details="Readme" + RELOC/doc/latex/parskip/changes.txt + RELOC/doc/latex/parskip/parskip-code.pdf + RELOC/doc/latex/parskip/parskip-code.tex + RELOC/doc/latex/parskip/parskip.pdf details="Package documentation" + RELOC/doc/latex/parskip/parskip.tex +srccontainersize 5504 +srccontainerchecksum 41c3dbec891e1b6589f9d8cc2f54622df45cc56fa5d8ccce6e7b57c974ce6499477ce589b43dfd2b572cc636cbd850ff25e944e285faa0ea5d16487f5a7f3a8f +srcfiles size=5 + RELOC/source/latex/parskip/parskip.dtx + RELOC/source/latex/parskip/parskip.ins +runfiles size=3 + RELOC/tex/latex/parskip/parskip-2001-04-09.sty + RELOC/tex/latex/parskip/parskip.sty +catalogue-contact-bugs https://github.com/FrankMittelbach/fmitex/issues +catalogue-contact-repository https://github.com/FrankMittelbach/fmitex +catalogue-ctan /macros/latex/contrib/parskip +catalogue-date 2019-01-16 16:42:25 +0100 +catalogue-license lppl1.3c +catalogue-topics layout parshape +catalogue-version 2.0c + +name pas-cours +category Package +revision 42036 +shortdesc Macros useful in preparing teaching material +relocated 1 +longdesc Several groups of macros cover different branches of +longdesc mathematics. +containersize 1924 +containerchecksum 0110f82a7e0fe6219b44f645bcb01a5ff97a8a6800c06cb9b6bf10cb15a5a4749d82728622e23e11f272bd2250f3e1757edffe3c9d27f808a3e2bed5f4439166 +doccontainersize 153288 +doccontainerchecksum ff7dd904160a21ad3d84a71f75f6b25fdfa3aa0687128f2f2eda19b2d590a91d0db1e654dd7d1fd7be9bd643e008db1f0c30b2d46ee6e3b02d0d71bda2b964cf +docfiles size=70 + RELOC/doc/latex/pas-cours/README details="Readme" + RELOC/doc/latex/pas-cours/README.TEXLIVE + RELOC/doc/latex/pas-cours/attention.png + RELOC/doc/latex/pas-cours/coeur.png + RELOC/doc/latex/pas-cours/decomp.tex + RELOC/doc/latex/pas-cours/doc.codes.tex + RELOC/doc/latex/pas-cours/doc.styles.tex + RELOC/doc/latex/pas-cours/macro-calculs.tex + RELOC/doc/latex/pas-cours/macro-patrons.tex + RELOC/doc/latex/pas-cours/macro-solides.tex + RELOC/doc/latex/pas-cours/macro-styles.tex + RELOC/doc/latex/pas-cours/pas-cours.tex + RELOC/doc/latex/pas-cours/prerequis.png + RELOC/doc/latex/pas-cours/warning-perso.png +runfiles size=2 + RELOC/tex/latex/pas-cours/pas-cours.sty +catalogue-ctan /macros/latex/contrib/pas-cours +catalogue-date 2016-09-11 17:02:12 +0200 +catalogue-license lppl +catalogue-topics teaching +catalogue-version 1.6 + +name pas-crosswords +category Package +revision 32313 +shortdesc Creating crossword grids, using TikZ +relocated 1 +longdesc The package produces crossword grids, using a wide variety of +longdesc colours and decorations of the grids and the text in them. The +longdesc package uses TikZ for its graphical output. +containersize 2096 +containerchecksum cc93ed7340380b2072ac7df4c0d343e43e1a3ae4252c42d9914edcb33232597a5c86d22cce3dc02218e6e725191f056ef9fb342e88d1a60dcadd8d011723b649 +doccontainersize 169180 +doccontainerchecksum 65baac7fa63a01c70293baa26d99d21dc999f959074a3d2668cf6661d3db059b47d2f577f8c9f5d7ac6014e601f50e547283c55541c492b3c2df4e5f01b65be5 +docfiles size=45 + RELOC/doc/latex/pas-crosswords/README details="Readme" + RELOC/doc/latex/pas-crosswords/pas-crosswords.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/pas-crosswords/pas-crosswords.tex +runfiles size=2 + RELOC/tex/latex/pas-crosswords/pas-crosswords.sty +catalogue-also crosswrd crossword +catalogue-ctan /macros/latex/contrib/pas-crosswords +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics games pgf-tikz +catalogue-version 1.03 + +name pas-cv +category Package +revision 32263 +shortdesc Flexible typesetting of Curricula Vitae +relocated 1 +longdesc The package provides the framework for typesetting a Curriculum +longdesc Vitae (composed in French), together with a number of "themes" +longdesc that may be used with the package. (The use of the themes may +longdesc be seen in the package's examples/ collection.) The author +longdesc hints that conversion for use with other languages (than +longdesc French) should be possible. +containersize 8900 +containerchecksum 4dc3203c5888aeb3c613ddc16446d7ced1dbb8ee1c0f0d983fa010eaf81d5a0a7a9364381be04e10bb15a9f258d4ae086fdbc650ab8ca627b07cc286be1ce1ec +doccontainersize 325552 +doccontainerchecksum 93460e4435546cdb2df20e4e1fd555a726e909e411d42068b6f16f8bce2fa90144e1db95cad4cb94430f65b9614d766be00fa8c3e781a1de733b189a0b4585e3 +docfiles size=390 + RELOC/doc/latex/pas-cv/examples/cv-andromede.pdf + RELOC/doc/latex/pas-cv/examples/cv-andromede.tex + RELOC/doc/latex/pas-cv/examples/cv-architecte.pdf + RELOC/doc/latex/pas-cv/examples/cv-architecte.tex + RELOC/doc/latex/pas-cv/examples/cv-centaure.pdf + RELOC/doc/latex/pas-cv/examples/cv-centaure.tex + RELOC/doc/latex/pas-cv/examples/cv-dynamique.pdf + RELOC/doc/latex/pas-cv/examples/cv-dynamique.tex + RELOC/doc/latex/pas-cv/examples/cv-gaia.pdf + RELOC/doc/latex/pas-cv/examples/cv-gaia.tex + RELOC/doc/latex/pas-cv/examples/cv-jupiter.pdf + RELOC/doc/latex/pas-cv/examples/cv-jupiter.tex + RELOC/doc/latex/pas-cv/examples/cv-mars.pdf + RELOC/doc/latex/pas-cv/examples/cv-mars.tex + RELOC/doc/latex/pas-cv/examples/cv-neptune.pdf + RELOC/doc/latex/pas-cv/examples/cv-neptune.tex + RELOC/doc/latex/pas-cv/examples/cv-orion.pdf + RELOC/doc/latex/pas-cv/examples/cv-orion.tex + RELOC/doc/latex/pas-cv/examples/cv-pegase.pdf + RELOC/doc/latex/pas-cv/examples/cv-pegase.tex + RELOC/doc/latex/pas-cv/examples/cv-pluton.pdf + RELOC/doc/latex/pas-cv/examples/cv-pluton.tex + RELOC/doc/latex/pas-cv/examples/cv-saturne.pdf + RELOC/doc/latex/pas-cv/examples/cv-saturne.tex + RELOC/doc/latex/pas-cv/examples/cv-univers.pdf + RELOC/doc/latex/pas-cv/examples/cv-univers.tex + RELOC/doc/latex/pas-cv/examples/cv-uranus.pdf + RELOC/doc/latex/pas-cv/examples/cv-uranus.tex + RELOC/doc/latex/pas-cv/examples/cv-venus.pdf + RELOC/doc/latex/pas-cv/examples/cv-venus.tex + RELOC/doc/latex/pas-cv/pas-cv.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/pas-cv/pas-cv.tex + RELOC/doc/latex/pas-cv/photo.png +runfiles size=21 + RELOC/tex/latex/pas-cv/macro-andromede.tex + RELOC/tex/latex/pas-cv/macro-architecte.tex + RELOC/tex/latex/pas-cv/macro-centaure.tex + RELOC/tex/latex/pas-cv/macro-dynamique.tex + RELOC/tex/latex/pas-cv/macro-gaia.tex + RELOC/tex/latex/pas-cv/macro-jupiter.tex + RELOC/tex/latex/pas-cv/macro-mars.tex + RELOC/tex/latex/pas-cv/macro-neptune.tex + RELOC/tex/latex/pas-cv/macro-orion.tex + RELOC/tex/latex/pas-cv/macro-pegase.tex + RELOC/tex/latex/pas-cv/macro-pluton.tex + RELOC/tex/latex/pas-cv/macro-saturne.tex + RELOC/tex/latex/pas-cv/macro-univers.tex + RELOC/tex/latex/pas-cv/macro-uranus.tex + RELOC/tex/latex/pas-cv/macro-venus.tex + RELOC/tex/latex/pas-cv/pas-cv.sty +catalogue-ctan /macros/latex/contrib/pas-cv +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics cv +catalogue-version 2.01 + +name pas-tableur +category Package +revision 39542 +shortdesc Create a spreadsheet layout +relocated 1 +longdesc The package provides commands for creating a grid of +longdesc rectangles, and commands for populating locations in the grid. +longdesc PGF/TikZ is used for placement and population of the cells. +containersize 3444 +containerchecksum 61fc474406d55ce0fa4b2edfb41f4ac9b2585e448c2b2b76452a29f2a03eec9ea1658cca2fec4fd0f1b8576919698a6d3ceeed650b773783af47685f33c969fa +doccontainersize 6556 +doccontainerchecksum a498726006eb5b3c7352a776c47e215fedfa7005d529fbdf071946ec736818e6836591670c7342e84d2886718d2faeb44824256f2aca744bf97d157e00f71174 +docfiles size=8 + RELOC/doc/latex/pas-tableur/README details="Readme" + RELOC/doc/latex/pas-tableur/README.TEXLIVE + RELOC/doc/latex/pas-tableur/doc.codes.tex + RELOC/doc/latex/pas-tableur/doc.styles.tex + RELOC/doc/latex/pas-tableur/pas-tableur.tex +runfiles size=3 + RELOC/tex/latex/pas-tableur/pas-tableur.sty +catalogue-ctan /macros/latex/contrib/pas-tableur +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics alignment pgf-tikz +catalogue-version 2.01 + +name passivetex +category Package +revision 15878 +shortdesc Support package for XML/SGML typesetting +relocated 1 +longdesc Packages providing XML parsing, UTF-8 parsing, Unicode +longdesc entities, and common formatting object definitions for jadetex. +containersize 44652 +containerchecksum dec61bb52bc1bf8588474e6d8971ca16f691d13b9c1be1f131cf0a720a205df1a95830f2f172df2efc30799d4aff9af064f9d851d9c705235aaf96e4b50decdd +runfiles size=79 + RELOC/tex/xmltex/passivetex/dummyels.sty + RELOC/tex/xmltex/passivetex/fotex.sty + RELOC/tex/xmltex/passivetex/fotex.xmt + RELOC/tex/xmltex/passivetex/mlnames.sty + RELOC/tex/xmltex/passivetex/tei.xmt + RELOC/tex/xmltex/passivetex/teiprintslides.xmt + RELOC/tex/xmltex/passivetex/teislides.xmt + RELOC/tex/xmltex/passivetex/teixml.sty + RELOC/tex/xmltex/passivetex/teixmlslides.sty + RELOC/tex/xmltex/passivetex/ucharacters.sty + RELOC/tex/xmltex/passivetex/unicode.sty +catalogue-ctan /macros/xmltex/contrib/passivetex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics foreign-import + +name patch +category Package +revision 42428 +shortdesc Patch loaded packages, etc. +relocated 1 +longdesc The package defines macros that allow patching of existing +longdesc commands, specifying those parts of the existing macro to be +longdesc replaced, along with the replacements. Thus it provides more +longdesc sophisticated manipulation than a package like patchcmd, which +longdesc only permits modification by adding commands at the beginning +longdesc or end of an existing definition. The package is distributed in +longdesc a relative of LaTeX doc format: it will run unmodified, though +longdesc it benefits from docstrip treatment. +containersize 652 +containerchecksum 0ddcaa07696216f9fdea55471e1265fcaa71dd8ba2b8a50690dd519ad8b9442015502ec59b8f9f05c79f5031be3de2956cd71af58153dea8e1917f33c246fa63 +srccontainersize 8844 +srccontainerchecksum ada97aba615160b3c30c9cdccf3360f3692612bc702247ae3fa44f7821aefa2ee60c89ab79417b0ff658335768512a0d8d9b5b17df619c57d169f6487d39e5bf +srcfiles size=7 + RELOC/source/generic/patch/patch.doc +catalogue-also patchcmd etoolbox +catalogue-ctan /macros/generic/misc/patch.doc +catalogue-date 2016-07-19 10:17:45 +0200 +catalogue-license lppl +catalogue-topics macro-supp + +name patchcmd +category Package +revision 41379 +shortdesc Change the definition of an existing command +relocated 1 +longdesc The package provides a command \patchcommand that can be used +longdesc to add material at the beginning and/or the end of the +longdesc replacement text of an existing macro. It works for macros with +longdesc any number of normal arguments, including those that were +longdesc defined with \DeclareRobustCommand. +containersize 1944 +containerchecksum a98085cb274c189644fa1307cf4ab5949a9eda76936fd6b74a7ba366b04d58b2a213c1a5ede53f644bdb76d44eeccd919176fb1934b8eda55489fee16f0c349b +doccontainersize 135956 +doccontainerchecksum 3c65e6b1fe2b25efb45853deb5b3111dbfa03de7c0b154fcd86719a81bbf725e1872a6e6b5a9955e63f410ff3c05bce5de336f4ab1e612ea0d82b8d44d5fe960 +docfiles size=35 + RELOC/doc/latex/patchcmd/README details="Readme" + RELOC/doc/latex/patchcmd/patchcmd.pdf details="Package documentation" +srccontainersize 3340 +srccontainerchecksum d3effea39c2dd33c9b40dd12304973d2d96457bea7b7f233f196c2ad0ca9819e57b38ab7b44e9532350b6c1cb519b184882ea924dc198dbaadf185ac177bea63 +srcfiles size=3 + RELOC/source/latex/patchcmd/patchcmd.dtx + RELOC/source/latex/patchcmd/patchcmd.ins +runfiles size=1 + RELOC/tex/latex/patchcmd/patchcmd.sty +catalogue-ctan /macros/latex/contrib/patchcmd +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1.05 + +name patgen +category TLCore +revision 50602 +shortdesc Generate hyphenation patterns +longdesc This is the last version of the program distributed by Knuth; +longdesc it advertises itself as a pattern generator for "the algorithm +longdesc used in TeX", but, of course, the patterns used in modern +longdesc distributions are Unicode-based. The currently-maintained +longdesc patgen is part of web2c (and all major TeX distributions). +depend kpathsea +depend patgen.ARCH +containersize 648 +containerchecksum 524ea5aa09feba7ef5efd47e35d8d94703be4e191bb081d0b13007e853e88729c6029451e58a7237ad5ddf524c4d0798421316c38d1d9374ed7cd05f2744f761 +doccontainersize 28652 +doccontainerchecksum 136e6c23505593788da8343f4dffccee77ffcf9fa63382871507db47c3ff23d6c25d0cefc985f67e4ee137840aa3af8f1738a5b2dac5272e568e73b18b71a5e2 +docfiles size=10 + texmf-dist/doc/man/man1/patgen.1 + texmf-dist/doc/man/man1/patgen.man1.pdf +catalogue-contact-bugs http://lists.tug.org/tex-k +catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-contact-support http://lists.tug.org/tex-k +catalogue-ctan /obsolete/systems/knuth/unsupported/patgen +catalogue-date 2019-01-05 09:49:23 +0100 +catalogue-license knuth +catalogue-topics hyph-gen +catalogue-version 2.3 + +name patgen.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of patgen +containersize 18692 +containerchecksum 5ab892d4ea377e93add26bf386215eaced2c260de25ed970452fbee853cd6e1224b94485f4edb24b934e377b8e6a496c4b4a83baf27da447404071b7a28e78e2 +binfiles arch=aarch64-linux size=12 + bin/aarch64-linux/patgen + +name patgen.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of patgen +containersize 22844 +containerchecksum 83f6affaf607f3cc6a28e6fd611283d7e7e1c5245944ab8046a30dad5bef453921b2644fdbe158954b42758ef464e010e3edaa0ad74af2e712f60c60ae944066 +binfiles arch=amd64-freebsd size=14 + bin/amd64-freebsd/patgen + +name patgen.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of patgen +containersize 18656 +containerchecksum 5c6a20e5e473729b43b7c4422ae5bf5d4292e8c71e06d3206b97997d9e2abd580a9f3a1c28b79ae55fada0e6f63af17c42b2f39eced1704f1b845d4ccdb24aee +binfiles arch=amd64-netbsd size=13 + bin/amd64-netbsd/patgen + +name patgen.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of patgen +containersize 15676 +containerchecksum 2f9a36f6146ced119abf8aedc6624b8e1704cab5b29d927bbff616787c400df6b82e245ed5174c8b1bbf0591cd793850956745d6578064ac9ad1ed6749598d2f +binfiles arch=armhf-linux size=9 + bin/armhf-linux/patgen + +name patgen.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of patgen +containersize 12688 +containerchecksum 006e0a332c6fbd332d6ad8bc939123a5f81e07208d10fda7946186fe316d30c34007a23426dc908e5407ad6a7287aba0cf365c69bcb6421d57f82b4d3488b820 +binfiles arch=i386-cygwin size=8 + bin/i386-cygwin/patgen.exe + +name patgen.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of patgen +containersize 17868 +containerchecksum 0e8c174bce52a058ef78725b106db6033135158c2afb1fa4d7da4ed7d88922a699c0e5b9ae21698c0c44d009d82e2aff90585be0d8d86e7f70f67927290c65c6 +binfiles arch=i386-freebsd size=11 + bin/i386-freebsd/patgen + +name patgen.i386-linux +category TLCore +revision 50281 +shortdesc i386-linux files of patgen +containersize 17424 +containerchecksum 15d062e13749918023db90c0b54d70891599e5f102790d3b75d2aab58de5dff0a627ed0ae4e4479e227060c8612ba5a40ef50c0ee1bc29063e48390a300a0fa1 +binfiles arch=i386-linux size=10 + bin/i386-linux/patgen + +name patgen.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of patgen +containersize 15932 +containerchecksum cd455d25a9c734b7afd9fa8ece8a8611453ff2828cf1504c70a46a57af9d7cb8aca5276d0702177be4380571e18dc26b7e3ae7dd36f11b4f477427a509267faf +binfiles arch=i386-netbsd size=12 + bin/i386-netbsd/patgen + +name patgen.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of patgen +containersize 20396 +containerchecksum 46eaaf657d4185d458f36372e6a547aa1dea1b2d924550f86ced0061ae2dd2892b14948257dcb0da78e0ec68158e98e0e1916e65f65e06a7e05cd228bd8487a2 +binfiles arch=i386-solaris size=12 + bin/i386-solaris/patgen + +name patgen.win32 +category TLCore +revision 50155 +shortdesc win32 files of patgen +containersize 13164 +containerchecksum 5a1024b68bb52141e945fbab4e3bf46c91573ea7f09e6141fe4dbcedaf38686e7d31dd1f9c482fd2675581f67a21e64056fc3fe2fc2c23eecb22f5b7c789c77f +binfiles arch=win32 size=10 + bin/win32/patgen.exe + +name patgen.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of patgen +containersize 15464 +containerchecksum 01959f77859044fe6dc3ba7e7dd52dbd066879e17e334b6ddb4c7b8691570df41781c9f6fc6de9024c2fbb3875b64137f2be14aeda8bed18f2d764b8d131b187 +binfiles arch=x86_64-cygwin size=9 + bin/x86_64-cygwin/patgen.exe + +name patgen.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of patgen +containersize 22876 +containerchecksum 8265275f247721ad317f13d4aa07f645f40a433d3cfa87d4f996db9d9aaf584b190beaf3046726be07b77678c77bf286113ef7885659c01410149d724741646a +binfiles arch=x86_64-darwin size=13 + bin/x86_64-darwin/patgen + +name patgen.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of patgen +containersize 21164 +containerchecksum 2e127a60eca885106b475372f541640e069bd9360ba7a10a9b069eff5b8f850e525c99c39b8138dfe92ff68261e99fe2bb6a572174a215770573e3dd252af19e +binfiles arch=x86_64-darwinlegacy size=13 + bin/x86_64-darwinlegacy/patgen + +name patgen.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of patgen +containersize 17788 +containerchecksum ad859c0e37fa7def89d0ec9a95b8033fdb503025b3c948a556af58fe5a402ed397b50552e8a2b111d07ed2bb7974cf1a24dda7078f9a329afd7e742b570835c4 +binfiles arch=x86_64-linux size=10 + bin/x86_64-linux/patgen + +name patgen.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of patgen +containersize 22496 +containerchecksum e040a8e4aacffacc36c0eac240b3c65b698f21473bfb8f54a78ef05d522c404446b7f0175076b684f3f525d78fe1ae4f79592c4556098f22b5b365f73bd2c9bc +binfiles arch=x86_64-linuxmusl size=13 + bin/x86_64-linuxmusl/patgen + +name patgen.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of patgen +containersize 22572 +containerchecksum 8260f4a7cf42f7a5a2182a029d1863dbafe9aaf386ac723b679b1e08e290f8e187bd733c71b6e78179f9fc51e48e3a71602eee994b1f801c1f75a3065cb7d842 +binfiles arch=x86_64-solaris size=13 + bin/x86_64-solaris/patgen + +name patgen2-tutorial +category Package +revision 16490 +shortdesc A tutorial on the use of Patgen 2 +relocated 1 +longdesc This document describes the use of Patgen 2 to create +longdesc hyphenation patterns for wide ranges of languages. +containersize 412 +containerchecksum 4a157b6351e15274fc2972e80cfca740b4abdce0fc643a499fad8588af71441887974ac258627b9ef215ff9be8e33bb045f134554a6c0382b74f6af3275ab04b +doccontainersize 61632 +doccontainerchecksum 4c375722cc01baaca61acb9d93baae99f7776483a6492d19b7cfbb13038a40ec3c76bc8580cc455e9233e89d0c29194f8c41e51078d3996a3e72431d9113a64c +docfiles size=20 + RELOC/doc/support/patgen2-tutorial/patgen2.pdf details="The document itself" language="en" + RELOC/doc/support/patgen2-tutorial/patgen2.tex +catalogue-ctan /info/patgen2 +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics tutorial + +name path +category Package +revision 22045 +shortdesc Typeset paths, making them breakable +relocated 1 +longdesc Defines a macro \path|...|, similar to the LaTeX \verb|...|, +longdesc that sets the text in typewriter font and allows hyphen-less +longdesc breaks at punctuation characters. The set of characters to be +longdesc regarded as punctuation may be changed from the package's +longdesc default. +containersize 5424 +containerchecksum 6a1fad600e4683476206385504ab5fb916caecc1101ac903d23042c25e055c6d4a73b85a57a3293929b1effd7d4af6db26c36ff994d76efd1c4f81073cee785a +doccontainersize 290328 +doccontainerchecksum e52367b81b9042af70e940aab99fa13140c31d58768ce94fb86df74ec9b52fb365168e7e325d8b2e304094e5a35fbd9fd687305062b5b606bb9e5748f143ac2f +docfiles size=73 + RELOC/doc/generic/path/path-doc.pdf details="Package documentation" + RELOC/doc/generic/path/path-doc.tex +runfiles size=4 + RELOC/tex/generic/path/path.sty +catalogue-also url +catalogue-ctan /macros/generic/path +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics verbatim +catalogue-version 3.05 + +name pauldoc +category Package +revision 16005 +shortdesc German LaTeX package documentation +relocated 1 +longdesc The package provides helpers for German language package +longdesc documentation. +containersize 1988 +containerchecksum 36e67d812dd0218d013808879eec1150d6029e13519b0796f061a850d2dca99b8c07a2ec2fe9c49004b0f9947db10ac8d02d47a858b8b27852744cea58779d13 +doccontainersize 135448 +doccontainerchecksum 178950b84cc4d5e1d78001aa75fd8cd5f0b3ca8e800b15fa1b65e19968a4642fc8ab2a3c2a95ab661155437790f100d48730d40a701dfba3a21981e93e35ba6d +docfiles size=42 + RELOC/doc/latex/pauldoc/README details="Readme" + RELOC/doc/latex/pauldoc/pauldoc.pdf details="Benutzerdoku" language="de" +srccontainersize 7760 +srccontainerchecksum 7b35faaaa89048952de36bb0b340dcc367610d87ab104cca82ea8e38493babab9fea26d30cf4eabe7d6bf64552cedaddc57f49c129076a1311c2e50f9a991add +srcfiles size=6 + RELOC/source/latex/pauldoc/pauldoc.dtx + RELOC/source/latex/pauldoc/pauldoc.ins +runfiles size=1 + RELOC/tex/latex/pauldoc/pauldoc.sty +catalogue-ctan /macros/latex/contrib/pauldoc +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics doc-supp german-doc +catalogue-version 0.5 + +name pawpict +category Package +revision 21629 +shortdesc Using graphics from PAW +relocated 1 +longdesc Support for the easy inclusion of graphics made by PAW (Physics +longdesc Analysis Workstation). You need to have PAW installed on your +longdesc system to benefit from this package. +containersize 1160 +containerchecksum 426fe59ed20c41d3b11c87814b5f3737271d20bfb2cbc45142a36a42cb5aecc1555ea69a8ba1a1cac7bab323d8c9f23720601934f183d197b25e84d2037f057b +doccontainersize 820 +doccontainerchecksum 5f8fb39ccf22aea8c40e3fb5d2babd757447e089da79a9df35336c56049872f45bb04fb76ad08d8d8a8404523666841fc757e7ebbb5201a156274ec2c29958b5 +docfiles size=1 + RELOC/doc/latex/pawpict/README details="Readme" +srccontainersize 10104 +srccontainerchecksum 29f272c3d643ce366b3f82b3a5a913534e9b1833677540834bc48cecd946be0b5cf9d4de9e22012452a33c448589506d865db4ad589425634d80fef1562ecba4 +srcfiles size=10 + RELOC/source/latex/pawpict/pawpict.dtx + RELOC/source/latex/pawpict/pawpict.ins +runfiles size=1 + RELOC/tex/latex/pawpict/pawpict.sty +catalogue-ctan /macros/latex/contrib/pawpict +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics physics graphics-prep +catalogue-version 1.0 + +name pax +category Package +revision 26112 +shortdesc Extract and reinsert PDF annotations with pdfTeX +longdesc If PDF files are included using pdfTeX, PDF annotations are +longdesc stripped. The pax project offers a solution without altering +longdesc pdfTeX. A Java program (pax.jar) parses the PDF file that will +longdesc later be included. The program then writes the data of the +longdesc annotations into a file that can be read by TeX. The LaTeX +longdesc package pax extends the graphics package to support the scheme: +longdesc if a PDF file is included, the package looks for the file with +longdesc the annotation data, reads them and puts the annotations in the +longdesc right place. Project status: experimental +depend pax.ARCH +containersize 18136 +containerchecksum 3fa85993a3cee32753a6b965a2e7a97cccda36f2c32941e8650026d90a8a69c93ba1f762f802f15999b3c32e327e1a98d970217613a660cc5fac68cf3afabd6a +doccontainersize 3012 +doccontainerchecksum e4a2c6b4220bb498bbc1f74ab8fdfcb65d261ef944a43a86f9007bfd0073c9c6aca08fb136c8b1516d78fd3a37bb00388afc95874778fe453e75f0ea615ef1bb +docfiles size=2 + texmf-dist/doc/latex/pax/README details="Package README" +srccontainersize 18776 +srccontainerchecksum ad5e65d29d540d3736bf7045c0c392d79d2ba9c9a194a7d04df3c76729105b95c609167900e9b4533d0ea353312c452de0cb02f303b0d5e777c0eddaac0c18dc +srcfiles size=25 + texmf-dist/source/latex/pax/build.xml + texmf-dist/source/latex/pax/license/LaTeX/lppl.txt + texmf-dist/source/latex/pax/license/PDFAnnotExtractor/gpl.txt + texmf-dist/source/latex/pax/src/Constants.java + texmf-dist/source/latex/pax/src/Entry.java + texmf-dist/source/latex/pax/src/EntryWriteException.java + texmf-dist/source/latex/pax/src/MANIFEST.MF + texmf-dist/source/latex/pax/src/PDFAnnotExtractor.java + texmf-dist/source/latex/pax/src/StringVisitor.java +runfiles size=10 + texmf-dist/scripts/pax/pax.jar + texmf-dist/scripts/pax/pdfannotextractor.pl + texmf-dist/tex/latex/pax/pax.sty +catalogue-also pdftex +catalogue-ctan /macros/latex/contrib/pax +catalogue-date 2016-12-28 10:23:26 +0100 +catalogue-license lpplgpl +catalogue-topics pdf-feat +catalogue-version 0.1l + +name pax.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pax +containersize 352 +containerchecksum ec915ce7093312bc793a6dbb22dda0af11e421b1faf24cf2ad213a5ee8fa6b422dc24bc69602bf00095111ee166055abf70a7cc1f8ee208c62b5af7c03a3c9aa +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pdfannotextractor + +name pax.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of pax +containersize 352 +containerchecksum 20f5f3b414c1e99d464128a0b0cf73322c4207e6404a8f0db9d52e6fcc7f27d4849b5ff48850304b25207a97b771668beff6eaab5bf2c01466d9a839459b992f +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pdfannotextractor + +name pax.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of pax +containersize 352 +containerchecksum 9d03b38688d11a3516d98e4020ac2858fe4f178042c695f383cfa4744fa07739b79a045494272145a4c06b71cc06c52c1d7fd3a1ba547f18d6eadb3d52fb3547 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pdfannotextractor + +name pax.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of pax +containersize 352 +containerchecksum 90c2170dedee44499e5224f571556700d5f5150febaf7c9542170466a19fd953ac594fa253b9972d864fcd36e6cb8e8bdae762ef7b466b2caf4370e22ef8b090 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pdfannotextractor + +name pax.i386-cygwin +category Package +revision 13717 +shortdesc i386-cygwin files of pax +containersize 352 +containerchecksum f99883322856f4d840f8ea5ed5746ab519ccb0410032d813d78d17c44c3c1d4e3a0bb3ef5b97798aa4915461dcfa785ff451c66d918b8dbc6ee0384b8ec5ec53 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pdfannotextractor + +name pax.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of pax +containersize 352 +containerchecksum 0eb4465a40e5fc95c27a5c27593636a0d84cb9bf820a5f5eef8aa04cfb5cd8519f7f373ae72e7197f35f49575720898c4615802e24dad5ef9defb5b50e50489e +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pdfannotextractor + +name pax.i386-linux +category Package +revision 10843 +shortdesc i386-linux files of pax +containersize 352 +containerchecksum 6a782a80cdd0be847899c41451068049a1a0704c0f75ea48ad5c3f02029fa1514fa5229792957a93ccc9af68feb46d817c2b190fca997fca73418c47ecefba38 +binfiles arch=i386-linux size=1 + bin/i386-linux/pdfannotextractor + +name pax.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of pax +containersize 352 +containerchecksum 93bd7b2dac8ac1e939e6577b14a2cb29b3b94a2165299e9e16f5f1e1828811fdce2a8db9bc0c3479ba59dcefef1e897859f4a76af2b0cce1f6e7f74d563b436e +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pdfannotextractor + +name pax.i386-solaris +category Package +revision 10843 +shortdesc i386-solaris files of pax +containersize 348 +containerchecksum 861aa6b0a458cd8bc8bd9f718f014841839a3d3c69493f4d5a2afc29371625bfd3bb2816dff0cba963ea784dd073ea119a91c5a434e7f348070260c7a2072c9b +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pdfannotextractor + +name pax.win32 +category Package +revision 15404 +shortdesc win32 files of pax +containersize 688 +containerchecksum 8b31a9a71c014cb2876ebc7a4cf8d48ddf9d5385f1b379b67eae6de5c3bdf5c386f2d39f866a6e9e1a22810fcd4cfac071f0640fd1a42f8871d9ce6f35e2d961 +binfiles arch=win32 size=1 + bin/win32/pdfannotextractor.exe + +name pax.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of pax +containersize 352 +containerchecksum 7b8b314167c94aac9f0e6ea326935b72657db0825ea340fb44a6a9f6939f0896d2350029fbba1fcccaaf0ebcc127c34f9e77e4061bb12509d09d2700975a5516 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pdfannotextractor + +name pax.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of pax +containersize 356 +containerchecksum 9be63c98f9051f2dcd0bcd9c1e8635e314bb47dd67621cc5976267b576d91cf814c5f39f38c44a270cf069e4fa7f90f401a1476c7ed0882b05750fd61b64e6b5 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/pdfannotextractor + +name pax.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pax +containersize 360 +containerchecksum 18a7584bf3a0d3db2e0bb41a94a1ffb51e04d85bdcef07302cbb9660df21fbdac73c3e903642c6a3357c04ff306149df0cf2f38a4df53231ff1023cec8c91542 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pdfannotextractor + +name pax.x86_64-linux +category Package +revision 10843 +shortdesc x86_64-linux files of pax +containersize 348 +containerchecksum 6a53c0a36591627324ec5d5726577bc8088073421a4905d7aa86b6b5b08e3657dfd232cf91cf8dd1086fc97c0a832796767862f55e3e921a796d614b230323b9 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pdfannotextractor + +name pax.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pax +containersize 356 +containerchecksum 80b1fa1eb3c7ccf062118a9b3179804a2cd4c518016d43f0b24688e7dfd29b0aab8cca7f02b6079aab7ccb39b0e749e20049f1b3f46c96d9fc19c8e71aae0b36 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pdfannotextractor + +name pax.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of pax +containersize 352 +containerchecksum 7c04ed93068c959286f89423bc7bd8f18f4aea88bbb1d3b6b171563fa39a563ba23e91ce37a8a7b7449a0b7b9d91746b2617a6c8d9424b4af5851d978fe7a479 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pdfannotextractor + +name pb-diagram +category Package +revision 15878 +shortdesc A commutative diagram package using LAMSTeX or Xy-pic fonts +relocated 1 +containersize 15624 +containerchecksum 6e2e18f93d5575e3f9db1147a9e255d2ab8a3918e25f53315f91ec395962a3c65d7321c1d162ab7510f16b25e4bdc5c8e4688e56820759baef06dcb08833a0d4 +doccontainersize 123536 +doccontainerchecksum 4b12c7f67411ed86eff674665f61b6b2e34694c937222c7adceaab453d78a6a1f23c58d3abd7ed2320ccf05c40e6b38ff2280bd498e7b71e857bd6fc86de3067 +docfiles size=45 + RELOC/doc/latex/pb-diagram/COPYING + RELOC/doc/latex/pb-diagram/README details="Readme" + RELOC/doc/latex/pb-diagram/pb-examples.tex + RELOC/doc/latex/pb-diagram/pb-manual.pdf details="Package documentation" + RELOC/doc/latex/pb-diagram/pb-manual.tex +runfiles size=19 + RELOC/tex/latex/pb-diagram/lamsarrow.sty + RELOC/tex/latex/pb-diagram/pb-diagram.sty + RELOC/tex/latex/pb-diagram/pb-lams.sty + RELOC/tex/latex/pb-diagram/pb-xy.sty +catalogue-ctan /macros/latex/contrib/pb-diagram +catalogue-date 2016-06-18 16:48:54 +0200 +catalogue-license other-free +catalogue-topics diagram-comm +catalogue-version 5.0 + +name pbibtex-base +category Package +revision 40986 +shortdesc Bibliography styles and miscellaneous files for pBibTeX +relocated 1 +longdesc These are miscellaneous files, including bibliography styles +longdesc (.bst), for pBibTeX, which is a Japanese extended version of +longdesc BibTeX contained in TeX Live. The bundle is a redistribution +longdesc derived from the ptex-texmf distribution by ASCII MEDIA WORKS. +containersize 14712 +containerchecksum 4c807466ddae93f7b12a62fb32b4a8a8dcdf16eb8935548aaeeccaa90de15484e396f307f229cab8a2980212aa7627e80047502a067847114ca7ff6a9ae22c3b +doccontainersize 846572 +doccontainerchecksum a87c2feac2b0a115ccec0ced7ed9b5215c8b7501020a4ca14fea9a5062bc0994fa31c892c1a738c582118b73ff4df5aba371abaef76d3c15a00d5268bef85031 +docfiles size=256 + RELOC/doc/ptex/pbibtex/LICENSE + RELOC/doc/ptex/pbibtex/README.md details="Readme" + RELOC/doc/ptex/pbibtex/README_original + RELOC/doc/ptex/pbibtex/cpp.awk + RELOC/doc/ptex/pbibtex/generate.sh + RELOC/doc/ptex/pbibtex/jbibtex.bib + RELOC/doc/ptex/pbibtex/jbibtex.pdf + RELOC/doc/ptex/pbibtex/jbibtex.tex + RELOC/doc/ptex/pbibtex/jbtxbst.doc + RELOC/doc/ptex/pbibtex/jbtxdoc.bib + RELOC/doc/ptex/pbibtex/jbtxdoc.pdf + RELOC/doc/ptex/pbibtex/jbtxdoc.tex + RELOC/doc/ptex/pbibtex/jbtxhak.pdf + RELOC/doc/ptex/pbibtex/jbtxhak.tex +runfiles size=61 + RELOC/pbibtex/bib/jxampl.bib + RELOC/pbibtex/bst/jabbrv.bst + RELOC/pbibtex/bst/jalpha.bst + RELOC/pbibtex/bst/jipsj.bst + RELOC/pbibtex/bst/jname.bst + RELOC/pbibtex/bst/jorsj.bst + RELOC/pbibtex/bst/jplain.bst + RELOC/pbibtex/bst/junsrt.bst + RELOC/pbibtex/bst/tieice.bst + RELOC/pbibtex/bst/tipsj.bst +catalogue-contact-repository https://github.com/texjporg/pbibtex-base +catalogue-ctan /biblio/pbibtex/base +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license bsd3 +catalogue-topics biblio japanese + +name pbox +category Package +revision 24807 +shortdesc A variable-width \parbox command +relocated 1 +longdesc Defines a command \pbox{}{} which adjusts its +longdesc width to that of the enclosed text, up to the maximum width +longdesc given. The package also defines some associated length +longdesc commands. +containersize 1380 +containerchecksum cf2ea3781aac3d0b8619c46513bf9894c4b4efd8ba89eefe2e5fbe4e8f82fedd3b17f64467598080a577c65cc21713671c68763ff2600ce24fb6f6ddfae83a3e +doccontainersize 235996 +doccontainerchecksum 1955a1cd5336a7d71483f49bbc8c65426485fd38447282262b58b4633398cda0753c5574455421b19d92d5c88c599f9c227b54a7c340a35daf233a4f48a1c276 +docfiles size=72 + RELOC/doc/latex/pbox/AUTHORS + RELOC/doc/latex/pbox/COPYING + RELOC/doc/latex/pbox/ChangeLog + RELOC/doc/latex/pbox/INSTALL + RELOC/doc/latex/pbox/Makefile + RELOC/doc/latex/pbox/README details="Readme" + RELOC/doc/latex/pbox/pbox.pdf details="Package documentation" +srccontainersize 5728 +srccontainerchecksum 67cf5bae9494a81b97738ca8ed5877c009d631cb8ac681915559bc4919f536c657fe4e3ade36b8e4a0ee3b614ca4a23bde8a9cae19f3a9aca12cb2e3926160b1 +srcfiles size=6 + RELOC/source/latex/pbox/pbox.drv + RELOC/source/latex/pbox/pbox.dtx + RELOC/source/latex/pbox/pbox.ins +runfiles size=1 + RELOC/tex/latex/pbox/pbox.sty +catalogue-also varwidth +catalogue-ctan /macros/latex/contrib/pbox +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl2 +catalogue-topics boxing +catalogue-version 1.2 + +name pbsheet +category Package +revision 24830 +shortdesc Problem sheet class +relocated 1 +longdesc This class is designed to simplify the typesetting of problem +longdesc sheets with Mathematics and Computer Science content. It is +longdesc currently customised towards teaching in French (and the +longdesc examples are in French). +containersize 5284 +containerchecksum 4fee9d64b1988f9981a056adc10de3be6940cb2cc7e23d9bc4effa8647e27601e5b74d2c15289ed5cc96c3f42d4f2569d897be111e2dff064a4c5d40445c760c +doccontainersize 402592 +doccontainerchecksum d929cb815e8204268f17d9e71f53550b7647d39fd50782c1e6bb848a6a8840ef8389d2f3359bef554450179bd9a638ea80a1c7ec018c7275165622f1ba645a95 +docfiles size=252 + RELOC/doc/latex/pbsheet/LPPL + RELOC/doc/latex/pbsheet/README details="Readme" + RELOC/doc/latex/pbsheet/pbsheet.pdf details="Package documentation" + RELOC/doc/latex/pbsheet/xpl/GNUmakefile + RELOC/doc/latex/pbsheet/xpl/img/simbin.eps + RELOC/doc/latex/pbsheet/xpl/img/simbin.pdf + RELOC/doc/latex/pbsheet/xpl/pbsheet.cls + RELOC/doc/latex/pbsheet/xpl/pgm/probadis.m + RELOC/doc/latex/pbsheet/xpl/pgm/rdiscr.m + RELOC/doc/latex/pbsheet/xpl/pgm/rint.m + RELOC/doc/latex/pbsheet/xpl/pgm/simbin.m + RELOC/doc/latex/pbsheet/xpl/xpl-fr.bib + RELOC/doc/latex/pbsheet/xpl/xpl-fr.dvi + RELOC/doc/latex/pbsheet/xpl/xpl-fr.pdf details="Example of use" language="fr" + RELOC/doc/latex/pbsheet/xpl/xpl-fr.ps + RELOC/doc/latex/pbsheet/xpl/xpl-fr.tex +srccontainersize 7164 +srccontainerchecksum 7790c2a14e44ff68071c4b3f0017c5b83a2fcd50a110d05b55297f07b4b313ebe8d5ab3b4d071bab5b575ded1323bb26b828aabc7cd20522a4298827d1686c12 +srcfiles size=7 + RELOC/source/latex/pbsheet/pbsheet.dtx + RELOC/source/latex/pbsheet/pbsheet.ins +runfiles size=5 + RELOC/tex/latex/pbsheet/pbsheet.cls +catalogue-ctan /macros/latex/contrib/pbsheet +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics exercise +catalogue-version 0.1 + +name pdf-trans +category Package +revision 32809 +shortdesc A set of macros for various transformations of TeX boxes +relocated 1 +longdesc pdf-trans is a set of macros offering various transformations +longdesc of TeX boxes (based on plain and pdfeTeX primitives). It was +longdesc initially inspired by trans.tex, remade to work with pdfTeX. +containersize 10768 +containerchecksum 8e3d1526b0373113064e4812003b84fd78dec65ce4946ef991f09efcb6ffab8e89a9a655c8a0582e1f4452feb526c077ec9cff30b1ad7f3c59f07bc715e643e6 +doccontainersize 61272 +doccontainerchecksum a275e35947c38b93f5ade7a812d7938d342b25460e2a29e16a1431c7fff5939826ffe0bab30aeaf504a57ded91925e85853f93611702ee6dfec713031edf9306 +docfiles size=37 + RELOC/doc/generic/pdf-trans/example.pdf details="Examples of use" + RELOC/doc/generic/pdf-trans/example.tex +runfiles size=12 + RELOC/tex/generic/pdf-trans/pdf-trans.tex +catalogue-also trans +catalogue-ctan /macros/generic/pdf-trans +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics box-manip +catalogue-version 2.4 + +name pdf14 +category Package +revision 17583 +shortdesc Restore PDF 1.4 to a TeX live 2010 format +relocated 1 +longdesc Starting with TeX Live 2010, the various formats, that directly +longdesc generate PDF, default to generating PDF 1.5. This is generally +longdesc a good thing, but it can lead to compatibility issues with some +longdesc older PDF viewers. This package changes the version of PDF +longdesc generated with formats (based on pdfTeX or LuaTeX in PDF mode), +longdesc back to 1.4 for documents that need to achieve maximal +longdesc compatibility with old viewers. +containersize 1152 +containerchecksum 6291a2cbe2fea33d2a948a8ce58415de875cb09df1eaeb674f2a8fd3e3eb9fd5897d73e2ff613cb71562299ac22b07566b3c8730c807928e5a12f3e572f99622 +doccontainersize 362696 +doccontainerchecksum 1b848dc73554175d33b7501fe83f1689e5181bddc6f59db00829ea39ac6aa7f91ca4f936f93a66411ebb257fd77132c6a4fd3371c8c28f0258cdcca31b8f0b38 +docfiles size=91 + RELOC/doc/latex/pdf14/README details="Readme" + RELOC/doc/latex/pdf14/pdf14.pdf details="Package documentation" + RELOC/doc/latex/pdf14/test-pdf14.tex +srccontainersize 4164 +srccontainerchecksum 81e13e0e9d0b6c4c0d6a764c94c6958a437a2e2fa186532607058c09f1c3ca2a6187a778ced20e67b7d70079395be11de7e2237548b12843f4f5ff80cb82c732 +srcfiles size=3 + RELOC/source/latex/pdf14/Makefile + RELOC/source/latex/pdf14/pdf14.dtx +runfiles size=1 + RELOC/tex/latex/pdf14/pdf14.sty +catalogue-ctan /macros/latex/contrib/pdf14 +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics pdf-feat +catalogue-version 0.1 + +name pdfarticle +category Package +revision 51127 +shortdesc Class for pdf publications +relocated 1 +longdesc pdfArticle is simple document class dedicated for creating pdf +longdesc documents with LuaLaTeX. +containersize 3868 +containerchecksum 50cabf25f9da7b9adee489fd0a01fd9e5da2115d1dd09111507143a99a605cbc7e2de5a40a0e963b68942a601b7f0b753fdaf9cc1eadcdfb1261730fff5b4875 +doccontainersize 42628 +doccontainerchecksum d77754cf21565337f6db1b984dd3812798833f61fa263e39f9a929b25391a3b31a55df97a7f0db4fd379e4bf3855c51b61a719c30187865f67d7d37444e17de3 +docfiles size=14 + RELOC/doc/lualatex/pdfarticle/README details="Readme" + RELOC/doc/lualatex/pdfarticle/pdfArticle.pdf details="Package documentation" + RELOC/doc/lualatex/pdfarticle/pdfArticle.tex +runfiles size=3 + RELOC/tex/lualatex/pdfarticle/pdfArticle.cls +catalogue-contact-bugs https://bitbucket.org/OpCode-eu-org/latex-libs/issues +catalogue-contact-repository https://bitbucket.org/OpCode-eu-org/latex-libs +catalogue-ctan /macros/luatex/latex/pdfarticle +catalogue-date 2019-05-14 05:33:12 +0200 +catalogue-license mit +catalogue-topics class pdfprocess +catalogue-version 1.0 + +name pdfbook2 +category Package +revision 37537 +shortdesc Create booklets from PDF files +longdesc This python program creates print-ready PDF files from some +longdesc input PDF files for booklet printing. The resulting files need +longdesc to be printed in landscape/long edge double sided printing. The +longdesc default paper format depends on the locale and is chosen by +longdesc pdfjam. It can be chosen using the --paper option. Before the +longdesc pdf is composed, the input file is cropped to the relevant area +longdesc in order to discard unnecessary white spaces. In this process, +longdesc all pages are cropped to the same dimensions. Extra margins can +longdesc be defined at the edges of the booklet and in the middle where +longdesc the binding occurs. The output is written to INPUT-book.pdf. +longdesc Existing files will be overwritten. All input files are +longdesc processed seperately. +depend pdfbook2.ARCH +containersize 3500 +containerchecksum ecee1f160c1898110bffda10fd1a329b66b8689d7fb967254eb9dabf8bf7d71ad94399fcf3ec6f01db08309c3b4803789ce768e347ca70bd9a81e2c49a6f1f78 +doccontainersize 7552 +doccontainerchecksum b6b58cce91ec59d43e5aa868d5f1a692e76ef84f57c2399dd0d25b7ad9a94c2e23b376cb49a9d1c33a084362095e018a177c95bb3b752c5ab4840d054b241b51 +docfiles size=5 + texmf-dist/doc/man/man1/pdfbook2.1 + texmf-dist/doc/man/man1/pdfbook2.man1.pdf + texmf-dist/doc/support/pdfbook2/README details="Readme" +runfiles size=3 + texmf-dist/scripts/pdfbook2/pdfbook2 +catalogue-also pdfbook +catalogue-ctan /support/pdfbook2 +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl3 +catalogue-topics pdfprocess +catalogue-version 1.2 + +name pdfbook2.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pdfbook2 +containersize 340 +containerchecksum e7c4fcd434445d16437c3bc55d427eb2876854069aa184d449dd630448723e23dec5d47c21a8d3fd3902f559002a71d586988f9fbe0a9633d4759578acc1a755 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pdfbook2 + +name pdfbook2.amd64-freebsd +category Package +revision 37537 +shortdesc amd64-freebsd files of pdfbook2 +containersize 340 +containerchecksum c3a912ef71d7d247a87d11379f68e77d866c7e6fe85560c3e975d3eecbe6c1154457bf5859fe313c87ac4e2790a674e847f844d5d48d878279a54ae9817a44d8 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pdfbook2 + +name pdfbook2.amd64-netbsd +category Package +revision 37537 +shortdesc amd64-netbsd files of pdfbook2 +containersize 340 +containerchecksum 9fca530813824be44caa1e15dd7fc67ce40b10d9d1b542884fd58ff04f0067f70e505545563965a40b27b3301ac10504a3a4f921e3b3327e725c18a8cf172f00 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pdfbook2 + +name pdfbook2.armhf-linux +category Package +revision 37537 +shortdesc armhf-linux files of pdfbook2 +containersize 340 +containerchecksum 0b9c18b379ada38170eae2834fa7712cdddcfe645342cc126efa71fb46385b04758141ef4bcd0b6b56c5d4558f738681ea45278024b0c49234aef6733da42f01 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pdfbook2 + +name pdfbook2.i386-cygwin +category Package +revision 37537 +shortdesc i386-cygwin files of pdfbook2 +containersize 336 +containerchecksum 9ad408f5b5a8ec63031bee8d0622f61362b5f3a7376273f9761f29d4be435bc476d0b5515d4d45808d66d43a55d32809f3be8625cf9e02aa23decee40031a6d4 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pdfbook2 + +name pdfbook2.i386-freebsd +category Package +revision 37537 +shortdesc i386-freebsd files of pdfbook2 +containersize 340 +containerchecksum 48c88180dc840450d8adc69f15972c49cc0e8d55e04683280df0a989d34dc2403d166d2c1a1d6a5571b8765f899d4ddeeec6a28ff51b780135ee33a4c71e00a7 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pdfbook2 + +name pdfbook2.i386-linux +category Package +revision 37537 +shortdesc i386-linux files of pdfbook2 +containersize 340 +containerchecksum e43fbb01d782683d5689e66494c881274565cfe3d3296105279c22f59194caa13ffc7a3034d5ad60095d8c8ebebea30f575f9b5808a852d38f8747c1823fdf58 +binfiles arch=i386-linux size=1 + bin/i386-linux/pdfbook2 + +name pdfbook2.i386-netbsd +category Package +revision 37537 +shortdesc i386-netbsd files of pdfbook2 +containersize 336 +containerchecksum 21fdf4a70be3d9ce56260865d607fdfed2d7ba816aaf857a767f7588d88cdefbe13b7caef2b9b9d08409f448cd53f68e3908064fef82e19b823bcd1f46bd3369 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pdfbook2 + +name pdfbook2.i386-solaris +category Package +revision 37537 +shortdesc i386-solaris files of pdfbook2 +containersize 336 +containerchecksum 8feb5c0081f4e48b9e3d61cfaefbd64f4591aeb89d445828114607e79916032f4114df3eeb589809476a92182e74eed96a62723762ec24c2f76abd792c58513f +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pdfbook2 + +name pdfbook2.x86_64-cygwin +category Package +revision 37537 +shortdesc x86_64-cygwin files of pdfbook2 +containersize 340 +containerchecksum bd1429c0031c4ac48b0553384c699f35127c5ef7c4f8268a10e1b6aecbc1917adb5223052b3d17b91e39e0397537c7ba287807cd164c1e3d30b7f96b0e3d5ccb +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pdfbook2 + +name pdfbook2.x86_64-darwin +category Package +revision 37537 +shortdesc x86_64-darwin files of pdfbook2 +containersize 340 +containerchecksum 9d887a137406454959ba2f93b3f9db87a3cc7fa957193d0ab8180406228e61f5fbaff7d40795d246f23bfe6760b9bc53668a251e3aafe425345c368e8ea23ecf +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/pdfbook2 + +name pdfbook2.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pdfbook2 +containersize 348 +containerchecksum 237287bf348cb5c04de20689b832830c3341a49d104d4caa69b46fbda54757a6d1a90037c20cb36a76eafbb4400374641570fee9f426a105b787787bdc0460ae +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pdfbook2 + +name pdfbook2.x86_64-linux +category Package +revision 37537 +shortdesc x86_64-linux files of pdfbook2 +containersize 336 +containerchecksum 8a3b310031a52a0f1b2b995d7d42f91e197112b5cf6a1d8935e6d4468142c43ae50e49185a39c2d1bf61093c5d6e5ce27c8fccf657c4c0c2f11232189c02bc97 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pdfbook2 + +name pdfbook2.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pdfbook2 +containersize 344 +containerchecksum e24d29aa47170f2bb8b69c47f6c0bfac86a6be9ce02530f96b3844d6eb8ce3ad77c8b41a8e02a93ac949d1ed14f790b8fd5e7a4f5e9e3846789718e4cb7ba8d7 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pdfbook2 + +name pdfbook2.x86_64-solaris +category Package +revision 37537 +shortdesc x86_64-solaris files of pdfbook2 +containersize 340 +containerchecksum b27dca5a62f5062f1c278fda6d3a76aef40228ae92c0da11e4c6f6aad6c4ad61b05395fe6ee08a0a1e735d292ccbbc9a904d9e7c5d2a28496ae2d8685b712e28 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pdfbook2 + +name pdfcomment +category Package +revision 49047 +shortdesc A user-friendly interface to pdf annotations +relocated 1 +longdesc For a long time pdfLaTeX has offered the command \pdfannot for +longdesc inserting arbitrary PDF annotations. However, the command is +longdesc presented in a form where additional knowledge of the +longdesc definition of the PDF format is indispensable. This package is +longdesc an answer to the - occasional - questions in newsgroups, about +longdesc how one could use the comment function of Adobe Reader. At +longdesc least for the writer of LaTeX code, the package offers a +longdesc convenient and user-friendly means of using \pdfannot to +longdesc provide comments in PDF files. Since version v1.1, +longdesc pdfcomment.sty also supports LaTeX - dvips - ps2pdf, LaTeX - +longdesc dvipdfmx, XeLaTeX and LuaLaTeX. Unfortunately, support of PDF +longdesc annotations by PDF viewers may vary. The reference viewer for +longdesc the development of this package is Adobe Reader. +containersize 11296 +containerchecksum 82e1f9e9dc35f652d1ad348c6f2e03c1472c36c113cb17080061f66777d129f55f56a29c2a94292974ed759d12727d93e1724a8b529ed0b4c8c3e53511ab1934 +doccontainersize 1206144 +doccontainerchecksum a7b6f568daa2d2c01574f56641326c1cf46c692d247fb8a8fd7485d6e804241a43691ac42923df35dac4453a23a5433fe1d7a063a88f4675a00780e89675a169 +docfiles size=368 + RELOC/doc/latex/pdfcomment/CHANGES + RELOC/doc/latex/pdfcomment/INSTALL + RELOC/doc/latex/pdfcomment/README.md details="Readme" + RELOC/doc/latex/pdfcomment/example.pdf details="Example output" + RELOC/doc/latex/pdfcomment/example.tex + RELOC/doc/latex/pdfcomment/example_latex_dvipdfmx.pdf + RELOC/doc/latex/pdfcomment/example_latex_dvipdfmx.tex + RELOC/doc/latex/pdfcomment/example_latex_dvips_ps2pdf.pdf + RELOC/doc/latex/pdfcomment/example_latex_dvips_ps2pdf.tex + RELOC/doc/latex/pdfcomment/example_math_markup.pdf details="Example output: math mode" + RELOC/doc/latex/pdfcomment/example_math_markup.tex + RELOC/doc/latex/pdfcomment/example_xelatex.pdf + RELOC/doc/latex/pdfcomment/example_xelatex.tex + RELOC/doc/latex/pdfcomment/manifest.txt + RELOC/doc/latex/pdfcomment/pdfcomment.pdf details="Package documentation" language="en" + RELOC/doc/latex/pdfcomment/pdfcomment.tex + RELOC/doc/latex/pdfcomment/pdfcomment_de.pdf details="Package documentation" language="de" + RELOC/doc/latex/pdfcomment/pdfcomment_de.tex +runfiles size=24 + RELOC/tex/latex/pdfcomment/pdfcomment.sty +catalogue-contact-home http://pdfcomment.jklatex.de/ +catalogue-ctan /macros/latex/contrib/pdfcomment +catalogue-date 2018-11-01 13:19:56 +0100 +catalogue-license lppl1.3 +catalogue-topics pdf-feat +catalogue-version 2.4a + +name pdfcprot +category Package +revision 18735 +shortdesc Activating and setting of character protruding using pdfLaTeX +relocated 1 +longdesc This package provides an easy interface to adjust the character +longdesc protrusion for different fonts and choosing the right +longdesc adjustment automatically depending on the font. The package is +longdesc largely superseded by microtype. +containersize 6808 +containerchecksum d046543b42966f8a566be0c89d78ca26b26d4095d99d5b16045283f0eb52a90a92122c1e87a2842d12d7ef2f865fbeaa69315a51bb922f713d33b9ef2e270fac +doccontainersize 379136 +doccontainerchecksum ef19fdf93050dfe35df88163453067e589307b2173481d4f3b6943411bbaabda94b472622b93485637de5c2f885f9153d5078f5d3bccafb52bb28d3e25f39ca6 +docfiles size=109 + RELOC/doc/latex/pdfcprot/00CONTEN + RELOC/doc/latex/pdfcprot/00README + RELOC/doc/latex/pdfcprot/INSTALL.txt + RELOC/doc/latex/pdfcprot/LEGAL.txt + RELOC/doc/latex/pdfcprot/Makefile.unx + RELOC/doc/latex/pdfcprot/README.txt details="Package Readme" + RELOC/doc/latex/pdfcprot/TODO + RELOC/doc/latex/pdfcprot/pdfcprot.pdf details="Package documentation" +srccontainersize 21220 +srccontainerchecksum fbbfba0b35c70cc847a6ccbef17a1f506d26070d616254cd415eb6cdcf1b74c5a09baee420012fd88c11e4b4f8f45c5b7d4e2f5767e9621974a8d941a460360b +srcfiles size=23 + RELOC/source/latex/pdfcprot/pdfcprot.dtx + RELOC/source/latex/pdfcprot/pdfcprot.ins +runfiles size=14 + RELOC/tex/latex/pdfcprot/pdfcprot.sty + RELOC/tex/latex/pdfcprot/pplmnOT1.cpa + RELOC/tex/latex/pdfcprot/pplmnOT2.cpa + RELOC/tex/latex/pdfcprot/pplmnT1.cpa + RELOC/tex/latex/pdfcprot/pplmnT2A.cpa + RELOC/tex/latex/pdfcprot/pplmnTS1.cpa +catalogue-also microtype +catalogue-ctan /macros/latex/contrib/pdfcprot +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics micro-layout +catalogue-version 1.7a + +name pdfcrop +category Package +revision 29348 +shortdesc Crop PDF graphics +longdesc A Perl script that can either trim pages of any whitespace +longdesc border, or trim them of a fixed border. +depend pdfcrop.ARCH +containersize 10732 +containerchecksum eba7fd5c529e1b3a29d00ee679c24748050f1a6005391de4bdb6e6fd537cd447b01e6569e0eaa87251d49e14f548dfc80d5e33f037862a4e978905af37e9e186 +doccontainersize 4300 +doccontainerchecksum 5deb207030892f9e351d511bba20e65e957b5db17df6af60022c3f069cba127be6e9bdc1e94600b6f36af8f35697b041ac5aa529ef7997f57264b1dcbf76ce2e +docfiles size=3 + texmf-dist/doc/support/pdfcrop/README details="Readme (including manual)" +runfiles size=10 + texmf-dist/scripts/pdfcrop/pdfcrop.pl +catalogue-ctan /support/pdfcrop +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl +catalogue-topics pdfprocess +catalogue-version 1.37 + +name pdfcrop.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pdfcrop +containersize 364 +containerchecksum 8010221f9221b76393848eb503856ec9aebff0429dfbe115f5a082f05f0a91fbf611fd785894ae94ac88dd129396d281ab8fdeaad8ffe3c10f20ed24808f41cb +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/pdfcrop + bin/aarch64-linux/rpdfcrop + +name pdfcrop.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of pdfcrop +containersize 364 +containerchecksum 5de71e878d8a4cd55f58e94160ecf75cd1a23ae11bba5e69d9f5f67b31242ae85504222c0c981104412df42200d9ed99455f68c32e54026b0c373a16a0695662 +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/pdfcrop + bin/amd64-freebsd/rpdfcrop + +name pdfcrop.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of pdfcrop +containersize 360 +containerchecksum 1c6a4cd10ec3d4d737c7228e6daaea99eae05cd9abfbb2525a333275308b73fdd29ca809774f331885fdf440379dede8eb2db853ca73d948dde19987b6abcda9 +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/pdfcrop + bin/amd64-netbsd/rpdfcrop + +name pdfcrop.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of pdfcrop +containersize 360 +containerchecksum 5575ed69e167314d1437a2ea05a91e589b113a894f75e07d754fb7b9e835e13337f8199e2f5c8ae893481beb0c2df31106657331a9cfa07ab68a882dd9a57e9c +binfiles arch=armhf-linux size=2 + bin/armhf-linux/pdfcrop + bin/armhf-linux/rpdfcrop + +name pdfcrop.i386-cygwin +category Package +revision 14431 +shortdesc i386-cygwin files of pdfcrop +containersize 360 +containerchecksum 3fabf0870bf8760a60ed6a3a0e0b43300640b3833340942f16ec962f28e7f8b81f3ef2dd9b4ce49bb1f7a3028f0ecf07db6ef9ce43ceacfc1606e5a79a0de1d6 +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/pdfcrop + bin/i386-cygwin/rpdfcrop + +name pdfcrop.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of pdfcrop +containersize 364 +containerchecksum 50edb89feb2aa63b422fa6cfcb0b5414cc0a80a6491d4f48979784ff9084f7df87194c6cc30db9899677e2519c7066ecc8be7c81a1ebf387c02c951f2ac244c1 +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/pdfcrop + bin/i386-freebsd/rpdfcrop + +name pdfcrop.i386-linux +category Package +revision 14387 +shortdesc i386-linux files of pdfcrop +containersize 360 +containerchecksum 706c7d62bd6796f775b811bbff9cf5feef511be5038f3a61b1fc2b5ddb83170d82b7ca704d82cac1d35d7c94d6150e4e00ffb0b6a1ef23fb960a434aa4daf3ee +binfiles arch=i386-linux size=2 + bin/i386-linux/pdfcrop + bin/i386-linux/rpdfcrop + +name pdfcrop.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of pdfcrop +containersize 360 +containerchecksum 2bb1814745bfd21b0dd98198b6234e4fba1b9634e8f7b29d7fb3d7d85f58ecbd7cdea69cccb3fa49d5d5d797067fbef3a974e34c1471ad54b8ff679115563f20 +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/pdfcrop + bin/i386-netbsd/rpdfcrop + +name pdfcrop.i386-solaris +category Package +revision 14387 +shortdesc i386-solaris files of pdfcrop +containersize 360 +containerchecksum 062c6cec389a6feb7c9030c573558e4e6152a23aa1d2380a0876f6b8b263504aa599331c999d1771b117304b379e651c3ca72b48eccdf8e7d5eee14be683db72 +binfiles arch=i386-solaris size=2 + bin/i386-solaris/pdfcrop + bin/i386-solaris/rpdfcrop + +name pdfcrop.win32 +category Package +revision 17231 +shortdesc win32 files of pdfcrop +containersize 708 +containerchecksum a1aca9ab4bb36bffa237fef187f43424b12e22542b57c7056d1c62c3187103b995ca28d25072491f714ba64ba80e3df0ace58c53f5e66138cd24f8ded4b5d458 +binfiles arch=win32 size=2 + bin/win32/pdfcrop.exe + bin/win32/rpdfcrop.exe + +name pdfcrop.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of pdfcrop +containersize 364 +containerchecksum 0726d75ec98f7ae8e00fc1fbfd0d51bcc5553ad1f17331b61993b46912d88df7167395ecb3e734eb38293e06b4a7954cb7fd0478c4d63ae92e42c439d971721b +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/pdfcrop + bin/x86_64-cygwin/rpdfcrop + +name pdfcrop.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of pdfcrop +containersize 364 +containerchecksum 2183bef4cff93a33cff3083167539b9dd1917981f0e75f20be6661a47b05cb60b323ccf712c275967ebf6503780a7a0e5c2c97c26a5e5c230cf4eef1e0065c43 +binfiles arch=x86_64-darwin size=2 + bin/x86_64-darwin/pdfcrop + bin/x86_64-darwin/rpdfcrop + +name pdfcrop.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pdfcrop +containersize 372 +containerchecksum f2136f346160d7df9d7245dae31089f6953aaae2e5c13529bec46ef8675c5a5606518e4f9c09029098d38538bf3e1d65b0e45ff4b8f0178e015b84bcbcdb84a6 +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/pdfcrop + bin/x86_64-darwinlegacy/rpdfcrop + +name pdfcrop.x86_64-linux +category Package +revision 14387 +shortdesc x86_64-linux files of pdfcrop +containersize 360 +containerchecksum 931ffba4c56dfd49a7d3397e43c2d28c12c73db1a3000ce99ae1bde5f6b6b7ac8e232afb0a7f4e171e873a94f96f515d7b5fbdccfa0f3e92904cb71207aaaaef +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/pdfcrop + bin/x86_64-linux/rpdfcrop + +name pdfcrop.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pdfcrop +containersize 368 +containerchecksum 7dd8026f13a963c0a4137defec0c6b088b70538f305d6738f7887ab37d6fe89557ac1e6543a75fa1af9ba4b64206b2c0353b44a3d11c9f44b02739b2c675c9a1 +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/pdfcrop + bin/x86_64-linuxmusl/rpdfcrop + +name pdfcrop.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of pdfcrop +containersize 364 +containerchecksum cfc70c8d8776a87fa8e3cca104cd37206657e86f0cc5696ece95d998ed3e9c3a1641fd0ceaba963899f04ba62169a61ad6e931178a8208a6e3ce90ec50c664af +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/pdfcrop + bin/x86_64-solaris/rpdfcrop + +name pdfjam +category Package +revision 29752 +shortdesc Shell scripts interfacing to pdfpages +longdesc This is a collection of shell scripts which provide an +longdesc interface to the pdfpages LaTeX package. They do such jobs as +longdesc selecting pages, concatenating files, doing n-up formatting, +longdesc and so on. +depend pdfjam.ARCH +containersize 13248 +containerchecksum 16cb97f7af45b0df2d8190eb8127e6e8837bc3971765f449c038a3afeb053c68fb127f087efbd2735b8958b529eaf3adca62df07a7deed5a90cf78947e9e817b +doccontainersize 190168 +doccontainerchecksum 5814b6464efd3ec226fb2feefd07d7c7f0ed3aeeaa341c25bebb5e998b438eb7b86d9234982ab1f9ec8b99cbad6fbe3f2eb85239b37070f9ca557e698deaf96d +docfiles size=90 + texmf-dist/doc/man/man1/pdf180.1 + texmf-dist/doc/man/man1/pdf180.man1.pdf + texmf-dist/doc/man/man1/pdf270.1 + texmf-dist/doc/man/man1/pdf270.man1.pdf + texmf-dist/doc/man/man1/pdf90.1 + texmf-dist/doc/man/man1/pdf90.man1.pdf + texmf-dist/doc/man/man1/pdfbook.1 + texmf-dist/doc/man/man1/pdfbook.man1.pdf + texmf-dist/doc/man/man1/pdfflip.1 + texmf-dist/doc/man/man1/pdfflip.man1.pdf + texmf-dist/doc/man/man1/pdfjam-pocketmod.1 + texmf-dist/doc/man/man1/pdfjam-pocketmod.man1.pdf + texmf-dist/doc/man/man1/pdfjam-slides3up.1 + texmf-dist/doc/man/man1/pdfjam-slides3up.man1.pdf + texmf-dist/doc/man/man1/pdfjam-slides6up.1 + texmf-dist/doc/man/man1/pdfjam-slides6up.man1.pdf + texmf-dist/doc/man/man1/pdfjam.1 + texmf-dist/doc/man/man1/pdfjam.man1.pdf + texmf-dist/doc/man/man1/pdfjoin.1 + texmf-dist/doc/man/man1/pdfjoin.man1.pdf + texmf-dist/doc/man/man1/pdfnup.1 + texmf-dist/doc/man/man1/pdfnup.man1.pdf + texmf-dist/doc/man/man1/pdfpun.1 + texmf-dist/doc/man/man1/pdfpun.man1.pdf + texmf-dist/doc/support/pdfjam/COPYING + texmf-dist/doc/support/pdfjam/PDFjam-README.html details="Readme" + texmf-dist/doc/support/pdfjam/VERSION + texmf-dist/doc/support/pdfjam/pdfdroplets.png + texmf-dist/doc/support/pdfjam/pdfjam.conf + texmf-dist/doc/support/pdfjam/tests.zip +runfiles size=21 + texmf-dist/scripts/pdfjam/pdf180 + texmf-dist/scripts/pdfjam/pdf270 + texmf-dist/scripts/pdfjam/pdf90 + texmf-dist/scripts/pdfjam/pdfbook + texmf-dist/scripts/pdfjam/pdfflip + texmf-dist/scripts/pdfjam/pdfjam + texmf-dist/scripts/pdfjam/pdfjam-pocketmod + texmf-dist/scripts/pdfjam/pdfjam-slides3up + texmf-dist/scripts/pdfjam/pdfjam-slides6up + texmf-dist/scripts/pdfjam/pdfjoin + texmf-dist/scripts/pdfjam/pdfnup + texmf-dist/scripts/pdfjam/pdfpun +catalogue-contact-home http://go.warwick.ac.uk/pdfjam +catalogue-ctan /support/pdfjam +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license gpl2 +catalogue-topics pdfprocess +catalogue-version 2.02 + +name pdfjam.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pdfjam +containersize 508 +containerchecksum 9bfba71537f5c05c07056edc8f8078a506239b5ce736d90c9cb273b0884c29253030d98249be9688cbff10cf7723a9c577ea7b4e818e4e6defcf2574eb710bfa +binfiles arch=aarch64-linux size=12 + bin/aarch64-linux/pdf180 + bin/aarch64-linux/pdf270 + bin/aarch64-linux/pdf90 + bin/aarch64-linux/pdfbook + bin/aarch64-linux/pdfflip + bin/aarch64-linux/pdfjam + bin/aarch64-linux/pdfjam-pocketmod + bin/aarch64-linux/pdfjam-slides3up + bin/aarch64-linux/pdfjam-slides6up + bin/aarch64-linux/pdfjoin + bin/aarch64-linux/pdfnup + bin/aarch64-linux/pdfpun + +name pdfjam.amd64-freebsd +category Package +revision 17868 +shortdesc amd64-freebsd files of pdfjam +containersize 512 +containerchecksum 0994c1e862857a605d5a965b289daa6c0e4621c31c1d5e0c6bc0d6d506f638ef83912feb41cd415ef5372a2d45a02d49900030672ec9a03dc229d2b4239eb767 +binfiles arch=amd64-freebsd size=12 + bin/amd64-freebsd/pdf180 + bin/amd64-freebsd/pdf270 + bin/amd64-freebsd/pdf90 + bin/amd64-freebsd/pdfbook + bin/amd64-freebsd/pdfflip + bin/amd64-freebsd/pdfjam + bin/amd64-freebsd/pdfjam-pocketmod + bin/amd64-freebsd/pdfjam-slides3up + bin/amd64-freebsd/pdfjam-slides6up + bin/amd64-freebsd/pdfjoin + bin/amd64-freebsd/pdfnup + bin/amd64-freebsd/pdfpun + +name pdfjam.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of pdfjam +containersize 508 +containerchecksum 1b02c408b725e8a0e6bc77d286b1e13bc0496074d8c406a248e725bbbb3d84ee2917df0fb1de8b3f80bfca95834974ef3b2d07a63b07d115b531518ffb16d17c +binfiles arch=amd64-netbsd size=12 + bin/amd64-netbsd/pdf180 + bin/amd64-netbsd/pdf270 + bin/amd64-netbsd/pdf90 + bin/amd64-netbsd/pdfbook + bin/amd64-netbsd/pdfflip + bin/amd64-netbsd/pdfjam + bin/amd64-netbsd/pdfjam-pocketmod + bin/amd64-netbsd/pdfjam-slides3up + bin/amd64-netbsd/pdfjam-slides6up + bin/amd64-netbsd/pdfjoin + bin/amd64-netbsd/pdfnup + bin/amd64-netbsd/pdfpun + +name pdfjam.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of pdfjam +containersize 508 +containerchecksum d4f2cd9dc0653282950be6c890fb7814292de35bfe228fa53b4c5a204cfab3be05340d406cfa3389d42a9e4e9c29f497e56161cbd25c61f1d7c262257dbf9f00 +binfiles arch=armhf-linux size=12 + bin/armhf-linux/pdf180 + bin/armhf-linux/pdf270 + bin/armhf-linux/pdf90 + bin/armhf-linux/pdfbook + bin/armhf-linux/pdfflip + bin/armhf-linux/pdfjam + bin/armhf-linux/pdfjam-pocketmod + bin/armhf-linux/pdfjam-slides3up + bin/armhf-linux/pdfjam-slides6up + bin/armhf-linux/pdfjoin + bin/armhf-linux/pdfnup + bin/armhf-linux/pdfpun + +name pdfjam.i386-cygwin +category Package +revision 17868 +shortdesc i386-cygwin files of pdfjam +containersize 504 +containerchecksum 3cf346ff268700d6219939cfcc4ca99921e00fb81a10cc420f35facd242f0652e7659fd8055d4fa1bfa5229454f69aa6f978bcb9cfa5a7282c18e84ed3b919ce +binfiles arch=i386-cygwin size=12 + bin/i386-cygwin/pdf180 + bin/i386-cygwin/pdf270 + bin/i386-cygwin/pdf90 + bin/i386-cygwin/pdfbook + bin/i386-cygwin/pdfflip + bin/i386-cygwin/pdfjam + bin/i386-cygwin/pdfjam-pocketmod + bin/i386-cygwin/pdfjam-slides3up + bin/i386-cygwin/pdfjam-slides6up + bin/i386-cygwin/pdfjoin + bin/i386-cygwin/pdfnup + bin/i386-cygwin/pdfpun + +name pdfjam.i386-freebsd +category Package +revision 17868 +shortdesc i386-freebsd files of pdfjam +containersize 508 +containerchecksum 6fee446eb7892b7b116e8154b8935228138b101d973b8c708637d8871e0ef97051baa84cc8cc28ba48f130a2a4136476841ba107e64e88183cc130563c6e3aac +binfiles arch=i386-freebsd size=12 + bin/i386-freebsd/pdf180 + bin/i386-freebsd/pdf270 + bin/i386-freebsd/pdf90 + bin/i386-freebsd/pdfbook + bin/i386-freebsd/pdfflip + bin/i386-freebsd/pdfjam + bin/i386-freebsd/pdfjam-pocketmod + bin/i386-freebsd/pdfjam-slides3up + bin/i386-freebsd/pdfjam-slides6up + bin/i386-freebsd/pdfjoin + bin/i386-freebsd/pdfnup + bin/i386-freebsd/pdfpun + +name pdfjam.i386-linux +category Package +revision 17868 +shortdesc i386-linux files of pdfjam +containersize 500 +containerchecksum f570ce984e867ec52fc59245a016781d5e90475af2a7bc5dce48edd64fa91fdc9f23dc06f322ecd5693f1140e26895532669eff733daed22f6e40b66e3c3e46d +binfiles arch=i386-linux size=12 + bin/i386-linux/pdf180 + bin/i386-linux/pdf270 + bin/i386-linux/pdf90 + bin/i386-linux/pdfbook + bin/i386-linux/pdfflip + bin/i386-linux/pdfjam + bin/i386-linux/pdfjam-pocketmod + bin/i386-linux/pdfjam-slides3up + bin/i386-linux/pdfjam-slides6up + bin/i386-linux/pdfjoin + bin/i386-linux/pdfnup + bin/i386-linux/pdfpun + +name pdfjam.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of pdfjam +containersize 504 +containerchecksum b530b35935edfbc7f3acaebaa6df305eb6e0611e0984faf371618716ce5fc184593714f325584bceed0a44d19c5a6081b6e077ff89e3e08b1d82d2162891c289 +binfiles arch=i386-netbsd size=12 + bin/i386-netbsd/pdf180 + bin/i386-netbsd/pdf270 + bin/i386-netbsd/pdf90 + bin/i386-netbsd/pdfbook + bin/i386-netbsd/pdfflip + bin/i386-netbsd/pdfjam + bin/i386-netbsd/pdfjam-pocketmod + bin/i386-netbsd/pdfjam-slides3up + bin/i386-netbsd/pdfjam-slides6up + bin/i386-netbsd/pdfjoin + bin/i386-netbsd/pdfnup + bin/i386-netbsd/pdfpun + +name pdfjam.i386-solaris +category Package +revision 17868 +shortdesc i386-solaris files of pdfjam +containersize 508 +containerchecksum d590be71d40fa2712ccc8bc24069afc226e5aed464b3f189d9245037f9a4ab4466218b97201f157a656677ca92f30c678f333f60e394d708bfb57be9fcba4fed +binfiles arch=i386-solaris size=12 + bin/i386-solaris/pdf180 + bin/i386-solaris/pdf270 + bin/i386-solaris/pdf90 + bin/i386-solaris/pdfbook + bin/i386-solaris/pdfflip + bin/i386-solaris/pdfjam + bin/i386-solaris/pdfjam-pocketmod + bin/i386-solaris/pdfjam-slides3up + bin/i386-solaris/pdfjam-slides6up + bin/i386-solaris/pdfjoin + bin/i386-solaris/pdfnup + bin/i386-solaris/pdfpun + +name pdfjam.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of pdfjam +containersize 512 +containerchecksum 24d6716fa83e3e95b59a91f70ef13fde2aecd524cd4da96f84896c520fa610521781c18d79c6c92905b147737b31c3077e06e175f1703e1473cc7a1664e8f8c5 +binfiles arch=x86_64-cygwin size=12 + bin/x86_64-cygwin/pdf180 + bin/x86_64-cygwin/pdf270 + bin/x86_64-cygwin/pdf90 + bin/x86_64-cygwin/pdfbook + bin/x86_64-cygwin/pdfflip + bin/x86_64-cygwin/pdfjam + bin/x86_64-cygwin/pdfjam-pocketmod + bin/x86_64-cygwin/pdfjam-slides3up + bin/x86_64-cygwin/pdfjam-slides6up + bin/x86_64-cygwin/pdfjoin + bin/x86_64-cygwin/pdfnup + bin/x86_64-cygwin/pdfpun + +name pdfjam.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of pdfjam +containersize 512 +containerchecksum 029f61447ebf32f4b95e1d43d69abc7d326ea8244b945a8aa200a1b4b60796f5b06fc87a60d733f5da8f7fbb69e4d31032d24208573e687dc05a3e0750b2caf9 +binfiles arch=x86_64-darwin size=12 + bin/x86_64-darwin/pdf180 + bin/x86_64-darwin/pdf270 + bin/x86_64-darwin/pdf90 + bin/x86_64-darwin/pdfbook + bin/x86_64-darwin/pdfflip + bin/x86_64-darwin/pdfjam + bin/x86_64-darwin/pdfjam-pocketmod + bin/x86_64-darwin/pdfjam-slides3up + bin/x86_64-darwin/pdfjam-slides6up + bin/x86_64-darwin/pdfjoin + bin/x86_64-darwin/pdfnup + bin/x86_64-darwin/pdfpun + +name pdfjam.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pdfjam +containersize 520 +containerchecksum 939e8704c6ec7e677d3b455dea17afa240e3f599096d45d1790fc1269a77b0d00c4816f4f2d2fe5c806796e4a55c2ecec095e5de41819409396aecb947faab47 +binfiles arch=x86_64-darwinlegacy size=12 + bin/x86_64-darwinlegacy/pdf180 + bin/x86_64-darwinlegacy/pdf270 + bin/x86_64-darwinlegacy/pdf90 + bin/x86_64-darwinlegacy/pdfbook + bin/x86_64-darwinlegacy/pdfflip + bin/x86_64-darwinlegacy/pdfjam + bin/x86_64-darwinlegacy/pdfjam-pocketmod + bin/x86_64-darwinlegacy/pdfjam-slides3up + bin/x86_64-darwinlegacy/pdfjam-slides6up + bin/x86_64-darwinlegacy/pdfjoin + bin/x86_64-darwinlegacy/pdfnup + bin/x86_64-darwinlegacy/pdfpun + +name pdfjam.x86_64-linux +category Package +revision 17868 +shortdesc x86_64-linux files of pdfjam +containersize 508 +containerchecksum 31e328387832157d6a1c81d551518145214ee6303bf45ede3a93d67c4677f9b32c90bc902c241ecf31e2ccd18b82c06d3f9a9b581d379f60d2285dae0fa93068 +binfiles arch=x86_64-linux size=12 + bin/x86_64-linux/pdf180 + bin/x86_64-linux/pdf270 + bin/x86_64-linux/pdf90 + bin/x86_64-linux/pdfbook + bin/x86_64-linux/pdfflip + bin/x86_64-linux/pdfjam + bin/x86_64-linux/pdfjam-pocketmod + bin/x86_64-linux/pdfjam-slides3up + bin/x86_64-linux/pdfjam-slides6up + bin/x86_64-linux/pdfjoin + bin/x86_64-linux/pdfnup + bin/x86_64-linux/pdfpun + +name pdfjam.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pdfjam +containersize 516 +containerchecksum 2bb27110f98b8935795f4097109e8ec8baabd0515a841b69f67b5cbe58e9ca8df3bdd96ba4e9fddacd744bee0a7ad97424c986aa309dfbb7b491e059be29a1d9 +binfiles arch=x86_64-linuxmusl size=12 + bin/x86_64-linuxmusl/pdf180 + bin/x86_64-linuxmusl/pdf270 + bin/x86_64-linuxmusl/pdf90 + bin/x86_64-linuxmusl/pdfbook + bin/x86_64-linuxmusl/pdfflip + bin/x86_64-linuxmusl/pdfjam + bin/x86_64-linuxmusl/pdfjam-pocketmod + bin/x86_64-linuxmusl/pdfjam-slides3up + bin/x86_64-linuxmusl/pdfjam-slides6up + bin/x86_64-linuxmusl/pdfjoin + bin/x86_64-linuxmusl/pdfnup + bin/x86_64-linuxmusl/pdfpun + +name pdfjam.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of pdfjam +containersize 508 +containerchecksum e9c67f14f3fb417725fafad0c30634d2cadf28ec1a04e16d3f688dc24c23b8a0f175cf4ef51d01b11bcec81a68e322a6eb30959e57a471abfea3084c592f0a2b +binfiles arch=x86_64-solaris size=12 + bin/x86_64-solaris/pdf180 + bin/x86_64-solaris/pdf270 + bin/x86_64-solaris/pdf90 + bin/x86_64-solaris/pdfbook + bin/x86_64-solaris/pdfflip + bin/x86_64-solaris/pdfjam + bin/x86_64-solaris/pdfjam-pocketmod + bin/x86_64-solaris/pdfjam-slides3up + bin/x86_64-solaris/pdfjam-slides6up + bin/x86_64-solaris/pdfjoin + bin/x86_64-solaris/pdfnup + bin/x86_64-solaris/pdfpun + +name pdflatexpicscale +category Package +revision 46617 +shortdesc Support software for downscaling graphics to be included by pdfLaTeX +longdesc The package provides a script to scale pictures down to a +longdesc target resolution before creating a PDF document with pdfLaTeX. +depend pdflatexpicscale.ARCH +containersize 3124 +containerchecksum d36dcc4d70156d52bcaf668d620c8eee5db8914473f943412ea5ad5c8bde673a6715fd5a69d13e502a5d4fe0b1e0e55099432c4e0e5e02bd5f6155ca5804c3f3 +doccontainersize 86376 +doccontainerchecksum 64440f794e88c08bfeeac75d6d4174eccb800125c8d57e3b0be3ac6883c04790d422cb05cbed6be7335ab2e4d2e6bb2c8c0137c04160db126674960ddb7603e1 +docfiles size=35 + texmf-dist/doc/support/pdflatexpicscale/README details="Readme" + texmf-dist/doc/support/pdflatexpicscale/pdflatexpicscale.pdf details="Package documentation" + texmf-dist/doc/support/pdflatexpicscale/pdflatexpicscale.tex + texmf-dist/doc/support/pdflatexpicscale/testprinter.ps +runfiles size=2 + texmf-dist/scripts/pdflatexpicscale/pdflatexpicscale.pl +catalogue-ctan /support/pdflatexpicscale +catalogue-date 2018-02-12 13:02:17 +0100 +catalogue-license lppl +catalogue-topics graphics-prep +catalogue-version 0.32 + +name pdflatexpicscale.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pdflatexpicscale +containersize 348 +containerchecksum 08c853b33e2847ba035a0390062d36ee515a79920dfd2bf9b2959e3d81369538ec326699b6ff7397a21b638f46750b9b4bbaf90cce871bd57b6e385616bc942d +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pdflatexpicscale + +name pdflatexpicscale.amd64-freebsd +category Package +revision 41779 +shortdesc amd64-freebsd files of pdflatexpicscale +containersize 352 +containerchecksum 189b89bfd5266acfafdccaf047433a12bd025c5a1110e68bf48daf528ac4e8b4441565194bbf2a7aef8ad58f2d005a33f6980820aa7c874951905ee5116728d0 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pdflatexpicscale + +name pdflatexpicscale.amd64-netbsd +category Package +revision 41779 +shortdesc amd64-netbsd files of pdflatexpicscale +containersize 348 +containerchecksum ad3c959c9c4fb1ed537525d935b92f4449531ffed146542476dfadf6ece1dd01baa1e73ec56df2effb5dcb070bd7aead379df46b3496373bf9201dc90bd15124 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pdflatexpicscale + +name pdflatexpicscale.armhf-linux +category Package +revision 41779 +shortdesc armhf-linux files of pdflatexpicscale +containersize 348 +containerchecksum 9323944d6f1b5b6b00725aa2ed7fdf68e5c960bbc9db4d62f57aaee84a7e92721bbbfb83e6576001a649d6fc59fe157f73bcd92ebac257776bf8eb63107f880f +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pdflatexpicscale + +name pdflatexpicscale.i386-cygwin +category Package +revision 41779 +shortdesc i386-cygwin files of pdflatexpicscale +containersize 344 +containerchecksum 8c64d5e08941d4e6affa0e7ce64b96106ac68b515108a5aa81b501921c48b468fbefb32815d3253c8cb9d0890dcd0b3496f371e5f885c35e7eca5c85b01fdbab +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pdflatexpicscale + +name pdflatexpicscale.i386-freebsd +category Package +revision 41779 +shortdesc i386-freebsd files of pdflatexpicscale +containersize 352 +containerchecksum bc1dcb86ddda08a9a6dd1da24fc8782f5ff18ef9100bb127bf3e999ca0acdbfc3b46988193a180a20b93f51e9d6f0ed870dce88f4116249e09f3c3e1a2800a01 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pdflatexpicscale + +name pdflatexpicscale.i386-linux +category Package +revision 41779 +shortdesc i386-linux files of pdflatexpicscale +containersize 348 +containerchecksum 3862c1bfa228a814e01e63683ee67b4307113f8b268a434add8d99fc4f9c78204a36f5894789ce95deafe8c94ec85cb6b67e0e71dfa051a3853aa6285bdbb1bf +binfiles arch=i386-linux size=1 + bin/i386-linux/pdflatexpicscale + +name pdflatexpicscale.i386-netbsd +category Package +revision 41779 +shortdesc i386-netbsd files of pdflatexpicscale +containersize 348 +containerchecksum c813240ac3400442f1d1c6d0a0db0c1bda7ddfbd80a9c39815525311148f1a9ffa6120eece173a3b4dbfc73c3f565e5011c55fc7f7027186138379a18cde340c +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pdflatexpicscale + +name pdflatexpicscale.i386-solaris +category Package +revision 41779 +shortdesc i386-solaris files of pdflatexpicscale +containersize 348 +containerchecksum 71ded639e7a935a38daf0e5685be8f4f42bd009d6be385d29c4288068dd0e981d79f2ec3a192bb1989956f9ba88acbe02c463cee4a6a43597b2318b476a37ade +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pdflatexpicscale + +name pdflatexpicscale.win32 +category Package +revision 41779 +shortdesc win32 files of pdflatexpicscale +containersize 696 +containerchecksum bce67378b5a28b599a3bb064d4a495e919d5959833d317937b55b9b917093eaf046ebb41acb5c4b5cd6f49f6a94f400b89b686e33ee3f31e62bba006af69edc8 +binfiles arch=win32 size=1 + bin/win32/pdflatexpicscale.exe + +name pdflatexpicscale.x86_64-cygwin +category Package +revision 41779 +shortdesc x86_64-cygwin files of pdflatexpicscale +containersize 352 +containerchecksum 637b346b1b9f81385ed75dfbb6cd50af8d5220aee7dbcabe4ac404293a693f2c3adbcec9e392a11b0030f0f2cf5cd7620648be7e537d5af7cab862ed433bc825 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pdflatexpicscale + +name pdflatexpicscale.x86_64-darwin +category Package +revision 41779 +shortdesc x86_64-darwin files of pdflatexpicscale +containersize 352 +containerchecksum 8987f9f3ac1466e2611288fbff568dc91b382be6222906ff88922b25cbf65532e44c243f291fa384c4a6a10406521adfd69914e638df711720247f7bd59a0e99 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/pdflatexpicscale + +name pdflatexpicscale.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pdflatexpicscale +containersize 356 +containerchecksum 2f2b05bb6816d6418f00567927c97d6ec755e4939685d9f733d90b0472c0e4d2d36da57fce08129d108197d2855327cc1f3803708756dd9311ae20af1aa8ccd7 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pdflatexpicscale + +name pdflatexpicscale.x86_64-linux +category Package +revision 41779 +shortdesc x86_64-linux files of pdflatexpicscale +containersize 348 +containerchecksum f4325f360b5a5541871d5b9365c8b9f74e5e6e6f696c0a81210d2861b46be59f28adbbe620319c6da2efac95871883a287734e4c04026622c84c64be753b35e0 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pdflatexpicscale + +name pdflatexpicscale.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pdflatexpicscale +containersize 352 +containerchecksum c2f2617efad6dc6254b569d9b1cb69dd9987fc759a9f204fb89da4276a7557045b24bc4f8f80df3a86e61dbe5cfbf317751f6325c8d5df04ca2c951470ed027b +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pdflatexpicscale + +name pdflatexpicscale.x86_64-solaris +category Package +revision 41779 +shortdesc x86_64-solaris files of pdflatexpicscale +containersize 348 +containerchecksum c5b3b6f9f7ffd8cc8d8e1c13bbb04aecad5369a5f2535fd7f5be188b5224fccf894aa52e34a5dcc1b993953c4443a3de0acdbf4654752b2f0f21b7b64e9a2a66 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pdflatexpicscale + +name pdfmarginpar +category Package +revision 23492 +shortdesc Generate marginpar-equivalent PDF annotations +relocated 1 +longdesc The package provides the \pdfmarginpar command which is similar +longdesc in spirit to \marginpar. However, it creates PDF annotations +longdesc which may be viewed with Adobe Reader in place of marginal +longdesc texts. Small icons indicate the in-text position where the +longdesc message originates, popups provide the messages themselves. +longdesc Thus bugfixes and other such communications are clearly visible +longdesc together when viewing the document, while the document itself +longdesc is not obscured. +containersize 2424 +containerchecksum 1cfb39ec9982fce753e3c0040123fc0faf39d94a41cac95dd0d189f2f5dd21f0a03c2f7e26de999097905b2bb32ec8d73e6dfa808c8ed2a49610da436639767c +doccontainersize 381552 +doccontainerchecksum 24f2fe0616b0e6872da321bc7878f423df54057c9ed7b62eac4e3de36df4ba9a5f0c4481392902130038c8f2da098d2fc48be34056a03d6e764a01b66c2649db +docfiles size=136 + RELOC/doc/latex/pdfmarginpar/README details="Readme" + RELOC/doc/latex/pdfmarginpar/pdfmarginpar.pdf details="Package documentation" + RELOC/doc/latex/pdfmarginpar/pdfmarginpar.tex + RELOC/doc/latex/pdfmarginpar/pdfmarginparexample.pdf + RELOC/doc/latex/pdfmarginpar/pdfmarginparexample.png + RELOC/doc/latex/pdfmarginpar/pdfmarginparexample.tex + RELOC/doc/latex/pdfmarginpar/pgfmanual-en-macros.tex + RELOC/doc/latex/pdfmarginpar/pgfplots-macros.tex +runfiles size=2 + RELOC/tex/latex/pdfmarginpar/pdfmarginpar.sty +catalogue-also pdfcomment +catalogue-ctan /macros/latex/contrib/pdfmarginpar +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license gpl +catalogue-topics pdf-feat +catalogue-version 0.92 + +name pdfoverlay +category Package +revision 47657 +shortdesc A LaTeX style for overlaying text on a PDF +relocated 1 +longdesc It is often desirable to take an exisiting PDF and easily add +longdesc annotations or text overlaying the PDF. This might arise if you +longdesc wish to add comments to a PDF, fill in a PDF form, or add text +longdesc to a PDF where space has been left for notes. This package +longdesc provides a simple interface to do this without having to resort +longdesc to inserting one page at a time. Some or all of the pages of +longdesc the PDF can be included and not all pages of the PDF need have +longdesc overlayed text. It is also possible to include text between +longdesc pages of the PDF. Another advantage of this package is that the +longdesc overlayed text can be set as normal flowing from one page to +longdesc another or with manual page breaks if you wish. It is also +longdesc possible to use any standard method to position text at +longdesc arbitrary places on a given page. This package depends on +longdesc xparse, everypage, and pdfpages. +containersize 2708 +containerchecksum ddb976f8aac4a3efb3c392e0900ddced76fac3a14cc8935142a5ceb344b9eece59eb6697323ff21241b327c0b6af6028024dfcf88a69dcf092f2d3f359d9b4c7 +doccontainersize 544880 +doccontainerchecksum fbf34d577158ff042d7571f657ad8b145378c9387319b157270f56f5eef7d5e0bf860bb4eae3329628b9515d0641474af5911fa34ac4545519c16769f81f3a23 +docfiles size=134 + RELOC/doc/latex/pdfoverlay/README.md details="Readme" + RELOC/doc/latex/pdfoverlay/pdfoverlay.pdf details="Package documentation" +srccontainersize 5196 +srccontainerchecksum 0bc7aa88e7536517303d4fb8ba4f03f3f9b99d56425f368bbf1bc65227ad1245b1d6e146a5daf3cb61efac2bba3cc61675804ce4a4fc1a6f66b9f8efca708b65 +srcfiles size=6 + RELOC/source/latex/pdfoverlay/pdfoverlay.dtx + RELOC/source/latex/pdfoverlay/pdfoverlay.ins +runfiles size=2 + RELOC/tex/latex/pdfoverlay/pdfoverlay.sty +catalogue-contact-repository https://github.com/dcpurton/pdfoverlay +catalogue-ctan /macros/latex/contrib/pdfoverlay +catalogue-date 2018-05-12 04:59:36 +0200 +catalogue-license lppl1.3c +catalogue-topics graphics-incl +catalogue-version 1.0 + +name pdfpagediff +category Package +revision 37946 +shortdesc Find difference between two PDF's +relocated 1 +longdesc Find difference between two PDF's +containersize 2924 +containerchecksum ce28e8160b14d0833b57445392237dceab536108a9d96942dcc0adf5305c149ba08269d697ab8508d8ba05dbc59dd972dd242cf7c4cd12e3d3e857eb885e5277 +doccontainersize 740816 +doccontainerchecksum dbdfc61b7f7bcafa597e439085f9624a48b734b2adbf53dd58ba6186b3597180b7ad3fc757acbd07c6466276a9e865bc154245e84d28b1e291004cdde64f55ea +docfiles size=294 + RELOC/doc/latex/pdfpagediff/README + RELOC/doc/latex/pdfpagediff/doc/Makefile + RELOC/doc/latex/pdfpagediff/doc/ar1.png + RELOC/doc/latex/pdfpagediff/doc/ar2.png + RELOC/doc/latex/pdfpagediff/doc/ar3.png + RELOC/doc/latex/pdfpagediff/doc/pdfpagediff-doc.pdf details="Package documentation" + RELOC/doc/latex/pdfpagediff/doc/pdfpagediff-doc.sty + RELOC/doc/latex/pdfpagediff/doc/pdfpagediff-doc.tex + RELOC/doc/latex/pdfpagediff/example/file1.pdf + RELOC/doc/latex/pdfpagediff/example/file2.pdf + RELOC/doc/latex/pdfpagediff/example/ltest.pdf + RELOC/doc/latex/pdfpagediff/example/ltest.tex + RELOC/doc/latex/pdfpagediff/manifest.txt +runfiles size=2 + RELOC/tex/latex/pdfpagediff/pdfpagediff.sty +catalogue-ctan /macros/latex/contrib/pdfpagediff +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1 +catalogue-topics pdf-view pdfprocess +catalogue-version 1.4 + +name pdfpages +category Package +revision 45659 +shortdesc Include PDF documents in LaTeX +relocated 1 +longdesc This package simplifies the inclusion of external multi-page +longdesc PDF documents in LaTeX documents. Pages may be freely selected +longdesc and similar to psnup it is possible to put several logical +longdesc pages onto each sheet of paper. Furthermore a lot of hypertext +longdesc features like hyperlinks and article threads are provided. The +longdesc package supports pdfTeX (pdfLaTeX) and VTeX. With VTeX it is +longdesc even possible to use this package to insert PostScript files, +longdesc in addition to PDF files. +depend eso-pic +containersize 13632 +containerchecksum 3e3d1e2784f3951430c924393fc971e5b689cd29852c4edfbc231943a8e6a0fdd5b5cc42337fef893590f6658d1cbfdfbdae61d64e37a20495d60c12760616ae +doccontainersize 314976 +doccontainerchecksum 9abae4a9a0b39b8fe0345e92f6959c01c096464de376073ea59fd24a29a16e9e905a3b4da4215249381476e865aea5bff05926ecac67587065db945d5b103feb +docfiles size=88 + RELOC/doc/latex/pdfpages/dummy-l.pdf + RELOC/doc/latex/pdfpages/dummy.pdf + RELOC/doc/latex/pdfpages/pdf-ex.tex + RELOC/doc/latex/pdfpages/pdf-hyp.tex + RELOC/doc/latex/pdfpages/pdf-toc.tex + RELOC/doc/latex/pdfpages/pdfpages.pdf details="Package documentation" +srccontainersize 34008 +srccontainerchecksum f2e9275d2f71b402c8d67246b788f97419bf9c3bc915873ff22e0e04f2ac65c884dc8bbc5fd6e4d8e10687d60a16ff868d50e8026f38b3675489c3613c438ffc +srcfiles size=44 + RELOC/source/latex/pdfpages/README + RELOC/source/latex/pdfpages/pdfpages.dtx + RELOC/source/latex/pdfpages/pdfpages.ins +runfiles size=24 + RELOC/tex/latex/pdfpages/pdfpages.sty + RELOC/tex/latex/pdfpages/ppdvipdfmx.def + RELOC/tex/latex/pdfpages/ppdvips.def + RELOC/tex/latex/pdfpages/ppluatex.def + RELOC/tex/latex/pdfpages/ppnull.def + RELOC/tex/latex/pdfpages/pppdftex.def + RELOC/tex/latex/pdfpages/ppvtex.def + RELOC/tex/latex/pdfpages/ppxetex.def +catalogue-ctan /macros/latex/contrib/pdfpages +catalogue-date 2017-10-31 16:15:58 +0100 +catalogue-license lppl1.3c +catalogue-topics graphics-incl +catalogue-version 0.5l + +name pdfpc-movie +category Package +revision 48245 +shortdesc Pdfpc viewer-compatible hyperlinks to movies +relocated 1 +longdesc This LaTeX2e package provides a command \pdfpcmovie for +longdesc embedding (hyperlinking) movies in a way compatible with the +longdesc PDF Presenter Console (pdfpc), a GPL2-licensed multi-monitor +longdesc PDF presentation viewer application available on GitHub and +longdesc shipped with some LINUX distributions such as Debian, Fedora, +longdesc and Arch. The package depends on etoolbox, hyperref, and +longdesc pgfkeys. +containersize 2196 +containerchecksum 131ebad8b05395d0ca812fe50a103847393e4b00bc5574109ae3644b6500c58b86c48e33aab548c2404bd08ec6b893b9461d76f957111c7e653fec8473b8e63a +doccontainersize 74980 +doccontainerchecksum fef635a0d0a48a6cb35fe8c3e0b17342b84bbeacd1604e01e9fa1217ee92aef4fd073c1db5aa72161082c6dbb273f1a2fc55a2bb057cf3fd12796de8844df614 +docfiles size=20 + RELOC/doc/latex/pdfpc-movie/README.md details="Readme" + RELOC/doc/latex/pdfpc-movie/pdfpc-movie-doc.pdf details="Package documentation" +srccontainersize 5716 +srccontainerchecksum e4080ab714b791e2204b8215b70a0b979b9810c5c69c69234f6aefd4b02bf182245b0e599040f56b4814c6486ae6b7f715d3bb597c03475c38f4d5bc624777fe +srcfiles size=6 + RELOC/source/latex/pdfpc-movie/pdfpc-movie-doc.dtx + RELOC/source/latex/pdfpc-movie/pdfpc-movie.dtx + RELOC/source/latex/pdfpc-movie/pdfpc-movie.ins +runfiles size=2 + RELOC/tex/latex/pdfpc-movie/pdfpc-movie.sty +catalogue-contact-bugs https://gitlab.com/SFr682k/pdfpc-movie/issues +catalogue-contact-repository https://gitlab.com/SFr682k/pdfpc-movie +catalogue-ctan /macros/latex/contrib/pdfpc-movie +catalogue-date 2018-07-23 05:30:43 +0200 +catalogue-license lppl1.3c +catalogue-topics pdf-view multimedia presentation +catalogue-version 1.0 + +name pdfprivacy +category Package +revision 45985 +shortdesc A LaTeX package to remove or suppress pdf meta-data +relocated 1 +longdesc Creating pdfs with pdfLaTeX populates several pdf meta-data +longdesc fields such as date/time of creation/modification, information +longdesc about the LaTeX installation (e.g., pdfTeX version), and the +longdesc relative paths of included pdfs. The pdfprivacy package +longdesc provides support for emptying several of these pdf meta-data +longdesc fields as well as suppressing some pdfTeX meta-data entries in +longdesc the resulting pdf. +containersize 1488 +containerchecksum 8ec360bcfa5056b240091f1b2b5e6562656b15379bcf74b161899ddce41cb70d08cfdfb73b9497efd48e192fde11bfb4ffc59ed99059e1b6f6619e34b7f39bcd +doccontainersize 263692 +doccontainerchecksum 81e2d8a0e5f5889efbf96eae5e879378fd0b4cdfa9db66283e34836b767d27d216e35822f9225eadd8816e46c503443055dc822f221b35134ecf95fa2e0d22ab +docfiles size=69 + RELOC/doc/latex/pdfprivacy/LICENSE + RELOC/doc/latex/pdfprivacy/README.md details="Readme" + RELOC/doc/latex/pdfprivacy/pdfprivacy.pdf details="Package documentation" +srccontainersize 5432 +srccontainerchecksum 7c31f0fc5836adffb8bb9417fa90c5acdd1cfab2f653d79c00cf5c4552435ecbf915cdc53ff4cbed796013c0c737c25fe779e9410ccf646090d5071139df5069 +srcfiles size=5 + RELOC/source/latex/pdfprivacy/pdfprivacy.dtx + RELOC/source/latex/pdfprivacy/pdfprivacy.ins +runfiles size=1 + RELOC/tex/latex/pdfprivacy/pdfprivacy.sty +catalogue-contact-bugs https://github.com/LaurensS/pdfprivacy/issues +catalogue-contact-repository https://github.com/LaurensS/pdfprivacy +catalogue-ctan /macros/latex/contrib/pdfprivacy +catalogue-date 2017-12-05 05:27:30 +0100 +catalogue-license lppl1.3c +catalogue-topics pdf-feat pdf-view pdfprocess +catalogue-version 1.0 + +name pdfreview +category Package +revision 50100 +shortdesc Annotate PDF files with margin notes +relocated 1 +longdesc This package lets you add comments in the page margins of PDF +longdesc files, e.g. when reviewing manuscripts or grading reports. The +longdesc PDF file to be annotated is included, one page at a time, as +longdesc graphics, in a manner similar to the pdfpages package. Notes +longdesc are placed in the margin next to the included graphics using a +longdesc grid of help lines. Alternatively, only numbers are placed in +longdesc the page margins, and the notes are collected into a numbered +longdesc list at the end of the document. Note that this package is not +longdesc intended for adding notes directly to the LaTeX source of the +longdesc document that is being reviewed; instead, the document +longdesc undergoing review is already in PDF format and remains +longdesc unchanged. Also note that this package does not produce the +longdesc usual PDF "sticky notes" that must be opened by clicking on +longdesc them; instead, the notes are simply shown as text. This package +longdesc depends on the following other LaTeX package: adjustbox, calc, +longdesc geometry, graphicx, grffile, ifthen, kvoptions, tikz, ulem, and +longdesc xstring. +containersize 6448 +containerchecksum 1cb41c081230f601eb627d81118a3832597e97c2e0565f48f584e8f4b6d039ce903cdca54fea4591a5c9707d5145ff45470858dd2e39d3b18a2e964cb380301f +doccontainersize 576684 +doccontainerchecksum 72f7a2083c7bfae24d3a4cae397925f9d02555587c59cfea8d78b8fcc0de5db24367968fd27799f4148865ca7c2a4c2dacd11269d1d71c36f039fdc913a532e2 +docfiles size=165 + RELOC/doc/latex/pdfreview/README.md details="Readme" + RELOC/doc/latex/pdfreview/lorem-ipsum.pdf + RELOC/doc/latex/pdfreview/pdfreview.pdf details="Package documentation" + RELOC/doc/latex/pdfreview/pdfreview.sh + RELOC/doc/latex/pdfreview/pdfreview.tex + RELOC/doc/latex/pdfreview/pdfshrink.sh + RELOC/doc/latex/pdfreview/sample.pdf details="Example of use" + RELOC/doc/latex/pdfreview/sample.tex +runfiles size=5 + RELOC/tex/latex/pdfreview/pdfreview.sty +catalogue-ctan /macros/latex/contrib/pdfreview +catalogue-date 2019-02-22 22:30:44 +0100 +catalogue-license lppl +catalogue-topics graphics-incl marginal editorial teaching +catalogue-version 1.2 + +name pdfscreen +category Package +revision 42428 +shortdesc Support screen-based document design +relocated 1 +longdesc An extension of the hyperref package to provide a screen-based +longdesc document design. This package helps to generate pdf documents +longdesc that are readable on screen and will fit the screen's aspect +longdesc ratio. Also it can be used with various options to produce +longdesc regular print versions of the same document without any extra +longdesc effort. +containersize 84168 +containerchecksum e8a3fecc3aedfb87156c1dfeff4673650a8dfd31109e3d76e7f51dd99b1610aee086a2fd183d48cfe1403dadbc6a8ba84fcfab5ea832b43b8a5128bd07612112 +doccontainersize 407468 +doccontainerchecksum 8f4b1f6876b0adfcefb4a9b1ea5f9c8ffae0fb4ffc245fd75f631b172dc592dc82ffaf68b37e9c1907db5275f317b444966a466ab6c8e7b20b80535842230794 +docfiles size=216 + RELOC/doc/latex/pdfscreen/logo.pdf + RELOC/doc/latex/pdfscreen/manual-print.pdf details="Manual, for printing" + RELOC/doc/latex/pdfscreen/manual-screen.pdf details="Manual, for screen viewing" + RELOC/doc/latex/pdfscreen/manual.tex + RELOC/doc/latex/pdfscreen/nopanel.pdf + RELOC/doc/latex/pdfscreen/pdfscreen.cfg.specimen + RELOC/doc/latex/pdfscreen/portrait.pdf + RELOC/doc/latex/pdfscreen/print.pdf + RELOC/doc/latex/pdfscreen/slide.pdf + RELOC/doc/latex/pdfscreen/slide.tex + RELOC/doc/latex/pdfscreen/square.pdf + RELOC/doc/latex/pdfscreen/tex.png + RELOC/doc/latex/pdfscreen/widepanel.pdf +runfiles size=61 + RELOC/tex/latex/pdfscreen/but.pdf + RELOC/tex/latex/pdfscreen/button.pdf + RELOC/tex/latex/pdfscreen/left.pdf + RELOC/tex/latex/pdfscreen/overlay.pdf + RELOC/tex/latex/pdfscreen/overlay0.pdf + RELOC/tex/latex/pdfscreen/overlay1.pdf + RELOC/tex/latex/pdfscreen/overlay10.pdf + RELOC/tex/latex/pdfscreen/overlay2.pdf + RELOC/tex/latex/pdfscreen/overlay3.pdf + RELOC/tex/latex/pdfscreen/overlay4.pdf + RELOC/tex/latex/pdfscreen/overlay5.pdf + RELOC/tex/latex/pdfscreen/overlay6.pdf + RELOC/tex/latex/pdfscreen/overlay7.pdf + RELOC/tex/latex/pdfscreen/overlay8.pdf + RELOC/tex/latex/pdfscreen/overlay9.pdf + RELOC/tex/latex/pdfscreen/pdfscreen.sty + RELOC/tex/latex/pdfscreen/right.pdf +catalogue-ctan /macros/latex/contrib/pdfscreen +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics hyper presentation +catalogue-version 1.5 + +name pdfslide +category Package +revision 15878 +shortdesc Presentation slides using pdfTeX +relocated 1 +longdesc This is a package for use with pdfTeX, to make nice +longdesc presentation slides. Its aims are: to devise a method for +longdesc easier technical presentation; to help the mix of mathematical +longdesc formulae with text and graphics which other present day +longdesc document processing tools fail to accomplish; to exploit the +longdesc platform independence of TeX so that presentation documents +longdesc become portable; and to offer the freedom and possibilities of +longdesc using various backgrounds and other embellishments that a user +longdesc can imagine to have in as presentation. The package can make +longdesc use of the facilities of the PPower4 post-processor. +containersize 43896 +containerchecksum bdb1d91b587375a0d72e317e4a762b9cef984dfa36d94fd7bd13a3e22941f0f1f4c981138b805613f7a62f4d09c7c781fa9e4e5d4b5019a749a8f8a700bf5540 +doccontainersize 165824 +doccontainerchecksum 92008d1e461e5309649ec5160b7dd3796455f04e923f4e5c8593a3a4cc76f704639206c48a4af13bfa9fa3fd735b03ad419f07d1222a45d093a6824aafcb8df1 +docfiles size=68 + RELOC/doc/latex/pdfslide/demo.pdf details="Narrative demonstration of the package" + RELOC/doc/latex/pdfslide/manual.tex + RELOC/doc/latex/pdfslide/meta.mp + RELOC/doc/latex/pdfslide/mpgraph.pdf +runfiles size=25 + RELOC/tex/latex/pdfslide/bg.jpg + RELOC/tex/latex/pdfslide/d12.jpg + RELOC/tex/latex/pdfslide/metablue.pdf + RELOC/tex/latex/pdfslide/metagray.pdf + RELOC/tex/latex/pdfslide/metagreen.pdf + RELOC/tex/latex/pdfslide/metalgray.pdf + RELOC/tex/latex/pdfslide/pdfslide.cfg + RELOC/tex/latex/pdfslide/pdfslide.sty + RELOC/tex/latex/pdfslide/slide.clo +catalogue-also prosper +catalogue-ctan /macros/latex/contrib/pdfslide +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics presentation + +name pdfsync +category Package +revision 20373 +shortdesc Provide links between source and PDF +relocated 1 +longdesc The package runs with pdfTeX or XeTeX, and creates an auxiliary +longdesc file with geometrical information to permit references back and +longdesc forth between source and PDF, assuming a conforming editor and +longdesc PDF viewer. +containersize 3872 +containerchecksum 0a7f183fd83f52016d499f8aefface745fee8351bafb4abb467166553d742f91ead7377fc3ce8111bc57253431aedf70f4b540975a1c139017f7d02ccebb6ca4 +doccontainersize 259692 +doccontainerchecksum 7e103ba84fd41acbed007f4acceb0188372a4984977a3fbee3bf4484612c6e0621a934709982407bd1d59a69167c1d2f5ebd4b94f73bc502baa8a4830fe3f983 +docfiles size=66 + RELOC/doc/latex/pdfsync/README details="Readme" + RELOC/doc/latex/pdfsync/pdfsync-doc.pdf details="Package documentation" + RELOC/doc/latex/pdfsync/pdfsync-doc.tex +runfiles size=3 + RELOC/tex/latex/pdfsync/pdfsync.sty +catalogue-also vpe +catalogue-contact-repository http://itexmac.sourceforge.net/pdfsync.html +catalogue-ctan /macros/latex/contrib/pdfsync +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl +catalogue-topics debug-supp + +name pdftex +category TLCore +revision 50602 +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 cm +depend dehyph +depend etex +depend hyphen-base +depend knuth-lib +depend plain +depend tex-ini-files +depend pdftex.ARCH +execute AddFormat name=pdftex engine=pdftex patterns=language.def options="-translate-file=cp227.tcx *pdfetex.ini" fmttriggers=cm,dehyph,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,dehyph,etex,hyphen-base,knuth-lib,plain +execute AddFormat name=pdfetex engine=pdftex patterns=language.def options="-translate-file=cp227.tcx *pdfetex.ini" fmttriggers=cm,dehyph,etex,hyphen-base,knuth-lib,plain,tex-ini-files +execute addMap dummy-space.map +containersize 37000 +containerchecksum 47b862d6ca260ee389a308a2027259c48d3b6a478c718684c7554aeb2f193142f348a668fb426d49790cc4046659ce42fc0bce099ea4c65863daa129de4fffb7 +doccontainersize 1491832 +doccontainerchecksum bb9a4ab19719fdf345146877fa91d3bae835e02b35b1dec6b288b85ea96f0492682bd4b627bf044fbc49824b6b7059a4daedf0c99055ab1ceb21cbbd86154762 +docfiles size=696 + texmf-dist/doc/man/man1/pdfetex.1 + texmf-dist/doc/man/man1/pdfetex.man1.pdf + texmf-dist/doc/man/man1/pdftex.1 + texmf-dist/doc/man/man1/pdftex.man1.pdf + texmf-dist/doc/pdftex/NEWS + texmf-dist/doc/pdftex/README + texmf-dist/doc/pdftex/manual/ChangeLog + texmf-dist/doc/pdftex/manual/Makefile + texmf-dist/doc/pdftex/manual/README + texmf-dist/doc/pdftex/manual/makefiles.cmd + texmf-dist/doc/pdftex/manual/pdftex-a.pdf details="User manual" + texmf-dist/doc/pdftex/manual/pdftex-i.tex + texmf-dist/doc/pdftex/manual/pdftex-syntax.txt + texmf-dist/doc/pdftex/manual/pdftex-t.tex + texmf-dist/doc/pdftex/manual/pdftex-w.tex + texmf-dist/doc/pdftex/manual/syntaxform.awk + texmf-dist/doc/pdftex/manual/syntaxform.pl + texmf-dist/doc/pdftex/samplepdftex/cmr10.103 + texmf-dist/doc/pdftex/samplepdftex/obj.dat + texmf-dist/doc/pdftex/samplepdftex/pdfcolor.tex + texmf-dist/doc/pdftex/samplepdftex/pic.eps + texmf-dist/doc/pdftex/samplepdftex/pic.jpg + texmf-dist/doc/pdftex/samplepdftex/pic.mps + texmf-dist/doc/pdftex/samplepdftex/pic.pdf + texmf-dist/doc/pdftex/samplepdftex/pic.png + texmf-dist/doc/pdftex/samplepdftex/pic16.png + texmf-dist/doc/pdftex/samplepdftex/rgb.icc + texmf-dist/doc/pdftex/samplepdftex/samplepdf.0 + texmf-dist/doc/pdftex/samplepdftex/samplepdf.1 + texmf-dist/doc/pdftex/samplepdftex/samplepdf.tex details="Primitive usage examples" + texmf-dist/doc/pdftex/samplepdftex/supp-mis.tex + texmf-dist/doc/pdftex/samplepdftex/supp-pdf.tex + texmf-dist/doc/pdftex/samplepdftex/tmp.pdf + texmf-dist/doc/pdftex/tests/01-fake-interword-space/Makefile + texmf-dist/doc/pdftex/tests/01-fake-interword-space/dummy-space.pfb + texmf-dist/doc/pdftex/tests/01-fake-interword-space/dummy-space.tfm + texmf-dist/doc/pdftex/tests/01-fake-interword-space/fake-interword-space.tex + texmf-dist/doc/pdftex/tests/02-pdfmatch/Makefile + texmf-dist/doc/pdftex/tests/02-pdfmatch/test-pdfmatch.tex + texmf-dist/doc/pdftex/tests/03-deterministic-output/Makefile + texmf-dist/doc/pdftex/tests/03-deterministic-output/test-SOURCE_DATE_EPOCH.tex + texmf-dist/doc/pdftex/tests/03-deterministic-output/test-fixed-date-id.tex + texmf-dist/doc/pdftex/tests/03-deterministic-output/test-no-date-id.tex + texmf-dist/doc/pdftex/tests/03-deterministic-output/test-prim.tex + texmf-dist/doc/pdftex/tests/04-pdfsuppressptexinfo/Makefile + texmf-dist/doc/pdftex/tests/04-pdfsuppressptexinfo/abc.tex + texmf-dist/doc/pdftex/tests/04-pdfsuppressptexinfo/test-pdfinfoomitdate.tex + texmf-dist/doc/pdftex/tests/04-pdfsuppressptexinfo/test-pdfsuppressptexinfo.tex + texmf-dist/doc/pdftex/tests/04-pdfsuppressptexinfo/test-pdftrailer.tex + texmf-dist/doc/pdftex/tests/05-mediabox/Makefile + texmf-dist/doc/pdftex/tests/05-mediabox/test-normal.tex + texmf-dist/doc/pdftex/tests/05-mediabox/test-omit-mediabox.tex + texmf-dist/doc/pdftex/tests/06-pkmap/Makefile + texmf-dist/doc/pdftex/tests/06-pkmap/cmb10.72pk + texmf-dist/doc/pdftex/tests/06-pkmap/cmr10.72pk + texmf-dist/doc/pdftex/tests/06-pkmap/prepatch.pdf + texmf-dist/doc/pdftex/tests/06-pkmap/test-pkmap.tex + texmf-dist/doc/pdftex/tests/07-mapwarn/Makefile + texmf-dist/doc/pdftex/tests/07-mapwarn/test-mapwarn.tex + texmf-dist/doc/pdftex/tests/Common.mak +runfiles size=65 + texmf-dist/fonts/map/dvips/dummy-space/dummy-space.map + texmf-dist/fonts/tfm/public/pdftex/dummy-space.tfm + texmf-dist/fonts/type1/public/pdftex/dummy-space.pfb + texmf-dist/scripts/simpdftex/simpdftex + texmf-dist/tex/generic/config/pdftex-dvi.tex + texmf-dist/tex/generic/pdftex/glyphtounicode.tex + texmf-dist/tex/generic/pdftex/pdfcolor.tex +catalogue-contact-bugs https://mailman.ntg.nl/mailman/listinfo/ntg-pdftex +catalogue-contact-home http://www.pdftex.org +catalogue-contact-repository https://tug.org/svn/pdftex/branches/stable +catalogue-contact-support http://lists.tug.org/pdftex +catalogue-date 2017-11-29 01:13:44 +0100 +catalogue-license gpl +catalogue-topics engine + +name pdftex-quiet +category Package +revision 49169 +shortdesc A bash wrapper for pdfTeX limiting its output to relevant errors +longdesc This package provides a bash script aiming at reducing pdfTeX's +longdesc output to relevant errors, which are displayed in a red bold +longdesc font. The project originally started as a TeX StackExchange +longdesc answer. +depend pdftex-quiet.ARCH +containersize 2516 +containerchecksum 7b33e37a4b33060abee48ccf825cacecdee552d641da48dae47e3615fa0ab91ea9912b52fbd5c5ba6cdaa9c0d2cc7baa7c48a80bebb6d1887e5c633dacb4d104 +doccontainersize 12516 +doccontainerchecksum e13392cfefaed2c154c086ffcf85e21725e4230ce78d10e07dcb0a1c8b3685bef2572c5f5e249c56120320f2b0167cd5055ade50625a296446a197c0ba4b85cc +docfiles size=11 + texmf-dist/doc/support/pdftex-quiet/LICENCE + texmf-dist/doc/support/pdftex-quiet/README.md details="Readme" + texmf-dist/doc/support/pdftex-quiet/VERSION +runfiles size=2 + texmf-dist/scripts/pdftex-quiet/pdftex-quiet +catalogue-contact-repository https://gitlab.com/jirislav/pdftex-quiet +catalogue-ctan /support/pdftex-quiet +catalogue-date 2018-11-15 16:55:01 +0100 +catalogue-license gpl3 +catalogue-topics compilation +catalogue-version 1.1.0 + +name pdftex-quiet.aarch64-linux +category Package +revision 49140 +shortdesc aarch64-linux files of pdftex-quiet +containersize 344 +containerchecksum 1b796caa5d79b1d39c3c63086e6a6275de3f0f9f46cce9b4294f77029ed0133023ca46236ef58e5c1a708f4f732f0e2de109ac20d412f8b6aa60729199cbfb34 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pdftex-quiet + +name pdftex-quiet.amd64-freebsd +category Package +revision 49140 +shortdesc amd64-freebsd files of pdftex-quiet +containersize 344 +containerchecksum 3fe6a374adc58f0b58891e241fd487b3efd9d389d1763bee08347a52adc14475c06efe38ffb3d68bdbb293ccce895f5ffc4e0a46af6f58620dd754d14d041f77 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pdftex-quiet + +name pdftex-quiet.amd64-netbsd +category Package +revision 49140 +shortdesc amd64-netbsd files of pdftex-quiet +containersize 340 +containerchecksum efa72e64848a9d04b3ffee1001792f6a00633f203cebe5ca7211d2cf174d1aadb8a8b87b4440a90b76d868876e9e1c8993df842ddf9962420b856996c3ebe364 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pdftex-quiet + +name pdftex-quiet.armhf-linux +category Package +revision 49140 +shortdesc armhf-linux files of pdftex-quiet +containersize 340 +containerchecksum 88f708d3ac6b65fbf326bbb35aafcdeffdb4e23a51ca40c2021daab86aec4dd3f5423177d709884e75fd8f26a0910f874fb1c46d1a7cdfd109fe472ff4ffedef +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pdftex-quiet + +name pdftex-quiet.i386-cygwin +category Package +revision 49140 +shortdesc i386-cygwin files of pdftex-quiet +containersize 340 +containerchecksum 79b17685ba21a129399d0fed30092add08f56cba0011480053da9d8baa34c61f4ed9f95681c6663cb1514d1a202f8f62eaf04c00ac04b1edc5ff235a3dca8239 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pdftex-quiet + +name pdftex-quiet.i386-freebsd +category Package +revision 49140 +shortdesc i386-freebsd files of pdftex-quiet +containersize 340 +containerchecksum 8e9b31e75023a0b89fcbe96aed96d2902bfb028daadc59a5c78cccf1ff52af88186ed564271daa025d97ee5191028d7a077a2fe19420057ecb137f1ba92bdc3c +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pdftex-quiet + +name pdftex-quiet.i386-linux +category Package +revision 49140 +shortdesc i386-linux files of pdftex-quiet +containersize 340 +containerchecksum d568f19e77fc77c32df7b5254669cf09bf72df9ff8499d8d851002526ec9ba5ebfa2ed644ae004320dc386f27aa62fdec7842d22d0df468debbbc1d420ba58c9 +binfiles arch=i386-linux size=1 + bin/i386-linux/pdftex-quiet + +name pdftex-quiet.i386-netbsd +category Package +revision 49140 +shortdesc i386-netbsd files of pdftex-quiet +containersize 340 +containerchecksum 55ab4a730309a2722d42f197c9f1b3860bbde3e21606146d0652bb7782f08db9cfcff37aa47fee3df1364768cee542fc9c694a4809aa644a488167f7c707b3ed +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pdftex-quiet + +name pdftex-quiet.i386-solaris +category Package +revision 49140 +shortdesc i386-solaris files of pdftex-quiet +containersize 340 +containerchecksum 224e0c532a6ff8a65d8df3af670ae28e6b19c0d3878f0599e832c3499935c6c23d231a8dd6c559f56c56d95895c4ce63c115eab55d75742f00b44053950ef9df +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pdftex-quiet + +name pdftex-quiet.x86_64-cygwin +category Package +revision 49140 +shortdesc x86_64-cygwin files of pdftex-quiet +containersize 344 +containerchecksum 2a90a50f1dcccbea60c99d4185e09604de08a7bcf6cf97a26679ae2b7111f524912e8418a0db5d63e73868763bce9e2007a0129036be5235677b44e33f05c326 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pdftex-quiet + +name pdftex-quiet.x86_64-darwin +category Package +revision 49140 +shortdesc x86_64-darwin files of pdftex-quiet +containersize 344 +containerchecksum 434108b6e1b976daa38d9e3834d184983ad8fb4f8767706cccba62c71e47c11a0b2734408b3832786f641efeb32e7d1b669377965f3efc67751cedc8557452f7 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/pdftex-quiet + +name pdftex-quiet.x86_64-darwinlegacy +category Package +revision 49140 +shortdesc x86_64-darwinlegacy files of pdftex-quiet +containersize 352 +containerchecksum b6df9aef23023bfe134361ceca86e25e4dacece531eb418de70886a850162cd0f37b01c932af371ec69b2ad3b6d94b7619e394ca4ab2b1bda9924bed470faa7c +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pdftex-quiet + +name pdftex-quiet.x86_64-linux +category Package +revision 49140 +shortdesc x86_64-linux files of pdftex-quiet +containersize 344 +containerchecksum 16792262f88fab7b6be96f404a053702061686a502f01c898be45311e02914978f193f5862b27a78905733c32921274d54a88a458ffa7f1c83a2914dc0e70e8b +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pdftex-quiet + +name pdftex-quiet.x86_64-linuxmusl +category Package +revision 49140 +shortdesc x86_64-linuxmusl files of pdftex-quiet +containersize 348 +containerchecksum 161cd1a54ffc7024eb20e1035ccec29f869143d08251835a99b8d6d151b7d24a79ede0ce8aa381910f8705aca14cd25bdc33fcec6f1bae62350dbebad46ac67e +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pdftex-quiet + +name pdftex-quiet.x86_64-solaris +category Package +revision 49140 +shortdesc x86_64-solaris files of pdftex-quiet +containersize 340 +containerchecksum 4584b68a744bf760e283dcca46a823b639018fc04b44e96639d07f09aa89c4f8c39e20974dbf2dea8cf218989325896f64c942b6e98cd37a1c08c11bb86517a2 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pdftex-quiet + +name pdftex.aarch64-linux +category TLCore +revision 50700 +shortdesc aarch64-linux files of pdftex +containersize 791652 +containerchecksum 5748188aba9e5143d127a3c2e78c2020e5e0e08b9df7fb6e998c6b44fd975efa72f8c5164155b173eeb7d1eb7f5f9a6c0c43e9f89fb387827e31a23b632af2f4 +binfiles arch=aarch64-linux size=641 + bin/aarch64-linux/etex + bin/aarch64-linux/pdfetex + bin/aarch64-linux/pdftex + bin/aarch64-linux/simpdftex + +name pdftex.amd64-freebsd +category TLCore +revision 50700 +shortdesc amd64-freebsd files of pdftex +containersize 898308 +containerchecksum cc1818b79ce0a96de8f31918883834c0389e159c5db18ac8784b24a098b79df84efd6efb102dc2a177f5514e1ee3a2a60adbcda071f85805c277dc76681eae75 +binfiles arch=amd64-freebsd size=625 + bin/amd64-freebsd/etex + bin/amd64-freebsd/pdfetex + bin/amd64-freebsd/pdftex + bin/amd64-freebsd/simpdftex + +name pdftex.amd64-netbsd +category TLCore +revision 50693 +shortdesc amd64-netbsd files of pdftex +containersize 734860 +containerchecksum d895d3f201dcbac3569cbd4412ddd17f6ef7ef1f3a7f47d79782db6e9278c977ba6654e2b0fcda1493e94bd6d7e826bf9c52010ee5182ac67c96b8cfd6f6404e +binfiles arch=amd64-netbsd size=684 + bin/amd64-netbsd/etex + bin/amd64-netbsd/pdfetex + bin/amd64-netbsd/pdftex + bin/amd64-netbsd/simpdftex + +name pdftex.armhf-linux +category TLCore +revision 50790 +shortdesc armhf-linux files of pdftex +containersize 682052 +containerchecksum 27b10270812bafbffab0e6f44b9925875f5ab47be903278bab4fb7e8514367a514cc58d720e2c0917e53c5a78533ccf639803e34e91a46b3eab67ecf1364c534 +binfiles arch=armhf-linux size=452 + bin/armhf-linux/etex + bin/armhf-linux/pdfetex + bin/armhf-linux/pdftex + bin/armhf-linux/simpdftex + +name pdftex.i386-cygwin +category TLCore +revision 50855 +shortdesc i386-cygwin files of pdftex +containersize 737440 +containerchecksum c4dbf1d931b3a0c90db89e0baf1d5bc15ca2d7da7778fe677098469fc0a33754fdc4e00be57efe35891192960d5fa565c51efaa7f5503f62947339f2fa90acc2 +binfiles arch=i386-cygwin size=511 + bin/i386-cygwin/etex + bin/i386-cygwin/pdfetex + bin/i386-cygwin/pdftex.exe + bin/i386-cygwin/simpdftex + +name pdftex.i386-freebsd +category TLCore +revision 50700 +shortdesc i386-freebsd files of pdftex +containersize 756740 +containerchecksum 4288a172d664e1032ee2560120860eb886bd194d592c88fcdfb03ebfd367ff07ea08eee2e5f597f7886747c99c5f27fd60cc0d0094e3d1573338b7baad404b46 +binfiles arch=i386-freebsd size=536 + bin/i386-freebsd/etex + bin/i386-freebsd/pdfetex + bin/i386-freebsd/pdftex + bin/i386-freebsd/simpdftex + +name pdftex.i386-linux +category TLCore +revision 50700 +shortdesc i386-linux files of pdftex +containersize 834944 +containerchecksum acbd383a1a6b7fcc42bb9a2f2cc67c8371e64d9326b40373155f24a0e8b61c247c2cc560a706de6994a1a143188068ad3c590e1a704f334d5111a5e7b032f376 +binfiles arch=i386-linux size=557 + bin/i386-linux/etex + bin/i386-linux/pdfetex + bin/i386-linux/pdftex + bin/i386-linux/simpdftex + +name pdftex.i386-netbsd +category TLCore +revision 50693 +shortdesc i386-netbsd files of pdftex +containersize 656304 +containerchecksum 7877bb963169e680262483ea87cd3d2de560bc8f9e759bb6458ae2f146d89a84cb00198c5bfe7723ba36f9d2e754d30d7f828020880016622aee8ae7060e1389 +binfiles arch=i386-netbsd size=609 + bin/i386-netbsd/etex + bin/i386-netbsd/pdfetex + bin/i386-netbsd/pdftex + bin/i386-netbsd/simpdftex + +name pdftex.i386-solaris +category TLCore +revision 50700 +shortdesc i386-solaris files of pdftex +containersize 833540 +containerchecksum 428e7f7c4ea41bb11aad84feed1be404fce90048e2cee909a834766a0a8011e8218b7c9e4fbc098f6cd8f3d3caf03f9dc898e544205d2eaca13898889bef33a4 +binfiles arch=i386-solaris size=555 + bin/i386-solaris/etex + bin/i386-solaris/pdfetex + bin/i386-solaris/pdftex + bin/i386-solaris/simpdftex + +name pdftex.win32 +category TLCore +revision 50673 +shortdesc win32 files of pdftex +containersize 705636 +containerchecksum 0c7b06b3a98d3288abd5610f6bc477f4de7273daa84f5ee04f1aaf45e6e9bb590f34763681a662cdbcd9f797e3a979d7c373c1590d23bb243b10bb2ca48f1613 +binfiles arch=win32 size=457 + bin/win32/etex.exe + bin/win32/pdfetex.exe + bin/win32/pdftex.dll + bin/win32/pdftex.exe + +name pdftex.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of pdftex +containersize 779856 +containerchecksum 81a7723faca13d8114d6a0d9c3d890838a583dc3e320b1f4ea238b31b08d1689720da3468aee9f5763c0323ed1a0226f2997061ff48098b4ee142ab07fd9ae28 +binfiles arch=x86_64-cygwin size=516 + bin/x86_64-cygwin/etex + bin/x86_64-cygwin/pdfetex + bin/x86_64-cygwin/pdftex.exe + bin/x86_64-cygwin/simpdftex + +name pdftex.x86_64-darwin +category TLCore +revision 50700 +shortdesc x86_64-darwin files of pdftex +containersize 915640 +containerchecksum a330e274d04bcd42b4b2d4db4d5319a68687fa03fcbcffdc6e7dd63fcf4d5c80327c752a2cc1c5340c49aaf183d2b37941a312eb6afd2da18c183b49a2033b1b +binfiles arch=x86_64-darwin size=618 + bin/x86_64-darwin/etex + bin/x86_64-darwin/pdfetex + bin/x86_64-darwin/pdftex + bin/x86_64-darwin/simpdftex + +name pdftex.x86_64-darwinlegacy +category TLCore +revision 50700 +shortdesc x86_64-darwinlegacy files of pdftex +containersize 777204 +containerchecksum 369b069674afe00aaaa4f13b4930de6dd339969ed91bd0740a0c8b593e4f821922431379090706806fb2afab066b279bbdd49c756206526a48f4ba944563a002 +binfiles arch=x86_64-darwinlegacy size=509 + bin/x86_64-darwinlegacy/etex + bin/x86_64-darwinlegacy/pdfetex + bin/x86_64-darwinlegacy/pdftex + bin/x86_64-darwinlegacy/simpdftex + +name pdftex.x86_64-linux +category TLCore +revision 50700 +shortdesc x86_64-linux files of pdftex +containersize 831192 +containerchecksum 0226d6ea2c0a3bc2e8fc4504469da9f1e24d68cd7804b56c9ca21bf59b7b5de439d5a7a0a1535d8daff363a063358fe0701ce3993f6d23a8829cd97cdebe2d90 +binfiles arch=x86_64-linux size=545 + bin/x86_64-linux/etex + bin/x86_64-linux/pdfetex + bin/x86_64-linux/pdftex + bin/x86_64-linux/simpdftex + +name pdftex.x86_64-linuxmusl +category TLCore +revision 50700 +shortdesc x86_64-linuxmusl files of pdftex +containersize 908772 +containerchecksum 71d270e72358f7e6b26bea845c02fa2f51a76c1ccbf52ba4810d79736fc5f0cc20485345bda16fec56daee24102b018aa78f0a234d6bf82bd7b5b8e684dd8da3 +binfiles arch=x86_64-linuxmusl size=694 + bin/x86_64-linuxmusl/etex + bin/x86_64-linuxmusl/pdfetex + bin/x86_64-linuxmusl/pdftex + bin/x86_64-linuxmusl/simpdftex + +name pdftex.x86_64-solaris +category TLCore +revision 50700 +shortdesc x86_64-solaris files of pdftex +containersize 912348 +containerchecksum c9e8457aee5f4639b7dbda479dd3467bbcf238a201373117faa89a2f219b1ffdf4ce2e6be3112a395b05cd83fd037d2a1e058d0229a5c784f09fedaac325233b +binfiles arch=x86_64-solaris size=627 + bin/x86_64-solaris/etex + bin/x86_64-solaris/pdfetex + bin/x86_64-solaris/pdftex + bin/x86_64-solaris/simpdftex + +name pdftools +category TLCore +revision 50602 +catalogue xpdfopen +shortdesc PDF-related utilities +longdesc The command-line programs pdfopen and pdfclose allow you to +longdesc control the X Window System version of Adobe's Acrobat Reader +longdesc from the command line or from within a (shell) script. The +longdesc programs work with Acrobat Reader 5, 7, 8 and 9 for Linux, xpdf +longdesc and evince. This version derives from one written by Fabrice +longdesc Popineau for Microsoft operating systems. +depend pdftools.ARCH +containersize 1844 +containerchecksum ba9ae7b0bbe512465357405e87f3d523235c2398d4a94e8d0c8191e37db06bfabd6676f3fb9f603397e5682f9dd4f9b1b4cad03fce89448a9f0b254f8a7f2b46 +doccontainersize 64040 +doccontainerchecksum 3f95883d9405bcec282468f42f8718bf9c510d98c41510aa643ce0b70eb7557f67b75def0dc0e1f862f79d586f0f49959b4c826f8c468ca9460fdd69d3d4ceb5 +docfiles size=34 + texmf-dist/doc/man/man1/e2pall.1 + texmf-dist/doc/man/man1/e2pall.man1.pdf + texmf-dist/doc/man/man1/pdfclose.1 + texmf-dist/doc/man/man1/pdfclose.man1.pdf + texmf-dist/doc/man/man1/pdfopen.1 + texmf-dist/doc/man/man1/pdfopen.man1.pdf + texmf-dist/doc/man/man1/pdftosrc.1 + texmf-dist/doc/man/man1/pdftosrc.man1.pdf +runfiles size=1 + texmf-dist/scripts/texlive/e2pall.pl +catalogue-ctan /support/xpdfopen +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics previewer +catalogue-version 0.86 + +name pdftools.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of pdftools +containersize 380600 +containerchecksum 6dfa94d8a922966984e1c94fc7a5dfdd0658b6a4a8c37af30a433becc960a5fd9ec5635f5c58407c19a11dd5fd7748ad98ecadde01c1bda0e000c882a087a28e +binfiles arch=aarch64-linux size=385 + bin/aarch64-linux/e2pall + bin/aarch64-linux/pdfatfi + bin/aarch64-linux/pdfclose + bin/aarch64-linux/pdfopen + bin/aarch64-linux/pdftosrc + +name pdftools.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of pdftools +containersize 364516 +containerchecksum 50e224eb505d0666a204a98299c81c2f19a0e69e4fc0693bcf5fee8d05527f7d415792f6e4c684de13ef66179c3a20a81f2ee842c7a182d611b831e021c5e9c1 +binfiles arch=amd64-freebsd size=300 + bin/amd64-freebsd/e2pall + bin/amd64-freebsd/pdfatfi + bin/amd64-freebsd/pdfclose + bin/amd64-freebsd/pdfopen + bin/amd64-freebsd/pdftosrc + +name pdftools.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of pdftools +containersize 346192 +containerchecksum a7560ab74868264f0fa2dbe0cb9e2de52b7c381e52d8c48df5a76b24f8fe0b2829f1351132e3a30930bfc43f2df142f80de8420fc4049543d529a5421544f9c6 +binfiles arch=amd64-netbsd size=376 + bin/amd64-netbsd/e2pall + bin/amd64-netbsd/pdfatfi + bin/amd64-netbsd/pdfclose + bin/amd64-netbsd/pdfopen + bin/amd64-netbsd/pdftosrc + +name pdftools.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of pdftools +containersize 311616 +containerchecksum 3b461df39af562a10767128933a4c949922a4f345a19b2d35ea659d665b178d6cb5f8673624b82a2a2ff369ef647e6486df0b52016c67ae41367aeb4dd2b5b5a +binfiles arch=armhf-linux size=239 + bin/armhf-linux/e2pall + bin/armhf-linux/pdfatfi + bin/armhf-linux/pdfclose + bin/armhf-linux/pdfopen + bin/armhf-linux/pdftosrc + +name pdftools.i386-cygwin +category TLCore +revision 50603 +shortdesc i386-cygwin files of pdftools +containersize 364616 +containerchecksum ecccafc65e17d07f13c3ce26528ee06a75c84a0cfe8ada8123cc8534e9fd751567f0ad8a0667f5a65a3cc146887dfc93d4bbe49eaa04430d9e91ed2b440b0a37 +binfiles arch=i386-cygwin size=290 + bin/i386-cygwin/e2pall + bin/i386-cygwin/pdfatfi + bin/i386-cygwin/pdfclose.exe + bin/i386-cygwin/pdfopen.exe + bin/i386-cygwin/pdftosrc.exe + +name pdftools.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of pdftools +containersize 344988 +containerchecksum 5af8b4fc3d6fab33bb4b54fb05ba10762f46e6c7aaa394d5bf06c7b249f362b57de276e66bffe6c6701c9400b5bc02e883baf8d7cd1b7553ee5b8b6774d7d2b7 +binfiles arch=i386-freebsd size=259 + bin/i386-freebsd/e2pall + bin/i386-freebsd/pdfatfi + bin/i386-freebsd/pdfclose + bin/i386-freebsd/pdfopen + bin/i386-freebsd/pdftosrc + +name pdftools.i386-linux +category TLCore +revision 50281 +shortdesc i386-linux files of pdftools +containersize 396964 +containerchecksum a81137dd53dc06ad3c856d59222f8c617ee939a51eb41c5cae3d19552361b2cc10f7069f98471cb6480821b9067332ce1da694db6ed0d52162d6093069ab3260 +binfiles arch=i386-linux size=292 + bin/i386-linux/e2pall + bin/i386-linux/pdfatfi + bin/i386-linux/pdfclose + bin/i386-linux/pdfopen + bin/i386-linux/pdftosrc + +name pdftools.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of pdftools +containersize 332848 +containerchecksum 91c6c2fdaa0ff8df32ecdaf72e5a2c52012dac2851223c8505754832f93f300eecf1be9cb5e55950c6bc1353c3ced876e91321d34cba841bb0b454b0b2f442a0 +binfiles arch=i386-netbsd size=326 + bin/i386-netbsd/e2pall + bin/i386-netbsd/pdfatfi + bin/i386-netbsd/pdfclose + bin/i386-netbsd/pdfopen + bin/i386-netbsd/pdftosrc + +name pdftools.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of pdftools +containersize 424568 +containerchecksum eae56459a99a505885ba8c00a4ee46dd06c76a219e00222dddbbfa71c52fdcc0bb63abc1d524c9bf201264e42a8d7d6ccbad2567ddfc8700b6370be7655f67d3 +binfiles arch=i386-solaris size=326 + bin/i386-solaris/e2pall + bin/i386-solaris/pdfatfi + bin/i386-solaris/pdfclose + bin/i386-solaris/pdfopen + bin/i386-solaris/pdftosrc + +name pdftools.win32 +category TLCore +revision 50155 +shortdesc win32 files of pdftools +containersize 941636 +containerchecksum c41d040e2cce2259ae3fcae28e23240c2f8962e427e2881bb55ffccf6befda72fee11fe83e5cb5283bb7744a9ea746a0fd83a819692b0473b57c11feb97a387c +binfiles arch=win32 size=628 + bin/win32/e2pall.exe + bin/win32/pdfatfi.exe + bin/win32/pdfclose.exe + bin/win32/pdfdde.exe + bin/win32/pdfopen.exe + bin/win32/pdftosrc.exe + +name pdftools.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of pdftools +containersize 372888 +containerchecksum d2b70612e73a652be509c18d214728a6c2d6bddab75aafa7c701969a59462c92aac5c2e8cf039706aac9b0bc9ecbb7ead9adf0455cc9ba76335e8128d704db05 +binfiles arch=x86_64-cygwin size=300 + bin/x86_64-cygwin/e2pall + bin/x86_64-cygwin/pdfatfi + bin/x86_64-cygwin/pdfclose.exe + bin/x86_64-cygwin/pdfopen.exe + bin/x86_64-cygwin/pdftosrc.exe + +name pdftools.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of pdftools +containersize 382432 +containerchecksum 4085908abbe8752f58663f36cd7584553c571c4ed4411b70ba4d08de86c20f67bce6cdca39e5bd6e38b770bfc7eac28317083b46b3a733412634047cce852bff +binfiles arch=x86_64-darwin size=308 + bin/x86_64-darwin/e2pall + bin/x86_64-darwin/pdfatfi + bin/x86_64-darwin/pdfclose + bin/x86_64-darwin/pdfopen + bin/x86_64-darwin/pdftosrc + +name pdftools.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of pdftools +containersize 351328 +containerchecksum 52c6e8e0202cf63b308dae1c9df022123df852baca2206c67f22d23302f407630fa183ee2d4a55613e3d8e4bf71463399bd656a9a61540061d2c6e0f51a3524f +binfiles arch=x86_64-darwinlegacy size=281 + bin/x86_64-darwinlegacy/e2pall + bin/x86_64-darwinlegacy/pdfatfi + bin/x86_64-darwinlegacy/pdfclose + bin/x86_64-darwinlegacy/pdfopen + bin/x86_64-darwinlegacy/pdftosrc + +name pdftools.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of pdftools +containersize 384244 +containerchecksum b16554b47a3c01f4c0191468f6f567c5c2d44e02f6b1ff4c9e83aba89220a0387baa092f67b79054c1ec1acfbf5ca9df820c4466fe7033370f0267610f4f0cd1 +binfiles arch=x86_64-linux size=305 + bin/x86_64-linux/e2pall + bin/x86_64-linux/pdfatfi + bin/x86_64-linux/pdfclose + bin/x86_64-linux/pdfopen + bin/x86_64-linux/pdftosrc + +name pdftools.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of pdftools +containersize 429596 +containerchecksum 0bf87aba0d9903853a8081f12035e4e7175758b7ec6a58eac898b9085236054615890dfa71892050522cae3f7c6146bd675cfd13043ed78aedbd8bc63796b488 +binfiles arch=x86_64-linuxmusl size=409 + bin/x86_64-linuxmusl/e2pall + bin/x86_64-linuxmusl/pdfatfi + bin/x86_64-linuxmusl/pdfclose + bin/x86_64-linuxmusl/pdfopen + bin/x86_64-linuxmusl/pdftosrc + +name pdftools.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of pdftools +containersize 437856 +containerchecksum 6d3b96d47d66d610671f6ce73734bbd2e3e03458c4fe3c87b342bc1ac577029d8534461bc0b48adf2787eeab0993a5e94c2f95350b4c144a2e562e3d65b03db0 +binfiles arch=x86_64-solaris size=366 + bin/x86_64-solaris/e2pall + bin/x86_64-solaris/pdfatfi + bin/x86_64-solaris/pdfclose + bin/x86_64-solaris/pdfopen + bin/x86_64-solaris/pdftosrc + +name pdftricks +category Package +revision 15878 +shortdesc Support for PSTricks in pdfTeX +relocated 1 +longdesc The PSTricks macros cannot be used (directly) with pdfTeX, +longdesc since PSTricks uses PostScript arithmetic, which isn't part of +longdesc PDF. This package circumvents this limitation so that the +longdesc extensive facilities offered by the powerful PSTricks package +longdesc can be made use of in a pdfTeX document. This is done using the +longdesc shell escape function available in current TeX implementations. +longdesc The package may also be used in support of other +longdesc 'PostScript-output-only' packages, such as PSfrag. For +longdesc alternatives, users may care to review the discussion in the +longdesc PSTricks online documentation. +containersize 4360 +containerchecksum f7c0a71e44d0d388ab952ff820e5af63fe0f94acb2feb3415a2d1b3cffd94efc7e8bd17efbb7b608d082ab1b7d7ba1b780c63088df54a8db241c9b3d133eab1e +doccontainersize 217036 +doccontainerchecksum 0e3ec1f3b7d7c9bda1e08060f0ee0615244863e513a25370b598f22bef00e6ece79592a105eb13cc913c169b1994c8a38fd60be0566e1c52e1ce2f97dc1e5995 +docfiles size=107 + RELOC/doc/latex/pdftricks/makefile + RELOC/doc/latex/pdftricks/manual.pdf details="Package documentation" + RELOC/doc/latex/pdftricks/pst2pdf + RELOC/doc/latex/pdftricks/test.pdf details="Test example (source available)" + RELOC/doc/latex/pdftricks/test.tex +runfiles size=4 + RELOC/tex/latex/pdftricks/pdftricks.sty +catalogue-also pst-pdf +catalogue-ctan /graphics/pdftricks +catalogue-date 2018-09-15 12:29:58 +0200 +catalogue-license gpl +catalogue-topics callback pstricks +catalogue-version 1.16 + +name pdftricks2 +category Package +revision 31016 +shortdesc Use PSTricks in pdfTeX +relocated 1 +longdesc The package provides the means of processing documents (that +longdesc contain pstricks graphics specifications. The package is +longdesc inspired by pdftricks +containersize 5468 +containerchecksum e50406cd680e1d5cfabcfd8000b743fde61dcff7e3c686b06f58fd1fd36e414d53140b5d244ef65931aeec67dbf458e5e2d43266f26ee9de301babbc0f88853d +doccontainersize 62624 +doccontainerchecksum 4a22c280a28e4a45f068d52f4d75f19b5ccfec30609d7c8d143cccc67d16fc04cd1ae63e7d6a5a659a0805ed85d96d57ff5fba4b246f67029457088e7696ad23 +docfiles size=22 + RELOC/doc/latex/pdftricks2/README details="Readme" + RELOC/doc/latex/pdftricks2/pdftricks2-doc.pdf details="Package documentation" + RELOC/doc/latex/pdftricks2/pdftricks2-doc.tex +runfiles size=6 + RELOC/tex/latex/pdftricks2/pdftricks2.sty +catalogue-also pdftricks +catalogue-ctan /graphics/pdftricks2 +catalogue-date 2018-09-15 12:32:24 +0200 +catalogue-license gpl2 +catalogue-topics callback pstricks +catalogue-version 1.01 + +name pdfwin +category Package +revision 45797 +shortdesc customizable windows for screen viewing of TeX documents +relocated 1 +longdesc Inspired by the pdfscreen package. +containersize 15880 +containerchecksum 7f1fafb7396eadc81ae39727f35b1f49ee0fecf7ca1950d8fd5b80c46d24811cfa779a6d53b10c007a7916e14584de5e88f2bb5b1f3ef8fad739dde63e56bc0d +doccontainersize 310748 +doccontainerchecksum d352311a94d9f673ea8c6460f6771747b0523e2c354e5c7114cc58d7e0e92210f4eedb70a728d423de387a2ed2a3460f1acbcaef38579a26d2225f713e606407 +docfiles size=130 + RELOC/doc/latex/pdfwin/BucResampling.pdf + RELOC/doc/latex/pdfwin/BucSystem1.pdf + RELOC/doc/latex/pdfwin/BucSystem2.pdf + RELOC/doc/latex/pdfwin/BucSystem3.pdf + RELOC/doc/latex/pdfwin/BucSystem4.pdf + RELOC/doc/latex/pdfwin/BucSystem5.pdf + RELOC/doc/latex/pdfwin/BucSystem6.pdf + RELOC/doc/latex/pdfwin/Bucuresti2003.tex + RELOC/doc/latex/pdfwin/JWGU-Logo.png + RELOC/doc/latex/pdfwin/Thumbs.db + RELOC/doc/latex/pdfwin/marble.png + RELOC/doc/latex/pdfwin/normprot.tex + RELOC/doc/latex/pdfwin/shortvec.tex +runfiles size=20 + RELOC/tex/latex/pdfwin/pdfwin.cfg + RELOC/tex/latex/pdfwin/pdfwin.sty + +name pdfx +category Package +revision 50338 +shortdesc PDF/X and PDF/A support for pdfTeX, LuaTeX and XeTeX +relocated 1 +longdesc The package helps LaTeX users to create PDF/X, PFD/A and other +longdesc standards-compliant PDF documents with pdfTeX, LuaTeX and +longdesc XeTeX. +containersize 89260 +containerchecksum c1e1be225efd5bd66873663ccb134521b40253875248096a66a8499609e62e481fa64e563afd75952b2dc0041fa1fce594f4047c3c91fe6b9443493ce8899ae7 +doccontainersize 4951404 +doccontainerchecksum 22b7e52295ab8da136e584f545001d0db480cefb06b7d595133ff3508c9ee3e7b7d8c8a93c41ebf24a9e313b4e40fdf355a88ef0a65b629c3b27f5f4bcec906a +docfiles size=1301 + RELOC/doc/latex/pdfx/Armenian-example-UTF8.png + RELOC/doc/latex/pdfx/MANIFEST + RELOC/doc/latex/pdfx/README details="Readme" + RELOC/doc/latex/pdfx/TL-POL-meta.png + RELOC/doc/latex/pdfx/TL-RU-LICRs.png + RELOC/doc/latex/pdfx/TL-RU-metadata.png + RELOC/doc/latex/pdfx/TL-RU-toc.png + RELOC/doc/latex/pdfx/arm-start.tex + RELOC/doc/latex/pdfx/armtex-meta.png + RELOC/doc/latex/pdfx/koi8-example.tex + RELOC/doc/latex/pdfx/koi8-example2.tex + RELOC/doc/latex/pdfx/latin2-example.tex + RELOC/doc/latex/pdfx/manifest.txt + RELOC/doc/latex/pdfx/math-assign5.png + RELOC/doc/latex/pdfx/pdfx.pdf details="Package documentation" + RELOC/doc/latex/pdfx/pdfx.xmpdata + RELOC/doc/latex/pdfx/sample.tex + RELOC/doc/latex/pdfx/small2e-pdfx.tex + RELOC/doc/latex/pdfx/usage-meta.png +srccontainersize 63748 +srccontainerchecksum 31c9d2e7fb89f9405f26a18dce6a5066958867ca03ee793e46f9676022ecda77074eef23fb4a238af5b077d642107c372e268ce5b4e7c0358d7ca8c0ed6daddb +srcfiles size=66 + RELOC/source/latex/pdfx/Makefile.src + RELOC/source/latex/pdfx/pdfx.dtx + RELOC/source/latex/pdfx/pdfx.ins + RELOC/source/latex/pdfx/rvdtx.sty +runfiles size=215 + RELOC/tex/latex/pdfx/8bit.def + RELOC/tex/latex/pdfx/AdobeColorProfiles.tex + RELOC/tex/latex/pdfx/AdobeExternalProfiles.tex + RELOC/tex/latex/pdfx/CallasColorProfiles.tex + RELOC/tex/latex/pdfx/armglyphs.dfu + RELOC/tex/latex/pdfx/glyphtounicode-cmr.tex + RELOC/tex/latex/pdfx/glyphtounicode-ntx.tex + RELOC/tex/latex/pdfx/l8u-penc.def + RELOC/tex/latex/pdfx/l8uarb-penc.def + RELOC/tex/latex/pdfx/l8uarm-penc.def + RELOC/tex/latex/pdfx/l8ucyr-penc.def + RELOC/tex/latex/pdfx/l8udev-penc.def + RELOC/tex/latex/pdfx/l8ugrk-penc.def + RELOC/tex/latex/pdfx/l8uheb-penc.def + RELOC/tex/latex/pdfx/l8ulat-penc.def + RELOC/tex/latex/pdfx/l8umath-penc.def + RELOC/tex/latex/pdfx/pdfa.xmp + RELOC/tex/latex/pdfx/pdfe.xmp + RELOC/tex/latex/pdfx/pdfvt.xmp + RELOC/tex/latex/pdfx/pdfx.sty + RELOC/tex/latex/pdfx/pdfx.xmp + RELOC/tex/latex/pdfx/text89.def +catalogue-ctan /macros/latex/contrib/pdfx +catalogue-date 2019-03-10 21:28:05 +0100 +catalogue-license lppl +catalogue-topics pdf-feat +catalogue-version 1.6.3 + +name pdfxup +category Package +revision 40690 +shortdesc Create n-up PDF pages with minimal margins +longdesc pdfxup is a unix/linux shell script that creates a PDF document +longdesc where each page is obtained by combining several pages of a PDF +longdesc file given as output. +depend pdfxup.ARCH +containersize 7264 +containerchecksum 4086f58241799139e980c97c1aae786566bb7801932334d78e89dfc5f8e718b6b9fd3eada32ae006b9aeb74d8b2644071a1b1e60db7dda3b4b4942947d727fca +doccontainersize 21260 +doccontainerchecksum 3888fce668affc7efa7e9d88c890f72c94b49dd88ea3c05af956943dc015e89ad930e2de3a67e023c7e1be2cd1c7911e5df29dbc273e3c2b219eb5377c165956 +docfiles size=10 + texmf-dist/doc/man/man1/pdfxup.1 + texmf-dist/doc/man/man1/pdfxup.man1.pdf + texmf-dist/doc/support/pdfxup/README details="Readme" + texmf-dist/doc/support/pdfxup/RELEASES + texmf-dist/doc/support/pdfxup/pdfxup.pdf +runfiles size=7 + texmf-dist/scripts/pdfxup/pdfxup +catalogue-ctan /support/pdfxup +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics pdfprocess +catalogue-version 1.30 + +name pdfxup.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pdfxup +containersize 340 +containerchecksum c4f9aa2039cc8e16e38eeb9721ea8a572be928a0acf8ef83737ad19f7ed183022df1c391a43dc30ffec375c48e61e865a777e9795b828adcfbe782fa36aeef48 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pdfxup + +name pdfxup.amd64-freebsd +category Package +revision 40690 +shortdesc amd64-freebsd files of pdfxup +containersize 340 +containerchecksum 66c403bbf3bf02ea55a1eb5914e7c977825bf4d2279485ff9bbf72f6cd529888717729490db77d1ffffe0412e8f6713196439fa0b8f27e760fd1c8f290dfe7da +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pdfxup + +name pdfxup.amd64-netbsd +category Package +revision 40690 +shortdesc amd64-netbsd files of pdfxup +containersize 340 +containerchecksum 11be0a896833b591ed9b8f5e7f9003df0584356646f46f6ee49a7e1afb4f9564ad987b342bdc431869654f9231ca2d9f519206c629be6052dd401e58a0ff7f2b +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pdfxup + +name pdfxup.armhf-linux +category Package +revision 40690 +shortdesc armhf-linux files of pdfxup +containersize 340 +containerchecksum 03f07d55618f67de4a0af079b79e0067c9579a08cef3ba8d33f430c358c782a6f44d7cdb7f9d0a73eea01d8812553138b341174b9e52cef58bcbe54a5788d94c +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pdfxup + +name pdfxup.i386-cygwin +category Package +revision 40690 +shortdesc i386-cygwin files of pdfxup +containersize 336 +containerchecksum 9f24f3b08cf10eb0e40d03d60d9b0c0d0a5162bf86acab244d1d7aac0c2fa93f70d341449dec39184d7c7feb7390b0a3342df28dfd8d29a8bf17d5b8c85049de +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pdfxup + +name pdfxup.i386-freebsd +category Package +revision 40690 +shortdesc i386-freebsd files of pdfxup +containersize 340 +containerchecksum 1da4dd4c33ef7237043fcb065825ef7ccecb813083939a373ea5a304d75f171490af0a8a1a3c232a1ebc913867999e2b14ff727d2737e5f5c8f447bf7245e851 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pdfxup + +name pdfxup.i386-linux +category Package +revision 40690 +shortdesc i386-linux files of pdfxup +containersize 336 +containerchecksum 4c8f3d570031d80bafce122f7ef719623369d391f74c15c0548ca1102fbbb90daaaeeeb987e173d4f97440bc10e0f3ca2949b677438eacaf8fe748019ef03e69 +binfiles arch=i386-linux size=1 + bin/i386-linux/pdfxup + +name pdfxup.i386-netbsd +category Package +revision 40690 +shortdesc i386-netbsd files of pdfxup +containersize 340 +containerchecksum 9cc6268b8222705bc9afaf9c1739a81ae213cfacb6072a6f2719b25658cd6a3dd65a930e905ef8b1815b5a46c1ff43182b4a2aa3f3716649286d699c1da795d8 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pdfxup + +name pdfxup.i386-solaris +category Package +revision 40690 +shortdesc i386-solaris files of pdfxup +containersize 336 +containerchecksum 126bf22238e8668a95a588b696c256c34ebc6f21f655a819b1c3d9a4f1371fbaa2d954dd3d0938a66f328f2a2452a708c54abe87c43ded1498d1ecc16fdbd0ff +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pdfxup + +name pdfxup.x86_64-cygwin +category Package +revision 40690 +shortdesc x86_64-cygwin files of pdfxup +containersize 340 +containerchecksum 046d871af7a7934b035ccd80a1aff1d1b378399de3b2ad2fbef97ef75b67acd533ab0ca5a3ac2558f69f2380c8961f90457fbfe26e33e04198207ed410db4457 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pdfxup + +name pdfxup.x86_64-darwin +category Package +revision 40690 +shortdesc x86_64-darwin files of pdfxup +containersize 340 +containerchecksum 7c1013e9cb01616a2915ef3238bbff81f6b905fed5f33db4f3a979e12c6853bf0e691d0cfcf535d064c4cd229005797b814a42d3fb3024553d835b193aa6be00 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/pdfxup + +name pdfxup.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pdfxup +containersize 348 +containerchecksum 734b9fd42f5047e2347c130e041d2d4be239555db18a7a8ae92efbfe807a3be31ae80442d4304b645d5a8e1864023ac245464aeb748fcb8b15825160d8a5ac87 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pdfxup + +name pdfxup.x86_64-linux +category Package +revision 40690 +shortdesc x86_64-linux files of pdfxup +containersize 336 +containerchecksum 7d3b38006bc107b5b6e232f62fb9996973027d95d3c12ca5d5b6b40e0d618054de262d34c7bf0bfb24c3a73de75da56e63cc7772db3b7ca7666db11a2ea9de36 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pdfxup + +name pdfxup.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pdfxup +containersize 344 +containerchecksum 065b446a722e2ca5f6226ba81beac23fac1d5c70b3ffe5c845d7f90772ba118ad0a1b7816b26da1a615064224920c97572a49c1c41a084d1c9d7128937439afe +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pdfxup + +name pdfxup.x86_64-solaris +category Package +revision 40690 +shortdesc x86_64-solaris files of pdfxup +containersize 340 +containerchecksum 137e503ed52341aa9c1cdff2b320c0b0819f0ac392a2fff796e5868133b64dca56bd2d4028b20cedf3be5a37a911530dff051440eb3db58bdd4aca2dd6d988e0 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pdfxup + +name pecha +category Package +revision 15878 +shortdesc Print Tibetan text in the classic pecha layout style +relocated 1 +longdesc The pecha class provides an environment for writing Tibetan on +longdesc LaTeX2e in the traditional Tibetan Pecha layout used for +longdesc spiritual or philosophical texts, using the cTib4TeX package by +longdesc Oliver Corff. It provides features like headers in different +longdesc languages, page numbering in Tibetan and more. +containersize 10064 +containerchecksum 12092c82c52e34259fb0894b8375c45fd94b9aead121085736a0f7bac90b7e156906a22d233c596c79880aa0b858f7213f37b2059cecbb4627ce2e4163f22335 +doccontainersize 73072 +doccontainerchecksum 3d0d9184aa0009ab67f299a87b3840513229a93ec08e33208fc7b3c1a69fe043b02844ccf7569d14c5d5cdf0546224b320970caa080458c92cc299853b021c98 +docfiles size=31 + RELOC/doc/latex/pecha/CHANGES + RELOC/doc/latex/pecha/COPYING + RELOC/doc/latex/pecha/README details="Package README" + RELOC/doc/latex/pecha/example.pdf details="Example usage" + RELOC/doc/latex/pecha/example.tex + RELOC/doc/latex/pecha/pecha_docu.pdf details="Package documentation" + RELOC/doc/latex/pecha/pecha_docu.tex +runfiles size=11 + RELOC/tex/latex/pecha/ctibmantra.sty + RELOC/tex/latex/pecha/pecha.cls +catalogue-ctan /language/tibetan/pecha +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics tibetan +catalogue-version 0.1 + +name pedigree-perl +category Package +revision 31990 +shortdesc Generate TeX pedigree files from CSV files +longdesc This program generates TeX commands to typeset pedigrees -- +longdesc either TeX fragments or full LaTeX files, to be processed by +longdesc the authors' pst-pdgr package. The program has support for +longdesc multilanguage pedigrees (at the present moment the English and +longdesc Russian languages are supported). +depend pedigree-perl.ARCH +containersize 17236 +containerchecksum 9adc918e1156b2a14bc144b96b5d3fe2b1272a5c9924e30c67236c564c1a065f06ea075249df21f19ce13b9cc03a885402e120d6b8f40f912d8c6ef4b98fc1f3 +doccontainersize 649380 +doccontainerchecksum 1e645090b3cb78b95bfed3398923c6e4cd39637238e7849bb1d05623307f82115fca87ceb6bac2aa89beb68371d7acd438099675ca33295839e413905b4ae150 +docfiles size=465 + texmf-dist/doc/man/man1/pedigree.1 + texmf-dist/doc/man/man1/pedigree.man1.pdf + texmf-dist/doc/support/pedigree-perl/LICENSE + texmf-dist/doc/support/pedigree-perl/Makefile + texmf-dist/doc/support/pedigree-perl/NEWS + texmf-dist/doc/support/pedigree-perl/Pedigree.3 + texmf-dist/doc/support/pedigree-perl/Pedigree/AbortionNode.3 + texmf-dist/doc/support/pedigree-perl/Pedigree/Area.3 + texmf-dist/doc/support/pedigree-perl/Pedigree/ChildlessNode.3 + texmf-dist/doc/support/pedigree-perl/Pedigree/Language.3 + texmf-dist/doc/support/pedigree-perl/Pedigree/Makefile + texmf-dist/doc/support/pedigree-perl/Pedigree/MarriageNode.3 + texmf-dist/doc/support/pedigree-perl/Pedigree/Node.3 + texmf-dist/doc/support/pedigree-perl/Pedigree/Parser.3 + texmf-dist/doc/support/pedigree-perl/Pedigree/PersonNode.3 + texmf-dist/doc/support/pedigree-perl/Pedigree/TwinsNode.3 + texmf-dist/doc/support/pedigree-perl/README + texmf-dist/doc/support/pedigree-perl/doc/Makefile + texmf-dist/doc/support/pedigree-perl/doc/abortions.tex + texmf-dist/doc/support/pedigree-perl/doc/english.tex + texmf-dist/doc/support/pedigree-perl/doc/english1.tex + texmf-dist/doc/support/pedigree-perl/doc/pedigree.bib + texmf-dist/doc/support/pedigree-perl/doc/pedigree.pdf details="Package documentation" + texmf-dist/doc/support/pedigree-perl/doc/pedigree.ps + texmf-dist/doc/support/pedigree-perl/doc/pedigree.tex + texmf-dist/doc/support/pedigree-perl/doc/russian.tex + texmf-dist/doc/support/pedigree-perl/examples/abortions.csv + texmf-dist/doc/support/pedigree-perl/examples/badsort.csv + texmf-dist/doc/support/pedigree-perl/examples/childlessness.csv + texmf-dist/doc/support/pedigree-perl/examples/consanguinic.csv + texmf-dist/doc/support/pedigree-perl/examples/english.cfg + texmf-dist/doc/support/pedigree-perl/examples/english.csv + texmf-dist/doc/support/pedigree-perl/examples/english1.cfg + texmf-dist/doc/support/pedigree-perl/examples/english_short.cfg + texmf-dist/doc/support/pedigree-perl/examples/pedigree.cfg + texmf-dist/doc/support/pedigree-perl/examples/russian.cfg + texmf-dist/doc/support/pedigree-perl/examples/russian.csv + texmf-dist/doc/support/pedigree-perl/examples/sort1.csv + texmf-dist/doc/support/pedigree-perl/examples/sort2.csv + texmf-dist/doc/support/pedigree-perl/examples/sort3.csv + texmf-dist/doc/support/pedigree-perl/examples/twins.csv +runfiles size=28 + texmf-dist/scripts/pedigree-perl/Pedigree.pm + texmf-dist/scripts/pedigree-perl/Pedigree/AbortionNode.pm + texmf-dist/scripts/pedigree-perl/Pedigree/Area.pm + texmf-dist/scripts/pedigree-perl/Pedigree/ChildlessNode.pm + texmf-dist/scripts/pedigree-perl/Pedigree/Language.pm + texmf-dist/scripts/pedigree-perl/Pedigree/MarriageNode.pm + texmf-dist/scripts/pedigree-perl/Pedigree/Node.pm + texmf-dist/scripts/pedigree-perl/Pedigree/Parser.pm + texmf-dist/scripts/pedigree-perl/Pedigree/PersonNode.pm + texmf-dist/scripts/pedigree-perl/Pedigree/TwinsNode.pm + texmf-dist/scripts/pedigree-perl/pedigree.pl +catalogue-ctan /graphics/pstricks/contrib/pedigree/pedigree-perl +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl2 +catalogue-topics humanities csv-support +catalogue-version 1.0 + +name pedigree-perl.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pedigree-perl +containersize 348 +containerchecksum 3e2304306e6679de3abff9aeddf5258ad323f607ee08b7f7b921061b85e304c03d4746a39cd8b9e7bbc21d7d7914596ed720ef70934d34a29abb3bd3fdc82e73 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pedigree + +name pedigree-perl.amd64-freebsd +category Package +revision 25962 +shortdesc amd64-freebsd files of pedigree-perl +containersize 348 +containerchecksum 710fd1f3d421604fee48d2d5c026eb4f4d41b71b2fc59a670ed523f57b9509da503b080c5ab0674d4a738c65880cf1215c36314fb91c2c91517178cf10272fbd +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pedigree + +name pedigree-perl.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of pedigree-perl +containersize 348 +containerchecksum 1d42d108edeaa2c66e004776e5acdf5a38d67babca3ec11bc266cb49d567a4c520f1bd3a6be7d2ca2d97de7e98ee5ff474708fb5b682f594fe405ffa3921782b +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pedigree + +name pedigree-perl.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of pedigree-perl +containersize 348 +containerchecksum 91c11d6dedfa3ec4411b2a93ea7e6094bef1492fdabb06198a47079b0549680a4bd778ea72ddce794722f57251e5b72eef6a1a7ef9bf2502d1a82c716ab52148 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pedigree + +name pedigree-perl.i386-cygwin +category Package +revision 25962 +shortdesc i386-cygwin files of pedigree-perl +containersize 344 +containerchecksum e9bbda0e28b58656a55a662d5f5ff7d8d762ac32ffee1862c75a9c99bd2f0adb4b8221cea7b5df6de25d263dee1ea1eac7e074be3bf1314da012824921d72218 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pedigree + +name pedigree-perl.i386-freebsd +category Package +revision 25962 +shortdesc i386-freebsd files of pedigree-perl +containersize 348 +containerchecksum e5807f7b9fcd98e01bfe579fa22660a5254cb6b409c5213688d2e935c9b8a80be8c5a6443efa6e7e2dd64f00908059002f17584f3c1af6dc42a7cc6d7adedf8a +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pedigree + +name pedigree-perl.i386-linux +category Package +revision 25962 +shortdesc i386-linux files of pedigree-perl +containersize 348 +containerchecksum 4b8a8a54793c10a4afb39f3db72ea1dd3b1011f7120160ae4cbd9004b8a276db77651a76c2048932835430687a835b2e97f38a9b8022a2231ebcf06b1dc23bcc +binfiles arch=i386-linux size=1 + bin/i386-linux/pedigree + +name pedigree-perl.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of pedigree-perl +containersize 344 +containerchecksum a5e90da023d99347c3d0b5b73614fac60f57a98c212c9400467feef8e05fc88b6aa8bc8fcc8f692d094ef22e81b8c594b2de2837ce9a4af34aab41a1f7f8efd4 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pedigree + +name pedigree-perl.i386-solaris +category Package +revision 25962 +shortdesc i386-solaris files of pedigree-perl +containersize 348 +containerchecksum 30203afaf475a1c5dbbaf121faa5c8bdab4fafecc4d7a827b5cdea840f5af4355b12225d671c4c3e774113f8a9020231f3f2e6a49792a76f2512ac0c865ac1a1 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pedigree + +name pedigree-perl.win32 +category Package +revision 25962 +shortdesc win32 files of pedigree-perl +containersize 692 +containerchecksum 44ba85571be20fe6b4650097953a42e7719b262d7df67fa4de1f6a480f0b2ed1cc941851fe0cbd2c229d94c2cd4606b92b7e61ae08c5a5c49e47c9c93ba79ef2 +binfiles arch=win32 size=1 + bin/win32/pedigree.exe + +name pedigree-perl.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of pedigree-perl +containersize 348 +containerchecksum 2a611e14fafee03f4a8a66470aa01203c6726240993a2968946f9db3153083ab5605e3c4bbb306f1f61ff6de8bba0987dc1a37c16f8a1aec15cc92f62ae92a0f +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pedigree + +name pedigree-perl.x86_64-darwin +category Package +revision 25962 +shortdesc x86_64-darwin files of pedigree-perl +containersize 348 +containerchecksum 54e7b4ed388de2965e2f34e42b1597ab5a351aa84097f51ae6f9178dbe423fb25d170c5029d5a4c97f624e3f84d0199825e3322a38f3a4803da6407b3ed8991f +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/pedigree + +name pedigree-perl.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pedigree-perl +containersize 356 +containerchecksum 3e3ebf495602222c3288cf99cf330ebafc693c05248b17500a1195e4e3ff37584d989ece7b85cf64662ec991beef35691db3f02dec8f942fa34f40a868c4fb6f +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pedigree + +name pedigree-perl.x86_64-linux +category Package +revision 25962 +shortdesc x86_64-linux files of pedigree-perl +containersize 344 +containerchecksum 5a14b0f04b21c4b74e6cc8dc30a7869bac6786ef703b325a4b839b74dc27d309259d9325f39aa8f235759c5ca4e6c4f1a949f4e5bdea0af133d07b7d6f40cd28 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pedigree + +name pedigree-perl.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pedigree-perl +containersize 352 +containerchecksum c61e6818e8f2d43309295e11811b4ad1f48b8d4a4ab7d4e0a3d0f923085052b4373b3e8ed6beeaf29109d5bc226bbe08b92a1e5d5a3967e9e0428f70d7a7ab97 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pedigree + +name pedigree-perl.x86_64-solaris +category Package +revision 25962 +shortdesc x86_64-solaris files of pedigree-perl +containersize 348 +containerchecksum 99b24feacf46ae3294637a90162641d17a2062f142ad2dbaea7db4c1de9ee927b3695e0b980831c2c31c55b4e934b66616ee2db8dffc4745acee3c4004607477 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pedigree + +name penrose +category Package +revision 48202 +shortdesc A TikZ library for producing Penrose tilings +relocated 1 +longdesc This package provides a TikZ library for drawing Penrose tiles. +longdesc It currently supports the kite/dart, rhombus, and pentagon tile +longdesc sets. There are two main methods for their placement: one that +longdesc automatically generates a tiling, and one that allows for "by +longdesc hand" placement. Furthermore, the tiles themselves can be +longdesc deformed and will still (hopefully!) fit together in the +longdesc correct fashion. +containersize 6488 +containerchecksum 2d61b2b6a46cab4a0cdb5d306eaebebb85af41ef75baef395dceb253ac68966fdccdf2317c6d26c24fa359e299f13823e4f69c40959cb2e88045b65ecc1148a9 +doccontainersize 891964 +doccontainerchecksum 58bd3b307c33494f61a28c897ac25a6587ab550d4e1ccbd5f05d101eba6466fb3981410084f34d7fa16570b3af6ed1e56cb5d9cca18429fd23d3371601daff42 +docfiles size=239 + RELOC/doc/latex/penrose/README.txt details="Readme" + RELOC/doc/latex/penrose/penrose.pdf details="User documentation" + RELOC/doc/latex/penrose/penrose.tex + RELOC/doc/latex/penrose/penrose_code.pdf details="Code documentation" +srccontainersize 11616 +srccontainerchecksum 43be9c9925c707c96292d0f7d6d7fb9f745582cd0d39e8a0323d3de766e56d9dc4964800568bfd6bef83231a91ce4ee17274491bee931b2214e5f4aefbc18b0c +srcfiles size=23 + RELOC/source/latex/penrose/penrose.ins + RELOC/source/latex/penrose/penrose_code.dtx +runfiles size=17 + RELOC/tex/latex/penrose/tikzlibrarypenrose.code.tex +catalogue-contact-bugs https://github.com/loopspace/penrose/issues +catalogue-contact-repository https://github.com/loopspace/penrose +catalogue-ctan /graphics/pgf/contrib/penrose +catalogue-date 2018-07-15 05:58:11 +0200 +catalogue-license lppl1.3c +catalogue-topics maths pgf-tikz +catalogue-version 1.0 + +name perception +category Package +revision 48861 +shortdesc BibTeX style for the journal Perception +relocated 1 +longdesc A product of custom-bib, provided simply to save others' time. +containersize 6304 +containerchecksum 669bf4b618c4120d6cd7b574352c38d0fb3ab7bd949e26ea239f4ceb0fccbe102dcc6644ad2cee9eb79385f590918a12bb2c065f80b54e8343223056df448060 +doccontainersize 416 +doccontainerchecksum 35428e19d9e2429691948331ef574168a3eb5dd3e09f4286c66003ced8c0a65da9853de4dd57a1920e2f2315b8543f9ec9e096bbd26123554455dd8c23b33f55 +docfiles size=1 + RELOC/doc/bibtex/perception/README details="Readme" +runfiles size=8 + RELOC/bibtex/bst/perception/perception.bst +catalogue-ctan /biblio/bibtex/contrib/perception +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics bibtex-sty journalpub + +name perfectcut +category Package +revision 44175 +shortdesc Delimiters whose size adjusts to the nesting +relocated 1 +longdesc This package defines the command \perfectcut#1#2 which displays +longdesc a bracket <#1||#2>. Various delimiters are similarly defined. +longdesc The effect of these commands is to let the delimiters grow +longdesc according to the number of nested \perfectcommands (regardless +longdesc of the size of the contents). The package is originally +longdesc intended for solving a notational issue regarding the +longdesc representation of abstract-machine-like calculi in proof theory +longdesc and computer science. For general use, the package also defines +longdesc commands for defining custom delimiters that behave in the same +longdesc way. This package also offers a sound reimplementation of \big, +longdesc \bigg, etc. +containersize 4644 +containerchecksum 8c0eb4c5b1418a323ec1cb140380664d94b38ce5165bf8649e7b3a75bf0d32ef0a67fdd2999959ea60e460a7000aed87be3bd3c369328d14c4e99a16203d1780 +doccontainersize 186764 +doccontainerchecksum 40d7c9a2b0242d668f49e5102eda1b016f86848d4349aa8593742ae1aede4272700b6053cbb4f77f23c9bd9523d30668525e662954a993720edf66d290c0101b +docfiles size=50 + RELOC/doc/latex/perfectcut/README details="Readme" + RELOC/doc/latex/perfectcut/perfectcut.pdf details="Package documentation" + RELOC/doc/latex/perfectcut/perfectcut.tex +runfiles size=5 + RELOC/tex/latex/perfectcut/perfectcut.sty +catalogue-contact-bugs https://github.com/gadmm/perfectcut/issues +catalogue-contact-home https://github.com/gadmm/perfectcut +catalogue-contact-repository https://github.com/gadmm/perfectcut.git +catalogue-ctan /macros/latex/contrib/perfectcut +catalogue-date 2017-05-03 14:02:24 +0200 +catalogue-license lppl1.3 +catalogue-topics paren-mgmt comp-theory +catalogue-version 2.2 + +name perltex +category Package +revision 38719 +shortdesc Define LaTeX macros in terms of Perl code +longdesc PerlTeX is a combination Perl script (perltex.pl) and LaTeX2e +longdesc package (perltex.sty) that, together, give the user the ability +longdesc to define LaTeX macros in terms of Perl code. Once defined, a +longdesc Perl macro becomes indistinguishable from any other LaTeX +longdesc macro. PerlTeX thereby combines LaTeX's typesetting power with +longdesc Perl's programmability. PerlTeX will make use of persistent +longdesc named pipes, and thereby run more efficiently, on operating +longdesc systems that offer them (mostly Unix-like systems). Also +longdesc provided is a switch to generate a PerlTeX-free, +longdesc document-specific, noperltex.sty that is useful when +longdesc distributing a document to places where PerlTeX is not +longdesc available. +depend perltex.ARCH +containersize 7300 +containerchecksum 10dee3548d1f55eea022a63116cf11a8b08f4278d3bd5cd29c4a930911faf283394fa690883c6bf826b3070fb0a55c77f6f22a4c1fb872f211794a7036f0e2ce +doccontainersize 276684 +doccontainerchecksum 3232ab27e1f2b9aedb952c8e55363cce9757914193c5574cf794bc2e34712a558ca9f7d52c23e689214509a7924debf64d79c6c6780afd23182d744f56b73215 +docfiles size=90 + texmf-dist/doc/latex/perltex/README details="Readme" + texmf-dist/doc/latex/perltex/example.tex + texmf-dist/doc/latex/perltex/perltex.pdf details="Package documentation" + texmf-dist/doc/man/man1/perltex.1 + texmf-dist/doc/man/man1/perltex.man1.pdf +srccontainersize 31356 +srccontainerchecksum 0387563d687f096bcf20d7c09fe6d0a0eecb8562779760a5e85343503283925c264b2c9523a7e9317989bab576677715b30744e1f75058e043531c9b2e110cab +srcfiles size=31 + texmf-dist/source/latex/perltex/perltex.dtx + texmf-dist/source/latex/perltex/perltex.ins +runfiles size=6 + texmf-dist/scripts/perltex/perltex.pl + texmf-dist/tex/latex/perltex/perltex.sty +catalogue-ctan /macros/latex/contrib/perltex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics callback +catalogue-version 2.1 + +name perltex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of perltex +containersize 340 +containerchecksum 41f5217eb662c240b3c86a4275d9ab5d830302447e61056fc10312cab4ccb2216fc8f8c0536d0aabfc884c6fbecbae991a3acf62ac62dc8408f2dbb2d2753c5e +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/perltex + +name perltex.amd64-freebsd +category Package +revision 16484 +shortdesc amd64-freebsd files of perltex +containersize 340 +containerchecksum b60a61390d28d96efedf8fe3f35cb7135c351cb656fdbc4d051c822754b8b10ea1651130f6abb38d913275bc0ac8f4a377df586cdaf431636926166ac4a979af +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/perltex + +name perltex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of perltex +containersize 340 +containerchecksum 790af66e4d2baad100c83438ddccbe6d99973efb07aaacb522b32b5112a702230056879fed0f7d726b787f34eca7f8c2f98a4ca45ff4da29de50235df190eb09 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/perltex + +name perltex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of perltex +containersize 340 +containerchecksum 66c31d0e63520b849aacb770d0bca88464cc0fb97bc17182ad5428d5411708dd1b3d85a2a19bdfa0d03b66f3fe33a6f54b87c31f223a2d5fa9189fcd4d8fae1b +binfiles arch=armhf-linux size=1 + bin/armhf-linux/perltex + +name perltex.i386-cygwin +category Package +revision 16181 +shortdesc i386-cygwin files of perltex +containersize 340 +containerchecksum 0dd638fbb963b14ccb592b429132e0fee3df45c2d441cc5a81df0e2161c41597b10e414f618d2144d263b60ea662987628d8d2dfd98a84e98a807302f4749ad4 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/perltex + +name perltex.i386-freebsd +category Package +revision 16484 +shortdesc i386-freebsd files of perltex +containersize 340 +containerchecksum 13045697c6f21ee4470423554561cbf958e97d62049c188d21ab8ac0c332308e26db9bfd4056dce68c67a44e427835f1d4e00c75766cf8eb4e90e212807001ea +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/perltex + +name perltex.i386-linux +category Package +revision 16181 +shortdesc i386-linux files of perltex +containersize 340 +containerchecksum 3d84e63a437aa7ae4842ac854e199e2301d2bed570708917427487cf53f7dce2b3d3b2b47e8e6740a3b0bd90a272f577df9e341aa0136c22a13517d559eab6bb +binfiles arch=i386-linux size=1 + bin/i386-linux/perltex + +name perltex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of perltex +containersize 340 +containerchecksum 07a0d6c31aee6e51dc63e4f885ead6e0d8cfea478477a1b9ac0343f0e5f271625d46dc2860fec35ccbe80a8d2f452d612140fc8433c8da054d7eb56e44376fa9 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/perltex + +name perltex.i386-solaris +category Package +revision 16181 +shortdesc i386-solaris files of perltex +containersize 340 +containerchecksum cdc83f7ef5c8a247cf3a09e4800b0fb0ee9c11c91ebfff561d9c441b02b951a385a7718db4267a134ca548eaf561ec4048f7b9b26f28021e6eddc2acbafa546f +binfiles arch=i386-solaris size=1 + bin/i386-solaris/perltex + +name perltex.win32 +category Package +revision 15404 +shortdesc win32 files of perltex +containersize 684 +containerchecksum 0ff0d53328f4f098d0b5fdbffc8f2e7f972e8e077219be0977f8daa39a508f2e5491ebffe8c4d7f2b1e7eb7b9394143daebbec0a99a31ed38ad788a0ee70d358 +binfiles arch=win32 size=1 + bin/win32/perltex.exe + +name perltex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of perltex +containersize 340 +containerchecksum 6b48705cc03bd590873939d0907f362618c4a5af7193ddaac417c759829e5beca3426800df34791fa2765e6343bb2065167f9702d88d1999484fac69bf011966 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/perltex + +name perltex.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of perltex +containersize 340 +containerchecksum 3b1d7c13d4f97a59d7b132754e433eb8181c1ad69b973fe87ca85e4bcf7867190b5a654727537c6240f23f52ce395ea6d0c97742c3c9b9ae0ffa9c0e5ecf9e51 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/perltex + +name perltex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of perltex +containersize 348 +containerchecksum bf5570076c697a93a398795905acb78ab91f9fb0c730ad2a58713984f124dee462506026879a49708a8f9262836c9855f6c33fa3c0fd12f265698f5b59afd2a9 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/perltex + +name perltex.x86_64-linux +category Package +revision 16181 +shortdesc x86_64-linux files of perltex +containersize 340 +containerchecksum 1a045ca2d713d75dc473867a870983cd5eb4cdf9b9b4e6c25e9333dda0fcbc85713b383a4620444362607b9597c4ef81296b2ae4c18a3e80696b8be0a1867eac +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/perltex + +name perltex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of perltex +containersize 344 +containerchecksum d7aa2f19d4faf8f012a348ff72a81d8629758e2a92e3bc9f5b2d97f2b47655fa2ad96660a558863d9372f46689383474fc03d8bfc50acdeeb09559c3d8ca3e56 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/perltex + +name perltex.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of perltex +containersize 340 +containerchecksum 14921acc0ebabee60c6de2cae31bd6ffd8887fbb0161aec75ae628a7a4b65fdd9dac02a4a2809ca06cfb1fb3dee91f04a0986b181ab55ee7256e61d826437975 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/perltex + +name permute +category Package +revision 15878 +shortdesc Support for symmetric groups +relocated 1 +longdesc A package for symmetric groups, allowing you to input, output, +longdesc and calculate with them. +containersize 2740 +containerchecksum 2b1ea22ff45718a12f5a031a60a2780a43b324afb3a7c4b3bf2e1a9808f5eb789938f0e084214912a50dc1a8ebe76c58cc39dccd5a411ce001fafc8fa5c41ea4 +doccontainersize 70116 +doccontainerchecksum f0f9f8d4e7e9b7cf5794529bd5febb0bd58f1ba0e95a72d688280ac3e6837cf39bdfb62ac29584fbf8cb37e1dafdcb971b9333a0306fa867fa4a1a256dd5a4e3 +docfiles size=22 + RELOC/doc/latex/permute/permute.pdf details="Package documentation" +srccontainersize 11164 +srccontainerchecksum 4273fc09b30de6ea203e13b09822a07b222de8d1abc143e67c0c465bd8c31ca4648b83a7fbd895a8865b7793462bd020642d383e761c926504a6d40e785c0108 +srcfiles size=11 + RELOC/source/latex/permute/permute.dtx + RELOC/source/latex/permute/permute.ins +runfiles size=3 + RELOC/tex/latex/permute/permute.sty +catalogue-ctan /macros/latex/contrib/permute +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics maths + +name persian-bib +category Package +revision 37297 +shortdesc Persian translations of classic BibTeX styles +relocated 1 +longdesc Currently 9 files: acm-fa.bst, asa-fa.bst, chicago-fa.bst, +longdesc ieeetr-fa.bst, plain-fa-inLTR-beamer.bst, plain-fa-inLTR.bst, +longdesc plain-fa.bst, plainnat-fa.bst and unsrt-fa.bst are modified for +longdesc Persian documents prepared with XePersian (which the present +longdesc package depends on). The Persian .bst files can simultaneously +longdesc handle both Latin and Persian references. A file cp1256fa.csf +longdesc is provided for correct sorting of Persian references and three +longdesc fields LANGUAGE, TRANSLATOR and AUTHORFA are defined. +containersize 21692 +containerchecksum e6650399eb5129dd0ad08c3ff93843da47287ce641a65826545b10a9213437da56467eabd8c37f1a7fc17086af968043586c53bdbc7485e9a4453b3f5b23bf83 +doccontainersize 186856 +doccontainerchecksum a18f3652bfa8cccd8d574e475859bde8d41de04d3093f05222dfe5687460b8eb29a1e9bc258cb73cca69dad52f567572a654f46414a0d513ec27e462f4787f35 +docfiles size=58 + RELOC/doc/xelatex/persian-bib/MyReferences.bib + RELOC/doc/xelatex/persian-bib/Persian-bib-userguide.pdf details="Package documentation" language="fa" + RELOC/doc/xelatex/persian-bib/Persian-bib-userguide.tex + RELOC/doc/xelatex/persian-bib/README details="Readme" + RELOC/doc/xelatex/persian-bib/bibtex-example.tex + RELOC/doc/xelatex/persian-bib/gen_pdf.pl +runfiles size=66 + RELOC/bibtex/bst/persian-bib/acm-fa.bst + RELOC/bibtex/bst/persian-bib/asa-fa.bst + RELOC/bibtex/bst/persian-bib/chicago-fa.bst + RELOC/bibtex/bst/persian-bib/ieeetr-fa.bst + RELOC/bibtex/bst/persian-bib/plain-fa-inLTR-beamer.bst + RELOC/bibtex/bst/persian-bib/plain-fa-inLTR.bst + RELOC/bibtex/bst/persian-bib/plain-fa.bst + RELOC/bibtex/bst/persian-bib/plainnat-fa.bst + RELOC/bibtex/bst/persian-bib/unsrt-fa.bst + RELOC/bibtex/csf/persian-bib/cp1256fa.csf +catalogue-ctan /biblio/bibtex/contrib/persian-bib +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics persian bibtex-sty +catalogue-version 0.9 + +name petiteannonce +category Package +revision 25915 +shortdesc A class for small advertisements +relocated 1 +longdesc The class enables you to create the sort of adverts that you +longdesc pin on a noticeboard, with tear-off strips at the bottom where +longdesc you can place contact details. +containersize 3328 +containerchecksum 8ff32eaddcc84973851b93f0c1c1b250b596a080669ef60ea2c115098c4984d426e37240ae8781fa3b95ce494e9fecccdd259fd25b47402498028f2b8e5f9fe3 +doccontainersize 193556 +doccontainerchecksum d171f31889fbf07b727c78a99bc91a2e6a8231faa25944a600ddb17ba32273ffa40a39a56e6e9b2c35ebfd0bb396ee699ebd9ab179577ab07e63feb8686d4af5 +docfiles size=75 + RELOC/doc/latex/petiteannonce/baignoire.JPG + RELOC/doc/latex/petiteannonce/petiteannonce.doc.pdf details="Package documentation" + RELOC/doc/latex/petiteannonce/petiteannonce.doc.tex + RELOC/doc/latex/petiteannonce/petiteannonceexample.pdf details="Example of use" + RELOC/doc/latex/petiteannonce/petiteannonceexample.tex +runfiles size=3 + RELOC/tex/latex/petiteannonce/petiteannonce.cls +catalogue-ctan /macros/latex/contrib/petiteannonce +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics advert +catalogue-version 1.0001 + +name petri-nets +category Package +revision 39165 +shortdesc A set TeX/LaTeX packages for drawing Petri nets +longdesc Petri-nets offers a set of TeX/LaTeX packages about Petri nets +longdesc and related models. Three packages are available: the first +longdesc allows the user to draw Petri-nets in PostScript documents; the +longdesc second defines macros related to PBC, M-nets and B(PN) models; +longdesc and a third that combines the other two. +depend petri-nets.ARCH +containersize 7900 +containerchecksum 0807444f934acf16b052dc499a097a2a645d037622a71430cd82fcef85d11bc652341ce6396a27d717effd08bde8ba3224c5235351fa9146000c01abd522f644 +doccontainersize 190288 +doccontainerchecksum cf03048e2bccded143fb493b100fd19103ab90f40713441c5380446702d6c57ac3820f2892a3dfdb80880952e09de78e69b309783767a3e157f76b81c9360535 +docfiles size=69 + texmf-dist/doc/generic/petri-nets/COPYING + texmf-dist/doc/generic/petri-nets/ChangeLog + texmf-dist/doc/generic/petri-nets/README + texmf-dist/doc/generic/petri-nets/pndoc.pdf details="Package documentation" + texmf-dist/doc/generic/petri-nets/pndoc.tex +runfiles size=14 + texmf-dist/scripts/petri-nets/pn2pdf + texmf-dist/tex/generic/petri-nets/pndraw.sty + texmf-dist/tex/generic/petri-nets/pndraw.tex + texmf-dist/tex/generic/petri-nets/pnets.sty + texmf-dist/tex/generic/petri-nets/pnets.tex + texmf-dist/tex/generic/petri-nets/pntext.sty + texmf-dist/tex/generic/petri-nets/pntext.tex + texmf-dist/tex/generic/petri-nets/pnversion.tex +catalogue-ctan /macros/generic/petri-nets +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics maths + +name petri-nets.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of petri-nets +containersize 348 +containerchecksum 4cc20e59c444cb2f9a0bed36d18cf8ad745059ce341c00c9e09d5456e695d00e9ada88ce30c1502544ce3b0637af8d8cebd747ea718b879f326f6316f1fc8a1c +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pn2pdf + +name petri-nets.amd64-freebsd +category Package +revision 39165 +shortdesc amd64-freebsd files of petri-nets +containersize 348 +containerchecksum b4b2217f7637d3434a15ba76be9a66a618209189b6dc8e76df244ff243ff2b6d4455f1aef69f550a652a22262835679581595447bbb97494ffb37cf58707246f +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pn2pdf + +name petri-nets.amd64-netbsd +category Package +revision 39165 +shortdesc amd64-netbsd files of petri-nets +containersize 344 +containerchecksum b6e545d3f1fe5a8a5074a405e5dbd635ca8a01111dfafda8a4a5580a1ce962b62c46169c47faca93fb4a2d7f5701e91da1f2b0c517b25aafa447297c056fce63 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pn2pdf + +name petri-nets.armhf-linux +category Package +revision 39165 +shortdesc armhf-linux files of petri-nets +containersize 344 +containerchecksum 55b89e691bfeb551580b0f9449413b53b9d27a787ec8106c96f3079d4904c17e596ccbd6e13f625f82af3a6c74f3b5f9556e08fc0dcfa58a6195b0c37deef428 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pn2pdf + +name petri-nets.i386-cygwin +category Package +revision 39165 +shortdesc i386-cygwin files of petri-nets +containersize 344 +containerchecksum 4c2235fb99fc901667a1df334be9fadd1bc5cc1b49ecce67016c3673c90b28f034d9c383a5b8463fe2504117fd8a240025090873f15f8ff61bd4c3d7b90cf104 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pn2pdf + +name petri-nets.i386-freebsd +category Package +revision 39165 +shortdesc i386-freebsd files of petri-nets +containersize 348 +containerchecksum 4f1f91e297793407644b527057a43b9a33c9af24909cb8a9f51e4771547cbd53232310659ce1d53aa7ced4337989c183f6c45398df853be313cb2c38d4543e98 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pn2pdf + +name petri-nets.i386-linux +category Package +revision 39165 +shortdesc i386-linux files of petri-nets +containersize 344 +containerchecksum 0186ae80297cad79a418a16bcf35181147289d50ae6059fbba7d6c11821694d7f2d933517336bcc7f6c83236cb4cd9476b53d9a8b9950a917e84f7a18600f9bb +binfiles arch=i386-linux size=1 + bin/i386-linux/pn2pdf + +name petri-nets.i386-netbsd +category Package +revision 39165 +shortdesc i386-netbsd files of petri-nets +containersize 344 +containerchecksum ad61f51012ce0e973a7645106fab319f09c5789aacb150a191454116cca600e3bd698a7f75c4918edbdc7b64bb9cfbab95a77a6e8b4d4697b600c6f922650dc5 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pn2pdf + +name petri-nets.i386-solaris +category Package +revision 39165 +shortdesc i386-solaris files of petri-nets +containersize 344 +containerchecksum 07f4dbed8992245fa58910ced19e7104b6e6615efabb33937db65f9cbde2ea7b41be01f2499df03cbff291bddffc9a2a1345c874561a9ef73f0ece599e7205fd +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pn2pdf + +name petri-nets.win32 +category Package +revision 39165 +shortdesc win32 files of petri-nets +containersize 688 +containerchecksum 7dea0f663a02d9c79837c69779782c6f9a091b3c0e6c4072767de3d54e6d2e20993a747ff88a91cf1af059e7476b867d9135e6fd938811cca053c4cda65450c7 +binfiles arch=win32 size=1 + bin/win32/pn2pdf.exe + +name petri-nets.x86_64-cygwin +category Package +revision 39165 +shortdesc x86_64-cygwin files of petri-nets +containersize 348 +containerchecksum 00dff5120e2ad2e7d7f1032ec00d6c7a548593ade788f63f6ac287a9f736b84093f86b0b000917edd6c340b1f95b31d693e11c51e6f42e250f12465e5eb24b74 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pn2pdf + +name petri-nets.x86_64-darwin +category Package +revision 39165 +shortdesc x86_64-darwin files of petri-nets +containersize 348 +containerchecksum 2031e7cc4b3cc473c0c4839fbdd6639739a1237c698394cf4afd8b8572ceaeae7ddc25a8d42e5c0f22b58a322fe75e4830b48ea1a11822365c538b610d4b3023 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/pn2pdf + +name petri-nets.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of petri-nets +containersize 356 +containerchecksum a587d516704dd6eeac39f1c4521a59f7f458710de9dc6ee1efdcaf4c1ca63fe961e5bf577bc42e214f70debf6ddbd1f155ed6b9ebb8d0ca87094700ae9b3c6d1 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pn2pdf + +name petri-nets.x86_64-linux +category Package +revision 39165 +shortdesc x86_64-linux files of petri-nets +containersize 344 +containerchecksum e0e68dab011ce5ce45076cbe8d4d3618bc6f96fad95479df049b653e473e5d927a784507b9ba8626a71ce39c54501d9d6c82d6330244a766026edf5510b0cf8f +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pn2pdf + +name petri-nets.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of petri-nets +containersize 352 +containerchecksum 9b2b35375c2def4428cbefa0a2f77e249769a9245edb88297b7e732c255a6074fa38c1fc607145e1f7256dab49ac5f941f88264ea376fb4cebbd1f3b9ca4b20f +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pn2pdf + +name petri-nets.x86_64-solaris +category Package +revision 39165 +shortdesc x86_64-solaris files of petri-nets +containersize 348 +containerchecksum c29471d7b6de42fe8fa77ce1e79b52d110adfe59ee9fdf44edbcd7168161af0ffa0a9c3552186c3200d44772937966901daffe4b9bdbaa9bf6ad49d82473a5a0 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pn2pdf + +name pfarrei +category Package +revision 31934 +shortdesc LaTeX support of pastors' and priests' work +longdesc In "Die TeXnische Komodie" (issue 1/2013) Christian Justen +longdesc described his use of LaTeX in his work as priest (similar +longdesc requirements may be encountered in the work of pastors and +longdesc other ministers of religion). One point was to arrange A5 pages +longdesc onto A4 landscape paper, either side-by-side or as a booklet. +longdesc Justen made two bash scripts for this job; the package provides +longdesc one texlua script for both requirements. (Note that file +longdesc a5toa4.tlu should have execute permissions in any +longdesc installation.) +depend pfarrei.ARCH +containersize 4632 +containerchecksum f6046dc96672b60ed272dd6fe23a4a51032f039d3aeaff3f8b5e2407c99fe1f43c568a03564a7c20212a97bbfa4ecbd0dcb7f5f44593e1485c8e5d9197467a6c +doccontainersize 499400 +doccontainerchecksum d50ff4603d51eb72d1d12e7f5b1440fa3d7abb1ab74fdf441d7e4a474df91247a1ccad504a14438bc0c3c6354c8f8674f180b5d9d826ff09a8749db3cf0d08c4 +docfiles size=123 + texmf-dist/doc/latex/pfarrei/pfarrei.pdf details="Package documentation (German)" language="de" +srccontainersize 13448 +srccontainerchecksum 1e4008782161066066fc4cb1b029a36f6a18eb0d5d52f11a2a70d04d4778de6ed1a80ea1fef5d8cc86c2e13b8cbcb1cf8ce43e58ff4431b16ca23c3fdafb9884 +srcfiles size=12 + texmf-dist/source/latex/pfarrei/README + texmf-dist/source/latex/pfarrei/pfarrei.dtx +runfiles size=6 + texmf-dist/scripts/pfarrei/a5toa4.tlu + texmf-dist/scripts/pfarrei/pfarrei.tlu + texmf-dist/tex/latex/pfarrei/a5toa4.tex + texmf-dist/tex/latex/pfarrei/pfarrei.sty +catalogue-ctan /macros/latex/contrib/pfarrei +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics compact-print +catalogue-version r36 + +name pfarrei.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pfarrei +containersize 368 +containerchecksum 6f92ce489843f13d258460382db19872fde4db075cedc15d7b6c9e4cbe50f2c3f2d1aa378edd07cd2efa46eb22ac245a6be71101246a9498e1c2ec45e8ebb203 +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/a5toa4 + bin/aarch64-linux/pfarrei + +name pfarrei.amd64-freebsd +category Package +revision 29348 +shortdesc amd64-freebsd files of pfarrei +containersize 368 +containerchecksum dda48b1d474882ac3dcb2bf7520964752e41032367860229b2747cc6245294c9f67e177bd6f278bf0b9ab6aea2544423ab0ab8fc81ebdf0c7b1482e3c337ec08 +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/a5toa4 + bin/amd64-freebsd/pfarrei + +name pfarrei.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of pfarrei +containersize 368 +containerchecksum a73657a4d995836466f196b29ea786df189372b4e6c4f2ecb0e1dd66f6ec4e752cbef282ed6da2393d38b3af42f56db5bfec1cc1994771b92da9834e9b8065de +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/a5toa4 + bin/amd64-netbsd/pfarrei + +name pfarrei.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of pfarrei +containersize 364 +containerchecksum 864a292ccccf171200fab468922344d7a434b6fa0b6d9389b018b95a4205dcc6efaacd73c71e726ee65e2dd0cff7fee7625b74a674b955e640251df7f00a0e54 +binfiles arch=armhf-linux size=2 + bin/armhf-linux/a5toa4 + bin/armhf-linux/pfarrei + +name pfarrei.i386-cygwin +category Package +revision 29348 +shortdesc i386-cygwin files of pfarrei +containersize 364 +containerchecksum 5aea340da74a9c45596ca30593062045eb3066a8d3300f6a7a2b0022a5b9995780dececaa19dcdc1380b253dd814b6adbe87c5aee7437279c58e02576f6cf6f4 +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/a5toa4 + bin/i386-cygwin/pfarrei + +name pfarrei.i386-freebsd +category Package +revision 29348 +shortdesc i386-freebsd files of pfarrei +containersize 368 +containerchecksum 4ef803a0fd7a5a1af40631b3847e9e843bb1318731c6a0709fd4da6bc04feff477e5d16fc14f9fe607b32785f685778253fb99d88366fd4af9e4b6f515d8a487 +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/a5toa4 + bin/i386-freebsd/pfarrei + +name pfarrei.i386-linux +category Package +revision 29348 +shortdesc i386-linux files of pfarrei +containersize 368 +containerchecksum 57cdc92c7a55f1a2b149e5cec6d66a5148bbcb014b1b7c9076def1b0bf5ca69d1600631c0028a79fb33fc81ad612c6395303f1491a23be5f6e82be407aeb0a28 +binfiles arch=i386-linux size=2 + bin/i386-linux/a5toa4 + bin/i386-linux/pfarrei + +name pfarrei.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of pfarrei +containersize 368 +containerchecksum 2f8d35a98ffb65569888c8e1dca417782ceb38d7ccf308e6f09d38705e088d412080d1a0dffae3afe62e2fe4f897c4e855d303fcc671d21d99d4740de90c5d93 +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/a5toa4 + bin/i386-netbsd/pfarrei + +name pfarrei.i386-solaris +category Package +revision 29348 +shortdesc i386-solaris files of pfarrei +containersize 368 +containerchecksum f9b3109d6b9fa62d2218fa2c234d6942048ed6cac1ff81850ee6c7f09ef1a3578963408a75219187418d060318ea8797697e17efba7a176757bb806b82b8f24b +binfiles arch=i386-solaris size=2 + bin/i386-solaris/a5toa4 + bin/i386-solaris/pfarrei + +name pfarrei.win32 +category Package +revision 29348 +shortdesc win32 files of pfarrei +containersize 704 +containerchecksum bc9d5f4d449ad374dbb0f806d37fd56a9364beea34b810e547e68f14b2352c58340cefc0c03865e3bbd8ff1fefd4460a89d1ffeafe18ae2816e98b722a758027 +binfiles arch=win32 size=2 + bin/win32/a5toa4.exe + bin/win32/pfarrei.exe + +name pfarrei.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of pfarrei +containersize 368 +containerchecksum 4f7a060baad2b5e916be4441ad19a76055181bff1ee7cde48f26a90fad3a435d32dc9672d7c6e0b1681bf31bde0fe8b8fcb6bba3cccf7da164e2a65165d49cfd +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/a5toa4 + bin/x86_64-cygwin/pfarrei + +name pfarrei.x86_64-darwin +category Package +revision 29348 +shortdesc x86_64-darwin files of pfarrei +containersize 368 +containerchecksum ceeac15c2e6833d6cbc30345ea0345cff59600fb0b5ff660f73c91e0973e22f2c2b1dd56eb197d8de2ac30ba78c0fa31a5c2a5e3686d923895040b4bce943ac9 +binfiles arch=x86_64-darwin size=2 + bin/x86_64-darwin/a5toa4 + bin/x86_64-darwin/pfarrei + +name pfarrei.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pfarrei +containersize 376 +containerchecksum 39f006c7d2b90ca22cc78a5a86879c8810d973ba0b95ff960923b0da9a268a0f42396ad6fe7b5edc16ad09dd20446e6ea71e00c342d433bacdd6f7657cfecae0 +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/a5toa4 + bin/x86_64-darwinlegacy/pfarrei + +name pfarrei.x86_64-linux +category Package +revision 29348 +shortdesc x86_64-linux files of pfarrei +containersize 364 +containerchecksum 7580e8dfcf6bd513cd5bcdc2982f47512a15a4427c1254fde4c64353181a021152e8c55d21493ad2405b90353db3b4b6a4a160ad0488504b6b82d6289f4f3876 +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/a5toa4 + bin/x86_64-linux/pfarrei + +name pfarrei.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pfarrei +containersize 376 +containerchecksum fa8c3251ba6ec38b771a9a5be1ffe44df30ac0c51e3e3d3c3e3c27f97ab0c457f89bdc64e3776db494d5de7cc83a9cc0a7979a616c5b80286e05a64434612736 +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/a5toa4 + bin/x86_64-linuxmusl/pfarrei + +name pfarrei.x86_64-solaris +category Package +revision 29348 +shortdesc x86_64-solaris files of pfarrei +containersize 368 +containerchecksum 876bf1c818c685bcd3da5b193d4b0c3294df2d633ba084b3f4e7a36da47ac99114b8b43332d11fd7c80f0c9b9a299202c4d74a420c87dc20c9439de4ca6ed468 +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/a5toa4 + bin/x86_64-solaris/pfarrei + +name pgf +category Package +revision 51107 +shortdesc Create PostScript and PDF graphics in TeX +relocated 1 +longdesc PGF is a macro package for creating graphics. It is platform- +longdesc and format-independent and works together with the most +longdesc important TeX backend drivers, including pdfTeX and dvips. It +longdesc comes with a user-friendly syntax layer called TikZ. Its usage +longdesc is similar to pstricks and the standard picture environment. +longdesc PGF works with plain (pdf-)TeX, (pdf-)LaTeX, and ConTeXt. +longdesc Unlike pstricks, it can produce either PostScript or PDF +longdesc output. +depend ms +containersize 698220 +containerchecksum b75f36af866c370f0bd929055a8e71772223ec6d5b81444e4e205de1c3bf9067e9088fc25701067057ede4fb3ec53dcb7c07f2c3a96a8c9eaadda6f0d21b38e1 +doccontainersize 10240724 +doccontainerchecksum 10d73066d4a575da4303a30abf520c0895a9d4707b8ee6c3f65ed1adf4f308f609c904d5bb732d9523dcef9aa2592377cc6caea5948e9c6f784db9befbc5d33f +docfiles size=3693 + RELOC/doc/generic/pgf/AUTHORS + RELOC/doc/generic/pgf/ChangeLog + RELOC/doc/generic/pgf/FILES + RELOC/doc/generic/pgf/INSTALL + RELOC/doc/generic/pgf/README details="Readme" + RELOC/doc/generic/pgf/README-3.0.0 + RELOC/doc/generic/pgf/extract.lua + RELOC/doc/generic/pgf/images/brave-gnu-world-logo-mask.bb + RELOC/doc/generic/pgf/images/brave-gnu-world-logo-mask.jpg + RELOC/doc/generic/pgf/images/brave-gnu-world-logo.25.bb + RELOC/doc/generic/pgf/images/brave-gnu-world-logo.25.eps + RELOC/doc/generic/pgf/images/brave-gnu-world-logo.25.jpg + RELOC/doc/generic/pgf/images/brave-gnu-world-logo.bb + RELOC/doc/generic/pgf/images/brave-gnu-world-logo.eps + RELOC/doc/generic/pgf/images/brave-gnu-world-logo.jpg + RELOC/doc/generic/pgf/images/brave-gnu-world-logo.xbb + RELOC/doc/generic/pgf/images/pgfmanual-mindmap-1.pdf + RELOC/doc/generic/pgf/images/pgfmanual-mindmap-2.pdf + RELOC/doc/generic/pgf/licenses/LICENSE + RELOC/doc/generic/pgf/licenses/gnu-free-documentation-license-1.2.txt + RELOC/doc/generic/pgf/licenses/gnu-public-license-2.txt + RELOC/doc/generic/pgf/licenses/latex-project-public-license-1.3c.txt + RELOC/doc/generic/pgf/licenses/manifest-code.txt + RELOC/doc/generic/pgf/licenses/manifest-documentation.txt + RELOC/doc/generic/pgf/macros/pgfmanual-en-macros.tex + RELOC/doc/generic/pgf/pgfmanual.pdf details="PGF Manual" + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-actions.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-animations.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-arrows.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-decorations.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-design.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-external.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-images.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-internalregisters.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-layers.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-matrices.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-nodes.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-paths.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-patterns.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-plots.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-points.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-quick.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-scopes.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-shadings.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-transformations.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-transparency.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-drivers.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-axes.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-backend.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-examples.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-formats.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-introduction.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-main.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-polar.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-stylesheets.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-visualizers.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-algorithm-layer.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-algorithms-in-c.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-binding-layer.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-circular.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-display-layer.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-edge-routing.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-examples.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-force.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-layered.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-misc.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-ogdf.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-overview.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-phylogenetics.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-trees.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-usage-pgf.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-usage-tikz.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-guidelines.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-installation.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-introduction.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-3d.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-angles.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-arrows.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-automata.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-babel.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-backgrounds.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-calc.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-calendar.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-chains.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-circuits.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-decorations.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-edges.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-er.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-external.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-fadings.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-fit.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-fixedpoint.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-folding.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-fpu.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-lsystems.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-math.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-matrices.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-mindmaps.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-patterns.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-perspective.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-petri.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-plot-handlers.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-plot-marks.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-profiler.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-rdf.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-shadings.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-shadows.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-shapes.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-spy.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-svg-path.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-through.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-trees.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-turtle.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-views.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-license.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-main-body.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-main-preamble.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-main.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-math-algorithms.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-math-commands.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-math-design.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-math-numberprinting.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-math-parsing.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-module-parser.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-oo.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-pages.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfcalendar.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgffor.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfkeys.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfkeysfiltered.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfsys-animations.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfsys-commands.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfsys-overview.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfsys-paths.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfsys-protocol.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-actions.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-animations.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-arrows.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-coordinates.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-decorations.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-design.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-graphs.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-matrices.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-paths.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-pics.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-plots.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-scopes.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-shapes.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-transformations.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-transparency.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-trees.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tutorial-Euclid.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tutorial-chains.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tutorial-map.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tutorial-nodes.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-tutorial.tex + RELOC/doc/generic/pgf/text-en/pgfmanual-en-xxcolor.tex + RELOC/doc/generic/pgf/text-en/plots/pgf-asymptotic-example.gnuplot + RELOC/doc/generic/pgf/text-en/plots/pgf-asymptotic-example.table + RELOC/doc/generic/pgf/text-en/plots/pgf-exp.gnuplot + RELOC/doc/generic/pgf/text-en/plots/pgf-exp.table + RELOC/doc/generic/pgf/text-en/plots/pgf-parametric-example.gnuplot + RELOC/doc/generic/pgf/text-en/plots/pgf-parametric-example.table + RELOC/doc/generic/pgf/text-en/plots/pgf-sin.gnuplot + RELOC/doc/generic/pgf/text-en/plots/pgf-sin.table + RELOC/doc/generic/pgf/text-en/plots/pgf-tan-example.gnuplot + RELOC/doc/generic/pgf/text-en/plots/pgf-tan-example.table + RELOC/doc/generic/pgf/text-en/plots/pgf-x.gnuplot + RELOC/doc/generic/pgf/text-en/plots/pgf-x.table + RELOC/doc/generic/pgf/text-en/plots/pgfmanual-sine.gnuplot + RELOC/doc/generic/pgf/text-en/plots/pgfmanual-sine.table + RELOC/doc/generic/pgf/text-en/plots/pgfplotgnuplot-example.gnuplot + RELOC/doc/generic/pgf/text-en/plots/pgfplotgnuplot-example.table + RELOC/doc/generic/pgf/version-for-dvipdfm/en/Makefile + RELOC/doc/generic/pgf/version-for-dvipdfm/en/pgfmanual.tex + RELOC/doc/generic/pgf/version-for-dvipdfm/pgfmanual-dvipdfm.cfg + RELOC/doc/generic/pgf/version-for-dvipdfmx/en/Makefile + RELOC/doc/generic/pgf/version-for-dvipdfmx/en/pgfmanual-test.tex + RELOC/doc/generic/pgf/version-for-dvipdfmx/en/pgfmanual.tex + RELOC/doc/generic/pgf/version-for-dvipdfmx/pgfmanual-dvipdfmx.cfg + RELOC/doc/generic/pgf/version-for-dvips/en/Makefile + RELOC/doc/generic/pgf/version-for-dvips/en/pgfmanual.tex + RELOC/doc/generic/pgf/version-for-dvips/pgfmanual-dvips.cfg + RELOC/doc/generic/pgf/version-for-dvisvgm/en/Makefile + RELOC/doc/generic/pgf/version-for-dvisvgm/en/pgfmanual-test.html + RELOC/doc/generic/pgf/version-for-dvisvgm/en/pgfmanual-test.tex + RELOC/doc/generic/pgf/version-for-dvisvgm/en/pgfmanual.html + RELOC/doc/generic/pgf/version-for-dvisvgm/en/pgfmanual.tex + RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-asymptotic-example.table + RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-exp.table + RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-parametric-example.table + RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-sin.table + RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-tan-example.table + RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-x.table + RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgfmanual-sine.table + RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgfplotgnuplot-example.table + RELOC/doc/generic/pgf/version-for-dvisvgm/pgfmanual-dvisvgm.cfg + RELOC/doc/generic/pgf/version-for-luatex/en/Makefile + RELOC/doc/generic/pgf/version-for-luatex/en/pgfmanual-test.tex + RELOC/doc/generic/pgf/version-for-luatex/en/pgfmanual.tex + RELOC/doc/generic/pgf/version-for-luatex/pgfmanual-luatex.cfg + RELOC/doc/generic/pgf/version-for-pdftex/en/Makefile + RELOC/doc/generic/pgf/version-for-pdftex/en/pgfmanual.tex + RELOC/doc/generic/pgf/version-for-pdftex/pgfmanual-pdftex.cfg + RELOC/doc/generic/pgf/version-for-tex4ht/en/Makefile + RELOC/doc/generic/pgf/version-for-tex4ht/en/pgfmanual.tex + RELOC/doc/generic/pgf/version-for-tex4ht/pgfmanual-tex4ht.cfg + RELOC/doc/generic/pgf/version-for-vtex/en/Makefile + RELOC/doc/generic/pgf/version-for-vtex/en/pgfmanual.tex + RELOC/doc/generic/pgf/version-for-vtex/pgfmanual-vtex.cfg + RELOC/doc/generic/pgf/version-for-xetex/en/Makefile + RELOC/doc/generic/pgf/version-for-xetex/en/pgfmanual.tex + RELOC/doc/generic/pgf/version-for-xetex/pgfmanual-xetex.cfg +srccontainersize 33484 +srccontainerchecksum 6a7d88cb88c9f37fe62ac27dda4ff65d94c757cb425b890557727515598100d3b7c0a060e2f5b0e43a957ffbafddf3ccc1f627291c509567e9eefac3ff98b9b7 +srcfiles size=94 + RELOC/source/generic/pgf/c/INSTALL + RELOC/source/generic/pgf/c/Makefile + RELOC/source/generic/pgf/c/config/ExampleLocalMakefileConfig.mk + RELOC/source/generic/pgf/c/config/MakefileConfig.mk + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/examples/c/Makefile + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/examples/c/SimpleDemoC.c + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/examples/c/SimpleDemoCPlusPlus.c++ + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/InterfaceFromC++.c++ + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/InterfaceFromC++.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/InterfaceFromC.c + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/InterfaceFromC.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/Makefile + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/InterfaceFromOGDF.c++ + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/InterfaceFromOGDF.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/Makefile + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/SimpleDemoOGDF.c++ + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/FMMMLayout_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/FastMultipoleEmbedder_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/GEMLayout_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/MultilevelLayout_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/SpringEmbedderFRExact_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/SpringEmbedderFR_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/SpringEmbedderKK_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/energybased_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/BarycenterPlacer_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/CirclePlacer_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/EdgeCoverMerger_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/IndependentSetMerger_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/LocalBiconnectedMerger_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/MatchingMerger_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/MedianPlacer_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/RandomMerger_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/RandomPlacer_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/SolarMerger_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/SolarPlacer_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/ZeroPlacer_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/multilevelmixer_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/BarycenterHeuristic_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/CoffmanGrahamRanking_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/DfsAcyclicSubgraph_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/FastHierarchyLayout_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/FastSimpleHierarchyLayout_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/GreedyCycleRemoval_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/GreedyInsertHeuristic_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/LongestPathRanking_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/MedianHeuristic_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/OptimalRanking_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/SiftingHeuristic_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/SplitHeuristic_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/SugiyamaLayout_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/layered_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/misclayout/BalloonLayout_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/misclayout/CircularLayout_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/misclayout/misclayout_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/module/module_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/ogdf_script.c++ + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/planarity/PlanarizationLayout_script.h + RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/planarity/planarity_script.h + RELOC/source/generic/pgf/testsuite/external/Makefile + RELOC/source/generic/pgf/testsuite/external/tikzexternaltest.code.tex + RELOC/source/generic/pgf/testsuite/external/tikzexternaltest.sharedpreamble.tex + RELOC/source/generic/pgf/testsuite/external/tikzexternaltest.tex + RELOC/source/generic/pgf/testsuite/external/tikzexternaltestmakefile.tex + RELOC/source/generic/pgf/testsuite/mathtest/pgfmathtestsuite.tex + RELOC/source/generic/pgf/testsuite/mathtest/unittest_luamathparser.tex +runfiles size=1491 + RELOC/tex/context/third/pgf/basiclayer/t-pgf.tex + RELOC/tex/context/third/pgf/basiclayer/t-pgfbim.tex + RELOC/tex/context/third/pgf/basiclayer/t-pgfbla.tex + RELOC/tex/context/third/pgf/basiclayer/t-pgfbma.tex + RELOC/tex/context/third/pgf/basiclayer/t-pgfbpl.tex + RELOC/tex/context/third/pgf/basiclayer/t-pgfbpt.tex + RELOC/tex/context/third/pgf/basiclayer/t-pgfbsh.tex + RELOC/tex/context/third/pgf/basiclayer/t-pgfbsn.tex + RELOC/tex/context/third/pgf/basiclayer/t-pgfcor.tex + RELOC/tex/context/third/pgf/frontendlayer/t-tikz.tex + RELOC/tex/context/third/pgf/math/t-pgfmat.tex + RELOC/tex/context/third/pgf/systemlayer/t-pgfsys.tex + RELOC/tex/context/third/pgf/utilities/t-pgfcal.tex + RELOC/tex/context/third/pgf/utilities/t-pgffor.tex + RELOC/tex/context/third/pgf/utilities/t-pgfkey.tex + RELOC/tex/context/third/pgf/utilities/t-pgfmod.tex + RELOC/tex/context/third/pgf/utilities/t-pgfrcs.tex + RELOC/tex/generic/pgf/basiclayer/pgfcore.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcorequick.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex + RELOC/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/circuits/tikzlibrarycircuits.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/circuits/tikzlibrarycircuits.ee.IEC.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/circuits/tikzlibrarycircuits.ee.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/circuits/tikzlibrarycircuits.logic.CDH.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/circuits/tikzlibrarycircuits.logic.IEC.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/circuits/tikzlibrarycircuits.logic.US.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/circuits/tikzlibrarycircuits.logic.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/datavisualization/tikzlibrarydatavisualization.3d.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/datavisualization/tikzlibrarydatavisualization.barcharts.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/datavisualization/tikzlibrarydatavisualization.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/datavisualization/tikzlibrarydatavisualization.formats.functions.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/datavisualization/tikzlibrarydatavisualization.polar.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/datavisualization/tikzlibrarydatavisualization.sparklines.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/graphs/tikzlibrarygraphs.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/graphs/tikzlibrarygraphs.standard.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzexternalshared.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary3d.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryangles.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryanimations.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryarrows.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryautomata.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybabel.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybackgrounds.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybending.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarycalc.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarycalendar.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarychains.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.footprints.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.fractals.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.markings.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathmorphing.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathreplacing.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.shapes.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.text.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryer.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfadings.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfit.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfixedpointarithmetic.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfolding.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfpu.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryintersections.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarylindenmayersystems.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarymath.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarymatrix.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarymindmap.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarypatterns.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarypatterns.meta.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryperspective.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarypetri.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryplothandlers.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryplotmarks.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarypositioning.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryquotes.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryrdf.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryscopes.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshadings.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshadows.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.arrows.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.callouts.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.gates.logic.IEC.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.gates.logic.US.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.geometric.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.misc.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.multipart.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.symbols.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarysnakes.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryspy.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarysvg.path.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarythrough.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytrees.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryturtle.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryviews.code.tex + RELOC/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex + RELOC/tex/generic/pgf/graphdrawing/lua/LUA_CODING_STYLE + RELOC/tex/generic/pgf/graphdrawing/lua/pgf.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/bindings.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/bindings/Binding.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/bindings/BindingToPGF.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/circular.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/circular/Tantau2012.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/circular/doc.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/circular/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/Anchoring.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/ComponentAlign.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/ComponentDirection.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/ComponentDistance.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/ComponentOrder.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/Components.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/Distances.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/FineTune.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/LayoutPipeline.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/NodeAnchors.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/Orientation.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/Sublayouts.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/doc.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/deprecated/Cluster.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/deprecated/Edge.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/deprecated/Graph.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/deprecated/Iterators.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/deprecated/Node.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/deprecated/Vector.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/FMMMLayout.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/FastMultipoleEmbedder.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/GEMLayout.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/MultilevelLayout.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/SpringEmbedderFR.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/SpringEmbedderFRExact.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/SpringEmbedderKK.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/BarycenterPlacer.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/CirclePlacer.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/EdgeCoverMerger.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/IndependentSetMerger.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/LocalBiconnectedMerger.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/MatchingMerger.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/MedianPlacer.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/RandomMerger.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/RandomPlacer.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/SolarMerger.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/SolarPlacer.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/ZeroPlacer.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/BarycenterHeuristic.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/CoffmanGrahamRanking.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/DfsAcyclicSubgraph.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/FastHierarchyLayout.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/FastSimpleHierarchyLayout.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/GreedyCycleRemoval.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/GreedyInsertHeuristic.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/LongestPathRanking.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/MedianHeuristic.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/OptimalRanking.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/SiftingHeuristic.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/SplitHeuristic.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/SugiyamaLayout.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/misclayout.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/misclayout/BalloonLayout.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/misclayout/CircularLayout.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/module/AcyclicSubgraphModule.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/module/HierarchyLayoutModule.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/module/InitialPlacer.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/module/MultilevelBuilder.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/module/RankingModule.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/module/TwoLayerCrossMin.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/planarity.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/planarity/PlanarizationLayout.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/ASCIIDisplayer.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/BindingToASCII.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/SimpleDemo.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/SimpleEdgeDemo.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/SimpleHuffman.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/example_graph_for_ascii_displayer.txt + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/experimental/evolving/GraphAnimationCoordination.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/experimental/evolving/GreedyTemporalCycleRemoval.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/experimental/evolving/Skambath2016.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/experimental/evolving/Supergraph.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/experimental/evolving/SupergraphVertexSplitOptimization.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/experimental/evolving/TimeSpec.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/experimental/evolving/doc.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/experimental/evolving/layered.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/experimental/evolving/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/CoarseGraph.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/ControlCoarsening.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/ControlDeclare.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/ControlElectric.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/ControlIteration.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/ControlSprings.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/ControlStart.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/QuadTree.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/SpringElectricalHu2006.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/SpringElectricalLayouts.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/SpringElectricalWalshaw2000.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/SpringHu2006.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/SpringLayouts.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/algorithms/FruchtermanReingold.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/algorithms/HuSpringElectricalFW.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/algorithms/SimpleSpring.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/algorithms/SocialGravityCloseness.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/algorithms/SocialGravityDegree.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/base/CoarseGraphFW.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/base/ForceController.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/base/ForceTemplate.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/base/InitialTemplate.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/base/PathLengthsFW.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/base/Preprocessing.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/doc.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/forcetypes/ForceAbsoluteValue.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/forcetypes/ForceCanvasDistance.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/forcetypes/ForceCanvasPosition.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/forcetypes/ForceGraphDistance.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/forcetypes/ForcePullToGrid.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/forcetypes/ForcePullToPoint.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/initialpositioning/CircularInitialPositioning.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/initialpositioning/GridInitialPositioning.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/initialpositioning/RandomInitialPositioning.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/InterfaceCore.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/InterfaceToAlgorithms.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/InterfaceToC.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/InterfaceToDisplay.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/Scope.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/CrossingMinimizationGansnerKNV1993.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/CycleRemovalBergerS1990a.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/CycleRemovalBergerS1990b.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/CycleRemovalEadesLS1993.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/CycleRemovalGansnerKNV1993.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/EdgeRoutingGansnerKNV1993.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/NetworkSimplex.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/NodePositioningGansnerKNV1993.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/NodeRankingGansnerKNV1993.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/NodeRankingMinimumHeight.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/Ranking.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/Sugiyama.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/crossing_minimization.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/cycle_removal.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/edge_routing.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/node_positioning.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/node_ranking.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Bezier.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/DepthFirstSearch.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Direct.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Event.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/LookupTable.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/PathLengths.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/PriorityQueue.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Simplifiers.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Stack.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Storage.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Transform.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Arc.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Collection.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Coordinate.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Digraph.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Edge.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Hyperedge.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Path.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Path_arced.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Vertex.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/ogdf.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/ogdf/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/pedigrees.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/pedigrees/Koerner2015.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/pedigrees/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/AuthorDefinedPhylogeny.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/BalancedMinimumEvolution.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/BalancedNearestNeighbourInterchange.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/DistanceMatrix.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/Maeusle2012.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/PhylogeneticTree.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/SokalMichener1958.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/planar.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/planar/BoyerMyrvold2004.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/planar/Embedding.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/planar/LinkedList.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/planar/List.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/planar/PDP.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/planar/PlanarLayout.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/planar/ShiftMethod.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/planar/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/planar/parameters.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/routing.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/routing/Hints.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/routing/NecklaceRouting.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/routing/library.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/tools/make_gd_wrap.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/trees.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/trees/ChildSpec.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/trees/ReingoldTilford1981.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/trees/SpanningTreeComputation.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/trees/doc.lua + RELOC/tex/generic/pgf/graphdrawing/lua/pgf/gd/trees/library.lua + RELOC/tex/generic/pgf/graphdrawing/tex/experimental/tikzlibrarygraphdrawing.evolving.code.tex + RELOC/tex/generic/pgf/graphdrawing/tex/pgflibrarygraphdrawing.circular.code.tex + RELOC/tex/generic/pgf/graphdrawing/tex/pgflibrarygraphdrawing.code.tex + RELOC/tex/generic/pgf/graphdrawing/tex/pgflibrarygraphdrawing.examples.code.tex + RELOC/tex/generic/pgf/graphdrawing/tex/pgflibrarygraphdrawing.force.code.tex + RELOC/tex/generic/pgf/graphdrawing/tex/pgflibrarygraphdrawing.layered.code.tex + RELOC/tex/generic/pgf/graphdrawing/tex/pgflibrarygraphdrawing.trees.code.tex + RELOC/tex/generic/pgf/graphdrawing/tex/tikzlibrarygraphdrawing.code.tex + RELOC/tex/generic/pgf/libraries/datavisualization/pgflibrarydatavisualization.barcharts.code.tex + RELOC/tex/generic/pgf/libraries/datavisualization/pgflibrarydatavisualization.formats.functions.code.tex + RELOC/tex/generic/pgf/libraries/datavisualization/pgflibrarydatavisualization.polar.code.tex + RELOC/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.footprints.code.tex + RELOC/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.fractals.code.tex + RELOC/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.markings.code.tex + RELOC/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathmorphing.code.tex + RELOC/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathreplacing.code.tex + RELOC/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.shapes.code.tex + RELOC/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.text.code.tex + RELOC/tex/generic/pgf/libraries/luamath/pgf/luamath/functions.lua + RELOC/tex/generic/pgf/libraries/luamath/pgf/luamath/parser.lua + RELOC/tex/generic/pgf/libraries/luamath/pgflibraryluamath.code.tex + RELOC/tex/generic/pgf/libraries/pgflibraryarrows.code.tex + RELOC/tex/generic/pgf/libraries/pgflibraryarrows.meta.code.tex + RELOC/tex/generic/pgf/libraries/pgflibraryarrows.spaced.code.tex + RELOC/tex/generic/pgf/libraries/pgflibrarycurvilinear.code.tex + RELOC/tex/generic/pgf/libraries/pgflibraryfadings.code.tex + RELOC/tex/generic/pgf/libraries/pgflibraryfixedpointarithmetic.code.tex + RELOC/tex/generic/pgf/libraries/pgflibraryfpu.code.tex + RELOC/tex/generic/pgf/libraries/pgflibraryintersections.code.tex + RELOC/tex/generic/pgf/libraries/pgflibrarylindenmayersystems.code.tex + RELOC/tex/generic/pgf/libraries/pgflibrarypatterns.code.tex + RELOC/tex/generic/pgf/libraries/pgflibrarypatterns.meta.code.tex + RELOC/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex + RELOC/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex + RELOC/tex/generic/pgf/libraries/pgflibraryprofiler.code.tex + RELOC/tex/generic/pgf/libraries/pgflibraryshadings.code.tex + RELOC/tex/generic/pgf/libraries/pgflibrarysnakes.code.tex + RELOC/tex/generic/pgf/libraries/pgflibrarysvg.path.code.tex + RELOC/tex/generic/pgf/libraries/pgflibrarytimelines.code.tex + RELOC/tex/generic/pgf/libraries/shapes/circuits/pgflibraryshapes.gates.ee.IEC.code.tex + RELOC/tex/generic/pgf/libraries/shapes/circuits/pgflibraryshapes.gates.ee.code.tex + RELOC/tex/generic/pgf/libraries/shapes/circuits/pgflibraryshapes.gates.logic.IEC.code.tex + RELOC/tex/generic/pgf/libraries/shapes/circuits/pgflibraryshapes.gates.logic.US.code.tex + RELOC/tex/generic/pgf/libraries/shapes/circuits/pgflibraryshapes.gates.logic.code.tex + RELOC/tex/generic/pgf/libraries/shapes/pgflibraryshapes.arrows.code.tex + RELOC/tex/generic/pgf/libraries/shapes/pgflibraryshapes.callouts.code.tex + RELOC/tex/generic/pgf/libraries/shapes/pgflibraryshapes.code.tex + RELOC/tex/generic/pgf/libraries/shapes/pgflibraryshapes.geometric.code.tex + RELOC/tex/generic/pgf/libraries/shapes/pgflibraryshapes.misc.code.tex + RELOC/tex/generic/pgf/libraries/shapes/pgflibraryshapes.multipart.code.tex + RELOC/tex/generic/pgf/libraries/shapes/pgflibraryshapes.symbols.code.tex + RELOC/tex/generic/pgf/lua/pgf/manual.lua + RELOC/tex/generic/pgf/lua/pgf/manual/DocumentParser.lua + RELOC/tex/generic/pgf/math/pgfint.code.tex + RELOC/tex/generic/pgf/math/pgfmath.code.tex + RELOC/tex/generic/pgf/math/pgfmathcalc.code.tex + RELOC/tex/generic/pgf/math/pgfmathfloat.code.tex + RELOC/tex/generic/pgf/math/pgfmathfunctions.base.code.tex + RELOC/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex + RELOC/tex/generic/pgf/math/pgfmathfunctions.code.tex + RELOC/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex + RELOC/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex + RELOC/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex + RELOC/tex/generic/pgf/math/pgfmathfunctions.random.code.tex + RELOC/tex/generic/pgf/math/pgfmathfunctions.round.code.tex + RELOC/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex + RELOC/tex/generic/pgf/math/pgfmathode.code.tex + RELOC/tex/generic/pgf/math/pgfmathparser.code.tex + RELOC/tex/generic/pgf/math/pgfmathutil.code.tex + RELOC/tex/generic/pgf/modules/pgfmoduleanimations.code.tex + RELOC/tex/generic/pgf/modules/pgfmodulebending.code.tex + RELOC/tex/generic/pgf/modules/pgfmoduledatavisualization.code.tex + RELOC/tex/generic/pgf/modules/pgfmoduledecorations.code.tex + RELOC/tex/generic/pgf/modules/pgfmodulematrix.code.tex + RELOC/tex/generic/pgf/modules/pgfmodulenonlineartransformations.code.tex + RELOC/tex/generic/pgf/modules/pgfmoduleoo.code.tex + RELOC/tex/generic/pgf/modules/pgfmoduleparser.code.tex + RELOC/tex/generic/pgf/modules/pgfmoduleplot.code.tex + RELOC/tex/generic/pgf/modules/pgfmoduleshapes.code.tex + RELOC/tex/generic/pgf/modules/pgfmodulesnakes.code.tex + RELOC/tex/generic/pgf/modules/pgfmodulesorting.code.tex + RELOC/tex/generic/pgf/pgf.revision.tex + RELOC/tex/generic/pgf/systemlayer/pgf.cfg + RELOC/tex/generic/pgf/systemlayer/pgfsys-common-pdf-via-dvi.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-common-postscript.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-common-svg.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-dvi.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-dvipdfm.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-dvipdfmx.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-dvips.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-dvisvgm.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-luatex.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-pdftex.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-tex4ht.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-textures.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-vtex.def + RELOC/tex/generic/pgf/systemlayer/pgfsys-xetex.def + RELOC/tex/generic/pgf/systemlayer/pgfsys.code.tex + RELOC/tex/generic/pgf/systemlayer/pgfsysanimations.code.tex + RELOC/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex + RELOC/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex + RELOC/tex/generic/pgf/utilities/pgfcalendar.code.tex + RELOC/tex/generic/pgf/utilities/pgfexternal.tex + RELOC/tex/generic/pgf/utilities/pgfexternalwithdepth.tex + RELOC/tex/generic/pgf/utilities/pgffor.code.tex + RELOC/tex/generic/pgf/utilities/pgfkeys.code.tex + RELOC/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex + RELOC/tex/generic/pgf/utilities/pgfrcs.code.tex + RELOC/tex/generic/pgf/utilities/pgfutil-common-lists.tex + RELOC/tex/generic/pgf/utilities/pgfutil-common.tex + RELOC/tex/generic/pgf/utilities/pgfutil-context.def + RELOC/tex/generic/pgf/utilities/pgfutil-latex.def + RELOC/tex/generic/pgf/utilities/pgfutil-plain.def + RELOC/tex/latex/pgf/basiclayer/pgf.sty + RELOC/tex/latex/pgf/basiclayer/pgfbaseimage.sty + RELOC/tex/latex/pgf/basiclayer/pgfbaselayers.sty + RELOC/tex/latex/pgf/basiclayer/pgfbasematrix.sty + RELOC/tex/latex/pgf/basiclayer/pgfbasepatterns.sty + RELOC/tex/latex/pgf/basiclayer/pgfbaseplot.sty + RELOC/tex/latex/pgf/basiclayer/pgfbaseshapes.sty + RELOC/tex/latex/pgf/basiclayer/pgfbasesnakes.sty + RELOC/tex/latex/pgf/basiclayer/pgfcore.sty + RELOC/tex/latex/pgf/compatibility/pgfarrows.sty + RELOC/tex/latex/pgf/compatibility/pgfautomata.sty + RELOC/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty + RELOC/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty + RELOC/tex/latex/pgf/compatibility/pgfheaps.sty + RELOC/tex/latex/pgf/compatibility/pgflibraryarrows.sty + RELOC/tex/latex/pgf/compatibility/pgflibraryautomata.sty + RELOC/tex/latex/pgf/compatibility/pgflibraryplothandlers.sty + RELOC/tex/latex/pgf/compatibility/pgflibraryplotmarks.sty + RELOC/tex/latex/pgf/compatibility/pgflibraryshapes.sty + RELOC/tex/latex/pgf/compatibility/pgflibrarysnakes.sty + RELOC/tex/latex/pgf/compatibility/pgflibrarytikzbackgrounds.sty + RELOC/tex/latex/pgf/compatibility/pgflibrarytikztrees.sty + RELOC/tex/latex/pgf/compatibility/pgfnodes.sty + RELOC/tex/latex/pgf/compatibility/pgfshade.sty + RELOC/tex/latex/pgf/doc/pgfmanual.code.tex + RELOC/tex/latex/pgf/doc/pgfmanual.pdflinks.code.tex + RELOC/tex/latex/pgf/doc/pgfmanual.prettyprinter.code.tex + RELOC/tex/latex/pgf/doc/pgfmanual.sty + RELOC/tex/latex/pgf/frontendlayer/libraries/tikzlibraryexternal.code.tex + RELOC/tex/latex/pgf/frontendlayer/pgfpict2e.sty + RELOC/tex/latex/pgf/frontendlayer/tikz.sty + RELOC/tex/latex/pgf/math/pgfmath.sty + RELOC/tex/latex/pgf/systemlayer/pgfsys.sty + RELOC/tex/latex/pgf/utilities/pgfcalendar.sty + RELOC/tex/latex/pgf/utilities/pgffor.sty + RELOC/tex/latex/pgf/utilities/pgfkeys.sty + RELOC/tex/latex/pgf/utilities/pgfpages.sty + RELOC/tex/latex/pgf/utilities/pgfrcs.sty + RELOC/tex/latex/pgf/utilities/tikzexternal.sty + RELOC/tex/latex/pgf/utilities/xxcolor.sty + RELOC/tex/plain/pgf/basiclayer/pgf.tex + RELOC/tex/plain/pgf/basiclayer/pgfbaseimage.tex + RELOC/tex/plain/pgf/basiclayer/pgfbaselayers.tex + RELOC/tex/plain/pgf/basiclayer/pgfbasematrix.tex + RELOC/tex/plain/pgf/basiclayer/pgfbasepatterns.tex + RELOC/tex/plain/pgf/basiclayer/pgfbaseplot.tex + RELOC/tex/plain/pgf/basiclayer/pgfbaseshapes.tex + RELOC/tex/plain/pgf/basiclayer/pgfbasesnakes.tex + RELOC/tex/plain/pgf/basiclayer/pgfcore.tex + RELOC/tex/plain/pgf/frontendlayer/tikz.tex + RELOC/tex/plain/pgf/math/pgfmath.tex + RELOC/tex/plain/pgf/systemlayer/pgfsys.tex + RELOC/tex/plain/pgf/utilities/pgfcalendar.tex + RELOC/tex/plain/pgf/utilities/pgffor.tex + RELOC/tex/plain/pgf/utilities/pgfkeys.tex + RELOC/tex/plain/pgf/utilities/pgfrcs.tex +catalogue-alias tikz +catalogue-contact-bugs https://github.com/pgf-tikz/pgf/issues +catalogue-contact-repository https://github.com/pgf-tikz/pgf +catalogue-ctan /graphics/pgf/base +catalogue-date 2019-05-09 21:05:53 +0200 +catalogue-license lppl1.3cgpl2fdl +catalogue-topics pgf-tikz graphics-in-tex +catalogue-version 3.1.3 + +name pgf-blur +category Package +revision 48446 +shortdesc PGF/TikZ package for "blurred" shadows +relocated 1 +longdesc The package adds blurred/faded/fuzzy shadows to PGF/TikZ +longdesc pictures. It is configured as a TikZ/PGF library module. The +longdesc method is similar to that of the author's pst-blur package for +longdesc PSTricks. +containersize 2648 +containerchecksum a341495270be35f6824a10edff85edccdfe4d9a0f3cb0ba50ede1b8f5970dbe93b0d5567f113b5c2dfe0661f7201fff710cfae0d9f3f1420245520486775e399 +doccontainersize 242488 +doccontainerchecksum 4cd2faa5160e0286f8b23f518c857b957e9873c0f8f1ec54f8156acfa1e15f7e8c22e6b4691d07ea929b6cc3c76847413fcb9223852bf26efb1c6455909e1816 +docfiles size=63 + RELOC/doc/latex/pgf-blur/README.md details="Readme" + RELOC/doc/latex/pgf-blur/pgf-blur.pdf details="Package documentation" +srccontainersize 9236 +srccontainerchecksum b254cf39510bc1604af7f238a00d9ea9ae615a1a99da8714c11079553fcae3e26dc8534e6fc7797dcb1fc02dd68a6b236e05bfb4b58bfeef8f1cc8195e4c5c05 +srcfiles size=10 + RELOC/source/latex/pgf-blur/pgf-blur.dtx + RELOC/source/latex/pgf-blur/pgf-blur.ins +runfiles size=3 + RELOC/tex/latex/pgf-blur/tikzlibraryshadows.blur.code.tex +catalogue-contact-bugs https://github.com/norbusan/pgf-blur/issues +catalogue-contact-home https://github.com/norbusan/pgf-blur +catalogue-contact-repository https://github.com/norbusan/pgf-blur +catalogue-ctan /graphics/pgf/contrib/pgf-blur +catalogue-date 2018-08-21 14:56:15 +0200 +catalogue-license lpplpd +catalogue-topics graphics-subpic pgf-tikz +catalogue-version 1.02 + +name pgf-cmykshadings +category Package +revision 48982 +shortdesc Support for CMYK and grayscale shadings in PGF/TikZ +relocated 1 +longdesc This package provides support for CMYK and grayscale shadings +longdesc for the pgf package. By default pgf only supports RGB shadings. +longdesc The package attempts to produce shadings consistent with the +longdesc currently selected xcolor colour model. The rgb, cmyk, and gray +longdesc colour models from the xcolor package are supported. +containersize 6648 +containerchecksum 58a1c73f4ad2f0a64538683be8227b429fbe24d4a91c39949e37caa356a30ff1e70b6e00647b8a87eff26bcf99a99d65b0ac8c8710a6a85d89942a247bf3af26 +doccontainersize 467892 +doccontainerchecksum 107029c601a5e889b6156c417a45013ecf47f7e2db4c35ca276467922e8c41ed8a23a118c5949095bc421fa15e41cccf9f6e57d2052434c44d81781532db73bc +docfiles size=116 + RELOC/doc/latex/pgf-cmykshadings/README.md details="Readme" + RELOC/doc/latex/pgf-cmykshadings/pgf-cmykshadings.pdf details="Package documentation" +srccontainersize 10700 +srccontainerchecksum c11c49bb5635a619ec9421013416f3ab18b2f4caecf2cc70bc393e858f95bece057279af6cce8c0664474e3d258c60e259c30ddd7415172ccb95a369a1565f0d +srcfiles size=19 + RELOC/source/latex/pgf-cmykshadings/pgf-cmykshadings.dtx + RELOC/source/latex/pgf-cmykshadings/pgf-cmykshadings.ins +runfiles size=20 + RELOC/tex/latex/pgf-cmykshadings/pgf-cmykshadings.sty + RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-common-postscript.def + RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-dvipdfm.def + RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-dvipdfmx.def + RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-dvips.def + RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-luatex.def + RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-pdftex.def + RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-textures.def + RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-vtex.def + RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-xetex.def +catalogue-contact-repository https://github.com/dcpurton/pgf-cmykshadings +catalogue-ctan /graphics/pgf/contrib/pgf-cmykshadings +catalogue-date 2018-10-24 09:04:01 +0200 +catalogue-license lppl1.3c +catalogue-topics colour pgf-tikz +catalogue-version 1.1a + +name pgf-soroban +category Package +revision 32269 +shortdesc Create images of the soroban using TikZ/PGF +relocated 1 +longdesc The package makes it possible to create pictures of the soroban +longdesc (Japanese abacus) using PGF/TikZ +containersize 1852 +containerchecksum e0f85a77e9d81bf01f5516c3b3baa52a9b7f1b0faaa6f0aab1cae2182732eaf04ea2edb6b0f9091272849f1d7ccb3797cb2641090b926db7f3d0483d08569845 +doccontainersize 351348 +doccontainerchecksum 3f4c021cfb99a27778c250f9ac13e2abe48127731b54d0fca9e8e588f44ebf797e034a56d3ca19bc847bca173dfb03ef9a70e0fee71649188a8427d6eabceb80 +docfiles size=91 + RELOC/doc/latex/pgf-soroban/Changes + RELOC/doc/latex/pgf-soroban/README details="Readme" + RELOC/doc/latex/pgf-soroban/pgf-soroban-doc.bib + RELOC/doc/latex/pgf-soroban/pgf-soroban-doc.pdf details="Package documentation" + RELOC/doc/latex/pgf-soroban/pgf-soroban-doc.tex +runfiles size=2 + RELOC/tex/latex/pgf-soroban/pgf-soroban.sty +catalogue-also pst-soroban +catalogue-ctan /graphics/pgf/contrib/pgf-soroban +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics diagram +catalogue-version 1.1 + +name pgf-spectra +category Package +revision 42986 +shortdesc Draw continuous or discrete spectra using PGF/TikZ +relocated 1 +longdesc The purpose of this package is to draw the spectra of elements +longdesc in a simple way. It is based on the package pst-spectra, +longdesc supporting the same options, but also adding some new options. +longdesc It relies on PGF/TikZ for drawing the desired spectrum, +longdesc continuous or discrete. As in pst-spectra, there are data +longdesc available for the spectra of 99 elements and their ions (from +longdesc the NASA database). It also allows the user to draw spectra +longdesc using their own data. +containersize 73344 +containerchecksum 868fbaa9606718d30a18b710f2295f6e17f31f8a30b724802c765cce872b3b6623539217912bd20998f43777d0a10a036dba01aa65f66f0f89816872ebebe5a0 +doccontainersize 436564 +doccontainerchecksum 28c0aa31dce7627d9c9db7ebd0f9d8efd6e01b5c6cda5b417fb24c569df5c097745b95e94d0ca328ae25649505fae154976e393d60abf39ad775ab7e73b12af7 +docfiles size=151 + RELOC/doc/latex/pgf-spectra/README details="Readme" + RELOC/doc/latex/pgf-spectra/pgf-spectraManual.pdf details="Package documentation" + RELOC/doc/latex/pgf-spectra/pgf-spectraManual.tex +runfiles size=74 + RELOC/tex/latex/pgf-spectra/pgf-spectra.sty + RELOC/tex/latex/pgf-spectra/spectra.data.tex +catalogue-ctan /graphics/pgf/contrib/pgf-spectra +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics physics pgf-tikz +catalogue-version 1.0 + +name pgf-umlcd +category Package +revision 33307 +shortdesc Some LaTeX macros for UML Class Diagrams +relocated 1 +longdesc Some LaTeX macros for UML Class Diagrams.pgf +containersize 2896 +containerchecksum 323572892f452d609286e507032c03d7301b5822dbce0ce3bf3a588a75a307dee0981f2c6c49cf17017c967bfff0d23bac24d7bc06b66475b8a9cfab9ae906a1 +doccontainersize 268792 +doccontainerchecksum 18a494bc6e6c016b3da4d5d51c2cc529ad515b69c6a150623ffa6dec4cc92474766dfc50cbd9c894f491f594ba5f2af4b1796d3a92da21b99272bba9a65bc92d +docfiles size=121 + RELOC/doc/latex/pgf-umlcd/COPYING + RELOC/doc/latex/pgf-umlcd/README + RELOC/doc/latex/pgf-umlcd/demo/abstract-class.tex + RELOC/doc/latex/pgf-umlcd/demo/abstract-factory.svg + RELOC/doc/latex/pgf-umlcd/demo/abstract-factory.tex + RELOC/doc/latex/pgf-umlcd/demo/aggregation.tex + RELOC/doc/latex/pgf-umlcd/demo/association.tex + RELOC/doc/latex/pgf-umlcd/demo/class.tex + RELOC/doc/latex/pgf-umlcd/demo/composition.tex + RELOC/doc/latex/pgf-umlcd/demo/implement-interface.tex + RELOC/doc/latex/pgf-umlcd/demo/inheritance.tex + RELOC/doc/latex/pgf-umlcd/demo/interface.tex + RELOC/doc/latex/pgf-umlcd/demo/note.tex + RELOC/doc/latex/pgf-umlcd/demo/object-include-methods.tex + RELOC/doc/latex/pgf-umlcd/demo/object.tex + RELOC/doc/latex/pgf-umlcd/demo/package.tex + RELOC/doc/latex/pgf-umlcd/demo/unidirectional-association.tex + RELOC/doc/latex/pgf-umlcd/demo/visibility.tex + RELOC/doc/latex/pgf-umlcd/logo.png + RELOC/doc/latex/pgf-umlcd/pgf-umlcd-manual.pdf details="Package demo" + RELOC/doc/latex/pgf-umlcd/pgf-umlcd-manual.tex +runfiles size=3 + RELOC/tex/latex/pgf-umlcd/pgf-umlcd.sty +catalogue-also pst-uml uml +catalogue-contact-repository https://github.com/xuyuan/pgf-umlcd +catalogue-ctan /graphics/pgf/contrib/pgf-umlcd +catalogue-date 2017-05-31 10:14:54 +0200 +catalogue-license gpl +catalogue-topics uml pgf-tikz +catalogue-version 0.2.1.1 + +name pgf-umlsd +category Package +revision 33045 +shortdesc Draw UML Sequence Diagrams +relocated 1 +longdesc LaTeX macros to draw UML diagrams using pgf +containersize 3528 +containerchecksum e32c27e2c779ba362435fd0901703dade14836347afd99b7f8e55dd91d5724ba69fd517c39bf52d95189351376ad505a56634c0a751bc68df36dea952e30e7a3 +doccontainersize 222752 +doccontainerchecksum de4b7c62d79400f107d94fe3101fbbf87ee6bb2cdbb04aa6c1d5eddc9271fc4090b39a79dfc18c45d9f73371f6de09707c342e2cd5ee6dece663ee4494d53ddc +docfiles size=97 + RELOC/doc/latex/pgf-umlsd/README + RELOC/doc/latex/pgf-umlsd/demo/block.tex + RELOC/doc/latex/pgf-umlsd/demo/call.tex + RELOC/doc/latex/pgf-umlsd/demo/callself.tex + RELOC/doc/latex/pgf-umlsd/demo/customize.log + RELOC/doc/latex/pgf-umlsd/demo/customize.tex + RELOC/doc/latex/pgf-umlsd/demo/distance.tex + RELOC/doc/latex/pgf-umlsd/demo/empty.tex + RELOC/doc/latex/pgf-umlsd/demo/instance.tex + RELOC/doc/latex/pgf-umlsd/demo/message.tex + RELOC/doc/latex/pgf-umlsd/demo/messcall.tex + RELOC/doc/latex/pgf-umlsd/demo/multi-threads-example.tex + RELOC/doc/latex/pgf-umlsd/demo/nested-call.tex + RELOC/doc/latex/pgf-umlsd/demo/no-thread-example.tex + RELOC/doc/latex/pgf-umlsd/demo/non-instantaneous-message.tex + RELOC/doc/latex/pgf-umlsd/demo/postlevel.log + RELOC/doc/latex/pgf-umlsd/demo/postlevel.tex + RELOC/doc/latex/pgf-umlsd/demo/prelevel.tex + RELOC/doc/latex/pgf-umlsd/demo/single-thread-example.tex + RELOC/doc/latex/pgf-umlsd/demo/sync-clock.tex + RELOC/doc/latex/pgf-umlsd/demo/thread.tex + RELOC/doc/latex/pgf-umlsd/demo/threadbias.log + RELOC/doc/latex/pgf-umlsd/demo/threadbias.tex + RELOC/doc/latex/pgf-umlsd/diagrams.pdf + RELOC/doc/latex/pgf-umlsd/logo.png + RELOC/doc/latex/pgf-umlsd/pgf-umlsd-manual.pdf details="Package documentation" + RELOC/doc/latex/pgf-umlsd/pgf-umlsd-manual.tex +runfiles size=3 + RELOC/tex/latex/pgf-umlsd/pgf-umlsd.sty +catalogue-also pst-uml uml +catalogue-contact-repository https://github.com/xuyuan/pgf-umlsd +catalogue-ctan /graphics/pgf/contrib/pgf-umlsd +catalogue-date 2017-05-31 10:15:19 +0200 +catalogue-license gpl +catalogue-topics uml pgf-tikz +catalogue-version 0.7 + +name pgfgantt +category Package +revision 46280 +shortdesc Draw Gantt charts with TikZ +relocated 1 +longdesc The package provides an environment for drawing Gantt charts +longdesc that contain various elements (titles, bars, milestones, groups +longdesc and links). Several keys customize the appearance of the chart +longdesc elements. +containersize 7920 +containerchecksum f4553f0ec519e5a8d5e2ad994f7271cc26d5fc80b20299f1aa816a5c21f159ac809a7a0bfe354cac99dad75c2e0bd8d1803277e069a26c105fb4ee83140274d8 +doccontainersize 929720 +doccontainerchecksum e6ab311ace663099eb878807036c3bda80298e9b591dccdaeccdbd65a46993d2b013353721d54f3833114fb1436296e079e9165b5071acb7d722238a1e6b52bd +docfiles size=231 + RELOC/doc/latex/pgfgantt/README details="Readme" + RELOC/doc/latex/pgfgantt/pgfgantt.pdf details="Package documentation" +srccontainersize 37128 +srccontainerchecksum e376f0c89d67a698fc9109e974e39b94fdaa661006422ef6b228e1d0f4c273a8f6cde95ee86c788d7051acdb75e693dea704d3d36e2de42ef53c2db320a7b9d6 +srcfiles size=52 + RELOC/source/latex/pgfgantt/pgfgantt.dtx + RELOC/source/latex/pgfgantt/pgfgantt.ins +runfiles size=12 + RELOC/tex/latex/pgfgantt/pgfgantt.sty +catalogue-also pst-gantt +catalogue-ctan /graphics/pgf/contrib/pgfgantt +catalogue-date 2018-01-10 19:12:31 +0100 +catalogue-license lppl1.3 +catalogue-topics diagram gantt +catalogue-version 5.0 + +name pgfkeyx +category Package +revision 26093 +shortdesc Extended and more robust version of pgfkeys +relocated 1 +longdesc The package extends and improves the robustness of the pgfkeys +longdesc package. In particular, it can deal with active comma, equality +longdesc sign, and slash in key parsing. The difficulty with active +longdesc characters has long been a problem with the pgfkeys package. +longdesc The package also introduces handlers beyond those that pgfkeys +longdesc can offer. +containersize 7088 +containerchecksum c2adb44ef34930aef1d78aed2025a2dc17c69ed641b59af29bcb93c9c9532785090f30834d52c415116ab4a9477d83e5a46d1509e6bd41f47fd4e37cc8ff2933 +doccontainersize 1412 +doccontainerchecksum 2a596ee81d2af4992dc23d6f28f788ef1d3e9a528992f01b7113de726898ae3007b685c4c447d2fcad640403d1bdd8a0eb07299ac9ea81f41c4158eb21b8e9e2 +docfiles size=2 + RELOC/doc/latex/pgfkeyx/README details="Readme" + RELOC/doc/latex/pgfkeyx/pgfkeyx-test1.tex +runfiles size=8 + RELOC/tex/latex/pgfkeyx/pgfkeyx.sty +catalogue-ctan /macros/latex/contrib/pgfkeyx +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics keyval +catalogue-version 0.0.1 + +name pgfmolbio +category Package +revision 35152 +shortdesc Draw graphs typically found in molecular biology texts +relocated 1 +longdesc The package draws graphs typically found in molecular biology +longdesc texts. Currently, the package contains modules for drawing DNA +longdesc sequencing chromatograms and protein domain diagrams. +containersize 13796 +containerchecksum bdbd89379ed7310b78a3847c43022f6cd65f5fccfabfc4723551f5ef4f4cad3e3dcf596ff65cb4c5ba4a354f9bd59fa4aa39147782a0ed369a7dfcb68ef7f9cc +doccontainersize 858652 +doccontainerchecksum a9dbe657b4037477adcf3ead4ad4ca5b703ee8c53739da9de0bed8e02c8e14961a963e9a4a5a86b3f53348da9eab5cdbada1b5ddd073bc18c82177abc92023f2 +docfiles size=245 + RELOC/doc/lualatex/pgfmolbio/README details="Readme" + RELOC/doc/lualatex/pgfmolbio/SampleGff.gff + RELOC/doc/lualatex/pgfmolbio/SampleScf.scf + RELOC/doc/lualatex/pgfmolbio/SampleUniprot.txt + RELOC/doc/lualatex/pgfmolbio/pgfmolbio.pdf details="Package documentation" +srccontainersize 45240 +srccontainerchecksum 1552182819893f7538ee5b38816d339639ff6e6ed3e092a67dde1dfa2a73eb7bca1490909fa34d4999399a8328b2ec8885ad86e76438e4f177dd81e2e6accdd0 +srcfiles size=54 + RELOC/source/lualatex/pgfmolbio/pgfmolbio.dtx + RELOC/source/lualatex/pgfmolbio/pgfmolbio.ins +runfiles size=21 + RELOC/scripts/pgfmolbio/pgfmolbio.lua + RELOC/tex/lualatex/pgfmolbio/pgfmolbio.chromatogram.lua + RELOC/tex/lualatex/pgfmolbio/pgfmolbio.chromatogram.tex + RELOC/tex/lualatex/pgfmolbio/pgfmolbio.convert.tex + RELOC/tex/lualatex/pgfmolbio/pgfmolbio.domains.lua + RELOC/tex/lualatex/pgfmolbio/pgfmolbio.domains.tex + RELOC/tex/lualatex/pgfmolbio/pgfmolbio.sty +catalogue-ctan /macros/luatex/latex/pgfmolbio +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics molbio diagram luatex +catalogue-version 0.21 + +name pgfmorepages +category Package +revision 51051 +shortdesc Assemble multiple logical pages onto a physical page +relocated 1 +longdesc This package replaces and extends the pgfpages sub-package of +longdesc the PGF system. It provides the capability to arrange multiple +longdesc "logical" pages on multiple "physical" pages, for example as +longdesc for arranging pages to make booklets. +containersize 6652 +containerchecksum 6e40413358c57b2f16153c12a9f227563f107bbb966c795bd2d1d0dc7444b2acf7ad72631f23903941516bea803e4c539399884fb4e479abb61b4dc9a5bde428 +doccontainersize 62064 +doccontainerchecksum b8e0949fc1aeec50514fffa3fdd88ee96017207a39f1d8c15b326604192eb2277ae6749c5faa8f531bbb0e3ad3d0e25d3c0478583538b2a8ffbba5e3f780c9ed +docfiles size=20 + RELOC/doc/latex/pgfmorepages/README details="Readme" + RELOC/doc/latex/pgfmorepages/pgfmorepages.pdf details="Package documentation" + RELOC/doc/latex/pgfmorepages/pgfmorepages.tex +runfiles size=13 + RELOC/tex/latex/pgfmorepages/pgfmorepages.sty +catalogue-contact-bugs https://github.com/loopspace/pgfmorepages/issues +catalogue-contact-home https://github.com/loopspace/pgfmorepages +catalogue-contact-repository https://github.com/loopspace/pgfmorepages +catalogue-ctan /graphics/pgf/contrib/pgfmorepages +catalogue-date 2019-05-08 16:35:30 +0200 +catalogue-license lppl1.3c +catalogue-topics pgf-tikz +catalogue-version 1.00 + +name pgfopts +category Package +revision 34573 +shortdesc LaTeX package options with pgfkeys +relocated 1 +longdesc The pgfkeys package (part of the pgf distribution) is a +longdesc well-designed way of defining and using large numbers of keys +longdesc for key-value syntaxes. However, pgfkeys itself does not offer +longdesc means of handling LaTeX class and package options. This package +longdesc adds such option handling to pgfkeys, in the same way that +longdesc kvoptions adds the same facility to the LaTeX standard keyval +longdesc package. +containersize 1944 +containerchecksum 39b29273305a894c37bbb8f2edc899eb69cabed78623ec5ac66d6a75fd7d6b344c1fe4813f56383acd1c51acdd099fcaf3e97af294c5fd63ffe47e25e9cb9caa +doccontainersize 175604 +doccontainerchecksum 8c5df446fe33e40503caeb8740becb28b3328490fb6aac2cf858645a5d896681d6448e5160cd32e7220c164838fb65dcfd85a22a6c6b9205511f6055f23dcabf +docfiles size=45 + RELOC/doc/latex/pgfopts/LICENSE + RELOC/doc/latex/pgfopts/README details="Readme" + RELOC/doc/latex/pgfopts/pgfopts.pdf details="Package documentation" +srccontainersize 6008 +srccontainerchecksum ba4043a5ecaf21c1afc3328160c6832b67103a9b9c278665f0ebd91f21d842f85eb70e7a2d7385d66f9910006205d59042aafc994a2eb62762f3dfb5917c10f6 +srcfiles size=5 + RELOC/source/latex/pgfopts/pgfopts.dtx +runfiles size=2 + RELOC/tex/latex/pgfopts/pgfopts.sty +catalogue-ctan /macros/latex/contrib/pgfopts +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics keyval package-supp +catalogue-version 2.1a + +name pgfornament +category Package +revision 39988 +shortdesc Drawing of Vectorian ornaments with PGF/TikZ +relocated 1 +longdesc This package allows the drawing of Vectorian ornaments (196) +longdesc with PGF/TikZ. The documentation presents the syntax and +longdesc parameters of the macro "pgfornament". +containersize 536948 +containerchecksum bf930b8abf986df03e46e8c228e82c4015dd3f671688deabe3756815d86c2ce21d0738e4172874d233c3c7c28792ea7081a32011a3db64d93dc4a8b4c9f56162 +doccontainersize 3132476 +doccontainerchecksum 6909f93df3cd162f36817ae99c7f7da532b9a44b6621d303ec4f4828c22d99d25d4e4c1ddc17f81ce2b070ac8fa40bedf5790a097d3d5ebc095abb88a92fe037 +docfiles size=1040 + RELOC/doc/latex/pgfornament/README details="Readme" + RELOC/doc/latex/pgfornament/TeX_box.png + RELOC/doc/latex/pgfornament/baseline.png + RELOC/doc/latex/pgfornament/ornaments.pdf details="Package documentation" + RELOC/doc/latex/pgfornament/ornaments.png + RELOC/doc/latex/pgfornament/ornaments.tex + RELOC/doc/latex/pgfornament/tikzrput.pdf + RELOC/doc/latex/pgfornament/tikzrput.tex +runfiles size=518 + RELOC/tex/generic/pgfornament/am/am1.pgf + RELOC/tex/generic/pgfornament/am/am2.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian1.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian10.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian100.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian101.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian102.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian103.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian104.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian105.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian106.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian107.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian108.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian109.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian11.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian110.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian111.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian112.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian113.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian114.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian115.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian116.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian117.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian118.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian119.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian12.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian120.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian121.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian122.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian123.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian124.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian125.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian126.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian127.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian128.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian129.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian13.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian130.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian131.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian132.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian133.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian134.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian135.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian136.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian137.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian138.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian139.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian14.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian140.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian141.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian142.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian143.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian144.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian145.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian146.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian147.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian148.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian149.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian15.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian150.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian151.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian152.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian153.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian154.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian155.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian156.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian157.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian158.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian159.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian16.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian160.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian161.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian162.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian163.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian164.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian165.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian166.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian167.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian168.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian169.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian17.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian170.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian171.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian172.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian173.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian174.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian175.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian176.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian177.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian178.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian179.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian18.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian180.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian181.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian182.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian183.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian184.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian185.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian186.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian187.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian188.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian189.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian19.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian190.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian191.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian192.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian193.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian194.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian195.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian196.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian2.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian20.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian21.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian22.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian23.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian24.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian25.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian26.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian27.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian28.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian29.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian3.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian30.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian31.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian32.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian33.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian34.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian35.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian36.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian37.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian38.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian39.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian4.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian40.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian41.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian42.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian43.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian44.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian45.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian46.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian47.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian48.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian49.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian5.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian50.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian51.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian52.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian53.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian54.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian55.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian56.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian57.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian58.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian59.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian6.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian60.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian61.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian62.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian63.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian64.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian65.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian66.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian67.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian68.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian69.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian7.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian70.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian71.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian72.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian73.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian74.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian75.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian76.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian77.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian78.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian79.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian8.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian80.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian81.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian82.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian83.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian84.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian85.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian86.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian87.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian88.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian89.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian9.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian90.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian91.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian92.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian93.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian94.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian95.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian96.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian97.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian98.pgf + RELOC/tex/generic/pgfornament/vectorian/vectorian99.pgf + RELOC/tex/latex/pgfornament/pgflibraryam.code.tex + RELOC/tex/latex/pgfornament/pgflibraryvectorian.code.tex + RELOC/tex/latex/pgfornament/pgfornament.sty + RELOC/tex/latex/pgfornament/tikzrput.sty +catalogue-also pgf +catalogue-ctan /macros/latex/contrib/tkz/pgfornament +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics graphics-plot decoration +catalogue-version 0.21 + +name pgfornament-han +category Package +revision 47789 +shortdesc pgfornament library for Chinese traditional motifs and patterns +relocated 1 +longdesc This package provides a pgfornament library for Chinese +longdesc traditional motifs and patterns. The command \pgfornamenthan +longdesc takes the same options as \pgfornament from the pgfornament +longdesc package, but renders Chinese traditional motifs instead. The +longdesc list of supported motifs, as well as some examples, can be +longdesc found in the accompanying documentation. Yi pgfornament Hong +longdesc Bao De Ji Zhi ,Shi Xian Hui Zhi Yi Feng Tu Wen . +longdesc \pgfornamenthan He \pgfornament De Can Shu Shi Yi Yang De +longdesc ;Bian Yi De Chu Lai De Dang Ran Shi Yi Feng Wen Yang Liao . +longdesc Hong Bao Shou Ce Li You Wan Zheng De Wen Yang Lie Biao Yi Ji +longdesc Shi Yong Fan Li . +containersize 84336 +containerchecksum 12417d681236cfcde117e219e5fe3c507d582013b5fc7c5f443c659d0081ef72f460340860a534107ebcea3df68f7804b066d10ea1f15ad0b723e000f6319141 +doccontainersize 930720 +doccontainerchecksum 350bb2d6f68f01951044f9cd3e7249ee30df3ffe692474612038b03b529f9a3663b2920e7171b80bbc7bcd1b4a7b75a1c7296c119f653ec396b822a732de4eb0 +docfiles size=315 + RELOC/doc/latex/pgfornament-han/README.md details="Readme" + RELOC/doc/latex/pgfornament-han/heavenlyclouds-sample.pdf details="Sample of the HeavenlyClouds beamer theme" language="zh" + RELOC/doc/latex/pgfornament-han/heavenlyclouds-sample.tex + RELOC/doc/latex/pgfornament-han/lppl-1-3c.txt + RELOC/doc/latex/pgfornament-han/pgfornament-han_manual.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/pgfornament-han/pgfornament-han_manual.tex + RELOC/doc/latex/pgfornament-han/xiaoshan-sample.pdf details="Sample of the Xiaoshan beamer theme" language="zh" + RELOC/doc/latex/pgfornament-han/xiaoshan-sample.tex +runfiles size=128 + RELOC/tex/latex/pgfornament-han/beamerthemeHeavenlyClouds.sty + RELOC/tex/latex/pgfornament-han/beamerthemeXiaoshan.sty + RELOC/tex/latex/pgfornament-han/cncolours.sty + RELOC/tex/latex/pgfornament-han/han/han1.pgf + RELOC/tex/latex/pgfornament-han/han/han10.pgf + RELOC/tex/latex/pgfornament-han/han/han11.pgf + RELOC/tex/latex/pgfornament-han/han/han12.pgf + RELOC/tex/latex/pgfornament-han/han/han13.pgf + RELOC/tex/latex/pgfornament-han/han/han14.pgf + RELOC/tex/latex/pgfornament-han/han/han15.pgf + RELOC/tex/latex/pgfornament-han/han/han16.pgf + RELOC/tex/latex/pgfornament-han/han/han17.pgf + RELOC/tex/latex/pgfornament-han/han/han18.pgf + RELOC/tex/latex/pgfornament-han/han/han19.pgf + RELOC/tex/latex/pgfornament-han/han/han2.pgf + RELOC/tex/latex/pgfornament-han/han/han20.pgf + RELOC/tex/latex/pgfornament-han/han/han21.pgf + RELOC/tex/latex/pgfornament-han/han/han22.pgf + RELOC/tex/latex/pgfornament-han/han/han23.pgf + RELOC/tex/latex/pgfornament-han/han/han24.pgf + RELOC/tex/latex/pgfornament-han/han/han25.pgf + RELOC/tex/latex/pgfornament-han/han/han26.pgf + RELOC/tex/latex/pgfornament-han/han/han27.pgf + RELOC/tex/latex/pgfornament-han/han/han28.pgf + RELOC/tex/latex/pgfornament-han/han/han29.pgf + RELOC/tex/latex/pgfornament-han/han/han3.pgf + RELOC/tex/latex/pgfornament-han/han/han30.pgf + RELOC/tex/latex/pgfornament-han/han/han31.pgf + RELOC/tex/latex/pgfornament-han/han/han32.pgf + RELOC/tex/latex/pgfornament-han/han/han33.pgf + RELOC/tex/latex/pgfornament-han/han/han34.pgf + RELOC/tex/latex/pgfornament-han/han/han35.pgf + RELOC/tex/latex/pgfornament-han/han/han36.pgf + RELOC/tex/latex/pgfornament-han/han/han37.pgf + RELOC/tex/latex/pgfornament-han/han/han38.pgf + RELOC/tex/latex/pgfornament-han/han/han39.pgf + RELOC/tex/latex/pgfornament-han/han/han4.pgf + RELOC/tex/latex/pgfornament-han/han/han40.pgf + RELOC/tex/latex/pgfornament-han/han/han41.pgf + RELOC/tex/latex/pgfornament-han/han/han42.pgf + RELOC/tex/latex/pgfornament-han/han/han43.pgf + RELOC/tex/latex/pgfornament-han/han/han44.pgf + RELOC/tex/latex/pgfornament-han/han/han45.pgf + RELOC/tex/latex/pgfornament-han/han/han46.pgf + RELOC/tex/latex/pgfornament-han/han/han47.pgf + RELOC/tex/latex/pgfornament-han/han/han48.pgf + RELOC/tex/latex/pgfornament-han/han/han49.pgf + RELOC/tex/latex/pgfornament-han/han/han5.pgf + RELOC/tex/latex/pgfornament-han/han/han50.pgf + RELOC/tex/latex/pgfornament-han/han/han51.pgf + RELOC/tex/latex/pgfornament-han/han/han52.pgf + RELOC/tex/latex/pgfornament-han/han/han53.pgf + RELOC/tex/latex/pgfornament-han/han/han54.pgf + RELOC/tex/latex/pgfornament-han/han/han55.pgf + RELOC/tex/latex/pgfornament-han/han/han56.pgf + RELOC/tex/latex/pgfornament-han/han/han57.pgf + RELOC/tex/latex/pgfornament-han/han/han58.pgf + RELOC/tex/latex/pgfornament-han/han/han59.pgf + RELOC/tex/latex/pgfornament-han/han/han6.pgf + RELOC/tex/latex/pgfornament-han/han/han60.pgf + RELOC/tex/latex/pgfornament-han/han/han61.pgf + RELOC/tex/latex/pgfornament-han/han/han62.pgf + RELOC/tex/latex/pgfornament-han/han/han63.pgf + RELOC/tex/latex/pgfornament-han/han/han64.pgf + RELOC/tex/latex/pgfornament-han/han/han65.pgf + RELOC/tex/latex/pgfornament-han/han/han66.pgf + RELOC/tex/latex/pgfornament-han/han/han67.pgf + RELOC/tex/latex/pgfornament-han/han/han68.pgf + RELOC/tex/latex/pgfornament-han/han/han69.pgf + RELOC/tex/latex/pgfornament-han/han/han7.pgf + RELOC/tex/latex/pgfornament-han/han/han70.pgf + RELOC/tex/latex/pgfornament-han/han/han71.pgf + RELOC/tex/latex/pgfornament-han/han/han72.pgf + RELOC/tex/latex/pgfornament-han/han/han73.pgf + RELOC/tex/latex/pgfornament-han/han/han74.pgf + RELOC/tex/latex/pgfornament-han/han/han75.pgf + RELOC/tex/latex/pgfornament-han/han/han76.pgf + RELOC/tex/latex/pgfornament-han/han/han77.pgf + RELOC/tex/latex/pgfornament-han/han/han8.pgf + RELOC/tex/latex/pgfornament-han/han/han9.pgf + RELOC/tex/latex/pgfornament-han/pgflibraryhan.code.tex + RELOC/tex/latex/pgfornament-han/pgfornament-han.sty +catalogue-also pgfornament +catalogue-contact-repository https://github.com/liantze/pgfornament-han/ +catalogue-ctan /graphics/pgf/contrib/pgfornament-han +catalogue-date 2018-05-21 12:26:58 +0200 +catalogue-license lppl1.3c +catalogue-topics pgf-tikz chinese graphics-symb presentation + +name pgfplots +category Package +revision 47373 +shortdesc Create normal/logarithmic plots in two and three dimensions +relocated 1 +longdesc PGFPlots draws high-quality function plots in normal or +longdesc logarithmic scaling with a user-friendly interface directly in +longdesc TeX. The user supplies axis labels, legend entries and the plot +longdesc coordinates for one or more plots and PGFPlots applies axis +longdesc scaling, computes any logarithms and axis ticks and draws the +longdesc plots, supporting line plots, scatter plots, piecewise constant +longdesc plots, bar plots, area plots, mesh-- and surface plots and some +longdesc more. Pgfplots is based on PGF/TikZ (PGF); it runs equally for +longdesc LaTeX/TeX/ConTeXt. +containersize 520400 +containerchecksum 6a56f591562baac1b6256eb5c888c4cbfdca5762d4141ef4773ceca06ffbaccf3e0d12c35818b9447a1c782113c3c2a622dee0ee74e9a5b97634af0603c8c095 +doccontainersize 13287264 +doccontainerchecksum 1167fe761139de816533728f8b774f802190a1d58df979d192d3fd92427dc32d12ae0c176315de8c878d7f1e4ed58d8e7c40c5b794f8b75e813692c156dcba7b +docfiles size=4011 + RELOC/doc/context/third/pgfplots/Makefile + RELOC/doc/context/third/pgfplots/pgfplotsexample-context.pdf + RELOC/doc/context/third/pgfplots/pgfplotsexample-context.tex + RELOC/doc/context/third/pgfplots/pgfplotsexample-context.tuc + RELOC/doc/generic/pgfplots/README details="Readme" + RELOC/doc/latex/pgfplots/TeX-programming-notes.pdf + RELOC/doc/latex/pgfplots/pgfplots.doc.src.tar.bz2 + RELOC/doc/latex/pgfplots/pgfplots.pdf details="Package manual" + RELOC/doc/latex/pgfplots/pgfplotsexample.pdf + RELOC/doc/latex/pgfplots/pgfplotsexample.tex + RELOC/doc/latex/pgfplots/pgfplotstable.pdf + RELOC/doc/latex/pgfplots/pgfplotstodo.pdf + RELOC/doc/plain/pgfplots/pgfplotsexample-plain.pdf + RELOC/doc/plain/pgfplots/pgfplotsexample-plain.tex +srccontainersize 1706748 +srccontainerchecksum ec594de33aab4206bf4c38808fca697f144337031677ae056fc05ab910e6886389cd9f283a299071dc488b41e60c03d27108661ed2d5f1c124f57a87e28f3999 +srcfiles size=417 + RELOC/source/context/third/pgfplots/pgfplotstests.context.tar.bz2 + RELOC/source/latex/pgfplots/pgfplotstests.tar.bz2 +runfiles size=901 + RELOC/scripts/pgfplots/matlab2pgfplots.m + RELOC/scripts/pgfplots/matlab2pgfplots.sh + RELOC/scripts/pgfplots/pgf2pdf.sh + RELOC/scripts/pgfplots/pgfplots.py + RELOC/tex/context/third/pgfplots/t-pgfplots.tex + RELOC/tex/context/third/pgfplots/t-pgfplotstable.tex + RELOC/tex/generic/pgfplots/libs/pgflibrarypgfplots.colorbrewer.code.tex + RELOC/tex/generic/pgfplots/libs/pgflibrarypgfplots.colortol.code.tex + RELOC/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading.code.tex + RELOC/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarycolorbrewer.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarycolortol.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.colormaps.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.dateplot.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.decorations.softclip.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.external.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.fillbetween.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.groupplots.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.patchplots.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.polar.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.smithchart.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.statistics.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.ternary.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.units.code.tex + RELOC/tex/generic/pgfplots/liststructure/pgfplotsarray.code.tex + RELOC/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.tex + RELOC/tex/generic/pgfplots/liststructure/pgfplotsliststructure.code.tex + RELOC/tex/generic/pgfplots/liststructure/pgfplotsliststructureext.code.tex + RELOC/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.tex + RELOC/tex/generic/pgfplots/lua/pgfplots.lua + RELOC/tex/generic/pgfplots/lua/pgfplots/binary.lua + RELOC/tex/generic/pgfplots/lua/pgfplots/colormap.lua + RELOC/tex/generic/pgfplots/lua/pgfplots/meshplothandler.lua + RELOC/tex/generic/pgfplots/lua/pgfplots/pgfplotstexio.lua + RELOC/tex/generic/pgfplots/lua/pgfplots/pgfplotsutil.lua + RELOC/tex/generic/pgfplots/lua/pgfplots/plothandler.lua + RELOC/tex/generic/pgfplots/lua/pgfplots/statistics.lua + RELOC/tex/generic/pgfplots/lua/pgfplots/streamer.lua + RELOC/tex/generic/pgfplots/lua/pgfplotsoldpgfsupp/luamath/functions.lua + RELOC/tex/generic/pgfplots/lua/pgfplotsoldpgfsupp/luamath/parser.lua + RELOC/tex/generic/pgfplots/numtable/pgfplotstable.code.tex + RELOC/tex/generic/pgfplots/numtable/pgfplotstable.coltype.code.tex + RELOC/tex/generic/pgfplots/numtable/pgfplotstableshared.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_leq.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_loader.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_misc.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfcoreexternal.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfcoreimage.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfcorelayers.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfcorescopes.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfkeys.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfkeysfiltered.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgflibraryfpu.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgflibraryintersections.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgflibraryluamath.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgflibraryplothandlers.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfmanual.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfmanual.pdflinks.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfmanual.prettyprinter.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfmathfloat.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfutil-common-lists.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_tikzexternal.sty + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_tikzexternalshared.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_tikzlibraryexternal.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_trig_format.code.tex + RELOC/tex/generic/pgfplots/oldpgfcompatib/pgfsys-luatexpatch.def + RELOC/tex/generic/pgfplots/oldpgfplotscompatib/tikzlibrarydateplot.code.tex + RELOC/tex/generic/pgfplots/pgfcontrib/pgflibraryfillbetween.code.tex + RELOC/tex/generic/pgfplots/pgfcontrib/tikzlibrarydecorations.softclip.code.tex + RELOC/tex/generic/pgfplots/pgfcontrib/tikzlibraryfillbetween.code.tex + RELOC/tex/generic/pgfplots/pgfplots.code.tex + RELOC/tex/generic/pgfplots/pgfplots.errorbars.code.tex + RELOC/tex/generic/pgfplots/pgfplots.markers.code.tex + RELOC/tex/generic/pgfplots/pgfplots.paths.code.tex + RELOC/tex/generic/pgfplots/pgfplots.revision.tex + RELOC/tex/generic/pgfplots/pgfplots.scaling.code.tex + RELOC/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex + RELOC/tex/generic/pgfplots/pgfplotscore.code.tex + RELOC/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex + RELOC/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex + RELOC/tex/generic/pgfplots/pgfplotsplothandlers.code.tex + RELOC/tex/generic/pgfplots/pgfplotsstackedplots.code.tex + RELOC/tex/generic/pgfplots/pgfplotsticks.code.tex + RELOC/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-dvipdfmx.def + RELOC/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-dvips.def + RELOC/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-luatex.def + RELOC/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-luatexpatch.def + RELOC/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-pdftex.def + RELOC/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-xetex.def + RELOC/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex + RELOC/tex/generic/pgfplots/test/pgfplots.assert.code.tex + RELOC/tex/generic/pgfplots/test/pgfplots.assert.sty + RELOC/tex/generic/pgfplots/util/pgfplotsbinary.code.tex + RELOC/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex + RELOC/tex/generic/pgfplots/util/pgfplotscolor.code.tex + RELOC/tex/generic/pgfplots/util/pgfplotscolormap.code.tex + RELOC/tex/generic/pgfplots/util/pgfplotsutil.code.tex + RELOC/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex + RELOC/tex/latex/pgfplots/bugtracker.sty + RELOC/tex/latex/pgfplots/libs/tikzlibrarypgfplots.clickable.code.tex + RELOC/tex/latex/pgfplots/libs/tikzlibrarypgfplotsclickable.code.tex + RELOC/tex/latex/pgfplots/pgfplots.sty + RELOC/tex/latex/pgfplots/pgfplotstable.sty + RELOC/tex/latex/pgfplots/pgfregressiontest.sty + RELOC/tex/plain/pgfplots/pgfplots.tex + RELOC/tex/plain/pgfplots/pgfplotstable.tex +catalogue-also pst-plot pgfplotstable +catalogue-contact-bugs https://sourceforge.net/p/pgfplots/bugs/?source=navbar +catalogue-contact-home http://pgfplots.sourceforge.net/ +catalogue-contact-repository http://pgfplots.sourceforge.net/ +catalogue-contact-support https://sourceforge.net/projects/pgfplots/ +catalogue-ctan /graphics/pgf/contrib/pgfplots +catalogue-date 2018-04-07 06:21:57 +0200 +catalogue-license gpl3 +catalogue-topics graphics-plot pgf-tikz +catalogue-version 1.16 + +name phaistos +category Package +revision 18651 +shortdesc Disk of Phaistos font +relocated 1 +longdesc A font that contains all the symbols of the famous Disc of +longdesc Phaistos, together with a LaTeX package. The disc was 'printed' +longdesc by stamping the wet clay with some sort of punches, probably +longdesc around 1700 BCE. The font is available in Adobe Type 1 and +longdesc OpenType formats (the latter using the Unicode positions for +longdesc the symbols). There are those who believe that this Cretan +longdesc script was used to 'write' Greek (it is known, for example, +longdesc that the rather later Cretan Linear B script was used to write +longdesc Greek), but arguments for other languages have been presented. +execute addMap phaistos.map +containersize 183368 +containerchecksum d5cb8a051e1e80629385bff368896c47bdfccfcf38a24a723ddc5f9056a59c57703986799253812c9a4651f4e16dc55cee0876ddd0552900f978dab0381c9aac +doccontainersize 174564 +doccontainerchecksum 96eb22628467289f72aaa0d4983e494c75b3a2315d8b9d2921f8ab29d93fffae4f459ef852529dfa4ff48a65e25d652662c54d84db54e0118b1c021bbe39eafa +docfiles size=47 + RELOC/doc/fonts/phaistos/getglyphs + RELOC/doc/fonts/phaistos/glyphTable.pdf details="Table of symbols" +srccontainersize 3368 +srccontainerchecksum 5ba2b04fe4e3aef136de2dc40568ecb81f437561ee8e6c320927bb816819889666f57ad07c3b8bf6eb7f6eb84b69147f9233449a26529b61712d158abf889f91 +srcfiles size=4 + RELOC/source/fonts/phaistos/phaistos.dtx + RELOC/source/fonts/phaistos/phaistos.ins +runfiles size=54 + RELOC/fonts/afm/public/phaistos/phaistos.afm + RELOC/fonts/map/dvips/phaistos/phaistos.map + RELOC/fonts/opentype/public/phaistos/Phaistos.otf + RELOC/fonts/tfm/public/phaistos/phaistos.tfm + RELOC/fonts/type1/public/phaistos/phaistos.pfb + RELOC/tex/latex/phaistos/phaistos.sty +catalogue-ctan /fonts/archaic/phaistos +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font font-archaic font-type1 font-otf +catalogue-version 1.0 + +name phffullpagefigure +category Package +revision 41857 +shortdesc Figures which fill up a whole page +relocated 1 +longdesc This package defines a figure environment which provides the +longdesc figure content on its own page, with the corresponding caption +longdesc reading for example "Figure 3 (on next page): ". +containersize 2908 +containerchecksum 4d443d5ce4dfd4805eaea4ecfe11bc94b9e92bc4d68f8fdd001a72ef09f519f11e20517d01722f5c7f79eeb9b92d0a6099d620e5c54dc0845b7ed5cc762c260d +doccontainersize 242800 +doccontainerchecksum 837b57707c0d37d20b02ed83ca32768c4b2718958ba3124650604f4de0bb11528c2d5fed95f942545db400eca0517ef59fb168408ea9960f0a894a777e9f2681 +docfiles size=64 + RELOC/doc/latex/phffullpagefigure/Makefile + RELOC/doc/latex/phffullpagefigure/README.md details="Readme" + RELOC/doc/latex/phffullpagefigure/phffullpagefigure.pdf details="Package documentation" + RELOC/doc/latex/phffullpagefigure/pkg.mk +srccontainersize 10128 +srccontainerchecksum f0abc0f77efc7460907cd18282ccdf2ad15687b3d891a72e8fe756c16d1d715cd6f7eaabe09898c2bd88ebe54d16b86115c06b4d56fe1f2f4b8e3e952292a107 +srcfiles size=10 + RELOC/source/latex/phffullpagefigure/phffullpagefigure.dtx + RELOC/source/latex/phffullpagefigure/phffullpagefigure.ins +runfiles size=3 + RELOC/tex/latex/phffullpagefigure/phffullpagefigure.sty +catalogue-contact-repository https://github.com/phfaist/phfqitltx +catalogue-ctan /macros/latex/contrib/phffullpagefigure +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics float +catalogue-version 1.0 + +name phfnote +category Package +revision 41858 +shortdesc Basic formatting for short documents +relocated 1 +longdesc This package provides basic formatting for short documents such +longdesc as notes on a specific topic, short documentation, or quick +longdesc memos. It aims to cover all basic needs for such purposes: +longdesc include a standard set of relevant packages, a nice title which +longdesc doesn't take up too much space, better page margin sizes, and +longdesc some basic styling to make the note look nicer. At the same +longdesc time, it is highly flexible and customizable. +containersize 15836 +containerchecksum d542b73d1a25d0d141a37e3bf0a3d4753829efbcfed9745ea299a90026325f82624bb5d4a5075892af758d4a4613e1560824871e6bb784a8ce0030a7fb3f4836 +doccontainersize 637980 +doccontainerchecksum a62dc8166944e953b8efa49c7ab78b98744cb9948523f4decffee6a553a8e432ce2d9774575bbedce59e5dbd01e9bcc01d82962a19d3878a11367127a7927287 +docfiles size=162 + RELOC/doc/latex/phfnote/Makefile + RELOC/doc/latex/phfnote/README.md details="Readme" + RELOC/doc/latex/phfnote/phfnote.pdf details="Package documentation" + RELOC/doc/latex/phfnote/pkg.mk +srccontainersize 28336 +srccontainerchecksum 4f83603d837978304673550f1dba78a1aad030392323de2ae6bb0295ecf7fc5f8bd211a14f831b7f3710b13e999e73e3a8b224a5ac44ce67b2ea3faae5fc83c9 +srcfiles size=29 + RELOC/source/latex/phfnote/phfnote.dtx + RELOC/source/latex/phfnote/phfnote.ins +runfiles size=18 + RELOC/bibtex/bst/phfnote/naturemagdoi.bst + RELOC/tex/latex/phfnote/phfnote.sty +catalogue-contact-repository https://github.com/phfaist/phfqitltx +catalogue-ctan /macros/latex/contrib/phfnote +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics memorandum +catalogue-version 1.0 + +name phfparen +category Package +revision 41859 +shortdesc Parenthetic math expressions made simpler and less redundant +relocated 1 +longdesc This package provides a more condensed and flexible syntax for +longdesc parenthesis-delimited expressions in math mode which also +longdesc allows for an easier switching of brace sizes. For example, the +longdesc syntax " `\big( a + b ) " can be used to replace "\bigl( a + b +longdesc \bigr)". +containersize 2352 +containerchecksum c184623f226f9bc9926eef0b5e23443bec20e66c6641196bc90daf27a648d9f0db70ad176488fe061d44746b6cf46a3217eeb42f6a95f2e37c20d641ba2838c6 +doccontainersize 305996 +doccontainerchecksum 5c34575950ee1a9616408f293319eb0634795e07173677cae112466a298dbfa5cc18fbead8e92e459718df91326d27cc7baf0414a1f1e8613a5c115c070b5016 +docfiles size=79 + RELOC/doc/latex/phfparen/Makefile + RELOC/doc/latex/phfparen/README.md details="Readme" + RELOC/doc/latex/phfparen/phfparen.pdf details="Package documentation" + RELOC/doc/latex/phfparen/pkg.mk +srccontainersize 9336 +srccontainerchecksum ca94f1756265e0f92e8808b7dac74eb57f62eedcdefbaf6e4059c8a7ffa51819da979a70203b11250d329ec9000b454067c101b25753673add4b35c40fe1e882 +srcfiles size=9 + RELOC/source/latex/phfparen/phfparen.dtx + RELOC/source/latex/phfparen/phfparen.ins +runfiles size=2 + RELOC/tex/latex/phfparen/phfparen.sty +catalogue-contact-repository https://github.com/phfaist/phfqitltx +catalogue-ctan /macros/latex/contrib/phfparen +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics maths paren-mgmt +catalogue-version 1.0 + +name phfqit +category Package +revision 45084 +shortdesc Macros for typesetting Quantum Information Theory +relocated 1 +longdesc This package provides macros to typeset some general +longdesc mathematical operators (identity operator, trace, diagonal, +longdesc rank, ...), a powerful implementation of the bra-ket notation +longdesc (kets, bras, brakets, matrix elements etc. which can be sized +longdesc as required), delimited expressions such as averages and norms, +longdesc and some basic Lie algebra/group names. Macros for entropy +longdesc measures for quantum information theory (smooth min- and +longdesc max-entropy, smooth relative entropies, etc.) are also +longdesc provided. +containersize 4136 +containerchecksum 250626ed9e7e33abf0d19c32213236b02849db849f080bee0ddc19370acb7e2e66c838dc1149f8c1194d2534c1e073fc2971fe3687174978bdabc90efc4b7752 +doccontainersize 394904 +doccontainerchecksum 0acdb07c2484e2e5694690536eca084ffebee0f549ead32b3557e368ed85d7a7785c297cc639cee2cf4b41f64f7c2df806b6b27d4ae89769b0b8d99d2127f885 +docfiles size=102 + RELOC/doc/latex/phfqit/Makefile + RELOC/doc/latex/phfqit/README.md details="Readme" + RELOC/doc/latex/phfqit/phfqit.pdf details="Package documentation" + RELOC/doc/latex/phfqit/pkg.mk +srccontainersize 18388 +srccontainerchecksum f189ad485482da9e1802b1b2c96120a244a14f7e7e39a1759d7484ad236945f98b8330464223ad63127d9960eb4f10f04145f5eefef25f02775c009184ca4b9d +srcfiles size=20 + RELOC/source/latex/phfqit/phfqit.dtx + RELOC/source/latex/phfqit/phfqit.ins +runfiles size=4 + RELOC/tex/latex/phfqit/phfqit.sty +catalogue-contact-repository https://github.com/phfaist/phfqitltx +catalogue-ctan /macros/latex/contrib/phfqit +catalogue-date 2017-08-20 08:50:52 +0200 +catalogue-license lppl1.3 +catalogue-topics maths physics +catalogue-version 2.0 + +name phfquotetext +category Package +revision 41869 +shortdesc Quote verbatim text without white space formatting +relocated 1 +longdesc This package provides an environment for displaying block text +longdesc with special characters, such as verbatim quotes from a referee +longdesc report which may contain pseudo-(La)TeX code. This behaves like +longdesc a verbatim environment, except that it displays its content as +longdesc normal paragraph content, ignoring any white space +longdesc preformatting. +containersize 1340 +containerchecksum 809820fd3108cb5b33c5f3129fb3ae8251476161aca5936b966219a49a29204107375a33e6bfc452d2aef8b0cefb30f8ab0e53984f39d5c3228ded25ca19c37e +doccontainersize 199404 +doccontainerchecksum 501d652782670318fdb45368e01dbf76de7cb46f0f1584bc7dbf1242a71a42e7bc870c5cbf7dcb33d41463c550a0803226860a0aa64e75952f717436e8f6501a +docfiles size=53 + RELOC/doc/latex/phfquotetext/Makefile + RELOC/doc/latex/phfquotetext/README.md details="Readme" + RELOC/doc/latex/phfquotetext/phfquotetext.pdf details="Package documentation" + RELOC/doc/latex/phfquotetext/pkg.mk +srccontainersize 4808 +srccontainerchecksum fa812150acf519ca0995afeb9b3dde9c1929b945bb964612319f7065c6c303641e2a245397e7271eb777af9f6cfd310ca1ec7f9974c0bf9c329a0f006df2b9dc +srcfiles size=5 + RELOC/source/latex/phfquotetext/phfquotetext.dtx + RELOC/source/latex/phfquotetext/phfquotetext.ins +runfiles size=1 + RELOC/tex/latex/phfquotetext/phfquotetext.sty +catalogue-contact-repository https://github.com/phfaist/phfqitltx +catalogue-ctan /macros/latex/contrib/phfquotetext +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics verbatim +catalogue-version 1.0 + +name phfsvnwatermark +category Package +revision 41870 +shortdesc Watermarks with version control information from SVN +relocated 1 +longdesc This package allows you to add version control information as a +longdesc gray watermark on each page of your document. The SVN info is +longdesc read from keyword tags such as $Id$, $Date$, and $Author$ via +longdesc the svn or svn-multi packages. +containersize 2260 +containerchecksum 38dae3ef3fe183bf5149b91050afd5bc9c934d01332b021ce87e9ea412008bc22d42d25a389e82b02ccc4cc4820a10d821c228c02c4f08fdca89ebde69c6e2d0 +doccontainersize 204092 +doccontainerchecksum 7f35bcb41618c7e14e7e9f8fb289231a8032f7f1cd2e6333982a346c5f8dd24e5733f70c03ddd183d170361b2b3af4115f6fa9b788c4dd2a020020ba525aff18 +docfiles size=54 + RELOC/doc/latex/phfsvnwatermark/Makefile + RELOC/doc/latex/phfsvnwatermark/README.md details="Readme" + RELOC/doc/latex/phfsvnwatermark/phfsvnwatermark.pdf details="Package documentation" + RELOC/doc/latex/phfsvnwatermark/pkg.mk +srccontainersize 6444 +srccontainerchecksum 6c5e113bb45ce6b11768c711bb59743b75bf4b95e9d84c045b59f502f181e80a67be56b3b5153364c29ca5c36f6adb73dac4a5d3051a8dc3ea275a43277732ec +srcfiles size=6 + RELOC/source/latex/phfsvnwatermark/phfsvnwatermark.dtx + RELOC/source/latex/phfsvnwatermark/phfsvnwatermark.ins +runfiles size=2 + RELOC/tex/latex/phfsvnwatermark/phfsvnwatermark.sty +catalogue-contact-repository https://github.com/phfaist/phfqitltx +catalogue-ctan /macros/latex/contrib/phfsvnwatermark +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics watermark version-control doc-mgmt +catalogue-version 1.0 + +name phfthm +category Package +revision 41871 +shortdesc Goodies for theorems and proofs +relocated 1 +longdesc This package provides enhanced theorem and proof environments +longdesc based on the amsthm original versions. It allows for hooks to +longdesc be placed, adds some default goodies and is highly +longdesc customizable. In particular, it can connect theorems to proofs, +longdesc automatically producing text such as "See proof on page XYZ" +longdesc and "Proof of Theorem 4: ...". +containersize 5348 +containerchecksum c6aeab1fef49a56a7ab080945199a4f68186b53bd7fd00e4c3d3babcd3f63f998748635edded858d5904b8dc7604007753bec12fdc8ff6a7656cf1ef26c0ca9e +doccontainersize 376988 +doccontainerchecksum c2439e7a3e7f1b0730b8fc48f933b9754777e7750a58ee6a5985ac458689c2df96d9e74d09c5ade2b0b8dac49e0be43ca60a0769dedc662e151e1dac5bb18cf0 +docfiles size=98 + RELOC/doc/latex/phfthm/Makefile + RELOC/doc/latex/phfthm/README.md details="Readme" + RELOC/doc/latex/phfthm/phfthm.pdf details="Package documentation" + RELOC/doc/latex/phfthm/pkg.mk +srccontainersize 23912 +srccontainerchecksum b189f0320e5b8d1ecbb1bb34972b845d776190ada4ab76e44ade41e21d8f7eb0bfb6bd55a4352aad4d0c2455730b7803384eece70d2030faf9279aef0f70f540 +srcfiles size=26 + RELOC/source/latex/phfthm/phfthm.dtx + RELOC/source/latex/phfthm/phfthm.ins +runfiles size=6 + RELOC/tex/latex/phfthm/phfthm.sty +catalogue-contact-repository https://github.com/phfaist/phfqitltx +catalogue-ctan /macros/latex/contrib/phfthm +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics maths maths-theorem +catalogue-version 1.0 + +name philex +category Package +revision 36396 +shortdesc Cross references for named and numbered environments +relocated 1 +longdesc Philex provides means for creating and cross-referencing named +longdesc or numbered environments. Possible uses would be equations, +longdesc example sentences (as in linguistics or philosophy) or named +longdesc principles. Cross references may refer either to the number, or +longdesc to a short name of the target environment, or to the contents +longdesc of the environment. Philex builds on the facilities of the +longdesc linguex package. +containersize 4424 +containerchecksum 0b6ce5d281836926d6807dda7a8a4eace43a25160b8bdfaaded7ef9838f933db7a7bd4859019555002b662ca01800e64c4f6228427b4f40c9a79e71759aca6e0 +doccontainersize 244388 +doccontainerchecksum ec8eafe3e1b5e7cdeeb2554c3e34036c808f33b4f4bd2e5fb8b2e10e4366f51db02b2bf3dd52e46c92d600cc092f30c4db6cb6f69cc66cafde5c11a53a883839 +docfiles size=69 + RELOC/doc/latex/philex/README details="Readme" + RELOC/doc/latex/philex/philexmanual.pdf details="Package documentation" + RELOC/doc/latex/philex/philexmanual.tex +runfiles size=11 + RELOC/tex/latex/philex/philex.sty +catalogue-ctan /macros/latex/contrib/philex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics label-ref +catalogue-version 1.3 + +name philokalia +category Package +revision 45356 +shortdesc A font to typeset the Philokalia Books +relocated 1 +longdesc The philokalia package has been designed to ease the use of the +longdesc Philokalia-Regular OpenType font with XeLaTeX. The font started +longdesc as a project to digitize the typeface used to typeset the +longdesc Philokalia books. +containersize 76140 +containerchecksum 6a7b76995074ec233d4922de96f727ed031b21abbaf1a423bded6bcd964e8e503d7d3d84d8d4eb1ca42ebd99e1af50a244238f668db245ff4810176abefb0976 +doccontainersize 92820 +doccontainerchecksum 8cefb15592711d19d3fbe5fbbe6efb219ce081dac6d8bfb12ebc57ac807a30aefbaa37f371e70b7141876333ef408ae5fde177add749faf2302b2d7f60a1bf00 +docfiles size=25 + RELOC/doc/xelatex/philokalia/README details="Readme" + RELOC/doc/xelatex/philokalia/philokalia.pdf details="Package documentation" +srccontainersize 6900 +srccontainerchecksum 975d97494ed2fceefd6d7fae5cd7916689087d5f51136398b19d233e88335c373bbd572aeca930e3be212ae30b7d8b34e0070650aac5a9c391793fd6a5c1e394 +srcfiles size=6 + RELOC/source/xelatex/philokalia/philokalia.dtx + RELOC/source/xelatex/philokalia/philokalia.ins +runfiles size=33 + RELOC/fonts/opentype/public/philokalia/Philokalia-Regular.otf + RELOC/tex/xelatex/philokalia/philokalia.sty + RELOC/tex/xelatex/philokalia/tuplk.fd +catalogue-ctan /fonts/philokalia +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl1.3c +catalogue-topics font-greek font-supp +catalogue-version 1.2 + +name philosophersimprint +category Package +revision 41788 +shortdesc Typesetting articles for "Philosophers' Imprint" +relocated 1 +longdesc In its mission statement we read "Philosophers' Imprint is a +longdesc refereed series of original papers in philosophy, edited by +longdesc philosophy faculty at the University of Michigan, with the +longdesc advice of an international Board of Editors, and published on +longdesc the World Wide Web by the University of Michigan Digital +longdesc Library. The mission of the Imprint is to promote a future in +longdesc which funds currently spent on journal subscriptions are +longdesc redirected to the dissemination of scholarship for free, via +longdesc the Internet". The class helps authors to typeset their own +longdesc articles in "Web-ready" format. No assumption is made about the +longdesc fonts available to the author: the class itself is restricted +longdesc to freely available and freely distributed fonts, only. +containersize 4616 +containerchecksum 05f9639dbc34d0fd653f2609c581df2e50825cd61af7eaca55f03fddee2b0bf1c0c6bb3258fe10265cdadf0d8371d351aa143327a07f3739defb4ca3ca9b4f16 +doccontainersize 448944 +doccontainerchecksum 45bf6648cf92ee58d35847845094614884ad300d5ae745a57bc036d72bf7a1cf8dc7596daab8c606266c717b0114727072298f91b61e92c40dd180bfeb678a3b +docfiles size=117 + RELOC/doc/latex/philosophersimprint/Makefile + RELOC/doc/latex/philosophersimprint/README details="Readme" + RELOC/doc/latex/philosophersimprint/philosophersimprint.bib + RELOC/doc/latex/philosophersimprint/philosophersimprint.pdf details="Package documentation" + RELOC/doc/latex/philosophersimprint/sample.pdf details="Sample of usage" + RELOC/doc/latex/philosophersimprint/sample.tex +srccontainersize 12816 +srccontainerchecksum 9522941d5b9fdeb2eec1f3f91bdb6649da45ba930ccf11599e532352170279f67e40779b9af5d46a4dece5b14ca2ef421280ea31eec24b686db6a9a4f2709a93 +srcfiles size=13 + RELOC/source/latex/philosophersimprint/philosophersimprint.dtx + RELOC/source/latex/philosophersimprint/philosophersimprint.ins +runfiles size=4 + RELOC/tex/latex/philosophersimprint/philosophersimprint.cls +catalogue-ctan /macros/latex/contrib/philosophersimprint +catalogue-date 2016-08-01 21:55:51 +0200 +catalogue-license lppl +catalogue-topics journalpub +catalogue-version 1.4 + +name phonenumbers +category Package +revision 48355 +shortdesc Typesetting telephone numbers with LaTeX +relocated 1 +longdesc The phonenumbers package makes it possible to typeset telephone +longdesc numbers according to different national conventions. German, +longdesc Austrian, French, British and North American phone numbers are +longdesc supported. Phone numbers from other countries are supported +longdesc rudimentarily. The user can select from various formatting +longdesc options, including the additional output of the country calling +longdesc code. The package is able to check if a phone number is valid +longdesc according to the national rules. It also allows to link phone +longdesc numbers using the hyperref package. +containersize 69960 +containerchecksum a005f7bee8b114a47f4e4b890375715b787dece4b206cfe03e8067057fd39a34b4f1da3691d61e46359252b463d352f7180e87f5523fabb0c73e0918ebdeceb4 +doccontainersize 1113632 +doccontainerchecksum 6799ab8049e2cae39ae946c5683b9f5083cb7a1b47a5a6e769613c6fa7a035012e534635bfd2f953b61f2e47abfcc87ac1b2adeada29c61c8d6b9f20c219a910 +docfiles size=952 + RELOC/doc/latex/phonenumbers/Literatur.bib + RELOC/doc/latex/phonenumbers/README details="Readme" + RELOC/doc/latex/phonenumbers/phonenumbers-de.pdf details="German package documentation" language="de" + RELOC/doc/latex/phonenumbers/phonenumbers-de.tex + RELOC/doc/latex/phonenumbers/phonenumbers-en.pdf details="English package documentation" language="en-gb" + RELOC/doc/latex/phonenumbers/phonenumbers-en.tex +runfiles size=162 + RELOC/tex/latex/phonenumbers/phn-AT_Ortsnamen.tex + RELOC/tex/latex/phonenumbers/phn-AT_Vorwahlen.tex + RELOC/tex/latex/phonenumbers/phn-DE_Ortsnamen.tex + RELOC/tex/latex/phonenumbers/phn-DE_Vorwahlen.tex + RELOC/tex/latex/phonenumbers/phn-FR_Ortsnamen.tex + RELOC/tex/latex/phonenumbers/phn-FR_Vorwahlen.tex + RELOC/tex/latex/phonenumbers/phn-Landeskennzahlen.tex + RELOC/tex/latex/phonenumbers/phn-UK_Ortsnamen.tex + RELOC/tex/latex/phonenumbers/phn-UK_Vorwahlen.tex + RELOC/tex/latex/phonenumbers/phn-US_Ortsnamen.tex + RELOC/tex/latex/phonenumbers/phn-US_Vorwahlen.tex + RELOC/tex/latex/phonenumbers/phonenumbers.sty +catalogue-ctan /macros/latex/contrib/phonenumbers +catalogue-date 2018-08-05 12:59:26 +0200 +catalogue-license lppl1.3 +catalogue-topics addr-list numbers +catalogue-version 2.1 + +name phonetic +category Package +revision 21871 +shortdesc Metafont Phonetic fonts, based on Computer Modern +relocated 1 +longdesc The fonts are based on Computer Modern, and specified in +longdesc Metafont. Macros for the fonts' use are provided, both for +longdesc LaTeX 2.09 and for current LaTeX. +containersize 23404 +containerchecksum fbd137931a2571d542b8cb66f8b613a57925277112c2160e21298791a65d91f4d1a6d3d8be5d6faba9abe033ded174d9d301f6ff1784dda3c1a9530f5f7a0a40 +doccontainersize 47260 +doccontainerchecksum 710233d18f904db9eb8c235070681b9789177b375b538c743424252e6434dfc3a16fb4c6c1e19617d939a31eb75b4823bdf30e633bc240b7b24650cb411f94e6 +docfiles size=26 + RELOC/doc/fonts/phonetic/Doc/209/phonetic-table.tex + RELOC/doc/fonts/phonetic/Doc/209/phonetic.sty + RELOC/doc/fonts/phonetic/Doc/README details="Readme" + RELOC/doc/fonts/phonetic/README details="Readme" + RELOC/doc/fonts/phonetic/makefile + RELOC/doc/fonts/phonetic/phonetic-table.pdf + RELOC/doc/fonts/phonetic/phonetic-table.tex +runfiles size=55 + RELOC/fonts/source/public/phonetic/cmph10.mf + RELOC/fonts/source/public/phonetic/cmph5.mf + RELOC/fonts/source/public/phonetic/cmph6.mf + RELOC/fonts/source/public/phonetic/cmph7.mf + RELOC/fonts/source/public/phonetic/cmph8.mf + RELOC/fonts/source/public/phonetic/cmph9.mf + RELOC/fonts/source/public/phonetic/cmphb10.mf + RELOC/fonts/source/public/phonetic/cmphi10.mf + RELOC/fonts/source/public/phonetic/cmphi7.mf + RELOC/fonts/source/public/phonetic/cmphi8.mf + RELOC/fonts/source/public/phonetic/cmphi9.mf + RELOC/fonts/source/public/phonetic/local.mf + RELOC/fonts/source/public/phonetic/phochar.mf + RELOC/fonts/source/public/phonetic/phoital.mf + RELOC/fonts/source/public/phonetic/phoitchar.mf + RELOC/fonts/source/public/phonetic/phosym.mf + RELOC/fonts/source/public/phonetic/symchar.mf + RELOC/fonts/tfm/public/phonetic/cmph10.tfm + RELOC/fonts/tfm/public/phonetic/cmph5.tfm + RELOC/fonts/tfm/public/phonetic/cmph6.tfm + RELOC/fonts/tfm/public/phonetic/cmph7.tfm + RELOC/fonts/tfm/public/phonetic/cmph8.tfm + RELOC/fonts/tfm/public/phonetic/cmph9.tfm + RELOC/fonts/tfm/public/phonetic/cmphb10.tfm + RELOC/fonts/tfm/public/phonetic/cmphi10.tfm + RELOC/fonts/tfm/public/phonetic/cmphi7.tfm + RELOC/fonts/tfm/public/phonetic/cmphi8.tfm + RELOC/fonts/tfm/public/phonetic/cmphi9.tfm + RELOC/tex/latex/phonetic/Uphon.fd + RELOC/tex/latex/phonetic/phonetic.sty +catalogue-also tipa +catalogue-ctan /fonts/phonetic +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font font-mf font-specialist phonetic + +name phonrule +category Package +revision 43963 +shortdesc Typeset linear phonological rules +relocated 1 +longdesc The package provides macros for typesetting phonological rules +longdesc like those in 'Sound Pattern of English' (Chomsky and Halle +longdesc 1968). +containersize 1132 +containerchecksum 0465e183077f7daa57d2bbc5f1a76afa72770718d2dc969ebc3078b213738f5ae3919f3ebbee04ae54ff7b8ad6e35630fb22293b5cdac31ee5bf31680433ad15 +doccontainersize 44080 +doccontainerchecksum 80ea19243537e769c49a3411e036c5811b19586fda3878894126a151af4ddff46a554db7bc07f488f692fe9efd0934149c8c94cde75b92c880bfcc28218ae5a1 +docfiles size=14 + RELOC/doc/latex/phonrule/README.md details="Readme" + RELOC/doc/latex/phonrule/phonrule-doc.pdf details="Package documentation" + RELOC/doc/latex/phonrule/phonrule-doc.tex +runfiles size=1 + RELOC/tex/latex/phonrule/phonrule.sty +catalogue-contact-bugs https://github.com/stefanocoretta/phonrule/issues +catalogue-contact-repository https://github.com/stefanocoretta/phonrule +catalogue-ctan /macros/latex/contrib/phonrule +catalogue-date 2017-04-21 12:55:41 +0200 +catalogue-license lppl1 +catalogue-topics phonetic +catalogue-version 1.3.2 + +name photo +category Package +revision 18739 +shortdesc A float environment for photographs +relocated 1 +longdesc This package introduces a new float type called photo which +longdesc works similar to the float types table and figure. Various +longdesc options exist for placing photos, captions, and a +longdesc "photographer" line. In twocolumn documents, a possibility +longdesc exists to generate double-column floats automatically if the +longdesc photo does not fit into one column. Photos do not have to be +longdesc placed as floats, they can also be placed as boxes, with +longdesc captions and photographer line still being available. +containersize 2756 +containerchecksum 11727df46b85be20802588a6c5743a9ae70a89ea73b5f16b8a4a3d3f1d3a9ab3194f56f0ef9d79947b14fe3f6b3e05cbd291dad8346cdb128b4d1c8c22d50bf5 +doccontainersize 142148 +doccontainerchecksum 037466dff8edee9f6218b1fddfe579b2f82491746e22886ea5f8496b5f564084d81e35ed549ddfc42855c850913cf8c587806d71b7a531ec3ea3056962c54e48 +docfiles size=42 + RELOC/doc/latex/photo/Makefile + RELOC/doc/latex/photo/photo.pdf details="Package documentation" + RELOC/doc/latex/photo/photo_test.tex +srccontainersize 8908 +srccontainerchecksum 644303a7eda6cbe50db8cf871ffd642dde5115d4f1a72edde65e9218337faaa63ffebc94bca96da28a4a2d7568ae0ea124f1aa12fe5402cfc1c57619e86746ab +srcfiles size=9 + RELOC/source/latex/photo/photo.drv + RELOC/source/latex/photo/photo.dtx + RELOC/source/latex/photo/photo.ins +runfiles size=2 + RELOC/tex/latex/photo/photo.sty +catalogue-ctan /macros/latex/contrib/photo +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics float + +name physics +category Package +revision 28590 +shortdesc Macros supporting the Mathematics of Physics +relocated 1 +longdesc The package defines simple and flexible macros for typesetting +longdesc equations in the languages of vector calculus and linear +longdesc algebra, using Dirac notation. +containersize 5912 +containerchecksum e394a7f8eda4583cf196dccbd9d52122d0ee630a411630f11d432018c5e9696a9b3feacfa2f881d82090df165a73ee0fa610ad86422123a9e1502ccf4b695be0 +doccontainersize 232876 +doccontainerchecksum 40a85407502116954024d51361dcbfdf36cac07aae382ada1f96d413f9b838ea5a11d7014722b5641a75b6c9bb8a5c6c134c8c0d424788f47f45fc80b277b3ca +docfiles size=69 + RELOC/doc/latex/physics/README details="Readme" + RELOC/doc/latex/physics/physics.pdf details="Package documentation" + RELOC/doc/latex/physics/physics.tex +runfiles size=8 + RELOC/tex/latex/physics/physics.sty +catalogue-ctan /macros/latex/contrib/physics +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics physics maths +catalogue-version 1.3 + +name piano +category Package +revision 21574 +shortdesc Typeset a basic 2-octave piano diagram +relocated 1 +longdesc This package adds the \keyboard[1][2]..[7] command to your +longdesc project. When used, it draws a small 2 octaves piano keyboard +longdesc on your document, with up to 7 keys highlighted. Keys go : Co, +longdesc Cso, Do, Dso, Eo, Fo, Fso, Go, Gso, Ao, Aso, Bo, Ct, Cst, Dt, +longdesc Dst, Et, Ft, Fst, Gt, Gst, At, Ast and Bt. (A working example +longdesc is included in the README file.) +containersize 1884 +containerchecksum 49c3b29f48211ac6ca04ef8f9df74cd3f4673a84e9d84c2a9b06bbc958abd640116673abd751be40adb470907bcf65a42756c22996f0adc4e2c0dbf3d6afeca4 +doccontainersize 604 +doccontainerchecksum 50609a17b51de85d5f9df4da91c0c1c421a86ff222d08268fd0145e248eea740c68445724fee425a2adbdab85e0cf5b4a9bb4ee5cf3bfcb4a3d5cf4f1868df47 +docfiles size=1 + RELOC/doc/latex/piano/README details="Readme" +runfiles size=4 + RELOC/tex/latex/piano/piano.sty +catalogue-ctan /macros/latex/contrib/piano +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics music +catalogue-version 1.0 + +name picinpar +category Package +revision 20374 +shortdesc Insert pictures into paragraphs +relocated 1 +longdesc A legacy package for creating 'windows' in paragraphs, for +longdesc inserting graphics, etc. (including "dropped capitals"). Users +longdesc should note that Piet van Oostrum (in a published review of +longdesc packages of this sort) does not recommend this package; Picins +longdesc is recommended instead. +containersize 5212 +containerchecksum 9706ae1d10df99327d4778ec538ffc9aec465a04382b0732005d25660f452dda539b736be50a271c9be623a823be113696471da6c2d482dbf8a269af7c1143c2 +doccontainersize 393272 +doccontainerchecksum 73b28f87550924b208b48ca9a066861e02b1a8360151ad89609e6d8c36a772192f174befd87fb02b65e92370fec332fca5d67a2e84e97c7549b86825384dcf34 +docfiles size=100 + RELOC/doc/latex/picinpar/picinpar-de.pdf details="Package usage example" language="de" + RELOC/doc/latex/picinpar/picinpar-de.tex + RELOC/doc/latex/picinpar/picinpar-en.pdf details="Package usage notes" language="en" + RELOC/doc/latex/picinpar/picinpar-en.tex +runfiles size=4 + RELOC/tex/latex/picinpar/picinpar.sty +catalogue-ctan /macros/latex209/contrib/picinpar +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics text-flow +catalogue-version 1.2a + +name pict2e +category Package +revision 39591 +shortdesc New implementation of picture commands +relocated 1 +longdesc This package was described in the 2nd edition of 'LaTeX: A +longdesc Document Preparation System', but the LaTeX project team +longdesc declined to produce the package. For a long time, LaTeX has +longdesc included a 'pict2e package' that merely produced an apologetic +longdesc error message. The new package extends the existing LaTeX +longdesc picture environment, using the familiar technique (cf. the +longdesc graphics and color packages) of driver files (at present, +longdesc drivers for PostScript output from LaTeX, and for use with +longdesc pdfLaTeX are available). The package documentation has a fair +longdesc number of examples of use, showing where things are improved by +longdesc comparison with the LaTeX picture environment. +containersize 7628 +containerchecksum 67d5f36781dbd780460f126d3d94f319cdc712be1a8c5421ff7e9a2a816816b93285a7305be7d37ee347c7cc285c19dd7e3cf2b9e2d19739ad669eb506280ecb +doccontainersize 742740 +doccontainerchecksum d9d9f986b786bcb1c6d137575bee68d223fe24e813414e1e18920768df9762b8ac751cd77dcfb0bd6000b7df7d1d3a4f5787f0dd9bc7da1573a78768c8083324 +docfiles size=196 + RELOC/doc/latex/pict2e/README.md details="Readme" + RELOC/doc/latex/pict2e/manifest.txt + RELOC/doc/latex/pict2e/p2e-drivers.pdf details="Documentation of graphics drivers" + RELOC/doc/latex/pict2e/pict2e.pdf details="Package documentation" +srccontainersize 32844 +srccontainerchecksum aff55d157b8e2087ffb17a738bc43b16dfb5c46e7d7b94d9c3f4bcde6a2ff3ccb9e1c315a011753803e4d1e7c1946068e98407ffdcd3804c3eccded0f1da9872 +srcfiles size=39 + RELOC/source/latex/pict2e/p2e-drivers.dtx + RELOC/source/latex/pict2e/pict2e.dtx + RELOC/source/latex/pict2e/pict2e.ins +runfiles size=18 + RELOC/tex/latex/pict2e/p2e-dvipdfm.def + RELOC/tex/latex/pict2e/p2e-dvipdfmx.def + RELOC/tex/latex/pict2e/p2e-dvips.def + RELOC/tex/latex/pict2e/p2e-luatex.def + RELOC/tex/latex/pict2e/p2e-pctex32.def + RELOC/tex/latex/pict2e/p2e-pctexps.def + RELOC/tex/latex/pict2e/p2e-pdftex.def + RELOC/tex/latex/pict2e/p2e-textures.def + RELOC/tex/latex/pict2e/p2e-vtex.def + RELOC/tex/latex/pict2e/p2e-xetex.def + RELOC/tex/latex/pict2e/pict2e.cfg + RELOC/tex/latex/pict2e/pict2e.sty +catalogue-also curve2e xpicture +catalogue-ctan /macros/latex/contrib/pict2e +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics graphics-in-tex +catalogue-version 0.3b + +name pictex +category Package +revision 21943 +shortdesc Picture drawing macros for TeX and LaTeX +relocated 1 +longdesc PicTeX is an early, and very comprehensive drawing package, +longdesc that mostly draws by placing myriads of small dots to make up +longdesc pictures. It has a tendency to run out of space, most +longdesc especially of allowable dimensions registers; packages m-pictex +longdesc and pictexwd deal with the register problem, in different ways. +longdesc Note that full documentation may be bought via the PC-TeX site, +longdesc though a command summary is available as free software. +longdesc Alternatively, a front-end package such as mathsPiC, which +longdesc covers all of PicTeX and has a complete and free manual, could +longdesc be used. +containersize 41440 +containerchecksum ed91f0518668007aab7b9222dd08c7f489caaf084ef915f88d435128012b2b4eb9ba610168154f07bd0d084a34909cefb1dc0c1cfb2186982b4f08f9f6412f7a +doccontainersize 1420 +doccontainerchecksum 61ed0f632d7f12fca4631b13714994b2cee8e05176262dd8cab672d4f8f7e65a36e0d927e3b803991818d9d2976d5794d48a46ebbbaf8bc8aad99aadec7d3fcb +docfiles size=4 + RELOC/doc/generic/pictex/00index + RELOC/doc/generic/pictex/README details="Readme" + RELOC/doc/generic/pictex/pictexzusatz.txt + RELOC/doc/generic/pictex/readme.errorbars +runfiles size=81 + RELOC/tex/generic/pictex/errorbars.tex + RELOC/tex/generic/pictex/latexpicobjs.tex + RELOC/tex/generic/pictex/piccorr.sty + RELOC/tex/generic/pictex/picmore.tex + RELOC/tex/generic/pictex/pictex.sty + RELOC/tex/generic/pictex/pictex.tex + RELOC/tex/generic/pictex/pictexwd.sty + RELOC/tex/generic/pictex/pictexwd.tex + RELOC/tex/generic/pictex/pointers.tex + RELOC/tex/generic/pictex/postpictex.tex + RELOC/tex/generic/pictex/prepictex.tex + RELOC/tex/generic/pictex/texpictex.tex + RELOC/tex/generic/pictex/tree.sty +catalogue-also qfig epic pictex2 pictexsum +catalogue-ctan /graphics/pictex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1 +catalogue-topics graphics-in-tex +catalogue-version 1.1 + +name pictex2 +category Package +revision 15878 +shortdesc Adds relative coordinates and improves the \plot command +relocated 1 +longdesc Adds two user commands to standard PiCTeX. One command uses +longdesc relative coordinates, thus eliminating the need to calculate +longdesc the coordinate of every point manually as in standard PiCTeX. +longdesc The other command modifies \plot to use a rule instead of dots +longdesc if the line segment is horizontal or vertical. +containersize 3748 +containerchecksum 26b608cc8409c62f4c0130cc032f2ca5929886fafb9d22d93aa23af5a6dee62bbde83926bccbcb4fbd3d86a43810d751eb43a2a94be9528e1639c59fb61e5446 +runfiles size=4 + RELOC/tex/latex/pictex2/pictex2.sty +catalogue-ctan /macros/latex/contrib/pictex2/pictex2.sty +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-in-tex + +name pictexsum +category Package +revision 24965 +shortdesc A summary of PicTeX commands +relocated 1 +longdesc The document summarises the commands of PicTeX. While it is no +longdesc substitute for the PicTeX manual itself (available from +longdesc Personal TeX inc.), the document is a useful aide-memoire for +longdesc those who have read the manual. +containersize 488 +containerchecksum a24861e4b6184084fffa783918db485e5c7cacf7a6528681e7d8d4212287f1f6687604bd4f347e9e34ab7d29867dec2b30c9871a13b9bedae31b5dbb82ba1ed2 +doccontainersize 192368 +doccontainerchecksum 148b7c29cb8189174442b95cd39b0d5fdf9f937a7a44a17314b93cce555cf3db459e21ae2c4eb9098c15551bd7aada2804855d68f9408fdbe974f6c12dd724a2 +docfiles size=59 + RELOC/doc/latex/pictexsum/Makefile + RELOC/doc/latex/pictexsum/README + RELOC/doc/latex/pictexsum/a4mod.sty + RELOC/doc/latex/pictexsum/pictexsum.pdf details="The document itself" + RELOC/doc/latex/pictexsum/pictexsum.tex + RELOC/doc/latex/pictexsum/useful.sty +catalogue-ctan /info/pictex/summary +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics documentation + +name piechartmp +category Package +revision 19440 +shortdesc Draw pie-charts using MetaPost +relocated 1 +longdesc The piechartmp package is an easy way to draw pie-charts with +longdesc MetaPost. The package implements an interface that enables +longdesc users with little MetaPost experience to draw charts. A +longdesc highlight of the package is the possibility of suppressing some +longdesc segments of the chart, thus creating the possibility of several +longdesc charts from the same data. +containersize 7216 +containerchecksum e4ef7bdc43280c4311a6e8abf2719815196fb0ed0a8450501061e0b3b0bb44cd60947d6d623ff753c5ad1384d98219df695865e6459eef02b2b96f00906d023a +doccontainersize 41660 +doccontainerchecksum f74c3c34d37eabc3b5e857a90e8da2c6ffaa3b4a6974c6b1127f898fb727ff18f0f399e9c4ccde8d4d198bece0ea83fbbac37a1ba1d381576166b5a2742113c5 +docfiles size=26 + RELOC/doc/metapost/piechartmp/INSTALL + RELOC/doc/metapost/piechartmp/LEGAL + RELOC/doc/metapost/piechartmp/README details="Readme" + RELOC/doc/metapost/piechartmp/README.TEXLIVE + RELOC/doc/metapost/piechartmp/examples/wec-mfun.mp + RELOC/doc/metapost/piechartmp/examples/wec-mfun.pdf + RELOC/doc/metapost/piechartmp/examples/wec.mp + RELOC/doc/metapost/piechartmp/examples/wec.pdf + RELOC/doc/metapost/piechartmp/examples/worldmap.jpg +runfiles size=7 + RELOC/metapost/piechartmp/piechartmp.mp +catalogue-also piechart +catalogue-ctan /graphics/metapost/contrib/macros/piechartmp +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics genchart +catalogue-version 0.3.0 + +name piff +category Package +revision 21894 +shortdesc Macro tools by Mike Piff +relocated 1 +longdesc The set (now) consists of: a small package for dealing with +longdesc duplicate-numbered output pages; newproof, for defining +longdesc mathematical proof structures; onepagem for omitting the page +longdesc number in one-page documents and time, which prints a 12-hour +longdesc format time. +containersize 2628 +containerchecksum 79b804dfdbb12b8d2e854341062f2a149f9b0e061385a30650c39b877cce72d1af4ad1644d73fb3ca733a171aa61d1b533295818dc10a92eacbce2ca60722de7 +doccontainersize 600376 +doccontainerchecksum ef9d14cf4a38315e4d523082db9baf8d0f89e5963001d12ba7ffe260ca2255a6aa99dc38392a6ceb0fe24e6abb8c77b9343f29300ff5c814c01adfff3321923c +docfiles size=185 + RELOC/doc/latex/piff/README + RELOC/doc/latex/piff/duplicat-doc.pdf + RELOC/doc/latex/piff/duplicat-doc.tex + RELOC/doc/latex/piff/newproof-doc.pdf + RELOC/doc/latex/piff/newproof-doc.tex + RELOC/doc/latex/piff/onepagem-doc.pdf + RELOC/doc/latex/piff/onepagem-doc.tex + RELOC/doc/latex/piff/time-doc.pdf + RELOC/doc/latex/piff/time-doc.tex +runfiles size=4 + RELOC/tex/latex/piff/duplicat.sty + RELOC/tex/latex/piff/newproof.sty + RELOC/tex/latex/piff/onepagem.sty + RELOC/tex/latex/piff/time.sty +catalogue-contact-repository https://github.com/rf-latex/piff +catalogue-contact-support https://github.com/rf-latex/piff/issues +catalogue-ctan /macros/latex/contrib/piff +catalogue-date 2018-09-13 20:11:58 +0200 +catalogue-license pd +catalogue-topics collection + +name pigpen +category Package +revision 15878 +shortdesc A font for the pigpen (or masonic) cipher +relocated 1 +longdesc The Pigpen cipher package provides the font and the necessary +longdesc wrappers (style file, etc.) in order to write Pigpen ciphers, a +longdesc simple substitution cipher. The package provides a font +longdesc (available both as Metafont source, and as an Adobe Type 1 +longdesc file), and macros for its use. +execute addMixedMap pigpen.map +containersize 6824 +containerchecksum 107700bb0c2afd35755589551ca6bbd9a95ee6bec39e51868ea1b5fde4855a0ea2eb92b50105eb6a3490f82ed6f55c33cac25bbd58eeecb57fb80380095b7285 +doccontainersize 49144 +doccontainerchecksum 48c6c4c26e7518f06233ce0da8898c1c722829adfad042c12b8820bb1bde43f25410c41f76c51f4d01035c9d654bf3ae8fc7bb44a4d2c23c52f3336ec7e7d128 +docfiles size=16 + RELOC/doc/latex/pigpen/README details="Readme" + RELOC/doc/latex/pigpen/pigpendoc.pdf details="Package documentation" + RELOC/doc/latex/pigpen/pigpendoc.tex +runfiles size=9 + RELOC/fonts/map/dvips/pigpen/pigpen.map + RELOC/fonts/source/public/pigpen/pigpen.mf + RELOC/fonts/tfm/public/pigpen/pigpen.tfm + RELOC/fonts/type1/public/pigpen/pigpen.pfa + RELOC/tex/latex/pigpen/pigpen.sty + RELOC/tex/latex/pigpen/pigpen.tex +catalogue-ctan /fonts/pigpen +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font font-mf font-type1 +catalogue-version 0.2 + +name pinlabel +category Package +revision 24769 +shortdesc A TeX labelling package +relocated 1 +longdesc Pinlabel is a labelling package for attaching perfectly +longdesc formatted TeX labels to figures and diagrams in both eps and +longdesc pdf formats. It is suitable both for labelling a new diagram +longdesc and for relabelling an existing diagram. The package uses +longdesc coordinates derived from GhostView (or gv) and labels are +longdesc placed with automatic and consistent spacing relative to the +longdesc object labelled. +containersize 11060 +containerchecksum 56ed76be6c634b3c1fd3f83e12304d0d0e078e027754ac7619d680d2072ac7b67c527a4d23dda8feb6496e3808b3414bec65a48d4750d44405fa4574f122880c +doccontainersize 250420 +doccontainerchecksum c56fad48b7cad065196cecdb64e501555d2a8f3ca098f001123215f8e21968cdec2da28f2a68f7e07ee9b1c2d961a82590aa136b15bdc87e9176462cd706b0a2 +docfiles size=97 + RELOC/doc/latex/pinlabel/pinlabdoc.pdf details="Package documentation" + RELOC/doc/latex/pinlabel/src/fig3.pdf + RELOC/doc/latex/pinlabel/src/fig6.pdf + RELOC/doc/latex/pinlabel/src/gtpart.cls + RELOC/doc/latex/pinlabel/src/pinlabdoc.tex + RELOC/doc/latex/pinlabel/src/put.fig + RELOC/doc/latex/pinlabel/src/put.pdf + RELOC/doc/latex/pinlabel/src/put2.fig + RELOC/doc/latex/pinlabel/src/put2.pdf + RELOC/doc/latex/pinlabel/src/screen.pdf +runfiles size=10 + RELOC/tex/latex/pinlabel/pinlabel.sty +catalogue-also psfrag overpic +catalogue-ctan /macros/latex/contrib/pinlabel +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-text +catalogue-version 1.2 + +name pitex +category Package +revision 24731 +shortdesc Documentation macros +relocated 1 +longdesc The bundle provides macros that the author uses when writing +longdesc documentation (for example, that of the texapi and yax +longdesc packages). The tools could be used by anyone, but there is no +longdesc documentation, and the macros are subject to change without +longdesc notice. +containersize 22664 +containerchecksum dcc4280ef914ba66210ce471dc276042070b3246bc95ecb93b3d8af55393f49921a1d5e6851223299831344503dfc77fc2893f4cf1b78351dad40058979c20aa +doccontainersize 110192 +doccontainerchecksum c3765f6acd4a147ffd2c216b1cda58e5e6ac8dc1202b444fe80d0dd69449b01df3eb17069842ef745e76e88371bf71c178d06c5ad2bc85e3427726bb30b74002 +docfiles size=39 + RELOC/doc/plain/pitex/README details="Readme" + RELOC/doc/plain/pitex/foundry-settings.lua + RELOC/doc/plain/pitex/i-pitex.lua + RELOC/doc/plain/pitex/pitex-doc.pdf + RELOC/doc/plain/pitex/pitex-doc.tex + RELOC/doc/plain/pitex/pitex-doc.txt +runfiles size=27 + RELOC/tex/plain/pitex/base.ptxlua + RELOC/tex/plain/pitex/blocks.ptx + RELOC/tex/plain/pitex/files.ptx + RELOC/tex/plain/pitex/fonts.ptx + RELOC/tex/plain/pitex/fonts.ptxlua + RELOC/tex/plain/pitex/inserts.ptx + RELOC/tex/plain/pitex/lua.ptx + RELOC/tex/plain/pitex/output.ptx + RELOC/tex/plain/pitex/pitex.tex + RELOC/tex/plain/pitex/references.ptx + RELOC/tex/plain/pitex/sections.ptx + RELOC/tex/plain/pitex/verbatim.ptx +catalogue-ctan /macros/plain/contrib/pitex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics doc-supp + +name pittetd +category Package +revision 15878 +shortdesc Electronic Theses and Dissertations at Pitt +relocated 1 +longdesc A document class for theses and dissertations. Provides patch +longdesc files that enable pittetd to use files prepared for use with +longdesc the pittdiss or pitthesis classes. The manual provides a +longdesc detailed guide for users who wish to use the class to prepare +longdesc their thesis or dissertation. +containersize 8884 +containerchecksum 5bd78a90b4c7b9cfa8fbfad66e0de79d09762e06d3bb35a7aaa13ef8ba73aacaceafd8d5b5468de8fb59c6f4c76d364af145e101543c7ef2089dc9fe00e5e9db +doccontainersize 317704 +doccontainerchecksum e72d325fbfd3159699621fd703fd539259d1b13ae69d00e771291e156e3ce6cc15a0d7e4d2e74a3ad3492c39c67adfdca5491b68dd6e8ac78ac1213400f091fe +docfiles size=118 + RELOC/doc/latex/pittetd/achicago.pit + RELOC/doc/latex/pittetd/pittdiss.pit + RELOC/doc/latex/pittetd/pittetd.pdf details="Package documentation" + RELOC/doc/latex/pittetd/pitthesis.pit +srccontainersize 38588 +srccontainerchecksum fc1afca13fa1d4b6b0f77dcf693939be3d6423ebf15dc6354b955e1a02ea5655933470de740d0d626d718bd48b5f4dd1ed92263d8524d0ba38b2e4c328bbc135 +srcfiles size=38 + RELOC/source/latex/pittetd/pittetd.dtx + RELOC/source/latex/pittetd/pittetd.ins +runfiles size=12 + RELOC/tex/latex/pittetd/pitetd10.clo + RELOC/tex/latex/pittetd/pitetd11.clo + RELOC/tex/latex/pittetd/pitetd12.clo + RELOC/tex/latex/pittetd/pittetd.cls +catalogue-contact-home http://latexetdsupport.wikidot.com/ +catalogue-ctan /macros/latex/contrib/pittetd +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl +catalogue-topics dissertation +catalogue-version 1.618 + +name pixelart +category Package +revision 46740 +shortdesc A package to draw pixel-art pictures +relocated 1 +longdesc A LaTeX package to draw single-color pixel-art pictures using +longdesc TikZ. +containersize 1588 +containerchecksum 9f9839c0d286262560f24c7bb83603c227addb9d5e969aae8d0d943cf305c25b06f74b3a2a3fcac9e6ab5f2473ea0e11b94283b71ee3794bad21c22212d05e28 +doccontainersize 154092 +doccontainerchecksum 8ac425c6345b95739a4864f89c967170ec121e0bdcc4b1c3aec9b60430ae7c240073439270db1311f9383c139bbc485aa2a39248c4ac5f788b8ce37345e6c65c +docfiles size=45 + RELOC/doc/latex/pixelart/CHANGELOG.md + RELOC/doc/latex/pixelart/LICENSE.txt + RELOC/doc/latex/pixelart/README.md details="Readme" + RELOC/doc/latex/pixelart/pixelart.pdf details="Package documentation" +srccontainersize 6560 +srccontainerchecksum 7e8962f9b1989fe23c62dac7003e0e1bb5ef1ccade7b2e07f761f3cd6c44ebda85758fd2a2b438ce725179772d8520ebaa2037920844000714229b53d6d99ccf +srcfiles size=6 + RELOC/source/latex/pixelart/pixelart.dtx + RELOC/source/latex/pixelart/pixelart.ins +runfiles size=1 + RELOC/tex/latex/pixelart/pixelart.sty +catalogue-contact-bugs https://framagit.org/spalax/pixelart/issues +catalogue-contact-repository https://framagit.org/spalax/pixelart +catalogue-ctan /graphics/pixelart +catalogue-date 2018-02-25 16:42:19 +0100 +catalogue-license lppl1.3 +catalogue-topics graphics +catalogue-version 0.2.0 + +name pkfix +category Package +revision 26032 +shortdesc Replace pk fonts in PostScript with Type 1 fonts +longdesc The perl script pkfix looks for DVIPSBitmapFont comments in +longdesc PostScript files, generated by 'not too old' dvips, and +longdesc replaces them by type 1 versions of the fonts, if possible. +depend pkfix.ARCH +containersize 7572 +containerchecksum b4d374e5b771e131075ec59ef6713c6433cc3cefb6331a933e791c3774a9d54d6c8427d70a4aadb2c6326c3733abdb562ca103f0b6a9dbcafd87856d20b18a24 +doccontainersize 4376 +doccontainerchecksum c6819c63aa4cf7df5879a796e08299f2fa132e1244648d17a7fb0b3c28204b0641e56fe4661887c257ca4f5998786c31b1cae2aa64e3163340f08d02fda4c8d4 +docfiles size=3 + texmf-dist/doc/support/pkfix/README details="Readme" +runfiles size=7 + texmf-dist/scripts/pkfix/pkfix.pl +catalogue-also pkfix-helper +catalogue-ctan /support/pkfix +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl1.3 +catalogue-topics font-util +catalogue-version 1.7 + +name pkfix-helper +category Package +revision 29725 +shortdesc Make PostScript files accessible to pkfix +longdesc Pkfix is a useful utility for replacing resolution-dependent +longdesc bitmapped fonts in a dvips-produced PostScript file with the +longdesc corresponding resolution-independent vector fonts. +longdesc Unfortunately, pkfix needs to parse certain PostScript comments +longdesc that appear only in files produced by dvips versions later than +longdesc 5.58 (ca. 1996); it fails to work on PostScript files produced +longdesc by older versions of dvips. Pkfix-helper is a program that +longdesc attempts to insert newer-dvips comments into an older-dvips +longdesc PostScript file, thereby making the file suitable for +longdesc processing by pkfix. pkfix-helper can sometimes process +longdesc documents fully autonomously but does require the user to +longdesc verify and, if needed, correct its decisions. +depend pkfix-helper.ARCH +containersize 16716 +containerchecksum 4828927668f21f465ab672b92e6e3934e81e60bd9b3bc1f28a65b2c4dd26d2ce244258ac1b7d8846c0bfbb653a2fe009875ddfcc0383b34249e775f675497478 +doccontainersize 640356 +doccontainerchecksum 146bc49beeb779c4815737cffe1bad30c28e7e44409a3e7036ab82c58f6f1b7e0ea3498f1a19cfd312390bcbc31c72d9f61a92501d87690a61cdc7c66c2fd2ae +docfiles size=189 + texmf-dist/doc/man/man1/pkfix-helper.1 + texmf-dist/doc/man/man1/pkfix-helper.man1.pdf + texmf-dist/doc/support/pkfix-helper/README details="Readme" + texmf-dist/doc/support/pkfix-helper/encoding-samples.pdf details="Encoding tables and how to use them" + texmf-dist/doc/support/pkfix-helper/encoding-samples.tex +runfiles size=14 + texmf-dist/scripts/pkfix-helper/pkfix-helper +catalogue-ctan /support/pkfix-helper +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font-util +catalogue-version 1.4 + +name pkfix-helper.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pkfix-helper +containersize 344 +containerchecksum 3909e8f2e4601a5cbb9708480ed6c3c0f86afc5e0521da3c738b7ade6781799e7e0605da0cd104b04eb9163b7e1a5e3168f9c45542e5bbf0b2b4ae2fe9047c5c +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pkfix-helper + +name pkfix-helper.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of pkfix-helper +containersize 344 +containerchecksum dcdef9686b23b3927f74830b529834370c057a71cf948197519763c420aa0a8f192f533479212b3fd3419a1278208fac4d43364175334bf213560de26668a2d5 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pkfix-helper + +name pkfix-helper.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of pkfix-helper +containersize 344 +containerchecksum 6bade14b1be884bb65d5b8bca13fc6fe29c740cba8c2d86049d5ba7ffae13b6879e3d4d26e1509d3c2a0f834ca090f28baf821dc12fd31d3b58b2fefff3c4f72 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pkfix-helper + +name pkfix-helper.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of pkfix-helper +containersize 344 +containerchecksum 2b5fa9f5e73d9f4de4df025f663cc4c6bc445efa18d300a72cdc25e7370b2648037e3da91893cac43440c0bee2d13aa4eb34c7af3a4ccc208919cd1c15905a52 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pkfix-helper + +name pkfix-helper.i386-cygwin +category Package +revision 13717 +shortdesc i386-cygwin files of pkfix-helper +containersize 340 +containerchecksum e911ef06e4ee79b8a1469b4e1b0721026839cad855e4c8f08ba54fe6811a55083194cfd1dce061656dd2d07fc50f587d7a9389cf8e02cf3c2f8a4c59c51d0405 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pkfix-helper + +name pkfix-helper.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of pkfix-helper +containersize 344 +containerchecksum 604409be6536d07e3b03aa9c8c9e0bfe70a284d4e3b6fcdc9706ca3e01c9eda2696819d166c78236e8214e4a3db64e11cdbb8627ac17f6a300b00a48dfb8b0b0 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pkfix-helper + +name pkfix-helper.i386-linux +category Package +revision 13663 +shortdesc i386-linux files of pkfix-helper +containersize 344 +containerchecksum a28c1ef7690242727c902d796a54b53ce5d55c3b9d4bab5f5286d84503288fe52ecc2e2d45ad6de2b4c15f642cfa17b405e07b3bbced5bfa1b79cf5d41949077 +binfiles arch=i386-linux size=1 + bin/i386-linux/pkfix-helper + +name pkfix-helper.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of pkfix-helper +containersize 344 +containerchecksum 12d185c8a341357d2e43ccd9ae183ed2bdc59c695d4a044d7657c1df189a2e4e7c917cd9f110db8ccab33454b54ebb3c1188e79ae1324e965398c8fa00c12694 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pkfix-helper + +name pkfix-helper.i386-solaris +category Package +revision 13898 +shortdesc i386-solaris files of pkfix-helper +containersize 344 +containerchecksum a8864630a9fddd192388f2ce9ecba4336c224fab367dac3fbc298820c10a07adfe75ae248ab5aa346a178faa58543872518c65855eaf582941842101497f07ad +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pkfix-helper + +name pkfix-helper.win32 +category Package +revision 15404 +shortdesc win32 files of pkfix-helper +containersize 692 +containerchecksum 4371bf1b0cc4df3cb4b32b23b81147e77c18a1504cafe5e98b999afb1a1323f310e22e49513771c3a224efb454b329187abb233f22092c4b6b6cef21425ab6db +binfiles arch=win32 size=1 + bin/win32/pkfix-helper.exe + +name pkfix-helper.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of pkfix-helper +containersize 344 +containerchecksum 2761addfbcf9553d9090a27e67730ebb6697b362768cd629d68578802d79a606b6e394085b5a7cecc214926cc0fd7ee9f92c00e508c8e498675385d11d13f461 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pkfix-helper + +name pkfix-helper.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of pkfix-helper +containersize 344 +containerchecksum 24a32fc3f3b5851e677f7e5719f291ac5787a465b09114e68e1b11393e42e0abe4ffc1f02ef696ffb9d514c6162dedbcba008954534f613b3376fd3898b8c3b6 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/pkfix-helper + +name pkfix-helper.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pkfix-helper +containersize 352 +containerchecksum 83a0199228033f24f6e53b58d06424c8e24b7f087075f70bbce709c42eff54c2f0f1dff1f690b82d3857f969956cba88647dafb0df6a3fefec2e4d4b7ac8ff4a +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pkfix-helper + +name pkfix-helper.x86_64-linux +category Package +revision 13777 +shortdesc x86_64-linux files of pkfix-helper +containersize 340 +containerchecksum a48840584b95959684393608861cc69c21ff17eb93550a1e4c9d67eb4990fadbf1b96eacdefd8ef94b1035caf4ecb3401b8ef0b49e69a1377f8a2334f25df203 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pkfix-helper + +name pkfix-helper.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pkfix-helper +containersize 348 +containerchecksum f92cf0974426da5250deeedb1e2f2922a5696026d2fbf1fc1928938b5e1d9f018d6b55a35a4ea6e402f5180aae35210be2fe0d9e881ddd07ffebba0b41d78268 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pkfix-helper + +name pkfix-helper.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of pkfix-helper +containersize 344 +containerchecksum 157d090c072d6de9e29ec26d2dc5a29b3df8e87ba3891bccf54f13981c6703644f317b881ea5e40774370069c702675c02e7cf9d71bb33fcf5112b8bb59b60f3 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pkfix-helper + +name pkfix.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pkfix +containersize 340 +containerchecksum 9d03978808d50600c2c1cbc52f0efad496ca19f2dfbfac4190bb9949e5abca083c5785ea1686715c5efc04721f967032e38865ff619ae82b5366c8d29ec959d3 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pkfix + +name pkfix.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of pkfix +containersize 340 +containerchecksum c15418cea90b6d301943c712a456fcab1b75bbbcc06bffefc7bfd686d054ab45d6597fbb7977681cf0d804935a446b4e51c0b4f1137287859e012dae0fd1ee0b +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pkfix + +name pkfix.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of pkfix +containersize 336 +containerchecksum a7ce5042db56be7ee5a6576364d7e418d8e1c434dfdfdfe640d5d7371311a67ec8788889fcbea0433488fa49104035180edc22aeeb42874e06123984da6ce1ec +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pkfix + +name pkfix.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of pkfix +containersize 340 +containerchecksum a286f9e981bcab87a8061a3fa89edab974ad8fefada1270e30787dc656d5311fbf5e14d17c61ce7ed3a1e831035c867fab1d13d0ec2e3019c06827b2f4e91044 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pkfix + +name pkfix.i386-cygwin +category Package +revision 13364 +shortdesc i386-cygwin files of pkfix +containersize 336 +containerchecksum f9332165c66122ce9baeb03287a929efc9f16ddee166d263717d281e66192044cb61b7ed23c1496391017ecefa8d91f88f600a0137ff1ee1920c25f1e3a1a3b2 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pkfix + +name pkfix.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of pkfix +containersize 340 +containerchecksum 6b8ec6bd1694a4a2c93d6a651dbf20c65b97aa1be9f9001845ee2c10ce66620bfb1c9ab143eba6a5de1dc4561eb1efa3ae52cad3b19bf1bf51df87b0142d683f +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pkfix + +name pkfix.i386-linux +category Package +revision 13364 +shortdesc i386-linux files of pkfix +containersize 340 +containerchecksum f9d6561b1462658003ba47922e60c4d47ee4e70b2a9d4ec6e81d6892509732ebbc4fab85c05b95d9132cff8f267fa3337fd50c95ae46b0b4db9bc93d6aff2c07 +binfiles arch=i386-linux size=1 + bin/i386-linux/pkfix + +name pkfix.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of pkfix +containersize 336 +containerchecksum 09f75d15e29eb3f3fc0668c8b44b08cfb80c6cc5c16bc9b961b0e4acc6d5202232cfceadaea5e3beaeb4fc56615773226b18c28f73af7fba613e34367437b383 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pkfix + +name pkfix.i386-solaris +category Package +revision 13364 +shortdesc i386-solaris files of pkfix +containersize 340 +containerchecksum bb88f5a0991b2c81b1a9fc2a1e96618c68f46612d08292fc4039aa0e22c40ec24a1694ab7c05e30eecb41c8d1cd94d2d903e648b3196af10e5efaa0f484b0887 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pkfix + +name pkfix.win32 +category Package +revision 15404 +shortdesc win32 files of pkfix +containersize 680 +containerchecksum 138b312b3ba034455b6e43a9c0b11206d3def9e6c36b3f65a96ea78f2a1ae7b154460a8e3d44b7adebb427f415c79f47f5805261cb887cdf5c42f4d55d2a1279 +binfiles arch=win32 size=1 + bin/win32/pkfix.exe + +name pkfix.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of pkfix +containersize 340 +containerchecksum 7172e512108cf747f51c007c69a02215cebe2c1f2b23890fbee9c17f8518be0bf05f95871d630245ce2a471cbff12151ab13c561293464776f12769a78385a2f +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pkfix + +name pkfix.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of pkfix +containersize 340 +containerchecksum 2bad19609a56f879ab86dde9080235276bfbd5469d330cdb578d016e7526a6e162c3d908597049d13794d89a265d644a87cebc71a7b9d09d79f56d0564e58cd0 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/pkfix + +name pkfix.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pkfix +containersize 348 +containerchecksum 147af4be15e9d986a848c96101063f0e9b9bb66b87f203f4222cbd01e9d9ec4d7fd94bf1460ae1bf1b672b0dd218d8fda6e62ce49d68edbd4998fcfc9d22ac37 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pkfix + +name pkfix.x86_64-linux +category Package +revision 13364 +shortdesc x86_64-linux files of pkfix +containersize 336 +containerchecksum b75340c58d0033e9f0bd42a737c851db315411b4b392759c630b3dd6670e8bb083b040c5eee156beae26abc9e3ff9fd23867f7c1a6e59999b265d3b26ee6ebf4 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pkfix + +name pkfix.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pkfix +containersize 344 +containerchecksum b790ed292a1c2c9021be6fb12f60cfd2584bb4b862707ad6ccdccfa33b99c01bf23322fc1b8aa434a35e8cd66492463116adfc07c1fac34e106260520e973bc1 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pkfix + +name pkfix.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of pkfix +containersize 340 +containerchecksum 146a0891f1ec90579e45ca8ba0c1e18514d8e656501996e7e76c3adc444cd89fdb902663c04403eb3c624de919911c3c969f238d5ffe34d7ded257378851bd66 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pkfix + +name pkgloader +category Package +revision 47486 +shortdesc Manage the options and loading order of other packages +relocated 1 +longdesc The package seeks to address the frustration caused by package +longdesc conflicts. It is in an early stage of its development, and +longdesc should probably not be used as a matter of course; however the +longdesc author welcomes feedback via the home page link given in this +longdesc catalogue entry. Nevertheless, the author urges users to try +longdesc the package and to report issues (or whatever) via the +longdesc package's repository. To use pkgloader you need, apart from +longdesc packages installed by default, the lt3graph package. +containersize 10336 +containerchecksum 2b9af06a79f484ce948b98d8ac09f3327a64e2299770ae6746d9762fc6b339d68aa3ad2abc5e67dc385bf4675cf406f170ef706fc101e87f6b58c839b6d3a3e2 +doccontainersize 475212 +doccontainerchecksum 231038d0af3e7293cec5b5e3a9835b1ddfcb60d5c8006009998e5a04638e0ff818ed36abcb2326a56149af0884297059577a3437e9bb144264cf42feed055cb6 +docfiles size=125 + RELOC/doc/latex/pkgloader/README details="Readme" + RELOC/doc/latex/pkgloader/pkgloader-packagedoc.cls + RELOC/doc/latex/pkgloader/pkgloader.pdf details="Package documentation" + RELOC/doc/latex/pkgloader/pkgloader.tex +runfiles size=19 + RELOC/tex/latex/pkgloader/pkgloader-cls-pkg.sty + RELOC/tex/latex/pkgloader/pkgloader-dry.sty + RELOC/tex/latex/pkgloader/pkgloader-early.sty + RELOC/tex/latex/pkgloader/pkgloader-error.sty + RELOC/tex/latex/pkgloader/pkgloader-false.sty + RELOC/tex/latex/pkgloader/pkgloader-late.sty + RELOC/tex/latex/pkgloader/pkgloader-recommended.sty + RELOC/tex/latex/pkgloader/pkgloader-true.sty + RELOC/tex/latex/pkgloader/pkgloader.sty +catalogue-contact-bugs https://github.com/mhelvens/latex-pkgloader/issues +catalogue-contact-repository https://github.com/mhelvens/latex-pkgloader +catalogue-ctan /macros/latex/contrib/pkgloader +catalogue-date 2018-04-29 18:41:15 +0200 +catalogue-license lppl1.3 +catalogue-topics debug-supp expl3 +catalogue-version 0.7.0 + +name pkuthss +category Package +revision 48124 +shortdesc LaTeX template for dissertations in Peking University +relocated 1 +longdesc The package provides a simple, clear and flexible LaTeX +longdesc template for dissertations in Peking University. +containersize 16112 +containerchecksum 3714a72dce39b7f72c4bdd8355d077822a41c332682e4e6b09bc81f16a61cf5017315428e942e26a36f8bff79a818b9e35b0674e01412f7c29f1bc94258d4636 +doccontainersize 509372 +doccontainerchecksum 7077cebfe115ef19f1d0b1a333babe00f75b47c878d5c316bce75a80b75a53ee19814baa506b7587d18216d928a25f2e8722f244ac2ef5d32d7a7375d76be0e8 +docfiles size=165 + RELOC/doc/latex/pkuthss/example.pdf + RELOC/doc/latex/pkuthss/example/Make.bat + RELOC/doc/latex/pkuthss/example/Makefile + RELOC/doc/latex/pkuthss/example/chap/abs.tex + RELOC/doc/latex/pkuthss/example/chap/ack.tex + RELOC/doc/latex/pkuthss/example/chap/chap1.tex + RELOC/doc/latex/pkuthss/example/chap/chap2.tex + RELOC/doc/latex/pkuthss/example/chap/chap3.tex + RELOC/doc/latex/pkuthss/example/chap/copy.tex + RELOC/doc/latex/pkuthss/example/chap/encl1.tex + RELOC/doc/latex/pkuthss/example/chap/origin.tex + RELOC/doc/latex/pkuthss/example/ctex-fontset-pkuthss.def + RELOC/doc/latex/pkuthss/example/ctexopts.cfg + RELOC/doc/latex/pkuthss/example/spine.tex + RELOC/doc/latex/pkuthss/example/thesis.bib + RELOC/doc/latex/pkuthss/example/thesis.tex + RELOC/doc/latex/pkuthss/readme.pdf details="Package documentation" language="zh" + RELOC/doc/latex/pkuthss/readme/ChangeLog-upto-1.3.txt + RELOC/doc/latex/pkuthss/readme/ChangeLog.txt + RELOC/doc/latex/pkuthss/readme/Makefile + RELOC/doc/latex/pkuthss/readme/chap/origin.tex + RELOC/doc/latex/pkuthss/readme/chap/pkuthss-abs.tex + RELOC/doc/latex/pkuthss/readme/chap/pkuthss-ack.tex + RELOC/doc/latex/pkuthss/readme/chap/pkuthss-chap1.tex + RELOC/doc/latex/pkuthss/readme/chap/pkuthss-chap2.tex + RELOC/doc/latex/pkuthss/readme/chap/pkuthss-chap3.tex + RELOC/doc/latex/pkuthss/readme/chap/pkuthss-concl.tex + RELOC/doc/latex/pkuthss/readme/chap/pkuthss-copy.tex + RELOC/doc/latex/pkuthss/readme/chap/pkuthss-encl1.tex + RELOC/doc/latex/pkuthss/readme/chap/pkuthss-intro.tex + RELOC/doc/latex/pkuthss/readme/pkuthss-english.patch + RELOC/doc/latex/pkuthss/readme/pkuthss.bib + RELOC/doc/latex/pkuthss/readme/pkuthss.tex +runfiles size=12 + RELOC/tex/latex/pkuthss/pkulogo.eps + RELOC/tex/latex/pkuthss/pkulogo.pdf + RELOC/tex/latex/pkuthss/pkuthss-gbk.def + RELOC/tex/latex/pkuthss/pkuthss-utf8.def + RELOC/tex/latex/pkuthss/pkuthss.cls + RELOC/tex/latex/pkuthss/pkuword.eps + RELOC/tex/latex/pkuthss/pkuword.pdf +catalogue-contact-repository https://gitlab.com/CasperVector/pkuthss +catalogue-ctan /macros/latex/contrib/pkuthss +catalogue-date 2018-07-02 09:18:23 +0200 +catalogue-license other-free +catalogue-topics dissertation class chinese +catalogue-version 1.8.0 + +name pl +category Package +revision 36012 +catalogue pl-mf +shortdesc Polish extension of Computer Modern fonts +relocated 1 +longdesc The Polish extension of the Computer Modern fonts (compatible +longdesc with CM itself) for use with Polish TeX formats. The fonts were +longdesc originally a part of the MeX distribution (and they are still +longdesc available that way). +execute addMixedMap plother.map +execute addMixedMap pltext.map +containersize 1930352 +containerchecksum 8647d7f075ff8c4559c1549b0e1075790b3fc2890b55f2d8612ea71b385b9a90b25a1827fd99b823ed945c801e1dd1773b28be3fd9b8e9744048fc370178e599 +doccontainersize 25044 +doccontainerchecksum f9e53f7d006b671d788ee888432e62a98704ac5ec964ff6b65704a2ac9afd056f1de366c4ae60460de3c112fd9267e8ac8605543ab7d8cef345d4603c93070d6 +docfiles size=22 + RELOC/doc/fonts/pl/README-T1.ENG + RELOC/doc/fonts/pl/README-T1.POL + RELOC/doc/fonts/pl/README.ENG + RELOC/doc/fonts/pl/README.POL + RELOC/doc/fonts/pl/plsample.tex +runfiles size=1109 + RELOC/dvips/pl/config.pl + RELOC/fonts/afm/public/pl/plb10.afm + RELOC/fonts/afm/public/pl/plbsy10.afm + RELOC/fonts/afm/public/pl/plbx10.afm + RELOC/fonts/afm/public/pl/plbx12.afm + RELOC/fonts/afm/public/pl/plbx5.afm + RELOC/fonts/afm/public/pl/plbx6.afm + RELOC/fonts/afm/public/pl/plbx7.afm + RELOC/fonts/afm/public/pl/plbx8.afm + RELOC/fonts/afm/public/pl/plbx9.afm + RELOC/fonts/afm/public/pl/plbxsl10.afm + RELOC/fonts/afm/public/pl/plbxti10.afm + RELOC/fonts/afm/public/pl/plcsc10.afm + RELOC/fonts/afm/public/pl/pldunh10.afm + RELOC/fonts/afm/public/pl/plex10.afm + RELOC/fonts/afm/public/pl/plex9.afm + RELOC/fonts/afm/public/pl/plff10.afm + RELOC/fonts/afm/public/pl/plfi10.afm + RELOC/fonts/afm/public/pl/plfib8.afm + RELOC/fonts/afm/public/pl/plinch.afm + RELOC/fonts/afm/public/pl/plitt10.afm + RELOC/fonts/afm/public/pl/plmi10.afm + RELOC/fonts/afm/public/pl/plmi12.afm + RELOC/fonts/afm/public/pl/plmi5.afm + RELOC/fonts/afm/public/pl/plmi6.afm + RELOC/fonts/afm/public/pl/plmi7.afm + RELOC/fonts/afm/public/pl/plmi8.afm + RELOC/fonts/afm/public/pl/plmi9.afm + RELOC/fonts/afm/public/pl/plmib10.afm + RELOC/fonts/afm/public/pl/plr10.afm + RELOC/fonts/afm/public/pl/plr12.afm + RELOC/fonts/afm/public/pl/plr17.afm + RELOC/fonts/afm/public/pl/plr5.afm + RELOC/fonts/afm/public/pl/plr6.afm + RELOC/fonts/afm/public/pl/plr7.afm + RELOC/fonts/afm/public/pl/plr8.afm + RELOC/fonts/afm/public/pl/plr9.afm + RELOC/fonts/afm/public/pl/plsl10.afm + RELOC/fonts/afm/public/pl/plsl12.afm + RELOC/fonts/afm/public/pl/plsl8.afm + RELOC/fonts/afm/public/pl/plsl9.afm + RELOC/fonts/afm/public/pl/plsltt10.afm + RELOC/fonts/afm/public/pl/plss10.afm + RELOC/fonts/afm/public/pl/plss12.afm + RELOC/fonts/afm/public/pl/plss17.afm + RELOC/fonts/afm/public/pl/plss8.afm + RELOC/fonts/afm/public/pl/plss9.afm + RELOC/fonts/afm/public/pl/plssbi10.afm + RELOC/fonts/afm/public/pl/plssbx10.afm + RELOC/fonts/afm/public/pl/plssdc10.afm + RELOC/fonts/afm/public/pl/plssi10.afm + RELOC/fonts/afm/public/pl/plssi12.afm + RELOC/fonts/afm/public/pl/plssi17.afm + RELOC/fonts/afm/public/pl/plssi8.afm + RELOC/fonts/afm/public/pl/plssi9.afm + RELOC/fonts/afm/public/pl/plssq8.afm + RELOC/fonts/afm/public/pl/plssqi8.afm + RELOC/fonts/afm/public/pl/plsy10.afm + RELOC/fonts/afm/public/pl/plsy5.afm + RELOC/fonts/afm/public/pl/plsy6.afm + RELOC/fonts/afm/public/pl/plsy7.afm + RELOC/fonts/afm/public/pl/plsy8.afm + RELOC/fonts/afm/public/pl/plsy9.afm + RELOC/fonts/afm/public/pl/pltcsc10.afm + RELOC/fonts/afm/public/pl/pltex10.afm + RELOC/fonts/afm/public/pl/pltex8.afm + RELOC/fonts/afm/public/pl/pltex9.afm + RELOC/fonts/afm/public/pl/plti10.afm + RELOC/fonts/afm/public/pl/plti12.afm + RELOC/fonts/afm/public/pl/plti7.afm + RELOC/fonts/afm/public/pl/plti8.afm + RELOC/fonts/afm/public/pl/plti9.afm + RELOC/fonts/afm/public/pl/pltt10.afm + RELOC/fonts/afm/public/pl/pltt12.afm + RELOC/fonts/afm/public/pl/pltt8.afm + RELOC/fonts/afm/public/pl/pltt9.afm + RELOC/fonts/afm/public/pl/plu10.afm + RELOC/fonts/afm/public/pl/plvtt10.afm + RELOC/fonts/enc/dvips/pl/plin.enc + RELOC/fonts/enc/dvips/pl/plit.enc + RELOC/fonts/enc/dvips/pl/plitt.enc + RELOC/fonts/enc/dvips/pl/plme.enc + RELOC/fonts/enc/dvips/pl/plmi.enc + RELOC/fonts/enc/dvips/pl/plms.enc + RELOC/fonts/enc/dvips/pl/plrm.enc + RELOC/fonts/enc/dvips/pl/plsc.enc + RELOC/fonts/enc/dvips/pl/plte.enc + RELOC/fonts/enc/dvips/pl/pltt.enc + RELOC/fonts/map/dvips/pl/plother.map + RELOC/fonts/map/dvips/pl/pltext.map + RELOC/fonts/source/public/pl/cmssbi10.mf + RELOC/fonts/source/public/pl/dlr10.mf + RELOC/fonts/source/public/pl/fik_mik.mf + RELOC/fonts/source/public/pl/pl.mft + RELOC/fonts/source/public/pl/pl_cud.mf + RELOC/fonts/source/public/pl/pl_dl.mf + RELOC/fonts/source/public/pl/pl_dod.mf + RELOC/fonts/source/public/pl/pl_ml.mf + RELOC/fonts/source/public/pl/pl_mlk.mf + RELOC/fonts/source/public/pl/pl_sym.mf + RELOC/fonts/source/public/pl/plb10.mf + RELOC/fonts/source/public/pl/plbsy10.mf + RELOC/fonts/source/public/pl/plbsy5.mf + RELOC/fonts/source/public/pl/plbsy7.mf + RELOC/fonts/source/public/pl/plbx10.mf + RELOC/fonts/source/public/pl/plbx12.mf + RELOC/fonts/source/public/pl/plbx5.mf + RELOC/fonts/source/public/pl/plbx6.mf + RELOC/fonts/source/public/pl/plbx7.mf + RELOC/fonts/source/public/pl/plbx8.mf + RELOC/fonts/source/public/pl/plbx9.mf + RELOC/fonts/source/public/pl/plbxsl10.mf + RELOC/fonts/source/public/pl/plbxti10.mf + RELOC/fonts/source/public/pl/plcsc10.mf + RELOC/fonts/source/public/pl/pldunh10.mf + RELOC/fonts/source/public/pl/plex10.mf + RELOC/fonts/source/public/pl/plff10.mf + RELOC/fonts/source/public/pl/plfi10.mf + RELOC/fonts/source/public/pl/plfib8.mf + RELOC/fonts/source/public/pl/plinch.mf + RELOC/fonts/source/public/pl/plitt10.mf + RELOC/fonts/source/public/pl/plmi10.mf + RELOC/fonts/source/public/pl/plmi12.mf + RELOC/fonts/source/public/pl/plmi5.mf + RELOC/fonts/source/public/pl/plmi6.mf + RELOC/fonts/source/public/pl/plmi7.mf + RELOC/fonts/source/public/pl/plmi8.mf + RELOC/fonts/source/public/pl/plmi9.mf + RELOC/fonts/source/public/pl/plmib10.mf + RELOC/fonts/source/public/pl/plmib5.mf + RELOC/fonts/source/public/pl/plmib7.mf + RELOC/fonts/source/public/pl/plr10.mf + RELOC/fonts/source/public/pl/plr12.mf + RELOC/fonts/source/public/pl/plr17.mf + RELOC/fonts/source/public/pl/plr5.mf + RELOC/fonts/source/public/pl/plr6.mf + RELOC/fonts/source/public/pl/plr7.mf + RELOC/fonts/source/public/pl/plr8.mf + RELOC/fonts/source/public/pl/plr9.mf + RELOC/fonts/source/public/pl/plsl10.mf + RELOC/fonts/source/public/pl/plsl12.mf + RELOC/fonts/source/public/pl/plsl8.mf + RELOC/fonts/source/public/pl/plsl9.mf + RELOC/fonts/source/public/pl/plsltt10.mf + RELOC/fonts/source/public/pl/plss10.mf + RELOC/fonts/source/public/pl/plss12.mf + RELOC/fonts/source/public/pl/plss17.mf + RELOC/fonts/source/public/pl/plss8.mf + RELOC/fonts/source/public/pl/plss9.mf + RELOC/fonts/source/public/pl/plssbi10.mf + RELOC/fonts/source/public/pl/plssbx10.mf + RELOC/fonts/source/public/pl/plssdc10.mf + RELOC/fonts/source/public/pl/plssi10.mf + RELOC/fonts/source/public/pl/plssi12.mf + RELOC/fonts/source/public/pl/plssi17.mf + RELOC/fonts/source/public/pl/plssi8.mf + RELOC/fonts/source/public/pl/plssi9.mf + RELOC/fonts/source/public/pl/plssq8.mf + RELOC/fonts/source/public/pl/plssqi8.mf + RELOC/fonts/source/public/pl/plsy10.mf + RELOC/fonts/source/public/pl/plsy5.mf + RELOC/fonts/source/public/pl/plsy6.mf + RELOC/fonts/source/public/pl/plsy7.mf + RELOC/fonts/source/public/pl/plsy8.mf + RELOC/fonts/source/public/pl/plsy9.mf + RELOC/fonts/source/public/pl/pltcsc10.mf + RELOC/fonts/source/public/pl/pltex10.mf + RELOC/fonts/source/public/pl/pltex8.mf + RELOC/fonts/source/public/pl/pltex9.mf + RELOC/fonts/source/public/pl/plti10.mf + RELOC/fonts/source/public/pl/plti12.mf + RELOC/fonts/source/public/pl/plti7.mf + RELOC/fonts/source/public/pl/plti8.mf + RELOC/fonts/source/public/pl/plti9.mf + RELOC/fonts/source/public/pl/pltt10.mf + RELOC/fonts/source/public/pl/pltt12.mf + RELOC/fonts/source/public/pl/pltt8.mf + RELOC/fonts/source/public/pl/pltt9.mf + RELOC/fonts/source/public/pl/plu10.mf + RELOC/fonts/source/public/pl/plvtt10.mf + RELOC/fonts/source/public/pl/polan.mf + RELOC/fonts/source/public/pl/polkap.mf + RELOC/fonts/source/public/pl/polkur.mf + RELOC/fonts/source/public/pl/polmat.mf + RELOC/fonts/source/public/pl/poltyt.mf + RELOC/fonts/tfm/public/pl/plb10.tfm + RELOC/fonts/tfm/public/pl/plbsy10.tfm + RELOC/fonts/tfm/public/pl/plbsy5.tfm + RELOC/fonts/tfm/public/pl/plbsy7.tfm + RELOC/fonts/tfm/public/pl/plbx10.tfm + RELOC/fonts/tfm/public/pl/plbx12.tfm + RELOC/fonts/tfm/public/pl/plbx5.tfm + RELOC/fonts/tfm/public/pl/plbx6.tfm + RELOC/fonts/tfm/public/pl/plbx7.tfm + RELOC/fonts/tfm/public/pl/plbx8.tfm + RELOC/fonts/tfm/public/pl/plbx9.tfm + RELOC/fonts/tfm/public/pl/plbxsl10.tfm + RELOC/fonts/tfm/public/pl/plbxti10.tfm + RELOC/fonts/tfm/public/pl/plcsc10.tfm + RELOC/fonts/tfm/public/pl/pldunh10.tfm + RELOC/fonts/tfm/public/pl/plex10.tfm + RELOC/fonts/tfm/public/pl/plex9.tfm + RELOC/fonts/tfm/public/pl/plff10.tfm + RELOC/fonts/tfm/public/pl/plfi10.tfm + RELOC/fonts/tfm/public/pl/plfib8.tfm + RELOC/fonts/tfm/public/pl/plinch.tfm + RELOC/fonts/tfm/public/pl/plitt10.tfm + RELOC/fonts/tfm/public/pl/plmi10.tfm + RELOC/fonts/tfm/public/pl/plmi12.tfm + RELOC/fonts/tfm/public/pl/plmi5.tfm + RELOC/fonts/tfm/public/pl/plmi6.tfm + RELOC/fonts/tfm/public/pl/plmi7.tfm + RELOC/fonts/tfm/public/pl/plmi8.tfm + RELOC/fonts/tfm/public/pl/plmi9.tfm + RELOC/fonts/tfm/public/pl/plmib10.tfm + RELOC/fonts/tfm/public/pl/plmib5.tfm + RELOC/fonts/tfm/public/pl/plmib7.tfm + RELOC/fonts/tfm/public/pl/plr10.tfm + RELOC/fonts/tfm/public/pl/plr12.tfm + RELOC/fonts/tfm/public/pl/plr17.tfm + RELOC/fonts/tfm/public/pl/plr5.tfm + RELOC/fonts/tfm/public/pl/plr6.tfm + RELOC/fonts/tfm/public/pl/plr7.tfm + RELOC/fonts/tfm/public/pl/plr8.tfm + RELOC/fonts/tfm/public/pl/plr9.tfm + RELOC/fonts/tfm/public/pl/plsl10.tfm + RELOC/fonts/tfm/public/pl/plsl12.tfm + RELOC/fonts/tfm/public/pl/plsl8.tfm + RELOC/fonts/tfm/public/pl/plsl9.tfm + RELOC/fonts/tfm/public/pl/plsltt10.tfm + RELOC/fonts/tfm/public/pl/plss10.tfm + RELOC/fonts/tfm/public/pl/plss12.tfm + RELOC/fonts/tfm/public/pl/plss17.tfm + RELOC/fonts/tfm/public/pl/plss8.tfm + RELOC/fonts/tfm/public/pl/plss9.tfm + RELOC/fonts/tfm/public/pl/plssbi10.tfm + RELOC/fonts/tfm/public/pl/plssbx10.tfm + RELOC/fonts/tfm/public/pl/plssdc10.tfm + RELOC/fonts/tfm/public/pl/plssi10.tfm + RELOC/fonts/tfm/public/pl/plssi12.tfm + RELOC/fonts/tfm/public/pl/plssi17.tfm + RELOC/fonts/tfm/public/pl/plssi8.tfm + RELOC/fonts/tfm/public/pl/plssi9.tfm + RELOC/fonts/tfm/public/pl/plssq8.tfm + RELOC/fonts/tfm/public/pl/plssqi8.tfm + RELOC/fonts/tfm/public/pl/plsy10.tfm + RELOC/fonts/tfm/public/pl/plsy5.tfm + RELOC/fonts/tfm/public/pl/plsy6.tfm + RELOC/fonts/tfm/public/pl/plsy7.tfm + RELOC/fonts/tfm/public/pl/plsy8.tfm + RELOC/fonts/tfm/public/pl/plsy9.tfm + RELOC/fonts/tfm/public/pl/pltcsc10.tfm + RELOC/fonts/tfm/public/pl/pltex10.tfm + RELOC/fonts/tfm/public/pl/pltex8.tfm + RELOC/fonts/tfm/public/pl/pltex9.tfm + RELOC/fonts/tfm/public/pl/plti10.tfm + RELOC/fonts/tfm/public/pl/plti12.tfm + RELOC/fonts/tfm/public/pl/plti7.tfm + RELOC/fonts/tfm/public/pl/plti8.tfm + RELOC/fonts/tfm/public/pl/plti9.tfm + RELOC/fonts/tfm/public/pl/pltt10.tfm + RELOC/fonts/tfm/public/pl/pltt12.tfm + RELOC/fonts/tfm/public/pl/pltt8.tfm + RELOC/fonts/tfm/public/pl/pltt9.tfm + RELOC/fonts/tfm/public/pl/plu10.tfm + RELOC/fonts/tfm/public/pl/plvtt10.tfm + RELOC/fonts/type1/public/pl/plb10.pfb + RELOC/fonts/type1/public/pl/plb10.pfm + RELOC/fonts/type1/public/pl/plbsy10.pfb + RELOC/fonts/type1/public/pl/plbsy10.pfm + RELOC/fonts/type1/public/pl/plbx10.pfb + RELOC/fonts/type1/public/pl/plbx10.pfm + RELOC/fonts/type1/public/pl/plbx12.pfb + RELOC/fonts/type1/public/pl/plbx12.pfm + RELOC/fonts/type1/public/pl/plbx5.pfb + RELOC/fonts/type1/public/pl/plbx5.pfm + RELOC/fonts/type1/public/pl/plbx6.pfb + RELOC/fonts/type1/public/pl/plbx6.pfm + RELOC/fonts/type1/public/pl/plbx7.pfb + RELOC/fonts/type1/public/pl/plbx7.pfm + RELOC/fonts/type1/public/pl/plbx8.pfb + RELOC/fonts/type1/public/pl/plbx8.pfm + RELOC/fonts/type1/public/pl/plbx9.pfb + RELOC/fonts/type1/public/pl/plbx9.pfm + RELOC/fonts/type1/public/pl/plbxsl10.pfb + RELOC/fonts/type1/public/pl/plbxsl10.pfm + RELOC/fonts/type1/public/pl/plbxti10.pfb + RELOC/fonts/type1/public/pl/plbxti10.pfm + RELOC/fonts/type1/public/pl/plcsc10.pfb + RELOC/fonts/type1/public/pl/plcsc10.pfm + RELOC/fonts/type1/public/pl/pldunh10.pfb + RELOC/fonts/type1/public/pl/pldunh10.pfm + RELOC/fonts/type1/public/pl/plex10.pfb + RELOC/fonts/type1/public/pl/plex10.pfm + RELOC/fonts/type1/public/pl/plex9.pfb + RELOC/fonts/type1/public/pl/plex9.pfm + RELOC/fonts/type1/public/pl/plff10.pfb + RELOC/fonts/type1/public/pl/plff10.pfm + RELOC/fonts/type1/public/pl/plfi10.pfb + RELOC/fonts/type1/public/pl/plfi10.pfm + RELOC/fonts/type1/public/pl/plfib8.pfb + RELOC/fonts/type1/public/pl/plfib8.pfm + RELOC/fonts/type1/public/pl/plinch.pfb + RELOC/fonts/type1/public/pl/plinch.pfm + RELOC/fonts/type1/public/pl/plitt10.pfb + RELOC/fonts/type1/public/pl/plitt10.pfm + RELOC/fonts/type1/public/pl/plmi10.pfb + RELOC/fonts/type1/public/pl/plmi10.pfm + RELOC/fonts/type1/public/pl/plmi12.pfb + RELOC/fonts/type1/public/pl/plmi12.pfm + RELOC/fonts/type1/public/pl/plmi5.pfb + RELOC/fonts/type1/public/pl/plmi5.pfm + RELOC/fonts/type1/public/pl/plmi6.pfb + RELOC/fonts/type1/public/pl/plmi6.pfm + RELOC/fonts/type1/public/pl/plmi7.pfb + RELOC/fonts/type1/public/pl/plmi7.pfm + RELOC/fonts/type1/public/pl/plmi8.pfb + RELOC/fonts/type1/public/pl/plmi8.pfm + RELOC/fonts/type1/public/pl/plmi9.pfb + RELOC/fonts/type1/public/pl/plmi9.pfm + RELOC/fonts/type1/public/pl/plmib10.pfb + RELOC/fonts/type1/public/pl/plmib10.pfm + RELOC/fonts/type1/public/pl/plr10.pfb + RELOC/fonts/type1/public/pl/plr10.pfm + RELOC/fonts/type1/public/pl/plr12.pfb + RELOC/fonts/type1/public/pl/plr12.pfm + RELOC/fonts/type1/public/pl/plr17.pfb + RELOC/fonts/type1/public/pl/plr17.pfm + RELOC/fonts/type1/public/pl/plr5.pfb + RELOC/fonts/type1/public/pl/plr5.pfm + RELOC/fonts/type1/public/pl/plr6.pfb + RELOC/fonts/type1/public/pl/plr6.pfm + RELOC/fonts/type1/public/pl/plr7.pfb + RELOC/fonts/type1/public/pl/plr7.pfm + RELOC/fonts/type1/public/pl/plr8.pfb + RELOC/fonts/type1/public/pl/plr8.pfm + RELOC/fonts/type1/public/pl/plr9.pfb + RELOC/fonts/type1/public/pl/plr9.pfm + RELOC/fonts/type1/public/pl/plsl10.pfb + RELOC/fonts/type1/public/pl/plsl10.pfm + RELOC/fonts/type1/public/pl/plsl12.pfb + RELOC/fonts/type1/public/pl/plsl12.pfm + RELOC/fonts/type1/public/pl/plsl8.pfb + RELOC/fonts/type1/public/pl/plsl8.pfm + RELOC/fonts/type1/public/pl/plsl9.pfb + RELOC/fonts/type1/public/pl/plsl9.pfm + RELOC/fonts/type1/public/pl/plsltt10.pfb + RELOC/fonts/type1/public/pl/plsltt10.pfm + RELOC/fonts/type1/public/pl/plss10.pfb + RELOC/fonts/type1/public/pl/plss10.pfm + RELOC/fonts/type1/public/pl/plss12.pfb + RELOC/fonts/type1/public/pl/plss12.pfm + RELOC/fonts/type1/public/pl/plss17.pfb + RELOC/fonts/type1/public/pl/plss17.pfm + RELOC/fonts/type1/public/pl/plss8.pfb + RELOC/fonts/type1/public/pl/plss8.pfm + RELOC/fonts/type1/public/pl/plss9.pfb + RELOC/fonts/type1/public/pl/plss9.pfm + RELOC/fonts/type1/public/pl/plssbi10.pfb + RELOC/fonts/type1/public/pl/plssbi10.pfm + RELOC/fonts/type1/public/pl/plssbx10.pfb + RELOC/fonts/type1/public/pl/plssbx10.pfm + RELOC/fonts/type1/public/pl/plssdc10.pfb + RELOC/fonts/type1/public/pl/plssdc10.pfm + RELOC/fonts/type1/public/pl/plssi10.pfb + RELOC/fonts/type1/public/pl/plssi10.pfm + RELOC/fonts/type1/public/pl/plssi12.pfb + RELOC/fonts/type1/public/pl/plssi12.pfm + RELOC/fonts/type1/public/pl/plssi17.pfb + RELOC/fonts/type1/public/pl/plssi17.pfm + RELOC/fonts/type1/public/pl/plssi8.pfb + RELOC/fonts/type1/public/pl/plssi8.pfm + RELOC/fonts/type1/public/pl/plssi9.pfb + RELOC/fonts/type1/public/pl/plssi9.pfm + RELOC/fonts/type1/public/pl/plssq8.pfb + RELOC/fonts/type1/public/pl/plssq8.pfm + RELOC/fonts/type1/public/pl/plssqi8.pfb + RELOC/fonts/type1/public/pl/plssqi8.pfm + RELOC/fonts/type1/public/pl/plsy10.pfb + RELOC/fonts/type1/public/pl/plsy10.pfm + RELOC/fonts/type1/public/pl/plsy5.pfb + RELOC/fonts/type1/public/pl/plsy5.pfm + RELOC/fonts/type1/public/pl/plsy6.pfb + RELOC/fonts/type1/public/pl/plsy6.pfm + RELOC/fonts/type1/public/pl/plsy7.pfb + RELOC/fonts/type1/public/pl/plsy7.pfm + RELOC/fonts/type1/public/pl/plsy8.pfb + RELOC/fonts/type1/public/pl/plsy8.pfm + RELOC/fonts/type1/public/pl/plsy9.pfb + RELOC/fonts/type1/public/pl/plsy9.pfm + RELOC/fonts/type1/public/pl/pltcsc10.pfb + RELOC/fonts/type1/public/pl/pltcsc10.pfm + RELOC/fonts/type1/public/pl/pltex10.pfb + RELOC/fonts/type1/public/pl/pltex10.pfm + RELOC/fonts/type1/public/pl/pltex8.pfb + RELOC/fonts/type1/public/pl/pltex8.pfm + RELOC/fonts/type1/public/pl/pltex9.pfb + RELOC/fonts/type1/public/pl/pltex9.pfm + RELOC/fonts/type1/public/pl/plti10.pfb + RELOC/fonts/type1/public/pl/plti10.pfm + RELOC/fonts/type1/public/pl/plti12.pfb + RELOC/fonts/type1/public/pl/plti12.pfm + RELOC/fonts/type1/public/pl/plti7.pfb + RELOC/fonts/type1/public/pl/plti7.pfm + RELOC/fonts/type1/public/pl/plti8.pfb + RELOC/fonts/type1/public/pl/plti8.pfm + RELOC/fonts/type1/public/pl/plti9.pfb + RELOC/fonts/type1/public/pl/plti9.pfm + RELOC/fonts/type1/public/pl/pltt10.pfb + RELOC/fonts/type1/public/pl/pltt10.pfm + RELOC/fonts/type1/public/pl/pltt12.pfb + RELOC/fonts/type1/public/pl/pltt12.pfm + RELOC/fonts/type1/public/pl/pltt8.pfb + RELOC/fonts/type1/public/pl/pltt8.pfm + RELOC/fonts/type1/public/pl/pltt9.pfb + RELOC/fonts/type1/public/pl/pltt9.pfm + RELOC/fonts/type1/public/pl/plu10.pfb + RELOC/fonts/type1/public/pl/plu10.pfm + RELOC/fonts/type1/public/pl/plvtt10.pfb + RELOC/fonts/type1/public/pl/plvtt10.pfm +catalogue-ctan /language/polish/pl-mf.zip +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics font font-mf polish +catalogue-version 1.09 + +name placeat +category Package +revision 45145 +shortdesc Absolute content positioning +relocated 1 +longdesc The package provides commands so that the user of LuaLaTeX may +longdesc position arbitrary content at any position specified by +longdesc absolute coordinates on the page. The package draws a grid on +longdesc each page of the document, to aid positioning (the grid may be +longdesc disabled, for 'final copy' using the command \placeatsetup). +containersize 4000 +containerchecksum 476dac5b149811659c663751478f9f224e209dd63954cb88baadcc94c70a4861673512e01c4a5f30097d242f56f1a6edbf4fc225f8b561e49a4e60b02020488e +doccontainersize 95556 +doccontainerchecksum 0fc82d9b448c85eb3d77a7943b9243720f41894f062d9723b3dd56f2d3e9cd8fcb87a3d57f387f1c87b3ea132fee2e0e08962d9044aa7c756f0db979f4c06a3c +docfiles size=26 + RELOC/doc/lualatex/placeat/README.md details="Readme" + RELOC/doc/lualatex/placeat/placeat.pdf details="Package documentation" + RELOC/doc/lualatex/placeat/placeat.tex +srccontainersize 11932 +srccontainerchecksum c24fb52958d4bf39ea7925b1b68f2b2a5eea95c4c7bad8193d272111d6cc896b89e1b7ffd923a0e6fd9fd231dba3d1038a8730ae58b4ba059738da646e6b7bed +srcfiles size=9 + RELOC/source/lualatex/placeat/placeat.dtx +runfiles size=4 + RELOC/scripts/placeat/placeat.lua + RELOC/tex/lualatex/placeat/placeat.sty +catalogue-also textpos +catalogue-contact-repository https://github.com/alt/placeat +catalogue-ctan /macros/luatex/latex/placeat +catalogue-date 2017-08-26 23:16:20 +0200 +catalogue-license lppl1.3 +catalogue-topics layout luatex +catalogue-version 0.1d1 + +name placeins +category Package +revision 19848 +shortdesc Control float placement +relocated 1 +longdesc Defines a \FloatBarrier command, beyond which floats may not +longdesc pass; useful, for example, to ensure all floats for a section +longdesc appear before the next \section command. +containersize 2300 +containerchecksum 618eb33f1fce0b089fe111b083b0153c146e0d8abbcfc235a86dc6a698a2fad080f8ac38e04037e06b0e1e2782291ca6d01ae69922d181b26b4c809d6aba262a +doccontainersize 257616 +doccontainerchecksum 2ac2312083ae8abd3fe3f85da7dc65032a4c6bed4d1778c058120b48292f459d1b77d40e4eb6f0afaf88a5160d4fb0eb7f353ba1d93b7ec672f054e58de4d6f5 +docfiles size=65 + RELOC/doc/latex/placeins/placeins-doc.pdf details="Package documentation" + RELOC/doc/latex/placeins/placeins-doc.tex + RELOC/doc/latex/placeins/placeins.txt +runfiles size=1 + RELOC/tex/latex/placeins/placeins.sty +catalogue-ctan /macros/latex/contrib/placeins +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics layout float +catalogue-version 2.2 + +name placeins-plain +category Package +revision 15878 +shortdesc Insertions that keep their place +relocated 1 +longdesc This TeX file provides various mechanisms (for plain TeX and +longdesc close relatives) to let insertions (footnotes, topins, pageins, +longdesc etc.) float within their appropriate section, but to prevent +longdesc them from intruding into the following section, even when +longdesc sections do not normally begin a new page. (If your sections +longdesc normally begin a new page, just use \supereject to flush out +longdesc insertions.) +containersize 2632 +containerchecksum ba143fda432b8ff9f96d48218ea3b3d29308db3a403c64af5f4a89b8305ff835481d9e0e77bff92530207359115f6a44b006cc58bce99c0f7d3924d1134ef60b +runfiles size=2 + RELOC/tex/plain/placeins-plain/placeins.tex +catalogue-ctan /macros/plain/contrib/misc/placeins.tex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics layout float +catalogue-version 2.0 + +name plain +category Package +revision 43076 +shortdesc The Plain TeX format +relocated 1 +longdesc Contains files used to build the Plain TeX format, as described +longdesc in the TeXbook, together with various supporting files (some +longdesc also discussed in the book). +containersize 70876 +containerchecksum 66f585e1fb6b95913ce71406e840bb15953b2ddebc3ce0344eed791e496ea75b93c4969abc363016b71dcaf65c0c676064ec778bcccbb2490031959ef3276bf2 +runfiles size=336 + RELOC/makeindex/plain/plaintex.ist + RELOC/tex/plain/base/fontchart.tex + RELOC/tex/plain/base/gkpmac.tex + RELOC/tex/plain/base/letter.tex + RELOC/tex/plain/base/list-latin.tex + RELOC/tex/plain/base/list.tex + RELOC/tex/plain/base/llist.tex + RELOC/tex/plain/base/mptmac.tex + RELOC/tex/plain/base/picmac.tex + RELOC/tex/plain/base/plain.tex + RELOC/tex/plain/base/wlist.tex + RELOC/tex/plain/config/aleph.ini + RELOC/tex/plain/config/bplain.ini + RELOC/tex/plain/config/etex.ini + RELOC/tex/plain/config/omega.ini + RELOC/tex/plain/config/pdfbplain.ini + RELOC/tex/plain/config/pdfetex.ini + RELOC/tex/plain/config/pdftexmagfix.tex + RELOC/tex/plain/config/tex.ini + RELOC/tex/plain/config/unicode-letters.def +catalogue-ctan /macros/plain/base +catalogue-date 2016-11-06 05:33:39 +0100 +catalogue-license knuth +catalogue-topics format +catalogue-version 3.141592653 + +name plain-doc +category Package +revision 28424 +catalogue csname-doc +shortdesc A list of plain.tex cs names +relocated 1 +longdesc The document constitutes a list of every control sequence name +longdesc (csname) described in the TeXbook, together with an indication +longdesc of whether the csname is a primitive TeX command, or is defined +longdesc in plain.tex +containersize 488 +containerchecksum bae58c957de52e1a45f91d8ea49579ea9c5b50b641331ae8d27146b6bbda1cf93e09abe58a011164ef99e5513cc32d346da7d693e975271e1892674aa5799406 +doccontainersize 4172 +doccontainerchecksum 03f17a65680e4fedd76abf2ec46dbac4b7871c3106c74d3d7c7f200bd6124146b2f78848a3761eaf63b2c909eb5925b78441d73a48a4437ef496b8643777d847 +docfiles size=5 + RELOC/doc/plain/plain-doc/csname.txt +catalogue-ctan /info/plain-doc/csname.txt +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics tut-plaintex + +name plainpkg +category Package +revision 27765 +shortdesc A minimal method for making generic packages +relocated 1 +longdesc The package provides a minimal method for making generic (i.e., +longdesc TeX-format-independent) packaged, combining maybeload +longdesc functionality, fallback definitions for LaTeX \ProvidesPackage +longdesc and \RequirePackage functionality, and handling of arbitrary +longdesc (multiple) "private letters" (analagous LaTeX packages' use of +longdesc "@") in nested package files. The documentation contains a +longdesc central reference for making and using generic packages based +longdesc on the package. +containersize 3304 +containerchecksum aa1158f3958013b133dd3f9308063543268181296274a40e2ca606c8e684105e89b79cd9bb45d225e14865ca0e998e0412e8edf8057445bde549f249a6d69b2e +doccontainersize 357100 +doccontainerchecksum 684b4f193f29336d5bd2c494c0c447cf0ac28090a156ae286437033e14507607582b3b9b40bc7b82fd92661a4bdd75f953e7c0b675f46418bb585b6a9492eaa1 +docfiles size=99 + RELOC/doc/generic/plainpkg/README details="Readme" + RELOC/doc/generic/plainpkg/SrcFILEs.txt + RELOC/doc/generic/plainpkg/plainpkg-doc.pdf details="Package documentation" +srccontainersize 5264 +srccontainerchecksum 44138ffb31ad8f78b0ab917302f48f0bbea871ef390c52b211ac25dd9c16f0687f02348c96682d89c9fdb5586b157c9d6d4ab3f404f40ab173835997ffe7c237 +srcfiles size=5 + RELOC/source/generic/plainpkg/plainpkg-doc.tex + RELOC/source/generic/plainpkg/srcfiles.tex +runfiles size=2 + RELOC/tex/generic/plainpkg/plainpkg.tex +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html +catalogue-ctan /macros/generic/plainpkg +catalogue-date 2017-05-06 09:23:35 +0200 +catalogue-license lppl1.3 +catalogue-topics macro-supp macro-gen +catalogue-version 0.4a + +name plantslabels +category Package +revision 29803 +shortdesc Write labels for plants +relocated 1 +longdesc The package defines a command \plant, which has three mandatory +longdesc and seven optional argument. The package uses the labels +containersize 1260 +containerchecksum 7e1724b32035ee32325c491bce57ead23f40ad7377b4c1d5572499fef920b874bd57298e654429203cbea726b8d645a0899807547db80825be163538c1d91537 +doccontainersize 218164 +doccontainerchecksum 999f132df73c15a7b3501487f350e48777543745c5cddbbaf314bcb62eca9b3ba41b51324b61d04e9f1d9cef4b9b8ab851d3528f8893bb21e612a7f50511da65 +docfiles size=94 + RELOC/doc/latex/plantslabels/README details="Readme" + RELOC/doc/latex/plantslabels/doc/pdf/plantslabels.pdf details="Package documentation" + RELOC/doc/latex/plantslabels/doc/tex/Makefile + RELOC/doc/latex/plantslabels/doc/tex/perso.ist + RELOC/doc/latex/plantslabels/doc/tex/plantslabels.forlisting + RELOC/doc/latex/plantslabels/doc/tex/plantslabels.tex + RELOC/doc/latex/plantslabels/example/pdf/example.pdf + RELOC/doc/latex/plantslabels/example/tex/cactus.eps + RELOC/doc/latex/plantslabels/example/tex/example.tex +runfiles size=1 + RELOC/tex/latex/plantslabels/plantslabels.sty +catalogue-ctan /macros/latex/contrib/plantslabels +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics covers +catalogue-version 1.0 + +name plantuml +category Package +revision 47924 +shortdesc Support for rendering UML diagrams using the syntax and tool of PlantUML +relocated 1 +longdesc The package provides support for rendering UML diagrams using +longdesc the syntax and tools of PlantUML. The PlantUML syntax is very +longdesc short and thus enables quickly specifying UML diagrams. Using +longdesc dot, PlantUML layouts the diagrams. +containersize 2144 +containerchecksum 0803064bb3b1a4d8357d82d48b6451df7fdcd605bfec890a30105777ef274d375d4d6025bf62a220d2357ab8e9f78b344fd2fba0125ec0eddc62582604e7db32 +doccontainersize 65748 +doccontainerchecksum 27467a834aa75b48ced2032d193531a99dfa84140c9301b349880e0f2f66b5e8b28ae039652fa4e6db1212d8caa125f2bf8c225e46f4939be8b1afee9375dffd +docfiles size=24 + RELOC/doc/lualatex/plantuml/CHANGELOG.md + RELOC/doc/lualatex/plantuml/README.md details="Readme" + RELOC/doc/lualatex/plantuml/example-class-relations--latex.tex + RELOC/doc/lualatex/plantuml/example-class-relations--svg.png + RELOC/doc/lualatex/plantuml/example-class-relations--svg.tex + RELOC/doc/lualatex/plantuml/example-minimal.png + RELOC/doc/lualatex/plantuml/example-minimal.tex + RELOC/doc/lualatex/plantuml/plantuml.pdf details="Package documentation" + RELOC/doc/lualatex/plantuml/release.sh +runfiles size=2 + RELOC/tex/lualatex/plantuml/plantuml.lua + RELOC/tex/lualatex/plantuml/plantuml.sty +catalogue-contact-bugs https://github.com/latextemplates/plantuml/issues +catalogue-contact-home https://latextemplates.github.io/plantuml/ +catalogue-contact-repository https://github.com/latextemplates/plantuml +catalogue-ctan /macros/luatex/latex/plantuml +catalogue-date 2018-06-04 06:15:17 +0200 +catalogue-license lppl1.3c +catalogue-topics uml luatex use-lua +catalogue-version 0.2.3 + +name plari +category Package +revision 15878 +shortdesc Typesetting stageplay scripts +relocated 1 +longdesc Plari (the name comes from the Finnish usage for the working +longdesc copy of a play) is a report-alike class, without section +longdesc headings, and with paragraphs vertically separated rather than +longdesc indented. +containersize 2336 +containerchecksum 86e91b884be131df6b4da6441a9fbeb872e0f345eed49005ef74d58eb3ef8a2724da98cc810a51b58d45047d77545ac6b9512612b5946ba29d443dd14bbdb263 +doccontainersize 136708 +doccontainerchecksum befa46f8ef7c4c89e18339ececbd53341aa50d6bfc8927001d17395cba42db0f0ca3414619c746c78e4f5f4f9cb1f6db813defc7b89299f5b29e9c0866852c82 +docfiles size=41 + RELOC/doc/latex/plari/COPYING + RELOC/doc/latex/plari/README details="Readme" + RELOC/doc/latex/plari/plari.pdf details="Package documentation" +srccontainersize 3588 +srccontainerchecksum e03c7b5fe7406c447509d4ae841c13c579c608564f45b83e1fddb066248b53e46f83a2760d745db1a5acae08dff493686d667f0328c9c3d467df6a92d8304a5a +srcfiles size=4 + RELOC/source/latex/plari/Makefile + RELOC/source/latex/plari/plari.dtx + RELOC/source/latex/plari/plari.ins +runfiles size=1 + RELOC/tex/latex/plari/plari.cls +catalogue-also sides +catalogue-ctan /macros/latex/contrib/plari +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics drama-script + +name plates +category Package +revision 15878 +shortdesc Arrange for "plates" sections of documents +relocated 1 +longdesc The plates package provides a simple facility for inserting +longdesc colour figures in a document when they should be gathered and +longdesc printed together as in a book's section of colour plates. The +longdesc package provides a plate environment that takes the place of +longdesc the figure environment for such colour images. +containersize 6048 +containerchecksum f662191f6a053585bbcf5a71635b6f63ee5d713086bd24f3c879f73868b5ab42b6434860b68408fcade7b7ba448845d1dd6a5be12b10bc25be8032b9dcef9615 +doccontainersize 81112 +doccontainerchecksum 12779b285951d5e3d7a0f9d3ded736d5368291b678fd884262908897c4e32bd5fdbdd6bb4eeea59bf922555d5dc8daf6b0e06a174fba2605d4357dcf1f09c6d9 +docfiles size=26 + RELOC/doc/latex/plates/README details="Readme" + RELOC/doc/latex/plates/plates.pdf details="Package documentation" + RELOC/doc/latex/plates/plates.tex +runfiles size=5 + RELOC/tex/latex/plates/endplate.sty + RELOC/tex/latex/plates/plates.sty +catalogue-ctan /macros/latex/contrib/plates +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-use +catalogue-version 0.1 + +name platex +category Package +revision 50831 +shortdesc pLaTeX2e and miscellaneous macros for pTeX +longdesc The bundle provides pLaTeX2e and miscellaneous macros for pTeX +longdesc and e-pTeX. This is a community edition forked from the +longdesc original ASCII edition (ptex-texmf-2.5). +depend ptex +depend babel +depend cm +depend hyphen-base +depend latex +depend latex-fonts +depend ptex-fonts +depend platex.ARCH +execute AddFormat name=platex engine=eptex options="*platex.ini" patterns=language.dat fmttriggers=babel,cm,hyphen-base,latex,latex-fonts,ptex-fonts +containersize 35632 +containerchecksum 28d7cda769befc445e9ac4a1987d61f465746c68fb6c10fa56ee09990ce4b99644bebde4dbab96966ef01b5cffb92749cd5759f502039b31f704269778f410f7 +doccontainersize 1560452 +doccontainerchecksum 9900ea588e1ebf44f5fca78050ffa15b7c493eeb13fca5ad907d1ccfac152cbdf5065d682b698728de090ec4f03f775443695fa5b0e8c029586cfb446b12804b +docfiles size=396 + texmf-dist/doc/man/man1/platex.1 + texmf-dist/doc/man/man1/platex.man1.pdf + texmf-dist/doc/platex/base/LICENSE + texmf-dist/doc/platex/base/README.md details="Readme" + texmf-dist/doc/platex/base/exppl2e.pdf + texmf-dist/doc/platex/base/platex-en.pdf details="Package documentation" + texmf-dist/doc/platex/base/platex.pdf details="Package documentation" language="ja" + texmf-dist/doc/platex/base/platexrelease.pdf + texmf-dist/doc/platex/base/pldoc.pdf +srccontainersize 119124 +srccontainerchecksum d44ba7038baf70de0b4e92d89463f0c87465bf7da43496db50b63049004f89903dbb87eb3b18a4b6ee451a038b8f15f07df5bdfda086033108df652f6a72539c +srcfiles size=177 + texmf-dist/source/platex/base/Makefile + texmf-dist/source/platex/base/jclasses.dtx + texmf-dist/source/platex/base/jltxdoc.dtx + texmf-dist/source/platex/base/kinsoku.dtx + texmf-dist/source/platex/base/pl209.dtx + texmf-dist/source/platex/base/pl209.ins + texmf-dist/source/platex/base/platex.dtx + texmf-dist/source/platex/base/platexrelease.dtx + texmf-dist/source/platex/base/platexrelease.ins + texmf-dist/source/platex/base/plcls.ins + texmf-dist/source/platex/base/plcore.dtx + texmf-dist/source/platex/base/pldocs.ins + texmf-dist/source/platex/base/plext.dtx + texmf-dist/source/platex/base/plfmt.ins + texmf-dist/source/platex/base/plfonts.dtx + texmf-dist/source/platex/base/plnews01.tex + texmf-dist/source/platex/base/plnews02.tex + texmf-dist/source/platex/base/plnews03.tex + texmf-dist/source/platex/base/plnews04.tex + texmf-dist/source/platex/base/plnews05.tex + texmf-dist/source/platex/base/plnews06.tex + texmf-dist/source/platex/base/plnews07.tex + texmf-dist/source/platex/base/plnews08.tex + texmf-dist/source/platex/base/plnewsc01.tex + texmf-dist/source/platex/base/plnewsc02.tex + texmf-dist/source/platex/base/plnewsc03.tex + texmf-dist/source/platex/base/plnewsc04.tex + texmf-dist/source/platex/base/plnewsc05.tex + texmf-dist/source/platex/base/plnewsc06.tex + texmf-dist/source/platex/base/plnewsc07.tex + texmf-dist/source/platex/base/plnewsc08.tex + texmf-dist/source/platex/base/plnewsc09.tex + texmf-dist/source/platex/base/plnewsc10.tex + texmf-dist/source/platex/base/plnewsc11.tex + texmf-dist/source/platex/base/plnewsc12.tex + texmf-dist/source/platex/base/plvers.dtx +runfiles size=140 + texmf-dist/tex/platex/base/exppl2e.sty + texmf-dist/tex/platex/base/jarticle.cls + texmf-dist/tex/platex/base/jarticle.sty + texmf-dist/tex/platex/base/jbk10.clo + texmf-dist/tex/platex/base/jbk11.clo + texmf-dist/tex/platex/base/jbk12.clo + texmf-dist/tex/platex/base/jbook.cls + texmf-dist/tex/platex/base/jbook.sty + texmf-dist/tex/platex/base/jltxdoc.cls + texmf-dist/tex/platex/base/jreport.cls + texmf-dist/tex/platex/base/jreport.sty + texmf-dist/tex/platex/base/jsize10.clo + texmf-dist/tex/platex/base/jsize11.clo + texmf-dist/tex/platex/base/jsize12.clo + texmf-dist/tex/platex/base/jt1gt.fd + texmf-dist/tex/platex/base/jt1mc.fd + texmf-dist/tex/platex/base/jy1gt.fd + texmf-dist/tex/platex/base/jy1mc.fd + texmf-dist/tex/platex/base/kinsoku.tex + texmf-dist/tex/platex/base/oldpfont.sty + texmf-dist/tex/platex/base/pfltrace.sty + texmf-dist/tex/platex/base/pl209.def + texmf-dist/tex/platex/base/platex.ltx + texmf-dist/tex/platex/base/platexrelease.sty + texmf-dist/tex/platex/base/plcore.ltx + texmf-dist/tex/platex/base/pldefs.ltx + texmf-dist/tex/platex/base/plext.sty + texmf-dist/tex/platex/base/plnews.cls + texmf-dist/tex/platex/base/ptrace.sty + texmf-dist/tex/platex/base/tarticle.cls + texmf-dist/tex/platex/base/tarticle.sty + texmf-dist/tex/platex/base/tbk10.clo + texmf-dist/tex/platex/base/tbk11.clo + texmf-dist/tex/platex/base/tbk12.clo + texmf-dist/tex/platex/base/tbook.cls + texmf-dist/tex/platex/base/tbook.sty + texmf-dist/tex/platex/base/treport.cls + texmf-dist/tex/platex/base/treport.sty + texmf-dist/tex/platex/base/tsize10.clo + texmf-dist/tex/platex/base/tsize11.clo + texmf-dist/tex/platex/base/tsize12.clo + texmf-dist/tex/platex/config/platex.ini +catalogue-contact-repository https://github.com/texjporg/platex +catalogue-ctan /language/japanese/platex +catalogue-date 2019-04-06 08:27:33 +0200 +catalogue-license bsd3 +catalogue-topics format class japanese + +name platex-tools +category Package +revision 49250 +shortdesc pLaTeX standard tools bundle +relocated 1 +longdesc This bundle is an extended version of the latex-tools bundle +longdesc developed by the LaTeX team, mainly intended to support +longdesc pLaTeX2e and upLaTeX2e. Currently patches for the latex-tools +longdesc bundle and Martin Schroder's ms bundle are included. +containersize 6272 +containerchecksum a90b4833a3d5c5b263e0598bdbc5c89648d745b83e1b5d3fc378840e1d395a376b63689fb5a7c50b1629ef869c18e6774ce3cd7c8e2326e0fcb4e3d390ca4f50 +doccontainersize 501892 +doccontainerchecksum f22d5879ec6c0328ec678db6fae759056d6c5472be6deb52aab59239cd93ff6f04caf0f76ecc994ab900487ee3aecdcae6a7c8901f57782d5bf3b4a77c43a254 +docfiles size=141 + RELOC/doc/latex/platex-tools/LICENSE + RELOC/doc/latex/platex-tools/Makefile + RELOC/doc/latex/platex-tools/README.md details="Readme" + RELOC/doc/latex/platex-tools/plarray.pdf details="Documentation of the plarray package" language="ja" + RELOC/doc/latex/platex-tools/plarray.tex + RELOC/doc/latex/platex-tools/plextarray.pdf details="Documentation of the plextarray package" language="ja" + RELOC/doc/latex/platex-tools/plextarray.tex + RELOC/doc/latex/platex-tools/plextdelarray.pdf details="Documentation of the plextdelarray package" language="ja" + RELOC/doc/latex/platex-tools/plextdelarray.tex + RELOC/doc/latex/platex-tools/pxatbegshi.pdf details="Documentation of the pxatbegshi package" language="ja" + RELOC/doc/latex/platex-tools/pxatbegshi.tex + RELOC/doc/latex/platex-tools/pxeverysel.pdf details="Documentation of the pxeverysel package" language="ja" + RELOC/doc/latex/platex-tools/pxeverysel.tex + RELOC/doc/latex/platex-tools/pxeveryshi.pdf details="Documentation of the pxeveryshi package" language="ja" + RELOC/doc/latex/platex-tools/pxeveryshi.tex + RELOC/doc/latex/platex-tools/pxftnright.pdf details="Documentation of the pxftnright package" language="ja" + RELOC/doc/latex/platex-tools/pxftnright.tex + RELOC/doc/latex/platex-tools/pxmulticol.pdf details="Documentation of the pxmulticol package" language="ja" + RELOC/doc/latex/platex-tools/pxmulticol.tex +runfiles size=9 + RELOC/tex/latex/platex-tools/plarray.sty + RELOC/tex/latex/platex-tools/plextarray.sty + RELOC/tex/latex/platex-tools/plextdelarray.sty + RELOC/tex/latex/platex-tools/pxatbegshi.sty + RELOC/tex/latex/platex-tools/pxeverysel.sty + RELOC/tex/latex/platex-tools/pxeveryshi.sty + RELOC/tex/latex/platex-tools/pxftnright.sty + RELOC/tex/latex/platex-tools/pxmulticol.sty +catalogue-contact-repository https://github.com/aminophen/platex-tools +catalogue-ctan /language/japanese/platex-tools +catalogue-date 2018-11-25 13:41:24 +0100 +catalogue-license bsd3 +catalogue-topics japanese collection + +name platex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of platex +containersize 320 +containerchecksum 22e79edf99ae30c1d893b522d80b1f0455de8b12b888283ac2db43f278c636babd25a2b11299553a649480530a7bfedad70d495836222d4520ad4cf6cbe072e9 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/platex + +name platex.amd64-freebsd +category Package +revision 22826 +shortdesc amd64-freebsd files of platex +containersize 320 +containerchecksum 6bae2fcfbd5919761d4cdc862e68203184cae0242090d2cc3eb995b0c0cd66710f998e5b60010555cab6f377327e7a82219a921cbc11405f0f215b9a9193d514 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/platex + +name platex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of platex +containersize 320 +containerchecksum 0825266a73df790e488f73f7564c6d6af94176be157871492a53e066e0d6980558829090536ac7bd3adca6a1ee0ee8ce0888d99d63f56e07ba0e6c813a1a1f8f +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/platex + +name platex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of platex +containersize 320 +containerchecksum 1f1a2ea64e5837f379bfc6cb6727999d3ff6ff741b2eaa25a763901354d0b4bcb1154a9a12aa17ef22c69d014078fa57bffd204a832424bb45d4c5c0e6c1ea3d +binfiles arch=armhf-linux size=1 + bin/armhf-linux/platex + +name platex.i386-cygwin +category Package +revision 22874 +shortdesc i386-cygwin files of platex +containersize 320 +containerchecksum 567502a3ff367d0aa98771c0fa295ac7bcfd6f11fb67bfaae06c3b61149eb42a877cb0422d212158c6d065c8f959f9e000eb8c6eee68ff59ad1076cb8b38669f +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/platex + +name platex.i386-freebsd +category Package +revision 22826 +shortdesc i386-freebsd files of platex +containersize 320 +containerchecksum 0db13ab2c07f65a8d5f34782169da49a48410764a94a7fcfaba177346def1c14f0e88a1c486e989a9aba918370750a36c73121a27917824d5c67cf35d5ae694a +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/platex + +name platex.i386-linux +category Package +revision 22859 +shortdesc i386-linux files of platex +containersize 320 +containerchecksum 0ff9ca9ea9c1e0da83ff00bcac61e8ae1848b5a614f8456596e66d67c233804d0c4965ddbe2377b067639f26c12587983bc590663f47b56136b29408b37e752d +binfiles arch=i386-linux size=1 + bin/i386-linux/platex + +name platex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of platex +containersize 320 +containerchecksum aad97bd298fc204b37891eb41b9cde67ff494bc08a5ec00e3adb9d95960021734f3ba3e651270e7884ba397dc608a9224746d61801efccd9a9beee8e8d79288b +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/platex + +name platex.i386-solaris +category Package +revision 22859 +shortdesc i386-solaris files of platex +containersize 320 +containerchecksum 3a672b77b6764726989fed68f8b2d35894064f06f43ccc4b883af29798a33303c60c36ddf02db583921bf791a9871ca60b6dd2812c9bf3d0ff2b9df48102c11e +binfiles arch=i386-solaris size=1 + bin/i386-solaris/platex + +name platex.win32 +category Package +revision 36810 +shortdesc win32 files of platex +containersize 868 +containerchecksum a7a2349a27d5e172539eaba4bdc6c46fb5807ad8c05188e759dbaf5f7e0193212ad1a482976b8e065f4cc9439f5f23f53a25c2c867f6006d147a3e8d3c663972 +binfiles arch=win32 size=1 + bin/win32/platex.exe + +name platex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of platex +containersize 328 +containerchecksum 11b86a65f746f5e8e412e61ac8e9c0617c6cd0ebe1dabd3c7d3310ab84ead296dcc1d7854315ffc970fd2444b50c00623c640226168ea02e36062e2a1cafb0ce +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/platex + +name platex.x86_64-darwin +category Package +revision 22952 +shortdesc x86_64-darwin files of platex +containersize 320 +containerchecksum 6195848f630de057b79dfae10b7703d8b65008eab80693806020fdd10f6969399ca045f4490d8ab2f8ff60bc6714419b34f57f9163b993cbbb9e8b78d563ecfc +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/platex + +name platex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of platex +containersize 328 +containerchecksum 278d9fed7e47011495c3e5ea99ae7c33959575d66c12c9c86a927ebdd3dcc08f084c9b944a498a8bca0b827f4c7a56644a31eecd76b6e62972be278e0ae6266e +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/platex + +name platex.x86_64-linux +category Package +revision 22705 +shortdesc x86_64-linux files of platex +containersize 316 +containerchecksum 39f94f003cc6b22663381c64911656ff4a82b7e55f0f4bc2845111bae62de76b7f6e77207e546d6eca1a982f647d3e8b3b33b7a4669f0ffae3c12443b2104f12 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/platex + +name platex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of platex +containersize 324 +containerchecksum 68100787d521dc2dc6b74f886cbdabaf63b86ae509851645bce49de7a22d6bee4c0b3b0e2917e5c5c12fd0087cd75191a9fcb5153d5e7bb5091614b1c41d2e7a +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/platex + +name platex.x86_64-solaris +category Package +revision 22859 +shortdesc x86_64-solaris files of platex +containersize 324 +containerchecksum df107e61e2144ffb7e3d62ebe73bd67536e55f62437b7bf701a272ee21cf28e6013809139ee4c7af3eebc6d036f0a80642f438650bb5719bd061dce150c3aec2 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/platex + +name platexcheat +category Package +revision 49557 +shortdesc A LaTeX cheat sheet, in Japanese +relocated 1 +longdesc This is a translation to Japanese of Winston Chang's LaTeX +longdesc cheat sheet (a reference sheet for writing scientific papers). +longdesc It has been adapted to Japanese standards using pLaTeX, and +longdesc also attached additional information of "standard LaTeX" +longdesc (especially about math-mode). +containersize 568 +containerchecksum 1409c7311eaa82811236d869b04e9f55fa2a96804faacef4820072a4813055e70ecce0e8c155ec19016f1ed4e57bebe0b362c5457d1258f317a40fc475d42aff +doccontainersize 531356 +doccontainerchecksum bfe47b947a915099de15e5519a3aff201b327c31d29c1966d4fd3e9b73581792d918b461ed1944aaf5e8a5eb7956c38579a3fd972f189b1e3abb903c7c904cbe +docfiles size=151 + RELOC/doc/latex/platexcheat/LICENSE + RELOC/doc/latex/platexcheat/README.md details="Readme" + RELOC/doc/latex/platexcheat/platexsheet-jsclasses.pdf + RELOC/doc/latex/platexcheat/platexsheet-jsclasses.tex + RELOC/doc/latex/platexcheat/platexsheet.pdf details="The LaTeX cheat sheet" language="ja" + RELOC/doc/latex/platexcheat/platexsheet.tex + RELOC/doc/latex/platexcheat/sample-jsclasses.pdf details="Example of use" language="ja" + RELOC/doc/latex/platexcheat/sample-jsclasses.tex + RELOC/doc/latex/platexcheat/sample.pdf + RELOC/doc/latex/platexcheat/sample.tex +catalogue-contact-repository https://github.com/wtsnjp/platexcheat +catalogue-ctan /info/latexcheat/platexcheat +catalogue-date 2019-01-04 05:30:11 +0100 +catalogue-license mit +catalogue-topics tut-cheat +catalogue-version 3.1 + +name plautopatch +category Package +revision 49288 +shortdesc Automated patches for pLaTeX/upLaTeX +relocated 1 +longdesc Japanese pLaTeX/upLaTeX formats and packages often conflict +longdesc with other LaTeX packages which are unaware of pLaTeX/upLaTeX. +longdesc In the worst case, such packages throw a fatal error or end up +longdesc with a wrong output. The goal of this package is that there +longdesc should be no need to worry about such incompatibilities, +longdesc because specific patches are loaded automatically whenever +longdesc necessary. This helps not only to simplify source files, but +longdesc also to make the appearance of working pLaTeX/upLaTeX sources +longdesc similar to those of ordinary LaTeX ones. +containersize 4980 +containerchecksum 2a6b3563ee83dab70bb1c78f3036bb2209f0b3ed39937b56b83995f005d5ce1ea384b9e7959d65f4727acd6f5f7dc56547f1df785ce4db096a2d5d52ca37fdf9 +doccontainersize 136648 +doccontainerchecksum 9baa37d23558e594c2ae7e470a15c636d935e0b2bfc8ea8f266a11cacdf2f6e5249f433acd5bf0d2ea66bcaecac75ca6bd5e013ae9ead1f79433a89a9c716a0f +docfiles size=41 + RELOC/doc/latex/plautopatch/LICENSE + RELOC/doc/latex/plautopatch/Makefile + RELOC/doc/latex/plautopatch/README.md details="Readme" + RELOC/doc/latex/plautopatch/plautopatch-ja.pdf details="Package documentation (Japanese)" language="ja" + RELOC/doc/latex/plautopatch/plautopatch-ja.tex + RELOC/doc/latex/plautopatch/plautopatch.pdf details="Package documentation (English)" + RELOC/doc/latex/plautopatch/plautopatch.tex +runfiles size=9 + RELOC/tex/latex/plautopatch/plarydshln.sty + RELOC/tex/latex/plautopatch/plautopatch.sty + RELOC/tex/latex/plautopatch/pldocverb.sty + RELOC/tex/latex/plautopatch/plextarydshln.sty + RELOC/tex/latex/plautopatch/plextcolortbl.sty + RELOC/tex/latex/plautopatch/plsiunitx.sty + RELOC/tex/latex/plautopatch/pxpdfpages.sty + RELOC/tex/latex/plautopatch/pxpgfrcs.sty +catalogue-contact-repository https://github.com/aminophen/plautopatch +catalogue-ctan /language/japanese/plautopatch +catalogue-date 2018-11-25 16:57:26 +0100 +catalogue-license bsd3 +catalogue-topics japanese debug-supp bugfix +catalogue-version 0.9b + +name play +category Package +revision 15878 +shortdesc Typeset drama using LaTeX +relocated 1 +longdesc A class and style file that supports the typesetting of plays, +longdesc including options for line numbering. +containersize 2196 +containerchecksum 040468367a783e7bc49dd4b51e22a72c41ff2985a52e2551b3be6780767e17c8d11178f097cc66f5683033eb03cc2ebc2c08c1f4477daa7b8f9e22d8a40dd385 +doccontainersize 552 +doccontainerchecksum 97c882b12ab350c5b0fe066e04ea7c2c136b1dc7ca29e51d8f89ed695769c9ef1ed255c3c109ff71838bde91d25167a398230cd25809f1374ca306fbd9ae68fa +docfiles size=1 + RELOC/doc/latex/play/README details="Readme" +srccontainersize 4972 +srccontainerchecksum 3bf9b5449611ce72af26a68c99a7ea813c7eebce59336d5c7bf65da1a870e6c26238f803ba8e07ee2a084826e6bee7ec819a919e7abbbbf11946f611cab17a03 +srcfiles size=4 + RELOC/source/latex/play/play.dtx + RELOC/source/latex/play/play.ins +runfiles size=3 + RELOC/tex/latex/play/play.cls + RELOC/tex/latex/play/play.sty +catalogue-also xmlplay +catalogue-ctan /macros/latex/contrib/play +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics drama-script + +name playfair +category Package +revision 34236 +shortdesc Playfair Display fonts with LaTeX support +relocated 1 +longdesc Playfair Display is well suited for titling and headlines. It +longdesc has an extra large x-height and short descenders. It can be set +longdesc with no leading if space is tight, for instance in news +longdesc headlines, or for stylistic effect in titles. Capitals are +longdesc extra short, and only very slightly heavier than the lowercase +longdesc characters. This helps achieve a more even typographical colour +longdesc when typesetting proper nouns and initialisms. +execute addMap PlayfairDisplay.map +containersize 1936564 +containerchecksum a7f653c182f574aa0d51abd50e675718c3a5a41e4f3356c073698cc3aafc09a84129e4555eda54adf73f0b905c8449dab5c751869df859abe7e059bee21cc121 +doccontainersize 97632 +doccontainerchecksum 8bbc056c0aa236d5a34913ce085f24058e24e0db35db88d0ad2c3e059695e8da1275e80811cda59245a5478baac31ff29f5bc49698fa24c99c93fe9b191bcf98 +docfiles size=30 + RELOC/doc/fonts/playfair/OFL.txt + RELOC/doc/fonts/playfair/Playfair_Display_A4_specimen.pdf + RELOC/doc/fonts/playfair/README details="Readme" + RELOC/doc/fonts/playfair/playfair-samples.pdf details="Font samples" + RELOC/doc/fonts/playfair/playfair-samples.tex +runfiles size=1224 + RELOC/fonts/enc/dvips/playfair/plf_5ewtu2.enc + RELOC/fonts/enc/dvips/playfair/plf_6bqc7d.enc + RELOC/fonts/enc/dvips/playfair/plf_723q3k.enc + RELOC/fonts/enc/dvips/playfair/plf_aehru5.enc + RELOC/fonts/enc/dvips/playfair/plf_apfun2.enc + RELOC/fonts/enc/dvips/playfair/plf_c2cruh.enc + RELOC/fonts/enc/dvips/playfair/plf_cgf2ku.enc + RELOC/fonts/enc/dvips/playfair/plf_ev34te.enc + RELOC/fonts/enc/dvips/playfair/plf_ilriiw.enc + RELOC/fonts/enc/dvips/playfair/plf_j6ohis.enc + RELOC/fonts/enc/dvips/playfair/plf_ouuek2.enc + RELOC/fonts/enc/dvips/playfair/plf_qjvs44.enc + RELOC/fonts/enc/dvips/playfair/plf_rmgfzq.enc + RELOC/fonts/enc/dvips/playfair/plf_tcbmed.enc + RELOC/fonts/enc/dvips/playfair/plf_tff5oq.enc + RELOC/fonts/enc/dvips/playfair/plf_ujy7vm.enc + RELOC/fonts/enc/dvips/playfair/plf_vgw77z.enc + RELOC/fonts/enc/dvips/playfair/plf_vw64ij.enc + RELOC/fonts/enc/dvips/playfair/plf_ybdqh4.enc + RELOC/fonts/enc/dvips/playfair/plf_zcb4ya.enc + RELOC/fonts/map/dvips/playfair/PlayfairDisplay.map + RELOC/fonts/opentype/public/playfair/PlayfairDisplay-Black.otf + RELOC/fonts/opentype/public/playfair/PlayfairDisplay-BlackItalic.otf + RELOC/fonts/opentype/public/playfair/PlayfairDisplay-Bold.otf + RELOC/fonts/opentype/public/playfair/PlayfairDisplay-BoldItalic.otf + RELOC/fonts/opentype/public/playfair/PlayfairDisplay-Italic.otf + RELOC/fonts/opentype/public/playfair/PlayfairDisplay-Regular.otf + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-sc-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-ts1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-sc-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-ts1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-sup-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-sup-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-sup-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-sup-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Black-sup-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-sup-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/playfair/PlayfairDisplay-Regular-sup-t1.tfm + RELOC/fonts/type1/public/playfair/PlayfairDisplay-Black.pfb + RELOC/fonts/type1/public/playfair/PlayfairDisplay-BlackItalic.pfb + RELOC/fonts/type1/public/playfair/PlayfairDisplay-Bold.pfb + RELOC/fonts/type1/public/playfair/PlayfairDisplay-BoldItalic.pfb + RELOC/fonts/type1/public/playfair/PlayfairDisplay-Italic.pfb + RELOC/fonts/type1/public/playfair/PlayfairDisplay-Regular.pfb + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-lf-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-lf-sc-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-lf-sc-ot1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-lf-sc-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-lf-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-lf-ts1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-osf-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-osf-sc-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-osf-sc-ot1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-osf-sc-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-osf-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-osf-ts1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-sup-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Black-sup-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-lf-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-lf-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-lf-ts1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-osf-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-osf-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-osf-ts1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-sup-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-sup-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-lf-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-lf-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-lf-ts1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-osf-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-osf-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-osf-ts1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-sup-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Bold-sup-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-lf-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-lf-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-lf-ts1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-osf-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-osf-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-osf-ts1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-sup-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Italic-sup-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-lf-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-lf-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-lf-ts1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-osf-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-osf-t1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-osf-ts1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-sup-ly1.vf + RELOC/fonts/vf/public/playfair/PlayfairDisplay-Regular-sup-t1.vf + RELOC/tex/latex/playfair/LY1PlayfairDisplay-LF.fd + RELOC/tex/latex/playfair/LY1PlayfairDisplay-OsF.fd + RELOC/tex/latex/playfair/LY1PlayfairDisplay-Sup.fd + RELOC/tex/latex/playfair/OT1PlayfairDisplay-LF.fd + RELOC/tex/latex/playfair/OT1PlayfairDisplay-OsF.fd + RELOC/tex/latex/playfair/OT1PlayfairDisplay-Sup.fd + RELOC/tex/latex/playfair/PlayfairDisplay.sty + RELOC/tex/latex/playfair/T1PlayfairDisplay-LF.fd + RELOC/tex/latex/playfair/T1PlayfairDisplay-OsF.fd + RELOC/tex/latex/playfair/T1PlayfairDisplay-Sup.fd + RELOC/tex/latex/playfair/TS1PlayfairDisplay-LF.fd + RELOC/tex/latex/playfair/TS1PlayfairDisplay-OsF.fd +catalogue-ctan /fonts/playfair +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license ofl +catalogue-topics font font-otf font-type1 font-display + +name plex +category Package +revision 50946 +shortdesc Support for IBM Plex fonts +relocated 1 +longdesc The package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the IBM Plex families of fonts. Serif, Sans and +longdesc Mono families are available in eight weights: Regular, Light, +longdesc ExtraLight, Thin, Bold, Text, Medium and SemiBold (with +longdesc corresponding italics). +execute addMap plex.map +containersize 10303584 +containerchecksum e690b707e12c464fdda1fae15fd9cdf8e7404497cf421525340cd207b3c709d133bb0f3e47b31280c4d507b28427ac3478315ebec1e5eb9da094f4146bf8f3f9 +doccontainersize 70776 +doccontainerchecksum 97b962468603d901304c391807982f0a9668b71b2403952a78af92a841e644d0dee3420e48eb5c6b11ac05b4e692b90faabd2c2fcd746bbf5ec77a5744434493 +docfiles size=21 + RELOC/doc/fonts/plex/LICENSE.txt + RELOC/doc/fonts/plex/README details="Readme" + RELOC/doc/fonts/plex/plex-samples.pdf details="Font samples" + RELOC/doc/fonts/plex/plex-samples.tex +runfiles size=6355 + RELOC/fonts/enc/dvips/plex/plx_2xdrnb.enc + RELOC/fonts/enc/dvips/plex/plx_2xxia2.enc + RELOC/fonts/enc/dvips/plex/plx_37ruie.enc + RELOC/fonts/enc/dvips/plex/plx_3xjvyq.enc + RELOC/fonts/enc/dvips/plex/plx_47vtnn.enc + RELOC/fonts/enc/dvips/plex/plx_6tuc4c.enc + RELOC/fonts/enc/dvips/plex/plx_ankagf.enc + RELOC/fonts/enc/dvips/plex/plx_be3ach.enc + RELOC/fonts/enc/dvips/plex/plx_gc6afx.enc + RELOC/fonts/enc/dvips/plex/plx_h3p6bl.enc + RELOC/fonts/enc/dvips/plex/plx_imandq.enc + RELOC/fonts/enc/dvips/plex/plx_lfnaaq.enc + RELOC/fonts/enc/dvips/plex/plx_lxmhqh.enc + RELOC/fonts/enc/dvips/plex/plx_mlp3up.enc + RELOC/fonts/enc/dvips/plex/plx_mnk4s5.enc + RELOC/fonts/enc/dvips/plex/plx_nercej.enc + RELOC/fonts/enc/dvips/plex/plx_nhokty.enc + RELOC/fonts/enc/dvips/plex/plx_osbjcf.enc + RELOC/fonts/enc/dvips/plex/plx_qdoxri.enc + RELOC/fonts/enc/dvips/plex/plx_tibbib.enc + RELOC/fonts/enc/dvips/plex/plx_tqdb5o.enc + RELOC/fonts/enc/dvips/plex/plx_wot2a6.enc + RELOC/fonts/enc/dvips/plex/plx_x4zmfh.enc + RELOC/fonts/enc/dvips/plex/plx_xl2q4z.enc + RELOC/fonts/map/dvips/plex/plex.map + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-Bold.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-BoldItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-ExtraLight.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-ExtraLightItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-Italic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-Light.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-LightItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-Medium.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-MediumItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-Regular.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-SemiBold.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-SemiBoldItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-Text.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-TextItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-Thin.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexMono-ThinItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-Bold.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-BoldItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-ExtraLight.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-ExtraLightItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-Italic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-Light.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-LightItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-Medium.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-MediumItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-Regular.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-SemiBold.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-SemiBoldItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-Text.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-TextItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-Thin.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSans-ThinItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-Bold.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-BoldItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-ExtraLight.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-ExtraLightItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-Italic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-Light.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-LightItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-Medium.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-MediumItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-Regular.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-SemiBold.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-SemiBoldItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-Text.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-TextItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-Thin.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSansCondensed-ThinItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-Bold.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-BoldItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-ExtraLight.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-ExtraLightItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-Italic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-Light.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-LightItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-Medium.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-MediumItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-Regular.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-SemiBold.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-SemiBoldItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-Text.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-TextItalic.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-Thin.otf + RELOC/fonts/opentype/ibm/plex/IBMPlexSerif-ThinItalic.otf + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Light-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Text-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-TextItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexMono-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Light-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Text-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-TextItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSans-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Light-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Text-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-TextItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSansCond-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Light-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Text-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-TextItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-sup-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-sup-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-sup-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-sup-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-sup-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-sup-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-sup-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-tlf-lgr--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-tlf-lgr.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-tlf-ly1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-tlf-ly1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-tlf-ot1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-tlf-t1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-tlf-t1.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-tlf-ts1--base.tfm + RELOC/fonts/tfm/ibm/plex/IBMPlexSerif-tlf-ts1.tfm + RELOC/fonts/type1/ibm/plex/IBMPlexMono-Bold.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-BoldItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-ExtraLight.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-ExtraLightItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-Italic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-Light.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-LightItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-Medium.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-MediumItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-Regular.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-SemiBold.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-SemiBoldItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-Text.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-TextItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-Thin.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono-ThinItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexMono.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-Bold.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-BoldItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-ExtraLight.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-ExtraLightItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-Italic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-Light.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-LightItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-Medium.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-MediumItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-Regular.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-SemiBold.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-SemiBoldItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-Text.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-TextItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-Thin.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans-ThinItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSans.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-Bold.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-BoldItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-ExtraLight.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-ExtraLightItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-Italic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-Light.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-LightItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-Medium.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-MediumItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-Regular.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-SemiBold.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-SemiBoldItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-Text.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-TextItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-Thin.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond-ThinItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSansCond.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-Bold.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-BoldItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-ExtraLight.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-ExtraLightItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-Italic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-Light.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-LightItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-Medium.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-MediumItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-Regular.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-SemiBold.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-SemiBoldItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-Text.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-TextItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-Thin.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif-ThinItalic.pfb + RELOC/fonts/type1/ibm/plex/IBMPlexSerif.pfb + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Bold-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Bold-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Bold-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Bold-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Bold-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Bold-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Bold-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-BoldItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-BoldItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-BoldItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ExtraLight-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ExtraLight-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ExtraLight-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ExtraLightItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ExtraLightItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ExtraLightItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ExtraLightItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Italic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Italic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Italic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Italic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Italic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Italic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Italic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Light-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Light-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Light-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Light-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Light-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Light-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Light-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-LightItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-LightItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-LightItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-LightItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-LightItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Medium-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Medium-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Medium-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Medium-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Medium-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Medium-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Medium-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-MediumItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-MediumItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-MediumItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-SemiBold-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-SemiBold-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-SemiBold-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-SemiBold-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-SemiBold-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-SemiBoldItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-SemiBoldItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Text-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Text-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Text-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Text-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Text-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Text-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Text-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-TextItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-TextItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-TextItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-TextItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-TextItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-TextItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-TextItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Thin-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Thin-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Thin-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Thin-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Thin-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Thin-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-Thin-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ThinItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ThinItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ThinItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ThinItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexMono-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Bold-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Bold-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Bold-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Bold-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Bold-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Bold-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Bold-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-BoldItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-BoldItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-BoldItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLight-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLight-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLight-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLightItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLightItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Italic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Italic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Italic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Italic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Italic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Italic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Italic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Light-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Light-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Light-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Light-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Light-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Light-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Light-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-LightItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-LightItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-LightItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-LightItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-LightItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Medium-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Medium-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Medium-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Medium-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Medium-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Medium-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Medium-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-MediumItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-MediumItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-MediumItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBold-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBold-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBold-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBold-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBold-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBoldItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Text-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Text-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Text-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Text-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Text-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Text-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Text-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-TextItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-TextItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-TextItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-TextItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-TextItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-TextItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-TextItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Thin-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Thin-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Thin-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Thin-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Thin-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Thin-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-Thin-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ThinItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ThinItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ThinItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ThinItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSans-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Bold-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Bold-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Bold-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Bold-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Bold-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Bold-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Bold-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-BoldItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-BoldItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLight-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLight-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLightItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLightItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Italic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Italic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Italic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Italic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Italic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Italic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Italic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Light-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Light-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Light-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Light-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Light-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Light-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Light-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-LightItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-LightItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-LightItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-LightItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-LightItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Medium-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Medium-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Medium-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Medium-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Medium-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Medium-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Medium-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-MediumItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-MediumItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBold-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBold-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBold-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBold-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBold-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBoldItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Text-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Text-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Text-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Text-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Text-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Text-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Text-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-TextItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-TextItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-TextItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-TextItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-TextItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-TextItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-TextItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Thin-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Thin-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Thin-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Thin-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Thin-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Thin-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-Thin-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ThinItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ThinItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ThinItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSansCond-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Bold-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Bold-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Bold-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Bold-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Bold-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Bold-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Bold-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-BoldItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-BoldItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-BoldItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ExtraLight-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ExtraLight-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ExtraLight-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ExtraLightItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ExtraLightItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ExtraLightItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ExtraLightItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Italic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Italic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Italic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Italic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Italic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Italic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Italic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Light-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Light-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Light-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Light-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Light-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Light-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Light-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-LightItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-LightItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-LightItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-LightItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-LightItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Medium-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Medium-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Medium-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Medium-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Medium-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Medium-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Medium-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-MediumItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-MediumItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-MediumItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-SemiBold-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-SemiBold-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-SemiBold-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-SemiBold-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-SemiBold-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-SemiBoldItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-SemiBoldItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Text-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Text-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Text-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Text-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Text-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Text-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Text-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-TextItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-TextItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-TextItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-TextItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-TextItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-TextItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-TextItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Thin-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Thin-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Thin-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Thin-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Thin-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Thin-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-Thin-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ThinItalic-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ThinItalic-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ThinItalic-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ThinItalic-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-sup-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-sup-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-sup-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-tlf-lgr.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-tlf-ly1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-tlf-t1.vf + RELOC/fonts/vf/ibm/plex/IBMPlexSerif-tlf-ts1.vf + RELOC/tex/latex/plex/LGRIBMPlexSans-Sup.fd + RELOC/tex/latex/plex/LGRIBMPlexSans-TLF.fd + RELOC/tex/latex/plex/LY1IBMPlexMono-Sup.fd + RELOC/tex/latex/plex/LY1IBMPlexMono-TLF.fd + RELOC/tex/latex/plex/LY1IBMPlexSans-Sup.fd + RELOC/tex/latex/plex/LY1IBMPlexSans-TLF.fd + RELOC/tex/latex/plex/LY1IBMPlexSerif-Sup.fd + RELOC/tex/latex/plex/LY1IBMPlexSerif-TLF.fd + RELOC/tex/latex/plex/OT1IBMPlexMono-Sup.fd + RELOC/tex/latex/plex/OT1IBMPlexMono-TLF.fd + RELOC/tex/latex/plex/OT1IBMPlexSans-Sup.fd + RELOC/tex/latex/plex/OT1IBMPlexSans-TLF.fd + RELOC/tex/latex/plex/OT1IBMPlexSerif-Sup.fd + RELOC/tex/latex/plex/OT1IBMPlexSerif-TLF.fd + RELOC/tex/latex/plex/T1IBMPlexMono-Sup.fd + RELOC/tex/latex/plex/T1IBMPlexMono-TLF.fd + RELOC/tex/latex/plex/T1IBMPlexSans-Sup.fd + RELOC/tex/latex/plex/T1IBMPlexSans-TLF.fd + RELOC/tex/latex/plex/T1IBMPlexSerif-Sup.fd + RELOC/tex/latex/plex/T1IBMPlexSerif-TLF.fd + RELOC/tex/latex/plex/TS1IBMPlexMono-TLF.fd + RELOC/tex/latex/plex/TS1IBMPlexSans-TLF.fd + RELOC/tex/latex/plex/TS1IBMPlexSerif-TLF.fd + RELOC/tex/latex/plex/plex-mono.sty + RELOC/tex/latex/plex/plex-sans.sty + RELOC/tex/latex/plex/plex-serif.sty +catalogue-contact-bugs https://github.com/IBM/plex/issues/new +catalogue-contact-home https://github.com/IBM/plex +catalogue-contact-repository https://github.com/IBM/plex +catalogue-ctan /fonts/plex +catalogue-date 2019-04-23 16:48:05 +0200 +catalogue-license ofllppl +catalogue-topics font font-proportional font-body font-mono font-sans font-type1 font-otf font-t1enc + +name plex-otf +category Package +revision 47562 +shortdesc Support for the OpenType font IBM Plex +relocated 1 +longdesc This package supports the free otf fonts from the IBM Plex +longdesc project which are available from GitHub or already part of your +longdesc system (Windows/Linux/...). This package supports only XeLaTeX +longdesc or LuaLaTeX; for pdfLaTeX use plex-mono.sty, plex-sans.sty, +longdesc and/or plex-serif.sty from the plex package. IBM Plex has no +longdesc math symbols. You will have to use one of the existing math +longdesc fonts if you need them. +containersize 3544 +containerchecksum 07e49e5dcbef60efd3e3050259f10b75bfbb83128412a1e60a31c2f17983ec73d055e5f6e117ec2673f9f0e5db716471fefb312be50cc4475761aa6ad895e9da +doccontainersize 545036 +doccontainerchecksum 4af950e1a3a384a1c738c6fa1bad629010ee2718840094500976b6883c2e3120cd070631463f90610c60877c0dea771c9c7e4f8f8c091aaf1f29b15b8400de96 +docfiles size=197 + RELOC/doc/fonts/plex-otf/Changes + RELOC/doc/fonts/plex-otf/Examples/plex-otf-1.tex + RELOC/doc/fonts/plex-otf/Examples/plex-otf-10.tex + RELOC/doc/fonts/plex-otf/Examples/plex-otf-11.tex + RELOC/doc/fonts/plex-otf/Examples/plex-otf-2.tex + RELOC/doc/fonts/plex-otf/Examples/plex-otf-3.tex + RELOC/doc/fonts/plex-otf/Examples/plex-otf-4.tex + RELOC/doc/fonts/plex-otf/Examples/plex-otf-5.tex + RELOC/doc/fonts/plex-otf/Examples/plex-otf-6.tex + RELOC/doc/fonts/plex-otf/Examples/plex-otf-7.tex + RELOC/doc/fonts/plex-otf/Examples/plex-otf-8.tex + RELOC/doc/fonts/plex-otf/Examples/plex-otf-9.tex + RELOC/doc/fonts/plex-otf/README.md details="Readme" + RELOC/doc/fonts/plex-otf/plex-otf-doc.bib + RELOC/doc/fonts/plex-otf/plex-otf-doc.fonts + RELOC/doc/fonts/plex-otf/plex-otf-doc.pdf details="Package documentation" + RELOC/doc/fonts/plex-otf/plex-otf-doc.tex +runfiles size=6 + RELOC/tex/latex/plex-otf/plex-otf.sty +catalogue-also plex +catalogue-ctan /fonts/plex-otf +catalogue-date 2018-04-13 20:34:33 +0200 +catalogue-license lppl1.3 +catalogue-topics font-serif font-sans font-proportional font-mono font-otf +catalogue-version 0.07a + +name plipsum +category Package +revision 30353 +shortdesc 'Lorem ipsum' for Plain TeX developers +relocated 1 +longdesc The package provides a paragraph generator designed for use in +longdesc Plain TeX documents. The paragraphs generated contain many +longdesc 'f-groups' (ff, fl etc.) so the text can act as a test of the +longdesc ligatures of the font in use. +containersize 33632 +containerchecksum 203b9cf56acbc53b2a3c195ba0a27728c93db91bd4be48441e61967fd0488cbc4ef96485ff0b567be64ddba798bb44308cb7cfabd2a2ac89d294203d93ff4d29 +doccontainersize 268364 +doccontainerchecksum 6d5c77102abf42304f8480f74a073ba25b8cf317c3a6cf4c22af6035b17b07ac213866a10ead2a53d033b214e4a6d6e642d043d847e61fb165aa8a02ef90f7b3 +docfiles size=101 + RELOC/doc/plain/plipsum/README details="Readme" + RELOC/doc/plain/plipsum/compile.sh + RELOC/doc/plain/plipsum/plipsum-doc.pdf details="Package documentation" + RELOC/doc/plain/plipsum/plipsum.nw + RELOC/doc/plain/plipsum/pliptest.tex + RELOC/doc/plain/plipsum/stripc +runfiles size=37 + RELOC/tex/plain/plipsum/plipsum.tex +catalogue-also lipsum +catalogue-ctan /macros/plain/contrib/plipsum +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics macro-supp dummy-gen +catalogue-version 4.3 + +name plnfss +category Package +revision 15878 +shortdesc Font selection for Plain TeX +relocated 1 +longdesc Plnfss is a set of macros to provide easy font access (somewhat +longdesc similar to NFSS but with some limitations) with Plain TeX. +longdesc Plnfss can automatically make use of PSNFSS fd files, i.e., +longdesc when an Adobe Type 1 is used the relevant fd file will be +longdesc loaded automatically. For cmr-like fonts (ec, vnr, csr or plr +longdesc fonts), a special format called pfd (plain fd) is required and +longdesc must be loaded manually. See ot1cmr.pfd for further +longdesc information. +containersize 6652 +containerchecksum 0ae352953c5981b791379d9da9b61ad8837c22053f3371f351152078f4dce6b12615ed771987115cc094613ddeb0c275568e1d7404f321516418d218d9c68473 +doccontainersize 7696 +doccontainerchecksum 9569a4f77dead68ad8c76794f03e6ffe147e1801324291fc13487b05051fcb7f307971e65edf66024c169411cee9b2940eb4daac4d073773e67f2f303b364870 +docfiles size=7 + RELOC/doc/plain/plnfss/LPPL.txt + RELOC/doc/plain/plnfss/plnfss.txt + RELOC/doc/plain/plnfss/test-plnfss.tex +runfiles size=17 + RELOC/tex/plain/plnfss/MIKmathf.tex + RELOC/tex/plain/plnfss/ams.pfd + RELOC/tex/plain/plnfss/il2cm.pfd + RELOC/tex/plain/plnfss/il2cmr.pfd + RELOC/tex/plain/plnfss/ly1lm.pfd + RELOC/tex/plain/plnfss/ot1cm.pfd + RELOC/tex/plain/plnfss/ot1cmr.pfd + RELOC/tex/plain/plnfss/ot4cm.pfd + RELOC/tex/plain/plnfss/plnfss.tex + RELOC/tex/plain/plnfss/qxlm.pfd + RELOC/tex/plain/plnfss/t1lm.pfd + RELOC/tex/plain/plnfss/t5cm.pfd + RELOC/tex/plain/plnfss/t5cmr.pfd + RELOC/tex/plain/plnfss/t5lm.pfd + RELOC/tex/plain/plnfss/ts1lm.pfd +catalogue-also ofs font-selection fontch +catalogue-ctan /macros/plain/plnfss +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font-sel plain-ext +catalogue-version 1.1 + +name plstmary +category Package +revision 31088 +shortdesc St. Mary's Road font support for plain TeX +relocated 1 +longdesc The package provides commands to produce all the symbols of the +longdesc St Mary's Road fonts, in a Plain TeX environment. +containersize 2224 +containerchecksum 72d54627fd8a10215ae9fe417423c46240997f865da8b4f4b976290ded7fbb0360477db27f140bed0ceb4dfc57c42a23fe5ce780ec5eeebb9b3e30b372adfe9e +doccontainersize 152416 +doccontainerchecksum 6e5c425b7d484bbe187eef030fbc9d6a0ad50d6d8e22c5f08d3762cf8082b434de8a4c5d13251d90a016715c9a85aa82dd2637abb6e17a6973a08514baeef7fd +docfiles size=41 + RELOC/doc/plain/plstmary/README details="Readme" + RELOC/doc/plain/plstmary/plstmary-doc.pdf details="Package documentation and font tables" + RELOC/doc/plain/plstmary/plstmary-doc.tex +runfiles size=2 + RELOC/tex/plain/plstmary/stmary.tex +catalogue-ctan /macros/plain/contrib/plstmary +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics font-supp-symbol +catalogue-version 0.5c + +name plweb +category Package +revision 15878 +catalogue pl +shortdesc Literate Programming for Prolog with LaTeX +relocated 1 +longdesc Instead of having to transform the common source into program +longdesc or documentation, the central idea was to develop a method to +longdesc have one common source which can be interpreted by a Prolog +longdesc system as well as by LaTeX, whether that Prolog system be +longdesc C-Prolog, Quintus-Prolog, or ECLiPSe. +containersize 3872 +containerchecksum 1899a3498d10950f67d24d2d7bf0488cd8867bd862960fa892581137bb1fb3426dea9e193f8993ffa93df11684dbd1f25bc79a98489317998936ab4186e9a22d +doccontainersize 104072 +doccontainerchecksum 9a510c4fd534c9451863a47fb8fa3911cf5199b295b1e3e2739cfc37ca0351d28fa1876e5456cf05ac7cc05f9f60761578ba6d77841ca575908cf4f0c9f0e3bd +docfiles size=34 + RELOC/doc/latex/plweb/README details="Readme" + RELOC/doc/latex/plweb/pl.pdf details="Package documentation" + RELOC/doc/latex/plweb/pl.tex + RELOC/doc/latex/plweb/sample.pl +srccontainersize 11832 +srccontainerchecksum 09039cddf52bb2080fa6f9dad964f267e43d04504dde81e010727f4957a4de0225b0e23c1cd9ce7222ee1ddbf0d6f1ed1405d0405cb849adda77d99086402d1f +srcfiles size=12 + RELOC/source/latex/plweb/Makefile + RELOC/source/latex/plweb/pl.dtx + RELOC/source/latex/plweb/pl.ins +runfiles size=5 + RELOC/tex/latex/plweb/pcode.sty + RELOC/tex/latex/plweb/pl.cfg + RELOC/tex/latex/plweb/pl.sty +catalogue-ctan /macros/latex/contrib/gene/pl +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics litprog +catalogue-version 3.0 + +name pm-isomath +category Package +revision 46402 +shortdesc Poor man ISO math for pdfLaTeX users +relocated 1 +longdesc This small package realizes a poor man approximation of the ISO +longdesc regulations for physical sciences and technology. Contrary to +longdesc other more elegant solutions, it does not load any math +longdesc alphabet, since pdfLaTeX can use only a maximum of such +longdesc alphabets. The necessary user macros are defined for typsetting +longdesc common math symbols that require specia ISO treatement. +containersize 2560 +containerchecksum 2ca05438d8a9e4b2a9d1e4a9232071d34a915d9f93cdd865191e350b128b9ddbc9f0af67d76eb49ec2b6f2a1485a5a792850f0abbe59de0ba4f50c0c10b89a0a +doccontainersize 595104 +doccontainerchecksum 76876cffd5c59b2ca74901c5c83e364c0c7982b947efd869f82ba801298f5b57d84f292015c8da28a3e49aada42eeea9c35d11660c3b61abd0ccfe31708e8d9c +docfiles size=147 + RELOC/doc/latex/pm-isomath/README details="Readme" + RELOC/doc/latex/pm-isomath/manifest.txt + RELOC/doc/latex/pm-isomath/pm-isomath.pdf details="Package documentation" +srccontainersize 15812 +srccontainerchecksum 55976f387b8a2ae1caae8d340abb37ad1187efd4017a29243c474e8d9804ed0bf83a7206992dc2428a229a0bba1cda60b2b5e72235a79cbdff6e47361e03f814 +srcfiles size=12 + RELOC/source/latex/pm-isomath/pm-isomath.dtx +runfiles size=2 + RELOC/tex/latex/pm-isomath/pm-isomath.sty +catalogue-ctan /macros/latex/contrib/pm-isomath +catalogue-date 2018-01-21 19:26:54 +0100 +catalogue-license lppl1.3c +catalogue-topics maths physics +catalogue-version 1.0.04 + +name pmgraph +category Package +revision 15878 +shortdesc "Poor man's" graphics +relocated 1 +longdesc A set of extensions to LaTeX picture environment, including a +longdesc wider range of vectors, and a lot more box frame styles. +containersize 10064 +containerchecksum b6e9f00789ad102b6cdcfb0fe48e5ca4f6976a7c207088c0c3e8b0c2d4fa376bbb932500d42133571a6e18747615c77eb6df2b4872ba86f853e3069ef198a671 +doccontainersize 129312 +doccontainerchecksum 35f45f43c95264d4dbac5d12a71270fd15280f9008d204e12ab0a3bc6a62939e6de87233c94eeb7cf9627464d5f383c3d8c2cdeaed6eed9473a3e5fe380cc5e7 +docfiles size=50 + RELOC/doc/latex/pmgraph/COPYING + RELOC/doc/latex/pmgraph/README + RELOC/doc/latex/pmgraph/pmgraph.pdf details="Package documentation" + RELOC/doc/latex/pmgraph/pmgraph.tex +runfiles size=19 + RELOC/tex/latex/pmgraph/pmgraph.sty +catalogue-also pict2e +catalogue-ctan /macros/latex/contrib/pmgraph +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics graphics-in-tex +catalogue-version 1.0 + +name pmx +category Package +revision 46823 +shortdesc Preprocessor for MusiXTeX +longdesc PMX provides a preprocessor for MusiXTeX. pmxab builds a TeX +longdesc input file based on a .pmx input file in a much simpler +longdesc language, making most of the layout decisions by itself. It has +longdesc most of MusiXTeX's functionality, but it also permits in-line +longdesc TeX to give access to virtually all of MusiXTeX. For +longdesc proof-listening, pmxab will make a MIDI file of your score. +longdesc scor2prt is an auxiliary program that makes parts from a score. +depend pmx.ARCH +containersize 10120 +containerchecksum d8c20ad86fa90531b0bfb1e7af06492e31a4b3a46331fd36d60bf46275103672b61a419eb671a3c89f098e0c74a580df313d75001e52b27b148bf322c7df1593 +doccontainersize 560992 +doccontainerchecksum 37405b45aabf5bb6027b7849bc23f263f2ab9ffec515c3d7a2073bd7030580898b1c2171c760a9da40dcf0cd4cde890e235dde572b22e69e6a273b7bec4ebeb3 +docfiles size=227 + texmf-dist/doc/generic/pmx/README details="Readme" + texmf-dist/doc/generic/pmx/examples/barsant.pmx + texmf-dist/doc/generic/pmx/examples/dyntest.pmx + texmf-dist/doc/generic/pmx/examples/most.pmx + texmf-dist/doc/generic/pmx/examples/mwalmnd.pmx + texmf-dist/doc/generic/pmx/examples/netsoos.pmx + texmf-dist/doc/generic/pmx/examples/staffcrossall.pmx + texmf-dist/doc/generic/pmx/file600.eps + texmf-dist/doc/generic/pmx/gpl.txt + texmf-dist/doc/generic/pmx/pmx-install.pdf details="Installation details" + texmf-dist/doc/generic/pmx/pmx-install.tex + texmf-dist/doc/generic/pmx/pmx25-284.html + texmf-dist/doc/generic/pmx/pmx284.pdf details="Package manual" + texmf-dist/doc/generic/pmx/pmx284.tex + texmf-dist/doc/generic/pmx/pmxab.pdf + texmf-dist/doc/generic/pmx/ref284.pdf + texmf-dist/doc/generic/pmx/ref284.tex + texmf-dist/doc/generic/pmx/scor2prt.pdf + texmf-dist/doc/man/man1/pmxab.1 + texmf-dist/doc/man/man1/pmxab.man1.pdf + texmf-dist/doc/man/man1/scor2prt.1 + texmf-dist/doc/man/man1/scor2prt.man1.pdf +runfiles size=9 + texmf-dist/scripts/pmx/pmx2pdf.lua + texmf-dist/tex/generic/pmx/pmx.tex +catalogue-contact-home http://icking-music-archive.org/software/indexmt6.html +catalogue-ctan /support/pmx +catalogue-date 2018-02-13 05:43:04 +0100 +catalogue-license gpl2 +catalogue-topics music +catalogue-version 2.84 + +name pmx.aarch64-linux +category Package +revision 48789 +shortdesc aarch64-linux files of pmx +containersize 231204 +containerchecksum 07b37ad49eba68b328e9c54d3b8203ccaeea4a739a7c31dde055998264f18df22b47ef34655cfef03f9caa739182ec2a9425a39aee959ddc3a68923c386aaa41 +binfiles arch=aarch64-linux size=152 + bin/aarch64-linux/pmxab + bin/aarch64-linux/scor2prt + +name pmx.amd64-freebsd +category Package +revision 50445 +shortdesc amd64-freebsd files of pmx +containersize 216728 +containerchecksum 057aa367ccebcf9c4380222f8edb1c97e7c59839e7c737c7dcc400972a30236a0cb5ed286478d8f02e0d53ca84f0dfc5337707b21d156eb9bcf58976db16be5b +binfiles arch=amd64-freebsd size=155 + bin/amd64-freebsd/pmxab + bin/amd64-freebsd/scor2prt + +name pmx.amd64-netbsd +category Package +revision 48698 +shortdesc amd64-netbsd files of pmx +containersize 194276 +containerchecksum 8b64fb805d2f1627229fe00f9b24c7481e8b21376e560b43464ad02e9b02bda17e13693e4b11da17dcaa4923a8d87a8bf9dceb4cb018c16251e077ad36a023fa +binfiles arch=amd64-netbsd size=193 + bin/amd64-netbsd/pmxab + bin/amd64-netbsd/scor2prt + +name pmx.armhf-linux +category Package +revision 50150 +shortdesc armhf-linux files of pmx +containersize 209016 +containerchecksum 3f68079572b27fb22b24412b077ccb1ad198210be848fa4e7d1155b14d4c0ccc2fe21342061471d91d5a6d5170860a1f7e3e77f4cedcfe5ad8891c5c0507e23f +binfiles arch=armhf-linux size=131 + bin/armhf-linux/pmxab + bin/armhf-linux/scor2prt + +name pmx.i386-cygwin +category Package +revision 50455 +shortdesc i386-cygwin files of pmx +containersize 191232 +containerchecksum fd7fa7cb5c5b7bf11cb76ff658d70ef933d90a57cd95a56993f727f1d87cecf8679e1d4a950fa2c2fec2ee0b5dac947be1774a89d7ad042bb19464ffaebd3906 +binfiles arch=i386-cygwin size=143 + bin/i386-cygwin/pmxab.exe + bin/i386-cygwin/scor2prt.exe + +name pmx.i386-freebsd +category Package +revision 50473 +shortdesc i386-freebsd files of pmx +containersize 173508 +containerchecksum 2ee82ef9b5ed6e2d139bcc3cceaa68aa440baa7914c4b895edb00fa49b1fba04d6b9169ed581bac7b92b784e5633f5a02cf84fd65ec75e1bb1a2acd9004629a5 +binfiles arch=i386-freebsd size=128 + bin/i386-freebsd/pmxab + bin/i386-freebsd/scor2prt + +name pmx.i386-linux +category Package +revision 50281 +shortdesc i386-linux files of pmx +containersize 205812 +containerchecksum 8680d828bcdd7499de35aa2a4ee607e9397d35282486f6cc25b4c0f1a6e82ef50f52df4f9c11ea13f91a5c52746cef992932e7878cca3c6e0a5c6611c9664b61 +binfiles arch=i386-linux size=157 + bin/i386-linux/pmxab + bin/i386-linux/scor2prt + +name pmx.i386-netbsd +category Package +revision 50171 +shortdesc i386-netbsd files of pmx +containersize 154288 +containerchecksum 301bb7772fbc3fcae8f1dc11817f42c4a6c0b703b252d48e18c906eacb7e2ff46b8ae86b47304594bb9af42808ce13d93044cdc0ea83aa9189c578e2beabbce1 +binfiles arch=i386-netbsd size=170 + bin/i386-netbsd/pmxab + bin/i386-netbsd/scor2prt + +name pmx.i386-solaris +category Package +revision 46829 +shortdesc i386-solaris files of pmx +containersize 194324 +containerchecksum f07c0558bfb97f7dbfc1af41b26ffc1d5feb5b8fc54069d9aa931e555ac1313a24110ecc598d1e4886dddf44c283b945c2c2fe1b38794bfbf2ef142976463ae2 +binfiles arch=i386-solaris size=133 + bin/i386-solaris/pmxab + bin/i386-solaris/scor2prt + +name pmx.win32 +category Package +revision 50155 +shortdesc win32 files of pmx +containersize 210052 +containerchecksum e5bca123bfc68008a239a8eee715e4d8c9e7feaa5a6486f4c586d42a0b168e299a65cbd77028949f19b9398a48b2d48d41228af987609684f0f875cf21684f4c +binfiles arch=win32 size=130 + bin/win32/pmxab.exe + bin/win32/scor2prt.exe + +name pmx.x86_64-cygwin +category Package +revision 50889 +shortdesc x86_64-cygwin files of pmx +containersize 236588 +containerchecksum 1908be27f8017331103b8b376886e05cf930513776b55c8c3bed6df67760aec69ee269d95b88e61302ceba3cac79308348b14fc2d1e1f3c0fabb94ae6251f9ec +binfiles arch=x86_64-cygwin size=159 + bin/x86_64-cygwin/pmxab.exe + bin/x86_64-cygwin/scor2prt.exe + +name pmx.x86_64-darwin +category Package +revision 50150 +shortdesc x86_64-darwin files of pmx +containersize 242008 +containerchecksum ab9cb0c44eb314690a620103b08982ba78228d627849ea085da5559826599917d8b03028ea9973437543c0c4e1bd0bec7146dca1018a6cbcdc22e53a83e99362 +binfiles arch=x86_64-darwin size=159 + bin/x86_64-darwin/pmxab + bin/x86_64-darwin/scor2prt + +name pmx.x86_64-darwinlegacy +category Package +revision 50282 +shortdesc x86_64-darwinlegacy files of pmx +containersize 224240 +containerchecksum 101bab0614b29ad64bba2e01f0fb6f72f07d53fc73a4ea73c6b8b049610722f24a401ace42d457f00e0afa0a660963c607e9a0905cdcc0bafc3c9dea11aa812e +binfiles arch=x86_64-darwinlegacy size=145 + bin/x86_64-darwinlegacy/pmxab + bin/x86_64-darwinlegacy/scor2prt + +name pmx.x86_64-linux +category Package +revision 50281 +shortdesc x86_64-linux files of pmx +containersize 211112 +containerchecksum ebba33bb082c772d7be8b6138f64bcbf9167411eaa4f47c2e31d28e7257d55b8bce9f4f7f0715f1c7ed4e7bd2cd320476fe08710b535826cb52459eea9c06b62 +binfiles arch=x86_64-linux size=152 + bin/x86_64-linux/pmxab + bin/x86_64-linux/scor2prt + +name pmx.x86_64-linuxmusl +category Package +revision 47036 +shortdesc x86_64-linuxmusl files of pmx +containersize 241672 +containerchecksum 66c59c211a86ab06a1faafc7a5d9945a8479ed6d99216394aa8da7bce8401181b4f8ac7ab1bb99fc3d97bff29d74b4ce3b66ca25257a20eb0766b171fecc219b +binfiles arch=x86_64-linuxmusl size=170 + bin/x86_64-linuxmusl/pmxab + bin/x86_64-linuxmusl/scor2prt + +name pmx.x86_64-solaris +category Package +revision 46829 +shortdesc x86_64-solaris files of pmx +containersize 219020 +containerchecksum 389def2e0e77a1a20135476d2efdd84a7b5320a31fd3ca102154b828ae2ebe88d0f7dacc438b89cf0cca76dc479f0632bd5758dbee571cc4c2c82d588b3c3a6b +binfiles arch=x86_64-solaris size=158 + bin/x86_64-solaris/pmxab + bin/x86_64-solaris/scor2prt + +name pmxchords +category Package +revision 39249 +shortdesc Produce chord information to go with pmx output +longdesc The bundle supplements pmx, providing the means of typesetting +longdesc chords above the notes of a score. The bundle contains: macros +longdesc for typing the chords; a Lua script to transpose chord macros +longdesc to the required key signature; and support scripts for common +longdesc requirements. +depend pmxchords.ARCH +containersize 5552 +containerchecksum 0a8f4a88834eb22d3f11ca567f37189af7834370530c6dbca4d83482e94cfb48b128bc1290e7f3ee718bffb4df445a300ddf5081805f88002f53bcf8b434bb3c +doccontainersize 404060 +doccontainerchecksum d4075306620fa1ce037a37b9d2646d197348f6482e1286ff6fd99641a8b441b3d830a1420dbf6c025b8d11af78363b717a1acc7ea6b9e2954aa4f11ef04452ad +docfiles size=164 + texmf-dist/doc/man/man1/pmxchords.1 + texmf-dist/doc/man/man1/pmxchords.man1.pdf + texmf-dist/doc/pmxchords/README details="Readme" + texmf-dist/doc/pmxchords/chordsRef.pdf details="Reference table (English)" language="en" + texmf-dist/doc/pmxchords/chordsRef.tex + texmf-dist/doc/pmxchords/chordsRefCZ.pdf details="Reference table (Czech)" language="cs" + texmf-dist/doc/pmxchords/chordsRefCZ.tex + texmf-dist/doc/pmxchords/examples/jazz/misty/misty.pdf + texmf-dist/doc/pmxchords/examples/jazz/misty/misty.pmx + texmf-dist/doc/pmxchords/examples/jazz/schema/schema.pdf + texmf-dist/doc/pmxchords/examples/jazz/schema/schema.pmx + texmf-dist/doc/pmxchords/examples/jazz/schema/schema_full.pdf + texmf-dist/doc/pmxchords/examples/jazz/schema/schema_full.pmx + texmf-dist/doc/pmxchords/examples/noel/aj_co_to_hlasaju/aj_co_to_hlasaju.pdf + texmf-dist/doc/pmxchords/examples/noel/aj_co_to_hlasaju/aj_co_to_hlasaju.pmx + texmf-dist/doc/pmxchords/examples/noel/pasli_ovce_valasi/README details="Readme" + texmf-dist/doc/pmxchords/examples/noel/pasli_ovce_valasi/pasli_ovce_valasi.pdf + texmf-dist/doc/pmxchords/examples/noel/pasli_ovce_valasi/pasli_ovce_valasi.pmx + texmf-dist/doc/pmxchords/gpl-2.0.txt + texmf-dist/doc/pmxchords/pmxchords-install.pdf + texmf-dist/doc/pmxchords/pmxchords-install.tex +runfiles size=9 + texmf-dist/scripts/pmxchords/ChordsTr.lua + texmf-dist/scripts/pmxchords/pmxchords.lua + texmf-dist/tex/generic/pmxchords/chords.tex + texmf-dist/tex/generic/pmxchords/chordsCZ.tex +catalogue-ctan /support/pmxchords +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl2 +catalogue-topics use-lua music +catalogue-version 2.0.2 + +name pmxchords.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pmxchords +containersize 344 +containerchecksum e6d994d7f029311fec9b1660e43e66519dc3c11432bbed641945cb16507c4f64731b4e022103e1d6b99b32d1f417fecaf451d479b3faaec7a5c8654a2b18e518 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pmxchords + +name pmxchords.amd64-freebsd +category Package +revision 32405 +shortdesc amd64-freebsd files of pmxchords +containersize 344 +containerchecksum 53b80bb44936820b9b8167bc828ab93ae111339aa3822d3dd8c3e04845f289f49e873ddfc6156b62f1d1ead9bf8577f2b820f49ea717b8e913fb54549d8ab38b +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pmxchords + +name pmxchords.amd64-netbsd +category Package +revision 32405 +shortdesc amd64-netbsd files of pmxchords +containersize 344 +containerchecksum 96be11cf58ab9f3d975d122cda776e81d453abe49cd230d68080b91e45843f022e7654a256be1ec6f42e515449e6bdfd4a0b807fa19bff36c0829afe5933e932 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pmxchords + +name pmxchords.armhf-linux +category Package +revision 32405 +shortdesc armhf-linux files of pmxchords +containersize 344 +containerchecksum 1ccba68421e2513c4524929ece8108a833eacb42c673ecfe46a4a11338a4428a57d8a64d4e133bb78049f4bf98fce075011ebf06e30481fa073ac5ba819d6ba3 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pmxchords + +name pmxchords.i386-cygwin +category Package +revision 32405 +shortdesc i386-cygwin files of pmxchords +containersize 340 +containerchecksum 9f9084b188f076e14a6dfdd7444751e13137e12782eaab88daf69a50f958742b8bfa899832d7136eb2de5c335f5f5a1db63539e153e3d582ed18d29da5029f02 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pmxchords + +name pmxchords.i386-freebsd +category Package +revision 32405 +shortdesc i386-freebsd files of pmxchords +containersize 344 +containerchecksum a2a05b6c319bede29e0d924239e55c219d875b1db7001ceda8f14a4d642b914ca87871db121e1c112cdc74b48477b7f831be09e697121e8dbe6348ba218b7a3b +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pmxchords + +name pmxchords.i386-linux +category Package +revision 32405 +shortdesc i386-linux files of pmxchords +containersize 344 +containerchecksum e7018083ea7a284481a431dacd493ab3f220d01619a428dfc5f3ac9c5efbe325b9968e9f1807fa29112a802ccd949981a0ab8015a80298c7809741591b6dc1a2 +binfiles arch=i386-linux size=1 + bin/i386-linux/pmxchords + +name pmxchords.i386-netbsd +category Package +revision 32405 +shortdesc i386-netbsd files of pmxchords +containersize 344 +containerchecksum 17505d853830b9e9c108b1b7dd36157a306b52ba932db6d5827171aa76d80f956c53e710ea1b029718531cce060f446aac4be97b47798345502e228134176980 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pmxchords + +name pmxchords.i386-solaris +category Package +revision 32405 +shortdesc i386-solaris files of pmxchords +containersize 344 +containerchecksum 763a94f93bf388b7cf01d4c6ab18b727ab2985a3f99310db71095bc6fb7fcea3d8b9329b5001e8c721bd3ba785b03b13b0f611360aa42b2cc5eafd6511c7f7eb +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pmxchords + +name pmxchords.win32 +category Package +revision 32405 +shortdesc win32 files of pmxchords +containersize 684 +containerchecksum 4d5b2803a177795b2a9c845ed1950729db533b526bc7913b2d876a947d73be4e80f06033013597a3b3e72eba7554dcec807f7db59dae534fce0ba80206839873 +binfiles arch=win32 size=1 + bin/win32/pmxchords.exe + +name pmxchords.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of pmxchords +containersize 344 +containerchecksum 1c226c876590373dddf82f0cc5a81a83a646097384da5d46b40f8374a56b133314633d718b41b1146443a952d032a490d66a976152993e70fdd5dd1dc29a3822 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pmxchords + +name pmxchords.x86_64-darwin +category Package +revision 32405 +shortdesc x86_64-darwin files of pmxchords +containersize 344 +containerchecksum 43cd7f359fa0eed9384f30486b31e3e54082e877f8039de2ccc2ccf79d84f7738f900aa9c7fd6605c2cb48b2f623621313cd085c2b350c9c13d4d3cf3a8ed89e +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/pmxchords + +name pmxchords.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pmxchords +containersize 352 +containerchecksum 741f6910da977e89f6e911a2a0fae46e8b766c87abe399fd1b522c255fbbf92d72b5b9e7666401c849781a54a6620ce199e19a7b2afd257f02fb5ef68f7736ca +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pmxchords + +name pmxchords.x86_64-linux +category Package +revision 32405 +shortdesc x86_64-linux files of pmxchords +containersize 340 +containerchecksum 9ac21da158084b5d0ec8ebde603dc919f6768025add7f779b05e445c8a090a48e4db90b03f04f043d9bbc6ae030eb8dd48f8fb54a62ac4903c098c3d6f5c45a4 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pmxchords + +name pmxchords.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pmxchords +containersize 348 +containerchecksum 79b8fb067845c1417c7b90c70db93afa8ce19ea88d5b5239bad250a91e5fea1107baec5025c9ed45aa1507f2241027f0513e459b50c5105850898689b185dc12 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pmxchords + +name pmxchords.x86_64-solaris +category Package +revision 32405 +shortdesc x86_64-solaris files of pmxchords +containersize 344 +containerchecksum c598e4a8fca1688f247f23dd6bb00ff652231ec9bac25c2176059670d823e4bf2f0dff003cd86718157d136b59d2af7ccd645fe8f0c1555fd19a0879eac0731c +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pmxchords + +name pnas2009 +category Package +revision 16287 +shortdesc BibTeX style for PNAS (newer version) +relocated 1 +longdesc This style produces bibliographies in the format of +longdesc "Proceedings of the National Academy of Sciences, USA". The +longdesc style was derived from the standard unsrt.bst and adapted to +longdesc the new (2009) formatting rules. +containersize 4032 +containerchecksum 5e20303db90b2db63a3d6026db582026df8b9e910942303c952753d5dc27928ec70a8dc21edaf44cd57e04d25e93a87a5f28caa769a0425b47c78ea9d56ffa86 +runfiles size=5 + RELOC/bibtex/bst/pnas2009/pnas2009.bst +catalogue-ctan /biblio/bibtex/contrib/misc/pnas2009.bst +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics bibtex-sty +catalogue-version 1.0 + +name poemscol +category Package +revision 46433 +shortdesc Typesetting Critical Editions of Poetry +relocated 1 +longdesc The package offers LaTeX macros for typesetting critical +longdesc editions of poetry. Its features include automatic +longdesc linenumbering, generation of separate endnotes sections for +longdesc emendations, textual collations, and explanatory notes, special +longdesc marking for cases in which page breaks occur during stanza +longdesc breaks, running headers of the form 'Notes to pp. xx-yy' for +longdesc the notes sections, index of titles and first lines, and +longdesc automatic generation of a table of contents. +containersize 16604 +containerchecksum eb5beade2bf004d83aff77b3c9dcc1c05c286bd2d7084787c8b2192026eaa2b39ed6ac289ec21e5e53e42e72a8ea49efa1361cb2ad5e54fdebe16357f32bab4e +doccontainersize 692312 +doccontainerchecksum cca8150bf40af109f0b0bd43c166ba8462a97cb719572d165159281b1cdce822116baf42e48900fec10475283d6d081635cbb66d156aebfea6bb292717bf17cf +docfiles size=177 + RELOC/doc/latex/poemscol/README details="Readme" + RELOC/doc/latex/poemscol/poemscol.pdf details="Documented source" + RELOC/doc/latex/poemscol/poemscolcheatsheet.pdf details="Cheat Sheet" + RELOC/doc/latex/poemscol/poemscolcheatsheet.tex +srccontainersize 80368 +srccontainerchecksum 8764a8444c076433d62c3d6c88168053b826764eb780788464f79faca7f00ee64f48b07281206fb2f2b132923ca264ce68900bd10a9af71b62fa0ec81d153a5c +srcfiles size=101 + RELOC/source/latex/poemscol/poemscol.dtx + RELOC/source/latex/poemscol/poemscol.ins +runfiles size=31 + RELOC/tex/latex/poemscol/poemscol.sty +catalogue-also edmac ledmac ednotes verse +catalogue-ctan /macros/latex/contrib/poemscol +catalogue-date 2018-01-24 05:32:51 +0100 +catalogue-license lppl1.3 +catalogue-topics crit-ed +catalogue-version 2.97 + +name poetry +category Package +revision 50921 +shortdesc Facilities for typesetting poetry and poetical structure +relocated 1 +longdesc The poetry package provides some macros and general doodads for +longdesc typesetting poetry. There is, of course, already the excellent +longdesc verse package, and the poetrytex package provides some extra +longdesc functionality on top of it. But poetry provides much of the +longdesc same functionality in a bit of a different way, and with a few +longdesc additional abilities, such as facilities for a list of poems, +longdesc an index of first lines, and some structural commands. +containersize 3280 +containerchecksum 72e1de3a851aa2f23bdc34d4f85674ae6479affda0f6f1e9e1b500b202fd9cef823a04d12a7ef2f9fc195f867c7344f88f6990b97cb95e53d9fcf5f32d8568b2 +doccontainersize 266404 +doccontainerchecksum 8a5a23ad316171ba1f00abbf905eb767676de2777f49c33692087356462067fc9be82e50b26dfdd7492e75d9b4bf444368dc98205a294903902f7a2f5c96a90d +docfiles size=71 + RELOC/doc/latex/poetry/CHANGES + RELOC/doc/latex/poetry/README details="Readme" + RELOC/doc/latex/poetry/lppl.txt + RELOC/doc/latex/poetry/poetry.pdf details="Package documentation" +srccontainersize 17220 +srccontainerchecksum afeb5b72d5064418d0e2c87bc13516267be905d10949b42660cf8d5a589287209162e41c52b9214492bc4678886fe6b4ce79e5a2da3924609ae5aa2ffdbd93d6 +srcfiles size=17 + RELOC/source/latex/poetry/poetry.dtx + RELOC/source/latex/poetry/poetry.ins +runfiles size=3 + RELOC/tex/latex/poetry/poetry.sty +catalogue-ctan /macros/latex/contrib/poetry +catalogue-date 2019-05-01 15:49:12 +0200 +catalogue-license lppl1.3 +catalogue-topics verse +catalogue-version 2.0 + +name poetrytex +category Package +revision 39921 +shortdesc Typeset anthologies of poetry +relocated 1 +longdesc The package is designed to aid in the management and formatting +longdesc of anthologies of poetry and other writings; it does not +longdesc concern itself with actually typesettinig the verse itself. +containersize 3096 +containerchecksum 9de77dc676f78ce6e18ae62f621126ffc2d78ceb9cb5612f8c129f0c0d123043c554a8996a68d2bf6c730a157f5cdda4101f8446e0e773671258ffb55d6fe93d +doccontainersize 292288 +doccontainerchecksum e9bc2551a92df86e5b76448b2de7af423b8f96ea6a62b1e243f76588478172a7ffe035ed904fb8eb3c5be031e1451c997a68de3187933c3a7273510710577f25 +docfiles size=74 + RELOC/doc/latex/poetrytex/README details="Readme" + RELOC/doc/latex/poetrytex/poetrytex.pdf details="Package documentation" + RELOC/doc/latex/poetrytex/poetrytex.top +srccontainersize 13964 +srccontainerchecksum 4dbeac34f7a74a3a3610f8fa3d3b614ba9ed95384863d2edc40c4685bf7d514803a6d50ff8f27459a7ed993de97f835663ee84247fb0942ba9ff43779e2faeb4 +srcfiles size=15 + RELOC/source/latex/poetrytex/Makefile + RELOC/source/latex/poetrytex/poetrytex.dtx +runfiles size=3 + RELOC/tex/latex/poetrytex/poetrytex.sty +catalogue-contact-repository https://github.com/SamWhited/poetrytex.git +catalogue-ctan /macros/latex/contrib/poetrytex +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics verse +catalogue-version 3.0.1 + +name polexpr +category Package +revision 50013 +shortdesc A parser for polynomial expressions +relocated 1 +longdesc The package provides \poldef: a parser for polynomial +longdesc expressions based upon the \xintdeffunc mechanism of the +longdesc package xintexpr. The parsed expressions use the operations of +longdesc algebra (inclusive of composition of functions) with standard +longdesc operators, fractional numbers (possibly in scientific notation) +longdesc and previously defined polynomial functions or other constructs +longdesc as recognized by the \xintexpr numerical parser. The +longdesc polynomials are then not only genuine \xintexpr numerical +longdesc functions but additionally are also known to the package via +longdesc their coefficients. This allows dedicated macros to implement +longdesc polynomial algorithmics. +containersize 22348 +containerchecksum 93cbffd695c765a14cbec16010d3804a1733377628b5b552cb0b110b629d415a07e993e73ce0ba4ed7df217d16a6eb3c0f3a00616d11b10d003a0cd8239467dd +doccontainersize 42428 +doccontainerchecksum 1d8f3bb80a538411abc72a30657f1f32b60164c807579ef4b346484f12d8797dcb4ad90472c872bdeeb450b44e32d08bcb06dca5334f4b54c528794b94be4376 +docfiles size=67 + RELOC/doc/latex/polexpr/README.md details="Readme" + RELOC/doc/latex/polexpr/polexpr.html details="Package documentation (HTML)" + RELOC/doc/latex/polexpr/polexpr.txt details="Package documentation (text format)" +runfiles size=28 + RELOC/tex/latex/polexpr/polexpr.sty +catalogue-also polynom +catalogue-ctan /macros/latex/contrib/polexpr +catalogue-date 2019-02-12 20:32:28 +0100 +catalogue-license lppl1.3c +catalogue-topics maths +catalogue-version 0.7.4 + +name polski +category Package +revision 44213 +shortdesc Typeset Polish documents with LaTeX and Polish fonts +relocated 1 +longdesc Tools to typeset documents in Polish using LaTeX2e with Polish +longdesc fonts (the so-called PL fonts), EC fonts or CM fonts. (This +longdesc package was previously known as platex, but has been renamed to +longdesc resolve a name clash.) +depend pl +depend hyphen-polish +containersize 9068 +containerchecksum 8d4c05dae9e5cf8ab36bdba5be8b0748d5d283a6a77c7fa18821ab3a20fe5935f302a8ce9b1a1314ef128a20c1011018ba7bd04d34466d017e16fd9bd087e108 +doccontainersize 294096 +doccontainerchecksum a619719518e3d9814907d33756c4a3f2494c3a94b0a717e6f848e31177622bad6ba2cf595a23ff2efb65ea04b70b267aa87cd87caa56c91bab7b36bef82cd2dd +docfiles size=81 + RELOC/doc/latex/polski/README details="Readme (English)" + RELOC/doc/latex/polski/conowego.txt + RELOC/doc/latex/polski/czytaj.txt details="Readme (Polish)" language="pl" + RELOC/doc/latex/polski/polski.pdf details="Package documentation (largely in Polish)" language="pl" + RELOC/doc/latex/polski/sample-polski.pdf details="Example of use" language="pl" + RELOC/doc/latex/polski/sample-polski.tex + RELOC/doc/latex/polski/sample-rysunek.mp + RELOC/doc/latex/polski/sample-rysunek1.mps +srccontainersize 30840 +srccontainerchecksum fe630f5992e79ad211ac4537cb1fc8b40154c2b43f34fb15594e662909077eb0a58f2be41aa05ad647a45d2d00c8af82ecce2afc5eec46c941d1060f2728a4be +srcfiles size=35 + RELOC/source/latex/polski/ot1patch.dtx + RELOC/source/latex/polski/ot1patch.ins + RELOC/source/latex/polski/plfonts.fdd + RELOC/source/latex/polski/plprefix.dtx + RELOC/source/latex/polski/plprefix.ins + RELOC/source/latex/polski/polski.dtx + RELOC/source/latex/polski/polski.ins + RELOC/source/latex/polski/strony.dtx +runfiles size=24 + RELOC/tex/latex/polski/amigapl.def + RELOC/tex/latex/polski/mazovia.def + RELOC/tex/latex/polski/omlplcm.fd + RELOC/tex/latex/polski/omlplm.fd + RELOC/tex/latex/polski/omsplsy.fd + RELOC/tex/latex/polski/omxplex.fd + RELOC/tex/latex/polski/ot1patch.sty + RELOC/tex/latex/polski/ot4ccr.fd + RELOC/tex/latex/polski/ot4cmdh.fd + RELOC/tex/latex/polski/ot4cmfib.fd + RELOC/tex/latex/polski/ot4cmfr.fd + RELOC/tex/latex/polski/ot4cmr.fd + RELOC/tex/latex/polski/ot4cmss.fd + RELOC/tex/latex/polski/ot4cmtt.fd + RELOC/tex/latex/polski/plprefix.sty + RELOC/tex/latex/polski/polski.sty + RELOC/tex/latex/polski/qxenc.def +catalogue-ctan /macros/latex/contrib/polski +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl1.2 +catalogue-topics polish +catalogue-version 1.3.4 + +name poltawski +category Package +revision 20075 +shortdesc Antykwa Poltawskiego Family of Fonts +relocated 1 +longdesc The package contains the Antykwa Poltawskiego family of fonts +longdesc in the PostScript Type 1 and OpenType formats. The original +longdesc font was designed in the twenties of the XX century by the +longdesc Polish typographer Adam Poltawski(1881-1952). Following the +longdesc route set out by the Latin Modern and TeX Gyre projects +longdesc (http://www.gust.org.pl/projects/e-foundry), the Antykwa +longdesc Poltawskiego digitisation project aims at providing a rich +longdesc collection of diacritical characters in the attempt to cover as +longdesc many Latin-based scripts as possible. To our knowledge, the +longdesc repertoire of characters covers all European languages as well +longdesc as some other Latin-based alphabets such as Vietnamese and +longdesc Navajo; at the request of users, recent extensions (following +longdesc the enhancement of the Latin Modern collection) provide glyphs +longdesc sufficient for typesetting of romanized transliterations of +longdesc Arabic and Sanskrit scripts. The Antykwa Poltawskiego family +longdesc consists of 4 weights (light, normal, medium, bold), each +longdesc having upright and italic forms and one of 5 design sizes: 6, +longdesc 8, 10, 12 and 17pt. Altogether, the collection comprises 40 +longdesc font files, containing the same repertoire of 1126 characters. +longdesc The preliminary version of Antykwa Poltawskiego (antp package) +longdesc released in 2000 is rendered obsolete by this package. +execute addMap ap.map +containersize 6817756 +containerchecksum bbdf230da2f81b48951eb90016745d68b73890f8c34ed2d336212ba33c7662a5bee1ba005d6e44c4370c81d22928e1013fb39e45db2de16fd05543310bb07d17 +doccontainersize 1392136 +doccontainerchecksum 1ebe7bbd99a3316b6c4fd702770c6f14a32de653909099a86433bd847a63b2eb231cba4f74dfaf1155c54a9393ae1bdf25710fdfc25199d09b75a265392ba51b +docfiles size=807 + RELOC/doc/fonts/poltawski/GUST-FONT-LICENSE.txt + RELOC/doc/fonts/poltawski/MANIFEST-Antykwa-Poltawskiego.txt + RELOC/doc/fonts/poltawski/README-Antykwa-Poltawskiego.txt + RELOC/doc/fonts/poltawski/antpb10.fea + RELOC/doc/fonts/poltawski/antpb12.fea + RELOC/doc/fonts/poltawski/antpb17.fea + RELOC/doc/fonts/poltawski/antpb6.fea + RELOC/doc/fonts/poltawski/antpb8.fea + RELOC/doc/fonts/poltawski/antpbi10.fea + RELOC/doc/fonts/poltawski/antpbi12.fea + RELOC/doc/fonts/poltawski/antpbi17.fea + RELOC/doc/fonts/poltawski/antpbi6.fea + RELOC/doc/fonts/poltawski/antpbi8.fea + RELOC/doc/fonts/poltawski/antpl10.fea + RELOC/doc/fonts/poltawski/antpl12.fea + RELOC/doc/fonts/poltawski/antpl17.fea + RELOC/doc/fonts/poltawski/antpl6.fea + RELOC/doc/fonts/poltawski/antpl8.fea + RELOC/doc/fonts/poltawski/antpli10.fea + RELOC/doc/fonts/poltawski/antpli12.fea + RELOC/doc/fonts/poltawski/antpli17.fea + RELOC/doc/fonts/poltawski/antpli6.fea + RELOC/doc/fonts/poltawski/antpli8.fea + RELOC/doc/fonts/poltawski/antpm10.fea + RELOC/doc/fonts/poltawski/antpm12.fea + RELOC/doc/fonts/poltawski/antpm17.fea + RELOC/doc/fonts/poltawski/antpm6.fea + RELOC/doc/fonts/poltawski/antpm8.fea + RELOC/doc/fonts/poltawski/antpmi10.fea + RELOC/doc/fonts/poltawski/antpmi12.fea + RELOC/doc/fonts/poltawski/antpmi17.fea + RELOC/doc/fonts/poltawski/antpmi6.fea + RELOC/doc/fonts/poltawski/antpmi8.fea + RELOC/doc/fonts/poltawski/antpr10.fea + RELOC/doc/fonts/poltawski/antpr12.fea + RELOC/doc/fonts/poltawski/antpr17.fea + RELOC/doc/fonts/poltawski/antpr6.fea + RELOC/doc/fonts/poltawski/antpr8.fea + RELOC/doc/fonts/poltawski/antpri10.fea + RELOC/doc/fonts/poltawski/antpri12.fea + RELOC/doc/fonts/poltawski/antpri17.fea + RELOC/doc/fonts/poltawski/antpri6.fea + RELOC/doc/fonts/poltawski/antpri8.fea + RELOC/doc/fonts/poltawski/ap-hist.txt + RELOC/doc/fonts/poltawski/ap-info.pdf details="Technical documentation" + RELOC/doc/fonts/poltawski/ap-logo.pdf + RELOC/doc/fonts/poltawski/goadb100.nam + RELOC/doc/fonts/poltawski/tstapot1.pdf + RELOC/doc/fonts/poltawski/tstapot1.tex + RELOC/doc/fonts/poltawski/tstapot4.pdf + RELOC/doc/fonts/poltawski/tstapot4.tex + RELOC/doc/fonts/poltawski/tstapqx.pdf + RELOC/doc/fonts/poltawski/tstapqx.tex + RELOC/doc/fonts/poltawski/tstapt1.pdf + RELOC/doc/fonts/poltawski/tstapt1.tex + RELOC/doc/fonts/poltawski/tstapts1.pdf + RELOC/doc/fonts/poltawski/tstapts1.tex +runfiles size=7225 + RELOC/fonts/afm/gust/poltawski/antpb10.afm + RELOC/fonts/afm/gust/poltawski/antpb12.afm + RELOC/fonts/afm/gust/poltawski/antpb17.afm + RELOC/fonts/afm/gust/poltawski/antpb6.afm + RELOC/fonts/afm/gust/poltawski/antpb8.afm + RELOC/fonts/afm/gust/poltawski/antpbi10.afm + RELOC/fonts/afm/gust/poltawski/antpbi12.afm + RELOC/fonts/afm/gust/poltawski/antpbi17.afm + RELOC/fonts/afm/gust/poltawski/antpbi6.afm + RELOC/fonts/afm/gust/poltawski/antpbi8.afm + RELOC/fonts/afm/gust/poltawski/antpl10.afm + RELOC/fonts/afm/gust/poltawski/antpl12.afm + RELOC/fonts/afm/gust/poltawski/antpl17.afm + RELOC/fonts/afm/gust/poltawski/antpl6.afm + RELOC/fonts/afm/gust/poltawski/antpl8.afm + RELOC/fonts/afm/gust/poltawski/antpli10.afm + RELOC/fonts/afm/gust/poltawski/antpli12.afm + RELOC/fonts/afm/gust/poltawski/antpli17.afm + RELOC/fonts/afm/gust/poltawski/antpli6.afm + RELOC/fonts/afm/gust/poltawski/antpli8.afm + RELOC/fonts/afm/gust/poltawski/antpm10.afm + RELOC/fonts/afm/gust/poltawski/antpm12.afm + RELOC/fonts/afm/gust/poltawski/antpm17.afm + RELOC/fonts/afm/gust/poltawski/antpm6.afm + RELOC/fonts/afm/gust/poltawski/antpm8.afm + RELOC/fonts/afm/gust/poltawski/antpmi10.afm + RELOC/fonts/afm/gust/poltawski/antpmi12.afm + RELOC/fonts/afm/gust/poltawski/antpmi17.afm + RELOC/fonts/afm/gust/poltawski/antpmi6.afm + RELOC/fonts/afm/gust/poltawski/antpmi8.afm + RELOC/fonts/afm/gust/poltawski/antpr10.afm + RELOC/fonts/afm/gust/poltawski/antpr12.afm + RELOC/fonts/afm/gust/poltawski/antpr17.afm + RELOC/fonts/afm/gust/poltawski/antpr6.afm + RELOC/fonts/afm/gust/poltawski/antpr8.afm + RELOC/fonts/afm/gust/poltawski/antpri10.afm + RELOC/fonts/afm/gust/poltawski/antpri12.afm + RELOC/fonts/afm/gust/poltawski/antpri17.afm + RELOC/fonts/afm/gust/poltawski/antpri6.afm + RELOC/fonts/afm/gust/poltawski/antpri8.afm + RELOC/fonts/enc/dvips/poltawski/ap-cs-sc.enc + RELOC/fonts/enc/dvips/poltawski/ap-cs.enc + RELOC/fonts/enc/dvips/poltawski/ap-ec-sc.enc + RELOC/fonts/enc/dvips/poltawski/ap-ec.enc + RELOC/fonts/enc/dvips/poltawski/ap-l7x-sc.enc + RELOC/fonts/enc/dvips/poltawski/ap-l7x.enc + RELOC/fonts/enc/dvips/poltawski/ap-qx-sc.enc + RELOC/fonts/enc/dvips/poltawski/ap-qx.enc + RELOC/fonts/enc/dvips/poltawski/ap-rm-sc.enc + RELOC/fonts/enc/dvips/poltawski/ap-rm.enc + RELOC/fonts/enc/dvips/poltawski/ap-t5-sc.enc + RELOC/fonts/enc/dvips/poltawski/ap-t5.enc + RELOC/fonts/enc/dvips/poltawski/ap-texnansi-sc.enc + RELOC/fonts/enc/dvips/poltawski/ap-texnansi.enc + RELOC/fonts/enc/dvips/poltawski/ap-ts1.enc + RELOC/fonts/map/dvips/poltawski/ap-cs.map + RELOC/fonts/map/dvips/poltawski/ap-ec.map + RELOC/fonts/map/dvips/poltawski/ap-l7x.map + RELOC/fonts/map/dvips/poltawski/ap-qx.map + RELOC/fonts/map/dvips/poltawski/ap-rm.map + RELOC/fonts/map/dvips/poltawski/ap-t5.map + RELOC/fonts/map/dvips/poltawski/ap-texnansi.map + RELOC/fonts/map/dvips/poltawski/ap-ts1.map + RELOC/fonts/map/dvips/poltawski/ap.map + RELOC/fonts/opentype/gust/poltawski/antpolt-bold.otf + RELOC/fonts/opentype/gust/poltawski/antpolt-bolditalic.otf + RELOC/fonts/opentype/gust/poltawski/antpolt-italic.otf + RELOC/fonts/opentype/gust/poltawski/antpolt-regular.otf + RELOC/fonts/opentype/gust/poltawski/antpoltcond-bold.otf + RELOC/fonts/opentype/gust/poltawski/antpoltcond-bolditalic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltcond-italic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltcond-regular.otf + RELOC/fonts/opentype/gust/poltawski/antpoltexpd-bold.otf + RELOC/fonts/opentype/gust/poltawski/antpoltexpd-bolditalic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltexpd-italic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltexpd-regular.otf + RELOC/fonts/opentype/gust/poltawski/antpoltlt-bold.otf + RELOC/fonts/opentype/gust/poltawski/antpoltlt-bolditalic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltlt-italic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltlt-regular.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltcond-bold.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltcond-bolditalic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltcond-italic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltcond-regular.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltexpd-bold.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltexpd-bolditalic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltexpd-italic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltexpd-regular.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltsemicond-bold.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltsemicond-bolditalic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltsemicond-italic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltsemicond-regular.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltsemiexpd-bold.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltsemiexpd-bolditalic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltsemiexpd-italic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltltsemiexpd-regular.otf + RELOC/fonts/opentype/gust/poltawski/antpoltsemicond-bold.otf + RELOC/fonts/opentype/gust/poltawski/antpoltsemicond-bolditalic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltsemicond-italic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltsemicond-regular.otf + RELOC/fonts/opentype/gust/poltawski/antpoltsemiexpd-bold.otf + RELOC/fonts/opentype/gust/poltawski/antpoltsemiexpd-bolditalic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltsemiexpd-italic.otf + RELOC/fonts/opentype/gust/poltawski/antpoltsemiexpd-regular.otf + RELOC/fonts/tfm/gust/poltawski/cs-antpb10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpb10.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpb12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpb12.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpb17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpb17.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpb6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpb6.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpb8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpb8.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpbi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpbi10.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpbi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpbi12.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpbi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpbi17.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpbi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpbi6.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpbi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpbi8.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpl10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpl10.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpl12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpl12.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpl17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpl17.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpl6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpl6.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpl8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpl8.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpli10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpli10.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpli12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpli12.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpli17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpli17.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpli6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpli6.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpli8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpli8.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpm10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpm10.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpm12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpm12.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpm17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpm17.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpm6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpm6.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpm8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpm8.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpmi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpmi10.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpmi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpmi12.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpmi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpmi17.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpmi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpmi6.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpmi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpmi8.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpr10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpr10.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpr12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpr12.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpr17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpr17.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpr6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpr6.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpr8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpr8.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpri10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpri10.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpri12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpri12.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpri17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpri17.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpri6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpri6.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpri8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/cs-antpri8.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpb10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpb10.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpb12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpb12.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpb17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpb17.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpb6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpb6.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpb8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpb8.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpbi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpbi10.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpbi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpbi12.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpbi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpbi17.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpbi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpbi6.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpbi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpbi8.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpl10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpl10.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpl12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpl12.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpl17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpl17.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpl6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpl6.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpl8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpl8.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpli10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpli10.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpli12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpli12.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpli17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpli17.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpli6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpli6.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpli8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpli8.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpm10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpm10.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpm12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpm12.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpm17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpm17.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpm6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpm6.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpm8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpm8.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpmi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpmi10.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpmi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpmi12.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpmi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpmi17.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpmi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpmi6.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpmi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpmi8.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpr10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpr10.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpr12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpr12.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpr17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpr17.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpr6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpr6.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpr8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpr8.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpri10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpri10.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpri12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpri12.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpri17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpri17.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpri6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpri6.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpri8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/ec-antpri8.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpb10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpb10.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpb12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpb12.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpb17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpb17.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpb6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpb6.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpb8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpb8.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpbi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpbi10.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpbi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpbi12.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpbi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpbi17.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpbi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpbi6.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpbi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpbi8.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpl10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpl10.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpl12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpl12.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpl17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpl17.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpl6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpl6.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpl8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpl8.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpli10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpli10.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpli12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpli12.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpli17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpli17.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpli6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpli6.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpli8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpli8.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpm10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpm10.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpm12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpm12.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpm17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpm17.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpm6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpm6.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpm8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpm8.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpmi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpmi10.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpmi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpmi12.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpmi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpmi17.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpmi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpmi6.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpmi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpmi8.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpr10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpr10.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpr12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpr12.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpr17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpr17.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpr6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpr6.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpr8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpr8.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpri10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpri10.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpri12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpri12.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpri17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpri17.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpri6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpri6.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpri8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/l7x-antpri8.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpb10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpb10.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpb12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpb12.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpb17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpb17.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpb6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpb6.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpb8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpb8.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpbi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpbi10.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpbi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpbi12.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpbi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpbi17.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpbi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpbi6.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpbi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpbi8.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpl10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpl10.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpl12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpl12.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpl17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpl17.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpl6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpl6.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpl8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpl8.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpli10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpli10.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpli12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpli12.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpli17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpli17.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpli6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpli6.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpli8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpli8.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpm10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpm10.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpm12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpm12.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpm17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpm17.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpm6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpm6.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpm8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpm8.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpmi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpmi10.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpmi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpmi12.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpmi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpmi17.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpmi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpmi6.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpmi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpmi8.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpr10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpr10.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpr12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpr12.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpr17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpr17.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpr6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpr6.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpr8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpr8.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpri10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpri10.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpri12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpri12.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpri17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpri17.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpri6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpri6.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpri8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/qx-antpri8.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpb10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpb10.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpb12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpb12.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpb17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpb17.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpb6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpb6.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpb8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpb8.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpbi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpbi10.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpbi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpbi12.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpbi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpbi17.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpbi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpbi6.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpbi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpbi8.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpl10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpl10.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpl12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpl12.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpl17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpl17.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpl6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpl6.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpl8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpl8.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpli10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpli10.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpli12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpli12.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpli17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpli17.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpli6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpli6.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpli8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpli8.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpm10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpm10.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpm12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpm12.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpm17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpm17.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpm6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpm6.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpm8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpm8.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpmi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpmi10.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpmi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpmi12.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpmi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpmi17.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpmi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpmi6.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpmi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpmi8.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpr10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpr10.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpr12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpr12.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpr17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpr17.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpr6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpr6.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpr8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpr8.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpri10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpri10.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpri12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpri12.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpri17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpri17.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpri6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpri6.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpri8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/rm-antpri8.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpb10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpb10.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpb12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpb12.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpb17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpb17.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpb6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpb6.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpb8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpb8.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpbi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpbi10.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpbi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpbi12.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpbi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpbi17.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpbi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpbi6.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpbi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpbi8.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpl10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpl10.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpl12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpl12.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpl17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpl17.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpl6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpl6.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpl8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpl8.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpli10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpli10.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpli12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpli12.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpli17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpli17.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpli6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpli6.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpli8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpli8.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpm10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpm10.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpm12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpm12.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpm17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpm17.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpm6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpm6.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpm8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpm8.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpmi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpmi10.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpmi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpmi12.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpmi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpmi17.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpmi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpmi6.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpmi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpmi8.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpr10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpr10.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpr12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpr12.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpr17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpr17.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpr6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpr6.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpr8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpr8.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpri10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpri10.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpri12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpri12.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpri17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpri17.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpri6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpri6.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpri8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/t5-antpri8.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpb10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpb10.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpb12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpb12.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpb17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpb17.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpb6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpb6.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpb8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpb8.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi10.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi12.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi17.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi6.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpbi8.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpl10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpl10.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpl12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpl12.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpl17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpl17.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpl6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpl6.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpl8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpl8.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpli10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpli10.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpli12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpli12.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpli17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpli17.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpli6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpli6.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpli8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpli8.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpm10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpm10.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpm12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpm12.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpm17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpm17.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpm6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpm6.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpm8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpm8.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi10.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi12.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi17.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi6.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpmi8.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpr10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpr10.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpr12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpr12.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpr17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpr17.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpr6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpr6.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpr8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpr8.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpri10-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpri10.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpri12-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpri12.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpri17-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpri17.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpri6-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpri6.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpri8-sc.tfm + RELOC/fonts/tfm/gust/poltawski/texnansi-antpri8.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpb10.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpb12.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpb17.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpb6.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpb8.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpbi10.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpbi12.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpbi17.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpbi6.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpbi8.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpl10.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpl12.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpl17.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpl6.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpl8.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpli10.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpli12.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpli17.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpli6.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpli8.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpm10.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpm12.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpm17.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpm6.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpm8.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpmi10.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpmi12.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpmi17.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpmi6.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpmi8.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpr10.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpr12.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpr17.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpr6.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpr8.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpri10.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpri12.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpri17.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpri6.tfm + RELOC/fonts/tfm/gust/poltawski/ts1-antpri8.tfm + RELOC/fonts/type1/gust/poltawski/antpb10.pfb + RELOC/fonts/type1/gust/poltawski/antpb10.pfm + RELOC/fonts/type1/gust/poltawski/antpb12.pfb + RELOC/fonts/type1/gust/poltawski/antpb12.pfm + RELOC/fonts/type1/gust/poltawski/antpb17.pfb + RELOC/fonts/type1/gust/poltawski/antpb17.pfm + RELOC/fonts/type1/gust/poltawski/antpb6.pfb + RELOC/fonts/type1/gust/poltawski/antpb6.pfm + RELOC/fonts/type1/gust/poltawski/antpb8.pfb + RELOC/fonts/type1/gust/poltawski/antpb8.pfm + RELOC/fonts/type1/gust/poltawski/antpbi10.pfb + RELOC/fonts/type1/gust/poltawski/antpbi10.pfm + RELOC/fonts/type1/gust/poltawski/antpbi12.pfb + RELOC/fonts/type1/gust/poltawski/antpbi12.pfm + RELOC/fonts/type1/gust/poltawski/antpbi17.pfb + RELOC/fonts/type1/gust/poltawski/antpbi17.pfm + RELOC/fonts/type1/gust/poltawski/antpbi6.pfb + RELOC/fonts/type1/gust/poltawski/antpbi6.pfm + RELOC/fonts/type1/gust/poltawski/antpbi8.pfb + RELOC/fonts/type1/gust/poltawski/antpbi8.pfm + RELOC/fonts/type1/gust/poltawski/antpl10.pfb + RELOC/fonts/type1/gust/poltawski/antpl10.pfm + RELOC/fonts/type1/gust/poltawski/antpl12.pfb + RELOC/fonts/type1/gust/poltawski/antpl12.pfm + RELOC/fonts/type1/gust/poltawski/antpl17.pfb + RELOC/fonts/type1/gust/poltawski/antpl17.pfm + RELOC/fonts/type1/gust/poltawski/antpl6.pfb + RELOC/fonts/type1/gust/poltawski/antpl6.pfm + RELOC/fonts/type1/gust/poltawski/antpl8.pfb + RELOC/fonts/type1/gust/poltawski/antpl8.pfm + RELOC/fonts/type1/gust/poltawski/antpli10.pfb + RELOC/fonts/type1/gust/poltawski/antpli10.pfm + RELOC/fonts/type1/gust/poltawski/antpli12.pfb + RELOC/fonts/type1/gust/poltawski/antpli12.pfm + RELOC/fonts/type1/gust/poltawski/antpli17.pfb + RELOC/fonts/type1/gust/poltawski/antpli17.pfm + RELOC/fonts/type1/gust/poltawski/antpli6.pfb + RELOC/fonts/type1/gust/poltawski/antpli6.pfm + RELOC/fonts/type1/gust/poltawski/antpli8.pfb + RELOC/fonts/type1/gust/poltawski/antpli8.pfm + RELOC/fonts/type1/gust/poltawski/antpm10.pfb + RELOC/fonts/type1/gust/poltawski/antpm10.pfm + RELOC/fonts/type1/gust/poltawski/antpm12.pfb + RELOC/fonts/type1/gust/poltawski/antpm12.pfm + RELOC/fonts/type1/gust/poltawski/antpm17.pfb + RELOC/fonts/type1/gust/poltawski/antpm17.pfm + RELOC/fonts/type1/gust/poltawski/antpm6.pfb + RELOC/fonts/type1/gust/poltawski/antpm6.pfm + RELOC/fonts/type1/gust/poltawski/antpm8.pfb + RELOC/fonts/type1/gust/poltawski/antpm8.pfm + RELOC/fonts/type1/gust/poltawski/antpmi10.pfb + RELOC/fonts/type1/gust/poltawski/antpmi10.pfm + RELOC/fonts/type1/gust/poltawski/antpmi12.pfb + RELOC/fonts/type1/gust/poltawski/antpmi12.pfm + RELOC/fonts/type1/gust/poltawski/antpmi17.pfb + RELOC/fonts/type1/gust/poltawski/antpmi17.pfm + RELOC/fonts/type1/gust/poltawski/antpmi6.pfb + RELOC/fonts/type1/gust/poltawski/antpmi6.pfm + RELOC/fonts/type1/gust/poltawski/antpmi8.pfb + RELOC/fonts/type1/gust/poltawski/antpmi8.pfm + RELOC/fonts/type1/gust/poltawski/antpr10.pfb + RELOC/fonts/type1/gust/poltawski/antpr10.pfm + RELOC/fonts/type1/gust/poltawski/antpr12.pfb + RELOC/fonts/type1/gust/poltawski/antpr12.pfm + RELOC/fonts/type1/gust/poltawski/antpr17.pfb + RELOC/fonts/type1/gust/poltawski/antpr17.pfm + RELOC/fonts/type1/gust/poltawski/antpr6.pfb + RELOC/fonts/type1/gust/poltawski/antpr6.pfm + RELOC/fonts/type1/gust/poltawski/antpr8.pfb + RELOC/fonts/type1/gust/poltawski/antpr8.pfm + RELOC/fonts/type1/gust/poltawski/antpri10.pfb + RELOC/fonts/type1/gust/poltawski/antpri10.pfm + RELOC/fonts/type1/gust/poltawski/antpri12.pfb + RELOC/fonts/type1/gust/poltawski/antpri12.pfm + RELOC/fonts/type1/gust/poltawski/antpri17.pfb + RELOC/fonts/type1/gust/poltawski/antpri17.pfm + RELOC/fonts/type1/gust/poltawski/antpri6.pfb + RELOC/fonts/type1/gust/poltawski/antpri6.pfm + RELOC/fonts/type1/gust/poltawski/antpri8.pfb + RELOC/fonts/type1/gust/poltawski/antpri8.pfm + RELOC/tex/latex/poltawski/antpolt.sty + RELOC/tex/latex/poltawski/il2antp.fd + RELOC/tex/latex/poltawski/il2antpl.fd + RELOC/tex/latex/poltawski/l7xantp.fd + RELOC/tex/latex/poltawski/l7xantpl.fd + RELOC/tex/latex/poltawski/ly1antp.fd + RELOC/tex/latex/poltawski/ly1antpl.fd + RELOC/tex/latex/poltawski/ot1antp.fd + RELOC/tex/latex/poltawski/ot1antpl.fd + RELOC/tex/latex/poltawski/ot4antp.fd + RELOC/tex/latex/poltawski/ot4antpl.fd + RELOC/tex/latex/poltawski/qxantp.fd + RELOC/tex/latex/poltawski/qxantpl.fd + RELOC/tex/latex/poltawski/t1antp.fd + RELOC/tex/latex/poltawski/t1antpl.fd + RELOC/tex/latex/poltawski/t5antp.fd + RELOC/tex/latex/poltawski/t5antpl.fd + RELOC/tex/latex/poltawski/ts1antp.fd + RELOC/tex/latex/poltawski/ts1antpl.fd +catalogue-contact-home http://www.gust.org.pl/projects/e-foundry/poltawski +catalogue-ctan /fonts/poltawski +catalogue-date 2018-06-16 10:36:08 +0200 +catalogue-license gfl +catalogue-topics font font-type1 font-otf +catalogue-version 1.101 + +name polyglossia +category Package +revision 50787 +shortdesc An alternative to babel for XeLaTeX and LuaLaTeX +relocated 1 +longdesc This package provides a complete Babel replacement for users of +longdesc LuaLaTeX and XeLaTeX; it relies on the fontspec package, +longdesc version 2.0 at least. This is the first release that supports +longdesc use with LuaLaTeX; it should be considered "transitional" in +longdesc that role. +depend etoolbox +depend fontspec +depend ifluatex +depend makecmds +depend xkeyval +containersize 78264 +containerchecksum 2ccb7747c5c0becc77181c75bad4c035dd3a3a2f5a5d8cce03874c99b82d2594e2a80bd6d7799f3882b988705eb61ecbae4e8eccd9c415ccf4af6ff0e2e581a4 +doccontainersize 603900 +doccontainerchecksum 21e73e878cc9bad95e3d7d842e89fb610bf2076e9f68a5b8f693a7112c30172dac72b75728cd079443118f598d4d775d96ead8953d0d765d5527d678750188b0 +docfiles size=168 + RELOC/doc/latex/polyglossia/README details="Readme" + RELOC/doc/latex/polyglossia/example-arabic.pdf + RELOC/doc/latex/polyglossia/example-arabic.tex + RELOC/doc/latex/polyglossia/example-korean.pdf + RELOC/doc/latex/polyglossia/example-korean.tex + RELOC/doc/latex/polyglossia/example-thai.pdf + RELOC/doc/latex/polyglossia/example-thai.tex + RELOC/doc/latex/polyglossia/examples.pdf + RELOC/doc/latex/polyglossia/examples.tex + RELOC/doc/latex/polyglossia/gloss-latin.pdf + RELOC/doc/latex/polyglossia/polyglossia.pdf details="Package documentation" + RELOC/doc/latex/polyglossia/polyglossia.tex + RELOC/doc/latex/polyglossia/test-welsh.pdf + RELOC/doc/latex/polyglossia/test-welsh.tex +srccontainersize 77300 +srccontainerchecksum 923333748435523d21f20351f4bbb46dd0a35a9abe1fe1db8faa09c53f7d7b9210627b2e7ead2b822815813f2569594c0652f672f1248f931b05814b86437188 +srcfiles size=92 + RELOC/source/latex/polyglossia/polyglossia.dtx +runfiles size=161 + RELOC/fonts/misc/xetex/fontmapping/polyglossia/arabicdigits.map + RELOC/fonts/misc/xetex/fontmapping/polyglossia/arabicdigits.tec + RELOC/fonts/misc/xetex/fontmapping/polyglossia/bengalidigits.map + RELOC/fonts/misc/xetex/fontmapping/polyglossia/bengalidigits.tec + RELOC/fonts/misc/xetex/fontmapping/polyglossia/devanagaridigits.map + RELOC/fonts/misc/xetex/fontmapping/polyglossia/devanagaridigits.tec + RELOC/fonts/misc/xetex/fontmapping/polyglossia/farsidigits.map + RELOC/fonts/misc/xetex/fontmapping/polyglossia/farsidigits.tec + RELOC/fonts/misc/xetex/fontmapping/polyglossia/thaidigits.map + RELOC/fonts/misc/xetex/fontmapping/polyglossia/thaidigits.tec + RELOC/tex/latex/polyglossia/arabicnumbers.sty + RELOC/tex/latex/polyglossia/babel-hebrewalph.def + RELOC/tex/latex/polyglossia/babelsh.def + RELOC/tex/latex/polyglossia/bengalidigits.sty + RELOC/tex/latex/polyglossia/cal-util.def + RELOC/tex/latex/polyglossia/devanagaridigits.sty + RELOC/tex/latex/polyglossia/farsical.sty + RELOC/tex/latex/polyglossia/gloss-albanian.ldf + RELOC/tex/latex/polyglossia/gloss-amharic.ldf + RELOC/tex/latex/polyglossia/gloss-arabic.ldf + RELOC/tex/latex/polyglossia/gloss-armenian.ldf + RELOC/tex/latex/polyglossia/gloss-asturian.ldf + RELOC/tex/latex/polyglossia/gloss-bahasai.ldf + RELOC/tex/latex/polyglossia/gloss-bahasam.ldf + RELOC/tex/latex/polyglossia/gloss-basque.ldf + RELOC/tex/latex/polyglossia/gloss-bengali.ldf + RELOC/tex/latex/polyglossia/gloss-brazil.ldf + RELOC/tex/latex/polyglossia/gloss-breton.ldf + RELOC/tex/latex/polyglossia/gloss-bulgarian.ldf + RELOC/tex/latex/polyglossia/gloss-catalan.ldf + RELOC/tex/latex/polyglossia/gloss-classiclatin.ldf + RELOC/tex/latex/polyglossia/gloss-coptic.ldf + RELOC/tex/latex/polyglossia/gloss-croatian.ldf + RELOC/tex/latex/polyglossia/gloss-czech.ldf + RELOC/tex/latex/polyglossia/gloss-danish.ldf + RELOC/tex/latex/polyglossia/gloss-divehi.ldf + RELOC/tex/latex/polyglossia/gloss-dutch.ldf + RELOC/tex/latex/polyglossia/gloss-english.ldf + RELOC/tex/latex/polyglossia/gloss-esperanto.ldf + RELOC/tex/latex/polyglossia/gloss-estonian.ldf + RELOC/tex/latex/polyglossia/gloss-farsi.ldf + RELOC/tex/latex/polyglossia/gloss-finnish.ldf + RELOC/tex/latex/polyglossia/gloss-french.ldf + RELOC/tex/latex/polyglossia/gloss-friulan.ldf + RELOC/tex/latex/polyglossia/gloss-galician.ldf + RELOC/tex/latex/polyglossia/gloss-german.ldf + RELOC/tex/latex/polyglossia/gloss-greek.ldf + RELOC/tex/latex/polyglossia/gloss-hebrew.ldf + RELOC/tex/latex/polyglossia/gloss-hindi.ldf + RELOC/tex/latex/polyglossia/gloss-icelandic.ldf + RELOC/tex/latex/polyglossia/gloss-interlingua.ldf + RELOC/tex/latex/polyglossia/gloss-irish.ldf + RELOC/tex/latex/polyglossia/gloss-italian.ldf + RELOC/tex/latex/polyglossia/gloss-japanese.ldf + RELOC/tex/latex/polyglossia/gloss-kannada.ldf + RELOC/tex/latex/polyglossia/gloss-khmer.ldf + RELOC/tex/latex/polyglossia/gloss-korean.ldf + RELOC/tex/latex/polyglossia/gloss-lao.ldf + RELOC/tex/latex/polyglossia/gloss-latin.ldf + RELOC/tex/latex/polyglossia/gloss-latvian.ldf + RELOC/tex/latex/polyglossia/gloss-lithuanian.ldf + RELOC/tex/latex/polyglossia/gloss-liturgicallatin.ldf + RELOC/tex/latex/polyglossia/gloss-lsorbian.ldf + RELOC/tex/latex/polyglossia/gloss-macedonian.ldf + RELOC/tex/latex/polyglossia/gloss-magyar.ldf + RELOC/tex/latex/polyglossia/gloss-malayalam.ldf + RELOC/tex/latex/polyglossia/gloss-marathi.ldf + RELOC/tex/latex/polyglossia/gloss-nko.ldf + RELOC/tex/latex/polyglossia/gloss-norsk.ldf + RELOC/tex/latex/polyglossia/gloss-nynorsk.ldf + RELOC/tex/latex/polyglossia/gloss-occitan.ldf + RELOC/tex/latex/polyglossia/gloss-piedmontese.ldf + RELOC/tex/latex/polyglossia/gloss-polish.ldf + RELOC/tex/latex/polyglossia/gloss-portuges.ldf + RELOC/tex/latex/polyglossia/gloss-romanian.ldf + RELOC/tex/latex/polyglossia/gloss-romansh.ldf + RELOC/tex/latex/polyglossia/gloss-russian.ldf + RELOC/tex/latex/polyglossia/gloss-samin.ldf + RELOC/tex/latex/polyglossia/gloss-sanskrit.ldf + RELOC/tex/latex/polyglossia/gloss-scottish.ldf + RELOC/tex/latex/polyglossia/gloss-serbian.ldf + RELOC/tex/latex/polyglossia/gloss-slovak.ldf + RELOC/tex/latex/polyglossia/gloss-slovenian.ldf + RELOC/tex/latex/polyglossia/gloss-spanish.ldf + RELOC/tex/latex/polyglossia/gloss-swedish.ldf + RELOC/tex/latex/polyglossia/gloss-syriac.ldf + RELOC/tex/latex/polyglossia/gloss-tamil.ldf + RELOC/tex/latex/polyglossia/gloss-telugu.ldf + RELOC/tex/latex/polyglossia/gloss-thai.ldf + RELOC/tex/latex/polyglossia/gloss-tibetan.ldf + RELOC/tex/latex/polyglossia/gloss-turkish.ldf + RELOC/tex/latex/polyglossia/gloss-turkmen.ldf + RELOC/tex/latex/polyglossia/gloss-ukrainian.ldf + RELOC/tex/latex/polyglossia/gloss-urdu.ldf + RELOC/tex/latex/polyglossia/gloss-usorbian.ldf + RELOC/tex/latex/polyglossia/gloss-vietnamese.ldf + RELOC/tex/latex/polyglossia/gloss-welsh.ldf + RELOC/tex/latex/polyglossia/hebrewcal.sty + RELOC/tex/latex/polyglossia/hijrical.sty + RELOC/tex/latex/polyglossia/nkonumbers.sty + RELOC/tex/latex/polyglossia/polyglossia-frpt.lua + RELOC/tex/latex/polyglossia/polyglossia-tibt.lua + RELOC/tex/latex/polyglossia/polyglossia.lua + RELOC/tex/latex/polyglossia/polyglossia.sty + RELOC/tex/latex/polyglossia/xgreek-fixes.def +catalogue-also babel +catalogue-contact-bugs https://github.com/reutenauer/polyglossia/issues/ +catalogue-contact-home https://github.com/reutenauer/polyglossia/ +catalogue-contact-repository https://github.com/reutenauer/polyglossia +catalogue-ctan /macros/latex/contrib/polyglossia +catalogue-date 2019-04-05 09:33:27 +0200 +catalogue-license lppl1.3c +catalogue-topics multilingual use-xetex use-luatex +catalogue-version 1.44 + +name polynom +category Package +revision 44832 +shortdesc Macros for manipulating polynomials +relocated 1 +longdesc The polynom package implements macros for manipulating +longdesc polynomials, for example it can typeset long polynomial +longdesc divisions. The main test case and application is the polynomial +longdesc ring in one variable with rational coefficients. +containersize 11156 +containerchecksum bbff103f5828757f9c58c768ba46dcd9197629273b12d997e80e299dc1cf6a34e851fa4ebe088d131781eb6efc1fbd39cab602ba23b791c68fdb0e12f69440aa +doccontainersize 400020 +doccontainerchecksum b0fdee90082414d88469ba5067f1c16279ddfc8c13627098bb3c2adfaded3c355cbb161193160fc5b9682d45a10216c56fe2613855528f9f4965479c681e6355 +docfiles size=121 + RELOC/doc/latex/polynom/README details="Readme" + RELOC/doc/latex/polynom/polydemo.pdf details="Example of package use" + RELOC/doc/latex/polynom/polydemo.tex + RELOC/doc/latex/polynom/polynom.pdf details="Package documentation" +srccontainersize 30328 +srccontainerchecksum cf9dc9f13290bfd84e2956630eed115a132bcedfd34e6da076b2fa0fd4840fc5fabaf995b44f2a8f3c3d9ba9de851683a306271b272a83331a92fac367d82a57 +srcfiles size=35 + RELOC/source/latex/polynom/polynom.dtx + RELOC/source/latex/polynom/polynom.ins +runfiles size=16 + RELOC/tex/latex/polynom/polynom.sty +catalogue-ctan /macros/latex/contrib/polynom +catalogue-date 2017-07-17 15:20:36 +0200 +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 0.19 + +name polynomial +category Package +revision 15878 +shortdesc Typeset (univariate) polynomials +relocated 1 +longdesc The package offers an easy way to write (univariate) +longdesc polynomials and rational functions. It defines two commands, +longdesc one for polynomials \polynomial{coeffs} and one for rational +longdesc functions \polynomialfrac{Numerator}{Denominator}. Both +longdesc commands take lists of coefficients as arguments, and offer +longdesc limited optional behaviour. +containersize 2404 +containerchecksum 46324509f078d9e83f4d94893454061636fd1148d5a2e9b59af640f617d82ba1d7397c7f7bb68ac99a83945354c875d3f29853e5ba38da59a2812f5f45ccacb1 +doccontainersize 134132 +doccontainerchecksum b570f3abf21a480e0bce2c08e44d97b488e9a0758d712cfde3ccbc45348eb95486c121662e296049220dd2802edb387651e839c2a819058111a2839049fc5964 +docfiles size=37 + RELOC/doc/latex/polynomial/README + RELOC/doc/latex/polynomial/polynomial.pdf details="Package documentation" +srccontainersize 4216 +srccontainerchecksum db4c1d698b2a096ce6c848922beb747f70a874914d4ad1a468080c55ac0afbd89330c0665006f787c32c6c444ab601c64e7173ce9a5bd9241c1ba71582c0ea0f +srcfiles size=5 + RELOC/source/latex/polynomial/polynomial.dtx + RELOC/source/latex/polynomial/polynomial.ins +runfiles size=2 + RELOC/tex/latex/polynomial/polynomial.sty +catalogue-ctan /macros/latex/contrib/polynomial +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics maths +catalogue-version 1.0 + +name polytable +category Package +revision 31235 +shortdesc Tabular-like environments with named columns +relocated 1 +longdesc This package implements a variant of tabular-like environments +longdesc where columns can be given a name and entries can flexibly be +longdesc placed between arbitrary columns. Complex alignment-based +longdesc layouts, for example for program code, are possible. +containersize 6416 +containerchecksum a83f8df3e09fd112a6f83a48f803847cbe112f2d18db803226e04efb6fabca1a8e5cd03d2ad1a3a30eb07d3590701b71b24f03b1e38d49f41493ddfc67576dbf +doccontainersize 287436 +doccontainerchecksum 7e53e2956145c29d7b9775ad8fd757b5dec4d2651683f0a48507094b86a5b6d42f1b659ffc72cacfc0cd528a6baad03cc19aabd8c0d1afdf57bcf365a5fca1ce +docfiles size=72 + RELOC/doc/latex/polytable/README details="Readme" + RELOC/doc/latex/polytable/polytable.pdf details="Package documentation" +srccontainersize 21428 +srccontainerchecksum 673f5f8cb4840074c2d33de2e53134a6e8288af411b6e61c1268dc11f5051c6cb65b8746fc2e2e959dd5ae2d3bc36a58770217c159c611ead0019c84918a03bf +srcfiles size=22 + RELOC/source/latex/polytable/polytable.dtx + RELOC/source/latex/polytable/polytable.ins +runfiles size=7 + RELOC/tex/latex/polytable/polytable.sty +catalogue-ctan /macros/latex/contrib/polytable +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics table +catalogue-version 0.8.2 + +name poormanlog +category Package +revision 50052 +shortdesc Logarithms and powers with (almost) 9 digits +relocated 1 +longdesc This small package (usable with Plain TeX, LaTeX, or others) +longdesc provides macros for computing logarithms in base 10 and +longdesc fractional powers of 10, achieving a bit less than 9 digits of +longdesc precision. The package has no dependencies and can be used on +longdesc its own, but becomes more user-friendly in the presence of the +longdesc xintexpr package, as it then provides log10() and pow10() +longdesc functions and optionally patches the ** or ^ power operators to +longdesc use those. This usage will become obsolete if and when xintexpr +longdesc will natively implement log10() and pow10() functions in +longdesc arbitrary precision. The documentation is included in the +longdesc README. +containersize 4768 +containerchecksum 25a1a08ff79157e013c4a1d7bab50f37c22a165c1168ef36c88e6a992b32d95b74bb55923cf4d670a041d8eb1f27dfd3e800504b59cafcc92c5ec5d404407231 +doccontainersize 2016 +doccontainerchecksum 1ad30cde34882aaa145f61aeb59a24de4e0993b366f074fbb5c37dcd8aaca223424aad301062498dfb4f805f0192a75a1b539fa1069c9ce1c30d40207dbd6691 +docfiles size=2 + RELOC/doc/generic/poormanlog/README details="Readme" +runfiles size=5 + RELOC/tex/generic/poormanlog/poormanlog.sty + RELOC/tex/generic/poormanlog/poormanlog.tex +catalogue-ctan /macros/generic/poormanlog +catalogue-date 2019-02-19 04:58:07 +0100 +catalogue-license lppl1.3c +catalogue-topics calculation +catalogue-version 0.04 + +name postage +category Package +revision 47893 +shortdesc stamp letters with >>Deutsche Post<<'s service >>Internetmarke<< +relocated 1 +longdesc The postage package is used for franking letters with +longdesc >>Deutsche Post<<'s online postage service >>Internetmarke<<. +longdesc Note that in order to print valid stamps you must point to a +longdesc valid PDF of >>Deutsche Post<<'s >>Ausdruck 4-spaltig (DIN +longdesc A4)<<. +containersize 2032 +containerchecksum 97315373848a24fb0c49e184cb5e4980e6c124d60bd9141f7ecb5ecea9e81097e4005ee29fc45d828a206ccf8a23a936bbc27cbc59fcc7b6dc4b75cbe4f9105d +doccontainersize 307924 +doccontainerchecksum 102b88d87ba4b371b16e1d1362f1ca42fb9feaab3f1df4d56176d353e90d68bbac535522e7acbd741be78f64624223a55a6f3802e8a190814ff9a71abefdb2bd +docfiles size=102 + RELOC/doc/latex/postage/README.txt details="Readme" + RELOC/doc/latex/postage/postage.pdf details="Package documentation" + RELOC/doc/latex/postage/sample-stamps.pdf +srccontainersize 4660 +srccontainerchecksum 390567f792284e372089e8c8141daf42d44eda52a14118c60ef23911e405dbc7481453cadc1de9c097056f181909004a7a489c0040dd733d8c036bfa2022b3ce +srcfiles size=6 + RELOC/source/latex/postage/postage.dtx + RELOC/source/latex/postage/postage.ins +runfiles size=2 + RELOC/tex/latex/postage/postage.sty +catalogue-contact-bugs https://github.com/heinrichreimer/latex-postage/issues +catalogue-contact-development https://github.com/heinrichreimer/latex-postage +catalogue-contact-home https://github.com/heinrichreimer/latex-postage +catalogue-contact-repository https://github.com/heinrichreimer/latex-postage +catalogue-contact-support https://github.com/heinrichreimer/latex-postage/issues +catalogue-ctan /graphics/postage +catalogue-date 2018-06-05 05:23:42 +0200 +catalogue-license lppl1.3c +catalogue-topics letter +catalogue-version 1.0 + +name postcards +category Package +revision 21641 +shortdesc Facilitates mass-mailing of postcards (junkmail) +relocated 1 +longdesc A modification of the standard LaTeX letter class which prints +longdesc multiple, pre-stamped, 5.5" by 3.5" postcards (a US standard +longdesc size) via the envlab and mailing packages. An address database +longdesc is employed to address the front side of each postcard and a +longdesc message is printed on the back side of all. An illustrative +longdesc example is provided. +containersize 1860 +containerchecksum 0e358697b47ee74afb9fb6bd339ea4a76457c78a76a37de6039ac44cd9ce1fc28a3866c42d988ccebf025d0e08c4c092a2b647cce4841662242f740f12297338 +doccontainersize 1364 +doccontainerchecksum 936c1f923bea76aa323d2c8ce9949cea3364eeb1a145e735ff5bdf609de4c54cc78125392e9e3cc914180815bb9dd5bae63e50c0000b2143fe7de94c199bc50e +docfiles size=3 + RELOC/doc/latex/postcards/README details="Readme" + RELOC/doc/latex/postcards/datasmp.txt + RELOC/doc/latex/postcards/pcardsmp.tex +runfiles size=1 + RELOC/tex/latex/postcards/postcards.cls +catalogue-also formlett akletter dinbrief g-brief textmerg +catalogue-ctan /macros/latex/contrib/postcards +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics letter + +name poster-mac +category Package +revision 18305 +shortdesc Make posters and banners with TeX +relocated 1 +longdesc The package offers macros for making posters and banners with +longdesc TeX. It is compatible with most TeX macro formats, including +longdesc Plain TeX, LaTeX, AmSTeX, and AmS-LaTeX. The package creates a +longdesc poster as huge box, which is then distributed over as many +longdesc printer pages as necessary. The only special requirement is +longdesc that your printer not be bothered by text that lies off the +longdesc page. This is true of most printers, including laser printers +longdesc and PostScript printers. +containersize 3152 +containerchecksum f685c2c6d7d2795cf80702c0f8b4da6661a6d076dfbefeeeb071f21ffebd4420c7777681e550ed8ce05726a4392f526da42cecd6e3f26b5dc8ba775494589297 +doccontainersize 93292 +doccontainerchecksum d06f06a4432638ce7780923818cbe638edbb21f836566fb984353aff0bbfbe0905adfa39cc69fc59c87c9e6f7f2c3c268b7f2ef9a55a0f0a2bf0b5212d9e2124 +docfiles size=34 + RELOC/doc/generic/poster-mac/Changes + RELOC/doc/generic/poster-mac/Makefile + RELOC/doc/generic/poster-mac/README details="Readme" + RELOC/doc/generic/poster-mac/poster-doc.pdf details="Package documentation" + RELOC/doc/generic/poster-mac/poster-doc.tex + RELOC/doc/generic/poster-mac/poster1.pdf + RELOC/doc/generic/poster-mac/poster2.pdf +runfiles size=4 + RELOC/tex/generic/poster-mac/poster.sty + RELOC/tex/generic/poster-mac/poster.tex +catalogue-also a0poster sciposter poster +catalogue-ctan /macros/generic/poster +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics poster +catalogue-version 1.1 + +name powerdot +category Package +revision 45165 +shortdesc A presentation class +relocated 1 +longdesc Powerdot is a presentation class for LaTeX that allows for the +longdesc quick and easy development of professional presentations. It +longdesc comes with many tools that enhance presentations and aid the +longdesc presenter. Examples are automatic overlays, personal notes and +longdesc a handout mode. To view a presentation, DVI, PS or PDF output +longdesc can be used. A powerful template system is available to easily +longdesc develop new styles. A LyX layout file is provided. +containersize 26284 +containerchecksum 20888eecfbf1e390ff32e7cea503c1c9bcb5910044fc4f41238b63039b56da82993fb38c4f24fbcc43c8a4b451b59e1010fb81bca048d5ded1cd6455f7568bc2 +doccontainersize 943004 +doccontainerchecksum ba3051425104a49dc2d553d93220b569dfdf548090a90348ddc0286a36cb9f00e7956c617a133a0ef69bcf69cb5325b4f12007f6ce56868b6336d422183777a4 +docfiles size=321 + RELOC/doc/latex/powerdot/README details="Readme" + RELOC/doc/latex/powerdot/manifest.txt + RELOC/doc/latex/powerdot/pdpream.ble + RELOC/doc/latex/powerdot/powerdot-example.lyx + RELOC/doc/latex/powerdot/powerdot-example.tex + RELOC/doc/latex/powerdot/powerdot-example1.tex + RELOC/doc/latex/powerdot/powerdot-example2.tex + RELOC/doc/latex/powerdot/powerdot-example3.tex + RELOC/doc/latex/powerdot/powerdot-styleexample.tex + RELOC/doc/latex/powerdot/powerdot-styletest.tex + RELOC/doc/latex/powerdot/powerdot.bib + RELOC/doc/latex/powerdot/powerdot.layout + RELOC/doc/latex/powerdot/powerdot.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/powerdot/powerdotDE.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/powerdot/powerdotDE.tex +srccontainersize 67028 +srccontainerchecksum 573248dc8e8e0a248c652baa3a57ca411302b40005a4e095d594f01cfc3a51789ae3a0c90b48d125f863e09a7672020a4fc7e51e45a1a75d8434c30fa41979c2 +srcfiles size=79 + RELOC/source/latex/powerdot/powerdot.dtx +runfiles size=50 + RELOC/tex/latex/powerdot/powerdot-aggie.sty + RELOC/tex/latex/powerdot/powerdot-bframe.sty + RELOC/tex/latex/powerdot/powerdot-ciment.sty + RELOC/tex/latex/powerdot/powerdot-default.ps + RELOC/tex/latex/powerdot/powerdot-default.sty + RELOC/tex/latex/powerdot/powerdot-elcolors.sty + RELOC/tex/latex/powerdot/powerdot-fyma.sty + RELOC/tex/latex/powerdot/powerdot-horatio.sty + RELOC/tex/latex/powerdot/powerdot-husky.sty + RELOC/tex/latex/powerdot/powerdot-ikeda.sty + RELOC/tex/latex/powerdot/powerdot-jefka.sty + RELOC/tex/latex/powerdot/powerdot-klope.sty + RELOC/tex/latex/powerdot/powerdot-paintings.sty + RELOC/tex/latex/powerdot/powerdot-pazik.sty + RELOC/tex/latex/powerdot/powerdot-sailor.sty + RELOC/tex/latex/powerdot/powerdot-simple.sty + RELOC/tex/latex/powerdot/powerdot-tycja.sty + RELOC/tex/latex/powerdot/powerdot-upen.sty + RELOC/tex/latex/powerdot/powerdot.cls +catalogue-also prosper ha-prosper +catalogue-ctan /macros/latex/contrib/powerdot +catalogue-date 2017-08-28 22:47:40 +0200 +catalogue-license lppl1.3 +catalogue-topics presentation class +catalogue-version 1.5c + +name powerdot-FUBerlin +category Package +revision 15878 +shortdesc Powerdot, using the style of FU Berlin +relocated 1 +longdesc The bundle provides a powerdot-derived class and a package for +longdesc use with powerdot to provide the corporate design of the Free +longdesc University in Berlin. Users may use the class itself +longdesc (FUpowerdot) or use the package in the usual way with +longdesc \style=BerlinFU as a class option. Examples of using both the +longdesc class and the package are provided; the PDF is visually +longdesc identical, so the catalogue only lists one; the sources of the +longdesc examples do of course differ. +containersize 2708 +containerchecksum 607e182a393baf3701b944459e9cdd59451c402722226aff8f09e89702e46723be269b21b3eff35c8f71adc4624b00f083bd4aa0ebde66d49a32bf7de1eeaa48 +doccontainersize 1408480 +doccontainerchecksum d822434b9e03f500779ad0b035100d01cbb197a68e931d17871bbe00ef3defbe594796be28c375502129424ef1309eb49e5f9f6cf1fa5ba8b4b8719a2825a011 +docfiles size=1135 + RELOC/doc/latex/powerdot-FUBerlin/FULogo.eps + RELOC/doc/latex/powerdot-FUBerlin/FULogo_RGB.eps + RELOC/doc/latex/powerdot-FUBerlin/FUbib.eps + RELOC/doc/latex/powerdot-FUBerlin/FUseal.eps + RELOC/doc/latex/powerdot-FUBerlin/README details="Readme" + RELOC/doc/latex/powerdot-FUBerlin/exampleClass.pdf details="Example of use of the class" + RELOC/doc/latex/powerdot-FUBerlin/exampleClass.tex + RELOC/doc/latex/powerdot-FUBerlin/exampleStyle.pdf + RELOC/doc/latex/powerdot-FUBerlin/exampleStyle.tex + RELOC/doc/latex/powerdot-FUBerlin/silberlaube2.eps +runfiles size=4 + RELOC/tex/latex/powerdot-FUBerlin/FUpowerdot.cls + RELOC/tex/latex/powerdot-FUBerlin/powerdot-BerlinFU.sty +catalogue-ctan /macros/latex/contrib/powerdot-FUBerlin +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics presentation +catalogue-version 0.01 + +name powerdot-tuliplab +category Package +revision 47963 +shortdesc A style package for Powerdot to provide the design of TULIP Lab +relocated 1 +longdesc powerdot-tuliplab is the LaTeX package used in TULIP Lab for +longdesc presentation drafting. It comes with several sample .tex files +longdesc so that you can quickly start working with it. +containersize 1271908 +containerchecksum 91a8008d0675ea36676682d741ffad1e2f842ae37b47da628bade8391b2c775d7a756d31d5169e087ca0c4c0b0e958a2bb34d5143f905439e9572a6e72c4dbf2 +doccontainersize 9412 +doccontainerchecksum 5805d79f125ad94bc0818f52d31e14d786f4f032e03a89a0ec8ae69433d56654b6acc864563e3273664576a59880bf86de81756f76cf9b920a21ca8331ce117c +docfiles size=11 + RELOC/doc/latex/powerdot-tuliplab/README.md details="Readme" + RELOC/doc/latex/powerdot-tuliplab/tuliplab-P00.tex + RELOC/doc/latex/powerdot-tuliplab/tuliplab-P01.tex + RELOC/doc/latex/powerdot-tuliplab/tuliplab-P02.tex +runfiles size=1110 + RELOC/tex/latex/powerdot-tuliplab/logos/tulip-logo.eps + RELOC/tex/latex/powerdot-tuliplab/logos/tulip-wordmark.eps + RELOC/tex/latex/powerdot-tuliplab/logos/tulip.eps + RELOC/tex/latex/powerdot-tuliplab/logos/tulip/tulip-wordmark0.eps + RELOC/tex/latex/powerdot-tuliplab/logos/tulip/tulip-wordmark1.eps + RELOC/tex/latex/powerdot-tuliplab/logos/tulip/tulip0.eps + RELOC/tex/latex/powerdot-tuliplab/logos/tulip/tulip1.eps + RELOC/tex/latex/powerdot-tuliplab/logos/tulip/tulip2.eps + RELOC/tex/latex/powerdot-tuliplab/logos/tulip/tulip3.eps + RELOC/tex/latex/powerdot-tuliplab/powerdot-tuliplab.sty +catalogue-contact-announce https://github.com/tulip-lab/templatex +catalogue-contact-bugs https://github.com/tulip-lab/templatex/issues +catalogue-contact-development https://github.com/tulip-lab/templatex +catalogue-contact-home https://github.com/tulip-lab/templatex +catalogue-contact-repository https://github.com/tulip-lab/templatex +catalogue-contact-support https://github.com/tulip-lab/templatex/issues +catalogue-ctan /macros/latex/contrib/powerdot-tuliplab +catalogue-date 2018-06-10 05:06:26 +0200 +catalogue-license lppl1.3 +catalogue-topics logo +catalogue-version 1.0.0 + +name ppr-prv +category Package +revision 15878 +shortdesc Prosper preview +relocated 1 +longdesc This class is used with LaTeX presentations using the prosper +longdesc class. ppr-prv stands for 'Prosper Preview'. The aim of this +longdesc class is to produce a printable version of the slides written +longdesc with Prosper, with two slides per page. +containersize 5596 +containerchecksum 4bbd2404d9cb4bee9de81d463a6f4966e28409b07aa744e155f398f07e513dac4ad262fb3ac81717dafc9dd9abaed2789c08d0cbf0ce29137739886b2ad1dc74 +doccontainersize 317360 +doccontainerchecksum b8228988551d32a5d5b3ddfc59dde6af1f48aece8f5c0f8889fbe479db6c962d77b687fb5593079796393a255350dfc90965fac07e241d4f0a48027927065e67 +docfiles size=84 + RELOC/doc/latex/ppr-prv/README details="Readme" + RELOC/doc/latex/ppr-prv/ppr-prv.pdf details="Package documentation" +srccontainersize 9460 +srccontainerchecksum cccb93596677625d323b0ceb6743fab15c4300f3baf09846054aae249608f61ab2a0a5bcfd9a7baa2b3a9ec86b2fb90aaee284608bb908229a918436c9acd772 +srcfiles size=10 + RELOC/source/latex/ppr-prv/ppr-prv.dtx + RELOC/source/latex/ppr-prv/ppr-prv.ins +runfiles size=7 + RELOC/tex/latex/ppr-prv/HAP-ppr-prv.def + RELOC/tex/latex/ppr-prv/ppr-prv.cls +catalogue-ctan /macros/latex/contrib/ppr-prv +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics presentation +catalogue-version 0.13c + +name pracjourn +category Package +revision 15878 +shortdesc Typeset articles for PracTeX +relocated 1 +longdesc The pracjourn class is used for typesetting articles in the +longdesc PracTeX Journal. It is based on the article class with +longdesc modifications to allow for more flexible front-matter and +longdesc revision control, among other small changes. +containersize 4648 +containerchecksum 40e7ea03f0b244810952cf93cdc7799e0e130a7b11d384893b88e420ce6adb4b5606462ab6f2dbb2e134770eaf32540b9feb59393dea72a70f4d881f6f6fa43b +doccontainersize 386140 +doccontainerchecksum 8e9b171919bd6412a3adb75abf1124beaf0fd562cca49076c1729814c7907b5b3f9b240fdb68d91055225e9b366749c2be6a2e421f52142d0a138e377a442046 +docfiles size=107 + RELOC/doc/latex/pracjourn/README details="Readme" + RELOC/doc/latex/pracjourn/pjsample.ltx + RELOC/doc/latex/pracjourn/pjsample.pdf + RELOC/doc/latex/pracjourn/pracjourn.pdf details="Package documentation" +srccontainersize 15244 +srccontainerchecksum a0f40eb8b245c3f6ca2c6e84f4b13d80b2c9d5f67a70c74fc14928fb3b4eba3659bdcca9852d0bcce18088f707955e8f0ef77e71879bd720c9dd8d59ef9713ce +srcfiles size=14 + RELOC/source/latex/pracjourn/pracjourn.dtx + RELOC/source/latex/pracjourn/pracjourn.ins +runfiles size=4 + RELOC/tex/latex/pracjourn/pracjourn.cls +catalogue-contact-home http://tug.org/pracjourn +catalogue-ctan /macros/latex/contrib/pracjourn +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license gpl +catalogue-topics journalpub +catalogue-version 0.4n + +name preprint +category Package +revision 30447 +shortdesc A bundle of packages provided "as is" +relocated 1 +longdesc The bundle comprises: authblk, which permits footnote style +longdesc author/affiliation input in the \author command, balance, to +longdesc balance the end of \twocolumn pages, figcaps, to send figure +longdesc captions, etc., to end document, fullpage, to set narrow page +longdesc margins and set a fixed page style, and sublabel, which permits +longdesc counters to be subnumbered. +containersize 7064 +containerchecksum 66ef40f1f9bc1ef3348923e781ad92dd0174b9c45e16c97662f30971a449dd74580391e1f23fed031a41995e65ff90a6785328de0372cea53e3ce946da469d60 +doccontainersize 634332 +doccontainerchecksum b5e5fa40832249c5a0faa24c26e8b3a2a73036ef007dd3a61adb6a7989926c80e018fba52a66078c3d7b39e76901cc041ebcb9985ff29b53ade2c057abaf1376 +docfiles size=189 + RELOC/doc/latex/preprint/README details="Readme" + RELOC/doc/latex/preprint/authblk.pdf + RELOC/doc/latex/preprint/balance.pdf + RELOC/doc/latex/preprint/figcaps.pdf + RELOC/doc/latex/preprint/fullpage.pdf + RELOC/doc/latex/preprint/sublabel.pdf +srccontainersize 36616 +srccontainerchecksum a7fe23d21dfee4071285ac0ca77a0b8936e8c149b804e9fc19e42cb5fa5eeac23ef3ed59e0433a965ec6203a1b031d2a76975248e624a6452e8fe6ea016be1c9 +srcfiles size=56 + RELOC/source/latex/preprint/authblk.drv + RELOC/source/latex/preprint/authblk.dtx + RELOC/source/latex/preprint/authblk.ins + RELOC/source/latex/preprint/balance.drv + RELOC/source/latex/preprint/balance.dtx + RELOC/source/latex/preprint/balance.ins + RELOC/source/latex/preprint/figcaps.drv + RELOC/source/latex/preprint/figcaps.dtx + RELOC/source/latex/preprint/figcaps.ins + RELOC/source/latex/preprint/fullpage.drv + RELOC/source/latex/preprint/fullpage.dtx + RELOC/source/latex/preprint/fullpage.ins + RELOC/source/latex/preprint/sublabel.drv + RELOC/source/latex/preprint/sublabel.dtx + RELOC/source/latex/preprint/sublabel.ins +runfiles size=9 + RELOC/tex/latex/preprint/authblk.sty + RELOC/tex/latex/preprint/balance.sty + RELOC/tex/latex/preprint/figcaps.sty + RELOC/tex/latex/preprint/fullpage.sty + RELOC/tex/latex/preprint/sublabel.sty +catalogue-ctan /macros/latex/contrib/preprint +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license collection +catalogue-topics collection +catalogue-version 2011 + +name prerex +category Package +revision 45940 +shortdesc Interactive editor and macro support for prerequisite charts +relocated 1 +longdesc This package consists of prerex.sty, a LaTeX package for +longdesc producing charts of course nodes linked by arrows representing +longdesc pre- and co-requisites, and prerex, an interactive program for +longdesc creating and editing chart descriptions. The implementation of +longdesc prerex.sty uses PGF, so that it may be used equally happily +longdesc with LaTeX or pdfLaTeX; prerex itself is written in C. The +longdesc package includes source code for a previewer application, a +longdesc lightweight Qt-4 and poppler-based prerex-enabled PDF viewer. +containersize 5384 +containerchecksum 1df2081c0f10d4514ff324d83fe9949b6cdb9cbfb209b06e5fdbd8ad90991cdccb02143add807b971065b63c1cb865815ac620db6a4df0600bea22e6d57fb734 +doccontainersize 714712 +doccontainerchecksum d94e663d94b9b05acf7ff38285dfa3927764d286fe6f8a386f33d8055a5a5b58ad09f61578009b6b93c3aed684c7492b1407a626113f8eb4f8d0171cc1f45930 +docfiles size=240 + RELOC/doc/latex/prerex/README details="Readme" + RELOC/doc/latex/prerex/chart.pdf + RELOC/doc/latex/prerex/chart.svg + RELOC/doc/latex/prerex/chart.tex + RELOC/doc/latex/prerex/intro.pdf details="Package introduction" + RELOC/doc/latex/prerex/intro.tex + RELOC/doc/latex/prerex/introFonts.png + RELOC/doc/latex/prerex/introchart1.tex + RELOC/doc/latex/prerex/introchart2.tex + RELOC/doc/latex/prerex/prerex-6.5.4.tar.gz + RELOC/doc/latex/prerex/prerex.pdf details="Package documentation" + RELOC/doc/latex/prerex/prerex.sty.7 + RELOC/doc/latex/prerex/prerex.sty.7.pdf + RELOC/doc/latex/prerex/prerex.tex + RELOC/doc/latex/prerex/vprerex-6.4.4.tar.gz + RELOC/doc/latex/prerex/vprerex-6.5.1.tar.gz + RELOC/doc/man/man5/prerex.5 + RELOC/doc/man/man5/prerex.man5.pdf +runfiles size=6 + RELOC/tex/latex/prerex/prerex.sty +catalogue-ctan /graphics/prerex +catalogue-date 2017-12-03 06:19:13 +0100 +catalogue-license gpl +catalogue-topics graphics-prep +catalogue-version a + +name present +category Package +revision 50048 +shortdesc Presentations with Plain TeX +relocated 1 +longdesc The package offers a collection of simple macros for preparing +longdesc presentations in Plain TeX. Slide colour and text colour may be +longdesc set, links between parts of the presentation, to other files, +longdesc and to web addresses may be inserted. Images may be included +longdesc easily, and code is available to provide transition effects +longdesc between slides or frames. The structure of the macros is not +longdesc overly complex, so that users should find it easy to adapt the +longdesc macros to their specific needs. +containersize 4364 +containerchecksum b22c0bb6803ebed5cd26aca4a9b55f2c7b506cc7e8910346a07437d60007310a3d2e3549040ffb2616df7f173279342f2334100aab14b589d0cc9e710ea89369 +doccontainersize 814492 +doccontainerchecksum e43a5de9c4bcf9281416963a898e350ba0a0b2d1cad92cbc97d99e2ee9d25f8407a09f024ec5d03a43fd3eee58e1c40bf99ebfff13913bbf85465588b4cf9710 +docfiles size=414 + RELOC/doc/plain/present/HowToTalkTeX.lp + RELOC/doc/plain/present/HowToTalkTeX.pdf details="Package documentation, as a presentation" + RELOC/doc/plain/present/HowToTalkTeX.tex + RELOC/doc/plain/present/Pfeil1.pdf + RELOC/doc/plain/present/Pfeil2.pdf + RELOC/doc/plain/present/Pfeil3.pdf + RELOC/doc/plain/present/Pfeil4.pdf + RELOC/doc/plain/present/README details="Readme" + RELOC/doc/plain/present/Sagnac.pdf + RELOC/doc/plain/present/Stern.png + RELOC/doc/plain/present/background.png + RELOC/doc/plain/present/present-transitions.tex +runfiles size=3 + RELOC/tex/plain/present/present.tex +catalogue-also lecturer +catalogue-ctan /macros/plain/contrib/present +catalogue-date 2019-02-17 12:28:52 +0100 +catalogue-license lppl +catalogue-topics presentation +catalogue-version 2.2.1 + +name presentations +category Package +revision 43949 +shortdesc Examples from the book Presentationen mit LaTeX +relocated 1 +longdesc This bundle contains all the examples, as source, eps and pdf, +longdesc of the author's book "Presentationen mit LaTeX", from the +longdesc Dante-Edition series. +containersize 456 +containerchecksum b93bd6875538fb61fbbc737625da2d89fd7cef0f6b59999f78176f953d6eeecc2d44cc242bc89f85e293265b26a36eda55ab3fe6804a8e8cee2144694eb1a2fc +doccontainersize 4076768 +doccontainerchecksum 7767c2b3fdb77078729f25ceec85906722d6e2abb6ea45fe9e03e7c0653edffdf1326a055175f309d3afa1f1a30f64c708cf0c6c2c273accf777abec088336fc +docfiles size=2456 + RELOC/doc/latex/presentations/01-01-1.ltx2crop + RELOC/doc/latex/presentations/01-01-2.ltx2ps + RELOC/doc/latex/presentations/01-01-3.ltx2 + RELOC/doc/latex/presentations/01-01-4.ltx2 + RELOC/doc/latex/presentations/01-01-5.ltx2ps + RELOC/doc/latex/presentations/01-01-6.ltx2 + RELOC/doc/latex/presentations/01-02-1.ltxb + RELOC/doc/latex/presentations/01-03-1.ltxb + RELOC/doc/latex/presentations/01-03-2.ltxb + RELOC/doc/latex/presentations/01-03-3.ltx + RELOC/doc/latex/presentations/01-03-4.ltx + RELOC/doc/latex/presentations/01-03-4.ltxb + RELOC/doc/latex/presentations/01-03-5.ltxb + RELOC/doc/latex/presentations/01-04-1.ltxb + RELOC/doc/latex/presentations/01-04-2.ltxb + RELOC/doc/latex/presentations/01-04-3.ltx + RELOC/doc/latex/presentations/01-04-4.ltx + RELOC/doc/latex/presentations/01-04-5.ltxb + RELOC/doc/latex/presentations/01-05-1.ltx + RELOC/doc/latex/presentations/01-05-2.ltx + RELOC/doc/latex/presentations/01-05-3.ltxb + RELOC/doc/latex/presentations/02-01-1.ltxpd + RELOC/doc/latex/presentations/02-01-2.ltxpd + RELOC/doc/latex/presentations/02-01-3.ltxpd + RELOC/doc/latex/presentations/02-02-1.ltxpd + RELOC/doc/latex/presentations/02-03-1.ltxpd + RELOC/doc/latex/presentations/02-03-2.ltxpd + RELOC/doc/latex/presentations/02-03-3.ltxpd + RELOC/doc/latex/presentations/02-03-4.ltxpd + RELOC/doc/latex/presentations/02-04-1.ltxpd + RELOC/doc/latex/presentations/02-04-2.ltxpd + RELOC/doc/latex/presentations/02-04-3.ltxpd + RELOC/doc/latex/presentations/02-04-4.ltxpd + RELOC/doc/latex/presentations/02-04-5.ltxpd + RELOC/doc/latex/presentations/02-04-6.ltxpd + RELOC/doc/latex/presentations/02-04-7.ltxpd + RELOC/doc/latex/presentations/02-05-1.ltxpd + RELOC/doc/latex/presentations/02-06-1.ltxpd + RELOC/doc/latex/presentations/02-06-2.ltxps + RELOC/doc/latex/presentations/02-07-1.ltxpd + RELOC/doc/latex/presentations/02-08-1.ltxpd + RELOC/doc/latex/presentations/02-09-1.ltxps + RELOC/doc/latex/presentations/02-10-1.ltxpd + RELOC/doc/latex/presentations/02-10-2.ltxpd + RELOC/doc/latex/presentations/02-10-3.ltxpd + RELOC/doc/latex/presentations/02-10-4.ltxpd + RELOC/doc/latex/presentations/02-10-5.ltxpd + RELOC/doc/latex/presentations/02-10-6.ltxpd + RELOC/doc/latex/presentations/02-11-1.ltxpd + RELOC/doc/latex/presentations/02-12-1.ltxpd + RELOC/doc/latex/presentations/02-12-2.ltxpd + RELOC/doc/latex/presentations/02-13-1.ltxpd + RELOC/doc/latex/presentations/02-13-2.ltxpd + RELOC/doc/latex/presentations/02-13-3.ltxpd + RELOC/doc/latex/presentations/02-14-1.ltxpd + RELOC/doc/latex/presentations/02-14-10.ltxpd + RELOC/doc/latex/presentations/02-14-11.ltxpd + RELOC/doc/latex/presentations/02-14-12.ltxpd + RELOC/doc/latex/presentations/02-14-13.ltxpd + RELOC/doc/latex/presentations/02-14-14.ltxpd + RELOC/doc/latex/presentations/02-14-15.ltxpd + RELOC/doc/latex/presentations/02-14-16.ltxpd + RELOC/doc/latex/presentations/02-14-17.ltxpd + RELOC/doc/latex/presentations/02-14-18.ltxpd + RELOC/doc/latex/presentations/02-14-2.ltxpd + RELOC/doc/latex/presentations/02-14-3.ltxpd + RELOC/doc/latex/presentations/02-14-4.ltxpd + RELOC/doc/latex/presentations/02-14-5.ltxpd + RELOC/doc/latex/presentations/02-14-6.ltxpd + RELOC/doc/latex/presentations/02-14-7.ltxpd + RELOC/doc/latex/presentations/02-14-8.ltxpd + RELOC/doc/latex/presentations/02-14-9.ltxpd + RELOC/doc/latex/presentations/03-01-1.ltxpd + RELOC/doc/latex/presentations/03-02-1.ltxpd + RELOC/doc/latex/presentations/03-03-1.ltxpd + RELOC/doc/latex/presentations/03-03-2.ltxpd + RELOC/doc/latex/presentations/03-03-3.ltxpd + RELOC/doc/latex/presentations/04-01-1.ltxb + RELOC/doc/latex/presentations/04-01-2.ltxb + RELOC/doc/latex/presentations/04-01-3.ltxb + RELOC/doc/latex/presentations/04-01-4.ltxb + RELOC/doc/latex/presentations/04-03-1.ltxb + RELOC/doc/latex/presentations/04-03-2.ltx2 + RELOC/doc/latex/presentations/04-04-1.ltxb + RELOC/doc/latex/presentations/04-05-1.ltxb + RELOC/doc/latex/presentations/04-06-1.ltxb + RELOC/doc/latex/presentations/04-06-10.ltxb + RELOC/doc/latex/presentations/04-06-11.ltxb + RELOC/doc/latex/presentations/04-06-2.ltxb + RELOC/doc/latex/presentations/04-06-3.ltxb + RELOC/doc/latex/presentations/04-06-4.ltxbps + RELOC/doc/latex/presentations/04-06-5.ltxb + RELOC/doc/latex/presentations/04-06-6.ltxb + RELOC/doc/latex/presentations/04-06-7.ltxb + RELOC/doc/latex/presentations/04-06-8.ltxb + RELOC/doc/latex/presentations/04-06-9.ltxb + RELOC/doc/latex/presentations/04-07-1.ltxb + RELOC/doc/latex/presentations/04-08-1.ltxb + RELOC/doc/latex/presentations/04-09-1.ltxbps + RELOC/doc/latex/presentations/04-11-1.ltxb + RELOC/doc/latex/presentations/04-11-2.ltxb + RELOC/doc/latex/presentations/04-11-3.ltxb + RELOC/doc/latex/presentations/04-12-1.ltxb + RELOC/doc/latex/presentations/04-12-2.ltxb + RELOC/doc/latex/presentations/04-13-1.ltxb + RELOC/doc/latex/presentations/04-13-2.ltxb + RELOC/doc/latex/presentations/04-14-1.ltxb + RELOC/doc/latex/presentations/04-15-1.ltxb + RELOC/doc/latex/presentations/04-15-2.ltxb + RELOC/doc/latex/presentations/04-16-1.ltxb + RELOC/doc/latex/presentations/04-16-2.ltxb + RELOC/doc/latex/presentations/04-16-3.ltxb + RELOC/doc/latex/presentations/04-17-1.ltxb + RELOC/doc/latex/presentations/04-18-1.ltxb + RELOC/doc/latex/presentations/04-18-2.ltxb + RELOC/doc/latex/presentations/04-19-1.ltxb + RELOC/doc/latex/presentations/04-19-2.ltxb + RELOC/doc/latex/presentations/04-20-1.ltxb + RELOC/doc/latex/presentations/04-20-2.ltxb + RELOC/doc/latex/presentations/04-20-3.ltxb + RELOC/doc/latex/presentations/04-20-4.ltxb + RELOC/doc/latex/presentations/04-20-5.ltxb + RELOC/doc/latex/presentations/04-21-1.ltxb + RELOC/doc/latex/presentations/04-21-2.ltxb + RELOC/doc/latex/presentations/04-21-3.ltxb + RELOC/doc/latex/presentations/04-21-4.ltxb + RELOC/doc/latex/presentations/04-22-1.ltxb + RELOC/doc/latex/presentations/04-22-2.ltxb + RELOC/doc/latex/presentations/04-22-3.ltxb + RELOC/doc/latex/presentations/04-23-1.ltxb + RELOC/doc/latex/presentations/04-23-2.ltxb + RELOC/doc/latex/presentations/04-24-1.ltxb + RELOC/doc/latex/presentations/04-24-2.ltxb + RELOC/doc/latex/presentations/04-25-1.ltxb + RELOC/doc/latex/presentations/04-25-10.ltxb + RELOC/doc/latex/presentations/04-25-11.ltxb + RELOC/doc/latex/presentations/04-25-12.ltxb + RELOC/doc/latex/presentations/04-25-13.ltxb + RELOC/doc/latex/presentations/04-25-14.ltxb + RELOC/doc/latex/presentations/04-25-15.ltxb + RELOC/doc/latex/presentations/04-25-16.ltxb + RELOC/doc/latex/presentations/04-25-17.ltxb + RELOC/doc/latex/presentations/04-25-18.ltxb + RELOC/doc/latex/presentations/04-25-19.ltxb + RELOC/doc/latex/presentations/04-25-2.ltxb + RELOC/doc/latex/presentations/04-25-20.ltxb + RELOC/doc/latex/presentations/04-25-21.ltxb + RELOC/doc/latex/presentations/04-25-22.ltxb + RELOC/doc/latex/presentations/04-25-23.ltxb + RELOC/doc/latex/presentations/04-25-24.ltxb + RELOC/doc/latex/presentations/04-25-25.ltxb + RELOC/doc/latex/presentations/04-25-26.ltxb + RELOC/doc/latex/presentations/04-25-27.ltxb + RELOC/doc/latex/presentations/04-25-28.ltxb + RELOC/doc/latex/presentations/04-25-29.ltxb + RELOC/doc/latex/presentations/04-25-3.ltxb + RELOC/doc/latex/presentations/04-25-30.ltxb + RELOC/doc/latex/presentations/04-25-31.ltxb + RELOC/doc/latex/presentations/04-25-32.ltxb + RELOC/doc/latex/presentations/04-25-33.ltxb + RELOC/doc/latex/presentations/04-25-34.ltxb + RELOC/doc/latex/presentations/04-25-35.ltxb + RELOC/doc/latex/presentations/04-25-36.ltxb + RELOC/doc/latex/presentations/04-25-37.ltxb + RELOC/doc/latex/presentations/04-25-4.ltxb + RELOC/doc/latex/presentations/04-25-5.ltxb + RELOC/doc/latex/presentations/04-25-6.ltxb + RELOC/doc/latex/presentations/04-25-7.ltxb + RELOC/doc/latex/presentations/04-25-8.ltxb + RELOC/doc/latex/presentations/04-25-9.ltxb + RELOC/doc/latex/presentations/04-26-1.ltxb + RELOC/doc/latex/presentations/04-26-10.ltxb + RELOC/doc/latex/presentations/04-26-11.ltxb + RELOC/doc/latex/presentations/04-26-12.ltxb + RELOC/doc/latex/presentations/04-26-13.ltxb + RELOC/doc/latex/presentations/04-26-14.ltxb + RELOC/doc/latex/presentations/04-26-15.ltxb + RELOC/doc/latex/presentations/04-26-16.ltxb + RELOC/doc/latex/presentations/04-26-17.ltxb + RELOC/doc/latex/presentations/04-26-18.ltxb + RELOC/doc/latex/presentations/04-26-19.ltxb + RELOC/doc/latex/presentations/04-26-2.ltxb + RELOC/doc/latex/presentations/04-26-20.ltxb + RELOC/doc/latex/presentations/04-26-21.ltxb + RELOC/doc/latex/presentations/04-26-22.ltxb + RELOC/doc/latex/presentations/04-26-23.ltxb + RELOC/doc/latex/presentations/04-26-24.ltxb + RELOC/doc/latex/presentations/04-26-25.ltxb + RELOC/doc/latex/presentations/04-26-26.ltxb + RELOC/doc/latex/presentations/04-26-27.ltxb + RELOC/doc/latex/presentations/04-26-28.ltxb + RELOC/doc/latex/presentations/04-26-29.ltxb + RELOC/doc/latex/presentations/04-26-3.ltxb + RELOC/doc/latex/presentations/04-26-30.ltxb + RELOC/doc/latex/presentations/04-26-31.ltxb + RELOC/doc/latex/presentations/04-26-32.ltxb + RELOC/doc/latex/presentations/04-26-33.ltxb + RELOC/doc/latex/presentations/04-26-34.ltxb + RELOC/doc/latex/presentations/04-26-35.ltxb + RELOC/doc/latex/presentations/04-26-36.ltxb + RELOC/doc/latex/presentations/04-26-37.ltxb + RELOC/doc/latex/presentations/04-26-4.ltxb + RELOC/doc/latex/presentations/04-26-5.ltxb + RELOC/doc/latex/presentations/04-26-6.ltxb + RELOC/doc/latex/presentations/04-26-7.ltxb + RELOC/doc/latex/presentations/04-26-8.ltxb + RELOC/doc/latex/presentations/04-26-9.ltxb + RELOC/doc/latex/presentations/05-00-1.ltxb + RELOC/doc/latex/presentations/05-01-1.ltxb + RELOC/doc/latex/presentations/05-02-1.ltxb + RELOC/doc/latex/presentations/05-03-1.ltxb + RELOC/doc/latex/presentations/05-03-2.ltxb + RELOC/doc/latex/presentations/06-01-1.ltx + RELOC/doc/latex/presentations/06-01-2.ltx + RELOC/doc/latex/presentations/06-01-3.ltx + RELOC/doc/latex/presentations/06-01-4.ltx + RELOC/doc/latex/presentations/06-01-5.ltx + RELOC/doc/latex/presentations/06-01-6.ltx + RELOC/doc/latex/presentations/06-01-7.ltx + RELOC/doc/latex/presentations/06-02-1.ltxps + RELOC/doc/latex/presentations/06-02-2.ltx + RELOC/doc/latex/presentations/06-04-1.ltx + RELOC/doc/latex/presentations/06-04-2.ltx + RELOC/doc/latex/presentations/06-04-3.ltx + RELOC/doc/latex/presentations/06-05-1.ltx + RELOC/doc/latex/presentations/07-03-1.ltx + RELOC/doc/latex/presentations/07-03-2.ltx + RELOC/doc/latex/presentations/07-03-3.ltxpd + RELOC/doc/latex/presentations/07-03-4.ltxb + RELOC/doc/latex/presentations/07-05-1.ltxbps + RELOC/doc/latex/presentations/07-05-2.ltxbps + RELOC/doc/latex/presentations/README details="Readme" + RELOC/doc/latex/presentations/Textdemo.tex + RELOC/doc/latex/presentations/beamer-demo.tex + RELOC/doc/latex/presentations/beamer-demo2.tex + RELOC/doc/latex/presentations/images/beamer/FULogo.png + RELOC/doc/latex/presentations/images/beamer/FULuft.jpg + RELOC/doc/latex/presentations/images/beamer/FUbib.jpg + RELOC/doc/latex/presentations/images/beamer/FUlogo.pdf + RELOC/doc/latex/presentations/images/beamer/TU.jpg + RELOC/doc/latex/presentations/images/beamer/TeX.pdf + RELOC/doc/latex/presentations/images/beamer/beamer0.pdf + RELOC/doc/latex/presentations/images/beamer/beamer1.pdf + RELOC/doc/latex/presentations/images/beamer/beamer2.pdf + RELOC/doc/latex/presentations/images/beamer/beamernavbar.png + RELOC/doc/latex/presentations/images/beamer/beamernavsymbols.pdf + RELOC/doc/latex/presentations/images/beamer/beamernavsymbols.tex + RELOC/doc/latex/presentations/images/beamer/fu-berlin-air.pdf + RELOC/doc/latex/presentations/images/beamer/fu-berlin.pdf + RELOC/doc/latex/presentations/images/beamer/geo.jpg + RELOC/doc/latex/presentations/images/beamer/ligaturen.png + RELOC/doc/latex/presentations/images/beamer/multimedia.jpg + RELOC/doc/latex/presentations/images/beamer/multimedia.png + RELOC/doc/latex/presentations/images/beamer/multimedia.tex + RELOC/doc/latex/presentations/images/beamer/silberlaube.jpg + RELOC/doc/latex/presentations/images/beamer/silberlaube2.jpg + RELOC/doc/latex/presentations/images/beamer/zedat.pdf + RELOC/doc/latex/presentations/images/pd/FULogo.eps + RELOC/doc/latex/presentations/images/pd/FULogo2.eps + RELOC/doc/latex/presentations/images/pd/FULogoRGB.eps + RELOC/doc/latex/presentations/images/pd/FULogo_RGB.eps + RELOC/doc/latex/presentations/images/pd/FUbib.eps + RELOC/doc/latex/presentations/images/pd/fuBIB10.eps + RELOC/doc/latex/presentations/images/pd/fuBIB10.pdf + RELOC/doc/latex/presentations/images/pd/logofbbw.eps + RELOC/doc/latex/presentations/images/pd/silberlaube.eps + RELOC/doc/latex/presentations/images/pd/silberlaube2.eps + RELOC/doc/latex/presentations/images/pd/wieesgeht.eps + RELOC/doc/latex/presentations/images/pd/zedat2.eps + RELOC/doc/latex/presentations/images/pdfscreen/Tore3d.pdf + RELOC/doc/latex/presentations/images/pdfscreen/mp.pdf + RELOC/doc/latex/presentations/images/pdfscreen/mpgraph.mps + RELOC/doc/latex/presentations/images/pdfscreen/pst.pdf + RELOC/doc/latex/presentations/images/pdfscreen/tex.png + RELOC/doc/latex/presentations/pd-demo-default.tex + RELOC/doc/latex/presentations/pd-demo.tex +catalogue-ctan /info/examples/Presentations_de +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics presentation book-ex + +name presentations-en +category Package +revision 29803 +shortdesc Examples from the book Presentations with LaTeX +relocated 1 +longdesc This bundle contains all the examples, as source, eps and pdf, +longdesc of the author's book "Presentations with LaTeX", from the +longdesc Dante-Edition series, Published by Lehmanns Media. +containersize 484 +containerchecksum 47c4c3e2b1dea3473daf00f1577a2cdbfff2a3a64d5f39507a9486fd2e77dbcd8ea1e3bdf4069aeee620a62047b1890eecd588b50bad2f1c33b739f7721b205b +doccontainersize 830668 +doccontainerchecksum f9d3b24aabc47cfaa0487d683708fed12489e1aca7e7107ba9bf058864f0dc5967fc7a84eab59888567bd47b06ce96a75dd50a132e6e929d206e30c30585d346 +docfiles size=542 + RELOC/doc/latex/presentations-en/01-01-1.ltx2crop + RELOC/doc/latex/presentations-en/01-01-2.ltx2ps + RELOC/doc/latex/presentations-en/01-01-3.ltx2 + RELOC/doc/latex/presentations-en/01-01-4.ltx2 + RELOC/doc/latex/presentations-en/01-01-5.ltx2ps + RELOC/doc/latex/presentations-en/01-01-6.ltx2 + RELOC/doc/latex/presentations-en/01-02-1.ltxb + RELOC/doc/latex/presentations-en/01-03-1.ltxb + RELOC/doc/latex/presentations-en/01-03-2.ltxb + RELOC/doc/latex/presentations-en/01-03-3.ltx + RELOC/doc/latex/presentations-en/01-03-4.ltx + RELOC/doc/latex/presentations-en/01-03-5.ltxb + RELOC/doc/latex/presentations-en/02-01-1.ltxpd + RELOC/doc/latex/presentations-en/02-01-2.ltxpd + RELOC/doc/latex/presentations-en/02-01-3.ltxpd + RELOC/doc/latex/presentations-en/02-02-1.ltxpd + RELOC/doc/latex/presentations-en/02-03-1.ltxpd + RELOC/doc/latex/presentations-en/02-03-2.ltxpd + RELOC/doc/latex/presentations-en/02-03-3.ltxpd + RELOC/doc/latex/presentations-en/02-03-4.ltxpd + RELOC/doc/latex/presentations-en/02-04-1.ltxpd + RELOC/doc/latex/presentations-en/02-04-2.ltxpd + RELOC/doc/latex/presentations-en/02-04-3.ltxpd + RELOC/doc/latex/presentations-en/02-04-4.ltxpd + RELOC/doc/latex/presentations-en/02-04-5.ltxpd + RELOC/doc/latex/presentations-en/02-04-6.ltxpd + RELOC/doc/latex/presentations-en/02-04-7.ltxpd + RELOC/doc/latex/presentations-en/02-04-8.ltxpd + RELOC/doc/latex/presentations-en/02-05-1.ltxpd + RELOC/doc/latex/presentations-en/02-06-1.ltxpd + RELOC/doc/latex/presentations-en/02-06-2.ltxps + RELOC/doc/latex/presentations-en/02-07-1.ltxpd + RELOC/doc/latex/presentations-en/02-09-1.ltxps + RELOC/doc/latex/presentations-en/02-10-1.ltxpd + RELOC/doc/latex/presentations-en/02-10-2.ltxpd + RELOC/doc/latex/presentations-en/02-10-3.ltxpd + RELOC/doc/latex/presentations-en/02-10-4.ltxpd + RELOC/doc/latex/presentations-en/02-10-5.ltxpd + RELOC/doc/latex/presentations-en/02-10-6.ltxpd + RELOC/doc/latex/presentations-en/02-11-1.ltxpd + RELOC/doc/latex/presentations-en/02-12-1.ltxpd + RELOC/doc/latex/presentations-en/02-12-2.ltxpd + RELOC/doc/latex/presentations-en/02-13-1.ltxpd + RELOC/doc/latex/presentations-en/02-13-2.ltxpd + RELOC/doc/latex/presentations-en/02-13-3.ltxpd + RELOC/doc/latex/presentations-en/02-14-1.ltxpd + RELOC/doc/latex/presentations-en/02-14-10.ltxpd + RELOC/doc/latex/presentations-en/02-14-11.ltxpd + RELOC/doc/latex/presentations-en/02-14-12.ltxpd + RELOC/doc/latex/presentations-en/02-14-13.ltxpd + RELOC/doc/latex/presentations-en/02-14-14.ltxpd + RELOC/doc/latex/presentations-en/02-14-15.ltxpd + RELOC/doc/latex/presentations-en/02-14-16.ltxpd + RELOC/doc/latex/presentations-en/02-14-17.ltxpd + RELOC/doc/latex/presentations-en/02-14-18.ltxpd + RELOC/doc/latex/presentations-en/02-14-19.ltxpd + RELOC/doc/latex/presentations-en/02-14-2.ltxpd + RELOC/doc/latex/presentations-en/02-14-3.ltxpd + RELOC/doc/latex/presentations-en/02-14-4.ltxpd + RELOC/doc/latex/presentations-en/02-14-5.ltxpd + RELOC/doc/latex/presentations-en/02-14-6.ltxpd + RELOC/doc/latex/presentations-en/02-14-7.ltxpd + RELOC/doc/latex/presentations-en/02-14-8.ltxpd + RELOC/doc/latex/presentations-en/02-14-9.ltxpd + RELOC/doc/latex/presentations-en/03-01-1.ltxpd + RELOC/doc/latex/presentations-en/03-02-1.ltxpd + RELOC/doc/latex/presentations-en/03-03-1.ltxpd + RELOC/doc/latex/presentations-en/03-03-2.ltxpd + RELOC/doc/latex/presentations-en/03-04-1.ltxpd + RELOC/doc/latex/presentations-en/04-01-1.ltxb + RELOC/doc/latex/presentations-en/04-01-2.ltxb + RELOC/doc/latex/presentations-en/04-01-3.ltxb + RELOC/doc/latex/presentations-en/04-01-4.ltxb + RELOC/doc/latex/presentations-en/04-03-1.ltxb + RELOC/doc/latex/presentations-en/04-03-2.ltx2 + RELOC/doc/latex/presentations-en/04-04-1.ltxb + RELOC/doc/latex/presentations-en/04-05-1.ltxb + RELOC/doc/latex/presentations-en/04-06-1.ltxb + RELOC/doc/latex/presentations-en/04-06-10.ltxb + RELOC/doc/latex/presentations-en/04-06-11.ltxb + RELOC/doc/latex/presentations-en/04-06-2.ltxb + RELOC/doc/latex/presentations-en/04-06-3.ltxb + RELOC/doc/latex/presentations-en/04-06-4.ltxbps + RELOC/doc/latex/presentations-en/04-06-5.ltxb + RELOC/doc/latex/presentations-en/04-06-6.ltxb + RELOC/doc/latex/presentations-en/04-06-7.ltxb + RELOC/doc/latex/presentations-en/04-06-8.ltxb + RELOC/doc/latex/presentations-en/04-06-9.ltxb + RELOC/doc/latex/presentations-en/04-07-1.ltxb + RELOC/doc/latex/presentations-en/04-08-1.ltxb + RELOC/doc/latex/presentations-en/04-09-1.ltxbps + RELOC/doc/latex/presentations-en/04-11-1.ltxb + RELOC/doc/latex/presentations-en/04-11-2.ltxb + RELOC/doc/latex/presentations-en/04-11-3.ltxb + RELOC/doc/latex/presentations-en/04-12-1.ltxb + RELOC/doc/latex/presentations-en/04-12-2.ltxb + RELOC/doc/latex/presentations-en/04-13-1.ltxb + RELOC/doc/latex/presentations-en/04-13-2.ltxb + RELOC/doc/latex/presentations-en/04-14-1.ltxb + RELOC/doc/latex/presentations-en/04-15-1.ltxb + RELOC/doc/latex/presentations-en/04-15-2.ltxb + RELOC/doc/latex/presentations-en/04-16-1.ltxb + RELOC/doc/latex/presentations-en/04-16-2.ltxb + RELOC/doc/latex/presentations-en/04-16-3.ltxb + RELOC/doc/latex/presentations-en/04-17-1.ltxb + RELOC/doc/latex/presentations-en/04-18-1.ltxb + RELOC/doc/latex/presentations-en/04-18-2.ltxb + RELOC/doc/latex/presentations-en/04-19-1.ltxb + RELOC/doc/latex/presentations-en/04-19-2.ltxb + RELOC/doc/latex/presentations-en/04-20-1.ltxb + RELOC/doc/latex/presentations-en/04-20-2.ltxb + RELOC/doc/latex/presentations-en/04-20-3.ltxb + RELOC/doc/latex/presentations-en/04-20-4.ltxb + RELOC/doc/latex/presentations-en/04-20-5.ltxb + RELOC/doc/latex/presentations-en/04-22-1.ltxb + RELOC/doc/latex/presentations-en/04-22-2.ltxb + RELOC/doc/latex/presentations-en/04-22-3.ltxb + RELOC/doc/latex/presentations-en/04-22-4.ltxb + RELOC/doc/latex/presentations-en/04-23-1.ltxb + RELOC/doc/latex/presentations-en/04-23-2.ltxb + RELOC/doc/latex/presentations-en/04-23-3.ltxb + RELOC/doc/latex/presentations-en/04-24-1.ltxb + RELOC/doc/latex/presentations-en/04-24-2.ltxb + RELOC/doc/latex/presentations-en/04-25-1.ltxb + RELOC/doc/latex/presentations-en/04-25-2.ltxb + RELOC/doc/latex/presentations-en/04-26-1.ltxb + RELOC/doc/latex/presentations-en/04-26-2.ltxb + RELOC/doc/latex/presentations-en/04-26-3.ltxb + RELOC/doc/latex/presentations-en/04-26-4.ltxb + RELOC/doc/latex/presentations-en/04-27-1.ltxb + RELOC/doc/latex/presentations-en/04-27-10.ltxb + RELOC/doc/latex/presentations-en/04-27-11.ltxb + RELOC/doc/latex/presentations-en/04-27-12.ltxb + RELOC/doc/latex/presentations-en/04-27-13.ltxb + RELOC/doc/latex/presentations-en/04-27-14.ltxb + RELOC/doc/latex/presentations-en/04-27-15.ltxb + RELOC/doc/latex/presentations-en/04-27-16.ltxb + RELOC/doc/latex/presentations-en/04-27-17.ltxb + RELOC/doc/latex/presentations-en/04-27-18.ltxb + RELOC/doc/latex/presentations-en/04-27-19.ltxb + RELOC/doc/latex/presentations-en/04-27-2.ltxb + RELOC/doc/latex/presentations-en/04-27-20.ltxb + RELOC/doc/latex/presentations-en/04-27-21.ltxb + RELOC/doc/latex/presentations-en/04-27-22.ltxb + RELOC/doc/latex/presentations-en/04-27-23.ltxb + RELOC/doc/latex/presentations-en/04-27-24.ltxb + RELOC/doc/latex/presentations-en/04-27-25.ltxb + RELOC/doc/latex/presentations-en/04-27-26.ltxb + RELOC/doc/latex/presentations-en/04-27-27.ltxb + RELOC/doc/latex/presentations-en/04-27-28.ltxb + RELOC/doc/latex/presentations-en/04-27-29.ltxb + RELOC/doc/latex/presentations-en/04-27-3.ltxb + RELOC/doc/latex/presentations-en/04-27-30.ltxb + RELOC/doc/latex/presentations-en/04-27-31.ltxb + RELOC/doc/latex/presentations-en/04-27-32.ltxb + RELOC/doc/latex/presentations-en/04-27-33.ltxb + RELOC/doc/latex/presentations-en/04-27-34.ltxb + RELOC/doc/latex/presentations-en/04-27-35.ltxb + RELOC/doc/latex/presentations-en/04-27-36.ltxb + RELOC/doc/latex/presentations-en/04-27-37.ltxb + RELOC/doc/latex/presentations-en/04-27-38.ltxb + RELOC/doc/latex/presentations-en/04-27-39.ltxb + RELOC/doc/latex/presentations-en/04-27-4.ltxb + RELOC/doc/latex/presentations-en/04-27-40.ltxb + RELOC/doc/latex/presentations-en/04-27-41.ltxb + RELOC/doc/latex/presentations-en/04-27-42.ltxb + RELOC/doc/latex/presentations-en/04-27-43.ltxb + RELOC/doc/latex/presentations-en/04-27-44.ltxb + RELOC/doc/latex/presentations-en/04-27-45.ltxb + RELOC/doc/latex/presentations-en/04-27-46.ltxb + RELOC/doc/latex/presentations-en/04-27-47.ltxb + RELOC/doc/latex/presentations-en/04-27-48.ltxb + RELOC/doc/latex/presentations-en/04-27-49.ltxb + RELOC/doc/latex/presentations-en/04-27-5.ltxb + RELOC/doc/latex/presentations-en/04-27-50.ltxb + RELOC/doc/latex/presentations-en/04-27-51.ltxb + RELOC/doc/latex/presentations-en/04-27-52.ltxb + RELOC/doc/latex/presentations-en/04-27-53.ltxb + RELOC/doc/latex/presentations-en/04-27-54.ltxb + RELOC/doc/latex/presentations-en/04-27-55.ltxb + RELOC/doc/latex/presentations-en/04-27-56.ltxb + RELOC/doc/latex/presentations-en/04-27-57.ltxb + RELOC/doc/latex/presentations-en/04-27-58.ltxb + RELOC/doc/latex/presentations-en/04-27-59.ltxb + RELOC/doc/latex/presentations-en/04-27-6.ltxb + RELOC/doc/latex/presentations-en/04-27-60.ltxb + RELOC/doc/latex/presentations-en/04-27-61.ltxb + RELOC/doc/latex/presentations-en/04-27-62.ltxb + RELOC/doc/latex/presentations-en/04-27-63.ltxb + RELOC/doc/latex/presentations-en/04-27-64.ltxb + RELOC/doc/latex/presentations-en/04-27-65.ltxb + RELOC/doc/latex/presentations-en/04-27-7.ltxb + RELOC/doc/latex/presentations-en/04-27-8.ltxb + RELOC/doc/latex/presentations-en/04-27-9.ltxb + RELOC/doc/latex/presentations-en/05-00-1.ltxb + RELOC/doc/latex/presentations-en/05-01-1.ltxb + RELOC/doc/latex/presentations-en/05-02-1.ltxb + RELOC/doc/latex/presentations-en/05-03-1.ltxb + RELOC/doc/latex/presentations-en/05-03-2.ltxb + RELOC/doc/latex/presentations-en/06-01-1.ltx + RELOC/doc/latex/presentations-en/06-01-2.ltx + RELOC/doc/latex/presentations-en/06-01-3.ltx + RELOC/doc/latex/presentations-en/06-01-4.ltx + RELOC/doc/latex/presentations-en/06-01-5.ltx + RELOC/doc/latex/presentations-en/06-01-6.ltx + RELOC/doc/latex/presentations-en/06-01-7.ltx + RELOC/doc/latex/presentations-en/06-02-1.ltxps + RELOC/doc/latex/presentations-en/06-02-2.ltx + RELOC/doc/latex/presentations-en/06-04-1.ltx + RELOC/doc/latex/presentations-en/06-04-2.ltx + RELOC/doc/latex/presentations-en/06-04-3.ltx + RELOC/doc/latex/presentations-en/06-05-1.ltx + RELOC/doc/latex/presentations-en/07-03-1.ltx + RELOC/doc/latex/presentations-en/07-03-2.ltx + RELOC/doc/latex/presentations-en/07-03-3.ltxpd + RELOC/doc/latex/presentations-en/07-03-4.ltxb + RELOC/doc/latex/presentations-en/07-05-1.ltxbps + RELOC/doc/latex/presentations-en/07-05-2.ltxbps + RELOC/doc/latex/presentations-en/DEexa.sty + RELOC/doc/latex/presentations-en/DEoptions.sty + RELOC/doc/latex/presentations-en/PPRtime.sty + RELOC/doc/latex/presentations-en/README details="Readme" + RELOC/doc/latex/presentations-en/Textdemo.tex + RELOC/doc/latex/presentations-en/beamer-demo-en.tex + RELOC/doc/latex/presentations-en/beamer-demo.tex + RELOC/doc/latex/presentations-en/beamer-demo2.tex + RELOC/doc/latex/presentations-en/beispiel.cls + RELOC/doc/latex/presentations-en/bspcalweekly.cls + RELOC/doc/latex/presentations-en/bspdvdcoll.cls + RELOC/doc/latex/presentations-en/bspfont.cls + RELOC/doc/latex/presentations-en/bsppstricks.cls + RELOC/doc/latex/presentations-en/buch-E.bib + RELOC/doc/latex/presentations-en/buch.bib + RELOC/doc/latex/presentations-en/exa-fontconfig.tex + RELOC/doc/latex/presentations-en/exaarticle.cls + RELOC/doc/latex/presentations-en/exaarticle2.cls + RELOC/doc/latex/presentations-en/exaartplain.cls + RELOC/doc/latex/presentations-en/exabeamer.cls + RELOC/doc/latex/presentations-en/exabook.cls + RELOC/doc/latex/presentations-en/exabook2.cls + RELOC/doc/latex/presentations-en/exadante.cls + RELOC/doc/latex/presentations-en/exafoils.cls + RELOC/doc/latex/presentations-en/exafubeamer.cls + RELOC/doc/latex/presentations-en/exafupd.cls + RELOC/doc/latex/presentations-en/examargin.cls + RELOC/doc/latex/presentations-en/examemoir.cls + RELOC/doc/latex/presentations-en/examinimal-mathsymbols.cls + RELOC/doc/latex/presentations-en/examinimal.cls + RELOC/doc/latex/presentations-en/exapd.cls + RELOC/doc/latex/presentations-en/exaprosper.cls + RELOC/doc/latex/presentations-en/exareport.cls + RELOC/doc/latex/presentations-en/exaseminar.cls + RELOC/doc/latex/presentations-en/exaslidenotes.cls + RELOC/doc/latex/presentations-en/exasymbol.cls + RELOC/doc/latex/presentations-en/exaxetex.cls + RELOC/doc/latex/presentations-en/fontDemo-E.tex + RELOC/doc/latex/presentations-en/fontDemo.tex + RELOC/doc/latex/presentations-en/images/beamer/TU.jpg + RELOC/doc/latex/presentations-en/images/beamer/TeX.pdf + RELOC/doc/latex/presentations-en/images/beamer/beamer0.pdf + RELOC/doc/latex/presentations-en/images/beamer/beamer1.pdf + RELOC/doc/latex/presentations-en/images/beamer/beamer2.pdf + RELOC/doc/latex/presentations-en/images/beamer/beamernavbar.png + RELOC/doc/latex/presentations-en/images/beamer/beamernavsymbols.pdf + RELOC/doc/latex/presentations-en/images/beamer/beamernavsymbols.tex + RELOC/doc/latex/presentations-en/images/beamer/grating.png + RELOC/doc/latex/presentations-en/images/beamer/ligaturen.png + RELOC/doc/latex/presentations-en/images/beamer/multimedia.jpg + RELOC/doc/latex/presentations-en/images/beamer/multimedia.tex + RELOC/doc/latex/presentations-en/images/beamer/transition1.png + RELOC/doc/latex/presentations-en/images/beamer/zedat.pdf + RELOC/doc/latex/presentations-en/images/pd/clemson.gif + RELOC/doc/latex/presentations-en/images/pd/clemson.png + RELOC/doc/latex/presentations-en/images/pd/logo-clemson.png + RELOC/doc/latex/presentations-en/images/pd/logofbbw.eps + RELOC/doc/latex/presentations-en/images/pd/moviePD.png + RELOC/doc/latex/presentations-en/images/pd/pawmkorange.png + RELOC/doc/latex/presentations-en/images/pd/pawmkpurple.png + RELOC/doc/latex/presentations-en/images/pd/pawtraceorange.png + RELOC/doc/latex/presentations-en/images/pd/pawtracep.png + RELOC/doc/latex/presentations-en/images/pd/wieesgeht.eps + RELOC/doc/latex/presentations-en/images/pd/zedat2.eps + RELOC/doc/latex/presentations-en/images/pdfscreen/Tore3d.pdf + RELOC/doc/latex/presentations-en/images/pdfscreen/mp.pdf + RELOC/doc/latex/presentations-en/images/pdfscreen/mpgraph.mps + RELOC/doc/latex/presentations-en/images/pdfscreen/pst.pdf + RELOC/doc/latex/presentations-en/images/pdfscreen/tex.png + RELOC/doc/latex/presentations-en/obox.sty + RELOC/doc/latex/presentations-en/pd-demo-default.tex + RELOC/doc/latex/presentations-en/pd-demo.tex + RELOC/doc/latex/presentations-en/powerdot-clemson.sty + RELOC/doc/latex/presentations-en/prosper.cls + RELOC/doc/latex/presentations-en/runAll + RELOC/doc/latex/presentations-en/screxa.cls + RELOC/doc/latex/presentations-en/screxabook.cls + RELOC/doc/latex/presentations-en/screxareport.cls + RELOC/doc/latex/presentations-en/slidenotes.cfg + RELOC/doc/latex/presentations-en/slidenotes.cls + RELOC/doc/latex/presentations-en/textdemo.sty +catalogue-also presentations +catalogue-ctan /info/examples/Presentations_en +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics presentation book-ex + +name pressrelease +category Package +revision 35147 +shortdesc A class for typesetting press releases +relocated 1 +longdesc A configurable class for writing press releases. +containersize 4040 +containerchecksum 0f983d4f836c03ede4ed6bd8c2c41dc69ad75a28d9006ff7ab534c6e483e84e2151bfd93fefa43ca327fbeec14787b43205457a9cf1e733f8a4c3a7c561498fc +doccontainersize 617876 +doccontainerchecksum f107b506ba50ba8ed1b655f13049210ec4b90620348ac708afbba4d992470dd5aa8eabe84e2c0b926a55afce49e0a2cee28ecb3877550fe81099f7e5b40e9f40 +docfiles size=267 + RELOC/doc/latex/pressrelease/CHANGES + RELOC/doc/latex/pressrelease/README details="Readme" + RELOC/doc/latex/pressrelease/pressrelease.pdf details="Package documentation" + RELOC/doc/latex/pressrelease/samples/sample-pressrelease.pdf + RELOC/doc/latex/pressrelease/samples/sample-pressrelease.tex + RELOC/doc/latex/pressrelease/samples/sample-pressrelease2.pdf + RELOC/doc/latex/pressrelease/samples/sample-pressrelease2.tex + RELOC/doc/latex/pressrelease/samples/sample-pressrelease3.pdf + RELOC/doc/latex/pressrelease/samples/sample-pressrelease3.tex + RELOC/doc/latex/pressrelease/samples/sample-pressrelease4.pdf + RELOC/doc/latex/pressrelease/samples/sample-pressrelease4.tex + RELOC/doc/latex/pressrelease/samples/sample-pressrelease5.pdf + RELOC/doc/latex/pressrelease/samples/sample-pressrelease5.tex + RELOC/doc/latex/pressrelease/samples/sample-pressrelease6.pdf + RELOC/doc/latex/pressrelease/samples/sample-pressrelease6.tex + RELOC/doc/latex/pressrelease/samples/sample-pressrelease7.pdf + RELOC/doc/latex/pressrelease/samples/sample-pressrelease7.tex +srccontainersize 10660 +srccontainerchecksum 57e94723413ce6fbb1405dacce4af0ab9f7b5e5fc9d091fcf3054fe9505cfda885ebf00b3242ad341325d982d223438e1a2b6cd1f9286cbf5621feb5ae9b1a2f +srcfiles size=13 + RELOC/source/latex/pressrelease/pressrelease.dtx + RELOC/source/latex/pressrelease/pressrelease.ins +runfiles size=5 + RELOC/tex/latex/pressrelease/pressrelease-symbols.sty + RELOC/tex/latex/pressrelease/pressrelease.cls +catalogue-ctan /macros/latex/contrib/pressrelease +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics publicity +catalogue-version 1.0 + +name prettyref +category Package +revision 15878 +shortdesc Make label references "self-identify" +relocated 1 +longdesc Prettyref provides a command \newrefformat, which specifies the +longdesc way in which a reference is typeset, according to a label +longdesc "identification". The identification is set in the \label +longdesc command, by using prefixed label names; so instead of +longdesc \label{mysection}, one uses \label{sec:mysection}, and +longdesc prettyref interprets the "sec:" part. The package is compatible +longdesc with hyperref and with other packages. +containersize 1212 +containerchecksum 06e3ee942b9a30ff866abf8f6a46b6960321c0aaf2516ce48f587a55ffcb66f158887cbb9a476bc6323e90edd22766fec19d0cfcc2be8805eedd175fdf08ef42 +doccontainersize 32696 +doccontainerchecksum abcd8cb7e7ab78511d953d95699060581844dda67b3489317057782d97388f7cba990735b395e9563e15fd1fee137a86e8198d2d545f437a2d105bfd3e95bc12 +docfiles size=12 + RELOC/doc/latex/prettyref/README + RELOC/doc/latex/prettyref/prettyref.pdf details="Package documentation" +srccontainersize 2464 +srccontainerchecksum d4793c0cec0e56a74d05c08547b68a83e5af33464b3c29a50189696c4d000ffff370422192a289a734e42cb4ef6bf2b95866523f3d6257961608e95f13dfb87e +srcfiles size=3 + RELOC/source/latex/prettyref/prettyref.dtx + RELOC/source/latex/prettyref/prettyref.ins +runfiles size=1 + RELOC/tex/latex/prettyref/prettyref.sty +catalogue-also typedref +catalogue-ctan /macros/latex/contrib/prettyref +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license pd +catalogue-topics label-ref +catalogue-version 3.0 + +name preview +category Package +revision 44883 +shortdesc Extract bits of a LaTeX source for output +relocated 1 +longdesc The package is a free-standing part of the preview-latex +longdesc bundle. The package provides the support preview-latex needs, +longdesc when it chooses the matter it will preview. The output may +longdesc reasonably be expected to have other uses, as in html +longdesc translators, etc. +containersize 6796 +containerchecksum 3884a0b8c8f09d046c7f39df28b7dcce43a95820636f39f628b499b2d06ab44eef647f74c6eaaf23692ff48d3bf5580ba97daa1e2021985c7d0f05f7206782f2 +doccontainersize 172176 +doccontainerchecksum d1d78634eb2289292948197bf3399b6afd2ccf5d59abe47ba489e11c0ca911c9820e7e06e9b84920ee0c323e83b32c0be53bfc8d09261ffc45ee728642e640b9 +docfiles size=43 + RELOC/doc/latex/preview/README details="Readme" + RELOC/doc/latex/preview/preview.pdf details="Package documentation" +srccontainersize 22596 +srccontainerchecksum 169f2fa0b59d1312a3cb42268612194455568cb8429b0c03b658a106dc0968fedd88f9ffe82fa984a02950640f1d0c6cba20e51674e747a3699488034dd7e0d1 +srcfiles size=22 + RELOC/source/latex/preview/preview.drv + RELOC/source/latex/preview/preview.dtx + RELOC/source/latex/preview/preview.ins +runfiles size=14 + RELOC/tex/latex/preview/prauctex.cfg + RELOC/tex/latex/preview/prauctex.def + RELOC/tex/latex/preview/prcounters.def + RELOC/tex/latex/preview/preview.sty + RELOC/tex/latex/preview/prfootnotes.def + RELOC/tex/latex/preview/prlyx.def + RELOC/tex/latex/preview/prshowbox.def + RELOC/tex/latex/preview/prshowlabels.def + RELOC/tex/latex/preview/prtightpage.def + RELOC/tex/latex/preview/prtracingall.def +catalogue-contact-bugs https://debbugs.gnu.org/cgi/pkgreport.cgi?package=auctex +catalogue-contact-home https://www.gnu.org/software/auctex/preview-latex.html +catalogue-contact-repository https://git.savannah.gnu.org/gitweb/?p=auctex.git +catalogue-ctan /macros/latex/contrib/preview +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license gpl3 +catalogue-topics chunks +catalogue-version 11.91 + +name prftree +category Package +revision 41985 +shortdesc Macros for building proof trees +relocated 1 +longdesc A package to typeset proof trees for natural deduction calculi, +longdesc sequent-like calculi, and similar. +containersize 9512 +containerchecksum 2e252a4c63e167fd9ce9cf5c8f1763a8e0b9de542df7b0499770ddf90b06477028a37b55c501df99591bb42a60f25ad4f9533eb51a7abec7c2f77eb03c114ee2 +doccontainersize 293572 +doccontainerchecksum 8377dec93ee9b974698979d63698f48a2fc624d3081f04227a4ec6b63ff2d7fde4a9de323a68d0eb76f9a029e584502d4cdbb18d6c77e6e3ada750d6053afe31 +docfiles size=87 + RELOC/doc/latex/prftree/README details="Readme" + RELOC/doc/latex/prftree/prftreedoc.pdf details="Package documentation" + RELOC/doc/latex/prftree/prftreedoc.tex +runfiles size=11 + RELOC/tex/latex/prftree/prftree.sty +catalogue-also proofs +catalogue-ctan /macros/latex/contrib/prftree +catalogue-date 2016-09-03 12:05:13 +0200 +catalogue-license gpl +catalogue-topics tree maths proof +catalogue-version 1.5 + +name printlen +category Package +revision 19847 +shortdesc Print lengths using specified units +relocated 1 +longdesc \printlength{length} prints the value of a LaTeX length in the +longdesc units specified by \uselengthunit{unit} ('unit' may be any TeX +longdesc length unit except for scaled point, viz., any of: pt, pc, in, +longdesc mm, cm, bp, dd or cc). When the unit is pt, the printed length +longdesc value will include any stretch or shrink; otherwise these are +longdesc not printed. The 'unit' argument may also be PT, in which case +longdesc length values will be printed in point units but without any +longdesc stretch or shrink values. +containersize 1868 +containerchecksum bbb48c169f31a1f93024195056c323ce67afa1fcc00f309ef1b820dd40e0b86ca98d05f6cd4af66379682813a3807f24295a803fdc91d8b9f19972e1520d5eaf +doccontainersize 245536 +doccontainerchecksum 25d00eec6c6bd069675cf7d980886b12444e41d18a83ed8e650923d839da8dca21dff65b110105458767b95c50b52a0143b2f7d88b6567ab3aa9953f4ec32a88 +docfiles size=61 + RELOC/doc/latex/printlen/printlen-doc.pdf details="Package documentation" + RELOC/doc/latex/printlen/printlen-doc.tex +runfiles size=2 + RELOC/tex/latex/printlen/printlen.sty +catalogue-ctan /macros/latex/contrib/printlen +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics debug-supp doc-debug +catalogue-version 1.1a + +name proba +category Package +revision 15878 +shortdesc Shortcuts commands to symbols used in probability texts +relocated 1 +longdesc This package includes some of the most often used commands in +longdesc probability texts, e.g. probability, expectation, variance, +longdesc etc. It also includes some short commands for set (blackboard) +longdesc or filtrations (calligraphic). It requires LaTeX2e and the +longdesc amsfonts package. +containersize 1488 +containerchecksum 33ef76474e7183c32b5f982347ed414ae7616484ff5a5d8564574220d3757688a3a47aad000c5b0a66a39dbbef20c789dd1445d872b025c274585248176c86e7 +doccontainersize 73056 +doccontainerchecksum 960887501b74d2c5e8a00c09464ff17dc9c733dd663fb35c32b34bd8b79b2a813536b6c0f9c5df4340dbd3adf1f30f569aac678e90d5f328e1c33130767fdf21 +docfiles size=24 + RELOC/doc/latex/proba/README details="Readme" + RELOC/doc/latex/proba/proba.pdf details="Package documentation" +srccontainersize 3140 +srccontainerchecksum d1305e797d8884f264a20df021b6b0619cee1df1aba8943f5533c2cd839e093420e43ebd1aa46282457a650569a883f4f11a9319f6b6612dbec5b99d29f37087 +srcfiles size=4 + RELOC/source/latex/proba/proba.dtx + RELOC/source/latex/proba/proba.ins +runfiles size=2 + RELOC/tex/latex/proba/proba.sty +catalogue-ctan /macros/latex/contrib/proba +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics probability + +name probsoln +category Package +revision 44783 +shortdesc Generate problem sheets and their solution sheets +relocated 1 +longdesc The package is designed for lecturers who have to generate new +longdesc problem sheets for their students on a regular basis (e.g. +longdesc yearly) by randomly selecting a specified number of problems +longdesc defined in another file. The package allows you easily to +longdesc generate a new problem sheet that is different from the +longdesc previous year, thus alleviating the temptation of students to +longdesc seek out the previous year's students and checking out their +longdesc answers. The solutions to the problems can be defined along +longdesc with the problem, making it easy to generate the solution sheet +longdesc from the same source code; problems may be reused within a +longdesc document, so that solutions may appear in a different section +longdesc of the same document as the problems they cover. +containersize 7076 +containerchecksum f0c63a327569410af7eefa9f87fed56a6a2db78b05133c417afd245958a7f10dac965270fe00e7fe5de6ddfcc4a1cec446df819728e76ad347c7664fcfe849ec +doccontainersize 954428 +doccontainerchecksum c79babc397260f03e2ad66556230966d1af97bbd5703c25cd09ff3aaad48b49d464672c501df047cf5226370b80588705c59212e75d0d1970337fd446d86e70e +docfiles size=296 + RELOC/doc/latex/probsoln/CHANGES + RELOC/doc/latex/probsoln/INSTALL + RELOC/doc/latex/probsoln/README details="Package README" + RELOC/doc/latex/probsoln/probsoln.pdf details="Package documentation" + RELOC/doc/latex/probsoln/samples/prob-1stprncp.tex + RELOC/doc/latex/probsoln/samples/prob-args.tex + RELOC/doc/latex/probsoln/samples/prob-easy.tex + RELOC/doc/latex/probsoln/samples/prob-easy2.tex + RELOC/doc/latex/probsoln/samples/prob-implicit.tex + RELOC/doc/latex/probsoln/samples/prob-mchoice.tex + RELOC/doc/latex/probsoln/samples/prob-mixed.tex + RELOC/doc/latex/probsoln/samples/prob-newdata.tex + RELOC/doc/latex/probsoln/samples/prob-nosoln.tex + RELOC/doc/latex/probsoln/samples/prob-probspaces.tex + RELOC/doc/latex/probsoln/samples/prob-probspaces2.tex + RELOC/doc/latex/probsoln/samples/prob-tabmchoice.tex + RELOC/doc/latex/probsoln/samples/prob-verb.tex + RELOC/doc/latex/probsoln/samples/sample-exclude.pdf + RELOC/doc/latex/probsoln/samples/sample-exclude.tex + RELOC/doc/latex/probsoln/samples/sample.pdf details="Example of use" + RELOC/doc/latex/probsoln/samples/sample.tex + RELOC/doc/latex/probsoln/samples/sample2.pdf + RELOC/doc/latex/probsoln/samples/sample2.tex + RELOC/doc/latex/probsoln/samples/sample3.pdf + RELOC/doc/latex/probsoln/samples/sample3.tex + RELOC/doc/latex/probsoln/samples/sample4.pdf + RELOC/doc/latex/probsoln/samples/sample4.tex + RELOC/doc/latex/probsoln/samples/sample5.pdf + RELOC/doc/latex/probsoln/samples/sample5.tex + RELOC/doc/latex/probsoln/samples/sample6.pdf + RELOC/doc/latex/probsoln/samples/sample6.tex + RELOC/doc/latex/probsoln/samples/sample7.pdf + RELOC/doc/latex/probsoln/samples/sample7.tex + RELOC/doc/latex/probsoln/samples/sample8.pdf + RELOC/doc/latex/probsoln/samples/sample8.tex + RELOC/doc/latex/probsoln/samples/sample9.pdf + RELOC/doc/latex/probsoln/samples/sample9.tex +srccontainersize 25472 +srccontainerchecksum 53ce8efe56938c3e16da53bb1255d86b1ae9cc546cbf4983156c098ac07f1e7c16a998a7dc53fd445efa9f42a6b82889e50c188aa57a72aa9186177fbd744f5d +srcfiles size=34 + RELOC/source/latex/probsoln/probsoln.dtx + RELOC/source/latex/probsoln/probsoln.ins +runfiles size=8 + RELOC/tex/latex/probsoln/probsoln.sty +catalogue-contact-bugs http://www.dickimaw-books.com/cgi-bin/bugtracker.cgi?category=probsoln +catalogue-ctan /macros/latex/contrib/probsoln +catalogue-date 2017-07-10 15:22:13 +0200 +catalogue-license lppl +catalogue-topics exercise +catalogue-version 3.05 + +name procIAGssymp +category Package +revision 15878 +shortdesc Macros for IAG symposium papers +relocated 1 +longdesc This package provides (re-)definitions of some LaTeX commands +longdesc that can be useful for the preparation of a paper with the +longdesc style of the proceeding of symposia sponsored by the +longdesc 'International Association of Geodesy (IAG)' published by +longdesc Springer-Verlag. +containersize 2424 +containerchecksum d76606565e53a4f93f39917780c48d2dc6e871aeb90106318ea50ebb37e00ef2bc0160d6618d4f0d6106006462d1f674c3563d3c4a6c4db456d5f0bcb63135d2 +doccontainersize 3152 +doccontainerchecksum 1a9ac7c30311e244757bb9e35db3a21e8e2fee949520a1bd5f2066ee3bb0a6612102660e3b421406bf5621b7522c7d367875ce7a43294650c171b0fdb3a0904a +docfiles size=2 + RELOC/doc/latex/procIAGssymp/TestPaper.tex +runfiles size=2 + RELOC/tex/latex/procIAGssymp/procIAGssymp.sty +catalogue-ctan /macros/latex/contrib/procIAGssymp +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics confproc + +name prodint +category Package +revision 21893 +shortdesc A font that provides the product integral symbol +relocated 1 +longdesc Product integrals are to products, as integrals are to sums. +longdesc They have been around for more than a hundred years, they have +longdesc not become part of the standard mathematician's toolbox, +longdesc possibly because no-one invented the right mathematical symbol +longdesc for them. The authors have remedied that situation by proposing +longdesc the symbol and providing this font. +execute addMap prodint.map +containersize 3856 +containerchecksum ab2b0ababfad124b38b018c7313df0114c36fed0dbbaa42de04295b09142740ef43f34c4c6ad926c97c1ce28521c1d87274486588609197c2178b631b4ee6876 +doccontainersize 32328 +doccontainerchecksum addad035cb9e7b88d9da2bf161723db51897342872dd6c671695bb7bb0a6a4c7bac872ce40f31b22f5fdd84cc03994562a6f78f14d9203977d5b7c8d17130db8 +docfiles size=19 + RELOC/doc/fonts/prodint/README details="Readme" + RELOC/doc/fonts/prodint/config.prodint + RELOC/doc/fonts/prodint/prodint.bma + RELOC/doc/fonts/prodint/prodint.mt1 + RELOC/doc/fonts/prodint/prodint.pdf details="Demonstration of use" + RELOC/doc/fonts/prodint/prodint.pfa + RELOC/doc/fonts/prodint/prodint.sit.hqx + RELOC/doc/fonts/prodint/prodint.tex +runfiles size=5 + RELOC/fonts/afm/public/prodint/prodint.afm + RELOC/fonts/map/dvips/prodint/prodint.map + RELOC/fonts/tfm/public/prodint/prodint.tfm + RELOC/fonts/type1/public/prodint/prodint.pfb + RELOC/tex/latex/prodint/prodint.sty +catalogue-ctan /fonts/prodint +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license ofl +catalogue-topics maths + +name productbox +category Package +revision 20886 +shortdesc Typeset a three-dimensional product box +relocated 1 +longdesc The package enables typesetting of a three-dimensional product +longdesc box. This product box can be rendered as it is standing on a +longdesc surface and some light is shed onto it. Alternatively it can be +longdesc typeset as a wireframe to be cut out and glued together. This +longdesc will lead to a physical product box. The package requires pgf +longdesc and TikZ. +containersize 4944 +containerchecksum 9b243f6558dd449ddb9d9190ea53a71ed5b28d25f5fddc64eddb194144aa688e8d8e946c53f115d40813d0933b77d5d2c78023f24a1887d8eeb70e6c1ad0bc1d +doccontainersize 378272 +doccontainerchecksum 73f8e1afbbfd9d4047120280e746ae1349225dfa84b98b288e23f477d2eb83310271610d6f4e40cdeb0d124788a97c1f8aaeb182a03cf2b1311e286f7299aa45 +docfiles size=97 + RELOC/doc/latex/productbox/Makefile + RELOC/doc/latex/productbox/README details="Readme" + RELOC/doc/latex/productbox/productbox.bib + RELOC/doc/latex/productbox/productbox.pdf details="Package documentation" +srccontainersize 15512 +srccontainerchecksum 064e591694d0c7f6c9c981ef4038175cdb1fc9a120daaf954051dc05bb6b602bc7fdbf961a25d5cc490380028564316adf5714a151e4606aca31d1f4bca09a54 +srcfiles size=21 + RELOC/source/latex/productbox/productbox.dtx + RELOC/source/latex/productbox/productbox.ins +runfiles size=7 + RELOC/tex/latex/productbox/productbox.sty +catalogue-ctan /macros/latex/contrib/gene/productbox +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics graphics-3d +catalogue-version 1.1 + +name program +category Package +revision 44214 +shortdesc Typesetting programs and algorithms +relocated 1 +longdesc The main offering is a program environment; a programbox +longdesc environment is available for fragments that must not break with +longdesc the pages. +containersize 11780 +containerchecksum a9ef7d68ad86b42657681e2b798899b5c7c472c5e272a9098a1424a35a109dc4a946be54c4007db73edb861cb475f293e404cee9fa0dca8cdf086eb6c4790319 +doccontainersize 49880 +doccontainerchecksum 4213b5bc9cd6b2604bf1c667dd123729c0674d1c74338ebeb86b1551af14be3e24c4e94b4e5cc2c06a25ebf934d56eb6d3b5ce80e452798ea02fbb0ac6533580 +docfiles size=26 + RELOC/doc/latex/program/README details="Readme" + RELOC/doc/latex/program/gpl-3.0.txt + RELOC/doc/latex/program/plink.tex + RELOC/doc/latex/program/program-demo.tex + RELOC/doc/latex/program/program-doc.pdf details="Generated documentation" + RELOC/doc/latex/program/program-doc.tex +runfiles size=9 + RELOC/tex/latex/program/program.sty +catalogue-contact-home http://www.gkc.org.uk +catalogue-ctan /macros/latex/contrib/program +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license gpl3 +catalogue-topics listing pseudocode +catalogue-version 3.3.14 + +name progress +category Package +revision 19519 +shortdesc Creates an overview of a document's state +relocated 1 +longdesc Progress is a package which. when compiling TeX and LaTeX +longdesc documents, generates a HTML file showing an overview of a +longdesc document's state (of how finished it is). The report is sent to +longdesc file \ProgressReportName, which is by default the \jobname with +longdesc the date appended (but is user-modifiable). +containersize 4192 +containerchecksum df21ec7e4adc36a420959550376fff5b8a55fb7dccc064476b2306226c1776fb2075994d9ae63bd5bde0b68571671bacadf9285f53bc9e639c2afd59e5b6814e +doccontainersize 80808 +doccontainerchecksum e88280bb1a93d34dd5597627d763d1b2a21a56990ede2e029246dac84f3bb22e05a08a9a94c0790a9c8a87698684816ace02149562785cf36f2b6af82f89c130 +docfiles size=29 + RELOC/doc/latex/progress/README details="Readme" + RELOC/doc/latex/progress/progress.pdf details="Package documentation" + RELOC/doc/latex/progress/progress.tex + RELOC/doc/latex/progress/progress20030701.html +runfiles size=4 + RELOC/tex/latex/progress/progress.sty +catalogue-ctan /macros/latex/contrib/progress +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics doc-mgmt +catalogue-version 1.10 + +name progressbar +category Package +revision 33822 +shortdesc Visualize shares of total amounts in the form of a (progress-)bar +relocated 1 +longdesc This package allows you to easily visualize shares of total +longdesc amounts in the form of a bar. So basically you can convert any +longdesc number between 0 and 1 to a progressbar using the command +longdesc \progressbar{}. Also a lot of customizations are +longdesc possible, allowing you to create an unique progressbar on your +longdesc own. The package uses TikZ to produce its graphics. +containersize 2324 +containerchecksum d12161aa891ea45cec2a4511c48a1c338de5acd512e426a24988b79b7d9d1734479a1cd93e3e8ee11da67858d97260b71ca35a3a7a3dbbcd2bae746221a7bafa +doccontainersize 86236 +doccontainerchecksum a60ee29da0517d6769e09f12af7b600284f32478aef1d28cdf167610c45bd87f841500c2bf718ff9b6678a171f3138f4a7a6ac45bd41500510f509e8e7067efd +docfiles size=31 + RELOC/doc/latex/progressbar/README details="Readme" + RELOC/doc/latex/progressbar/progressbar.pdf details="Package documentation" + RELOC/doc/latex/progressbar/progressbar.tex +runfiles size=2 + RELOC/tex/latex/progressbar/progressbar.sty +catalogue-ctan /macros/latex/contrib/progressbar +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-use +catalogue-version 1.0b~4 + +name proof-at-the-end +category Package +revision 51194 +shortdesc A package to move proofs to appendix +relocated 1 +longdesc This package aims to provide a way to easily move proofs to the +longdesc appendix. You can (among other things) move proofs to different +longdesc places/sections, create links from theorems to proofs, restate +longdesc theorems, add comments in appendix... +containersize 4440 +containerchecksum 1e5647e1421742e9f0198c5ff8ae5ac315eccef96d0a7c9c5f1dabef167fca5ac9221cdf60d99dafbdfd60f6960a897ebb2d2c4370edcc0d0a36942c0041a777 +doccontainersize 372132 +doccontainerchecksum 9100916a9ebf426502d7c25e5f848fd4eeb19050faa01b0a4a795b838d4084849b42a1f6a187dc8218aeffb6df0cbe592b512e1c613a1045e467198119b33555 +docfiles size=98 + RELOC/doc/latex/proof-at-the-end/README.md details="Readme" + RELOC/doc/latex/proof-at-the-end/proof-at-the-end.pdf details="Package documentation" + RELOC/doc/latex/proof-at-the-end/proof-at-the-end_demo.pdf details="Example of use" + RELOC/doc/latex/proof-at-the-end/proof-at-the-end_demo.tex +srccontainersize 12500 +srccontainerchecksum ea0b286182db09ab249a704ef25abc8bd951b51e8671ddb2a8110997b9db4ed353c059f44170e8a5bd76878ae97d34b460701994849425c1f40925d663d0ac6f +srcfiles size=14 + RELOC/source/latex/proof-at-the-end/proof-at-the-end.dtx + RELOC/source/latex/proof-at-the-end/proof-at-the-end.ins +runfiles size=4 + RELOC/tex/latex/proof-at-the-end/proof-at-the-end.sty +catalogue-contact-bugs https://github.com/leo-colisson/proof-at-the-end/issues +catalogue-contact-home https://github.com/leo-colisson/proof-at-the-end +catalogue-ctan /macros/latex/contrib/proof-at-the-end +catalogue-date 2019-05-22 17:20:50 +0200 +catalogue-license lppl1.3 +catalogue-topics maths proof appendix + +name proofread +category Package +revision 50938 +shortdesc Commands for inserting annotations +relocated 1 +longdesc This package defines a few LaTeX commands that may be useful +longdesc when you proofread a LaTeX document. They allow you to easily +longdesc highlight text and add comments in the margin. Vim escape +longdesc sequences are provided for inserting or removing these LaTeX +longdesc commands in the source. Options are provided for displaying the +longdesc document with extra line spacing, and for displaying it in +longdesc either corrected or uncorrected state, both without margin +longdesc notes. The package is based on code for a text highlighting +longdesc command that was published by Antal Spector-Zabusky on +longdesc http://tex.stackexchange.com/questions/5959. The main file, +longdesc proofread.dtx, is self-extracting, so you can generate the +longdesc style file by compiling proofread.dtx with pdfLaTeX. This +longdesc package is based on the soul package; so if you plan to +longdesc highlight non-ASCII characters, you must compile your source +longdesc with either XeTeX- or LuaTeX-based compilers. +containersize 2596 +containerchecksum ef0d35bb06d1bf31cdea9aec2f342eef4b8cf053863a26f5c223c1966f6715a547fb61b2f92d4ac273c3309fcfe219f9a78bdf8c9b3ec3886bb96dabd7935033 +doccontainersize 290840 +doccontainerchecksum 6b1ba0b1e009e2f7b337aebcc5c54882f2ef3f2089261d3b9355cb0adfec8aa3c7f207636955979cc0a74554e5878423a23982340bd26ed3c2a634f821497565 +docfiles size=84 + RELOC/doc/latex/proofread/README details="Readme" + RELOC/doc/latex/proofread/README.txt + RELOC/doc/latex/proofread/example.pdf details="Example of use" + RELOC/doc/latex/proofread/example.tex + RELOC/doc/latex/proofread/proofread.pdf details="Package documentation" + RELOC/doc/latex/proofread/proofread.vmb +srccontainersize 6348 +srccontainerchecksum 9a434d59a1540e1dee97e9baf1cda034f768a7a24e1deca7e0f454f7d7918cbd7645e19454fa7683c3754f80e1c9da54b3b2ade2dd58f4c332d2422fe1690935 +srcfiles size=6 + RELOC/source/latex/proofread/proofread.dtx + RELOC/source/latex/proofread/proofread.ins +runfiles size=2 + RELOC/tex/latex/proofread/proofread.sty +catalogue-ctan /macros/latex/contrib/proofread +catalogue-date 2019-04-25 16:49:10 +0200 +catalogue-license lppl1.3c +catalogue-topics editorial decoration +catalogue-version 1.04 + +name prooftrees +category Package +revision 43184 +shortdesc Forest-based proof trees (symbolic logic) +relocated 1 +longdesc The package supports drawing proof trees of the kind often used +longdesc in introductory logic classes, especially those aimed at +longdesc students without strong mathemtical backgrounds. Hodges (1991) +longdesc is one example of a text which uses this system. When teaching +longdesc such a system it is especially useful to annotate the tree with +longdesc line numbers, justifications and explanations of branch +longdesc closures. prooftrees provides a single environment, prooftree, +longdesc and a variety of tools for annotating, customising and +longdesc highlighting such trees. A cross-referencing system is provided +longdesc for trees which cite line numbers in justifications for proof +longdesc lines or branch closures. prooftrees is based on forest and, +longdesc hence, TikZ. The package requires version 2.0.2 of Forest for +longdesc expected results and will not work with version 1. +containersize 9700 +containerchecksum 9200b35517157199a4e18194f14e8089177ace2970ffce933f949b08f5001c2b3a87ee857cf87750367be0b4c061796c1d0789bfba477b91d94de757688991a3 +doccontainersize 874052 +doccontainerchecksum 80661bb31d86f873ff34e8e140fb18d850cb62863f97e9a943bb61c3f05f6888dd2d8a82b56f504a053d82ca49899b65ad6386c793f1d561bed5c1a2154bdecd +docfiles size=236 + RELOC/doc/latex/prooftrees/README details="Readme" + RELOC/doc/latex/prooftrees/manifest.txt + RELOC/doc/latex/prooftrees/prooftrees.pdf details="Package documentation" + RELOC/doc/latex/prooftrees/prooftrees.tex + RELOC/doc/latex/prooftrees/prooftrees_biber.bib +runfiles size=10 + RELOC/tex/latex/prooftrees/prooftrees.sty +catalogue-also forest +catalogue-ctan /graphics/pgf/contrib/prooftrees +catalogue-date 2017-02-09 05:21:50 +0100 +catalogue-license lppl1.3 +catalogue-topics tree pgf-tikz logic +catalogue-version 0.6 + +name properties +category Package +revision 15878 +shortdesc Load properties from a file +relocated 1 +longdesc The package loads properties (key, value) from a properties +longdesc file, e.g. \jobname.properties. +containersize 1188 +containerchecksum 3bde5cf132c9013bcbb0eef439e61725ea41a09720f98bb53f8bbf39d56d6cde34ed1613b001a86b40221a36233b1d5c226819c94b41d49211065e1477a0bd42 +doccontainersize 1104 +doccontainerchecksum eff6b91e8fdd7b0a6b0526c7dd2243e32586a5ce12071130f388a911fa34cbac4681d4118b601b9eb979a272bf89b82f00f8ba509fa996521e8a2861f8e84a80 +docfiles size=2 + RELOC/doc/latex/properties/readme.de + RELOC/doc/latex/properties/testprop.tex +runfiles size=1 + RELOC/tex/latex/properties/properties.sty +catalogue-ctan /macros/latex/contrib/properties +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 0.2 + +name proposal +category Package +revision 40538 +shortdesc A set of LaTeX classes for preparing proposals for collaborative projects +relocated 1 +longdesc The process of preparing a collaborative proposal, to a major +longdesc funding body, involves integration of contributions of a many +longdesc people at many sites. It is therefore an ideal application for +longdesc a text-based document preparation system such as LaTeX, in +longdesc concert with a distributed version control system such as SVN. +longdesc The proposal class itself provides a basis for such an +longdesc enterprise. The dfgproposal and dfgproposal classes provide two +longdesc specialisations of the base class for (respectively) German and +longdesc European research proposals. The packages depend on the +longdesc author's stex bundle. +containersize 17220 +containerchecksum d9a352995030efd57ecd46028147a6326ede0695545194a01846d4a3e2d29096ace9e6f69900766906f3ecfa05ce566ebd1c2c5f76a3b2b2646c1e0f865093ba +doccontainersize 1079828 +doccontainerchecksum 53c1d47f2f42c9ceed73f350c2aff9b229d6dc8dfde9e3fb8109971905c5d6430ca52d72551d540f5a1727a767d6cf485d8bca2489f301edfbf964490ecfb5a2 +docfiles size=375 + RELOC/doc/latex/proposal/base/README details="Readme" + RELOC/doc/latex/proposal/dfg/README details="Readme" + RELOC/doc/latex/proposal/dfg/dfgproposal.pdf + RELOC/doc/latex/proposal/dfg/proposal/Makefile + RELOC/doc/latex/proposal/dfg/proposal/funds.tex + RELOC/doc/latex/proposal/dfg/proposal/preconditions.tex + RELOC/doc/latex/proposal/dfg/proposal/proposal.pdf + RELOC/doc/latex/proposal/dfg/proposal/proposal.tex + RELOC/doc/latex/proposal/dfg/proposal/public.pdf + RELOC/doc/latex/proposal/dfg/proposal/public.tex + RELOC/doc/latex/proposal/dfg/proposal/state.tex + RELOC/doc/latex/proposal/dfg/proposal/submit.pdf + RELOC/doc/latex/proposal/dfg/proposal/submit.tex + RELOC/doc/latex/proposal/dfg/proposal/workplan.tex + RELOC/doc/latex/proposal/dfg/proposal/zusammenfassung.tex + RELOC/doc/latex/proposal/dfg/report/Makefile + RELOC/doc/latex/proposal/dfg/report/README details="Readme" + RELOC/doc/latex/proposal/dfg/report/finalreport.pdf + RELOC/doc/latex/proposal/dfg/report/finalreport.tex + RELOC/doc/latex/proposal/dfg/report/letter_submission.pdf + RELOC/doc/latex/proposal/dfg/report/letter_submission.tex + RELOC/doc/latex/proposal/dfg/report/progressreport.tex + RELOC/doc/latex/proposal/dfg/report/progresssummary.tex + RELOC/doc/latex/proposal/eu/README details="Readme" + RELOC/doc/latex/proposal/eu/euproposal.pdf + RELOC/doc/latex/proposal/eu/strep/Makefile + RELOC/doc/latex/proposal/eu/strep/README details="Readme" + RELOC/doc/latex/proposal/eu/strep/deliverables.tex + RELOC/doc/latex/proposal/eu/strep/draft.tex + RELOC/doc/latex/proposal/eu/strep/final.tex + RELOC/doc/latex/proposal/eu/strep/grantagreement.tex + RELOC/doc/latex/proposal/eu/strep/impact.tex + RELOC/doc/latex/proposal/eu/strep/implementation.tex + RELOC/doc/latex/proposal/eu/strep/issues.tex + RELOC/doc/latex/proposal/eu/strep/methodology.tex + RELOC/doc/latex/proposal/eu/strep/milestones.tex + RELOC/doc/latex/proposal/eu/strep/objectives.tex + RELOC/doc/latex/proposal/eu/strep/progress.tex + RELOC/doc/latex/proposal/eu/strep/propB.pdf + RELOC/doc/latex/proposal/eu/strep/propB.tex + RELOC/doc/latex/proposal/eu/strep/public.pdf + RELOC/doc/latex/proposal/eu/strep/public.tex + RELOC/doc/latex/proposal/eu/strep/quality.tex + RELOC/doc/latex/proposal/eu/strep/risks.tex + RELOC/doc/latex/proposal/eu/strep/site-bar.tex + RELOC/doc/latex/proposal/eu/strep/site-baz.tex + RELOC/doc/latex/proposal/eu/strep/site-efo.tex + RELOC/doc/latex/proposal/eu/strep/site-jacu.tex + RELOC/doc/latex/proposal/eu/strep/site-templatex.tex + RELOC/doc/latex/proposal/eu/strep/submit.pdf + RELOC/doc/latex/proposal/eu/strep/submit.tex + RELOC/doc/latex/proposal/eu/strep/workplan.tex + RELOC/doc/latex/proposal/eu/strep/wp-class.tex + RELOC/doc/latex/proposal/eu/strep/wp-dissem.tex + RELOC/doc/latex/proposal/eu/strep/wp-management.tex + RELOC/doc/latex/proposal/eu/strep/wp-temple.tex +srccontainersize 49544 +srccontainerchecksum 39ec30b5c0d94a2beb6d83d796ed13ca95b5e0045edc8e7828f5528e44e9f24350fceef93ec2c3bf9cdbf3766d7ddb0b72d6e10a909a6fc92e393681d425d8b4 +srcfiles size=61 + RELOC/source/latex/proposal/base/proposal.dtx + RELOC/source/latex/proposal/base/proposal.ins + RELOC/source/latex/proposal/bin/Modparse.pm + RELOC/source/latex/proposal/bin/README + RELOC/source/latex/proposal/bin/checksum + RELOC/source/latex/proposal/bin/filedate + RELOC/source/latex/proposal/bin/generate-issues + RELOC/source/latex/proposal/dfg/dfgproposal.dtx + RELOC/source/latex/proposal/dfg/dfgproposal.ins + RELOC/source/latex/proposal/eu/euproposal.dtx + RELOC/source/latex/proposal/eu/euproposal.ins + RELOC/source/latex/proposal/lib/Makefile.ctan + RELOC/source/latex/proposal/lib/Makefile.in + RELOC/source/latex/proposal/lib/Makefile.vars + RELOC/source/latex/proposal/lib/proposal.bib +runfiles size=26 + RELOC/tex/latex/proposal/base/pdata.sty + RELOC/tex/latex/proposal/base/proposal.cls + RELOC/tex/latex/proposal/base/reporting.cls + RELOC/tex/latex/proposal/dfg/dfgpdata.sty + RELOC/tex/latex/proposal/dfg/dfgproposal.cls + RELOC/tex/latex/proposal/dfg/dfgreporting.cls + RELOC/tex/latex/proposal/eu/eupdata.sty + RELOC/tex/latex/proposal/eu/euproposal.cls + RELOC/tex/latex/proposal/eu/eureporting.cls +catalogue-contact-repository https://github.com/KWARC/LaTeX-proposal +catalogue-ctan /macros/latex/contrib/proposal +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl +catalogue-topics proposal + +name prosper +category Package +revision 33033 +shortdesc LaTeX class for high quality slides +relocated 1 +longdesc Prosper is a LaTeX class for writing transparencies. It is +longdesc written as an extension of the seminar class by Timothy Van +longdesc Zandt. Prosper offers a friendly environment for creating +longdesc slides for both presentations with an overhead projector and a +longdesc video projector. Slides prepared for a presentation with a +longdesc computer and a video projector may integrate animation effects, +longdesc incremental display, and so on. Various visual styles are +longdesc supported (including some that mimic PowerPoint) and others are +longdesc being contributed. +containersize 94984 +containerchecksum bf2285803a71b00c67a9e64ca5e51bdd880856338b0bf3e95bfb2ff2e78d5cdd0617424ed95918b5982d5befa71476b89567b2107eb0c206f9a9f53966a983b6 +doccontainersize 340196 +doccontainerchecksum 21593ccdc8231e37f0b2938d3978205ab3ed61f74a6e8a4b1dd2cf82da552bd920a7711c025964fdab5661207cbea1aee04244c93552e20d10df338c7dc5c138 +docfiles size=152 + RELOC/doc/latex/prosper/AUTHORS + RELOC/doc/latex/prosper/ChangeLog + RELOC/doc/latex/prosper/Example.tex + RELOC/doc/latex/prosper/ExampleAlienglow.tex + RELOC/doc/latex/prosper/ExampleAutumn.tex + RELOC/doc/latex/prosper/ExampleAzure.tex + RELOC/doc/latex/prosper/ExampleContemporain.tex + RELOC/doc/latex/prosper/ExampleDarkblue.tex + RELOC/doc/latex/prosper/ExampleFrames.tex + RELOC/doc/latex/prosper/ExampleLignesbleues.tex + RELOC/doc/latex/prosper/ExampleNuanceGris.tex + RELOC/doc/latex/prosper/ExampleTroisPoints.tex + RELOC/doc/latex/prosper/FAQ + RELOC/doc/latex/prosper/INSTALL + RELOC/doc/latex/prosper/NEWS + RELOC/doc/latex/prosper/README details="Package Readme" + RELOC/doc/latex/prosper/TODO + RELOC/doc/latex/prosper/compilation.fig + RELOC/doc/latex/prosper/green-bullet-on-blue-wc.gif + RELOC/doc/latex/prosper/green-bullet-on-blue.gif + RELOC/doc/latex/prosper/green-bullet-on-white.gif + RELOC/doc/latex/prosper/gyom.tex + RELOC/doc/latex/prosper/manifest.txt + RELOC/doc/latex/prosper/prosper-doc.pdf details="Package documentation" + RELOC/doc/latex/prosper/prosper-doc.tex + RELOC/doc/latex/prosper/prosper-structure.fig + RELOC/doc/latex/prosper/prosper-template.jpg + RELOC/doc/latex/prosper/prosper-tour.pdf details="A brief example of usage" + RELOC/doc/latex/prosper/prosper-tour.tex + RELOC/doc/latex/prosper/prosper.png + RELOC/doc/latex/prosper/prosper.ui + RELOC/doc/latex/prosper/red-bullet-on-blue-wc.gif + RELOC/doc/latex/prosper/red-bullet-on-blue.gif + RELOC/doc/latex/prosper/red-bullet-on-white.gif + RELOC/doc/latex/prosper/rico.tex + RELOC/doc/latex/prosper/rotation.tex + RELOC/doc/latex/prosper/seminar-bg2-lepennec.fix + RELOC/doc/latex/prosper/yellow-bullet-on-blue-wc.gif + RELOC/doc/latex/prosper/yellow-bullet-on-blue.gif + RELOC/doc/latex/prosper/yellow-bullet-on-white.gif +runfiles size=199 + RELOC/tex/latex/prosper/PPRalcatel.sty + RELOC/tex/latex/prosper/PPRalienglow.sty + RELOC/tex/latex/prosper/PPRautumn.sty + RELOC/tex/latex/prosper/PPRazure.sty + RELOC/tex/latex/prosper/PPRblends.sty + RELOC/tex/latex/prosper/PPRcapsules.sty + RELOC/tex/latex/prosper/PPRcontemporain.sty + RELOC/tex/latex/prosper/PPRcorners.sty + RELOC/tex/latex/prosper/PPRdarkblue.sty + RELOC/tex/latex/prosper/PPRdefault.sty + RELOC/tex/latex/prosper/PPRframes.sty + RELOC/tex/latex/prosper/PPRfyma.sty + RELOC/tex/latex/prosper/PPRgyom.sty + RELOC/tex/latex/prosper/PPRlignesbleues.sty + RELOC/tex/latex/prosper/PPRmancini.sty + RELOC/tex/latex/prosper/PPRnuancegris.sty + RELOC/tex/latex/prosper/PPRprettybox.sty + RELOC/tex/latex/prosper/PPRrico.sty + RELOC/tex/latex/prosper/PPRserpaggi.sty + RELOC/tex/latex/prosper/PPRthomasd.sty + RELOC/tex/latex/prosper/PPRtroispoints.sty + RELOC/tex/latex/prosper/PPRwhitecross.sty + RELOC/tex/latex/prosper/PPRwinter.sty + RELOC/tex/latex/prosper/PPRwj.sty + RELOC/tex/latex/prosper/angleHG.ps + RELOC/tex/latex/prosper/arrow-glow.ps + RELOC/tex/latex/prosper/barre-rico.ps + RELOC/tex/latex/prosper/blue-inverted-arrow.ps + RELOC/tex/latex/prosper/boule-base.eps + RELOC/tex/latex/prosper/boulebleue-fondblanc.eps + RELOC/tex/latex/prosper/boulerouge-fondblanc.eps + RELOC/tex/latex/prosper/bouleverte-fondblanc.eps + RELOC/tex/latex/prosper/bullet-glow.ps + RELOC/tex/latex/prosper/compilation.eps + RELOC/tex/latex/prosper/degrade-base.eps + RELOC/tex/latex/prosper/degrade-blanc-bleu.eps + RELOC/tex/latex/prosper/green-bullet-on-blue-wc.ps + RELOC/tex/latex/prosper/green-bullet-on-blue.ps + RELOC/tex/latex/prosper/green-bullet-on-white.ps + RELOC/tex/latex/prosper/green-inverted-arrow.ps + RELOC/tex/latex/prosper/gyom.ps + RELOC/tex/latex/prosper/prosper-structure.eps + RELOC/tex/latex/prosper/prosper.cls + RELOC/tex/latex/prosper/red-bullet-on-blue-wc.ps + RELOC/tex/latex/prosper/red-bullet-on-blue.ps + RELOC/tex/latex/prosper/red-bullet-on-white.ps + RELOC/tex/latex/prosper/red-inverted-arrow.ps + RELOC/tex/latex/prosper/rico.ps + RELOC/tex/latex/prosper/rico_bullet1.ps + RELOC/tex/latex/prosper/rico_bullet2.ps + RELOC/tex/latex/prosper/rico_bullet3.ps + RELOC/tex/latex/prosper/rotation.ps + RELOC/tex/latex/prosper/rule-glow.ps + RELOC/tex/latex/prosper/yellow-bullet-on-blue-wc.ps + RELOC/tex/latex/prosper/yellow-bullet-on-blue.ps + RELOC/tex/latex/prosper/yellow-bullet-on-white.ps +catalogue-also ifmslide ha-prosper +catalogue-contact-repository http://prosper.sourceforge.net/ +catalogue-ctan /macros/latex/contrib/prosper +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.2 +catalogue-topics presentation +catalogue-version 1.0h + +name protex +category Package +revision 41633 +shortdesc Literate programming package +relocated 1 +longdesc ProTeX is a simple but powerful literate programming tool, +longdesc which is designed to generate useful hypertext output (either +longdesc PDF, or HTML using TeX4ht). +containersize 14552 +containerchecksum be8ea34f282fdd739f72f9b33375bec3be5055bc953c7a441d769ac1e7568af9327ae6030f67a805188dbd485ee8223936921590ec86269e371da6d3ee353afe +doccontainersize 5496 +doccontainerchecksum 95746823c32526fb5e2c9968749a7da2149d23c2ec9f1ced2a655a4fe54ad272bb414abd0be0d78775b0ac95e6440d9b6ead609de7615dcceb0186e4683e4138 +docfiles size=5 + RELOC/doc/latex/protex/ChangeLog + RELOC/doc/latex/protex/README +runfiles size=17 + RELOC/tex/latex/protex/AlProTex.sty + RELOC/tex/latex/protex/ProTex.sty +catalogue-ctan /web/protex +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl +catalogue-topics litprog + +name protocol +category Package +revision 25562 +shortdesc A class for minutes of meetings +relocated 1 +longdesc The present version of the class supports German meeting +longdesc minutes including vote results and action items. The author has +longdesc ambitions to internationalise the code, and would welcome +longdesc support in the work. +containersize 2796 +containerchecksum e9555a25b0051592bd700df5b7335ad07eff024efd1efc4ef620fe7ad37866aa1edc8f354a7c772b3a298935bcffa9b5b2b49c2b0a14c868ae744cb9165bfd19 +doccontainersize 324704 +doccontainerchecksum f047068c0b9176087cd56530c9b73d30bbffb0d4b958cefae39f1f3bc924fbe705e81b5c867735715566b674379d1731e1d58b123dbbda3686a2b84f42674338 +docfiles size=81 + RELOC/doc/latex/protocol/README details="Bundle readme" language="en" + RELOC/doc/latex/protocol/protest.tex + RELOC/doc/latex/protocol/protocol.pdf details="Package documentation (German)" language="de" +srccontainersize 6556 +srccontainerchecksum f41e90e822d9cffd941a9be8b918f5817c5757c2911a3c2162899d9e074390fc4500d8617e385f5edada4c2accf5a08421cab6192505721deefb4b1ceba136e5 +srcfiles size=6 + RELOC/source/latex/protocol/protocol.dtx + RELOC/source/latex/protocol/protocol.ins +runfiles size=2 + RELOC/tex/latex/protocol/protocol.cls +catalogue-ctan /macros/latex/contrib/protocol +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl1.3 +catalogue-topics meeting-admin +catalogue-version 1.13 + +name prtec +category Package +revision 50915 +shortdesc A template for PRTEC conference papers +relocated 1 +longdesc This package provides a LaTeX class, a BibTeX style, and a +longdesc LaTeX template to format conference papers for the Pacific Rim +longdesc Thermal Engineering Conference (PRTEC). The .tex and .cls files +longdesc are commented and should be self-explanatory. The package +longdesc depends on newtx. +containersize 12008 +containerchecksum df1ca341d9e84ebca2acf40cc4a0578d0f1d3e608ef15263dd79516f5e0e920970babe3c706a0999e7f5f7252e02200696f8ef05aca86d8834bf3064fdd949dc +doccontainersize 360280 +doccontainerchecksum b3f92fe94efb18d3072f12c5bc21a4f8e72d9cff3516a5730e91042622a63163a8bb0cc1297ec564b8246eca4c2574e40e4cd39a40539b917d3c88064ec057b2 +docfiles size=138 + RELOC/doc/latex/prtec/PRTEC19-template.pdf details="Package documentation" + RELOC/doc/latex/prtec/PRTEC19-template.tex + RELOC/doc/latex/prtec/README.md details="Readme" + RELOC/doc/latex/prtec/prtec-sample.bib + RELOC/doc/latex/prtec/sample-figure.pdf +runfiles size=13 + RELOC/bibtex/bst/prtec/prtec.bst + RELOC/tex/latex/prtec/prtec.cls +catalogue-ctan /macros/latex/contrib/prtec +catalogue-date 2019-04-29 08:18:54 +0200 +catalogue-license mit +catalogue-topics class bibtex-sty confproc engineering scientific-docs +catalogue-version 1.05 + +name przechlewski-book +category Package +revision 23552 +shortdesc Examples from Przechlewski's LaTeX book +relocated 1 +longdesc The bundle provides machine-readable copies of the examples +longdesc from the book "Praca magisterska i dyplomowa z programem +longdesc LaTeX". +containersize 9680 +containerchecksum 18b9546576957553b477a1c5a90e6780770f18d6aced92b17017c44770b6bfa9c3cf928500a9e56c6c67f45d375bc12ad8ebc97eb1589f3cf7b5b3ed2f7b55c6 +doccontainersize 289780 +doccontainerchecksum 0441621561c2c4208d083f84eaf47573de94248cc1aaf027061de636c1a65f35a307260eaf390257bd02acac34b42963f96030ee27c83650deb11234edec89bf +docfiles size=120 + RELOC/doc/latex/przechlewski-book/LICENSE + RELOC/doc/latex/przechlewski-book/Makefile + RELOC/doc/latex/przechlewski-book/README details="Readme (English)" language="en" + RELOC/doc/latex/przechlewski-book/README.pl details="Readme (Polish)" language="pl" + RELOC/doc/latex/przechlewski-book/TAM-pl.pdf + RELOC/doc/latex/przechlewski-book/b313.bib + RELOC/doc/latex/przechlewski-book/p21.tex + RELOC/doc/latex/przechlewski-book/p22.tex + RELOC/doc/latex/przechlewski-book/p23.tex + RELOC/doc/latex/przechlewski-book/p24.tex + RELOC/doc/latex/przechlewski-book/p31.tex + RELOC/doc/latex/przechlewski-book/p310.tex + RELOC/doc/latex/przechlewski-book/p311.tex + RELOC/doc/latex/przechlewski-book/p312.tex + RELOC/doc/latex/przechlewski-book/p313.tex + RELOC/doc/latex/przechlewski-book/p313_utf8.tex + RELOC/doc/latex/przechlewski-book/p32.tex + RELOC/doc/latex/przechlewski-book/p33.tex + RELOC/doc/latex/przechlewski-book/p34.tex + RELOC/doc/latex/przechlewski-book/p35.tex + RELOC/doc/latex/przechlewski-book/p36.tex + RELOC/doc/latex/przechlewski-book/p37.tex + RELOC/doc/latex/przechlewski-book/p38.tex + RELOC/doc/latex/przechlewski-book/p39.tex + RELOC/doc/latex/przechlewski-book/p41.tex + RELOC/doc/latex/przechlewski-book/p42.tex + RELOC/doc/latex/przechlewski-book/p43.tex + RELOC/doc/latex/przechlewski-book/p44.tex + RELOC/doc/latex/przechlewski-book/p45.tex + RELOC/doc/latex/przechlewski-book/p46.tex + RELOC/doc/latex/przechlewski-book/rys1_5.tex + RELOC/doc/latex/przechlewski-book/wkmgr.bib + RELOC/doc/latex/przechlewski-book/wkmgr.html + RELOC/doc/latex/przechlewski-book/wkmgr1.pdf + RELOC/doc/latex/przechlewski-book/wkmgr1.tex + RELOC/doc/latex/przechlewski-book/wkmgr2.pdf + RELOC/doc/latex/przechlewski-book/wkmgr2.tex +runfiles size=10 + RELOC/bibtex/bst/przechlewski-book/papalike.bst + RELOC/tex/latex/przechlewski-book/upmgr.cls + RELOC/tex/latex/przechlewski-book/wkmgr.cls +catalogue-ctan /info/examples/przechlewski-book-examples +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics book-ex + +name ps2pk +category TLCore +revision 50602 +shortdesc Generate a PK font from an Adobe Type 1 font +longdesc Generates a PK file from an Adobe Type 1 font. PK fonts are (or +longdesc used to be) valuable in enabling previewers to view documents +longdesc generated that use Type 1 fonts. The program makes use of code +longdesc donated to the X consortium by IBM. +depend ps2pk.ARCH +containersize 504 +containerchecksum cdaf699808804ddbc6e7a4c58db7332e6bcb2402aab67ab617c031ab6b3ef40ecb7211b446788aa0f1eb7a69a32d2e7802ef03e9adfa062cbbde002a909f8dd9 +doccontainersize 62380 +doccontainerchecksum 58bc80926df5d9a75f8994f147d4d7472ee495ad0ecd22bfce2b7e79665108bd44f1b25eac6c26a047b9e572a259f10148abf35f2dd6410346d951cef222628c +docfiles size=27 + texmf-dist/doc/man/man1/mag.1 + texmf-dist/doc/man/man1/mag.man1.pdf + texmf-dist/doc/man/man1/pfb2pfa.1 + texmf-dist/doc/man/man1/pfb2pfa.man1.pdf + texmf-dist/doc/man/man1/pk2bm.1 + texmf-dist/doc/man/man1/pk2bm.man1.pdf + texmf-dist/doc/man/man1/ps2pk.1 + texmf-dist/doc/man/man1/ps2pk.man1.pdf +catalogue-ctan /fonts/utilities/ps2pk +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics ps-manip font-proc + +name ps2pk.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of ps2pk +containersize 77196 +containerchecksum bec8eb1f30b723691a40c14f0721f813da5bbdf6711b14459d4719cb72cb9f014e481831e250459c50b6cd3f90f464aaf9f22e85b9433e8230dbe30710fcc1f3 +binfiles arch=aarch64-linux size=57 + bin/aarch64-linux/mag + bin/aarch64-linux/pfb2pfa + bin/aarch64-linux/pk2bm + bin/aarch64-linux/ps2pk + +name ps2pk.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of ps2pk +containersize 93100 +containerchecksum a8ebbb7d218e22e82af379ada949f38506874d0c87048fbaca098574b1187bb0780e66d2773370eab6522dd9909c2894f7dfd3acd45216ae99d9054cd132cd9d +binfiles arch=amd64-freebsd size=60 + bin/amd64-freebsd/mag + bin/amd64-freebsd/pfb2pfa + bin/amd64-freebsd/pk2bm + bin/amd64-freebsd/ps2pk + +name ps2pk.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of ps2pk +containersize 82080 +containerchecksum 97f49c67a80d42d2a852a04560165b476d7e7b636d1283d01aecca42d4570bbc9a6c27b5e7a54c59ad0ab1f8cf4bcffde3e4b8b2eba05f88ea453ce862bca33c +binfiles arch=amd64-netbsd size=68 + bin/amd64-netbsd/mag + bin/amd64-netbsd/pfb2pfa + bin/amd64-netbsd/pk2bm + bin/amd64-netbsd/ps2pk + +name ps2pk.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of ps2pk +containersize 70904 +containerchecksum 4582a3a100ffd265e037ad5c87bff26722f4a8eac79a23159dcafa7a0ba04c78ba5d8ee00f942212637b6f14f1197bd7dae939eeac99fd9ab2ade75083985c8b +binfiles arch=armhf-linux size=48 + bin/armhf-linux/mag + bin/armhf-linux/pfb2pfa + bin/armhf-linux/pk2bm + bin/armhf-linux/ps2pk + +name ps2pk.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of ps2pk +containersize 56792 +containerchecksum 5433a1a52d80b1f368985ca1ff9b0b3503620639830fe708fe40394cf575c21cd100781ef5a96adc7d1710da54805d11c309836bb65fab025ba83ab9f33ecabc +binfiles arch=i386-cygwin size=41 + bin/i386-cygwin/mag.exe + bin/i386-cygwin/pfb2pfa.exe + bin/i386-cygwin/pk2bm.exe + bin/i386-cygwin/ps2pk.exe + +name ps2pk.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of ps2pk +containersize 80224 +containerchecksum 83e0198a9860f3c0e885495ab5b43148a8ac4074971e643c0a5a47daa1fd49b2033f04fb52d84bddecb8c6c26b8f75d9c1f97465ce8f42e5d683fbcd136dd259 +binfiles arch=i386-freebsd size=50 + bin/i386-freebsd/mag + bin/i386-freebsd/pfb2pfa + bin/i386-freebsd/pk2bm + bin/i386-freebsd/ps2pk + +name ps2pk.i386-linux +category TLCore +revision 50281 +shortdesc i386-linux files of ps2pk +containersize 91544 +containerchecksum e3d9602b55cf1fb1b8306852129e271b3edbd520604011fa433afb22cee91deac3413a1116bc79a2b71c7b4affb98f9feddaed58dcc4f6f3515258044dca3fdb +binfiles arch=i386-linux size=59 + bin/i386-linux/mag + bin/i386-linux/pfb2pfa + bin/i386-linux/pk2bm + bin/i386-linux/ps2pk + +name ps2pk.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of ps2pk +containersize 72964 +containerchecksum 4eacb677f8296b33e4cdd9f02a5ba384e6c1906ad73d437a4849dd9621673d7e0fb7745897d9f49d29e12ebaf04547b6eaa318fd762de99f912b7e708a371100 +binfiles arch=i386-netbsd size=62 + bin/i386-netbsd/mag + bin/i386-netbsd/pfb2pfa + bin/i386-netbsd/pk2bm + bin/i386-netbsd/ps2pk + +name ps2pk.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of ps2pk +containersize 84944 +containerchecksum 65b439cc9a03f55f7c0b731dfd7259cd36afb661d63a5aaa0f21bb2a350317b84ba6b476d1f2c464263bdbc1166399ebd0b1de31ad2fd45c05795c5486f556ba +binfiles arch=i386-solaris size=52 + bin/i386-solaris/mag + bin/i386-solaris/pfb2pfa + bin/i386-solaris/pk2bm + bin/i386-solaris/ps2pk + +name ps2pk.win32 +category TLCore +revision 50155 +shortdesc win32 files of ps2pk +containersize 59184 +containerchecksum 1e40350420678e0760ddff4f0d488d803df08f508fffc367a591bdcff42315fec2b97ed8ad8c6f818726d91beb3e4b5e8b59028dcaf51d66a20152628341f8c9 +binfiles arch=win32 size=44 + bin/win32/mag.exe + bin/win32/pfb2pfa.exe + bin/win32/pk2bm.exe + bin/win32/ps2pk.exe + +name ps2pk.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of ps2pk +containersize 59692 +containerchecksum 2be8ba9dcd0323c317bfa323549b5fc298cf81db5c7deb81d0b286f83c77b270870511fc48acb723a8d44ac9d5cfc9b11c441b03bb8bd471819df0af7c558860 +binfiles arch=x86_64-cygwin size=40 + bin/x86_64-cygwin/mag.exe + bin/x86_64-cygwin/pfb2pfa.exe + bin/x86_64-cygwin/pk2bm.exe + bin/x86_64-cygwin/ps2pk.exe + +name ps2pk.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of ps2pk +containersize 89712 +containerchecksum 923e026f224793df14d8ee440514607592dcb2d305756690dabf3fef416a2dde02567ffa106bf40068820696d49ed0b7d25fce5748881f761b8a68dcdafcfe4c +binfiles arch=x86_64-darwin size=59 + bin/x86_64-darwin/mag + bin/x86_64-darwin/pfb2pfa + bin/x86_64-darwin/pk2bm + bin/x86_64-darwin/ps2pk + +name ps2pk.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of ps2pk +containersize 85592 +containerchecksum 47cf6b67eb2dd5181080076a9034a9744621b9de5f78ddfcc07bce877336056cad119c12ee9ea51fbcbc65237eda18491014b91f7b93ce5391820e791c73cb7f +binfiles arch=x86_64-darwinlegacy size=58 + bin/x86_64-darwinlegacy/mag + bin/x86_64-darwinlegacy/pfb2pfa + bin/x86_64-darwinlegacy/pk2bm + bin/x86_64-darwinlegacy/ps2pk + +name ps2pk.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of ps2pk +containersize 89252 +containerchecksum 306652a1c1f14263c437c2130b539e40071bde010b09263fae0fe01673effb2f329c254915607d9f8a6e4077301a5dfa450c9bddbb6ea0a9a0b7568678e74d14 +binfiles arch=x86_64-linux size=56 + bin/x86_64-linux/mag + bin/x86_64-linux/pfb2pfa + bin/x86_64-linux/pk2bm + bin/x86_64-linux/ps2pk + +name ps2pk.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of ps2pk +containersize 95708 +containerchecksum e0ac0e629c2fa21be93d822a2dcec252bea0c30b51cb9ed0bdb1301f36280094b1e1d47bfd3c510b69ec2fd7f9351a379169e0ddaccc538901040039659d5ea9 +binfiles arch=x86_64-linuxmusl size=67 + bin/x86_64-linuxmusl/mag + bin/x86_64-linuxmusl/pfb2pfa + bin/x86_64-linuxmusl/pk2bm + bin/x86_64-linuxmusl/ps2pk + +name ps2pk.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of ps2pk +containersize 94708 +containerchecksum 840a26c7c8885af9f776b9fdf3d29f9318b4944e43cc9e41190ac2addd9d2f51befe11b907bcdf1319150f5ed16868d39fefbb6d082720845a8e51429905d07e +binfiles arch=x86_64-solaris size=62 + bin/x86_64-solaris/mag + bin/x86_64-solaris/pfb2pfa + bin/x86_64-solaris/pk2bm + bin/x86_64-solaris/ps2pk + +name psbao +category Package +revision 15878 +shortdesc Draw Bao diagrams +relocated 1 +longdesc The package draws Bao diagrams in LaTeX. The package is a +longdesc development of psgo, and uses PSTricks to draw the diagrams. +containersize 4336 +containerchecksum cec6c6079d7a8757c9c01315f3b035fce1eba2dda487e3a9da21a2bcfe6c7f7fe5f82171ac5b850fb7f673b56258f7b39c2e0b74c421e324475b02ec13671b32 +doccontainersize 92976 +doccontainerchecksum 1a9d1a0250bfd82d76ff1a3feed17c016f46e5ef199038bb569708989f7a243682a9584c1d293807cce09394a70a25a2f8b31189d81aae89336306f3f146dc9e +docfiles size=31 + RELOC/doc/latex/psbao/Changes + RELOC/doc/latex/psbao/README details="Readme" + RELOC/doc/latex/psbao/psbaomanual.pdf details="Package manual" + RELOC/doc/latex/psbao/psbaomanual.tex +runfiles size=5 + RELOC/tex/latex/psbao/psbao.sty +catalogue-ctan /graphics/pstricks/contrib/psbao +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics games +catalogue-version 0.17 + +name pseudocode +category Package +revision 15878 +shortdesc LaTeX environment for specifying algorithms in a natural way +relocated 1 +longdesc This package provides the environment "pseudocode" for +longdesc describing algorithms in a natural manner. +containersize 2436 +containerchecksum 28acc4dc69e5f4e181230f06dda363618146d30a3f7c6be0d11b258980bfed5636606dd808c1deaa627d04c526496152fdb2ddf56866b63a4c4313de423493a5 +doccontainersize 134000 +doccontainerchecksum b11d8ae45d5a4564dbaa2669db7b5cd4f9b87bc9efda3da47ce652245b140cec1b2c569f38fd1ae175215ff422cd2df3919bf27126c9d9d661dc4a147963bcb0 +docfiles size=43 + RELOC/doc/latex/pseudocode/README details="Readme" + RELOC/doc/latex/pseudocode/pseudocode.pdf details="Package documentation" + RELOC/doc/latex/pseudocode/pseudocode.tex +runfiles size=2 + RELOC/tex/latex/pseudocode/pseudocode.sty +catalogue-ctan /macros/latex/contrib/pseudocode +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics pseudocode + +name psfrag +category Package +revision 15878 +shortdesc Replace strings in encapsulated PostScript figures +relocated 1 +longdesc Allows LaTeX constructions (equations, picture environments, +longdesc etc.) to be precisely superimposed over Encapsulated PostScript +longdesc figures, using your own favorite drawing tool to create an EPS +longdesc figure and placing simple text 'tags' where each replacement is +longdesc to be placed, with PSfrag automatically removing these tags +longdesc from the figure and replacing them with a user specified LaTeX +longdesc construction, properly aligned, scaled, and/or rotated. +containersize 4464 +containerchecksum 71bf5c02e7a8a17eaa891f15c88777dcbbfc3ecf8b4a72dea49683f061bc86427ab813dbac5f5b8ab4742edcb92cd32d510675a80b0b3cdff2dc2cf127ee89fa +doccontainersize 68776 +doccontainerchecksum 072210deb2635a2032f6ac2d100ef72aa4471f69dec03fbb25fbb0d78b89aa2df0972b244d4335e8ed16e1a5f0cb8e04d22ad44dd5740fda59f9a4e5300befaa +docfiles size=30 + RELOC/doc/latex/psfrag/00readme.txt + RELOC/doc/latex/psfrag/announce.txt details="Release notice" + RELOC/doc/latex/psfrag/example.eps + RELOC/doc/latex/psfrag/pfgguide.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/psfrag/pfgguide.tex + RELOC/doc/latex/psfrag/testfig.eps +srccontainersize 13816 +srccontainerchecksum fd02b807b47f3818545e48825ddb11d188e9e3fa384b0f3412bb09051daedf73c2587a74d70aeda472047c1eac039252a25cacbf74a3c8df76be13a2644372de +srcfiles size=12 + RELOC/source/latex/psfrag/psfrag.dtx + RELOC/source/latex/psfrag/psfrag.ins +runfiles size=4 + RELOC/dvips/psfrag/psfrag.pro + RELOC/tex/latex/psfrag/psfrag.sty +catalogue-also psfragx +catalogue-ctan /macros/latex/contrib/psfrag +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics graphics-text +catalogue-version 3.04 + +name psfrag-italian +category Package +revision 15878 +shortdesc PSfrag documentation in Italian +relocated 1 +longdesc This is a translation of the documentation that comes with the +longdesc psfrag documentation. +containersize 400 +containerchecksum 4d26f0191ffbbe7fa6a9aae1ece6e72739925b59a1a1db5ad3cbe8f2b3ece92ec8265f008e91fcabfe2e04863300db833eff3104486e9c33985ce5c7f8dd7543 +doccontainersize 136192 +doccontainerchecksum 7a513ff265d259adfbaee9ffb47856602004f19679dad1316f04d36848f2e22bff8c3164ba9b045e7a4a57df76c2ad17b071a9cac68d4b92cff57a29f1e99f55 +docfiles size=47 + RELOC/doc/latex/psfrag-italian/itpfgguide.pdf details="The document itself" + RELOC/doc/latex/psfrag-italian/itpfgguide.tex +catalogue-ctan /info/italian/psfrag +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics graphics italian-doc + +name psfragx +category Package +revision 26243 +shortdesc A psfrag eXtension +relocated 1 +longdesc PSfragX offers a mechanism to embed \psfrag commands, as +longdesc provided by the psfrag package, into the EPS file itself. Each +longdesc time a graphic is included, the EPS file is scanned. If some +longdesc tagged lines are found, they are used to define the psfrag +longdesc replacements that should be performed automatically. In +longdesc addition, a similar mechanism holds for overpic objects. These +longdesc are picture objects superimposed on the included graphic. A +longdesc similar mechanism is implemented in psfrag itself (but +longdesc deprecated in the documentation), but psfragx offers much more +longdesc flexibility. For example, if babel is used, it is possible to +longdesc define different replacements corresponding to different +longdesc languages. The replacements to take into account will be +longdesc selected on the basis of the current language of the document. +longdesc A Matlab script (LaPrint) is provided, to export an EPS file +longdesc with psfragx annotations ready embedded. +containersize 3792 +containerchecksum b02063b8c1df58133b951eb10763d3b9099376a473dc980fef801ab565326ac1c5539be3ee94ee5c79837c1e6265cf41d6554f66e8900df2663d5d7e727e0df6 +doccontainersize 365048 +doccontainerchecksum 863df965aa6abb99c115b06ed7d1b1660345e9bca0d0f5d62b6a7ffb55391688a92114edae7bd28ef8b715515c8bcf3c5b4fb4970cc1b6bd9cc068b09595cb10 +docfiles size=302 + RELOC/doc/latex/psfragx/README details="Readme" + RELOC/doc/latex/psfragx/README.laprint-3.16 + RELOC/doc/latex/psfragx/laprint.m + RELOC/doc/latex/psfragx/laprintdoc.ps details="LaPrint documentation:" + RELOC/doc/latex/psfragx/laprpfx.mat + RELOC/doc/latex/psfragx/pfxprint.m + RELOC/doc/latex/psfragx/psfragx.m + RELOC/doc/latex/psfragx/psfragx.pdf details="Psfragx documentation:" + RELOC/doc/latex/psfragx/psfragx_example.pdf + RELOC/doc/latex/psfragx/psfragx_example.tex + RELOC/doc/latex/psfragx/readmePFX.txt +srccontainersize 16584 +srccontainerchecksum f38ac5c21c7f366e952e71199321865a70376d1dfbcbed2ac993fa01f412f185a09725b9e6b1808167a5cf55d253b461a43a2f126cedd7d469645b7740702938 +srcfiles size=17 + RELOC/source/latex/psfragx/psfragx.drv + RELOC/source/latex/psfragx/psfragx.dtx + RELOC/source/latex/psfragx/psfragx.ins +runfiles size=4 + RELOC/tex/latex/psfragx/psfragx.cfg + RELOC/tex/latex/psfragx/psfragx.sty +catalogue-ctan /macros/latex/contrib/psfragx +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-text +catalogue-version 1.1 + +name psgo +category Package +revision 15878 +shortdesc Typeset go diagrams with PSTricks +relocated 1 +containersize 3036 +containerchecksum 75791ac8c340cd72139c50b2e2a05f6001edf2b79bbb9fcb4c9118f2acbc67643469c8f6da34122bf001e85af60b5b0050bf3c7b5bcce7c393e7930e3cfe7eaf +doccontainersize 86520 +doccontainerchecksum 9d061c884f76eb87e86cb441ebb693a9c64daca024c35dd631d660f3d1f8b1541c40e285d5f4115b36e2b02b7640ea7be70f4527e7ae92c6d6173625b215b7cc +docfiles size=31 + RELOC/doc/latex/psgo/Changes + RELOC/doc/latex/psgo/README details="Readme" + RELOC/doc/latex/psgo/psgomanual.pdf details="Package documentation" + RELOC/doc/latex/psgo/psgomanual.tex +runfiles size=3 + RELOC/tex/latex/psgo/psgo.sty +catalogue-ctan /graphics/pstricks/contrib/psgo +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl +catalogue-topics games pstricks +catalogue-version 0.17 + +name psizzl +category Package +revision 15878 +shortdesc A TeX format for physics papers +relocated 1 +longdesc PSIZZL is a TeX format for physics papers written at SLAC and +longdesc used at several other places. It dates from rather early in the +longdesc development of TeX82; as a result, some of the descriptions of +longdesc limitations look rather quaint to modern eyes. +containersize 23084 +containerchecksum adcd254a9991839c623b3f75098276dc26df935db1528d39f8588681b87237febe81f8289aab747486df92bc9af2103638734fc22c43ace8cdea1733d2a66360 +doccontainersize 5448 +doccontainerchecksum e9d65b3b0c364fcc7632ab83974d8685568d4135cbd8568cbf69e9162dbb80283724ada72891a72dce2fabe35d846c6f09b05f1123f8fe72ae749215170ee996 +docfiles size=5 + RELOC/doc/otherformats/psizzl/base/psizzl.commands details="List of commands available" + RELOC/doc/otherformats/psizzl/base/psizzl.doc +srccontainersize 640 +srccontainerchecksum fabcb5343912bf005f5ad73b2ff9444172ad6f36fe42ec492903ed6d19d3c2b67775790b15cb37a688d9c0b8d78145963f8594b67e91d07284adb5d26cd2ea52 +srcfiles size=1 + RELOC/source/psizzl/base/aaaread.me +runfiles size=31 + RELOC/tex/psizzl/base/chapters.Psizzl + RELOC/tex/psizzl/base/citation.Psizzl + RELOC/tex/psizzl/base/fontdefs.Psizzl + RELOC/tex/psizzl/base/index.Psizzl + RELOC/tex/psizzl/base/institut.Psizzl + RELOC/tex/psizzl/base/letter.Psizzl + RELOC/tex/psizzl/base/lists.Psizzl + RELOC/tex/psizzl/base/macros.Psizzl + RELOC/tex/psizzl/base/memo.Psizzl + RELOC/tex/psizzl/base/mypsizzl.tex + RELOC/tex/psizzl/base/options.Psizzl + RELOC/tex/psizzl/base/output.Psizzl + RELOC/tex/psizzl/base/picture.Psizzl + RELOC/tex/psizzl/base/psizzl.tex + RELOC/tex/psizzl/base/publicat.Psizzl + RELOC/tex/psizzl/base/symbols.Psizzl + RELOC/tex/psizzl/base/thesis.Psizzl + RELOC/tex/psizzl/config/psizzl.ini +catalogue-ctan /macros/psizzl +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics physics format +catalogue-version 0.35 + +name pslatex +category Package +revision 16416 +shortdesc Use PostScript fonts by default +relocated 1 +longdesc A small package that makes LaTeX default to 'standard' +longdesc PostScript fonts. It is basically a merger of the times and the +longdesc (obsolete) mathptm packages from the psnfss suite. You must +longdesc have installed standard LaTeX and the psnfss PostScript fonts +longdesc to use this package. The main novel feature is that the pslatex +longdesc package tries to compensate for the visual differences between +longdesc the Adobe fonts by scaling Helvetica by 90%, and 'condensing' +longdesc Courier (i.e. scaling horizontally) by 85%. The package is +longdesc supplied with a (unix) shell file for a 'pslatex' command that +longdesc allows standard LaTeX documents to be processed, without +longdesc needing to edit the file. Note that current psnfss uses a +longdesc different technique for scaling Helvetica, and treats Courier +longdesc as a lost cause (there are better free fixed-width available +longdesc now, than there were when pslatex was designed). As a result, +longdesc pslatex is widely considered obsolete. +containersize 5748 +containerchecksum 4e6c2163fe9d8573012cde55d7a9686d45276617d6368a2191b2ca5ecd9e2e88f9ea07d638c726cfb43f0fddb5d8c8b1b8ca1eb58177517b6704776f792630db +srccontainersize 1204 +srccontainerchecksum 27e8f6f5c30338cccfded6805b713b74b6139841ad81a10a4a06ff5acd5a189733e2d6fdc80c2483c5fc8beececfb91a0a9d03202bc44fea753ee6bfda9fe649 +srcfiles size=3 + RELOC/source/latex/pslatex/fontinst/pslatex.tex + RELOC/source/latex/pslatex/shell/pslatex + RELOC/source/latex/pslatex/shell/pslatex.bat +runfiles size=9 + RELOC/fonts/map/dvips/pslatex/pcrr8rn.map + RELOC/fonts/tfm/public/pslatex/pcrr7tn.tfm + RELOC/fonts/tfm/public/pslatex/pcrr8rn.tfm + RELOC/fonts/tfm/public/pslatex/pcrr8tn.tfm + RELOC/fonts/vf/public/pslatex/pcrr7tn.vf + RELOC/fonts/vf/public/pslatex/pcrr8tn.vf + RELOC/tex/latex/pslatex/pslatex.sty +catalogue-ctan /macros/latex/contrib/pslatex +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl +catalogue-topics font-supp obsolete + +name psnfss +category Package +revision 33946 +shortdesc Font support for common PostScript fonts +relocated 1 +longdesc Font definition files, macros and font metrics for +longdesc freely-available Adobe Type 1 fonts. The font set consists of +longdesc the 'LaserWriter 35' set (originally 'freely available' because +longdesc embedded in PostScript printers), and a variety of other free +longdesc fonts, together with some additions. Note that while many of +longdesc the fonts are available in PostScript (and other) printers, +longdesc most publishers require fonts embedded in documents, which +longdesc requires that you have the fonts in your TeX system. +longdesc Fortunately, there are free versions of the fonts from URW +longdesc (available in the URW base5 bundle). The base set of text fonts +longdesc covered by PSNFSS are: AvantGarde, Bookman, Courier, Helvetica, +longdesc New Century Schoolbook, Palatino, Symbol, Times Roman and Zapf +longdesc Dingbats. In addition, the fonts Bitstream Charter and Adobe +longdesc Utopia are covered (those fonts were contributed to the Public +longdesc Domain by their commercial foundries). Separate packages are +longdesc provided to load each font for use as main text font. The +longdesc packages helvet (which allows Helvetica to be loaded with its +longdesc size scaled to something more nearly appropriate for its use as +longdesc a Sans-Serif font to match Times) and pifont (which provides +longdesc the means to select single glyphs from symbol fonts) are +longdesc tailored to special requirements of their fonts. Mathematics +longdesc are covered by the mathptmx package, which constructs passable +longdesc mathematics from a combination of Times Roman, Symbol and some +longdesc glyphs from Computer Modern, and by Pazo Math (optionally +longdesc extended with the fpl small-caps and old-style figures fonts) +longdesc which uses Palatino as base font, with the mathpazo fonts. The +longdesc bundle as a whole is part of the LaTeX 'required' set of +longdesc packages. +depend graphics +execute addMap charter.map +execute addMap fpls.map +execute addMap pazo.map +execute addMap utopia.map +containersize 11948 +containerchecksum d565256578225edc29fce8f9c8236542379a1918590035faa8d8b946c37fb9fd17414e5a05ad2bb0bf1ba683a5fb29ccf29c108a3fc678e184a1eb7326165bf5 +doccontainersize 484772 +doccontainerchecksum 5a3441930471577bce029ddbf820a2aece01bf3bb88fca22fcc7c724030bb958731d0452af34e5dc9a2bef99e136ef24228094c71d35bd684220fd0d68f74f59 +docfiles size=130 + RELOC/doc/latex/psnfss/00readme.txt details="Readme" + RELOC/doc/latex/psnfss/changes.txt + RELOC/doc/latex/psnfss/manifest.txt + RELOC/doc/latex/psnfss/psfonts.pdf + RELOC/doc/latex/psnfss/psnfss2e.pdf details="Package documentation" + RELOC/doc/latex/psnfss/test/mathtest.tex + RELOC/doc/latex/psnfss/test/pitest.tex + RELOC/doc/latex/psnfss/test/test0.tex + RELOC/doc/latex/psnfss/test/test1.tex + RELOC/doc/latex/psnfss/test/test2.tex + RELOC/doc/latex/psnfss/test/test3.tex +srccontainersize 16472 +srccontainerchecksum 030108d03f62b74f1e0274168452f5b05201337e947303ee78567452b1ab38daff5be326b8d1c986add7252d2842b034577577e23ae6bec67a02c0f0339428c7 +srcfiles size=18 + RELOC/source/latex/psnfss/psfonts.dtx + RELOC/source/latex/psnfss/psfonts.ins + RELOC/source/latex/psnfss/psnfss2e.tex +runfiles size=110 + RELOC/fonts/map/dvips/psnfss/charter.map + RELOC/fonts/map/dvips/psnfss/fpls.map + RELOC/fonts/map/dvips/psnfss/pazo.map + RELOC/fonts/map/dvips/psnfss/psnfss.map + RELOC/fonts/map/dvips/psnfss/utopia.map + RELOC/tex/latex/psnfss/8rbch.fd + RELOC/tex/latex/psnfss/8rpag.fd + RELOC/tex/latex/psnfss/8rpbk.fd + RELOC/tex/latex/psnfss/8rpcr.fd + RELOC/tex/latex/psnfss/8rphv.fd + RELOC/tex/latex/psnfss/8rpnc.fd + RELOC/tex/latex/psnfss/8rppl.fd + RELOC/tex/latex/psnfss/8rptm.fd + RELOC/tex/latex/psnfss/8rput.fd + RELOC/tex/latex/psnfss/8rpzc.fd + RELOC/tex/latex/psnfss/avant.sty + RELOC/tex/latex/psnfss/bookman.sty + RELOC/tex/latex/psnfss/chancery.sty + RELOC/tex/latex/psnfss/charter.sty + RELOC/tex/latex/psnfss/courier.sty + RELOC/tex/latex/psnfss/helvet.sty + RELOC/tex/latex/psnfss/mathpazo.sty + RELOC/tex/latex/psnfss/mathpple.sty + RELOC/tex/latex/psnfss/mathptm.sty + RELOC/tex/latex/psnfss/mathptmx.sty + RELOC/tex/latex/psnfss/newcent.sty + RELOC/tex/latex/psnfss/omlbch.fd + RELOC/tex/latex/psnfss/omlpag.fd + RELOC/tex/latex/psnfss/omlpbk.fd + RELOC/tex/latex/psnfss/omlpcr.fd + RELOC/tex/latex/psnfss/omlphv.fd + RELOC/tex/latex/psnfss/omlpnc.fd + RELOC/tex/latex/psnfss/omlppl.fd + RELOC/tex/latex/psnfss/omlptm.fd + RELOC/tex/latex/psnfss/omlptmcm.fd + RELOC/tex/latex/psnfss/omlput.fd + RELOC/tex/latex/psnfss/omlpzc.fd + RELOC/tex/latex/psnfss/omlzplm.fd + RELOC/tex/latex/psnfss/omlzpple.fd + RELOC/tex/latex/psnfss/omlztmcm.fd + RELOC/tex/latex/psnfss/omsbch.fd + RELOC/tex/latex/psnfss/omspag.fd + RELOC/tex/latex/psnfss/omspbk.fd + RELOC/tex/latex/psnfss/omspcr.fd + RELOC/tex/latex/psnfss/omsphv.fd + RELOC/tex/latex/psnfss/omspnc.fd + RELOC/tex/latex/psnfss/omsppl.fd + RELOC/tex/latex/psnfss/omsptm.fd + RELOC/tex/latex/psnfss/omsput.fd + RELOC/tex/latex/psnfss/omspzc.fd + RELOC/tex/latex/psnfss/omspzccm.fd + RELOC/tex/latex/psnfss/omszplm.fd + RELOC/tex/latex/psnfss/omszpple.fd + RELOC/tex/latex/psnfss/omsztmcm.fd + RELOC/tex/latex/psnfss/omxpsycm.fd + RELOC/tex/latex/psnfss/omxzplm.fd + RELOC/tex/latex/psnfss/omxzpple.fd + RELOC/tex/latex/psnfss/omxztmcm.fd + RELOC/tex/latex/psnfss/ot1bch.fd + RELOC/tex/latex/psnfss/ot1pag.fd + RELOC/tex/latex/psnfss/ot1pbk.fd + RELOC/tex/latex/psnfss/ot1pcr.fd + RELOC/tex/latex/psnfss/ot1phv.fd + RELOC/tex/latex/psnfss/ot1pnc.fd + RELOC/tex/latex/psnfss/ot1ppl.fd + RELOC/tex/latex/psnfss/ot1pplj.fd + RELOC/tex/latex/psnfss/ot1pplx.fd + RELOC/tex/latex/psnfss/ot1ptm.fd + RELOC/tex/latex/psnfss/ot1ptmcm.fd + RELOC/tex/latex/psnfss/ot1put.fd + RELOC/tex/latex/psnfss/ot1pzc.fd + RELOC/tex/latex/psnfss/ot1zplm.fd + RELOC/tex/latex/psnfss/ot1zpple.fd + RELOC/tex/latex/psnfss/ot1ztmcm.fd + RELOC/tex/latex/psnfss/palatino.sty + RELOC/tex/latex/psnfss/pifont.sty + RELOC/tex/latex/psnfss/t1bch.fd + RELOC/tex/latex/psnfss/t1pag.fd + RELOC/tex/latex/psnfss/t1pbk.fd + RELOC/tex/latex/psnfss/t1pcr.fd + RELOC/tex/latex/psnfss/t1phv.fd + RELOC/tex/latex/psnfss/t1pnc.fd + RELOC/tex/latex/psnfss/t1ppl.fd + RELOC/tex/latex/psnfss/t1pplj.fd + RELOC/tex/latex/psnfss/t1pplx.fd + RELOC/tex/latex/psnfss/t1ptm.fd + RELOC/tex/latex/psnfss/t1put.fd + RELOC/tex/latex/psnfss/t1pzc.fd + RELOC/tex/latex/psnfss/times.sty + RELOC/tex/latex/psnfss/ts1bch.fd + RELOC/tex/latex/psnfss/ts1pag.fd + RELOC/tex/latex/psnfss/ts1pbk.fd + RELOC/tex/latex/psnfss/ts1pcr.fd + RELOC/tex/latex/psnfss/ts1phv.fd + RELOC/tex/latex/psnfss/ts1pnc.fd + RELOC/tex/latex/psnfss/ts1ppl.fd + RELOC/tex/latex/psnfss/ts1pplj.fd + RELOC/tex/latex/psnfss/ts1pplx.fd + RELOC/tex/latex/psnfss/ts1ptm.fd + RELOC/tex/latex/psnfss/ts1put.fd + RELOC/tex/latex/psnfss/ts1pzc.fd + RELOC/tex/latex/psnfss/ufplm.fd + RELOC/tex/latex/psnfss/ufplmbb.fd + RELOC/tex/latex/psnfss/upsy.fd + RELOC/tex/latex/psnfss/upzd.fd + RELOC/tex/latex/psnfss/utopia.sty +catalogue-also psnfssx +catalogue-ctan /macros/latex/required/psnfss +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font-supp font-use +catalogue-version 9.2a + +name pspicture +category Package +revision 15878 +shortdesc PostScript picture support +relocated 1 +longdesc A replacement for LaTeX's picture macros, that uses PostScript +longdesc \special commands. The package is now largely superseded by +longdesc pict2e. +containersize 1804 +containerchecksum 139d160fa67dbb7cc932fc75dba80dd46a55a1dd5973b27a6a5dd38a6035cb367441b178acaf3c11859ad60103283774ee5e2623a083a0336d5c2ff74a7b82fd +doccontainersize 42636 +doccontainerchecksum a743397a0d48c587b60db5f1dcf9e1c22f67ba15dbbce241a2584c95456b3546aebdfaebec9fcfb3dedcac65f7f053ec52cb479d726e5e3fbfe042efcf1ad702 +docfiles size=18 + RELOC/doc/latex/pspicture/README details="Package Readme" + RELOC/doc/latex/pspicture/pspicture.pdf details="Package documentation" +srccontainersize 6036 +srccontainerchecksum af1deb00966a7d4d1d68e156dd5fbc60e95f60a65a942f1bda1acbd579b932e0c81875386bd3eb1945fab211cc9ad5607c3e21e5d240048d775c28574cb754ba +srcfiles size=6 + RELOC/source/latex/pspicture/pspicture.dtx + RELOC/source/latex/pspicture/pspicture.ins +runfiles size=2 + RELOC/dvips/pspicture/pspicture.ps + RELOC/tex/latex/pspicture/pspicture.sty +catalogue-ctan /macros/latex/contrib/pspicture +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-in-tex obsolete + +name pst-2dplot +category Package +revision 15878 +shortdesc A PSTricks package for drawing 2D curves +relocated 1 +longdesc Pst-2dplot is a pstricks package that offers an easy-to-use and +longdesc intuitive tool for plotting 2-d curves. It defines an +longdesc environment with commands similar to MATLAB for plotting. +containersize 1876 +containerchecksum 3109c2709323906ec39bd1be6e7c9151b7b07f9d2dafd5f7af61d3facd3e37ae35bd8bd923968102fc702f35fa4a903e9a50d3a7a85a1c088017aababd16d969 +doccontainersize 69600 +doccontainerchecksum f46a0c8c94900d180fac92e7b393672d010388fe80867f01125cdc7c486eff97ee36cab1aeeeb224b9ab80739c2ddd9e89b84926948acaa8b2b0ae08457ac0ef +docfiles size=27 + RELOC/doc/generic/pst-2dplot/README details="Readme" + RELOC/doc/generic/pst-2dplot/data1.dat + RELOC/doc/generic/pst-2dplot/data2.dat + RELOC/doc/generic/pst-2dplot/data3.dat + RELOC/doc/generic/pst-2dplot/pst-2dplot-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-2dplot/pst-2dplot-doc.tex +runfiles size=2 + RELOC/tex/latex/pst-2dplot/pst-2dplot.sty +catalogue-ctan /graphics/pstricks/contrib/pst-2dplot +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-plot pstricks +catalogue-version 1.5 + +name pst-3d +category Package +revision 17257 +shortdesc A PSTricks package for tilting and other pseudo-3D tricks +relocated 1 +longdesc The package provides basic macros that use PSTricks for +longdesc shadows, tilting and three dimensional representations of text +longdesc or graphical objects. +containersize 3460 +containerchecksum dfd8a2b79d308cf4ae3bdcd438b967446f8601509fd4afb3f090d946df0cc2d66e9b7071ce33e51ad4cd53b7e62dbc02d861d46a302bfe2c901d1d8c82ab0649 +doccontainersize 100796 +doccontainerchecksum e8355b936fbc1685edf205e88f2793ab298aac4e4c06de10dddbe1587b5401ba8cc4d2a01dbad3ad56da5eddb27bd6049a41e6da8c139727d36fcc94d93ac554 +docfiles size=44 + RELOC/doc/generic/pst-3d/Changes + RELOC/doc/generic/pst-3d/README details="Readme" + RELOC/doc/generic/pst-3d/pst-3d-doc.bib + RELOC/doc/generic/pst-3d/pst-3d-doc.pdf + RELOC/doc/generic/pst-3d/pst-3d-doc.tex +srccontainersize 948 +srccontainerchecksum fc50cff8bb86571d3827a03f3c64cb62a9fdab25e2595ccf9465e4ad39539ebc0a55da92519ef203da65da3a44e01ee28b39ef27a5af24d26463b215f96be313 +srcfiles size=1 + RELOC/source/generic/pst-3d/Makefile +runfiles size=5 + RELOC/dvips/pst-3d/pst-3d.pro + RELOC/tex/generic/pst-3d/pst-3d.tex + RELOC/tex/latex/pst-3d/pst-3d.sty +catalogue-ctan /graphics/pstricks/contrib/pst-3d +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-3d pstricks +catalogue-version 1.10 + +name pst-3dplot +category Package +revision 43703 +shortdesc Draw 3D objects in parallel projection, using PSTricks +relocated 1 +longdesc A package using PSTricks to draw a large variety of graphs and +longdesc plots, including 3D maths functions. Data can be read from +longdesc external data files, making this package a generic tool for +longdesc graphing within TeX/LaTeX, without the need for external tools. +containersize 21764 +containerchecksum a509af726d13fbf9dd0f3b1181a1dc53a31fe007187ad345c8e3c6c65d52d09f6de422a723b472e3b8e5f1aba1563dea06b79e82a7940e018cdb9eaa30a40632 +doccontainersize 2744920 +doccontainerchecksum 2f261cb9d32dfbb85b626238e25d8c9198ad50df008b54f800d3d5b404ea5734da8636c05c33ec30311c60f6e41ece1071a04af7affc61badc3aad64a5b9b194 +docfiles size=772 + RELOC/doc/generic/pst-3dplot/Changes + RELOC/doc/generic/pst-3dplot/README details="Readme" + RELOC/doc/generic/pst-3dplot/pst-3dplot-doc.bib + RELOC/doc/generic/pst-3dplot/pst-3dplot-doc.dat + RELOC/doc/generic/pst-3dplot/pst-3dplot-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-3dplot/pst-3dplot-doc.tex +runfiles size=31 + RELOC/dvips/pst-3dplot/pst-3dplot.pro + RELOC/tex/generic/pst-3dplot/pst-3dplot.tex + RELOC/tex/latex/pst-3dplot/pst-3dplot.sty +catalogue-ctan /graphics/pstricks/contrib/pst-3dplot +catalogue-date 2017-04-05 10:29:03 +0200 +catalogue-license lppl +catalogue-topics graphics-3d graphics-plot pstricks +catalogue-version 2.04 + +name pst-abspos +category Package +revision 15878 +shortdesc Put objects at an absolute position +relocated 1 +longdesc The (PSTricks-related) package provides a command +longdesc \pstPutAbs(x,y) to put an object at an arbitrary absolute (or +longdesc even a relative) position on the page. +containersize 2004 +containerchecksum b56bed1fedb14fe7cc455fe4e87ec51085e8e09132ff5dbe52083701cdd0d63f2e6dac2ab55838fbefd8e7de9666d0239e9fba712573a51dce2804d31ab140c6 +doccontainersize 57048 +doccontainerchecksum 77754a1c27c083f60c2836483a60bfb6b4c826783d5acd16b1eaa9b7fe7aba8820886442ed28a5b334929a3f21f0f1b4487c7403f8dbfc3ad3cfc08407e35229 +docfiles size=27 + RELOC/doc/generic/pst-abspos/Changes + RELOC/doc/generic/pst-abspos/README details="Readme" + RELOC/doc/generic/pst-abspos/pst-abspos-doc.bib + RELOC/doc/generic/pst-abspos/pst-abspos-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-abspos/pst-abspos-doc.tex +srccontainersize 944 +srccontainerchecksum faf4f7e2b94bd66d19be75c307c8a6b20a2c779a8e6783096b41e7b4da66ab07f7ecbaaedfa668c09089bea9c2c79af4cbc12aeafe949cb729c589989206cd0c +srcfiles size=1 + RELOC/source/generic/pst-abspos/Makefile +runfiles size=3 + RELOC/tex/generic/pst-abspos/pst-abspos.tex + RELOC/tex/latex/pst-abspos/pst-abspos.sty +catalogue-ctan /graphics/pstricks/contrib/pst-abspos +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics layout pstricks +catalogue-version 0.2 + +name pst-am +category Package +revision 19591 +shortdesc Simulation of modulation and demodulation +relocated 1 +longdesc The package allows the simulation of the modulated and +longdesc demodulated amplitude of radio waves. The user may plot curves +longdesc of modulated signals, wave carrier, signal modulation, signal +longdesc recovery and signal demodulation. +containersize 3020 +containerchecksum a5f466dacd393ed7243fa2cb43aed0a5bb8469a51aa82fac4b53c47a474a1d9758db4d7a001cee49716714049499339567cb62a66f2731ffc7646fecc15c7784 +doccontainersize 843332 +doccontainerchecksum edea0ddc3f5472a86706d1823fe78459d2908724daf2b9bfe44b41e749f2b41483000602817a45a5e41869f86d4034ea52640bdffa334af54e4964510768152e +docfiles size=225 + RELOC/doc/generic/pst-am/Changes + RELOC/doc/generic/pst-am/README details="Readme" + RELOC/doc/generic/pst-am/index.phtml + RELOC/doc/generic/pst-am/pst-am-doc.bib + RELOC/doc/generic/pst-am/pst-am-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-am/pst-am-doc.tex +srccontainersize 928 +srccontainerchecksum fca7f1f7769f839632eec75b3baa864b60f9ab3c1ff9cc08437fad4086cf9a063f283568163d1ebe3e5a2c87b06bbae1b11e5be07a8eca5030cccfc68392b40f +srcfiles size=1 + RELOC/source/generic/pst-am/Makefile +runfiles size=3 + RELOC/tex/latex/pst-am/pst-am.sty +catalogue-ctan /graphics/pstricks/contrib/pst-am +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics diagram pstricks +catalogue-version 1.02 + +name pst-antiprism +category Package +revision 46643 +shortdesc A PSTricks related package which draws an antiprism +relocated 1 +longdesc pst-antiprism is a PSTricks related package which draws an +longdesc antiprism, which is a semiregular polyhedron constructed with +longdesc 2-gons and triangles. +containersize 2584 +containerchecksum dc93e3a8a040a2712f701c2fa89924c45749824d20ad814a9f04aa423e15caed3a457b762dc7d30cf5c9e3afea378efc303851af919831c0969cde50b9adea57 +doccontainersize 302008 +doccontainerchecksum df528e5693cbbdca80a88d02e2b8487b70c188109825da66c9d9042056c6ba62e361fcba2ac747d69a08a4c8d78f27534640ce55c583289c3f12c2eb4c57d861 +docfiles size=117 + RELOC/doc/generic/pst-antiprism/Changes + RELOC/doc/generic/pst-antiprism/README.md details="Readme" + RELOC/doc/generic/pst-antiprism/pst-antiprism-doc.bib + RELOC/doc/generic/pst-antiprism/pst-antiprism-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-antiprism/pst-antiprism-doc.tex +runfiles size=3 + RELOC/dvips/pst-antiprism/pst-antiprism.pro + RELOC/tex/generic/pst-antiprism/pst-antiprism.tex + RELOC/tex/latex/pst-antiprism/pst-antiprism.sty +catalogue-ctan /graphics/pstricks/contrib/pst-antiprism +catalogue-date 2018-02-15 04:57:50 +0100 +catalogue-license lppl +catalogue-topics pstricks graphics +catalogue-version 0.02 + +name pst-arrow +category Package +revision 41980 +shortdesc Special arrows for PSTricks +relocated 1 +longdesc This package has all the code from the package pstricks-add +longdesc which was related to arrows, like multiple arrows and so on. +containersize 5524 +containerchecksum 3400d901f40b9dc3434f107dda5480e0f8e37548b2ea0bfad5a38ff90e1d99aafd43d44d6cb6c0594b0574f781d94ad57e53074d28b10251f6ab8100f2814354 +doccontainersize 125672 +doccontainerchecksum bf97ebd12c09ba4ec3dfad4107141054abc9f04b1e1408017ec038b656bc04ccf09894c5f15a8a0344f358f2e43acdcb7509cc7e0ce686303a62bf175de7a3c7 +docfiles size=59 + RELOC/doc/generic/pst-arrow/Changes + RELOC/doc/generic/pst-arrow/README details="Readme" + RELOC/doc/generic/pst-arrow/pst-arrow-doc.bib + RELOC/doc/generic/pst-arrow/pst-arrow-doc.pdf details="Brief documentation, with examples" + RELOC/doc/generic/pst-arrow/pst-arrow-doc.tex +runfiles size=6 + RELOC/tex/generic/pst-arrow/pst-arrow.tex + RELOC/tex/latex/pst-arrow/pst-arrow.sty +catalogue-ctan /graphics/pstricks/contrib/pst-arrow +catalogue-date 2018-01-07 12:06:50 +0100 +catalogue-license lppl1.3 +catalogue-topics pstricks +catalogue-version 0.01 + +name pst-asr +category Package +revision 22138 +shortdesc Typeset autosegmental representations for linguists +relocated 1 +longdesc The package allows the user to typeset autosegmental +longdesc representations. It uses the PStricks, and xkeyval packages. +containersize 6156 +containerchecksum c5ae73e1553b564a90d2c77fa434c360fe2858657fb5ff4c6ce1cbb46838fea9c0dd7a8d92e2048a8ed0d748839518b461b0727db3b7937c4e39edf85277e081 +doccontainersize 271600 +doccontainerchecksum 560ea68a6f02dc3b79c64554652a9efd52c7fb00d07e7ffbc9b92ffab251854e07e87642028b94fc42bf7d01fedd82bfd50913f9c42d1c37d76c1eaba761ed00 +docfiles size=84 + RELOC/doc/generic/pst-asr/README + RELOC/doc/generic/pst-asr/pst-asr-doc-source.zip + RELOC/doc/generic/pst-asr/pst-asr-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-asr/pst-asr-examples.pdf details="Examples of usage" + RELOC/doc/generic/pst-asr/pst-asr-examples.tex +runfiles size=7 + RELOC/tex/generic/pst-asr/pst-asr.tex + RELOC/tex/latex/pst-asr/pst-asr.sty +catalogue-ctan /graphics/pstricks/contrib/pst-asr +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics linguistic pstricks +catalogue-version 1.3 + +name pst-bar +category Package +revision 18734 +shortdesc Produces bar charts using PSTricks +relocated 1 +longdesc The package uses pstricks to draw bar charts from data stored +longdesc in a comma-delimited file. Several types of bar charts may be +longdesc drawn, and the drawing parameters are highly customizable. No +longdesc external packages are required except those that are part of +longdesc the standard PSTricks distribution. +containersize 3856 +containerchecksum 14c500c89dcce23c52f4551658496f55ac712c76bf9ab2e8878463a7dc7bb2bb3be10f94679cd2a5b720739e89cefed98237d18f65d0b9ca26ae91ac64525a25 +doccontainersize 175132 +doccontainerchecksum e17655c65e96e2d777484ef8db7304562310af8585c21f8cb6c64921c9aa08ad4b5ff8f61924c87112323c2bb509b5ad7e3b2176b750bd1b0f3df837033f380a +docfiles size=81 + RELOC/doc/generic/pst-bar/README details="Readme" + RELOC/doc/generic/pst-bar/pst-bar-doc.bib + RELOC/doc/generic/pst-bar/pst-bar-doc.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/pst-bar/pst-bar-doc.tex + RELOC/doc/generic/pst-bar/pst-bar-docDE.pdf details="Package documentation (German)" language="de" + RELOC/doc/generic/pst-bar/pst-bar-docDE.tex + RELOC/doc/generic/pst-bar/pst-bar.orig +srccontainersize 936 +srccontainerchecksum 4900e4c4ee079574348403f6a39c22f49e92e9ebfd5f8748543fafacf290d7283d34af7baa0a4ec754222cd9d89ae7c663fa57c97a0bb126a2dd76c16d46ee79 +srcfiles size=1 + RELOC/source/generic/pst-bar/Makefile +runfiles size=6 + RELOC/dvips/pst-bar/pst-bar.pro + RELOC/tex/generic/pst-bar/pst-bar.tex + RELOC/tex/latex/pst-bar/pst-bar.sty +catalogue-ctan /graphics/pstricks/contrib/pst-bar +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics genchart pstricks +catalogue-version 0.92 + +name pst-barcode +category Package +revision 45096 +shortdesc Print barcodes using PostScript +relocated 1 +longdesc The pst-barcode package allows printing of barcodes, in a huge +longdesc variety of formats, including quick-response (qr) codes (see +longdesc documentation for details). As a PSTricks package, the package +longdesc requires pstricks. The package uses PostScript for calculating +longdesc the bars. For PDF output use a multi-pass mechansism such as +longdesc pst-pdf. +containersize 99120 +containerchecksum 6c4799d7410da7f13225acd9cb5628d65bdbbb525e2bcb114d7f660d4c752122f8e9028763d3ecbca04c3c9da36b7910d64c981e8593b2c5df6b4cb372103785 +doccontainersize 1110916 +doccontainerchecksum 918891da185bcbd26051a4715cf585fd8539e6ac534ada4a2524bfabec328f87cc998cbd65b7fae8a2fbe4de029403811214c0196e59125a77f8af715b3ed3f0 +docfiles size=1449 + RELOC/doc/generic/pst-barcode/Changes + RELOC/doc/generic/pst-barcode/README.md details="Readme" + RELOC/doc/generic/pst-barcode/images/auspost-1.eps + RELOC/doc/generic/pst-barcode/images/auspost-2.eps + RELOC/doc/generic/pst-barcode/images/aztec-1.eps + RELOC/doc/generic/pst-barcode/images/aztec-2.eps + RELOC/doc/generic/pst-barcode/images/aztec-3.eps + RELOC/doc/generic/pst-barcode/images/aztec-4.eps + RELOC/doc/generic/pst-barcode/images/aztec-5.eps + RELOC/doc/generic/pst-barcode/images/aztec-6.eps + RELOC/doc/generic/pst-barcode/images/bc412-1.eps + RELOC/doc/generic/pst-barcode/images/bc412-2.eps + RELOC/doc/generic/pst-barcode/images/bc412-3.eps + RELOC/doc/generic/pst-barcode/images/channelcode-1.eps + RELOC/doc/generic/pst-barcode/images/channelcode-2.eps + RELOC/doc/generic/pst-barcode/images/channelcode-3.eps + RELOC/doc/generic/pst-barcode/images/channelcode-4.eps + RELOC/doc/generic/pst-barcode/images/codabar-1.eps + RELOC/doc/generic/pst-barcode/images/codablockf-1.eps + RELOC/doc/generic/pst-barcode/images/codablockf-2.eps + RELOC/doc/generic/pst-barcode/images/codablockf-3.eps + RELOC/doc/generic/pst-barcode/images/code11-1.eps + RELOC/doc/generic/pst-barcode/images/code128-1.eps + RELOC/doc/generic/pst-barcode/images/code16k-1.eps + RELOC/doc/generic/pst-barcode/images/code16k-2.eps + RELOC/doc/generic/pst-barcode/images/code16k-3.eps + RELOC/doc/generic/pst-barcode/images/code25-1.eps + RELOC/doc/generic/pst-barcode/images/code25-2.eps + RELOC/doc/generic/pst-barcode/images/code32-1.eps + RELOC/doc/generic/pst-barcode/images/code39-1.eps + RELOC/doc/generic/pst-barcode/images/code39-2.eps + RELOC/doc/generic/pst-barcode/images/code39-3.eps + RELOC/doc/generic/pst-barcode/images/code39ext-1.eps + RELOC/doc/generic/pst-barcode/images/code39ext-2.eps + RELOC/doc/generic/pst-barcode/images/code49-1.eps + RELOC/doc/generic/pst-barcode/images/code49-2.eps + RELOC/doc/generic/pst-barcode/images/code49-3.eps + RELOC/doc/generic/pst-barcode/images/code93-1.eps + RELOC/doc/generic/pst-barcode/images/code93-2.eps + RELOC/doc/generic/pst-barcode/images/code93ext-1.eps + RELOC/doc/generic/pst-barcode/images/code93ext-2.eps + RELOC/doc/generic/pst-barcode/images/codeone-1.eps + RELOC/doc/generic/pst-barcode/images/codeone-2.eps + RELOC/doc/generic/pst-barcode/images/codeone-3.eps + RELOC/doc/generic/pst-barcode/images/codeone-4.eps + RELOC/doc/generic/pst-barcode/images/daft-1.eps + RELOC/doc/generic/pst-barcode/images/databarexpanded-1.eps + RELOC/doc/generic/pst-barcode/images/databarexpandedcomposite-1.eps + RELOC/doc/generic/pst-barcode/images/databarexpandedstacked-1.eps + RELOC/doc/generic/pst-barcode/images/databarexpandedstackedcomposite-1.eps + RELOC/doc/generic/pst-barcode/images/databarlimited-1.eps + RELOC/doc/generic/pst-barcode/images/databarlimitedcomposite-1.eps + RELOC/doc/generic/pst-barcode/images/databaromni-1.eps + RELOC/doc/generic/pst-barcode/images/databaromnicomposite-1.eps + RELOC/doc/generic/pst-barcode/images/databarstacked-1.eps + RELOC/doc/generic/pst-barcode/images/databarstackedcomposite-1.eps + RELOC/doc/generic/pst-barcode/images/databarstackedomni-1.eps + RELOC/doc/generic/pst-barcode/images/databarstackedomnicomposite-1.eps + RELOC/doc/generic/pst-barcode/images/databartruncated-1.eps + RELOC/doc/generic/pst-barcode/images/databartruncatedcomposite-1.eps + RELOC/doc/generic/pst-barcode/images/datamatrix-1.eps + RELOC/doc/generic/pst-barcode/images/datamatrix-2.eps + RELOC/doc/generic/pst-barcode/images/datamatrix-3.eps + RELOC/doc/generic/pst-barcode/images/ean128-1.eps + RELOC/doc/generic/pst-barcode/images/ean128-2.eps + RELOC/doc/generic/pst-barcode/images/ean128composite-1.eps + RELOC/doc/generic/pst-barcode/images/ean128composite-2.eps + RELOC/doc/generic/pst-barcode/images/ean13-1.eps + RELOC/doc/generic/pst-barcode/images/ean13-2.eps + RELOC/doc/generic/pst-barcode/images/ean13composite-1.eps + RELOC/doc/generic/pst-barcode/images/ean14-1.eps + RELOC/doc/generic/pst-barcode/images/ean2-1.eps + RELOC/doc/generic/pst-barcode/images/ean5-1.eps + RELOC/doc/generic/pst-barcode/images/ean8-1.eps + RELOC/doc/generic/pst-barcode/images/ean8-2.eps + RELOC/doc/generic/pst-barcode/images/ean8composite-1.eps + RELOC/doc/generic/pst-barcode/images/fima-1.eps + RELOC/doc/generic/pst-barcode/images/fimb-1.eps + RELOC/doc/generic/pst-barcode/images/fimc-1.eps + RELOC/doc/generic/pst-barcode/images/fimd-1.eps + RELOC/doc/generic/pst-barcode/images/flattermarken-1.eps + RELOC/doc/generic/pst-barcode/images/gs1composite-1.eps + RELOC/doc/generic/pst-barcode/images/gs1composite-2.eps + RELOC/doc/generic/pst-barcode/images/gs1composite-3.eps + RELOC/doc/generic/pst-barcode/images/gs1datamatrix-1.eps + RELOC/doc/generic/pst-barcode/images/gs1qrcode-1.eps + RELOC/doc/generic/pst-barcode/images/gs1qrcode-2.eps + RELOC/doc/generic/pst-barcode/images/hanxin-1.eps + RELOC/doc/generic/pst-barcode/images/hibccodablockf-1.eps + RELOC/doc/generic/pst-barcode/images/hibccode128-1.eps + RELOC/doc/generic/pst-barcode/images/hibccode39-1.eps + RELOC/doc/generic/pst-barcode/images/hibcdatamatrix-1.eps + RELOC/doc/generic/pst-barcode/images/hibcmicropdf417-1.eps + RELOC/doc/generic/pst-barcode/images/hibcpdf417-1.eps + RELOC/doc/generic/pst-barcode/images/hibcqrcode-1.eps + RELOC/doc/generic/pst-barcode/images/identcode-1.eps + RELOC/doc/generic/pst-barcode/images/isbn-1.eps + RELOC/doc/generic/pst-barcode/images/isbn-2.eps + RELOC/doc/generic/pst-barcode/images/isbn-3.eps + RELOC/doc/generic/pst-barcode/images/isbn-4.eps + RELOC/doc/generic/pst-barcode/images/ismn-1.eps + RELOC/doc/generic/pst-barcode/images/ismn-2.eps + RELOC/doc/generic/pst-barcode/images/ismn-3.eps + RELOC/doc/generic/pst-barcode/images/issn-1.eps + RELOC/doc/generic/pst-barcode/images/issn-2.eps + RELOC/doc/generic/pst-barcode/images/itf-1.eps + RELOC/doc/generic/pst-barcode/images/itf-14-1.eps + RELOC/doc/generic/pst-barcode/images/itf-2.eps + RELOC/doc/generic/pst-barcode/images/japanpost-1.eps + RELOC/doc/generic/pst-barcode/images/kix-1.eps + RELOC/doc/generic/pst-barcode/images/leitcode-1.eps + RELOC/doc/generic/pst-barcode/images/maxicode-1.eps + RELOC/doc/generic/pst-barcode/images/maxicode-2.eps + RELOC/doc/generic/pst-barcode/images/maxicode-3.eps + RELOC/doc/generic/pst-barcode/images/maxicode-4.eps + RELOC/doc/generic/pst-barcode/images/micropdf417-1.eps + RELOC/doc/generic/pst-barcode/images/micropdf417-2.eps + RELOC/doc/generic/pst-barcode/images/msi-1.eps + RELOC/doc/generic/pst-barcode/images/msi-2.eps + RELOC/doc/generic/pst-barcode/images/msi-3.eps + RELOC/doc/generic/pst-barcode/images/onecode-1.eps + RELOC/doc/generic/pst-barcode/images/optborder.eps + RELOC/doc/generic/pst-barcode/images/optcolorcmyk.eps + RELOC/doc/generic/pst-barcode/images/optcolorrgb.eps + RELOC/doc/generic/pst-barcode/images/optguardpos.eps + RELOC/doc/generic/pst-barcode/images/optguardsize.eps + RELOC/doc/generic/pst-barcode/images/optheight.eps + RELOC/doc/generic/pst-barcode/images/optincludecheck.eps + RELOC/doc/generic/pst-barcode/images/optincludecheckintext.eps + RELOC/doc/generic/pst-barcode/images/optincludetext.eps + RELOC/doc/generic/pst-barcode/images/optinkspread.eps + RELOC/doc/generic/pst-barcode/images/optparse.eps + RELOC/doc/generic/pst-barcode/images/optparsefnc.eps + RELOC/doc/generic/pst-barcode/images/optraw.eps + RELOC/doc/generic/pst-barcode/images/opttextfont.eps + RELOC/doc/generic/pst-barcode/images/optwidth.eps + RELOC/doc/generic/pst-barcode/images/pdf417-1.eps + RELOC/doc/generic/pst-barcode/images/pdf417-2.eps + RELOC/doc/generic/pst-barcode/images/pdf417-3.eps + RELOC/doc/generic/pst-barcode/images/pdf417-4.eps + RELOC/doc/generic/pst-barcode/images/pdf417-5.eps + RELOC/doc/generic/pst-barcode/images/pharmacode-1.eps + RELOC/doc/generic/pst-barcode/images/pharmacode2-1.eps + RELOC/doc/generic/pst-barcode/images/planet-1.eps + RELOC/doc/generic/pst-barcode/images/plessey-1.eps + RELOC/doc/generic/pst-barcode/images/plessey-2.eps + RELOC/doc/generic/pst-barcode/images/plessey-3.eps + RELOC/doc/generic/pst-barcode/images/posicode-1.eps + RELOC/doc/generic/pst-barcode/images/posicode-2.eps + RELOC/doc/generic/pst-barcode/images/posicode-3.eps + RELOC/doc/generic/pst-barcode/images/posicode-4.eps + RELOC/doc/generic/pst-barcode/images/posicode-5.eps + RELOC/doc/generic/pst-barcode/images/posicode-6.eps + RELOC/doc/generic/pst-barcode/images/postnet-1.eps + RELOC/doc/generic/pst-barcode/images/pzn-1.eps + RELOC/doc/generic/pst-barcode/images/pzn-2.eps + RELOC/doc/generic/pst-barcode/images/qrcode-1.eps + RELOC/doc/generic/pst-barcode/images/qrcode-2.eps + RELOC/doc/generic/pst-barcode/images/qrcode-5.eps + RELOC/doc/generic/pst-barcode/images/raw-1.eps + RELOC/doc/generic/pst-barcode/images/resize1.eps + RELOC/doc/generic/pst-barcode/images/resize2.eps + RELOC/doc/generic/pst-barcode/images/resize3.eps + RELOC/doc/generic/pst-barcode/images/rm4scc-1.eps + RELOC/doc/generic/pst-barcode/images/sscc18-1.eps + RELOC/doc/generic/pst-barcode/images/telepen-1.eps + RELOC/doc/generic/pst-barcode/images/telepen-2.eps + RELOC/doc/generic/pst-barcode/images/telepen-3.eps + RELOC/doc/generic/pst-barcode/images/telepen-4.eps + RELOC/doc/generic/pst-barcode/images/telepen-5.eps + RELOC/doc/generic/pst-barcode/images/upca-1.eps + RELOC/doc/generic/pst-barcode/images/upca-2.eps + RELOC/doc/generic/pst-barcode/images/upcacomposite-1.eps + RELOC/doc/generic/pst-barcode/images/upce-1.eps + RELOC/doc/generic/pst-barcode/images/upce-2.eps + RELOC/doc/generic/pst-barcode/images/upcecomposite-1.eps + RELOC/doc/generic/pst-barcode/pst-barcode-doc.bib + RELOC/doc/generic/pst-barcode/pst-barcode-doc.ltx + RELOC/doc/generic/pst-barcode/pst-barcode-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-barcode/pst-barcode-doc.tex +runfiles size=212 + RELOC/dvips/pst-barcode/pst-barcode.pro + RELOC/tex/generic/pst-barcode/pst-barcode.tex + RELOC/tex/latex/pst-barcode/pst-barcode.sty +catalogue-also barcodes barcodes-vulis ean kix qrcode +catalogue-contact-home http://tug.org/PSTricks +catalogue-contact-support http://tug.org/mailman/listinfo/pstricks +catalogue-ctan /graphics/pstricks/contrib/pst-barcode +catalogue-date 2017-08-22 10:58:40 +0200 +catalogue-license lppl +catalogue-topics barcode qrcode pstricks +catalogue-version 0.18 + +name pst-bezier +category Package +revision 41981 +shortdesc Draw Bezier curves +relocated 1 +longdesc The package provides a macro \psbcurve for drawing a Bezier +longdesc curve. Provision is made for full control of over all the +longdesc control points of the curve. +containersize 6256 +containerchecksum e2277175eb2087e13ee0a1100d602730514e1e5bb023d4db7163ba4113f69c9fedf74ff50369298ed970b89425b824cb8619e2cac4be463589edbfd747ccc6c5 +doccontainersize 972072 +doccontainerchecksum 5126769fb89900916a52135af0ba459651083b01db466471cc984b6dc837686cd780bda7c3295b6afe9a7bc85180b3acd95c015084d49f46049adb2fd84b5748 +docfiles size=296 + RELOC/doc/generic/pst-bezier/Changes + RELOC/doc/generic/pst-bezier/README.md details="Readme" + RELOC/doc/generic/pst-bezier/pst-bezier-doc.bib + RELOC/doc/generic/pst-bezier/pst-bezier-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-bezier/pst-bezier-doc.tex +runfiles size=7 + RELOC/dvips/pst-bezier/pst-bezier.pro + RELOC/tex/generic/pst-bezier/pst-bezier.tex + RELOC/tex/latex/pst-bezier/pst-bezier.sty +catalogue-also ebezier +catalogue-ctan /graphics/pstricks/contrib/pst-bezier +catalogue-date 2016-09-03 14:36:12 +0200 +catalogue-license lppl +catalogue-topics graphics-curve pstricks +catalogue-version 0.03 + +name pst-blur +category Package +revision 15878 +shortdesc PSTricks package for "blurred" shadows +relocated 1 +longdesc Pst-blur is a package built for use with PSTricks. It provides +longdesc macros that apply blurring to the normal shadow function of +longdesc PSTricks. +containersize 2248 +containerchecksum 5726819bfa08fbf6e9b5a2c6f93008e468b759a825fef04739a47e756d4b12a99aef604d64618081b1788b5fed9247c75dd3580a899771b148306880341f0444 +doccontainersize 79100 +doccontainerchecksum 5e483141d8f5ad03421d9c7c5feef8baaa3b522385d307022dd617af0889bf57d1cf603a1d519a5d17d8dc918441ca3310d766e4dddb7ed6b8155985186b5e7f +docfiles size=26 + RELOC/doc/generic/pst-blur/Changes + RELOC/doc/generic/pst-blur/README + RELOC/doc/generic/pst-blur/pst-blur.pdf details="Package documentation" +srccontainersize 7156 +srccontainerchecksum 2e7038a248c307c50d29a6171d1b52bc8d6fed76885ebc24480a3f679918fbdbf1e538f783d0f9e3792a3530e51e60da4873c5da0878e66672dbe13fc9b950d6 +srcfiles size=7 + RELOC/source/generic/pst-blur/Makefile + RELOC/source/generic/pst-blur/pst-blur.dtx + RELOC/source/generic/pst-blur/pst-blur.ins +runfiles size=3 + RELOC/dvips/pst-blur/pst-blur.pro + RELOC/tex/generic/pst-blur/pst-blur.tex + RELOC/tex/latex/pst-blur/pst-blur.sty +catalogue-ctan /graphics/pstricks/contrib/pst-blur +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-subpic pstricks +catalogue-version 2.0 + +name pst-bspline +category Package +revision 40685 +shortdesc Draw cubic Bspline curves and interpolations +relocated 1 +longdesc The package draws uniform, cubic B-spline curves, open and +longdesc closed, based on a sequence of B-spline control points. There +longdesc is also code which permits drawing the open or closed cubic +longdesc Bspline curve interpolating a sequence of points. Graphical +longdesc output is created using PStricks. +containersize 8552 +containerchecksum 1f39a02cb0d56b4fcb8ed3a3768b59a9d14ac14769783dfde7108d86a8c6d68d79342df501c60efcfb8aca4c7f97fffecfe4cd0ea0f4fb76e528f696180b6dfc +doccontainersize 161708 +doccontainerchecksum 1f2b8c3f5d85db4215cb11fcd663c33fc1e34e764432a2285f879ec8bf7acb9d09368c6a9910618ee99c3305d701aff5e5d401c227d0c1db9028be3690b5216c +docfiles size=54 + RELOC/doc/generic/pst-bspline/README details="Readme" + RELOC/doc/generic/pst-bspline/pst-bspline-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-bspline/pst-bspline-doc.tex +runfiles size=11 + RELOC/dvips/pst-bspline/pst-bspline.pro + RELOC/tex/generic/pst-bspline/pst-bspline.tex + RELOC/tex/latex/pst-bspline/pst-bspline.sty +catalogue-ctan /graphics/pstricks/contrib/pst-bspline +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics graphics-curve pstricks +catalogue-version 1.62 + +name pst-calculate +category Package +revision 49817 +shortdesc Support for floating point operations at LaTeX level +relocated 1 +longdesc This package provides an interface to the LaTeX3 floating point +longdesc unit (part of expl3), mainly used for PSTricks related packages +longdesc to allow math expressions at LaTeX level. siunitx is used for +longdesc formatting the calculated number. The package also depends on +longdesc xkeyval and xparse. +containersize 1284 +containerchecksum b40a89c1e0152459e9dde468379b1a848955d40b9d9e05223544347d6057affac092a503e6307904e485a81de781eb9455abd948bef7f343359d44abf37f93ea +doccontainersize 33152 +doccontainerchecksum d6e936e7bc53ae3296812b1d33ecf6ae890599cbb9fa6afac719d8ebcca4516772ff6c18f27e8d825ab959d430cbfe8876b2bb97e480bf6464690b28cedfc2bb +docfiles size=15 + RELOC/doc/generic/pst-calculate/Changes + RELOC/doc/generic/pst-calculate/README.md details="Readme" + RELOC/doc/generic/pst-calculate/pst-calculate-doc.bib + RELOC/doc/generic/pst-calculate/pst-calculate-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-calculate/pst-calculate-doc.tex +runfiles size=1 + RELOC/tex/latex/pst-calculate/pst-calculate.sty +catalogue-ctan /macros/latex/contrib/pst-calculate +catalogue-date 2019-01-24 22:40:20 +0100 +catalogue-license lppl1.3 +catalogue-topics calculation +catalogue-version 0.02 + +name pst-calendar +category Package +revision 15878 +shortdesc Plot calendars in "fancy" ways +relocated 1 +longdesc The package uses pstricks and pst-3d to draw tabular calendars, +longdesc or calendars on dodecahedra with a month to each face (the +longdesc package also requires the multido and pst-xkey packages). The +longdesc package works for years 2000-2099, and has options for +longdesc calendars in French German and English, but the documentation +longdesc is not available in English. +containersize 4508 +containerchecksum 541e353dcb33239f2230cd220bf7918051cbeb3bf8386bb9da045199a80decd68760a34f0461bb7e644f0d1545f2712969c79584a813551ee433d3a2bec888d9 +doccontainersize 282188 +doccontainerchecksum 02be7b99bf8fafb00994327e737a5a050601dd141ff4e3482b42dc3c98c9ecd1c62ee64488146e3a7e1017a965ff1cd41b7487acdae65f5c09e259753c2d2ac2 +docfiles size=85 + RELOC/doc/latex/pst-calendar/Changes + RELOC/doc/latex/pst-calendar/README details="Readme" + RELOC/doc/latex/pst-calendar/pst-calendar-docDE.ltx + RELOC/doc/latex/pst-calendar/pst-calendar-docDE.pdf details="German documentation:" language="de" + RELOC/doc/latex/pst-calendar/pst-calendar-docDE.tex + RELOC/doc/latex/pst-calendar/pst-calendar-docFR.pdf details="French documentation:" language="fr" + RELOC/doc/latex/pst-calendar/pst-calendar-docFR.tex +runfiles size=5 + RELOC/tex/latex/pst-calendar/pst-calendar.sty +catalogue-also calendar +catalogue-ctan /graphics/pstricks/contrib/pst-calendar +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics calendar pstricks +catalogue-version 0.47 + +name pst-cie +category Package +revision 49422 +shortdesc CIE color space +relocated 1 +longdesc pst-cie is a PSTricks related package to show the different CIE +longdesc color spaces: Adobe, CIE, ColorMatch, NTSC, Pal-Secam, +longdesc ProPhoto, SMPTE, and sRGB. +containersize 18200 +containerchecksum 4967785a229c9cd316b36357fc94df53e7ebfb216ba5bb222d208a767828aac22184914e2e3744e2726738920dec05f3ed7ab9ce1e30321017f43fa8f52cdce8 +doccontainersize 19771488 +doccontainerchecksum f2554d76fc89d58e4ff61ac5e5635b93775f731e33e384a3113ebcca53c26ae0e4609d1fdfc5f093abb8945bc3f02a77041bce072c29340ff9623a580e0ce352 +docfiles size=5321 + RELOC/doc/generic/pst-cie/Changes + RELOC/doc/generic/pst-cie/README.md details="Readme" + RELOC/doc/generic/pst-cie/pst-cie-doc.bib + RELOC/doc/generic/pst-cie/pst-cie-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-cie/pst-cie-doc.tex +runfiles size=26 + RELOC/dvips/pst-cie/pst-cie.pro + RELOC/tex/generic/pst-cie/pst-cie.tex + RELOC/tex/latex/pst-cie/pst-cie.sty +catalogue-ctan /graphics/pstricks/contrib/pst-cie +catalogue-date 2018-12-16 19:50:20 +0100 +catalogue-license lppl +catalogue-topics pstricks colour +catalogue-version 1.06a + +name pst-circ +category Package +revision 49791 +shortdesc PSTricks package for drawing electric circuits +relocated 1 +longdesc The package is built using PSTricks and in particular pst-node. +longdesc It can easily draw current 2-terminal devices and some 3- and +longdesc 4-terminal devices used in electronic or electric theory. The +longdesc package's macros are designed with a view to 'logical' +longdesc representation of circuits, as far as possible, so as to +longdesc relieve the user of purely graphical considerations when +longdesc expressing a circuit. +containersize 24332 +containerchecksum 608ed7ffdea15309a69d89c6a6107b9b71838e789f14ca78f92922cbb3d5e5929f61e0510b40e5531900099f805ae1d4acb2018984aedde05352c8f210573a77 +doccontainersize 498544 +doccontainerchecksum 575ab4e17abb1433659b60dc87920fe284a12d5cdc98dcd091df372437f165033872c7a7b3f27e17bb27f5a51c2dd4e5a98925e06e54353a8e51b77958b63afa +docfiles size=244 + RELOC/doc/generic/pst-circ/Changes + RELOC/doc/generic/pst-circ/README details="Readme" + RELOC/doc/generic/pst-circ/pst-circ-doc.bib + RELOC/doc/generic/pst-circ/pst-circ-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-circ/pst-circ-doc.tex +runfiles size=56 + RELOC/dvips/pst-circ/pst-circ.pro + RELOC/tex/generic/pst-circ/pst-circ.tex + RELOC/tex/latex/pst-circ/pst-circ.sty +catalogue-ctan /graphics/pstricks/contrib/pst-circ +catalogue-date 2019-01-22 20:02:30 +0100 +catalogue-license lppl +catalogue-topics diagram-circ pstricks +catalogue-version 2.16 + +name pst-coil +category Package +revision 37377 +shortdesc A PSTricks package for coils, etc +relocated 1 +longdesc Pst-coil is a PSTricks based package for coils and zigzags and +longdesc for coil and zigzag node connections. +containersize 3936 +containerchecksum efa265a09857efe93dd3d6aa7f63cbdca456982ccbb4c882dac7c1aff43a6f524e546640d5e293b55e59bd6af582e6d91b503cd7875f8c5ab48491b5b8996e4a +doccontainersize 251024 +doccontainerchecksum e31a5c795f9cf1e21364f63d582465825f46d37c3c849e328dcb19c2a2d7d1336c425a027c02db7c1d0d00da74cb2250feda8f2f70d538561aa93a22bcec5498 +docfiles size=83 + RELOC/doc/generic/pst-coil/Changes + RELOC/doc/generic/pst-coil/README details="Package README" + RELOC/doc/generic/pst-coil/pst-coil-doc.bib + RELOC/doc/generic/pst-coil/pst-coil-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-coil/pst-coil-doc.tex +runfiles size=5 + RELOC/dvips/pst-coil/pst-coil.pro + RELOC/tex/generic/pst-coil/pst-coil.tex + RELOC/tex/latex/pst-coil/pst-coil.sty +catalogue-ctan /graphics/pstricks/contrib/pst-coil +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-use pstricks +catalogue-version 1.07 + +name pst-contourplot +category Package +revision 48230 +shortdesc Draw implicit functions using the "marching squares" algorithm +relocated 1 +longdesc This package allows to draw implicit functions "f(x,y) = 0" +longdesc with options for coloring the inside of the surfaces, for +longdesc marking the points and arrowing the curve at points chosen by +longdesc the user. The package uses the "marching squares" algorithm. +containersize 3624 +containerchecksum 9930e77c3ac5adcd9e3f14c4785a52a79fe5068b5ee239d1c9f052181657d2c5f16b082a8900b9571094ec83b7326be28a567dd39876332e5f68aa6b1c1b7083 +doccontainersize 764392 +doccontainerchecksum 1a52121a22c829c9c5423810f529cbc4cf3e49a805ec4fae123dd795dfc8fc87bebb13653a9d173ca962bba716c8428effa4410e48085af4bb208331e4e89bce +docfiles size=379 + RELOC/doc/generic/pst-contourplot/README details="Readme" + RELOC/doc/generic/pst-contourplot/examples/Les-Ovales-de-Descartes.pdf + RELOC/doc/generic/pst-contourplot/examples/Les-Ovales-de-Descartes.tex + RELOC/doc/generic/pst-contourplot/examples/README details="Readme" + RELOC/doc/generic/pst-contourplot/examples/bourke.pdf + RELOC/doc/generic/pst-contourplot/examples/bourke.tex + RELOC/doc/generic/pst-contourplot/examples/courbe-du-diable.pdf + RELOC/doc/generic/pst-contourplot/examples/courbe-du-diable.tex + RELOC/doc/generic/pst-contourplot/examples/courbes-diverses.tex + RELOC/doc/generic/pst-contourplot/examples/exemples-2.tex + RELOC/doc/generic/pst-contourplot/examples/exemples-3.tex + RELOC/doc/generic/pst-contourplot/examples/exemples-4.tex + RELOC/doc/generic/pst-contourplot/examples/four-dipoles-lignes.tex + RELOC/doc/generic/pst-contourplot/examples/four-dipoles-t.tex + RELOC/doc/generic/pst-contourplot/examples/four-dipoles.tex + RELOC/doc/generic/pst-contourplot/examples/four-leminscates.pdf + RELOC/doc/generic/pst-contourplot/examples/four-leminscates.tex + RELOC/doc/generic/pst-contourplot/examples/hertz.tex + RELOC/doc/generic/pst-contourplot/examples/pavage.tex + RELOC/doc/generic/pst-contourplot/examples/trefoil.tex + RELOC/doc/generic/pst-contourplot/examples/two-metaballs.tex + RELOC/doc/generic/pst-contourplot/pst-contourplot-docEN.pdf details="Package documentation (English)" + RELOC/doc/generic/pst-contourplot/pst-contourplot-docEN.tex + RELOC/doc/generic/pst-contourplot/pst-contourplot-docFR.pdf details="Package documentation (French)" language="fr" + RELOC/doc/generic/pst-contourplot/pst-contourplot-docFR.tex +runfiles size=6 + RELOC/tex/generic/pst-contourplot/pst-contourplot.tex + RELOC/tex/latex/pst-contourplot/pst-contourplot.sty +catalogue-contact-home http://pstricks.blogspot.com +catalogue-ctan /graphics/pstricks/contrib/pst-contourplot +catalogue-date 2018-07-23 05:30:43 +0200 +catalogue-license lppl +catalogue-topics pstricks graphics-plotfn +catalogue-version 0.6 + +name pst-cox +category Package +revision 15878 +shortdesc Drawing regular complex polytopes with PSTricks +relocated 1 +longdesc Pst-cox is a PSTricks package for drawing 2-dimensional +longdesc projections of complex regular polytopes (after the work of +longdesc Coxeter). The package consists of a macro library for drawing +longdesc the projections. The complex polytopes appear in the study of +longdesc the root systems and play a crucial role in many domains +longdesc related to mathematics and physics. These polytopes have been +longdesc completely described by Coxeter in his book "Regular Complex +longdesc Polytopes". There exist only a finite numbers of exceptional +longdesc regular complex polytopes (for example the icosahedron) and +longdesc some infinite series (for example, one can construct a +longdesc multi-dimensional analogue of the hypercube in any finite +longdesc dimension). The library contains two packages. The first, +longdesc pst-coxcoor, is devoted to the exceptional complex regular +longdesc polytopes whose coordinates have been pre-computed. The second, +longdesc pst-coxeterp, is devoted to the infinite series. +containersize 221952 +containerchecksum b7e0e787e5a6d825383a5c06d7aba34e5d7cb12258925b7f0384ec069e873a6652e421f963147648903f6bf063d9592089adee5b043f24dac10e30dc344f0608 +doccontainersize 1069364 +doccontainerchecksum 1de830f83253ef11f092c9ec0e698ff36971c7b6d4237c8eb9f6712bde051b9302d657faa21bf56d34287c838453c611ef1a7c70c09e55ea647bad48ca216e1e +docfiles size=312 + RELOC/doc/generic/pst-cox/README details="Readme" + RELOC/doc/generic/pst-cox/gpl.txt + RELOC/doc/generic/pst-cox/lgpl.txt + RELOC/doc/generic/pst-cox/pst-coxcoor/Gallery.tex + RELOC/doc/generic/pst-cox/pst-coxcoor/pst-coxcoor_doc.pdf details="Documentation for pst-coxcoor" language="en" + RELOC/doc/generic/pst-cox/pst-coxcoor/pst-coxcoor_doc.tex + RELOC/doc/generic/pst-cox/pst-coxeterp/Gallery.tex + RELOC/doc/generic/pst-cox/pst-coxeterp/pst-coxeterp_doc.pdf details="Documentation for pst-coxeterp" language="en" + RELOC/doc/generic/pst-cox/pst-coxeterp/pst-coxeterp_doc.tex +runfiles size=614 + RELOC/dvips/pst-cox/pst-coxeter.pro + RELOC/tex/generic/pst-cox/pst-coxcoor.tex + RELOC/tex/generic/pst-cox/pst-coxeterp.tex + RELOC/tex/latex/pst-cox/pst-coxcoor.sty + RELOC/tex/latex/pst-cox/pst-coxeterp.sty +catalogue-contact-home http://melusine.eu.org/syracuse/pstricks/pst-cox/ +catalogue-ctan /graphics/pstricks/contrib/pst-cox +catalogue-date 2019-02-03 12:25:01 +0100 +catalogue-license lgpl +catalogue-topics physics maths pstricks +catalogue-version 0.98 Beta + +name pst-dart +category Package +revision 46579 +shortdesc Plotting dart boards +relocated 1 +longdesc pst-dart is a PSTricks related package and draws Dart Boards. +longdesc Optional arguments are the unit and the fontsize. +containersize 2156 +containerchecksum f5d41ddf7c5934a00fe8bbbc6dfa468d26e8ac0c06975301f17f31f168c6bf7499dac210f08f815cd01c05eb4a9a376d5c49cd96195a9df56bd3f1156d9ac6b7 +doccontainersize 368236 +doccontainerchecksum 668648d06ab3047e45737908bca5f901b4815f7b7b6745e9bd5387b6867b1fe6dafec3633295e8c164e26cbf06dab2240516a71e3b766a52b9e1ac0e64d1d93c +docfiles size=104 + RELOC/doc/generic/pst-dart/Changes + RELOC/doc/generic/pst-dart/README.md details="Readme" + RELOC/doc/generic/pst-dart/pst-dart-doc.bib + RELOC/doc/generic/pst-dart/pst-dart-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-dart/pst-dart-doc.tex +runfiles size=3 + RELOC/tex/generic/pst-dart/pst-dart.tex + RELOC/tex/latex/pst-dart/pst-dart.sty +catalogue-ctan /graphics/pstricks/contrib/pst-dart +catalogue-date 2018-02-09 21:04:24 +0100 +catalogue-license lppl +catalogue-topics pstricks games +catalogue-version 0.02 + +name pst-dbicons +category Package +revision 17556 +shortdesc Support for drawing ER diagrams +relocated 1 +longdesc The package provides some useful macros in the database area. +longdesc The package focusses on typesetting ER-Diagrams in a +longdesc declarative style, i.e., by positioning some nodes and defining +longdesc the position of all other nodes relative to them by using the +longdesc standard database terminology. The PSTricks package is required +longdesc for using pst-dbicons, but no deep knowledge of PSTricks +longdesc commands is required (although such knowledge is useful for +longdesc exploiting the full functionality of the package). +containersize 3332 +containerchecksum a09ba8f72ecc1b58298b436c47d3922b494337179bdf789468aa3a2236a5e2bd0f9ddd9b491c1a2eb181d08090cc1c6d8c4a0e9e56cb8619a65ce168d7efd355 +doccontainersize 133024 +doccontainerchecksum fc0a74b0ca228ff598f3f88840ad1b87654cd7205afb757e6eb6d98abb0cd56cea0ac3ad7b3464a9a5b09d3d4f3a8489228b19c78edc8ceeb8b10f5d40e18540 +docfiles size=40 + RELOC/doc/generic/pst-dbicons/README details="Package README" + RELOC/doc/generic/pst-dbicons/mondial-ER.tex + RELOC/doc/generic/pst-dbicons/pst-dbicons.pdf details="Package documentation" +srccontainersize 10216 +srccontainerchecksum ad710329d577b7da464028bc0abe684d987a601b6ea68cbbbeafbc6135c3ade2ab124026ba0e1d714984251f800028ffd018863c9bb51aa8fae4b5b7ebff02f9 +srcfiles size=12 + RELOC/source/generic/pst-dbicons/pst-dbicons.drv + RELOC/source/generic/pst-dbicons/pst-dbicons.dtx + RELOC/source/generic/pst-dbicons/pst-dbicons.ins +runfiles size=3 + RELOC/tex/latex/pst-dbicons/pst-dbicons.sty +catalogue-ctan /graphics/pstricks/contrib/pst-dbicons +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics diagram pstricks +catalogue-version 0.16 + +name pst-diffraction +category Package +revision 15878 +shortdesc Print diffraction patterns from various apertures +relocated 1 +longdesc The package enables the user to draw (using PSTricks) the +longdesc diffraction patterns for different geometric forms of apertures +longdesc for monochromatic light (using PSTricks). The aperture stops +longdesc can have rectangular, circular or triangular openings. The view +longdesc of the diffraction may be planar, or three-dimensional. Options +longdesc available are the dimensions of the aperture under +longdesc consideration and of the particular optical setting, e.g. the +longdesc radius in case of an circular opening. Moreover one can choose +longdesc the wavelength of the light (the associated color will be +longdesc calculated by the package). +containersize 5144 +containerchecksum 222e2361650aad3b59f99fffd56aabe3e53a5eddcbb643fb6f970ff9ac52bbebc4274dd02e051f9b24f069e355a081feaf20e735c385d80e3e58d3c72f1bf90a +doccontainersize 1067976 +doccontainerchecksum efecfa760a636a90026bb8dc2c6677bf1f5d8f37fa9103d37f598bde413a136928717cd7bf62bdd7581ae4ce21d34b49a2a9e4dab7397cedf7dbc04884012160 +docfiles size=613 + RELOC/doc/generic/pst-diffraction/Changes + RELOC/doc/generic/pst-diffraction/README details="Readme" + RELOC/doc/generic/pst-diffraction/pst-diffraction-doc.bib + RELOC/doc/generic/pst-diffraction/pst-diffraction-docDE.pdf details="Package documentation (German)" language="de" + RELOC/doc/generic/pst-diffraction/pst-diffraction-docDE.tex + RELOC/doc/generic/pst-diffraction/pst-diffraction-docE.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/pst-diffraction/pst-diffraction-docE.tex + RELOC/doc/generic/pst-diffraction/pst-diffraction-docFR.pdf details="Package documentation (French)" language="fr" + RELOC/doc/generic/pst-diffraction/pst-diffraction-docFR.tex +srccontainersize 868 +srccontainerchecksum f71361329e52730f68aa34811cb04b4abd05a5bfb484fa1a264fa17e7609963c09bfc6242b6e777ffa8ca86cf4e5b2cba2a1af2a89611d8d0f9f0dc942abe862 +srcfiles size=1 + RELOC/source/generic/pst-diffraction/Makefile +runfiles size=6 + RELOC/tex/generic/pst-diffraction/pst-diffraction.tex + RELOC/tex/latex/pst-diffraction/pst-diffraction.sty +catalogue-ctan /graphics/pstricks/contrib/pst-diffraction +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-use pstricks +catalogue-version 2.03 + +name pst-electricfield +category Package +revision 29803 +shortdesc Draw electric field and equipotential lines with PSTricks +relocated 1 +longdesc The package provides macros to plot electric field and +longdesc equipotential lines using PStricks. There may be any number of +longdesc charges which can be placed in a cartesian coordinate system by +longdesc (x,y) values. +containersize 3700 +containerchecksum db9f7474d8290640d960f411574b6dad9f9b705eaf68644e001ebfc5050328673f0c1c31f925c6a2cd2279b9bb7ff89cf8d21e71a99e4b937137af404d046df0 +doccontainersize 5271200 +doccontainerchecksum 9d89a2818a56bed9e3cda9069f91cb49beb0182e0b24474051bb28c4299439a7b5477d09fa1caf23b855226d4d4441e48c9fba4a4dd1cd5eaf044a608876e5ae +docfiles size=2007 + RELOC/doc/generic/pst-electricfield/Changes + RELOC/doc/generic/pst-electricfield/README details="Readme" + RELOC/doc/generic/pst-electricfield/pst-electricfield-doc.bib + RELOC/doc/generic/pst-electricfield/pst-electricfield-docDE.pdf details="Package documentation (German)" language="de" + RELOC/doc/generic/pst-electricfield/pst-electricfield-docDE.tex + RELOC/doc/generic/pst-electricfield/pst-electricfield-docEN.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/pst-electricfield/pst-electricfield-docEN.tex + RELOC/doc/generic/pst-electricfield/pst-electricfield-docFR.pdf details="Package documentation (French)" language="fr" + RELOC/doc/generic/pst-electricfield/pst-electricfield-docFR.tex +srccontainersize 1536 +srccontainerchecksum 89d6b2314db2840f70d99f2f0e66a875b47cc2e653bbd28c80a71eaf6f7d269e647e84b5bbf5ab7349d8a45412b824f9ae7d0c4ce9c4703f82258418b82e8867 +srcfiles size=3 + RELOC/source/generic/pst-electricfield/Makefile + RELOC/source/generic/pst-electricfield/Makefile.latex + RELOC/source/generic/pst-electricfield/Makefile.pst2pdf +runfiles size=4 + RELOC/dvips/pst-electricfield/pst-electricfield.pro + RELOC/tex/generic/pst-electricfield/pst-electricfield.tex + RELOC/tex/latex/pst-electricfield/pst-electricfield.sty +catalogue-ctan /graphics/pstricks/contrib/pst-electricfield +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-use pstricks +catalogue-version 0.14 + +name pst-eps +category Package +revision 15878 +shortdesc Create EPS files from PSTricks figures +relocated 1 +longdesc Pst-eps is a PSTricks-based package for exporting PSTricks +longdesc images 'on the fly' to encapsulated PostScript (EPS) image +longdesc files, which can then be read into a document in the usual way. +containersize 2968 +containerchecksum 90be1124bd22958b0a9cbb45a3b76513e514131c416c98d7f70ca101e7841980c33bd8380e888054cedb873143aad168b0dc25918d9e241f763b9be3ea1a76d6 +doccontainersize 78588 +doccontainerchecksum 70542680c550bc11bef851cfcd12010e17f35dd75adfa390ffadc7b920c2b357594ca514fcdeaafcf1bfcf1b9e622b23c680adbc64ae4787fa96ff94f9a62add +docfiles size=36 + RELOC/doc/generic/pst-eps/Changes + RELOC/doc/generic/pst-eps/README details="Package README" + RELOC/doc/generic/pst-eps/pst-eps-doc.bib + RELOC/doc/generic/pst-eps/pst-eps-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-eps/pst-eps-doc.tex + RELOC/doc/generic/pst-eps/spirale.eps +srccontainersize 816 +srccontainerchecksum 97e2adee4ce93de77d4d46946795565dfa0e0da188fd686bf96917b1220661510c1777fb7d025ac6dfca816bb8575487d45b180e4e35cade21353dcf4a8e5540 +srcfiles size=1 + RELOC/source/generic/pst-eps/Makefile +runfiles size=3 + RELOC/tex/generic/pst-eps/pst-eps.tex + RELOC/tex/latex/pst-eps/pst-eps.sty +catalogue-ctan /graphics/pstricks/contrib/pst-eps +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-prep pstricks +catalogue-version 1.0 + +name pst-eucl +category Package +revision 49900 +shortdesc Euclidian geometry with PSTricks +relocated 1 +longdesc The package allows the drawing of Euclidean geometric figures +longdesc using TeX pstricks macros for specifying mathematical +longdesc constraints. It is thus possible to build point using common +longdesc transformations or intersections. The use of coordinates is +longdesc limited to points which controlled the figure. +containersize 13852 +containerchecksum 55958b5a9fb9ace72f247cde7c811f128ee7ea818d0aea883a3d5e36095a4b59f0bab1d4adb9e6a6ca7b0a8d1a81a47f26f342c6ec63fbfc6ea13533d3fdb6f8 +doccontainersize 353772 +doccontainerchecksum 39adc0e7651614b68875db70e1cff4eaa42d04218a090cc8411b238595e781a7b06a4cc1b9d4e89d439112a4eab3047c4f8f4562a4a696a96897e06b081662d8 +docfiles size=155 + RELOC/doc/generic/pst-eucl/Changes + RELOC/doc/generic/pst-eucl/README details="Readme" + RELOC/doc/generic/pst-eucl/pst-eucl-doc.bib + RELOC/doc/generic/pst-eucl/pst-eucl-doc.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/pst-eucl/pst-eucl-doc.tex +runfiles size=21 + RELOC/dvips/pst-eucl/pst-eucl.pro + RELOC/tex/generic/pst-eucl/pst-eucl.tex + RELOC/tex/latex/pst-eucl/pst-eucl.sty +catalogue-also eukleides tkz-euclide +catalogue-contact-home http://pstricks.tug.org +catalogue-contact-repository http://comedy.dante.de/~herbert/TeXnik/ +catalogue-contact-support http://tug.org/mailman/listinfo/pstricks +catalogue-ctan /graphics/pstricks/contrib/pst-eucl +catalogue-date 2019-01-31 22:06:34 +0100 +catalogue-license lppl +catalogue-topics maths graphics-use pstricks +catalogue-version 1.64 + +name pst-eucl-translation-bg +category Package +revision 19296 +shortdesc Bulgarian translation of the pst-eucl documentation +relocated 1 +longdesc The pst-eucl package documentation in Bulgarian language - +longdesc Euclidean Geometry with PSTricks. +containersize 448 +containerchecksum ba2a7a76db77f4db3a548654e53d587b8f5b3dab9fef56b1f8c2640bcace64237e0bea5129025a07a490a2660ccd019fc5e83e3db504c6cd30b12b19df755f8d +doccontainersize 362324 +doccontainerchecksum 9f6d0153e79a205d0fce5b289fa43317ded0b70abc06139a503b98199584e8cb12b083c8235b6b53ff2a80cf249a4a43cefd3e0b39a9a406c62c1e684bcb35eb +docfiles size=215 + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/abscur.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/abscur_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/angle.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/angle_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/arc.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/arc_in.log + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/arc_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/astro.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/astro_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/bissec.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/bissec_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/ccirc.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/ccirc_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/cercle.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/cercle_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/cinscex.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/cinscex_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/curvetype.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/curvetype_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/cyclo.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/cyclo_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/delto.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/droite.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/droite_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/envcardi.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/envcardi_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/envellipse.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/envellipse_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/euler.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/euler_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/fracthom.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/fracthom_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/gal_biss.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/gal_biss_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/gauss.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/gauss_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/gencur.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/gencur_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/geohyper.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/geohyper_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/geonode.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/geonode_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/german_ra.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/german_ra_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/grav.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/grav_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/homothetie.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/homothetie_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/hyperbole.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/hyperbole_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/hypocyclo.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interCC.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interCC_bis_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interCC_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interDC.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interDC_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interDD.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interDD_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interFC.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interFC_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interFF.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interFF_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interFL.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/interFL_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/mediator.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/mediator_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/milieu.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/milieu_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/oij.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/oij_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/orthocentre.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/orthocentre_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/orthoethyper.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/orthoethyper_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/parabole.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/parabole_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/projection.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/projection_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/ptfermat.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/ptfermat_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/remarq.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/remarq_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/rotation.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/rotation_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/segmentmark.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/segmentmark_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/symcentrale.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/symcentrale_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/symorthogonale.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/symorthogonale_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/tg1c.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/tg1c_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/tg2c.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/tg2c_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/translation.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/translation_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/triangle.tex + RELOC/doc/latex/pst-eucl-translation-bg/Exemples/triangle_in.tex + RELOC/doc/latex/pst-eucl-translation-bg/README details="Readme" language="en" + RELOC/doc/latex/pst-eucl-translation-bg/README-bulgarian.txt details="Readme" language="bg" + RELOC/doc/latex/pst-eucl-translation-bg/euclide_bg.sty + RELOC/doc/latex/pst-eucl-translation-bg/euclide_macros.ist + RELOC/doc/latex/pst-eucl-translation-bg/pst-eucl-docBG.cb + RELOC/doc/latex/pst-eucl-translation-bg/pst-eucl-docBG.pdf details="Package documentation" language="bg" + RELOC/doc/latex/pst-eucl-translation-bg/pst-eucl-docBG.tex +catalogue-also pst-eucl +catalogue-ctan /info/translations/pst-eucl/bulgarian +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics bulgarian maths pstricks translation +catalogue-version 1.3.2 + +name pst-exa +category Package +revision 45289 +shortdesc Typeset PSTricks examples, with code +relocated 1 +longdesc The (PSTricks-related) package provides an environment +longdesc PSTexample to put code and output side by side or one above the +longdesc other. +containersize 3236 +containerchecksum af3bf68bf2401e0bd7023762748180bbedae1a34fa749b02cccd6b498f1f7ed0ca0e929e1b290f9b4f56b7f30718cc602d54b348e23f73c4cfb4d72ea22ffa4c +doccontainersize 63352 +doccontainerchecksum 9f0310ad130ad4693575e33bb2f2deb795a8eb4cc6b3f5fa946095d979ad8a1a348feca0ee5421b4831fd16a1de23608013b69d027b0dd37f782113e7de868bf +docfiles size=26 + RELOC/doc/latex/pst-exa/Changes + RELOC/doc/latex/pst-exa/README details="Readme" + RELOC/doc/latex/pst-exa/pst-exa-doc.bib + RELOC/doc/latex/pst-exa/pst-exa-doc.inc + RELOC/doc/latex/pst-exa/pst-exa-doc.pdf details="Package documentation" + RELOC/doc/latex/pst-exa/pst-exa-doc.tex +runfiles size=3 + RELOC/tex/latex/pst-exa/pst-exa.sty +catalogue-also showexpl +catalogue-ctan /graphics/pstricks/contrib/pst-exa +catalogue-date 2017-09-12 22:35:55 +0200 +catalogue-license lppl +catalogue-topics listing pstricks +catalogue-version 0.06 + +name pst-feyn +category Package +revision 48781 +shortdesc Draw graphical elements for Feynman diagrams +relocated 1 +longdesc pst-feyn is a set of drawing graphical elements which are used +longdesc for Feynman diagrams. The package is based on the macros of the +longdesc old package axodraw but uses the capabilities of PSTricks. +containersize 6228 +containerchecksum c1ac123bac3f92fd92321387be28f519963ab196fde7ead8ed6b4c93ff9fe5cdf07bfee65bef67b9cd70d020adfa99c72592df9be376d69c5dadcb8bd0d6963b +doccontainersize 140408 +doccontainerchecksum e30fc57ace8fb4f0c36fd1a07415e894abe6840592a9a62b9e45c0663281a79532387f5d37136e9cb5e7b27f4c0d7722e6d1a9779e1a57a2fddbd8d0324d1424 +docfiles size=61 + RELOC/doc/generic/pst-feyn/Changes + RELOC/doc/generic/pst-feyn/README.md details="Readme" + RELOC/doc/generic/pst-feyn/data/data0.dat + RELOC/doc/generic/pst-feyn/data/data1.dat + RELOC/doc/generic/pst-feyn/pst-feyn-doc.bib + RELOC/doc/generic/pst-feyn/pst-feyn-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-feyn/pst-feyn-doc.tex +runfiles size=9 + RELOC/dvips/pst-feyn/pst-feyn.pro + RELOC/tex/generic/pst-feyn/pst-feyn.tex + RELOC/tex/latex/pst-feyn/pst-feyn.sty +catalogue-also axodraw2 +catalogue-ctan /graphics/pstricks/contrib/pst-feyn +catalogue-date 2018-09-29 05:20:17 +0200 +catalogue-license lppl +catalogue-topics physics +catalogue-version 0.01 + +name pst-fill +category Package +revision 15878 +shortdesc Fill or tile areas with PSTricks +relocated 1 +longdesc Pst-fill is a PSTricks-based package for filling and tiling +longdesc areas or characters. +containersize 3892 +containerchecksum 69401352ca7e08d6d61ce7ae89f1201f186cec6221ac3b9c2cec61c6033df03b8151ee278ab2edab6a661c49f0867d7f9e764bf45e9dbf32feed655e12239688 +doccontainersize 1121256 +doccontainerchecksum 061dcab012577f3d6e30008c15127f2f70469340598c781a436c0c8b1831d36dfce86a8cd0b802a6f174d3510ee2ed1d9269b4c894793f10d79eaf8b6d0c1ec8 +docfiles size=303 + RELOC/doc/generic/pst-fill/Changes + RELOC/doc/generic/pst-fill/README details="Package README" + RELOC/doc/generic/pst-fill/pst-fill.pdf details="Package documentation" +srccontainersize 20788 +srccontainerchecksum 35540e2a923b28393b68da71fc2c15166ec6e57ebed065dee8e8c9acdd7f10eb5327224e7422851b5a32d895eca29f19755bfda2cf1e0fb569deb473921c6d63 +srcfiles size=20 + RELOC/source/generic/pst-fill/Makefile + RELOC/source/generic/pst-fill/pst-fill.dtx + RELOC/source/generic/pst-fill/pst-fill.ins +runfiles size=5 + RELOC/tex/generic/pst-fill/pst-fill.tex + RELOC/tex/latex/pst-fill/pst-fill.sty +catalogue-ctan /graphics/pstricks/contrib/pst-fill +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-fill-tile pstricks +catalogue-version 1.01 + +name pst-fit +category Package +revision 45109 +shortdesc Macros for curve fitting +relocated 1 +longdesc The package uses PSTricks to fit curves to: Linear Functions; +longdesc Power Functions; exp Function; Log_{10} and Log_e functions; +longdesc Recip; Kings Law data; Gaussian; and 4th order Polynomial +containersize 8004 +containerchecksum ede8c3503963f44d65caf46975cebdad296576742a771243914b49c6d802deb2f24e816dde7fd9a4bea7fa0c39965693575676ebeb648da099d88ee50bdacb8b +doccontainersize 79172 +doccontainerchecksum c8619c7c98cd42884637de98c88d916e18db273371fd64090d5e9789570153b2508f0adb90fbec9c5184f6ef1ab24559b04daccf8dae7c5f65453044b9bfb73e +docfiles size=32 + RELOC/doc/generic/pst-fit/Changes + RELOC/doc/generic/pst-fit/README details="Readme" + RELOC/doc/generic/pst-fit/pst-fit-doc.bib + RELOC/doc/generic/pst-fit/pst-fit-doc.data + RELOC/doc/generic/pst-fit/pst-fit-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-fit/pst-fit-doc.tex +runfiles size=10 + RELOC/tex/generic/pst-fit/pst-fit.tex + RELOC/tex/latex/pst-fit/pst-fit.sty +catalogue-ctan /graphics/pstricks/contrib/pst-fit +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl +catalogue-topics graphics-supp +catalogue-version 0.02 + +name pst-fr3d +category Package +revision 15878 +shortdesc Draw 3-dimensional framed boxes using PSTricks +relocated 1 +longdesc A package using PSTricks to draw three dimensional framed boxes +longdesc using a macro \PstFrameBoxThreeD. The macro is especially +longdesc useful for drawing 3d-seeming buttons. +containersize 2132 +containerchecksum ccd418ac7ac5ee1885cd2b7008e867c08cc0fc13fa97e264377446d301cef1caa82b8552731a4c7d3131f0e2ddaa0267276d5b1726998a0be2f149ac67bbffcd +doccontainersize 171192 +doccontainerchecksum 48c559c27999b06d63ab5c33c9779d0902e05c80c51ba9225f0def724e02892557deda44add976bd5fb73403bbc2615854ef9ea398b830357f0fa5be12702e74 +docfiles size=50 + RELOC/doc/generic/pst-fr3d/Changes + RELOC/doc/generic/pst-fr3d/README details="Readme" + RELOC/doc/generic/pst-fr3d/pst-fr3d.pdf details="Package documentation" +srccontainersize 7608 +srccontainerchecksum 7fde5941ebf78da6f5142d07963aba36f2c298e46c2125f5ec210830f5f3694b3b1a8bd4b342b6065fdefcce1e5807321f379d030b0950d3ca5dcad30ed2ae3e +srcfiles size=9 + RELOC/source/generic/pst-fr3d/pst-fr3d.dtx + RELOC/source/generic/pst-fr3d/pst-fr3d.ins +runfiles size=3 + RELOC/tex/generic/pst-fr3d/pst-fr3d.tex + RELOC/tex/latex/pst-fr3d/pst-fr3d.sty +catalogue-ctan /graphics/pstricks/contrib/pst-fr3d +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics boxing graphics-3d pstricks +catalogue-version 1.10 + +name pst-fractal +category Package +revision 49295 +shortdesc Draw fractal sets using PSTricks +relocated 1 +longdesc The package uses PSTricks to draw the Julia and Mandelbrot +longdesc sets, the Sierpinski triangle, Koch flake, and Apollonius +longdesc Circle as well as fractal trees (which need not be balanced) +longdesc with a variety of different parameters (including varying +longdesc numbers of iterations). The package uses the pst-xkey package, +longdesc part of the xkeyval distribution. +containersize 10424 +containerchecksum 96f38a81d57046ebb50e90cd7c06191483eefa8234ea73f706e6086a3f0723b3ecaeb0157b31c1364717c5f0643ead9fe94f9cf8fac8a8b27e0a3b81d3dee048 +doccontainersize 21902724 +doccontainerchecksum 4c3793e65415b2fc394fc46c23d6a912c9288e77fa2f08e5d7a97de6beabfe2efd323f13b0f2bedd1bc52bfade476abc0f8edae38108de6419e6d4b3c854f82b +docfiles size=7816 + RELOC/doc/generic/pst-fractal/Changes + RELOC/doc/generic/pst-fractal/README details="Readme" + RELOC/doc/generic/pst-fractal/pst-fractal-doc.bib + RELOC/doc/generic/pst-fractal/pst-fractal-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-fractal/pst-fractal-doc.tex +runfiles size=13 + RELOC/dvips/pst-fractal/pst-fractal.pro + RELOC/tex/generic/pst-fractal/pst-fractal.tex + RELOC/tex/latex/pst-fractal/pst-fractal.sty +catalogue-ctan /graphics/pstricks/contrib/pst-fractal +catalogue-date 2018-11-30 23:09:54 +0100 +catalogue-license lppl +catalogue-topics graphics-use pstricks +catalogue-version 0.10 + +name pst-fun +category Package +revision 17909 +shortdesc Draw "funny" objects with PSTricks +relocated 1 +longdesc This is a PSTricks related package for drawing funny objects, +longdesc like ant, bird, fish, kangaroo, ... Such objects may be useful +longdesc for testing other PSTricks macros and/or packages. (Or they can +longdesc be used for fun...) +containersize 24440 +containerchecksum 68d0c52bb40354a72b2eb14d2c10a18266badedd452a57e4c2a9aaad343b94f5c13f89853962e85c94ebed9274e87c44cc4ac1fd0203ec54097f71e5c4a15fdb +doccontainersize 380444 +doccontainerchecksum b4f498e3f9d97be8fb8918abe5139d431656b52ac592ce9f3155c6dc7afcea17e51996dbb275968950dfae179b336ef923b2d88efb4b77506c64b5c775920d38 +docfiles size=105 + RELOC/doc/generic/pst-fun/Changes + RELOC/doc/generic/pst-fun/README details="Readme" + RELOC/doc/generic/pst-fun/pst-fun-doc.bib + RELOC/doc/generic/pst-fun/pst-fun-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-fun/pst-fun-doc.tex +srccontainersize 932 +srccontainerchecksum 4cdd6ea161216ee5d8be410b96749ae52d212e75691de0a9012ee6f0b5044d14c5be4e8615a6bc3b3b22f8a8fa99a75977fb264730ae64218b20898444793dd7 +srcfiles size=1 + RELOC/source/generic/pst-fun/Makefile +runfiles size=22 + RELOC/dvips/pst-fun/pst-fun.pro + RELOC/tex/generic/pst-fun/pst-fun.tex + RELOC/tex/latex/pst-fun/pst-fun.sty +catalogue-ctan /graphics/pstricks/contrib/pst-fun +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics frivolous pstricks +catalogue-version 0.04 + +name pst-func +category Package +revision 51149 +shortdesc PSTricks package for plotting mathematical functions +relocated 1 +longdesc The package is built for use with PSTricks. It provides macros +longdesc for plotting and manipulating various mathematical functions: +longdesc polynomials and their derivatives +longdesc f(x)=an*x^n+an-1*x^(n-1)+...+a0 defined by the coefficients a0 +longdesc a1 a2 ... and the derivative order; the Fourier sum f(x) = +longdesc a0/2+a1cos(omega x)+...+b1sin(omega x)+... defined by the +longdesc coefficients a0 a1 a2 ... b1 b2 b3 ...; the Bessel function +longdesc defined by its order; the Gauss function defined by sigma and +longdesc mu; Bezier curves from order 1 (two control points) to order 9 +longdesc (10 control points); the superellipse function (the Lame +longdesc curve); Chebyshev polynomials of the first and second kind; the +longdesc Thomae (or popcorn) function; the Weierstrass function; various +longdesc integration-derived functions; normal, binomial, poisson, +longdesc gamma, chi-squared, student's t, F, beta, Cauchy and Weibull +longdesc distribution functions and the Lorenz curve; the zeroes of a +longdesc function, or the intermediate point of two functions; the +longdesc Vasicek function for describing the evolution of interest +longdesc rates; and implicit functions. The plots may be generated as +longdesc volumes of rotation about the X-axis, as well. +containersize 18464 +containerchecksum 77349856b50aedfb4ebe05b2e3747b2bf98715201930ac374783172f0688c723405c069436459598744c681a5d8f42aa7d14bfe41adadcff69b6bf0e45d2df94 +doccontainersize 3445792 +doccontainerchecksum 91acb2009228f42b79a85a4d343f484066ee9b930ab6e7acde69d796bd54185ad8d979b3fcfd72127203e91afddf3720a627895567e769378fdf0069f9cb8f87 +docfiles size=1006 + RELOC/doc/generic/pst-func/Changes + RELOC/doc/generic/pst-func/README.md details="Package README" + RELOC/doc/generic/pst-func/pst-func-doc.bib + RELOC/doc/generic/pst-func/pst-func-doc.data + RELOC/doc/generic/pst-func/pst-func-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-func/pst-func-doc.tex +runfiles size=23 + RELOC/dvips/pst-func/pst-func.pro + RELOC/tex/generic/pst-func/pst-func.tex + RELOC/tex/latex/pst-func/pst-func.sty +catalogue-contact-home http://pstricks.tug.org +catalogue-contact-repository http://comedy.dante.de/~herbert/TeXnik/ +catalogue-contact-support http://tug.org/mailman/listinfo/pstricks +catalogue-ctan /graphics/pstricks/contrib/pst-func +catalogue-date 2019-05-17 10:09:33 +0200 +catalogue-license lppl +catalogue-topics maths graphics-plotfn graphics-use pstricks +catalogue-version 0.93 + +name pst-gantt +category Package +revision 35832 +shortdesc Draw GANTT charts with PSTricks +relocated 1 +longdesc The package uses PSTricks to draw GANTT charts, which are a +longdesc kind of bar chart that displays a project schedule. The package +longdesc requires the pstricks apparatus, of course. +containersize 2716 +containerchecksum 61b59f922129de60bf954145a0c83a5bb4c0232270b8213b45856a69ca56f32a9525d70ba86e51f95fa1c8836d4922a0dec971dea16f13f0c2f83c80fbfefc56 +doccontainersize 87420 +doccontainerchecksum 950a55218077d7203988c42c83445bfb10f53c7292cb85bb4178ab20b9f1404ab4a864266e52c3af074c45cc27b6777dae71af41caf270143160d3d59e222731 +docfiles size=35 + RELOC/doc/generic/pst-gantt/Changes + RELOC/doc/generic/pst-gantt/README details="Readme" + RELOC/doc/generic/pst-gantt/pst-gantt-doc.bib + RELOC/doc/generic/pst-gantt/pst-gantt-doc.pdf details="Brief documentation, with examples" + RELOC/doc/generic/pst-gantt/pst-gantt-doc.tex +runfiles size=3 + RELOC/tex/generic/pst-gantt/pst-gantt.tex + RELOC/tex/latex/pst-gantt/pst-gantt.sty +catalogue-ctan /graphics/pstricks/contrib/pst-gantt +catalogue-date 2018-09-15 12:42:06 +0200 +catalogue-license lppl +catalogue-topics diagram gantt pstricks +catalogue-version 0.22a + +name pst-geo +category Package +revision 46273 +shortdesc Geographical Projections +relocated 1 +longdesc The package offers a set of PSTricks related packages for +longdesc various cartographic projections of the terrestrial sphere. The +longdesc package pst-map2d provides conventional projections such as +longdesc Mercator, Lambert, cylindrical, etc. The package pst-map3d +longdesc treats representation in three dimensions of the terrestrial +longdesc sphere. Packages pst-map2dII and pst-map3dII allow use of the +longdesc CIA World DataBank II. Various parameters of the packages allow +longdesc for choice of the level of the detail and the layouts possible +longdesc (cities, borders, rivers etc). Substantial data files are +longdesc provided, in an (internally) compressed format. Decompression +longdesc happens on-the-fly as a document using the data is displayed, +longdesc printed or converted to PDF format. A Perl script is provided +longdesc for the user to do the decompression, if the need should arise. +containersize 24297428 +containerchecksum 2b559409de635cd04e9b128bf44ef5f92ee765d4ccaf2132e3014d9a75ee61867de1724de2c36752bcc600014767f058c3799a5387aa4029268d5fa9dff4e0e9 +doccontainersize 63308472 +doccontainerchecksum 762140a38d7f39875d2d4d25aff57187d32daf017d5be19f7fde14c482d9128c4b2e911f67446cd47a28cd655ebcffe485dc4b6326d41bf3b0693072647cac0e +docfiles size=15522 + RELOC/doc/generic/pst-geo/Changes + RELOC/doc/generic/pst-geo/README details="Readme" + RELOC/doc/generic/pst-geo/examples/Africa.tex + RELOC/doc/generic/pst-geo/examples/Animate0.tex + RELOC/doc/generic/pst-geo/examples/Animate1.tex + RELOC/doc/generic/pst-geo/examples/Animate2.tex + RELOC/doc/generic/pst-geo/examples/AntarticaII.tex + RELOC/doc/generic/pst-geo/examples/AsiaII.tex + RELOC/doc/generic/pst-geo/examples/Berlin.tex + RELOC/doc/generic/pst-geo/examples/D-Karte-3dJG.tex + RELOC/doc/generic/pst-geo/examples/D-karte-3d.tex + RELOC/doc/generic/pst-geo/examples/DANTE.tex + RELOC/doc/generic/pst-geo/examples/Europa.tex + RELOC/doc/generic/pst-geo/examples/EuropeII.tex + RELOC/doc/generic/pst-geo/examples/Greek.tex + RELOC/doc/generic/pst-geo/pst-geo-compress.pl + RELOC/doc/generic/pst-geo/pst-geo-decompress.pl + RELOC/doc/generic/pst-geo/pst-geo-doc.bib + RELOC/doc/generic/pst-geo/pst-geo-doc.pdf details="Documentation" + RELOC/doc/generic/pst-geo/pst-geo-doc.tex +runfiles size=6064 + RELOC/dvips/pst-geo/pst-geo.pro + RELOC/tex/generic/pst-geo/data/README + RELOC/tex/generic/pst-geo/data/Staedte3dJG.tex + RELOC/tex/generic/pst-geo/data/africa-bdy_II.dat + RELOC/tex/generic/pst-geo/data/africa-cil_II.dat + RELOC/tex/generic/pst-geo/data/africa-riv_II.dat + RELOC/tex/generic/pst-geo/data/asia-bdy_II.dat + RELOC/tex/generic/pst-geo/data/asia-cil_II.dat + RELOC/tex/generic/pst-geo/data/asia-isl_II.dat + RELOC/tex/generic/pst-geo/data/asia-riv_II.dat + RELOC/tex/generic/pst-geo/data/aus.dat + RELOC/tex/generic/pst-geo/data/c-cap.dat + RELOC/tex/generic/pst-geo/data/c-sub.dat + RELOC/tex/generic/pst-geo/data/canada.dat + RELOC/tex/generic/pst-geo/data/capitals.dat + RELOC/tex/generic/pst-geo/data/capitals.tex + RELOC/tex/generic/pst-geo/data/capitals3d.tex + RELOC/tex/generic/pst-geo/data/cities.data + RELOC/tex/generic/pst-geo/data/cities.tex + RELOC/tex/generic/pst-geo/data/citycapitals.dat + RELOC/tex/generic/pst-geo/data/citysub.dat + RELOC/tex/generic/pst-geo/data/convert.py + RELOC/tex/generic/pst-geo/data/corse.dat + RELOC/tex/generic/pst-geo/data/europe-bdy_II.dat + RELOC/tex/generic/pst-geo/data/europe-cil_II.dat + RELOC/tex/generic/pst-geo/data/europe-riv_II.dat + RELOC/tex/generic/pst-geo/data/france.dat + RELOC/tex/generic/pst-geo/data/germany.dat + RELOC/tex/generic/pst-geo/data/mexico.dat + RELOC/tex/generic/pst-geo/data/northamerica-bdy_II.dat + RELOC/tex/generic/pst-geo/data/northamerica-cil_II.dat + RELOC/tex/generic/pst-geo/data/northamerica-pby_II.dat + RELOC/tex/generic/pst-geo/data/northamerica-riv_II.dat + RELOC/tex/generic/pst-geo/data/pborder.dat + RELOC/tex/generic/pst-geo/data/pcoast.dat + RELOC/tex/generic/pst-geo/data/pisland.dat + RELOC/tex/generic/pst-geo/data/plake.dat + RELOC/tex/generic/pst-geo/data/rhone.dat + RELOC/tex/generic/pst-geo/data/ridge.dat + RELOC/tex/generic/pst-geo/data/river.dat + RELOC/tex/generic/pst-geo/data/seine.dat + RELOC/tex/generic/pst-geo/data/southamerica-arc_II.dat + RELOC/tex/generic/pst-geo/data/southamerica-bdy_II.dat + RELOC/tex/generic/pst-geo/data/southamerica-cil_II.dat + RELOC/tex/generic/pst-geo/data/southamerica-riv_II.dat + RELOC/tex/generic/pst-geo/data/transfrm.dat + RELOC/tex/generic/pst-geo/data/trench.dat + RELOC/tex/generic/pst-geo/data/usa.dat + RELOC/tex/generic/pst-geo/data/villesFrance.tex + RELOC/tex/generic/pst-geo/data/villesFrance3d.tex + RELOC/tex/generic/pst-geo/data/villesItalia.tex + RELOC/tex/generic/pst-geo/data/villesItalia3d.tex + RELOC/tex/generic/pst-geo/data/wfraczon.dat + RELOC/tex/generic/pst-geo/data/wmaglin.dat + RELOC/tex/generic/pst-geo/pst-geo.tex + RELOC/tex/latex/pst-geo/pst-geo.sty +catalogue-ctan /graphics/pstricks/contrib/pst-geo +catalogue-date 2016-12-13 16:37:23 +0100 +catalogue-license lppl +catalogue-topics cartography pstricks +catalogue-version 0.06 + +name pst-geometrictools +category Package +revision 45319 +shortdesc A PSTricks package to draw geometric tools +relocated 1 +longdesc This PSTricks package facilitates the drawing of protractors, +longdesc rulers, compasses and pencils. +containersize 7328 +containerchecksum 1949864f97f21c6cd2a0e706028d5a0ecb4102c0afc5874b78c2bf883aa6698551214ac232f406bad9955e0f0a78f059118a4d950bc4b69bd30ecf9b6fc38606 +doccontainersize 405320 +doccontainerchecksum adf2ae63d32d2cecf77c2aa950c8b827b51d0ae923dfbed7c851f0f0e7d6018216d92cf524b2cb4002c4040dbb579cff552a37cd5ef57cd2d0579b01128a3be6 +docfiles size=130 + RELOC/doc/generic/pst-geometrictools/Changes.txt + RELOC/doc/generic/pst-geometrictools/README.md details="Readme" + RELOC/doc/generic/pst-geometrictools/pst-geometrictools-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-geometrictools/pst-geometrictools-doc.tex + RELOC/doc/generic/pst-geometrictools/pst-geometrictools-fr-doc.pdf details="Package documentation (French)" language="fr" + RELOC/doc/generic/pst-geometrictools/pst-geometrictools-fr-doc.tex +runfiles size=14 + RELOC/tex/generic/pst-geometrictools/pst-geometrictools.tex + RELOC/tex/latex/pst-geometrictools/pst-geometrictools.sty +catalogue-ctan /graphics/pstricks/contrib/pst-geometrictools +catalogue-date 2017-09-16 20:46:27 +0200 +catalogue-license lppl1.3c +catalogue-topics pstricks maths graphics-use +catalogue-version 1.1 + +name pst-ghsb +category Package +revision 45797 +shortdesc HSB gradients via PSTricks +relocated 1 +longdesc Usage modeled on pst-grad; superseded by pst-slpe. +containersize 2668 +containerchecksum 3bb85212ac247b5d6ddabf8d98f7ff5621b78ae2b83b08c00ce7c2831f6f6ec4d621a4e5f2ad00e2b5d8883f95aed579f0d17a5525c9df5ef9939528ec736325 +doccontainersize 86856 +doccontainerchecksum cfe4f9f8b24fbdbf22280b098c32c1b9b368fd6f74cd20c1ee7b241bf3a9afba822fda33b9c9365cb9c20c76ca658123039eb27828361d74e4a31fc8e170a6bf +docfiles size=26 + RELOC/doc/generic/pst-ghsb/README + RELOC/doc/generic/pst-ghsb/t-ghsb.pdf + RELOC/doc/generic/pst-ghsb/t-ghsb.tex + RELOC/doc/generic/pst-ghsb/t2-ghsb.pdf + RELOC/doc/generic/pst-ghsb/t2-ghsb.tex +runfiles size=4 + RELOC/dvips/pst-ghsb/pst-ghsb.pro + RELOC/tex/generic/pst-ghsb/pst-ghsb.tex + RELOC/tex/latex/pst-ghsb/pst-ghsb.sty + +name pst-gr3d +category Package +revision 15878 +shortdesc Three dimensional grids with PSTricks +relocated 1 +longdesc This PSTricks package provides a command \PstGridThreeD that +longdesc will draw a three dimensional grid, offering a number of +longdesc options for its appearance. +containersize 2500 +containerchecksum 85cbaa41c3cce49aeda36ef55a89122370fc23dc91c5e5e63790aff2b8b748eb6a13a9a921836b2a471ab2deb9577ecf59be0bc6dfa4d2f1ddcf17bc33ca4264 +doccontainersize 157396 +doccontainerchecksum bd9026c7730dce9c09a092cc420fa7ca8d7c85db4a1f9a665a64f933595b43397027904c08311ab2301305f79a426a1b726b8df2c237c8a545726fadf9b8ed30 +docfiles size=48 + RELOC/doc/generic/pst-gr3d/Changes + RELOC/doc/generic/pst-gr3d/README details="Readme" + RELOC/doc/generic/pst-gr3d/pst-gr3d.pdf details="Package documentation" +srccontainersize 8788 +srccontainerchecksum ce6786ec803ceeb33fd42d2d786d119ec2f604c1d4b4f7a51c6e9ce9e4171f01fff33b66b234a5af854e5bee24f23bb50abb898ab89c568150a50ffd8ff7d582 +srcfiles size=9 + RELOC/source/latex/pst-gr3d/pst-gr3d.dtx + RELOC/source/latex/pst-gr3d/pst-gr3d.ins +runfiles size=3 + RELOC/tex/generic/pst-gr3d/pst-gr3d.tex + RELOC/tex/latex/pst-gr3d/pst-gr3d.sty +catalogue-ctan /graphics/pstricks/contrib/pst-gr3d +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics typeset-grid graphics-3d pstricks +catalogue-version 1.34 + +name pst-grad +category Package +revision 15878 +shortdesc Filling with colour gradients, using PSTricks +relocated 1 +longdesc The package fills with colour gradients, using PSTricks. The +longdesc RGB, CMYK and HSB models are supported. Other colour gradient +longdesc mechanisms are to be found in package pst-slpe. +containersize 3796 +containerchecksum f98fe4e4996e20947d90ef24d6825d72a8ceb6bbd586b0de9b90d5d73208816395e5b195dcda2816c8e709fa4c408f3b814c02911488c83a207039d28654b9e3 +doccontainersize 215188 +doccontainerchecksum 11f4a4de67f92bb2ba77457b5940e2b848985de111e3307215981e6d39617b8590316de5cb6e5002748d9e951be405e3f938d1708c28a7970be53808688c10ef +docfiles size=69 + RELOC/doc/generic/pst-grad/Changes + RELOC/doc/generic/pst-grad/pst-grad-doc.bib + RELOC/doc/generic/pst-grad/pst-grad-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-grad/pst-grad-doc.tex +runfiles size=5 + RELOC/dvips/pst-grad/pst-grad.pro + RELOC/tex/generic/pst-grad/pst-grad.tex + RELOC/tex/latex/pst-grad/pst-grad.sty +catalogue-ctan /graphics/pstricks/contrib/pst-grad +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics colour pstricks +catalogue-version 1.06 + +name pst-graphicx +category Package +revision 21717 +shortdesc A PSTricks-compatible graphicx for use with Plain TeX +relocated 1 +longdesc The package provides a version of graphicx that avoids loading +longdesc the graphics bundle's (original) keyval package, which clashes +longdesc with pstricks' use of xkeyval. +containersize 1112 +containerchecksum 0d3f2d072a7bbb58ff555add4df7347a4dcba929bfba49d25dbf6b95956462a3fda07818135fe40f737151f323a27225983f656389f9a91a8295145ebf2877a1 +doccontainersize 752 +doccontainerchecksum 8deba57cafa74987ff7dd22b52db699fef2067dfb62e8e2c7e8e17b662f1d7644278272ee97209b3c109345ae8c295e125d1b195ff68cdfa8362eb3b7ad1bc84 +docfiles size=3 + RELOC/doc/generic/pst-graphicx/Changes + RELOC/doc/generic/pst-graphicx/README details="Readme" + RELOC/doc/generic/pst-graphicx/demo.tex +runfiles size=1 + RELOC/tex/generic/pst-graphicx/pst-graphicx.tex +catalogue-ctan /graphics/pstricks/contrib/pst-graphicx +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-incl +catalogue-version 0.02 + +name pst-infixplot +category Package +revision 15878 +shortdesc Using PSTricks plotting capacities with infix expressions rather than RPN +relocated 1 +longdesc Plotting functions with pst-plot is very powerful but sometimes +longdesc difficult to learn since the syntax of \psplot and +longdesc \parametricplot requires some PostScript knowledge. The +longdesc infix-RPN and pst-infixplot styles simplify the usage of +longdesc pst-plot for the beginner, providing macro commands that +longdesc convert natural mathematical expressions to PostScript syntax. +containersize 3340 +containerchecksum a8e69a4bc20752d5f6d455f34fc4810e569a5f444de257c1b50c76d567a23d868b0e19c9f4656370a12d3a53ef35ad43e7dcc946782c19ef76091634bc2440a0 +doccontainersize 155392 +doccontainerchecksum 0b6958f851af834917ab04f39bf60d50e26eb61ea52c9dee91274714ec0a87519323b1f9ef7d665f0a6d05cc97e6f8b1bf51617f2c57a5d80ebb96ba1aa94306 +docfiles size=84 + RELOC/doc/generic/pst-infixplot/README details="Readme" + RELOC/doc/generic/pst-infixplot/pst-infixplot-doc.ps + RELOC/doc/generic/pst-infixplot/pst-infixplot-doc.tex + RELOC/doc/generic/pst-infixplot/pst-infixplot.pdf details="Package documentation" +runfiles size=7 + RELOC/tex/generic/pst-infixplot/infix-RPN.tex + RELOC/tex/generic/pst-infixplot/pst-infixplot.tex + RELOC/tex/latex/pst-infixplot/infix-RPN.sty + RELOC/tex/latex/pst-infixplot/pst-infixplot.sty +catalogue-ctan /graphics/pstricks/contrib/pst-infixplot +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-plot pstricks +catalogue-version 0.11 + +name pst-intersect +category Package +revision 33210 +shortdesc Compute intersections of arbitrary curves +relocated 1 +longdesc The package computes the intersections between arbitrary +longdesc PostScript paths or Bezier curves, using the Bezier clipping +longdesc algorithm. +containersize 9820 +containerchecksum 847a2532362e570d3e14ac4aadedf0cf1ac0f2da1991837abcb6cbfa607357d8a451d852bec9be50ea8b2995716613475c4c1ea1c3766169902eb82e70aaba0c +doccontainersize 165404 +doccontainerchecksum e8775b9d8adbab9e7ce63d595cb70747dc3d850c4b43095e1a35f6be8093b61ec92457c7fcf6565484e62b1aa7bec82700d8ccb2dc8dca0089e56bc8be5e762a +docfiles size=60 + RELOC/doc/latex/pst-intersect/Changes + RELOC/doc/latex/pst-intersect/README details="Readme" + RELOC/doc/latex/pst-intersect/pst-intersect-DE.pdf details="Package documentation" language="de" + RELOC/doc/latex/pst-intersect/pst-intersect.pdf details="Package documentation" language="en" +srccontainersize 27412 +srccontainerchecksum 87bbc6bb4d4b43d6c1e93e89d7d96c5f9941187181eb93814110e3930255d6ac6c95d81a53a6ed440f6bd4fd8c38725e4cf5763467722465cf941c4cc16b5841 +srcfiles size=29 + RELOC/source/latex/pst-intersect/Makefile + RELOC/source/latex/pst-intersect/pst-intersect.dtx + RELOC/source/latex/pst-intersect/pst-intersect.ins +runfiles size=12 + RELOC/dvips/pst-intersect/pst-intersect.pro + RELOC/tex/generic/pst-intersect/pst-intersect.tex + RELOC/tex/latex/pst-intersect/pst-intersect.sty +catalogue-contact-repository https://github.com/cbersch/pst-intersect +catalogue-ctan /graphics/pstricks/contrib/pst-intersect +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl +catalogue-topics graphics-supp pstricks +catalogue-version 0.4 + +name pst-jtree +category Package +revision 20946 +shortdesc Typeset complex trees for linguists +relocated 1 +longdesc jTree uses PSTricks to enable linguists to typeset complex +longdesc trees. The package requires use of PStricks (of course) and +longdesc xkeyval packages. jTree is a development of, and replacement +longdesc for, the jftree package, which is no longer available. +containersize 6296 +containerchecksum 9947e00e7fdac25f25f1f828ff5b9a3b962b1d033c57232d2d47736ee7a675ee48367aa934153ec17ae3f2eaa763044dc067d83b2248c5f42a93eb5d9a79e292 +doccontainersize 304048 +doccontainerchecksum 4d0a2432e9880a71f1d7b6a9965dfacbebeb44ea2586fd428fa58f634d7670d763e9ac293aeec6adda6cdef98736a7b5d341ec41d89bf3999c4cfee9066001ae +docfiles size=89 + RELOC/doc/generic/pst-jtree/Doc-source.zip + RELOC/doc/generic/pst-jtree/README + RELOC/doc/generic/pst-jtree/pst-jtree-doc-add.pdf + RELOC/doc/generic/pst-jtree/pst-jtree-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-jtree/pst-jtree-examples.tex +runfiles size=7 + RELOC/tex/generic/pst-jtree/pst-jtree.tex + RELOC/tex/latex/pst-jtree/pst-jtree.sty +catalogue-ctan /graphics/pstricks/contrib/pst-jtree +catalogue-date 2018-09-15 12:44:08 +0200 +catalogue-license lppl1.3 +catalogue-topics linguistic tree pstricks +catalogue-version 2.6 + +name pst-knot +category Package +revision 16033 +shortdesc PSTricks package for displaying knots +relocated 1 +longdesc The package can produce a fair range of knot shapes, with all +longdesc the standard graphics controls one expects. +containersize 14940 +containerchecksum f481b82e5d21dd86eef3cf64ecedc45420b33e43619574f072a050fd70a6446ef8d527607ed5a929443ff6976cc94a03817837c8776bb2ee9794fec80a4c0751 +doccontainersize 53744 +doccontainerchecksum a8a82ce955b707c6ecb319783cdc4fc8406411dc8d711321919413d84ca42197828e69ae2b6b368a4b5b326650caf5393cb2214a7cd8b7bc0cff742b9b0d977c +docfiles size=22 + RELOC/doc/generic/pst-knot/Changes + RELOC/doc/generic/pst-knot/README details="Readme" + RELOC/doc/generic/pst-knot/pst-knot-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-knot/pst-knot-doc.tex +runfiles size=15 + RELOC/dvips/pst-knot/pst-psm.pro + RELOC/tex/generic/pst-knot/pst-knot.tex + RELOC/tex/latex/pst-knot/pst-knot.sty +catalogue-ctan /graphics/pstricks/contrib/pst-knot +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics decoration pstricks +catalogue-version 0.2 + +name pst-labo +category Package +revision 39077 +shortdesc Draw objects for Chemistry laboratories +relocated 1 +longdesc Pst-labo is a PSTricks related package for drawing basic and +longdesc complex chemical objects. The documentation of the package is +longdesc illuminated with plenty of illustrations together with their +longdesc source code, making it an easy read. +containersize 10140 +containerchecksum a8bc971be59f1072657d9cf9d26056ba800023858df1d060ccc7e31d2c533337520e9583de00085842dfafe84a590e0c90706ac00bc98da282a5454fac76aade +doccontainersize 2742752 +doccontainerchecksum 1b35f244a45fd18eeba484f925292358b5582f0ba18a9c6622afc67ed287e74d0c1c876ff78c19de0e9b53f55c86f30f47a6d179e0142e79aad5c5799e497ba5 +docfiles size=808 + RELOC/doc/generic/pst-labo/Changes + RELOC/doc/generic/pst-labo/Makefile + RELOC/doc/generic/pst-labo/README details="Readme" + RELOC/doc/generic/pst-labo/pst-labo-doc.bib + RELOC/doc/generic/pst-labo/pst-labo-docDE.pdf details="German documentation:" + RELOC/doc/generic/pst-labo/pst-labo-docDE.tex + RELOC/doc/generic/pst-labo/pst-labo-docEN.pdf details="English documentation:" + RELOC/doc/generic/pst-labo/pst-labo-docEN.tex + RELOC/doc/generic/pst-labo/pst-labo-docFR.pdf details="French documentation:" + RELOC/doc/generic/pst-labo/pst-labo-docFR.tex + RELOC/doc/generic/pst-labo/pst-labo8-tab1-DE.tex + RELOC/doc/generic/pst-labo/pst-labo8-tab1-EN.tex + RELOC/doc/generic/pst-labo/pst-labo8-tab1-FR.tex +runfiles size=14 + RELOC/tex/generic/pst-labo/pst-labo.tex + RELOC/tex/generic/pst-labo/pst-laboObj.tex + RELOC/tex/latex/pst-labo/pst-labo.sty +catalogue-ctan /graphics/pstricks/contrib/pst-labo +catalogue-date 2018-09-15 12:46:50 +0200 +catalogue-license lppl +catalogue-topics chemistry graphics-use +catalogue-version 2.04 + +name pst-layout +category Package +revision 29803 +shortdesc Page layout macros based on PSTricks packages +relocated 1 +longdesc The package provides a means of creating elaborate +longdesc ("pseudo-tabular") layouts of material, typically to be +longdesc overlaid on an included graphic. The package requires a recent +longdesc version of the package pst-node and some other pstricks-related +longdesc material. +containersize 3780 +containerchecksum 6d4c06efe0d0095ba52eeee25ffdaf44f836e1e41840d8098e25c6fd3b5ee79d28663ef7f02ddd7d1ba21228bf4f9bd5a66548e3aef642a49cc9aab5b4b24fba +doccontainersize 82676 +doccontainerchecksum fa32cd065979fcaf2105372155ae8debb399a0f930d6b85e7ca4a69d8b76bc0d7fb717ebdc8fa4c9794ea03268c2079b93e0bd6453155bf5925defb75cf05e08 +docfiles size=29 + RELOC/doc/latex/pst-layout/README details="Readme" + RELOC/doc/latex/pst-layout/pst-layout-doc.pdf details="Package documentation" + RELOC/doc/latex/pst-layout/pst-layout-doc.tex +runfiles size=3 + RELOC/tex/latex/pst-layout/pst-layout.sty +catalogue-ctan /graphics/pstricks/contrib/pst-layout +catalogue-date 2018-09-15 12:49:24 +0200 +catalogue-license lppl +catalogue-topics layout table pstricks +catalogue-version .95 + +name pst-lens +category Package +revision 15878 +shortdesc Lenses with PSTricks +relocated 1 +longdesc This PSTricks package provides a really rather simple command +longdesc \PstLens that will draw a lens. Command parameters provide a +longdesc remarkable range of effects. +containersize 2060 +containerchecksum 406bc53d476d47d464f7fb318e75a5aeac85cf4239ab916e91728f5d8c0c05a9fd4c4fbc24b4b058f1c15d1ee4c6a0d45511b8cf6b288bf10163523b2bed0f37 +doccontainersize 453808 +doccontainerchecksum 8d29f5014e0bae5d1fb22483ca3231e3631c76820be080b3a588660f868ece861c2d816291656a45c8a33356b992cd6e2396e9d73f4ab316b877b2ed8b778f7e +docfiles size=122 + RELOC/doc/generic/pst-lens/Changes + RELOC/doc/generic/pst-lens/README details="Readme" + RELOC/doc/generic/pst-lens/pst-lens.pdf details="Package documentation" +srccontainersize 10572 +srccontainerchecksum 7546475681934697c5fbe287d9d0c81c4532cfb07537ce0184addac26a3c29e4a37da5e12d9ac3e64f83436c07ccd9ca360ca276f77cefbb9c23c740b15bab65 +srcfiles size=11 + RELOC/source/generic/pst-lens/pst-lens.dtx + RELOC/source/generic/pst-lens/pst-lens.ins +runfiles size=2 + RELOC/tex/generic/pst-lens/pst-lens.tex + RELOC/tex/latex/pst-lens/pst-lens.sty +catalogue-ctan /graphics/pstricks/contrib/pst-lens +catalogue-date 2018-09-15 12:51:52 +0200 +catalogue-license lppl +catalogue-topics optics pstricks +catalogue-version 1.02 + +name pst-light3d +category Package +revision 15878 +shortdesc Three dimensional lighting effects (PSTricks) +relocated 1 +longdesc A PSTricks package for three dimensional lighting effects on +longdesc characters and PSTricks graphics, like lines, curves, plots, +longdesc ... +containersize 2536 +containerchecksum 2bcfd2835e20302ec865667a44af8dec63c6c006c8a3e39b048464e129ef04300d0d7c2e23f324a8acee0e1ae1439e75ce642f7b76a8f1958d600546ac7c220c +doccontainersize 836124 +doccontainerchecksum 166f47222230e24530508e3ca66c881dcc844cb8cb35b92fdbeab164b964ebf2928df3068d79467fc8a9a8a4db81d2be48350036169605365bda116cbd86d095 +docfiles size=215 + RELOC/doc/generic/pst-light3d/Changes + RELOC/doc/generic/pst-light3d/README details="Readme" + RELOC/doc/generic/pst-light3d/pst-light3d-doc.bib + RELOC/doc/generic/pst-light3d/pst-light3d-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-light3d/pst-light3d-doc.tex +srccontainersize 824 +srccontainerchecksum 8edab208ea567672bbfa0252fb4180abd8134702058223f04ab23c3ac92dca98f4946ffc31620b9d65376ae41c819038403ad3bd7c9162cabf8efcf7d4d57362 +srcfiles size=1 + RELOC/source/generic/pst-light3d/Makefile +runfiles size=3 + RELOC/dvips/pst-light3d/pst-light3d.pro + RELOC/tex/generic/pst-light3d/pst-light3d.tex + RELOC/tex/latex/pst-light3d/pst-light3d.sty +catalogue-also xkeyval +catalogue-ctan /graphics/pstricks/contrib/pst-light3d +catalogue-date 2018-09-15 12:53:47 +0200 +catalogue-license lppl +catalogue-topics graphics-3d graphics-use pstricks +catalogue-version 0.12 + +name pst-lsystem +category Package +revision 49556 +shortdesc Create images based on a L-system +relocated 1 +longdesc pst-lsystem is a PSTricks based package for creating images +longdesc based on a L-system. A L-system (Lindenmayer system) is a set +longdesc of rules which can be used to model the morphology of a variety +longdesc of organisms or fractals like the Kochflake or Hilbert curve. +containersize 2564 +containerchecksum 0da3611c401895f508b6963c46f781863ab6b42ced2addf3413b74ff1c14daf42cdfb5c166072e18427871ed6d06c5cfe3b185f0af30cb25db2f346828ee1682 +doccontainersize 2763276 +doccontainerchecksum 0b277cd979f4a12abb57b8e6d2562b156bba74e0ca46da10da17a6bc505c6747592b5f19c5a3e9b72f99bffabcb45298663c6dca33c875c923408646c4c5f6d8 +docfiles size=723 + RELOC/doc/generic/pst-lsystem/Changes + RELOC/doc/generic/pst-lsystem/README.md details="Readme" + RELOC/doc/generic/pst-lsystem/pst-lsystem-doc.bib + RELOC/doc/generic/pst-lsystem/pst-lsystem-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-lsystem/pst-lsystem-doc.tex +runfiles size=4 + RELOC/dvips/pst-lsystem/pst-lsystem.pro + RELOC/tex/generic/pst-lsystem/pst-lsystem.tex + RELOC/tex/latex/pst-lsystem/pst-lsystem.sty +catalogue-ctan /graphics/pstricks/contrib/pst-lsystem +catalogue-date 2018-12-31 16:35:08 +0100 +catalogue-license lppl +catalogue-topics pstricks graphics-use +catalogue-version 0.02 + +name pst-magneticfield +category Package +revision 49780 +shortdesc Plotting a magnetic field with PSTricks +relocated 1 +longdesc pst-magneticfield is a PSTricks related package to draw the +longdesc magnetic field lines of Helmholtz coils in a two or three +longdesc dimensional view. There are several parameters to create a +longdesc different output. For more informations or some examples read +longdesc the documentation of the package. +containersize 5464 +containerchecksum cc2a45978e49d93e677f4b028afeaaf89a0ec5748f545cb575fcd339cf92e1b08d870be79d80a5cf464b29b4e51d5ac5196bfe0665408da1108abf4da4f57222 +doccontainersize 22816204 +doccontainerchecksum cb757378708fea31eb6e644eedb62a23de45c756d0d4fbd902d40a4fd9bb8189ec1a513e5d12748ee2264bc6a35eec67a7bebb8d59128a367025a6dbc6f5551a +docfiles size=7303 + RELOC/doc/generic/pst-magneticfield/Changes + RELOC/doc/generic/pst-magneticfield/README.md details="Readme" + RELOC/doc/generic/pst-magneticfield/pst-magneticfield-doc.bib + RELOC/doc/generic/pst-magneticfield/pst-magneticfield-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-magneticfield/pst-magneticfield-doc.tex +runfiles size=6 + RELOC/dvips/pst-magneticfield/pst-magneticfield.pro + RELOC/tex/generic/pst-magneticfield/pst-magneticfield.tex + RELOC/tex/latex/pst-magneticfield/pst-magneticfield.sty +catalogue-ctan /graphics/pstricks/contrib/pst-magneticfield +catalogue-date 2019-01-20 22:09:22 +0100 +catalogue-license lppl +catalogue-topics physics pstricks +catalogue-version 1.16 + +name pst-marble +category Package +revision 50925 +shortdesc A PSTricks package to draw marble-like patterns +relocated 1 +longdesc This is a PSTricks package to draw marble-like patterns. +containersize 8560 +containerchecksum e16ea0ed61c6548d43746f251bf8581a00863370b73d46077e5510fd167d63a539ab4543f0ad7db704571b5274cc5756fb713e5182c8abea404708215a98849b +doccontainersize 20207432 +doccontainerchecksum 5684abd4913353b7a4953ed1b5878183f1c10dcc1bdecea6f3e9e6adef7c73c7f16cdade2b5e18f4a645c203dfb15a3917740a7638c410002eab892bc5ca6acd +docfiles size=9033 + RELOC/doc/generic/pst-marble/CHANGES.md details="Changes" + RELOC/doc/generic/pst-marble/Nautilus.eps + RELOC/doc/generic/pst-marble/README.md details="Package README" + RELOC/doc/generic/pst-marble/Rollers.eps + RELOC/doc/generic/pst-marble/Wave.eps + RELOC/doc/generic/pst-marble/examples/Blendmodes.tex + RELOC/doc/generic/pst-marble/examples/Bouquet.pdf + RELOC/doc/generic/pst-marble/examples/Bouquet.tex + RELOC/doc/generic/pst-marble/examples/BurgWave.pdf + RELOC/doc/generic/pst-marble/examples/BurgWave.tex + RELOC/doc/generic/pst-marble/examples/Contour.pdf + RELOC/doc/generic/pst-marble/examples/Contour.tex + RELOC/doc/generic/pst-marble/examples/Curl.pdf + RELOC/doc/generic/pst-marble/examples/Curl.tex + RELOC/doc/generic/pst-marble/examples/EdgyStirred.pdf + RELOC/doc/generic/pst-marble/examples/EdgyStirred.tex + RELOC/doc/generic/pst-marble/examples/Eggcrate.pdf + RELOC/doc/generic/pst-marble/examples/Eggcrate.tex + RELOC/doc/generic/pst-marble/examples/Latte.pdf + RELOC/doc/generic/pst-marble/examples/Latte.tex + RELOC/doc/generic/pst-marble/examples/Leaves.pdf + RELOC/doc/generic/pst-marble/examples/Leaves.tex + RELOC/doc/generic/pst-marble/examples/Moire.pdf + RELOC/doc/generic/pst-marble/examples/Moire.tex + RELOC/doc/generic/pst-marble/examples/Nautilus.pdf + RELOC/doc/generic/pst-marble/examples/Nautilus.tex + RELOC/doc/generic/pst-marble/examples/Nonpareil.pdf + RELOC/doc/generic/pst-marble/examples/Nonpareil.tex + RELOC/doc/generic/pst-marble/examples/Rollers.pdf + RELOC/doc/generic/pst-marble/examples/Rollers.tex + RELOC/doc/generic/pst-marble/examples/Stone.pdf + RELOC/doc/generic/pst-marble/examples/Stone.tex + RELOC/doc/generic/pst-marble/examples/Transparency.tex + RELOC/doc/generic/pst-marble/examples/Wave.pdf + RELOC/doc/generic/pst-marble/examples/Wave.tex + RELOC/doc/generic/pst-marble/examples/Wreath.pdf + RELOC/doc/generic/pst-marble/examples/Wreath.tex + RELOC/doc/generic/pst-marble/pst-marble-commands.pdf details="Commands" + RELOC/doc/generic/pst-marble/pst-marble-commands.tex + RELOC/doc/generic/pst-marble/pst-marble-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-marble/pst-marble-doc.tex +runfiles size=10 + RELOC/dvips/pst-marble/pst-marble.pro + RELOC/tex/generic/pst-marble/pst-marble.tex + RELOC/tex/latex/pst-marble/pst-marble.sty +catalogue-contact-home http://people.csail.mit.edu/jaffer/Marbling/How-To +catalogue-ctan /graphics/pstricks/contrib/pst-marble +catalogue-date 2019-05-01 21:41:19 +0200 +catalogue-license lppl1.3c +catalogue-topics graphics graphics-use pstricks +catalogue-version 1.6 + +name pst-math +category Package +revision 49425 +shortdesc Enhancement of PostScript math operators to use with PSTricks +relocated 1 +longdesc PostScript lacks a lot of basic operators such as tan, acos, +longdesc asin, cosh, sinh, tanh, acosh, asinh, atanh, exp (with e base). +longdesc Also (oddly) cos and sin use arguments in degrees. Pst-math +longdesc provides all those operators in a header file pst-math.pro with +longdesc wrappers pst-math.sty and pst-math.tex. In addition, sinc, +longdesc gauss, gammaln and bessel are implemented (only partially for +longdesc the latter). The package is designed essentially to work with +longdesc pst-plot but can be used in whatever PS code (such as PSTricks +longdesc SpecialCoor "!", which is useful for placing labels). The +longdesc package also provides a routine SIMPSON for numerical +longdesc integration and a solver of linear equation systems. +containersize 5172 +containerchecksum 4cc671ab7b7cfac83cab929d2a0cfba81f7bb6b92d89460195fbea2875511f9ac51c1f64cfa527903f2c081201f195512443c358691930cfe8c57059e907df53 +doccontainersize 176140 +doccontainerchecksum 76c4425e84bd67e989fa8c533dab1660c03aebb8c21dc335d26d99ce4b628aad3ff4d9769c7e1f501b4ad05b7762142910bb34a97cb92ff98a1cb637a50ebc46 +docfiles size=67 + RELOC/doc/generic/pst-math/Changes + RELOC/doc/generic/pst-math/README details="Readme" + RELOC/doc/generic/pst-math/pst-math-doc.bib + RELOC/doc/generic/pst-math/pst-math-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-math/pst-math-doc.tex +runfiles size=5 + RELOC/dvips/pst-math/pst-math.pro + RELOC/tex/generic/pst-math/pst-math.tex + RELOC/tex/latex/pst-math/pst-math.sty +catalogue-ctan /graphics/pstricks/contrib/pst-math +catalogue-date 2018-12-15 22:57:07 +0100 +catalogue-license lppl +catalogue-topics maths calculation pstricks +catalogue-version 0.65 + +name pst-mirror +category Package +revision 32997 +shortdesc Images on a spherical mirror +relocated 1 +longdesc The package provides commands and supporting PostScript +longdesc material for drawing images as if reflected by a spherical +longdesc mirror. +containersize 12180 +containerchecksum edb6796eb96047fe09833056c409527df06d63dd69e9c2b600c1301b43b6e5c858d1061e9a138c89ab47657682f9ee67995a02abfab5251356e2eb8de68f5316 +doccontainersize 6752668 +doccontainerchecksum a9e22f2e00f67f12c69df3a6dd4377d25b8c130c4afa8c995c8961ba426f69f0c286460925c7c782a30b2a23ca5f2d4a46a5dbfaf72955952f561df2545c38b8 +docfiles size=1749 + RELOC/doc/generic/pst-mirror/Changes + RELOC/doc/generic/pst-mirror/README details="Readme" + RELOC/doc/generic/pst-mirror/createEPS/make.sh + RELOC/doc/generic/pst-mirror/createEPS/script.readme + RELOC/doc/generic/pst-mirror/createEPS/scripts/filtre.pl + RELOC/doc/generic/pst-mirror/createEPS/test.pdf + RELOC/doc/generic/pst-mirror/createEPS/test.sh + RELOC/doc/generic/pst-mirror/createEPS/test.tex + RELOC/doc/generic/pst-mirror/createEPS/xa.eps + RELOC/doc/generic/pst-mirror/createEPS/xa.tex + RELOC/doc/generic/pst-mirror/createEPS/xb.eps + RELOC/doc/generic/pst-mirror/createEPS/xc.eps + RELOC/doc/generic/pst-mirror/pst-mirror-doc.bib + RELOC/doc/generic/pst-mirror/pst-mirror-doc.pdf details="Package documentation" language="fr" + RELOC/doc/generic/pst-mirror/pst-mirror-doc.tex +runfiles size=21 + RELOC/dvips/pst-mirror/pst-mirror.pro + RELOC/tex/generic/pst-mirror/pst-mirror.tex + RELOC/tex/latex/pst-mirror/pst-mirror.sty +catalogue-ctan /graphics/pstricks/contrib/pst-mirror +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-use pstricks +catalogue-version 1.01 + +name pst-moire +category Package +revision 49223 +shortdesc A PSTricks package to draw moire patterns +relocated 1 +longdesc This is a PSTricks package to draw moire patterns. +containersize 5304 +containerchecksum 7ae5693ca401b037482c4b8d7173a03b677ee1a8dc62ceccb710264b196a20240f310c26cbf9924dc2b4a9fa2869257843cfe4c87c26616a0f790ab444130a13 +doccontainersize 8320872 +doccontainerchecksum 442f2477e9eaf122249b3a06fd2755afc9e701fe4333102274de3635eee398231d422b8077764465fa42041acc6289d00b4254505b591f055c6dddd41516d0e2 +docfiles size=2188 + RELOC/doc/generic/pst-moire/README.md details="Package README" + RELOC/doc/generic/pst-moire/examples/pattern1.pdf + RELOC/doc/generic/pst-moire/examples/pattern1.tex + RELOC/doc/generic/pst-moire/examples/pattern2.pdf + RELOC/doc/generic/pst-moire/examples/pattern2.tex + RELOC/doc/generic/pst-moire/examples/pattern3.pdf + RELOC/doc/generic/pst-moire/examples/pattern3.tex + RELOC/doc/generic/pst-moire/examples/pattern4.pdf + RELOC/doc/generic/pst-moire/examples/pattern4.tex + RELOC/doc/generic/pst-moire/examples/psGlassPattern.pdf + RELOC/doc/generic/pst-moire/examples/psGlassPattern.tex + RELOC/doc/generic/pst-moire/pst-cosine.pro + RELOC/doc/generic/pst-moire/pst-moire-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-moire/pst-moire-doc.tex + RELOC/doc/generic/pst-moire/pst-sin.pro +runfiles size=7 + RELOC/dvips/pst-moire/pst-moire.pro + RELOC/tex/generic/pst-moire/pst-moire.tex + RELOC/tex/latex/pst-moire/pst-moire.sty +catalogue-ctan /graphics/pstricks/contrib/pst-moire +catalogue-date 2018-11-22 19:45:43 +0100 +catalogue-license lppl1.3c +catalogue-topics graphics-use pstricks +catalogue-version 2.1 + +name pst-node +category Package +revision 50215 +shortdesc Nodes and node connections in PSTricks +relocated 1 +longdesc The package enables the user to connect information, and to +longdesc place labels, without knowing (in advance) the actual positions +longdesc of the items to be connected, or where the connecting line +longdesc should go. The macros are useful for making graphs and trees, +longdesc mathematical diagrams, linguistic syntax diagrams, and so on. +longdesc The package contents were previously distributed as a part of +longdesc the pstricks base distribution; the package serves as an +longdesc extension to PSTricks. +containersize 25296 +containerchecksum b4feb98035acf2fff9cab8c21c7e408fdf20dd6f12ea5209719eac9d77db51cd907e345daba876ab0b7312bc9dc4a51be17097d3fb02f0a181c006c4385b2096 +doccontainersize 561540 +doccontainerchecksum 2e47bab65f6077f796bf4d50cd4f5911eed2eea658701c46e47d65543697c68209aa307a5f620fedadee8ff2ba28f6ccf92dd9402bc3264616cdd3291b8673a2 +docfiles size=259 + RELOC/doc/generic/pst-node/Changes + RELOC/doc/generic/pst-node/README details="Readme" + RELOC/doc/generic/pst-node/psmatrix-docDE.bib + RELOC/doc/generic/pst-node/psmatrix-docDE.pdf + RELOC/doc/generic/pst-node/psmatrix-docDE.tex + RELOC/doc/generic/pst-node/pst-node-doc.bib + RELOC/doc/generic/pst-node/pst-node-doc.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/pst-node/pst-node-doc.tex +runfiles size=29 + RELOC/dvips/pst-node/pst-node.pro + RELOC/dvips/pst-node/pst-node97.pro + RELOC/tex/generic/pst-node/pst-node.tex + RELOC/tex/generic/pst-node/pst-node97.tex + RELOC/tex/latex/pst-node/pst-node.sty +catalogue-ctan /graphics/pstricks/contrib/pst-node +catalogue-date 2019-03-03 15:57:10 +0100 +catalogue-license lppl +catalogue-topics graphics-in-tex linguistic +catalogue-version 1.42 + +name pst-ob3d +category Package +revision 15878 +shortdesc Three dimensional objects using PSTricks +relocated 1 +longdesc The package uses PSTricks to provide basic three-dimensional +longdesc objects. As yet, only cubes (which can be deformed to +longdesc rectangular parallelipipeds) and dies (which are only a special +longdesc kind of cubes) are defined. +containersize 2736 +containerchecksum 1b4eb87fd2c9c63edd4d7388b32c5e6a8f4d6ecc87b9c1129540398c607bdcd258b4f182710ff12d6a7a5e8b8f34c6686203d5c0ff9a60a1a6e462ccb3b382d6 +doccontainersize 167600 +doccontainerchecksum f934cc75f6d2e6f80bddeda8d2226e6ba0aa6749adef4f08b83036a67f1b8406d1fff61a01862eecf48ec6e3ce76af2ff7967db67a294956fce50d3c7497bf00 +docfiles size=50 + RELOC/doc/generic/pst-ob3d/Changes + RELOC/doc/generic/pst-ob3d/README + RELOC/doc/generic/pst-ob3d/pst-ob3d.pdf details="Package documentation" +srccontainersize 10176 +srccontainerchecksum 4dc8b724abb5a48518edb8f0d39152fe99fb2ec78c59fb8729f151865b9fe50105cf4c3027361d4e6a75cceba99a7e399d7e522aba70f27d4e4816037e87e509 +srcfiles size=13 + RELOC/source/generic/pst-ob3d/Makefile + RELOC/source/generic/pst-ob3d/pst-ob3d.dtx + RELOC/source/generic/pst-ob3d/pst-ob3d.ins +runfiles size=4 + RELOC/tex/generic/pst-ob3d/pst-ob3d.tex + RELOC/tex/latex/pst-ob3d/pst-ob3d.sty +catalogue-ctan /graphics/pstricks/contrib/pst-ob3d +catalogue-date 2018-09-15 12:55:45 +0200 +catalogue-license lppl +catalogue-topics graphics-3d pstricks +catalogue-version 0.21 + +name pst-ode +category Package +revision 50587 +shortdesc Solving initial value problems for sets of Ordinary Differential Equations +relocated 1 +longdesc The package defines \pstODEsolve for solving initial value +longdesc problems for sets of Ordinary Differential Equations (ODE) +longdesc using the Runge-Kutta-Fehlberg (RKF45) method with automatic +longdesc step size adjustment. The result is stored as a PostScript +longdesc object and may be plotted later using macros from other +longdesc PSTricks packages, such as \listplot (pst-plot) and +longdesc \listplotThreeD (pst-3dplot), or may be further processed by +longdesc user-defined PostScript procedures. Optionally, the computed +longdesc state vectors can be written as a table to a text file. +containersize 5312 +containerchecksum eb00fab8b3932a868526aad8c1623ac7939d45a26b83374779f4eb3d25807ff58a5a75ce31adb84af650939d7e6957336f44d8f7a15de33262ee7b69c70fb002 +doccontainersize 115388 +doccontainerchecksum 5da26468c9426f614080513d9dd031bab06fdba87a899be28e09a21c7de75b50c4dbf00ebb569bfa63293bb7881fbdaef76f6bddac5a7e8084796fbec2e7ddf4 +docfiles size=43 + RELOC/doc/generic/pst-ode/ChangeLog + RELOC/doc/generic/pst-ode/README.txt + RELOC/doc/generic/pst-ode/examples/lorenz.tex + RELOC/doc/generic/pst-ode/examples/ode.tex + RELOC/doc/generic/pst-ode/examples/particle.tex + RELOC/doc/generic/pst-ode/pst-ode-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-ode/pst-ode-doc.tex +runfiles size=6 + RELOC/dvips/pst-ode/pst-ode.pro + RELOC/tex/generic/pst-ode/pst-ode.tex + RELOC/tex/latex/pst-ode/pst-ode.sty +catalogue-contact-repository https://gitlab.com/agrahn/pst-ode +catalogue-ctan /graphics/pstricks/contrib/pst-ode +catalogue-date 2019-03-05 13:29:46 +0100 +catalogue-license lppl +catalogue-topics maths pstricks graphics-plot +catalogue-version 0.13 + +name pst-optexp +category Package +revision 35673 +shortdesc Drawing optical experimental setups +relocated 1 +longdesc The package is a collection of optical components that +longdesc facilitate easy sketching of optical experimental setups. The +longdesc package uses PSTricks for its output. A wide range of free-ray +longdesc and fibre components is provided, the alignment, positioning +longdesc and labelling of which can be achieved in very simple and +longdesc flexible ways. The components may be connected with fibers or +longdesc beams, and realistic raytraced beam paths are also possible. +containersize 37660 +containerchecksum 7d171906d8fc840c8003e82b3ac175360dab625172b389c6205371bb432e280195c2daf53671d8ff2ab43d24233ab2c8bd3002b8d4489c7395533148bb40e939 +doccontainersize 3177328 +doccontainerchecksum f9c5f7bb43f9171b53a10941db9baf3f7e7b8e50620679f176a14b0b384a8a79118361e0e7afc2a8c44a2e9916313da6321cc5a08ceff5adfa4a678e35fdce46 +docfiles size=1503 + RELOC/doc/latex/pst-optexp/Changes + RELOC/doc/latex/pst-optexp/Makefile + RELOC/doc/latex/pst-optexp/README details="Readme" + RELOC/doc/latex/pst-optexp/pst-optexp-DE.pdf details="Package manual (German)" language="de" + RELOC/doc/latex/pst-optexp/pst-optexp-quickref.pdf details="Quick reference (cheat-sheet)" + RELOC/doc/latex/pst-optexp/pst-optexp.pdf details="Package manual (English)" language="en" +srccontainersize 153648 +srccontainerchecksum ae5d01a591bdfb8128957bc992c07c7e609c4a2e2b8a1c43e30960f85774d5fd56702eec761430f26c3ead975144bf196c397233decff205071afe60be0b948b +srcfiles size=204 + RELOC/source/latex/pst-optexp/pst-optexp.dtx + RELOC/source/latex/pst-optexp/pst-optexp.ins +runfiles size=59 + RELOC/dvips/pst-optexp/pst-optexp.pro + RELOC/makeindex/pst-optexp/pst-optexp.ist + RELOC/tex/latex/pst-optexp/pst-optexp.sty +catalogue-contact-repository https://github.com/cbersch/pst-optexp +catalogue-ctan /graphics/pstricks/contrib/pst-optexp +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics optics diagram-lab pstricks +catalogue-version 5.2 + +name pst-optic +category Package +revision 41999 +shortdesc Drawing optics diagrams +relocated 1 +longdesc A package for drawing both reflective and refractive optics +longdesc diagrams. The package requires pstricks later than version +longdesc 1.10. +containersize 14660 +containerchecksum c9e0231301824a612c755adbf2789f9cc428bbc6133a5669d173ff1426663f704aa978c506add7e4a0c786b51ed61df355f59e7b6392f355ac6913c6f9336f46 +doccontainersize 308860 +doccontainerchecksum cba9465a3e81060bae7ab4b8d7c8a1ef804415a3f85c0a89c98d57c6a3e8ff2c58a40b91e9c6281ac520be5b03f13d1890d8cce063a892a84d6eee5f6beeb625 +docfiles size=124 + RELOC/doc/generic/pst-optic/Changes + RELOC/doc/generic/pst-optic/README details="Readme" + RELOC/doc/generic/pst-optic/pst-optic-doc.bib + RELOC/doc/generic/pst-optic/pst-optic-doc.pdf details="Package manual:" + RELOC/doc/generic/pst-optic/pst-optic-doc.tex +runfiles size=20 + RELOC/tex/generic/pst-optic/pst-optic.tex + RELOC/tex/latex/pst-optic/pst-optic.sty +catalogue-ctan /graphics/pstricks/contrib/pst-optic +catalogue-date 2018-09-15 12:57:29 +0200 +catalogue-license lppl +catalogue-topics physics diagram pstricks +catalogue-version 1.02 + +name pst-osci +category Package +revision 15878 +shortdesc Oscgons with PSTricks +relocated 1 +longdesc This PSTricks package enables you to produce oscilloscope +longdesc "screen shots". Three channels can be used to represent the +longdesc most common signals (damped or not): namely sinusoidal, +longdesc rectangular, triangular, dog's tooth (left and right oriented). +longdesc The third channel allows you to add, to subtract or to multiply +longdesc the two other signals. Lissajous diagrams (XY-mode) can also be +longdesc obtained. +containersize 3432 +containerchecksum d36d987ca50c50c0840660070dd7eefd4ff49f4e86b1a6f33bb9e549a1468f4992a7eff6de56307e5d5bf4e8063534cf4f658df8e98571a1d86fde3555a67e08 +doccontainersize 1332868 +doccontainerchecksum 80d99115c7c3fdcafef8f4be99b3066799cb40571e219158abb48de0ba405a0c977d0158c20e2b550895d1e63580bc7366338fbbbe7add2c3a89abf618583ecc +docfiles size=344 + RELOC/doc/generic/pst-osci/Changes + RELOC/doc/generic/pst-osci/README details="Readme" + RELOC/doc/generic/pst-osci/oscilloscope.pdf details="French documentation" language="fr" + RELOC/doc/generic/pst-osci/oscilloscope.tex + RELOC/doc/generic/pst-osci/pst-osci-doc.pdf details="English documentation" language="en" + RELOC/doc/generic/pst-osci/pst-osci-doc.tex +runfiles size=5 + RELOC/tex/generic/pst-osci/pst-osci.tex + RELOC/tex/latex/pst-osci/pst-osci.sty +catalogue-ctan /graphics/pstricks/contrib/pst-osci +catalogue-date 2018-09-15 13:01:24 +0200 +catalogue-license lppl +catalogue-topics graphics-use pstricks +catalogue-version 2.82 + +name pst-ovl +category Package +revision 45506 +shortdesc Create and manage graphical overlays +relocated 1 +longdesc The package is useful when building an image from assorted +longdesc material, as in the slides of a projected presentation. The +longdesc package requires pstricks, and shares that package's +longdesc restrictions on usage when generating PDF output. +containersize 1956 +containerchecksum 2777d0d3011ba4ba911dbed78bb3ab29eb54bf392a9aaf73707f17e5fd9ccded0198d0b42bbdbc6879b2f07ba84ccf9d121748e3f0d3f931a8fb6b6e2a904b8a +doccontainersize 36548 +doccontainerchecksum 9b7057b4316adf9f0fa30561c658f309cfc1be757c0eebfb63bb5cb94dc9b8b6cff502f056f9e1d64b207cdd154c0ec64b13c51639ae46377c4d58d51aa00725 +docfiles size=17 + RELOC/doc/generic/pst-ovl/Changes + RELOC/doc/generic/pst-ovl/README details="Readme" + RELOC/doc/generic/pst-ovl/pst-ovl-doc.bib + RELOC/doc/generic/pst-ovl/pst-ovl-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-ovl/pst-ovl-doc.tex +runfiles size=3 + RELOC/dvips/pst-ovl/pst-ovl.pro + RELOC/tex/generic/pst-ovl/pst-ovl.tex + RELOC/tex/latex/pst-ovl/pst-ovl.sty +catalogue-ctan /graphics/pstricks/contrib/pst-ovl +catalogue-date 2017-10-09 21:02:41 +0200 +catalogue-license lppl +catalogue-topics pstricks presentation graphics-supp +catalogue-version 0.07a + +name pst-pad +category Package +revision 15878 +shortdesc Draw simple attachment systems with PSTricks +relocated 1 +longdesc The package collects a set of graphical elements based on +longdesc PStricks that can be used to facilitate display of attachment +longdesc systems such as two differently shaped surfaces with or without +longdesc a fluid wedged in between. These macros ease the display of wet +longdesc adhesion models and common friction systems such as boundary +longdesc lubrication, elastohydrodynamic lubrication and hydrodynamic +longdesc lubrication. +containersize 4408 +containerchecksum cf519f69dfd1003ab17a4a67f309336442bf35497cd0102e346ab8537865540c314666fbf01cf6e3e106ce922fd8922ac4bbb5b20ee90a7ce24a7a98ee974006 +doccontainersize 137484 +doccontainerchecksum 0a2206d3ef84dce88d3e0ea7899fb623d12f7f6a820298b031ff76044eb9ec49bb09f70f6ee0b00018fcc02f6260d67ee58c8a06a48ddbfd2e5b17f52d374830 +docfiles size=61 + RELOC/doc/generic/pst-pad/CHANGES + RELOC/doc/generic/pst-pad/README details="Readme" + RELOC/doc/generic/pst-pad/pst-pad-doc-header.tex + RELOC/doc/generic/pst-pad/pst-pad-doc.pdf details="Package documentation" language="en" + RELOC/doc/generic/pst-pad/pst-pad-doc.tex + RELOC/doc/generic/pst-pad/pst-pad-docDE.pdf details="Package documentation" language="de" + RELOC/doc/generic/pst-pad/pst-pad-docDE.tex + RELOC/doc/generic/pst-pad/showexpl.cfg +srccontainersize 640 +srccontainerchecksum ffd5ef230c25a731e5127cda390b60fdc275d53a833f8fd02ef8fda7b959d7ef5e2074637af603f1e510cd558cb3de22245bc34f91bb7114269425d3b4db211f +srcfiles size=1 + RELOC/source/generic/pst-pad/Makefile +runfiles size=6 + RELOC/tex/generic/pst-pad/pst-pad.tex + RELOC/tex/latex/pst-pad/pst-pad.sty +catalogue-ctan /graphics/pstricks/contrib/pst-pad +catalogue-date 2018-09-15 13:04:01 +0200 +catalogue-license lppl +catalogue-topics graphics-use pstricks +catalogue-version 0.3b + +name pst-pdf +category Package +revision 44665 +shortdesc Make PDF versions of graphics by processing between runs +longdesc The package pst-pdf simplifies the use of graphics from +longdesc PSTricks and other PostScript code in PDF documents. As in +longdesc building a bibliography with BibTeX, additional external +longdesc programmes are invoked. In this case they are used to create a +longdesc PDF file (\PDFcontainer) that will contain all the graphics +longdesc material. In the final document these contents will be inserted +longdesc instead of the original PostScript code. The package works with +longdesc pstricks and requires a recent version of the preview package. +depend pst-pdf.ARCH +containersize 7364 +containerchecksum 537812f3811e9a62a2c9667438ea380c3219b1cd8a96ae2225e0ded063f1f1ad572a699d4f9d5d11f2c667fc560d94f17b275293198c5eb4035dcc3d3cb92242 +doccontainersize 961300 +doccontainerchecksum bd6e6b3c7ee31cafb5c6f6064abb6b6f4a197c10f4ea184fe028fab874a1a5b6bbf39719a1a620fcc9fec23e52ea15c6abfd4b66f79c788755f1ba8eb65ef778 +docfiles size=319 + texmf-dist/doc/latex/pst-pdf/CHANGES + texmf-dist/doc/latex/pst-pdf/Makefile + texmf-dist/doc/latex/pst-pdf/README.md details="README file" + texmf-dist/doc/latex/pst-pdf/pst-pdf-DE.pdf details="German documentation" language="de" + texmf-dist/doc/latex/pst-pdf/pst-pdf-example.pdf details="Examples of use" + texmf-dist/doc/latex/pst-pdf/pst-pdf-example.tex + texmf-dist/doc/latex/pst-pdf/pst-pdf.pdf details="English documentation" language="en" +srccontainersize 162792 +srccontainerchecksum ac181daad359ca790224fd0bc2eb560ca59312ec6330ff64c8e9af3cf58aef1f6c2ccc3310ffa9bcd2ccf36657d0675b8c926c859ecb6cbb3f5382257ab6ec85 +srcfiles size=148 + texmf-dist/source/latex/pst-pdf/CHANGES.tex + texmf-dist/source/latex/pst-pdf/elephant.ps + texmf-dist/source/latex/pst-pdf/insect1.eps + texmf-dist/source/latex/pst-pdf/insect15.eps + texmf-dist/source/latex/pst-pdf/knuth.png + texmf-dist/source/latex/pst-pdf/penguin.eps + texmf-dist/source/latex/pst-pdf/psf-demo.eps + texmf-dist/source/latex/pst-pdf/pst-pdf.dtx + texmf-dist/source/latex/pst-pdf/pst-pdf.ins +runfiles size=9 + texmf-dist/scripts/pst-pdf/ps4pdf + texmf-dist/scripts/pst-pdf/ps4pdf.bat + texmf-dist/scripts/pst-pdf/ps4pdf.bat.noMiKTeX + texmf-dist/scripts/pst-pdf/ps4pdf.bat.w95 + texmf-dist/tex/latex/pst-pdf/pst-pdf.sty +catalogue-also pdftricks +catalogue-contact-bugs https://github.com/rolfn/pst-pdf/issues +catalogue-contact-repository https://github.com/rolfn/pst-pdf +catalogue-ctan /macros/latex/contrib/pst-pdf +catalogue-date 2018-09-15 13:05:45 +0200 +catalogue-license lppl1.2 +catalogue-topics graphics-epspdf +catalogue-version 1.2d + +name pst-pdf.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pst-pdf +containersize 344 +containerchecksum d3d8a266f5bec09513123eac5223d65b2463bc90affbf9fc2db66d2bb0c0048b5668ce218d582fa524e26f0ab1c9cc7194a515efe3c3e8a6838b59d09786047f +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/ps4pdf + +name pst-pdf.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of pst-pdf +containersize 344 +containerchecksum 444956211ee65eef0fb276b6981ca70e96e4ca49c7d9039197bd5d983a95c1bcd7e1daa89f824044e10c0dc7faacf5e6aa1e4b3fef214c8793081850c259f545 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/ps4pdf + +name pst-pdf.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of pst-pdf +containersize 344 +containerchecksum df97ce2b8496a9b7d144a44bf049bb7bd3481618714a908eff6bd3a7526e2312d76e0d997401e942ff1040e918b66bb860898cb65145014ce04ed178127edf4c +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/ps4pdf + +name pst-pdf.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of pst-pdf +containersize 344 +containerchecksum 5a440a507457d1b4c4663d1a2c8e231dfc22bbd1154c1f7d71c0d4b720bf93392926c85acf0b9fee320235a6fc10ae76063bd29fa94309c9d7f5d19ba0a0c15a +binfiles arch=armhf-linux size=1 + bin/armhf-linux/ps4pdf + +name pst-pdf.i386-cygwin +category Package +revision 12991 +shortdesc i386-cygwin files of pst-pdf +containersize 340 +containerchecksum f7d4e013cb836c196be10daf460d85b6f5c16192f00115329da2a745cbe3adfd308f24267f967b7f768ad01b4fb00696caf6c2b09900fc36dd8813b8e7dd280e +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/ps4pdf + +name pst-pdf.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of pst-pdf +containersize 344 +containerchecksum b213ca027259bb157e453edb7d3354344e88cf05866855e561ab18ccb8dae4f301912069dccf60c6fada25a5af40e612032f19442d6cca52cb9cd1192efd9aaf +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/ps4pdf + +name pst-pdf.i386-linux +category Package +revision 7838 +shortdesc i386-linux files of pst-pdf +containersize 344 +containerchecksum 22ae88d9f49d70e76c4359b56d87192f7d1b54a71c7dcaca1f670be827fc4c82d3312d2833d37353e6d03af151e8f6e3209f3ff9817ac9f4edec1b7b4dfced69 +binfiles arch=i386-linux size=1 + bin/i386-linux/ps4pdf + +name pst-pdf.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of pst-pdf +containersize 344 +containerchecksum 8ddef8a04889ae399e95fc27eba75b9893670b6fd36cf27ccd6281ef7e0e915fc075fdb4d05f657ede112a8eb82cf34ef6907238ab6fedf92bf25d336102296d +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/ps4pdf + +name pst-pdf.i386-solaris +category Package +revision 8102 +shortdesc i386-solaris files of pst-pdf +containersize 344 +containerchecksum a61523b4427b69b75ba7a96a4635d2ddde150fd7048d3c85be19c15bb24bbdda37a39216c62b196daec7f19504764e3f7f8093c0780c59f022b08237758ae087 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/ps4pdf + +name pst-pdf.win32 +category Package +revision 15404 +shortdesc win32 files of pst-pdf +containersize 1528 +containerchecksum 94c9dfac058c2625edfb504af68978b1e2461b066064f12a9ab7d8d4bf846354eac0eab0fcaaa31c22913ed6b03e1aac7e6bf938283c5878ff7aa69adff9fa9e +binfiles arch=win32 size=2 + bin/win32/ps4pdf.bat + bin/win32/ps4pdf.exe + +name pst-pdf.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of pst-pdf +containersize 344 +containerchecksum 07f3eb86ce16b692139bbd66d72419672c787681e9aeb0f30bf0cfd6a8b3c427d62c41c3cf221572111148be9e3bd3dbd0d299dc5a3208df97cc4f6a1057e085 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/ps4pdf + +name pst-pdf.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of pst-pdf +containersize 344 +containerchecksum fa6556b01787c5dd0d7967d7a5f7d7770f87a64cc9a76a48dd59a2b19ef51c88425823dcaea4e99ed81773eb4f7c43314bb202df1bcd0316c6e2d72fc44c9379 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/ps4pdf + +name pst-pdf.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pst-pdf +containersize 352 +containerchecksum 9b4c9eac1ea6ec21bb4d9a26520eee3ded6f8d6c0288625871ad77c28835d49c917d7d5cbbc42ebe11152d8453fcbed5729f526e8125a89b0bbb15602c52a1b6 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/ps4pdf + +name pst-pdf.x86_64-linux +category Package +revision 8601 +shortdesc x86_64-linux files of pst-pdf +containersize 340 +containerchecksum d9760fc7c12fe18d29d516595d6b20ad34e9f8441d8d3a5870ad97c603f128d4b979d5f8322785dd0ce49f864617c37b8d6babde3a10733165acb5fa522a2563 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/ps4pdf + +name pst-pdf.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pst-pdf +containersize 344 +containerchecksum 203911363b0bf66fcb691f5e46379f805b6f074ccd74efb855f36af420f6255d2541150f25eef2ab8f33ce5ac876cdcc21ade090d874d88372d95099a8316556 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/ps4pdf + +name pst-pdf.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of pst-pdf +containersize 344 +containerchecksum cdbfd675e0198aae54eaeacd88725ca115fcaf7bb6b453770d86391ed1198af2c7d81e56489c20f1b03187a107ea809c6d2ed2cdb033efc303fc62826de2be00 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/ps4pdf + +name pst-pdgr +category Package +revision 45875 +shortdesc Draw medical pedigrees using PSTricks +relocated 1 +longdesc The package provides a set of macros based on PSTricks to draw +longdesc medical pedigrees according to the recommendations for +longdesc standardized human pedigree nomenclature. The drawing commands +longdesc place the symbols on a pspicture canvas. An interface for +longdesc making trees is also provided. The package may be used both +longdesc with LaTeX and PlainTeX. A separate Perl program for generating +longdesc TeX files from spreadsheets is available. +containersize 3384 +containerchecksum c42b723e2739eb3a70f7a984d45b6b738a1dab1f4f3bb7311850c344be736fbc97ababb6f744539deddc7d1cbde47830e81d1bfd42f705a7287b1fb970664823 +doccontainersize 171680 +doccontainerchecksum 006395a2e1caebf8c86f4eb41eeb03a35d47b82e65e18ce4045eb22f93bc78a38f7611a1328216712d29be852fa3431876254f3b41b8b7a2a7c453f32a8e1bf7 +docfiles size=53 + RELOC/doc/generic/pst-pdgr/NEWS + RELOC/doc/generic/pst-pdgr/README details="Readme" + RELOC/doc/generic/pst-pdgr/pst-pdgr.bib + RELOC/doc/generic/pst-pdgr/pst-pdgr.pdf details="Package documentation" +srccontainersize 16788 +srccontainerchecksum e576ffab3eb1b0094bf7514ea996146c1d73abc5f68a47f3cdccf5e7fe7eec133a21511e9d1107ef20541750b12766899bd3c925e09be931b1e0e2a1cee376d9 +srcfiles size=22 + RELOC/source/generic/pst-pdgr/Makefile + RELOC/source/generic/pst-pdgr/pst-pdgr.dtx + RELOC/source/generic/pst-pdgr/pst-pdgr.ins +runfiles size=5 + RELOC/tex/generic/pst-pdgr/pst-pdgr.tex + RELOC/tex/latex/pst-pdgr/pst-pdgr.cfg + RELOC/tex/latex/pst-pdgr/pst-pdgr.sty +catalogue-also pedigree-perl +catalogue-ctan /graphics/pstricks/contrib/pedigree/pst-pdgr +catalogue-date 2017-11-20 23:58:47 +0100 +catalogue-license lppl +catalogue-topics humanities pstricks +catalogue-version 0.4 + +name pst-perspective +category Package +revision 39585 +shortdesc Draw perspective views using PSTricks +relocated 1 +longdesc The package provides the means to draw an orthogonal parallel +longdesc projection with an arbitrarily chosen angle and a variable +longdesc shortening factor. +containersize 3556 +containerchecksum b1c6c1313e0f87d7c4dbc7122d09777f14f02ad0908c6151fb5da905d908a9ca2d905c5a9e3fb1e54deb0b7b91dda1488de0b96ff40683488947985d68e2d331 +doccontainersize 1274264 +doccontainerchecksum df82bc95d3720f7da3c23736d83fbaeae5132f7b84aea9f2fd8ddf925f919e5d56f6701bf5b541446c024e8d2f6a5875d562d96cdb1564dae92d6ade759671cc +docfiles size=449 + RELOC/doc/generic/pst-perspective/Parallelprojektion-Kreis.pdf + RELOC/doc/generic/pst-perspective/Parallelprojektion-Kreis.tex + RELOC/doc/generic/pst-perspective/README details="Readme" + RELOC/doc/generic/pst-perspective/pst-perspective-doc.pdf details="Package documentation (German)" language="de" + RELOC/doc/generic/pst-perspective/pst-perspective-doc.tex + RELOC/doc/generic/pst-perspective/pst-perspective-docEN.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/pst-perspective/pst-perspective-docEN.tex +runfiles size=6 + RELOC/tex/generic/pst-perspective/pst-perspective.tex + RELOC/tex/latex/pst-perspective/pst-perspective.sty +catalogue-ctan /graphics/pstricks/contrib/pst-perspective +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics graphics-3d pstricks +catalogue-version 1.05 + +name pst-platon +category Package +revision 16538 +shortdesc Platonic solids in PSTricks +relocated 1 +longdesc The package adds to PSTricks the ability to draw 3-dimensional +longdesc views of the five Platonic solids. +containersize 2788 +containerchecksum 8eade14982b0ffa2c5e7d5c68a91d4159ee6f3317b20836c3f470ed68940a522459bdce54b1e1dd4068173e50b0c611531d1210b1651d805602f952a1696626c +doccontainersize 90668 +doccontainerchecksum 7c252b535853c4941fc4cdbe504a3c20ece2c04dd15e2bc5ea0c88928b5fdd7063035c329dccb7ed04d71606e70f632fc1d66847dd35ea46a4626c04070974be +docfiles size=34 + RELOC/doc/generic/pst-platon/Changes + RELOC/doc/generic/pst-platon/README details="Readme" + RELOC/doc/generic/pst-platon/pst-platon-doc.bib + RELOC/doc/generic/pst-platon/pst-platon-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-platon/pst-platon-doc.tex +srccontainersize 936 +srccontainerchecksum 092665b806f358201f0dc1b0010796c2090b84cf31d1f0e9e33d2ce370049f0e7f65ebac23cf9841f770df8c61c22bdea60e583474694311c7e3fb4fd71ced6f +srcfiles size=1 + RELOC/source/generic/pst-platon/Makefile +runfiles size=3 + RELOC/tex/latex/pst-platon/pst-platon.sty +catalogue-ctan /graphics/pstricks/contrib/pst-platon +catalogue-date 2018-09-15 13:08:05 +0200 +catalogue-license lppl +catalogue-topics maths graphics-3d pstricks +catalogue-version 0.01 + +name pst-plot +category Package +revision 48526 +shortdesc Plot data using PSTricks +relocated 1 +longdesc The package provides plotting of data (typically from external +longdesc files), using PSTricks. Plots may be configured using a wide +longdesc variety of parameters. +containersize 22544 +containerchecksum 4b4e45eb0072743428bb8134fb1a07122383a62ce9ec26b2e77c6935044dc6cc3bd51820f0511c115dd9bef81a069883c360bed55f7f101b689e1c8693ae3d48 +doccontainersize 1136296 +doccontainerchecksum e485660b8215b3ec895f5f4e2ab2c86b8f24130bdd1e0c8177ce10046f29d6d92f5fff7ee23772ae1574b257647b8d0312e00a9d92756751b65282f030f37b0d +docfiles size=597 + RELOC/doc/generic/pst-plot/Changes + RELOC/doc/generic/pst-plot/README details="Readme" + RELOC/doc/generic/pst-plot/data/Data.dat + RELOC/doc/generic/pst-plot/data/LSM.data + RELOC/doc/generic/pst-plot/data/LSM2.data + RELOC/doc/generic/pst-plot/data/boxplot.data + RELOC/doc/generic/pst-plot/data/data.data + RELOC/doc/generic/pst-plot/data/data1.dat + RELOC/doc/generic/pst-plot/data/data3.data + RELOC/doc/generic/pst-plot/data/dataMul.data + RELOC/doc/generic/pst-plot/data/demo.txt + RELOC/doc/generic/pst-plot/data/demo0.data + RELOC/doc/generic/pst-plot/data/demo1.data + RELOC/doc/generic/pst-plot/data/demo2.data + RELOC/doc/generic/pst-plot/data/demo3.data + RELOC/doc/generic/pst-plot/data/dotmatrix.data + RELOC/doc/generic/pst-plot/data/pst-plot-doc.eps + RELOC/doc/generic/pst-plot/data/pstricks-add-data9.data + RELOC/doc/generic/pst-plot/data/test.data + RELOC/doc/generic/pst-plot/pst-plot-doc.bib + RELOC/doc/generic/pst-plot/pst-plot-doc.pdf details="Package documentation" language="en" + RELOC/doc/generic/pst-plot/pst-plot-doc.tex +runfiles size=32 + RELOC/tex/generic/pst-plot/pst-plot.tex + RELOC/tex/generic/pst-plot/pst-plot97.tex + RELOC/tex/latex/pst-plot/pst-plot.sty +catalogue-also pgfplots +catalogue-contact-home https://www.tug.org/PSTricks/ +catalogue-contact-repository http://comedy.dante.de/~herbert/texnik/ +catalogue-contact-support http://tug.org/mailman/listinfo/pstricks +catalogue-ctan /graphics/pstricks/contrib/pst-plot +catalogue-date 2018-08-31 19:10:21 +0200 +catalogue-license lppl +catalogue-topics data-import data-disp pstricks +catalogue-version 1.91 + +name pst-poker +category Package +revision 48347 +shortdesc Drawing poker cards +relocated 1 +longdesc This PSTricks related package can create poker cards in various +longdesc manners. +containersize 347540 +containerchecksum df340b3087babccfdd371446582dd33a744af8d16a6c53939cbe0e2366c11d51de3ebe095e130dddfbcb8d062c71134679fdea8d8821818e61e4f18b1e63159b +doccontainersize 2449924 +doccontainerchecksum 06eaab1e95de879d3de35017a3a185525375afd360ad6890b279950eda7d35599cbebd6580a31e7f0180c74266ac02d00ede982ef776eb4645b0da8966fd7708 +docfiles size=611 + RELOC/doc/latex/pst-poker/Changes + RELOC/doc/latex/pst-poker/README details="Readme" + RELOC/doc/latex/pst-poker/pst-poker-doc.bib + RELOC/doc/latex/pst-poker/pst-poker-doc.pdf details="Package documentation" + RELOC/doc/latex/pst-poker/pst-poker-doc.tex +runfiles size=1277 + RELOC/tex/latex/pst-poker/Jack-club-bw.eps + RELOC/tex/latex/pst-poker/Jack-club-color.eps + RELOC/tex/latex/pst-poker/Jack-diamond-bw.eps + RELOC/tex/latex/pst-poker/Jack-diamond-color.eps + RELOC/tex/latex/pst-poker/Jack-heart-bw.eps + RELOC/tex/latex/pst-poker/Jack-heart-color.eps + RELOC/tex/latex/pst-poker/Jack-spade-bw.eps + RELOC/tex/latex/pst-poker/Jack-spade-color.eps + RELOC/tex/latex/pst-poker/King-club-bw.eps + RELOC/tex/latex/pst-poker/King-club-color.eps + RELOC/tex/latex/pst-poker/King-diamond-bw.eps + RELOC/tex/latex/pst-poker/King-diamond-color.eps + RELOC/tex/latex/pst-poker/King-heart-bw.eps + RELOC/tex/latex/pst-poker/King-heart-color.eps + RELOC/tex/latex/pst-poker/King-spade-bw.eps + RELOC/tex/latex/pst-poker/King-spade-color.eps + RELOC/tex/latex/pst-poker/Queen-club-bw.eps + RELOC/tex/latex/pst-poker/Queen-club-color.eps + RELOC/tex/latex/pst-poker/Queen-diamond-bw.eps + RELOC/tex/latex/pst-poker/Queen-diamond-color.eps + RELOC/tex/latex/pst-poker/Queen-heart-bw.eps + RELOC/tex/latex/pst-poker/Queen-heart-color.eps + RELOC/tex/latex/pst-poker/Queen-spade-bw.eps + RELOC/tex/latex/pst-poker/Queen-spade-color.eps + RELOC/tex/latex/pst-poker/pst-poker.sty +catalogue-ctan /graphics/pstricks/contrib/pst-poker +catalogue-date 2018-08-03 21:43:01 +0200 +catalogue-license lgpl3 +catalogue-topics pstricks games +catalogue-version 0.03 + +name pst-poly +category Package +revision 35062 +shortdesc Polygons with PSTricks +relocated 1 +longdesc This PSTricks package provides a really rather simple command +longdesc \PstPolygon that will draw various regular and non-regular +longdesc polygons (according to command parameters); various shortcuts +longdesc to commonly-used polygons are provided, as well as a command +longdesc \pspolygonbox that frames text with a polygon. The package uses +longdesc the xkeyval package for argument decoding. +containersize 3176 +containerchecksum badd0fcc2b439ba270d5375703f91df9009fb7eae920915eab8757185da0c6665c34d530d9b4d8bf469767dd79ee834ded104a0fd98243a1e8a17cda47be0f79 +doccontainersize 141292 +doccontainerchecksum 0facae2d565a22853a6e455534065f5954571311898e0850fcee7b18909f1cd0fe06b116138faedda6767d8514d44f7d843c13985f8723ccb8ec03a81bbaa46a +docfiles size=53 + RELOC/doc/generic/pst-poly/Changes + RELOC/doc/generic/pst-poly/README details="Package Readme" + RELOC/doc/generic/pst-poly/pst-poly-doc.bib + RELOC/doc/generic/pst-poly/pst-poly-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-poly/pst-poly-doc.tex +runfiles size=4 + RELOC/tex/generic/pst-poly/pst-poly.tex + RELOC/tex/latex/pst-poly/pst-poly.sty +catalogue-ctan /graphics/pstricks/contrib/pst-poly +catalogue-date 2018-09-15 13:09:48 +0200 +catalogue-license lppl +catalogue-topics maths pstricks +catalogue-version 1.63 + +name pst-pulley +category Package +revision 45316 +shortdesc Plot pulleys, using PSTricks +relocated 1 +longdesc The package enables the user to draw pulley systems with up to +longdesc 6 pulleys. The pulley diagrams are labelled with the physical +longdesc properties of the system. The package uses pstricks and +longdesc requires several PSTricks-related packages. +containersize 4764 +containerchecksum 4253283884b3cc36801dd7d462655d3cccbdaa70af0219765a3225c8b928e49cf0964d4db4728ef01e06ed33865facc46bd767f4d1cdbddfbaf0213e4ead012e +doccontainersize 122132 +doccontainerchecksum 28a4654d2219e056ab1a53bc0fbb60feb919b3dc26b1e542b561cdb6d3f0b1abd050afdaa99a9ba5b374462cc451c1681622f6c6c3f6aef26738a36a845648a2 +docfiles size=46 + RELOC/doc/generic/pst-pulley/Changes + RELOC/doc/generic/pst-pulley/README.md details="Readme" + RELOC/doc/generic/pst-pulley/pst-pulley-doc.bib + RELOC/doc/generic/pst-pulley/pst-pulley-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-pulley/pst-pulley-doc.tex +runfiles size=16 + RELOC/tex/generic/pst-pulley/pst-pulley.tex + RELOC/tex/latex/pst-pulley/pst-pulley.sty +catalogue-ctan /graphics/pstricks/contrib/pst-pulley +catalogue-date 2018-09-15 13:11:53 +0200 +catalogue-license lppl1.3 +catalogue-topics graphics-use pstricks diagram +catalogue-version 0.02 + +name pst-qtree +category Package +revision 15878 +shortdesc Simple syntax for trees +relocated 1 +longdesc The package provides a qtree-like front end for PSTricks. +containersize 1844 +containerchecksum 5bbb7fdd477850e4e6c2bc395665c50668a427cbe176122d160fdfc2aa2f322ed83ec43929dd185fa1dec439bec3f5de719aa8d640d0bc498aa7ac9f9089cd5b +doccontainersize 24596 +doccontainerchecksum 4a0bba9fa7072e5860403c3b22a23947045106fd4b89781af848d17afbc5ac456c77617979ebcb80afe07620ab8b990e868c688301c4637804d32790fa4bd7f4 +docfiles size=13 + RELOC/doc/generic/pst-qtree/CHANGES + RELOC/doc/generic/pst-qtree/LICENSE + RELOC/doc/generic/pst-qtree/pst-qtree-manual.pdf details="Package documentation" + RELOC/doc/generic/pst-qtree/pst-qtree-manual.tex +runfiles size=2 + RELOC/tex/generic/pst-qtree/pst-qtree.tex + RELOC/tex/latex/pst-qtree/pst-qtree.sty +catalogue-ctan /graphics/pstricks/contrib/pst-qtree +catalogue-date 2018-09-15 13:13:35 +0200 +catalogue-license gpl +catalogue-topics tree + +name pst-rputover +category Package +revision 44724 +shortdesc Place text over objects without obscuring background colors +relocated 1 +longdesc This is a PSTricks package which allows to place text over +longdesc objects without obscuring background colors. +containersize 2600 +containerchecksum 3bd94d3a37fc8bbabba547a0072618c6e2bd2f6052f95cd4dd8cb973f64c4e97d0c7ef72fbe425df032aacbb8cb109b0eb06ee304b725ddcda6489da2c893934 +doccontainersize 85380 +doccontainerchecksum 16bc8c2500c19cdaeb701da98e4de0ffdc13116a0ed5802beae395e9664ee16acc6341db7d2c3ea7b2a16b0afac35503cd5a53e1ce1fbd67598be4c890b317d9 +docfiles size=38 + RELOC/doc/generic/pst-rputover/Changes.txt + RELOC/doc/generic/pst-rputover/README.md details="Readme" + RELOC/doc/generic/pst-rputover/pst-rputover-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-rputover/pst-rputover-doc.tex +runfiles size=3 + RELOC/tex/generic/pst-rputover/pst-rputover.tex + RELOC/tex/latex/pst-rputover/pst-rputover.sty +catalogue-ctan /graphics/pstricks/contrib/pst-rputover +catalogue-date 2017-07-01 05:09:50 +0200 +catalogue-license lppl1.3c +catalogue-topics pstricks +catalogue-version 1.0 + +name pst-rubans +category Package +revision 23464 +shortdesc Draw three-dimensional ribbons +relocated 1 +longdesc The package uses PStricks and pst-solides3d to draw three +longdesc dimensional ribbons on a cylinder, torus, sphere, cone or +longdesc paraboloid. The width of the ribbon, the number of turns, the +longdesc colour of the outer and the inner surface of the ribbon may be +longdesc set. In the case of circular and conical helices, one may also +longdesc choose the number of ribbons. +containersize 3136 +containerchecksum 360f1a04170358b976bc8b6d4d4ee138398f6b018b5611811fc41d90475c474e89fed214708d11b47bdb58cfcf983b37c3338c4d5b13b13825f3388d1562372b +doccontainersize 565612 +doccontainerchecksum 086f80c0b99a0043769b159b6f52de125f01e6c3b00189b0924c62961b934121b09a2f1634fdeef737b2fc468c392051f8b117e1de5d7e6d223e79ff443c2cae +docfiles size=152 + RELOC/doc/generic/pst-rubans/Changes + RELOC/doc/generic/pst-rubans/README + RELOC/doc/generic/pst-rubans/pst-rubans-doc.bib + RELOC/doc/generic/pst-rubans/pst-rubans-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-rubans/pst-rubans-doc.tex +srccontainersize 960 +srccontainerchecksum f62e689c044a0600f4e303251329033e705f3d08b025214af34cc85488f347324d552594a321f88ecf91845b5db5011875436ba9fdb819dbe038dbbe012c4676 +srcfiles size=1 + RELOC/source/generic/pst-rubans/Makefile +runfiles size=5 + RELOC/tex/generic/pst-rubans/pst-rubans.tex + RELOC/tex/latex/pst-rubans/pst-rubans.sty +catalogue-ctan /graphics/pstricks/contrib/pst-rubans +catalogue-date 2018-09-15 13:15:39 +0200 +catalogue-license lppl +catalogue-topics graphics pstricks +catalogue-version 1.2 + +name pst-shell +category Package +revision 42840 +shortdesc pst-shell: plotting sea shells +relocated 1 +longdesc pst-shell is a PSTricks related package to draw seashells in 3D +longdesc view: Argonauta, Epiteonium, Lyria, Turritella, Tonna, +longdesc Achatina, Oxystele, Conus, Ammonite, Codakia, Escalaria, +longdesc Helcion, Natalina, Planorbis, and Nautilus, all with different +longdesc parameters. pst-shell needs pst-solides3d and an up-to-date +longdesc PSTricks, which should be part of your local TeX installation, +longdesc otherwise get it from a CTAN server. +containersize 3140 +containerchecksum d91fc81c2140e0ff4aae4e190b4816887f0c068df42022b6b6545adec400920a69e81bca1373efae4249a95cfb1b7f6b712497d72510aec79954feb7a1ec07d2 +doccontainersize 15919660 +doccontainerchecksum a788f994d6003ca6a650cbe042b57a712fb91da2146b21fe3023b464487e5a56699a2aeea56be77aa26919f6c1fcaca6d49bd3ea33ccd2fd7a06e5f95a917803 +docfiles size=5980 + RELOC/doc/generic/pst-shell/Changes + RELOC/doc/generic/pst-shell/README.md details="Readme" + RELOC/doc/generic/pst-shell/data/cockle-2-couleurs.dat + RELOC/doc/generic/pst-shell/data/cockle-2-faces.dat + RELOC/doc/generic/pst-shell/data/cockle-2-io.dat + RELOC/doc/generic/pst-shell/data/cockle-2-sommets.dat + RELOC/doc/generic/pst-shell/data/cockle-couleurs.dat + RELOC/doc/generic/pst-shell/data/cockle-faces.dat + RELOC/doc/generic/pst-shell/data/cockle-io.dat + RELOC/doc/generic/pst-shell/data/cockle-sommets.dat + RELOC/doc/generic/pst-shell/data/nautile-180-24-couleurs.dat + RELOC/doc/generic/pst-shell/data/nautile-180-24-faces.dat + RELOC/doc/generic/pst-shell/data/nautile-180-24-io.dat + RELOC/doc/generic/pst-shell/data/nautile-180-24-sommets.dat + RELOC/doc/generic/pst-shell/data/nautile-360-36-couleurs.dat + RELOC/doc/generic/pst-shell/data/nautile-360-36-faces.dat + RELOC/doc/generic/pst-shell/data/nautile-360-36-io.dat + RELOC/doc/generic/pst-shell/data/nautile-360-36-sommets.dat + RELOC/doc/generic/pst-shell/data/testnautile-360-36-couleurs.dat + RELOC/doc/generic/pst-shell/data/testnautile-360-36-faces.dat + RELOC/doc/generic/pst-shell/data/testnautile-360-36-io.dat + RELOC/doc/generic/pst-shell/data/testnautile-360-36-sommets.dat + RELOC/doc/generic/pst-shell/images/shell.eps + RELOC/doc/generic/pst-shell/images/shell.pdf + RELOC/doc/generic/pst-shell/pst-shell-doc.bib + RELOC/doc/generic/pst-shell/pst-shell-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-shell/pst-shell-doc.tex + RELOC/doc/generic/pst-shell/zz.tex +srccontainersize 1100 +srccontainerchecksum 0a5173dcb9d58eca24cae2c385db9f0225bd5feca124a3f86e3f4991a689c6bf897b48ee2c756746e337a7aa6ec7758b3d54c90f7895b841fd88c3c74eb6bdbb +srcfiles size=1 + RELOC/source/generic/pst-shell/Makefile +runfiles size=4 + RELOC/dvips/pst-shell/pst-shell.pro + RELOC/tex/generic/pst-shell/pst-shell.tex + RELOC/tex/latex/pst-shell/pst-shell.sty +catalogue-ctan /graphics/pstricks/contrib/pst-shell +catalogue-date 2016-12-29 05:38:19 +0100 +catalogue-license lppl +catalogue-topics graphics-in-tex colour pstricks dvips-special xetex +catalogue-version 0.03 + +name pst-sigsys +category Package +revision 21667 +shortdesc Support of signal processing-related disciplines +relocated 1 +longdesc The package offers a collection of useful macros for +longdesc disciplines related to signal processing. It defines macros for +longdesc plotting a sequence of numbers, drawing the pole-zero diagram +longdesc of a system, shading the region of convergence, creating an +longdesc adder or a multiplier node, placing a framed node at a given +longdesc coordinate, creating an up-sampler or a down-sampler node, +longdesc drawing the block diagram of a system, drawing adaptive +longdesc systems, sequentially connecting a list of nodes, and +longdesc connecting a list of nodes using any node-connecting macro. +containersize 4696 +containerchecksum db3d3dd31c4166a132a174cc9b2a86fb226496c663c1ba95b36f6590e18799c5eb4e8587ccc3db5de0d3833729ffa90080cf037519b2a7ba24c70fe381aedad9 +doccontainersize 286952 +doccontainerchecksum ae2869eaa649898daf057875d28fef1be5f20caf0b7385ba7723e9be51e534cc69b953bba8ad4fa6d04a0d67f85659c82ec08043ba760279a6759c20a2c27d0f +docfiles size=144 + RELOC/doc/generic/pst-sigsys/Changes + RELOC/doc/generic/pst-sigsys/README details="Readme" + RELOC/doc/generic/pst-sigsys/pst-sigsys-doc.bib + RELOC/doc/generic/pst-sigsys/pst-sigsys-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-sigsys/pst-sigsys-doc.tex +runfiles size=6 + RELOC/tex/generic/pst-sigsys/pst-sigsys.tex + RELOC/tex/latex/pst-sigsys/pst-sigsys.sty +catalogue-ctan /graphics/pstricks/contrib/pst-sigsys +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics physics engineering pstricks +catalogue-version 1.4 + +name pst-slpe +category Package +revision 24391 +shortdesc Sophisticated colour gradients +relocated 1 +longdesc This PStricks package covers all the colour gradient +longdesc functionality of pst-grad (part of the base PSTricks +longdesc distribution), and provides the following facilities: it +longdesc permits the user to specify an arbitrary number of colours, +longdesc along with the points at which they are to be reached; it +longdesc converts between RGB and HSV behind the scenes; it provides +longdesc concentric and radial gradients; it provides a command \psBall +longdesc that generates bullets with a three-dimensional appearance; and +longdesc uses the xkeyval package for the extended key handling. +containersize 3176 +containerchecksum 43905d7525acca6d10261e169a1c1ec1ee0cf0d4b7fcd05643dea3f705331588d774649ad5ca560111269025e92a1e91796693c5246e4d2b2816dd33d4eed87b +doccontainersize 244888 +doccontainerchecksum 377a89c5dcc49e587e3e2d2e1221c289da9dc6b3cc0565bd182d0ec356835309c12eecf68680ac4083c906701365de0068608ee1e49ea9fb95c866a188931a67 +docfiles size=72 + RELOC/doc/generic/pst-slpe/Changes + RELOC/doc/generic/pst-slpe/README details="Readme" + RELOC/doc/generic/pst-slpe/pst-slpe.pdf details="Package documentation" +srccontainersize 12612 +srccontainerchecksum f8579912fb5477394f8eb150de776b9a15dad8f67b821a073748910388e06c70b23163fdabe260d55216add2924879f5380915c5d3ebbb21f0da3c65c6f82f73 +srcfiles size=12 + RELOC/source/generic/pst-slpe/Makefile + RELOC/source/generic/pst-slpe/pst-slpe.dtx + RELOC/source/generic/pst-slpe/pst-slpe.ins +runfiles size=5 + RELOC/dvips/pst-slpe/pst-slpe.pro + RELOC/tex/generic/pst-slpe/pst-slpe.tex + RELOC/tex/latex/pst-slpe/pst-slpe.sty +catalogue-ctan /graphics/pstricks/contrib/pst-slpe +catalogue-date 2018-09-15 13:19:48 +0200 +catalogue-license lppl +catalogue-topics colour pstricks +catalogue-version 1.31 + +name pst-solarsystem +category Package +revision 45097 +shortdesc Plot the solar system for a specific date +relocated 1 +longdesc The package uses pstricks to produce diagrams of the visible +longdesc planets, projected on the plane of the ecliptic. It is not +longdesc possible to represent all the planets in their real +longdesc proportions, so only Mercury, Venus, Earth and Mars have their +longdesc orbits in correct proportions and their relative sizes are +longdesc observed. Saturn and Jupiter are in the right direction, but +longdesc not in the correct size. +containersize 4908 +containerchecksum 48c38ec076b20b28aef50c207a77069cf5053a209f4ddcb3adb5a8e01f2b6510abb388075c7e5c90b6b48ecdf6f92764836dd58fb51181e28afbbe6d47600abd +doccontainersize 267348 +doccontainerchecksum 581e73c180e455adb09453c7f535de5a3f540c3d8046ea0a1667f9f13390cf63297b9073ef66d93f4c6b2aadffad3de24000a49cbbbe374bb7af75402fb6bef1 +docfiles size=74 + RELOC/doc/generic/pst-solarsystem/Changes + RELOC/doc/generic/pst-solarsystem/README details="Readme" + RELOC/doc/generic/pst-solarsystem/pst-solarsystem-doc.bib + RELOC/doc/generic/pst-solarsystem/pst-solarsystem-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-solarsystem/pst-solarsystem-doc.tex +runfiles size=6 + RELOC/dvips/pst-solarsystem/pst-solarsystem.pro + RELOC/tex/generic/pst-solarsystem/pst-solarsystem.tex + RELOC/tex/latex/pst-solarsystem/pst-solarsystem.sty +catalogue-ctan /graphics/pstricks/contrib/pst-solarsystem +catalogue-date 2018-09-15 13:22:10 +0200 +catalogue-license lppl +catalogue-topics astronomy pstricks +catalogue-version 0.13 + +name pst-solides3d +category Package +revision 49520 +shortdesc Draw perspective views of 3D solids +relocated 1 +longdesc The package is designed to draw solids in 3d perspective. +longdesc Features include: create primitive solids; create solids by +longdesc including a list of its vertices and faces; faces of solids and +longdesc surfaces can be colored by choosing from a very large palette +longdesc of colors; draw parametric surfaces in algebraic and reverse +longdesc polish notation; create explicit and parameterized algebraic +longdesc functions drawn in 2 or 3 dimensions; project text onto a plane +longdesc or onto the faces of a solid; support for including external +longdesc database files. +containersize 55392 +containerchecksum 7e725978c030da337d882e05069b749a4398b1a1c479a50db34fc63801cb77b78630e2d1dfd0c3a39aeab3e931236dad91b6c722c4d6e06dcfd867f007ce99f6 +doccontainersize 6260992 +doccontainerchecksum a00138b042c58700438cfb3f094f836b029d31ee3de40ed290d3f5475a31cb3fc949c13402c35d088dd1cacf13c66bcee934a0ad59e97ceee5ce9db1f99e7c4d +docfiles size=2488 + RELOC/doc/generic/pst-solides3d/Changes + RELOC/doc/generic/pst-solides3d/README details="Readme" + RELOC/doc/generic/pst-solides3d/data/Pyramid-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/Pyramid-faces.dat + RELOC/doc/generic/pst-solides3d/data/Pyramid-io.dat + RELOC/doc/generic/pst-solides3d/data/Pyramid-sommets.dat + RELOC/doc/generic/pst-solides3d/data/cubeHexagone-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/cubeHexagone-faces.dat + RELOC/doc/generic/pst-solides3d/data/cubeHexagone-io.dat + RELOC/doc/generic/pst-solides3d/data/cubeHexagone-sommets.dat + RELOC/doc/generic/pst-solides3d/data/cubecolor-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/cubecolor-faces.dat + RELOC/doc/generic/pst-solides3d/data/cubecolor-io.dat + RELOC/doc/generic/pst-solides3d/data/cubecolor-sommets.dat + RELOC/doc/generic/pst-solides3d/data/faces_nefer.dat + RELOC/doc/generic/pst-solides3d/data/faces_nefer_levres.dat + RELOC/doc/generic/pst-solides3d/data/faces_nefer_sourcils.dat + RELOC/doc/generic/pst-solides3d/data/faces_nefer_yeux.dat + RELOC/doc/generic/pst-solides3d/data/fusee62-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/fusee62-faces.dat + RELOC/doc/generic/pst-solides3d/data/fusee62-io.dat + RELOC/doc/generic/pst-solides3d/data/fusee62-sommets.dat + RELOC/doc/generic/pst-solides3d/data/geodedual44-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/geodedual44-faces.dat + RELOC/doc/generic/pst-solides3d/data/geodedual44-io.dat + RELOC/doc/generic/pst-solides3d/data/geodedual44-sommets.dat + RELOC/doc/generic/pst-solides3d/data/horoptere-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/horoptere-faces.dat + RELOC/doc/generic/pst-solides3d/data/horoptere-io.dat + RELOC/doc/generic/pst-solides3d/data/horoptere-sommets.dat + RELOC/doc/generic/pst-solides3d/data/paraboloid-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/paraboloid-faces.dat + RELOC/doc/generic/pst-solides3d/data/paraboloid-io.dat + RELOC/doc/generic/pst-solides3d/data/paraboloid-sommets.dat + RELOC/doc/generic/pst-solides3d/data/rocket.obj + RELOC/doc/generic/pst-solides3d/data/slicePyramid-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/slicePyramid-faces.dat + RELOC/doc/generic/pst-solides3d/data/slicePyramid-io.dat + RELOC/doc/generic/pst-solides3d/data/slicePyramid-sommets.dat + RELOC/doc/generic/pst-solides3d/data/sommets_nefer.dat + RELOC/doc/generic/pst-solides3d/data/tore1836-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/tore1836-faces.dat + RELOC/doc/generic/pst-solides3d/data/tore1836-io.dat + RELOC/doc/generic/pst-solides3d/data/tore1836-sommets.dat + RELOC/doc/generic/pst-solides3d/data/tore1860-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/tore1860-faces.dat + RELOC/doc/generic/pst-solides3d/data/tore1860-io.dat + RELOC/doc/generic/pst-solides3d/data/tore1860-sommets.dat + RELOC/doc/generic/pst-solides3d/data/tore1860lemniscate-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/tore1860lemniscate-faces.dat + RELOC/doc/generic/pst-solides3d/data/tore1860lemniscate-io.dat + RELOC/doc/generic/pst-solides3d/data/tore1860lemniscate-sommets.dat + RELOC/doc/generic/pst-solides3d/data/tore1860ovales-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/tore1860ovales-faces.dat + RELOC/doc/generic/pst-solides3d/data/tore1860ovales-io.dat + RELOC/doc/generic/pst-solides3d/data/tore1860ovales-sommets.dat + RELOC/doc/generic/pst-solides3d/data/tore1860part-couleurs.dat + RELOC/doc/generic/pst-solides3d/data/tore1860part-faces.dat + RELOC/doc/generic/pst-solides3d/data/tore1860part-io.dat + RELOC/doc/generic/pst-solides3d/data/tore1860part-sommets.dat + RELOC/doc/generic/pst-solides3d/images/kepler.eps + RELOC/doc/generic/pst-solides3d/images/parrot.eps + RELOC/doc/generic/pst-solides3d/images/tiger.eps + RELOC/doc/generic/pst-solides3d/pst-solides3d-doc.bib + RELOC/doc/generic/pst-solides3d/pst-solides3d-doc.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/pst-solides3d/pst-solides3d-doc.tex + RELOC/doc/generic/pst-solides3d/text/chapter-1-en.tex + RELOC/doc/generic/pst-solides3d/text/chapter-2-en.tex + RELOC/doc/generic/pst-solides3d/text/par-acknowledgements-en.tex + RELOC/doc/generic/pst-solides3d/text/par-affinage-en.tex + RELOC/doc/generic/pst-solides3d/text/par-anneaux-en.tex + RELOC/doc/generic/pst-solides3d/text/par-annoterschema-en.tex + RELOC/doc/generic/pst-solides3d/text/par-axes3D-en.tex + RELOC/doc/generic/pst-solides3d/text/par-chanfrein-en.tex + RELOC/doc/generic/pst-solides3d/text/par-codejps-en.tex + RELOC/doc/generic/pst-solides3d/text/par-colorierfacettes-en.tex + RELOC/doc/generic/pst-solides3d/text/par-commandestrace-en.tex + RELOC/doc/generic/pst-solides3d/text/par-couleurs-en.tex + RELOC/doc/generic/pst-solides3d/text/par-courbeR3-en.tex + RELOC/doc/generic/pst-solides3d/text/par-cylindres-cones-en.tex + RELOC/doc/generic/pst-solides3d/text/par-datfile-en.tex + RELOC/doc/generic/pst-solides3d/text/par-definirfonction-en.tex + RELOC/doc/generic/pst-solides3d/text/par-definirplanquelconque-en.tex + RELOC/doc/generic/pst-solides3d/text/par-definitionmaillage-en.tex + RELOC/doc/generic/pst-solides3d/text/par-eclairageponctuel-en.tex + RELOC/doc/generic/pst-solides3d/text/par-enleverfacettes-en.tex + RELOC/doc/generic/pst-solides3d/text/par-extensions-en.tex + RELOC/doc/generic/pst-solides3d/text/par-face-en.tex + RELOC/doc/generic/pst-solides3d/text/par-fusion-en.tex + RELOC/doc/generic/pst-solides3d/text/par-fusionjps-en.tex + RELOC/doc/generic/pst-solides3d/text/par-geode-en.tex + RELOC/doc/generic/pst-solides3d/text/par-grille-en.tex + RELOC/doc/generic/pst-solides3d/text/par-image2d-en.tex + RELOC/doc/generic/pst-solides3d/text/par-implicitsurface-en.tex + RELOC/doc/generic/pst-solides3d/text/par-keywords-en.tex + RELOC/doc/generic/pst-solides3d/text/par-ligne3D-en.tex + RELOC/doc/generic/pst-solides3d/text/par-lignedeniveau-en.tex + RELOC/doc/generic/pst-solides3d/text/par-modes-en.tex + RELOC/doc/generic/pst-solides3d/text/par-new-en.tex + RELOC/doc/generic/pst-solides3d/text/par-nommersolide-en.tex + RELOC/doc/generic/pst-solides3d/text/par-numeroterfacettes-en.tex + RELOC/doc/generic/pst-solides3d/text/par-opacity-en.tex + RELOC/doc/generic/pst-solides3d/text/par-parametres-en.tex + RELOC/doc/generic/pst-solides3d/text/par-plan-en.tex + RELOC/doc/generic/pst-solides3d/text/par-poems-en.tex + RELOC/doc/generic/pst-solides3d/text/par-point-en.tex + RELOC/doc/generic/pst-solides3d/text/par-pointagesommets-en.tex + RELOC/doc/generic/pst-solides3d/text/par-positionnerpointconnu-en.tex + RELOC/doc/generic/pst-solides3d/text/par-positionnersolide-en.tex + RELOC/doc/generic/pst-solides3d/text/par-prisme-en.tex + RELOC/doc/generic/pst-solides3d/text/par-projectionangledroit-en.tex + RELOC/doc/generic/pst-solides3d/text/par-projectioncercle-en.tex + RELOC/doc/generic/pst-solides3d/text/par-projectioncourbe-en.tex + RELOC/doc/generic/pst-solides3d/text/par-projectiondroite-en.tex + RELOC/doc/generic/pst-solides3d/text/par-projectionligne-en.tex + RELOC/doc/generic/pst-solides3d/text/par-projectionpoint-en.tex + RELOC/doc/generic/pst-solides3d/text/par-projectionpolygone-en.tex + RELOC/doc/generic/pst-solides3d/text/par-projectiontexte-en.tex + RELOC/doc/generic/pst-solides3d/text/par-projectionvecteur-en.tex + RELOC/doc/generic/pst-solides3d/text/par-projectionvisibility-en.tex + RELOC/doc/generic/pst-solides3d/text/par-projpresentation-en.tex + RELOC/doc/generic/pst-solides3d/text/par-ruban-en.tex + RELOC/doc/generic/pst-solides3d/text/par-section-en.tex + RELOC/doc/generic/pst-solides3d/text/par-solidescreux-en.tex + RELOC/doc/generic/pst-solides3d/text/par-solidespredefinis-en.tex + RELOC/doc/generic/pst-solides3d/text/par-surfaces-en.tex + RELOC/doc/generic/pst-solides3d/text/par-surfacesparametrees-en.tex + RELOC/doc/generic/pst-solides3d/text/par-tracerpolygone-en.tex + RELOC/doc/generic/pst-solides3d/text/par-transform-en.tex + RELOC/doc/generic/pst-solides3d/text/par-transformpointconnu-en.tex + RELOC/doc/generic/pst-solides3d/text/par-tronque-en.tex + RELOC/doc/generic/pst-solides3d/text/par-tube-en.tex + RELOC/doc/generic/pst-solides3d/text/par-vecteur-en.tex +runfiles size=81 + RELOC/dvips/pst-solides3d/pst-implicitsurface.pro + RELOC/dvips/pst-solides3d/pst-solides3d.pro + RELOC/tex/generic/pst-solides3d/pst-solides3d.tex + RELOC/tex/latex/pst-solides3d/pst-solides3d.sty +catalogue-contact-home http://tug.org/PSTricks/main.cgi/ +catalogue-ctan /graphics/pstricks/contrib/pst-solides3d +catalogue-date 2018-12-27 17:25:55 +0100 +catalogue-license lppl1.3 +catalogue-topics graphics-3d pstricks +catalogue-version 4.34a + +name pst-soroban +category Package +revision 15878 +shortdesc Draw a Soroban using PSTricks +relocated 1 +longdesc The package uses PSTricks to draw a Japanese abacus, or +longdesc soroban. The soroban is still used in Japan today. +containersize 1652 +containerchecksum c21d3f0e19c4cfcf79563e23e760178de6e39f1f42147f534946fef315c0514968548b30d24eb345f4f2c5cb7807fef4f0d45d8e345e9523806ce1e054d8cf11 +doccontainersize 84524 +doccontainerchecksum b7c1422ac43df949426581f7dbe749300093ce2d20145df768e21e893b9d2c419ffa8ab16c60fa509f09317bee4c7f80bed4920b92a5f9f2e9289eb93cec5eec +docfiles size=29 + RELOC/doc/generic/pst-soroban/Changes + RELOC/doc/generic/pst-soroban/README details="Readme" + RELOC/doc/generic/pst-soroban/pst-soroban-doc.bib + RELOC/doc/generic/pst-soroban/pst-soroban-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-soroban/pst-soroban-doc.tex +srccontainersize 824 +srccontainerchecksum 49fb276ae7277b1508ecdcc3132d103e26204f314f8779a556335e1875dd5c3c6768b6b152264ba5643d2c39eb275f7ef193ecb6a292135abba2d60be508d654 +srcfiles size=1 + RELOC/source/generic/pst-soroban/Makefile +runfiles size=2 + RELOC/tex/latex/pst-soroban/pst-soroban.sty +catalogue-ctan /graphics/pstricks/contrib/pst-soroban +catalogue-date 2018-09-15 13:24:17 +0200 +catalogue-license lppl +catalogue-topics diagram pstricks +catalogue-version 1.0 + +name pst-spectra +category Package +revision 15878 +shortdesc Draw continuum, emission and absorption spectra with PSTricks +relocated 1 +longdesc The package is a PSTricks extension, based on a NASA lines +longdesc database. It allows you to draw continuum, emission and +longdesc absorption spectra. A Total of 16 880 visible lines from 99 +longdesc elements can be displayed. The package requires the xkeyval +longdesc package for decoding its arguments. +containersize 77276 +containerchecksum 325e4f07e9c2788d571c6105e1fdc3a097881d1b472b038c365c65a84a4e69e15866750720b2c86f5b20e00fc3a054f619e79b6564fc3712194a1a5d05edf248 +doccontainersize 185432 +doccontainerchecksum f3655f399c4986b122253c4849bcb15d0ea4d2390b0ec3b8328d8255e5e2d44481198d63c6ad9dc10365095414267285ff02a944c1bf5bfd8c458d1a7cd5a0c5 +docfiles size=54 + RELOC/doc/generic/pst-spectra/README details="Package README" + RELOC/doc/generic/pst-spectra/pst-spectra.pdf details="Package documentation" language="fr" + RELOC/doc/generic/pst-spectra/pst-spectraEN.pdf details="Package outline" language="en" +runfiles size=68 + RELOC/dvips/pst-spectra/pst-spectra.pro + RELOC/tex/generic/pst-spectra/pst-spectra.tex + RELOC/tex/latex/pst-spectra/pst-spectra.sty +catalogue-ctan /graphics/pstricks/contrib/pst-spectra +catalogue-date 2018-09-15 13:26:13 +0200 +catalogue-license lppl +catalogue-topics physics pstricks +catalogue-version 0.91 + +name pst-spinner +category Package +revision 44507 +shortdesc Drawing a fidget spinner +relocated 1 +longdesc This package aims to propose a model of the fidget spinner +longdesc gadget. It exists under different forms with 2, 3 poles and +longdesc even more. We chose the most popular model: the triple Fidget +longdesc Spinner. You can run the PSTricks related documents with +longdesc XeLaTeX. +containersize 2820 +containerchecksum 7014c371182a354d11bc76c60bab01321d60af9559098a353c3e7a5a88d2e251f9362a24872b60d2214450ad3d423f3868d219bf109f0524a6431db17ce1c881 +doccontainersize 1383000 +doccontainerchecksum 90ac8da08b1be6dbf3bf126ed49279fd0f593a586a3bb7e58b89f9b9da361637ab4c9aa133ee2f798b7d49c420a4765cf2fd9936410d37ac955d661196f1dffe +docfiles size=373 + RELOC/doc/generic/pst-spinner/Changes + RELOC/doc/generic/pst-spinner/README details="Readme" + RELOC/doc/generic/pst-spinner/images/cercle-chromatique.eps + RELOC/doc/generic/pst-spinner/images/spirales-hsb.eps + RELOC/doc/generic/pst-spinner/pst-spinner-doc.bib + RELOC/doc/generic/pst-spinner/pst-spinner-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-spinner/pst-spinner-doc.tex +runfiles size=3 + RELOC/dvips/pst-spinner/pst-spinner.pro + RELOC/tex/generic/pst-spinner/pst-spinner.tex + RELOC/tex/latex/pst-spinner/pst-spinner.sty +catalogue-contact-announce http://tug.org/PSTricks/ +catalogue-contact-home http://tug.org/PSTricks/ +catalogue-contact-repository http://comedy.dante.de/~herbert/texnik/ +catalogue-contact-support http://tug.org/mailman/listinfo/pstricks +catalogue-ctan /graphics/pstricks/contrib/pst-spinner +catalogue-date 2017-06-06 19:56:03 +0200 +catalogue-license lppl +catalogue-topics graphics pstricks +catalogue-version 1.02 + +name pst-spirograph +category Package +revision 35026 +shortdesc Drawing hypotrochoids as with a spirograph +relocated 1 +longdesc The package simulates the action of a spirograph, which is a +longdesc geometric drawing toy that produces mathematical roulette +longdesc curves (technically known as hypotrochoids and epitrochoids). +containersize 4296 +containerchecksum 701964d1fad3d757fab421a9458c5983e11628d965ddabc2dfaec0259b829ed96f699a2361043c1f08024538b10d9b0ad36e921b704543288da5c5d5cb6e58fa +doccontainersize 5787516 +doccontainerchecksum 2b3a0bafb00c64d1ce883995f983b626390ad73492bb96ace3d2cc5df05e91bfb6f74d96269644b99f56ba0a670a94dbedab663c3dc3bff3e099d141185ae331 +docfiles size=2568 + RELOC/doc/generic/pst-spirograph/Changes + RELOC/doc/generic/pst-spirograph/README details="Readme" + RELOC/doc/generic/pst-spirograph/animation/README.anim + RELOC/doc/generic/pst-spirograph/animation/anim1.tex + RELOC/doc/generic/pst-spirograph/animation/anim2.tex + RELOC/doc/generic/pst-spirograph/animation/anim3.tex + RELOC/doc/generic/pst-spirograph/animation/anim4.tex + RELOC/doc/generic/pst-spirograph/animation/anim5.tex + RELOC/doc/generic/pst-spirograph/animation/anim6.tex + RELOC/doc/generic/pst-spirograph/animation/anim7.tex + RELOC/doc/generic/pst-spirograph/animation/anim8.tex + RELOC/doc/generic/pst-spirograph/animation/runall.sh + RELOC/doc/generic/pst-spirograph/pst-spirograph-doc.bib + RELOC/doc/generic/pst-spirograph/pst-spirograph-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-spirograph/pst-spirograph-doc.tex +runfiles size=6 + RELOC/dvips/pst-spirograph/pst-spirograph.pro + RELOC/tex/generic/pst-spirograph/pst-spirograph.tex + RELOC/tex/latex/pst-spirograph/pst-spirograph.sty +catalogue-ctan /graphics/pstricks/contrib/pst-spirograph +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-in-tex pstricks +catalogue-version 0.41 + +name pst-stru +category Package +revision 38613 +shortdesc Civil engineering diagrams, using PSTricks +relocated 1 +longdesc This PSTricks-based package provides facilities to draw +longdesc structural schemes in civil engineering analysis, for beams, +longdesc portals, arches and piles. +containersize 3336 +containerchecksum bc0961c1f9afb68f66c4af9aa9d37cd8cc7c6047f55920d12cfb14a18b2c2288c8468c8d9f0e21eb7e395eaa884f0216b37a6fa947fb2c5ef51d57996ba8bb5f +doccontainersize 160184 +doccontainerchecksum b9352eb01e9d80049a474e0b5a513bb8835be16af4226b4f4269d9a94d64b81a842e640ab316f066595b0b6053080042deac4b0cce1bbc602ea0e029f7809cd3 +docfiles size=65 + RELOC/doc/generic/pst-stru/Changes + RELOC/doc/generic/pst-stru/README + RELOC/doc/generic/pst-stru/pst-stru-doc.bib + RELOC/doc/generic/pst-stru/pst-stru-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-stru/pst-stru-doc.tex +runfiles size=4 + RELOC/tex/generic/pst-stru/pst-stru.tex + RELOC/tex/latex/pst-stru/pst-stru.sty +catalogue-ctan /graphics/pstricks/contrib/pst-stru +catalogue-date 2018-09-15 13:29:54 +0200 +catalogue-license lppl +catalogue-topics graphics-use engineering +catalogue-version 0.13 + +name pst-support +category Package +revision 15878 +shortdesc Assorted support files for use with PSTricks +relocated 1 +longdesc An appropriate set of job options, together with process +longdesc scripts for use with TeXnicCenter/ +containersize 432 +containerchecksum 05ddd6f09d603a2a6887f03aa3da0374ad061e2ab52ad25f0036192179f985f3695b0248c602607172c94c55cd9d2bb453e8f145d73f133bf79a881ccb1daacc +doccontainersize 6580 +doccontainerchecksum ab2adb2c06d4f7f4b4a4fbfec59e1fc8d6b9f4ccff5aacc29f0a1524759fc1f0792640e8cc301e614477ad45261bbedb3ede93de2463e0a655aeff846561c185 +docfiles size=10 + RELOC/doc/generic/pst-support/README details="Readme" + RELOC/doc/generic/pst-support/Standard_transparency.joboptions + RELOC/doc/generic/pst-support/latex-ps-pdf.tco + RELOC/doc/generic/pst-support/latex-pstpdf-pdf.tco + RELOC/doc/generic/pst-support/pdflatex-autopstpdf.tco +catalogue-ctan /graphics/pstricks/pst-support +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics compilation + +name pst-text +category Package +revision 49542 +shortdesc Text and character manipulation in PSTricks +relocated 1 +longdesc Pst-text is a PSTricks based package for plotting text along a +longdesc different path and manipulating characters. It includes the +longdesc functionality of the old package pst-char. +containersize 4204 +containerchecksum 6cf40d3dffb7803959a187f6a19b137b824d46ea73bd31430e983abec0b828d49c6d404287382242ad224e2f51feae74b3bee374443e9f421ae70d1ea2c0c3b6 +doccontainersize 169860 +doccontainerchecksum 87f213f037227c05ceefbcee7ab8a316b88ee6f9ddc366c40cfa7676a714ec6802f3781db8357224769216241feb9171668184534572ebe5c5776c1553c1b62d +docfiles size=59 + RELOC/doc/generic/pst-text/Changes + RELOC/doc/generic/pst-text/README details="Package README" + RELOC/doc/generic/pst-text/pst-text-doc.bib + RELOC/doc/generic/pst-text/pst-text-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-text/pst-text-doc.tex +runfiles size=5 + RELOC/dvips/pst-text/pst-text.pro + RELOC/tex/generic/pst-text/pst-text.tex + RELOC/tex/latex/pst-text/pst-char.sty + RELOC/tex/latex/pst-text/pst-text.sty +catalogue-also textpath +catalogue-ctan /graphics/pstricks/contrib/pst-text +catalogue-date 2018-12-29 22:53:50 +0100 +catalogue-license lppl +catalogue-topics graphics-subpic +catalogue-version 1.02 + +name pst-thick +category Package +revision 16369 +shortdesc Drawing very thick lines and curves +relocated 1 +longdesc The package supports drawing of very thick lines and curves in +longdesc PSTricks, with various fillings for the body of the lines. +containersize 1968 +containerchecksum 5eab2dfdad0c9fad21cbb7d4484f9701bd48b225e881e0c86a2418afa143582aef160bbf4cc9f5a773aea97d2c12c7f614f41fd87f0ff2952c27ddac91f75905 +doccontainersize 472840 +doccontainerchecksum 5d75bab3e4b5c18a14e7348dd97a3f7e0895a2b44111a72d87ff8ce7c7c0499062f61b4ff38b2d36b0632719fd58a33c91f077edc269d74fa58281a83752e9d7 +docfiles size=139 + RELOC/doc/generic/pst-thick/Changes + RELOC/doc/generic/pst-thick/README details="Readme" + RELOC/doc/generic/pst-thick/pst-thick-doc.bib + RELOC/doc/generic/pst-thick/pst-thick-doc.pdf details="Package documentation" language="fr" + RELOC/doc/generic/pst-thick/pst-thick-doc.tex +srccontainersize 948 +srccontainerchecksum c3cbd54dab4d8e71a2d6e9f94cffb1dc0576344032d3af01c21a4ef0f493c5b886fe6f99e7361f4ca0c9b2e01e68e61e0f8e74b5f511cd1680b20eb01a068030 +srcfiles size=1 + RELOC/source/generic/pst-thick/Makefile +runfiles size=2 + RELOC/tex/generic/pst-thick/pst-thick.tex + RELOC/tex/latex/pst-thick/pst-thick.sty +catalogue-ctan /graphics/pstricks/contrib/pst-thick +catalogue-date 2018-09-15 13:33:51 +0200 +catalogue-license lppl +catalogue-topics graphics-subpic +catalogue-version 1.0 + +name pst-tools +category Package +revision 45978 +shortdesc PSTricks support functions +relocated 1 +longdesc The package provides helper functions for other PSTricks +longdesc related packages. +containersize 4984 +containerchecksum 9803ddb2afe664c53c1bede5d3444dbb4adaebe07c3a3d5b06cf7e0775593c13e6af5803584fb8b9afb12768fdb382b8603b0024fae40bbecabbfa720d87c4ee +doccontainersize 90828 +doccontainerchecksum 48b440cd10fce6da42173d90e2e7ca1454cfb6ddf556836ecfba98729de441f6521e7fed0b95bd20a570c06c3b1baaee285b52ed121d4c16679ca6530b8b5ae7 +docfiles size=35 + RELOC/doc/generic/pst-tools/Changes + RELOC/doc/generic/pst-tools/README details="Readme" + RELOC/doc/generic/pst-tools/pst-tools-doc.bib + RELOC/doc/generic/pst-tools/pst-tools-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-tools/pst-tools-doc.tex +runfiles size=6 + RELOC/dvips/pst-tools/pst-tools.pro + RELOC/tex/generic/pst-tools/pst-tools.tex + RELOC/tex/latex/pst-tools/pst-tools.sty +catalogue-ctan /graphics/pstricks/contrib/pst-tools +catalogue-date 2017-12-03 12:35:57 +0100 +catalogue-license lppl +catalogue-topics graphics pstricks +catalogue-version 0.09b + +name pst-tree +category Package +revision 43272 +shortdesc Trees, using PSTricks +relocated 1 +longdesc pst-tree is a pstricks package that defines a macro \pstree +longdesc which offers a structured way of joining nodes created using +longdesc pst-node in order to draw trees. +containersize 6700 +containerchecksum 1148e0e571d68d8c95c0049313b244a6d6d77bf24a453121fd462a11e51d51aa21cd7eb66e9bb7c936fa90bc888912385814ce347cf911563206f520d2bb1850 +doccontainersize 151092 +doccontainerchecksum d68059216626bbd3a33ec6bed2e6d2f0f78db2da3ae56cf947367608033a156126685bb0d162f95fbe7150c950c3d5d20de01fd0ab9b6bf77bcb2cba31bfebdd +docfiles size=67 + RELOC/doc/generic/pst-tree/Changes + RELOC/doc/generic/pst-tree/README + RELOC/doc/generic/pst-tree/pst-tree-doc.bib + RELOC/doc/generic/pst-tree/pst-tree-doc.pdf details="Package manual" language="en" + RELOC/doc/generic/pst-tree/pst-tree-doc.tex +runfiles size=10 + RELOC/tex/generic/pst-tree/pst-tree.tex + RELOC/tex/latex/pst-tree/pst-tree.sty +catalogue-ctan /graphics/pstricks/contrib/pst-tree +catalogue-date 2018-09-15 13:35:58 +0200 +catalogue-license lppl +catalogue-topics tree linguistic +catalogue-version 1.13 + +name pst-tvz +category Package +revision 23451 +shortdesc Draw trees with more than one root node, using PSTricks +relocated 1 +longdesc The package uses PSTricks to draw trees with more than one root +longdesc node. It is similar to pst-tree, though it uses a different +longdesc placement algorithm. +containersize 16140 +containerchecksum 79e206f5e4154a797cf168b1b490cac8e1ddf98a79de6ddbd9dc98cf53eae01301c034643f6660708b58e890ca94b7235e5b0f48e53136f32c12c0adf5749179 +doccontainersize 274160 +doccontainerchecksum ffbba30214dce83e7f00aa7c6e126919cafe341dc727736e27a5af8ae212dc66dafa49afba553079d6857258ca72577950c06ba2deb21ca3c1b13231d1909935 +docfiles size=113 + RELOC/doc/generic/pst-tvz/Changes + RELOC/doc/generic/pst-tvz/README details="Readme" + RELOC/doc/generic/pst-tvz/pst-tvz-doc.bib + RELOC/doc/generic/pst-tvz/pst-tvz-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-tvz/pst-tvz-doc.tex +srccontainersize 944 +srccontainerchecksum ea0d7dc35ccef586bbe4dc225886755b28524b4db4ebcede6fd41c51bcc0fc8e7fca1f7a326d12524dae478b5a9228cae413b80e7a2830f0cd729e7efa8bab4c +srcfiles size=1 + RELOC/source/generic/pst-tvz/Makefile +runfiles size=21 + RELOC/tex/generic/pst-tvz/pst-tvz.tex + RELOC/tex/latex/pst-tvz/pst-tvz.sty +catalogue-ctan /graphics/pstricks/contrib/pst-tvz +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics tree linguistic +catalogue-version 1.01 + +name pst-uml +category Package +revision 15878 +shortdesc UML diagrams with PSTricks +relocated 1 +longdesc This a PSTricks package that provides support for drawing +longdesc moderately complex UML (Universal Modelling Language) diagrams. +longdesc (The PDF documentation is written in French.) +depend multido +containersize 7340 +containerchecksum e4ff8ea9b7fb9f530e33280de3e9eb20d653c0c062fa80611a544daf74da0b1dd2481b43d8f5258f9ebc1d1bf95b393b32c7152ab8464a9e980cefa105c45ceb +doccontainersize 409404 +doccontainerchecksum d8aa92785c241b6346762d98349d8464ce604afceb8774ef160e8c24e0a40d3fd8dba7cac3f78cbf38cbf6cfebb79939ad3c76e6b4014c1028859aba38123efe +docfiles size=142 + RELOC/doc/generic/pst-uml/Changes + RELOC/doc/generic/pst-uml/README details="Readme" + RELOC/doc/generic/pst-uml/diagCase.tex + RELOC/doc/generic/pst-uml/diagClass.tex + RELOC/doc/generic/pst-uml/diagClass1.tex + RELOC/doc/generic/pst-uml/diagSeq.tex + RELOC/doc/generic/pst-uml/diagState.tex + RELOC/doc/generic/pst-uml/pst-uml-doc.pdf details="Package documentation" language="fr" + RELOC/doc/generic/pst-uml/pst-uml-doc.tex + RELOC/doc/generic/pst-uml/pst-uml-encapsuled-pdf-fig.pdf + RELOC/doc/generic/pst-uml/pst-uml-encapsuled-pdf-fig.tex + RELOC/doc/generic/pst-uml/pst-uml-exemples.pdf details="Examples" language="fr" + RELOC/doc/generic/pst-uml/pst-uml-exemples.tex +srccontainersize 2396 +srccontainerchecksum 8b7e551154c1b1966046268ed3353b6c78c3a66bfa20f44c7fba3b58f661f2585b71d49d2dd673368f732b2f9446dc7783bad4ae5248169a79721d330a49514c +srcfiles size=2 + RELOC/source/generic/pst-uml/Makefile +runfiles size=7 + RELOC/tex/latex/pst-uml/pst-uml.sty +catalogue-also metauml +catalogue-ctan /graphics/pstricks/contrib/pst-uml +catalogue-date 2018-09-15 13:38:22 +0200 +catalogue-license lppl +catalogue-topics uml pstricks +catalogue-version 0.83 + +name pst-vectorian +category Package +revision 28801 +shortdesc Printing ornaments +relocated 1 +longdesc The package uses PSTricks to draw ornaments (a substantial +longdesc repertoire of ornaments is provided). +containersize 546756 +containerchecksum 3ea49c1da6238c095dc2ee095b21dc95fca19c89b0ae473e73f9ea67ca9377cc8e696362f2cf859d87ad69350c7b94a1049823fc0b5329e36e8e31291cdcfef1 +doccontainersize 744580 +doccontainerchecksum 787b3b16dd0a73d96d16a8f32e26cc40f84706fd8abf48df23eb94a5dd9dedc0f9c9b7d8512894910ac96c8ec5e879a5f0d24f6f19e2d9f231ad66060e07565c +docfiles size=188 + RELOC/doc/latex/pst-vectorian/README details="Readme" + RELOC/doc/latex/pst-vectorian/psvectorian.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/pst-vectorian/psvectorian.tex +runfiles size=463 + RELOC/dvips/pst-vectorian/psvectorian.pro + RELOC/tex/latex/pst-vectorian/psvectorian.sty +catalogue-ctan /graphics/pstricks/contrib/pst-vectorian +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics decoration +catalogue-version 0.4 + +name pst-vehicle +category Package +revision 45320 +shortdesc A PSTricks package for rolling vehicles on graphs of mathematical functions +relocated 1 +longdesc This package permits to represent vehicles rolling without +longdesc slipping on mathematical curves. Different types of vehicles +longdesc are proposed, the shape of the curve is to be defined by its +longdesc equation "y=f(x)" in algebraic notation. +containersize 8564 +containerchecksum 4e5a5dc0227641a8b8f96913cfd513279c91f841fa1dd5960015ad79d5877a86cafcf87db38bd692611d5afd73a8a91505822d83433299db4efa9e4975a8da42 +doccontainersize 2315424 +doccontainerchecksum 1183b285d9438c7360f2cef9c40d86424ed2891d36a4aee6281e57b84773dd6b2366ca6c2bcff200911e583bd11f2f5aa9615b45656a240b28b1809acacf4145 +docfiles size=784 + RELOC/doc/generic/pst-vehicle/Changes.txt + RELOC/doc/generic/pst-vehicle/README.md details="Readme" + RELOC/doc/generic/pst-vehicle/pst-vehicle-doc-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/generic/pst-vehicle/pst-vehicle-doc-fr.tex + RELOC/doc/generic/pst-vehicle/pst-vehicle-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-vehicle/pst-vehicle-doc.tex +runfiles size=10 + RELOC/tex/generic/pst-vehicle/ListVehicles.tex + RELOC/tex/generic/pst-vehicle/pst-vehicle.tex + RELOC/tex/latex/pst-vehicle/pst-vehicle.sty +catalogue-ctan /graphics/pstricks/contrib/pst-vehicle +catalogue-date 2017-09-16 20:11:01 +0200 +catalogue-license lppl1.3c +catalogue-topics maths pstricks graphics-use +catalogue-version 1.2 + +name pst-venn +category Package +revision 49316 +shortdesc A PSTricks package for drawing Venn sets +relocated 1 +longdesc This is a PSTricks related package for drawing Venn diagrams +longdesc with three circles. +containersize 1448 +containerchecksum 63baf8075ef294bc3a909b3160fa7868a7f179c832d680728fe463f8b1c058411a1393614ade666824fa3233d6617b1dd4e0c50c299a620bc459104515c85727 +doccontainersize 35532 +doccontainerchecksum e332f8ed24744c03c32bfd139a38dabfca1c6eaf9c5c4624d1579c16feda26e42e81b39dafc98527e8bdaacc2e3ff2d246c6f4b88d89bebfaadd57454e08af7e +docfiles size=16 + RELOC/doc/generic/pst-venn/Changes + RELOC/doc/generic/pst-venn/README details="Readme" + RELOC/doc/generic/pst-venn/pst-venn-doc.bib + RELOC/doc/generic/pst-venn/pst-venn-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-venn/pst-venn-doc.tex +runfiles size=1 + RELOC/tex/latex/pst-venn/pst-venn.sty +catalogue-also venndiagram venn +catalogue-ctan /graphics/pstricks/contrib/pst-venn +catalogue-date 2018-12-06 07:51:50 +0100 +catalogue-license lppl +catalogue-topics diagram-maths pstricks +catalogue-version 0.01 + +name pst-vowel +category Package +revision 25228 +shortdesc Enable arrows showing diphthongs on vowel charts +relocated 1 +longdesc The package extends the vowel package (distributed as part of +longdesc the tipa bundle) by allowing the user to draw arrows between +longdesc vowels to show relationships such as diphthong membership. The +longdesc package depends on use of pstricks. +containersize 2024 +containerchecksum 6ee1dd91b42e319e3a88966fe4cb7327211e5859ae9bc9e262afbfe1fb7f143386ecb70a71d6b24cb0c794cb0943a6cbab4eb40ac683c55a7ef1fbafc118e132 +doccontainersize 81968 +doccontainerchecksum 4fd8ba42b0d4ed821abe52e5848af0d19fcf12c2b9660f09a502561fcfbeffbe38bdf2a0540ee79b99f50cb3c783ab4b5d003a59cf84b3066c364daa7dca0eea +docfiles size=28 + RELOC/doc/latex/pst-vowel/README details="Readme" + RELOC/doc/latex/pst-vowel/pst-vowel.pdf details="Package documentation" + RELOC/doc/latex/pst-vowel/pst-vowel.tex +runfiles size=2 + RELOC/tex/latex/pst-vowel/pst-vowel.sty +catalogue-ctan /macros/latex/contrib/pst-vowel +catalogue-date 2018-09-15 13:40:17 +0200 +catalogue-license lppl +catalogue-topics phonetic +catalogue-version 1.0 + +name pst-vue3d +category Package +revision 15878 +shortdesc Draw perspective views of three dimensional objects +relocated 1 +longdesc With pst-vue3d three dimensional objects like cubes, spheres +longdesc and others can be viewed from different points. The +longdesc distribution includes a comprehensive set of examples of usage. +containersize 13120 +containerchecksum d2e5829b3c241f33a69b1c59b5aa360f73948a6dff70d39ed41b82c67abc2b469860e0bd91ff131dba6392cdb3eb9d78638928052175e65ad7aa94fc3a8d05df +doccontainersize 4434836 +doccontainerchecksum 70d297642f7f36539cb21c12b46e2d5e4a6db244f203aa1b009c500876d2def37224579cd8ad54e5b5004f26c41203a0cb2d0a321d38b15051605c2f9432bcc8 +docfiles size=1134 + RELOC/doc/generic/pst-vue3d/Changes + RELOC/doc/generic/pst-vue3d/README details="Readme" + RELOC/doc/generic/pst-vue3d/pst-vue3d-doc.bib + RELOC/doc/generic/pst-vue3d/pst-vue3d-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-vue3d/pst-vue3d-doc.tex +srccontainersize 832 +srccontainerchecksum 660753b080958b11891954b27b39dcf06ee44db1a582376824c517d41996e3721c21066e430b633c7ed56b053b9f4c91dd3e1c968c3209b0426e840653c23563 +srcfiles size=1 + RELOC/source/generic/pst-vue3d/Makefile +runfiles size=27 + RELOC/dvips/pst-vue3d/pst-vue3d.pro + RELOC/tex/generic/pst-vue3d/pst-vue3d.tex + RELOC/tex/latex/pst-vue3d/pst-vue3d.sty +catalogue-ctan /graphics/pstricks/contrib/pst-vue3d +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-use graphics-3d +catalogue-version 1.24 + +name pst2pdf +category Package +revision 45476 +shortdesc A script to compile PSTricks documents via pdfTeX +longdesc The script extracts the preamble of the document and runs all +longdesc \begin{postscript}...\end{postscript} +longdesc \begin{pspicture}...\end{pspicture} and +longdesc \pspicture...\endpspicture separately through LaTeX with the +longdesc same preamble as the original document; thus it creates EPS, +longdesc PNG and PDF files of these snippets. In a final pdfLaTeX run +longdesc the script replaces the environments with \includegraphics to +longdesc include the processed snippets. Detail documentation is +longdesc acquired from the document itself via Perldoc. +depend pst2pdf.ARCH +containersize 13172 +containerchecksum ece2fc7c670d6c6895d364cf316facc5898c83569640f0c261ee89dbe3b302e5c6190e95c6eb08b132d213cbaddefbb1e589f1e6979a9540454ef442ec94bfad +doccontainersize 226916 +doccontainerchecksum 79cd5a76de8c3cd53b96adb498ed30afb5a8f9b8cf35009fd4e1c487b7d381dad81f46d03e85b1896ca712b02cf31732a7b9b84d4e7f75b0a7d7b6e0032ad559 +docfiles size=128 + texmf-dist/doc/latex/pst2pdf/Changes + texmf-dist/doc/latex/pst2pdf/README details="Readme" + texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.bib + texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.pdf details="Package documentation" + texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.tex + texmf-dist/doc/latex/pst2pdf/test1-pdf.pdf + texmf-dist/doc/latex/pst2pdf/test1.tex + texmf-dist/doc/latex/pst2pdf/test2-pdf.pdf + texmf-dist/doc/latex/pst2pdf/test2.tex + texmf-dist/doc/latex/pst2pdf/test3-pdf.pdf + texmf-dist/doc/latex/pst2pdf/test3.tex + texmf-dist/doc/latex/pst2pdf/tux.jpg +runfiles size=12 + texmf-dist/scripts/pst2pdf/pst2pdf.pl +catalogue-ctan /graphics/pstricks/scripts/pst2pdf +catalogue-date 2017-10-04 15:33:08 +0200 +catalogue-license gpl2 +catalogue-topics graphics graphics-epspdf +catalogue-version 0.18 + +name pst2pdf.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pst2pdf +containersize 340 +containerchecksum 0903663095dcab243def36a08ebc274a2e56ce7bdb8a791ccd2eea1264dacb6ade00d85573f8990c0616c9f9e7780e7e3dcb3da593747d3af41fe0a2ebf2f04c +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pst2pdf + +name pst2pdf.amd64-freebsd +category Package +revision 29333 +shortdesc amd64-freebsd files of pst2pdf +containersize 340 +containerchecksum f74c98f1020bdd634e634231d7be61e3889a522376dd0c01587689b949e04485bf956dac8fdb89fba34c253b4ad2a1ec8a4b096b85d9c9256054e818954ff21c +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pst2pdf + +name pst2pdf.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of pst2pdf +containersize 340 +containerchecksum 93f258774846ddc9582d5dd588dbfb56ff6e08088e999f5b9351316c640eae63fd825fe6f95fe0400994be58a3e62bf1333f0c7bf793c33d04909e48c395584e +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pst2pdf + +name pst2pdf.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of pst2pdf +containersize 340 +containerchecksum b0be12647b552e60ee18f4c027aa3b08929aaa6bfeb7a1ae0d274dd3d60535f841c7e7c8666c878973c5d919af5f8bb12fbc92f9ae55d336604db629b755a921 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pst2pdf + +name pst2pdf.i386-cygwin +category Package +revision 29333 +shortdesc i386-cygwin files of pst2pdf +containersize 340 +containerchecksum 7ec4850a2beb24040725d248c396407a265a810a2826e64870b17c9cf0ec99ab7c62be0c7b7e7c0614e8e56d7f6bc04895e1ae07807bd8b88a2b4a01ec29cfbc +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pst2pdf + +name pst2pdf.i386-freebsd +category Package +revision 29333 +shortdesc i386-freebsd files of pst2pdf +containersize 340 +containerchecksum b772544e8e55b391d3d1b2c0ee147a3c1900df7b148bc41ef4628742350bee65ce8c4b652a9f34678a637fa40d135346dee95d272e1418de8a7e9c8406e72f70 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pst2pdf + +name pst2pdf.i386-linux +category Package +revision 29333 +shortdesc i386-linux files of pst2pdf +containersize 340 +containerchecksum e9f6d96e3abed892fa9a0ed18215b160281630dd18f0a24cba2981fb8ace3d934ebbdf663e5ea7fef285a65306f4f471180da63f8595d26dc5ee0c1670014f76 +binfiles arch=i386-linux size=1 + bin/i386-linux/pst2pdf + +name pst2pdf.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of pst2pdf +containersize 340 +containerchecksum cfb2074509e77109c37e817324750e03a65609c8a9235e6c87f122ab09dbed2219e50c687b64f09f311393e1f5f9e4ed7f2ded9de031322c3a363027cc479c1f +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pst2pdf + +name pst2pdf.i386-solaris +category Package +revision 29333 +shortdesc i386-solaris files of pst2pdf +containersize 340 +containerchecksum 7b54f829871bfee21c38818c214fd490ee0eb3c88ade97e636435fde9a5c03e44a4cb8b208899d5299da081d5611ef1c8325b6f06c2ac8e14b2d62bb9a648edf +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pst2pdf + +name pst2pdf.win32 +category Package +revision 15404 +shortdesc win32 files of pst2pdf +containersize 684 +containerchecksum 685a62242aada44054755bf9bf8a1ebcbf10f154f95ab3197d227a7629fe1b8bc8524c283cfa83bdcb4d97f3367e98702239594dcc776717ed0f08718731cc59 +binfiles arch=win32 size=1 + bin/win32/pst2pdf.exe + +name pst2pdf.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of pst2pdf +containersize 340 +containerchecksum 420b1ec09d78e1c43c7d04a5d08b5124b57645755fc9f4d5bd884ea3e0bb66cbe39a43a40bc552d57b1aab0e1c708b55ebed3c132d4db3b4562e47303032181f +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pst2pdf + +name pst2pdf.x86_64-darwin +category Package +revision 29333 +shortdesc x86_64-darwin files of pst2pdf +containersize 344 +containerchecksum 6cbbc70deedb0a8579cf7d5474484d07a958e5ccc0513b211a424837c99b16ce2123d2d9b77285d2667bd3bcb198d2920d74678890b76bd82c67450d858f145d +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/pst2pdf + +name pst2pdf.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pst2pdf +containersize 348 +containerchecksum 83d2430389db6c6c504ca0b3354b9d1ee5484d2ebb1f5997672e0a09d13ced7e2bcccdbded0412ab8aa7d0386a38687c06c8e6445c7f137cbbe94bc0f1813560 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pst2pdf + +name pst2pdf.x86_64-linux +category Package +revision 29333 +shortdesc x86_64-linux files of pst2pdf +containersize 340 +containerchecksum 486d85c1258e544c523daf74106913957d476131062e5f9056af7d72f0fa371132d912adbe5e684ea6d690073ea7d4f8a350046634540102f1559e30a5b64920 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pst2pdf + +name pst2pdf.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pst2pdf +containersize 344 +containerchecksum 679d802cdd6cd1960990a65b81c18b27b26c16ad028103abe36538f25e698cc02bc8c22e1d1c437fdcd5c55a63fce3381c3b76d39b7139645d7ad7ef7af5d8a4 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pst2pdf + +name pst2pdf.x86_64-solaris +category Package +revision 29333 +shortdesc x86_64-solaris files of pst2pdf +containersize 340 +containerchecksum 5b4b23049a47ff555584f4c996ae1b8e5c322626b323c152dfa02f0352d620e72e9fd8d9496fea15088c83f6fb00c153d474d3952b6b263542b8928baeeec888 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pst2pdf + +name pstool +category Package +revision 46393 +shortdesc Support for psfrag within pdfLaTeX +relocated 1 +longdesc The package works in the same sort of way as pst-pdf, but it +longdesc also processes the PostScript graphics with psfrag to add +longdesc labels within the graphic, before conversion. Thus the bundle +longdesc replaces two steps of an ordinary workflow. (Naturally, the +longdesc package requires that \write 18 is enabled.) Pstool ensures +longdesc that each version of each graphic is compiled once only (the +longdesc graphic is (re-)compiled only if it has changed since the +longdesc previous compilation of the document). This drastically speeds +longdesc up the running of the package in the typical case (though the +longdesc first run of any document is inevitably just as slow as with +longdesc any similar package). +containersize 6984 +containerchecksum a97af35dfce4a137af97071b49e58c31739e6f271afc62a455db473e573148d25fc27937ce680c6f400a200151ffd73867d5dd8781b12a63c68b7bf256cff5d1 +doccontainersize 373708 +doccontainerchecksum 613cc4899b1d76e0686cd269568cfc0dda437cec0e50571086b3d44659dc4b3e3d567dec88b5420e4c802d676f21c2428b3930fb6bb3f7d7faa14c029d35d43e +docfiles size=98 + RELOC/doc/latex/pstool/README.md details="Readme" + RELOC/doc/latex/pstool/pstool.pdf details="Package documentation" + RELOC/doc/latex/pstool/pstool.tex +runfiles size=6 + RELOC/tex/latex/pstool/pstool.sty +catalogue-contact-repository https://github.com/wspr/pstool +catalogue-ctan /macros/latex/contrib/pstool +catalogue-date 2018-01-20 10:12:28 +0100 +catalogue-license lppl1.3c +catalogue-topics graphics-epspdf graphics-text +catalogue-version 1.5e + +name pstools +category TLCore +revision 50602 +catalogue ps2eps +shortdesc Produce Encapsulated PostScript from PostScript +longdesc Produce Encapsulated PostScript Files (EPS/EPSF) from a +longdesc one-page PostScript document, or any PostScript document. A +longdesc correct Bounding Box is calculated for the EPS files and some +longdesc PostScript command sequences that can produce errorneous +longdesc results on printers are filtered. The input is cropped to +longdesc include just the image contained in the PostScript file. The +longdesc EPS files can then be included into TeX documents. Other +longdesc programs like ps2epsi (a script distributed with ghostscript) +longdesc don't always calculate the correct bounding box (because the +longdesc values are put on the PostScript stack which may get corrupted +longdesc by bad PostScript code) or they round it off, resulting in +longdesc clipping the image. Therefore ps2eps uses a resolution of 144 +longdesc dpi to get the correct bounding box. The bundle includes +longdesc binaries for Linux, Solaris, Digital Unix or Windows +longdesc 2000/9x/NT; for other platforms, the user needs perl, +longdesc ghostscript and an ANSI-C compiler. Included in the +longdesc distribution is the bbox program, an application to produce +longdesc Bounding Box values for rawppm or rawpbm format files. +depend pstools.ARCH +containersize 11536 +containerchecksum bb0046118a269ca8781bc5dd539e1dbb7b068bcda185d8d52f9ccc441ae07c96197078b204054fec079fce0d707e86a5b094db07dcf8c894e1b56fdee2db28ba +doccontainersize 83132 +doccontainerchecksum ba3cb98dad993b56c7013d24fb515489dd5168c66c8e818b3c87922e812509903085ab9fc4f36b9df36b0371a7533822e840552d0a16feaae158d5e6f228370d +docfiles size=33 + texmf-dist/doc/man/man1/bbox.1 + texmf-dist/doc/man/man1/bbox.man1.pdf + texmf-dist/doc/man/man1/ps2eps.1 + texmf-dist/doc/man/man1/ps2eps.man1.pdf + texmf-dist/doc/man/man1/ps2frag.1 + texmf-dist/doc/man/man1/ps2frag.man1.pdf + texmf-dist/doc/man/man1/pslatex.1 + texmf-dist/doc/man/man1/pslatex.man1.pdf +runfiles size=11 + texmf-dist/scripts/ps2eps/ps2eps.pl + texmf-dist/scripts/texlive/ps2frag.sh + texmf-dist/scripts/texlive/pslatex.sh +catalogue-ctan /support/ps2eps +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics ps-manip +catalogue-version 1.68 + +name pstools.aarch64-linux +category TLCore +revision 48789 +shortdesc aarch64-linux files of pstools +containersize 3920 +containerchecksum f0fadca1f5474662febbee116c8a73542a5f6e30715e22c7cb6bd128d5769b0eac6aa20bb61852b9bd1e4bf363c47a18764ea88f710c15b084bbc7881ceffb3b +binfiles arch=aarch64-linux size=6 + bin/aarch64-linux/bbox + bin/aarch64-linux/ps2eps + bin/aarch64-linux/ps2frag + bin/aarch64-linux/pslatex + +name pstools.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of pstools +containersize 4428 +containerchecksum 860d902a476d698bd25038caa58185654e2c3512b93e415b93be49e482d5fda33efeb5e0a6d58a498dfcc9ff3cb5cff86c9a31fb65eb334844b64905b0be6b61 +binfiles arch=amd64-freebsd size=6 + bin/amd64-freebsd/bbox + bin/amd64-freebsd/ps2eps + bin/amd64-freebsd/ps2frag + bin/amd64-freebsd/pslatex + +name pstools.amd64-netbsd +category TLCore +revision 48698 +shortdesc amd64-netbsd files of pstools +containersize 4160 +containerchecksum a848da84f60d6b1a45c1c2098dccb36f466b2b6df84c04a5aeeb94b1e0e13fe7573ab12535848f64d4ca2bfdb39a602d69be2c836a9eb75b1c476407bd99afd0 +binfiles arch=amd64-netbsd size=6 + bin/amd64-netbsd/bbox + bin/amd64-netbsd/ps2eps + bin/amd64-netbsd/ps2frag + bin/amd64-netbsd/pslatex + +name pstools.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of pstools +containersize 4024 +containerchecksum 361ee38a2706eea8e66a3d5ec5a519370bdbb75bef86d48c268d8a2f7d571fee00f2e0aa79c6c87ab407cbaaeae5fe465d15f78f3e3c1f56156e30b64ead6327 +binfiles arch=armhf-linux size=6 + bin/armhf-linux/bbox + bin/armhf-linux/ps2eps + bin/armhf-linux/ps2frag + bin/armhf-linux/pslatex + +name pstools.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of pstools +containersize 4676 +containerchecksum df510f79e6760b3f45654e29801b667ed646d388605e05de9116b57134be60afc465e4960886e077067321b054dd39c1543c13044a6cac862a33e9b197425e78 +binfiles arch=i386-cygwin size=7 + bin/i386-cygwin/bbox.exe + bin/i386-cygwin/ps2eps + bin/i386-cygwin/ps2frag + bin/i386-cygwin/pslatex + +name pstools.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of pstools +containersize 4276 +containerchecksum 0199d8defab83b64cb76d927f0f0e0b215634224e474df57140502c95b708035cb351630f94ec14838691e495c1898e737ef696233e789e689f67d6ddf8b8d38 +binfiles arch=i386-freebsd size=6 + bin/i386-freebsd/bbox + bin/i386-freebsd/ps2eps + bin/i386-freebsd/ps2frag + bin/i386-freebsd/pslatex + +name pstools.i386-linux +category TLCore +revision 50281 +shortdesc i386-linux files of pstools +containersize 4220 +containerchecksum c81d3ffcb7460591844078aee286a0f764f16333868abf5172e8c0710311bb87b9d3749d07b3321fcdabf20aceeeba2db934eb320c6e52b4bbd07bbe40f20a0c +binfiles arch=i386-linux size=5 + bin/i386-linux/bbox + bin/i386-linux/ps2eps + bin/i386-linux/ps2frag + bin/i386-linux/pslatex + +name pstools.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of pstools +containersize 4044 +containerchecksum 3b9dca2cc7f3ccf107b928519db41b2ede5a0e3fcdfad488b36c32851906a7fa0c1e4d07a5530e817ef77246466a539df638e70ecf76c1c4b5f2d67bd5b49a3a +binfiles arch=i386-netbsd size=6 + bin/i386-netbsd/bbox + bin/i386-netbsd/ps2eps + bin/i386-netbsd/ps2frag + bin/i386-netbsd/pslatex + +name pstools.i386-solaris +category TLCore +revision 40549 +shortdesc i386-solaris files of pstools +containersize 4760 +containerchecksum 8cb765c41205106f53365a42815942799677b8bc1882e22cdf2c0d6cbf545ff56ce4a9f9f9ca70ad793fd0dbc9b7b692ce6059dc40bf97a958c033d1e2f6a7de +binfiles arch=i386-solaris size=6 + bin/i386-solaris/bbox + bin/i386-solaris/ps2eps + bin/i386-solaris/ps2frag + bin/i386-solaris/pslatex + +name pstools.win32 +category TLCore +revision 50155 +shortdesc win32 files of pstools +containersize 5036 +containerchecksum 8165312be72388812afe49e4efcb98128ae2909400559573aa0e3d9cdbc661b02435e7d44b24120a3e23f15a4c6c715437cbc1e1dab9ec77cc5380b206612d27 +binfiles arch=win32 size=4 + bin/win32/bbox.exe + bin/win32/ps2eps.exe + +name pstools.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of pstools +containersize 4608 +containerchecksum c8cee94d8b8f72e832a6153f77ad9c9e4536f8fbc91e3e28ca8c09706c9df193812cee5ff496b540ebc70f03133a849858d3e0d6c4ebbfdac9ded47640f0713f +binfiles arch=x86_64-cygwin size=6 + bin/x86_64-cygwin/bbox.exe + bin/x86_64-cygwin/ps2eps + bin/x86_64-cygwin/ps2frag + bin/x86_64-cygwin/pslatex + +name pstools.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of pstools +containersize 3492 +containerchecksum fbc2c7b2a966098c13ed40cacc9f676189d5174ca298bfc578f96a379936cdb33f2eb6b632e3f4fb753925aa8a237501a887b40007de3d45470e8aa7542fda9d +binfiles arch=x86_64-darwin size=7 + bin/x86_64-darwin/bbox + bin/x86_64-darwin/ps2eps + bin/x86_64-darwin/ps2frag + bin/x86_64-darwin/pslatex + +name pstools.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of pstools +containersize 3672 +containerchecksum 3bee489796f322ef328135f4a536168f08d36352e3fa2694dd554b7b5420a458e6728ffe06e820bb6d3141f185278043dd7adfeaae85d12ecf4a5626f5db1e71 +binfiles arch=x86_64-darwinlegacy size=7 + bin/x86_64-darwinlegacy/bbox + bin/x86_64-darwinlegacy/ps2eps + bin/x86_64-darwinlegacy/ps2frag + bin/x86_64-darwinlegacy/pslatex + +name pstools.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of pstools +containersize 4152 +containerchecksum c84e6d60e61ded17f057e03345b5270f1b7712d47afb13dc6b539d6a0cbb1d059058d19a3bdb1634e1e58c41f2a7c40dbfaa444bae5bdba700de4701d86386b2 +binfiles arch=x86_64-linux size=6 + bin/x86_64-linux/bbox + bin/x86_64-linux/ps2eps + bin/x86_64-linux/ps2frag + bin/x86_64-linux/pslatex + +name pstools.x86_64-linuxmusl +category TLCore +revision 46840 +shortdesc x86_64-linuxmusl files of pstools +containersize 4112 +containerchecksum b2282c1582c057d50eccb192fbec6f7c9eb75a6152eb309583295866c40987d32c83773e07358e3e43ce42e8386f72066421424b6a519de19b44a367a2c9d689 +binfiles arch=x86_64-linuxmusl size=6 + bin/x86_64-linuxmusl/bbox + bin/x86_64-linuxmusl/ps2eps + bin/x86_64-linuxmusl/ps2frag + bin/x86_64-linuxmusl/pslatex + +name pstools.x86_64-solaris +category TLCore +revision 41034 +shortdesc x86_64-solaris files of pstools +containersize 4712 +containerchecksum ff09f53af4525d0dcc35506988d6bf8fc3779d8ff331e9dcb585927d1f370d507a3c629e8d555e51420d49f9894ad535c5f8db8e9857210abc619f8c9fc86eab +binfiles arch=x86_64-solaris size=6 + bin/x86_64-solaris/bbox + bin/x86_64-solaris/ps2eps + bin/x86_64-solaris/ps2frag + bin/x86_64-solaris/pslatex + +name pstricks +category Package +revision 51102 +catalogue pstricks-base +shortdesc PostScript macros for TeX +relocated 1 +longdesc PSTricks offers an extensive collection of macros for +longdesc generating PostScript that is usable with most TeX macro +longdesc formats, including Plain TeX, LaTeX, AMS-TeX, and AMS-LaTeX. +longdesc Included are macros for colour, graphics, pie charts, rotation, +longdesc trees and overlays. It has many special features, including a +longdesc wide variety of graphics (picture drawing) macros, with a +longdesc flexible interface and with colour support. There are macros +longdesc for colouring or shading the cells of tables. The package +longdesc pstricks-add contains bug-fixes and additions for PSTricks +longdesc (among other things). PSTricks ordinarily uses PostScript +longdesc \special commands, which are not supported by pdf(La)TeX. This +longdesc limitation may be overcome by using either the pst-pdf or the +longdesc pdftricks package, to generate a PDF inclusion from a PSTricks +longdesc diagram. PSTricks macros can also generate PDF output when the +longdesc document is processed XeTeX, without the need for other +longdesc supporting packages. +containersize 77260 +containerchecksum 4c674666903d17749de9a99204e59ceeadee66d3fff38cc0913efac0ca34fb0269c7e5e836543d28e998277537fbca4fe64889cb71fda2dfb258a5aee37f3260 +doccontainersize 7134420 +doccontainerchecksum 8fae1af33f0d89b9da2d3bef0703e884ee0c0adfa187434e58a83fb84a999d783cf2e6483d4c67b247a34c5c3f87eb184f11fd34ac1ea6e266ed29d3552a625f +docfiles size=2189 + RELOC/doc/generic/pstricks/PSTricks.bib + RELOC/doc/generic/pstricks/README details="Readme" + RELOC/doc/generic/pstricks/ctandir.sty + RELOC/doc/generic/pstricks/images/flowers.eps + RELOC/doc/generic/pstricks/images/tiger.eps + RELOC/doc/generic/pstricks/images/tiger.pdf + RELOC/doc/generic/pstricks/pst-doc.bst + RELOC/doc/generic/pstricks/pst-doc.ist + RELOC/doc/generic/pstricks/pst-doc.pdf + RELOC/doc/generic/pstricks/pst-news.sty + RELOC/doc/generic/pstricks/pst-news.tex + RELOC/doc/generic/pstricks/pst-news05.pdf + RELOC/doc/generic/pstricks/pst-news05.tex + RELOC/doc/generic/pstricks/pst-news06.pdf + RELOC/doc/generic/pstricks/pst-news06.tex + RELOC/doc/generic/pstricks/pst-news08.pdf + RELOC/doc/generic/pstricks/pst-news08.tex + RELOC/doc/generic/pstricks/pst-news09.pdf + RELOC/doc/generic/pstricks/pst-news09.tex + RELOC/doc/generic/pstricks/pst-news10.pdf + RELOC/doc/generic/pstricks/pst-news10.tex + RELOC/doc/generic/pstricks/pst-news11.pdf + RELOC/doc/generic/pstricks/pst-news11.tex + RELOC/doc/generic/pstricks/pst-news12.pdf + RELOC/doc/generic/pstricks/pst-news12.tex + RELOC/doc/generic/pstricks/pst-news13.pdf + RELOC/doc/generic/pstricks/pst-news13.tex + RELOC/doc/generic/pstricks/pst-news14.pdf + RELOC/doc/generic/pstricks/pst-news14.tex + RELOC/doc/generic/pstricks/pst-news15.pdf + RELOC/doc/generic/pstricks/pst-news15.tex + RELOC/doc/generic/pstricks/pst-news16.pdf + RELOC/doc/generic/pstricks/pst-news16.tex + RELOC/doc/generic/pstricks/pst-news17.pdf + RELOC/doc/generic/pstricks/pst-news17.tex + RELOC/doc/generic/pstricks/pst-news18.pdf + RELOC/doc/generic/pstricks/pst-news18.tex + RELOC/doc/generic/pstricks/pst-news19.pdf details="Latest news bulletin" + RELOC/doc/generic/pstricks/pst-news19.tex + RELOC/doc/generic/pstricks/pst-user.pdf details="Package documentation" + RELOC/doc/generic/pstricks/pst-user.tgz + RELOC/doc/generic/pstricks/pstricks-bug.tex + RELOC/doc/generic/pstricks/pstricks-doc.pdf + RELOC/doc/generic/pstricks/test-pst.pdf + RELOC/doc/generic/pstricks/test-pst.tex +runfiles size=124 + RELOC/dvips/pstricks/pst-algparser.pro + RELOC/dvips/pstricks/pst-dots.pro + RELOC/dvips/pstricks/pst-dots97.pro + RELOC/dvips/pstricks/pstricks-fonts-lm.pro + RELOC/dvips/pstricks/pstricks-fonts-ps.pro + RELOC/dvips/pstricks/pstricks-fonts-urw.pro + RELOC/dvips/pstricks/pstricks.pro + RELOC/dvips/pstricks/pstricks97.pro + RELOC/tex/generic/pstricks/config/README.cfg + RELOC/tex/generic/pstricks/config/distiller.cfg + RELOC/tex/generic/pstricks/config/dvips.cfg + RELOC/tex/generic/pstricks/config/dvipsone.cfg + RELOC/tex/generic/pstricks/config/gastex.cfg + RELOC/tex/generic/pstricks/config/textures.cfg + RELOC/tex/generic/pstricks/config/vtex.cfg + RELOC/tex/generic/pstricks/config/xdvipdfmx.cfg + RELOC/tex/generic/pstricks/pst-fp.tex + RELOC/tex/generic/pstricks/pst-key.tex + RELOC/tex/generic/pstricks/pstricks-tex.def + RELOC/tex/generic/pstricks/pstricks-xetex.def + RELOC/tex/generic/pstricks/pstricks.con + RELOC/tex/generic/pstricks/pstricks.tex + RELOC/tex/generic/pstricks/pstricks97.tex + RELOC/tex/latex/pstricks/pst-all.sty + RELOC/tex/latex/pstricks/pst-doc.cls + RELOC/tex/latex/pstricks/pst-key.sty + RELOC/tex/latex/pstricks/pst-platform.sty + RELOC/tex/latex/pstricks/pstcol.sty + RELOC/tex/latex/pstricks/pstricks-pdf.sty + RELOC/tex/latex/pstricks/pstricks.sty +catalogue-alias pstricks +catalogue-also pstricks-add +catalogue-contact-home http://tug.org/PSTricks +catalogue-contact-repository http://comedy.dante.de/~herbert/TeXnik/ +catalogue-contact-support http://tug.org/mailman/listinfo/pstricks +catalogue-ctan /graphics/pstricks/base +catalogue-date 2019-05-11 22:03:57 +0200 +catalogue-license lppl1.3 +catalogue-topics graphics-in-tex colour pstricks dvips-special xetex +catalogue-version 2.97 + +name pstricks-add +category Package +revision 49680 +shortdesc A collection of add-ons and bugfixes for PSTricks +relocated 1 +longdesc Collects together examples that have been posted to the +longdesc PSTricks mailing list, together with many additional features +longdesc for the basic pstricks, pst-plot and pst-node, including: +longdesc bugfixes; new options for the pspicture environment; arrows; +longdesc braces as node connection/linestyle; extended axes for plots +longdesc (e.g., logarithm axes); polar plots; plotting tangent lines of +longdesc curves or functions; solving and printing differential +longdesc equations; box plots; matrix plots; and pie charts. The package +longdesc makes use of PostScript routines provided by pst-math. +containersize 21140 +containerchecksum 5302a1cc7e16baf545b545822a2717e3f37c5ed993273038f14a0950d5fd83b4f0bdb951f22f5673bb1ead60e3e86d2ef9880eea404e4af52d4fb5969d89024a +doccontainersize 4630072 +doccontainerchecksum 7950a3756ac016fc7d759dd1d466673a6df6b0ea5163a6e6bb1c71cdc3314b5c557304828efd4b81109f2238c5c096bafffdb044ab3f6bef88c7bdf630069fb3 +docfiles size=2773 + RELOC/doc/generic/pstricks-add/Changes + RELOC/doc/generic/pstricks-add/README details="Readme" + RELOC/doc/generic/pstricks-add/data/contourN.data + RELOC/doc/generic/pstricks-add/data/data.data + RELOC/doc/generic/pstricks-add/data/data3.data + RELOC/doc/generic/pstricks-add/data/dataMul.data + RELOC/doc/generic/pstricks-add/data/demo0.data + RELOC/doc/generic/pstricks-add/data/demo1.data + RELOC/doc/generic/pstricks-add/data/demo2.data + RELOC/doc/generic/pstricks-add/data/demo3.data + RELOC/doc/generic/pstricks-add/data/dotmatrix.data + RELOC/doc/generic/pstricks-add/data/matrix.data + RELOC/doc/generic/pstricks-add/data/matrix1.data + RELOC/doc/generic/pstricks-add/data/matrix2.data + RELOC/doc/generic/pstricks-add/data/olympic.eps + RELOC/doc/generic/pstricks-add/data/olympic.pdf + RELOC/doc/generic/pstricks-add/data/olympic.tex + RELOC/doc/generic/pstricks-add/data/pstricks-add-doc.data + RELOC/doc/generic/pstricks-add/pstricks-add-doc.bib + RELOC/doc/generic/pstricks-add/pstricks-add-doc.pdf details="Package documentation" + RELOC/doc/generic/pstricks-add/pstricks-add-doc.tex +runfiles size=25 + RELOC/dvips/pstricks-add/pstricks-add.pro + RELOC/tex/generic/pstricks-add/pstricks-add.tex + RELOC/tex/latex/pstricks-add/pstricks-add.sty +catalogue-ctan /graphics/pstricks/contrib/pstricks-add +catalogue-date 2019-01-12 19:39:00 +0100 +catalogue-license lppl +catalogue-topics graphics-in-tex pstricks +catalogue-version 3.87 + +name pstricks_calcnotes +category Package +revision 34363 +catalogue pstricks-calcnotes +shortdesc Use of PSTricks in calculus lecture notes +relocated 1 +longdesc The bundle shows the construction of PSTricks macros to draw +longdesc Riemann sums of an integral and to draw the vector field of an +longdesc ordinary differential equation. The results are illustrated in +longdesc a fragment of lecture notes. +containersize 512 +containerchecksum 1b17e544484b71f3c29e5c3e1bed6021658ce7b9a256c21c004113b722a85be7ea6861753230910771b7c900184ca8cce146408301e75de79e0c2bf8939c49a6 +doccontainersize 1133128 +doccontainerchecksum bab8492549fd268f856e11f5f6db4e1ca878c67634387e7295bc163cd17080ee6b685893ddc85a882bd895adf3689639bfa7fc7d0da5e9916ef305c18d94ad65 +docfiles size=3772 + RELOC/doc/latex/pstricks_calcnotes/AppThreePDF.pdf + RELOC/doc/latex/pstricks_calcnotes/Convert_PstricksCode_To_Pdf/Readme.txt + RELOC/doc/latex/pstricks_calcnotes/Convert_PstricksCode_To_Pdf/convert.tex + RELOC/doc/latex/pstricks_calcnotes/Convert_PstricksCode_To_Pdf/test.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/AppThreePDF.tex + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ1.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ10.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ2.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ3.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ4.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ5.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ6.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ7.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ8.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ9.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig13.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig14.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig1a.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig1b.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig1c.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig2a.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig2b.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig3.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig4.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig5.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig6.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig7.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig8.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig9.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/ThreeAppsPDF.tex + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/b6of1.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/b6of2.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/b6of3.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/b6of4.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/vecb1.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/vecb2.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/vecb3.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/vecb4.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/vecb5.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Pdf_Output/vecb6.pdf + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/AppThreePS.tex + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/BZ10.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/BZ6.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/BZ7.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/BZ8.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/BZ9.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/ThreeAppsPS.tex + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/b6of1.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/b6of2.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/b6of3.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/b6of4.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/vecb1.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/vecb2.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/vecb3.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/vecb4.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/vecb5.eps + RELOC/doc/latex/pstricks_calcnotes/For_Ps_Output/vecb6.eps + RELOC/doc/latex/pstricks_calcnotes/README details="Readme" + RELOC/doc/latex/pstricks_calcnotes/ThreeAppsPDF.pdf +catalogue-ctan /info/pstricks_calcnotes +catalogue-date 2018-09-16 15:47:34 +0200 +catalogue-license lppl +catalogue-topics pstricks documentation +catalogue-version 1.2 + +name pstring +category Package +revision 42857 +shortdesc Typeset sequences with justification pointers +relocated 1 +longdesc This package lets you typeset justified sequences, also called +longdesc pointing strings. It's used for instance, in research papers +longdesc about Game Semantics to represent sequence of game moves with +longdesc their associated justification pointers. Depending on wether +longdesc using LaTeX or pdfLaTeX, the package uses PSTricks and pst-node +longdesc respectively pgf/TikZ. +containersize 7384 +containerchecksum d77c937467a9cd16f24fb1374a0d797db04bc301fa8a677712e09d83b58df6fd12aad8857dd83f4d5278d799a0d1d52ef12106e8106921d1ec1453ff6692605f +doccontainersize 123272 +doccontainerchecksum 51c316c27c3d4083696dd9ee86e378c83ed09c75c632a7f0a580bd84d0033c7776008056a4b26d7835a4974b879c0f2b0389ae83c70cbd6ab093bc8b2add9ed4 +docfiles size=42 + RELOC/doc/latex/pstring/README.md details="Readme" + RELOC/doc/latex/pstring/pgfmanual-en-macros.tex + RELOC/doc/latex/pstring/pstring-doc.pdf details="Package documentation" + RELOC/doc/latex/pstring/pstring-doc.pre + RELOC/doc/latex/pstring/pstring-doc.tex +runfiles size=7 + RELOC/tex/latex/pstring/pstring.sty +catalogue-contact-home http://william.famille-blum.org/software/latex/ +catalogue-ctan /macros/latex/contrib/pstring +catalogue-date 2018-09-15 13:51:14 +0200 +catalogue-license pd +catalogue-topics scientific-docs + +name psutils +category TLCore +revision 50602 +shortdesc PostScript utilities +longdesc A bundle of utilities for manipulating PostScript documents, +longdesc including page selection and rearrangement, resizing the page, +longdesc arrangement into signatures for booklet printing, and page +longdesc merging for n-up printing. Utilities include psbook, psselect, +longdesc pstops, psnup, psresize, epsffit. +depend psutils.ARCH +containersize 5384 +containerchecksum 1e0afa3066bd867425f8b34857e222268cab1e3048edd40d276f01f3c9cc1d5c31bfd1dd960702987c7182ce2e5512e314eaa87ad25da5696de24b3232f9a8c2 +doccontainersize 135740 +doccontainerchecksum 5ba2329750889a16ea2f5c2feb79235251d1db841ca264075751bb183ddb81b960632ed956e623446143e907deec4b695634a48644d3169a5a7bbdf9c0f176b6 +docfiles size=60 + texmf-dist/doc/man/man1/epsffit.1 + texmf-dist/doc/man/man1/epsffit.man1.pdf + texmf-dist/doc/man/man1/extractres.1 + texmf-dist/doc/man/man1/extractres.man1.pdf + texmf-dist/doc/man/man1/includeres.1 + texmf-dist/doc/man/man1/includeres.man1.pdf + texmf-dist/doc/man/man1/psbook.1 + texmf-dist/doc/man/man1/psbook.man1.pdf + texmf-dist/doc/man/man1/psjoin.1 + texmf-dist/doc/man/man1/psjoin.man1.pdf + texmf-dist/doc/man/man1/psnup.1 + texmf-dist/doc/man/man1/psnup.man1.pdf + texmf-dist/doc/man/man1/psresize.1 + texmf-dist/doc/man/man1/psresize.man1.pdf + texmf-dist/doc/man/man1/psselect.1 + texmf-dist/doc/man/man1/psselect.man1.pdf + texmf-dist/doc/man/man1/pstops.1 + texmf-dist/doc/man/man1/pstops.man1.pdf + texmf-dist/doc/man/man1/psutils.1 + texmf-dist/doc/man/man1/psutils.man1.pdf +runfiles size=7 + texmf-dist/dvips/getafm/getafm.ps + texmf-dist/psutils/paper.cfg + texmf-dist/scripts/psutils/extractres.pl + texmf-dist/scripts/psutils/includeres.pl + texmf-dist/scripts/psutils/psjoin.pl +catalogue-also pssplit +catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-date 2019-01-02 05:41:34 +0100 +catalogue-license other-free +catalogue-topics ps-manip +catalogue-version p17 + +name psutils.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of psutils +containersize 53424 +containerchecksum 2300552ffde23d8a5076ed6dc9f896c551cbb6d6a20de2db8aa6e70ea5ad94213da62eec6dfab559816d4e42a26a51c04e800a7b2940c62cbbbd5b8cacad9998 +binfiles arch=aarch64-linux size=92 + bin/aarch64-linux/epsffit + bin/aarch64-linux/extractres + bin/aarch64-linux/includeres + bin/aarch64-linux/psbook + bin/aarch64-linux/psjoin + bin/aarch64-linux/psnup + bin/aarch64-linux/psresize + bin/aarch64-linux/psselect + bin/aarch64-linux/pstops + +name psutils.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of psutils +containersize 74576 +containerchecksum 338a99cb5835e2dfa34e49bb5d3acebc091e5814ab1f8e837067b18276911eecb404801ea54e42709656149c82f692d59328b4b03c2a872d6753f40b31497f16 +binfiles arch=amd64-freebsd size=103 + bin/amd64-freebsd/epsffit + bin/amd64-freebsd/extractres + bin/amd64-freebsd/includeres + bin/amd64-freebsd/psbook + bin/amd64-freebsd/psjoin + bin/amd64-freebsd/psnup + bin/amd64-freebsd/psresize + bin/amd64-freebsd/psselect + bin/amd64-freebsd/pstops + +name psutils.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of psutils +containersize 68424 +containerchecksum 39d3c335294b8b36ead312bc9a5d95d1432bb54b5a02765891566811813e4f619edd3416371f6180eec5e37982c11992b68e79cad922ab94987a8c8b52f60a61 +binfiles arch=amd64-netbsd size=118 + bin/amd64-netbsd/epsffit + bin/amd64-netbsd/extractres + bin/amd64-netbsd/includeres + bin/amd64-netbsd/psbook + bin/amd64-netbsd/psjoin + bin/amd64-netbsd/psnup + bin/amd64-netbsd/psresize + bin/amd64-netbsd/psselect + bin/amd64-netbsd/pstops + +name psutils.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of psutils +containersize 49072 +containerchecksum 2eb47a8d4edb3240929f2fe6a2faddc67433dffbf974b2303bf1c1b519e6267252ee16ef83aac396f669e435cf7b95ee04ea645f8f5144564a43e8989fd4af1c +binfiles arch=armhf-linux size=80 + bin/armhf-linux/epsffit + bin/armhf-linux/extractres + bin/armhf-linux/includeres + bin/armhf-linux/psbook + bin/armhf-linux/psjoin + bin/armhf-linux/psnup + bin/armhf-linux/psresize + bin/armhf-linux/psselect + bin/armhf-linux/pstops + +name psutils.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of psutils +containersize 20556 +containerchecksum 5c52c2f067150f55e6a9be7633e4e5760301831e54a35ff720a2385252c59bc45cc04653d2ccbb85fc7a9a7d57eb1fb52bb3480fb542af1c499cc8da94074299 +binfiles arch=i386-cygwin size=39 + bin/i386-cygwin/epsffit.exe + bin/i386-cygwin/extractres + bin/i386-cygwin/includeres + bin/i386-cygwin/psbook.exe + bin/i386-cygwin/psjoin + bin/i386-cygwin/psnup.exe + bin/i386-cygwin/psresize.exe + bin/i386-cygwin/psselect.exe + bin/i386-cygwin/pstops.exe + +name psutils.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of psutils +containersize 62096 +containerchecksum 5f837dcfcd6fa04efacea0c38a47b415e38a18ac2cb6e35ef08fcece79d53781e7ad9e7dc019c122b290a683006753ca1bdde755dce0ad79ce52948e26a2c1e8 +binfiles arch=i386-freebsd size=83 + bin/i386-freebsd/epsffit + bin/i386-freebsd/extractres + bin/i386-freebsd/includeres + bin/i386-freebsd/psbook + bin/i386-freebsd/psjoin + bin/i386-freebsd/psnup + bin/i386-freebsd/psresize + bin/i386-freebsd/psselect + bin/i386-freebsd/pstops + +name psutils.i386-linux +category TLCore +revision 50281 +shortdesc i386-linux files of psutils +containersize 69556 +containerchecksum 53d08a24d79a922b0e8dd85e717177d393be931f06cfd80cba6e935c5ae5464f47ac5d7804d529eb6bca545b8dfdedc213bbc20635654487bdb888aebbff498c +binfiles arch=i386-linux size=101 + bin/i386-linux/epsffit + bin/i386-linux/extractres + bin/i386-linux/includeres + bin/i386-linux/psbook + bin/i386-linux/psjoin + bin/i386-linux/psnup + bin/i386-linux/psresize + bin/i386-linux/psselect + bin/i386-linux/pstops + +name psutils.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of psutils +containersize 63812 +containerchecksum 5daacbf7f06f9764d1cbb58473b6b6ddcc2d8095dfc5e6a113e026445ffdcedb3054d495ce5b62fda48adbd01cf0b45610ed0e9179004ef5b2cf30e528e2b759 +binfiles arch=i386-netbsd size=107 + bin/i386-netbsd/epsffit + bin/i386-netbsd/extractres + bin/i386-netbsd/includeres + bin/i386-netbsd/psbook + bin/i386-netbsd/psjoin + bin/i386-netbsd/psnup + bin/i386-netbsd/psresize + bin/i386-netbsd/psselect + bin/i386-netbsd/pstops + +name psutils.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of psutils +containersize 66052 +containerchecksum c6021fc8924004c932f795412136ea0a39117f76f86e2cf5ae8c0d0f335544d981f54e984c9d99b10cac3db0ccf40893ed95e588f54d84522724dc7bb686807e +binfiles arch=i386-solaris size=92 + bin/i386-solaris/epsffit + bin/i386-solaris/extractres + bin/i386-solaris/includeres + bin/i386-solaris/psbook + bin/i386-solaris/psjoin + bin/i386-solaris/psnup + bin/i386-solaris/psresize + bin/i386-solaris/psselect + bin/i386-solaris/pstops + +name psutils.win32 +category TLCore +revision 50155 +shortdesc win32 files of psutils +containersize 24928 +containerchecksum 3eab87213d46eff5add2996c9afd9afeadffa755f80dfb4ba3b3e33d50ffe4cc69d97db699798cbb009690ceb1477512d8e408ce83fb03571a4c3844d93158ca +binfiles arch=win32 size=32 + bin/win32/epsffit.exe + bin/win32/extractres.exe + bin/win32/includeres.exe + bin/win32/psbook.exe + bin/win32/psjoin.exe + bin/win32/psnup.exe + bin/win32/psresize.exe + bin/win32/psselect.exe + bin/win32/pstops.exe + +name psutils.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of psutils +containersize 21820 +containerchecksum 1c62e8e1a7a23766206a65ae79a9acc57c9dc723845affaf08fbd0e51c63b4458f5d8a85d85736d0554d80ea1f778d936fdc77f3e946841db8bc7267aa2d58cf +binfiles arch=x86_64-cygwin size=38 + bin/x86_64-cygwin/epsffit.exe + bin/x86_64-cygwin/extractres + bin/x86_64-cygwin/includeres + bin/x86_64-cygwin/psbook.exe + bin/x86_64-cygwin/psjoin + bin/x86_64-cygwin/psnup.exe + bin/x86_64-cygwin/psresize.exe + bin/x86_64-cygwin/psselect.exe + bin/x86_64-cygwin/pstops.exe + +name psutils.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of psutils +containersize 61880 +containerchecksum 50fdc09aee26bf2b29ba75ebccaa471effb8a644d60dcccbce2fcc1e77f865b2cf380bab839a97a051771290bc81f29c89a4b2bd52a01f184f2eec7fd56c32cf +binfiles arch=x86_64-darwin size=96 + bin/x86_64-darwin/epsffit + bin/x86_64-darwin/extractres + bin/x86_64-darwin/includeres + bin/x86_64-darwin/psbook + bin/x86_64-darwin/psjoin + bin/x86_64-darwin/psnup + bin/x86_64-darwin/psresize + bin/x86_64-darwin/psselect + bin/x86_64-darwin/pstops + +name psutils.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of psutils +containersize 61172 +containerchecksum 18fa86c9aa890ab63a898c87f8bf8f71510ea4f5bef5c1b9d6c8cf1426b8657d7cfa8e71615f946de6694aa0de200e323117307b991cc9dd4df7b660d2c7e7b8 +binfiles arch=x86_64-darwinlegacy size=96 + bin/x86_64-darwinlegacy/epsffit + bin/x86_64-darwinlegacy/extractres + bin/x86_64-darwinlegacy/includeres + bin/x86_64-darwinlegacy/psbook + bin/x86_64-darwinlegacy/psjoin + bin/x86_64-darwinlegacy/psnup + bin/x86_64-darwinlegacy/psresize + bin/x86_64-darwinlegacy/psselect + bin/x86_64-darwinlegacy/pstops + +name psutils.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of psutils +containersize 69208 +containerchecksum 5ab37c3d987333151198ab2fde6bb860868a774535f7cc9a14b1ae847a462bd4c0a8983503e755b8ef792bcf88f0eaa74a56b78266641172be658a8772c25393 +binfiles arch=x86_64-linux size=91 + bin/x86_64-linux/epsffit + bin/x86_64-linux/extractres + bin/x86_64-linux/includeres + bin/x86_64-linux/psbook + bin/x86_64-linux/psjoin + bin/x86_64-linux/psnup + bin/x86_64-linux/psresize + bin/x86_64-linux/psselect + bin/x86_64-linux/pstops + +name psutils.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of psutils +containersize 74732 +containerchecksum a5797faa7a94b9162affc2f6065f7e4fab969a5a1b5f9db1393d41541c0758093d092120fdf35f5bf0b98550a26fcf18fdb37a91757865914c806f9e94a2b3cb +binfiles arch=x86_64-linuxmusl size=112 + bin/x86_64-linuxmusl/epsffit + bin/x86_64-linuxmusl/extractres + bin/x86_64-linuxmusl/includeres + bin/x86_64-linuxmusl/psbook + bin/x86_64-linuxmusl/psjoin + bin/x86_64-linuxmusl/psnup + bin/x86_64-linuxmusl/psresize + bin/x86_64-linuxmusl/psselect + bin/x86_64-linuxmusl/pstops + +name psutils.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of psutils +containersize 75340 +containerchecksum b59e52250548da092f4fed43c8b95bd8e68b968963a1f43f1f8c246cc41085a5758aa0e0c165363ad67aac946b92652711d0e2b68dc4715eeedb0f7594018edc +binfiles arch=x86_64-solaris size=110 + bin/x86_64-solaris/epsffit + bin/x86_64-solaris/extractres + bin/x86_64-solaris/includeres + bin/x86_64-solaris/psbook + bin/x86_64-solaris/psjoin + bin/x86_64-solaris/psnup + bin/x86_64-solaris/psresize + bin/x86_64-solaris/psselect + bin/x86_64-solaris/pstops + +name ptex +category Package +revision 50664 +shortdesc A TeX system for publishing in Japanese +longdesc pTeX adds features related to vertical writing, and deals with +longdesc other problems in typesetting Japanese. A set of additions to a +longdesc TEXMF tree, for use with pTeX, may be found in package +longdesc pTeX-texmf. pTeX is distributed as WEB change files. A manual +longdesc (in Japanese) is distributed as package pTeX-manual. +depend ptex-base +depend ptex-fonts +depend cm +depend hyphen-base +depend knuth-lib +depend plain +depend etex +depend ptex.ARCH +execute AddFormat name=ptex engine=ptex options="ptex.ini" fmttriggers=cm,hyphen-base,knuth-lib,plain,ptex-base,ptex-fonts +execute AddFormat name=eptex engine=eptex options="*eptex.ini" patterns=language.def fmttriggers=cm,hyphen-base,knuth-lib,plain,ptex-base,ptex-fonts,etex +execute addKanjiMap ptex-@jaEmbed@@jaVariant@.map +containersize 820 +containerchecksum 7e03619011e2095fe76674e39f6220d938a9673a34bf6cf35cf262a60d8eb140a5f978f8f04b6031a1fdb56e81edbc6c4ace82cea9fbbae2e9839b0b8d0e0612 +doccontainersize 119344 +doccontainerchecksum e09ce7a08be8a176e591cd69b1bdce5bf37d59537109ca820e9f4e60bdcb4cec32a58cee75ee36c61ab7a512eb2475df7f2afd570eeca53c33b2be94ac2ec88c +docfiles size=54 + texmf-dist/doc/man/man1/eptex.1 + texmf-dist/doc/man/man1/eptex.man1.pdf + texmf-dist/doc/man/man1/makejvf.1 + texmf-dist/doc/man/man1/makejvf.man1.pdf + texmf-dist/doc/man/man1/mendex.1 + texmf-dist/doc/man/man1/mendex.man1.pdf + texmf-dist/doc/man/man1/ppltotf.1 + texmf-dist/doc/man/man1/ppltotf.man1.pdf + texmf-dist/doc/man/man1/ptex.1 + texmf-dist/doc/man/man1/ptex.man1.pdf + texmf-dist/doc/man/man1/ptftopl.1 + texmf-dist/doc/man/man1/ptftopl.man1.pdf +catalogue-contact-bugs http://lists.tug.org/tex-k +catalogue-contact-home http://www.ascii.co.jp/pb/ptex/ +catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ptexdir +catalogue-contact-support http://lists.tug.org/tex-k +catalogue-ctan /language/japanese/ptex +catalogue-date 2019-01-08 20:07:01 +0100 +catalogue-license other-free +catalogue-topics engine japanese + +name ptex-base +category Package +revision 50731 +shortdesc Plain TeX format for pTeX and e-pTeX +relocated 1 +longdesc The bundle contains the plain TeX format for pTeX and e-pTeX. +containersize 10044 +containerchecksum 616ce41d8fe02c6d38dc638d6557ab29580cc57e52977b27d319ddca63844f91d7b0f0373c57bb039a3f70b6ff462eac179d9e816933b2954f2af1b00c3fa0d1 +doccontainersize 1532 +doccontainerchecksum e4aee26d3ac73efb1e0a2b4579e7e8cb1ae46925908ad407d8772eefd310fb5ac969c5c53303eb7e5ba6d0cc115f487fa600b5b6446ebaa52f9015ece56cc19c +docfiles size=2 + RELOC/doc/ptex/ptex-base/LICENSE + RELOC/doc/ptex/ptex-base/README.md details="Readme" +srccontainersize 572 +srccontainerchecksum 0f5a2eb6e73c1d454efb9e7a0949d0baf49ead997bbba4ca01b3f6ad894b050394430c194fab002bd41bc7017e578818677bf0eb577bf34c7bcc47bd243159d1 +srcfiles size=1 + RELOC/source/latex/ptex-base/Makefile +runfiles size=14 + RELOC/tex/ptex/ptex-base/ascii-jplain.tex + RELOC/tex/ptex/ptex-base/eptex.ini + RELOC/tex/ptex/ptex-base/eptex.src + RELOC/tex/ptex/ptex-base/eptexdefs.lib + RELOC/tex/ptex/ptex-base/kinsoku.tex + RELOC/tex/ptex/ptex-base/ptex.ini + RELOC/tex/ptex/ptex-base/ptex.tex +catalogue-contact-repository https://github.com/texjporg/ptex-base +catalogue-ctan /language/japanese/ptex-base +catalogue-date 2019-04-03 15:55:31 +0200 +catalogue-license bsd3 +catalogue-topics format japanese + +name ptex-fontmaps +category Package +revision 51023 +shortdesc Font maps and configuration tools for Japanese/Chinese/Korean fonts with (u)ptex +longdesc This package provides font maps and setup tools for Japanese, +longdesc Korean, Traditional Chinese, and Simplified Chinese. It is the +longdesc successor of the jfontmaps package. The files in this package +longdesc contain font maps for dvipdfmx to make various +longdesc Japanese/Chinese/Korean fonts available for (u)ptex and related +longdesc programs and formats. +depend arphic-ttf +depend baekmuk +depend ipaex +depend ptex-fontmaps.ARCH +containersize 37432 +containerchecksum 8951d9e1bc4b2f2e4ac7bc5cb3b56ddd3924684c65edb35ff680e72ede7aa3f15b92a1cad39d8e6652cf76abaa51e72115aface47068031c6b24fc82c5e6531c +doccontainersize 4524 +doccontainerchecksum c5e0f4b4ac9c657b83c27ced5bf3d4eccf993db6518fbb750e8a0b91752b40193a947a3ac2c53a82270be2f8ea736711b5a60e59f29c424bb3ca612038be8972 +docfiles size=7 + texmf-dist/doc/fonts/ptex-fontmaps/README details="Readme" + texmf-dist/doc/fonts/ptex-fontmaps/examples/otf-sample-04.tex + texmf-dist/doc/fonts/ptex-fontmaps/examples/otf-sample.tex + texmf-dist/doc/fonts/ptex-fontmaps/examples/ptex-sample.tex + texmf-dist/doc/fonts/ptex-fontmaps/examples/series-compare.tex +srccontainersize 305384 +srccontainerchecksum 10b3aa3fabaae3f7307861401b7b47e14b62a5f075fbf79dcec44e99ceaccd2e208b09aa9733e850d01938332c31ad399540b5d98a38ffe29261aaf794dd66ee +srcfiles size=250 + texmf-dist/source/ptex-fontmaps/jis04cmap_exp/JISX0213-2004-H + texmf-dist/source/ptex-fontmaps/jis04cmap_exp/JISX0213-2004-V + texmf-dist/source/ptex-fontmaps/jis04cmap_exp/README + texmf-dist/source/ptex-fontmaps/jis04cmap_exp/cmapdec.lua + texmf-dist/source/ptex-fontmaps/jis04cmap_exp/jis-h04-httk.pdf + texmf-dist/source/ptex-fontmaps/jis04cmap_exp/jis-h04-httk.tex + texmf-dist/source/ptex-fontmaps/jis04cmap_exp/jis-v04-vttk.pdf + texmf-dist/source/ptex-fontmaps/jis04cmap_exp/jis-v04-vttk.tex + texmf-dist/source/ptex-fontmaps/jis04cmap_exp/jisx0213-2004-8bit-std.txt + texmf-dist/source/ptex-fontmaps/jis04cmap_exp/mk_jis_to_aj16_cid.lua + texmf-dist/source/ptex-fontmaps/script/updmap-otf.sh +runfiles size=235 + texmf-dist/fonts/cmap/ptex-fontmaps/2004-H + texmf-dist/fonts/cmap/ptex-fontmaps/2004-V + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/adobe/otf-ko-adobe.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/adobe/otf-sc-adobe.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/adobe/otf-tc-adobe.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/adobe/uptex-ko-adobe.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/adobe/uptex-sc-adobe.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/adobe/uptex-tc-adobe.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/apple/otf-ko-apple.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/apple/uptex-ko-apple.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/arphic/otf-sc-arphic.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/arphic/otf-tc-arphic.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/arphic/uptex-sc-arphic.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/arphic/uptex-tc-arphic.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/baekmuk/otf-ko-baekmuk.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/baekmuk/uptex-ko-baekmuk.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/bizud/otf-bizud.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/bizud/otf-up-bizud.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/bizud/ptex-bizud.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/bizud/uptex-bizud.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/canon/otf-canon.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/canon/otf-up-canon.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/canon/ptex-canon.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/canon/uptex-canon.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/cjkunifonts-ttf/otf-sc-cjkunifonts-ttf.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/cjkunifonts-ttf/otf-tc-cjkunifonts-ttf.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/cjkunifonts-ttf/uptex-sc-cjkunifonts-ttf.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/cjkunifonts-ttf/uptex-tc-cjkunifonts-ttf.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/cjkunifonts/otf-sc-cjkunifonts.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/cjkunifonts/otf-tc-cjkunifonts.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/cjkunifonts/uptex-sc-cjkunifonts.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/cjkunifonts/uptex-tc-cjkunifonts.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/dynacomware/otf-tc-dynacomware.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/dynacomware/uptex-tc-dynacomware.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/fandol/otf-sc-fandol.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/fandol/uptex-sc-fandol.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/founder/otf-sc-founder.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/founder/uptex-sc-founder.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino-pron/otf-hiragino-pron.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino-pron/otf-up-hiragino-pron.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino-pron/ptex-hiragino-pron-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino-pron/ptex-hiragino-pron.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino-pron/uptex-hiragino-pron-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino-pron/uptex-hiragino-pron.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino/otf-hiragino.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino/otf-up-hiragino.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino/ptex-hiragino-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino/ptex-hiragino.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino/uptex-hiragino-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/hiragino/uptex-hiragino.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ipa/otf-ipa.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ipa/otf-up-ipa.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ipa/ptex-ipa.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ipa/uptex-ipa.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ipaex/otf-ipaex.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ipaex/otf-up-ipaex.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ipaex/ptex-ipaex.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ipaex/uptex-ipaex.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka-pr6/otf-kozuka-pr6.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka-pr6/otf-up-kozuka-pr6.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka-pr6/ptex-kozuka-pr6-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka-pr6/ptex-kozuka-pr6.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka-pr6/uptex-kozuka-pr6-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka-pr6/uptex-kozuka-pr6.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka-pr6n/otf-kozuka-pr6n.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka-pr6n/otf-up-kozuka-pr6n.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka-pr6n/ptex-kozuka-pr6n-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka-pr6n/ptex-kozuka-pr6n.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka-pr6n/uptex-kozuka-pr6n-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka-pr6n/uptex-kozuka-pr6n.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka/otf-kozuka.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka/otf-up-kozuka.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka/ptex-kozuka-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka/ptex-kozuka.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka/uptex-kozuka-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/kozuka/uptex-kozuka.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/moga-mobo-ex/otf-moga-mobo-ex.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/moga-mobo-ex/otf-up-moga-mobo-ex.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/moga-mobo-ex/ptex-moga-mobo-ex-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/moga-mobo-ex/ptex-moga-mobo-ex.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/moga-mobo-ex/uptex-moga-mobo-ex-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/moga-mobo-ex/uptex-moga-mobo-ex.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/moga-mobo/otf-moga-mobo.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/moga-mobo/otf-up-moga-mobo.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/moga-mobo/ptex-moga-mobo-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/moga-mobo/ptex-moga-mobo.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/moga-mobo/uptex-moga-mobo-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/moga-mobo/uptex-moga-mobo.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/morisawa-pr6n/otf-morisawa-pr6n.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/morisawa-pr6n/otf-up-morisawa-pr6n.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/morisawa-pr6n/ptex-morisawa-pr6n-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/morisawa-pr6n/ptex-morisawa-pr6n.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/morisawa-pr6n/uptex-morisawa-pr6n-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/morisawa-pr6n/uptex-morisawa-pr6n.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/morisawa/otf-morisawa.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/morisawa/otf-up-morisawa.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/morisawa/ptex-morisawa-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/morisawa/ptex-morisawa.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/morisawa/uptex-morisawa-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/morisawa/uptex-morisawa.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms-osx/otf-ms-osx.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms-osx/otf-sc-ms-osx.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms-osx/otf-up-ms-osx.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms-osx/ptex-ms-osx.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms-osx/uptex-ms-osx.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms-osx/uptex-sc-ms-osx.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms-win10/otf-tc-ms-win10.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms-win10/uptex-tc-ms-win10.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms/otf-ko-ms.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms/otf-ms.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms/otf-sc-ms.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms/otf-tc-ms.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms/otf-up-ms.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms/ptex-ms.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms/uptex-ko-ms.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms/uptex-ms.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms/uptex-sc-ms.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ms/uptex-tc-ms.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noEmbed/otf-ko-noEmbed.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noEmbed/otf-noEmbed.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noEmbed/otf-sc-noEmbed.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noEmbed/otf-tc-noEmbed.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noEmbed/otf-up-noEmbed.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noEmbed/ptex-noEmbed-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noEmbed/ptex-noEmbed.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noEmbed/uptex-ko-noEmbed.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noEmbed/uptex-noEmbed-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noEmbed/uptex-noEmbed.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noEmbed/uptex-sc-noEmbed.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noEmbed/uptex-tc-noEmbed.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto-otc/otf-ko-noto-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto-otc/otf-noto-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto-otc/otf-sc-noto-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto-otc/otf-tc-noto-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto-otc/otf-up-noto-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto-otc/ptex-noto-otc-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto-otc/ptex-noto-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto-otc/uptex-ko-noto-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto-otc/uptex-noto-otc-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto-otc/uptex-noto-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto-otc/uptex-sc-noto-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto-otc/uptex-tc-noto-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto/otf-ko-noto.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto/otf-noto.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto/otf-sc-noto.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto/otf-tc-noto.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto/otf-up-noto.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto/ptex-noto-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto/ptex-noto.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto/uptex-ko-noto.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto/uptex-noto-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto/uptex-noto.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto/uptex-sc-noto.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/noto/uptex-tc-noto.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/solaris/otf-ko-solaris.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/solaris/uptex-ko-solaris.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan-otc/otf-ko-sourcehan-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan-otc/otf-sc-sourcehan-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan-otc/otf-sourcehan-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan-otc/otf-tc-sourcehan-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan-otc/otf-up-sourcehan-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan-otc/ptex-sourcehan-otc-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan-otc/ptex-sourcehan-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan-otc/uptex-ko-sourcehan-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan-otc/uptex-sc-sourcehan-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan-otc/uptex-sourcehan-otc-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan-otc/uptex-sourcehan-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan-otc/uptex-tc-sourcehan-otc.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan/otf-ko-sourcehan.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan/otf-sc-sourcehan.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan/otf-sourcehan.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan/otf-tc-sourcehan.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan/otf-up-sourcehan.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan/ptex-sourcehan-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan/ptex-sourcehan.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan/uptex-ko-sourcehan.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan/uptex-sc-sourcehan.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan/uptex-sourcehan-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan/uptex-sourcehan.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/sourcehan/uptex-tc-sourcehan.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ume/otf-ume.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ume/otf-up-ume.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ume/ptex-ume.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ume/uptex-ume.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/unfonts/otf-ko-unfonts.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/unfonts/uptex-ko-unfonts.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-osx/otf-up-yu-osx.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-osx/otf-yu-osx.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-osx/ptex-yu-osx-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-osx/ptex-yu-osx.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-osx/uptex-yu-osx-04.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-osx/uptex-yu-osx.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-win/otf-up-yu-win.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-win/otf-yu-win.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-win/ptex-yu-win.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-win/uptex-yu-win.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-win10/otf-up-yu-win10.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-win10/otf-yu-win10.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-win10/ptex-yu-win10.map + texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/yu-win10/uptex-yu-win10.map + texmf-dist/fonts/misc/ptex-fontmaps/ptex-fontmaps-data.dat + texmf-dist/scripts/ptex-fontmaps/kanji-config-updmap-sys.sh + texmf-dist/scripts/ptex-fontmaps/kanji-config-updmap-user.sh + texmf-dist/scripts/ptex-fontmaps/kanji-config-updmap.pl + texmf-dist/scripts/ptex-fontmaps/kanji-fontmap-creator.pl +catalogue-contact-repository https://github.com/texjporg/jfontmaps +catalogue-ctan /fonts/ptex-fontmaps +catalogue-date 2019-05-06 15:19:14 +0200 +catalogue-license pdgpl3 +catalogue-topics font-use japanese chinese korean +catalogue-version 20190506.0 + +name ptex-fontmaps.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of ptex-fontmaps +containersize 436 +containerchecksum e90eb4f020e80c2b6c278b5ee3f97a6a143372790d138c13eabf7a743d42d56322e9b878f2ab5c98af490872e26b99883b9db5f0233c79b591ba182c494f9a8a +binfiles arch=aarch64-linux size=4 + bin/aarch64-linux/kanji-config-updmap + bin/aarch64-linux/kanji-config-updmap-sys + bin/aarch64-linux/kanji-config-updmap-user + bin/aarch64-linux/kanji-fontmap-creator + +name ptex-fontmaps.amd64-freebsd +category Package +revision 44206 +shortdesc amd64-freebsd files of ptex-fontmaps +containersize 436 +containerchecksum 416b8ca704156d0816d0072413ebe7d5f3b1149709d3241d3809e042eb3870fb4b1aa7350d314691be6d44f8764a277c5fd037633ed69e876012e47ae5c8ea9a +binfiles arch=amd64-freebsd size=4 + bin/amd64-freebsd/kanji-config-updmap + bin/amd64-freebsd/kanji-config-updmap-sys + bin/amd64-freebsd/kanji-config-updmap-user + bin/amd64-freebsd/kanji-fontmap-creator + +name ptex-fontmaps.amd64-netbsd +category Package +revision 44206 +shortdesc amd64-netbsd files of ptex-fontmaps +containersize 436 +containerchecksum cddca7d0fde477bfc26997e34f520d7f56c03f6bf000073be8238864613fe9971edb86c3afcdb96397e0b8f5338638dfbb09fbded42ad783a1405cec0469ba85 +binfiles arch=amd64-netbsd size=4 + bin/amd64-netbsd/kanji-config-updmap + bin/amd64-netbsd/kanji-config-updmap-sys + bin/amd64-netbsd/kanji-config-updmap-user + bin/amd64-netbsd/kanji-fontmap-creator + +name ptex-fontmaps.armhf-linux +category Package +revision 44206 +shortdesc armhf-linux files of ptex-fontmaps +containersize 432 +containerchecksum 56da5dc69a77160eeda3cecdd797d9054c2fb163df90ef133243d39af33491cd9bc044f0e8b081d97c4f4721d3f21f033492673e007f586ab4ede2ef335d52e0 +binfiles arch=armhf-linux size=4 + bin/armhf-linux/kanji-config-updmap + bin/armhf-linux/kanji-config-updmap-sys + bin/armhf-linux/kanji-config-updmap-user + bin/armhf-linux/kanji-fontmap-creator + +name ptex-fontmaps.i386-cygwin +category Package +revision 44206 +shortdesc i386-cygwin files of ptex-fontmaps +containersize 436 +containerchecksum 9b945c236ac1a6d0caa7db142db04761ee3744f1b5e86d1f30307bd739127f30a65e424970d17ef0dbfdac6061a696b2baba6a69dd025dcbfda005898d5a9115 +binfiles arch=i386-cygwin size=4 + bin/i386-cygwin/kanji-config-updmap + bin/i386-cygwin/kanji-config-updmap-sys + bin/i386-cygwin/kanji-config-updmap-user + bin/i386-cygwin/kanji-fontmap-creator + +name ptex-fontmaps.i386-freebsd +category Package +revision 44206 +shortdesc i386-freebsd files of ptex-fontmaps +containersize 436 +containerchecksum 7a1dd7590413fd1b5458593271837eb3a5f7ffcca02ac9106270a78408222da4953499f23a73323e094755437f1ffa0ebc249ae42501e4f7e05c438f2ec50b26 +binfiles arch=i386-freebsd size=4 + bin/i386-freebsd/kanji-config-updmap + bin/i386-freebsd/kanji-config-updmap-sys + bin/i386-freebsd/kanji-config-updmap-user + bin/i386-freebsd/kanji-fontmap-creator + +name ptex-fontmaps.i386-linux +category Package +revision 44206 +shortdesc i386-linux files of ptex-fontmaps +containersize 432 +containerchecksum e687952cf10f00ebaf4a7387c4870626eb97dbbab2f20f6b6f8dcb98ba551a33e2080329b72f374d471defef125f9cada6b4affebbe4dd549c138483c6cb0e58 +binfiles arch=i386-linux size=4 + bin/i386-linux/kanji-config-updmap + bin/i386-linux/kanji-config-updmap-sys + bin/i386-linux/kanji-config-updmap-user + bin/i386-linux/kanji-fontmap-creator + +name ptex-fontmaps.i386-netbsd +category Package +revision 44206 +shortdesc i386-netbsd files of ptex-fontmaps +containersize 432 +containerchecksum 3fae16fef041421fa1d4628b5f677e71214d46b3196ba2f0100867f75b5772fd9441afe610710610de4d997337501ce9863c7ea55d721e95e8ff0d94bc316d23 +binfiles arch=i386-netbsd size=4 + bin/i386-netbsd/kanji-config-updmap + bin/i386-netbsd/kanji-config-updmap-sys + bin/i386-netbsd/kanji-config-updmap-user + bin/i386-netbsd/kanji-fontmap-creator + +name ptex-fontmaps.i386-solaris +category Package +revision 44206 +shortdesc i386-solaris files of ptex-fontmaps +containersize 432 +containerchecksum ae63164a811350129e28785d0a8dad53c6955d0c2fc0fd27687217381a08d32a96f1228dd3d408bc14ef157f453d1b0e3da1b719542df4f510108c74f3d2ecfb +binfiles arch=i386-solaris size=4 + bin/i386-solaris/kanji-config-updmap + bin/i386-solaris/kanji-config-updmap-sys + bin/i386-solaris/kanji-config-updmap-user + bin/i386-solaris/kanji-fontmap-creator + +name ptex-fontmaps.win32 +category Package +revision 44206 +shortdesc win32 files of ptex-fontmaps +containersize 776 +containerchecksum 19e6f552a27598767ffc34e64354403dd3dc0192e45d01c510b6e566230ed37b1cedcb8e865d044c5cbc07d65a25e236d5f4fe69dd197efe345c5553b4770d39 +binfiles arch=win32 size=4 + bin/win32/kanji-config-updmap-sys.exe + bin/win32/kanji-config-updmap-user.exe + bin/win32/kanji-config-updmap.exe + bin/win32/kanji-fontmap-creator.exe + +name ptex-fontmaps.x86_64-cygwin +category Package +revision 44206 +shortdesc x86_64-cygwin files of ptex-fontmaps +containersize 436 +containerchecksum 1cc1e0d1c2611e375fdbaf5692901717c3d7d43e8b499a396395f3ce4e8800333a6e99da8642a9fe00cf0306c247bf1640b668f603be730ffbf8f05b671d2a20 +binfiles arch=x86_64-cygwin size=4 + bin/x86_64-cygwin/kanji-config-updmap + bin/x86_64-cygwin/kanji-config-updmap-sys + bin/x86_64-cygwin/kanji-config-updmap-user + bin/x86_64-cygwin/kanji-fontmap-creator + +name ptex-fontmaps.x86_64-darwin +category Package +revision 44206 +shortdesc x86_64-darwin files of ptex-fontmaps +containersize 432 +containerchecksum 66cf58ffbf9f2d2c10d1fae87020d4a475add4fa3058745f56caa54c3b2c117c76d667f5de60baf1cc4d536c9fb886508eb1509f72a6fbcf634af2cc0395944e +binfiles arch=x86_64-darwin size=4 + bin/x86_64-darwin/kanji-config-updmap + bin/x86_64-darwin/kanji-config-updmap-sys + bin/x86_64-darwin/kanji-config-updmap-user + bin/x86_64-darwin/kanji-fontmap-creator + +name ptex-fontmaps.x86_64-darwinlegacy +category Package +revision 44206 +shortdesc x86_64-darwinlegacy files of ptex-fontmaps +containersize 440 +containerchecksum 0bcdfb86b5d50dae32b5b9447c32b365b044187b87d3ce43436b0095989d1a62bc932c9b10935d78ee908cab97352df23d213f38a927e681bb6f7023b16a8b9b +binfiles arch=x86_64-darwinlegacy size=4 + bin/x86_64-darwinlegacy/kanji-config-updmap + bin/x86_64-darwinlegacy/kanji-config-updmap-sys + bin/x86_64-darwinlegacy/kanji-config-updmap-user + bin/x86_64-darwinlegacy/kanji-fontmap-creator + +name ptex-fontmaps.x86_64-linux +category Package +revision 44206 +shortdesc x86_64-linux files of ptex-fontmaps +containersize 432 +containerchecksum c3e1ee29e2fb3d8cf0b6b6ad0ad27a11328962cacb1721aac2ec1d2af66764db05bf71a15b74d0329a69959d5ffe659fe3f7bb39d67440b30ce3fcaf8292d312 +binfiles arch=x86_64-linux size=4 + bin/x86_64-linux/kanji-config-updmap + bin/x86_64-linux/kanji-config-updmap-sys + bin/x86_64-linux/kanji-config-updmap-user + bin/x86_64-linux/kanji-fontmap-creator + +name ptex-fontmaps.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of ptex-fontmaps +containersize 436 +containerchecksum 4dd1cb2c65e6251d3011ee33750a6c2b311209784268ce75ed25c2099984c34e5e340d027cf21cdce80e86384181bf184453c3fe7221c0abe654e3fadc16ef29 +binfiles arch=x86_64-linuxmusl size=4 + bin/x86_64-linuxmusl/kanji-config-updmap + bin/x86_64-linuxmusl/kanji-config-updmap-sys + bin/x86_64-linuxmusl/kanji-config-updmap-user + bin/x86_64-linuxmusl/kanji-fontmap-creator + +name ptex-fontmaps.x86_64-solaris +category Package +revision 44206 +shortdesc x86_64-solaris files of ptex-fontmaps +containersize 432 +containerchecksum 2e0dc4fd89b7eb46df9c36d299f1ee25a466a9a48fc8b6184c64f67b16b7522a055518100dc434fa84a9f6368d6169c189f34eb5a0c22739ad0440a3e9840b51 +binfiles arch=x86_64-solaris size=4 + bin/x86_64-solaris/kanji-config-updmap + bin/x86_64-solaris/kanji-config-updmap-sys + bin/x86_64-solaris/kanji-config-updmap-user + bin/x86_64-solaris/kanji-fontmap-creator + +name ptex-fonts +category Package +revision 46940 +shortdesc Fonts for use with pTeX +relocated 1 +longdesc The bundle contains fonts for use with pTeX and the documents +longdesc for the makejvf program. This is a redistribution derived from +longdesc the ptex-texmf distribution by ASCII MEDIA WORKS. +containersize 14180 +containerchecksum 54ebb6d2923ff6b277b4376041b90a0fa6a164281cb18820f175d5aa87f9e996c1adff16e9e5eb5bb90d52c135d581eb1d5ddc476ecb2446fd27d0cecd75bb30 +doccontainersize 4256 +doccontainerchecksum dd3c4d3510ec1de8a5174bd10a7ff7bb173b25354b28f0b8411fe23b41fee8523fe1993c30e55cb7c3eddd90bd17db5299cb8f4ca170e4d97869388d3fbd8137 +docfiles size=5 + RELOC/doc/fonts/ptex-fonts/Changes_makejvf + RELOC/doc/fonts/ptex-fonts/LICENSE + RELOC/doc/fonts/ptex-fonts/README.md details="Readme" + RELOC/doc/fonts/ptex-fonts/README_makejvf +runfiles size=1724 + RELOC/fonts/source/ptex-fonts/jis/jis-v.pl + RELOC/fonts/source/ptex-fonts/jis/jis.pl + RELOC/fonts/source/ptex-fonts/jis/jisn-v.pl + RELOC/fonts/source/ptex-fonts/jis/jisn.pl + RELOC/fonts/source/ptex-fonts/nmin-ngoth/ngoth10.pl + RELOC/fonts/source/ptex-fonts/nmin-ngoth/ngoth5.pl + RELOC/fonts/source/ptex-fonts/nmin-ngoth/ngoth6.pl + RELOC/fonts/source/ptex-fonts/nmin-ngoth/ngoth7.pl + RELOC/fonts/source/ptex-fonts/nmin-ngoth/ngoth8.pl + RELOC/fonts/source/ptex-fonts/nmin-ngoth/ngoth9.pl + RELOC/fonts/source/ptex-fonts/nmin-ngoth/nmin10.pl + RELOC/fonts/source/ptex-fonts/nmin-ngoth/nmin5.pl + RELOC/fonts/source/ptex-fonts/nmin-ngoth/nmin6.pl + RELOC/fonts/source/ptex-fonts/nmin-ngoth/nmin7.pl + RELOC/fonts/source/ptex-fonts/nmin-ngoth/nmin8.pl + RELOC/fonts/source/ptex-fonts/nmin-ngoth/nmin9.pl + RELOC/fonts/source/ptex-fonts/standard/goth10.pl + RELOC/fonts/source/ptex-fonts/standard/goth5.pl + RELOC/fonts/source/ptex-fonts/standard/goth6.pl + RELOC/fonts/source/ptex-fonts/standard/goth7.pl + RELOC/fonts/source/ptex-fonts/standard/goth8.pl + RELOC/fonts/source/ptex-fonts/standard/goth9.pl + RELOC/fonts/source/ptex-fonts/standard/min10.pl + RELOC/fonts/source/ptex-fonts/standard/min5.pl + RELOC/fonts/source/ptex-fonts/standard/min6.pl + RELOC/fonts/source/ptex-fonts/standard/min7.pl + RELOC/fonts/source/ptex-fonts/standard/min8.pl + RELOC/fonts/source/ptex-fonts/standard/min9.pl + RELOC/fonts/source/ptex-fonts/standard/tgoth10.pl + RELOC/fonts/source/ptex-fonts/standard/tgoth5.pl + RELOC/fonts/source/ptex-fonts/standard/tgoth6.pl + RELOC/fonts/source/ptex-fonts/standard/tgoth7.pl + RELOC/fonts/source/ptex-fonts/standard/tgoth8.pl + RELOC/fonts/source/ptex-fonts/standard/tgoth9.pl + RELOC/fonts/source/ptex-fonts/standard/tmin10.pl + RELOC/fonts/source/ptex-fonts/standard/tmin5.pl + RELOC/fonts/source/ptex-fonts/standard/tmin6.pl + RELOC/fonts/source/ptex-fonts/standard/tmin7.pl + RELOC/fonts/source/ptex-fonts/standard/tmin8.pl + RELOC/fonts/source/ptex-fonts/standard/tmin9.pl + RELOC/fonts/tfm/ptex-fonts/dvips/gbm.tfm + RELOC/fonts/tfm/ptex-fonts/dvips/gbmv.tfm + RELOC/fonts/tfm/ptex-fonts/dvips/rml.tfm + RELOC/fonts/tfm/ptex-fonts/dvips/rmlv.tfm + RELOC/fonts/tfm/ptex-fonts/jis/jis-v.tfm + RELOC/fonts/tfm/ptex-fonts/jis/jis.tfm + RELOC/fonts/tfm/ptex-fonts/jis/jisg-v.tfm + RELOC/fonts/tfm/ptex-fonts/jis/jisg.tfm + RELOC/fonts/tfm/ptex-fonts/jis/jisgn-v.tfm + RELOC/fonts/tfm/ptex-fonts/jis/jisgn.tfm + RELOC/fonts/tfm/ptex-fonts/jis/jisn-v.tfm + RELOC/fonts/tfm/ptex-fonts/jis/jisn.tfm + RELOC/fonts/tfm/ptex-fonts/nmin-ngoth/ngoth10.tfm + RELOC/fonts/tfm/ptex-fonts/nmin-ngoth/ngoth5.tfm + RELOC/fonts/tfm/ptex-fonts/nmin-ngoth/ngoth6.tfm + RELOC/fonts/tfm/ptex-fonts/nmin-ngoth/ngoth7.tfm + RELOC/fonts/tfm/ptex-fonts/nmin-ngoth/ngoth8.tfm + RELOC/fonts/tfm/ptex-fonts/nmin-ngoth/ngoth9.tfm + RELOC/fonts/tfm/ptex-fonts/nmin-ngoth/nmin10.tfm + RELOC/fonts/tfm/ptex-fonts/nmin-ngoth/nmin5.tfm + RELOC/fonts/tfm/ptex-fonts/nmin-ngoth/nmin6.tfm + RELOC/fonts/tfm/ptex-fonts/nmin-ngoth/nmin7.tfm + RELOC/fonts/tfm/ptex-fonts/nmin-ngoth/nmin8.tfm + RELOC/fonts/tfm/ptex-fonts/nmin-ngoth/nmin9.tfm + RELOC/fonts/tfm/ptex-fonts/standard/goth10.tfm + RELOC/fonts/tfm/ptex-fonts/standard/goth5.tfm + RELOC/fonts/tfm/ptex-fonts/standard/goth6.tfm + RELOC/fonts/tfm/ptex-fonts/standard/goth7.tfm + RELOC/fonts/tfm/ptex-fonts/standard/goth8.tfm + RELOC/fonts/tfm/ptex-fonts/standard/goth9.tfm + RELOC/fonts/tfm/ptex-fonts/standard/min10.tfm + RELOC/fonts/tfm/ptex-fonts/standard/min5.tfm + RELOC/fonts/tfm/ptex-fonts/standard/min6.tfm + RELOC/fonts/tfm/ptex-fonts/standard/min7.tfm + RELOC/fonts/tfm/ptex-fonts/standard/min8.tfm + RELOC/fonts/tfm/ptex-fonts/standard/min9.tfm + RELOC/fonts/tfm/ptex-fonts/standard/tgoth10.tfm + RELOC/fonts/tfm/ptex-fonts/standard/tgoth5.tfm + RELOC/fonts/tfm/ptex-fonts/standard/tgoth6.tfm + RELOC/fonts/tfm/ptex-fonts/standard/tgoth7.tfm + RELOC/fonts/tfm/ptex-fonts/standard/tgoth8.tfm + RELOC/fonts/tfm/ptex-fonts/standard/tgoth9.tfm + RELOC/fonts/tfm/ptex-fonts/standard/tmin10.tfm + RELOC/fonts/tfm/ptex-fonts/standard/tmin5.tfm + RELOC/fonts/tfm/ptex-fonts/standard/tmin6.tfm + RELOC/fonts/tfm/ptex-fonts/standard/tmin7.tfm + RELOC/fonts/tfm/ptex-fonts/standard/tmin8.tfm + RELOC/fonts/tfm/ptex-fonts/standard/tmin9.tfm + RELOC/fonts/vf/ptex-fonts/jis/jis-v.vf + RELOC/fonts/vf/ptex-fonts/jis/jis.vf + RELOC/fonts/vf/ptex-fonts/jis/jisg-v.vf + RELOC/fonts/vf/ptex-fonts/jis/jisg.vf + RELOC/fonts/vf/ptex-fonts/jis/jisgn-v.vf + RELOC/fonts/vf/ptex-fonts/jis/jisgn.vf + RELOC/fonts/vf/ptex-fonts/jis/jisn-v.vf + RELOC/fonts/vf/ptex-fonts/jis/jisn.vf + RELOC/fonts/vf/ptex-fonts/nmin-ngoth/ngoth10.vf + RELOC/fonts/vf/ptex-fonts/nmin-ngoth/ngoth5.vf + RELOC/fonts/vf/ptex-fonts/nmin-ngoth/ngoth6.vf + RELOC/fonts/vf/ptex-fonts/nmin-ngoth/ngoth7.vf + RELOC/fonts/vf/ptex-fonts/nmin-ngoth/ngoth8.vf + RELOC/fonts/vf/ptex-fonts/nmin-ngoth/ngoth9.vf + RELOC/fonts/vf/ptex-fonts/nmin-ngoth/nmin10.vf + RELOC/fonts/vf/ptex-fonts/nmin-ngoth/nmin5.vf + RELOC/fonts/vf/ptex-fonts/nmin-ngoth/nmin6.vf + RELOC/fonts/vf/ptex-fonts/nmin-ngoth/nmin7.vf + RELOC/fonts/vf/ptex-fonts/nmin-ngoth/nmin8.vf + RELOC/fonts/vf/ptex-fonts/nmin-ngoth/nmin9.vf + RELOC/fonts/vf/ptex-fonts/standard/goth10.vf + RELOC/fonts/vf/ptex-fonts/standard/goth5.vf + RELOC/fonts/vf/ptex-fonts/standard/goth6.vf + RELOC/fonts/vf/ptex-fonts/standard/goth7.vf + RELOC/fonts/vf/ptex-fonts/standard/goth8.vf + RELOC/fonts/vf/ptex-fonts/standard/goth9.vf + RELOC/fonts/vf/ptex-fonts/standard/min10.vf + RELOC/fonts/vf/ptex-fonts/standard/min5.vf + RELOC/fonts/vf/ptex-fonts/standard/min6.vf + RELOC/fonts/vf/ptex-fonts/standard/min7.vf + RELOC/fonts/vf/ptex-fonts/standard/min8.vf + RELOC/fonts/vf/ptex-fonts/standard/min9.vf + RELOC/fonts/vf/ptex-fonts/standard/tgoth10.vf + RELOC/fonts/vf/ptex-fonts/standard/tgoth5.vf + RELOC/fonts/vf/ptex-fonts/standard/tgoth6.vf + RELOC/fonts/vf/ptex-fonts/standard/tgoth7.vf + RELOC/fonts/vf/ptex-fonts/standard/tgoth8.vf + RELOC/fonts/vf/ptex-fonts/standard/tgoth9.vf + RELOC/fonts/vf/ptex-fonts/standard/tmin10.vf + RELOC/fonts/vf/ptex-fonts/standard/tmin5.vf + RELOC/fonts/vf/ptex-fonts/standard/tmin6.vf + RELOC/fonts/vf/ptex-fonts/standard/tmin7.vf + RELOC/fonts/vf/ptex-fonts/standard/tmin8.vf + RELOC/fonts/vf/ptex-fonts/standard/tmin9.vf +catalogue-contact-repository https://github.com/texjporg/ptex-fonts +catalogue-ctan /fonts/ptex-fonts +catalogue-date 2018-03-09 16:42:25 +0100 +catalogue-license bsd3 +catalogue-topics font-cjk + +name ptex-manual +category Package +revision 50733 +shortdesc Japanese pTeX manual +relocated 1 +longdesc This package contains the Japanese pTeX manual. Feedback is +longdesc welcome! +containersize 416 +containerchecksum a09a78d9c412cf812ddcb8c553650ed474516a97c7818fce68bb2222047d116cc4eae184b551f89b45eae49d0d91e902fae1025a353520dd56cb8280cdeda316 +doccontainersize 2380456 +doccontainerchecksum 539133b6f91ee252f62862760c502425b0387815c091d0a0e425bcfeda4939d44b83661b6e94de13086d7a5bb83c332b4ad998d5c23377f72d6a57f88e018488 +docfiles size=678 + RELOC/doc/ptex/ptex-manual/LICENSE + RELOC/doc/ptex/ptex-manual/README.md details="Readme" + RELOC/doc/ptex/ptex-manual/eptex_resume.pdf + RELOC/doc/ptex/ptex-manual/eptex_resume.tex + RELOC/doc/ptex/ptex-manual/eptexdoc.pdf + RELOC/doc/ptex/ptex-manual/eptexdoc.tex + RELOC/doc/ptex/ptex-manual/fam256d.tex + RELOC/doc/ptex/ptex-manual/fam256p.tex + RELOC/doc/ptex/ptex-manual/jfm.pdf + RELOC/doc/ptex/ptex-manual/jfm.tex + RELOC/doc/ptex/ptex-manual/jtex_asciimw.pdf + RELOC/doc/ptex/ptex-manual/jtex_asciimw.tex + RELOC/doc/ptex/ptex-manual/jtexdoc_asciimw.pdf + RELOC/doc/ptex/ptex-manual/jtexdoc_asciimw.tex + RELOC/doc/ptex/ptex-manual/ptex-manual.pdf details="The document itself" language="ja" + RELOC/doc/ptex/ptex-manual/ptex-manual.tex + RELOC/doc/ptex/ptex-manual/ptexdoc_asciimw.pdf + RELOC/doc/ptex/ptex-manual/ptexdoc_asciimw.tex + RELOC/doc/ptex/ptex-manual/ptexskip_asciimw.pdf + RELOC/doc/ptex/ptex-manual/ptexskip_asciimw.tex +srccontainersize 876 +srccontainerchecksum 259963273db22746370d950e307e7cc965963a4e059d129a4bc81136069ae4137b1e2c70a621d694fa2665a05da7c937e33922983bbd6d8c6c9e8e691f7ab2c1 +srcfiles size=1 + RELOC/source/latex/ptex-manual/Makefile +catalogue-contact-repository https://github.com/texjporg/ptex-manual +catalogue-ctan /info/ptex-manual +catalogue-date 2019-04-03 15:24:53 +0200 +catalogue-license bsd3 +catalogue-topics japanese-doc + +name ptex.aarch64-linux +category Package +revision 50794 +shortdesc aarch64-linux files of ptex +containersize 1229484 +containerchecksum 903c1f4449d88f8bed8e9a1deff2e1cbc0e1e6f148fce168b1030bb2a0340ced8755dd2b3c43c180eb63e6a11c198ba7c4a402e1b48e39af5ae4d2a0916faf00 +binfiles arch=aarch64-linux size=1060 + bin/aarch64-linux/eptex + bin/aarch64-linux/makejvf + bin/aarch64-linux/mendex + bin/aarch64-linux/pbibtex + bin/aarch64-linux/pdvitomp + bin/aarch64-linux/pdvitype + bin/aarch64-linux/pmpost + bin/aarch64-linux/ppltotf + bin/aarch64-linux/ptex + bin/aarch64-linux/ptftopl + bin/aarch64-linux/r-pmpost + +name ptex.amd64-freebsd +category Package +revision 50790 +shortdesc amd64-freebsd files of ptex +containersize 1643988 +containerchecksum f143b6418a2de368237172a2666655f7cd87a8c732eec014fb416838f98f07149ba11f50554a121b3fe1a9ec38a25387d6201be5b3f13e6ec59bb75270fff189 +binfiles arch=amd64-freebsd size=1373 + bin/amd64-freebsd/eptex + bin/amd64-freebsd/makejvf + bin/amd64-freebsd/mendex + bin/amd64-freebsd/pbibtex + bin/amd64-freebsd/pdvitomp + bin/amd64-freebsd/pdvitype + bin/amd64-freebsd/pmpost + bin/amd64-freebsd/ppltotf + bin/amd64-freebsd/ptex + bin/amd64-freebsd/ptftopl + bin/amd64-freebsd/r-pmpost + +name ptex.amd64-netbsd +category Package +revision 50808 +shortdesc amd64-netbsd files of ptex +containersize 1248752 +containerchecksum d3b7031ea91f248f0a53f9cc98d8804b5c5f9f63d9f94640f27f380faa10bd71229f4c4852c5d21cb10fa70c214b275dc64abaf8ba88e80d1ff3996d807d67ac +binfiles arch=amd64-netbsd size=1951 + bin/amd64-netbsd/eptex + bin/amd64-netbsd/makejvf + bin/amd64-netbsd/mendex + bin/amd64-netbsd/pbibtex + bin/amd64-netbsd/pdvitomp + bin/amd64-netbsd/pdvitype + bin/amd64-netbsd/pmpost + bin/amd64-netbsd/ppltotf + bin/amd64-netbsd/ptex + bin/amd64-netbsd/ptftopl + bin/amd64-netbsd/r-pmpost + +name ptex.armhf-linux +category Package +revision 50874 +shortdesc armhf-linux files of ptex +containersize 1139100 +containerchecksum d7efec4b2cc24d6229824796c9a16b298997da132167bafaa21b61e3f5be1eef9fd4c9997e9d0fde7759d9b985a364de3cd7c2a0bcd280deb34980a24061be4e +binfiles arch=armhf-linux size=960 + bin/armhf-linux/eptex + bin/armhf-linux/makejvf + bin/armhf-linux/mendex + bin/armhf-linux/pbibtex + bin/armhf-linux/pdvitomp + bin/armhf-linux/pdvitype + bin/armhf-linux/pmpost + bin/armhf-linux/ppltotf + bin/armhf-linux/ptex + bin/armhf-linux/ptftopl + bin/armhf-linux/r-pmpost + +name ptex.i386-cygwin +category Package +revision 50855 +shortdesc i386-cygwin files of ptex +containersize 1254480 +containerchecksum 6d117576646bedf973a6f7df8df1a03a48d72b9751695113fe43f54592dc0598bb38e12c9a1be7e54f8ba8b714440646796ed8dd17ac2e73b58849fd7133e66a +binfiles arch=i386-cygwin size=948 + bin/i386-cygwin/cygptexenc-1.dll + bin/i386-cygwin/eptex.exe + bin/i386-cygwin/makejvf.exe + bin/i386-cygwin/mendex.exe + bin/i386-cygwin/pbibtex.exe + bin/i386-cygwin/pdvitomp + bin/i386-cygwin/pdvitype.exe + bin/i386-cygwin/pmpost.exe + bin/i386-cygwin/ppltotf.exe + bin/i386-cygwin/ptex.exe + bin/i386-cygwin/ptftopl.exe + bin/i386-cygwin/r-pmpost + +name ptex.i386-freebsd +category Package +revision 50790 +shortdesc i386-freebsd files of ptex +containersize 1323908 +containerchecksum 8f03bad369742de027bf85fe81b86ebf3347f8ffbe0e50c0d229aa988bb1542658f6d305694a7b6d59f4a099c4dfb38afd7a8ec0abe0adf7bb530c0683283fd9 +binfiles arch=i386-freebsd size=1131 + bin/i386-freebsd/eptex + bin/i386-freebsd/makejvf + bin/i386-freebsd/mendex + bin/i386-freebsd/pbibtex + bin/i386-freebsd/pdvitomp + bin/i386-freebsd/pdvitype + bin/i386-freebsd/pmpost + bin/i386-freebsd/ppltotf + bin/i386-freebsd/ptex + bin/i386-freebsd/ptftopl + bin/i386-freebsd/r-pmpost + +name ptex.i386-linux +category Package +revision 50790 +shortdesc i386-linux files of ptex +containersize 1452824 +containerchecksum 0a099804370c8aa791795a8afc9bd2064585ed558a322fc0c01a6c4241387eb5ece18a2c359cb3047e220eed113f297a76d8479ab06105ddce7b2975ac7f1dbd +binfiles arch=i386-linux size=1252 + bin/i386-linux/eptex + bin/i386-linux/makejvf + bin/i386-linux/mendex + bin/i386-linux/pbibtex + bin/i386-linux/pdvitomp + bin/i386-linux/pdvitype + bin/i386-linux/pmpost + bin/i386-linux/ppltotf + bin/i386-linux/ptex + bin/i386-linux/ptftopl + bin/i386-linux/r-pmpost + +name ptex.i386-netbsd +category Package +revision 50808 +shortdesc i386-netbsd files of ptex +containersize 1085928 +containerchecksum d0ab37c935cb51343c2e04b89c6627f1503d69ef9178723a21a6edc79fd7496e75ffceb4ece55c13f8c82896ab0e398256ac4a2c31eda147c14e192d4de9a336 +binfiles arch=i386-netbsd size=1748 + bin/i386-netbsd/eptex + bin/i386-netbsd/makejvf + bin/i386-netbsd/mendex + bin/i386-netbsd/pbibtex + bin/i386-netbsd/pdvitomp + bin/i386-netbsd/pdvitype + bin/i386-netbsd/pmpost + bin/i386-netbsd/ppltotf + bin/i386-netbsd/ptex + bin/i386-netbsd/ptftopl + bin/i386-netbsd/r-pmpost + +name ptex.i386-solaris +category Package +revision 50790 +shortdesc i386-solaris files of ptex +containersize 1334120 +containerchecksum b3f2e3ddb527ba3cbef0529c82d03da9d5fa0945e59039176a8bed821a8b56f9cd4eac37d7ae497e57a263b294ea9a33918e010e436b6d00d119f66dc138a624 +binfiles arch=i386-solaris size=1044 + bin/i386-solaris/eptex + bin/i386-solaris/makejvf + bin/i386-solaris/mendex + bin/i386-solaris/pbibtex + bin/i386-solaris/pdvitomp + bin/i386-solaris/pdvitype + bin/i386-solaris/pmpost + bin/i386-solaris/ppltotf + bin/i386-solaris/ptex + bin/i386-solaris/ptftopl + bin/i386-solaris/r-pmpost + +name ptex.win32 +category Package +revision 50716 +shortdesc win32 files of ptex +containersize 1326692 +containerchecksum 12ad797982539aa374342665218173bd72f9b4dce96b8110ff692dd91f9b74e8632d58b2747bcf295ee8a0fbfaeb46b106c245d3f1635f9ffce94506485657c3 +binfiles arch=win32 size=1201 + bin/win32/eptex.dll + bin/win32/eptex.exe + bin/win32/makejvf.exe + bin/win32/mendex.exe + bin/win32/pbibtex.exe + bin/win32/pdvitomp.exe + bin/win32/pdvitype.exe + bin/win32/pmpost.dll + bin/win32/pmpost.exe + bin/win32/ppltotf.exe + bin/win32/ptex.dll + bin/win32/ptex.exe + bin/win32/ptftopl.exe + bin/win32/r-pmpost.exe + +name ptex.x86_64-cygwin +category Package +revision 50889 +shortdesc x86_64-cygwin files of ptex +containersize 1309344 +containerchecksum 30fe7ba4e8657b33a6b368542cbb2821b3d15a979d76e4b78cfa84e944a8ef6fe7df01be27ba9094d4eb8398c304beda25e2b84994393a97c1d171a31a9d689b +binfiles arch=x86_64-cygwin size=919 + bin/x86_64-cygwin/cygptexenc-1.dll + bin/x86_64-cygwin/eptex.exe + bin/x86_64-cygwin/makejvf.exe + bin/x86_64-cygwin/mendex.exe + bin/x86_64-cygwin/pbibtex.exe + bin/x86_64-cygwin/pdvitomp + bin/x86_64-cygwin/pdvitype.exe + bin/x86_64-cygwin/pmpost.exe + bin/x86_64-cygwin/ppltotf.exe + bin/x86_64-cygwin/ptex.exe + bin/x86_64-cygwin/ptftopl.exe + bin/x86_64-cygwin/r-pmpost + +name ptex.x86_64-darwin +category Package +revision 50790 +shortdesc x86_64-darwin files of ptex +containersize 1614200 +containerchecksum fcae1e5a865e76b926186178b337e3251114af1e4b57032ee708a8980fd4a60f518c3699058d0153aace7d0eaa32aefec3c388a51da186306a90fff4528c2493 +binfiles arch=x86_64-darwin size=1300 + bin/x86_64-darwin/eptex + bin/x86_64-darwin/makejvf + bin/x86_64-darwin/mendex + bin/x86_64-darwin/pbibtex + bin/x86_64-darwin/pdvitomp + bin/x86_64-darwin/pdvitype + bin/x86_64-darwin/pmpost + bin/x86_64-darwin/ppltotf + bin/x86_64-darwin/ptex + bin/x86_64-darwin/ptftopl + bin/x86_64-darwin/r-pmpost + +name ptex.x86_64-darwinlegacy +category Package +revision 50790 +shortdesc x86_64-darwinlegacy files of ptex +containersize 1333136 +containerchecksum 5b96aab0f78d615454c18194615b27e9d9f501ee25823fdb2f563401dbd5330c808cd13384ccf414d3853a8bfe6e0406a3b7f88225371d1eb612634dc4c5cc7b +binfiles arch=x86_64-darwinlegacy size=1059 + bin/x86_64-darwinlegacy/eptex + bin/x86_64-darwinlegacy/makejvf + bin/x86_64-darwinlegacy/mendex + bin/x86_64-darwinlegacy/pbibtex + bin/x86_64-darwinlegacy/pdvitomp + bin/x86_64-darwinlegacy/pdvitype + bin/x86_64-darwinlegacy/pmpost + bin/x86_64-darwinlegacy/ppltotf + bin/x86_64-darwinlegacy/ptex + bin/x86_64-darwinlegacy/ptftopl + bin/x86_64-darwinlegacy/r-pmpost + +name ptex.x86_64-linux +category Package +revision 50790 +shortdesc x86_64-linux files of ptex +containersize 1444920 +containerchecksum 117b39ab91e7a732c8e6f0c3d803b4909a43f867c57db68486c1a70fbe908a53a4a0e7b06fca65ad0fc9a3649a02f361927a4a2aa695d564c827fa2bcb67075c +binfiles arch=x86_64-linux size=1131 + bin/x86_64-linux/eptex + bin/x86_64-linux/makejvf + bin/x86_64-linux/mendex + bin/x86_64-linux/pbibtex + bin/x86_64-linux/pdvitomp + bin/x86_64-linux/pdvitype + bin/x86_64-linux/pmpost + bin/x86_64-linux/ppltotf + bin/x86_64-linux/ptex + bin/x86_64-linux/ptftopl + bin/x86_64-linux/r-pmpost + +name ptex.x86_64-linuxmusl +category Package +revision 50790 +shortdesc x86_64-linuxmusl files of ptex +containersize 1528104 +containerchecksum 3c60b7648bb680eba6a4c85bd29476b91f5030be36f883517eebbcd65a0eb1a42238dfd9afe6cd2aa5dd0f5995ebeace52d431e39bba6daf9776f2ba473dba38 +binfiles arch=x86_64-linuxmusl size=1283 + bin/x86_64-linuxmusl/eptex + bin/x86_64-linuxmusl/makejvf + bin/x86_64-linuxmusl/mendex + bin/x86_64-linuxmusl/pbibtex + bin/x86_64-linuxmusl/pdvitomp + bin/x86_64-linuxmusl/pdvitype + bin/x86_64-linuxmusl/pmpost + bin/x86_64-linuxmusl/ppltotf + bin/x86_64-linuxmusl/ptex + bin/x86_64-linuxmusl/ptftopl + bin/x86_64-linuxmusl/r-pmpost + +name ptex.x86_64-solaris +category Package +revision 50790 +shortdesc x86_64-solaris files of ptex +containersize 1514348 +containerchecksum 5470aec4671417c40670be89707872271fcf04a9eb63f5956f66f53779a0f7ef35d077f71eaa0621339a337962f1b60274a4434399d9c2ed5753522150df9f36 +binfiles arch=x86_64-solaris size=1194 + bin/x86_64-solaris/eptex + bin/x86_64-solaris/makejvf + bin/x86_64-solaris/mendex + bin/x86_64-solaris/pbibtex + bin/x86_64-solaris/pdvitomp + bin/x86_64-solaris/pdvitype + bin/x86_64-solaris/pmpost + bin/x86_64-solaris/ppltotf + bin/x86_64-solaris/ptex + bin/x86_64-solaris/ptftopl + bin/x86_64-solaris/r-pmpost + +name ptex2pdf +category Package +revision 49396 +shortdesc Convert Japanese TeX documents to PDF +longdesc The Lua script provides system-independent support of Japanese +longdesc typesetting engines in TeXworks. As TeXworks typesetting setup +longdesc does not allow for multistep processing, this script runs one +longdesc of the ptex-based programs (ptex, uptex, eptex, platex, +longdesc uplatex) followed by dvipdfmx. +depend ptex2pdf.ARCH +postaction script file=tlpkg/tlpostcode/ptex2pdf-tlpost.pl +containersize 7544 +containerchecksum 2528b9b182dccd3bb79fee2ce030874554d2ae674d78e481580bbbf03e38d12e1d7ee35b1e7d5fe887ea285851751bcbc2bf3d5cb462430b842ded4fb3a7b0bc +doccontainersize 8588 +doccontainerchecksum ba07bede383c322ab541cda888c620d1ce7313dc65807e0d1728d53bb1ee8ad46a15a5fa1b88c93d796cce2eb6b8c4b534fa8d5c9089e83d0a721a3b222c0727 +docfiles size=7 + texmf-dist/doc/latex/ptex2pdf/COPYING + texmf-dist/doc/latex/ptex2pdf/README.md details="Readme" +runfiles size=7 + texmf-dist/scripts/ptex2pdf/ptex2pdf.lua + tlpkg/tlpostcode/ptex2pdf-tlpost.pl +catalogue-contact-bugs https://github.com/texjporg/ptex2pdf/issues +catalogue-contact-home https://github.com/texjporg/ptex2pdf +catalogue-contact-repository https://github.com/texjporg/ptex2pdf.git +catalogue-ctan /language/japanese/ptex2pdf +catalogue-date 2018-12-12 17:43:43 +0100 +catalogue-license gpl2 +catalogue-topics compilation japanese +catalogue-version 20181212.0 + +name ptex2pdf.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of ptex2pdf +containersize 344 +containerchecksum b3ea4d69c64f06e6f9cdf8108183b3f01c894902f1435ffe032797f851769b402b578db4d17a59966ad43ef217b3f2b53db356eca67f381213f74dd22d557212 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/ptex2pdf + +name ptex2pdf.amd64-freebsd +category Package +revision 29335 +shortdesc amd64-freebsd files of ptex2pdf +containersize 344 +containerchecksum 7c71fc8591b9245d7a3a73e3ab24d87798a395890e81dbbfcb0a2b90c48081f7599e7334a1adaca691650f938e2793c13b3a210e0c55f52fb46ee3f47914a000 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/ptex2pdf + +name ptex2pdf.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of ptex2pdf +containersize 344 +containerchecksum 90c10120378267a4a24ec7a144a3d137bc188b83a84c05933accc341c246a2480e3b0e8d5b269d9c6d450f334ce8b54573a3caa26755fb22c4e5899cd4f6eda5 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/ptex2pdf + +name ptex2pdf.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of ptex2pdf +containersize 340 +containerchecksum fe9745e3d77302295c3ac22600e043bb7351db9318195b539e0bb93357b7e5b8be2c314bddc2f95d58f3bea9ea5c01cded525855c027ddbea466aad0fa9dbb19 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/ptex2pdf + +name ptex2pdf.i386-cygwin +category Package +revision 29335 +shortdesc i386-cygwin files of ptex2pdf +containersize 340 +containerchecksum 7de67bd2b599ee3ebd56cc11efb8e29da863d2df771a1773e152eff2ba28967c9bbb09ae583483cc787643edecdb4e4d41bc2c24449b02a181c69202fe4d5545 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/ptex2pdf + +name ptex2pdf.i386-freebsd +category Package +revision 29335 +shortdesc i386-freebsd files of ptex2pdf +containersize 344 +containerchecksum ef6f4c4e4557062b780c9442ef93a4227c8ab2f3cebb88d184f3aff68090bd28b55acd32b4df65e9c1312703c09f049da915cd6acab21fa00b5988880e2e88c9 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/ptex2pdf + +name ptex2pdf.i386-linux +category Package +revision 29335 +shortdesc i386-linux files of ptex2pdf +containersize 344 +containerchecksum 64db508ebe9864b499cf77a89a5980a4a5eedc790a2114998bf33b4dc1f050feac304bfbf81ae5695b82cdf69a3a6c0574de103f1bc572acfc5ec4ffc9d31168 +binfiles arch=i386-linux size=1 + bin/i386-linux/ptex2pdf + +name ptex2pdf.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of ptex2pdf +containersize 340 +containerchecksum 05cfcff25846d52989038d72ca1bdd66587e8da5d3879d18e40e9ae0cb2d14aae81349e3a1ca11d304045d5daec7fa6a1f643ce64fa2f6c508cf28c2840dd752 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/ptex2pdf + +name ptex2pdf.i386-solaris +category Package +revision 29335 +shortdesc i386-solaris files of ptex2pdf +containersize 344 +containerchecksum 49857e6bec0fe409d5d019b39cf331604590189a2e12535c2804ef45a2f619ccf944e57fb5abacd46edc0ed86bbfa8ded8f6afadc019c20dbb15ca15b2062bce +binfiles arch=i386-solaris size=1 + bin/i386-solaris/ptex2pdf + +name ptex2pdf.win32 +category Package +revision 29335 +shortdesc win32 files of ptex2pdf +containersize 684 +containerchecksum 8ed203a38c626e8e649458eb9df8af8386f17ff5beff484349ba1a8a2da0b97e50c0f489177eb94c05ee7206eb3d0c5459e88fe0acc5f1f3f54c75653e576a08 +binfiles arch=win32 size=1 + bin/win32/ptex2pdf.exe + +name ptex2pdf.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of ptex2pdf +containersize 344 +containerchecksum d74aa5db027cdce677e91d57aec82344ffafe5b4c6d2a63636c6d0423615f432941a6315ab186004ac7a95706b33776934df430d0a3b4684d0fa3899b3f5a6a2 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/ptex2pdf + +name ptex2pdf.x86_64-darwin +category Package +revision 29335 +shortdesc x86_64-darwin files of ptex2pdf +containersize 344 +containerchecksum 9ce9e8ffa62ed9777707eb5cfcae06536f8b354b8c11ce5aea4b3af0ec241cae7f1f555535e06a074e8d84c81750b0aabeaf5afd45bae4857ba916670b5f79c2 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/ptex2pdf + +name ptex2pdf.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of ptex2pdf +containersize 352 +containerchecksum b16be0f533d2aa29820290af45d374b828be76d7c824ca3bf9a3fbba9023718d3b3a1960563699411397c7c00557099512b3faf29192d1c40f5ef7a0be11d99a +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/ptex2pdf + +name ptex2pdf.x86_64-linux +category Package +revision 29335 +shortdesc x86_64-linux files of ptex2pdf +containersize 340 +containerchecksum 1282cac1314071dd59dd0b8c450fc2facf921589647dde23115975b2ccd8fb4dac022176717c17386513d3ff83d87f463a5f4d820cf6ec02d4eb056dd12026e4 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/ptex2pdf + +name ptex2pdf.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of ptex2pdf +containersize 348 +containerchecksum 2eaaee2c0216cc00ece6a852a5789f47c32419f2b7bf19fd5a733f3bdeb2d3a669db90fb0a1c0e3f81b45e09e983ce9c584feff9c9d41231623250ed5c32c329 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/ptex2pdf + +name ptex2pdf.x86_64-solaris +category Package +revision 29335 +shortdesc x86_64-solaris files of ptex2pdf +containersize 344 +containerchecksum c9f3ad297836871089a66c383b1fcabcf132c3db99eef2c74e91409da1325daeb8873741b86e67bd9c74365402dfd386b364d2e59d4cbd719df4c28751e2db1c +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/ptex2pdf + +name ptext +category Package +revision 30171 +shortdesc A 'lipsum' for Persian +relocated 1 +longdesc The package provides lipsum-like facilities for the Persian +longdesc language. The source of the filling text is the Persian epic +longdesc "the Shanameh" (100 paragraphs are used.) The package needs to +longdesc be run under XeLaTeX. +containersize 21740 +containerchecksum ceb8844ff23034bf730823349e6251ef0c7f208ef74c3ed61fa212af89a3208e8f9f1b74b7877698d4459047b64376faea647a919b340d306d54de43ee9617a2 +doccontainersize 56200 +doccontainerchecksum 31ec6dea18c99aac831f4f180ccce47781ce98b2a8859bb62019cdffd690a8b803cba66728d1a9805a8a39de9ef43e357be8fb6a16e0602cf67f7f9dc6cb317e +docfiles size=17 + RELOC/doc/xelatex/ptext/README details="Readme" + RELOC/doc/xelatex/ptext/ptext.pdf details="Package documentation (writtent in Persian)" language="fa" + RELOC/doc/xelatex/ptext/ptext.tex +runfiles size=22 + RELOC/tex/xelatex/ptext/ptext.sty +catalogue-ctan /macros/xetex/latex/ptext +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.2 +catalogue-topics persian macro-supp xetex dummy-gen +catalogue-version 1.1 + +name ptolemaicastronomy +category Package +revision 50810 +shortdesc Diagrams of sphere models for variably strict conditionals (Lewis counterfactuals) +relocated 1 +longdesc David K. Lewis (Counterfactuals, Blackwell 1973) introduced a +longdesc sphere semantics for counterfactual conditionals. He jokingly +longdesc referred to the diagrams depicting such sphere models as +longdesc Ptolemaic astronomy, hence the name of this package. The macros +longdesc provided in this package aid in the construction of sphere +longdesc model diagrams in the style of Lewis. The macros all make use +longdesc of TikZ. +containersize 1600 +containerchecksum 58202171aa08b297e2999554d8b6ee43d4c5772e2f28fcf73c11a00ff8476dcdebfaa5352c7d248720feab2ba642947f07362cd9124dbed27e22086123da3de6 +doccontainersize 246244 +doccontainerchecksum 04997eb4bfd5c5e7789b5db02e9c27a9eb4d65e685be1428c5b81199957dff5aca626a76c719d871217ccaa2a6e6eef6c17ed94f4ea161f581b77a22306d61f3 +docfiles size=63 + RELOC/doc/latex/ptolemaicastronomy/README.md details="Readme" + RELOC/doc/latex/ptolemaicastronomy/README.txt + RELOC/doc/latex/ptolemaicastronomy/ptolemaicastronomy.pdf details="Package documentation" +srccontainersize 4856 +srccontainerchecksum 2a2d250d5deff043970037268b6f7400e073da58b1e6fce0d2a6e2b0c77a567dc683f616fd7ba67b659bec3f137349b37c84b808364bf5359392026730af3aae +srcfiles size=5 + RELOC/source/latex/ptolemaicastronomy/ptolemaicastronomy.dtx + RELOC/source/latex/ptolemaicastronomy/ptolemaicastronomy.ins +runfiles size=1 + RELOC/tex/latex/ptolemaicastronomy/ptolemaicastronomy.sty +catalogue-contact-bugs https://github.com/rzach/ptolemaic-astronomy/issues +catalogue-contact-repository https://github.com/rzach/ptolemaic-astronomy +catalogue-ctan /graphics/pgf/contrib/ptolemaicastronomy +catalogue-date 2019-04-06 07:05:41 +0200 +catalogue-license lppl1.3c +catalogue-topics pgf-tikz logic +catalogue-version 1.0 + +name ptptex +category Package +revision 19440 +shortdesc Macros for 'Progress of Theoretical Physics' +relocated 1 +longdesc The distribution contains the class (which offers an option +longdesc file for preprints), and a template. The class requires the +longdesc cite, overcite and wrapfig packages. +containersize 9492 +containerchecksum a2c31b2e039c198d3c3c84cb58cc0b9326bcf11b4c361c1d5c9b8f5aa4943f14b30e722bc2425a38b69935f4c88c67439747ffd65e0a194f2e5dd54a6448bbde +doccontainersize 192944 +doccontainerchecksum 0e754625fb8507591f21b860901de1b06bcb31f5c0b2fd7df1fa5257c7c611bae4f575f7387362bdd21d826a329a8af3ba00fd30c3bc9d91be7dea5d66e2fdae +docfiles size=64 + RELOC/doc/latex/ptptex/README details="Readme" + RELOC/doc/latex/ptptex/README.TEXLIVE + RELOC/doc/latex/ptptex/manptp.pdf details="Package documentation" + RELOC/doc/latex/ptptex/manptp.tex + RELOC/doc/latex/ptptex/template.tex +runfiles size=12 + RELOC/tex/latex/ptptex/ptp-prep.clo + RELOC/tex/latex/ptptex/ptptex.cls + RELOC/tex/latex/ptptex/wrapft.sty +catalogue-ctan /macros/latex/contrib/ptptex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics journalpub physics +catalogue-version 0.91 + +name punk +category Package +revision 27388 +shortdesc Donald Knuth's punk font +relocated 1 +longdesc A response to the assertion in a lecture that "typography tends +longdesc to lag behind other stylistic changes by about 10 years". Knuth +longdesc felt it was (in 1988) time to design a replacement for his +longdesc designs of the 1970s, and came up with this font! The fonts are +longdesc distributed as Metafont source. The package offers LaTeX +longdesc support by Rohit Grover, from an original by Sebastian Rahtz, +longdesc which is slightly odd in claiming that the fonts are +longdesc T1-encoded. A (possibly) more rational support package is to be +longdesc found in punk-latex +containersize 6052 +containerchecksum a442a536dbdaff9dfa9d1cdfe1a084d0f4e4e28174a424cf59a1da94013e115b9fc6294ea3362c85cb770028c62b21f7f7fa9817dbd68787498199ce585589dc +doccontainersize 1044 +doccontainerchecksum 33842d1fb46a78654d7351ccf88b40b87e6e03d83598f661ac21ee99d45156dd8b37a652c5c8e55506f95fc57b83e7f62f6c90c3fea5443dc5bb6590302b3e7d +docfiles size=2 + RELOC/doc/fonts/punk/punk.sty + RELOC/doc/fonts/punk/punktest.tex +runfiles size=20 + RELOC/fonts/source/public/punk/punk.mf + RELOC/fonts/source/public/punk/punk10.mf + RELOC/fonts/source/public/punk/punk12.mf + RELOC/fonts/source/public/punk/punk20.mf + RELOC/fonts/source/public/punk/punka.mf + RELOC/fonts/source/public/punk/punkae.mf + RELOC/fonts/source/public/punk/punkbx20.mf + RELOC/fonts/source/public/punk/punkd.mf + RELOC/fonts/source/public/punk/punkg.mf + RELOC/fonts/source/public/punk/punkl.mf + RELOC/fonts/source/public/punk/punkp.mf + RELOC/fonts/source/public/punk/punksl.mf + RELOC/fonts/source/public/punk/punksl20.mf + RELOC/fonts/tfm/public/punk/punk10.tfm + RELOC/fonts/tfm/public/punk/punk12.tfm + RELOC/fonts/tfm/public/punk/punk20.tfm + RELOC/fonts/tfm/public/punk/punkbx20.tfm + RELOC/fonts/tfm/public/punk/punksl20.tfm +catalogue-ctan /fonts/punk +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license knuth +catalogue-topics font font-mf font-novelty + +name punk-latex +category Package +revision 27389 +shortdesc LaTeX support for punk fonts +relocated 1 +longdesc The package and .fd file provide support for Knuth's punk +longdesc fonts. That bundle also offers support within LaTeX; the +longdesc present package is to be preferred. +containersize 888 +containerchecksum e44098c082465aa620d436a41306c9a1f36075c2612aa045e7c958151fc62e9a740584d9a9dd94b0c5631c00d406762a8e35f672931cccd3c09fe95850f3a2ba +doccontainersize 150276 +doccontainerchecksum 36a3341d2dca08941a923a1f407b422e96438e79ba5e3911a89f13d48317ec5aa0f5afccc7539b0882996fb872b38bc3653f1e5b088805e5ef7c9d96a4546d01 +docfiles size=41 + RELOC/doc/latex/punk-latex/README details="Readme" + RELOC/doc/latex/punk-latex/punk.pdf details="Package documentation" + RELOC/doc/latex/punk-latex/punk.tex +runfiles size=2 + RELOC/tex/latex/punk-latex/ot1pnk.fd + RELOC/tex/latex/punk-latex/punk.sty +catalogue-ctan /macros/latex/contrib/punk-latex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics font-supp +catalogue-version 1.1 + +name punknova +category Package +revision 24649 +shortdesc OpenType version of Knuth's Punk font +relocated 1 +longdesc The font was generated from a MetaPost version of the sources +longdesc of the 'original' punk font. Knuth's original fonts generated +longdesc different shapes at random. This isn't actually possible in an +longdesc OpenType font; rather, the font contains several variants of +longdesc each glyph, and uses the OpenType randomize function to select +longdesc a variant for each invocation. +containersize 814008 +containerchecksum bcb37b02258ba406e8ef3965619c99193c08a4e1d11f771b3c6b06716eac16134be81585220a581176d9e8b4d7f488730ada3b5963238ff982be400cbb41d888 +doccontainersize 141900 +doccontainerchecksum 64df58c8996563a447ed7a012c6dd8f5248c8a7db06089d776e8ce64d516b4a0c4bf9042f587c996c7ab61582bba919551d352c9ca75f8696bcac5ad0e34866c +docfiles size=44 + RELOC/doc/fonts/punknova/Makefile + RELOC/doc/fonts/punknova/NEWS + RELOC/doc/fonts/punknova/README details="Readme" + RELOC/doc/fonts/punknova/documentation/documentation-sources/sample.tex + RELOC/doc/fonts/punknova/documentation/sample.pdf details="Text sample" + RELOC/doc/fonts/punknova/source/punkfont-bold.mp + RELOC/doc/fonts/punknova/source/punkfont-boldslanted.mp + RELOC/doc/fonts/punknova/source/punkfont-regular.mp + RELOC/doc/fonts/punknova/source/punkfont-slanted.mp + RELOC/doc/fonts/punknova/tools/build.py +runfiles size=424 + RELOC/fonts/opentype/public/punknova/punknova-bold.otf + RELOC/fonts/opentype/public/punknova/punknova-boldslanted.otf + RELOC/fonts/opentype/public/punknova/punknova-regular.otf + RELOC/fonts/opentype/public/punknova/punknova-slanted.otf +catalogue-ctan /fonts/punknova +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics font font-otf font-novelty +catalogue-version 1.003 + +name purifyeps +category Package +revision 29725 +shortdesc Make EPS work with both LaTeX/dvips and pdfLaTeX +longdesc While pdfLaTeX has a number of nice features, its primary +longdesc shortcoming relative to standard LaTeX+dvips is that it is +longdesc unable to read ordinary Encapsulated PostScript (EPS) files, +longdesc the most common graphics format in the LaTeX world. Purifyeps +longdesc converts EPS files into a 'purified' form that can be read by +longdesc both LaTeX+dvips and pdfLaTeX. The trick is that the standard +longdesc LaTeX2e graphics packages can parse MetaPost-produced EPS +longdesc directly. Hence, purifyeps need only convert an arbitrary EPS +longdesc file into the same stylized format that MetaPost outputs. +depend purifyeps.ARCH +containersize 6212 +containerchecksum 79d99ef7ebc462c7c65d03f23cc85b9f136df2b0c9d647fc0672584fa57bfb7447f6db0e6d6b11bfc738cfe8c8658f45fe0b4059ff00f355e4b21d44f0d4102a +doccontainersize 15056 +doccontainerchecksum 3f9fadfb35596835b250cab98b0d1e3c6d537cfac5878e0b9788aeb5cc7ef455ce3d44f7d0f03e9002796a162d374f6aa8f9bce5bd4c3f0e8937040de0b82a8d +docfiles size=9 + texmf-dist/doc/man/man1/purifyeps.1 + texmf-dist/doc/man/man1/purifyeps.man1.pdf + texmf-dist/doc/support/purifyeps/README details="Package README" +runfiles size=5 + texmf-dist/scripts/purifyeps/purifyeps +catalogue-ctan /support/purifyeps +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font-proc +catalogue-version 1.1 + +name purifyeps.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of purifyeps +containersize 340 +containerchecksum 509c4b1caca6490ffc6f451efe5e6d02290d4b85345f20cbd19259475436c65b271940aadb92dada59b739a6e475cabbf327ae15272ee5c0e14e2de26713a755 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/purifyeps + +name purifyeps.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of purifyeps +containersize 340 +containerchecksum 5010963a6a0647d2979ab75c5ad487b1e59ffc91a5ce9d017e9361c2994fe10db17aa1559e34de1adf2d9b8396e8889805c58d06bd6a12faafe17160583dea54 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/purifyeps + +name purifyeps.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of purifyeps +containersize 340 +containerchecksum e2fb7bcf1ae668bdb9f0891bc0d11949115107bc9f64eff1ba16aa81f3925dfde1f458f4e8c2da3fcb87290111338d5a689a219ec129b822a662b7ea917c1250 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/purifyeps + +name purifyeps.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of purifyeps +containersize 340 +containerchecksum 23da41bf7f83f5387d2a11b2ac85ef2f9c51c601157a6d5fdb874f7d33d5227cdad036b0ab0ad077e71a79dc27827bbe1b30cf9e4595f19279361996a3bbb9f4 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/purifyeps + +name purifyeps.i386-cygwin +category Package +revision 13717 +shortdesc i386-cygwin files of purifyeps +containersize 336 +containerchecksum fb24b387e844ba57123bf99d419dadedea2bd248d8c4e5531f4671b1f67ac1b04e26b3d69c9c8392ead5bd53263d5fc07cbc7dc9518247aa23acfbcbbfbe560f +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/purifyeps + +name purifyeps.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of purifyeps +containersize 340 +containerchecksum d308e90a39c107da0b00387f2ce7edb4f25c0fc698a38e2da797facbcb31f4e2de675b5c74e15433c292731ff41515966f9a49378e1c34899f00dabf4f44b2a4 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/purifyeps + +name purifyeps.i386-linux +category Package +revision 13663 +shortdesc i386-linux files of purifyeps +containersize 340 +containerchecksum 0724a986fbf380f7537e7686fdfded7cb2dc18ef6332f91e8808502ec7441642c80c9d770b397f3058bf8ed929ed146e2c23f2ea02e753acef108505639814f3 +binfiles arch=i386-linux size=1 + bin/i386-linux/purifyeps + +name purifyeps.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of purifyeps +containersize 340 +containerchecksum 7fb13dfe2d237f43510972484d17a38814f7456f429f508bab2bdc36a5bf6c59429acade937f8a7347636bff4b6f3b3de48bc80f398a4f95484fed5b83f34185 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/purifyeps + +name purifyeps.i386-solaris +category Package +revision 13898 +shortdesc i386-solaris files of purifyeps +containersize 340 +containerchecksum 3cfa6334437a08230a22be004db34b5f1a617dc2d91489c4bc74b9f73b5cdb9778b95a7de5246b9603f778094e9c6609fa6433a67d5a96de9d1ee88756d45272 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/purifyeps + +name purifyeps.win32 +category Package +revision 15404 +shortdesc win32 files of purifyeps +containersize 684 +containerchecksum 3388691c325c0640d0e040211428c3dae7a66bd48897ed19be413dfabe20552b71bb082cdd26e1858924cb4ab15faef8469881430389d919306d0f51e0f4db1c +binfiles arch=win32 size=1 + bin/win32/purifyeps.exe + +name purifyeps.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of purifyeps +containersize 340 +containerchecksum 2d738161de4d438cc098dbc2b12d3d79efa2abf34fe4562148c2340a3b5b7734e6c5ceb164267886e48dc72bc61f41796bf491e639ac221e95b435e8b957a9b9 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/purifyeps + +name purifyeps.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of purifyeps +containersize 340 +containerchecksum e816c8a2f556176ae26d889e6d1e1e84ff298ebc4d3b2b8b2ce1b1b8a48126a4fdda2dcca5431143304e9046f870e4952aa9c92b8ab0d9ddff5c54d89266a54f +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/purifyeps + +name purifyeps.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of purifyeps +containersize 348 +containerchecksum 0c6fad7efff4d74981b01186318d0d56f26dd63818627f0fe11d45b323d76af79f6bf41b4ebb329d0b5942cc1c9a2225cf8b7b223e94d0fcb9787faed7a0636c +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/purifyeps + +name purifyeps.x86_64-linux +category Package +revision 13777 +shortdesc x86_64-linux files of purifyeps +containersize 340 +containerchecksum 17460a14651575c4e15ba1e1fd705386e68e4acab85248614f8ecebfb0de71ea2ed140b09867f94d1989f6bd1ba74ed9f48d5c5fcd09d17f2119a24757aa5c16 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/purifyeps + +name purifyeps.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of purifyeps +containersize 344 +containerchecksum 598609888a3b6b259e1bd3fb6dbc1d21d3409c8af41d4a419107c85a42f197323b96b4b36d1b95398ef4a8ed0ab3286716e5887b9db279e1b5457a806d2120e2 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/purifyeps + +name purifyeps.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of purifyeps +containersize 340 +containerchecksum 11471640ae0c99563a12f1dfcb8a5ca00e4944d878dcf4c6b6041007b498f4bda76f9e0e11fd68ed5d7157fb198497bf5979f3c60c382163309b15e2587f31b6 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/purifyeps + +name pxbase +category Package +revision 44756 +shortdesc Tools for use with (u)pLaTeX +relocated 1 +longdesc The main purpose of this package is to provide auxiliary +longdesc functions which are utilized by other packages created by the +longdesc same author. It also provides a few user commands to assist in +longdesc creating Japanese documents using (u)pLaTeX. +containersize 11640 +containerchecksum e567378515039b55eab0a12ca645ba5ff17c2dbaf56309c3273beb0d05c7e6e2dcf3d7d22091907df5636451df8e91d09673607918dd9ac091908cb6ef1e4de1 +doccontainersize 160380 +doccontainerchecksum d6d87123dce0a2afe3380cf32fffc8954e30d22e9822d0ff89500bea6a455c70a6699576265cebad29ba33c0fa5e7b63a40f26f7579d1fe9dc0cbcb528c45d00 +docfiles size=47 + RELOC/doc/platex/pxbase/LICENSE + RELOC/doc/platex/pxbase/README-ja.md details="Readme (Japanese)" language="ja" + RELOC/doc/platex/pxbase/README.md details="Readme" + RELOC/doc/platex/pxbase/pxbabel.pdf + RELOC/doc/platex/pxbase/pxbabel.tex +runfiles size=16 + RELOC/tex/platex/pxbase/pxbabel.sty + RELOC/tex/platex/pxbase/pxbase.def + RELOC/tex/platex/pxbase/pxbase.sty + RELOC/tex/platex/pxbase/pxbasenc.def + RELOC/tex/platex/pxbase/pxbsjc.def + RELOC/tex/platex/pxbase/pxbsjc1.def + RELOC/tex/platex/pxbase/pxjsfenc.def + RELOC/tex/platex/pxbase/upkcat.sty +catalogue-contact-home https://github.com/zr-tex8r/PXbase +catalogue-ctan /language/japanese/pxbase +catalogue-date 2017-07-06 10:05:14 +0200 +catalogue-license mit +catalogue-topics japanese +catalogue-version 1.1b + +name pxchfon +category Package +revision 51164 +shortdesc Japanese font setup for pLaTeX and upLaTeX +relocated 1 +longdesc This package enables users to declare in their document which +longdesc physical fonts should be used for the standard Japanese +longdesc (logical) fonts of pLaTeX and upLaTeX. Font setup is realized +longdesc by changing the font mapping of dvipdfmx, and thus users can +longdesc use any (monospaced) physical fonts they like, once they +longdesc properly install this package, without creating helper files +longdesc for each new font. This package also supports setup for the +longdesc fonts used in the japanese-otf package. System requirements: +longdesc TeX format: LaTeX. TeX engine: pTeX or upTeX. DVIware: +longdesc dvipdfmx. Prerequisite packages: atbegshi. +containersize 18392 +containerchecksum 168b91b891ff16be217a87230472f60756c16d5576d024f64f02b2e4ddb20bf98aa5288b6f4afeabe87c2d36b9690d88c0691896584ee0996a0f75d6ab700bc2 +doccontainersize 360704 +doccontainerchecksum 5b77c4a101d5fe09bb13d0835fe2897937ef5f892cb720cbc09a521c94cb3e9dbe84f8ffc846917d43b45c4bb6f1179a7def671576fece2c817ae92e19869edf +docfiles size=113 + RELOC/doc/platex/pxchfon/LICENSE + RELOC/doc/platex/pxchfon/README-ja.md details="Readme" language="ja" + RELOC/doc/platex/pxchfon/README.md details="Readme" + RELOC/doc/platex/pxchfon/pxchfon.pdf details="Package documentation" language="ja" + RELOC/doc/platex/pxchfon/pxchfon.tex + RELOC/doc/platex/pxchfon/sample-2000jis.pdf + RELOC/doc/platex/pxchfon/sample-2000jis.tex + RELOC/doc/platex/pxchfon/sample-2004jis.pdf + RELOC/doc/platex/pxchfon/sample-2004jis.tex + RELOC/doc/platex/pxchfon/sample-pxchfon.pdf + RELOC/doc/platex/pxchfon/sample-pxchfon.tex +runfiles size=105 + RELOC/fonts/sfd/pxchfon/PXcjk0.sfd + RELOC/fonts/tfm/public/pxchfon/cfjam-r-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjam-r-l5j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjam-r-t1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjam-r-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjar-b-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjar-b-l5j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjar-b-t1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjar-b-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjar-l-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjar-l-l5j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjar-l-t1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjar-l-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjar-r-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjar-r-l5j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjar-r-t1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjar-r-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjas-b-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjas-b-l5j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjas-b-t1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjas-b-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjas-r-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjas-r-l5j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjas-r-t1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjas-r-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjas-x-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjas-x-l5j.tfm + RELOC/fonts/tfm/public/pxchfon/cfjas-x-t1.tfm + RELOC/fonts/tfm/public/pxchfon/cfjas-x-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjam-r-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjam-r-t1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjam-r-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjam-rz-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjar-b-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjar-b-t1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjar-b-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjar-bz-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjar-l-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjar-l-t1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjar-l-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjar-lz-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjar-r-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjar-r-t1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjar-r-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjar-rz-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjas-b-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjas-b-t1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjas-b-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjas-bz-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjas-r-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjas-r-t1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjas-r-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjas-rz-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjas-x-l0j.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjas-x-t1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjas-x-ts1.tfm + RELOC/fonts/tfm/public/pxchfon/r-cfjas-xz-l0j.tfm + RELOC/fonts/vf/public/pxchfon/cfjam-r-l0j.vf + RELOC/fonts/vf/public/pxchfon/cfjam-r-l5j.vf + RELOC/fonts/vf/public/pxchfon/cfjam-r-t1.vf + RELOC/fonts/vf/public/pxchfon/cfjam-r-ts1.vf + RELOC/fonts/vf/public/pxchfon/cfjar-b-l0j.vf + RELOC/fonts/vf/public/pxchfon/cfjar-b-l5j.vf + RELOC/fonts/vf/public/pxchfon/cfjar-b-t1.vf + RELOC/fonts/vf/public/pxchfon/cfjar-b-ts1.vf + RELOC/fonts/vf/public/pxchfon/cfjar-l-l0j.vf + RELOC/fonts/vf/public/pxchfon/cfjar-l-l5j.vf + RELOC/fonts/vf/public/pxchfon/cfjar-l-t1.vf + RELOC/fonts/vf/public/pxchfon/cfjar-l-ts1.vf + RELOC/fonts/vf/public/pxchfon/cfjar-r-l0j.vf + RELOC/fonts/vf/public/pxchfon/cfjar-r-l5j.vf + RELOC/fonts/vf/public/pxchfon/cfjar-r-t1.vf + RELOC/fonts/vf/public/pxchfon/cfjar-r-ts1.vf + RELOC/fonts/vf/public/pxchfon/cfjas-b-l0j.vf + RELOC/fonts/vf/public/pxchfon/cfjas-b-l5j.vf + RELOC/fonts/vf/public/pxchfon/cfjas-b-t1.vf + RELOC/fonts/vf/public/pxchfon/cfjas-b-ts1.vf + RELOC/fonts/vf/public/pxchfon/cfjas-r-l0j.vf + RELOC/fonts/vf/public/pxchfon/cfjas-r-l5j.vf + RELOC/fonts/vf/public/pxchfon/cfjas-r-t1.vf + RELOC/fonts/vf/public/pxchfon/cfjas-r-ts1.vf + RELOC/fonts/vf/public/pxchfon/cfjas-x-l0j.vf + RELOC/fonts/vf/public/pxchfon/cfjas-x-l5j.vf + RELOC/fonts/vf/public/pxchfon/cfjas-x-t1.vf + RELOC/fonts/vf/public/pxchfon/cfjas-x-ts1.vf + RELOC/tex/platex/pxchfon/pxchfon.sty + RELOC/tex/platex/pxchfon/pxchfon0.def + RELOC/tex/platex/pxchfon/pxjafont.sty +catalogue-contact-repository https://github.com/zr-tex8r/PXchfon +catalogue-ctan /language/japanese/pxchfon +catalogue-date 2019-05-19 11:56:15 +0200 +catalogue-license mit +catalogue-topics japanese font-supp +catalogue-version 1.5 + +name pxcjkcat +category Package +revision 47266 +shortdesc LaTeX interface for the CJK category codes of upTeX +relocated 1 +longdesc The package provides management of the CJK category code +longdesc ('kcatcode'> table of the upTeX extended TeX engine. Package +longdesc options are available for tailored use in the cases of +longdesc documents that are principally written in Japanese, or +longdesc principally written in English or other Western languages. +containersize 7152 +containerchecksum 59923115da33e18e2b29a10f664063755b42937ce601ed46103ec8edf16944056180a1aacdb296aceb5206d3dd453c0eec6f84f5b689ad68736c88479f928214 +doccontainersize 195556 +doccontainerchecksum 3c822359a68800a29fbc7ceda3293b6be902d9bc61f277003e6e20404c32e9bb6b34638a4bc11aeb943c4bdf6e361386972251b9b015fbe68ead824e5fdc67d6 +docfiles size=59 + RELOC/doc/latex/pxcjkcat/LICENSE + RELOC/doc/latex/pxcjkcat/README-ja.md details="Readme (Japanese)" language="ja" + RELOC/doc/latex/pxcjkcat/README.md details="Readme (English)" language="en" + RELOC/doc/latex/pxcjkcat/pxcjkcat.pdf + RELOC/doc/latex/pxcjkcat/pxcjkcat.tex +runfiles size=7 + RELOC/tex/latex/pxcjkcat/pxcjkcat.sty +catalogue-ctan /macros/latex/contrib/pxcjkcat +catalogue-date 2018-04-03 10:18:00 +0200 +catalogue-license mit +catalogue-topics japanese multilingual +catalogue-version 1.1 + +name pxfonts +category Package +revision 15878 +shortdesc Palatino-like fonts in support of mathematics +relocated 1 +longdesc Pxfonts supplies virtual text roman fonts using Adobe Palatino +longdesc (or URWPalladioL) with some modified and additional text +longdesc symbols in the OT1, T1, and TS1 encodings; maths alphabets +longdesc using Palatino/Palladio; maths fonts providing all the symbols +longdesc of the Computer Modern and AMS fonts, including all the Greek +longdesc capital letters from CMR; and additional maths fonts of various +longdesc other symbols. The set is complemented by a sans-serif set of +longdesc text fonts, based on Helvetica/NimbusSanL, and a monospace set +longdesc derived from the parallel TX font set. All the fonts are in +longdesc Type 1 format (AFM and PFB files), and are supported by TeX +longdesc metrics (VF and TFM files) and macros for use with LaTeX. +execute addMap pxfonts.map +containersize 459980 +containerchecksum 3b50d3f04c00cd080495c71d9387fe9c810ade7d83ead1178d661a618374a3a67c0fc70ae2a809d2b91db4afaf352b1596a588f6998a4eda220a6f181390b6d1 +doccontainersize 421672 +doccontainerchecksum 71898d307cabff64078bbb98bee9417c79504fd56f1cfc1427b9e4ccc9448b5e2e8436fa085a63d6fa6601e591673ef52eb2225ddfad5e34943456a2239206a5 +docfiles size=152 + RELOC/doc/fonts/pxfonts/00bug_fix.txt + RELOC/doc/fonts/pxfonts/COPYRIGHT + RELOC/doc/fonts/pxfonts/pxfontsdoc.pdf details="Package documentation (Letter paper format)" + RELOC/doc/fonts/pxfonts/pxfontsdoc.tex + RELOC/doc/fonts/pxfonts/pxfontsdocA4.pdf details="Package documentation (A4 paper format" + RELOC/doc/fonts/pxfonts/pxfontsdocA4.tex +runfiles size=305 + RELOC/fonts/afm/public/pxfonts/pxbex.afm + RELOC/fonts/afm/public/pxfonts/pxbexa.afm + RELOC/fonts/afm/public/pxfonts/pxbmia.afm + RELOC/fonts/afm/public/pxfonts/pxbsy.afm + RELOC/fonts/afm/public/pxfonts/pxbsya.afm + RELOC/fonts/afm/public/pxfonts/pxbsyb.afm + RELOC/fonts/afm/public/pxfonts/pxbsyc.afm + RELOC/fonts/afm/public/pxfonts/pxex.afm + RELOC/fonts/afm/public/pxfonts/pxexa.afm + RELOC/fonts/afm/public/pxfonts/pxmia.afm + RELOC/fonts/afm/public/pxfonts/pxsy.afm + RELOC/fonts/afm/public/pxfonts/pxsya.afm + RELOC/fonts/afm/public/pxfonts/pxsyb.afm + RELOC/fonts/afm/public/pxfonts/pxsyc.afm + RELOC/fonts/afm/public/pxfonts/rpcxb.afm + RELOC/fonts/afm/public/pxfonts/rpcxbi.afm + RELOC/fonts/afm/public/pxfonts/rpcxi.afm + RELOC/fonts/afm/public/pxfonts/rpcxr.afm + RELOC/fonts/afm/public/pxfonts/rpxb.afm + RELOC/fonts/afm/public/pxfonts/rpxbi.afm + RELOC/fonts/afm/public/pxfonts/rpxbmi.afm + RELOC/fonts/afm/public/pxfonts/rpxbsc.afm + RELOC/fonts/afm/public/pxfonts/rpxi.afm + RELOC/fonts/afm/public/pxfonts/rpxmi.afm + RELOC/fonts/afm/public/pxfonts/rpxr.afm + RELOC/fonts/afm/public/pxfonts/rpxsc.afm + RELOC/fonts/map/dvips/pxfonts/pxfonts.map + RELOC/fonts/map/dvips/pxfonts/pxr.map + RELOC/fonts/map/dvips/pxfonts/pxr1.map + RELOC/fonts/map/dvips/pxfonts/pxr2.map + RELOC/fonts/map/dvips/pxfonts/pxr3.map + RELOC/fonts/tfm/public/pxfonts/p1xb.tfm + RELOC/fonts/tfm/public/pxfonts/p1xbi.tfm + RELOC/fonts/tfm/public/pxfonts/p1xbsc.tfm + RELOC/fonts/tfm/public/pxfonts/p1xbsl.tfm + RELOC/fonts/tfm/public/pxfonts/p1xi.tfm + RELOC/fonts/tfm/public/pxfonts/p1xr.tfm + RELOC/fonts/tfm/public/pxfonts/p1xsc.tfm + RELOC/fonts/tfm/public/pxfonts/p1xsl.tfm + RELOC/fonts/tfm/public/pxfonts/pcxb.tfm + RELOC/fonts/tfm/public/pxfonts/pcxbi.tfm + RELOC/fonts/tfm/public/pxfonts/pcxbsl.tfm + RELOC/fonts/tfm/public/pxfonts/pcxi.tfm + RELOC/fonts/tfm/public/pxfonts/pcxr.tfm + RELOC/fonts/tfm/public/pxfonts/pcxsl.tfm + RELOC/fonts/tfm/public/pxfonts/pxb.tfm + RELOC/fonts/tfm/public/pxfonts/pxbex.tfm + RELOC/fonts/tfm/public/pxfonts/pxbexa.tfm + RELOC/fonts/tfm/public/pxfonts/pxbi.tfm + RELOC/fonts/tfm/public/pxfonts/pxbmi.tfm + RELOC/fonts/tfm/public/pxfonts/pxbmi1.tfm + RELOC/fonts/tfm/public/pxfonts/pxbmia.tfm + RELOC/fonts/tfm/public/pxfonts/pxbsc.tfm + RELOC/fonts/tfm/public/pxfonts/pxbsl.tfm + RELOC/fonts/tfm/public/pxfonts/pxbsy.tfm + RELOC/fonts/tfm/public/pxfonts/pxbsya.tfm + RELOC/fonts/tfm/public/pxfonts/pxbsyb.tfm + RELOC/fonts/tfm/public/pxfonts/pxbsyc.tfm + RELOC/fonts/tfm/public/pxfonts/pxex.tfm + RELOC/fonts/tfm/public/pxfonts/pxexa.tfm + RELOC/fonts/tfm/public/pxfonts/pxi.tfm + RELOC/fonts/tfm/public/pxfonts/pxmi.tfm + RELOC/fonts/tfm/public/pxfonts/pxmi1.tfm + RELOC/fonts/tfm/public/pxfonts/pxmia.tfm + RELOC/fonts/tfm/public/pxfonts/pxr.tfm + RELOC/fonts/tfm/public/pxfonts/pxsc.tfm + RELOC/fonts/tfm/public/pxfonts/pxsl.tfm + RELOC/fonts/tfm/public/pxfonts/pxsy.tfm + RELOC/fonts/tfm/public/pxfonts/pxsya.tfm + RELOC/fonts/tfm/public/pxfonts/pxsyb.tfm + RELOC/fonts/tfm/public/pxfonts/pxsyc.tfm + RELOC/fonts/tfm/public/pxfonts/rpcxb.tfm + RELOC/fonts/tfm/public/pxfonts/rpcxbi.tfm + RELOC/fonts/tfm/public/pxfonts/rpcxbsl.tfm + RELOC/fonts/tfm/public/pxfonts/rpcxi.tfm + RELOC/fonts/tfm/public/pxfonts/rpcxr.tfm + RELOC/fonts/tfm/public/pxfonts/rpcxsl.tfm + RELOC/fonts/tfm/public/pxfonts/rpxb.tfm + RELOC/fonts/tfm/public/pxfonts/rpxbi.tfm + RELOC/fonts/tfm/public/pxfonts/rpxbmi.tfm + RELOC/fonts/tfm/public/pxfonts/rpxbsc.tfm + RELOC/fonts/tfm/public/pxfonts/rpxbsl.tfm + RELOC/fonts/tfm/public/pxfonts/rpxi.tfm + RELOC/fonts/tfm/public/pxfonts/rpxmi.tfm + RELOC/fonts/tfm/public/pxfonts/rpxpplb.tfm + RELOC/fonts/tfm/public/pxfonts/rpxpplbi.tfm + RELOC/fonts/tfm/public/pxfonts/rpxpplbo.tfm + RELOC/fonts/tfm/public/pxfonts/rpxpplr.tfm + RELOC/fonts/tfm/public/pxfonts/rpxpplri.tfm + RELOC/fonts/tfm/public/pxfonts/rpxpplro.tfm + RELOC/fonts/tfm/public/pxfonts/rpxr.tfm + RELOC/fonts/tfm/public/pxfonts/rpxsc.tfm + RELOC/fonts/tfm/public/pxfonts/rpxsl.tfm + RELOC/fonts/type1/public/pxfonts/pxbex.pfb + RELOC/fonts/type1/public/pxfonts/pxbexa.pfb + RELOC/fonts/type1/public/pxfonts/pxbmia.pfb + RELOC/fonts/type1/public/pxfonts/pxbsy.pfb + RELOC/fonts/type1/public/pxfonts/pxbsya.pfb + RELOC/fonts/type1/public/pxfonts/pxbsyb.pfb + RELOC/fonts/type1/public/pxfonts/pxbsyc.pfb + RELOC/fonts/type1/public/pxfonts/pxex.pfb + RELOC/fonts/type1/public/pxfonts/pxexa.pfb + RELOC/fonts/type1/public/pxfonts/pxmia.pfb + RELOC/fonts/type1/public/pxfonts/pxsy.pfb + RELOC/fonts/type1/public/pxfonts/pxsya.pfb + RELOC/fonts/type1/public/pxfonts/pxsyb.pfb + RELOC/fonts/type1/public/pxfonts/pxsyc.pfb + RELOC/fonts/type1/public/pxfonts/rpcxb.pfb + RELOC/fonts/type1/public/pxfonts/rpcxbi.pfb + RELOC/fonts/type1/public/pxfonts/rpcxi.pfb + RELOC/fonts/type1/public/pxfonts/rpcxr.pfb + RELOC/fonts/type1/public/pxfonts/rpxb.pfb + RELOC/fonts/type1/public/pxfonts/rpxbi.pfb + RELOC/fonts/type1/public/pxfonts/rpxbmi.pfb + RELOC/fonts/type1/public/pxfonts/rpxbsc.pfb + RELOC/fonts/type1/public/pxfonts/rpxi.pfb + RELOC/fonts/type1/public/pxfonts/rpxmi.pfb + RELOC/fonts/type1/public/pxfonts/rpxr.pfb + RELOC/fonts/type1/public/pxfonts/rpxsc.pfb + RELOC/fonts/vf/public/pxfonts/p1xb.vf + RELOC/fonts/vf/public/pxfonts/p1xbi.vf + RELOC/fonts/vf/public/pxfonts/p1xbsc.vf + RELOC/fonts/vf/public/pxfonts/p1xbsl.vf + RELOC/fonts/vf/public/pxfonts/p1xi.vf + RELOC/fonts/vf/public/pxfonts/p1xr.vf + RELOC/fonts/vf/public/pxfonts/p1xsc.vf + RELOC/fonts/vf/public/pxfonts/p1xsl.vf + RELOC/fonts/vf/public/pxfonts/pcxb.vf + RELOC/fonts/vf/public/pxfonts/pcxbi.vf + RELOC/fonts/vf/public/pxfonts/pcxbsl.vf + RELOC/fonts/vf/public/pxfonts/pcxi.vf + RELOC/fonts/vf/public/pxfonts/pcxr.vf + RELOC/fonts/vf/public/pxfonts/pcxsl.vf + RELOC/fonts/vf/public/pxfonts/pxb.vf + RELOC/fonts/vf/public/pxfonts/pxbi.vf + RELOC/fonts/vf/public/pxfonts/pxbmi.vf + RELOC/fonts/vf/public/pxfonts/pxbmi1.vf + RELOC/fonts/vf/public/pxfonts/pxbsc.vf + RELOC/fonts/vf/public/pxfonts/pxbsl.vf + RELOC/fonts/vf/public/pxfonts/pxi.vf + RELOC/fonts/vf/public/pxfonts/pxmi.vf + RELOC/fonts/vf/public/pxfonts/pxmi1.vf + RELOC/fonts/vf/public/pxfonts/pxr.vf + RELOC/fonts/vf/public/pxfonts/pxsc.vf + RELOC/fonts/vf/public/pxfonts/pxsl.vf + RELOC/tex/latex/pxfonts/omlpxmi.fd + RELOC/tex/latex/pxfonts/omlpxr.fd + RELOC/tex/latex/pxfonts/omspxr.fd + RELOC/tex/latex/pxfonts/omspxsy.fd + RELOC/tex/latex/pxfonts/omxpxex.fd + RELOC/tex/latex/pxfonts/ot1pxr.fd + RELOC/tex/latex/pxfonts/ot1pxss.fd + RELOC/tex/latex/pxfonts/ot1pxtt.fd + RELOC/tex/latex/pxfonts/pxfonts.sty + RELOC/tex/latex/pxfonts/t1pxr.fd + RELOC/tex/latex/pxfonts/t1pxss.fd + RELOC/tex/latex/pxfonts/t1pxtt.fd + RELOC/tex/latex/pxfonts/ts1pxr.fd + RELOC/tex/latex/pxfonts/ts1pxss.fd + RELOC/tex/latex/pxfonts/ts1pxtt.fd + RELOC/tex/latex/pxfonts/upxexa.fd + RELOC/tex/latex/pxfonts/upxmia.fd + RELOC/tex/latex/pxfonts/upxr.fd + RELOC/tex/latex/pxfonts/upxss.fd + RELOC/tex/latex/pxfonts/upxsya.fd + RELOC/tex/latex/pxfonts/upxsyb.fd + RELOC/tex/latex/pxfonts/upxsyc.fd + RELOC/tex/latex/pxfonts/upxtt.fd +catalogue-also mathpazo +catalogue-ctan /fonts/pxfonts +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics font font-type1 font-maths font-symbol-maths + +name pxgreeks +category Package +revision 21838 +shortdesc Shape selection for PX fonts Greek letters +relocated 1 +longdesc The package allows LaTeX maths users of the PX fonts to select +longdesc the shapes (italic or upright) for the Greek lowercase and +longdesc uppercase letters. Once the shapes for lowercase and uppercase +longdesc have been selected via a package option, the \other prefix +longdesc (e.g., \otheralpha) allows using the alternate glyph (as in the +longdesc fourier package). The pxgreeks package does not constrain the +longdesc text font that may be used in the document. +containersize 2120 +containerchecksum d3f8ff3c975643d74dd92e749397d01f8d3fd0087a838271a491791fa4bb2d65c852ff5989f79952d40547a601c97fe0274ab4407a8e73aa047221934b9b2e9d +doccontainersize 56340 +doccontainerchecksum 22239223646ea121422016119b6d0edce32d002bf361d096c173857b36ce324ebe2e4107bc0eae650b50d0e94775c84f480768246ee65f975ad5a24af0335158 +docfiles size=18 + RELOC/doc/latex/pxgreeks/README details="Readme" + RELOC/doc/latex/pxgreeks/pxgreeks.pdf details="Package documentation" +srccontainersize 4644 +srccontainerchecksum 9924c5b5a60d381efc41f77f9b5224a12a158fd7de6551a17b1d32eebb6ca6e80a7686648a81774398c4e25fef759612c652fff983a635f4cf56c5bbfb52858d +srcfiles size=4 + RELOC/source/latex/pxgreeks/pxgreeks.dtx + RELOC/source/latex/pxgreeks/pxgreeks.ins +runfiles size=2 + RELOC/tex/latex/pxgreeks/pxgreeks.sty +catalogue-ctan /macros/latex/contrib/pxgreeks +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics font-supp-maths +catalogue-version 1.0 + +name pxjahyper +category Package +revision 48207 +shortdesc Hyperref support for pLaTeX +relocated 1 +longdesc This package adjusts the behavior of hyperref on (u)pLaTeX so +longdesc that authors can properly create PDF documents that contain +longdesc document information in Japanese. +containersize 6996 +containerchecksum 5e80705f3c9eee9856a7e6b45c71a434219a2696c00ead7677d195c6a2de182337daa481bd5a3165b11ba9dceb1c21f04b869c0b7f0425de4bde9899dc962d25 +doccontainersize 100492 +doccontainerchecksum dec0635c3bea70976caadf8b58716790ec843f99178e66ec2e892f118609876e1fd45f383195bdcfbb3189510dc20dd5cbb6a40c6c3bc23a245ab5a817177131 +docfiles size=29 + RELOC/doc/platex/pxjahyper/LICENSE + RELOC/doc/platex/pxjahyper/README-ja.md details="Readme (Japanese)" language="ja" + RELOC/doc/platex/pxjahyper/README.md details="Readme" + RELOC/doc/platex/pxjahyper/pxjahyper.pdf details="Package documentation (Japanese)" language="ja" + RELOC/doc/platex/pxjahyper/pxjahyper.tex +runfiles size=8 + RELOC/tex/platex/pxjahyper/pxjahyper.sty +catalogue-contact-repository https://github.com/zr-tex8r/PXjahyper +catalogue-ctan /language/japanese/pxjahyper +catalogue-date 2018-07-15 12:53:48 +0200 +catalogue-license mit +catalogue-topics japanese hyper +catalogue-version 0.3d + +name pxjodel +category Package +revision 50009 +shortdesc Help change metrics of fonts from japanese-otf +relocated 1 +longdesc This package changes the setup of the japanese-otf package so +longdesc that the TFMs for direct input are all replaced by new ones +longdesc with prefixed names; for exmaple, nmlminr-h will be replaced by +longdesc foo--nmlminr-h, where foo is a prefix specified by the user. +longdesc This function will assist users who want to use the +longdesc japanese-otf package together with tailored TFMs of Japanese +longdesc fonts. The "jodel" part of the package name stands for +longdesc "japanese-otf deluxe". Here "deluxe" is the name of +longdesc japanese-otf's option for employing multi-weight Japanese font +longdesc families. This option is probably the most likely reason for +longdesc using japanese-otf. So pxjodel is really about japanese-otf's +longdesc "deluxe" option, hence the name. It is not related to yodel +longdesc singing, although some sense of word-play is intended. +containersize 2516 +containerchecksum 321d79fd65b7c6476336981a60d094970c444ca72397ceeea663dee1ed0180a8d489c7635ffc721cb7c85e44ccd57bb6186185420980fe3fa5ca4b48cc9a8c52 +doccontainersize 126080 +doccontainerchecksum 78d8accbdfced5fd933c24708f0bc8e100a1799934ffb82efdbc830dcd1b6cbd9a71ce939092b7385d60ac6f29e52f2a4c1f9ce4010bd432566c8a69305298b4 +docfiles size=63 + RELOC/doc/latex/pxjodel/LICENSE + RELOC/doc/latex/pxjodel/README.md details="Readme" + RELOC/doc/latex/pxjodel/pxjodel.pdf details="Package documentation" + RELOC/doc/latex/pxjodel/pxjodel.tex + RELOC/doc/latex/pxjodel/tfm/jodhgothb-hq.tfm + RELOC/doc/latex/pxjodel/tfm/jodhgotheb-hq.tfm + RELOC/doc/latex/pxjodel/tfm/jodhgothr-hq.tfm + RELOC/doc/latex/pxjodel/tfm/jodhmgothe-hq.tfm + RELOC/doc/latex/pxjodel/tfm/jodhminb-hq.tfm + RELOC/doc/latex/pxjodel/tfm/jodhminl-hq.tfm + RELOC/doc/latex/pxjodel/tfm/jodhminr-hq.tfm + RELOC/doc/latex/pxjodel/tfm/zu-jodhgothb-hq.tfm + RELOC/doc/latex/pxjodel/tfm/zu-jodhgotheb-hq.tfm + RELOC/doc/latex/pxjodel/tfm/zu-jodhgothr-hq.tfm + RELOC/doc/latex/pxjodel/tfm/zu-jodhmgothe-hq.tfm + RELOC/doc/latex/pxjodel/tfm/zu-jodhminb-hq.tfm + RELOC/doc/latex/pxjodel/tfm/zu-jodhminl-hq.tfm + RELOC/doc/latex/pxjodel/tfm/zu-jodhminr-hq.tfm + RELOC/doc/latex/pxjodel/vf/jodhgothb-hq.vf + RELOC/doc/latex/pxjodel/vf/jodhgotheb-hq.vf + RELOC/doc/latex/pxjodel/vf/jodhgothr-hq.vf + RELOC/doc/latex/pxjodel/vf/jodhmgothe-hq.vf + RELOC/doc/latex/pxjodel/vf/jodhminb-hq.vf + RELOC/doc/latex/pxjodel/vf/jodhminl-hq.vf + RELOC/doc/latex/pxjodel/vf/jodhminr-hq.vf + RELOC/doc/latex/pxjodel/vf/zu-jodhgothb-hq.vf + RELOC/doc/latex/pxjodel/vf/zu-jodhgotheb-hq.vf + RELOC/doc/latex/pxjodel/vf/zu-jodhgothr-hq.vf + RELOC/doc/latex/pxjodel/vf/zu-jodhmgothe-hq.vf + RELOC/doc/latex/pxjodel/vf/zu-jodhminb-hq.vf + RELOC/doc/latex/pxjodel/vf/zu-jodhminl-hq.vf + RELOC/doc/latex/pxjodel/vf/zu-jodhminr-hq.vf +runfiles size=2 + RELOC/tex/latex/pxjodel/pxjodel.sty +catalogue-contact-repository https://github.com/zr-tex8r/PXjodel +catalogue-ctan /language/japanese/pxjodel +catalogue-date 2019-02-17 05:29:19 +0100 +catalogue-license mit +catalogue-topics font-mgmt japanese font-sel font-use font-cjk +catalogue-version 0.2a + +name pxpgfmark +category Package +revision 30212 +shortdesc e-pTeX driver for PGF inter-picture connections +relocated 1 +longdesc The distributed drivers do not support the PGF feature of +longdesc "inter-picture connections" under e-pTeX and dvipdfmx. The +longdesc package uses existing features of dvipdfmx to fix this problem +containersize 792 +containerchecksum eb341eaebbe2fca860c2592c0d24f6b5c4ef0f1e6b2bd731d48c1994ded7afa01bd5cb365d3f30147f68855777defc3384038aa652240178fc948b5225cb4c08 +doccontainersize 1640 +doccontainerchecksum 8a80eade76fa7b5e5b919136e499eddb5ff534042fc56eb8223e80124bde97a39a65d31370037cf425042a1ae516e5888c8751388899ae65a8b561f091693c97 +docfiles size=2 + RELOC/doc/latex/pxpgfmark/LICENSE + RELOC/doc/latex/pxpgfmark/README details="Readme" +runfiles size=1 + RELOC/tex/latex/pxpgfmark/pxpgfmark.sty +catalogue-ctan /graphics/pgf/contrib/pxpgfmark +catalogue-date 2016-12-18 08:34:28 +0100 +catalogue-license mit +catalogue-topics graphics-drv +catalogue-version 0.2 + +name pxrubrica +category Package +revision 48421 +shortdesc Ruby annotations according to JIS X 4051 +relocated 1 +longdesc This package provides a function to add ruby annotations +longdesc (furigana) that follow the style conventional in Japanese +longdesc typography as described in the W3C technical note "Requirements +longdesc for Japanese Text Layout" ([JLREQ]) and the JIS specification +longdesc JIS X 4051. Starting with version 1.3, this package also +longdesc provides a function to add kenten (emphasis marks) to Japanese +longdesc text. +containersize 13696 +containerchecksum 42de048a96a4d552726de6abea4e8903f7c952c02259001d66655f449bc4edc7bb25b351be594bca205177f31f09525c9b986629c6a964e8a2b50c66aa01e1e5 +doccontainersize 788464 +doccontainerchecksum 92c0b794ea85b1b685bd94fde0c7b7b009ec4069f99705e9fb3dd93ad67564952925bcb4d6442a669f965700e658eb0c15194ffa55da86bfb1867b0d8b7bf5c4 +docfiles size=219 + RELOC/doc/platex/pxrubrica/LICENSE + RELOC/doc/platex/pxrubrica/README-ja.md details="Readme" language="ja" + RELOC/doc/platex/pxrubrica/README.md details="Readme" language="en" + RELOC/doc/platex/pxrubrica/pxrubrica-en.pdf details="Package documentation" language="en" + RELOC/doc/platex/pxrubrica/pxrubrica-en.tex + RELOC/doc/platex/pxrubrica/pxrubrica.pdf details="Package documentation" language="ja" + RELOC/doc/platex/pxrubrica/sample/test-jlreq.pdf + RELOC/doc/platex/pxrubrica/sample/test-jlreq.tex + RELOC/doc/platex/pxrubrica/sample/test-sample.pdf + RELOC/doc/platex/pxrubrica/sample/test-sample.tex + RELOC/doc/platex/pxrubrica/sample/test-sf.pdf + RELOC/doc/platex/pxrubrica/sample/test-sf.tex + RELOC/doc/platex/pxrubrica/sample/test-toc.pdf + RELOC/doc/platex/pxrubrica/sample/test-toc.tex +srccontainersize 38396 +srccontainerchecksum 17ff7e06e0ba752044f7c65925c3a0156a566b03504a4cf0f55296d8deb316eda79ae015963e1011b20c51712d206c921baf3a39c3f63d05eb1420915d4546c6 +srcfiles size=53 + RELOC/source/platex/pxrubrica/pxrubrica.dtx + RELOC/source/platex/pxrubrica/pxrubrica.ins +runfiles size=20 + RELOC/tex/platex/pxrubrica/pxrubrica.sty +catalogue-contact-home https://github.com/zr-tex8r/PXrubrica +catalogue-ctan /language/japanese/pxrubrica +catalogue-date 2018-08-16 22:17:52 +0200 +catalogue-license mit +catalogue-topics japanese std-conform +catalogue-version 1.3c + +name pxtatescale +category Package +revision 43009 +shortdesc Patch to graphics driver for scaling in vertical direction of pTeX +relocated 1 +longdesc Patch for graphics driver 'dvipdfmx' to support correct scaling +longdesc in vertical direction of Japanese pTeX/upTeX. +containersize 1020 +containerchecksum 922aabc7fdd35d1b1a6199be0986ad6d42ffc0db138066a7b1607ec521cf22571abc752ce225c9d99e2e9f8685149a5b91c35d6914fbccdb293a2476797dbdc9 +doccontainersize 1620 +doccontainerchecksum be6998e53e5d8d92138e440de1c75e83671ea88316fb9b4dde0188dab198dc65301b4cd4f53368c277b782edf82f17ef89903eddfa6656669a5329a029907249 +docfiles size=2 + RELOC/doc/latex/pxtatescale/LICENSE + RELOC/doc/latex/pxtatescale/README details="Readme" +runfiles size=1 + RELOC/tex/latex/pxtatescale/pxtatescale.sty +catalogue-ctan /macros/latex/contrib/pxtatescale +catalogue-date 2017-01-24 05:45:54 +0100 +catalogue-license mit +catalogue-topics graphics-drv japanese +catalogue-version 0.4 + +name pxtxalfa +category Package +revision 23682 +shortdesc Virtual maths alphabets based on pxfonts and txfonts +relocated 1 +longdesc The package provides virtual math alphabets based on pxfonts +longdesc and txfonts, with LaTeX support files and adjusted metrics. The +longdesc mathalfa package offers support for this collection. +execute addMap pxtx.map +containersize 9044 +containerchecksum ac1972a7dd5445bafca244e04663e09c4e939eedf31e8038e2ea41d255bdf6a4721bc53a443f6663f989b21494c61b3dae9ddc9940e283cdb49723e6fabbea69 +doccontainersize 36128 +doccontainerchecksum 55d06ddcb52e79ea590b24e8aa53a41dc18162ef9a8871ea69eafe53c6d0f5ecd5b548f97864c0253f543ca9f4eda17c665f1a6de1115cd8052670c934fbe52d +docfiles size=13 + RELOC/doc/fonts/pxtxalfa/README details="Readme" + RELOC/doc/fonts/pxtxalfa/pxtxalfa.pdf details="Package documentation" + RELOC/doc/fonts/pxtxalfa/pxtxalfa.tex +runfiles size=28 + RELOC/fonts/map/dvips/pxtxalfa/pxtx.map + RELOC/fonts/tfm/public/pxtxalfa/pxb-ds.tfm + RELOC/fonts/tfm/public/pxtxalfa/pxr-ds.tfm + RELOC/fonts/tfm/public/pxtxalfa/rtxmia.tfm + RELOC/fonts/tfm/public/pxtxalfa/txb-cal.tfm + RELOC/fonts/tfm/public/pxtxalfa/txb-frak.tfm + RELOC/fonts/tfm/public/pxtxalfa/txb-of.tfm + RELOC/fonts/tfm/public/pxtxalfa/txr-cal.tfm + RELOC/fonts/tfm/public/pxtxalfa/txr-ds.tfm + RELOC/fonts/tfm/public/pxtxalfa/txr-frak.tfm + RELOC/fonts/tfm/public/pxtxalfa/txr-of.tfm + RELOC/fonts/vf/public/pxtxalfa/pxb-ds.vf + RELOC/fonts/vf/public/pxtxalfa/pxr-ds.vf + RELOC/fonts/vf/public/pxtxalfa/txb-cal.vf + RELOC/fonts/vf/public/pxtxalfa/txb-frak.vf + RELOC/fonts/vf/public/pxtxalfa/txb-of.vf + RELOC/fonts/vf/public/pxtxalfa/txr-cal.vf + RELOC/fonts/vf/public/pxtxalfa/txr-ds.vf + RELOC/fonts/vf/public/pxtxalfa/txr-frak.vf + RELOC/fonts/vf/public/pxtxalfa/txr-of.vf + RELOC/tex/latex/pxtxalfa/px-ds.sty + RELOC/tex/latex/pxtxalfa/pxtx-cal.sty + RELOC/tex/latex/pxtxalfa/pxtx-frak.sty + RELOC/tex/latex/pxtxalfa/tx-of.sty + RELOC/tex/latex/pxtxalfa/upx-ds.fd + RELOC/tex/latex/pxtxalfa/utx-cal.fd + RELOC/tex/latex/pxtxalfa/utx-frak.fd + RELOC/tex/latex/pxtxalfa/utx-of.fd +catalogue-ctan /fonts/pxtxalfa +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font font-maths font-virtual +catalogue-version 1 + +name pxufont +category Package +revision 50355 +shortdesc Emulate non-Unicode Japanese fonts using Unicode fonts +relocated 1 +longdesc The set of the Japanese logical fonts (JFMs) that are used as +longdesc standard fonts in pTeX and upTeX contains both Unicode JFMs and +longdesc non-Unicode JFMs. This bundle provides an alternative set of +longdesc non-Unicode JFMs that are tied to the virtual fonts (VFs) that +longdesc refer to the glyphs in the Unicode JFMs. Moreover it provides a +longdesc LaTeX package that redefines the NFSS settings of the Japanese +longdesc fonts of (u)pLaTeX so that the new set of non-Unicode JFMs will +longdesc be employed. As a whole, this bundle allows users to dispense +longdesc with the mapping setup on non-Unicode JFMs. Such a setup is +longdesc useful in particular when users want to use OpenType fonts +longdesc (such as Source Han Serif) that have a glyph encoding different +longdesc from Adobe-Japan1, because mapping setups from non-Unicode JFMs +longdesc to such physical fonts are difficult to prepare. +containersize 125952 +containerchecksum c364d150c3607a8f918301846ff919bc3a7a240b23da1a67faaeeac5d1000c7f59dd4ec7da829c4d4793e6b5c9aa11f94314c149bbd277d5a3d7df111f2839fe +doccontainersize 2216 +doccontainerchecksum e1938ee53f1b7572ce85b354eb6bf9477c63adab65c7c3b3b486c7ca6365865845eaf4dc4670cde741475623e3654479e817075832b3a2d7bab14c75f360183a +docfiles size=2 + RELOC/doc/latex/pxufont/LICENSE + RELOC/doc/latex/pxufont/README.md details="Readme" +runfiles size=14899 + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlgothb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlgothb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlgothbn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlgothbn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlgotheb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlgotheb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlgothebn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlgothebn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlgothr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlgothr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlgothrn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlgothrn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlmgothr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlmgothr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlmgothrn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlmgothrn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlminb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlminb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlminbn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlminbn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlminl-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlminl-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlminln-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlminln-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlminr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlminr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlminrn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-brsgnmlminrn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgb0-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgb0-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgb1-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgb1-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgb2-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgb2-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgb3-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgb3-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgb4-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgb4-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgb5-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgb5-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjge0-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjge0-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjge1-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjge1-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjge2-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjge2-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjge3-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjge3-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjge4-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjge4-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjge5-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjge5-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgr0-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgr0-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgr1-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgr1-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgr2-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgr2-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgr3-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgr3-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgr4-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgr4-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgr5-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjgr5-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmb0-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmb0-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmb1-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmb1-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmb2-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmb2-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmb3-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmb3-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmb4-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmb4-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmb5-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmb5-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmgr0-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmgr0-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmgr1-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmgr1-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmgr2-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmgr2-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmgr3-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmgr3-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmgr4-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmgr4-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmgr5-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmgr5-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjml0-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjml0-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjml1-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjml1-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjml2-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjml2-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjml3-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjml3-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjml4-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjml4-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjml5-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjml5-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmr0-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmr0-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmr1-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmr1-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmr2-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmr2-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmr3-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmr3-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmr4-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmr4-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmr5-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-cidjmr5-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-goth10.tfm + RELOC/fonts/tfm/public/pxufont/zu-jis-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-jis.tfm + RELOC/fonts/tfm/public/pxufont/zu-jisg-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-jisg.tfm + RELOC/fonts/tfm/public/pxufont/zu-min10.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlgothb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlgothb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlgothbn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlgothbn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlgotheb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlgotheb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlgothebn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlgothebn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlgothr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlgothr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlgothrn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlgothrn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlmgothr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlmgothr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlmgothrn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlmgothrn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlminb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlminb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlminbn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlminbn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlminl-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlminl-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlminln-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlminln-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlminr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlminr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlminrn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-nmlminrn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubygothb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubygothb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubygotheb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubygotheb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubygothr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubygothr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubymgothr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubymgothr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubyminb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubyminb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubyminl-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubyminl-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubyminr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-rubyminr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-tgoth10.tfm + RELOC/fonts/tfm/public/pxufont/zu-tmin10.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlgothb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlgothb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlgothbn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlgothbn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlgotheb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlgotheb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlgothebn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlgothebn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlgothr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlgothr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlgothrn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlgothrn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlmgothr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlmgothr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlmgothrn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlmgothrn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlminb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlminb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlminbn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlminbn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlminl-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlminl-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlminln-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlminln-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlminr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlminr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlminrn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upbrsgnmlminrn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlgothb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlgothb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlgothbn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlgothbn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlgotheb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlgotheb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlgothebn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlgothebn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlgothr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlgothr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlgothrn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlgothrn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlmgothr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlmgothr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlmgothrn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlmgothrn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlminb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlminb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlminbn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlminbn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlminl-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlminl-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlminln-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlminln-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlminr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlminr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlminrn-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-upnmlminrn-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubygothb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubygothb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubygotheb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubygotheb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubygothr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubygothr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubymgothr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubymgothr-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubyminb-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubyminb-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubyminl-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubyminl-v.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubyminr-h.tfm + RELOC/fonts/tfm/public/pxufont/zu-uprubyminr-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjgb-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjgb-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjge-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjge-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjgr-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjgr-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjmb-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjmb-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjmgr-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjmgr-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjml-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjml-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjmr-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-gjmr-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjgb-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjgb-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjge-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjge-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjgr-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjgr-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjmb-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjmb-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjmgr-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjmgr-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjml-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjml-v.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjmr-h.tfm + RELOC/fonts/tfm/public/pxufont/zur-rjmr-v.tfm + RELOC/fonts/vf/public/pxufont/zu-brsgnmlgothb-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlgothb-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlgothbn-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlgothbn-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlgotheb-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlgotheb-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlgothebn-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlgothebn-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlgothr-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlgothr-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlgothrn-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlgothrn-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlmgothr-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlmgothr-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlmgothrn-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlmgothrn-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlminb-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlminb-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlminbn-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlminbn-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlminl-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlminl-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlminln-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlminln-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlminr-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlminr-v.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlminrn-h.vf + RELOC/fonts/vf/public/pxufont/zu-brsgnmlminrn-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgb0-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgb0-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgb1-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgb1-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgb2-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgb2-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgb3-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgb3-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgb4-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgb4-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgb5-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgb5-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjge0-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjge0-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjge1-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjge1-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjge2-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjge2-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjge3-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjge3-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjge4-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjge4-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjge5-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjge5-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgr0-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgr0-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgr1-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgr1-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgr2-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgr2-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgr3-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgr3-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgr4-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgr4-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgr5-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjgr5-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmb0-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmb0-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmb1-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmb1-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmb2-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmb2-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmb3-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmb3-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmb4-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmb4-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmb5-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmb5-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmgr0-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmgr0-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmgr1-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmgr1-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmgr2-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmgr2-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmgr3-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmgr3-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmgr4-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmgr4-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmgr5-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmgr5-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjml0-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjml0-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjml1-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjml1-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjml2-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjml2-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjml3-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjml3-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjml4-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjml4-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjml5-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjml5-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmr0-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmr0-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmr1-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmr1-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmr2-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmr2-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmr3-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmr3-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmr4-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmr4-v.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmr5-h.vf + RELOC/fonts/vf/public/pxufont/zu-cidjmr5-v.vf + RELOC/fonts/vf/public/pxufont/zu-goth10.vf + RELOC/fonts/vf/public/pxufont/zu-jis-v.vf + RELOC/fonts/vf/public/pxufont/zu-jis.vf + RELOC/fonts/vf/public/pxufont/zu-jisg-v.vf + RELOC/fonts/vf/public/pxufont/zu-jisg.vf + RELOC/fonts/vf/public/pxufont/zu-min10.vf + RELOC/fonts/vf/public/pxufont/zu-nmlgothb-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlgothb-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlgothbn-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlgothbn-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlgotheb-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlgotheb-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlgothebn-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlgothebn-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlgothr-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlgothr-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlgothrn-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlgothrn-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlmgothr-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlmgothr-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlmgothrn-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlmgothrn-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlminb-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlminb-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlminbn-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlminbn-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlminl-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlminl-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlminln-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlminln-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlminr-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlminr-v.vf + RELOC/fonts/vf/public/pxufont/zu-nmlminrn-h.vf + RELOC/fonts/vf/public/pxufont/zu-nmlminrn-v.vf + RELOC/fonts/vf/public/pxufont/zu-rubygothb-h.vf + RELOC/fonts/vf/public/pxufont/zu-rubygothb-v.vf + RELOC/fonts/vf/public/pxufont/zu-rubygotheb-h.vf + RELOC/fonts/vf/public/pxufont/zu-rubygotheb-v.vf + RELOC/fonts/vf/public/pxufont/zu-rubygothr-h.vf + RELOC/fonts/vf/public/pxufont/zu-rubygothr-v.vf + RELOC/fonts/vf/public/pxufont/zu-rubymgothr-h.vf + RELOC/fonts/vf/public/pxufont/zu-rubymgothr-v.vf + RELOC/fonts/vf/public/pxufont/zu-rubyminb-h.vf + RELOC/fonts/vf/public/pxufont/zu-rubyminb-v.vf + RELOC/fonts/vf/public/pxufont/zu-rubyminl-h.vf + RELOC/fonts/vf/public/pxufont/zu-rubyminl-v.vf + RELOC/fonts/vf/public/pxufont/zu-rubyminr-h.vf + RELOC/fonts/vf/public/pxufont/zu-rubyminr-v.vf + RELOC/fonts/vf/public/pxufont/zu-tgoth10.vf + RELOC/fonts/vf/public/pxufont/zu-tmin10.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlgothb-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlgothb-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlgothbn-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlgothbn-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlgotheb-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlgotheb-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlgothebn-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlgothebn-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlgothr-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlgothr-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlgothrn-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlgothrn-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlmgothr-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlmgothr-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlmgothrn-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlmgothrn-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlminb-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlminb-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlminbn-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlminbn-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlminl-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlminl-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlminln-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlminln-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlminr-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlminr-v.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlminrn-h.vf + RELOC/fonts/vf/public/pxufont/zu-upbrsgnmlminrn-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlgothb-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlgothb-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlgothbn-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlgothbn-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlgotheb-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlgotheb-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlgothebn-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlgothebn-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlgothr-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlgothr-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlgothrn-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlgothrn-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlmgothr-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlmgothr-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlmgothrn-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlmgothrn-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlminb-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlminb-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlminbn-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlminbn-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlminl-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlminl-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlminln-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlminln-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlminr-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlminr-v.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlminrn-h.vf + RELOC/fonts/vf/public/pxufont/zu-upnmlminrn-v.vf + RELOC/fonts/vf/public/pxufont/zu-uprubygothb-h.vf + RELOC/fonts/vf/public/pxufont/zu-uprubygothb-v.vf + RELOC/fonts/vf/public/pxufont/zu-uprubygotheb-h.vf + RELOC/fonts/vf/public/pxufont/zu-uprubygotheb-v.vf + RELOC/fonts/vf/public/pxufont/zu-uprubygothr-h.vf + RELOC/fonts/vf/public/pxufont/zu-uprubygothr-v.vf + RELOC/fonts/vf/public/pxufont/zu-uprubymgothr-h.vf + RELOC/fonts/vf/public/pxufont/zu-uprubymgothr-v.vf + RELOC/fonts/vf/public/pxufont/zu-uprubyminb-h.vf + RELOC/fonts/vf/public/pxufont/zu-uprubyminb-v.vf + RELOC/fonts/vf/public/pxufont/zu-uprubyminl-h.vf + RELOC/fonts/vf/public/pxufont/zu-uprubyminl-v.vf + RELOC/fonts/vf/public/pxufont/zu-uprubyminr-h.vf + RELOC/fonts/vf/public/pxufont/zu-uprubyminr-v.vf + RELOC/tex/latex/pxufont/pxufont-ruby.sty + RELOC/tex/latex/pxufont/pxufont.sty +catalogue-contact-repository https://github.com/zr-tex8r/PXufont +catalogue-ctan /language/japanese/pxufont +catalogue-date 2019-03-12 08:30:26 +0100 +catalogue-license mit +catalogue-topics japanese font-use font-cjk +catalogue-version 0.5 + +name pygmentex +category Package +revision 34996 +shortdesc Use Pygments to format code listings in documents +longdesc PygmenTeX is a Python-based LaTeX package that can be used for +longdesc typesetting code listings in a LaTeX document using Pygments. +longdesc Pygments is a generic syntax highlighter for general use in all +longdesc kinds of software such as forum systems, wikis or other +longdesc applications that need to prettify source code. +depend pygmentex.ARCH +containersize 7444 +containerchecksum d6e6327d0bce32aafb4be5a30eae63ab0418506367a4a18305f2fa45156b27911bf2cb945289323839c82bfacd6d8d3a588a302bff1cfc29911cf7d761d83cc9 +doccontainersize 601472 +doccontainerchecksum effc3db243edd25d4aecf7c2de6eeeaa18ff085f6304bc390ee0276c07d7672d17202d8832a012e9fedcf3bbd16771aaf78a4262366744f5a27266693fb0e87d +docfiles size=175 + texmf-dist/doc/latex/pygmentex/Factorial.java + texmf-dist/doc/latex/pygmentex/README details="Readme" + texmf-dist/doc/latex/pygmentex/blueshade.png + texmf-dist/doc/latex/pygmentex/demo.c + texmf-dist/doc/latex/pygmentex/demo.delphi + texmf-dist/doc/latex/pygmentex/demo.hs + texmf-dist/doc/latex/pygmentex/demo.java + texmf-dist/doc/latex/pygmentex/demo.pas + texmf-dist/doc/latex/pygmentex/demo.pdf details="Package documentation" + texmf-dist/doc/latex/pygmentex/demo.py + texmf-dist/doc/latex/pygmentex/demo.tex +runfiles size=8 + texmf-dist/scripts/pygmentex/pygmentex.py + texmf-dist/tex/latex/pygmentex/pygmentex.sty +catalogue-ctan /macros/latex/contrib/pygmentex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics listing synt-hlt +catalogue-version 0.8 + +name pygmentex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pygmentex +containersize 340 +containerchecksum 6ebe5fe5c3d6d920e3dffee5067dcdce4d801e0e97eb70277ce0e38410b820d3991575625b4ccc982d89601b15552903a2e32d26fe905e34e1e29cb7f114ecbb +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/pygmentex + +name pygmentex.amd64-freebsd +category Package +revision 34996 +shortdesc amd64-freebsd files of pygmentex +containersize 340 +containerchecksum 4bdebf24f7304000142842837bec9d99d521b021f859143256e80291075727987bae6b95ede4f863ed7d6b5605c6c557d7b15766fa1af9f95ce7cf4b322badf3 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/pygmentex + +name pygmentex.amd64-netbsd +category Package +revision 34996 +shortdesc amd64-netbsd files of pygmentex +containersize 340 +containerchecksum c47bb71a8a3a82d4267e38d142db69896874463b3c442af8c75c9191bca1528b2d0d5f1bef703688815851a0449ab230228235987304eaa122c9e3cd896e8d64 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/pygmentex + +name pygmentex.armhf-linux +category Package +revision 34996 +shortdesc armhf-linux files of pygmentex +containersize 340 +containerchecksum 87a59042dc3ec844d6d2724e0a5eb3f455d9275bd6fc1fd54903eb8e6cbe8143388c5c02a41012aa86a37421066da6c66a3876fdc2bbe37919b7dc45a4640790 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/pygmentex + +name pygmentex.i386-cygwin +category Package +revision 34996 +shortdesc i386-cygwin files of pygmentex +containersize 340 +containerchecksum ed0d103d6e02118f8229e100c76ea71aa1b50a416ba6239cda4123aaef853aadd1f31d08f229ba5940ba2f4260486bbdcb0856c22889c5ed7da15eb3e6709144 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/pygmentex + +name pygmentex.i386-freebsd +category Package +revision 34996 +shortdesc i386-freebsd files of pygmentex +containersize 344 +containerchecksum ca78df2ac1b6c67e8515aaa25e49764ac2d2b314b7e01c969cc7aa009cd2e8ec2b8bacef07107743043a7e38748f09405ead3c96275c3abacff18ecde5506313 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/pygmentex + +name pygmentex.i386-linux +category Package +revision 34996 +shortdesc i386-linux files of pygmentex +containersize 340 +containerchecksum 95383e605fa4ab4dce266bcd2bdbd0cce4272b1df3915af1b354f6c0b8ecd51cc9339844f2e56db368ec519d78c3bf29fca7dbfb2e0d8c81b825283ee8a61c42 +binfiles arch=i386-linux size=1 + bin/i386-linux/pygmentex + +name pygmentex.i386-netbsd +category Package +revision 34996 +shortdesc i386-netbsd files of pygmentex +containersize 340 +containerchecksum ae4072fe4940f67125fe1c910b755f2de41f042c855957f8f239fb2a699bf672ccd1c6d5b974ea85d5e78c20941c873eea153cad4a3ff2e481388d9d1c321667 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/pygmentex + +name pygmentex.i386-solaris +category Package +revision 34996 +shortdesc i386-solaris files of pygmentex +containersize 340 +containerchecksum 3bcff7ee794b3918099debba12bac96ff15ddeaef0f458d3bcbc34cce17614210438d906efb73908f89f93bf9eac51a1e325e138366ac0973e79f92cd78c791d +binfiles arch=i386-solaris size=1 + bin/i386-solaris/pygmentex + +name pygmentex.win32 +category Package +revision 34996 +shortdesc win32 files of pygmentex +containersize 684 +containerchecksum 0b04226e50c632df65bf50c6222f823563f2eeca57372dc625e4e91f625d296279746f75f234f47299c283e6c65d85c4fcbd7828259667dd693e46e1b63c9809 +binfiles arch=win32 size=1 + bin/win32/pygmentex.exe + +name pygmentex.x86_64-cygwin +category Package +revision 34996 +shortdesc x86_64-cygwin files of pygmentex +containersize 340 +containerchecksum 9791b63325365af87c47f2db168414105786454e1a31d09b4b0a9d6822985ca277169948e8f232e870b9e895eb187fdedd0f52e896d47be9a45d2aa667633283 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/pygmentex + +name pygmentex.x86_64-darwin +category Package +revision 34996 +shortdesc x86_64-darwin files of pygmentex +containersize 340 +containerchecksum 044326be7bca87c1fcef61637ae0adb3c00221e2d91fd4ed359e9872c56d113300c93c7dc1de0285d2505c196a697ffea3e90dbc982b0ce4121aadd811fd3f5f +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/pygmentex + +name pygmentex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pygmentex +containersize 348 +containerchecksum 2ff895caf0fa32f13bf9aa2301029118bfb1a25ed5df1ecd8da63b962fe75c726d5bf86d878d9f8bfb4f37e445ab5a95f3f79d2c90c4961422ebb5ef1d3e5336 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/pygmentex + +name pygmentex.x86_64-linux +category Package +revision 34996 +shortdesc x86_64-linux files of pygmentex +containersize 340 +containerchecksum 079a17aec410560ea86d99970f285d5a137da3cdf452d1a55cd461617960c4027e4f08793dc940c021dbf2cb810c407f913230de5217031d8d5c2ac63ca97242 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/pygmentex + +name pygmentex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pygmentex +containersize 348 +containerchecksum 61b594a202bc0df5d3d2afe7f30337c7576b20b99b6f9f47ed83b8126c363d76ffe8b11d1bf51ba95aa3fbe39bcf95c8cfc22d9e75df3c5b45286477c8acb005 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/pygmentex + +name pygmentex.x86_64-solaris +category Package +revision 34996 +shortdesc x86_64-solaris files of pygmentex +containersize 340 +containerchecksum eaf2d9b1fc456c04869f7788570042006373f53ba46a4e07ea4e2b139280c8046f644911df4bca1b97d4e5b1a566c4e5483313eaa5bdff09eb86d6f2b66442d4 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/pygmentex + +name python +category Package +revision 27064 +shortdesc Embed Python code in LaTeX +relocated 1 +longdesc The package enables you to embed Python code in LaTeX, and +longdesc insert the script's output in the document. +containersize 1940 +containerchecksum 85c300c969fccdff036e2da59ada1040bee6f25c6a8ec3c173ce44084fb9fd812aab79b8fdc0b9fbe2ffbf9485abca57fc5d82caf4ac5a3ff922501b46dec164 +doccontainersize 864 +doccontainerchecksum 8f88b9bc84a71c430486e2e3d2b33a4436cb1ac1257b9ea5629708438b8ac7488839d52fc138e4959575fe13388aa475770a62ca070b4746de8b78c53d5119a1 +docfiles size=1 + RELOC/doc/latex/python/README details="Readme" +runfiles size=1 + RELOC/tex/latex/python/python.sty +catalogue-ctan /macros/latex/contrib/python +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics callback +catalogue-version 0.21 + +name pythonhighlight +category Package +revision 43191 +shortdesc Highlighting of Python code, based on the listings package +relocated 1 +longdesc Highlighting of Python code, based on the listings package. +containersize 2180 +containerchecksum 1018d4383ba04f92d383d2c4f51d30f091528f7a89ff23614e0ebc9e488ef3cc8167de12a42e6a6465c2b3937d849bd5eecc94cab0a9b8003569b06ae2c91632 +doccontainersize 1444 +doccontainerchecksum 31297eb541060d760fd61ebe169b840cf182f8f857986aba5a2a578373037d3c99ee12ec9c707ab1f9d29564925821665997ea45f728273007f61a5f0bea5180 +docfiles size=2 + RELOC/doc/latex/pythonhighlight/LICENSE.rst + RELOC/doc/latex/pythonhighlight/README.md details="Readme" +runfiles size=2 + RELOC/tex/latex/pythonhighlight/pythonhighlight.sty +catalogue-also listings +catalogue-ctan /macros/latex/contrib/pythonhighlight +catalogue-date 2017-02-11 05:22:12 +0100 +catalogue-license other-free +catalogue-topics listing + +name pythontex +category Package +revision 44860 +shortdesc Run Python from within a document, typesetting the results +longdesc The package allows you to enter Python code within a LaTeX +longdesc document, execute the code, and access its output in the +longdesc original document. Python code is only executed when it has +longdesc been modified, or when it meets user-specified criteria. Code +longdesc may be divided into user-defined sessions, which automatically +longdesc run in parallel. Errors and warnings are synchronized with the +longdesc LaTeX document, so that they refer to the document's line +longdesc numbers. External dependencies can be tracked, so that code is +longdesc re-executed when the data it depends on is modified. PythonTeX +longdesc also provides syntax highlighting for code in LaTeX documents +longdesc via the Pygments syntax highlighter. The package provides a +longdesc depythontex utility, that creates a copy of the document in +longdesc which all Python code has been replaced by its output. This is +longdesc useful for journal submissions, sharing documents, and +longdesc conversion to other formats. +depend pythontex.ARCH +containersize 64788 +containerchecksum a5ab9d196f7916cd856907e002ba3a67240f99739132444306b657bcd1f22d305d9246c766fa3fc1f4706ff3a1d23abfa6e7334ea2dfb5dfbc9c772bbfbb6025 +doccontainersize 1543832 +doccontainerchecksum 4a79de9023f8b12a22ff6ab14295e580118ba749a465884fce3f43a2bdfa8c3f7a4e131223f191863f2f3b3049f2b6d83d7c52bfcd3e4b3d90698591c61a8e6c +docfiles size=403 + texmf-dist/doc/latex/pythontex/NEWS.rst + texmf-dist/doc/latex/pythontex/README details="Readme" + texmf-dist/doc/latex/pythontex/pythontex.pdf details="Package documentation" + texmf-dist/doc/latex/pythontex/pythontex_gallery.pdf details="Gallery of use" + texmf-dist/doc/latex/pythontex/pythontex_gallery.tex + texmf-dist/doc/latex/pythontex/pythontex_quickstart.pdf details="Quick start documentation" + texmf-dist/doc/latex/pythontex/pythontex_quickstart.tex + texmf-dist/doc/latex/pythontex/syncpdb.py +srccontainersize 82424 +srccontainerchecksum a1fe4099a2508da8e901de36a302c368ac1ad9990f896e0d36dd5fe911c7bc3de43d2c19ebca5f7ec078ffc03797fb4d600d34501f568fa68fa87d0019584660 +srcfiles size=96 + texmf-dist/source/latex/pythontex/depythontex.bat + texmf-dist/source/latex/pythontex/pythontex.bat + texmf-dist/source/latex/pythontex/pythontex.dtx + texmf-dist/source/latex/pythontex/pythontex.ins + texmf-dist/source/latex/pythontex/pythontex_install.bat +runfiles size=149 + texmf-dist/scripts/pythontex/depythontex.py + texmf-dist/scripts/pythontex/depythontex2.py + texmf-dist/scripts/pythontex/depythontex3.py + texmf-dist/scripts/pythontex/pythontex.py + texmf-dist/scripts/pythontex/pythontex2.py + texmf-dist/scripts/pythontex/pythontex3.py + texmf-dist/scripts/pythontex/pythontex_2to3.py + texmf-dist/scripts/pythontex/pythontex_engines.py + texmf-dist/scripts/pythontex/pythontex_install.py + texmf-dist/scripts/pythontex/pythontex_utils.py + texmf-dist/tex/latex/pythontex/pythontex.sty +catalogue-also perltex +catalogue-contact-repository https://github.com/gpoore/pythontex +catalogue-ctan /macros/latex/contrib/pythontex +catalogue-date 2017-07-21 08:12:38 +0200 +catalogue-license lppl1.3 +catalogue-topics callback +catalogue-version 0.16 + +name pythontex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of pythontex +containersize 364 +containerchecksum 59fa62e7eb4904d79ee4c66d7e1da31120d752f7413fc580e6c4bbfcd950a6b0fd3f391f5cdd04b2e76f4d4af9eb5f2ccdc6e2386000b4eb035f3a27bf5cd874 +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/depythontex + bin/aarch64-linux/pythontex + +name pythontex.amd64-freebsd +category Package +revision 31638 +shortdesc amd64-freebsd files of pythontex +containersize 364 +containerchecksum 978b22d2f7b2850a31df524021b09dcaaa94176b270c875f91dc68d61b86901a409984ce274d791f24fcaa1d2ddd0d4cb3e31242580b7182afad8f9b8f445791 +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/depythontex + bin/amd64-freebsd/pythontex + +name pythontex.amd64-netbsd +category Package +revision 31638 +shortdesc amd64-netbsd files of pythontex +containersize 364 +containerchecksum 7f5ff180b35aacda3819babc988b19153cf04f589df41829c6b274d6aa9d3f0329ae6a34eed8861246023aff1045a0c28b22a486ff8d67b4d7602f07838e3eb4 +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/depythontex + bin/amd64-netbsd/pythontex + +name pythontex.armhf-linux +category Package +revision 31638 +shortdesc armhf-linux files of pythontex +containersize 364 +containerchecksum d1ee2be931deabbcf1ed8fcfce2422d4eda251d5e3fa653eb17bc45ec4f9e4774c8a2d2b8b3123270e11ab356c67668f89f2a5df361f1e4bd29a82b9b3c8b345 +binfiles arch=armhf-linux size=2 + bin/armhf-linux/depythontex + bin/armhf-linux/pythontex + +name pythontex.i386-cygwin +category Package +revision 31638 +shortdesc i386-cygwin files of pythontex +containersize 360 +containerchecksum 737d26e507fc505566a16f7859fb4980497d87671d06b31b4862767f6ca80a6c55ee15791813e86b3a84bcd6117452aae89b940dec6edf61278f7067e3398ccb +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/depythontex + bin/i386-cygwin/pythontex + +name pythontex.i386-freebsd +category Package +revision 31638 +shortdesc i386-freebsd files of pythontex +containersize 364 +containerchecksum 84a506cbde7e21d8f748e6ff0e46b68e37bdf78adc5ae1ab57d091d07fee96ff9eb56254e1e8076cb5193901d68803a97b84093a73392d93b611eb14a3af4736 +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/depythontex + bin/i386-freebsd/pythontex + +name pythontex.i386-linux +category Package +revision 31638 +shortdesc i386-linux files of pythontex +containersize 360 +containerchecksum c62917e422da0dd8c9e177483e48bc4897c8f4db3dc8e222462186ede2fe9cb9deae269e1112b40dd065a0b69dc5579a4d95f6ed7ab65ac09d3a015891f017fa +binfiles arch=i386-linux size=2 + bin/i386-linux/depythontex + bin/i386-linux/pythontex + +name pythontex.i386-netbsd +category Package +revision 31638 +shortdesc i386-netbsd files of pythontex +containersize 360 +containerchecksum 189457c8ec2d911595c7b90a0c421f7ea8a02b90a90225e1ac1a4c352a893fd4e51ae13f4ff62f4be90e378e8eb115242897f7258889a5fea55ac36bf2c7048f +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/depythontex + bin/i386-netbsd/pythontex + +name pythontex.i386-solaris +category Package +revision 31638 +shortdesc i386-solaris files of pythontex +containersize 364 +containerchecksum 44fa80d323d6065a6d5ae71df2da811d1a38ccbe7480acda634ea30350c0cb4e7c5e8ebcb5a73315ab0ffaf25b7ccb52e878dd7d324436a7592b1e2a7512ae24 +binfiles arch=i386-solaris size=2 + bin/i386-solaris/depythontex + bin/i386-solaris/pythontex + +name pythontex.win32 +category Package +revision 31638 +shortdesc win32 files of pythontex +containersize 700 +containerchecksum c1acde42224b0eec9497b15b65c6080183b6e9eb42f88c78ca23fe9bada9d6f6cc4c27213d8c67b24bea7d11e23c1e0dee422ef368fff2f969d7d42ca8800f34 +binfiles arch=win32 size=2 + bin/win32/depythontex.exe + bin/win32/pythontex.exe + +name pythontex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of pythontex +containersize 364 +containerchecksum 8bc0a788d0624cfe70ca8196b863cec5f502fcebd1547c75a705f66fa31b954683f3f569ec46fb97b7438348af56f03bd364ebf676d32246ba59ed57a8908520 +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/depythontex + bin/x86_64-cygwin/pythontex + +name pythontex.x86_64-darwin +category Package +revision 31638 +shortdesc x86_64-darwin files of pythontex +containersize 368 +containerchecksum 26d2ee811c0bc241cae0bb72b7c6ab8de62f8d57c6613628a0665da3764797ee453df67286e77a4fae6522aaf8dc50aafb4b576ff72c2437cc3fc719ef336c9c +binfiles arch=x86_64-darwin size=2 + bin/x86_64-darwin/depythontex + bin/x86_64-darwin/pythontex + +name pythontex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of pythontex +containersize 372 +containerchecksum 270febd980b7ad15246cb24cd2e7fb997e1052e8be73a6168a24b1fefbdc711bc0a7725d6d2dd7bb813e1e2c1ba6742413280f49c4a105df62051d6f2e721fd6 +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/depythontex + bin/x86_64-darwinlegacy/pythontex + +name pythontex.x86_64-linux +category Package +revision 31638 +shortdesc x86_64-linux files of pythontex +containersize 364 +containerchecksum d6f8d47872f3d2978917d74155adfd292a20b990c3b05a3c41860e5648226e258640662c08a3d803c8fcaf949bf0cc7e63d367b86b71a5ab99a1bf7161004f4a +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/depythontex + bin/x86_64-linux/pythontex + +name pythontex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of pythontex +containersize 368 +containerchecksum 067c428c52090a6b495e468597cfd1e210464a789d3c6049705c60a9f906df547bb2a215d9b01c14671d8bc833def07b3664f6b2f519b31b6d6fd8adc0fceed3 +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/depythontex + bin/x86_64-linuxmusl/pythontex + +name pythontex.x86_64-solaris +category Package +revision 31638 +shortdesc x86_64-solaris files of pythontex +containersize 364 +containerchecksum 9e570790f832795bb441834d78987edf470d83a1bc4759bb76e3c0097889c4f59204c074bf4c4370a987bd3bdabbec66e896d7861344f982629f907a3b09eba1 +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/depythontex + bin/x86_64-solaris/pythontex + +name qcircuit +category Package +revision 48400 +shortdesc Macros to generate quantum ciruits +relocated 1 +longdesc The package supports those within the quantum information +longdesc community who typeset quantum circuits, using xy-pic package, +longdesc offering macros designed to help users generate circuits. +containersize 4452 +containerchecksum 72dc726d377bfa13b30d5440f65e3f451a717c32785c9338bc95107a3fd29326d5011ea31a6805fd751e276279b8bb577f2b4a488ad0f380ffad84fbe46e272e +doccontainersize 298344 +doccontainerchecksum cb4d00d575ed8f859722b97af7f15323af85e69b7276947c05770a6c745dbf0e4b3aa1546b3cc82d9555a5ce839b142ea8edd3da166d2c109bf6b829b2ebb74f +docfiles size=75 + RELOC/doc/latex/qcircuit/README.md details="Readme" + RELOC/doc/latex/qcircuit/qcircuit.pdf details="Package documentation" +runfiles size=4 + RELOC/tex/latex/qcircuit/qcircuit.sty +catalogue-contact-repository https://github.com/CQuIC/qcircuit +catalogue-ctan /graphics/qcircuit +catalogue-date 2018-08-14 19:25:41 +0200 +catalogue-license gpl2 +catalogue-topics diagram-circ graphics-in-tex +catalogue-version 2.6.0 + +name qcm +category Package +revision 15878 +shortdesc A LaTeX2e class for making multiple choice questionnaires +relocated 1 +longdesc QCM is a package for making multiple choices questionnaires +longdesc under LaTeX2e ("QCM" is the French acronym for this style of +longdesc test). A special environment allows you to define questions and +longdesc possible answers. You can specify which answers are correct and +longdesc which are not. QCM not only formats the questions for you, but +longdesc also generates a 'form' (a grid that your students will have to +longdesc fill in), and a 'mask' (the same grid, only with correct +longdesc answers properly checked in). You can then print the mask on a +longdesc slide and correct the questionnaires more easily by +longdesc superimposing the mask on top of students' forms. QCM can also +longdesc typeset exam corrections automatically, and comes with support +longdesc for AUC-TeX. +containersize 3544 +containerchecksum 9fc1ac5b0b6fb819022f9e2ef625a73ed884ecd2c45b7c58283388ea0263d9f9c9045e14d9ee37e8a3c0036171284f30f7db5f99bacd01d4c65e1819bec6ab95 +doccontainersize 94864 +doccontainerchecksum d7935c763e9e5245eb68d915b39a2f91d785a1590a7cd807e0923d7d5763ef8216069bf1119f15f91521fd83786c86de7b227e90b6407d6799a6104fe466fd4a +docfiles size=33 + RELOC/doc/latex/qcm/NEWS + RELOC/doc/latex/qcm/README details="Readme" + RELOC/doc/latex/qcm/qcm.el + RELOC/doc/latex/qcm/qcm.pdf details="Package documentation" +srccontainersize 9308 +srccontainerchecksum 7efcc841f6c990e7fb1979bfeed28289ff0290b9ab2d54248628a3e52f0eb3c35b9a3b8f91a4b06231577a957d1009522d4c9843c103720f590cfb617289fd23 +srcfiles size=9 + RELOC/source/latex/qcm/qcm.dtx + RELOC/source/latex/qcm/qcm.ins +runfiles size=4 + RELOC/tex/latex/qcm/qcm.cls + RELOC/tex/latex/qcm/qcm.sty +catalogue-ctan /macros/latex/contrib/qcm +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics exam +catalogue-version 2.1 + +name qobitree +category Package +revision 15878 +shortdesc LaTeX macros for typesetting trees +relocated 1 +longdesc Provides commands \branch and \leaf for specifying the elements +longdesc of the tree; you build up your tree with those commands, and +longdesc then issue the \tree command to typeset the whole. +containersize 2884 +containerchecksum cd229c1611f269f904d73d276b8b36fb60a373130a3b5bf78508daf85d5ce50cdc4841a25e30c5a0925344eefd93f638e635be2878478f575f32fc458fa9a0dd +doccontainersize 3656 +doccontainerchecksum b3b587bbe835456cb6298804cac2a8d61c85d4bad6550cd355e6a9ba155e7b691c5b2f5f919ded355b21dde9c4009ee30466bcfc5cb6d81e0af0fdeb97aa3b64 +docfiles size=4 + RELOC/doc/latex/qobitree/README details="Package documentation" + RELOC/doc/latex/qobitree/example.tex +runfiles size=6 + RELOC/tex/latex/qobitree/qobitree.tex +catalogue-ctan /macros/latex/contrib/qobitree +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics tree + +name qpxqtx +category Package +revision 45797 +shortdesc Polish macros and fonts supporting Pagella/pxfonts and Termes/txfonts +relocated 1 +containersize 12932 +containerchecksum 7387592a338e7ba10942e4ed96364e36ca325040bff02cd69bf0f98d471775d38bd63e54bad494f64874e2fd0462762595c5796d7453aa6909fccc2d9d6bd27c +doccontainersize 7044 +doccontainerchecksum 6b6fc20f5ec1269d318813b1ad34020e2b5341ed8891c11d2eda6b84884b3782e992dd9dde16d14b2030f2b57e1146fb6da6e761a35b12a3d88e8d865285668d +docfiles size=16 + RELOC/doc/fonts/qpxqtx/00README + RELOC/doc/fonts/qpxqtx/p01tst.tex + RELOC/doc/fonts/qpxqtx/p02tst.tex + RELOC/doc/fonts/qpxqtx/qpxsymb.tex + RELOC/doc/fonts/qpxqtx/qpxtest.tex + RELOC/doc/fonts/qpxqtx/qtxsymb.tex + RELOC/doc/fonts/qpxqtx/qtxtest.tex + RELOC/doc/fonts/qpxqtx/t01tst.tex + RELOC/doc/fonts/qpxqtx/t02tst.tex +runfiles size=30 + RELOC/fonts/tfm/public/qpxqtx/qpxbmi.tfm + RELOC/fonts/tfm/public/qpxqtx/qpxbmia.tfm + RELOC/fonts/tfm/public/qpxqtx/qpxmi.tfm + RELOC/fonts/tfm/public/qpxqtx/qpxmia.tfm + RELOC/fonts/tfm/public/qpxqtx/qtxbmi.tfm + RELOC/fonts/tfm/public/qpxqtx/qtxbmia.tfm + RELOC/fonts/tfm/public/qpxqtx/qtxmi.tfm + RELOC/fonts/tfm/public/qpxqtx/qtxmia.tfm + RELOC/fonts/vf/public/qpxqtx/qpxbmi.vf + RELOC/fonts/vf/public/qpxqtx/qpxbmia.vf + RELOC/fonts/vf/public/qpxqtx/qpxmi.vf + RELOC/fonts/vf/public/qpxqtx/qpxmia.vf + RELOC/fonts/vf/public/qpxqtx/qtxbmi.vf + RELOC/fonts/vf/public/qpxqtx/qtxbmia.vf + RELOC/fonts/vf/public/qpxqtx/qtxmi.vf + RELOC/fonts/vf/public/qpxqtx/qtxmia.vf + RELOC/tex/generic/qpxqtx/amspbold.tex + RELOC/tex/generic/qpxqtx/amsqpx.def + RELOC/tex/generic/qpxqtx/amsqpx.tex + RELOC/tex/generic/qpxqtx/amsqtx.def + RELOC/tex/generic/qpxqtx/amsqtx.tex + RELOC/tex/generic/qpxqtx/amstbold.tex + RELOC/tex/generic/qpxqtx/qpxmath.sty + RELOC/tex/generic/qpxqtx/qpxmath.tex + RELOC/tex/generic/qpxqtx/qtxmath.sty + RELOC/tex/generic/qpxqtx/qtxmath.tex + +name qrcode +category Package +revision 36065 +shortdesc Generate QR codes in LaTeX +relocated 1 +longdesc The package generates QR (Quick Response) codes in LaTeX, +longdesc without the need for PSTricks or any other graphical package. +containersize 19636 +containerchecksum 65ecc00d46d06f8a36cb1f170c12692cf7ef8c0cf9e68bbdc6a7da6b0a7f5fcda6a2e065b8a474609556518ab07c2d12f19a9fdaa0b6339aba94cf35184e26f9 +doccontainersize 245688 +doccontainerchecksum 406d1cf238b397412a57ed695a39af0ef32de007b94e8650cf591c63882d05d7df18061fbd2b350347c052091202a38de1ceef19f61fa58de38c2e73de6b01b2 +docfiles size=66 + RELOC/doc/latex/qrcode/README details="Readme" + RELOC/doc/latex/qrcode/qrcode.pdf details="Package documentation" +srccontainersize 26296 +srccontainerchecksum 3e344af4bcd4e0d2b49638c33177f600f1e3ff24416ad503f55b3376fe7323ab381c7ee695351923cfc06b54c9ba8b3d1f4705f5377164f2b43ee04ccc565955 +srcfiles size=30 + RELOC/source/latex/qrcode/qrcode.dtx + RELOC/source/latex/qrcode/qrcode.ins +runfiles size=24 + RELOC/tex/latex/qrcode/qrcode.sty +catalogue-also pst-barcode +catalogue-ctan /macros/latex/contrib/qrcode +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics barcode qrcode rule +catalogue-version 1.51 + +name qsharp +category Package +revision 49722 +shortdesc Syntax highlighting for the Q# language +relocated 1 +longdesc The package provides syntax highlighting for the Q# language, a +longdesc domain-specific language for quantum programming. +containersize 1120 +containerchecksum 29aa0808112111d088f8795ec87ca3df6f2e10f0a8e91347ddc7101733aadc72ba90356f7e4b39fce6484e04975d3e151205a5d5272789ecd414cd0a6afc243b +doccontainersize 7208 +doccontainerchecksum 69d74a3ed755d16957a2a844ae624a15e18813fdf02595c2e4ae2dc0cf13b20a1db1c4f49c20db3e4d3343c586411a88c7ecfe6367c4c1efea1a8cb2730cf8f3 +docfiles size=7 + RELOC/doc/latex/qsharp/Install.ps1 + RELOC/doc/latex/qsharp/LICENSE + RELOC/doc/latex/qsharp/README.md details="Readme" +srccontainersize 2620 +srccontainerchecksum d8ad97902be6b5f29db2cdd7d27049407ebffe5efc8bf0f0ac64e64ed2e3df8f4fe86b8e023ae7dde4368740fdebf22ff6420a32854d5745e8fb147005788226 +srcfiles size=3 + RELOC/source/latex/qsharp/qsharp.dtx + RELOC/source/latex/qsharp/qsharp.ins +runfiles size=1 + RELOC/tex/latex/qsharp/qsharp.sty +catalogue-contact-bugs https://github.com/msr-quarc/qsharp.sty/issues +catalogue-contact-repository https://github.com/msr-quarc/qsharp.sty +catalogue-ctan /macros/latex/contrib/qsharp +catalogue-date 2019-01-20 05:31:27 +0100 +catalogue-license lppl1.3c +catalogue-topics synt-hlt +catalogue-version 0.3.1901.1401 + +name qstest +category Package +revision 15878 +shortdesc Bundle for unit tests and pattern matching +relocated 1 +longdesc This is the public release of the qstest bundle (written for +longdesc DocScape Publisher) (C) 2006, 2007 QuinScape GmbH. The bundle +longdesc contains the packages 'makematch' for matching patterns to +longdesc targets (with a generalization in the form of pattern lists and +longdesc keyword lists), and 'qstest' for performing unit tests, +longdesc allowing the user to run a number of logged tests ensuring the +longdesc consistency of values, properties and call sequences during +longdesc execution of test code. Both packages make extensive use of in +longdesc their package documentation, providing illustrated examples +longdesc that are automatically verified to work as expected. Check the +longdesc README file for details. +containersize 4872 +containerchecksum 1461a7e5a88a75d1976b8bf0b6b9a685c7e68bd5983ea1549b277627e20b8e7d0b890536c8e8357e168914220c168cc2be2e9a688b512e16d613107c50622f79 +doccontainersize 218496 +doccontainerchecksum a2e138b5de9012b637cc98b18e5aa64b2c9384f03beceda724c86f1e81e03b6da6b19de27fe15724463edc61520d035495f2f039a2d541b4761c44c55473d1c9 +docfiles size=68 + RELOC/doc/latex/qstest/README details="Readme" + RELOC/doc/latex/qstest/makematch-qs.tex + RELOC/doc/latex/qstest/makematch.pdf details="makematch Package documentation" + RELOC/doc/latex/qstest/qstest-qs.tex + RELOC/doc/latex/qstest/qstest.pdf details="qstest Package documentation" +srccontainersize 23592 +srccontainerchecksum 1ff5ae66e8620b298f4cb5ca4d53e420ed0e89e476edae48f1f37fb1785e8bf4693da410cf2149d690734ad11fcd669152ffa7a560bde94e923e772560f8ca19 +srcfiles size=27 + RELOC/source/latex/qstest/Makefile + RELOC/source/latex/qstest/makematch.drv + RELOC/source/latex/qstest/makematch.dtx + RELOC/source/latex/qstest/qstest.drv + RELOC/source/latex/qstest/qstest.dtx + RELOC/source/latex/qstest/qstest.ins +runfiles size=5 + RELOC/tex/latex/qstest/makematch.sty + RELOC/tex/latex/qstest/qstest.sty +catalogue-ctan /macros/latex/contrib/qstest +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl +catalogue-topics units + +name qsymbols +category Package +revision 15878 +shortdesc Maths symbol abbreviations +relocated 1 +longdesc Provides macros for defining systematic mnemonic abbreviations, +longdesc starting with ` for math symbols and \" for arrows, using +longdesc standard symbols as well as those from the amsfonts bundle and +longdesc the stmaryrd package. +containersize 7680 +containerchecksum b910db8e0e33bbc111a95db914958a3261fa89061677d999876b026d25609326b83444a7c6b77ee4a39d60eaedff448ec662dddf9511e99c826a3bddbf0b2861 +doccontainersize 129428 +doccontainerchecksum c633094c09c291666f1953d8d8d8570d71b773e70f90c805cb01981117ea4212ce8cbd4ffabd9ca5aaee07637d19c6e627856115b3943f9d5c414034eee500ea +docfiles size=50 + RELOC/doc/latex/qsymbols/CATALOG + RELOC/doc/latex/qsymbols/COPYING + RELOC/doc/latex/qsymbols/MANIFEST + RELOC/doc/latex/qsymbols/README details="Readme" + RELOC/doc/latex/qsymbols/qsymbols.pdf details="Package documentation" + RELOC/doc/latex/qsymbols/qsymbols.tex +srccontainersize 1652 +srccontainerchecksum 5c88d0d929f6491b6b9df65ac3ce2be28ee5461d5cae5bc2ecaba64a9012ce4d84cf3f63bec19971ca2e8ec37fa869b8707c8d6ebb9e80f8302cc04127873962 +srcfiles size=1 + RELOC/source/latex/qsymbols/Makefile +runfiles size=7 + RELOC/tex/latex/qsymbols/qsymbols.sty +catalogue-ctan /macros/latex/contrib/qsymbols +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics shortcut + +name qtree +category Package +revision 15878 +shortdesc Draw tree structures +relocated 1 +longdesc The package offers support for drawing tree diagrams, and is +longdesc especially suitable for linguistics use. It allows trees to be +longdesc specified in a simple bracket notation, automatically +longdesc calculates branch sizes, and supports both DVI/PostScript and +longdesc PDF output by use of pict2e facilities. The package is a +longdesc development of the existing qobitree package, offering a new +longdesc front end. +containersize 8156 +containerchecksum 9f381007c2526f51483d7c190cd7cf86cb399e95475841900ffa8f522d3da71f4f451b42562783d756e252e513ca1f9e9e8586517057a8f6b881cbbecb5c3987 +doccontainersize 209544 +doccontainerchecksum c16142acf0c3f9e4f347c9ceff7a6c29557c0c2c4d2232ce9df146279b3cd4e1019e703479f426709a3feeb6ac46fb91f7dcee8cad35b19c83c9893661322f96 +docfiles size=75 + RELOC/doc/latex/qtree/README details="Readme" + RELOC/doc/latex/qtree/qarrows.pdf details="Use of tree-dvips with qtree" language="en" + RELOC/doc/latex/qtree/qarrows.tex + RELOC/doc/latex/qtree/qtreenotes.pdf details="Package documentation" language="en" + RELOC/doc/latex/qtree/qtreenotes.tex +runfiles size=10 + RELOC/tex/latex/qtree/qtree.sty +catalogue-also tree-dvips +catalogue-ctan /macros/latex/contrib/qtree +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics tree linguistic +catalogue-version 3.1b + +name quantikz +category Package +revision 50934 +shortdesc Draw quantum circuit diagrams +relocated 1 +longdesc The purpose of this package is to extend TikZ with the +longdesc functionality for drawing quantum circuit diagrams. +containersize 8300 +containerchecksum 0d6946eeee69573a3c014a16c985da8ed193be32511723dd6302978851d9ac729aa7248be6cb152bb519b36e1b04bdc741b440d9746fc8106d326af67d8d10e2 +doccontainersize 460316 +doccontainerchecksum 8dad4e65191d092b497216ed8d57249cb6edfcd54481bac8b1ca8af9734608b9f4f54e260be6ffc3df93353f81eb839db6c68e874a24f62acbb4613370578efa +docfiles size=139 + RELOC/doc/latex/quantikz/README.md details="Readme" + RELOC/doc/latex/quantikz/quantikz.pdf details="Package documentation" + RELOC/doc/latex/quantikz/quantikz.tex +runfiles size=9 + RELOC/tex/latex/quantikz/tikzlibraryquantikz.code.tex +catalogue-also qcircuit +catalogue-ctan /graphics/pgf/contrib/quantikz +catalogue-date 2019-04-26 19:27:57 +0200 +catalogue-license cc-by-4 +catalogue-topics graphics pgf-tikz diagram-circ +catalogue-version 0.9.5 + +name quattrocento +category Package +revision 50729 +shortdesc LaTeX support for Quattrocento and Quattrocento Sans fonts +relocated 1 +longdesc The package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Quattrocento and Quattrocento Sans families of +longdesc fonts, designed by Pablo Impallari; the fonts themselves are +longdesc also provided, in both Type 1 and OpenType format. Quattrocento +longdesc is a classic typeface with wide and open letterforms, and great +longdesc x-height, which makes it very legible for body text at small +longdesc sizes. Tiny details that only show up at bigger sizes make it +longdesc also great for display use. Quattrocento Sans is the perfect +longdesc sans-serif companion for Quattrocento. +execute addMap quattrocento.map +containersize 1560076 +containerchecksum 9f02dd58c0f7c1e0825f019215efdf4c82b5be6e787168aa30a2bfad9f2f73cadbb09cd9c333107a04765e5804032454e70f94a2f9d20ad1e5a60af4d3f83e26 +doccontainersize 104388 +doccontainerchecksum f0ddfb64399cdd40870dd5ac51a4a7d6b39abcf78449be4f7ea37ca595bfbc0dd5c0a95fd741c8f8e4e92931fce8d761be47a3f765e963fcd4d6075fe4341c05 +docfiles size=31 + RELOC/doc/fonts/quattrocento/OFL.txt + RELOC/doc/fonts/quattrocento/README details="Readme (the primary documentation)" + RELOC/doc/fonts/quattrocento/quattrocento-samples.pdf details="Font samples" + RELOC/doc/fonts/quattrocento/quattrocento-samples.tex +runfiles size=1006 + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_3fwis5.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_464xel.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_5tsqgq.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_6abmaa.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_765rgb.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_biaxdc.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_cpzb4n.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_dn5k7b.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_dw2g3h.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_ezrk6a.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_h2bn35.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_iyhp72.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_jqoy2i.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_lk3wmz.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_mamppr.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_n36lnh.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_nfidqf.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_slhr5d.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_szwdgc.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_tixcdz.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_vzn2dc.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_wczi5x.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_wpi2yi.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_xvywtm.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_xzkr3s.enc + RELOC/fonts/enc/dvips/quattrocento/qtrcnt_y54nu7.enc + RELOC/fonts/map/dvips/quattrocento/quattrocento.map + RELOC/fonts/opentype/impallari/quattrocento/Quattrocento-Bold.otf + RELOC/fonts/opentype/impallari/quattrocento/Quattrocento-BoldItalic.otf + RELOC/fonts/opentype/impallari/quattrocento/Quattrocento-Italic.otf + RELOC/fonts/opentype/impallari/quattrocento/Quattrocento.otf + RELOC/fonts/opentype/impallari/quattrocento/QuattrocentoSans-Bold.otf + RELOC/fonts/opentype/impallari/quattrocento/QuattrocentoSans-BoldItalic.otf + RELOC/fonts/opentype/impallari/quattrocento/QuattrocentoSans-Italic.otf + RELOC/fonts/opentype/impallari/quattrocento/QuattrocentoSans.otf + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Bold-sup-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Bold-sup-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Bold-sup-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Bold-tlf-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Italic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Italic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Italic-sup-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Italic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-sup-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-sup-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-sup-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-tlf-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/Quattrocento-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-sup-ly1--lcdfj.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-sup-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-sup-ot1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-sup-ot1--lcdfj.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-sup-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-sup-t1--lcdfj.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-sup-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-tlf-ot1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-tlf-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-sup-ly1--lcdfj.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-sup-ot1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-sup-ot1--lcdfj.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-sup-t1--lcdfj.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-sup-ly1--lcdfj.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-sup-ot1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-sup-ot1--lcdfj.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-sup-t1--lcdfj.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-sup-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-tlf-ot1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-sup-ly1--lcdfj.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-sup-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-sup-ot1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-sup-ot1--lcdfj.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-sup-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-sup-t1--lcdfj.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-sup-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-tlf-ot1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-tlf-t1.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/quattrocento/QuattrocentoSans-tlf-ts1.tfm + RELOC/fonts/type1/impallari/quattrocento/Quattrocento-Bold.pfb + RELOC/fonts/type1/impallari/quattrocento/Quattrocento-BoldItalic.pfb + RELOC/fonts/type1/impallari/quattrocento/Quattrocento-Italic.pfb + RELOC/fonts/type1/impallari/quattrocento/Quattrocento.pfb + RELOC/fonts/type1/impallari/quattrocento/QuattrocentoSans-Bold.pfb + RELOC/fonts/type1/impallari/quattrocento/QuattrocentoSans-BoldItalic.pfb + RELOC/fonts/type1/impallari/quattrocento/QuattrocentoSans-BoldItalicLCDFJ.pfb + RELOC/fonts/type1/impallari/quattrocento/QuattrocentoSans-BoldLCDFJ.pfb + RELOC/fonts/type1/impallari/quattrocento/QuattrocentoSans-Italic.pfb + RELOC/fonts/type1/impallari/quattrocento/QuattrocentoSans-ItalicLCDFJ.pfb + RELOC/fonts/type1/impallari/quattrocento/QuattrocentoSans.pfb + RELOC/fonts/type1/impallari/quattrocento/QuattrocentoSansLCDFJ.pfb + RELOC/fonts/vf/impallari/quattrocento/Quattrocento-Bold-sup-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattrocento-Bold-sup-t1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattrocento-Bold-tlf-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattrocento-Bold-tlf-t1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattrocento-Bold-tlf-ts1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattrocento-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattrocento-BoldItalic-sup-t1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattrocento-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattrocento-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattrocento-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattrocento-Italic-sup-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattrocento-Italic-sup-t1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattrocento-Italic-tlf-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattrocento-Italic-tlf-t1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattrocento-Italic-tlf-ts1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattrocento-sup-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattrocento-sup-t1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattrocento-tlf-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattrocento-tlf-t1.vf + RELOC/fonts/vf/impallari/quattrocento/Quattrocento-tlf-ts1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Bold-sup-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Bold-sup-ot1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Bold-sup-t1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Bold-tlf-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Bold-tlf-ot1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Bold-tlf-t1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Bold-tlf-ts1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-BoldItalic-sup-ot1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-BoldItalic-sup-t1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-ot1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Italic-sup-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Italic-sup-ot1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Italic-sup-t1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Italic-tlf-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Italic-tlf-ot1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Italic-tlf-t1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-Italic-tlf-ts1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-sup-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-sup-ot1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-sup-t1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-tlf-ly1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-tlf-ot1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-tlf-t1.vf + RELOC/fonts/vf/impallari/quattrocento/QuattrocentoSans-tlf-ts1.vf + RELOC/tex/latex/quattrocento/LY1Quattrocento-Sup.fd + RELOC/tex/latex/quattrocento/LY1Quattrocento-TLF.fd + RELOC/tex/latex/quattrocento/LY1QuattrocentoSans-Sup.fd + RELOC/tex/latex/quattrocento/LY1QuattrocentoSans-TLF.fd + RELOC/tex/latex/quattrocento/OT1Quattrocento-Sup.fd + RELOC/tex/latex/quattrocento/OT1Quattrocento-TLF.fd + RELOC/tex/latex/quattrocento/OT1QuattrocentoSans-Sup.fd + RELOC/tex/latex/quattrocento/OT1QuattrocentoSans-TLF.fd + RELOC/tex/latex/quattrocento/T1Quattrocento-Sup.fd + RELOC/tex/latex/quattrocento/T1Quattrocento-TLF.fd + RELOC/tex/latex/quattrocento/T1QuattrocentoSans-Sup.fd + RELOC/tex/latex/quattrocento/T1QuattrocentoSans-TLF.fd + RELOC/tex/latex/quattrocento/TS1Quattrocento-TLF.fd + RELOC/tex/latex/quattrocento/TS1QuattrocentoSans-TLF.fd + RELOC/tex/latex/quattrocento/quattrocento.sty +catalogue-ctan /fonts/quattrocento +catalogue-date 2019-04-03 18:45:52 +0200 +catalogue-license ofllppl +catalogue-topics font font-body font-proportional font-sans font-serif font-t1enc font-type1 font-otf + +name quicktype +category Package +revision 42183 +shortdesc LaTeX package for quick typesetting +relocated 1 +longdesc Intended for the quick typesetting of basic documents using +longdesc LaTeX using shortcuts to existing commands and specific +longdesc commands for quick formatting and creation of tables and title +longdesc pages with a graphic image. +containersize 1024 +containerchecksum 4950c1c7a4536cb64d70fe8c08a69fd9336825973a7c8a669ba48bd66476888775d1ad288d34d4b83a9d674624960e3d17de1c972f52bd7f329eff971ec0f185 +doccontainersize 181576 +doccontainerchecksum 6e43ad0d932eb2237106fd991dcd25e5bd536cb64db5988c958b138af294fbc777dc6ce2c2b791e3875a2bdeaf5a10be7d15585b44e7487017925e0068e898f6 +docfiles size=47 + RELOC/doc/latex/quicktype/QT.png + RELOC/doc/latex/quicktype/Quicktype.pdf details="Package documentation" + RELOC/doc/latex/quicktype/QuicktypeSample.pdf + RELOC/doc/latex/quicktype/README.txt details="Readme" +runfiles size=1 + RELOC/tex/latex/quicktype/quicktype.sty +catalogue-ctan /macros/latex/contrib/quicktype +catalogue-date 2016-10-08 06:05:32 +0200 +catalogue-license lppl1.3 +catalogue-topics shortcut +catalogue-version 0.1 + +name quotchap +category Package +revision 28046 +shortdesc Decorative chapter headings +relocated 1 +longdesc A package for creating decorative chapter headings with +longdesc quotations. Uses graphical and coloured output and by default +longdesc needs the "Adobe standard font set" (as supported by psnfss). +containersize 2936 +containerchecksum 834e780ca5c7b091cb1fca56b7c83ef86ab2dda0a4c051346b8dc8bcfba0e5ec299ce164e22e09f8807184354156239d21bd33e4a75c819d35573f75456a5890 +doccontainersize 293420 +doccontainerchecksum 20f6426244cac17c861222de8da6ba9f9a93efa6eaa94bf6935161a5b4a5c88afb9f3ce0fee1da8c2d133f91980b26b6afe500aef4bf77bb07f75b0ca677bfd2 +docfiles size=75 + RELOC/doc/latex/quotchap/README details="Readme" + RELOC/doc/latex/quotchap/document.pdf details="Sample document (chapter headings only)" + RELOC/doc/latex/quotchap/document.tex + RELOC/doc/latex/quotchap/quotchap.pdf details="Package documentation" +srccontainersize 7460 +srccontainerchecksum d0cf77f2f0e46dd2ae33dbc2bc271226b8d0b7057758be9009bf9f00f857d4f3793b0f4d87a72de677829777db339ab42deeff14201ec1c333adff63249261d9 +srcfiles size=6 + RELOC/source/latex/quotchap/quotchap.dtx + RELOC/source/latex/quotchap/quotchap.ins +runfiles size=2 + RELOC/tex/latex/quotchap/quotchap.sty +catalogue-ctan /macros/latex/contrib/quotchap +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics headings +catalogue-version 1.1 + +name quoting +category Package +revision 32818 +shortdesc Consolidated environment for displayed text +relocated 1 +longdesc As an alternative to the LaTeX standard environments quotation +longdesc and quote, the package provides a consolidated environment for +longdesc displayed text. First-line indentation may be activated by +longdesc adding a blank line before the quoting environment. A key-value +longdesc interface (using kvoptions) allows the user to configure font +longdesc properties and spacing and to control orphans within and after +longdesc the environment. +containersize 1832 +containerchecksum 44a9c726a5a9158fcd13fd93785101d2a9a940f34da3d52efd5be1a0467cd76aeaf4706b945a8de0b4e0b4a90740567cfad87f08aaa92e7d4eeae8eb9f7bbc73 +doccontainersize 307136 +doccontainerchecksum b3990965effff7529a7c18cdd3a08af337be3766ffe535feaf54db504a47b0f054af41511a635c3e70c34d3025df419af702d319240ee673f7462d2cf4ccbbc2 +docfiles size=76 + RELOC/doc/latex/quoting/README details="Readme" + RELOC/doc/latex/quoting/quoting.pdf details="Package documentation" +srccontainersize 8292 +srccontainerchecksum a50186cf1b8b0f55ffe4b2e8447b1232c14c6b36aaa4635bba464de1648ed01adbfa13d8a184bdda8398573b2b9132948577e47e252bcb1014761f4318a76ede +srcfiles size=7 + RELOC/source/latex/quoting/quoting.dtx + RELOC/source/latex/quoting/quoting.ins +runfiles size=1 + RELOC/tex/latex/quoting/quoting.sty +catalogue-ctan /macros/latex/contrib/quoting +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics quotation +catalogue-version 0.1c + +name quotmark +category Package +revision 15878 +shortdesc Consistent quote marks +relocated 1 +longdesc The package provides a means of ensuring consistent quote marks +longdesc throughout your document. The style can be changed either via +longdesc package option or command, and the package detects language +longdesc selections (from the babel or ngerman packages), and uses the +longdesc punctuation marks appropriate for the current language. The +longdesc author now considers the package obsolete, and recommends use +longdesc of csquotes in its place. +containersize 5160 +containerchecksum 9f21ef20aa9354b1347f00a52df65ea691fe4a00b05b794815279c070d05544611ccd8773cb7c9f8146a3a135f3100a06aaec48acacba255bae9a0654a2a9b53 +doccontainersize 140616 +doccontainerchecksum 6507fcf8639e780ab844700f6356abd8eb69df6158ee638d8471a112159f95a3df8f358fa40479eefad0cf09c34fc37d9292904ae159f2a79fea5acb93f6e542 +docfiles size=48 + RELOC/doc/latex/quotmark/CHANGES + RELOC/doc/latex/quotmark/README details="Readme" + RELOC/doc/latex/quotmark/quotmark.pdf details="Package documentation" + RELOC/doc/latex/quotmark/sample.tex +srccontainersize 8952 +srccontainerchecksum bbc423a9d6f6fca00c5c8dd9ed5dc084d094898ad5b27397147c8dae1f3bcb8a09f137f1c2c7066fb92d1cab1f5d16681612a528fc28ec4e7901b660f6c8eee8 +srcfiles size=16 + RELOC/source/latex/quotmark/quotmark.dtx + RELOC/source/latex/quotmark/quotmark.ins +runfiles size=39 + RELOC/tex/latex/quotmark/quotmark-UKenglish.def + RELOC/tex/latex/quotmark/quotmark-USenglish.def + RELOC/tex/latex/quotmark/quotmark-afrikaans.def + RELOC/tex/latex/quotmark/quotmark-brazil.def + RELOC/tex/latex/quotmark/quotmark-bulgarian.def + RELOC/tex/latex/quotmark/quotmark-catalan.def + RELOC/tex/latex/quotmark/quotmark-croatian.def + RELOC/tex/latex/quotmark/quotmark-czech.def + RELOC/tex/latex/quotmark/quotmark-danish.def + RELOC/tex/latex/quotmark/quotmark-dutch.def + RELOC/tex/latex/quotmark/quotmark-estonian.def + RELOC/tex/latex/quotmark/quotmark-finnish.def + RELOC/tex/latex/quotmark/quotmark-frenchb.def + RELOC/tex/latex/quotmark/quotmark-germanb.def + RELOC/tex/latex/quotmark/quotmark-greek.def + RELOC/tex/latex/quotmark/quotmark-hebrew.def + RELOC/tex/latex/quotmark/quotmark-icelandic.def + RELOC/tex/latex/quotmark/quotmark-irish.def + RELOC/tex/latex/quotmark/quotmark-italian.def + RELOC/tex/latex/quotmark/quotmark-magyar.def + RELOC/tex/latex/quotmark/quotmark-ngermanb.def + RELOC/tex/latex/quotmark/quotmark-norsk.def + RELOC/tex/latex/quotmark/quotmark-polish.def + RELOC/tex/latex/quotmark/quotmark-portuges.def + RELOC/tex/latex/quotmark/quotmark-romanian.def + RELOC/tex/latex/quotmark/quotmark-russianb.def + RELOC/tex/latex/quotmark/quotmark-serbian.def + RELOC/tex/latex/quotmark/quotmark-slovak.def + RELOC/tex/latex/quotmark/quotmark-slovene.def + RELOC/tex/latex/quotmark/quotmark-sorbian.def + RELOC/tex/latex/quotmark/quotmark-spanish.def + RELOC/tex/latex/quotmark/quotmark-swedish.def + RELOC/tex/latex/quotmark/quotmark-swiss.def + RELOC/tex/latex/quotmark/quotmark-turkish.def + RELOC/tex/latex/quotmark/quotmark-ukraineb.def + RELOC/tex/latex/quotmark/quotmark-welsh.def + RELOC/tex/latex/quotmark/quotmark.sty +catalogue-ctan /macros/latex/contrib/quotmark +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics quotation +catalogue-version 1.0 + +name quran +category Package +revision 50980 +shortdesc An easy way to typeset any part of The Holy Quran +relocated 1 +longdesc This package offers the user an easy way to typeset The Holy +longdesc Quran. It has been inspired by the lipsum and ptext packages +longdesc and provides several macros for typesetting the whole or any +longdesc part of Quran based on its popular division, including surah, +longdesc ayah, juz, hizb, quarter, and page. Besides the Arabic +longdesc original, translations to English, German, and Persian are +longdesc provided, as well as an English transliteration. +containersize 1202076 +containerchecksum 0b6488c5791f3afe774d0cec602e0da69fc9d5c5a83ee0f660d87e7f58e43f78c5e25cc7c7da446c0bff1e69a1857e9bfb920d03efc8492f5a2e226a2caa6dad +doccontainersize 392200 +doccontainerchecksum 15d704615b7b08a570ede940ecd5dd73a75fa1ee07631b7b9354fada53ca42c87129b63a3c7825a17f37579b099131666cf2d20e81b9c09030eb7bdd8b069ec7 +docfiles size=123 + RELOC/doc/xelatex/quran/README details="Readme" + RELOC/doc/xelatex/quran/defaulttext.pdf + RELOC/doc/xelatex/quran/defaulttext.tex + RELOC/doc/xelatex/quran/quran-doc.pdf details="Package documentation" + RELOC/doc/xelatex/quran/quran-doc.tex + RELOC/doc/xelatex/quran/quran-test.pdf details="Example of use" + RELOC/doc/xelatex/quran/quran-test.tex + RELOC/doc/xelatex/quran/quran-test1.pdf + RELOC/doc/xelatex/quran/quran-test1.tex + RELOC/doc/xelatex/quran/quran-test2.pdf + RELOC/doc/xelatex/quran/quran-test2.tex + RELOC/doc/xelatex/quran/quran.png + RELOC/doc/xelatex/quran/uthmanitext.pdf + RELOC/doc/xelatex/quran/uthmanitext.tex +runfiles size=2077 + RELOC/tex/xelatex/quran/quran-transde.def + RELOC/tex/xelatex/quran/quran-transen.def + RELOC/tex/xelatex/quran/quran-transfa.def + RELOC/tex/xelatex/quran/quran-translt.def + RELOC/tex/xelatex/quran/quran.sty + RELOC/tex/xelatex/quran/qurantext-de.translation.def + RELOC/tex/xelatex/quran/qurantext-en.translation.def + RELOC/tex/xelatex/quran/qurantext-en.transliteration.def + RELOC/tex/xelatex/quran/qurantext-fa.translation.def + RELOC/tex/xelatex/quran/qurantext-simple.def + RELOC/tex/xelatex/quran/qurantext-uthmani.def +catalogue-also lipsum ptext +catalogue-contact-bugs https://github.com/javadr/quran/issues +catalogue-contact-repository https://github.com/javadr/quran +catalogue-ctan /macros/xetex/latex/quran +catalogue-date 2019-05-04 16:32:42 +0200 +catalogue-license lppl1.3 +catalogue-topics arabic macro-supp xetex dummy-gen +catalogue-version 1.51 + +name quran-de +category Package +revision 50979 +shortdesc German translations to the quran package +relocated 1 +longdesc The package is prepared for typesetting some German +longdesc translations of the Holy Quran. It adds three more German +longdesc translations to the quran package. +containersize 623752 +containerchecksum bcd27ad64c01fae92d91155c918e4880837f657cfe5dd849a8bc137830a8b2bd6eb9942c1764e60f65bde41ce2e4397d755ce621ab83c5c56d181b60042a503d +doccontainersize 120380 +doccontainerchecksum baf460bbda2bc6890585dd21d0f86208501ddfa4443ba0d4552e1748ad44ba578fe78e79928a0c2556eca543089c2802616b9a4f9637c64ace7d01ef30168e39 +docfiles size=35 + RELOC/doc/xelatex/quran-de/README details="Readme" + RELOC/doc/xelatex/quran-de/quran-de-doc.pdf details="Package documentation" + RELOC/doc/xelatex/quran-de/quran-de-doc.tex + RELOC/doc/xelatex/quran-de/quran-de-test.pdf details="Example of use" + RELOC/doc/xelatex/quran-de/quran-de-test.tex + RELOC/doc/xelatex/quran-de/quran.png +runfiles size=965 + RELOC/tex/xelatex/quran-de/quran-de.sty + RELOC/tex/xelatex/quran-de/qurantext-deii.translation.def + RELOC/tex/xelatex/quran-de/qurantext-deiii.translation.def + RELOC/tex/xelatex/quran-de/qurantext-deiv.translation.def +catalogue-also lipsum ptext +catalogue-contact-bugs https://github.com/javadr/quran-de/issues +catalogue-contact-repository https://github.com/javadr/quran-de +catalogue-ctan /macros/xetex/latex/quran-de +catalogue-date 2019-05-04 17:12:14 +0200 +catalogue-license lppl1.3c +catalogue-topics german macro-supp xetex dummy-gen +catalogue-version 0.141 + +name quran-ur +category Package +revision 51013 +shortdesc Urdu translations to the quran package +relocated 1 +longdesc The package is prepared for typesetting some Urdu translations +longdesc of the Holy Quran. It adds eight more Urdu translations to the +longdesc quran package. +containersize 516 +containerchecksum 0a6f214eac72a453050de2e2bac8574bbf746c3abeb528ed08c816633f2ea216a9e08f9be517c4bfa2a43924f5ac1921291c7f598297ac23848568f6ce85ad47 +doccontainersize 2052312 +doccontainerchecksum 9bfbc6ee1896e1586150fd67443626b6808e9d15efa5552e5ad238c3d704868121ab93355a0b170f7bd958992b42b1553006bc2e28ad01bb555735da70ed1fe9 +docfiles size=3599 + RELOC/doc/xelatex/quran-ur/README details="Readme" + RELOC/doc/xelatex/quran-ur/doc/quran-ur-doc.pdf details="Package documentation" + RELOC/doc/xelatex/quran-ur/doc/quran-ur-doc.tex + RELOC/doc/xelatex/quran-ur/doc/quran-ur-test.pdf details="Example of use" + RELOC/doc/xelatex/quran-ur/doc/quran-ur-test.tex + RELOC/doc/xelatex/quran-ur/doc/quran.png + RELOC/doc/xelatex/quran-ur/tex/quran-ur.sty + RELOC/doc/xelatex/quran-ur/tex/qurantext-uri.translation.def + RELOC/doc/xelatex/quran-ur/tex/qurantext-urii.translation.def + RELOC/doc/xelatex/quran-ur/tex/qurantext-uriii.translation.def + RELOC/doc/xelatex/quran-ur/tex/qurantext-uriv.translation.def + RELOC/doc/xelatex/quran-ur/tex/qurantext-urv.translation.def + RELOC/doc/xelatex/quran-ur/tex/qurantext-urvi.translation.def + RELOC/doc/xelatex/quran-ur/tex/qurantext-urvii.translation.def + RELOC/doc/xelatex/quran-ur/tex/qurantext-urviii.translation.def +catalogue-also lipsum ptext +catalogue-contact-bugs https://github.com/javadr/quran-ur/issues +catalogue-contact-repository https://github.com/javadr/quran-ur +catalogue-ctan /macros/xetex/latex/quran-ur +catalogue-date 2019-05-04 23:50:32 +0200 +catalogue-license lppl1.3c +catalogue-topics macro-supp xetex dummy-gen +catalogue-version 0.1 + +name r_und_s +category Package +revision 15878 +catalogue r-und-s +shortdesc Chemical hazard codes +relocated 1 +longdesc The r_und_s package decodes the german 'R- und S-Satze', which +longdesc are numerically coded security advice for chemical substances +longdesc into plain text. This is, e.g., used to compose security sheets +longdesc or lab protocols and especially useful for students of +longdesc chemistry. There are four packages, giving texts in German, +longdesc English, French and Dutch. +containersize 15440 +containerchecksum 86b219305e4e085af2a22d34bc586253b5674abb18e257fa96bab1d45695f841020c0004f1da51fcfca0fd0b325e4043f2e368740841a5a2e8db774711ac6348 +doccontainersize 3584 +doccontainerchecksum 26e227f106bb9303c4823f0230b689d6ed883580051e1bd5ec2e16ad796a3e33df2caa389c309b21b010bb43b07e5ec1027d6c046af55193deb0e4d975288846 +docfiles size=2 + RELOC/doc/latex/r_und_s/README details="Readme" +runfiles size=31 + RELOC/tex/latex/r_und_s/eng_rs.sty + RELOC/tex/latex/r_und_s/eng_rs.tex + RELOC/tex/latex/r_und_s/fr_rs.sty + RELOC/tex/latex/r_und_s/fr_rs.tex + RELOC/tex/latex/r_und_s/nl_rs.sty + RELOC/tex/latex/r_und_s/nl_rs.tex + RELOC/tex/latex/r_und_s/r_und_s.sty + RELOC/tex/latex/r_und_s/r_und_s.tex +catalogue-also mhchem +catalogue-ctan /macros/latex/contrib/r_und_s +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics safety-notice +catalogue-version 1.3i + +name raleway +category Package +revision 42629 +shortdesc Use Raleway with TeX(-alike) systems +relocated 1 +longdesc The package provides the Raleway family in an easy to use way. +longdesc For XeLaTeX and LuaLaTeX users the original OpenType fonts are +longdesc used. The entire font family is included. +execute addMap Raleway.map +containersize 2336284 +containerchecksum 8ce708ec993b1405dc04ddd96b6d39da324799f404e2798448c12cd03749f11685f840ba4f986b1b0f7696f9141923f3b91f5318de634979720af5af5b07781c +doccontainersize 185360 +doccontainerchecksum eae288de26c57ac27172e83bc6985b0edf80ac88538561468924c34656f31507e008097a1e8452ce47729ab501493733a1c022440c31c34cd99f8211383e889c +docfiles size=92 + RELOC/doc/latex/raleway/LPPL.txt + RELOC/doc/latex/raleway/OFL.txt + RELOC/doc/latex/raleway/raleway-otf-specimen.pdf + RELOC/doc/latex/raleway/raleway-otf-specimen.tex + RELOC/doc/latex/raleway/raleway-type1-specimen.pdf + RELOC/doc/latex/raleway/raleway-type1-specimen.tex + RELOC/doc/latex/raleway/raleway.pdf details="Package documentation" + RELOC/doc/latex/raleway/raleway.tex +runfiles size=3129 + RELOC/fonts/enc/dvips/raleway/a_2bcjq6.enc + RELOC/fonts/enc/dvips/raleway/a_biciir.enc + RELOC/fonts/enc/dvips/raleway/a_bzmckq.enc + RELOC/fonts/enc/dvips/raleway/a_f3uqdf.enc + RELOC/fonts/enc/dvips/raleway/a_gvxmk7.enc + RELOC/fonts/enc/dvips/raleway/a_ioname.enc + RELOC/fonts/enc/dvips/raleway/a_k2dfwc.enc + RELOC/fonts/enc/dvips/raleway/a_mgzrni.enc + RELOC/fonts/enc/dvips/raleway/a_mzuigi.enc + RELOC/fonts/enc/dvips/raleway/a_oaf34p.enc + RELOC/fonts/enc/dvips/raleway/a_pcwse4.enc + RELOC/fonts/enc/dvips/raleway/a_sor5xn.enc + RELOC/fonts/enc/dvips/raleway/a_u6n666.enc + RELOC/fonts/enc/dvips/raleway/a_yqxcf3.enc + RELOC/fonts/map/dvips/raleway/Raleway.map + RELOC/fonts/opentype/impallari/raleway/Raleway-Black-Italic.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-Black.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-Bold-Italic.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-Bold.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-ExtraBold-Italic.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-ExtraBold.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-ExtraLight-Italic.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-ExtraLight.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-Light-Italic.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-Light.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-Medium-Italic.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-Medium.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-Regular-Italic.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-Regular.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-SemiBold-Italic.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-SemiBold.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-Thin-Italic.otf + RELOC/fonts/opentype/impallari/raleway/Raleway-Thin.otf + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Black-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Light-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-Thin-tosf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-t1.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/impallari/raleway/Raleway-ThinItalic-tosf-ts1.tfm + RELOC/fonts/type1/impallari/raleway/Raleway-Black.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-BlackItalic.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-Bold.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-BoldItalic.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-ExtraBold.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-ExtraBoldItalic.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-ExtraLight.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-ExtraLightItalic.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-Italic.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-Light.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-LightItalic.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-Medium.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-MediumItalic.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-Regular.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-SemiBold.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-SemiBoldItalic.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-Thin.pfb + RELOC/fonts/type1/impallari/raleway/Raleway-ThinItalic.pfb + RELOC/fonts/vf/impallari/raleway/Raleway-Black-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Black-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Black-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Black-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Black-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Black-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Black-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Black-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Black-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Black-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BlackItalic-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Bold-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ExtraLightItalic-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Italic-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Light-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Light-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Light-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Light-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Light-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Light-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Light-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Light-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Medium-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Regular-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-SemiBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-Thin-tosf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tosf-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tosf-sc-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tosf-t1.vf + RELOC/fonts/vf/impallari/raleway/Raleway-ThinItalic-tosf-ts1.vf + RELOC/tex/latex/raleway/LY1Raleway-TLF.fd + RELOC/tex/latex/raleway/LY1Raleway-TOsF.fd + RELOC/tex/latex/raleway/OT1Raleway-TLF.fd + RELOC/tex/latex/raleway/OT1Raleway-TOsF.fd + RELOC/tex/latex/raleway/T1Raleway-TLF.fd + RELOC/tex/latex/raleway/T1Raleway-TOsF.fd + RELOC/tex/latex/raleway/TS1Raleway-TLF.fd + RELOC/tex/latex/raleway/TS1Raleway-TOsF.fd + RELOC/tex/latex/raleway/raleway-type1-autoinst.sty + RELOC/tex/latex/raleway/raleway.sty +catalogue-ctan /fonts/raleway +catalogue-date 2016-12-03 18:07:41 +0100 +catalogue-license ofl +catalogue-topics font font-sans font-type1 font-otf font-supp +catalogue-version 1.4 + +name ran_toks +category Package +revision 44429 +shortdesc Randomise token strings +relocated 1 +longdesc The package provides means of randomising lists of tokens, or +longdesc lists of chunks of tokens. Two mechanisms for defining chunks +longdesc are provided: the macro \ranToks command accepts an argument +longdesc containing tokens to be randomised; and the \bRTVToks/\eRTVToks +longdesc commands delimit a collection of tokens for randomising; each +longdesc group inside a rtVw constitutes one of these (typically larger) +longdesc token sets. +containersize 3896 +containerchecksum 145ef7d6307f0b949fa488d2510223bd055419b5677745aaf04f322a817562320829f931136b9f651e501726202a00da68d9b5bc13f4346c9de9361611d427e1 +doccontainersize 211164 +doccontainerchecksum a8e8b19485b3609cc8df896cc8eed9af31177866648d94f10c20b2be1c8ad23c48ba2d8e9004168cd6a67646b68aca48abe78dfdc668216904bd0f4f982b27f9 +docfiles size=72 + RELOC/doc/latex/ran_toks/README.md details="Readme" + RELOC/doc/latex/ran_toks/doc/rantoks_man.pdf details="Package documentation" + RELOC/doc/latex/ran_toks/doc/rantoks_man.tex + RELOC/doc/latex/ran_toks/examples/db1.tex + RELOC/doc/latex/ran_toks/examples/db2.tex + RELOC/doc/latex/ran_toks/examples/db3.tex + RELOC/doc/latex/ran_toks/examples/db4.tex + RELOC/doc/latex/ran_toks/examples/mc-db.tex + RELOC/doc/latex/ran_toks/examples/mytext.verb + RELOC/doc/latex/ran_toks/examples/ran_toks.tex + RELOC/doc/latex/ran_toks/examples/random_tst.tex + RELOC/doc/latex/ran_toks/examples/random_tst_qz.tex +srccontainersize 7648 +srccontainerchecksum 83a0c7f284b019b2c4ae6469f48b275c35e31d4f4cd2c61eef5d906f5bb41c46ba73fec3c4c34fe3ae745f5bf1156ed77021556c2e9ff4cf03dab3752bfe3c34 +srcfiles size=7 + RELOC/source/latex/ran_toks/ran_toks.dtx +runfiles size=3 + RELOC/tex/latex/ran_toks/ran_toks.sty +catalogue-ctan /macros/latex/contrib/ran_toks +catalogue-date 2017-05-18 22:38:32 +0200 +catalogue-license lppl1 +catalogue-topics macro-supp +catalogue-version 1.1 + +name randbild +category Package +revision 15878 +shortdesc Marginal pictures +relocated 1 +longdesc Provides environments randbild to draw small marginal plots +longdesc (using the packages pstricks and pst-plot), and randbildbasis +longdesc (the same, only without the automatically drawn coordinate +longdesc system). +containersize 1552 +containerchecksum b4fac4fe105366ae1047a1d4225bfbe8ecfe6e05c29e955bc91d591f25ad6a8ba0e2b81848f27af96a1509a278864393c8874b14f30e64c8d5b69b9db811ec41 +doccontainersize 67312 +doccontainerchecksum fd8f83db389fa62ae8dd63a2c3bc8e4feb9beb6c56d7579fbd9e9065c399a73ad19563f22cdbe1dec78bd1c33056ed1cd4d9a534105b34a2ceae0cd8592326df +docfiles size=45 + RELOC/doc/latex/randbild/README details="Readme (bilingual)" + RELOC/doc/latex/randbild/randbild.pdf details="Benutzerdoku" language="de" +srccontainersize 5340 +srccontainerchecksum 6180472c45b6eb362076c50a6a813d5521fac11d92881639cfa3c7444fa456dbc7b453e4f94de147a635ce017bb21e30087ec7e6c39ead8778bbe9debb68a68b +srcfiles size=4 + RELOC/source/latex/randbild/randbild.dtx + RELOC/source/latex/randbild/randbild.ins +runfiles size=1 + RELOC/tex/latex/randbild/randbild.sty +catalogue-ctan /macros/latex/contrib/randbild +catalogue-date 2018-09-15 13:56:20 +0200 +catalogue-license lppl +catalogue-topics graphics-use +catalogue-version 0.2 + +name randomlist +category Package +revision 45281 +shortdesc Deal with database, loop, and random in order to build personalized exercises +relocated 1 +longdesc The main aim of this package is to work on lists, especially +longdesc with random operations. The hidden aim is to build a personnal +longdesc collection of exercises with different data for each pupil. +containersize 4996 +containerchecksum 895eb116868ced533e23d398d0f17bda2f55a2cea52ec46bcfca4004b9411fade8817af4fc9d3d91b2ab2959ea24027266d8fcac0c77a64d2a4b88fbed5d56a4 +doccontainersize 391560 +doccontainerchecksum 4c0ebff9275bbd1c8550902735b4ef0d04dbd688bb1abdf124560defd2e5d0cc23171e8034fc67b5379d0ec30395b4433ababf3c3a244cbb5ca5f15005057f58 +docfiles size=128 + RELOC/doc/generic/randomlist/Makefile + RELOC/doc/generic/randomlist/README.txt details="Readme" + RELOC/doc/generic/randomlist/comets.dat + RELOC/doc/generic/randomlist/pupils.dat + RELOC/doc/generic/randomlist/pythagoras.dat + RELOC/doc/generic/randomlist/randomlist.pdf details="Package documentation" + RELOC/doc/generic/randomlist/test-fr.pdf + RELOC/doc/generic/randomlist/test-fr.tex + RELOC/doc/generic/randomlist/test.pdf + RELOC/doc/generic/randomlist/test.tex + RELOC/doc/generic/randomlist/testtex.pdf + RELOC/doc/generic/randomlist/testtex.tex +srccontainersize 18212 +srccontainerchecksum 3ccb29c8a6b815484929b7bf0e142090bca848d3f5562533380b71e1be3c9fff2d7ed00f39fa68a745442ad45e1b07e4ed38ef2db55a2bf341e6adb0ce51c373 +srcfiles size=20 + RELOC/source/generic/randomlist/randomlist.dtx + RELOC/source/generic/randomlist/randomlist.ins +runfiles size=6 + RELOC/tex/generic/randomlist/randomlist.sty + RELOC/tex/generic/randomlist/randomlist.tex +catalogue-ctan /macros/generic/randomlist +catalogue-date 2018-01-07 14:49:11 +0100 +catalogue-license lppl1.3 +catalogue-topics list list-supp +catalogue-version 1.3 + +name randomwalk +category Package +revision 49513 +shortdesc Random walks using TikZ +relocated 1 +longdesc The randomwalk package provides a user command, \RandomWalk, to +longdesc draw random walks with a given number of steps. Lengths and +longdesc angles of the steps can be customized in various ways. The +longdesc package uses lcg for its 'random' numbers and PGF/TikZ for its +longdesc graphical output. +containersize 2196 +containerchecksum 3a1f08f41864cc3b855fc4a9f8aba298d92505231c728381f5c5aa29f21c73d6e10834ad589c114ae26ba97d092b33e9c83a30518a7f289aa0ec96c933471afd +doccontainersize 479868 +doccontainerchecksum 00c23d42132d4a47973871bb9a2054385681898d6cd7e0a7a47337808187855812d98535428f6e37a3eb2da13680ac4128fce38db670a87a66483f6ece044c8a +docfiles size=118 + RELOC/doc/latex/randomwalk/README.md details="Readme" + RELOC/doc/latex/randomwalk/randomwalk.pdf details="Package documentation" +srccontainersize 5092 +srccontainerchecksum 55bcb9c1acabef60ee605d9dbc0cf9d601a31528dcf444f2caf2f8b91867538549bd304b3a73b3bbefdc9e7ec82791264f054386c46b4fe67d20e8ff6a44ca8d +srcfiles size=5 + RELOC/source/latex/randomwalk/randomwalk.dtx + RELOC/source/latex/randomwalk/randomwalk.ins +runfiles size=2 + RELOC/tex/latex/randomwalk/randomwalk.sty +catalogue-contact-repository https://github.com/blefloch/latex-randomwalk +catalogue-ctan /macros/latex/contrib/randomwalk +catalogue-date 2018-12-28 15:55:21 +0100 +catalogue-license lppl1.3c +catalogue-topics graphics-in-tex calculation random expl3 +catalogue-version 0.6 + +name randtext +category Package +revision 15878 +shortdesc Randomise the order of characters in strings +relocated 1 +longdesc The package provides a single macro \randomize{TEXT} that +longdesc typesets the characters of TEXT in random order, such that the +longdesc resulting output appears correct, but most automated attempts +longdesc to read the file will misunderstand it. This function allows +longdesc one to include an email address in a TeX document and publish +longdesc it online without fear of email address harvesters or spammers +longdesc easily picking up the address. +containersize 2804 +containerchecksum 6cd20551f4b48d30d4c830da395873bd20e11b930336f4fac0f0ccf09c9a956d18107c45aa2b1ecea51d1fc4b0c0fabf06d436e247aac6ff58548cbfd31d35b2 +doccontainersize 672 +doccontainerchecksum 3bec31ca40816e7e86642e080021ab5faabb19656a15463f712e111485f1de00d698816e84b1ed7b63ea9380970d4e80b04aa0cf79442c7d1d77d5fa3f4d072a +docfiles size=1 + RELOC/doc/latex/randtext/README details="Readme" +runfiles size=2 + RELOC/tex/latex/randtext/randtext.sty +catalogue-ctan /macros/latex/contrib/randtext +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics security + +name rank-2-roots +category Package +revision 48515 +shortdesc Draw (mathematical) rank 2 root systems +relocated 1 +longdesc This package concerns mathematical drawings arising in +longdesc representation theory. The purpose of this package is to ease +longdesc drawing of rank 2 root systems, with Weyl chambers, weight +longdesc lattices, and parabolic subgroups. Required packages are tikz, +longdesc etoolbox, expl3, pgfkeys, pgfopts, xparse, and xstring. +containersize 4028 +containerchecksum 43d76c8461a724c48e5e510701032c01a5bfa645734402b0fa0d0766f2d0cb7520f2e3d29d6c3abfe44ec369988445aab9216135f70c43a18fdec152cb4ae92b +doccontainersize 400892 +doccontainerchecksum f9e58f16b30b075b19929a9ad1ac0c47e53b2aea038e34db69dde6d64e1cf3281fda597499dd07aea03b3bb325c06a1c7abbfdca42a80f03fa2a3d272bf52e5b +docfiles size=110 + RELOC/doc/latex/rank-2-roots/README details="Readme" + RELOC/doc/latex/rank-2-roots/rank-2-roots.bib + RELOC/doc/latex/rank-2-roots/rank-2-roots.pdf details="Package documentation" + RELOC/doc/latex/rank-2-roots/rank-2-roots.tex +runfiles size=5 + RELOC/tex/latex/rank-2-roots/rank-2-roots.sty +catalogue-contact-home http://euclid.ucc.ie/mckay/ +catalogue-ctan /graphics/pgf/contrib/rank-2-roots +catalogue-date 2018-09-01 06:52:31 +0200 +catalogue-license lppl1.3c +catalogue-topics maths pgf-tikz +catalogue-version 1.0 + +name rccol +category Package +revision 15878 +shortdesc Decimal-centered optionally rounded numbers in tabular +relocated 1 +longdesc The rccol package provides decimal-centered numbers: +longdesc corresponding digits and decimal separators aligned. +longdesc Furthermore, rounding to the desired precision is possible. The +longdesc package makes use of the fltpoint package (as well as the LaTeX +longdesc required array package). +containersize 2160 +containerchecksum 0a712f0918b4c0e4cf8cc2a0d442a681c6cd4d00b50478751512ed4588f070566f005717196f694c8d07e79f8ab6a49be6ddbda8db71af65e30cfbbceeab6d2e +doccontainersize 143228 +doccontainerchecksum 56c43ee9f49764ce50da6b1b4fd736cfff16a1cf3907fc7189807e5c946f1c25c593ddc1aa22c2ce2e0799f7057efe2df35bfb9aef0fa1c31724110a352fe4cd +docfiles size=42 + RELOC/doc/latex/rccol/README details="Readme" + RELOC/doc/latex/rccol/rccol.pdf details="Package documentation" +srccontainersize 9172 +srccontainerchecksum bc0f7ee1a6fec9adf6d8ae77fb174fb0334030fcc504af46bb2cb88516c05b4b9539748b381a029b657f22d7ce6313b0f19471ef85b1064139e6cb7862c726e9 +srcfiles size=9 + RELOC/source/latex/rccol/rccol.dtx + RELOC/source/latex/rccol/rccol.ins +runfiles size=2 + RELOC/tex/latex/rccol/rccol.sty +catalogue-ctan /macros/latex/contrib/rccol +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.2 +catalogue-topics table maths +catalogue-version 1.2c + +name rcs +category Package +revision 15878 +shortdesc Use RCS (revision control system) tags in LaTeX documents +relocated 1 +longdesc The rcs package utilizes the inclusion of RCS supplied data in +longdesc LaTeX documents. It's upward compatible to *all* rcs styles I +longdesc know of. In particular, you can easily access values of every +longdesc RCS field in your document put the checkin date on the +longdesc titlepage put RCS fields in a footline You can typeset revision +longdesc logs. Not in verbatim -- real LaTeX text! But you need a +longdesc configurable RCS for that. Refer to the user manual for more +longdesc detailed information. You can also configure the rcs package +longdesc easily to do special things for any keyword. This bundle comes +longdesc with a user manual, an internal interface description, full +longdesc documentation of the implementation, style information for +longdesc AUC-TeX, and test cases. +containersize 12512 +containerchecksum 4a9d7cbc5c16163a5866bcc3c9fae95d8fc42b27d0d8dd8ceaf32e2b568bf9ac6b710a4124cbd255f1f2d18fbcf66ae020cca58ce6d16c6c5eb6e0a85e288419 +doccontainersize 121328 +doccontainerchecksum 71430d5e481dac53c3b1d5f86ec589fd855c244c6717f31c16e2fe00507850779fed3ef43db2deb546ec5b99ffe775a10711f1fd59c022f4223a8d3327424cdf +docfiles size=52 + RELOC/doc/latex/rcs/CATALOG + RELOC/doc/latex/rcs/History + RELOC/doc/latex/rcs/INSTALL + RELOC/doc/latex/rcs/License + RELOC/doc/latex/rcs/MANIFEST + RELOC/doc/latex/rcs/README details="Readme" + RELOC/doc/latex/rcs/rcs-conf.pdf details="Package internal interfaces" + RELOC/doc/latex/rcs/rcs-user.pdf details="User documentation" +srccontainersize 23544 +srccontainerchecksum 3c2db69ab4106eac241e9126407e90d8b20cf3e186d50cabcb35041a68c1b670eb3bf9b571d00a52c8e4cd410cdd7cfb38e6bb4558560d46420d1074312910fa +srcfiles size=33 + RELOC/source/latex/rcs/Makefile + RELOC/source/latex/rcs/rcs.el + RELOC/source/latex/rcs/src/Diff + RELOC/source/latex/rcs/src/Imakefile + RELOC/source/latex/rcs/src/README + RELOC/source/latex/rcs/src/TODO + RELOC/source/latex/rcs/src/rcs-conf.tex + RELOC/source/latex/rcs/src/rcs-doc.sty + RELOC/source/latex/rcs/src/rcs-user.tex + RELOC/source/latex/rcs/src/rcs.doc + RELOC/source/latex/rcs/src/style/rcs.el + RELOC/source/latex/rcs/src/style/rcs.elc + RELOC/source/latex/rcs/src/test/Imakefile + RELOC/source/latex/rcs/src/test/Makefile + RELOC/source/latex/rcs/src/test/empty-log.tex + RELOC/source/latex/rcs/src/test/german.tex + RELOC/source/latex/rcs/src/test/log-error.tex + RELOC/source/latex/rcs/src/test/log.tex + RELOC/source/latex/rcs/src/test/rcsdef.tex + RELOC/source/latex/rcs/src/test/rcsid-param.tex + RELOC/source/latex/rcs/src/test/rcsid.tex + RELOC/source/latex/rcs/src/test/under_score.tex +runfiles size=9 + RELOC/tex/latex/rcs/rcs.sty +catalogue-also rcsinfo +catalogue-ctan /macros/latex/contrib/rcs +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics version-control doc-mgmt + +name rcs-multi +category Package +revision 21939 +shortdesc Typeset RCS version control in multiple-file documents +relocated 1 +longdesc The package enables the user to typeset version control +longdesc information provided by RCS keywords (e.g., $ID: ... $) in +longdesc LaTeX documents that contain multiple TeX files. The package is +longdesc based on the author's svn-multi package. +containersize 2996 +containerchecksum 156e3f47b8f4eae8cb959bd561cca2c592a43483cdb99fd04a88593ab5fd585a814b0e3416a835ce8d249969eafe119cd80c9c5364f40a9e595aff2c5f2e6f65 +doccontainersize 651132 +doccontainerchecksum 2eafcfc5c0297c021ea7f35abfac9526c4a40cd46efb88ee6f41a5c0f5d68586263d3140db73c1f9026cc0fc856a888369b21f5d85679f5eb60dccbe111938d3 +docfiles size=180 + RELOC/doc/latex/rcs-multi/example.pdf + RELOC/doc/latex/rcs-multi/rcs-multi.pdf details="Package documentation" +srccontainersize 13584 +srccontainerchecksum 6fda675809ee257aa7f96a3ddcca5e3ec8577bc337c3f303ee6658bebace26ba271a367b116abc32fcb2633bb5c57a442b2e12fc2bf67b8326ffaa46f08f6ed4 +srcfiles size=14 + RELOC/source/latex/rcs-multi/Makefile + RELOC/source/latex/rcs-multi/example.tex + RELOC/source/latex/rcs-multi/rcs-multi.dtx + RELOC/source/latex/rcs-multi/rcs-multi.ins +runfiles size=3 + RELOC/tex/latex/rcs-multi/rcs-multi.sty +catalogue-also rcs rcsinfo +catalogue-ctan /macros/latex/contrib/rcs-multi +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics version-control doc-mgmt +catalogue-version 0.1a + +name rcsinfo +category Package +revision 15878 +shortdesc Support for the revision control system +relocated 1 +longdesc A package to extract RCS (Revision Control System) information +longdesc and use it in a LaTeX document. For users of LaTeX2HTML +longdesc rcsinfo.perl is included. +containersize 3120 +containerchecksum 6070a3f0b434b5339e527161b7c1e18dd21b23a9b57817a2699bc13369bf35110868e38d3e487b7b0b58ddb12699599a6e8ac4314b150ff2c8049ade5124f786 +doccontainersize 148308 +doccontainerchecksum c7d149405b9824f7fb9a453386477ee3ebb7e265b29a004eeab687695667a9e8ddd7ca91ffdb4fe7f60716e6c1f2b39004aae82777c58cb60532bb2ace2bc846 +docfiles size=48 + RELOC/doc/latex/rcsinfo/README details="Readme" + RELOC/doc/latex/rcsinfo/README-1.9 + RELOC/doc/latex/rcsinfo/rcsinfo.init + RELOC/doc/latex/rcsinfo/rcsinfo.pdf details="Package documentation" + RELOC/doc/latex/rcsinfo/rcsinfo.perl + RELOC/doc/latex/rcsinfo/rcsinfo2html.tex +srccontainersize 13612 +srccontainerchecksum bb38328d3124adb4ca1734912bd0fb15040e7d390d886d3817ed547d08e4f6e5a134db6e4279ab2cf0a5b8d0216afaea475c3dceed7381bbc84adbd63bbf3b82 +srcfiles size=16 + RELOC/source/latex/rcsinfo/Makefile + RELOC/source/latex/rcsinfo/rcsinfo.dtx + RELOC/source/latex/rcsinfo/rcsinfo.ins +runfiles size=4 + RELOC/tex/latex/rcsinfo/rcsinfo.cfg + RELOC/tex/latex/rcsinfo/rcsinfo.sty +catalogue-also rcs +catalogue-ctan /macros/latex/contrib/rcsinfo +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics version-control doc-mgmt +catalogue-version 1.11 + +name readarray +category Package +revision 42467 +shortdesc Read, store and recall array-formatted data +relocated 1 +longdesc The package allows the user to input formatted data into +longdesc elements of a 2-D or 3-D array and to recall that data at will +longdesc by individual cell number. The data can be but need not be +longdesc numerical in nature. It can be, for example, formatted text. +longdesc While the package can be used for any application where indexed +longdesc data is called for, the package proves particularly useful when +longdesc elements of multiple arrays must be recallable and dynamically +longdesc combined at time of compilation, rather than in advance. +containersize 4252 +containerchecksum 34a1a576a560ec5a66fd8b358e9f594e1971124023e9f88e67e5dbf7ff775e3950071c5f4daa004f8e59549f245934e4dd8a82e4a2928bcb1e9fff99f2b3bdd9 +doccontainersize 487380 +doccontainerchecksum 61bf2960c1a0058a5a64a679b4c17ac0e754f09f2ca1847fcee4cb0b0b9a0dd07e252a534768fcf3b098217afc4c52a8f65120dcf43e69f0907fff9b8638af99 +docfiles size=132 + RELOC/doc/latex/readarray/README + RELOC/doc/latex/readarray/readarray.pdf details="Package documentation" + RELOC/doc/latex/readarray/readarray.tex +runfiles size=4 + RELOC/tex/latex/readarray/readarray.sty +catalogue-also getargs +catalogue-ctan /macros/latex/contrib/readarray +catalogue-date 2016-11-15 23:30:18 +0100 +catalogue-license lppl1.3 +catalogue-topics data-manip +catalogue-version 2.0 + +name realboxes +category Package +revision 23581 +shortdesc Variants of common box-commands that read their content as real box and not as macro argument +relocated 1 +longdesc The package uses the author's package collectbox to define +longdesc variants of common box related macros which read the content as +longdesc real box and not as macro argument. This enables the use of +longdesc verbatim or other special material as part of this content. The +longdesc provided macros have the same names as the original versions +longdesc but start with an upper-case letter instead. The "long-form" +longdesc macros, like \Makebox, can also be used as environments, but +longdesc not the "short-form" macros, like \Mbox. However, normally the +longdesc long form uses the short form anyway when no optional arguments +longdesc are used. +containersize 2984 +containerchecksum 944de8b761acc0949ba14c0d506287b64a1cf8efe20fd26dc74930e589f4d0651ffc3f1c4959111091f90d0f869ba18cc9456a5c58dee0a1b4b8ae7c1c6c02a9 +doccontainersize 175816 +doccontainerchecksum cd194a9fd0836c8cefc57c26394f7e7f684974c374f787f3ac6d82daba3ac1e9f17aaeae06f26fb9851255bf53bab6290124a1878289651dedec824238e8193e +docfiles size=48 + RELOC/doc/latex/realboxes/README details="Readme" + RELOC/doc/latex/realboxes/realboxes.pdf details="Package documentation" +srccontainersize 7416 +srccontainerchecksum 4ea18fd3ad7988447d1c2ad993d76dd1f2c4802356885636e80e5157a3892ecc235d9fce90093044dc9415056a986ccd5fe2f8eabdb86bee3eeb27eae5509be8 +srcfiles size=8 + RELOC/source/latex/realboxes/realboxes.dtx + RELOC/source/latex/realboxes/realboxes.ins +runfiles size=3 + RELOC/tex/latex/realboxes/realboxes.sty +catalogue-ctan /macros/latex/contrib/realboxes +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics boxing +catalogue-version 0.2 + +name realhats +category Package +revision 51004 +shortdesc Put real hats on symbols instead of ^ +relocated 1 +longdesc This LaTeX package makes \hat put real hats on symbols. The +longdesc package depends on amsmath, calc, graphicx, ifthen, lcg, and +longdesc stackengine. +containersize 6555168 +containerchecksum 1340264b7e44e98c356c2c4b71c5b8ddf6488b221858c1a5668bc55fdef5f976eca954cd62d51bcb097f2a58f719c6f96f6a9cc4791283328ab969813186afa8 +doccontainersize 8256412 +doccontainerchecksum faf01cf9153647bed3ccd282aa4f8370e763bceb2bd43c547d3ed2b1de77fe2e64c4d720cefbb9bee78416521661eb17eeb496b4548bb7b88c5a45d084765e30 +docfiles size=2021 + RELOC/doc/latex/realhats/README.md details="Readme" + RELOC/doc/latex/realhats/readme_images/hats.png + RELOC/doc/latex/realhats/realhats.pdf details="Package documentation" +srccontainersize 2564 +srccontainerchecksum 354c3d88971a7d516ef9d0cbf37c40a28e02fb97e99c59590ab7ce12cf8b70a930ee486fc9fa9c94ce9cc52d2ace8a7a183d22b5ba15bb91dae042253462f86a +srcfiles size=3 + RELOC/source/latex/realhats/realhats.dtx + RELOC/source/latex/realhats/realhats.ins +runfiles size=1617 + RELOC/tex/latex/realhats/hats/realhats-beret.png + RELOC/tex/latex/realhats/hats/realhats-cowboy.png + RELOC/tex/latex/realhats/hats/realhats-crown.png + RELOC/tex/latex/realhats/hats/realhats-fez.png + RELOC/tex/latex/realhats/hats/realhats-makelatexgreatagain.png + RELOC/tex/latex/realhats/hats/realhats-santa.png + RELOC/tex/latex/realhats/hats/realhats-scottish.png + RELOC/tex/latex/realhats/hats/realhats-sombrero.png + RELOC/tex/latex/realhats/hats/realhats-tophat.png + RELOC/tex/latex/realhats/hats/realhats-witch.png + RELOC/tex/latex/realhats/realhats.sty +catalogue-contact-bugs https://github.com/mscroggs/realhats/issues +catalogue-contact-home http://www.realhats.xyz +catalogue-contact-repository https://github.com/mscroggs/realhats +catalogue-ctan /macros/latex/contrib/realhats +catalogue-date 2019-04-14 15:13:40 +0200 +catalogue-license mit +catalogue-topics graphics graphics-incl +catalogue-version 3.0 + +name realscripts +category Package +revision 39706 +shortdesc Access OpenType subscript and superscript glyphs +relocated 1 +longdesc This small package replaces \textsuperscript and \textsubscript +longdesc commands by equivalent commands that use OpenType font features +longdesc to access appropriate glyphs if possible. The package also +longdesc patches LaTeX's default footnote command to use this new +longdesc \textsuperscript for footnote symbols. The package requires +longdesc fontspec running on either XeLaTeX or LuaLaTeX. The package +longdesc holds functions that were once parts of the xltxtra package, +longdesc which now loads realscripts by default. +containersize 1896 +containerchecksum 20301b045034aee5650a976de1341cb0d1629d6d622e75fd3c52aad8f1cd6377d3e1095e75ff0552b9cba887f332205f861c24c4fa453bb9f957f1dfb2aa2968 +doccontainersize 104540 +doccontainerchecksum 5bfa7a13e824a6d7ade0f81fec6f0c9164035c8a5b512d5a49eb4b47b0b47ec514aa430a34e6cbad463674a180a3119305b5a6525cad824b8f21d4b15b03350d +docfiles size=28 + RELOC/doc/latex/realscripts/README.md details="Readme" + RELOC/doc/latex/realscripts/realscripts.pdf details="Package documentation" +srccontainersize 4472 +srccontainerchecksum 71a4e590c2e3b7d6755bb2a65890e75ad2d380f26649600dd4e222ce9045d4a7bac371d37fcde0afd51a09c213f5234ab2e268c45438b49d846f1de12fe21293 +srcfiles size=5 + RELOC/source/latex/realscripts/realscripts.dtx + RELOC/source/latex/realscripts/realscripts.ins +runfiles size=2 + RELOC/tex/latex/realscripts/realscripts.sty +catalogue-ctan /macros/latex/contrib/realscripts +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics off +catalogue-version 0.3d + +name rec-thy +category Package +revision 50047 +shortdesc Commands to typeset recursion theory papers +relocated 1 +longdesc The package provides many macros to express standard notation +longdesc in recursion theory (otherwise known as computability theory). +containersize 11108 +containerchecksum cd3d8c9f6b08e4471fb377586ab928c7173e72162269eeb9856d4fd50a2c89a1e1509bd36356ed0d37d89eeecb22391ca17bc5a214813acd3496d4c669f261cc +doccontainersize 162864 +doccontainerchecksum 257746313876d190f62d50dfea03a614c5b6732d79b7f43b7d6c41be54c8827f82c996570c50907641536e1e5ffe172d495e1f3db94d8d1e13fa5f630225337d +docfiles size=58 + RELOC/doc/latex/rec-thy/README details="Readme" + RELOC/doc/latex/rec-thy/rec-thy.pdf details="Package documentation" + RELOC/doc/latex/rec-thy/rec-thy.tex +runfiles size=16 + RELOC/tex/latex/rec-thy/rec-thy.sty +catalogue-contact-development https://github.com/TruePath/Recursion-Theory-Latex-Package +catalogue-contact-home https://github.com/TruePath/Recursion-Theory-Latex-Package +catalogue-contact-repository https://github.com/TruePath/Recursion-Theory-Latex-Package +catalogue-contact-support https://github.com/TruePath/Recursion-Theory-Latex-Package +catalogue-ctan /macros/latex/contrib/rec-thy +catalogue-date 2019-02-17 09:19:28 +0100 +catalogue-license pd +catalogue-topics maths +catalogue-version 3.01 + +name recipe +category Package +revision 15878 +shortdesc A LaTeX class to typeset recipes +relocated 1 +longdesc The layout design is relative straightforward (and traditional: +longdesc see 'sample output' under 'documentation'); the class needs +longdesc uses the Bookman and BrushScript-Italic fonts. +containersize 1980 +containerchecksum bd6046896b15d362fbe91e92485cabb1100485b5c91d4ac0214aab12e0debdc900d8693e1ca345da0152cfcd400a2f4e7603fc3e8476681127e64313e2f9b954 +doccontainersize 23604 +doccontainerchecksum b21b70e757a0d842adfd70f0bad21f46fe9b3242bacf4861de183b833edc950eb2cc06f0d3569a48c8e028283b1526741a309abd8fa9501f9541256bbb357ddb +docfiles size=11 + RELOC/doc/latex/recipe/README details="Readme" + RELOC/doc/latex/recipe/sample.pdf details="Sample of output (Italian)" language="it" + RELOC/doc/latex/recipe/sample.tex +runfiles size=1 + RELOC/tex/latex/recipe/recipe.cls +catalogue-also recipecard recipebook +catalogue-ctan /macros/latex/contrib/recipe +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics cooking +catalogue-version 0.9 + +name recipebook +category Package +revision 37026 +shortdesc Typeset 5.5" x 8" recipes for browsing or printing +relocated 1 +longdesc This is a LaTeX2e class for typesetting recipes. It is designed +longdesc for typesetting one or two recipes per page, with dimensions of +longdesc 5.5" x 8.5". The hyperlinked table of contents (ToC) and page +longdesc numbers make browsing recipes convenient, and the pages can be +longdesc joined together or printed two per sheet to normal letterpaper +longdesc easily. The size was chosen to work in half-page 3-ring binder +longdesc cover sheets. +containersize 4080 +containerchecksum c030f81bac27221f24b275d689fc7cf80bd6d97ccfecb0c5d51876ae825871854d7729e123caef3735a7b2a5608f070ce170709c8a1723b5c740f05371c82154 +doccontainersize 927924 +doccontainerchecksum 0c9d803360e1ef65b38f5b66c6d3eba6e9c38c371a430e2cca371594935fda16a051d6d1ee33e787114747b9efc36475c6c92b2c8b199aa1a5b48e214f7a4643 +docfiles size=409 + RELOC/doc/latex/recipebook/LongSample.pdf details="Example (1)" + RELOC/doc/latex/recipebook/LongSample.tex + RELOC/doc/latex/recipebook/README details="Readme" + RELOC/doc/latex/recipebook/ShortSample.pdf details="Example (2)" + RELOC/doc/latex/recipebook/ShortSample.tex + RELOC/doc/latex/recipebook/images/Curried_butternut_squash_soup.jpg + RELOC/doc/latex/recipebook/images/Curried_chicken_and_rice.jpg + RELOC/doc/latex/recipebook/images/French_dip.jpg + RELOC/doc/latex/recipebook/images/Grilled_chicken_with_capers.jpg + RELOC/doc/latex/recipebook/images/Hawaiian_burgers.jpg + RELOC/doc/latex/recipebook/images/Italian_calzones.jpg + RELOC/doc/latex/recipebook/images/Pumpkin_pie_soup.jpg +runfiles size=4 + RELOC/tex/latex/recipebook/RecipeBook.cls +catalogue-also recipe recipecard +catalogue-ctan /macros/latex/contrib/recipebook +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics cooking class + +name recipecard +category Package +revision 15878 +shortdesc Typeset recipes in note-card-sized boxes +relocated 1 +longdesc The recipecard class typesets recipes into note card sized +longdesc boxes that can then be cut out and pasted on to note cards. The +longdesc recipe then looks elegant and fits in the box of recipes. +containersize 2644 +containerchecksum 62778e7429aaa8e4bed6546c748a7e135c9edc4909508723e7931284c619d502e9efb0e6fa54c8c1d242858355c6d95bdc87959400c18a5648ef105035ace26f +doccontainersize 186552 +doccontainerchecksum 0e62ac28631ee072c9b0b5dfe9995744c381f17b14da5e9c8f4159fb274cf2a7662f0eed8f728ec5990a6a957de051304601acde2d171e696e79284ab2faeff3 +docfiles size=57 + RELOC/doc/latex/recipecard/README details="Package README" + RELOC/doc/latex/recipecard/recipecard.pdf details="Package documentation" + RELOC/doc/latex/recipecard/test2.pdf + RELOC/doc/latex/recipecard/test2.tex +srccontainersize 9372 +srccontainerchecksum d08838184d5d21107ee796835c95dd446242ea3433819229ab918a30e73a3e042e6f4cc8f75c144ced7a16391841177409567bdf3116632b0915ebe47378943d +srcfiles size=8 + RELOC/source/latex/recipecard/recipecard.dtx +runfiles size=2 + RELOC/tex/latex/recipecard/recipecard.cls +catalogue-also recipe recipebook +catalogue-ctan /macros/latex/contrib/recipecard +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics cooking +catalogue-version 2.0 + +name rectopma +category Package +revision 19980 +shortdesc Recycle top matter +relocated 1 +longdesc Saves the arguments of \author and \title for reference (after +longdesc \maketitle) in a document. (\maketitle simply disposes of the +longdesc information, in the standard classes and some others.) +containersize 1628 +containerchecksum 17a297d7862eeb8c48788e40fd761fd42b37fa7b49b7447e00e828f1a7e0f2e411eee357507d79bfe0441c7feada9e06fb18ee5ce0af87e7aeec7ae618e22d83 +doccontainersize 115552 +doccontainerchecksum 27ae9a381a685373a980e13b9b5c3f6057f98224a7c9659edc0c056a6292e7289ed9772f3a503e8de3ea93b796f271dafeba57f6e240caaf738003e1ab848e46 +docfiles size=29 + RELOC/doc/latex/rectopma/TestTitle.pdf details="Package documentation (and usage example)" + RELOC/doc/latex/rectopma/TestTitle.tex +runfiles size=1 + RELOC/tex/latex/rectopma/rectopma.sty +catalogue-ctan /macros/latex/contrib/rectopma +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics macro-supp + +name recycle +category Package +revision 15878 +shortdesc A font providing the "recyclable" logo +relocated 1 +longdesc This single-character font is provided as Metafont source, and +longdesc in Adobe Type 1 format. It is accompanied by a trivial LaTeX +longdesc package to use the logo at various sizes. +execute addMap recycle.map +containersize 9820 +containerchecksum 3bc28ed41a8205534d34593429429768bdfa64e61cc212017ba4be32f7a985e8d65ab296137cffbb7ad5be4dec90bbfd30d675ab314bb79ec0ea10b277c33d66 +doccontainersize 768 +doccontainerchecksum 3bbe68b48915c6fa662fb72072eb9e130613587e86d3d4172766c8fe690a995d23d252cbda9a226a7716c9da8741b3ed0e18eae1cab2f547d08265ee493a64dc +docfiles size=1 + RELOC/doc/fonts/recycle/README details="Readme" +runfiles size=8 + RELOC/fonts/map/dvips/recycle/recycle.map + RELOC/fonts/source/public/recycle/recycle.mf + RELOC/fonts/tfm/public/recycle/recycle.tfm + RELOC/fonts/type1/public/recycle/recycle.pfb + RELOC/tex/latex/recycle/recycle.sty +catalogue-ctan /fonts/recycle +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics font font-mf font-type1 font-specialist + +name refcheck +category Package +revision 29128 +shortdesc Check references (in figures, table, equations, etc) +relocated 1 +longdesc The package checks references in a document, looking for +longdesc numbered but unlabelled equations, for labels which are not +longdesc used in the text, for unused bibliography references. It can +longdesc also display label names in text near corresponding numbers of +longdesc equations and/or bibliography references. +containersize 3616 +containerchecksum 46dde83ed04d4586eb6a2af393ab925aa7238a30c23f49ea33f0da331e2a5071447c5df22b31c2cd9b10bd37458794fe15e53e0e79f002bbcf95b0471d6a7d02 +doccontainersize 43356 +doccontainerchecksum a87b6ab25848571770bc8a7ac1f47e139c7a2abebf36b9c72b65bc66e02c14b23f7b0d2246c7160b7669460f52afd29063449c6659336f01f3e99df53cbb4428 +docfiles size=14 + RELOC/doc/latex/refcheck/README details="Readme" + RELOC/doc/latex/refcheck/refdemo.pdf details="Package demo" + RELOC/doc/latex/refcheck/refdemo.tex +runfiles size=3 + RELOC/tex/latex/refcheck/refcheck.sty +catalogue-ctan /macros/latex/contrib/refcheck +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics label-ref debug-supp +catalogue-version 1.9.1 + +name refenums +category Package +revision 44131 +shortdesc Define named items and provide back-references with that name +relocated 1 +longdesc The package provides commands to define enumerable items with a +longdesc number and a long name, which can be referenced later with the +longdesc name or just the short form. For instance, "Milestone M1: +longdesc Specification created" can be defined and later on be +longdesc referenced with 'M1' or 'M1 ("Specification created")'. The +longdesc text in the references is derived from the definition and also +longdesc rendered as hyperlink to the definition. +containersize 2180 +containerchecksum 7113ba67dcaf3ca2a070e42b4fa9660889bdf7803401cc0f8c3f9f62c59e467d9f637c526712bf9aa9fc7ac3df3c550a41f419de9cff375e24e68d102207e8af +doccontainersize 188004 +doccontainerchecksum 3511419e6507d2c5a7b48679e9220e63643b38f803e8a5d7046a55ea6b6f4827fdfabb74336fe61ba35628868a7f042ad472567e73351d13ab9568c508468a97 +docfiles size=56 + RELOC/doc/latex/refenums/LICENSE + RELOC/doc/latex/refenums/README.md details="Readme" + RELOC/doc/latex/refenums/README.pdf details="Package documentation" + RELOC/doc/latex/refenums/demo.pdf + RELOC/doc/latex/refenums/demo.tex + RELOC/doc/latex/refenums/test/demo-sec-param.tex +runfiles size=2 + RELOC/tex/latex/refenums/refenums.sty +catalogue-contact-repository https://github.com/koppor/refenums +catalogue-ctan /macros/latex/contrib/refenums +catalogue-date 2018-03-10 14:13:43 +0100 +catalogue-license lppl1.3 +catalogue-topics label-ref +catalogue-version 1.1.2 + +name reflectgraphics +category Package +revision 40612 +shortdesc Techniques for reflecting graphics +relocated 1 +longdesc The package provides a macro for reflecting images, in a number +longdesc of different ways, in pursuit of "more striking" graphics in a +longdesc document. +containersize 2308 +containerchecksum ad670c699d958eaf103db1ae65d79bad78dbb0677c7464144739fd67b63dc5acd3c298f81c81f258de477fe9f2d4a4177de887ce1c031ac9c701662167c1a5d6 +doccontainersize 236908 +doccontainerchecksum 78717728d537cf0dacaee67151cd7f19fef6fa031a856ac49a58bb576337690df4323c80e1ff0f318a4eda3689fbdbc2aa5a3bbcef69b957fc4615ff825e1e0a +docfiles size=69 + RELOC/doc/latex/reflectgraphics/README details="Readme" + RELOC/doc/latex/reflectgraphics/example.jpg + RELOC/doc/latex/reflectgraphics/reflectgraphics.pdf details="Package documentation" +srccontainersize 7788 +srccontainerchecksum f228c9e8dedcd7d261269c896b0ef1ebeb7efc18a0137fcd64765ec92b957eb634d8e0e2d4f6aceebf1760e65936c6bb1a7b706c852e6c220282448830b7f672 +srcfiles size=8 + RELOC/source/latex/reflectgraphics/reflectgraphics.dtx + RELOC/source/latex/reflectgraphics/reflectgraphics.ins +runfiles size=2 + RELOC/tex/latex/reflectgraphics/reflectgraphics.sty +catalogue-contact-repository https://bitbucket.org/oreiche/reflectgraphics +catalogue-ctan /macros/latex/contrib/reflectgraphics +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics graphics-manip +catalogue-version 0.2c + +name refman +category Package +revision 15878 +shortdesc Format technical reference manuals +relocated 1 +longdesc Document classes (report- and article-style) for writing +longdesc technical reference manuals. It offers a wide left margin for +longdesc notes to the reader, like some of the manuals distributed by +longdesc Adobe. +containersize 9348 +containerchecksum 45f51a654703a7e749e7dbb08fd0ccedc86b5f264ce08b504ed11827799202583f81a4f3fe32dae0794e20cefe2e6bbd0ff8563955c3a85eac2642c307aaf332 +doccontainersize 643176 +doccontainerchecksum 560d70322bcedfd0ca6a10c161d3930d389e77fef25ed568f5a68ec87eaa63efd4f7dd2363bab283af00a49719c3c8ba38e8a35ca011ea349dd854a0698ec79f +docfiles size=211 + RELOC/doc/latex/refman/00Contents + RELOC/doc/latex/refman/lay_d2.tex + RELOC/doc/latex/refman/lay_e2.tex + RELOC/doc/latex/refman/layout_d.pdf details="Layout-Anderungen mit LaTeX" language="de" + RELOC/doc/latex/refman/layout_d.tex + RELOC/doc/latex/refman/layout_e.pdf details="Changing the layout with LaTeX" language="en" + RELOC/doc/latex/refman/layout_e.tex + RELOC/doc/latex/refman/refman.pdf details="Package documentation" + RELOC/doc/latex/refman/refman.upl details="README" +srccontainersize 28680 +srccontainerchecksum 722e2493c24738bf767b271183eb1422ab103b84dec17d28f615a52d9b35e1671d3745fc5a6fc97b2a9d7934f314fbc7dba9734af8e0c802cc6760940112230c +srcfiles size=33 + RELOC/source/latex/refman/refman.dtx + RELOC/source/latex/refman/refman.ins +runfiles size=18 + RELOC/tex/latex/refman/pagepc.sty + RELOC/tex/latex/refman/refart.cls + RELOC/tex/latex/refman/refrep.cls +catalogue-ctan /macros/latex/contrib/refman +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics class +catalogue-version 2.0e + +name refstyle +category Package +revision 20318 +shortdesc Advanced formatting of cross references +relocated 1 +longdesc The package provides a consistent way of producing references +longdesc throughout a project. Enough flexibility is provided to make +longdesc local changes to a single reference. The user can configure +longdesc their own setup. The package offers a direct interface to +longdesc varioref (for use, for example, in large projects such as a +longdesc series of books, or a multivolume thesis written as a series of +longdesc documents), and name references from the nameref package may be +longdesc incorporated with ease. For large projects such as a series of +longdesc books or a multi volume thesis, written as freestanding +longdesc documents, a facility is provided to interface to the xr +longdesc package for external document references. +containersize 6140 +containerchecksum 15ab0ac1b41608ed2453bf1de27515aaeabd0b06a3e44fa3ced6b67f5e79cf237e92112848622303df2e174ae1e60b77ff31583837f3b12a447f8c4509891cbc +doccontainersize 671044 +doccontainerchecksum 9edca88347914ef7810c3b1639cb85f598963404620a99f81f5bd56d45b684e55bf179ba46a5a49953a88151251ec084fe6126fa3ce83d2635450bad25e07059 +docfiles size=192 + RELOC/doc/latex/refstyle/README + RELOC/doc/latex/refstyle/refconfig.pdf details="Configuration manual" + RELOC/doc/latex/refstyle/refstyle.pdf details="Users manual" +srccontainersize 21964 +srccontainerchecksum 9052f56bd87d9ecfb2bd09a3de7f1740837d1e0fea17eb2ff11c1bddc11ad2cdf3d9287167df61f0ebf1eeb4bdf7eed3b5a19b748ee8e560a7695e0418291a6f +srcfiles size=28 + RELOC/source/latex/refstyle/refconfig.dtx + RELOC/source/latex/refstyle/refstyle.dtx + RELOC/source/latex/refstyle/refstyle.ins +runfiles size=8 + RELOC/tex/latex/refstyle/refstyle.cfg + RELOC/tex/latex/refstyle/refstyle.sty +catalogue-ctan /macros/latex/contrib/refstyle +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics label-ref +catalogue-version 0.5 + +name regcount +category Package +revision 19979 +shortdesc Display the allocation status of the TeX registers +relocated 1 +longdesc Adds a macro \rgcounts which displays the allocation status of +longdesc the TeX registers. The display is written into the .log file as +longdesc it is a bit verbose. An automatic call to \rgcounts is done at +longdesc \begin{document} and \end{document}. +containersize 1684 +containerchecksum 6481e37b45ec26aa270637b465d9fabef010c6717c0a402f0bc2afaf5dfcd877e46fd8699ff8fa39d80218e6f319e09acec1417a47fedefe6da5d90a81b2928d +doccontainersize 197208 +doccontainerchecksum 19215d4d4e22777b236f4226d82cebb1d0f8ced841cb33a4b275f0cb558c3addd4a1fd76d3aae9cac5e275695e197574145649be5f767372bd1bff13ec76cbb7 +docfiles size=50 + RELOC/doc/latex/regcount/readme details="Readme" + RELOC/doc/latex/regcount/regcount.pdf details="Package documentation" +srccontainersize 3792 +srccontainerchecksum 4b152aa79080914fa59e2b8a3103fea930ad3a0ab8959c570eba06ba36596d82ba58d03a4404cac9b2ebe3d073ca0eaff856a892b3d1e84d183a9ed60f32e42a +srcfiles size=4 + RELOC/source/latex/regcount/regcount.dtx + RELOC/source/latex/regcount/regcount.ins +runfiles size=1 + RELOC/tex/latex/regcount/regcount.sty +catalogue-ctan /macros/latex/contrib/regcount +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics debug-supp +catalogue-version 1.0 + +name regexpatch +category Package +revision 47601 +shortdesc High level patching of commands +relocated 1 +longdesc The package generalises the macro patching commands provided by +longdesc P. Lehmann's etoolbox. The difference between this package and +longdesc its sibling xpatch is that this package sports a very powerful +longdesc \regexpatchcmd based on the l3regex module of the LaTeX3 +longdesc experimental packages. +containersize 3668 +containerchecksum ef1f12a2480834e447110945e685cea36a5e72abb462106bdc42b086cbbf0d0f9857429d1c5ec243eaba74ee39ce8af29a758f8741a6a7dae05f376786971ea4 +doccontainersize 529492 +doccontainerchecksum 6c6ee8769f2a602c4afa9e043daeb5151db1d5aa92732201f0d3c36d07cc754a9dcc09a15fb2cfe69527aa80633b26cc522bff0b696d774db933b6dd0c916369 +docfiles size=132 + RELOC/doc/latex/regexpatch/README details="Readme" + RELOC/doc/latex/regexpatch/regexpatch.pdf details="Package documentation" +srccontainersize 12524 +srccontainerchecksum 596024cf733d8a0e51d632ed2b1c9d7ef7594636a46be04b80dcb6fcb6b5b4cb45c8e0fcaf8b6ad5c1dbffb2206eec8ef6c2eb20a2af59258edb72983169ecfd +srcfiles size=16 + RELOC/source/latex/regexpatch/regexpatch.dtx + RELOC/source/latex/regexpatch/regexpatch.ins +runfiles size=7 + RELOC/tex/latex/regexpatch/regexpatch.sty +catalogue-ctan /macros/latex/contrib/regexpatch +catalogue-date 2018-05-03 08:29:38 +0200 +catalogue-license lppl1.3c +catalogue-topics macro-supp +catalogue-version 0.2d + +name register +category Package +revision 49581 +shortdesc Typeset programmable elements in digital hardware (registers) +relocated 1 +longdesc This package is designed for typesetting the programmable +longdesc elements in digital hardware, i.e. registers. Such registers +longdesc typically have many fields and can be quite wide; they are thus +longdesc a challenge to typeset in a consistent manner. Register is +longdesc similar in some aspects to the bytefield package. Anyone doing +longdesc hardware documentation using LaTeX should examine both +longdesc packages. Register requires a fairly recent version of the +longdesc float package. An example Perl module and a Perl script are +longdesc provided to translate the register specifications into +longdesc programmable data structures. +containersize 4464 +containerchecksum 049cdd2039a37857bde1ef3f7296da1b6e95a62f366e43b508db8ef70e6afca7a763632078a5379c620692febd49df3afe4049d8c97971fdddd37afd8e357515 +doccontainersize 161108 +doccontainerchecksum fe09f70f908d9b96ad961bbb6c44731572eec871f3adde68dd5b0a094ce932ed15e8bca7982997f17e771d202d9bee6d397f1c4c6823022faf53baa47e40dcb0 +docfiles size=51 + RELOC/doc/latex/register/README details="Readme" + RELOC/doc/latex/register/Reg_macro.pm + RELOC/doc/latex/register/reg_list.pl + RELOC/doc/latex/register/register.pdf details="Package documentation" +srccontainersize 14820 +srccontainerchecksum 631a77363ec20f7cf849fbf17604870bf7868ac3d4a89768b7ae72abef34f2862502ab51bcce7b164fa497f5922a29755ac4e1a2d3ee2d7471a28be9bfdad89a +srcfiles size=14 + RELOC/source/latex/register/register.dtx + RELOC/source/latex/register/register.ins +runfiles size=4 + RELOC/tex/latex/register/register.sty +catalogue-ctan /macros/latex/contrib/register +catalogue-date 2019-01-01 23:34:54 +0100 +catalogue-license lppl1.3 +catalogue-topics engineering comp-sci comp-net +catalogue-version 1.9 + +name regstats +category Package +revision 25050 +shortdesc Information about register use +relocated 1 +longdesc The package will report number of used registers (counter, +longdesc dimen, skip, muskip, box, token, input, output, math families, +longdesc languages, insertions), and will compare the number to the +longdesc maximum available number of such registers. +containersize 3648 +containerchecksum 95e68cf4ea4cbb34801a7412ef1ce87fd75d017681e43ccb86e56ff47494aaf95e3cdccb4f0c2ea6a276d99960df881857d9a138368fa6cd37d7f38554ad84dc +doccontainersize 398972 +doccontainerchecksum 1883f17190f3b24414dc8ef7f874cb50d682b5dcdf45f8bf95fd15b3347996de37a7839b727da4cdc9e39869ee1def31ed1b2be02e48bc68a81c0d2f8aef8be2 +docfiles size=105 + RELOC/doc/latex/regstats/README details="Readme" + RELOC/doc/latex/regstats/regstats-example.log + RELOC/doc/latex/regstats/regstats-example.pdf + RELOC/doc/latex/regstats/regstats-example.tex + RELOC/doc/latex/regstats/regstats.pdf details="Package documentation" +srccontainersize 13252 +srccontainerchecksum 4e7392bd85860ae971fcd06025f5753d7f2c815cb216d6a53eba1504c4f9de7fee9826807149826ee69c6776f17a0f0f537ffe7ad1be04597ce221d5cd8f7ff4 +srcfiles size=15 + RELOC/source/latex/regstats/regstats.drv + RELOC/source/latex/regstats/regstats.dtx + RELOC/source/latex/regstats/regstats.ins +runfiles size=4 + RELOC/tex/latex/regstats/regstats.sty +catalogue-also regcount +catalogue-ctan /macros/latex/contrib/regstats +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics debug-supp +catalogue-version 1.0h + +name reledmac +category Package +revision 50740 +shortdesc Typeset scholarly editions +relocated 1 +longdesc A package for typesetting scholarly critical editions, +longdesc replacing the established ledmac and eledmac packages. Ledmac +longdesc itself was a LaTeX port of the plain TeX EDMAC macros. The +longdesc package supports indexing by page and by line numbers, and +longdesc simple tabular- and array-style environments. The package is +longdesc distributed with the related reledpar package. +containersize 52576 +containerchecksum 7e5a038135121849b0fd8741c497cfabf93414e76fb30d66f657c4d7beb98970f9baab86515f1b209cd4bc81e8da9eaa3e70067c886599d028330b020a99268d +doccontainersize 3137452 +doccontainerchecksum 726e3e47a60486c962f6cc5e6485e30097576fdc5d6313f354cf954050d345f16da12b739b4fa9b5aaccee7e8684fad92be505bef1d5abd8cbc2c68c626749b6 +docfiles size=932 + RELOC/doc/latex/reledmac/README details="Readme" + RELOC/doc/latex/reledmac/doc-include/migrate-mac.dtx + RELOC/doc/latex/reledmac/doc-include/migrate-par.dtx + RELOC/doc/latex/reledmac/doc-more/latexmkrc + RELOC/doc/latex/reledmac/doc-more/makefile + RELOC/doc/latex/reledmac/doc-more/page-typesetting-columns.pdf + RELOC/doc/latex/reledmac/doc-more/page-typesetting-columns.tex + RELOC/doc/latex/reledmac/examples/1-criticalendotes.pdf + RELOC/doc/latex/reledmac/examples/1-criticalendotes.tex + RELOC/doc/latex/reledmac/examples/1-criticalnotes.pdf + RELOC/doc/latex/reledmac/examples/1-criticalnotes.tex + RELOC/doc/latex/reledmac/examples/1-sidenotes.pdf + RELOC/doc/latex/reledmac/examples/1-sidenotes.tex + RELOC/doc/latex/reledmac/examples/1-tabular.pdf + RELOC/doc/latex/reledmac/examples/1-tabular.tex + RELOC/doc/latex/reledmac/examples/1-verses-doublenumbering.pdf + RELOC/doc/latex/reledmac/examples/1-verses-doublenumbering.tex + RELOC/doc/latex/reledmac/examples/1-verses.pdf + RELOC/doc/latex/reledmac/examples/1-verses.tex + RELOC/doc/latex/reledmac/examples/2-cross_referencing.pdf + RELOC/doc/latex/reledmac/examples/2-cross_referencing.tex + RELOC/doc/latex/reledmac/examples/2-footnote_spacing.pdf + RELOC/doc/latex/reledmac/examples/2-footnote_spacing.tex + RELOC/doc/latex/reledmac/examples/2-glossaries.pdf + RELOC/doc/latex/reledmac/examples/2-glossaries.tex + RELOC/doc/latex/reledmac/examples/2-indexing.pdf + RELOC/doc/latex/reledmac/examples/2-indexing.tex + RELOC/doc/latex/reledmac/examples/2-lemma_disambigution.pdf + RELOC/doc/latex/reledmac/examples/2-lemma_disambigution.tex + RELOC/doc/latex/reledmac/examples/2-line_numbers_in_header.pdf + RELOC/doc/latex/reledmac/examples/2-line_numbers_in_header.tex + RELOC/doc/latex/reledmac/examples/2-linespacing.pdf + RELOC/doc/latex/reledmac/examples/2-linespacing.tex + RELOC/doc/latex/reledmac/examples/2-manuscript-apparatus.pdf + RELOC/doc/latex/reledmac/examples/2-manuscript-apparatus.tex + RELOC/doc/latex/reledmac/examples/2-notes-width.pdf + RELOC/doc/latex/reledmac/examples/2-notes-width.tex + RELOC/doc/latex/reledmac/examples/2-one_series_per_pstart.pdf + RELOC/doc/latex/reledmac/examples/2-one_series_per_pstart.tex + RELOC/doc/latex/reledmac/examples/2-performances.pdf + RELOC/doc/latex/reledmac/examples/2-performances.tex + RELOC/doc/latex/reledmac/examples/2-reledmac-right-to-left.pdf + RELOC/doc/latex/reledmac/examples/2-reledmac-right-to-left.tex + RELOC/doc/latex/reledmac/examples/2-subdivision-number-in-header.pdf + RELOC/doc/latex/reledmac/examples/2-subdivision-number-in-header.tex + RELOC/doc/latex/reledmac/examples/2-titles_in_line_numbering_with_notes.pdf + RELOC/doc/latex/reledmac/examples/2-titles_in_line_numbering_with_notes.tex + RELOC/doc/latex/reledmac/examples/2-titles_not_in_line_numbering.pdf + RELOC/doc/latex/reledmac/examples/2-titles_not_in_line_numbering.tex + RELOC/doc/latex/reledmac/examples/3-reledpar_columns_different_languages.pdf + RELOC/doc/latex/reledmac/examples/3-reledpar_columns_different_languages.tex + RELOC/doc/latex/reledmac/examples/3-reledpar_mwe.pdf + RELOC/doc/latex/reledmac/examples/3-reledpar_mwe.tex + RELOC/doc/latex/reledmac/examples/3-reledpar_pages_different_languages_lualatex.pdf + RELOC/doc/latex/reledmac/examples/3-reledpar_pages_different_languages_lualatex.tex + RELOC/doc/latex/reledmac/examples/3-reledpar_same_page_number_in_both_side.pdf + RELOC/doc/latex/reledmac/examples/3-reledpar_same_page_number_in_both_side.tex + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_advancedshifted-nomax.pdf + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_advancedshifted-nomax.tex + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_advancedshifted.pdf + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_advancedshifted.tex + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_default.pdf + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_default.tex + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_nomax-shifted.pdf + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_nomax-shifted.tex + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_nomax.pdf + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_nomax.tex + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_nosync.pdf + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_nosync.tex + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_shifted.pdf + RELOC/doc/latex/reledmac/examples/3-reledpar_sync_setting_shifted.tex + RELOC/doc/latex/reledmac/examples/4-reledpar_column_mix_with_not_column-continuous-numbering.pdf + RELOC/doc/latex/reledmac/examples/4-reledpar_column_mix_with_not_column-continuous-numbering.tex + RELOC/doc/latex/reledmac/examples/4-reledpar_column_mix_with_not_column.pdf + RELOC/doc/latex/reledmac/examples/4-reledpar_column_mix_with_not_column.tex + RELOC/doc/latex/reledmac/examples/4-reledpar_columns_alignment.pdf + RELOC/doc/latex/reledmac/examples/4-reledpar_columns_alignment.tex + RELOC/doc/latex/reledmac/examples/4-reledpar_columns_titles_in_line_numbering_with_notes.pdf + RELOC/doc/latex/reledmac/examples/4-reledpar_columns_titles_in_line_numbering_with_notes.tex + RELOC/doc/latex/reledmac/examples/4-reledpar_inside-outside-columns.pdf + RELOC/doc/latex/reledmac/examples/4-reledpar_inside-outside-columns.tex + RELOC/doc/latex/reledmac/examples/4-reledpar_one_series_per_pstart.pdf + RELOC/doc/latex/reledmac/examples/4-reledpar_one_series_per_pstart.tex + RELOC/doc/latex/reledmac/examples/4-reledpar_pages_long_notes.pdf + RELOC/doc/latex/reledmac/examples/4-reledpar_pages_long_notes.tex + RELOC/doc/latex/reledmac/examples/4-reledpar_pages_notes_leftpage.pdf + RELOC/doc/latex/reledmac/examples/4-reledpar_pages_notes_leftpage.tex + RELOC/doc/latex/reledmac/examples/4-reledpar_pages_paragraph_separator_between.pdf + RELOC/doc/latex/reledmac/examples/4-reledpar_pages_paragraph_separator_between.tex + RELOC/doc/latex/reledmac/examples/4-reledpar_pages_titles_in_line_numbering_with_notes.pdf + RELOC/doc/latex/reledmac/examples/4-reledpar_pages_titles_in_line_numbering_with_notes.tex + RELOC/doc/latex/reledmac/examples/4-reledpar_titles_not_in_line_numbering.pdf + RELOC/doc/latex/reledmac/examples/4-reledpar_titles_not_in_line_numbering.tex + RELOC/doc/latex/reledmac/examples/4-reledpar_verse_text_between.pdf + RELOC/doc/latex/reledmac/examples/4-reledpar_verse_text_between.tex + RELOC/doc/latex/reledmac/examples/latexmkrc + RELOC/doc/latex/reledmac/examples/makefile + RELOC/doc/latex/reledmac/examples/reledmac.xdy + RELOC/doc/latex/reledmac/latexmkrc + RELOC/doc/latex/reledmac/makefile + RELOC/doc/latex/reledmac/migration.pdf + RELOC/doc/latex/reledmac/reledmac.pdf details="Package documentation" + RELOC/doc/latex/reledmac/reledpar.pdf +srccontainersize 202640 +srccontainerchecksum 6dbbb33c868c4c3ceabffd8c36718ba0dddf7a67ccdb5dd1795bb64e640d6b5e6444dd0ec3fe59286c701909703333e73b84309777773eefb744d00280a32402 +srcfiles size=286 + RELOC/source/latex/reledmac/migration.dtx + RELOC/source/latex/reledmac/reledmac.dtx + RELOC/source/latex/reledmac/reledmac.ins + RELOC/source/latex/reledmac/reledpar.dtx + RELOC/source/latex/reledmac/reledpar.ins +runfiles size=93 + RELOC/tex/latex/reledmac/reledmac.sty + RELOC/tex/latex/reledmac/reledpar.sty +catalogue-also ednotes poemscol ledmac eledmac +catalogue-contact-bugs https://github.com/maieul/ledmac/issues/ +catalogue-contact-repository https://github.com/maieul/ledmac/ +catalogue-contact-support http://geekographie.maieul.net/146 +catalogue-ctan /macros/latex/contrib/reledmac +catalogue-date 2019-04-03 15:10:43 +0200 +catalogue-license lppl1.3 +catalogue-topics crit-ed +catalogue-version 2.31.2 + +name relenc +category Package +revision 22050 +shortdesc A "relaxed" font encoding +relocated 1 +longdesc LaTeX package providing a relaxed font encoding to make +longdesc available to a font designer more slots for insertion of +longdesc ligatures and accented characters. +containersize 11188 +containerchecksum d638db869698a6b564f1482c3ffbda561bac0da00e008b5b3ddcbe267587813042bd3d578ea871f5ef48a27309baf8e290413b65f99daa26ba7a8b2a1dc62050 +doccontainersize 26504 +doccontainerchecksum b5e81a7edf8e7d0c3be9ea46ffb2a43af5d58153ee91d656faba600d4082a8982706744ba1991c82ce8c119fd12fcc0eaee30353135338154b0445e48f33472f +docfiles size=26 + RELOC/doc/latex/relenc/README details="Readme" + RELOC/doc/latex/relenc/reldemo.tex + RELOC/doc/latex/relenc/relenc.tex + RELOC/doc/latex/relenc/zcmr8d.vf2 + RELOC/doc/latex/relenc/zcmr8d.vf3 + RELOC/doc/latex/relenc/zcmra.vf2 + RELOC/doc/latex/relenc/zcmra.vf3 +srccontainersize 26728 +srccontainerchecksum ef1a5c1034dfac3ed942354fad6a9e4cca44a33d2252120fe824bb41280453a6c8e00c259331e4159206f60e5043664bb4008e758d8b81dff06c7d68c3382e6a +srcfiles size=30 + RELOC/source/latex/relenc/relenc.dtx + RELOC/source/latex/relenc/relenc.ins + RELOC/source/latex/relenc/t1renc.dtx + RELOC/source/latex/relenc/t1rzcm.fdd +runfiles size=17 + RELOC/fonts/tfm/public/relenc/zcmr8d.tfm + RELOC/fonts/tfm/public/relenc/zcmra.tfm + RELOC/fonts/vf/public/relenc/zcmr8d.vf + RELOC/fonts/vf/public/relenc/zcmra.vf + RELOC/tex/latex/relenc/2sidedoc.sty + RELOC/tex/latex/relenc/ecsubzcm.sty + RELOC/tex/latex/relenc/relenc.sty + RELOC/tex/latex/relenc/t1renc.def + RELOC/tex/latex/relenc/t1rzcm.fd +catalogue-ctan /macros/latex/contrib/relenc +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1 +catalogue-topics font-devel + +name relsize +category Package +revision 30707 +shortdesc Set the font size relative to the current font size +relocated 1 +longdesc The basic command of the package is \relsize, whose argument is +longdesc a number of \magsteps to change size; from this are defined +longdesc commands \larger, \smaller, \textlarger, etc. +containersize 5716 +containerchecksum 90a4829b63d86214c44cadab6b9c9c114d6abfbd72dd4cd8bddb18add9b7fede2867f39d57b03ac9e7762950db71664767554b515b5409cc873d8b31aebb2c1c +doccontainersize 309064 +doccontainerchecksum 45b6e38a14c31d7387a99d78c395fd0cdab5ee8bbbe72f840d511d14f6af73f749649b48977e8a995c2ee375358677b31a97646c8162c5fe2ee6c286a05a20b8 +docfiles size=79 + RELOC/doc/latex/relsize/README details="Readme" + RELOC/doc/latex/relsize/relsize-doc.pdf details="Package documentation" + RELOC/doc/latex/relsize/relsize-doc.tex +runfiles size=4 + RELOC/tex/latex/relsize/relsize.sty +catalogue-ctan /macros/latex/contrib/relsize +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics font-sel macro-supp +catalogue-version 4.1 + +name reotex +category Package +revision 34924 +shortdesc Draw Reo Channels and Circuits +relocated 1 +longdesc The package defines macros and other utilities to design Reo +longdesc Circuits. The package requires PGF/TikZ support. +containersize 4116 +containerchecksum e97663d414291b3d0a009143ea370676bdc69b1897492ef86bd2092e47fcead566151f175676b4a19e196054ecd4a41706a74e9d4e6ba353d9e346786d04a2d9 +doccontainersize 200404 +doccontainerchecksum fbdfd00526129921896db36234343d991bba29b68adfdd06d9fce262a58b2cc544dbe49d28cb9722eff1fd03ba3a765e38368baeddff18e36bde436c56ce538d +docfiles size=56 + RELOC/doc/latex/reotex/README details="Readme" + RELOC/doc/latex/reotex/reotex.pdf details="Package documentation" + RELOC/doc/latex/reotex/reotex.tex +runfiles size=6 + RELOC/tex/latex/reotex/reotex.sty +catalogue-ctan /graphics/pgf/contrib/reotex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics diagram pgf-tikz +catalogue-version 1.1 + +name repeatindex +category Package +revision 24305 +shortdesc Repeat items in an index after a page or column break +relocated 1 +longdesc This Package repeats item of an index if a page or column break +longdesc occurs within a list of subitems. This helps to find out to +longdesc which main item a subitem belongs. +containersize 1904 +containerchecksum f700f201ff05d25fafde3eafd63ddb5aeba81dfe8be0dc4522a08459f35b3ab78cd06d215477ef5bd59c1dd6d1a05361ddfdc21159f3b6347f5a8271c4193192 +doccontainersize 1216 +doccontainerchecksum 031a5113799f662b88b2275f2f82467e2fd84ae58d18f4cb69e090aad7f2c8cb44eefc4c43f3fcda9e92de0c0027fd4ecaf9f152d33b73ebb69f06e6b4c8c1ae +docfiles size=2 + RELOC/doc/latex/repeatindex/README details="Readme" + RELOC/doc/latex/repeatindex/testrepeatindex.tex +runfiles size=3 + RELOC/makeindex/repeatindex/repeatindex.ist + RELOC/tex/latex/repeatindex/repeatindex.sty +catalogue-ctan /macros/latex/contrib/repeatindex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics index +catalogue-version 0.01 + +name repere +category Package +revision 45779 +shortdesc Diagrams for school mathematics +relocated 1 +longdesc This package provides MetaPost macros for drawing secondary +longdesc school mathematics figures in a coordinate system: axis, grids +longdesc points, vectors functions (curves, tangents, integrals, +longdesc sequences) statistic diagrams plane geometry (polygons, +longdesc circles) +containersize 16008 +containerchecksum a633a7b00dee6e80cb17e7e1c7736638cdf33e194bfc5bad4ec84cc49deb1742439979470478f9b1e9eae9884a646a45da767ce0e7f58622745b1f4c60f2a39c +doccontainersize 325684 +doccontainerchecksum f861942f83140d3b9c1f4cd76e81fdd37a50eb9c7a3928f5c170b845637a767c8ba69f0a4b6d6c53bfa5464e21bf2bf8b744d3fb71f89656288eb79f5715b48a +docfiles size=129 + RELOC/doc/metapost/repere/README.md details="Readme" + RELOC/doc/metapost/repere/repere-doc.pdf details="Package documentation (French)" language="fr" + RELOC/doc/metapost/repere/repere-doc.tex +runfiles size=18 + RELOC/metapost/repere/repere.mp +catalogue-ctan /graphics/metapost/contrib/macros/repere +catalogue-date 2017-11-12 22:58:02 +0100 +catalogue-license lppl1.3 +catalogue-topics teaching +catalogue-version 17.11.2 + +name repltext +category Package +revision 33442 +shortdesc Control how text gets copied from a PDF file +relocated 1 +longdesc The repltext package exposes to LaTeX a relatively obscure PDF +longdesc feature: replacement text. When replacement text is specified +longdesc for a piece of text, it is the replacement text, not the +longdesc typeset text that is copied and pasted. +containersize 1208 +containerchecksum 32d4e90befc06db973de384855c174ea0ed9ae938a9ea280118d82387fbcbdeeab8fd1143a96c9afb2b904766e5fc43c0d4eec93d763b3e0e730ac06f6883c9b +doccontainersize 292216 +doccontainerchecksum ead39615e96c4247be7072dc4fd715288ee1c8cddeb4cf88c5ea79a6659808936fa6eaba3dced3efeb6802e58bef4632604e92d1f00c29b8f0bb3a241d56559f +docfiles size=76 + RELOC/doc/latex/repltext/README details="Readme" + RELOC/doc/latex/repltext/repltext.pdf details="Package documentation" +srccontainersize 6596 +srccontainerchecksum f01bb1d0ac9a4ae0303770faf083c447d3d800b43848d11560f67ed43c50f09e742e27683e911395b9ee7d29bf962f4b3b6791d3d25fac630d57c967bd14db4c +srcfiles size=5 + RELOC/source/latex/repltext/repltext.dtx + RELOC/source/latex/repltext/repltext.ins +runfiles size=1 + RELOC/tex/latex/repltext/repltext.sty +catalogue-ctan /macros/latex/contrib/repltext +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics pdf-feat +catalogue-version 1.0 + +name resphilosophica +category Package +revision 50935 +shortdesc Typeset articles for the journal Res Philosophica +relocated 1 +longdesc The bundle provides a class for typesetting articles for the +longdesc journal Res Philosophica. This work was commissioned by the +longdesc Saint Louis University. +containersize 12052 +containerchecksum 0ed9a50305132206585f322ba68fb514e0a4d566fc703a617cc6eda1de23b53820ee45231167f8b81aac826de732763e3c141a9ab65d13fac5d76e92d2101cde +doccontainersize 525148 +doccontainerchecksum 30739549cd7295186c10a54232e4ed57d6c2a589acf6f27ee758a40880e7a4178375835662b88bd78bd50ed0f695c71650003ae5ea78c63f5dcbefa15c5dd770 +docfiles size=138 + RELOC/doc/latex/resphilosophica/README details="Readme" + RELOC/doc/latex/resphilosophica/resphilosophica.bib + RELOC/doc/latex/resphilosophica/resphilosophica.pdf details="Package documentation" + RELOC/doc/latex/resphilosophica/rpsample.bib + RELOC/doc/latex/resphilosophica/rpsample.pdf + RELOC/doc/latex/resphilosophica/rpsample.tex +srccontainersize 17828 +srccontainerchecksum cfbaa18ff43da9287755c0cb3f218a57f034862ff9a63b3b77bc51e8171afc7c4042ee567230e7d1c263d7f993976bf4c2f3bfc055f0dd759b034d6d42d6df78 +srcfiles size=18 + RELOC/source/latex/resphilosophica/Makefile + RELOC/source/latex/resphilosophica/resphilosophica.dtx + RELOC/source/latex/resphilosophica/resphilosophica.ins +runfiles size=14 + RELOC/bibtex/bst/resphilosophica/resphilosophica.bst + RELOC/tex/latex/resphilosophica/resphilosophica.cls +catalogue-ctan /macros/latex/contrib/resphilosophica +catalogue-date 2019-04-25 23:11:30 +0200 +catalogue-license lppl1.3 +catalogue-topics journalpub class +catalogue-version 1.35 + +name resumecls +category Package +revision 38427 +shortdesc Typeset a resume both in English and Chinese +relocated 1 +longdesc This LaTeX class makes typeseting a resume or cv both in +longdesc English and Chinese more easy. +containersize 1636 +containerchecksum b7709500024b7badee75ef912158b368e9e3d01a6051b75ab0fbc4e5c90c6bee36226096a29891a32e1ef6dcb87a10e23b4fa1531c34caa48443c22726b07c81 +doccontainersize 130500 +doccontainerchecksum a99f08f236cbcb321a106acc6b768aaa0aa10a7d101dc635dbadd161e1681531950cbc161553cda82f2edcf0cf94af7b89f5d53d504c049181c3f63a0d0ce527 +docfiles size=43 + RELOC/doc/xelatex/resumecls/Makefile + RELOC/doc/xelatex/resumecls/README.md details="Readme" + RELOC/doc/xelatex/resumecls/example/Makefile + RELOC/doc/xelatex/resumecls/example/README.md details="Readme" + RELOC/doc/xelatex/resumecls/example/config-sample.mk + RELOC/doc/xelatex/resumecls/example/config.mk + RELOC/doc/xelatex/resumecls/example/resume-en.pdf + RELOC/doc/xelatex/resumecls/example/resume-en.tex + RELOC/doc/xelatex/resumecls/example/resume-zh.pdf + RELOC/doc/xelatex/resumecls/example/resume-zh.tex + RELOC/doc/xelatex/resumecls/example/resume.bib + RELOC/doc/xelatex/resumecls/resumecls.pdf details="Package listing" +srccontainersize 4392 +srccontainerchecksum 071e7d3d835313f0ca38d90f632d8c83583fd552de2b612cabe0f4c6bec097c944a1cb18f316d74cabf6ec0a0d4d3e890f2adb1904ca01af939cb97470430a77 +srcfiles size=4 + RELOC/source/xelatex/resumecls/resumecls.dtx + RELOC/source/xelatex/resumecls/resumecls.ins +runfiles size=1 + RELOC/tex/xelatex/resumecls/resumecls.cls +catalogue-contact-home http://huxuan.org/projects/resumecls/ +catalogue-ctan /macros/xetex/latex/resumecls +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics cv chinese class +catalogue-version 0.3.2 + +name resumemac +category Package +revision 15878 +shortdesc Plain TeX macros for resumes +relocated 1 +longdesc A set of macros is provided, together with an file that offers +longdesc an example of use. +containersize 3040 +containerchecksum f944441058cbe8468ed6646dcb10e09cbac78d5c7408c2a81f2531491739034e47da9fe8f45583008892740a57a2d36bbd1417f05f8d998bd79f886bfbad87bc +doccontainersize 1676 +doccontainerchecksum 5b89a7684cbe4da1c653d4a6253f82304b7b3634a9dc973e5f7da41967bdb034597e64a4fd82a922fac5ca62ee40e2ce35be6234deceb25000ff9103859e165b +docfiles size=2 + RELOC/doc/plain/resumemac/README + RELOC/doc/plain/resumemac/sample_resume.tex +runfiles size=2 + RELOC/tex/plain/resumemac/resumemac.tex +catalogue-ctan /macros/plain/contrib/resumemac +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics cv plain-ext + +name returntogrid +category Package +revision 48485 +shortdesc Semi-automatic grid typesetting +relocated 1 +longdesc returntogrid offers a few commands to get something like an +longdesc simple, semi-automatic grid typesetting. It does more or less +longdesc what the existing gridset package does. The main differences to +longdesc gridset are that returntogrid works also with LuaLaTeX and that +longdesc it has also a command to do some horizontal movements to get to +longdesc "tab" positions. +containersize 3948 +containerchecksum 751eddac662b8ca6d61edde7a25b11c357c497743aa0edff92be2a672fa13e4a92e6aaf40a8ed69853db642d656c3f54ad0af6cb35c94fe59cd540fa19f7b964 +doccontainersize 148880 +doccontainerchecksum 6f5eb1997e25ceaa7a8956ced78c584058cb8f9fc112f98c350ff996826188f9b7748b7bedc6c19ec0912894500a4743dc7542532317016ef3d295563c450889 +docfiles size=42 + RELOC/doc/latex/returntogrid/README.md details="Readme" + RELOC/doc/latex/returntogrid/returntogrid.pdf details="Package documentation" + RELOC/doc/latex/returntogrid/returntogrid.tex +runfiles size=4 + RELOC/tex/latex/returntogrid/returntogrid.lua + RELOC/tex/latex/returntogrid/returntogrid.sty +catalogue-also grid gridset +catalogue-contact-bugs https://github.com/u-fischer/returntogrid/issues +catalogue-contact-home https://github.com/u-fischer/returntogrid +catalogue-contact-repository https://github.com/u-fischer/returntogrid +catalogue-contact-support https://github.com/u-fischer/returntogrid +catalogue-ctan /macros/latex/contrib/returntogrid +catalogue-date 2018-08-24 05:44:41 +0200 +catalogue-license lppl1.3c +catalogue-topics typeset-grid +catalogue-version 0.2 + +name reverxii +category Package +revision 24976 +shortdesc Playing Reversi in TeX +relocated 1 +longdesc Following the lead of xii.tex, this little (938 characters) +longdesc program that plays Reversi. (The program incorporates some +longdesc primitive AI.) +containersize 456 +containerchecksum fa6efb9655cda15356163a93ca89f2b6a114ea5bdc151774bc99910fabd3306781319f92a5b5728f29df136c73f994f49011e31ea9c1c01b4ef2fed10af10a93 +doccontainersize 206752 +doccontainerchecksum ff6b03b426de5508eb31fa5b2fe615fd5b7f0a6721e949bb48e1954c28cb547faa079461c0b1f885163bcba40c7f7d2a3fdc7dfb3946c08c308f5c37d33605a2 +docfiles size=55 + RELOC/doc/plain/reverxii/README details="Readme" + RELOC/doc/plain/reverxii/reverxii.pdf details="Package documentation" + RELOC/doc/plain/reverxii/reverxii.tex +catalogue-ctan /macros/plain/contrib/reverxii +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics games frivolous + +name revquantum +category Package +revision 43505 +shortdesc Hacks to make writing quantum papers for revtex4-1 less painful +relocated 1 +longdesc This package provides a number of useful hacks to solve common +longdesc annoyances with the revtex4-1 package, and to define notation +longdesc in common use within quantum information. In doing so, it +longdesc imports and configures a number of commonly-available and used +longdesc packages, and where reasonable, provides fallbacks. It also +longdesc warns when users try to load packages which are known to be +longdesc incompatible with revtex4-1. +containersize 3948 +containerchecksum 0e69ce3a2a4a1c289d494e081cd28e9c14c84a45717880e92292cc94803783a350bbe33426c4f5e7ebf64e5b28876e656ab2f1ce681b86c27c7a3c6700563a41 +doccontainersize 252604 +doccontainerchecksum 16b8ff06bbc2155a853a26a0b622e3f89bb7d35439945948128fb37d342d293951526d415a3da9a01381f841dd61287317e52dddda8e8fa6e0eaa5d6a0006dc2 +docfiles size=65 + RELOC/doc/latex/revquantum/Install.ps1 + RELOC/doc/latex/revquantum/README.md details="Readme" + RELOC/doc/latex/revquantum/example.pdf details="Example of use" + RELOC/doc/latex/revquantum/example.tex + RELOC/doc/latex/revquantum/revquantum.pdf details="Package documentation" +srccontainersize 8792 +srccontainerchecksum 47e7a900aaa9198875acb1a0727bd30b64c0d41e9c33cd6240c29b8d67b17960f1ff05f717701385f627e6827881d365c01ed68b1adea8bd3e1b5423700f9bc6 +srcfiles size=8 + RELOC/source/latex/revquantum/revquantum.dtx + RELOC/source/latex/revquantum/revquantum.ins +runfiles size=3 + RELOC/tex/latex/revquantum/revquantum.sty +catalogue-ctan /macros/latex/contrib/revquantum +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl1.3 +catalogue-topics physics journalpub +catalogue-version 0.11 + +name revtex +category Package +revision 49751 +shortdesc Styles for various Physics Journals +relocated 1 +longdesc Includes styles for American Physical Society, American +longdesc Institute of Physics, and Optical Society of America. The +longdesc distribution consists of the RevTeX class itself, and several +longdesc support packages. +containersize 75996 +containerchecksum c3303edee2d0d7f160381ce91c4018023d70fca88c215d5ed9d46abcdb71eb79ec5a06a899575748dd9d2572323cf80f0ddde75b9c7ab72deca5fb9bf396e0dc +doccontainersize 3976584 +doccontainerchecksum ebf8f55ef5775b38cde9199e6c604e71400608e6a06bc59482fd017be8d5be68ed08e21ee87a11eaaf59e09af0f89fd7be1f6334fb67e3ca1914ef2c5e382e8d +docfiles size=1316 + RELOC/doc/latex/revtex/README details="Package Readme" + RELOC/doc/latex/revtex/aip/aipguide4-2.pdf + RELOC/doc/latex/revtex/aip/aipguide4-2.tex + RELOC/doc/latex/revtex/aps/apsguide4-2.pdf + RELOC/doc/latex/revtex/aps/apsguide4-2.tex + RELOC/doc/latex/revtex/auguide/auguide4-2.pdf + RELOC/doc/latex/revtex/auguide/auguide4-2.tex + RELOC/doc/latex/revtex/auguide/docs.sty + RELOC/doc/latex/revtex/auguide/summary4-2.pdf + RELOC/doc/latex/revtex/auguide/summary4-2.tex + RELOC/doc/latex/revtex/sample/aapm/aapmsamp.bib + RELOC/doc/latex/revtex/sample/aapm/aapmsamp.pdf + RELOC/doc/latex/revtex/sample/aapm/aapmsamp.tex + RELOC/doc/latex/revtex/sample/aapm/aapmtemplate.tex + RELOC/doc/latex/revtex/sample/aapm/fig_1.eps + RELOC/doc/latex/revtex/sample/aapm/fig_2.eps + RELOC/doc/latex/revtex/sample/aip/aipsamp.bib + RELOC/doc/latex/revtex/sample/aip/aipsamp.pdf + RELOC/doc/latex/revtex/sample/aip/aipsamp.tex + RELOC/doc/latex/revtex/sample/aip/aiptemplate.tex + RELOC/doc/latex/revtex/sample/aip/fig_1.eps + RELOC/doc/latex/revtex/sample/aip/fig_2.eps + RELOC/doc/latex/revtex/sample/aps/apssamp.bib + RELOC/doc/latex/revtex/sample/aps/apssamp.pdf + RELOC/doc/latex/revtex/sample/aps/apssamp.tex + RELOC/doc/latex/revtex/sample/aps/apstemplate.tex + RELOC/doc/latex/revtex/sample/aps/fig_1.eps + RELOC/doc/latex/revtex/sample/aps/fig_2.eps + RELOC/doc/latex/revtex/sample/aps/vid_1a.eps + RELOC/doc/latex/revtex/sample/aps/vid_1b.eps + RELOC/doc/latex/revtex/sample/sor/fig_1.eps + RELOC/doc/latex/revtex/sample/sor/fig_2.eps + RELOC/doc/latex/revtex/sample/sor/sorsamp.bib + RELOC/doc/latex/revtex/sample/sor/sorsamp.pdf + RELOC/doc/latex/revtex/sample/sor/sorsamp.tex + RELOC/doc/latex/revtex/sample/sor/sortemplate.tex + RELOC/doc/latex/revtex/source/aip4-2.pdf + RELOC/doc/latex/revtex/source/ltxdocext.pdf + RELOC/doc/latex/revtex/source/ltxfront.pdf + RELOC/doc/latex/revtex/source/ltxgrid.pdf + RELOC/doc/latex/revtex/source/ltxutil.pdf + RELOC/doc/latex/revtex/source/revtex4-2.pdf +srccontainersize 186980 +srccontainerchecksum 544482b0bb2b9a0f8d0d520cd22c3030bd2efaa88bea1e4f2ff032dd3fccb440766503c7d1a2b467c5de1386509e319235794659683c2248987b743c5d53f3ac +srcfiles size=337 + RELOC/source/latex/revtex/aip.dtx + RELOC/source/latex/revtex/aip4-2.dtx + RELOC/source/latex/revtex/ltxdocext.dtx + RELOC/source/latex/revtex/ltxfront.dtx + RELOC/source/latex/revtex/ltxgrid.dtx + RELOC/source/latex/revtex/ltxutil.dtx + RELOC/source/latex/revtex/revtex4-1.dtx + RELOC/source/latex/revtex/revtex4-2.dtx +runfiles size=358 + RELOC/bibtex/bst/revtex/aapmrev4-2.bst + RELOC/bibtex/bst/revtex/aipauth4-1.bst + RELOC/bibtex/bst/revtex/aipauth4-2.bst + RELOC/bibtex/bst/revtex/aipnum4-1.bst + RELOC/bibtex/bst/revtex/aipnum4-2.bst + RELOC/bibtex/bst/revtex/apsrev4-1.bst + RELOC/bibtex/bst/revtex/apsrev4-2.bst + RELOC/bibtex/bst/revtex/apsrmp4-1.bst + RELOC/bibtex/bst/revtex/apsrmp4-2.bst + RELOC/tex/latex/revtex/aapm4-2.rtx + RELOC/tex/latex/revtex/aip4-1.rtx + RELOC/tex/latex/revtex/aip4-2.rtx + RELOC/tex/latex/revtex/aps10pt4-1.rtx + RELOC/tex/latex/revtex/aps10pt4-2.rtx + RELOC/tex/latex/revtex/aps11pt4-1.rtx + RELOC/tex/latex/revtex/aps11pt4-2.rtx + RELOC/tex/latex/revtex/aps12pt4-1.rtx + RELOC/tex/latex/revtex/aps12pt4-2.rtx + RELOC/tex/latex/revtex/aps4-1.rtx + RELOC/tex/latex/revtex/aps4-2.rtx + RELOC/tex/latex/revtex/apsrmp4-1.rtx + RELOC/tex/latex/revtex/apsrmp4-2.rtx + RELOC/tex/latex/revtex/ltxdocext.sty + RELOC/tex/latex/revtex/ltxfront.sty + RELOC/tex/latex/revtex/ltxgrid.sty + RELOC/tex/latex/revtex/ltxutil.sty + RELOC/tex/latex/revtex/reftest4-2.tex + RELOC/tex/latex/revtex/revsymb4-1.sty + RELOC/tex/latex/revtex/revsymb4-2.sty + RELOC/tex/latex/revtex/revtex4-1.cls + RELOC/tex/latex/revtex/revtex4-2.cls + RELOC/tex/latex/revtex/sor4-2.rtx +catalogue-also revtex4-0 revtex4-1 +catalogue-contact-home https://journals.aps.org/revtex +catalogue-ctan /macros/latex/contrib/revtex +catalogue-date 2019-01-18 22:11:36 +0100 +catalogue-license lppl1.3c +catalogue-topics physics journalpub class +catalogue-version 4.2c + +name revtex4 +category Package +revision 45873 +catalogue revtex4-0 +shortdesc Styles for various Physics Journals (old version) +relocated 1 +longdesc This is an old version of revtex, and is kept as a courtesy to +longdesc users having difficulty with the incompatibility of that latest +longdesc version. +containersize 47400 +containerchecksum 7b4902efc551bb4224304adc3553a229393bcfbbf8c052b6e3d4e0f800ac3bb2f2f838f3e77144aa1693fd09f06c7a05c22d7ab0de9de382c53829891fb0f44d +doccontainersize 878356 +doccontainerchecksum d0757cce30acb2703a78310d1a9d27c7d28f5c697c3e70e5df9b2cc63ea122604b618615fa07da586cf8f78ec04b5eb9fb129a59a9504c6cec5acc07d05cf1ec +docfiles size=408 + RELOC/doc/latex/revtex4/DOWNLOAD + RELOC/doc/latex/revtex4/README details="Package Readme" + RELOC/doc/latex/revtex4/apssamp.end + RELOC/doc/latex/revtex4/apssamp.tex + RELOC/doc/latex/revtex4/auguide.tex + RELOC/doc/latex/revtex4/differ.tex + RELOC/doc/latex/revtex4/docs.sty + RELOC/doc/latex/revtex4/fig_1.eps + RELOC/doc/latex/revtex4/fig_2.eps + RELOC/doc/latex/revtex4/ltxdocext.pdf + RELOC/doc/latex/revtex4/ltxgrid.pdf + RELOC/doc/latex/revtex4/ltxutil.pdf + RELOC/doc/latex/revtex4/revtex4.pdf + RELOC/doc/latex/revtex4/summary.tex + RELOC/doc/latex/revtex4/template.aps +srccontainersize 125388 +srccontainerchecksum ac0cef14df3a8398ea96a0fa3d947f550305a45928ed539a6760e5d8812f8a4c69f94352c36bf86584ede364220fc1129ffd54281fc98c62f01fe51d23448fd5 +srcfiles size=150 + RELOC/source/latex/revtex4/ltxdocext.dtx + RELOC/source/latex/revtex4/ltxgrid.dtx + RELOC/source/latex/revtex4/ltxutil.dtx + RELOC/source/latex/revtex4/revtex4.dtx + RELOC/source/latex/revtex4/revtex4.ins + RELOC/source/latex/revtex4/textcase.dtx +runfiles size=74 + RELOC/bibtex/bib/revtex4/apssamp.bib + RELOC/bibtex/bst/revtex4/apsrev.bst + RELOC/bibtex/bst/revtex4/apsrmp.bst + RELOC/tex/latex/revtex4/10pt.rtx + RELOC/tex/latex/revtex4/11pt.rtx + RELOC/tex/latex/revtex4/12pt.rtx + RELOC/tex/latex/revtex4/aps.rtx + RELOC/tex/latex/revtex4/revsymb.sty + RELOC/tex/latex/revtex4/revtex4.cls + RELOC/tex/latex/revtex4/rmp.rtx +catalogue-also revtex4-1 revtex +catalogue-contact-home https://journals.aps.org/revtex +catalogue-ctan /obsolete/macros/latex/contrib/revtex4-0 +catalogue-date 2019-01-11 18:24:32 +0100 +catalogue-license lppl +catalogue-topics physics journalpub obsolete +catalogue-version 4.0 + +name rgltxdoc +category Package +revision 51166 +shortdesc Common code for documentation of the author's packages +relocated 1 +longdesc This package combines several other packages and defines +longdesc additional macros and environments for documenting LaTeX code. +longdesc The package mainly serves the purpose of combining the +longdesc preferences used in the author's own package documentations. +longdesc However, others can use the package as well. Compatibility +longdesc between versions cannot be guaranteed, however. +containersize 3356 +containerchecksum dce35e42e8a81cef5f31db1beddcae93b7c02a8baf3563e21a95d5f3a13daca83368c432702e7836dc9ed8cac2e55e0276062a643ced3b41ac85db9280e74d99 +doccontainersize 160052 +doccontainerchecksum c194c7464e2e3689309aa54a4a26d5bdc30f0b865448b1b3e51b8cc7288a91ae2d40914de3064d766e7142c0c319ad389a166711cef2d9758ff2309b7a86fb36 +docfiles size=41 + RELOC/doc/latex/rgltxdoc/README.md details="Readme" + RELOC/doc/latex/rgltxdoc/rgltxdoc.pdf details="Package documentation" +srccontainersize 9400 +srccontainerchecksum 8df979de9f4ac297ee94d7fc3758e9c7e2430ee8ed6206012a55f15a57c4c683c65dc186b835fd7a1864a5437c41875b0aea136b00d5808f5c4d10641824a7c7 +srcfiles size=9 + RELOC/source/latex/rgltxdoc/rgltxdoc.dtx + RELOC/source/latex/rgltxdoc/rgltxdoc.ins +runfiles size=2 + RELOC/tex/latex/rgltxdoc/rgltxdoc.sty +catalogue-contact-bugs https://github.com/Ri-Ga/rgltxdoc/issues +catalogue-contact-repository https://github.com/Ri-Ga/rgltxdoc +catalogue-ctan /macros/latex/contrib/rgltxdoc +catalogue-date 2019-05-18 22:31:50 +0200 +catalogue-license lppl1.2 +catalogue-topics doc-supp +catalogue-version 1.2 + +name ribbonproofs +category Package +revision 31137 +shortdesc Drawing ribbon proofs +relocated 1 +longdesc The package provides a way to draw "ribbon proofs" in LaTeX. A +longdesc ribbon proof is a diagrammatic representation of a mathematical +longdesc proof that a computer program meets its specification. These +longdesc diagrams are more human-readable, more scalable, and more +longdesc easily modified than the corresponding textual proofs. +containersize 11420 +containerchecksum 88d1ea87819bef7f8e70e0df273315981c28ffdbc00247431afb8b92959aa2e0a3e489b01f7571d30ffaf3606d240f25bee6487fc704f39417146a93403bcb3b +doccontainersize 335072 +doccontainerchecksum d0efb33c19d632253384182b562cf0e0aa10be81ce2336992c83ca7d25abce37c44b152cc8e928cdac90709cb99a4a5caf3ce8a631b13762aee7b39ad92da3a2 +docfiles size=93 + RELOC/doc/latex/ribbonproofs/README details="Readme" + RELOC/doc/latex/ribbonproofs/ribbonproofsmanual.pdf details="Package documentation" + RELOC/doc/latex/ribbonproofs/ribbonproofsmanual.tex +runfiles size=14 + RELOC/tex/latex/ribbonproofs/ribbonproofs.sty +catalogue-ctan /macros/latex/contrib/ribbonproofs +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics proof +catalogue-version 1.0 + +name rjlparshap +category Package +revision 15878 +shortdesc Support for use of \parshape in LaTeX +relocated 1 +longdesc The package provides macros and environments that relieve the +longdesc programmer of some of the difficulties of using \parshape in +longdesc LaTeX macros. It does not actually calculate shapes in the way +longdesc that the shapepar package does. +containersize 1852 +containerchecksum 9a7f5f821635f110d9bad0015d9fdf489f836cc6ec0c101f63a3bf5bf9235d7446dad98db1325b0720bab85d68432f4cbdbc6dfc78456329a8c48b47d9212abb +doccontainersize 110516 +doccontainerchecksum 73987b63cd565766586dff08144bb9cfab13b7251053d5f008ccb7dd3091ec9d3bbe8ed92fd8e7dddce93afd13a649e68826468b87947a036a054fea76225921 +docfiles size=32 + RELOC/doc/latex/rjlparshap/README details="Readme" + RELOC/doc/latex/rjlparshap/rjlpshap.pdf details="Package documentation" +srccontainersize 7580 +srccontainerchecksum 37af8ef7c124fc331a4156b177578aed29b99777a0270ef819b896e5f6dac9b694c3a05ea439cdc21533a405bd052e071036682b0846905c09ce95c32a986dff +srcfiles size=8 + RELOC/source/latex/rjlparshap/rjlpshap.dtx + RELOC/source/latex/rjlparshap/rjlpshap.ins +runfiles size=2 + RELOC/tex/latex/rjlparshap/rjlpshap.sty +catalogue-ctan /macros/latex/contrib/rjlparshap +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.2 +catalogue-topics micro-layout +catalogue-version 1.0 + +name rlepsf +category Package +revision 19082 +shortdesc Rewrite labels in EPS graphics +relocated 1 +longdesc A macro package for use with epsf.tex which allows PostScript +longdesc labels in an Encapsulated PostScript file to be replaced by TeX +longdesc labels. The package provides commands \relabel (simply replace +longdesc a PostScript string), \adjustrelabel (replace a PostScript +longdesc string, with position adjustment), and \extralabel (add a label +longdesc at given coordinates). You can, if you so choose, use the +longdesc facilities of the labelfig package in place of using +longdesc \extralabel. +containersize 3012 +containerchecksum 198037c1fd20eaa28b727054607241b7ada10c9dbf4d48cd36f295a8b51a7d4f94859d2349d3d4e831a74e0da025ccaaf91fb53a3074a704f7a3216bb7df0cf1 +doccontainersize 59272 +doccontainerchecksum fc06c857011fe01b07180c9530a334e021f5b9c034c65e15959e173a409670947c7aa406bf751d64d5d77d462139f4835824aa53203381d27d4ecb0e51463e7f +docfiles size=52 + RELOC/doc/generic/rlepsf/read.me + RELOC/doc/generic/rlepsf/rlepsdoc.ps details="Package documentation" +runfiles size=2 + RELOC/tex/generic/rlepsf/rlepsf.tex +catalogue-also psfrag +catalogue-ctan /macros/generic/rlepsf +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics + +name rmathbr +category Package +revision 40415 +shortdesc Repeating of math operator at the broken line and the new line in inline equations +relocated 1 +longdesc Repeating of math operators at the broken line and the new line +longdesc in inline equations is used in Cyrillic mathematical typography +longdesc (Russian for example), but unfortunately LaTeX does not provide +longdesc such an option. This package solves the problem by extending +longdesc ideas described in M. I. Grinchuk "TeX and Russian Traditions +longdesc of Typesetting", TUGboat 17(4) (1996) 385 and supports most of +longdesc LaTeX mathematical packages. See the documentation for details. +containersize 6732 +containerchecksum 71ad547496a4159f2ac609bd695bd3a38879dad118cc18bc58d8fc4c5a8da3d77abc609a0638584495dbb77bdf2078a30ac82f2534bfdf5b620d056b20aa7a8b +doccontainersize 213424 +doccontainerchecksum ab1b89d94e5fe92023ccfad1264aa38dac9be485d2717b4afb82a441e6bd8eb5813892c20c33a65741f62e6a8c4bbd3e3c778fe86f7d0da72080d51476f49a38 +docfiles size=61 + RELOC/doc/latex/rmathbr/README details="Readme" + RELOC/doc/latex/rmathbr/rmathbr.pdf details="Package documentation" +srccontainersize 10080 +srccontainerchecksum 255ef1cae8a42e34e11e1cc4b8599afe1f166208bef00372d89ab34baa55d3fcba298e01bc2d639568135c66e77e7fe62e558a6e3ba38485dde387ad76e0da4c +srcfiles size=17 + RELOC/source/latex/rmathbr/rmathbr.dtx + RELOC/source/latex/rmathbr/rmathbr.ins +runfiles size=12 + RELOC/tex/latex/rmathbr/rmathbr.sty +catalogue-ctan /macros/latex/contrib/rmathbr +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 1.0.3 + +name rmpage +category Package +revision 20002 +shortdesc A package to help change page layout parameters in LaTeX +relocated 1 +longdesc The package lets you change page layout parameters in small +longdesc steps over a range of values using options. It can set +longdesc \textwidth appropriately for the main fount, and ensure that +longdesc the text fits inside the printable area of a printer. An +longdesc rmpage-formatted document can be typeset identically without +longdesc rmpage after a single cut and paste operation. Local +longdesc configuration can set defaults: for all documents; and by +longdesc class, by printer, and by paper size. The geometry package is +longdesc better if you want to set page layout parameters to particular +longdesc measurements. +containersize 61832 +containerchecksum d1627cfdf5ad3f23d03d4d06a4fa039e2ec7ca924245bbda7333b90a7cab8d1e22937cf23968eda45a2c3ff60dcae8a99e2223f9e235485a30ae68c4db7f901e +doccontainersize 553692 +doccontainerchecksum 25fdd83906edeb10e5493bdb00d05469dbf323bb7bd3df587a5f6dec5af17ca844f27cff4eaca3eaa6b75928cde8a633f59b2029b60f03220d847222f589ddef +docfiles size=194 + RELOC/doc/latex/rmpage/readme details="Readme" + RELOC/doc/latex/rmpage/rmpage-doc.pdf details="Package documentation" + RELOC/doc/latex/rmpage/rmpage-doc.tex + RELOC/doc/latex/rmpage/rmpage.tex + RELOC/doc/latex/rmpage/rmplocal.gfc +runfiles size=66 + RELOC/tex/latex/rmpage/rmpage.sty + RELOC/tex/latex/rmpage/rmpgen.cfg +catalogue-ctan /macros/latex/contrib/rmpage +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics geometry +catalogue-version 0.92 + +name roboto +category Package +revision 50969 +shortdesc Support for the Roboto family of fonts +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Roboto, RobotoCondensed, RobotoMono and +longdesc RobotoSlab families of fonts, designed by Christian Robertson +longdesc for Google. +execute addMap roboto.map +containersize 10630936 +containerchecksum 507a1295f720c47041433239f8e7126498d26413a5db68e33f67026e89ae3a988fecdfd9666606dc668b1bdc83cf35fb246454203dee6a3373406d0ee51fd510 +doccontainersize 404724 +doccontainerchecksum ad420bfe6a819d1cc1beb4dcd18a4daf768d24b8b423fd2e6bb4ac17c4bedff96f82a37e00cb32fd1126f37cd41fb54ee0b03bc935977ec7dfb1b476b33b5b6e +docfiles size=124 + RELOC/doc/fonts/roboto/COPYRIGHT.txt + RELOC/doc/fonts/roboto/ChangeLogLaTeX.txt + RELOC/doc/fonts/roboto/DESCRIPTION.en_us.html + RELOC/doc/fonts/roboto/LICENSE.txt + RELOC/doc/fonts/roboto/README details="Readme" + RELOC/doc/fonts/roboto/RobotoSpecimenBook.pdf + RELOC/doc/fonts/roboto/roboto-samples.pdf details="Font samples" + RELOC/doc/fonts/roboto/roboto-samples.tex +runfiles size=7029 + RELOC/fonts/enc/dvips/roboto/rbto_2cs4gp.enc + RELOC/fonts/enc/dvips/roboto/rbto_2ylw52.enc + RELOC/fonts/enc/dvips/roboto/rbto_35j2t6.enc + RELOC/fonts/enc/dvips/roboto/rbto_54ufeq.enc + RELOC/fonts/enc/dvips/roboto/rbto_5au2tj.enc + RELOC/fonts/enc/dvips/roboto/rbto_5xgh2b.enc + RELOC/fonts/enc/dvips/roboto/rbto_636fvq.enc + RELOC/fonts/enc/dvips/roboto/rbto_643awl.enc + RELOC/fonts/enc/dvips/roboto/rbto_6i2fao.enc + RELOC/fonts/enc/dvips/roboto/rbto_7juiin.enc + RELOC/fonts/enc/dvips/roboto/rbto_adklll.enc + RELOC/fonts/enc/dvips/roboto/rbto_as7fdj.enc + RELOC/fonts/enc/dvips/roboto/rbto_b6sxnv.enc + RELOC/fonts/enc/dvips/roboto/rbto_bopmz4.enc + RELOC/fonts/enc/dvips/roboto/rbto_bsqqk2.enc + RELOC/fonts/enc/dvips/roboto/rbto_bzwjdb.enc + RELOC/fonts/enc/dvips/roboto/rbto_cjgvd6.enc + RELOC/fonts/enc/dvips/roboto/rbto_ddkove.enc + RELOC/fonts/enc/dvips/roboto/rbto_dfqeeu.enc + RELOC/fonts/enc/dvips/roboto/rbto_dqsbwe.enc + RELOC/fonts/enc/dvips/roboto/rbto_e24joy.enc + RELOC/fonts/enc/dvips/roboto/rbto_h6xohf.enc + RELOC/fonts/enc/dvips/roboto/rbto_hsw3yt.enc + RELOC/fonts/enc/dvips/roboto/rbto_ihpqsf.enc + RELOC/fonts/enc/dvips/roboto/rbto_imandq.enc + RELOC/fonts/enc/dvips/roboto/rbto_lhlrii.enc + RELOC/fonts/enc/dvips/roboto/rbto_lxpby6.enc + RELOC/fonts/enc/dvips/roboto/rbto_n6nas2.enc + RELOC/fonts/enc/dvips/roboto/rbto_ogts26.enc + RELOC/fonts/enc/dvips/roboto/rbto_ppfdyj.enc + RELOC/fonts/enc/dvips/roboto/rbto_pxp4cf.enc + RELOC/fonts/enc/dvips/roboto/rbto_qhmgos.enc + RELOC/fonts/enc/dvips/roboto/rbto_qulak4.enc + RELOC/fonts/enc/dvips/roboto/rbto_s7kfgd.enc + RELOC/fonts/enc/dvips/roboto/rbto_sbly3j.enc + RELOC/fonts/enc/dvips/roboto/rbto_schjax.enc + RELOC/fonts/enc/dvips/roboto/rbto_svcybe.enc + RELOC/fonts/enc/dvips/roboto/rbto_swa2hd.enc + RELOC/fonts/enc/dvips/roboto/rbto_t46jwv.enc + RELOC/fonts/enc/dvips/roboto/rbto_tbxwpj.enc + RELOC/fonts/enc/dvips/roboto/rbto_tj42ls.enc + RELOC/fonts/enc/dvips/roboto/rbto_uf77so.enc + RELOC/fonts/enc/dvips/roboto/rbto_usdwn6.enc + RELOC/fonts/enc/dvips/roboto/rbto_wkn3wn.enc + RELOC/fonts/enc/dvips/roboto/rbto_wttfgh.enc + RELOC/fonts/enc/dvips/roboto/rbto_xyzkxs.enc + RELOC/fonts/enc/dvips/roboto/rbto_xzfhjt.enc + RELOC/fonts/enc/dvips/roboto/rbto_z4nc45.enc + RELOC/fonts/enc/dvips/roboto/rbto_zf56p3.enc + RELOC/fonts/enc/dvips/roboto/rbto_zu4wd5.enc + RELOC/fonts/map/dvips/roboto/roboto.map + RELOC/fonts/opentype/google/roboto/Roboto-Black.otf + RELOC/fonts/opentype/google/roboto/Roboto-BlackItalic.otf + RELOC/fonts/opentype/google/roboto/Roboto-Bold.otf + RELOC/fonts/opentype/google/roboto/Roboto-BoldItalic.otf + RELOC/fonts/opentype/google/roboto/Roboto-Italic.otf + RELOC/fonts/opentype/google/roboto/Roboto-Light.otf + RELOC/fonts/opentype/google/roboto/Roboto-LightItalic.otf + RELOC/fonts/opentype/google/roboto/Roboto-Medium.otf + RELOC/fonts/opentype/google/roboto/Roboto-MediumItalic.otf + RELOC/fonts/opentype/google/roboto/Roboto-Regular.otf + RELOC/fonts/opentype/google/roboto/Roboto-Thin.otf + RELOC/fonts/opentype/google/roboto/Roboto-ThinItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoCondensed-Bold.otf + RELOC/fonts/opentype/google/roboto/RobotoCondensed-BoldItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoCondensed-Italic.otf + RELOC/fonts/opentype/google/roboto/RobotoCondensed-Light.otf + RELOC/fonts/opentype/google/roboto/RobotoCondensed-LightItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoCondensed-Regular.otf + RELOC/fonts/opentype/google/roboto/RobotoMono-Bold.otf + RELOC/fonts/opentype/google/roboto/RobotoMono-BoldItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoMono-Italic.otf + RELOC/fonts/opentype/google/roboto/RobotoMono-Light.otf + RELOC/fonts/opentype/google/roboto/RobotoMono-LightItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoMono-Medium.otf + RELOC/fonts/opentype/google/roboto/RobotoMono-MediumItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoMono-Regular.otf + RELOC/fonts/opentype/google/roboto/RobotoMono-Thin.otf + RELOC/fonts/opentype/google/roboto/RobotoMono-ThinItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoSlab-Bold.otf + RELOC/fonts/opentype/google/roboto/RobotoSlab-Light.otf + RELOC/fonts/opentype/google/roboto/RobotoSlab-Regular.otf + RELOC/fonts/opentype/google/roboto/RobotoSlab-Thin.otf + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Black-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Light-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-Thin-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/Roboto-ThinItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Light-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoCondensed-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Light-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Light-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-sc-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSlab-Thin-tlf-ts1.tfm + RELOC/fonts/type1/google/roboto/Roboto-Black.pfb + RELOC/fonts/type1/google/roboto/Roboto-BlackItalic.pfb + RELOC/fonts/type1/google/roboto/Roboto-Bold.pfb + RELOC/fonts/type1/google/roboto/Roboto-BoldItalic.pfb + RELOC/fonts/type1/google/roboto/Roboto-Italic.pfb + RELOC/fonts/type1/google/roboto/Roboto-Light.pfb + RELOC/fonts/type1/google/roboto/Roboto-LightItalic.pfb + RELOC/fonts/type1/google/roboto/Roboto-Medium.pfb + RELOC/fonts/type1/google/roboto/Roboto-MediumItalic.pfb + RELOC/fonts/type1/google/roboto/Roboto-Regular.pfb + RELOC/fonts/type1/google/roboto/Roboto-Thin.pfb + RELOC/fonts/type1/google/roboto/Roboto-ThinItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoCondensed-Bold.pfb + RELOC/fonts/type1/google/roboto/RobotoCondensed-BoldItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoCondensed-Italic.pfb + RELOC/fonts/type1/google/roboto/RobotoCondensed-Light.pfb + RELOC/fonts/type1/google/roboto/RobotoCondensed-LightItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoCondensed-Regular.pfb + RELOC/fonts/type1/google/roboto/RobotoMono-Bold.pfb + RELOC/fonts/type1/google/roboto/RobotoMono-BoldItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoMono-Italic.pfb + RELOC/fonts/type1/google/roboto/RobotoMono-Light.pfb + RELOC/fonts/type1/google/roboto/RobotoMono-LightItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoMono-Medium.pfb + RELOC/fonts/type1/google/roboto/RobotoMono-MediumItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoMono-Regular.pfb + RELOC/fonts/type1/google/roboto/RobotoMono-Thin.pfb + RELOC/fonts/type1/google/roboto/RobotoMono-ThinItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoSlab-Bold.pfb + RELOC/fonts/type1/google/roboto/RobotoSlab-Light.pfb + RELOC/fonts/type1/google/roboto/RobotoSlab-Regular.pfb + RELOC/fonts/type1/google/roboto/RobotoSlab-Thin.pfb + RELOC/fonts/vf/google/roboto/Roboto-Black-lf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-lf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-lf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-lf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-osf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-osf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-osf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-osf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tlf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tosf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Black-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BlackItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-lf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-lf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-lf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-lf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-osf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-osf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-osf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-osf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tlf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tosf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Bold-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-lf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-osf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Italic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-lf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-lf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-lf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-lf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-osf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-osf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-osf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-osf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tlf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tosf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Light-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-lf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-lf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-lf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-lf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-osf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-osf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-osf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-osf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tlf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tosf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Medium-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-lf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-lf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-lf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-lf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-osf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-osf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-osf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-osf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tlf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tosf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Regular-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-lf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-lf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-lf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-lf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-osf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-osf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-osf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-osf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tlf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tosf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-Thin-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/Roboto-ThinItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Bold-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Italic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Light-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-lf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-lf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-osf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-osf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tosf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoCondensed-Regular-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Bold-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Bold-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Bold-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Bold-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Bold-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-BoldItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-BoldItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Italic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Italic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Italic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Italic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Italic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Light-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Light-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Light-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Light-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Light-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Light-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-LightItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-LightItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-LightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-LightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-LightItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Medium-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Medium-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Medium-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Medium-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Medium-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-MediumItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-MediumItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Regular-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Regular-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Regular-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Regular-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Regular-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Thin-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Thin-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Thin-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Thin-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Thin-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Thin-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-Thin-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-ThinItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-ThinItalic-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoMono-ThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-ThinItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-ThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoMono-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Bold-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Bold-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Bold-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Bold-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Bold-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Light-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Light-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Light-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Light-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Light-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Light-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Regular-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Regular-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Regular-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Regular-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Regular-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Thin-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Thin-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Thin-tlf-sc-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Thin-tlf-sc-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Thin-tlf-sc-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Thin-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSlab-Thin-tlf-ts1.vf + RELOC/tex/latex/roboto/LGRRoboto-LF.fd + RELOC/tex/latex/roboto/LGRRoboto-OsF.fd + RELOC/tex/latex/roboto/LGRRoboto-TLF.fd + RELOC/tex/latex/roboto/LGRRoboto-TOsF.fd + RELOC/tex/latex/roboto/LGRRobotoMono-TLF.fd + RELOC/tex/latex/roboto/LGRRobotoSlab-TLF.fd + RELOC/tex/latex/roboto/LY1Roboto-LF.fd + RELOC/tex/latex/roboto/LY1Roboto-OsF.fd + RELOC/tex/latex/roboto/LY1Roboto-TLF.fd + RELOC/tex/latex/roboto/LY1Roboto-TOsF.fd + RELOC/tex/latex/roboto/LY1RobotoMono-TLF.fd + RELOC/tex/latex/roboto/LY1RobotoSlab-TLF.fd + RELOC/tex/latex/roboto/OT1Roboto-LF.fd + RELOC/tex/latex/roboto/OT1Roboto-OsF.fd + RELOC/tex/latex/roboto/OT1Roboto-TLF.fd + RELOC/tex/latex/roboto/OT1Roboto-TOsF.fd + RELOC/tex/latex/roboto/OT1RobotoMono-TLF.fd + RELOC/tex/latex/roboto/OT1RobotoSlab-TLF.fd + RELOC/tex/latex/roboto/T1Roboto-LF.fd + RELOC/tex/latex/roboto/T1Roboto-OsF.fd + RELOC/tex/latex/roboto/T1Roboto-TLF.fd + RELOC/tex/latex/roboto/T1Roboto-TOsF.fd + RELOC/tex/latex/roboto/T1RobotoMono-TLF.fd + RELOC/tex/latex/roboto/T1RobotoSlab-TLF.fd + RELOC/tex/latex/roboto/TS1Roboto-LF.fd + RELOC/tex/latex/roboto/TS1Roboto-OsF.fd + RELOC/tex/latex/roboto/TS1Roboto-TLF.fd + RELOC/tex/latex/roboto/TS1Roboto-TOsF.fd + RELOC/tex/latex/roboto/TS1RobotoMono-TLF.fd + RELOC/tex/latex/roboto/TS1RobotoSlab-TLF.fd + RELOC/tex/latex/roboto/roboto-mono.sty + RELOC/tex/latex/roboto/roboto.sty +catalogue-ctan /fonts/roboto +catalogue-date 2019-04-20 17:03:15 +0200 +catalogue-license apache2lppl +catalogue-topics font font-body font-proportional font-t1enc font-sans font-serif font-type1 font-otf + +name robustcommand +category Package +revision 15878 +shortdesc Declare robust command, with \newcommand checks +relocated 1 +longdesc The package merely provides a variation of +longdesc \DeclareRobustCommand, which checks for the existence of a +longdesc command before declaring it robust. +containersize 1176 +containerchecksum 806f997cf6c0eceec0c8d9b8f8207014c4ab9243f8007fc688674af2fd778455a787b9cf998262fb7d0a92ba8e2ffb597d61950c22a6122ad957a62ea54d9a42 +doccontainersize 57844 +doccontainerchecksum 4d5c8a994edf816d39af12d7881793f0fda0223a3545559255674fa5a08f2d0fc9ad8ea2779b3c8bfe476966045f996b8b8f5da6fdd028188d28ae724c24a222 +docfiles size=19 + RELOC/doc/latex/robustcommand/README details="Readme" + RELOC/doc/latex/robustcommand/robustcommand.pdf details="Benutzerdoku" language="de" +srccontainersize 2852 +srccontainerchecksum 3dfb71a6a73f2ed968777eb1074d65773aaee7c1218b18fddd78e74a86f27d9cbf5fce79c41503c34e497b12543ec2e0c16d9f35d39b893e208a236fd66f4f50 +srcfiles size=3 + RELOC/source/latex/robustcommand/robustcommand.dtx + RELOC/source/latex/robustcommand/robustcommand.ins +runfiles size=1 + RELOC/tex/latex/robustcommand/robustcommand.sty +catalogue-ctan /macros/latex/contrib/robustcommand +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 0.1 + +name robustindex +category Package +revision 49877 +shortdesc Create index with pagerefs +relocated 1 +longdesc Third parties often change the page numbers without rerunning +longdesc makeindex. One would like to make the page numbers in the index +longdesc entries more robust. This bundle provides robustindex.sty and +longdesc robustglossary.sty, which use the \pageref mechanism to +longdesc maintain correct page numbers. +containersize 5032 +containerchecksum 3aeac1a43261302532d7b5ee309d6cd94f54a2b17954c023bc6a94fa89c51291f3c4fd3276b03aa3ec65f4e21556d302c81aec107fac5dcb477941cb474dbbf3 +doccontainersize 420516 +doccontainerchecksum aab461e990176e1d0cb82573edcfe11a4bf668b2d09edff05f673fa20d24ec76464495bebc64086fe3bb4411d5ec9590f43cd57949bedaa3366f6c7313359f56 +docfiles size=123 + RELOC/doc/latex/robustindex/README.md details="Readme" + RELOC/doc/latex/robustindex/multisample.pdf + RELOC/doc/latex/robustindex/multisample.tex + RELOC/doc/latex/robustindex/robustmanual.pdf details="Package documentation" + RELOC/doc/latex/robustindex/robustmanual.tex + RELOC/doc/latex/robustindex/robustsample.pdf details="Example of use" + RELOC/doc/latex/robustindex/robustsample.tex + RELOC/doc/latex/robustindex/stind.html +runfiles size=5 + RELOC/tex/latex/robustindex/robustglossary.sty + RELOC/tex/latex/robustindex/robustindex.sty +catalogue-contact-home https://www.staff.science.uu.nl/~kalle101/stind.html +catalogue-ctan /macros/latex/contrib/robustindex +catalogue-date 2019-01-30 13:41:54 +0100 +catalogue-license lppl1.2 +catalogue-topics index + +name roex +category Package +revision 45818 +catalogue mf-ps +shortdesc Metafont-PostScript conversions +relocated 1 +longdesc A Metafont support package including: epstomf, a tiny AWK +longdesc script for converting EPS files into Metafont; mftoeps for +longdesc generating (encapsulated) PostScript files readable, e.g., by +longdesc CorelDRAW, Adobe Illustrator and Fontographer; a collection of +longdesc routines (in folder progs) for converting Metafont-coded +longdesc graphics into encapsulated PostScript; and roex.mf, which +longdesc provides Metafont macros for removing overlaps and expanding +longdesc strokes. In mftoeps, Metafont writes PostScript code to a +longdesc log-file, from which it may be extracted by either TeX or AWK. +containersize 19996 +containerchecksum 7df2224f9970b72cfa1474898c057799fe42d717876eed864f35aab113d01dfb483edb71f7f4a0a98b6762bbc309ce6fb51e41dc222a6f19be2025f6448fb1cd +srccontainersize 8420 +srccontainerchecksum d89d02dd79142344334678f2d8ec4f34eb825532e8be9260cd08a43b28e1aa94ff5655c1c1eadb2f9a365e51693f6195a4851e1420072c867d8b2c0f1cbcbbb4 +srcfiles size=17 + RELOC/source/metafont/roex/0roex.doc + RELOC/source/metafont/roex/roexsamp/0roexsam.doc + RELOC/source/metafont/roex/roexsamp/es-01.mf + RELOC/source/metafont/roex/roexsamp/es-02.mf + RELOC/source/metafont/roex/roexsamp/es-03.mf + RELOC/source/metafont/roex/roexsamp/ro-01.mf + RELOC/source/metafont/roex/roexsamp/ro-02.mf + RELOC/source/metafont/roex/roexsamp/ro-03.mf + RELOC/source/metafont/roex/roexsamp/ro-04.mf + RELOC/source/metafont/roex/roexsamp/ro-05.mf + RELOC/source/metafont/roex/roexsamp/ro-06.mf + RELOC/source/metafont/roex/roexsamp/ro-07.mf + RELOC/source/metafont/roex/roexsamp/roes-01.mf + RELOC/source/metafont/roex/roexsamp/roes-02.mf + RELOC/source/metafont/roex/roexsamp/roes-03.mf + RELOC/source/metafont/roex/roexsamp/roes-04.mf +runfiles size=17 + RELOC/metafont/roex/roex.mf +catalogue-ctan /graphics/MF-PS +catalogue-date 2016-07-17 14:25:42 +0200 +catalogue-license pd +catalogue-topics graphics-import + +name romanbar +category Package +revision 25005 +shortdesc Write roman number with "bars" +relocated 1 +longdesc 'Bars', in the present context, are lines above and below text +longdesc that abut with the text. Barred roman numerals are sometimes +longdesc found in publications. The package provides a function that +longdesc prints barred roman numerals (converting arabic numerals if +longdesc necessary). The package also provides a predicate \ifnumeric. +containersize 2296 +containerchecksum 205ed0508765e58397953f28e6a1172d8684f8063fbaaf4d741f4f092e1f652879b414a3225c87bac01e4d41f01c2b0a44632e0cb3088c5c174fdbe42cf25272 +doccontainersize 362420 +doccontainerchecksum a5fc8c5d6e6a584de4394c59f9bacddc23fbec8d4639a0476cc0814404f1413774fa2d6bae3d8438cad2eeaacb56405680c0c6bcc152a5e4155ecb73de72f07b +docfiles size=93 + RELOC/doc/latex/romanbar/README details="Readme" + RELOC/doc/latex/romanbar/romanbar-example.pdf details="Sample of usage" + RELOC/doc/latex/romanbar/romanbar-example.tex + RELOC/doc/latex/romanbar/romanbar.pdf details="Package documentation" +srccontainersize 9600 +srccontainerchecksum 9a96ef043dc3542251fab1dc299742b5c322518c61de8d365c290926f2365e5bd6b80a57fcaee19a30ad504ab51b2dcf71170303ab92eac97fe3db4a76dce08c +srcfiles size=10 + RELOC/source/latex/romanbar/romanbar.drv + RELOC/source/latex/romanbar/romanbar.dtx + RELOC/source/latex/romanbar/romanbar.ins +runfiles size=2 + RELOC/tex/latex/romanbar/romanbar.sty +catalogue-ctan /macros/latex/contrib/romanbar +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics numbers +catalogue-version 1.0f + +name romanbarpagenumber +category Package +revision 36236 +shortdesc Typesetting roman page numbers +relocated 1 +longdesc The package romanbar allows to typeset roman numbers with bars. +longdesc This package allows you to use those roman numbers as page +longdesc number. +containersize 876 +containerchecksum 7c8fbfcd5e9ec9e306e7ac836fb4c82db3bc42179bf77502b5299c17c4d3ad515b9397016d600011eb24c5d9f2eda23a485634c5aca3a765653cce32d7bf82c5 +doccontainersize 213792 +doccontainerchecksum a46bbeef023b74c576da84f9791d4d6d47a08091b43c6bf6936c4e17ff54ab2bf5b517cbf1d07e59c077e0981ac989570265df1fde7237ff24727e33d6f1b71c +docfiles size=54 + RELOC/doc/latex/romanbarpagenumber/README details="Readme" + RELOC/doc/latex/romanbarpagenumber/romanbarpagenumber.pdf details="Package documentation" +srccontainersize 3144 +srccontainerchecksum 953af4fff1fe7e6b3e4bfb7447a0da7207f93d7377ce365bfdf563c9dead97860826c8f5b8dc491164437523e27a040fee5b95b58f09f248166268197233f89c +srcfiles size=3 + RELOC/source/latex/romanbarpagenumber/romanbarpagenumber.dtx + RELOC/source/latex/romanbarpagenumber/romanbarpagenumber.ins +runfiles size=1 + RELOC/tex/latex/romanbarpagenumber/romanbarpagenumber.sty +catalogue-also romanbar +catalogue-contact-repository https://github.com/ypid/latex-packages/tree/master/romanbarpagenumber +catalogue-ctan /macros/latex/contrib/romanbarpagenumber +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics numbers page-nos +catalogue-version 1.0 + +name romande +category Package +revision 19537 +catalogue romandeadf +shortdesc Romande ADF fonts and LaTeX support +relocated 1 +longdesc Romande ADF is a serif font family with oldstyle figures, +longdesc designed as a substitute for Times, Tiffany or Caslon. The +longdesc family currently includes upright, italic and small-caps shapes +longdesc in each of regular and demi-bold weights and an italic script +longdesc in regular. The support package renames the fonts according to +longdesc the Karl Berry fontname scheme and defines four families. Two +longdesc of these primarily provide access to the "standard" or default +longdesc characters while the "alternate" families support alternate +longdesc characters, additional ligatures and the long s. The included +longdesc package files provide access to these features in LaTeX as +longdesc explained in the documentation. The LaTeX support requires the +longdesc nfssext-cfr and the xkeyval packages. +execute addMap yrd.map +containersize 471308 +containerchecksum 874883eb3592852dd6dfe2dc675a768bed8db80c0c617cad7c28bbefb2ca111adb410a584f75fad935bfec330765650ea9d0f73c8c5a9fe567526b5fb46ff17e +doccontainersize 279436 +doccontainerchecksum 708ffe5a4dccf8241eaee7d22787e0e30bbd10faa1cfd538836da676cbd4f67b16a80772f8a4cea08f59af6d41a697426c4a4254c481d13ac3a10157b2a679e0 +docfiles size=86 + RELOC/doc/fonts/romande/COPYING + RELOC/doc/fonts/romande/NOTICE.txt + RELOC/doc/fonts/romande/README details="Readme" + RELOC/doc/fonts/romande/manifest.txt + RELOC/doc/fonts/romande/romandeadf.pdf details="Package documentation" + RELOC/doc/fonts/romande/romandeadf.tex +srccontainersize 9684 +srccontainerchecksum 040b154c19ee55910b05d0bfe355bbf000403fcc5c536a081e4569390c599123d64000680cb847ad710204d1c33d7ceb0ab7ea049847ff4ad0762fd9c0acfeeb +srcfiles size=25 + RELOC/source/fonts/romande/reglyph-yrd.tex + RELOC/source/fonts/romande/romande-supp.etx + RELOC/source/fonts/romande/t1-romandeadf-alt.etx + RELOC/source/fonts/romande/t1-romandeadf.etx + RELOC/source/fonts/romande/ts1-euro.etx + RELOC/source/fonts/romande/yrd-drv.tex + RELOC/source/fonts/romande/yrd-map.tex +runfiles size=281 + RELOC/fonts/afm/arkandis/romande/yrdd8a.afm + RELOC/fonts/afm/arkandis/romande/yrddc8a.afm + RELOC/fonts/afm/arkandis/romande/yrddi8a.afm + RELOC/fonts/afm/arkandis/romande/yrdr8a.afm + RELOC/fonts/afm/arkandis/romande/yrdrc8a.afm + RELOC/fonts/afm/arkandis/romande/yrdri8a.afm + RELOC/fonts/afm/arkandis/romande/yrdriw8a.afm + RELOC/fonts/enc/dvips/romande/romande-supp.enc + RELOC/fonts/enc/dvips/romande/t1-romandeadf-alt.enc + RELOC/fonts/enc/dvips/romande/t1-romandeadf.enc + RELOC/fonts/enc/dvips/romande/ts1-euro-yrd.enc + RELOC/fonts/map/dvips/romande/yrd.map + RELOC/fonts/tfm/arkandis/romande/s-yrdd.tfm + RELOC/fonts/tfm/arkandis/romande/s-yrddi.tfm + RELOC/fonts/tfm/arkandis/romande/s-yrdr.tfm + RELOC/fonts/tfm/arkandis/romande/s-yrdri.tfm + RELOC/fonts/tfm/arkandis/romande/s-yrdriw.tfm + RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-alt-yrdd.tfm + RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-alt-yrddi.tfm + RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-alt-yrdr.tfm + RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-alt-yrdri.tfm + RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-alt-yrdriw.tfm + RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-yrdd.tfm + RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-yrddc.tfm + RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-yrddi.tfm + RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-yrdr.tfm + RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-yrdrc.tfm + RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-yrdri.tfm + RELOC/fonts/tfm/arkandis/romande/t1-romandeadf-yrdriw.tfm + RELOC/fonts/tfm/arkandis/romande/ts1-yrdd.tfm + RELOC/fonts/tfm/arkandis/romande/ts1-yrddi.tfm + RELOC/fonts/tfm/arkandis/romande/ts1-yrdr.tfm + RELOC/fonts/tfm/arkandis/romande/ts1-yrdri.tfm + RELOC/fonts/tfm/arkandis/romande/ts1-yrdriw.tfm + RELOC/fonts/tfm/arkandis/romande/yrdd8c.tfm + RELOC/fonts/tfm/arkandis/romande/yrdd8t.tfm + RELOC/fonts/tfm/arkandis/romande/yrdda8t.tfm + RELOC/fonts/tfm/arkandis/romande/yrddai8t.tfm + RELOC/fonts/tfm/arkandis/romande/yrddc8t.tfm + RELOC/fonts/tfm/arkandis/romande/yrddi8c.tfm + RELOC/fonts/tfm/arkandis/romande/yrddi8t.tfm + RELOC/fonts/tfm/arkandis/romande/yrdr8c.tfm + RELOC/fonts/tfm/arkandis/romande/yrdr8t.tfm + RELOC/fonts/tfm/arkandis/romande/yrdra8t.tfm + RELOC/fonts/tfm/arkandis/romande/yrdrai8t.tfm + RELOC/fonts/tfm/arkandis/romande/yrdraiw8t.tfm + RELOC/fonts/tfm/arkandis/romande/yrdrc8t.tfm + RELOC/fonts/tfm/arkandis/romande/yrdri8c.tfm + RELOC/fonts/tfm/arkandis/romande/yrdri8t.tfm + RELOC/fonts/tfm/arkandis/romande/yrdriw8c.tfm + RELOC/fonts/tfm/arkandis/romande/yrdriw8t.tfm + RELOC/fonts/type1/arkandis/romande/yrdd8a.pfb + RELOC/fonts/type1/arkandis/romande/yrdd8a.pfm + RELOC/fonts/type1/arkandis/romande/yrddc8a.pfb + RELOC/fonts/type1/arkandis/romande/yrddc8a.pfm + RELOC/fonts/type1/arkandis/romande/yrddi8a.pfb + RELOC/fonts/type1/arkandis/romande/yrddi8a.pfm + RELOC/fonts/type1/arkandis/romande/yrdr8a.pfb + RELOC/fonts/type1/arkandis/romande/yrdr8a.pfm + RELOC/fonts/type1/arkandis/romande/yrdrc8a.pfb + RELOC/fonts/type1/arkandis/romande/yrdrc8a.pfm + RELOC/fonts/type1/arkandis/romande/yrdri8a.pfb + RELOC/fonts/type1/arkandis/romande/yrdri8a.pfm + RELOC/fonts/type1/arkandis/romande/yrdriw8a.pfb + RELOC/fonts/type1/arkandis/romande/yrdriw8a.pfm + RELOC/fonts/vf/arkandis/romande/yrdd8c.vf + RELOC/fonts/vf/arkandis/romande/yrdd8t.vf + RELOC/fonts/vf/arkandis/romande/yrdda8t.vf + RELOC/fonts/vf/arkandis/romande/yrddai8t.vf + RELOC/fonts/vf/arkandis/romande/yrddc8t.vf + RELOC/fonts/vf/arkandis/romande/yrddi8c.vf + RELOC/fonts/vf/arkandis/romande/yrddi8t.vf + RELOC/fonts/vf/arkandis/romande/yrdr8c.vf + RELOC/fonts/vf/arkandis/romande/yrdr8t.vf + RELOC/fonts/vf/arkandis/romande/yrdra8t.vf + RELOC/fonts/vf/arkandis/romande/yrdrai8t.vf + RELOC/fonts/vf/arkandis/romande/yrdraiw8t.vf + RELOC/fonts/vf/arkandis/romande/yrdrc8t.vf + RELOC/fonts/vf/arkandis/romande/yrdri8c.vf + RELOC/fonts/vf/arkandis/romande/yrdri8t.vf + RELOC/fonts/vf/arkandis/romande/yrdriw8c.vf + RELOC/fonts/vf/arkandis/romande/yrdriw8t.vf + RELOC/tex/latex/romande/romande.sty + RELOC/tex/latex/romande/t1yrd.fd + RELOC/tex/latex/romande/t1yrda.fd + RELOC/tex/latex/romande/t1yrdaw.fd + RELOC/tex/latex/romande/t1yrdw.fd + RELOC/tex/latex/romande/ts1yrd.fd + RELOC/tex/latex/romande/ts1yrda.fd + RELOC/tex/latex/romande/ts1yrdaw.fd + RELOC/tex/latex/romande/ts1yrdw.fd +catalogue-contact-home http://arkandis.tuxfamily.org/ +catalogue-ctan /fonts/romandeadf +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl +catalogue-topics font font-type1 +catalogue-version 1.008-v7-sc + +name romanneg +category Package +revision 20087 +shortdesc Roman page numbers negative +relocated 1 +longdesc Causes the page numbers in the DVI file (as defined by \count0) +longdesc to be negative when roman pagenumbering is in effect. +containersize 1208 +containerchecksum 4195303ca32b46d722bb148ce4079bbea7cec08fc74a7b0cb6232dcce517b7b5a10753be22fbaab62ec11d894955e1368f3a6dc2a2474cf9b9450e035bb73c11 +doccontainersize 184164 +doccontainerchecksum cd583b94911ed57e6c61689d437fb4a55a868813fad5791dfa7231b4cbd8b7d22cf4e6f3fe90e2cd36eb08202f4058abf93b5df2d74e1841070378dc9c31db64 +docfiles size=46 + RELOC/doc/latex/romanneg/romanneg.ltx + RELOC/doc/latex/romanneg/romanneg.pdf details="Package documentation" +runfiles size=1 + RELOC/tex/latex/romanneg/romanneg.sty +catalogue-ctan /macros/latex/contrib/romanneg +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics page-nos + +name romannum +category Package +revision 15878 +shortdesc Generate roman numerals instead of arabic digits +relocated 1 +longdesc The romannum package changes LaTeX generated numbers to be +longdesc printed with roman numerals instead of arabic digits. It +longdesc requires the stdclsdv package. Users of the bookhands fonts may +longdesc find this package useful. +containersize 1684 +containerchecksum 06fb28ffcf6c8212ba3bea5e3fd93fe4a5394ce1cd3977556bdebb982888c2c0f7e45dc751f94b1ecf921c701fe6783166e73a595d5da55e874359b7a4065182 +doccontainersize 126676 +doccontainerchecksum 60caceb87b6d866c905685cd180f0deb73f400b33007e0589e1aa5a0b42ed948d88c672a620ebdd4d78bbf92aa81c1094e4d4d6afcb981747e65596711e112be +docfiles size=37 + RELOC/doc/latex/romannum/README details="Readme" + RELOC/doc/latex/romannum/romannum.pdf details="Package documentation" +srccontainersize 5784 +srccontainerchecksum dd1a19bdb63aad8f3c3458bc000933b9c0d04a3b331c37d84a9e7de4a7027b6cbed113038129a789f43d1049dd72acc432e6cebbce365277026d5e6b5cde328b +srcfiles size=6 + RELOC/source/latex/romannum/romannum.dtx + RELOC/source/latex/romannum/romannum.ins +runfiles size=2 + RELOC/tex/latex/romannum/romannum.sty +catalogue-ctan /macros/latex/contrib/romannum +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics numbers +catalogue-version 1.0b + +name rosario +category Package +revision 40843 +shortdesc Using the free Rosario fonts with LaTeX +relocated 1 +longdesc The package provides the files required to use the Rosario +longdesc fonts with LaTeX. Rosario is a set of four fonts provided by +longdesc Hector Gatti, Adobe Typekit & Omnibus-Type Team under the Open +longdesc Font License (OFL), version 1.1. The fonts are copyright (c) +longdesc 2012-2015, Omnibus-Type. +execute addMap Rosario.map +containersize 268620 +containerchecksum 5ff2ec1e5fced42157208ced9eae958e2d2096e18783fd9a72e76d62311a5b868f3def95374c4b3b1bc5fdd4db5b777ca6b07b1c874257b5a35c9c850737d8d8 +doccontainersize 237296 +doccontainerchecksum 757312a259a8ec1a57ecbd2b641ff2ec519ce7a79f0c9f9e032ba927d08fefca755b44397fb0afd9ad67f1fd140517aee45366f357a675706546b681bb3f440a +docfiles size=61 + RELOC/doc/fonts/rosario/OFL.txt + RELOC/doc/fonts/rosario/README.md details="Readme" + RELOC/doc/fonts/rosario/Rosario.pdf details="Package documentation" +srccontainersize 4368 +srccontainerchecksum 5da475d474bd6d70e85be0eb4d28c46f4f13c30b80e5753f5d7a3d3cf15c765b43ed0818ee5ea8792ef754d407fb8ac7d77001d9e798ab6d09864480a85a61ab +srcfiles size=4 + RELOC/source/fonts/rosario/Rosario.dtx + RELOC/source/fonts/rosario/Rosario.ins +runfiles size=174 + RELOC/fonts/enc/dvips/rosario/ros_amohrd.enc + RELOC/fonts/enc/dvips/rosario/ros_c353pt.enc + RELOC/fonts/enc/dvips/rosario/ros_k6z3ge.enc + RELOC/fonts/enc/dvips/rosario/ros_y2egj5.enc + RELOC/fonts/map/dvips/rosario/Rosario.map + RELOC/fonts/opentype/public/rosario/Rosario-Bold.otf + RELOC/fonts/opentype/public/rosario/Rosario-BoldItalic.otf + RELOC/fonts/opentype/public/rosario/Rosario-Italic.otf + RELOC/fonts/opentype/public/rosario/Rosario-Regular.otf + RELOC/fonts/tfm/public/rosario/Rosario-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-lf-ot1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-lf-ot1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-lf-ot1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/rosario/Rosario-Regular-lf-ts1.tfm + RELOC/fonts/type1/public/rosario/Rosario-Bold.pfb + RELOC/fonts/type1/public/rosario/Rosario-BoldItalic.pfb + RELOC/fonts/type1/public/rosario/Rosario-BoldItalicLCDFJ.pfb + RELOC/fonts/type1/public/rosario/Rosario-BoldLCDFJ.pfb + RELOC/fonts/type1/public/rosario/Rosario-Italic.pfb + RELOC/fonts/type1/public/rosario/Rosario-ItalicLCDFJ.pfb + RELOC/fonts/type1/public/rosario/Rosario-Regular.pfb + RELOC/fonts/type1/public/rosario/Rosario-RegularLCDFJ.pfb + RELOC/fonts/vf/public/rosario/Rosario-Bold-lf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Bold-lf-ot1.vf + RELOC/fonts/vf/public/rosario/Rosario-Bold-lf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Bold-lf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-BoldItalic-lf-ot1.vf + RELOC/fonts/vf/public/rosario/Rosario-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-Italic-lf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Italic-lf-ot1.vf + RELOC/fonts/vf/public/rosario/Rosario-Italic-lf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Italic-lf-ts1.vf + RELOC/fonts/vf/public/rosario/Rosario-Regular-lf-ly1.vf + RELOC/fonts/vf/public/rosario/Rosario-Regular-lf-ot1.vf + RELOC/fonts/vf/public/rosario/Rosario-Regular-lf-t1.vf + RELOC/fonts/vf/public/rosario/Rosario-Regular-lf-ts1.vf + RELOC/tex/latex/rosario/LY1Rosario-LF.fd + RELOC/tex/latex/rosario/OT1Rosario-LF.fd + RELOC/tex/latex/rosario/Rosario.fontspec + RELOC/tex/latex/rosario/Rosario.sty + RELOC/tex/latex/rosario/T1Rosario-LF.fd + RELOC/tex/latex/rosario/TS1Rosario-LF.fd +catalogue-ctan /fonts/rosario +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics font font-sans font-otf font-supp font-type1 +catalogue-version 1.0 + +name rotfloat +category Package +revision 18292 +shortdesc Rotate floats +relocated 1 +longdesc The float package provides commands to define new floats of +longdesc various styles (plain, boxed, ruled, and userdefined ones); the +longdesc rotating package provides new environments (sidewaysfigure and +longdesc sidewaystable) which are rotated by 90 or 270 degrees. But what +longdesc about new rotated floats, e.g. a rotated ruled one? This +longdesc package makes this possible; it builds a bridge between the two +longdesc packages and extends the commands from the float package to +longdesc define rotated versions of the new floats, too. +containersize 1528 +containerchecksum 2976812ba6d6bdb304d56c9f10f08c02aa8acceeeef6eb05ccd0ac7b3e3b86984794017627d8f939994ea0228bef5e9d6cab0b08843e87a840ee5c2390dd0bb7 +doccontainersize 214720 +doccontainerchecksum 020e080e047f20db45bf83ff32c267f5a10b7790adb64495d09ebb3795a55d953154b8afedcfa0214a77f11c35287b18949b8f1fb89b6ee51aac12a04832e922 +docfiles size=58 + RELOC/doc/latex/rotfloat/examples.tex + RELOC/doc/latex/rotfloat/rotfloat.pdf details="Package documentation" +srccontainersize 6108 +srccontainerchecksum b3b986dc11e30b68f75bfa371c85eded713f759f6fa0229857cc05172edd70caafd9124098813cdafd1f060fe57a6667326ee84445fade50bb6acf9d1cb6a95f +srcfiles size=6 + RELOC/source/latex/rotfloat/rotfloat.dtx + RELOC/source/latex/rotfloat/rotfloat.ins +runfiles size=1 + RELOC/tex/latex/rotfloat/rotfloat.sty +catalogue-ctan /macros/latex/contrib/rotfloat +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics float +catalogue-version 1.2 + +name rotpages +category Package +revision 18740 +shortdesc Typeset sets of pages upside-down and backwards +relocated 1 +longdesc The rotpages package allows you to format documents where small +longdesc sets of pages are rotated by 180 degrees and rearranged, so +longdesc that they can be read by turning the printed copy upside-down. +longdesc It was developed for collecting exercises and solutions: using +longdesc the package, you can print the exercise text normally and the +longdesc solutions rotated. +containersize 2296 +containerchecksum a206e4147a68ad0ae750e18ee6a360d6ed2ac91785b75f8fecda4b63db695a36a9602da8dbec1310feed4072f952dc49f4d2c5d2817fe74477759aa55246177f +doccontainersize 125096 +doccontainerchecksum 2723d32029abfc773de8f26a1f08cb3535c5878f63effcb94fcc6a2f98f1a0f9ff3c53df8a4d9c1ce1f99b52b9fd7b2f5c919dd9cc915ea8266835aa85ddbda2 +docfiles size=57 + RELOC/doc/latex/rotpages/Documentation/rotpages-doc.pdf details="Package documentation" + RELOC/doc/latex/rotpages/Documentation/rotpages-doc.tex + RELOC/doc/latex/rotpages/Examples/rotpages-doublecolumn-ex.pdf + RELOC/doc/latex/rotpages/Examples/rotpages-doublecolumn-ex.tex + RELOC/doc/latex/rotpages/Examples/rotpages-fancy-ex.pdf + RELOC/doc/latex/rotpages/Examples/rotpages-fancy-ex.tex + RELOC/doc/latex/rotpages/Examples/rotpages-singlecolumn-ex.pdf + RELOC/doc/latex/rotpages/Examples/rotpages-singlecolumn-ex.tex + RELOC/doc/latex/rotpages/README details="Readme" +runfiles size=2 + RELOC/tex/latex/rotpages/rotpages.sty +catalogue-ctan /macros/latex/contrib/rotpages +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics layout +catalogue-version 3.0 + +name roundbox +category Package +revision 29675 +shortdesc Round boxes in LaTeX +relocated 1 +longdesc This package implements a command \roundbox that can be used, +longdesc in LaTeX, for producing boxes, framed with rounded corners. +containersize 1508 +containerchecksum 078938229ca1ccba4c26f97eae59376afcee469629a7e8704d6e376d5bb256e8991ee1cff17f24e362772b78ed800b57bc6018b10e897daa73c142fafa1f62c7 +doccontainersize 884 +doccontainerchecksum cf0f56e42a82d6ab36fe6af2ba690024cb555192780c04ef1a01e71fd6cdfb803b0129aa95e304de4fc8c1e2d1015b14dbb6631d9773bdf463fa52c22209501f +docfiles size=1 + RELOC/doc/latex/roundbox/README details="Readme" +runfiles size=1 + RELOC/tex/latex/roundbox/roundbox.sty +catalogue-also fancybox +catalogue-contact-bugs https://github.com/bidi-tex/roundbox/issues +catalogue-contact-repository https://github.com/bidi-tex/roundbox +catalogue-ctan /macros/latex/contrib/roundbox +catalogue-date 2018-11-28 20:44:34 +0100 +catalogue-license lppl1.3 +catalogue-topics boxing decoration +catalogue-version 0.2 + +name roundrect +category Package +revision 39796 +shortdesc MetaPost macros for highly configurable rounded rectangles (optionally with text) +relocated 1 +longdesc The roundrect macros for MetaPost provide ways to produce +longdesc rounded rectangles, which may or may not contain a title bar or +longdesc text (the title bar may itself contain text). They are +longdesc extremely configurable. +containersize 2200 +containerchecksum 01cdc4c8443c50a91dd408c52122e8ae65257344176227a508cb082f92d61bc02756d47e27f75d7862d3c87c26add2003604956ad00b448f63b4f6417c520ba6 +doccontainersize 284140 +doccontainerchecksum 35289692327bdc68acbd442588fbd37185f9e00e3e4ca78fe500474c53ef96542042cebd18cba7720bdca0b72f19384fd3b8afcf45447644bb3c560a1385595f +docfiles size=75 + RELOC/doc/metapost/roundrect/CHANGES + RELOC/doc/metapost/roundrect/README details="Readme" + RELOC/doc/metapost/roundrect/lppl.txt + RELOC/doc/metapost/roundrect/roundrect.pdf details="Package documentation" +srccontainersize 7076 +srccontainerchecksum 9866ae92b2c5f8c446ebca5c7afcdf3e8b52f12504b7d74c5ac4faa570a98ab6775c3ba5ad99d4300c1f9b7f92ffa423d5c73991ad47951a4e2bee3eb3bfe473 +srcfiles size=7 + RELOC/source/metapost/roundrect/roundrect.dtx + RELOC/source/metapost/roundrect/roundrect.ins +runfiles size=2 + RELOC/metapost/roundrect/roundrect.mp +catalogue-ctan /graphics/metapost/contrib/macros/roundrect +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics graphics-mpost boxing +catalogue-version 2.2 + +name rrgtrees +category Package +revision 27322 +shortdesc Linguistic tree diagrams for Role and Reference Grammar (RRG) with LaTeX +relocated 1 +longdesc A set of LaTeX macros that makes it easy to produce linguistic +longdesc tree diagrams suitable for Role and Reference Grammar (RRG). +longdesc This package allows the construction of trees with crossing +longdesc lines, as is required by this theory for many languages. There +longdesc is no known limit on number of tree nodes or levels. Requires +longdesc the pst-node and pst-tree LaTeX packages. +containersize 3284 +containerchecksum cf80b48866e36b983527f0646c94fc9776ea799ac475a2c5879a4dcb3b3b0d052e061f871b6eb0a8c0fb1153c0a9f6f0ccfcfb1c6b8f3ff4839c3d454ea3e62c +doccontainersize 90388 +doccontainerchecksum 71992711c27e741403c5f7cc268e8597e2ea17abe42d953bf0c3caf255c0a8673f6210bb808fc70b741c694778f7cc7a45435afe39939b1377951e8e2343d73e +docfiles size=28 + RELOC/doc/latex/rrgtrees/Makefile + RELOC/doc/latex/rrgtrees/README details="Package README" + RELOC/doc/latex/rrgtrees/rrgtrees.pdf details="Package documentation" +srccontainersize 11056 +srccontainerchecksum 8ef5cf9dd617b1f37c57cb70e2aa7b3706d171eaca5e5498fbb3f653f409667a058254fd618681dc2af701d1d9e544d97ebb65c24081ecf1e40cd81f442183af +srcfiles size=9 + RELOC/source/latex/rrgtrees/rrgtrees.dtx + RELOC/source/latex/rrgtrees/rrgtrees.ins +runfiles size=3 + RELOC/tex/latex/rrgtrees/rrgtrees.sty +catalogue-ctan /macros/latex/contrib/rrgtrees +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics tree linguistic +catalogue-version 1.1 + +name rsc +category Package +revision 41923 +shortdesc BibTeX style for use with RSC journals +relocated 1 +longdesc The rsc package provides a BibTeX style in accordance with the +longdesc requirements of the Royal Society of Chemistry. It was +longdesc originally based on the file pccp.bst, but also implements a +longdesc number of styles from the achemso package. The package is now a +longdesc stub for the chemstyle package, which the author developed to +longdesc unify the writing of articles with a chemistry content. +containersize 7124 +containerchecksum abd1d24110722545b93cc16ff35b70c87f467193a33e8da2a04eaff354d89782911e42a46da5d380b9406f923c6fc48d38950d7346cfc799abc0660efa23db8b +doccontainersize 187208 +doccontainerchecksum 8569a90d7f5c532e366901d8bd2bab3d5a32d5b6d1c4cedcf179d1ae96a6c34ef5d294392f93fed589a55baf3ffddee2cd35a67c2aa8fc7e0477b47ce92eb411 +docfiles size=48 + RELOC/doc/latex/rsc/LICENSE.md + RELOC/doc/latex/rsc/README.md details="Readme" + RELOC/doc/latex/rsc/rsc.pdf details="Package documentation" +srccontainersize 14708 +srccontainerchecksum b3f097f76dcd1288a70d7aec88d7ae9fc58bb4b3f3a2589944c379aba887b3e7e6c2fd6b74b2a70de58e8cb078edc0d6ac0b1997078d0c322aca9928ba033202 +srcfiles size=14 + RELOC/source/latex/rsc/rsc.dtx +runfiles size=15 + RELOC/bibtex/bst/rsc/angew.bst + RELOC/bibtex/bst/rsc/rsc.bst + RELOC/tex/latex/rsc/rsc.sty +catalogue-ctan /macros/latex/contrib/rsc +catalogue-date 2016-08-22 22:14:27 +0200 +catalogue-license lppl1.3 +catalogue-topics chemistry journalpub +catalogue-version 3.1f + +name rsfs +category Package +revision 15878 +shortdesc Ralph Smith's Formal Script font +relocated 1 +longdesc The fonts provide uppercase 'formal' script letters for use as +longdesc symbols in scientific and mathematical typesetting (in contrast +longdesc to the informal script fonts such as that used for the +longdesc 'calligraphic' symbols in the TeX maths symbol font). The fonts +longdesc are provided as Metafont source, and as derived Adobe Type 1 +longdesc format. LaTeX support, for using these fonts in mathematics, is +longdesc available via one of the packages calrsfs and mathrsfs. +execute addMixedMap rsfs.map +containersize 56092 +containerchecksum f5d52f49ead227b058841bb88571ae0d6fb40b95dd652536887acf13c0a5dc5b61e3813faaef2effc26539125c2776e113937a1612e7bc7146e7d5517b02aeb6 +doccontainersize 2280 +doccontainerchecksum 2d23715b38d90c686d7edae77f2a774041d3b679035e0399b7b6089f9b17db3ea4c6c3cdd655bb6e5f3a3cae782e30984c1fe89f5f263a0cd86b441c5376848a +docfiles size=2 + RELOC/doc/fonts/rsfs/README details="Readme" + RELOC/doc/fonts/rsfs/README.type1 +runfiles size=35 + RELOC/fonts/afm/public/rsfs/rsfs10.afm + RELOC/fonts/afm/public/rsfs/rsfs5.afm + RELOC/fonts/afm/public/rsfs/rsfs7.afm + RELOC/fonts/map/dvips/rsfs/rsfs.map + RELOC/fonts/source/public/rsfs/rsfs10.mf + RELOC/fonts/source/public/rsfs/rsfs5.mf + RELOC/fonts/source/public/rsfs/rsfs7.mf + RELOC/fonts/source/public/rsfs/script.mf + RELOC/fonts/source/public/rsfs/scriptu.mf + RELOC/fonts/tfm/public/rsfs/rsfs10.tfm + RELOC/fonts/tfm/public/rsfs/rsfs5.tfm + RELOC/fonts/tfm/public/rsfs/rsfs7.tfm + RELOC/fonts/type1/public/rsfs/rsfs10.pfb + RELOC/fonts/type1/public/rsfs/rsfs10.pfm + RELOC/fonts/type1/public/rsfs/rsfs5.pfb + RELOC/fonts/type1/public/rsfs/rsfs5.pfm + RELOC/fonts/type1/public/rsfs/rsfs7.pfb + RELOC/fonts/type1/public/rsfs/rsfs7.pfm + RELOC/tex/plain/rsfs/scrload.tex +catalogue-also rsfso +catalogue-ctan /fonts/rsfs +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics font font-calligraphic font-mf font-type1 + +name rsfso +category Package +revision 37965 +shortdesc A mathematical calligraphic font based on rsfs +relocated 1 +longdesc The package provides virtual fonts and LaTeX support files for +longdesc mathematical calligraphic fonts based on the rsfs Adobe Type 1 +longdesc fonts (which must also be present for successful installation, +longdesc with the slant substantially reduced. The output is quite +longdesc similar to that from the Adobe Mathematical Pi script font. +execute addMap rsfso.map +containersize 3796 +containerchecksum ce6e600f2fd5ce1aba31092c43401feeadc7927d22ab630f0fb28f421bdea858fb9e382f4d0e36036f6f4ecbd1232265216c29b2edcd44583df6fb3340ce468d +doccontainersize 145708 +doccontainerchecksum ff045c68d70079df6d2b21368fe599beb9ac1ba0e339a8c448bd75565774c237520f79fd0e3d119209765eef29f5891dabf689c7756791a91bb7c7ea1d3dcf3e +docfiles size=38 + RELOC/doc/fonts/rsfso/README details="Readme" + RELOC/doc/fonts/rsfso/mh2scr0.png + RELOC/doc/fonts/rsfso/rsfso-doc.pdf details="Package documentation" + RELOC/doc/fonts/rsfso/rsfso-doc.tex +runfiles size=12 + RELOC/fonts/map/dvips/rsfso/rsfso.map + RELOC/fonts/tfm/public/rsfso/rrsfso10.tfm + RELOC/fonts/tfm/public/rsfso/rrsfso5.tfm + RELOC/fonts/tfm/public/rsfso/rrsfso7.tfm + RELOC/fonts/tfm/public/rsfso/rsfso10.tfm + RELOC/fonts/tfm/public/rsfso/rsfso5.tfm + RELOC/fonts/tfm/public/rsfso/rsfso7.tfm + RELOC/fonts/vf/public/rsfso/rsfso10.vf + RELOC/fonts/vf/public/rsfso/rsfso5.vf + RELOC/fonts/vf/public/rsfso/rsfso7.vf + RELOC/tex/latex/rsfso/rsfso.sty + RELOC/tex/latex/rsfso/ursfso.fd +catalogue-also calrsfs mathrsfs +catalogue-ctan /fonts/rsfso +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font font-virtual font-calligraphic +catalogue-version 1.02 + +name rterface +category Package +revision 30084 +shortdesc Access to R analysis from within a document +relocated 1 +longdesc The package mediates interaction between LaTeX and R; it allows +longdesc LaTeX to set R's parameters, and provides code to read R +longdesc output. +containersize 1664 +containerchecksum 3c3cd754ab17d03d50c35ec9824b76b9d4528276fe2b5a882d35df5537ca12f83956b2c596a269f9961f243bbd5e8c394c6f1bd508d07cecae50fa47bf05fd86 +doccontainersize 51296 +doccontainerchecksum c8c38026ce2bf2a996ba40062fe3bce797b381633e4aac50ec438bc9fb567f73ad1c4e764af3cdc816e62713d4f1dd8bf2ab1814b50d086811359e999103c7bf +docfiles size=19 + RELOC/doc/latex/rterface/README details="Readme" + RELOC/doc/latex/rterface/rterface.pdf details="Package documentation" + RELOC/doc/latex/rterface/rterface.tex +runfiles size=1 + RELOC/tex/latex/rterface/rterface.sty +catalogue-ctan /macros/latex/contrib/rterface +catalogue-date 2018-04-22 08:12:20 +0200 +catalogue-license lppl1.2 +catalogue-topics callback statistics + +name rtkinenc +category Package +revision 20003 +shortdesc Input encoding with fallback procedures +relocated 1 +longdesc The rtkinenc package is functionally similar to the standard +longdesc LaTeX package inputenc: both set up active characters so that +longdesc an input character outside the range of 7-bit visible ASCII is +longdesc coverted into one or more corresponding LaTeX commands. The +longdesc main difference lies in that rtkinenc allows the user to +longdesc specify a fallback procedure to use when the text command +longdesc corresponding to some input character isn't available. Names of +longdesc commands in rtkinenc have been selected so that it can read +longdesc inputenc encoding definition files, and the aim is that +longdesc rtkinenc should be backwards compatible with inputenc. rtkinenc +longdesc is not a new version of inputenc though, nor is it part of +longdesc standard LaTeX. For an example of how rtkinenc is used, the +longdesc user may look at the tclldoc class. +containersize 2516 +containerchecksum a1f31a946838123b65124fc7220e77283cf89105ae439f1e851abfc3c30b6a6b7c83bebf676fe47de1dfa9668cfd22c638567ef9a097aa97dacef1f0e3ba1eb7 +doccontainersize 258108 +doccontainerchecksum f3e7b1e7c95af7bf89b58ac949ab5b3fc12d991a436e28196f748ae033c46446a0cb885943777f44af1fe5ad4aa579e0fc43676c44812b01cc64d85e4ae15e4d +docfiles size=65 + RELOC/doc/latex/rtkinenc/README.txt + RELOC/doc/latex/rtkinenc/rtkinenc-doc.pdf details="Package documentation" + RELOC/doc/latex/rtkinenc/rtkinenc-doc.tex +srccontainersize 6632 +srccontainerchecksum 9078c15d4c1531b9ca0b0ea6a2561815538de45dc33a9f8cd8f886cb7ced93a9fdf8296f409516480fb58861b599692982b503bd49568548b4d34743c44ca037 +srcfiles size=7 + RELOC/source/latex/rtkinenc/rtkinenc.dtx + RELOC/source/latex/rtkinenc/rtkinenc.ins +runfiles size=2 + RELOC/tex/latex/rtkinenc/rtkinenc.sty +catalogue-ctan /macros/latex/contrib/rtkinenc +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics inputenc +catalogue-version 1.0 + +name rtklage +category Package +revision 15878 +catalogue ratex +shortdesc A package for German lawyers +relocated 1 +longdesc RATeX is a newly developed bundle of packages and classes +longdesc provided for German lawyers. Now in the early beginning it only +longdesc contains rtklage, a class to make lawsuits. +containersize 1464 +containerchecksum 6e39e34a7c293f503949da66f1d5ebc65ae0388dc56e87992e9fc4daff1a250196afe68150be14ee2ec3242393ce9e5ea7b681cba31b7ed1c2d58526f6506554 +doccontainersize 62656 +doccontainerchecksum 550c21bcd8af04041f1fac11f2be3ae2a1f01265ad6bf31243569820c7b8d83f32ccd0cdbcc4d5a7a5905ae9aa0512a449a1b2d6923affceb344152e6c12d72d +docfiles size=20 + RELOC/doc/latex/rtklage/README details="Readme" language="de" + RELOC/doc/latex/rtklage/bspklage.tex + RELOC/doc/latex/rtklage/rtklage.pdf details="Package documentation" language="de" +runfiles size=1 + RELOC/tex/latex/rtklage/rtklage.cls +catalogue-ctan /macros/latex/contrib/rtklage +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics german legal + +name rubik +category Package +revision 46791 +shortdesc Document Rubik cube configurations and rotation sequences +longdesc The bundle provides four packages: rubikcube provides commands +longdesc for typesetting Rubik cubes and their transformations, +longdesc rubiktwocube provides commands for typesetting Rubik twocubes +longdesc and their transformations, rubikrotation which can process a +longdesc sequence of Rubik rotation moves, with the help of a Perl +longdesc package executed via \write18 (shell escape) commands, and +longdesc rubikpatterns, a collection of well known patterns and their +longdesc associated rotation sequences. +depend rubik.ARCH +containersize 39000 +containerchecksum 67931287ea126947b5b2d567ba355d44ce094b2b527288ce32329de4a73434be9a43cd520e6c24ef570a46a16c0edcf12212f46228ee1bcd2b8a8be7f9db3a7c +doccontainersize 3201592 +doccontainerchecksum 33d5c8210600cb4ce7b1313d1046f6644f0a6648f7ee9676d4d628d042f6501b5e92f2b56a31fbad6f637dc93a460a568be9e1335bd52bcea825f5772b2a9d51 +docfiles size=887 + texmf-dist/doc/latex/rubik/README.txt details="Readme" + texmf-dist/doc/latex/rubik/rubik-doc-figA.pdf + texmf-dist/doc/latex/rubik/rubik-doc-figB.pdf + texmf-dist/doc/latex/rubik/rubik-doc-figC.pdf + texmf-dist/doc/latex/rubik/rubik-doc-figD.pdf + texmf-dist/doc/latex/rubik/rubik-doc-figE.pdf + texmf-dist/doc/latex/rubik/rubik-doc-figF.pdf + texmf-dist/doc/latex/rubik/rubikcube.pdf details="Rubikcube package documentation" + texmf-dist/doc/latex/rubik/rubikexamples.pdf details="Rubik examples" + texmf-dist/doc/latex/rubik/rubikexamples.sh + texmf-dist/doc/latex/rubik/rubikexamples.tex + texmf-dist/doc/latex/rubik/rubikpatterns-doc-figA.pdf + texmf-dist/doc/latex/rubik/rubikpatterns.pdf details="Rubikpatterns package documentation" + texmf-dist/doc/latex/rubik/rubikpatternsLIST.pdf details="List of Rubik patterns" + texmf-dist/doc/latex/rubik/rubikpatternsLIST.sh + texmf-dist/doc/latex/rubik/rubikpatternsLIST.tex + texmf-dist/doc/latex/rubik/rubikrot-doc-figA.pdf + texmf-dist/doc/latex/rubik/rubikrot-doc-figB.pdf + texmf-dist/doc/latex/rubik/rubikrot-doc-figC.pdf + texmf-dist/doc/latex/rubik/rubikrot-doc-figD.pdf + texmf-dist/doc/latex/rubik/rubikrotation.pdf details="Rubikrotation package documentation" + texmf-dist/doc/latex/rubik/rubikrotationPL.pdf + texmf-dist/doc/latex/rubik/rubiktwo-doc-figA.pdf + texmf-dist/doc/latex/rubik/rubiktwocube.pdf details="Rubiktwocube package documentation" + texmf-dist/doc/man/man1/rubikrotation.1 + texmf-dist/doc/man/man1/rubikrotation.man1.pdf +srccontainersize 86520 +srccontainerchecksum 3159acbc71a007877c046f6c075bf271e031feb00cda04c1818e4490396c3fb0651f160c7a98d8d3391efccae6a5b1dfde2155c6bde1c463e1c7416107b4ab90 +srcfiles size=137 + texmf-dist/source/latex/rubik/rubikcube.dtx + texmf-dist/source/latex/rubik/rubikcube.ins + texmf-dist/source/latex/rubik/rubikexamples.bat + texmf-dist/source/latex/rubik/rubikpatterns.dtx + texmf-dist/source/latex/rubik/rubikpatterns.ins + texmf-dist/source/latex/rubik/rubikpatternsLIST.bat + texmf-dist/source/latex/rubik/rubikrotation.dtx + texmf-dist/source/latex/rubik/rubikrotation.ins + texmf-dist/source/latex/rubik/rubiktwocube.dtx + texmf-dist/source/latex/rubik/rubiktwocube.ins +runfiles size=65 + texmf-dist/scripts/rubik/rubikrotation.pl + texmf-dist/tex/latex/rubik/rubikcube.sty + texmf-dist/tex/latex/rubik/rubikpatterns.sty + texmf-dist/tex/latex/rubik/rubikrotation.sty + texmf-dist/tex/latex/rubik/rubiktwocube.sty +catalogue-ctan /macros/latex/contrib/rubik +catalogue-date 2018-03-02 16:59:55 +0100 +catalogue-license lppl1.3 +catalogue-topics puzzle +catalogue-version 5.0 + +name rubik.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of rubik +containersize 348 +containerchecksum 05d1b8a1fdebe87cd8598c78477007090c8dec6b453903d4fadd04f317ea734270e41381dd0faf579d04c6100a4121b8497fe2d506f6faa13c7137d575fc2b27 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/rubikrotation + +name rubik.amd64-freebsd +category Package +revision 32919 +shortdesc amd64-freebsd files of rubik +containersize 348 +containerchecksum 3d5be4d62fc8c903bede5a7023466c129ce80707d36fdd2a1be4277c66a28c3d84b97b4072faad3a87a37aa68e5870f5e305fd3c957abddcbe2292f0630cf6f0 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/rubikrotation + +name rubik.amd64-netbsd +category Package +revision 32919 +shortdesc amd64-netbsd files of rubik +containersize 348 +containerchecksum 2f530300a413fceec30d31b46bf99d5683f7e69b2ca20873c29c6ea0920b3b6f4fab91eb6d38e3c2c626cd0c0f0069151b7dd50caca4cc893ce0b6f4ff09c82c +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/rubikrotation + +name rubik.armhf-linux +category Package +revision 32919 +shortdesc armhf-linux files of rubik +containersize 348 +containerchecksum 677a59994a820a8509809d3eeff84a60447c5e72ac576c5aadc5d788605c38e9a956f08960625d5c3794df12f4bad79ea6f7a098f0941404341c065f93bdf4bd +binfiles arch=armhf-linux size=1 + bin/armhf-linux/rubikrotation + +name rubik.i386-cygwin +category Package +revision 32919 +shortdesc i386-cygwin files of rubik +containersize 344 +containerchecksum 6ed07f4e1adfdb1bb6ab9a3fbdb34f7d3e413c8b762fb38684f55088578bb2acc2d199ed42bc01698f4fd34eff054e79052cf07384a2d8210c5da8503c3b3d95 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/rubikrotation + +name rubik.i386-freebsd +category Package +revision 32919 +shortdesc i386-freebsd files of rubik +containersize 348 +containerchecksum 838d3f3da8f3fd97487b6e2323f8350c64f3b0f326e9bb53b77476b9bc67253c9bc9b135996a4092e4fdb57b3941246840c4519e9c89d866f7dca59f89f76f9a +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/rubikrotation + +name rubik.i386-linux +category Package +revision 32919 +shortdesc i386-linux files of rubik +containersize 348 +containerchecksum 5f0c4f73780e0aeae5e4e950242696d12ba3db322e7927cd7e97c26d0d06d333e289b851dc69f600ea21bb9ee9bcf570927c281703e2b905529ff84d2cee29a2 +binfiles arch=i386-linux size=1 + bin/i386-linux/rubikrotation + +name rubik.i386-netbsd +category Package +revision 32919 +shortdesc i386-netbsd files of rubik +containersize 348 +containerchecksum 4a8560b7a05ec8ba59d97ed29458c27b28c3b98727bca8fee041cdf2c9681139f58813249565e494fe2e48f4e5d666e58456ce548e13c26c889660dde8e77500 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/rubikrotation + +name rubik.i386-solaris +category Package +revision 32919 +shortdesc i386-solaris files of rubik +containersize 348 +containerchecksum 22a85666cb12e632d088deed22e7fc6cebc028afdf29597fab43dcdfc398004460fa1b67ab2c35e42a8e335a535dafcf9efd4108c6c19dd902dcddea549acc3e +binfiles arch=i386-solaris size=1 + bin/i386-solaris/rubikrotation + +name rubik.win32 +category Package +revision 32919 +shortdesc win32 files of rubik +containersize 684 +containerchecksum 9b517494fc20ee689649d3d501f8b6a0df2bcb7ab2d795063da3dff68c5fd39c63f736ebe833eb91e2171c3294980ed9ee96ca0ab17672bf58a9e18ae33aba59 +binfiles arch=win32 size=1 + bin/win32/rubikrotation.exe + +name rubik.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of rubik +containersize 348 +containerchecksum 8604f89df75ee26ce6e0f369d60eec42efd06440a2cbd8c4b51d25936f08e30c0960cb4fdcb6a8a2dfcf73f9b733623b9f0410c6e37f04e9fb613740615ceac9 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/rubikrotation + +name rubik.x86_64-darwin +category Package +revision 32919 +shortdesc x86_64-darwin files of rubik +containersize 348 +containerchecksum ffe04622af37069a3aa1b1fc38b6446f2f34796ba6a58511ce5e0bc7c7ec4848c5d0de885abde731d7c24b42cbf6b9e9c9b4139f65de6c1cfc3604b9a65739a9 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/rubikrotation + +name rubik.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of rubik +containersize 356 +containerchecksum f3927caeef48810ea0e28d8ee871548f7bb56e86e5f02d7ad8a56d2a6cc07e840bd66a47f35474866727bd283f8dba12a7f720b7003b43219f07799b0fbc64c1 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/rubikrotation + +name rubik.x86_64-linux +category Package +revision 32919 +shortdesc x86_64-linux files of rubik +containersize 348 +containerchecksum eb43266a9e5cbf24a8b64b50238376291349a964480afc371a342190367e10e337bd8e7bd19a8e9a288378fc14ef90af6ef98964c8e2ff747c8dfb11e34c4d64 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/rubikrotation + +name rubik.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of rubik +containersize 352 +containerchecksum 937a58d76b3a5bf5bbfc5ad9b65cbc2db23793b6a0a63205e6f5a515741b14b88a26f22e624d4dc7da2fc1f9c8d89ee19f1c47b219792bc637b536195850bd9d +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/rubikrotation + +name rubik.x86_64-solaris +category Package +revision 32919 +shortdesc x86_64-solaris files of rubik +containersize 348 +containerchecksum b1da5dd6f1e7cdf9917ef574e6b9b2d414d5c4b6003f88e03c0c471455ad05b159f802974534d9d4c16e4abcf01b802e5f40b0189ec95b1301ad0ace462bb102 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/rubikrotation + +name ruhyphen +category Package +revision 21081 +shortdesc Russian hyphenation +relocated 1 +longdesc A collection of Russian hyphenation patterns supporting a +longdesc number of Cyrillic font encodings, including T2, UCY (Omega +longdesc Unicode Cyrillic), LCY, LWN (OT2), and koi8-r. +containersize 56732 +containerchecksum d681972cad53b86167f4800f78b5d25de305d2f3f604e6b41b481c432bb9f09a964720fed5b5052cb8a30148da1bdc76306d8edb2139018d83c331d3439de958 +srccontainersize 13656 +srccontainerchecksum df587bb8c81e73f70a93146d6c3a50c2a66b16084e8eab0b01e0aefb3ce073c6b6e812cfd8c5a1520f98ca58e2e2e0634877ca2987742eccc4d7340a7d62e23b +srcfiles size=15 + RELOC/source/generic/ruhyphen/BUGS + RELOC/source/generic/ruhyphen/Makefile + RELOC/source/generic/ruhyphen/README + RELOC/source/generic/ruhyphen/README.ruhyphal + RELOC/source/generic/ruhyphen/hyphen.rules + RELOC/source/generic/ruhyphen/mkcyryo + RELOC/source/generic/ruhyphen/reduce-patt + RELOC/source/generic/ruhyphen/sorthyph + RELOC/source/generic/ruhyphen/sortkoi8 + RELOC/source/generic/ruhyphen/trans +runfiles size=62 + RELOC/tex/generic/ruhyphen/catkoi.tex + RELOC/tex/generic/ruhyphen/cyryoal.tex + RELOC/tex/generic/ruhyphen/cyryoas.tex + RELOC/tex/generic/ruhyphen/cyryoct.tex + RELOC/tex/generic/ruhyphen/cyryodv.tex + RELOC/tex/generic/ruhyphen/cyryomg.tex + RELOC/tex/generic/ruhyphen/cyryovl.tex + RELOC/tex/generic/ruhyphen/cyryozn.tex + RELOC/tex/generic/ruhyphen/enrhm2.tex + RELOC/tex/generic/ruhyphen/hypht2.tex + RELOC/tex/generic/ruhyphen/koi2koi.tex + RELOC/tex/generic/ruhyphen/koi2lcy.tex + RELOC/tex/generic/ruhyphen/koi2ot2.tex + RELOC/tex/generic/ruhyphen/koi2t2a.tex + RELOC/tex/generic/ruhyphen/koi2ucy.tex + RELOC/tex/generic/ruhyphen/ruenhyph.tex + RELOC/tex/generic/ruhyphen/ruhyphal.tex + RELOC/tex/generic/ruhyphen/ruhyphas.tex + RELOC/tex/generic/ruhyphen/ruhyphct.tex + RELOC/tex/generic/ruhyphen/ruhyphdv.tex + RELOC/tex/generic/ruhyphen/ruhyphen.tex + RELOC/tex/generic/ruhyphen/ruhyphmg.tex + RELOC/tex/generic/ruhyphen/ruhyphvl.tex + RELOC/tex/generic/ruhyphen/ruhyphzn.tex +catalogue-ctan /language/hyphenation/ruhyphen +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics hyphenation russian +catalogue-version 1.6 + +name rulerbox +category Package +revision 50984 +shortdesc Draw rulers around a box +relocated 1 +longdesc This is a LaTeX package for drawing rulers around a box. This +longdesc might be useful when showing the absolute size of something in +longdesc electronic documents, or designating the relative scale in +longdesc printed materials. +containersize 1776 +containerchecksum 197588dd36056d6b6e9f7772205cc44e81734cf63dfc83a7c987209df0c2b47f91f460d322df05f123768f3d10d9af8bcdda6619da394fdaf3367be88821a135 +doccontainersize 58888 +doccontainerchecksum b4de5828d5602845217726ded4d56ce6f4008a599bb1ddba89745ab39bfc2ba9ed3fcd1f636cff4743252a975a18ba07925f1e78f81fc8cc2ded80a7cf8b74b2 +docfiles size=18 + RELOC/doc/latex/rulerbox/README.md details="Readme" + RELOC/doc/latex/rulerbox/rulerbox.pdf details="Package documentation" + RELOC/doc/latex/rulerbox/rulerbox.tex +runfiles size=2 + RELOC/tex/latex/rulerbox/rulerbox.sty +catalogue-also fgruler +catalogue-contact-bugs https://github.com/Mikumikunisiteageru/rulerbox/issues +catalogue-contact-home https://github.com/Mikumikunisiteageru/rulerbox +catalogue-contact-support https://github.com/Mikumikunisiteageru/rulerbox/issues +catalogue-ctan /macros/latex/contrib/rulerbox +catalogue-date 2019-04-23 05:04:59 +0200 +catalogue-license lppl1.3c +catalogue-topics misc-support +catalogue-version 1.01 + +name rulercompass +category Package +revision 32392 +shortdesc A TikZ library for straight-edge and compass diagrams +relocated 1 +longdesc The package defines some commands and styles to support drawing +longdesc straight-edge and compass diagrams with TikZ. +containersize 3888 +containerchecksum 8f2e8d9a4d61c3c79e3ef29ae554db2696b9c374fe10f59fe2a4baea33c679a0678a95c30ea1d4310662bb5af6a1b02d88db7bb43610545b1ffb39fba19b5001 +doccontainersize 481212 +doccontainerchecksum 6077a3c137269e5be37b62879c394d800f4bc80cacd1d9600b2aa81503958e2fa29f0364db58c1418bc206db916f84f46cbcf70d0f30a9276a6e78d154150425 +docfiles size=123 + RELOC/doc/latex/rulercompass/README.txt + RELOC/doc/latex/rulercompass/rulercompass.pdf details="Code listing" + RELOC/doc/latex/rulercompass/rulercompass_doc.pdf details="Package documentation" + RELOC/doc/latex/rulercompass/rulercompass_doc.tex +srccontainersize 6072 +srccontainerchecksum 75765738f4d3b635468d8e1ebda805e0fc6e2bd3eccfbcc1594fcce89908834572aeec85fea189368d02d05ba1fff6d0e2bb454ad25bce2b92a45cffd74a979c +srcfiles size=7 + RELOC/source/latex/rulercompass/rulercompass.dtx + RELOC/source/latex/rulercompass/rulercompass.ins +runfiles size=4 + RELOC/tex/latex/rulercompass/tikzlibraryrulercompass.code.tex +catalogue-ctan /graphics/pgf/contrib/rulercompass +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics graphics-in-tex +catalogue-version 1 + +name russ +category Package +revision 25209 +shortdesc LaTeX in Russian, without babel +relocated 1 +longdesc The package aims to facilitate Russian typesetting (based on +longdesc input using MicroSoft Code Page 1251). Russian hyphenation is +longdesc selected, and various mathematical commands are set up in +longdesc Russian style. Furthermore all Cyrillic letters' catcodes are +longdesc set to "letter", so that commands with Cyrillic letters in +longdesc their names may be defined. +containersize 25540 +containerchecksum 11bceea67aae767037d728ab7892eedab312e9477f1f9f7501f9702fca4ceea4e21bd575b1589fb545abdbdc5f5f5315243f77adb4c9b9a2507fb255481c5541 +doccontainersize 297660 +doccontainerchecksum 876cba326071d0f347d9a1a4c1eca692ca743729b9604a51bb5b53de96da6006ff24168040e77df60b1999cb22901b7318669c32378a869081956dde40974802 +docfiles size=89 + RELOC/doc/latex/russ/README details="Readme" language="en" + RELOC/doc/latex/russ/readme.RU.txt details="Readme" language="ru" + RELOC/doc/latex/russ/russ_doc.pdf details="Package documentation" language="ru" + RELOC/doc/latex/russ/russ_doc.tex +runfiles size=50 + RELOC/tex/latex/russ/russ.sty +catalogue-ctan /macros/latex/contrib/russ +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics russian + +name rutitlepage +category Package +revision 51073 +shortdesc Radboud University Titlepage Package +relocated 1 +longdesc This is an unofficial LaTeX package to generate titlepages for +longdesc the Radboud University, Nijmegen. It uses official vector logos +longdesc from the university. This package requires the following other +longdesc LaTeX packages: geometry, graphicx, ifpdf, keyval, iflang, and, +longdesc optionnaly, babel-dutch. +containersize 2658316 +containerchecksum e071bf5dfcb8572dac3287394be5052ca04c6ec90182e306f020ad02c8f4db134c92b41f064423c1063fe5c1c465cf952a8d0d8fec4e917aba82f76850cf38c9 +doccontainersize 191808 +doccontainerchecksum e6884d2eaa6e5fc9448c033f1a48ee218f171d5fc16e7a977db89f7807c0bb6d1bb4c212ee489bd882d87149003d9aea2da3170045e165150bb8f7578b719107 +docfiles size=48 + RELOC/doc/latex/rutitlepage/README.md details="Readme" + RELOC/doc/latex/rutitlepage/rutitlepage.pdf details="Package documentation" +srccontainersize 3708 +srccontainerchecksum bff9526027292b6484d9a5ebe66d57400eace4fb94f39c97569aeda1c1dcb32e30ace085b07bfdac096ca0dcd587bd7ab8509190dfe9dcd08e4fa7d737fed66f +srcfiles size=4 + RELOC/source/latex/rutitlepage/rutitlepage.dtx + RELOC/source/latex/rutitlepage/rutitlepage.ins +runfiles size=1070 + RELOC/tex/latex/rutitlepage/rutitlepage-logo-bw.eps + RELOC/tex/latex/rutitlepage/rutitlepage-logo-bw.pdf + RELOC/tex/latex/rutitlepage/rutitlepage-logo-cmyk.eps + RELOC/tex/latex/rutitlepage/rutitlepage-logo-cmyk.pdf + RELOC/tex/latex/rutitlepage/rutitlepage-logo-nl-bw.eps + RELOC/tex/latex/rutitlepage/rutitlepage-logo-nl-bw.pdf + RELOC/tex/latex/rutitlepage/rutitlepage-logo-nl-cmyk.eps + RELOC/tex/latex/rutitlepage/rutitlepage-logo-nl-cmyk.pdf + RELOC/tex/latex/rutitlepage/rutitlepage-logo.eps + RELOC/tex/latex/rutitlepage/rutitlepage-logo.pdf + RELOC/tex/latex/rutitlepage/rutitlepage.sty +catalogue-contact-bugs https://github.com/dopefishh/rutitlepage/issues +catalogue-contact-repository https://github.com/dopefishh/rutitlepage +catalogue-ctan /macros/latex/contrib/rutitlepage +catalogue-date 2019-05-10 18:23:12 +0200 +catalogue-license lppl1.3 +catalogue-topics titlepage logo +catalogue-version 2.3 + +name rviewport +category Package +revision 23739 +shortdesc Relative Viewport for Graphics Inclusion +relocated 1 +longdesc Package graphicx provides a useful keyword viewport which +longdesc allows to show just a part of an image. However, one needs to +longdesc put there the actual coordinates of the viewport window. +longdesc Sometimes it is useful to have relative coordinates as +longdesc fractions of natural size. For example, one may want to print a +longdesc large image on a spread, putting a half on a verso page, and +longdesc another half on the next recto page. For this one would need a +longdesc viewport occupying exactly one half of the file's bounding box, +longdesc whatever the actual width of the image may be. This package +longdesc adds a new keyword rviewport to the graphicx package +longdesc specifiying Relative Viewport for graphics inclusion: a window +longdesc defined by the given fractions of the natural width and height +longdesc of the image. +containersize 1440 +containerchecksum eb4bd4e75f021db40119cb4d4334611fa80d26885dd4229ace652bf8dbd7b4647a6dc4f45c8be78ad8db0cf1001b7117ce3c38de2483f0dd96da05473543ac10 +doccontainersize 178752 +doccontainerchecksum 10f94dd8b29d354eda99e8c0f15b53baef80714f7212714a94070061e403d45fc5a97d25174f268a14b0f4c924af9b25c81131929c08be1ed9a4e62204f17c22 +docfiles size=73 + RELOC/doc/latex/rviewport/Makefile + RELOC/doc/latex/rviewport/README details="Readme" + RELOC/doc/latex/rviewport/rviewport.pdf details="Package documentation" + RELOC/doc/latex/rviewport/vitruvian.jpg +srccontainersize 3308 +srccontainerchecksum 25e91e8c4f52b1752b32293828d174fcf3cbf6491f38dc2c58be23ef7f2a84570c96606472ed89ed837951bd2ab9bd1e48d4a126beef160c14899b0e70240eb7 +srcfiles size=3 + RELOC/source/latex/rviewport/rviewport.dtx + RELOC/source/latex/rviewport/rviewport.ins +runfiles size=1 + RELOC/tex/latex/rviewport/rviewport.sty +catalogue-also graphicx +catalogue-ctan /macros/latex/contrib/rviewport +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics graphics-incl +catalogue-version 1.0 + +name rvwrite +category Package +revision 19614 +shortdesc Increase the number of available output streams in LaTeX +relocated 1 +longdesc The package addresses, for LaTeX documents, the severe +longdesc limitation on the number of output streams that TeX provides. +longdesc The package uses a single TeX output stream, and writes +longdesc "marked-up" output to this stream. The user may then +longdesc post-process the marked-up output file, using LaTeX, and the +longdesc document's output appears as separate files, according to the +longdesc calls made to the package. The output to be post-processed uses +longdesc macros from the widely-available ProTeX package. +containersize 1540 +containerchecksum c187dcb7e1c72b727cfd0827a55d721c6a094679c1dae27438ed030209042b49c646af20e158900543369ca8ceee9896a9f36de76607f8514004df80e3be15fb +doccontainersize 80392 +doccontainerchecksum 545e5b96a2bb3646a7b4a6eb31d5192ef85dee9ac0b6859f6b414f26c5235651294f486bd132af112a2c6021d6843e6ffef8a8f79b7389b974227bc1eee16230 +docfiles size=26 + RELOC/doc/latex/rvwrite/Makefile + RELOC/doc/latex/rvwrite/README details="Readme" + RELOC/doc/latex/rvwrite/rvwrite-doc.pdf details="Package documentation" + RELOC/doc/latex/rvwrite/rvwrite-doc.tex + RELOC/doc/latex/rvwrite/test.tex +runfiles size=1 + RELOC/tex/latex/rvwrite/rvwrite.sty +catalogue-ctan /macros/latex/contrib/rvwrite +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1.2 + +name ryersonsgsthesis +category Package +revision 50119 +shortdesc Ryerson School of Graduate Studies thesis template +relocated 1 +longdesc This package provides a LaTeX class and template files for +longdesc Ryerson School of Graduate Studies (SGS) theses. +containersize 4256 +containerchecksum 0846fb24c6b96cc30edf46d1311809e1170d3feb13b3c26be4dd330ef8dd856771f257ca197f562ed409815f0edb7e8ea744a38b9098b86a325eda9cd4ad360f +doccontainersize 68364 +doccontainerchecksum b0d57ce3dcab586fdc2e15f6c2291560c43dd772b693ec11e0678e083a1475c21b55601878cf938e666d0f8a5464ffb0b79281b62f4859200fc6cd67b33b8779 +docfiles size=24 + RELOC/doc/latex/ryersonsgsthesis/CHANGELOG.md + RELOC/doc/latex/ryersonsgsthesis/LICENSE + RELOC/doc/latex/ryersonsgsthesis/README.md details="Readme" + RELOC/doc/latex/ryersonsgsthesis/rsgs-example.bib + RELOC/doc/latex/ryersonsgsthesis/rsgs-example.pdf details="Example of use" + RELOC/doc/latex/ryersonsgsthesis/rsgs-example.tex + RELOC/doc/latex/ryersonsgsthesis/rsgs-glossary.tex +runfiles size=4 + RELOC/tex/latex/ryersonsgsthesis/ryersonSGSThesis.cls +catalogue-also ryethesis +catalogue-contact-bugs https://github.com/yshoaib/RyersonSgsThesisTemplateLatex/issues +catalogue-contact-repository https://github.com/yshoaib/RyersonSgsThesisTemplateLatex +catalogue-ctan /macros/latex/contrib/ryersonsgsthesis +catalogue-date 2019-02-26 05:13:11 +0100 +catalogue-license apache2 +catalogue-topics class dissertation +catalogue-version 1.0.3 + +name ryethesis +category Package +revision 33945 +shortdesc Class for Ryerson Unversity Graduate School requirements +relocated 1 +longdesc The class offers support for formatting a thesis, dissertation +longdesc or project according to Ryerson University's School of Graduate +longdesc Studies thesis formatting regulations. +containersize 4700 +containerchecksum 63988ab74eda81270f0e470f3b1d1c772b17668fd9c6526fd8d53f588da8e52d3690b4c3ee898f2b460f83ac44ab4c528a0c6c48abf1a1cbe21427fb4e678a1a +doccontainersize 449056 +doccontainerchecksum 03ef086a51a97ed93038338b99a516ba2898a0097326f4cff3c650c7035acc4bba7ee2fd6458c579a9f1af4ff31334dd22cc23b7004d08e58a259306ee1fbd8e +docfiles size=123 + RELOC/doc/latex/ryethesis/Makefile + RELOC/doc/latex/ryethesis/README details="Readme" + RELOC/doc/latex/ryethesis/figure1.pdf + RELOC/doc/latex/ryethesis/ryesample.bib + RELOC/doc/latex/ryethesis/ryesample.pdf details="Example output" + RELOC/doc/latex/ryethesis/ryesample.tex + RELOC/doc/latex/ryethesis/ryethesis.pdf details="Package documentation" +srccontainersize 12508 +srccontainerchecksum 0754857b37c510f7cc581201c516d3ca1f6e9ed9bcc0825968efbe728a281e2ec73f58f7415efdb07bcdaa66fbbab3178793907b3da17511e69044bbdb2d8aed +srcfiles size=13 + RELOC/source/latex/ryethesis/ryethesis.dtx + RELOC/source/latex/ryethesis/ryethesis.ins +runfiles size=5 + RELOC/tex/latex/ryethesis/ryethesis.cls +catalogue-also ryersonsgsthesis +catalogue-ctan /macros/latex/contrib/ryethesis +catalogue-date 2019-02-24 09:28:55 +0100 +catalogue-license lppl1.3 +catalogue-topics dissertation +catalogue-version 1.36 + +name sa-tikz +category Package +revision 32815 +shortdesc TikZ library to draw switching architectures +relocated 1 +longdesc The package provides a library that offers an easy way to draw +longdesc switching architectures and to customize their aspect. +containersize 5480 +containerchecksum e30f8b6dd6f082bd127077fc5040ffef53e2c2fe43afd023bf0fa9dd8094769e2d40734dcf412d477989b746e1e5141cc42cc082e9f5b26e5986cc91f8336ec1 +doccontainersize 891020 +doccontainerchecksum d6586a6196fa9ec8c70ff6410873604d987394ff09e93462548baa202f22bda479fb4f76f66fb710b8daeb7b34e455225c997f07cc9360a09c5cbc4c45697a5e +docfiles size=244 + RELOC/doc/latex/sa-tikz/README details="Readme" + RELOC/doc/latex/sa-tikz/pgfmanual-en-macros.tex + RELOC/doc/latex/sa-tikz/sa-tikz-doc.pdf details="Package documentation" + RELOC/doc/latex/sa-tikz/sa-tikz-doc.tex +runfiles size=26 + RELOC/tex/latex/sa-tikz/sa-tikz.sty + RELOC/tex/latex/sa-tikz/tikzlibraryswitching-architectures.code.tex +catalogue-ctan /graphics/pgf/contrib/sa-tikz +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl1.3 +catalogue-topics graphics-use comp-net +catalogue-version 0.7a + +name sageep +category Package +revision 15878 +shortdesc Format papers for the annual meeting of EEGS +relocated 1 +longdesc The class provides formatting for papers for the annual meeting +longdesc of the Environmental and Engineering Geophysical Society (EEGS) +longdesc ("Application of Geophysics to Engineering and Environmental +longdesc Problems", known as SAGEEP). +containersize 7772 +containerchecksum d8e107109129636cf68d88c96a36de87b95dcfc4e154dae51a1145d7a0c58a17ca12e95b1b2fa1312c6c50c5cc02be35b23168d8eca69a7643695c38c5d0bcd6 +doccontainersize 282876 +doccontainerchecksum 7f92c14d432ca5960669a8faace80ff6d4e97d9a021281c847b7f19942f4c1a06da3657e8992998e91bd1d69398b3fe379da690f81be28cb4ddc3980262c56b5 +docfiles size=98 + RELOC/doc/latex/sageep/README details="Readme" + RELOC/doc/latex/sageep/sageep.bib + RELOC/doc/latex/sageep/sageep.pdf details="Package documentation" + RELOC/doc/latex/sageep/sageep_graphic2009.jpg + RELOC/doc/latex/sageep/sample.pdf details="Formatted sample" + RELOC/doc/latex/sageep/sample.tex +srccontainersize 6944 +srccontainerchecksum 25f06543efc104bdcfcd81fbae6182498f23a7d1d958671cac945f5442a59a71033bf3fd174bd41c438c7a6a066d41b1e4a375b559b14bff6e705ad2ca894b05 +srcfiles size=6 + RELOC/source/latex/sageep/Makefile + RELOC/source/latex/sageep/sageep.dtx + RELOC/source/latex/sageep/sageep.ins +runfiles size=9 + RELOC/bibtex/bst/sageep/sageep.bst + RELOC/tex/latex/sageep/sageep.cls +catalogue-ctan /macros/latex/contrib/sageep +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics journalpub +catalogue-version 1.0 + +name sanitize-umlaut +category Package +revision 41365 +shortdesc Sanitize umlauts for MakeIndex and pdfLaTeX +relocated 1 +longdesc This packages sanitizes umlauts to be used directly in index +longdesc entries for MakeIndex and friends with pdfLaTeX. This means +longdesc that inside \index an umlaut can be used as "U or as U. In both +longdesc cases, the letter is written as "U into the raw index file for +longdesc correct processing with MakeIndex and pdfLaTeX. +containersize 1516 +containerchecksum c6c3efc6577ef83da2a4ce3465955f19063e2fee725bd1109f5f48c14cb34da7a633b37297788e5f1445f98d8614e474835df43feb4de6288104a81a4909be8a +doccontainersize 368704 +doccontainerchecksum adb489023414b980a224f9416ad420f68918ea60b8d2d0cb8f059c0c20063fdc7bc5eae724d2013037eda052e66200115518445d5bb17140389349bab70a2d4a +docfiles size=108 + RELOC/doc/latex/sanitize-umlaut/README details="Readme" + RELOC/doc/latex/sanitize-umlaut/german.ist + RELOC/doc/latex/sanitize-umlaut/sanitize-umlaut.doc.sty + RELOC/doc/latex/sanitize-umlaut/sanitize-umlaut.pdf details="Package documentation" + RELOC/doc/latex/sanitize-umlaut/sanitize-umlaut.tex +runfiles size=1 + RELOC/tex/latex/sanitize-umlaut/sanitize-umlaut.sty +catalogue-contact-repository https://github.com/T-F-S/sanitize-umlaut +catalogue-ctan /macros/latex/contrib/sanitize-umlaut +catalogue-date 2018-01-07 12:06:50 +0100 +catalogue-license lppl1.3 +catalogue-topics utf8-adapt enc-juggle index-proc +catalogue-version 1.00 + +name sanskrit +category Package +revision 42925 +shortdesc Sanskrit support +relocated 1 +longdesc A font and pre-processor suitable for the production of +longdesc documents written in Sanskrit. Type 1 versions of the fonts are +longdesc available. +containersize 16300 +containerchecksum 0dbfc19e366fc2e69c3700e0c532c280f1e444d0d6b44b37fd1565a64b0f883901c209fb1cab7c6a35cc9ffc23d32b5cd78ad2ee3e52d7cccf41a80a8fdd6c57 +doccontainersize 526860 +doccontainerchecksum a5cb05e7fa966cb09d84d0dae14eec25354156f8acb5811f4867b3724fbed62df94305ea9062772879c5cfadffde8265e7c9de062bfdf6756cf2843053caf9fd +docfiles size=156 + RELOC/doc/latex/sanskrit/README.md details="Readme" + RELOC/doc/latex/sanskrit/README.pdf + RELOC/doc/latex/sanskrit/build-ctan-dist.sh + RELOC/doc/latex/sanskrit/sktdoc.pdf details="Package documentation" + RELOC/doc/latex/sanskrit/sktdoc.skt +srccontainersize 22212 +srccontainerchecksum b2644a58e3a64122b5b5765547959d888837b3353b70b5bfc7a98a17f380de4f6e2fafbdc20c0458860baf28fc373ddf9c173737d8c776867bfe7c3bc68ef40a +srcfiles size=28 + RELOC/source/latex/sanskrit/skt.c +runfiles size=40 + RELOC/fonts/source/public/sanskrit/skt10.mf + RELOC/fonts/source/public/sanskrit/skt8.mf + RELOC/fonts/source/public/sanskrit/skt9.mf + RELOC/fonts/source/public/sanskrit/sktb10.mf + RELOC/fonts/source/public/sanskrit/sktbs10.mf + RELOC/fonts/source/public/sanskrit/sktchars.mf + RELOC/fonts/source/public/sanskrit/sktdefs.mf + RELOC/fonts/source/public/sanskrit/sktf10.mf + RELOC/fonts/source/public/sanskrit/sktfs10.mf + RELOC/fonts/source/public/sanskrit/sktligs.mf + RELOC/fonts/source/public/sanskrit/skts10.mf + RELOC/fonts/tfm/public/sanskrit/skt10.tfm + RELOC/fonts/tfm/public/sanskrit/skt8.tfm + RELOC/fonts/tfm/public/sanskrit/skt9.tfm + RELOC/fonts/tfm/public/sanskrit/sktb10.tfm + RELOC/fonts/tfm/public/sanskrit/sktbs10.tfm + RELOC/fonts/tfm/public/sanskrit/sktf10.tfm + RELOC/fonts/tfm/public/sanskrit/sktfs10.tfm + RELOC/fonts/tfm/public/sanskrit/skts10.tfm + RELOC/tex/latex/sanskrit/ot1skt.fd + RELOC/tex/latex/sanskrit/skt.sty +catalogue-also devanagari +catalogue-ctan /language/sanskrit +catalogue-date 2017-01-11 20:18:05 +0100 +catalogue-license lppl +catalogue-topics font font-mf indic +catalogue-version 2.2.1 + +name sanskrit-t1 +category Package +revision 35737 +shortdesc Type 1 version of 'skt' fonts for Sanskrit +relocated 1 +longdesc The sanskrit-t1 font package provides Type 1 version of Charles +longdesc Wikner's skt font series for the Sanskrit language. +execute addMap skt.map +containersize 454148 +containerchecksum 8db4a734c40bcbefca8d1ac4e82b01b890bda547d3aa68e8f3a93a06d75335cd41a6c594563d0c7ec9a18a08868ff7b5e8a04b11a64110f80ded65cf5d809bf0 +doccontainersize 290432 +doccontainerchecksum 68259865bdde464c565c50497257c0f45f6cc1fcd01533087afabae35ed6d2d53e2160c9c3f867c254e301058e599bbcbf1c3fcaadb7ee7ab25c364642084073 +docfiles size=83 + RELOC/doc/fonts/sanskrit-t1/README details="Readme" + RELOC/doc/fonts/sanskrit-t1/sktdoc.pdf details="Package documentation" +runfiles size=127 + RELOC/fonts/map/dvips/sanskrit-t1/skt.map + RELOC/fonts/type1/public/sanskrit-t1/skt10.pfb + RELOC/fonts/type1/public/sanskrit-t1/skt8.pfb + RELOC/fonts/type1/public/sanskrit-t1/skt9.pfb + RELOC/fonts/type1/public/sanskrit-t1/sktb10.pfb + RELOC/fonts/type1/public/sanskrit-t1/sktbs10.pfb + RELOC/fonts/type1/public/sanskrit-t1/sktf10.pfb + RELOC/fonts/type1/public/sanskrit-t1/sktfs10.pfb + RELOC/fonts/type1/public/sanskrit-t1/skts10.pfb +catalogue-ctan /fonts/ps-type1/sanskrit +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font font-type1 indic + +name sansmath +category Package +revision 17997 +shortdesc Maths in a sans font +relocated 1 +longdesc The package defines a new math version sans, and a command +longdesc \sansmath that behaves somewhat like \boldmath +containersize 3356 +containerchecksum 075b9a32512f191767bfc739b833497eed371c2078fc8511ba507b19e2744675bfb3caeda40da484ae559aaff44aa4f6b2f7f5baaeb0c30076654593216fa5e4 +doccontainersize 182264 +doccontainerchecksum 7923dcfcf20c945dc61af747000694c59c61982417307356ef2ee335f7a3eac7e44974a334072125ed4a3ec3b29caf342f15dfda1fdbc348a5e2cfb8a4dc2469 +docfiles size=48 + RELOC/doc/latex/sansmath/miscdoc.sty + RELOC/doc/latex/sansmath/sansmath.pdf details="Package documentation" + RELOC/doc/latex/sansmath/sansmath.tex +runfiles size=2 + RELOC/tex/latex/sansmath/sansmath.sty +catalogue-also sfmath +catalogue-ctan /macros/latex/contrib/sansmath +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics font-supp-maths +catalogue-version 1.1 + +name sansmathaccent +category Package +revision 30187 +shortdesc Correct placement of accents in sans-serif maths +relocated 1 +longdesc Sans serif maths (produced by the beamer class or the sfmath +longdesc package) often has accents positioned incorrectly. The package +longdesc fixes the positioning of such accents when the default font +longdesc (cmssi) is used for sans serif maths. +execute addMap sansmathaccent.map +containersize 10580 +containerchecksum cbd8d7cdae74d34afc00da3e300cfe6e40b2217b6060732df0ff76a6484ab8dfc8c8921e3552a4cb06a1acd05de07d490a956464df3de97bc987a8a11cca32f0 +doccontainersize 157400 +doccontainerchecksum 38cee91050b9b38cd5ad84b755782177854f9208e73205d51cc419feab34461a37a557660920412b936c8e7a9f9e1554574a1bd61a36c000f2422c709043666f +docfiles size=44 + RELOC/doc/fonts/sansmathaccent/README details="Readme" + RELOC/doc/fonts/sansmathaccent/sansmathaccent.pdf details="Package documentation" + RELOC/doc/fonts/sansmathaccent/sansmathaccent.tex +runfiles size=19 + RELOC/fonts/map/dvips/sansmathaccent/sansmathaccent.map + RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssi10.tfm + RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssi12.tfm + RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssi17.tfm + RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssi8.tfm + RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssi9.tfm + RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssxi10.tfm + RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssxi12.tfm + RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssxi17.tfm + RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssxi8.tfm + RELOC/fonts/tfm/public/sansmathaccent/mathkerncmssxi9.tfm + RELOC/fonts/vf/public/sansmathaccent/mathkerncmssxi10.vf + RELOC/fonts/vf/public/sansmathaccent/mathkerncmssxi12.vf + RELOC/fonts/vf/public/sansmathaccent/mathkerncmssxi17.vf + RELOC/fonts/vf/public/sansmathaccent/mathkerncmssxi8.vf + RELOC/fonts/vf/public/sansmathaccent/mathkerncmssxi9.vf + RELOC/tex/latex/sansmathaccent/ot1mathkerncmss.fd + RELOC/tex/latex/sansmathaccent/sansmathaccent.sty +catalogue-ctan /fonts/sansmathaccent +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics font font-virtual font-supp-maths + +name sansmathfonts +category Package +revision 50756 +shortdesc Correct placement of accents in sans-serif maths +relocated 1 +longdesc Sans serif small caps and math fonts for use with Computer +longdesc Modern. +execute addMap sansmathfonts.map +containersize 4275144 +containerchecksum 58a8af596ffbcd896032a5a423abcad8c3cb99b9ea4c094ac249a1bfe7b48819e8b5d962e845df5a55f46f43bfca6c3bc0cd1426b71c9a46a5b45f63af30e56d +doccontainersize 268316 +doccontainerchecksum adec2b1f7825c980ae2cba33cb6fefbce0206da513692993fedebf26d20d489c2d719efc180a6972871aef0e2f345901a001a9dbf5cbd036b3e236ad87d52f0c +docfiles size=70 + RELOC/doc/fonts/sansmathfonts/README details="Readme" + RELOC/doc/fonts/sansmathfonts/sansmathfonts.pdf details="Package documentation" + RELOC/doc/fonts/sansmathfonts/sansmathfonts.tex +runfiles size=1987 + RELOC/fonts/map/dvips/sansmathfonts/sansmathfonts.map + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXi10.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXi12.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXi17.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXi8.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXi9.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXibx10.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXibx12.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXibx17.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXibx8.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXibx9.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXibxcsc10.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXicsc10.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXicsc8.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXicsc9.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXicsci10.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXicsci8.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXicsci9.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXii10.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXii12.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXii17.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXii8.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXii9.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXixi10.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXixi12.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXixi17.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXixi8.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXixi9.mf + RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXixicsc10.mf + RELOC/fonts/source/public/sansmathfonts/cmssbsy10.mf + RELOC/fonts/source/public/sansmathfonts/cmssbsy5.mf + RELOC/fonts/source/public/sansmathfonts/cmssbsy6.mf + RELOC/fonts/source/public/sansmathfonts/cmssbsy7.mf + RELOC/fonts/source/public/sansmathfonts/cmssbsy8.mf + RELOC/fonts/source/public/sansmathfonts/cmssbsy9.mf + RELOC/fonts/source/public/sansmathfonts/cmssbxcsc10.mf + RELOC/fonts/source/public/sansmathfonts/cmsscsc10.mf + RELOC/fonts/source/public/sansmathfonts/cmsscsc8.mf + RELOC/fonts/source/public/sansmathfonts/cmsscsc9.mf + RELOC/fonts/source/public/sansmathfonts/cmsscsci10.mf + RELOC/fonts/source/public/sansmathfonts/cmsscsci8.mf + RELOC/fonts/source/public/sansmathfonts/cmsscsci9.mf + RELOC/fonts/source/public/sansmathfonts/cmssex10.mf + RELOC/fonts/source/public/sansmathfonts/cmssex7.mf + RELOC/fonts/source/public/sansmathfonts/cmssex8.mf + RELOC/fonts/source/public/sansmathfonts/cmssex9.mf + RELOC/fonts/source/public/sansmathfonts/cmssmi10.mf + RELOC/fonts/source/public/sansmathfonts/cmssmi5.mf + RELOC/fonts/source/public/sansmathfonts/cmssmi6.mf + RELOC/fonts/source/public/sansmathfonts/cmssmi7.mf + RELOC/fonts/source/public/sansmathfonts/cmssmi8.mf + RELOC/fonts/source/public/sansmathfonts/cmssmi9.mf + RELOC/fonts/source/public/sansmathfonts/cmssmib10.mf + RELOC/fonts/source/public/sansmathfonts/cmssmib5.mf + RELOC/fonts/source/public/sansmathfonts/cmssmib6.mf + RELOC/fonts/source/public/sansmathfonts/cmssmib7.mf + RELOC/fonts/source/public/sansmathfonts/cmssmib8.mf + RELOC/fonts/source/public/sansmathfonts/cmssmib9.mf + RELOC/fonts/source/public/sansmathfonts/cmsssy10.mf + RELOC/fonts/source/public/sansmathfonts/cmsssy5.mf + RELOC/fonts/source/public/sansmathfonts/cmsssy6.mf + RELOC/fonts/source/public/sansmathfonts/cmsssy7.mf + RELOC/fonts/source/public/sansmathfonts/cmsssy8.mf + RELOC/fonts/source/public/sansmathfonts/cmsssy9.mf + RELOC/fonts/source/public/sansmathfonts/cmssu10.mf + RELOC/fonts/source/public/sansmathfonts/cmssxicsc10.mf + RELOC/fonts/source/public/sansmathfonts/eczi.mf + RELOC/fonts/source/public/sansmathfonts/eczi0500.mf + RELOC/fonts/source/public/sansmathfonts/eczi0600.mf + RELOC/fonts/source/public/sansmathfonts/eczi0700.mf + RELOC/fonts/source/public/sansmathfonts/eczi0800.mf + RELOC/fonts/source/public/sansmathfonts/eczi0900.mf + RELOC/fonts/source/public/sansmathfonts/eczi1000.mf + RELOC/fonts/source/public/sansmathfonts/eczi1095.mf + RELOC/fonts/source/public/sansmathfonts/eczi1200.mf + RELOC/fonts/source/public/sansmathfonts/eczi1440.mf + RELOC/fonts/source/public/sansmathfonts/eczi1728.mf + RELOC/fonts/source/public/sansmathfonts/eczi2074.mf + RELOC/fonts/source/public/sansmathfonts/eczi2488.mf + RELOC/fonts/source/public/sansmathfonts/eczi2986.mf + RELOC/fonts/source/public/sansmathfonts/eczi3583.mf + RELOC/fonts/source/public/sansmathfonts/eczo.mf + RELOC/fonts/source/public/sansmathfonts/eczo0500.mf + RELOC/fonts/source/public/sansmathfonts/eczo0600.mf + RELOC/fonts/source/public/sansmathfonts/eczo0700.mf + RELOC/fonts/source/public/sansmathfonts/eczo0800.mf + RELOC/fonts/source/public/sansmathfonts/eczo0900.mf + RELOC/fonts/source/public/sansmathfonts/eczo1000.mf + RELOC/fonts/source/public/sansmathfonts/eczo1095.mf + RELOC/fonts/source/public/sansmathfonts/eczo1200.mf + RELOC/fonts/source/public/sansmathfonts/eczo1440.mf + RELOC/fonts/source/public/sansmathfonts/eczo1728.mf + RELOC/fonts/source/public/sansmathfonts/eczo2074.mf + RELOC/fonts/source/public/sansmathfonts/eczo2488.mf + RELOC/fonts/source/public/sansmathfonts/eczo2986.mf + RELOC/fonts/source/public/sansmathfonts/eczo3583.mf + RELOC/fonts/source/public/sansmathfonts/eczx.mf + RELOC/fonts/source/public/sansmathfonts/eczx0500.mf + RELOC/fonts/source/public/sansmathfonts/eczx0600.mf + RELOC/fonts/source/public/sansmathfonts/eczx0700.mf + RELOC/fonts/source/public/sansmathfonts/eczx0800.mf + RELOC/fonts/source/public/sansmathfonts/eczx0900.mf + RELOC/fonts/source/public/sansmathfonts/eczx1000.mf + RELOC/fonts/source/public/sansmathfonts/eczx1095.mf + RELOC/fonts/source/public/sansmathfonts/eczx1200.mf + RELOC/fonts/source/public/sansmathfonts/eczx1440.mf + RELOC/fonts/source/public/sansmathfonts/eczx1728.mf + RELOC/fonts/source/public/sansmathfonts/eczx2074.mf + RELOC/fonts/source/public/sansmathfonts/eczx2488.mf + RELOC/fonts/source/public/sansmathfonts/eczx2986.mf + RELOC/fonts/source/public/sansmathfonts/eczx3583.mf + RELOC/fonts/source/public/sansmathfonts/eczz.mf + RELOC/fonts/source/public/sansmathfonts/eczz0500.mf + RELOC/fonts/source/public/sansmathfonts/eczz0600.mf + RELOC/fonts/source/public/sansmathfonts/eczz0700.mf + RELOC/fonts/source/public/sansmathfonts/eczz0800.mf + RELOC/fonts/source/public/sansmathfonts/eczz0900.mf + RELOC/fonts/source/public/sansmathfonts/eczz1000.mf + RELOC/fonts/source/public/sansmathfonts/eczz1095.mf + RELOC/fonts/source/public/sansmathfonts/eczz1200.mf + RELOC/fonts/source/public/sansmathfonts/eczz1440.mf + RELOC/fonts/source/public/sansmathfonts/eczz1728.mf + RELOC/fonts/source/public/sansmathfonts/eczz2074.mf + RELOC/fonts/source/public/sansmathfonts/eczz2488.mf + RELOC/fonts/source/public/sansmathfonts/eczz2986.mf + RELOC/fonts/source/public/sansmathfonts/eczz3583.mf + RELOC/fonts/source/public/sansmathfonts/sans-IPiXi.mf + RELOC/fonts/source/public/sansmathfonts/sans-IPiXicsc.mf + RELOC/fonts/source/public/sansmathfonts/sans-amsya.mf + RELOC/fonts/source/public/sansmathfonts/sans-amsyb.mf + RELOC/fonts/source/public/sansmathfonts/sans-asymbols.mf + RELOC/fonts/source/public/sansmathfonts/sans-bigdel.mf + RELOC/fonts/source/public/sansmathfonts/sans-bigint.mf + RELOC/fonts/source/public/sansmathfonts/sans-bigop.mf + RELOC/fonts/source/public/sansmathfonts/sans-bsymbols.mf + RELOC/fonts/source/public/sansmathfonts/sans-calu.mf + RELOC/fonts/source/public/sansmathfonts/sans-csc.mf + RELOC/fonts/source/public/sansmathfonts/sans-greekl.mf + RELOC/fonts/source/public/sansmathfonts/sans-greeku.mf + RELOC/fonts/source/public/sansmathfonts/sans-mathex.mf + RELOC/fonts/source/public/sansmathfonts/sans-mathint.mf + RELOC/fonts/source/public/sansmathfonts/sans-mathsl.mf + RELOC/fonts/source/public/sansmathfonts/sans-mathsy.mf + RELOC/fonts/source/public/sansmathfonts/sans-roman.mf + RELOC/fonts/source/public/sansmathfonts/sans-romanu.mf + RELOC/fonts/source/public/sansmathfonts/sans-romms.mf + RELOC/fonts/source/public/sansmathfonts/sans-slantms.mf + RELOC/fonts/source/public/sansmathfonts/sans-sym.mf + RELOC/fonts/source/public/sansmathfonts/sans-symbol.mf + RELOC/fonts/source/public/sansmathfonts/sans-xbbold.mf + RELOC/fonts/source/public/sansmathfonts/sansfontbase.mf + RELOC/fonts/source/public/sansmathfonts/ssesint10.mf + RELOC/fonts/source/public/sansmathfonts/ssesint7.mf + RELOC/fonts/source/public/sansmathfonts/ssesint8.mf + RELOC/fonts/source/public/sansmathfonts/ssesint9.mf + RELOC/fonts/source/public/sansmathfonts/ssmsam10.mf + RELOC/fonts/source/public/sansmathfonts/ssmsam5.mf + RELOC/fonts/source/public/sansmathfonts/ssmsam6.mf + RELOC/fonts/source/public/sansmathfonts/ssmsam7.mf + RELOC/fonts/source/public/sansmathfonts/ssmsam8.mf + RELOC/fonts/source/public/sansmathfonts/ssmsam9.mf + RELOC/fonts/source/public/sansmathfonts/ssmsbm10.mf + RELOC/fonts/source/public/sansmathfonts/ssmsbm5.mf + RELOC/fonts/source/public/sansmathfonts/ssmsbm6.mf + RELOC/fonts/source/public/sansmathfonts/ssmsbm7.mf + RELOC/fonts/source/public/sansmathfonts/ssmsbm8.mf + RELOC/fonts/source/public/sansmathfonts/ssmsbm9.mf + RELOC/fonts/tfm/public/sansmathfonts/cmsmf10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmf12.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmf17.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmf8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmf9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXi10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXi12.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXi17.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXi8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXi9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXibx10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXibx12.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXibx17.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXibx8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXibx9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXibxcsc10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXicsc10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXicsc8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXicsc9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXicsci10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXicsci8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXicsci9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXii10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXii12.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXii17.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXii8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXii9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXixi10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXixi12.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXixi17.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXixi8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXixi9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfIPiXixicsc10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfbx10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfbx12.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfbx17.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfbx8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfbx9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfbxcsc10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfcsc10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfcsc8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfcsc9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfcsci10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfcsci8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfcsci9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfi10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfi12.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfi17.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfi8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfi9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfxi10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfxi12.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfxi17.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfxi8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfxi9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsmfxicsc10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssbsy10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssbsy5.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssbsy6.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssbsy7.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssbsy8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssbsy9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssbxcsc10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsscsc10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsscsc8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsscsc9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsscsci10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsscsci8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsscsci9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssex10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssex7.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssex8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssex9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssmi10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssmi5.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssmi6.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssmi7.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssmi8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssmi9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssmib10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssmib5.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssmib6.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssmib7.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssmib8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssmib9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsssy10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsssy5.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsssy6.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsssy7.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsssy8.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmsssy9.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssu10.tfm + RELOC/fonts/tfm/public/sansmathfonts/cmssxicsc10.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi0500.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi0600.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi0700.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi0800.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi0900.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi1000.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi1095.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi1200.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi1440.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi1728.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi2074.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi2488.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi2986.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczi3583.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo0500.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo0600.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo0700.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo0800.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo0900.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo1000.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo1095.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo1200.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo1440.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo1728.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo2074.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo2488.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo2986.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczo3583.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx0500.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx0600.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx0700.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx0800.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx0900.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx1000.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx1095.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx1200.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx1440.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx1728.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx2074.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx2488.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx2986.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczx3583.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz0500.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz0600.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz0700.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz0800.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz0900.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz1000.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz1095.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz1200.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz1440.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz1728.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz2074.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz2488.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz2986.tfm + RELOC/fonts/tfm/public/sansmathfonts/eczz3583.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssesint10.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssesint7.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssesint8.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssesint9.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssmsam10.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssmsam5.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssmsam6.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssmsam7.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssmsam8.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssmsam9.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssmsbm10.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssmsbm5.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssmsbm6.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssmsbm7.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssmsbm8.tfm + RELOC/fonts/tfm/public/sansmathfonts/ssmsbm9.tfm + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXi10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXi12.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXi17.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXi8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXi9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXibx10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXibx12.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXibx17.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXibx8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXibx9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXibxcsc10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXicsc10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXicsc8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXicsc9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXicsci10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXicsci8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXicsci9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXii10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXii12.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXii17.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXii8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXii9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXixi10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXixi12.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXixi17.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXixi8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXixi9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsmfIPiXixicsc10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssbsy10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssbsy5.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssbsy6.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssbsy7.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssbsy8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssbsy9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssbx12.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssbx17.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssbx8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssbx9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssbxcsc10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsscsc10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsscsc8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsscsc9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsscsci10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsscsci8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsscsci9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssex10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssex7.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssex8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssex9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssmi10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssmi5.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssmi6.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssmi7.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssmi8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssmi9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssmib10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssmib5.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssmib6.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssmib7.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssmib8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssmib9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsssy10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsssy5.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsssy6.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsssy7.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsssy8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmsssy9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssu10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssxi10.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssxi12.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssxi17.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssxi8.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssxi9.pfb + RELOC/fonts/type1/public/sansmathfonts/cmssxicsc10.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi0500.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi0600.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi0700.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi0800.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi0900.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi1000.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi1095.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi1200.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi1440.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi1728.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi2074.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi2488.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi2986.pfb + RELOC/fonts/type1/public/sansmathfonts/eczi3583.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo0500.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo0600.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo0700.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo0800.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo0900.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo1000.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo1095.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo1200.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo1440.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo1728.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo2074.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo2488.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo2986.pfb + RELOC/fonts/type1/public/sansmathfonts/eczo3583.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx0500.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx0600.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx0700.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx0800.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx0900.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx1000.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx1095.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx1200.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx1440.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx1728.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx2074.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx2488.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx2986.pfb + RELOC/fonts/type1/public/sansmathfonts/eczx3583.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz0500.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz0600.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz0700.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz0800.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz0900.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz1000.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz1095.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz1200.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz1440.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz1728.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz2074.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz2488.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz2986.pfb + RELOC/fonts/type1/public/sansmathfonts/eczz3583.pfb + RELOC/fonts/type1/public/sansmathfonts/ssesint10.pfb + RELOC/fonts/type1/public/sansmathfonts/ssesint7.pfb + RELOC/fonts/type1/public/sansmathfonts/ssesint8.pfb + RELOC/fonts/type1/public/sansmathfonts/ssesint9.pfb + RELOC/fonts/type1/public/sansmathfonts/ssmsam10.pfb + RELOC/fonts/type1/public/sansmathfonts/ssmsam5.pfb + RELOC/fonts/type1/public/sansmathfonts/ssmsam6.pfb + RELOC/fonts/type1/public/sansmathfonts/ssmsam7.pfb + RELOC/fonts/type1/public/sansmathfonts/ssmsam8.pfb + RELOC/fonts/type1/public/sansmathfonts/ssmsam9.pfb + RELOC/fonts/type1/public/sansmathfonts/ssmsbm10.pfb + RELOC/fonts/type1/public/sansmathfonts/ssmsbm5.pfb + RELOC/fonts/type1/public/sansmathfonts/ssmsbm6.pfb + RELOC/fonts/type1/public/sansmathfonts/ssmsbm7.pfb + RELOC/fonts/type1/public/sansmathfonts/ssmsbm8.pfb + RELOC/fonts/type1/public/sansmathfonts/ssmsbm9.pfb + RELOC/fonts/vf/public/sansmathfonts/cmsmf10.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmf12.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmf17.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmf8.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmf9.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfbx10.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfbx12.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfbx17.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfbx8.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfbx9.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfbxcsc10.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfcsc10.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfcsc8.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfcsc9.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfcsci10.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfcsci8.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfcsci9.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfi10.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfi12.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfi17.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfi8.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfi9.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfxi10.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfxi12.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfxi17.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfxi8.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfxi9.vf + RELOC/fonts/vf/public/sansmathfonts/cmsmfxicsc10.vf + RELOC/tex/latex/sansmathfonts/omlcmssm.fd + RELOC/tex/latex/sansmathfonts/omscmsssy.fd + RELOC/tex/latex/sansmathfonts/omxcmssex.fd + RELOC/tex/latex/sansmathfonts/ot1cmsmf.fd + RELOC/tex/latex/sansmathfonts/ot1xcmss.fd + RELOC/tex/latex/sansmathfonts/sansmathfonts.sty + RELOC/tex/latex/sansmathfonts/t1xcmss.fd + RELOC/tex/latex/sansmathfonts/ucmsmf.fd + RELOC/tex/latex/sansmathfonts/ussesint.fd + RELOC/tex/latex/sansmathfonts/ussmsa.fd + RELOC/tex/latex/sansmathfonts/ussmsb.fd + RELOC/tex/latex/sansmathfonts/uxcmss.fd +catalogue-ctan /fonts/sansmathfonts +catalogue-date 2019-04-04 19:50:42 +0200 +catalogue-license lppl1.3 +catalogue-topics font font-cm font-maths font-mf font-type1 + +name sapthesis +category Package +revision 48365 +shortdesc Typeset theses for Sapienza-University, Rome +relocated 1 +longdesc The class will typeset Ph.D., Master, and Bachelor theses that +longdesc adhere to the publishing guidelines of the Sapienza-University +longdesc of Rome. +containersize 46664 +containerchecksum 92253d6532c6740ae1bd25fdc76b566ea2d488f31e6a24f90e3b55ddc15d471b6c4ce5c4e7ef29c9a416d9810af49b04ab51530e9594c39beb19fffdc066a917 +doccontainersize 203504 +doccontainerchecksum a1d8c40975283a7301c1a842355149f4ae291fd7fd72cc5a44a292f96558b79bae734ec12a78b429c333aadd6f433e9603f7cc75a71eba84d42294461e87767f +docfiles size=95 + RELOC/doc/latex/sapthesis/README details="Readme" + RELOC/doc/latex/sapthesis/examples/Laurea.tex + RELOC/doc/latex/sapthesis/examples/LaureaMagistrale.tex + RELOC/doc/latex/sapthesis/examples/LaureaMagistrale_eng.tex + RELOC/doc/latex/sapthesis/examples/LaureaMagistrale_ita.tex + RELOC/doc/latex/sapthesis/examples/Laurea_ita.tex + RELOC/doc/latex/sapthesis/examples/Master.tex + RELOC/doc/latex/sapthesis/examples/PhD.tex + RELOC/doc/latex/sapthesis/examples/Specialization.tex + RELOC/doc/latex/sapthesis/examples/TFA.tex + RELOC/doc/latex/sapthesis/sapthesis-doc.pdf details="Package documentation" + RELOC/doc/latex/sapthesis/sapthesis-doc.tex + RELOC/doc/latex/sapthesis/sapthesis.layout +runfiles size=30 + RELOC/bibtex/bst/sapthesis/sapthesis.bst + RELOC/tex/latex/sapthesis/sapienza-MLblack-pos.pdf + RELOC/tex/latex/sapthesis/sapienza-MLred-pos.pdf + RELOC/tex/latex/sapthesis/sapthesis.cls +catalogue-ctan /macros/latex/contrib/sapthesis +catalogue-date 2018-08-07 08:46:21 +0200 +catalogue-license lppl1.3 +catalogue-topics dissertation +catalogue-version 4.1 + +name sasnrdisplay +category Package +revision 45963 +shortdesc Typeset SAS or R code or output +relocated 1 +longdesc The SASnRdisplay package serves as a front-end to listings, +longdesc which permits statisticians and others to import source code +longdesc and the results of their calculations or simulations into LaTeX +longdesc projects. The package is also capable of overloading the Sweave +longdesc and SASweave packages. +containersize 7312 +containerchecksum 58cac1a9ca8311c570f8261014a4cbc52b2b1386196d9c12de1f7f7ac780a163626a21081005bd4a02f70f95ad0e3873e844b8520104939e8b1116b674104ad9 +doccontainersize 211572 +doccontainerchecksum 5d6024b9bf8fe91cef2e0427f33d9fa8b5fff78e2721afc4884ee83a4ea302a5c7b3bfd38ad8be05ebf5b021885d13938bf9424369a44f5701b29ffb6c015d77 +docfiles size=61 + RELOC/doc/latex/sasnrdisplay/README details="Readme" + RELOC/doc/latex/sasnrdisplay/SASnRdisplay.pdf details="Package documentation" + RELOC/doc/latex/sasnrdisplay/SASnRdisplay.tex +runfiles size=7 + RELOC/tex/latex/sasnrdisplay/SASnRdisplay.cfg + RELOC/tex/latex/sasnrdisplay/SASnRdisplay.sty +catalogue-ctan /macros/latex/contrib/sasnrdisplay +catalogue-date 2018-04-22 08:20:41 +0200 +catalogue-license lppl1.3 +catalogue-topics listing statistics +catalogue-version 0.95 + +name sauerj +category Package +revision 15878 +shortdesc A bundle of utilities by Jonathan Sauer +relocated 1 +longdesc The bundle consists of: a tool for collecting text for later +longdesc re-use, a tool for typesetting the "meta-information" within a +longdesc text, a tool for use in constructing macros with multiple +longdesc optional parameters, a package for multiple column parallel +longdesc texts, a tool for processing key-value structured lists, and +longdesc macros for typesetting a number as a German-language string. +containersize 5004 +containerchecksum a4fe5bad7f3d5c895d6166846100cabb1b59e5f37c06d21e451acbaeed0847ab93d9995e70209ab18cc55bf8c78a6c83cbbdd49a45a4cfe511cdad41baf3ddfb +doccontainersize 543096 +doccontainerchecksum 3ec0f5c2132a809b4f2f945255f0806508a3dfa3733119368ba59e4dcf5304ac9876ea5f05912faf926db651d1aaf4a3a1c40744fe7d3a077d8bd9dde2676754 +docfiles size=255 + RELOC/doc/latex/sauerj/README details="Readme" + RELOC/doc/latex/sauerj/collect.pdf + RELOC/doc/latex/sauerj/metainfo.pdf + RELOC/doc/latex/sauerj/optparams.pdf + RELOC/doc/latex/sauerj/parcolumns.pdf + RELOC/doc/latex/sauerj/processkv.pdf + RELOC/doc/latex/sauerj/zahl2string.pdf +srccontainersize 29484 +srccontainerchecksum 05d2adc3b802e3c338dd92818cf7ce4d3bd6964dba8522bf4628bfc2d13939bde47cd0892b4fb629270d5e9104b9577fe6e3ba6eb71ca60a07f5e6441b0f572b +srcfiles size=41 + RELOC/source/latex/sauerj/collect.dtx + RELOC/source/latex/sauerj/collect.ins + RELOC/source/latex/sauerj/metainfo.dtx + RELOC/source/latex/sauerj/metainfo.ins + RELOC/source/latex/sauerj/optparams.dtx + RELOC/source/latex/sauerj/optparams.ins + RELOC/source/latex/sauerj/parcolumns.dtx + RELOC/source/latex/sauerj/parcolumns.ins + RELOC/source/latex/sauerj/processkv.dtx + RELOC/source/latex/sauerj/processkv.ins + RELOC/source/latex/sauerj/zahl2string.dtx + RELOC/source/latex/sauerj/zahl2string.ins +runfiles size=8 + RELOC/tex/latex/sauerj/collect.sty + RELOC/tex/latex/sauerj/metainfo.sty + RELOC/tex/latex/sauerj/optparams.sty + RELOC/tex/latex/sauerj/parcolumns.sty + RELOC/tex/latex/sauerj/processkv.sty + RELOC/tex/latex/sauerj/zahl2string.sty +catalogue-ctan /macros/latex/contrib/sauerj +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics collection + +name sauter +category Package +revision 13293 +shortdesc Wide range of design sizes for CM fonts +relocated 1 +longdesc Extensions, originally to the CM fonts, providing a +longdesc parameterization scheme to build Metafont fonts at true design +longdesc sizes, for a large range of sizes. The scheme has now been +longdesc extended to a range of other fonts, including the AMS fonts, +longdesc bbm, bbold, rsfs and wasy fonts. +containersize 12500 +containerchecksum 17fc32a3dae358be5215301abe13d9e865ff9f52f58cdc849d5fc80aeb1a79723d0a39282383086282fbddcaeda0fe586cd3043edd582e0addc0b223bc3ee756 +runfiles size=61 + RELOC/fonts/source/public/sauter/b-cmb.mf + RELOC/fonts/source/public/sauter/b-cmbsy.mf + RELOC/fonts/source/public/sauter/b-cmbx.mf + RELOC/fonts/source/public/sauter/b-cmbxsl.mf + RELOC/fonts/source/public/sauter/b-cmbxti.mf + RELOC/fonts/source/public/sauter/b-cmcsc.mf + RELOC/fonts/source/public/sauter/b-cmdunh.mf + RELOC/fonts/source/public/sauter/b-cmex.mf + RELOC/fonts/source/public/sauter/b-cmff.mf + RELOC/fonts/source/public/sauter/b-cmfi.mf + RELOC/fonts/source/public/sauter/b-cmfib.mf + RELOC/fonts/source/public/sauter/b-cminch.mf + RELOC/fonts/source/public/sauter/b-cmitt.mf + RELOC/fonts/source/public/sauter/b-cmmi.mf + RELOC/fonts/source/public/sauter/b-cmmib.mf + RELOC/fonts/source/public/sauter/b-cmr.mf + RELOC/fonts/source/public/sauter/b-cmsl.mf + RELOC/fonts/source/public/sauter/b-cmsltt.mf + RELOC/fonts/source/public/sauter/b-cmss.mf + RELOC/fonts/source/public/sauter/b-cmssbx.mf + RELOC/fonts/source/public/sauter/b-cmssdc.mf + RELOC/fonts/source/public/sauter/b-cmssi.mf + RELOC/fonts/source/public/sauter/b-cmssq.mf + RELOC/fonts/source/public/sauter/b-cmssqi.mf + RELOC/fonts/source/public/sauter/b-cmssxi.mf + RELOC/fonts/source/public/sauter/b-cmsy.mf + RELOC/fonts/source/public/sauter/b-cmtcsc.mf + RELOC/fonts/source/public/sauter/b-cmtex.mf + RELOC/fonts/source/public/sauter/b-cmti.mf + RELOC/fonts/source/public/sauter/b-cmtt.mf + RELOC/fonts/source/public/sauter/b-cmu.mf + RELOC/fonts/source/public/sauter/b-cmvtt.mf + RELOC/fonts/source/public/sauter/c-bmath.mf + RELOC/fonts/source/public/sauter/c-cmbx.mf + RELOC/fonts/source/public/sauter/c-cmex.mf + RELOC/fonts/source/public/sauter/c-cmff.mf + RELOC/fonts/source/public/sauter/c-cmmi.mf + RELOC/fonts/source/public/sauter/c-cmr.mf + RELOC/fonts/source/public/sauter/c-cmss.mf + RELOC/fonts/source/public/sauter/c-cmssbx.mf + RELOC/fonts/source/public/sauter/c-cmssq.mf + RELOC/fonts/source/public/sauter/c-cmsy.mf + RELOC/fonts/source/public/sauter/c-cmti.mf + RELOC/fonts/source/public/sauter/c-cmtt.mf + RELOC/fonts/source/public/sauter/c-sigma.mf +catalogue-ctan /fonts/cm/sauter +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics font font-mf +catalogue-version 2.4 + +name sauterfonts +category Package +revision 15878 +shortdesc Use Sauter's fonts in LaTeX +relocated 1 +longdesc The package provides font definition files (plus a replacement +longdesc for the package exscale) to access many of the fonts in +longdesc Sauter's collection. These fonts are available in all point +longdesc sizes and look nicer for such "intermediate" document sizes as +longdesc 11pt. Also included is the package sbbm, an alternative to +longdesc access the bbm fonts. +containersize 3968 +containerchecksum 4d7e491a7a6a22fd6ad8f407cbc8c041434466850e2e5efd46897843281cb71e046fc6cb849cb091cbf05191c45c52a6cb3e0d806eccb9133fddda9c8f305969 +doccontainersize 624 +doccontainerchecksum 16647b89752d1871c798f80be91bacf375ae9a4d5199ef7417edb4ff019d7aae548fbbbbde47f84cd5c7c36ec4988ad1df82735f4aeaeb40180b07a86dceb5a7 +docfiles size=1 + RELOC/doc/latex/sauterfonts/README details="Readme" +srccontainersize 4908 +srccontainerchecksum d8379fb3c2dfc5dcd9fc5c22101855a27ef5de3ac377f1e6a56bfd397888c5f7f94dd37c24c6625a9dc40f15160721c468b5a5bbe8a35f98f983755889e250d8 +srcfiles size=6 + RELOC/source/latex/sauterfonts/sauterfonts.fdd + RELOC/source/latex/sauterfonts/sauterfonts.ins +runfiles size=30 + RELOC/tex/latex/sauterfonts/sbbm.sty + RELOC/tex/latex/sauterfonts/sexscale.sty + RELOC/tex/latex/sauterfonts/somlcmm.fd + RELOC/tex/latex/sauterfonts/somlcmr.fd + RELOC/tex/latex/sauterfonts/somscmr.fd + RELOC/tex/latex/sauterfonts/somscmsy.fd + RELOC/tex/latex/sauterfonts/somxcmex.fd + RELOC/tex/latex/sauterfonts/sot1cmdh.fd + RELOC/tex/latex/sauterfonts/sot1cmfib.fd + RELOC/tex/latex/sauterfonts/sot1cmfr.fd + RELOC/tex/latex/sauterfonts/sot1cmr.fd + RELOC/tex/latex/sauterfonts/sot1cmss.fd + RELOC/tex/latex/sauterfonts/sot1cmtt.fd + RELOC/tex/latex/sauterfonts/sot1cmvtt.fd + RELOC/tex/latex/sauterfonts/subbm.fd + RELOC/tex/latex/sauterfonts/subbmdh.fd + RELOC/tex/latex/sauterfonts/subbmfib.fd + RELOC/tex/latex/sauterfonts/subbmss.fd + RELOC/tex/latex/sauterfonts/subbmtt.fd + RELOC/tex/latex/sauterfonts/subbmvtt.fd + RELOC/tex/latex/sauterfonts/subbold.fd + RELOC/tex/latex/sauterfonts/sucmr.fd + RELOC/tex/latex/sauterfonts/sucmss.fd + RELOC/tex/latex/sauterfonts/sucmtt.fd + RELOC/tex/latex/sauterfonts/sulasy.fd + RELOC/tex/latex/sauterfonts/sumsa.fd + RELOC/tex/latex/sauterfonts/sumsb.fd + RELOC/tex/latex/sauterfonts/sursfs.fd + RELOC/tex/latex/sauterfonts/sustmry.fd + RELOC/tex/latex/sauterfonts/suwasy.fd +catalogue-ctan /macros/latex/contrib/sauterfonts +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics font-supp + +name savefnmark +category Package +revision 15878 +shortdesc Save name of the footnote mark for reuse +relocated 1 +longdesc Sometimes the same footnote applies to more than one location +longdesc in a table. With this package the mark of a footnote can be +longdesc saved into a name, and re-used subsequently without creating +longdesc another footnote at the bottom. +containersize 1380 +containerchecksum 2d39c1246bc9c5c28222a6ce96b93bc0c1e93c3155f68f44843b5560b548191ad3b608f24b5c444b834fc441238a0d2174a9a8ec006f01b160f77159decfeeb0 +doccontainersize 173704 +doccontainerchecksum 9ca251e6d17373e5d6f308d2e75896aaa3e44d0f5883be65f7629f922f0eda296c963530e8fc1c80073e0706c2c72f97d062cd731481654c0564cdb695eaa86a +docfiles size=46 + RELOC/doc/latex/savefnmark/savefnmark.pdf details="Package documentation" +srccontainersize 3980 +srccontainerchecksum 984807d4efb4b24445dec6742e0328274527ef3c7ddb3df57a5d941531d1e634b5d672c9a510b62f7053d69c10668c311457b3a1065e1775f964e9a74ad027a2 +srcfiles size=5 + RELOC/source/latex/savefnmark/savefnmark.drv + RELOC/source/latex/savefnmark/savefnmark.dtx + RELOC/source/latex/savefnmark/savefnmark.ins +runfiles size=1 + RELOC/tex/latex/savefnmark/savefnmark.sty +catalogue-also fixfoot +catalogue-ctan /macros/latex/contrib/savefnmark +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics footnote +catalogue-version 1.0 + +name savesym +category Package +revision 31565 +shortdesc Redefine symbols where names conflict +relocated 1 +longdesc There are a number of symbols (e.g., \Square) that are defined +longdesc by several packages. In order to typeset all the variants in a +longdesc document, we have to give the glyph a unique name. To do that, +longdesc we define \savesymbol{XXX}, which renames a symbol from \XXX to +longdesc \origXXX, and \restoresymbols{yyy}{XXX}, which renames \origXXX +longdesc back to \XXX and defines a new command, \yyyXXX, which +longdesc corresponds to the most recently loaded version of \XXX. +containersize 1356 +containerchecksum 212ea18ebb424f9b64ca9c75a783dee9ceebac09adcd6ff6c721d90796bf4121aa8710935529451e6f9a4de9c3cb5910b6c07d6fd6b7093c4b9904348f43a1fb +runfiles size=1 + RELOC/tex/latex/savesym/savesym.sty +catalogue-ctan /macros/latex/contrib/savesym/savesym.sty +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1.2 + +name savetrees +category Package +revision 40525 +shortdesc Optimise the use of each page of a LaTeX document +relocated 1 +longdesc The goal of the savetrees package is to pack as much text as +longdesc possible onto each page of a LaTeX document. Admittedly, this +longdesc makes the document far less attractive. Nevertheless, savetrees +longdesc is a simple way to save paper when printing draft copies of a +longdesc document. It can also be useful when trying to meet a tight +longdesc page-length requirement for a conference or journal submission. +longdesc Most of the package options cover specific modifications to +longdesc typesetting rules, but there are also options subtle, moderate +longdesc and extreme options for the "broad brush" approach. +containersize 8612 +containerchecksum f31ac72f12ecbe2ab05bde14de907707988d6b9ba20414543b9176b71d2a0d5358a34348177857c56b961301678b612ee6f767d1b9cb671b9bab344bb8230e6d +doccontainersize 489504 +doccontainerchecksum 3e5cfb62d4020d32d9bab01b3df2ea1cb485240aea5eda3541d29cbe38487ed8b242a1eb2b9d15d08bd742390a8d8a25b584e110145dab330580e69e2287f181 +docfiles size=131 + RELOC/doc/latex/savetrees/README details="README" + RELOC/doc/latex/savetrees/savetrees.pdf details="Package documentation" + RELOC/doc/latex/savetrees/st-sample2e.pdf details="Package showcase" +srccontainersize 25844 +srccontainerchecksum 2dcc671cae73824a2e4cf10682f0ad7d6236f5e856267663f14864804587e1394fe12de5e3e54e5a64abb798c16014fab07a462584eac3a561f971496c58b5b0 +srcfiles size=28 + RELOC/source/latex/savetrees/savetrees.dtx + RELOC/source/latex/savetrees/savetrees.ins +runfiles size=12 + RELOC/bibtex/bst/savetrees/savetrees.bst + RELOC/tex/latex/savetrees/savetrees.bbx + RELOC/tex/latex/savetrees/savetrees.cbx + RELOC/tex/latex/savetrees/savetrees.sty +catalogue-ctan /macros/latex/contrib/savetrees +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics layout +catalogue-version 2.4 + +name scale +category Package +revision 15878 +shortdesc Scale document by sqrt(2) or magstep(2) +relocated 1 +longdesc A package to scale a document by sqrt(2) (or by \magstep{2}). +longdesc This is useful if you are preparing a document on, for example, +longdesc A5 paper and want to print on A4 paper to achieve a better +longdesc resolution. +containersize 1836 +containerchecksum 2d090a08c8f7d5d9b332f390b29b16e911f339071579cc09b954b2978df4b410ff3c47afd6b8bea0ce7eabac551b94f8630fdb7aaa4ef39f793748925157a19d +doccontainersize 7156 +doccontainerchecksum aa41f6de8baee992b123ed40086dd5d0aff63c187858502c66056a52f3b8bfb12a5b7dd15ae9279a224e9d67d717f3927e97f5879ab09ded9e0960a3eb910a90 +docfiles size=6 + RELOC/doc/latex/scale/COPYING + RELOC/doc/latex/scale/README details="Readme" +srccontainersize 3568 +srccontainerchecksum 387efffefb6774f50165a0c3242005a52418c5c9ac3ff6d1b87f696eef7af8a57a19a4efe6066e7939fcd76ff8ff9ce3ab4941d30d36c6bf30beeea1a95d4eac +srcfiles size=3 + RELOC/source/latex/scale/scale.dtx + RELOC/source/latex/scale/scale.ins +runfiles size=1 + RELOC/tex/latex/scale/scale.sty +catalogue-ctan /macros/latex/contrib/scale +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics geometry +catalogue-version 1.1.2 + +name scalebar +category Package +revision 15878 +shortdesc Create scalebars for maps, diagrams or photos +relocated 1 +longdesc This is a small package to create scalebars for maps, diagrams +longdesc or photos. It was designed for use with cave maps but can be +longdesc used for anything from showing a scalebar in kilometres for +longdesc topographic maps to a scalebar in micrometres for an electron +longdesc microscope image. +containersize 1560 +containerchecksum 1e367f025943a56b6592238e2961f967beb1d5ff5b68ee83565b3926a392214557237e482ba0b174ddb2e6861e4690e636edef1a5fe0473c465a0deaa1e1bd0a +doccontainersize 49036 +doccontainerchecksum cada3793771a28c3ce30439c782d245b6b21cfa426d2268e7e072a8559a81692b6c4e9e26a8bd452fe5882f39e55fd061a1af4e9be362bdcdb1f6ff6bba781e2 +docfiles size=17 + RELOC/doc/latex/scalebar/README details="Package README" + RELOC/doc/latex/scalebar/scalebar_examples.pdf details="Package usage guide and examples" + RELOC/doc/latex/scalebar/scalebar_examples.tex +srccontainersize 6640 +srccontainerchecksum f6f3e8d007ab3efd6bf1d45b9e3af1fa846637a8b66226f9ae24d64b3be9938b547bc3879a33f44d465f8f62494d1f55141c713b18161ec4006ed76eaa52169e +srcfiles size=6 + RELOC/source/latex/scalebar/scalebar.dtx + RELOC/source/latex/scalebar/scalebar.ins +runfiles size=1 + RELOC/tex/latex/scalebar/scalebar.sty +catalogue-ctan /macros/latex/contrib/scalebar +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics misc-support +catalogue-version 1.0 + +name scalerel +category Package +revision 42809 +shortdesc Constrained scaling and stretching of objects +relocated 1 +longdesc The package provides four commands for vertically scaling and +longdesc stretching objects. Its primary function is the ability to +longdesc scale/stretch and shift one object to conform to the size of a +longdesc specified second object. This feature can be useful in both +longdesc equations and schematic diagrams. Additionally, the scaling and +longdesc stretching commands offer constraints on maximum width and/or +longdesc minimum aspect ratio, which are often used to preserve +longdesc legibility or for the sake of general appearance. +containersize 3052 +containerchecksum 0b0a996bbed0fc185714f84e32c76e5a9277137d3d8dcc6b12b516afa97f3c80b2684c3c22af8717bb3e6acca267a3862c1244df7cb71eca61b10074fe1c3a89 +doccontainersize 330228 +doccontainerchecksum 1533997bed3ce5499a1285a6db03be20f28fe70b1ebbac5d117e692c53068ecbe7f8082cd5f93c753bbfc1eb4fb3b78372c7b14f5e2c636398f37dbc17972d97 +docfiles size=94 + RELOC/doc/latex/scalerel/README details="README" + RELOC/doc/latex/scalerel/scalerel.pdf details="Package documentation" + RELOC/doc/latex/scalerel/scalerel.tex +runfiles size=2 + RELOC/tex/latex/scalerel/scalerel.sty +catalogue-ctan /macros/latex/contrib/scalerel +catalogue-date 2016-12-29 16:00:53 +0100 +catalogue-license lppl1.3 +catalogue-topics graphics-manip +catalogue-version 1.8 + +name scanpages +category Package +revision 42633 +shortdesc Support importing and embellishing scanned documents +relocated 1 +longdesc The bundle provides support for the process of creating +longdesc documents based on pre-TeX-era material that is available as +longdesc scanned pages, only. +execute addMap scanpages.map +containersize 4580 +containerchecksum e13f7849b2b1cbe9fc60fc2e3d3bb7f2879644c282e8664a5ec46b3143f4ac7fbd21f2976183ad410bf778a181d5063b23832734f0ff43a617c9020b16587fb6 +doccontainersize 133820 +doccontainerchecksum 34eb2549a4d809602cf69eb562fd3c03c8d3fc4063820ce41b52d733228a6a83ace819e5bb82e77cd3be3cb8093e7997377fadeded652d20509eecde458d9b78 +docfiles size=42 + RELOC/doc/latex/scanpages/README details="Readme" + RELOC/doc/latex/scanpages/pic1.pdf + RELOC/doc/latex/scanpages/pic2.pdf + RELOC/doc/latex/scanpages/replicate.plist + RELOC/doc/latex/scanpages/replicate.py + RELOC/doc/latex/scanpages/scanpages-doc.pdf details="Package documentation" + RELOC/doc/latex/scanpages/scanpages-doc.tex +runfiles size=6 + RELOC/fonts/map/dvips/scanpages/scanpages.map + RELOC/fonts/tfm/public/scanpages/scanwipe.tfm + RELOC/fonts/type1/public/scanpages/scanwipe.pfb + RELOC/tex/latex/scanpages/scanpages.sty + RELOC/tex/latex/scanpages/uscanwipe.fd +catalogue-ctan /macros/latex/contrib/scanpages +catalogue-date 2016-12-02 22:31:43 +0100 +catalogue-license lppl1.3 +catalogue-topics misc-support +catalogue-version 1.05a + +name schemabloc +category Package +revision 15878 +shortdesc Draw block diagrams, using TikZ +relocated 1 +longdesc The package provides a set of macros for constructing block +longdesc diagrams, using TikZ. (The blox package is an "English +longdesc translation" of this package.) +containersize 2316 +containerchecksum 5b875455f8a567a97c5594f1366fff624228ec2af396bf8cee73f32835d9896c41986b3540f215cca570f21d1531d248e315da5336c0323fb57c3f796ee2df65 +doccontainersize 152312 +doccontainerchecksum 27b0f1f5db78caacec8140b4f13a786ac50ba2cb393aeed153138b0ea8ee6caab640c2dafb14cc3fc01b3c7a511d4642f7fea65e2ccfe295a16cb7e125a47cf0 +docfiles size=56 + RELOC/doc/latex/schemabloc/README details="Readme" + RELOC/doc/latex/schemabloc/schemabloc.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/schemabloc/schemabloc.tex +runfiles size=3 + RELOC/tex/latex/schemabloc/schemabloc.sty +catalogue-ctan /graphics/pgf/contrib/schemabloc +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics diagram-block pgf-tikz +catalogue-version 1.5 + +name schemata +category Package +revision 39510 +shortdesc Print topical diagrams +relocated 1 +longdesc The package facilitates the creation of topical schemata, +longdesc outlines that use braces (or facsimiles thereof) to illustrate +longdesc the breakdown of concepts and categories in Scholastic thought +longdesc from late medieval and early modern periods. +containersize 2268 +containerchecksum 41ddeda2f81711f50238403fbd496f35f0b5548c52a4865dfd9f1ebd7d708db2d1780b1bebd0d1e1c993c140a760d4802770066b21b1bf4e98c09bb606dce2ba +doccontainersize 515172 +doccontainerchecksum 51afe69e7356110ae73b2dc7d4cd84556ac245bc57ab2c4e05f8753345fd0628085b61c78e31fd25ab22e1a2e3255c560193fdc9e16729e7ca2dd7c48bba0684 +docfiles size=130 + RELOC/doc/generic/schemata/Makefile + RELOC/doc/generic/schemata/README details="Readme" + RELOC/doc/generic/schemata/README.txt + RELOC/doc/generic/schemata/schemata.hd + RELOC/doc/generic/schemata/schemata.pdf details="Package documentation" +srccontainersize 14308 +srccontainerchecksum 93c841a49e482861247b6a1baa79f7cfd3956e702b37ad17328c928600224aecb486df1ee012a89d00907efd6e60ea51f5c6aa704b876eba1311e96f7529aaf0 +srcfiles size=18 + RELOC/source/generic/schemata/schemata.dtx + RELOC/source/generic/schemata/schemata.ins +runfiles size=3 + RELOC/tex/generic/schemata/schemata.sty +catalogue-ctan /macros/generic/schemata +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics philosophy theology +catalogue-version 0.8 + +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 ab27a01ab3859bfc1718808ec931e24e58c1146c5e803d616ae0e1e2c2c563fb28bb8480f91e12db9e71d7c1ddfbdc3b73357fe212fcecf7e377aba4365aa27d + +name scheme-context +category Scheme +revision 50183 +shortdesc ConTeXt scheme +relocated 1 +longdesc This is the TeX Live scheme for installing ConTeXt. +depend collection-context +depend collection-metapost +depend tex-gyre +depend tex-gyre-math +depend antt +depend iwona +depend kurier +depend poltawski +depend xits +depend Asana-Math +depend gentium-tug +depend pxfonts +depend txfonts +depend ccicons +depend dejavu +depend eulervm +depend manfnt-font +depend marvosym +depend mflogo-font +depend wasy +depend ly1 +containersize 440 +containerchecksum 214ab897d6ecac52278e3c63e988b0bd0ce146f07e9c58076e2c65bf6a7bb1a34d66341dc88b572d4549182a9a0b9daa51e91ad782ab41f7eeb7a6c2dc8786f3 + +name scheme-full +category Scheme +revision 44177 +shortdesc full scheme (everything) +relocated 1 +longdesc This is the full TeX Live scheme: it installs everything +longdesc available. +depend collection-basic +depend collection-bibtexextra +depend collection-binextra +depend collection-context +depend collection-fontsextra +depend collection-fontsrecommended +depend collection-formatsextra +depend collection-fontutils +depend collection-games +depend collection-humanities +depend collection-langarabic +depend collection-langchinese +depend collection-langcjk +depend collection-langcyrillic +depend collection-langczechslovak +depend collection-langenglish +depend collection-langeuropean +depend collection-langfrench +depend collection-langgerman +depend collection-langgreek +depend collection-langitalian +depend collection-langjapanese +depend collection-langkorean +depend collection-langother +depend collection-langpolish +depend collection-langportuguese +depend collection-langspanish +depend collection-latex +depend collection-latexextra +depend collection-latexrecommended +depend collection-luatex +depend collection-mathscience +depend collection-metapost +depend collection-music +depend collection-pictures +depend collection-plaingeneric +depend collection-pstricks +depend collection-publishers +depend collection-texworks +depend collection-xetex +containersize 568 +containerchecksum c5aa68661ccb1ef57e039e923397466c46349a4b52e1a282d5fa0bc466de382c3d121f69954a28c6345e0f02386eedd915c5abd8f0f0e86ec295e30b325ba9b7 + +name scheme-gust +category Scheme +revision 44177 +shortdesc GUST TeX Live scheme +relocated 1 +longdesc This is the GUST TeX Live scheme: it is a set of files +longdesc sufficient to typeset Polish plain TeX, LaTeX and ConTeXt +longdesc documents in PostScript or PDF. +depend FAQ-en +depend Type1fonts +depend amslatex-primer +depend amstex +depend antt +depend bibtex8 +depend comment +depend comprehensive +depend concrete +depend cyklop +depend dvidvi +depend dviljk +depend gustprog +depend impatient +depend iwona +depend metafont-beginners +depend metapost-examples +depend poltawski +depend seetexk +depend seminar +depend tds +depend tex4ht +depend texdoc +depend collection-basic +depend collection-context +depend collection-fontutils +depend collection-fontsrecommended +depend collection-langpolish +depend collection-latex +depend collection-latexrecommended +depend collection-metapost +depend collection-plaingeneric +depend collection-texworks +depend collection-xetex +containersize 604 +containerchecksum 4321293e8246ff37b1b86d0dab23e4cfba9a4b3c74035ee2110fbf5db77d58259f46f61d9b1dc1b939aa579617cf2bf05686d8b61abf64839924da9d420011f6 + +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 f95c49da292bc4eb602fa20bb8bcdd148eeb883db9673665b3cc23f010ce31cd09c51af9b5df81ba0e79ab59a0b5f28c2f854ac6dcde4e0f7c983b71885bc1e5 + +name scheme-medium +category Scheme +revision 44177 +shortdesc medium scheme (small + more packages and languages) +relocated 1 +longdesc This is the medium TeX Live collection: it contains plain TeX, +longdesc LaTeX, many recommended packages, and support for most European +longdesc languages. +depend collection-basic +depend collection-binextra +depend collection-context +depend collection-fontsrecommended +depend collection-fontutils +depend collection-langczechslovak +depend collection-langenglish +depend collection-langeuropean +depend collection-langfrench +depend collection-langgerman +depend collection-langitalian +depend collection-langpolish +depend collection-langportuguese +depend collection-langspanish +depend collection-latex +depend collection-latexrecommended +depend collection-luatex +depend collection-mathscience +depend collection-metapost +depend collection-plaingeneric +depend collection-texworks +depend collection-xetex +containersize 532 +containerchecksum cc9bd942db4afd9d1d15ccf20e2d404ca61d640f6c04058a876cce0dd09e1fcb581e8abd7b61ee55c2ac8d583c508e9f0461ce199aa7b38bdb64856afb8241d2 + +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 8ae04d142c738142753b4601cc327721cb59689948c2c953f79ff1c4364aa6a449e3862d206223ef1ac1efc3fdfdb1f542c32c8049327662d4ddbe77fe7edbce + +name scheme-small +category Scheme +revision 41825 +shortdesc small scheme (basic + xetex, metapost, a few languages) +relocated 1 +longdesc This is a small TeX Live scheme, corresponding to MacTeX's +longdesc BasicTeX variant. It adds XeTeX, MetaPost, various +longdesc hyphenations, and some recommended packages to scheme-basic. +depend collection-basic +depend collection-latex +depend collection-latexrecommended +depend collection-metapost +depend collection-xetex +depend ec +depend eurosym +depend lm +depend lualibs +depend luaotfload +depend luatexbase +depend revtex +depend synctex +depend times +depend tipa +depend ulem +depend upquote +depend zapfding +depend babel-basque +depend hyphen-basque +depend babel-czech +depend hyphen-czech +depend babel-danish +depend hyphen-danish +depend babel-dutch +depend hyphen-dutch +depend babel-english +depend hyphen-english +depend babel-finnish +depend hyphen-finnish +depend babel-french +depend hyphen-french +depend babel-german +depend hyphen-german +depend babel-hungarian +depend hyphen-hungarian +depend babel-italian +depend hyphen-italian +depend babel-norsk +depend hyphen-norwegian +depend babel-polish +depend hyphen-polish +depend babel-portuges +depend hyphen-portuguese +depend babel-spanish +depend hyphen-spanish +depend babel-swedish +depend hyphen-swedish +containersize 640 +containerchecksum 9d6d9bdd5bb55deed726997629d69927f8da7c8eacae1b87c94c94f73ae90d68024fef2e29aa7d652d3e9b4062801213f35e91ba999380bf3ba11bcac6280581 + +name scheme-tetex +category Scheme +revision 44187 +shortdesc teTeX scheme (more than medium, but nowhere near full) +relocated 1 +longdesc TeX Live scheme nearly equivalent to the teTeX distribution +longdesc that was maintained by Thomas Esser. +depend FAQ-en +depend SIunits +depend acronym +depend amslatex-primer +depend bbm +depend bbm-macros +depend bbold +depend bibtex8 +depend ctie +depend detex +depend dtl +depend dvi2tty +depend dvicopy +depend dvidvi +depend dviljk +depend patgen +depend pdftools +depend seetexk +depend tie +depend web +depend cmbright +depend cweb +depend eplain +depend eulervm +depend gentle +depend lshort-english +depend mltex +depend multirow +depend nomencl +depend pst-pdf +depend rsfs +depend subfigure +depend supertabular +depend tamethebeast +depend tds +depend tex-refs +depend collection-basic +depend collection-context +depend collection-fontsrecommended +depend collection-fontutils +depend collection-langcjk +depend collection-langcyrillic +depend collection-langczechslovak +depend collection-langenglish +depend collection-langeuropean +depend collection-langfrench +depend collection-langgerman +depend collection-langgreek +depend collection-langitalian +depend collection-langother +depend collection-langpolish +depend collection-langportuguese +depend collection-langspanish +depend collection-latex +depend collection-latexrecommended +depend collection-mathscience +depend collection-metapost +depend collection-formatsextra +depend collection-pictures +depend collection-plaingeneric +depend collection-pstricks +containersize 740 +containerchecksum 02f23b11f4f616bff03469edeba0560a4e10d103fffbe1a137ef7394c4329a067d311b9f51f92c174ea4f393401be459ef5d6cf2693cbc91c3dd5b1720c07f94 + +name schule +category Package +revision 48471 +shortdesc Support for teachers at German schools +relocated 1 +longdesc The 'schule' bundle was built to provide packages and commands +longdesc that could be useful for documents in German schools. At the +longdesc moment its main focus lies on documents for informatics as a +longdesc school subject. An extension for physics is currently in +longdesc progress. Extensions for other subjects are welcome. For the +longdesc time being, the whole package splits up into individual +longdesc packages for informatics (including syntax diagrams, +longdesc Nassi-Shneiderman diagrams, sequence diagrams, object diagrams, +longdesc and class diagrams) as well as classes for written exams +longdesc (tests, quizzes, teaching observations, information sheets, +longdesc worksheets, and answer keys). +containersize 1960980 +containerchecksum 8f59d31e7bebb741a7c23c2559f0e90979df2d7ed1482d3dc09a1f5fd95ba7ee358e3acfd5bcfe0a708d36cecd4e36b226db4addcb007168789311758a444bc9 +doccontainersize 4411800 +doccontainerchecksum dbc4cb7922524e2a73c56861ebac5487b508016107bc7c2a104d93edafa816f27f84a142bd0d228aed008f85ba7aab53b694771a001657ac068db169b87b72b1 +docfiles size=2550 + RELOC/doc/latex/schule/Abbildungen/table02600-026FF.pdf + RELOC/doc/latex/schule/Abbildungen/table02600-026FF.tex + RELOC/doc/latex/schule/Abbildungen/table02700-027BF.pdf + RELOC/doc/latex/schule/Abbildungen/table02700-027BF.tex + RELOC/doc/latex/schule/Abbildungen/table1F000-1F02F.pdf + RELOC/doc/latex/schule/Abbildungen/table1F000-1F02F.tex + RELOC/doc/latex/schule/Abbildungen/table1F030-1F09F.pdf + RELOC/doc/latex/schule/Abbildungen/table1F030-1F09F.tex + RELOC/doc/latex/schule/Abbildungen/table1F0A0-1F0FF.pdf + RELOC/doc/latex/schule/Abbildungen/table1F0A0-1F0FF.tex + RELOC/doc/latex/schule/Abbildungen/table1F300-1F5FF.pdf + RELOC/doc/latex/schule/Abbildungen/table1F300-1F5FF.tex + RELOC/doc/latex/schule/Abbildungen/table1F600-1F64F.pdf + RELOC/doc/latex/schule/Abbildungen/table1F600-1F64F.tex + RELOC/doc/latex/schule/Abbildungen/table1F680-1F6FF.pdf + RELOC/doc/latex/schule/Abbildungen/table1F680-1F6FF.tex + RELOC/doc/latex/schule/Beispiele/aufgabe-1.pdf + RELOC/doc/latex/schule/Beispiele/aufgabe-2.pdf + RELOC/doc/latex/schule/Beispiele/beispiel-ab-abbott.pdf + RELOC/doc/latex/schule/Beispiele/beispiel-ab-abbott.tex + RELOC/doc/latex/schule/Beispiele/beispiel-ab-schiefeebene.pdf + RELOC/doc/latex/schule/Beispiele/beispiel-ab-schiefeebene.tex + RELOC/doc/latex/schule/Beispiele/beispiel-ab.pdf + RELOC/doc/latex/schule/Beispiele/beispiel-ab.tex + RELOC/doc/latex/schule/Beispiele/beispiel-aufgabentemplates.pdf + RELOC/doc/latex/schule/Beispiele/beispiel-aufgabentemplates.tex + RELOC/doc/latex/schule/Beispiele/beispiel-ib-hieroglyphen.pdf + RELOC/doc/latex/schule/Beispiele/beispiel-ib-hieroglyphen.tex + RELOC/doc/latex/schule/Beispiele/beispiel-kl.pdf + RELOC/doc/latex/schule/Beispiele/beispiel-kl.tex + RELOC/doc/latex/schule/Beispiele/beispiel-leitprogramm.pdf + RELOC/doc/latex/schule/Beispiele/beispiel-leitprogramm.tex + RELOC/doc/latex/schule/Beispiele/bsp-geschichte.pdf + RELOC/doc/latex/schule/Beispiele/bsp-geschichte.tex + RELOC/doc/latex/schule/Beispiele/bsp-pap.tikz + RELOC/doc/latex/schule/Beispiele/bsp-vocab.pdf + RELOC/doc/latex/schule/Beispiele/bsp-vocab.tex + RELOC/doc/latex/schule/Beispiele/hieroglyph-female.pdf + RELOC/doc/latex/schule/Beispiele/hieroglyph-male.pdf + RELOC/doc/latex/schule/Beispiele/minimal-ab-dev.pdf + RELOC/doc/latex/schule/Beispiele/minimal-ab-dev.tex + RELOC/doc/latex/schule/Beispiele/minimal-ab.pdf + RELOC/doc/latex/schule/Beispiele/minimal-ab.tex + RELOC/doc/latex/schule/Beispiele/minimal-ib.pdf + RELOC/doc/latex/schule/Beispiele/minimal-ib.tex + RELOC/doc/latex/schule/Beispiele/minimal-ka.pdf + RELOC/doc/latex/schule/Beispiele/minimal-ka.tex + RELOC/doc/latex/schule/Beispiele/minimal-kl-et.pdf + RELOC/doc/latex/schule/Beispiele/minimal-kl-et.tex + RELOC/doc/latex/schule/Beispiele/minimal-kl-teilpunkte.pdf + RELOC/doc/latex/schule/Beispiele/minimal-kl-teilpunkte.tex + RELOC/doc/latex/schule/Beispiele/minimal-kl.pdf + RELOC/doc/latex/schule/Beispiele/minimal-kl.tex + RELOC/doc/latex/schule/README details="Readme (German)" language="de" + RELOC/doc/latex/schule/allgemeines.tex + RELOC/doc/latex/schule/anhang.tex + RELOC/doc/latex/schule/beispiele.tex + RELOC/doc/latex/schule/changelog.tex + RELOC/doc/latex/schule/dev.tex + RELOC/doc/latex/schule/devFunktionen.tex + RELOC/doc/latex/schule/devModule.tex + RELOC/doc/latex/schule/devRichtlinien.tex + RELOC/doc/latex/schule/dokumenttypen.tex + RELOC/doc/latex/schule/fachGeschichte.tex + RELOC/doc/latex/schule/fachInformatik.tex + RELOC/doc/latex/schule/fachPhysik.tex + RELOC/doc/latex/schule/faecher.tex + RELOC/doc/latex/schule/faq.tex + RELOC/doc/latex/schule/lizenzen.tex + RELOC/doc/latex/schule/modulAufgaben.tex + RELOC/doc/latex/schule/modulBewertung.tex + RELOC/doc/latex/schule/modulFormat.tex + RELOC/doc/latex/schule/modulKuerzel.tex + RELOC/doc/latex/schule/modulLizenzen.tex + RELOC/doc/latex/schule/modulMetadaten.tex + RELOC/doc/latex/schule/modulPapiertypen.tex + RELOC/doc/latex/schule/modulSymbole.tex + RELOC/doc/latex/schule/modulTexte.tex + RELOC/doc/latex/schule/module.tex + RELOC/doc/latex/schule/schule-dokumentation.sty + RELOC/doc/latex/schule/schule.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/schule/schule.tex + RELOC/doc/latex/schule/todo.tex + RELOC/doc/latex/schule/typAb.tex + RELOC/doc/latex/schule/typFolie.tex + RELOC/doc/latex/schule/typKl.tex + RELOC/doc/latex/schule/typLeitprogramm.tex + RELOC/doc/latex/schule/typLzk.tex + RELOC/doc/latex/schule/typUb.tex + RELOC/doc/latex/schule/typUeb.tex + RELOC/doc/latex/schule/zusatzpaketRelaycircuit.tex + RELOC/doc/latex/schule/zusatzpaketSchuleAlt.tex + RELOC/doc/latex/schule/zusatzpaketSyntaxdi.tex + RELOC/doc/latex/schule/zusatzpaketUtfsym.tex + RELOC/doc/latex/schule/zusatzpakete.tex +runfiles size=4626 + RELOC/tex/latex/schule/Lizenzen/lizenz-cc-by-4.xmp + RELOC/tex/latex/schule/Lizenzen/lizenz-cc-by-nc-sa-4.xmp + RELOC/tex/latex/schule/Lizenzen/lizenz-cc-by-sa-4.xmp + RELOC/tex/latex/schule/relaycircuit.sty + RELOC/tex/latex/schule/schule.fach.EvReligion.code.tex + RELOC/tex/latex/schule/schule.fach.Geschichte.code.tex + RELOC/tex/latex/schule/schule.fach.Geschichte.pakete.tex + RELOC/tex/latex/schule/schule.fach.Informatik.code.tex + RELOC/tex/latex/schule/schule.fach.Informatik.pakete.tex + RELOC/tex/latex/schule/schule.fach.Physik.pakete.tex + RELOC/tex/latex/schule/schule.mod.Aufgaben.code.tex + RELOC/tex/latex/schule/schule.mod.Aufgaben.optionen.tex + RELOC/tex/latex/schule/schule.mod.Aufgaben.pakete.tex + RELOC/tex/latex/schule/schule.mod.Bewertung.code.tex + RELOC/tex/latex/schule/schule.mod.Bewertung.optionen.tex + RELOC/tex/latex/schule/schule.mod.Bewertung.pakete.tex + RELOC/tex/latex/schule/schule.mod.Format.code.tex + RELOC/tex/latex/schule/schule.mod.Format.optionen.tex + RELOC/tex/latex/schule/schule.mod.Format.pakete.tex + RELOC/tex/latex/schule/schule.mod.Kuerzel.code.tex + RELOC/tex/latex/schule/schule.mod.Kuerzel.optionen.tex + RELOC/tex/latex/schule/schule.mod.Lizenzen.code.tex + RELOC/tex/latex/schule/schule.mod.Lizenzen.optionen.tex + RELOC/tex/latex/schule/schule.mod.Lizenzen.pakete.tex + RELOC/tex/latex/schule/schule.mod.Metadaten.code.tex + RELOC/tex/latex/schule/schule.mod.Metadaten.optionen.tex + RELOC/tex/latex/schule/schule.mod.Papiertypen.code.tex + RELOC/tex/latex/schule/schule.mod.Symbole.code.tex + RELOC/tex/latex/schule/schule.mod.Symbole.pakete.tex + RELOC/tex/latex/schule/schule.mod.Texte.code.tex + RELOC/tex/latex/schule/schule.mod.Texte.pakete.tex + RELOC/tex/latex/schule/schule.sty + RELOC/tex/latex/schule/schule.typ.ab.code.tex + RELOC/tex/latex/schule/schule.typ.ab.pakete.tex + RELOC/tex/latex/schule/schule.typ.folie.code.tex + RELOC/tex/latex/schule/schule.typ.folie.pakete.tex + RELOC/tex/latex/schule/schule.typ.kl.code.tex + RELOC/tex/latex/schule/schule.typ.kl.optionen.tex + RELOC/tex/latex/schule/schule.typ.kl.pakete.tex + RELOC/tex/latex/schule/schule.typ.leit.code.tex + RELOC/tex/latex/schule/schule.typ.leit.optionen.tex + RELOC/tex/latex/schule/schule.typ.leit.pakete.tex + RELOC/tex/latex/schule/schule.typ.lzk.code.tex + RELOC/tex/latex/schule/schule.typ.lzk.pakete.tex + RELOC/tex/latex/schule/schule.typ.ub.code.tex + RELOC/tex/latex/schule/schule.typ.ub.pakete.tex + RELOC/tex/latex/schule/schule.typ.ueb.code.tex + RELOC/tex/latex/schule/schule.typ.ueb.pakete.tex + RELOC/tex/latex/schule/schuleab.cls + RELOC/tex/latex/schule/schulealt.sty + RELOC/tex/latex/schule/schulein.cls + RELOC/tex/latex/schule/schuleit.cls + RELOC/tex/latex/schule/schulekl.cls + RELOC/tex/latex/schule/schulekl.sty + RELOC/tex/latex/schule/schuleub.cls + RELOC/tex/latex/schule/schuleue.cls + RELOC/tex/latex/schule/schulinf.sty + RELOC/tex/latex/schule/schullsg.cls + RELOC/tex/latex/schule/schullzk.cls + RELOC/tex/latex/schule/schullzk.sty + RELOC/tex/latex/schule/schulphy.sty + RELOC/tex/latex/schule/syntaxdi.sty + RELOC/tex/latex/schule/tikz/usym1F000.tikz + RELOC/tex/latex/schule/tikz/usym1F001.tikz + RELOC/tex/latex/schule/tikz/usym1F002.tikz + RELOC/tex/latex/schule/tikz/usym1F003.tikz + RELOC/tex/latex/schule/tikz/usym1F004.tikz + RELOC/tex/latex/schule/tikz/usym1F005.tikz + RELOC/tex/latex/schule/tikz/usym1F006.tikz + RELOC/tex/latex/schule/tikz/usym1F007.tikz + RELOC/tex/latex/schule/tikz/usym1F008.tikz + RELOC/tex/latex/schule/tikz/usym1F009.tikz + RELOC/tex/latex/schule/tikz/usym1F00A.tikz + RELOC/tex/latex/schule/tikz/usym1F00B.tikz + RELOC/tex/latex/schule/tikz/usym1F00C.tikz + RELOC/tex/latex/schule/tikz/usym1F00D.tikz + RELOC/tex/latex/schule/tikz/usym1F00E.tikz + RELOC/tex/latex/schule/tikz/usym1F00F.tikz + RELOC/tex/latex/schule/tikz/usym1F010.tikz + RELOC/tex/latex/schule/tikz/usym1F011.tikz + RELOC/tex/latex/schule/tikz/usym1F012.tikz + RELOC/tex/latex/schule/tikz/usym1F013.tikz + RELOC/tex/latex/schule/tikz/usym1F014.tikz + RELOC/tex/latex/schule/tikz/usym1F015.tikz + RELOC/tex/latex/schule/tikz/usym1F016.tikz + RELOC/tex/latex/schule/tikz/usym1F017.tikz + RELOC/tex/latex/schule/tikz/usym1F018.tikz + RELOC/tex/latex/schule/tikz/usym1F019.tikz + RELOC/tex/latex/schule/tikz/usym1F01A.tikz + RELOC/tex/latex/schule/tikz/usym1F01B.tikz + RELOC/tex/latex/schule/tikz/usym1F01C.tikz + RELOC/tex/latex/schule/tikz/usym1F01D.tikz + RELOC/tex/latex/schule/tikz/usym1F01E.tikz + RELOC/tex/latex/schule/tikz/usym1F01F.tikz + RELOC/tex/latex/schule/tikz/usym1F020.tikz + RELOC/tex/latex/schule/tikz/usym1F021.tikz + RELOC/tex/latex/schule/tikz/usym1F022.tikz + RELOC/tex/latex/schule/tikz/usym1F023.tikz + RELOC/tex/latex/schule/tikz/usym1F024.tikz + RELOC/tex/latex/schule/tikz/usym1F025.tikz + RELOC/tex/latex/schule/tikz/usym1F026.tikz + RELOC/tex/latex/schule/tikz/usym1F027.tikz + RELOC/tex/latex/schule/tikz/usym1F028.tikz + RELOC/tex/latex/schule/tikz/usym1F029.tikz + RELOC/tex/latex/schule/tikz/usym1F02A.tikz + RELOC/tex/latex/schule/tikz/usym1F02B.tikz + RELOC/tex/latex/schule/tikz/usym1F02C.tikz + RELOC/tex/latex/schule/tikz/usym1F02D.tikz + RELOC/tex/latex/schule/tikz/usym1F02E.tikz + RELOC/tex/latex/schule/tikz/usym1F02F.tikz + RELOC/tex/latex/schule/tikz/usym1F030.tikz + RELOC/tex/latex/schule/tikz/usym1F031.tikz + RELOC/tex/latex/schule/tikz/usym1F032.tikz + RELOC/tex/latex/schule/tikz/usym1F033.tikz + RELOC/tex/latex/schule/tikz/usym1F034.tikz + RELOC/tex/latex/schule/tikz/usym1F035.tikz + RELOC/tex/latex/schule/tikz/usym1F036.tikz + RELOC/tex/latex/schule/tikz/usym1F037.tikz + RELOC/tex/latex/schule/tikz/usym1F038.tikz + RELOC/tex/latex/schule/tikz/usym1F039.tikz + RELOC/tex/latex/schule/tikz/usym1F03A.tikz + RELOC/tex/latex/schule/tikz/usym1F03B.tikz + RELOC/tex/latex/schule/tikz/usym1F03C.tikz + RELOC/tex/latex/schule/tikz/usym1F03D.tikz + RELOC/tex/latex/schule/tikz/usym1F03E.tikz + RELOC/tex/latex/schule/tikz/usym1F03F.tikz + RELOC/tex/latex/schule/tikz/usym1F040.tikz + RELOC/tex/latex/schule/tikz/usym1F041.tikz + RELOC/tex/latex/schule/tikz/usym1F042.tikz + RELOC/tex/latex/schule/tikz/usym1F043.tikz + RELOC/tex/latex/schule/tikz/usym1F044.tikz + RELOC/tex/latex/schule/tikz/usym1F045.tikz + RELOC/tex/latex/schule/tikz/usym1F046.tikz + RELOC/tex/latex/schule/tikz/usym1F047.tikz + RELOC/tex/latex/schule/tikz/usym1F048.tikz + RELOC/tex/latex/schule/tikz/usym1F049.tikz + RELOC/tex/latex/schule/tikz/usym1F04A.tikz + RELOC/tex/latex/schule/tikz/usym1F04B.tikz + RELOC/tex/latex/schule/tikz/usym1F04C.tikz + RELOC/tex/latex/schule/tikz/usym1F04D.tikz + RELOC/tex/latex/schule/tikz/usym1F04E.tikz + RELOC/tex/latex/schule/tikz/usym1F04F.tikz + RELOC/tex/latex/schule/tikz/usym1F050.tikz + RELOC/tex/latex/schule/tikz/usym1F051.tikz + RELOC/tex/latex/schule/tikz/usym1F052.tikz + RELOC/tex/latex/schule/tikz/usym1F053.tikz + RELOC/tex/latex/schule/tikz/usym1F054.tikz + RELOC/tex/latex/schule/tikz/usym1F055.tikz + RELOC/tex/latex/schule/tikz/usym1F056.tikz + RELOC/tex/latex/schule/tikz/usym1F057.tikz + RELOC/tex/latex/schule/tikz/usym1F058.tikz + RELOC/tex/latex/schule/tikz/usym1F059.tikz + RELOC/tex/latex/schule/tikz/usym1F05A.tikz + RELOC/tex/latex/schule/tikz/usym1F05B.tikz + RELOC/tex/latex/schule/tikz/usym1F05C.tikz + RELOC/tex/latex/schule/tikz/usym1F05D.tikz + RELOC/tex/latex/schule/tikz/usym1F05E.tikz + RELOC/tex/latex/schule/tikz/usym1F05F.tikz + RELOC/tex/latex/schule/tikz/usym1F060.tikz + RELOC/tex/latex/schule/tikz/usym1F061.tikz + RELOC/tex/latex/schule/tikz/usym1F062.tikz + RELOC/tex/latex/schule/tikz/usym1F063.tikz + RELOC/tex/latex/schule/tikz/usym1F064.tikz + RELOC/tex/latex/schule/tikz/usym1F065.tikz + RELOC/tex/latex/schule/tikz/usym1F066.tikz + RELOC/tex/latex/schule/tikz/usym1F067.tikz + RELOC/tex/latex/schule/tikz/usym1F068.tikz + RELOC/tex/latex/schule/tikz/usym1F069.tikz + RELOC/tex/latex/schule/tikz/usym1F06A.tikz + RELOC/tex/latex/schule/tikz/usym1F06B.tikz + RELOC/tex/latex/schule/tikz/usym1F06C.tikz + RELOC/tex/latex/schule/tikz/usym1F06D.tikz + RELOC/tex/latex/schule/tikz/usym1F06E.tikz + RELOC/tex/latex/schule/tikz/usym1F06F.tikz + RELOC/tex/latex/schule/tikz/usym1F070.tikz + RELOC/tex/latex/schule/tikz/usym1F071.tikz + RELOC/tex/latex/schule/tikz/usym1F072.tikz + RELOC/tex/latex/schule/tikz/usym1F073.tikz + RELOC/tex/latex/schule/tikz/usym1F074.tikz + RELOC/tex/latex/schule/tikz/usym1F075.tikz + RELOC/tex/latex/schule/tikz/usym1F076.tikz + RELOC/tex/latex/schule/tikz/usym1F077.tikz + RELOC/tex/latex/schule/tikz/usym1F078.tikz + RELOC/tex/latex/schule/tikz/usym1F079.tikz + RELOC/tex/latex/schule/tikz/usym1F07A.tikz + RELOC/tex/latex/schule/tikz/usym1F07B.tikz + RELOC/tex/latex/schule/tikz/usym1F07C.tikz + RELOC/tex/latex/schule/tikz/usym1F07D.tikz + RELOC/tex/latex/schule/tikz/usym1F07E.tikz + RELOC/tex/latex/schule/tikz/usym1F07F.tikz + RELOC/tex/latex/schule/tikz/usym1F080.tikz + RELOC/tex/latex/schule/tikz/usym1F081.tikz + RELOC/tex/latex/schule/tikz/usym1F082.tikz + RELOC/tex/latex/schule/tikz/usym1F083.tikz + RELOC/tex/latex/schule/tikz/usym1F084.tikz + RELOC/tex/latex/schule/tikz/usym1F085.tikz + RELOC/tex/latex/schule/tikz/usym1F086.tikz + RELOC/tex/latex/schule/tikz/usym1F087.tikz + RELOC/tex/latex/schule/tikz/usym1F088.tikz + RELOC/tex/latex/schule/tikz/usym1F089.tikz + RELOC/tex/latex/schule/tikz/usym1F08A.tikz + RELOC/tex/latex/schule/tikz/usym1F08B.tikz + RELOC/tex/latex/schule/tikz/usym1F08C.tikz + RELOC/tex/latex/schule/tikz/usym1F08D.tikz + RELOC/tex/latex/schule/tikz/usym1F08E.tikz + RELOC/tex/latex/schule/tikz/usym1F08F.tikz + RELOC/tex/latex/schule/tikz/usym1F090.tikz + RELOC/tex/latex/schule/tikz/usym1F091.tikz + RELOC/tex/latex/schule/tikz/usym1F092.tikz + RELOC/tex/latex/schule/tikz/usym1F093.tikz + RELOC/tex/latex/schule/tikz/usym1F094.tikz + RELOC/tex/latex/schule/tikz/usym1F095.tikz + RELOC/tex/latex/schule/tikz/usym1F096.tikz + RELOC/tex/latex/schule/tikz/usym1F097.tikz + RELOC/tex/latex/schule/tikz/usym1F098.tikz + RELOC/tex/latex/schule/tikz/usym1F099.tikz + RELOC/tex/latex/schule/tikz/usym1F09A.tikz + RELOC/tex/latex/schule/tikz/usym1F09B.tikz + RELOC/tex/latex/schule/tikz/usym1F09C.tikz + RELOC/tex/latex/schule/tikz/usym1F09D.tikz + RELOC/tex/latex/schule/tikz/usym1F09E.tikz + RELOC/tex/latex/schule/tikz/usym1F09F.tikz + RELOC/tex/latex/schule/tikz/usym1F0A0.tikz + RELOC/tex/latex/schule/tikz/usym1F0A1.tikz + RELOC/tex/latex/schule/tikz/usym1F0A2.tikz + RELOC/tex/latex/schule/tikz/usym1F0A3.tikz + RELOC/tex/latex/schule/tikz/usym1F0A4.tikz + RELOC/tex/latex/schule/tikz/usym1F0A5.tikz + RELOC/tex/latex/schule/tikz/usym1F0A6.tikz + RELOC/tex/latex/schule/tikz/usym1F0A7.tikz + RELOC/tex/latex/schule/tikz/usym1F0A8.tikz + RELOC/tex/latex/schule/tikz/usym1F0A9.tikz + RELOC/tex/latex/schule/tikz/usym1F0AA.tikz + RELOC/tex/latex/schule/tikz/usym1F0AB.tikz + RELOC/tex/latex/schule/tikz/usym1F0AC.tikz + RELOC/tex/latex/schule/tikz/usym1F0AD.tikz + RELOC/tex/latex/schule/tikz/usym1F0AE.tikz + RELOC/tex/latex/schule/tikz/usym1F0AF.tikz + RELOC/tex/latex/schule/tikz/usym1F0B0.tikz + RELOC/tex/latex/schule/tikz/usym1F0B1.tikz + RELOC/tex/latex/schule/tikz/usym1F0B2.tikz + RELOC/tex/latex/schule/tikz/usym1F0B3.tikz + RELOC/tex/latex/schule/tikz/usym1F0B4.tikz + RELOC/tex/latex/schule/tikz/usym1F0B5.tikz + RELOC/tex/latex/schule/tikz/usym1F0B6.tikz + RELOC/tex/latex/schule/tikz/usym1F0B7.tikz + RELOC/tex/latex/schule/tikz/usym1F0B8.tikz + RELOC/tex/latex/schule/tikz/usym1F0B9.tikz + RELOC/tex/latex/schule/tikz/usym1F0BA.tikz + RELOC/tex/latex/schule/tikz/usym1F0BB.tikz + RELOC/tex/latex/schule/tikz/usym1F0BC.tikz + RELOC/tex/latex/schule/tikz/usym1F0BD.tikz + RELOC/tex/latex/schule/tikz/usym1F0BE.tikz + RELOC/tex/latex/schule/tikz/usym1F0BF.tikz + RELOC/tex/latex/schule/tikz/usym1F0C0.tikz + RELOC/tex/latex/schule/tikz/usym1F0C1.tikz + RELOC/tex/latex/schule/tikz/usym1F0C2.tikz + RELOC/tex/latex/schule/tikz/usym1F0C3.tikz + RELOC/tex/latex/schule/tikz/usym1F0C4.tikz + RELOC/tex/latex/schule/tikz/usym1F0C5.tikz + RELOC/tex/latex/schule/tikz/usym1F0C6.tikz + RELOC/tex/latex/schule/tikz/usym1F0C7.tikz + RELOC/tex/latex/schule/tikz/usym1F0C8.tikz + RELOC/tex/latex/schule/tikz/usym1F0C9.tikz + RELOC/tex/latex/schule/tikz/usym1F0CA.tikz + RELOC/tex/latex/schule/tikz/usym1F0CB.tikz + RELOC/tex/latex/schule/tikz/usym1F0CC.tikz + RELOC/tex/latex/schule/tikz/usym1F0CD.tikz + RELOC/tex/latex/schule/tikz/usym1F0CE.tikz + RELOC/tex/latex/schule/tikz/usym1F0CF.tikz + RELOC/tex/latex/schule/tikz/usym1F0D0.tikz + RELOC/tex/latex/schule/tikz/usym1F0D1.tikz + RELOC/tex/latex/schule/tikz/usym1F0D2.tikz + RELOC/tex/latex/schule/tikz/usym1F0D3.tikz + RELOC/tex/latex/schule/tikz/usym1F0D4.tikz + RELOC/tex/latex/schule/tikz/usym1F0D5.tikz + RELOC/tex/latex/schule/tikz/usym1F0D6.tikz + RELOC/tex/latex/schule/tikz/usym1F0D7.tikz + RELOC/tex/latex/schule/tikz/usym1F0D8.tikz + RELOC/tex/latex/schule/tikz/usym1F0D9.tikz + RELOC/tex/latex/schule/tikz/usym1F0DA.tikz + RELOC/tex/latex/schule/tikz/usym1F0DB.tikz + RELOC/tex/latex/schule/tikz/usym1F0DC.tikz + RELOC/tex/latex/schule/tikz/usym1F0DD.tikz + RELOC/tex/latex/schule/tikz/usym1F0DE.tikz + RELOC/tex/latex/schule/tikz/usym1F0DF.tikz + RELOC/tex/latex/schule/tikz/usym1F0E0.tikz + RELOC/tex/latex/schule/tikz/usym1F0E1.tikz + RELOC/tex/latex/schule/tikz/usym1F0E2.tikz + RELOC/tex/latex/schule/tikz/usym1F0E3.tikz + RELOC/tex/latex/schule/tikz/usym1F0E4.tikz + RELOC/tex/latex/schule/tikz/usym1F0E5.tikz + RELOC/tex/latex/schule/tikz/usym1F0E6.tikz + RELOC/tex/latex/schule/tikz/usym1F0E7.tikz + RELOC/tex/latex/schule/tikz/usym1F0E8.tikz + RELOC/tex/latex/schule/tikz/usym1F0E9.tikz + RELOC/tex/latex/schule/tikz/usym1F0EA.tikz + RELOC/tex/latex/schule/tikz/usym1F0EB.tikz + RELOC/tex/latex/schule/tikz/usym1F0EC.tikz + RELOC/tex/latex/schule/tikz/usym1F0ED.tikz + RELOC/tex/latex/schule/tikz/usym1F0EE.tikz + RELOC/tex/latex/schule/tikz/usym1F0EF.tikz + RELOC/tex/latex/schule/tikz/usym1F0F0.tikz + RELOC/tex/latex/schule/tikz/usym1F0F1.tikz + RELOC/tex/latex/schule/tikz/usym1F0F2.tikz + RELOC/tex/latex/schule/tikz/usym1F0F3.tikz + RELOC/tex/latex/schule/tikz/usym1F0F4.tikz + RELOC/tex/latex/schule/tikz/usym1F0F5.tikz + RELOC/tex/latex/schule/tikz/usym1F0F6.tikz + RELOC/tex/latex/schule/tikz/usym1F0F7.tikz + RELOC/tex/latex/schule/tikz/usym1F0F8.tikz + RELOC/tex/latex/schule/tikz/usym1F0F9.tikz + RELOC/tex/latex/schule/tikz/usym1F0FA.tikz + RELOC/tex/latex/schule/tikz/usym1F0FB.tikz + RELOC/tex/latex/schule/tikz/usym1F0FC.tikz + RELOC/tex/latex/schule/tikz/usym1F0FD.tikz + RELOC/tex/latex/schule/tikz/usym1F0FE.tikz + RELOC/tex/latex/schule/tikz/usym1F0FF.tikz + RELOC/tex/latex/schule/tikz/usym1F300.tikz + RELOC/tex/latex/schule/tikz/usym1F301.tikz + RELOC/tex/latex/schule/tikz/usym1F302.tikz + RELOC/tex/latex/schule/tikz/usym1F303.tikz + RELOC/tex/latex/schule/tikz/usym1F304.tikz + RELOC/tex/latex/schule/tikz/usym1F305.tikz + RELOC/tex/latex/schule/tikz/usym1F306.tikz + RELOC/tex/latex/schule/tikz/usym1F307.tikz + RELOC/tex/latex/schule/tikz/usym1F308.tikz + RELOC/tex/latex/schule/tikz/usym1F309.tikz + RELOC/tex/latex/schule/tikz/usym1F30A.tikz + RELOC/tex/latex/schule/tikz/usym1F30B.tikz + RELOC/tex/latex/schule/tikz/usym1F30C.tikz + RELOC/tex/latex/schule/tikz/usym1F30D.tikz + RELOC/tex/latex/schule/tikz/usym1F30E.tikz + RELOC/tex/latex/schule/tikz/usym1F30F.tikz + RELOC/tex/latex/schule/tikz/usym1F310.tikz + RELOC/tex/latex/schule/tikz/usym1F311.tikz + RELOC/tex/latex/schule/tikz/usym1F312.tikz + RELOC/tex/latex/schule/tikz/usym1F313.tikz + RELOC/tex/latex/schule/tikz/usym1F314.tikz + RELOC/tex/latex/schule/tikz/usym1F315.tikz + RELOC/tex/latex/schule/tikz/usym1F316.tikz + RELOC/tex/latex/schule/tikz/usym1F317.tikz + RELOC/tex/latex/schule/tikz/usym1F318.tikz + RELOC/tex/latex/schule/tikz/usym1F319.tikz + RELOC/tex/latex/schule/tikz/usym1F31A.tikz + RELOC/tex/latex/schule/tikz/usym1F31B.tikz + RELOC/tex/latex/schule/tikz/usym1F31C.tikz + RELOC/tex/latex/schule/tikz/usym1F31D.tikz + RELOC/tex/latex/schule/tikz/usym1F31E.tikz + RELOC/tex/latex/schule/tikz/usym1F31F.tikz + RELOC/tex/latex/schule/tikz/usym1F320.tikz + RELOC/tex/latex/schule/tikz/usym1F321.tikz + RELOC/tex/latex/schule/tikz/usym1F322.tikz + RELOC/tex/latex/schule/tikz/usym1F323.tikz + RELOC/tex/latex/schule/tikz/usym1F324.tikz + RELOC/tex/latex/schule/tikz/usym1F325.tikz + RELOC/tex/latex/schule/tikz/usym1F326.tikz + RELOC/tex/latex/schule/tikz/usym1F327.tikz + RELOC/tex/latex/schule/tikz/usym1F328.tikz + RELOC/tex/latex/schule/tikz/usym1F329.tikz + RELOC/tex/latex/schule/tikz/usym1F32A.tikz + RELOC/tex/latex/schule/tikz/usym1F32B.tikz + RELOC/tex/latex/schule/tikz/usym1F32C.tikz + RELOC/tex/latex/schule/tikz/usym1F32D.tikz + RELOC/tex/latex/schule/tikz/usym1F32E.tikz + RELOC/tex/latex/schule/tikz/usym1F32F.tikz + RELOC/tex/latex/schule/tikz/usym1F330.tikz + RELOC/tex/latex/schule/tikz/usym1F331.tikz + RELOC/tex/latex/schule/tikz/usym1F332.tikz + RELOC/tex/latex/schule/tikz/usym1F333.tikz + RELOC/tex/latex/schule/tikz/usym1F334.tikz + RELOC/tex/latex/schule/tikz/usym1F335.tikz + RELOC/tex/latex/schule/tikz/usym1F336.tikz + RELOC/tex/latex/schule/tikz/usym1F337.tikz + RELOC/tex/latex/schule/tikz/usym1F338.tikz + RELOC/tex/latex/schule/tikz/usym1F339.tikz + RELOC/tex/latex/schule/tikz/usym1F33A.tikz + RELOC/tex/latex/schule/tikz/usym1F33B.tikz + RELOC/tex/latex/schule/tikz/usym1F33C.tikz + RELOC/tex/latex/schule/tikz/usym1F33D.tikz + RELOC/tex/latex/schule/tikz/usym1F33E.tikz + RELOC/tex/latex/schule/tikz/usym1F33F.tikz + RELOC/tex/latex/schule/tikz/usym1F340.tikz + RELOC/tex/latex/schule/tikz/usym1F341.tikz + RELOC/tex/latex/schule/tikz/usym1F342.tikz + RELOC/tex/latex/schule/tikz/usym1F343.tikz + RELOC/tex/latex/schule/tikz/usym1F344.tikz + RELOC/tex/latex/schule/tikz/usym1F345.tikz + RELOC/tex/latex/schule/tikz/usym1F346.tikz + RELOC/tex/latex/schule/tikz/usym1F347.tikz + RELOC/tex/latex/schule/tikz/usym1F348.tikz + RELOC/tex/latex/schule/tikz/usym1F349.tikz + RELOC/tex/latex/schule/tikz/usym1F34A.tikz + RELOC/tex/latex/schule/tikz/usym1F34B.tikz + RELOC/tex/latex/schule/tikz/usym1F34C.tikz + RELOC/tex/latex/schule/tikz/usym1F34D.tikz + RELOC/tex/latex/schule/tikz/usym1F34E.tikz + RELOC/tex/latex/schule/tikz/usym1F34F.tikz + RELOC/tex/latex/schule/tikz/usym1F350.tikz + RELOC/tex/latex/schule/tikz/usym1F351.tikz + RELOC/tex/latex/schule/tikz/usym1F352.tikz + RELOC/tex/latex/schule/tikz/usym1F353.tikz + RELOC/tex/latex/schule/tikz/usym1F354.tikz + RELOC/tex/latex/schule/tikz/usym1F355.tikz + RELOC/tex/latex/schule/tikz/usym1F356.tikz + RELOC/tex/latex/schule/tikz/usym1F357.tikz + RELOC/tex/latex/schule/tikz/usym1F358.tikz + RELOC/tex/latex/schule/tikz/usym1F359.tikz + RELOC/tex/latex/schule/tikz/usym1F35A.tikz + RELOC/tex/latex/schule/tikz/usym1F35B.tikz + RELOC/tex/latex/schule/tikz/usym1F35C.tikz + RELOC/tex/latex/schule/tikz/usym1F35D.tikz + RELOC/tex/latex/schule/tikz/usym1F35E.tikz + RELOC/tex/latex/schule/tikz/usym1F35F.tikz + RELOC/tex/latex/schule/tikz/usym1F360.tikz + RELOC/tex/latex/schule/tikz/usym1F361.tikz + RELOC/tex/latex/schule/tikz/usym1F362.tikz + RELOC/tex/latex/schule/tikz/usym1F363.tikz + RELOC/tex/latex/schule/tikz/usym1F364.tikz + RELOC/tex/latex/schule/tikz/usym1F365.tikz + RELOC/tex/latex/schule/tikz/usym1F366.tikz + RELOC/tex/latex/schule/tikz/usym1F367.tikz + RELOC/tex/latex/schule/tikz/usym1F368.tikz + RELOC/tex/latex/schule/tikz/usym1F369.tikz + RELOC/tex/latex/schule/tikz/usym1F36A.tikz + RELOC/tex/latex/schule/tikz/usym1F36B.tikz + RELOC/tex/latex/schule/tikz/usym1F36C.tikz + RELOC/tex/latex/schule/tikz/usym1F36D.tikz + RELOC/tex/latex/schule/tikz/usym1F36E.tikz + RELOC/tex/latex/schule/tikz/usym1F36F.tikz + RELOC/tex/latex/schule/tikz/usym1F370.tikz + RELOC/tex/latex/schule/tikz/usym1F371.tikz + RELOC/tex/latex/schule/tikz/usym1F372.tikz + RELOC/tex/latex/schule/tikz/usym1F373.tikz + RELOC/tex/latex/schule/tikz/usym1F374.tikz + RELOC/tex/latex/schule/tikz/usym1F375.tikz + RELOC/tex/latex/schule/tikz/usym1F376.tikz + RELOC/tex/latex/schule/tikz/usym1F377.tikz + RELOC/tex/latex/schule/tikz/usym1F378.tikz + RELOC/tex/latex/schule/tikz/usym1F379.tikz + RELOC/tex/latex/schule/tikz/usym1F37A.tikz + RELOC/tex/latex/schule/tikz/usym1F37B.tikz + RELOC/tex/latex/schule/tikz/usym1F37C.tikz + RELOC/tex/latex/schule/tikz/usym1F37D.tikz + RELOC/tex/latex/schule/tikz/usym1F37E.tikz + RELOC/tex/latex/schule/tikz/usym1F37F.tikz + RELOC/tex/latex/schule/tikz/usym1F380.tikz + RELOC/tex/latex/schule/tikz/usym1F381.tikz + RELOC/tex/latex/schule/tikz/usym1F382.tikz + RELOC/tex/latex/schule/tikz/usym1F383.tikz + RELOC/tex/latex/schule/tikz/usym1F384.tikz + RELOC/tex/latex/schule/tikz/usym1F385.tikz + RELOC/tex/latex/schule/tikz/usym1F386.tikz + RELOC/tex/latex/schule/tikz/usym1F387.tikz + RELOC/tex/latex/schule/tikz/usym1F388.tikz + RELOC/tex/latex/schule/tikz/usym1F389.tikz + RELOC/tex/latex/schule/tikz/usym1F38A.tikz + RELOC/tex/latex/schule/tikz/usym1F38B.tikz + RELOC/tex/latex/schule/tikz/usym1F38C.tikz + RELOC/tex/latex/schule/tikz/usym1F38D.tikz + RELOC/tex/latex/schule/tikz/usym1F38E.tikz + RELOC/tex/latex/schule/tikz/usym1F38F.tikz + RELOC/tex/latex/schule/tikz/usym1F390.tikz + RELOC/tex/latex/schule/tikz/usym1F391.tikz + RELOC/tex/latex/schule/tikz/usym1F392.tikz + RELOC/tex/latex/schule/tikz/usym1F393.tikz + RELOC/tex/latex/schule/tikz/usym1F394.tikz + RELOC/tex/latex/schule/tikz/usym1F395.tikz + RELOC/tex/latex/schule/tikz/usym1F396.tikz + RELOC/tex/latex/schule/tikz/usym1F397.tikz + RELOC/tex/latex/schule/tikz/usym1F398.tikz + RELOC/tex/latex/schule/tikz/usym1F399.tikz + RELOC/tex/latex/schule/tikz/usym1F39A.tikz + RELOC/tex/latex/schule/tikz/usym1F39B.tikz + RELOC/tex/latex/schule/tikz/usym1F39C.tikz + RELOC/tex/latex/schule/tikz/usym1F39D.tikz + RELOC/tex/latex/schule/tikz/usym1F39E.tikz + RELOC/tex/latex/schule/tikz/usym1F39F.tikz + RELOC/tex/latex/schule/tikz/usym1F3A0.tikz + RELOC/tex/latex/schule/tikz/usym1F3A1.tikz + RELOC/tex/latex/schule/tikz/usym1F3A2.tikz + RELOC/tex/latex/schule/tikz/usym1F3A3.tikz + RELOC/tex/latex/schule/tikz/usym1F3A4.tikz + RELOC/tex/latex/schule/tikz/usym1F3A5.tikz + RELOC/tex/latex/schule/tikz/usym1F3A6.tikz + RELOC/tex/latex/schule/tikz/usym1F3A7.tikz + RELOC/tex/latex/schule/tikz/usym1F3A8.tikz + RELOC/tex/latex/schule/tikz/usym1F3A9.tikz + RELOC/tex/latex/schule/tikz/usym1F3AA.tikz + RELOC/tex/latex/schule/tikz/usym1F3AB.tikz + RELOC/tex/latex/schule/tikz/usym1F3AC.tikz + RELOC/tex/latex/schule/tikz/usym1F3AD.tikz + RELOC/tex/latex/schule/tikz/usym1F3AE.tikz + RELOC/tex/latex/schule/tikz/usym1F3AF.tikz + RELOC/tex/latex/schule/tikz/usym1F3B0.tikz + RELOC/tex/latex/schule/tikz/usym1F3B1.tikz + RELOC/tex/latex/schule/tikz/usym1F3B2.tikz + RELOC/tex/latex/schule/tikz/usym1F3B3.tikz + RELOC/tex/latex/schule/tikz/usym1F3B4.tikz + RELOC/tex/latex/schule/tikz/usym1F3B5.tikz + RELOC/tex/latex/schule/tikz/usym1F3B6.tikz + RELOC/tex/latex/schule/tikz/usym1F3B7.tikz + RELOC/tex/latex/schule/tikz/usym1F3B8.tikz + RELOC/tex/latex/schule/tikz/usym1F3B9.tikz + RELOC/tex/latex/schule/tikz/usym1F3BA.tikz + RELOC/tex/latex/schule/tikz/usym1F3BB.tikz + RELOC/tex/latex/schule/tikz/usym1F3BC.tikz + RELOC/tex/latex/schule/tikz/usym1F3BD.tikz + RELOC/tex/latex/schule/tikz/usym1F3BE.tikz + RELOC/tex/latex/schule/tikz/usym1F3BF.tikz + RELOC/tex/latex/schule/tikz/usym1F3C0.tikz + RELOC/tex/latex/schule/tikz/usym1F3C1.tikz + RELOC/tex/latex/schule/tikz/usym1F3C2.tikz + RELOC/tex/latex/schule/tikz/usym1F3C3.tikz + RELOC/tex/latex/schule/tikz/usym1F3C4.tikz + RELOC/tex/latex/schule/tikz/usym1F3C5.tikz + RELOC/tex/latex/schule/tikz/usym1F3C6.tikz + RELOC/tex/latex/schule/tikz/usym1F3C7.tikz + RELOC/tex/latex/schule/tikz/usym1F3C8.tikz + RELOC/tex/latex/schule/tikz/usym1F3C9.tikz + RELOC/tex/latex/schule/tikz/usym1F3CA.tikz + RELOC/tex/latex/schule/tikz/usym1F3CB.tikz + RELOC/tex/latex/schule/tikz/usym1F3CC.tikz + RELOC/tex/latex/schule/tikz/usym1F3CD.tikz + RELOC/tex/latex/schule/tikz/usym1F3CE.tikz + RELOC/tex/latex/schule/tikz/usym1F3CF.tikz + RELOC/tex/latex/schule/tikz/usym1F3D0.tikz + RELOC/tex/latex/schule/tikz/usym1F3D1.tikz + RELOC/tex/latex/schule/tikz/usym1F3D2.tikz + RELOC/tex/latex/schule/tikz/usym1F3D3.tikz + RELOC/tex/latex/schule/tikz/usym1F3D4.tikz + RELOC/tex/latex/schule/tikz/usym1F3D5.tikz + RELOC/tex/latex/schule/tikz/usym1F3D6.tikz + RELOC/tex/latex/schule/tikz/usym1F3D7.tikz + RELOC/tex/latex/schule/tikz/usym1F3D8.tikz + RELOC/tex/latex/schule/tikz/usym1F3D9.tikz + RELOC/tex/latex/schule/tikz/usym1F3DA.tikz + RELOC/tex/latex/schule/tikz/usym1F3DB.tikz + RELOC/tex/latex/schule/tikz/usym1F3DC.tikz + RELOC/tex/latex/schule/tikz/usym1F3DD.tikz + RELOC/tex/latex/schule/tikz/usym1F3DE.tikz + RELOC/tex/latex/schule/tikz/usym1F3DF.tikz + RELOC/tex/latex/schule/tikz/usym1F3E0.tikz + RELOC/tex/latex/schule/tikz/usym1F3E1.tikz + RELOC/tex/latex/schule/tikz/usym1F3E2.tikz + RELOC/tex/latex/schule/tikz/usym1F3E3.tikz + RELOC/tex/latex/schule/tikz/usym1F3E4.tikz + RELOC/tex/latex/schule/tikz/usym1F3E5.tikz + RELOC/tex/latex/schule/tikz/usym1F3E6.tikz + RELOC/tex/latex/schule/tikz/usym1F3E7.tikz + RELOC/tex/latex/schule/tikz/usym1F3E8.tikz + RELOC/tex/latex/schule/tikz/usym1F3E9.tikz + RELOC/tex/latex/schule/tikz/usym1F3EA.tikz + RELOC/tex/latex/schule/tikz/usym1F3EB.tikz + RELOC/tex/latex/schule/tikz/usym1F3EC.tikz + RELOC/tex/latex/schule/tikz/usym1F3ED.tikz + RELOC/tex/latex/schule/tikz/usym1F3EE.tikz + RELOC/tex/latex/schule/tikz/usym1F3EF.tikz + RELOC/tex/latex/schule/tikz/usym1F3F0.tikz + RELOC/tex/latex/schule/tikz/usym1F3F1.tikz + RELOC/tex/latex/schule/tikz/usym1F3F2.tikz + RELOC/tex/latex/schule/tikz/usym1F3F3.tikz + RELOC/tex/latex/schule/tikz/usym1F3F4.tikz + RELOC/tex/latex/schule/tikz/usym1F3F5.tikz + RELOC/tex/latex/schule/tikz/usym1F3F6.tikz + RELOC/tex/latex/schule/tikz/usym1F3F7.tikz + RELOC/tex/latex/schule/tikz/usym1F3F8.tikz + RELOC/tex/latex/schule/tikz/usym1F3F9.tikz + RELOC/tex/latex/schule/tikz/usym1F3FA.tikz + RELOC/tex/latex/schule/tikz/usym1F3FB.tikz + RELOC/tex/latex/schule/tikz/usym1F3FC.tikz + RELOC/tex/latex/schule/tikz/usym1F3FD.tikz + RELOC/tex/latex/schule/tikz/usym1F3FE.tikz + RELOC/tex/latex/schule/tikz/usym1F3FF.tikz + RELOC/tex/latex/schule/tikz/usym1F400.tikz + RELOC/tex/latex/schule/tikz/usym1F401.tikz + RELOC/tex/latex/schule/tikz/usym1F402.tikz + RELOC/tex/latex/schule/tikz/usym1F403.tikz + RELOC/tex/latex/schule/tikz/usym1F404.tikz + RELOC/tex/latex/schule/tikz/usym1F405.tikz + RELOC/tex/latex/schule/tikz/usym1F406.tikz + RELOC/tex/latex/schule/tikz/usym1F407.tikz + RELOC/tex/latex/schule/tikz/usym1F408.tikz + RELOC/tex/latex/schule/tikz/usym1F409.tikz + RELOC/tex/latex/schule/tikz/usym1F40A.tikz + RELOC/tex/latex/schule/tikz/usym1F40B.tikz + RELOC/tex/latex/schule/tikz/usym1F40C.tikz + RELOC/tex/latex/schule/tikz/usym1F40D.tikz + RELOC/tex/latex/schule/tikz/usym1F40E.tikz + RELOC/tex/latex/schule/tikz/usym1F40F.tikz + RELOC/tex/latex/schule/tikz/usym1F410.tikz + RELOC/tex/latex/schule/tikz/usym1F411.tikz + RELOC/tex/latex/schule/tikz/usym1F412.tikz + RELOC/tex/latex/schule/tikz/usym1F413.tikz + RELOC/tex/latex/schule/tikz/usym1F414.tikz + RELOC/tex/latex/schule/tikz/usym1F415.tikz + RELOC/tex/latex/schule/tikz/usym1F416.tikz + RELOC/tex/latex/schule/tikz/usym1F417.tikz + RELOC/tex/latex/schule/tikz/usym1F418.tikz + RELOC/tex/latex/schule/tikz/usym1F419.tikz + RELOC/tex/latex/schule/tikz/usym1F41A.tikz + RELOC/tex/latex/schule/tikz/usym1F41B.tikz + RELOC/tex/latex/schule/tikz/usym1F41C.tikz + RELOC/tex/latex/schule/tikz/usym1F41D.tikz + RELOC/tex/latex/schule/tikz/usym1F41E.tikz + RELOC/tex/latex/schule/tikz/usym1F41F.tikz + RELOC/tex/latex/schule/tikz/usym1F420.tikz + RELOC/tex/latex/schule/tikz/usym1F421.tikz + RELOC/tex/latex/schule/tikz/usym1F422.tikz + RELOC/tex/latex/schule/tikz/usym1F423.tikz + RELOC/tex/latex/schule/tikz/usym1F424.tikz + RELOC/tex/latex/schule/tikz/usym1F425.tikz + RELOC/tex/latex/schule/tikz/usym1F426.tikz + RELOC/tex/latex/schule/tikz/usym1F427.tikz + RELOC/tex/latex/schule/tikz/usym1F428.tikz + RELOC/tex/latex/schule/tikz/usym1F429.tikz + RELOC/tex/latex/schule/tikz/usym1F42A.tikz + RELOC/tex/latex/schule/tikz/usym1F42B.tikz + RELOC/tex/latex/schule/tikz/usym1F42C.tikz + RELOC/tex/latex/schule/tikz/usym1F42D.tikz + RELOC/tex/latex/schule/tikz/usym1F42E.tikz + RELOC/tex/latex/schule/tikz/usym1F42F.tikz + RELOC/tex/latex/schule/tikz/usym1F430.tikz + RELOC/tex/latex/schule/tikz/usym1F431.tikz + RELOC/tex/latex/schule/tikz/usym1F432.tikz + RELOC/tex/latex/schule/tikz/usym1F433.tikz + RELOC/tex/latex/schule/tikz/usym1F434.tikz + RELOC/tex/latex/schule/tikz/usym1F435.tikz + RELOC/tex/latex/schule/tikz/usym1F436.tikz + RELOC/tex/latex/schule/tikz/usym1F437.tikz + RELOC/tex/latex/schule/tikz/usym1F438.tikz + RELOC/tex/latex/schule/tikz/usym1F439.tikz + RELOC/tex/latex/schule/tikz/usym1F43A.tikz + RELOC/tex/latex/schule/tikz/usym1F43B.tikz + RELOC/tex/latex/schule/tikz/usym1F43C.tikz + RELOC/tex/latex/schule/tikz/usym1F43D.tikz + RELOC/tex/latex/schule/tikz/usym1F43E.tikz + RELOC/tex/latex/schule/tikz/usym1F43F.tikz + RELOC/tex/latex/schule/tikz/usym1F440.tikz + RELOC/tex/latex/schule/tikz/usym1F441.tikz + RELOC/tex/latex/schule/tikz/usym1F442.tikz + RELOC/tex/latex/schule/tikz/usym1F443.tikz + RELOC/tex/latex/schule/tikz/usym1F444.tikz + RELOC/tex/latex/schule/tikz/usym1F445.tikz + RELOC/tex/latex/schule/tikz/usym1F446.tikz + RELOC/tex/latex/schule/tikz/usym1F447.tikz + RELOC/tex/latex/schule/tikz/usym1F448.tikz + RELOC/tex/latex/schule/tikz/usym1F449.tikz + RELOC/tex/latex/schule/tikz/usym1F44A.tikz + RELOC/tex/latex/schule/tikz/usym1F44B.tikz + RELOC/tex/latex/schule/tikz/usym1F44C.tikz + RELOC/tex/latex/schule/tikz/usym1F44D.tikz + RELOC/tex/latex/schule/tikz/usym1F44E.tikz + RELOC/tex/latex/schule/tikz/usym1F44F.tikz + RELOC/tex/latex/schule/tikz/usym1F450.tikz + RELOC/tex/latex/schule/tikz/usym1F451.tikz + RELOC/tex/latex/schule/tikz/usym1F452.tikz + RELOC/tex/latex/schule/tikz/usym1F453.tikz + RELOC/tex/latex/schule/tikz/usym1F454.tikz + RELOC/tex/latex/schule/tikz/usym1F455.tikz + RELOC/tex/latex/schule/tikz/usym1F456.tikz + RELOC/tex/latex/schule/tikz/usym1F457.tikz + RELOC/tex/latex/schule/tikz/usym1F458.tikz + RELOC/tex/latex/schule/tikz/usym1F459.tikz + RELOC/tex/latex/schule/tikz/usym1F45A.tikz + RELOC/tex/latex/schule/tikz/usym1F45B.tikz + RELOC/tex/latex/schule/tikz/usym1F45C.tikz + RELOC/tex/latex/schule/tikz/usym1F45D.tikz + RELOC/tex/latex/schule/tikz/usym1F45E.tikz + RELOC/tex/latex/schule/tikz/usym1F45F.tikz + RELOC/tex/latex/schule/tikz/usym1F460.tikz + RELOC/tex/latex/schule/tikz/usym1F461.tikz + RELOC/tex/latex/schule/tikz/usym1F462.tikz + RELOC/tex/latex/schule/tikz/usym1F463.tikz + RELOC/tex/latex/schule/tikz/usym1F464.tikz + RELOC/tex/latex/schule/tikz/usym1F465.tikz + RELOC/tex/latex/schule/tikz/usym1F466.tikz + RELOC/tex/latex/schule/tikz/usym1F467.tikz + RELOC/tex/latex/schule/tikz/usym1F468.tikz + RELOC/tex/latex/schule/tikz/usym1F469.tikz + RELOC/tex/latex/schule/tikz/usym1F46A.tikz + RELOC/tex/latex/schule/tikz/usym1F46B.tikz + RELOC/tex/latex/schule/tikz/usym1F46C.tikz + RELOC/tex/latex/schule/tikz/usym1F46D.tikz + RELOC/tex/latex/schule/tikz/usym1F46E.tikz + RELOC/tex/latex/schule/tikz/usym1F46F.tikz + RELOC/tex/latex/schule/tikz/usym1F470.tikz + RELOC/tex/latex/schule/tikz/usym1F471.tikz + RELOC/tex/latex/schule/tikz/usym1F472.tikz + RELOC/tex/latex/schule/tikz/usym1F473.tikz + RELOC/tex/latex/schule/tikz/usym1F474.tikz + RELOC/tex/latex/schule/tikz/usym1F475.tikz + RELOC/tex/latex/schule/tikz/usym1F476.tikz + RELOC/tex/latex/schule/tikz/usym1F477.tikz + RELOC/tex/latex/schule/tikz/usym1F478.tikz + RELOC/tex/latex/schule/tikz/usym1F479.tikz + RELOC/tex/latex/schule/tikz/usym1F47A.tikz + RELOC/tex/latex/schule/tikz/usym1F47B.tikz + RELOC/tex/latex/schule/tikz/usym1F47C.tikz + RELOC/tex/latex/schule/tikz/usym1F47D.tikz + RELOC/tex/latex/schule/tikz/usym1F47E.tikz + RELOC/tex/latex/schule/tikz/usym1F47F.tikz + RELOC/tex/latex/schule/tikz/usym1F480.tikz + RELOC/tex/latex/schule/tikz/usym1F481.tikz + RELOC/tex/latex/schule/tikz/usym1F482.tikz + RELOC/tex/latex/schule/tikz/usym1F483.tikz + RELOC/tex/latex/schule/tikz/usym1F484.tikz + RELOC/tex/latex/schule/tikz/usym1F485.tikz + RELOC/tex/latex/schule/tikz/usym1F486.tikz + RELOC/tex/latex/schule/tikz/usym1F487.tikz + RELOC/tex/latex/schule/tikz/usym1F488.tikz + RELOC/tex/latex/schule/tikz/usym1F489.tikz + RELOC/tex/latex/schule/tikz/usym1F48A.tikz + RELOC/tex/latex/schule/tikz/usym1F48B.tikz + RELOC/tex/latex/schule/tikz/usym1F48C.tikz + RELOC/tex/latex/schule/tikz/usym1F48D.tikz + RELOC/tex/latex/schule/tikz/usym1F48E.tikz + RELOC/tex/latex/schule/tikz/usym1F48F.tikz + RELOC/tex/latex/schule/tikz/usym1F490.tikz + RELOC/tex/latex/schule/tikz/usym1F491.tikz + RELOC/tex/latex/schule/tikz/usym1F492.tikz + RELOC/tex/latex/schule/tikz/usym1F493.tikz + RELOC/tex/latex/schule/tikz/usym1F494.tikz + RELOC/tex/latex/schule/tikz/usym1F495.tikz + RELOC/tex/latex/schule/tikz/usym1F496.tikz + RELOC/tex/latex/schule/tikz/usym1F497.tikz + RELOC/tex/latex/schule/tikz/usym1F498.tikz + RELOC/tex/latex/schule/tikz/usym1F499.tikz + RELOC/tex/latex/schule/tikz/usym1F49A.tikz + RELOC/tex/latex/schule/tikz/usym1F49B.tikz + RELOC/tex/latex/schule/tikz/usym1F49C.tikz + RELOC/tex/latex/schule/tikz/usym1F49D.tikz + RELOC/tex/latex/schule/tikz/usym1F49E.tikz + RELOC/tex/latex/schule/tikz/usym1F49F.tikz + RELOC/tex/latex/schule/tikz/usym1F4A0.tikz + RELOC/tex/latex/schule/tikz/usym1F4A1.tikz + RELOC/tex/latex/schule/tikz/usym1F4A2.tikz + RELOC/tex/latex/schule/tikz/usym1F4A3.tikz + RELOC/tex/latex/schule/tikz/usym1F4A4.tikz + RELOC/tex/latex/schule/tikz/usym1F4A5.tikz + RELOC/tex/latex/schule/tikz/usym1F4A6.tikz + RELOC/tex/latex/schule/tikz/usym1F4A7.tikz + RELOC/tex/latex/schule/tikz/usym1F4A8.tikz + RELOC/tex/latex/schule/tikz/usym1F4A9.tikz + RELOC/tex/latex/schule/tikz/usym1F4AA.tikz + RELOC/tex/latex/schule/tikz/usym1F4AB.tikz + RELOC/tex/latex/schule/tikz/usym1F4AC.tikz + RELOC/tex/latex/schule/tikz/usym1F4AD.tikz + RELOC/tex/latex/schule/tikz/usym1F4AE.tikz + RELOC/tex/latex/schule/tikz/usym1F4AF.tikz + RELOC/tex/latex/schule/tikz/usym1F4B0.tikz + RELOC/tex/latex/schule/tikz/usym1F4B1.tikz + RELOC/tex/latex/schule/tikz/usym1F4B2.tikz + RELOC/tex/latex/schule/tikz/usym1F4B3.tikz + RELOC/tex/latex/schule/tikz/usym1F4B4.tikz + RELOC/tex/latex/schule/tikz/usym1F4B5.tikz + RELOC/tex/latex/schule/tikz/usym1F4B6.tikz + RELOC/tex/latex/schule/tikz/usym1F4B7.tikz + RELOC/tex/latex/schule/tikz/usym1F4B8.tikz + RELOC/tex/latex/schule/tikz/usym1F4B9.tikz + RELOC/tex/latex/schule/tikz/usym1F4BA.tikz + RELOC/tex/latex/schule/tikz/usym1F4BB.tikz + RELOC/tex/latex/schule/tikz/usym1F4BC.tikz + RELOC/tex/latex/schule/tikz/usym1F4BD.tikz + RELOC/tex/latex/schule/tikz/usym1F4BE.tikz + RELOC/tex/latex/schule/tikz/usym1F4BF.tikz + RELOC/tex/latex/schule/tikz/usym1F4C0.tikz + RELOC/tex/latex/schule/tikz/usym1F4C1.tikz + RELOC/tex/latex/schule/tikz/usym1F4C2.tikz + RELOC/tex/latex/schule/tikz/usym1F4C3.tikz + RELOC/tex/latex/schule/tikz/usym1F4C4.tikz + RELOC/tex/latex/schule/tikz/usym1F4C5.tikz + RELOC/tex/latex/schule/tikz/usym1F4C6.tikz + RELOC/tex/latex/schule/tikz/usym1F4C7.tikz + RELOC/tex/latex/schule/tikz/usym1F4C8.tikz + RELOC/tex/latex/schule/tikz/usym1F4C9.tikz + RELOC/tex/latex/schule/tikz/usym1F4CA.tikz + RELOC/tex/latex/schule/tikz/usym1F4CB.tikz + RELOC/tex/latex/schule/tikz/usym1F4CC.tikz + RELOC/tex/latex/schule/tikz/usym1F4CD.tikz + RELOC/tex/latex/schule/tikz/usym1F4CE.tikz + RELOC/tex/latex/schule/tikz/usym1F4CF.tikz + RELOC/tex/latex/schule/tikz/usym1F4D0.tikz + RELOC/tex/latex/schule/tikz/usym1F4D1.tikz + RELOC/tex/latex/schule/tikz/usym1F4D2.tikz + RELOC/tex/latex/schule/tikz/usym1F4D3.tikz + RELOC/tex/latex/schule/tikz/usym1F4D4.tikz + RELOC/tex/latex/schule/tikz/usym1F4D5.tikz + RELOC/tex/latex/schule/tikz/usym1F4D6.tikz + RELOC/tex/latex/schule/tikz/usym1F4D7.tikz + RELOC/tex/latex/schule/tikz/usym1F4D8.tikz + RELOC/tex/latex/schule/tikz/usym1F4D9.tikz + RELOC/tex/latex/schule/tikz/usym1F4DA.tikz + RELOC/tex/latex/schule/tikz/usym1F4DB.tikz + RELOC/tex/latex/schule/tikz/usym1F4DC.tikz + RELOC/tex/latex/schule/tikz/usym1F4DD.tikz + RELOC/tex/latex/schule/tikz/usym1F4DE.tikz + RELOC/tex/latex/schule/tikz/usym1F4DF.tikz + RELOC/tex/latex/schule/tikz/usym1F4E0.tikz + RELOC/tex/latex/schule/tikz/usym1F4E1.tikz + RELOC/tex/latex/schule/tikz/usym1F4E2.tikz + RELOC/tex/latex/schule/tikz/usym1F4E3.tikz + RELOC/tex/latex/schule/tikz/usym1F4E4.tikz + RELOC/tex/latex/schule/tikz/usym1F4E5.tikz + RELOC/tex/latex/schule/tikz/usym1F4E6.tikz + RELOC/tex/latex/schule/tikz/usym1F4E7.tikz + RELOC/tex/latex/schule/tikz/usym1F4E8.tikz + RELOC/tex/latex/schule/tikz/usym1F4E9.tikz + RELOC/tex/latex/schule/tikz/usym1F4EA.tikz + RELOC/tex/latex/schule/tikz/usym1F4EB.tikz + RELOC/tex/latex/schule/tikz/usym1F4EC.tikz + RELOC/tex/latex/schule/tikz/usym1F4ED.tikz + RELOC/tex/latex/schule/tikz/usym1F4EE.tikz + RELOC/tex/latex/schule/tikz/usym1F4EF.tikz + RELOC/tex/latex/schule/tikz/usym1F4F0.tikz + RELOC/tex/latex/schule/tikz/usym1F4F1.tikz + RELOC/tex/latex/schule/tikz/usym1F4F2.tikz + RELOC/tex/latex/schule/tikz/usym1F4F3.tikz + RELOC/tex/latex/schule/tikz/usym1F4F4.tikz + RELOC/tex/latex/schule/tikz/usym1F4F5.tikz + RELOC/tex/latex/schule/tikz/usym1F4F6.tikz + RELOC/tex/latex/schule/tikz/usym1F4F7.tikz + RELOC/tex/latex/schule/tikz/usym1F4F8.tikz + RELOC/tex/latex/schule/tikz/usym1F4F9.tikz + RELOC/tex/latex/schule/tikz/usym1F4FA.tikz + RELOC/tex/latex/schule/tikz/usym1F4FB.tikz + RELOC/tex/latex/schule/tikz/usym1F4FC.tikz + RELOC/tex/latex/schule/tikz/usym1F4FD.tikz + RELOC/tex/latex/schule/tikz/usym1F4FE.tikz + RELOC/tex/latex/schule/tikz/usym1F4FF.tikz + RELOC/tex/latex/schule/tikz/usym1F500.tikz + RELOC/tex/latex/schule/tikz/usym1F501.tikz + RELOC/tex/latex/schule/tikz/usym1F502.tikz + RELOC/tex/latex/schule/tikz/usym1F503.tikz + RELOC/tex/latex/schule/tikz/usym1F504.tikz + RELOC/tex/latex/schule/tikz/usym1F505.tikz + RELOC/tex/latex/schule/tikz/usym1F506.tikz + RELOC/tex/latex/schule/tikz/usym1F507.tikz + RELOC/tex/latex/schule/tikz/usym1F508.tikz + RELOC/tex/latex/schule/tikz/usym1F509.tikz + RELOC/tex/latex/schule/tikz/usym1F50A.tikz + RELOC/tex/latex/schule/tikz/usym1F50B.tikz + RELOC/tex/latex/schule/tikz/usym1F50C.tikz + RELOC/tex/latex/schule/tikz/usym1F50D.tikz + RELOC/tex/latex/schule/tikz/usym1F50E.tikz + RELOC/tex/latex/schule/tikz/usym1F50F.tikz + RELOC/tex/latex/schule/tikz/usym1F510.tikz + RELOC/tex/latex/schule/tikz/usym1F511.tikz + RELOC/tex/latex/schule/tikz/usym1F512.tikz + RELOC/tex/latex/schule/tikz/usym1F513.tikz + RELOC/tex/latex/schule/tikz/usym1F514.tikz + RELOC/tex/latex/schule/tikz/usym1F515.tikz + RELOC/tex/latex/schule/tikz/usym1F516.tikz + RELOC/tex/latex/schule/tikz/usym1F517.tikz + RELOC/tex/latex/schule/tikz/usym1F518.tikz + RELOC/tex/latex/schule/tikz/usym1F519.tikz + RELOC/tex/latex/schule/tikz/usym1F51A.tikz + RELOC/tex/latex/schule/tikz/usym1F51B.tikz + RELOC/tex/latex/schule/tikz/usym1F51C.tikz + RELOC/tex/latex/schule/tikz/usym1F51D.tikz + RELOC/tex/latex/schule/tikz/usym1F51E.tikz + RELOC/tex/latex/schule/tikz/usym1F51F.tikz + RELOC/tex/latex/schule/tikz/usym1F520.tikz + RELOC/tex/latex/schule/tikz/usym1F521.tikz + RELOC/tex/latex/schule/tikz/usym1F522.tikz + RELOC/tex/latex/schule/tikz/usym1F523.tikz + RELOC/tex/latex/schule/tikz/usym1F524.tikz + RELOC/tex/latex/schule/tikz/usym1F525.tikz + RELOC/tex/latex/schule/tikz/usym1F526.tikz + RELOC/tex/latex/schule/tikz/usym1F527.tikz + RELOC/tex/latex/schule/tikz/usym1F528.tikz + RELOC/tex/latex/schule/tikz/usym1F529.tikz + RELOC/tex/latex/schule/tikz/usym1F52A.tikz + RELOC/tex/latex/schule/tikz/usym1F52B.tikz + RELOC/tex/latex/schule/tikz/usym1F52C.tikz + RELOC/tex/latex/schule/tikz/usym1F52D.tikz + RELOC/tex/latex/schule/tikz/usym1F52E.tikz + RELOC/tex/latex/schule/tikz/usym1F52F.tikz + RELOC/tex/latex/schule/tikz/usym1F530.tikz + RELOC/tex/latex/schule/tikz/usym1F531.tikz + RELOC/tex/latex/schule/tikz/usym1F532.tikz + RELOC/tex/latex/schule/tikz/usym1F533.tikz + RELOC/tex/latex/schule/tikz/usym1F534.tikz + RELOC/tex/latex/schule/tikz/usym1F535.tikz + RELOC/tex/latex/schule/tikz/usym1F536.tikz + RELOC/tex/latex/schule/tikz/usym1F537.tikz + RELOC/tex/latex/schule/tikz/usym1F538.tikz + RELOC/tex/latex/schule/tikz/usym1F539.tikz + RELOC/tex/latex/schule/tikz/usym1F53A.tikz + RELOC/tex/latex/schule/tikz/usym1F53B.tikz + RELOC/tex/latex/schule/tikz/usym1F53C.tikz + RELOC/tex/latex/schule/tikz/usym1F53D.tikz + RELOC/tex/latex/schule/tikz/usym1F53E.tikz + RELOC/tex/latex/schule/tikz/usym1F53F.tikz + RELOC/tex/latex/schule/tikz/usym1F540.tikz + RELOC/tex/latex/schule/tikz/usym1F541.tikz + RELOC/tex/latex/schule/tikz/usym1F542.tikz + RELOC/tex/latex/schule/tikz/usym1F543.tikz + RELOC/tex/latex/schule/tikz/usym1F544.tikz + RELOC/tex/latex/schule/tikz/usym1F545.tikz + RELOC/tex/latex/schule/tikz/usym1F546.tikz + RELOC/tex/latex/schule/tikz/usym1F547.tikz + RELOC/tex/latex/schule/tikz/usym1F548.tikz + RELOC/tex/latex/schule/tikz/usym1F549.tikz + RELOC/tex/latex/schule/tikz/usym1F54A.tikz + RELOC/tex/latex/schule/tikz/usym1F54B.tikz + RELOC/tex/latex/schule/tikz/usym1F54C.tikz + RELOC/tex/latex/schule/tikz/usym1F54D.tikz + RELOC/tex/latex/schule/tikz/usym1F54E.tikz + RELOC/tex/latex/schule/tikz/usym1F54F.tikz + RELOC/tex/latex/schule/tikz/usym1F550.tikz + RELOC/tex/latex/schule/tikz/usym1F551.tikz + RELOC/tex/latex/schule/tikz/usym1F552.tikz + RELOC/tex/latex/schule/tikz/usym1F553.tikz + RELOC/tex/latex/schule/tikz/usym1F554.tikz + RELOC/tex/latex/schule/tikz/usym1F555.tikz + RELOC/tex/latex/schule/tikz/usym1F556.tikz + RELOC/tex/latex/schule/tikz/usym1F557.tikz + RELOC/tex/latex/schule/tikz/usym1F558.tikz + RELOC/tex/latex/schule/tikz/usym1F559.tikz + RELOC/tex/latex/schule/tikz/usym1F55A.tikz + RELOC/tex/latex/schule/tikz/usym1F55B.tikz + RELOC/tex/latex/schule/tikz/usym1F55C.tikz + RELOC/tex/latex/schule/tikz/usym1F55D.tikz + RELOC/tex/latex/schule/tikz/usym1F55E.tikz + RELOC/tex/latex/schule/tikz/usym1F55F.tikz + RELOC/tex/latex/schule/tikz/usym1F560.tikz + RELOC/tex/latex/schule/tikz/usym1F561.tikz + RELOC/tex/latex/schule/tikz/usym1F562.tikz + RELOC/tex/latex/schule/tikz/usym1F563.tikz + RELOC/tex/latex/schule/tikz/usym1F564.tikz + RELOC/tex/latex/schule/tikz/usym1F565.tikz + RELOC/tex/latex/schule/tikz/usym1F566.tikz + RELOC/tex/latex/schule/tikz/usym1F567.tikz + RELOC/tex/latex/schule/tikz/usym1F568.tikz + RELOC/tex/latex/schule/tikz/usym1F569.tikz + RELOC/tex/latex/schule/tikz/usym1F56A.tikz + RELOC/tex/latex/schule/tikz/usym1F56B.tikz + RELOC/tex/latex/schule/tikz/usym1F56C.tikz + RELOC/tex/latex/schule/tikz/usym1F56D.tikz + RELOC/tex/latex/schule/tikz/usym1F56E.tikz + RELOC/tex/latex/schule/tikz/usym1F56F.tikz + RELOC/tex/latex/schule/tikz/usym1F570.tikz + RELOC/tex/latex/schule/tikz/usym1F571.tikz + RELOC/tex/latex/schule/tikz/usym1F572.tikz + RELOC/tex/latex/schule/tikz/usym1F573.tikz + RELOC/tex/latex/schule/tikz/usym1F574.tikz + RELOC/tex/latex/schule/tikz/usym1F575.tikz + RELOC/tex/latex/schule/tikz/usym1F576.tikz + RELOC/tex/latex/schule/tikz/usym1F577.tikz + RELOC/tex/latex/schule/tikz/usym1F578.tikz + RELOC/tex/latex/schule/tikz/usym1F579.tikz + RELOC/tex/latex/schule/tikz/usym1F57A.tikz + RELOC/tex/latex/schule/tikz/usym1F57B.tikz + RELOC/tex/latex/schule/tikz/usym1F57C.tikz + RELOC/tex/latex/schule/tikz/usym1F57D.tikz + RELOC/tex/latex/schule/tikz/usym1F57E.tikz + RELOC/tex/latex/schule/tikz/usym1F57F.tikz + RELOC/tex/latex/schule/tikz/usym1F580.tikz + RELOC/tex/latex/schule/tikz/usym1F581.tikz + RELOC/tex/latex/schule/tikz/usym1F582.tikz + RELOC/tex/latex/schule/tikz/usym1F583.tikz + RELOC/tex/latex/schule/tikz/usym1F584.tikz + RELOC/tex/latex/schule/tikz/usym1F585.tikz + RELOC/tex/latex/schule/tikz/usym1F586.tikz + RELOC/tex/latex/schule/tikz/usym1F587.tikz + RELOC/tex/latex/schule/tikz/usym1F588.tikz + RELOC/tex/latex/schule/tikz/usym1F589.tikz + RELOC/tex/latex/schule/tikz/usym1F58A.tikz + RELOC/tex/latex/schule/tikz/usym1F58B.tikz + RELOC/tex/latex/schule/tikz/usym1F58C.tikz + RELOC/tex/latex/schule/tikz/usym1F58D.tikz + RELOC/tex/latex/schule/tikz/usym1F58E.tikz + RELOC/tex/latex/schule/tikz/usym1F58F.tikz + RELOC/tex/latex/schule/tikz/usym1F590.tikz + RELOC/tex/latex/schule/tikz/usym1F591.tikz + RELOC/tex/latex/schule/tikz/usym1F592.tikz + RELOC/tex/latex/schule/tikz/usym1F593.tikz + RELOC/tex/latex/schule/tikz/usym1F594.tikz + RELOC/tex/latex/schule/tikz/usym1F595.tikz + RELOC/tex/latex/schule/tikz/usym1F596.tikz + RELOC/tex/latex/schule/tikz/usym1F597.tikz + RELOC/tex/latex/schule/tikz/usym1F598.tikz + RELOC/tex/latex/schule/tikz/usym1F599.tikz + RELOC/tex/latex/schule/tikz/usym1F59A.tikz + RELOC/tex/latex/schule/tikz/usym1F59B.tikz + RELOC/tex/latex/schule/tikz/usym1F59C.tikz + RELOC/tex/latex/schule/tikz/usym1F59D.tikz + RELOC/tex/latex/schule/tikz/usym1F59E.tikz + RELOC/tex/latex/schule/tikz/usym1F59F.tikz + RELOC/tex/latex/schule/tikz/usym1F5A0.tikz + RELOC/tex/latex/schule/tikz/usym1F5A1.tikz + RELOC/tex/latex/schule/tikz/usym1F5A2.tikz + RELOC/tex/latex/schule/tikz/usym1F5A3.tikz + RELOC/tex/latex/schule/tikz/usym1F5A4.tikz + RELOC/tex/latex/schule/tikz/usym1F5A5.tikz + RELOC/tex/latex/schule/tikz/usym1F5A6.tikz + RELOC/tex/latex/schule/tikz/usym1F5A7.tikz + RELOC/tex/latex/schule/tikz/usym1F5A8.tikz + RELOC/tex/latex/schule/tikz/usym1F5A9.tikz + RELOC/tex/latex/schule/tikz/usym1F5AA.tikz + RELOC/tex/latex/schule/tikz/usym1F5AB.tikz + RELOC/tex/latex/schule/tikz/usym1F5AC.tikz + RELOC/tex/latex/schule/tikz/usym1F5AD.tikz + RELOC/tex/latex/schule/tikz/usym1F5AE.tikz + RELOC/tex/latex/schule/tikz/usym1F5AF.tikz + RELOC/tex/latex/schule/tikz/usym1F5B0.tikz + RELOC/tex/latex/schule/tikz/usym1F5B1.tikz + RELOC/tex/latex/schule/tikz/usym1F5B2.tikz + RELOC/tex/latex/schule/tikz/usym1F5B3.tikz + RELOC/tex/latex/schule/tikz/usym1F5B4.tikz + RELOC/tex/latex/schule/tikz/usym1F5B5.tikz + RELOC/tex/latex/schule/tikz/usym1F5B6.tikz + RELOC/tex/latex/schule/tikz/usym1F5B7.tikz + RELOC/tex/latex/schule/tikz/usym1F5B8.tikz + RELOC/tex/latex/schule/tikz/usym1F5B9.tikz + RELOC/tex/latex/schule/tikz/usym1F5BA.tikz + RELOC/tex/latex/schule/tikz/usym1F5BB.tikz + RELOC/tex/latex/schule/tikz/usym1F5BC.tikz + RELOC/tex/latex/schule/tikz/usym1F5BD.tikz + RELOC/tex/latex/schule/tikz/usym1F5BE.tikz + RELOC/tex/latex/schule/tikz/usym1F5BF.tikz + RELOC/tex/latex/schule/tikz/usym1F5C0.tikz + RELOC/tex/latex/schule/tikz/usym1F5C1.tikz + RELOC/tex/latex/schule/tikz/usym1F5C2.tikz + RELOC/tex/latex/schule/tikz/usym1F5C3.tikz + RELOC/tex/latex/schule/tikz/usym1F5C4.tikz + RELOC/tex/latex/schule/tikz/usym1F5C5.tikz + RELOC/tex/latex/schule/tikz/usym1F5C6.tikz + RELOC/tex/latex/schule/tikz/usym1F5C7.tikz + RELOC/tex/latex/schule/tikz/usym1F5C8.tikz + RELOC/tex/latex/schule/tikz/usym1F5C9.tikz + RELOC/tex/latex/schule/tikz/usym1F5CA.tikz + RELOC/tex/latex/schule/tikz/usym1F5CB.tikz + RELOC/tex/latex/schule/tikz/usym1F5CC.tikz + RELOC/tex/latex/schule/tikz/usym1F5CD.tikz + RELOC/tex/latex/schule/tikz/usym1F5CE.tikz + RELOC/tex/latex/schule/tikz/usym1F5CF.tikz + RELOC/tex/latex/schule/tikz/usym1F5D0.tikz + RELOC/tex/latex/schule/tikz/usym1F5D1.tikz + RELOC/tex/latex/schule/tikz/usym1F5D2.tikz + RELOC/tex/latex/schule/tikz/usym1F5D3.tikz + RELOC/tex/latex/schule/tikz/usym1F5D4.tikz + RELOC/tex/latex/schule/tikz/usym1F5D5.tikz + RELOC/tex/latex/schule/tikz/usym1F5D6.tikz + RELOC/tex/latex/schule/tikz/usym1F5D7.tikz + RELOC/tex/latex/schule/tikz/usym1F5D8.tikz + RELOC/tex/latex/schule/tikz/usym1F5D9.tikz + RELOC/tex/latex/schule/tikz/usym1F5DA.tikz + RELOC/tex/latex/schule/tikz/usym1F5DB.tikz + RELOC/tex/latex/schule/tikz/usym1F5DC.tikz + RELOC/tex/latex/schule/tikz/usym1F5DD.tikz + RELOC/tex/latex/schule/tikz/usym1F5DE.tikz + RELOC/tex/latex/schule/tikz/usym1F5DF.tikz + RELOC/tex/latex/schule/tikz/usym1F5E0.tikz + RELOC/tex/latex/schule/tikz/usym1F5E1.tikz + RELOC/tex/latex/schule/tikz/usym1F5E2.tikz + RELOC/tex/latex/schule/tikz/usym1F5E3.tikz + RELOC/tex/latex/schule/tikz/usym1F5E4.tikz + RELOC/tex/latex/schule/tikz/usym1F5E5.tikz + RELOC/tex/latex/schule/tikz/usym1F5E6.tikz + RELOC/tex/latex/schule/tikz/usym1F5E7.tikz + RELOC/tex/latex/schule/tikz/usym1F5E8.tikz + RELOC/tex/latex/schule/tikz/usym1F5E9.tikz + RELOC/tex/latex/schule/tikz/usym1F5EA.tikz + RELOC/tex/latex/schule/tikz/usym1F5EB.tikz + RELOC/tex/latex/schule/tikz/usym1F5EC.tikz + RELOC/tex/latex/schule/tikz/usym1F5ED.tikz + RELOC/tex/latex/schule/tikz/usym1F5EE.tikz + RELOC/tex/latex/schule/tikz/usym1F5EF.tikz + RELOC/tex/latex/schule/tikz/usym1F5F0.tikz + RELOC/tex/latex/schule/tikz/usym1F5F1.tikz + RELOC/tex/latex/schule/tikz/usym1F5F2.tikz + RELOC/tex/latex/schule/tikz/usym1F5F3.tikz + RELOC/tex/latex/schule/tikz/usym1F5F4.tikz + RELOC/tex/latex/schule/tikz/usym1F5F5.tikz + RELOC/tex/latex/schule/tikz/usym1F5F6.tikz + RELOC/tex/latex/schule/tikz/usym1F5F7.tikz + RELOC/tex/latex/schule/tikz/usym1F5F8.tikz + RELOC/tex/latex/schule/tikz/usym1F5F9.tikz + RELOC/tex/latex/schule/tikz/usym1F5FA.tikz + RELOC/tex/latex/schule/tikz/usym1F5FB.tikz + RELOC/tex/latex/schule/tikz/usym1F5FC.tikz + RELOC/tex/latex/schule/tikz/usym1F5FD.tikz + RELOC/tex/latex/schule/tikz/usym1F5FE.tikz + RELOC/tex/latex/schule/tikz/usym1F5FF.tikz + RELOC/tex/latex/schule/tikz/usym1F600.tikz + RELOC/tex/latex/schule/tikz/usym1F601.tikz + RELOC/tex/latex/schule/tikz/usym1F602.tikz + RELOC/tex/latex/schule/tikz/usym1F603.tikz + RELOC/tex/latex/schule/tikz/usym1F604.tikz + RELOC/tex/latex/schule/tikz/usym1F605.tikz + RELOC/tex/latex/schule/tikz/usym1F606.tikz + RELOC/tex/latex/schule/tikz/usym1F607.tikz + RELOC/tex/latex/schule/tikz/usym1F608.tikz + RELOC/tex/latex/schule/tikz/usym1F609.tikz + RELOC/tex/latex/schule/tikz/usym1F60A.tikz + RELOC/tex/latex/schule/tikz/usym1F60B.tikz + RELOC/tex/latex/schule/tikz/usym1F60C.tikz + RELOC/tex/latex/schule/tikz/usym1F60D.tikz + RELOC/tex/latex/schule/tikz/usym1F60E.tikz + RELOC/tex/latex/schule/tikz/usym1F60F.tikz + RELOC/tex/latex/schule/tikz/usym1F610.tikz + RELOC/tex/latex/schule/tikz/usym1F611.tikz + RELOC/tex/latex/schule/tikz/usym1F612.tikz + RELOC/tex/latex/schule/tikz/usym1F613.tikz + RELOC/tex/latex/schule/tikz/usym1F614.tikz + RELOC/tex/latex/schule/tikz/usym1F615.tikz + RELOC/tex/latex/schule/tikz/usym1F616.tikz + RELOC/tex/latex/schule/tikz/usym1F617.tikz + RELOC/tex/latex/schule/tikz/usym1F618.tikz + RELOC/tex/latex/schule/tikz/usym1F619.tikz + RELOC/tex/latex/schule/tikz/usym1F61A.tikz + RELOC/tex/latex/schule/tikz/usym1F61B.tikz + RELOC/tex/latex/schule/tikz/usym1F61C.tikz + RELOC/tex/latex/schule/tikz/usym1F61D.tikz + RELOC/tex/latex/schule/tikz/usym1F61E.tikz + RELOC/tex/latex/schule/tikz/usym1F61F.tikz + RELOC/tex/latex/schule/tikz/usym1F620.tikz + RELOC/tex/latex/schule/tikz/usym1F621.tikz + RELOC/tex/latex/schule/tikz/usym1F622.tikz + RELOC/tex/latex/schule/tikz/usym1F623.tikz + RELOC/tex/latex/schule/tikz/usym1F624.tikz + RELOC/tex/latex/schule/tikz/usym1F625.tikz + RELOC/tex/latex/schule/tikz/usym1F626.tikz + RELOC/tex/latex/schule/tikz/usym1F627.tikz + RELOC/tex/latex/schule/tikz/usym1F628.tikz + RELOC/tex/latex/schule/tikz/usym1F629.tikz + RELOC/tex/latex/schule/tikz/usym1F62A.tikz + RELOC/tex/latex/schule/tikz/usym1F62B.tikz + RELOC/tex/latex/schule/tikz/usym1F62C.tikz + RELOC/tex/latex/schule/tikz/usym1F62D.tikz + RELOC/tex/latex/schule/tikz/usym1F62E.tikz + RELOC/tex/latex/schule/tikz/usym1F62F.tikz + RELOC/tex/latex/schule/tikz/usym1F630.tikz + RELOC/tex/latex/schule/tikz/usym1F631.tikz + RELOC/tex/latex/schule/tikz/usym1F632.tikz + RELOC/tex/latex/schule/tikz/usym1F633.tikz + RELOC/tex/latex/schule/tikz/usym1F634.tikz + RELOC/tex/latex/schule/tikz/usym1F635.tikz + RELOC/tex/latex/schule/tikz/usym1F636.tikz + RELOC/tex/latex/schule/tikz/usym1F637.tikz + RELOC/tex/latex/schule/tikz/usym1F638.tikz + RELOC/tex/latex/schule/tikz/usym1F639.tikz + RELOC/tex/latex/schule/tikz/usym1F63A.tikz + RELOC/tex/latex/schule/tikz/usym1F63B.tikz + RELOC/tex/latex/schule/tikz/usym1F63C.tikz + RELOC/tex/latex/schule/tikz/usym1F63D.tikz + RELOC/tex/latex/schule/tikz/usym1F63E.tikz + RELOC/tex/latex/schule/tikz/usym1F63F.tikz + RELOC/tex/latex/schule/tikz/usym1F640.tikz + RELOC/tex/latex/schule/tikz/usym1F641.tikz + RELOC/tex/latex/schule/tikz/usym1F642.tikz + RELOC/tex/latex/schule/tikz/usym1F643.tikz + RELOC/tex/latex/schule/tikz/usym1F644.tikz + RELOC/tex/latex/schule/tikz/usym1F645.tikz + RELOC/tex/latex/schule/tikz/usym1F646.tikz + RELOC/tex/latex/schule/tikz/usym1F647.tikz + RELOC/tex/latex/schule/tikz/usym1F648.tikz + RELOC/tex/latex/schule/tikz/usym1F649.tikz + RELOC/tex/latex/schule/tikz/usym1F64A.tikz + RELOC/tex/latex/schule/tikz/usym1F64B.tikz + RELOC/tex/latex/schule/tikz/usym1F64C.tikz + RELOC/tex/latex/schule/tikz/usym1F64D.tikz + RELOC/tex/latex/schule/tikz/usym1F64E.tikz + RELOC/tex/latex/schule/tikz/usym1F64F.tikz + RELOC/tex/latex/schule/tikz/usym1F680.tikz + RELOC/tex/latex/schule/tikz/usym1F681.tikz + RELOC/tex/latex/schule/tikz/usym1F682.tikz + RELOC/tex/latex/schule/tikz/usym1F683.tikz + RELOC/tex/latex/schule/tikz/usym1F684.tikz + RELOC/tex/latex/schule/tikz/usym1F685.tikz + RELOC/tex/latex/schule/tikz/usym1F686.tikz + RELOC/tex/latex/schule/tikz/usym1F687.tikz + RELOC/tex/latex/schule/tikz/usym1F688.tikz + RELOC/tex/latex/schule/tikz/usym1F689.tikz + RELOC/tex/latex/schule/tikz/usym1F68A.tikz + RELOC/tex/latex/schule/tikz/usym1F68B.tikz + RELOC/tex/latex/schule/tikz/usym1F68C.tikz + RELOC/tex/latex/schule/tikz/usym1F68D.tikz + RELOC/tex/latex/schule/tikz/usym1F68E.tikz + RELOC/tex/latex/schule/tikz/usym1F68F.tikz + RELOC/tex/latex/schule/tikz/usym1F690.tikz + RELOC/tex/latex/schule/tikz/usym1F691.tikz + RELOC/tex/latex/schule/tikz/usym1F692.tikz + RELOC/tex/latex/schule/tikz/usym1F693.tikz + RELOC/tex/latex/schule/tikz/usym1F694.tikz + RELOC/tex/latex/schule/tikz/usym1F695.tikz + RELOC/tex/latex/schule/tikz/usym1F696.tikz + RELOC/tex/latex/schule/tikz/usym1F697.tikz + RELOC/tex/latex/schule/tikz/usym1F698.tikz + RELOC/tex/latex/schule/tikz/usym1F699.tikz + RELOC/tex/latex/schule/tikz/usym1F69A.tikz + RELOC/tex/latex/schule/tikz/usym1F69B.tikz + RELOC/tex/latex/schule/tikz/usym1F69C.tikz + RELOC/tex/latex/schule/tikz/usym1F69D.tikz + RELOC/tex/latex/schule/tikz/usym1F69E.tikz + RELOC/tex/latex/schule/tikz/usym1F69F.tikz + RELOC/tex/latex/schule/tikz/usym1F6A0.tikz + RELOC/tex/latex/schule/tikz/usym1F6A1.tikz + RELOC/tex/latex/schule/tikz/usym1F6A2.tikz + RELOC/tex/latex/schule/tikz/usym1F6A3.tikz + RELOC/tex/latex/schule/tikz/usym1F6A4.tikz + RELOC/tex/latex/schule/tikz/usym1F6A5.tikz + RELOC/tex/latex/schule/tikz/usym1F6A6.tikz + RELOC/tex/latex/schule/tikz/usym1F6A7.tikz + RELOC/tex/latex/schule/tikz/usym1F6A8.tikz + RELOC/tex/latex/schule/tikz/usym1F6A9.tikz + RELOC/tex/latex/schule/tikz/usym1F6AA.tikz + RELOC/tex/latex/schule/tikz/usym1F6AB.tikz + RELOC/tex/latex/schule/tikz/usym1F6AC.tikz + RELOC/tex/latex/schule/tikz/usym1F6AD.tikz + RELOC/tex/latex/schule/tikz/usym1F6AE.tikz + RELOC/tex/latex/schule/tikz/usym1F6AF.tikz + RELOC/tex/latex/schule/tikz/usym1F6B0.tikz + RELOC/tex/latex/schule/tikz/usym1F6B1.tikz + RELOC/tex/latex/schule/tikz/usym1F6B2.tikz + RELOC/tex/latex/schule/tikz/usym1F6B3.tikz + RELOC/tex/latex/schule/tikz/usym1F6B4.tikz + RELOC/tex/latex/schule/tikz/usym1F6B5.tikz + RELOC/tex/latex/schule/tikz/usym1F6B6.tikz + RELOC/tex/latex/schule/tikz/usym1F6B7.tikz + RELOC/tex/latex/schule/tikz/usym1F6B8.tikz + RELOC/tex/latex/schule/tikz/usym1F6B9.tikz + RELOC/tex/latex/schule/tikz/usym1F6BA.tikz + RELOC/tex/latex/schule/tikz/usym1F6BB.tikz + RELOC/tex/latex/schule/tikz/usym1F6BC.tikz + RELOC/tex/latex/schule/tikz/usym1F6BD.tikz + RELOC/tex/latex/schule/tikz/usym1F6BE.tikz + RELOC/tex/latex/schule/tikz/usym1F6BF.tikz + RELOC/tex/latex/schule/tikz/usym1F6C0.tikz + RELOC/tex/latex/schule/tikz/usym1F6C1.tikz + RELOC/tex/latex/schule/tikz/usym1F6C2.tikz + RELOC/tex/latex/schule/tikz/usym1F6C3.tikz + RELOC/tex/latex/schule/tikz/usym1F6C4.tikz + RELOC/tex/latex/schule/tikz/usym1F6C5.tikz + RELOC/tex/latex/schule/tikz/usym1F6C6.tikz + RELOC/tex/latex/schule/tikz/usym1F6C7.tikz + RELOC/tex/latex/schule/tikz/usym1F6C8.tikz + RELOC/tex/latex/schule/tikz/usym1F6C9.tikz + RELOC/tex/latex/schule/tikz/usym1F6CA.tikz + RELOC/tex/latex/schule/tikz/usym1F6CB.tikz + RELOC/tex/latex/schule/tikz/usym1F6CC.tikz + RELOC/tex/latex/schule/tikz/usym1F6CD.tikz + RELOC/tex/latex/schule/tikz/usym1F6CE.tikz + RELOC/tex/latex/schule/tikz/usym1F6CF.tikz + RELOC/tex/latex/schule/tikz/usym1F6D0.tikz + RELOC/tex/latex/schule/tikz/usym1F6D1.tikz + RELOC/tex/latex/schule/tikz/usym1F6D2.tikz + RELOC/tex/latex/schule/tikz/usym1F6D3.tikz + RELOC/tex/latex/schule/tikz/usym1F6D4.tikz + RELOC/tex/latex/schule/tikz/usym1F6D5.tikz + RELOC/tex/latex/schule/tikz/usym1F6D6.tikz + RELOC/tex/latex/schule/tikz/usym1F6D7.tikz + RELOC/tex/latex/schule/tikz/usym1F6D8.tikz + RELOC/tex/latex/schule/tikz/usym1F6D9.tikz + RELOC/tex/latex/schule/tikz/usym1F6DA.tikz + RELOC/tex/latex/schule/tikz/usym1F6DB.tikz + RELOC/tex/latex/schule/tikz/usym1F6DC.tikz + RELOC/tex/latex/schule/tikz/usym1F6DD.tikz + RELOC/tex/latex/schule/tikz/usym1F6DE.tikz + RELOC/tex/latex/schule/tikz/usym1F6DF.tikz + RELOC/tex/latex/schule/tikz/usym1F6E0.tikz + RELOC/tex/latex/schule/tikz/usym1F6E1.tikz + RELOC/tex/latex/schule/tikz/usym1F6E2.tikz + RELOC/tex/latex/schule/tikz/usym1F6E3.tikz + RELOC/tex/latex/schule/tikz/usym1F6E4.tikz + RELOC/tex/latex/schule/tikz/usym1F6E5.tikz + RELOC/tex/latex/schule/tikz/usym1F6E6.tikz + RELOC/tex/latex/schule/tikz/usym1F6E7.tikz + RELOC/tex/latex/schule/tikz/usym1F6E8.tikz + RELOC/tex/latex/schule/tikz/usym1F6E9.tikz + RELOC/tex/latex/schule/tikz/usym1F6EA.tikz + RELOC/tex/latex/schule/tikz/usym1F6EB.tikz + RELOC/tex/latex/schule/tikz/usym1F6EC.tikz + RELOC/tex/latex/schule/tikz/usym1F6ED.tikz + RELOC/tex/latex/schule/tikz/usym1F6EE.tikz + RELOC/tex/latex/schule/tikz/usym1F6EF.tikz + RELOC/tex/latex/schule/tikz/usym1F6F0.tikz + RELOC/tex/latex/schule/tikz/usym1F6F1.tikz + RELOC/tex/latex/schule/tikz/usym1F6F2.tikz + RELOC/tex/latex/schule/tikz/usym1F6F3.tikz + RELOC/tex/latex/schule/tikz/usym1F6F4.tikz + RELOC/tex/latex/schule/tikz/usym1F6F5.tikz + RELOC/tex/latex/schule/tikz/usym1F6F6.tikz + RELOC/tex/latex/schule/tikz/usym1F6F7.tikz + RELOC/tex/latex/schule/tikz/usym1F6F8.tikz + RELOC/tex/latex/schule/tikz/usym1F6F9.tikz + RELOC/tex/latex/schule/tikz/usym1F6FA.tikz + RELOC/tex/latex/schule/tikz/usym1F6FB.tikz + RELOC/tex/latex/schule/tikz/usym1F6FC.tikz + RELOC/tex/latex/schule/tikz/usym1F6FD.tikz + RELOC/tex/latex/schule/tikz/usym1F6FE.tikz + RELOC/tex/latex/schule/tikz/usym1F6FF.tikz + RELOC/tex/latex/schule/tikz/usym2600.tikz + RELOC/tex/latex/schule/tikz/usym2601.tikz + RELOC/tex/latex/schule/tikz/usym2602.tikz + RELOC/tex/latex/schule/tikz/usym2603.tikz + RELOC/tex/latex/schule/tikz/usym2604.tikz + RELOC/tex/latex/schule/tikz/usym2605.tikz + RELOC/tex/latex/schule/tikz/usym2606.tikz + RELOC/tex/latex/schule/tikz/usym2607.tikz + RELOC/tex/latex/schule/tikz/usym2608.tikz + RELOC/tex/latex/schule/tikz/usym2609.tikz + RELOC/tex/latex/schule/tikz/usym260A.tikz + RELOC/tex/latex/schule/tikz/usym260B.tikz + RELOC/tex/latex/schule/tikz/usym260C.tikz + RELOC/tex/latex/schule/tikz/usym260D.tikz + RELOC/tex/latex/schule/tikz/usym260E.tikz + RELOC/tex/latex/schule/tikz/usym260F.tikz + RELOC/tex/latex/schule/tikz/usym2610.tikz + RELOC/tex/latex/schule/tikz/usym2611.tikz + RELOC/tex/latex/schule/tikz/usym2612.tikz + RELOC/tex/latex/schule/tikz/usym2613.tikz + RELOC/tex/latex/schule/tikz/usym2614.tikz + RELOC/tex/latex/schule/tikz/usym2615.tikz + RELOC/tex/latex/schule/tikz/usym2616.tikz + RELOC/tex/latex/schule/tikz/usym2617.tikz + RELOC/tex/latex/schule/tikz/usym2618.tikz + RELOC/tex/latex/schule/tikz/usym2619.tikz + RELOC/tex/latex/schule/tikz/usym261A.tikz + RELOC/tex/latex/schule/tikz/usym261B.tikz + RELOC/tex/latex/schule/tikz/usym261C.tikz + RELOC/tex/latex/schule/tikz/usym261D.tikz + RELOC/tex/latex/schule/tikz/usym261E.tikz + RELOC/tex/latex/schule/tikz/usym261F.tikz + RELOC/tex/latex/schule/tikz/usym2620.tikz + RELOC/tex/latex/schule/tikz/usym2621.tikz + RELOC/tex/latex/schule/tikz/usym2622.tikz + RELOC/tex/latex/schule/tikz/usym2623.tikz + RELOC/tex/latex/schule/tikz/usym2624.tikz + RELOC/tex/latex/schule/tikz/usym2625.tikz + RELOC/tex/latex/schule/tikz/usym2626.tikz + RELOC/tex/latex/schule/tikz/usym2627.tikz + RELOC/tex/latex/schule/tikz/usym2628.tikz + RELOC/tex/latex/schule/tikz/usym2629.tikz + RELOC/tex/latex/schule/tikz/usym262A.tikz + RELOC/tex/latex/schule/tikz/usym262B.tikz + RELOC/tex/latex/schule/tikz/usym262C.tikz + RELOC/tex/latex/schule/tikz/usym262D.tikz + RELOC/tex/latex/schule/tikz/usym262E.tikz + RELOC/tex/latex/schule/tikz/usym262F.tikz + RELOC/tex/latex/schule/tikz/usym2630.tikz + RELOC/tex/latex/schule/tikz/usym2631.tikz + RELOC/tex/latex/schule/tikz/usym2632.tikz + RELOC/tex/latex/schule/tikz/usym2633.tikz + RELOC/tex/latex/schule/tikz/usym2634.tikz + RELOC/tex/latex/schule/tikz/usym2635.tikz + RELOC/tex/latex/schule/tikz/usym2636.tikz + RELOC/tex/latex/schule/tikz/usym2637.tikz + RELOC/tex/latex/schule/tikz/usym2638.tikz + RELOC/tex/latex/schule/tikz/usym2639.tikz + RELOC/tex/latex/schule/tikz/usym263A.tikz + RELOC/tex/latex/schule/tikz/usym263B.tikz + RELOC/tex/latex/schule/tikz/usym263C.tikz + RELOC/tex/latex/schule/tikz/usym263D.tikz + RELOC/tex/latex/schule/tikz/usym263E.tikz + RELOC/tex/latex/schule/tikz/usym263F.tikz + RELOC/tex/latex/schule/tikz/usym2640.tikz + RELOC/tex/latex/schule/tikz/usym2641.tikz + RELOC/tex/latex/schule/tikz/usym2642.tikz + RELOC/tex/latex/schule/tikz/usym2643.tikz + RELOC/tex/latex/schule/tikz/usym2644.tikz + RELOC/tex/latex/schule/tikz/usym2645.tikz + RELOC/tex/latex/schule/tikz/usym2646.tikz + RELOC/tex/latex/schule/tikz/usym2647.tikz + RELOC/tex/latex/schule/tikz/usym2648.tikz + RELOC/tex/latex/schule/tikz/usym2649.tikz + RELOC/tex/latex/schule/tikz/usym264A.tikz + RELOC/tex/latex/schule/tikz/usym264B.tikz + RELOC/tex/latex/schule/tikz/usym264C.tikz + RELOC/tex/latex/schule/tikz/usym264D.tikz + RELOC/tex/latex/schule/tikz/usym264E.tikz + RELOC/tex/latex/schule/tikz/usym264F.tikz + RELOC/tex/latex/schule/tikz/usym2650.tikz + RELOC/tex/latex/schule/tikz/usym2651.tikz + RELOC/tex/latex/schule/tikz/usym2652.tikz + RELOC/tex/latex/schule/tikz/usym2653.tikz + RELOC/tex/latex/schule/tikz/usym2654.tikz + RELOC/tex/latex/schule/tikz/usym2655.tikz + RELOC/tex/latex/schule/tikz/usym2656.tikz + RELOC/tex/latex/schule/tikz/usym2657.tikz + RELOC/tex/latex/schule/tikz/usym2658.tikz + RELOC/tex/latex/schule/tikz/usym2659.tikz + RELOC/tex/latex/schule/tikz/usym265A.tikz + RELOC/tex/latex/schule/tikz/usym265B.tikz + RELOC/tex/latex/schule/tikz/usym265C.tikz + RELOC/tex/latex/schule/tikz/usym265D.tikz + RELOC/tex/latex/schule/tikz/usym265E.tikz + RELOC/tex/latex/schule/tikz/usym265F.tikz + RELOC/tex/latex/schule/tikz/usym2660.tikz + RELOC/tex/latex/schule/tikz/usym2661.tikz + RELOC/tex/latex/schule/tikz/usym2662.tikz + RELOC/tex/latex/schule/tikz/usym2663.tikz + RELOC/tex/latex/schule/tikz/usym2664.tikz + RELOC/tex/latex/schule/tikz/usym2665.tikz + RELOC/tex/latex/schule/tikz/usym2666.tikz + RELOC/tex/latex/schule/tikz/usym2667.tikz + RELOC/tex/latex/schule/tikz/usym2668.tikz + RELOC/tex/latex/schule/tikz/usym2669.tikz + RELOC/tex/latex/schule/tikz/usym266A.tikz + RELOC/tex/latex/schule/tikz/usym266B.tikz + RELOC/tex/latex/schule/tikz/usym266C.tikz + RELOC/tex/latex/schule/tikz/usym266D.tikz + RELOC/tex/latex/schule/tikz/usym266E.tikz + RELOC/tex/latex/schule/tikz/usym266F.tikz + RELOC/tex/latex/schule/tikz/usym2670.tikz + RELOC/tex/latex/schule/tikz/usym2671.tikz + RELOC/tex/latex/schule/tikz/usym2672.tikz + RELOC/tex/latex/schule/tikz/usym2673.tikz + RELOC/tex/latex/schule/tikz/usym2674.tikz + RELOC/tex/latex/schule/tikz/usym2675.tikz + RELOC/tex/latex/schule/tikz/usym2676.tikz + RELOC/tex/latex/schule/tikz/usym2677.tikz + RELOC/tex/latex/schule/tikz/usym2678.tikz + RELOC/tex/latex/schule/tikz/usym2679.tikz + RELOC/tex/latex/schule/tikz/usym267A.tikz + RELOC/tex/latex/schule/tikz/usym267B.tikz + RELOC/tex/latex/schule/tikz/usym267C.tikz + RELOC/tex/latex/schule/tikz/usym267D.tikz + RELOC/tex/latex/schule/tikz/usym267E.tikz + RELOC/tex/latex/schule/tikz/usym267F.tikz + RELOC/tex/latex/schule/tikz/usym2680.tikz + RELOC/tex/latex/schule/tikz/usym2681.tikz + RELOC/tex/latex/schule/tikz/usym2682.tikz + RELOC/tex/latex/schule/tikz/usym2683.tikz + RELOC/tex/latex/schule/tikz/usym2684.tikz + RELOC/tex/latex/schule/tikz/usym2685.tikz + RELOC/tex/latex/schule/tikz/usym2686.tikz + RELOC/tex/latex/schule/tikz/usym2687.tikz + RELOC/tex/latex/schule/tikz/usym2688.tikz + RELOC/tex/latex/schule/tikz/usym2689.tikz + RELOC/tex/latex/schule/tikz/usym268A.tikz + RELOC/tex/latex/schule/tikz/usym268B.tikz + RELOC/tex/latex/schule/tikz/usym268C.tikz + RELOC/tex/latex/schule/tikz/usym268D.tikz + RELOC/tex/latex/schule/tikz/usym268E.tikz + RELOC/tex/latex/schule/tikz/usym268F.tikz + RELOC/tex/latex/schule/tikz/usym2690.tikz + RELOC/tex/latex/schule/tikz/usym2691.tikz + RELOC/tex/latex/schule/tikz/usym2692.tikz + RELOC/tex/latex/schule/tikz/usym2693.tikz + RELOC/tex/latex/schule/tikz/usym2694.tikz + RELOC/tex/latex/schule/tikz/usym2695.tikz + RELOC/tex/latex/schule/tikz/usym2696.tikz + RELOC/tex/latex/schule/tikz/usym2697.tikz + RELOC/tex/latex/schule/tikz/usym2698.tikz + RELOC/tex/latex/schule/tikz/usym2699.tikz + RELOC/tex/latex/schule/tikz/usym269A.tikz + RELOC/tex/latex/schule/tikz/usym269B.tikz + RELOC/tex/latex/schule/tikz/usym269C.tikz + RELOC/tex/latex/schule/tikz/usym269D.tikz + RELOC/tex/latex/schule/tikz/usym269E.tikz + RELOC/tex/latex/schule/tikz/usym269F.tikz + RELOC/tex/latex/schule/tikz/usym26A0.tikz + RELOC/tex/latex/schule/tikz/usym26A1.tikz + RELOC/tex/latex/schule/tikz/usym26A2.tikz + RELOC/tex/latex/schule/tikz/usym26A3.tikz + RELOC/tex/latex/schule/tikz/usym26A4.tikz + RELOC/tex/latex/schule/tikz/usym26A5.tikz + RELOC/tex/latex/schule/tikz/usym26A6.tikz + RELOC/tex/latex/schule/tikz/usym26A7.tikz + RELOC/tex/latex/schule/tikz/usym26A8.tikz + RELOC/tex/latex/schule/tikz/usym26A9.tikz + RELOC/tex/latex/schule/tikz/usym26AA.tikz + RELOC/tex/latex/schule/tikz/usym26AB.tikz + RELOC/tex/latex/schule/tikz/usym26AC.tikz + RELOC/tex/latex/schule/tikz/usym26AD.tikz + RELOC/tex/latex/schule/tikz/usym26AE.tikz + RELOC/tex/latex/schule/tikz/usym26AF.tikz + RELOC/tex/latex/schule/tikz/usym26B0.tikz + RELOC/tex/latex/schule/tikz/usym26B1.tikz + RELOC/tex/latex/schule/tikz/usym26B2.tikz + RELOC/tex/latex/schule/tikz/usym26B3.tikz + RELOC/tex/latex/schule/tikz/usym26B4.tikz + RELOC/tex/latex/schule/tikz/usym26B5.tikz + RELOC/tex/latex/schule/tikz/usym26B6.tikz + RELOC/tex/latex/schule/tikz/usym26B7.tikz + RELOC/tex/latex/schule/tikz/usym26B8.tikz + RELOC/tex/latex/schule/tikz/usym26B9.tikz + RELOC/tex/latex/schule/tikz/usym26BA.tikz + RELOC/tex/latex/schule/tikz/usym26BB.tikz + RELOC/tex/latex/schule/tikz/usym26BC.tikz + RELOC/tex/latex/schule/tikz/usym26BD.tikz + RELOC/tex/latex/schule/tikz/usym26BE.tikz + RELOC/tex/latex/schule/tikz/usym26BF.tikz + RELOC/tex/latex/schule/tikz/usym26C0.tikz + RELOC/tex/latex/schule/tikz/usym26C1.tikz + RELOC/tex/latex/schule/tikz/usym26C2.tikz + RELOC/tex/latex/schule/tikz/usym26C3.tikz + RELOC/tex/latex/schule/tikz/usym26C4.tikz + RELOC/tex/latex/schule/tikz/usym26C5.tikz + RELOC/tex/latex/schule/tikz/usym26C6.tikz + RELOC/tex/latex/schule/tikz/usym26C7.tikz + RELOC/tex/latex/schule/tikz/usym26C8.tikz + RELOC/tex/latex/schule/tikz/usym26C9.tikz + RELOC/tex/latex/schule/tikz/usym26CA.tikz + RELOC/tex/latex/schule/tikz/usym26CB.tikz + RELOC/tex/latex/schule/tikz/usym26CC.tikz + RELOC/tex/latex/schule/tikz/usym26CD.tikz + RELOC/tex/latex/schule/tikz/usym26CE.tikz + RELOC/tex/latex/schule/tikz/usym26CF.tikz + RELOC/tex/latex/schule/tikz/usym26D0.tikz + RELOC/tex/latex/schule/tikz/usym26D1.tikz + RELOC/tex/latex/schule/tikz/usym26D2.tikz + RELOC/tex/latex/schule/tikz/usym26D3.tikz + RELOC/tex/latex/schule/tikz/usym26D4.tikz + RELOC/tex/latex/schule/tikz/usym26D5.tikz + RELOC/tex/latex/schule/tikz/usym26D6.tikz + RELOC/tex/latex/schule/tikz/usym26D7.tikz + RELOC/tex/latex/schule/tikz/usym26D8.tikz + RELOC/tex/latex/schule/tikz/usym26D9.tikz + RELOC/tex/latex/schule/tikz/usym26DA.tikz + RELOC/tex/latex/schule/tikz/usym26DB.tikz + RELOC/tex/latex/schule/tikz/usym26DC.tikz + RELOC/tex/latex/schule/tikz/usym26DD.tikz + RELOC/tex/latex/schule/tikz/usym26DE.tikz + RELOC/tex/latex/schule/tikz/usym26DF.tikz + RELOC/tex/latex/schule/tikz/usym26E0.tikz + RELOC/tex/latex/schule/tikz/usym26E1.tikz + RELOC/tex/latex/schule/tikz/usym26E2.tikz + RELOC/tex/latex/schule/tikz/usym26E3.tikz + RELOC/tex/latex/schule/tikz/usym26E4.tikz + RELOC/tex/latex/schule/tikz/usym26E5.tikz + RELOC/tex/latex/schule/tikz/usym26E6.tikz + RELOC/tex/latex/schule/tikz/usym26E7.tikz + RELOC/tex/latex/schule/tikz/usym26E8.tikz + RELOC/tex/latex/schule/tikz/usym26E9.tikz + RELOC/tex/latex/schule/tikz/usym26EA.tikz + RELOC/tex/latex/schule/tikz/usym26EB.tikz + RELOC/tex/latex/schule/tikz/usym26EC.tikz + RELOC/tex/latex/schule/tikz/usym26ED.tikz + RELOC/tex/latex/schule/tikz/usym26EE.tikz + RELOC/tex/latex/schule/tikz/usym26EF.tikz + RELOC/tex/latex/schule/tikz/usym26F0.tikz + RELOC/tex/latex/schule/tikz/usym26F1.tikz + RELOC/tex/latex/schule/tikz/usym26F2.tikz + RELOC/tex/latex/schule/tikz/usym26F3.tikz + RELOC/tex/latex/schule/tikz/usym26F4.tikz + RELOC/tex/latex/schule/tikz/usym26F5.tikz + RELOC/tex/latex/schule/tikz/usym26F6.tikz + RELOC/tex/latex/schule/tikz/usym26F7.tikz + RELOC/tex/latex/schule/tikz/usym26F8.tikz + RELOC/tex/latex/schule/tikz/usym26F9.tikz + RELOC/tex/latex/schule/tikz/usym26FA.tikz + RELOC/tex/latex/schule/tikz/usym26FB.tikz + RELOC/tex/latex/schule/tikz/usym26FC.tikz + RELOC/tex/latex/schule/tikz/usym26FD.tikz + RELOC/tex/latex/schule/tikz/usym26FE.tikz + RELOC/tex/latex/schule/tikz/usym26FF.tikz + RELOC/tex/latex/schule/tikz/usym2700.tikz + RELOC/tex/latex/schule/tikz/usym2701.tikz + RELOC/tex/latex/schule/tikz/usym2702.tikz + RELOC/tex/latex/schule/tikz/usym2703.tikz + RELOC/tex/latex/schule/tikz/usym2704.tikz + RELOC/tex/latex/schule/tikz/usym2705.tikz + RELOC/tex/latex/schule/tikz/usym2706.tikz + RELOC/tex/latex/schule/tikz/usym2707.tikz + RELOC/tex/latex/schule/tikz/usym2708.tikz + RELOC/tex/latex/schule/tikz/usym2709.tikz + RELOC/tex/latex/schule/tikz/usym270A.tikz + RELOC/tex/latex/schule/tikz/usym270B.tikz + RELOC/tex/latex/schule/tikz/usym270C.tikz + RELOC/tex/latex/schule/tikz/usym270D.tikz + RELOC/tex/latex/schule/tikz/usym270E.tikz + RELOC/tex/latex/schule/tikz/usym270F.tikz + RELOC/tex/latex/schule/tikz/usym2710.tikz + RELOC/tex/latex/schule/tikz/usym2711.tikz + RELOC/tex/latex/schule/tikz/usym2712.tikz + RELOC/tex/latex/schule/tikz/usym2713.tikz + RELOC/tex/latex/schule/tikz/usym2714.tikz + RELOC/tex/latex/schule/tikz/usym2715.tikz + RELOC/tex/latex/schule/tikz/usym2716.tikz + RELOC/tex/latex/schule/tikz/usym2717.tikz + RELOC/tex/latex/schule/tikz/usym2718.tikz + RELOC/tex/latex/schule/tikz/usym2719.tikz + RELOC/tex/latex/schule/tikz/usym271A.tikz + RELOC/tex/latex/schule/tikz/usym271B.tikz + RELOC/tex/latex/schule/tikz/usym271C.tikz + RELOC/tex/latex/schule/tikz/usym271D.tikz + RELOC/tex/latex/schule/tikz/usym271E.tikz + RELOC/tex/latex/schule/tikz/usym271F.tikz + RELOC/tex/latex/schule/tikz/usym2720.tikz + RELOC/tex/latex/schule/tikz/usym2721.tikz + RELOC/tex/latex/schule/tikz/usym2722.tikz + RELOC/tex/latex/schule/tikz/usym2723.tikz + RELOC/tex/latex/schule/tikz/usym2724.tikz + RELOC/tex/latex/schule/tikz/usym2725.tikz + RELOC/tex/latex/schule/tikz/usym2726.tikz + RELOC/tex/latex/schule/tikz/usym2727.tikz + RELOC/tex/latex/schule/tikz/usym2728.tikz + RELOC/tex/latex/schule/tikz/usym2729.tikz + RELOC/tex/latex/schule/tikz/usym272A.tikz + RELOC/tex/latex/schule/tikz/usym272B.tikz + RELOC/tex/latex/schule/tikz/usym272C.tikz + RELOC/tex/latex/schule/tikz/usym272D.tikz + RELOC/tex/latex/schule/tikz/usym272E.tikz + RELOC/tex/latex/schule/tikz/usym272F.tikz + RELOC/tex/latex/schule/tikz/usym2730.tikz + RELOC/tex/latex/schule/tikz/usym2731.tikz + RELOC/tex/latex/schule/tikz/usym2732.tikz + RELOC/tex/latex/schule/tikz/usym2733.tikz + RELOC/tex/latex/schule/tikz/usym2734.tikz + RELOC/tex/latex/schule/tikz/usym2735.tikz + RELOC/tex/latex/schule/tikz/usym2736.tikz + RELOC/tex/latex/schule/tikz/usym2737.tikz + RELOC/tex/latex/schule/tikz/usym2738.tikz + RELOC/tex/latex/schule/tikz/usym2739.tikz + RELOC/tex/latex/schule/tikz/usym273A.tikz + RELOC/tex/latex/schule/tikz/usym273B.tikz + RELOC/tex/latex/schule/tikz/usym273C.tikz + RELOC/tex/latex/schule/tikz/usym273D.tikz + RELOC/tex/latex/schule/tikz/usym273E.tikz + RELOC/tex/latex/schule/tikz/usym273F.tikz + RELOC/tex/latex/schule/tikz/usym2740.tikz + RELOC/tex/latex/schule/tikz/usym2741.tikz + RELOC/tex/latex/schule/tikz/usym2742.tikz + RELOC/tex/latex/schule/tikz/usym2743.tikz + RELOC/tex/latex/schule/tikz/usym2744.tikz + RELOC/tex/latex/schule/tikz/usym2745.tikz + RELOC/tex/latex/schule/tikz/usym2746.tikz + RELOC/tex/latex/schule/tikz/usym2747.tikz + RELOC/tex/latex/schule/tikz/usym2748.tikz + RELOC/tex/latex/schule/tikz/usym2749.tikz + RELOC/tex/latex/schule/tikz/usym274A.tikz + RELOC/tex/latex/schule/tikz/usym274B.tikz + RELOC/tex/latex/schule/tikz/usym274C.tikz + RELOC/tex/latex/schule/tikz/usym274D.tikz + RELOC/tex/latex/schule/tikz/usym274E.tikz + RELOC/tex/latex/schule/tikz/usym274F.tikz + RELOC/tex/latex/schule/tikz/usym2750.tikz + RELOC/tex/latex/schule/tikz/usym2751.tikz + RELOC/tex/latex/schule/tikz/usym2752.tikz + RELOC/tex/latex/schule/tikz/usym2753.tikz + RELOC/tex/latex/schule/tikz/usym2754.tikz + RELOC/tex/latex/schule/tikz/usym2755.tikz + RELOC/tex/latex/schule/tikz/usym2756.tikz + RELOC/tex/latex/schule/tikz/usym2757.tikz + RELOC/tex/latex/schule/tikz/usym2758.tikz + RELOC/tex/latex/schule/tikz/usym2759.tikz + RELOC/tex/latex/schule/tikz/usym275A.tikz + RELOC/tex/latex/schule/tikz/usym275B.tikz + RELOC/tex/latex/schule/tikz/usym275C.tikz + RELOC/tex/latex/schule/tikz/usym275D.tikz + RELOC/tex/latex/schule/tikz/usym275E.tikz + RELOC/tex/latex/schule/tikz/usym275F.tikz + RELOC/tex/latex/schule/tikz/usym2760.tikz + RELOC/tex/latex/schule/tikz/usym2761.tikz + RELOC/tex/latex/schule/tikz/usym2762.tikz + RELOC/tex/latex/schule/tikz/usym2763.tikz + RELOC/tex/latex/schule/tikz/usym2764.tikz + RELOC/tex/latex/schule/tikz/usym2765.tikz + RELOC/tex/latex/schule/tikz/usym2766.tikz + RELOC/tex/latex/schule/tikz/usym2767.tikz + RELOC/tex/latex/schule/tikz/usym2768.tikz + RELOC/tex/latex/schule/tikz/usym2769.tikz + RELOC/tex/latex/schule/tikz/usym276A.tikz + RELOC/tex/latex/schule/tikz/usym276B.tikz + RELOC/tex/latex/schule/tikz/usym276C.tikz + RELOC/tex/latex/schule/tikz/usym276D.tikz + RELOC/tex/latex/schule/tikz/usym276E.tikz + RELOC/tex/latex/schule/tikz/usym276F.tikz + RELOC/tex/latex/schule/tikz/usym2770.tikz + RELOC/tex/latex/schule/tikz/usym2771.tikz + RELOC/tex/latex/schule/tikz/usym2772.tikz + RELOC/tex/latex/schule/tikz/usym2773.tikz + RELOC/tex/latex/schule/tikz/usym2774.tikz + RELOC/tex/latex/schule/tikz/usym2775.tikz + RELOC/tex/latex/schule/tikz/usym2776.tikz + RELOC/tex/latex/schule/tikz/usym2777.tikz + RELOC/tex/latex/schule/tikz/usym2778.tikz + RELOC/tex/latex/schule/tikz/usym2779.tikz + RELOC/tex/latex/schule/tikz/usym277A.tikz + RELOC/tex/latex/schule/tikz/usym277B.tikz + RELOC/tex/latex/schule/tikz/usym277C.tikz + RELOC/tex/latex/schule/tikz/usym277D.tikz + RELOC/tex/latex/schule/tikz/usym277E.tikz + RELOC/tex/latex/schule/tikz/usym277F.tikz + RELOC/tex/latex/schule/tikz/usym2780.tikz + RELOC/tex/latex/schule/tikz/usym2781.tikz + RELOC/tex/latex/schule/tikz/usym2782.tikz + RELOC/tex/latex/schule/tikz/usym2783.tikz + RELOC/tex/latex/schule/tikz/usym2784.tikz + RELOC/tex/latex/schule/tikz/usym2785.tikz + RELOC/tex/latex/schule/tikz/usym2786.tikz + RELOC/tex/latex/schule/tikz/usym2787.tikz + RELOC/tex/latex/schule/tikz/usym2788.tikz + RELOC/tex/latex/schule/tikz/usym2789.tikz + RELOC/tex/latex/schule/tikz/usym278A.tikz + RELOC/tex/latex/schule/tikz/usym278B.tikz + RELOC/tex/latex/schule/tikz/usym278C.tikz + RELOC/tex/latex/schule/tikz/usym278D.tikz + RELOC/tex/latex/schule/tikz/usym278E.tikz + RELOC/tex/latex/schule/tikz/usym278F.tikz + RELOC/tex/latex/schule/tikz/usym2790.tikz + RELOC/tex/latex/schule/tikz/usym2791.tikz + RELOC/tex/latex/schule/tikz/usym2792.tikz + RELOC/tex/latex/schule/tikz/usym2793.tikz + RELOC/tex/latex/schule/tikz/usym2794.tikz + RELOC/tex/latex/schule/tikz/usym2795.tikz + RELOC/tex/latex/schule/tikz/usym2796.tikz + RELOC/tex/latex/schule/tikz/usym2797.tikz + RELOC/tex/latex/schule/tikz/usym2798.tikz + RELOC/tex/latex/schule/tikz/usym2799.tikz + RELOC/tex/latex/schule/tikz/usym279A.tikz + RELOC/tex/latex/schule/tikz/usym279B.tikz + RELOC/tex/latex/schule/tikz/usym279C.tikz + RELOC/tex/latex/schule/tikz/usym279D.tikz + RELOC/tex/latex/schule/tikz/usym279E.tikz + RELOC/tex/latex/schule/tikz/usym279F.tikz + RELOC/tex/latex/schule/tikz/usym27A0.tikz + RELOC/tex/latex/schule/tikz/usym27A1.tikz + RELOC/tex/latex/schule/tikz/usym27A2.tikz + RELOC/tex/latex/schule/tikz/usym27A3.tikz + RELOC/tex/latex/schule/tikz/usym27A4.tikz + RELOC/tex/latex/schule/tikz/usym27A5.tikz + RELOC/tex/latex/schule/tikz/usym27A6.tikz + RELOC/tex/latex/schule/tikz/usym27A7.tikz + RELOC/tex/latex/schule/tikz/usym27A8.tikz + RELOC/tex/latex/schule/tikz/usym27A9.tikz + RELOC/tex/latex/schule/tikz/usym27AA.tikz + RELOC/tex/latex/schule/tikz/usym27AB.tikz + RELOC/tex/latex/schule/tikz/usym27AC.tikz + RELOC/tex/latex/schule/tikz/usym27AD.tikz + RELOC/tex/latex/schule/tikz/usym27AE.tikz + RELOC/tex/latex/schule/tikz/usym27AF.tikz + RELOC/tex/latex/schule/tikz/usym27B0.tikz + RELOC/tex/latex/schule/tikz/usym27B1.tikz + RELOC/tex/latex/schule/tikz/usym27B2.tikz + RELOC/tex/latex/schule/tikz/usym27B3.tikz + RELOC/tex/latex/schule/tikz/usym27B4.tikz + RELOC/tex/latex/schule/tikz/usym27B5.tikz + RELOC/tex/latex/schule/tikz/usym27B6.tikz + RELOC/tex/latex/schule/tikz/usym27B7.tikz + RELOC/tex/latex/schule/tikz/usym27B8.tikz + RELOC/tex/latex/schule/tikz/usym27B9.tikz + RELOC/tex/latex/schule/tikz/usym27BA.tikz + RELOC/tex/latex/schule/tikz/usym27BB.tikz + RELOC/tex/latex/schule/tikz/usym27BC.tikz + RELOC/tex/latex/schule/tikz/usym27BD.tikz + RELOC/tex/latex/schule/tikz/usym27BE.tikz + RELOC/tex/latex/schule/tikz/usym27BF.tikz + RELOC/tex/latex/schule/utfsym.sty + RELOC/tex/latex/schule/xsim-style/xsim.style.schule-binnen.code.tex + RELOC/tex/latex/schule/xsim-style/xsim.style.schule-default.code.tex + RELOC/tex/latex/schule/xsim-style/xsim.style.schule-keinenummer.code.tex + RELOC/tex/latex/schule/xsim-style/xsim.style.schule-keinepunkte.code.tex + RELOC/tex/latex/schule/xsim-style/xsim.style.schule-keintitel.code.tex + RELOC/tex/latex/schule/xsim-style/xsim.style.schule-randpunkte.code.tex + RELOC/tex/latex/schule/xsim-style/xsim.style.schule-tabelle-kurz.code.tex + RELOC/tex/latex/schule/xsim-style/xsim.style.schule-tcolorbox.code.tex +catalogue-ctan /macros/latex/contrib/schule +catalogue-date 2018-08-23 04:21:50 +0200 +catalogue-license lppl1.3 +catalogue-topics teaching +catalogue-version 0.8.1 + +name schulschriften +category Package +revision 35730 +shortdesc German "school scripts" from Suetterlin to the present day +relocated 1 +longdesc Das Paket enthalt im wesentlichen die Metafont-Quellfiles fur +longdesc die folgenden Schulausgangsschriften: Suetterlinschrift, +longdesc Deutsche Normalschrift, Lateinische Ausgangsschrift, +longdesc Schulausgangsschrift, Vereinfachte Ausgangsschrift. Damit ist +longdesc es moglich, beliebige deutsche Texte in diesen Schreibschriften +longdesc zu schreiben. +containersize 48980 +containerchecksum baedf984b1d1cfeae56af4b9530b81d90653eee334a90f2a9a83a871240592ed6267668b6974033cedfc1e73166232201eaae8e4876d38b9fd94919e8262336a +doccontainersize 720152 +doccontainerchecksum b43f16b38c0417b074b7f45bd42290f3434275c23c6031f293101d907c2004805168d86137190300daa1ca62dd1b25cd2f795e712868b36e454cda134f680bbb +docfiles size=972 + RELOC/doc/fonts/schulschriften/README details="Readme" + RELOC/doc/fonts/schulschriften/schulschriften.pdf details="Package documentation" + RELOC/doc/fonts/schulschriften/schulschriften.tex + RELOC/doc/fonts/schulschriften/schulschriften_ltx.tex + RELOC/doc/fonts/schulschriften/schulschriften_xpl.tex + RELOC/doc/fonts/schulschriften/wedn_fonttabelle.eps + RELOC/doc/fonts/schulschriften/wela_fonttabelle.eps + RELOC/doc/fonts/schulschriften/wesa_fonttabelle.eps + RELOC/doc/fonts/schulschriften/wesu_fonttabelle.eps + RELOC/doc/fonts/schulschriften/weva_fonttabelle.eps +runfiles size=307 + RELOC/fonts/source/public/schulschriften/wedn14.mf + RELOC/fonts/source/public/schulschriften/wedn14_def.mf + RELOC/fonts/source/public/schulschriften/wedn14_end.mf + RELOC/fonts/source/public/schulschriften/wedn14_gr.mf + RELOC/fonts/source/public/schulschriften/wedn14_kl.mf + RELOC/fonts/source/public/schulschriften/wedn14_lig.mf + RELOC/fonts/source/public/schulschriften/wedn14_sz.mf + RELOC/fonts/source/public/schulschriften/wednbx14.mf + RELOC/fonts/source/public/schulschriften/wednbxsl14.mf + RELOC/fonts/source/public/schulschriften/wedneb14.mf + RELOC/fonts/source/public/schulschriften/wednebsl14.mf + RELOC/fonts/source/public/schulschriften/wednsb14.mf + RELOC/fonts/source/public/schulschriften/wednsbsl14.mf + RELOC/fonts/source/public/schulschriften/wednsl14.mf + RELOC/fonts/source/public/schulschriften/wednub14.mf + RELOC/fonts/source/public/schulschriften/wednubsl14.mf + RELOC/fonts/source/public/schulschriften/wela14.mf + RELOC/fonts/source/public/schulschriften/wela14_def.mf + RELOC/fonts/source/public/schulschriften/wela14_end.mf + RELOC/fonts/source/public/schulschriften/wela14_gr.mf + RELOC/fonts/source/public/schulschriften/wela14_kl.mf + RELOC/fonts/source/public/schulschriften/wela14_lig.mf + RELOC/fonts/source/public/schulschriften/wela14_sz.mf + RELOC/fonts/source/public/schulschriften/welabx14.mf + RELOC/fonts/source/public/schulschriften/welabxsl14.mf + RELOC/fonts/source/public/schulschriften/welaeb14.mf + RELOC/fonts/source/public/schulschriften/welaebsl14.mf + RELOC/fonts/source/public/schulschriften/welasb14.mf + RELOC/fonts/source/public/schulschriften/welasbsl14.mf + RELOC/fonts/source/public/schulschriften/welasl14.mf + RELOC/fonts/source/public/schulschriften/welaub14.mf + RELOC/fonts/source/public/schulschriften/welaubsl14.mf + RELOC/fonts/source/public/schulschriften/wesa14.mf + RELOC/fonts/source/public/schulschriften/wesa14_def.mf + RELOC/fonts/source/public/schulschriften/wesa14_end.mf + RELOC/fonts/source/public/schulschriften/wesa14_gr.mf + RELOC/fonts/source/public/schulschriften/wesa14_kl.mf + RELOC/fonts/source/public/schulschriften/wesa14_lig.mf + RELOC/fonts/source/public/schulschriften/wesa14_sz.mf + RELOC/fonts/source/public/schulschriften/wesabx14.mf + RELOC/fonts/source/public/schulschriften/wesabxsl14.mf + RELOC/fonts/source/public/schulschriften/wesaeb14.mf + RELOC/fonts/source/public/schulschriften/wesaebsl14.mf + RELOC/fonts/source/public/schulschriften/wesasb14.mf + RELOC/fonts/source/public/schulschriften/wesasbsl14.mf + RELOC/fonts/source/public/schulschriften/wesasl14.mf + RELOC/fonts/source/public/schulschriften/wesaub14.mf + RELOC/fonts/source/public/schulschriften/wesaubsl14.mf + RELOC/fonts/source/public/schulschriften/wesu14.mf + RELOC/fonts/source/public/schulschriften/wesu14_def.mf + RELOC/fonts/source/public/schulschriften/wesu14_end.mf + RELOC/fonts/source/public/schulschriften/wesu14_gr.mf + RELOC/fonts/source/public/schulschriften/wesu14_kl.mf + RELOC/fonts/source/public/schulschriften/wesu14_lig.mf + RELOC/fonts/source/public/schulschriften/wesu14_sz.mf + RELOC/fonts/source/public/schulschriften/wesub14.mf + RELOC/fonts/source/public/schulschriften/wesubsl14.mf + RELOC/fonts/source/public/schulschriften/wesubx14.mf + RELOC/fonts/source/public/schulschriften/wesubxsl14.mf + RELOC/fonts/source/public/schulschriften/wesueb14.mf + RELOC/fonts/source/public/schulschriften/wesuebsl14.mf + RELOC/fonts/source/public/schulschriften/wesusb14.mf + RELOC/fonts/source/public/schulschriften/wesusbsl14.mf + RELOC/fonts/source/public/schulschriften/wesusl14.mf + RELOC/fonts/source/public/schulschriften/wesuub14.mf + RELOC/fonts/source/public/schulschriften/wesuubsl14.mf + RELOC/fonts/source/public/schulschriften/weva14.mf + RELOC/fonts/source/public/schulschriften/weva14_def.mf + RELOC/fonts/source/public/schulschriften/weva14_gr.mf + RELOC/fonts/source/public/schulschriften/weva14_kl.mf + RELOC/fonts/source/public/schulschriften/weva14_lig.mf + RELOC/fonts/source/public/schulschriften/weva14_sz.mf + RELOC/fonts/source/public/schulschriften/wevabx14.mf + RELOC/fonts/source/public/schulschriften/wevabxsl14.mf + RELOC/fonts/source/public/schulschriften/wevaeb14.mf + RELOC/fonts/source/public/schulschriften/wevaebsl14.mf + RELOC/fonts/source/public/schulschriften/wevasb14.mf + RELOC/fonts/source/public/schulschriften/wevasbsl14.mf + RELOC/fonts/source/public/schulschriften/wevasl14.mf + RELOC/fonts/source/public/schulschriften/wevaub14.mf + RELOC/fonts/source/public/schulschriften/wevaubsl14.mf + RELOC/fonts/tfm/public/schulschriften/wedn14.tfm + RELOC/fonts/tfm/public/schulschriften/wednbx14.tfm + RELOC/fonts/tfm/public/schulschriften/wednbxsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wedneb14.tfm + RELOC/fonts/tfm/public/schulschriften/wednebsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wednsb14.tfm + RELOC/fonts/tfm/public/schulschriften/wednsbsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wednsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wednub14.tfm + RELOC/fonts/tfm/public/schulschriften/wednubsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wela14.tfm + RELOC/fonts/tfm/public/schulschriften/welabx14.tfm + RELOC/fonts/tfm/public/schulschriften/welabxsl14.tfm + RELOC/fonts/tfm/public/schulschriften/welaeb14.tfm + RELOC/fonts/tfm/public/schulschriften/welaebsl14.tfm + RELOC/fonts/tfm/public/schulschriften/welasb14.tfm + RELOC/fonts/tfm/public/schulschriften/welasbsl14.tfm + RELOC/fonts/tfm/public/schulschriften/welasl14.tfm + RELOC/fonts/tfm/public/schulschriften/welaub14.tfm + RELOC/fonts/tfm/public/schulschriften/welaubsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wesa14.tfm + RELOC/fonts/tfm/public/schulschriften/wesabx14.tfm + RELOC/fonts/tfm/public/schulschriften/wesabxsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wesaeb14.tfm + RELOC/fonts/tfm/public/schulschriften/wesaebsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wesasb14.tfm + RELOC/fonts/tfm/public/schulschriften/wesasbsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wesasl14.tfm + RELOC/fonts/tfm/public/schulschriften/wesaub14.tfm + RELOC/fonts/tfm/public/schulschriften/wesaubsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wesu14.tfm + RELOC/fonts/tfm/public/schulschriften/wesub14.tfm + RELOC/fonts/tfm/public/schulschriften/wesubsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wesubx14.tfm + RELOC/fonts/tfm/public/schulschriften/wesubxsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wesueb14.tfm + RELOC/fonts/tfm/public/schulschriften/wesuebsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wesusb14.tfm + RELOC/fonts/tfm/public/schulschriften/wesusbsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wesusl14.tfm + RELOC/fonts/tfm/public/schulschriften/wesuub14.tfm + RELOC/fonts/tfm/public/schulschriften/wesuubsl14.tfm + RELOC/fonts/tfm/public/schulschriften/weva14.tfm + RELOC/fonts/tfm/public/schulschriften/wevabx14.tfm + RELOC/fonts/tfm/public/schulschriften/wevabxsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wevaeb14.tfm + RELOC/fonts/tfm/public/schulschriften/wevaebsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wevasb14.tfm + RELOC/fonts/tfm/public/schulschriften/wevasbsl14.tfm + RELOC/fonts/tfm/public/schulschriften/wevasl14.tfm + RELOC/fonts/tfm/public/schulschriften/wevaub14.tfm + RELOC/fonts/tfm/public/schulschriften/wevaubsl14.tfm + RELOC/tex/latex/schulschriften/schulschriften_lin.sty + RELOC/tex/latex/schulschriften/schulschriften_ltx.sty + RELOC/tex/latex/schulschriften/t1wedn.fd + RELOC/tex/latex/schulschriften/t1wela.fd + RELOC/tex/latex/schulschriften/t1wesa.fd + RELOC/tex/latex/schulschriften/t1wesu.fd + RELOC/tex/latex/schulschriften/t1weva.fd + RELOC/tex/latex/schulschriften/wedn.sty + RELOC/tex/latex/schulschriften/wela.sty + RELOC/tex/latex/schulschriften/wesa.sty + RELOC/tex/latex/schulschriften/wesu.sty + RELOC/tex/latex/schulschriften/weva.sty +catalogue-ctan /fonts/schulschriften +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font font-calligraphic font-mf +catalogue-version 4 + +name schwalbe-chess +category Package +revision 49602 +shortdesc Typeset the German chess magazine "Die Schwalbe" +relocated 1 +longdesc The package is based on chess-problem-diagrams, which in its +longdesc turn has a dependency on the bartel-chess-fonts. +containersize 6940 +containerchecksum aa32ef2ad2e939250a91d9c8a8278f640f6d3ab935dbaaf0684f299331d336b287e7a6b6330f0e232407ab4af6371d2feb2666a92ed5d962be8bc1e07b4cc811 +doccontainersize 183676 +doccontainerchecksum ef7d55e273b0b61c94e2df009976f636dc67939555c67a3a79f0df4e76a5d1f8db8474506e16041492ea6e4588972a375972bcccfbeccf943dac664efd48291a +docfiles size=54 + RELOC/doc/latex/schwalbe-chess/README details="Readme" + RELOC/doc/latex/schwalbe-chess/schwalbe.pdf details="Package documentation (German)" language="de" +srccontainersize 14188 +srccontainerchecksum 03c43c6667646c44f40b553d8af01a3c463142ec442a1979552186f34973b4e0e4058407e159b89969d3b5bd1179bf98f4dad2257bd9343b5c8d40da53547174 +srcfiles size=16 + RELOC/source/latex/schwalbe-chess/schwalbe.dtx + RELOC/source/latex/schwalbe-chess/schwalbe.ins +runfiles size=10 + RELOC/tex/latex/schwalbe-chess/schwalbe.cls + RELOC/tex/latex/schwalbe-chess/schwalbe.sty +catalogue-ctan /macros/latex/contrib/schwalbe-chess +catalogue-date 2019-01-04 16:33:55 +0100 +catalogue-license lppl1.2 +catalogue-topics journalpub games class +catalogue-version 2.3 + +name scientific-thesis-cover +category Package +revision 47923 +shortdesc Provides cover page and affirmation at the end of a thesis +relocated 1 +longdesc Institutions require a cover page and an affirmation at the end +longdesc of a thesis. This package provides both. +containersize 4916 +containerchecksum 2427c534ad767f1e8f319aa24744346d4a0a39f73d93c779dc89d3cd0abfd683d7a33c81026c4a5823ad686084f026193c917ff173d639dfac2c99350a819c59 +doccontainersize 131328 +doccontainerchecksum 31bc280c96b87b079a7dfb6a0c2ff1a03f80c5a047bc2c11b9fb192c50b8e51a65cb3fd5c043c37124afe2383a611f38accd91d6202416451b3eb34bfe855077 +docfiles size=41 + RELOC/doc/latex/scientific-thesis-cover/CHANGELOG.md + RELOC/doc/latex/scientific-thesis-cover/README.TEXLIVE + RELOC/doc/latex/scientific-thesis-cover/README.md details="Readme" + RELOC/doc/latex/scientific-thesis-cover/demo.tex + RELOC/doc/latex/scientific-thesis-cover/scientific-thesis-cover.pdf details="Package documentation" +srccontainersize 532 +srccontainerchecksum ac14306fa7591f6fa684dd8fb6d7c7335b6ce5c8e3099d80286f05a9f378b4d430b1210fec9c071aa8a4e430ff6cae9ea712ea504cc575e89b02751c02e60bd6 +srcfiles size=1 + RELOC/source/latex/scientific-thesis-cover/release.bat +runfiles size=5 + RELOC/tex/latex/scientific-thesis-cover/scientific-thesis-cover.sty +catalogue-contact-bugs https://github.com/latextemplates/scientific-thesis-cover/issues +catalogue-contact-home https://latextemplates.github.io/scientific-thesis-cover +catalogue-contact-repository https://github.com/latextemplates/scientific-thesis-cover +catalogue-ctan /macros/latex/contrib/scientific-thesis-cover +catalogue-date 2018-06-03 21:55:55 +0200 +catalogue-license lppl1.3c +catalogue-topics dissertation journalpub scientific-docs +catalogue-version 4.0.2 + +name sciposter +category Package +revision 15878 +shortdesc Make posters of ISO A3 size and larger +relocated 1 +longdesc This collection of files contains LaTeX packages for posters of +longdesc ISO A3 size and larger (ISO A0 is the default size). American +longdesc paper sizes and custom paper are supported. In particular, +longdesc sciposter.cls defines a document class which allows cutting and +longdesc pasting most of an article to a poster without any editing +longdesc (save reducing the size) -- see the manual. Sciposter does work +longdesc for LaTeX, not just pdfLaTeX. However, xdvi produces strange +longdesc results, though a recent version of dvips does create good +longdesc ps-files from the dvi files. Also note that logos must either +longdesc be put in the current working directory or in the directories +longdesc of your LaTeX distribution. For some reason graphicspath +longdesc settings are ignored. +containersize 6612 +containerchecksum 1a4292c9fb6dd8a8780968c69ee70a88dd5d1c5d81df9a32e22e08c9115528d8af634a1681fb1672664d57f80ab333a1b811a9c0e17597afdc358988e14fae93 +doccontainersize 160588 +doccontainerchecksum 6ea102c2318e30080224684693806e16008f946a01fe9e1d232a871f231100d1491324a3ab0260746a61a10125afff6b20072c1a49c8da279a4c0b477361e46b +docfiles size=176 + RELOC/doc/latex/sciposter/README details="Readme" + RELOC/doc/latex/sciposter/sciposterexample/auto/sciposter-example.el + RELOC/doc/latex/sciposter/sciposterexample/blocks1.eps + RELOC/doc/latex/sciposter/sciposterexample/blocks1.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocks1a.eps + RELOC/doc/latex/sciposter/sciposterexample/blocks1a.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocks1mx.eps + RELOC/doc/latex/sciposter/sciposterexample/blocks1mx.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocks1vx.eps + RELOC/doc/latex/sciposter/sciposterexample/blocks1vx.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocks2.eps + RELOC/doc/latex/sciposter/sciposterexample/blocks2.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocks2mx.eps + RELOC/doc/latex/sciposter/sciposterexample/blocks2mx.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocks3.eps + RELOC/doc/latex/sciposter/sciposterexample/blocks3.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocks3mx.eps + RELOC/doc/latex/sciposter/sciposterexample/blocks3mx.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocks3op.eps + RELOC/doc/latex/sciposter/sciposterexample/blocks3op.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocks3openvx.eps + RELOC/doc/latex/sciposter/sciposterexample/blocks3rec.eps + RELOC/doc/latex/sciposter/sciposterexample/blocks3rec.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocks3vx.eps + RELOC/doc/latex/sciposter/sciposterexample/blocks3vx.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocksopen3a.eps + RELOC/doc/latex/sciposter/sciposterexample/blocksopen3a.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocksopen3vx.eps + RELOC/doc/latex/sciposter/sciposterexample/blocksopen3vx.pdf + RELOC/doc/latex/sciposter/sciposterexample/blocksopen3vy.eps + RELOC/doc/latex/sciposter/sciposterexample/blocksopen3vy.pdf + RELOC/doc/latex/sciposter/sciposterexample/sciposter-example.tex + RELOC/doc/latex/sciposter/scipostermanual.pdf details="Package manual" +runfiles size=16 + RELOC/tex/latex/sciposter/paperb0.cfg + RELOC/tex/latex/sciposter/paperb1.cfg + RELOC/tex/latex/sciposter/paperb2.cfg + RELOC/tex/latex/sciposter/paperb3.cfg + RELOC/tex/latex/sciposter/papercustom.cfg + RELOC/tex/latex/sciposter/paperra0.cfg + RELOC/tex/latex/sciposter/paperra1.cfg + RELOC/tex/latex/sciposter/paperra2.cfg + RELOC/tex/latex/sciposter/sciposter.cls +catalogue-also a0poster +catalogue-ctan /macros/latex/contrib/sciposter +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics poster +catalogue-version 1.18 + +name sclang-prettifier +category Package +revision 35087 +shortdesc Prettyprinting SuperCollider source code +relocated 1 +longdesc Built on top of the listings package, the package allows +longdesc effortless prettyprinting of SuperCollider source code in +longdesc documents typeset with LaTeX & friends. +containersize 2248 +containerchecksum 77f8909b870fbaa4f1a0414f75f08ac602051d26c0c935be8661be8820a0b77734b614b9f5c8333b1f1fd12f57a6ee3c4c403f151bc60300e454673a2a4235c2 +doccontainersize 513152 +doccontainerchecksum 7680fa17762f17d2d7f3c9d3062bd194394bbbfbee36e4704e8b95b2be568cab51fd1dac9d90c6034919b3ec61f75f0f7689478c16f53ac7b4ee820768eaffa8 +docfiles size=127 + RELOC/doc/latex/sclang-prettifier/README details="Readme" + RELOC/doc/latex/sclang-prettifier/sclang-prettifier.pdf details="Package documentation" +srccontainersize 9276 +srccontainerchecksum 8a9188cccf4eece9844156747bdf8414bd42227cdb64ae79ce2e95c729ebed16c9af14abb943cb1caaaebb693bde4d39e39d1302afc0595444d16b3bafa98131 +srcfiles size=8 + RELOC/source/latex/sclang-prettifier/sclang-prettifier.dtx + RELOC/source/latex/sclang-prettifier/sclang-prettifier.ins +runfiles size=2 + RELOC/tex/latex/sclang-prettifier/sclang-prettifier.sty +catalogue-also listings +catalogue-ctan /macros/latex/contrib/sclang-prettifier +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics listing synt-hlt +catalogue-version 0.1 + +name scratch +category Package +revision 50073 +shortdesc Draw programs like "scratch" +relocated 1 +longdesc This package is now obsolete. From now on, scratch at +longdesc scratch.mit.edu is now version3 with a new design. Please, use +longdesc the "scratch3" package to draw blocks with the new design. This +longdesc package permits to draw program charts in the style of the +longdesc scatch project (scratch.mit.edu). It depends on the other LaTeX +longdesc packages TikZ and simplekv. +containersize 8388 +containerchecksum fcee832dbad22e76387bbd10f7ea8e3127a6fac45ea1b42feb183506cd5c89c258cafb052d75e4d14b431a57e638fc84fc751bbb8fa700420197a0d2e33ead48 +doccontainersize 506808 +doccontainerchecksum af7057f28ac0539a555db5774d3d29e01ba10fa78744712a5d76f95229c45022f682c321a551cb5070ab3e370b2d9e861c0b04b73365e828fe665b3f8aeb7730 +docfiles size=131 + RELOC/doc/latex/scratch/README details="Readme" + RELOC/doc/latex/scratch/scratch-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/scratch/scratch-fr.tex +runfiles size=13 + RELOC/tex/latex/scratch/scratch.sty +catalogue-also tikzcodeblocks +catalogue-contact-bugs https://framagit.org/unbonpetit/scratch/issues +catalogue-contact-repository https://framagit.org/unbonpetit/scratch/tree/master +catalogue-ctan /obsolete/macros/latex/contrib/scratch +catalogue-date 2019-02-19 23:30:41 +0100 +catalogue-license lppl1.3c +catalogue-topics games pgf-tikz obsolete +catalogue-version 0.41 + +name scratch3 +category Package +revision 51158 +shortdesc Draw programs like "scratch" +relocated 1 +longdesc This package permits to draw program charts in the style of the +longdesc scatch project (scratch.mit.edu). It depends on the other LaTeX +longdesc packages TikZ and simplekv. +containersize 7980 +containerchecksum 2eab37cb5ba2ea9104e9e4916a446abd7e0616ee4ff10dec83725043f50fc4acca463d2ef3cf2f786c0320c87e1de365619ca637b385c65d78a9181b066c2414 +doccontainersize 509940 +doccontainerchecksum d3576b45a9e77a849c387ae00e7690d25d96f6cc9d87192b3d82d1d0bc20c0f413d153502bb4a89feba9a0b5158de9a605ec9116baf530e2ef09a1ce1f6d190d +docfiles size=132 + RELOC/doc/latex/scratch3/README details="Readme" + RELOC/doc/latex/scratch3/scratch3-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/scratch3/scratch3-fr.tex +runfiles size=11 + RELOC/tex/latex/scratch3/scratch3.sty +catalogue-also tikzcodeblocks +catalogue-contact-bugs https://framagit.org/unbonpetit/scratch3/issues +catalogue-contact-repository https://framagit.org/unbonpetit/scratch3/tree/master +catalogue-ctan /macros/latex/contrib/scratch3 +catalogue-date 2019-05-18 21:03:04 +0200 +catalogue-license lppl1.3c +catalogue-topics games pgf-tikz +catalogue-version 0.12 + +name scratchx +category Package +revision 44906 +shortdesc Include Scratch programs in LaTeX documents +relocated 1 +longdesc This package can be used to include every kind of Scratch +longdesc program in LaTeX documents. This may be particularly useful for +longdesc Math Teachers and IT specialists. The package depends on the +longdesc following other LaTeX packages: calc, fp, ifsym, multido, tikz, +longdesc xargs, and xstring. +containersize 7280 +containerchecksum 793c4e96cedd97ca37b7906b6a9e78bb06f39572ddfb57d8e4b54dd9b2846b31bbdd835fe1a93517d1430448571a30d26fa8ad7cad0aa3fab6ca526bacb605b6 +doccontainersize 427720 +doccontainerchecksum c87994e90a748fa8afba91b443850a2d9f555ff4ac6b264107b42981e078b6966e8cbffd75f071f3f69a78c9b9aa10db65c3e855a4920f3b732446df01da7d6c +docfiles size=130 + RELOC/doc/latex/scratchx/Explanations_ScratchX.pdf details="Package documentation" + RELOC/doc/latex/scratchx/Explanations_ScratchX.tex + RELOC/doc/latex/scratchx/Explications_ScratchX.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/scratchx/Explications_ScratchX.tex + RELOC/doc/latex/scratchx/README.txt details="Readme" +runfiles size=10 + RELOC/tex/latex/scratchx/ScratchX.sty +catalogue-ctan /macros/latex/contrib/scratchx +catalogue-date 2017-07-30 05:13:46 +0200 +catalogue-license lppl1.3c +catalogue-topics games pgf-tikz +catalogue-version 1.1 + +name screenplay +category Package +revision 27223 +shortdesc A class file to typeset screenplays +relocated 1 +longdesc The class implements the format recommended by the Academy of +longdesc Motion Picture Arts and Sciences. +containersize 2764 +containerchecksum d14dd76c4b1abd9ff7adbef7e4c3bc1f732156dc2d989787bed7382e0288c44dcde18ce05143e6af03ebe83c753bd2b6682cb4f56c73934ca4209a114eb9e3ef +doccontainersize 154500 +doccontainerchecksum ed723ffc17a98c8d4a8c960f56a3550ea74db84fdd06d26b08b5c46b12310fdb9b7b7719ffa25e8ddd21f17642f5f64f1c96327066a131c468cee8ff185cb199 +docfiles size=52 + RELOC/doc/latex/screenplay/COPYING + RELOC/doc/latex/screenplay/README details="Package README" + RELOC/doc/latex/screenplay/example.tex + RELOC/doc/latex/screenplay/screenplay.pdf details="Package documentation" + RELOC/doc/latex/screenplay/test.pdf details="Example script" + RELOC/doc/latex/screenplay/test.tex +srccontainersize 17316 +srccontainerchecksum f6ada6c467c3a9d11096928dc31c7f71131f0b40146a697bda2a3e194c86070a776323c76c8b6da0edd247f8fcd1a65c286801a7353bb53bc6aa364bb7a75944 +srcfiles size=14 + RELOC/source/latex/screenplay/screenplay.dtx + RELOC/source/latex/screenplay/screenplay.ins +runfiles size=3 + RELOC/tex/latex/screenplay/hardmarg.sty + RELOC/tex/latex/screenplay/screenplay.cls +catalogue-also scripttex screenplay-pkg +catalogue-ctan /macros/latex/contrib/screenplay +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics drama-script class +catalogue-version 1.6 + +name screenplay-pkg +category Package +revision 44965 +shortdesc Package version of the screenplay document class +relocated 1 +longdesc This package implements the tools of the screenplay document +longdesc class in the form of a package so that screenplay fragments can +longdesc be included within another document class. For full +longdesc documentation of the available commands, please consult the +longdesc screenplay class documentation in addition to the included +longdesc package documentation. +containersize 2524 +containerchecksum 974795ca0b4a286077e38f4b3b120cf9fe243d450b87b8397adec2c5425b865cdfbe70b86b815d513edb6ae7051d9ad3003fcd6a15b5b02b624dcd4ee0534164 +doccontainersize 163776 +doccontainerchecksum 9aa4407d1b317442dd76f762af5b673460bbbcec89e47835521688085183e00ba9dbb70dc9e86a95235bd9a32da701c846ceb2985dc70894ca8abe334428a532 +docfiles size=45 + RELOC/doc/latex/screenplay-pkg/README details="Readme" + RELOC/doc/latex/screenplay-pkg/screenplay-pkg-example.pdf details="Example of use" + RELOC/doc/latex/screenplay-pkg/screenplay-pkg-example.tex + RELOC/doc/latex/screenplay-pkg/screenplay-pkg.pdf details="Package documentation" + RELOC/doc/latex/screenplay-pkg/screenplay-pkg.tex +runfiles size=2 + RELOC/tex/latex/screenplay-pkg/screenplay-pkg.sty +catalogue-also screenplay +catalogue-ctan /macros/latex/contrib/screenplay-pkg +catalogue-date 2017-08-06 08:17:31 +0200 +catalogue-license lppl1.3 +catalogue-topics drama-script +catalogue-version 1.1 + +name scrjrnl +category Package +revision 27810 +shortdesc Typeset diaries or journals +relocated 1 +longdesc A class, based on scrbook, designed for typesetting diaries, +longdesc journals or devotionals. +containersize 2608 +containerchecksum 39198edddb3a3ce24bdc0d9cc6f5d7ff204b142c200a9ce36060bb016f1e1e1750b83210a91f1eec90a205c5a4923704bdc0e44876c462eb768355407597a05c +doccontainersize 122072 +doccontainerchecksum bf6dc1704ce60f9323b68d39502fe95d4eaf8409bf65c278e64deb1ff80aaa84f16e294ab08629466b6f8c0ca02ec03142abdf3fe0a43f862352d0ec55dd410a +docfiles size=33 + RELOC/doc/latex/scrjrnl/README details="Readme" + RELOC/doc/latex/scrjrnl/example.pdf details="Example of use (with lipsum)" + RELOC/doc/latex/scrjrnl/scrjrnl.pdf details="Package documentation" +srccontainersize 4896 +srccontainerchecksum 05b0a8e50efd2f21699c3bd476cd308e02267a6dc2a9cd480e0f7b2e6d9633c830927c54eaf75e4d329a8f6a8d3993782ecfe2add7b450016f7e7bc92aea1b2e +srcfiles size=5 + RELOC/source/latex/scrjrnl/scrjrnl.dtx + RELOC/source/latex/scrjrnl/scrjrnl.ins +runfiles size=2 + RELOC/tex/latex/scrjrnl/scrjrnl.cls +catalogue-ctan /macros/latex/contrib/scrjrnl +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics journ-personal class +catalogue-version 0.1 + +name scrlttr2copy +category Package +revision 39734 +shortdesc A letter class option file for the automatic creation of copies +relocated 1 +longdesc The file copy.lco provides the new class option "copy" for the +longdesc KOMA-Script letter class scrlttr2. If the option "copy" is +longdesc given, all pages of a specific letter are duplicated with +longdesc background text marking as copies. +containersize 1604 +containerchecksum 7aa7ac841d667e627056ed0ef3e55368f580e9d8a35a35239780b12d0a18534086844009ba1dc40a1b6ef29ad64d06e1e2e8ffef216e89c15e684975acd87192 +doccontainersize 87748 +doccontainerchecksum 08e87246b20cc0ea9ed30cd74993aa2af520d8b01878e1f54c802b5beef4347c087ec36f32220581eefe933a524c813ec30b3235989453ff8b7be93ac35b725d +docfiles size=24 + RELOC/doc/latex/scrlttr2copy/README.md details="Readme" + RELOC/doc/latex/scrlttr2copy/letter-copy-test.pdf details="Example document" + RELOC/doc/latex/scrlttr2copy/letter-copy-test.tex +runfiles size=1 + RELOC/tex/latex/scrlttr2copy/copy.lco +catalogue-ctan /macros/latex/contrib/scrlttr2copy +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics letter +catalogue-version 0.1d + +name scsnowman +category Package +revision 47953 +shortdesc Snowman variants using TikZ +relocated 1 +longdesc This LaTeX package provides a command \scsnowman which can +longdesc display many variants of "snowman" ("yukidaruma" in Japanese). +longdesc TikZ is required for drawing these snowmen. +containersize 6136 +containerchecksum 87f207b478799ed88deaed71b60bced2158d6bf4406e6cbbd533f9110004cb8ceec71ded31d3706d8033bc53b1f0f31cb25877af9c58d27a5f350ab79572328b +doccontainersize 480336 +doccontainerchecksum 5050ca6200a7531bfbc31dfd9f06d4b6503e832fc09a7132ec76a5ebc09bb0fe4743ef09740ff9646d4fe93a31ee9fcdef6091fc5c50e379c86d529d5df51f25 +docfiles size=130 + RELOC/doc/latex/scsnowman/LICENSE + RELOC/doc/latex/scsnowman/Makefile + RELOC/doc/latex/scsnowman/README.md details="Readme" + RELOC/doc/latex/scsnowman/scsnowman-sample.pdf details="Sample of use" language="ja" + RELOC/doc/latex/scsnowman/scsnowman-sample.tex + RELOC/doc/latex/scsnowman/scsnowman-zrtest.pdf + RELOC/doc/latex/scsnowman/scsnowman-zrtest.tex + RELOC/doc/latex/scsnowman/scsnowman.pdf details="Package documentation" + RELOC/doc/latex/scsnowman/scsnowman.tex +runfiles size=9 + RELOC/tex/latex/scsnowman/scsnowman-normal.def + RELOC/tex/latex/scsnowman/scsnowman.sty + RELOC/tex/latex/scsnowman/sctkzsym-base.sty +catalogue-contact-repository https://github.com/aminophen/scsnowman +catalogue-ctan /graphics/pgf/contrib/scsnowman +catalogue-date 2018-06-07 18:24:21 +0200 +catalogue-license bsd2 +catalogue-topics pgf-tikz +catalogue-version 1.2d + +name sdrt +category Package +revision 15878 +shortdesc Macros for Segmented Discourse Representation Theory +relocated 1 +longdesc The package provides macros to produce the 'Box notation' of +longdesc SDRT (and DRT), to draw trees representing discourse relations, +longdesc and finally to have an easy access to various mathematical +longdesc symbols used in that theory, mostly with automatic mathematics +longdesc mode, so they work the same in formulae and in text. +containersize 2680 +containerchecksum 6faa9948e5bb4369fefad7d2b1a5f2bf39baf8b98e8ad3b8f61ade2001b431894ddfbd61e2f1ec73ed767b102f79f8357d965a5c3805c082d8d88bda29e10c6b +doccontainersize 178944 +doccontainerchecksum 570795dd0c4fe0450e628f61e43d05f3e969488890eab2ee1364712e812d839c7b3185c7ddbd27c44c486e234afe36aceb4824e828cb0c9253e8e5479b0b6c15 +docfiles size=61 + RELOC/doc/latex/sdrt/README details="Readme" + RELOC/doc/latex/sdrt/sdrt-doc.pdf details="Package documentation" + RELOC/doc/latex/sdrt/sdrt-doc.tex +runfiles size=3 + RELOC/tex/latex/sdrt/sdrt.sty +catalogue-ctan /macros/latex/contrib/sdrt +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics linguistic +catalogue-version 1.0 + +name sduthesis +category Package +revision 41401 +shortdesc Thesis Template of Shandong University +relocated 1 +longdesc Thesis Template of Shandong University. +containersize 1230616 +containerchecksum 10f1c0a749b9b30dda0e1c7dce4ef2fdd29220b4d77d03b8e71d8c3a460a73c98f8d16e27e6bbab07a66bf7a23cc9d3bf2b12db523232df1142a8563e0068ed8 +doccontainersize 1565692 +doccontainerchecksum afa02606e7df5655ef46b59e92dc54bec9e8f05deb1d9ecd8a0546ee068f2595620cc8dd39d04ea8db53ac7f2e9983ff01ac2646b6946fd3619db64a0bdad332 +docfiles size=404 + RELOC/doc/latex/sduthesis/LICENSE + RELOC/doc/latex/sduthesis/LICENSE.md + RELOC/doc/latex/sduthesis/README details="Readme" + RELOC/doc/latex/sduthesis/README.md + RELOC/doc/latex/sduthesis/sduthesis-demo.pdf details="Package documentation (demo thesis)" language="zh" + RELOC/doc/latex/sduthesis/sduthesis-demo.tex + RELOC/doc/latex/sduthesis/sduthesis.pdf details="Package documentation (Chinese)" language="zh" +srccontainersize 24124 +srccontainerchecksum 2c4dddfd7a6fa27ebb4e48e61f8d2887e116eab174e13d9b41efc9b7a3c2f5d5770f000b4acc4275fa82d54ad5ef2129bf614478d11b24a359a38a03d38caa76 +srcfiles size=20 + RELOC/source/latex/sduthesis/sduthesis.dtx + RELOC/source/latex/sduthesis/sduthesis.ins +runfiles size=422 + RELOC/tex/latex/sduthesis/figures/SDU.pdf + RELOC/tex/latex/sduthesis/figures/SDULogo.pdf + RELOC/tex/latex/sduthesis/figures/SDUWords.jpg + RELOC/tex/latex/sduthesis/figures/sduthesis-baotuquan.jpg + RELOC/tex/latex/sduthesis/figures/sduthesis-hongloujiaotang.jpg + RELOC/tex/latex/sduthesis/figures/sduthesis-ruanjianyuan.jpg + RELOC/tex/latex/sduthesis/figures/sduthesis-xianzhidadao.jpg + RELOC/tex/latex/sduthesis/figures/sduthesis-zhixinlou.jpg + RELOC/tex/latex/sduthesis/sduthesis-cover.def + RELOC/tex/latex/sduthesis/sduthesis-statement.def + RELOC/tex/latex/sduthesis/sduthesis.cls +catalogue-contact-repository https://github.com/Liam0205/sduthesis +catalogue-ctan /macros/latex/contrib/sduthesis +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics dissertation class chinese +catalogue-version 1.2.1 + +name secdot +category Package +revision 20208 +shortdesc Section numbers with trailing dots +relocated 1 +longdesc Makes the numbers of \section commands come out with a trailing +longdesc dot. Includes a command whereby the same can be made to happen +longdesc with other sectioning commands. +containersize 1572 +containerchecksum 7fb101dcd377cb5e3d1dca352d266af419c6fd83e4f2d1701a3d598e69e8e7f70afc9791a76337f4833da612cf07989ef244af1b24eb62ee59dd5f76225aa037 +doccontainersize 256480 +doccontainerchecksum 7ca1b4102c6f92bfc6dd0571c489852dc5c1df4a58530aea490098192ee256a4df7e0bbee20adff78c2b35dfe39b8cd3f821c5e45dc6d78ab4865b6f08ad8488 +docfiles size=64 + RELOC/doc/latex/secdot/secdot.ltx + RELOC/doc/latex/secdot/secdot.pdf details="Package documentation" +runfiles size=1 + RELOC/tex/latex/secdot/secdot.sty +catalogue-contact-repository https://github.com/rf-latex/secdot +catalogue-contact-support https://github.com/rf-latex/secdot/issues +catalogue-ctan /macros/latex/contrib/secdot +catalogue-date 2018-09-15 15:51:52 +0200 +catalogue-license lppl +catalogue-topics headings +catalogue-version 1.0 + +name section +category Package +revision 20180 +shortdesc Modifying section commands in LaTeX +relocated 1 +longdesc The package implements a pretty extensive scheme to make more +longdesc manageable the business of configuring LaTeX output. +containersize 9860 +containerchecksum 8b3eaecd49f8b7046bc35df079541121d76757bc2a1b6a6ffa24357a20e9ec4bf5a7b65fae1673401ebf363e46ecffe3c64a2de9aac104594b2b111cd10426f2 +doccontainersize 357024 +doccontainerchecksum 91defb5391b9e607cfaf74ac3abe53127ddec379d7a7c052f5c8f776bcef1728010a94ef7b590ddac8df140ee11fff4fd843bdbe1a13efd322a9a939ea2df39b +docfiles size=92 + RELOC/doc/latex/section/section-doc.pdf details="Package documentation" + RELOC/doc/latex/section/section-doc.tex +runfiles size=8 + RELOC/tex/latex/section/section.sty +catalogue-ctan /macros/latex/contrib/section +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics headings + +name sectionbox +category Package +revision 37749 +shortdesc Create fancy boxed ((sub)sub)sections +relocated 1 +longdesc Sectionbox is a LaTeX package for putting fancy colored boxes +longdesc around sections, subsections, and subsubsections, especially +longdesc for use in posters, etc. It was designed with the sciposter +longdesc class in mind, and certainly works with that class and with +longdesc derived classes. +containersize 1856 +containerchecksum d1a4da6a59c0411baaa785c58350c1d5be9c1081e0344d8a61fc009f49a1b751a09f358ba1baa3b645de4eff7d69e3781d8b44d90738105c0f56723da36efdb3 +doccontainersize 192044 +doccontainerchecksum 80ae58336eabd8169781c3c30b42b2583f78ffa4093a7d3f9d9e9c6e31a3fb8f457fd42d56f2ff75b2ff3c38b537642dd6f254e54b3112538657a37b3b4e0410 +docfiles size=57 + RELOC/doc/latex/sectionbox/README details="Readme" + RELOC/doc/latex/sectionbox/example/000074Bpatspec.png + RELOC/doc/latex/sectionbox/example/000074Bzones.jpg + RELOC/doc/latex/sectionbox/example/000175Bpatspec.png + RELOC/doc/latex/sectionbox/example/000175Bzones.jpg + RELOC/doc/latex/sectionbox/example/002000AApatspec.png + RELOC/doc/latex/sectionbox/example/002000AAzones.jpg + RELOC/doc/latex/sectionbox/example/README.TEXLIVE + RELOC/doc/latex/sectionbox/example/lambda2.jpg + RELOC/doc/latex/sectionbox/example/orig.jpg + RELOC/doc/latex/sectionbox/example/sectionboxexample.bib + RELOC/doc/latex/sectionbox/example/sectionboxexample.tex + RELOC/doc/latex/sectionbox/sectionboxmanual.pdf details="Package documentation" +runfiles size=2 + RELOC/tex/latex/sectionbox/sectionbox.sty +catalogue-ctan /macros/latex/contrib/sectionbox +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics decoration +catalogue-version 1.01 + +name sectionbreak +category Package +revision 50339 +shortdesc LaTeX support for section breaks +relocated 1 +longdesc This package provides LaTeX support for section breaks, used +longdesc mainly in fiction books to signal changes in a story, like +longdesc changes in time, location, etc. It supports the asterism +longdesc symbol, text content, or custom macros as the section break +longdesc mark symbol. +containersize 1332 +containerchecksum 4b2c26642ba346acce5aff9678bf94f76d85005464f80eaae862a522bcbfa34c1671af79671982a91208ef104a21a532d851dcc785b5c40de4fe462d12488832 +doccontainersize 50844 +doccontainerchecksum a98eede394708bf612f593e00c58b5500a35b5173381c1f149d0be29b49fe95f5162602177b7d4f23c5b5312d7cdf47ea6ced8bc285853d2b7d77926a6ca66b0 +docfiles size=17 + RELOC/doc/latex/sectionbreak/CHANGELOG.md + RELOC/doc/latex/sectionbreak/README.md details="Readme" + RELOC/doc/latex/sectionbreak/sectionbreak-doc.pdf details="Package documentation" + RELOC/doc/latex/sectionbreak/sectionbreak-doc.tex + RELOC/doc/latex/sectionbreak/sectionbreak-example.tex +runfiles size=1 + RELOC/tex/latex/sectionbreak/sectionbreak.sty +catalogue-contact-bugs https://github.com/michal-h21/sectionbreak/issues +catalogue-contact-repository https://github.com/michal-h21/sectionbreak +catalogue-ctan /macros/latex/contrib/sectionbreak +catalogue-date 2019-03-11 13:54:30 +0100 +catalogue-license lppl1.3 +catalogue-topics decoration headings +catalogue-version 0.1d + +name sectsty +category Package +revision 15878 +shortdesc Control sectional headers +relocated 1 +longdesc A LaTeX2e package to help change the style of any or all of +longdesc LaTeX's sectional headers in the article, book, or report +longdesc classes. Examples include the addition of rules above or below +longdesc a section title. +containersize 4852 +containerchecksum 7e164b14f29a385f8a97e09ad124c347a154e316ac2eb41e0bf9f161d44f2782995fe271b5472ef90dfa4ffdd5495de81090b44f5777243ea76c9f75fcbde2b4 +doccontainersize 216820 +doccontainerchecksum 69d7fc032c06d015d7a6e6d2273c5240b146062565882fca0ddf5b7b795b788207bc9b478366a0a40e4acf223b07482f5cf41a65dd9b37047bcbf12566f6a826 +docfiles size=57 + RELOC/doc/latex/sectsty/sectsty.pdf details="Package documentation" +srccontainersize 21356 +srccontainerchecksum fc79d4c7c437d9c5ff7d8dc62439242cb772f250527ca099cd1180e58742a9ff42e7c63776c24fa5563c95b5d2bccd97df0e1c086869bbcf5ff2ed8ff5297bf4 +srcfiles size=23 + RELOC/source/latex/sectsty/sectsty.dtx + RELOC/source/latex/sectsty/sectsty.ins +runfiles size=6 + RELOC/tex/latex/sectsty/sectsty.sty +catalogue-also titlesec +catalogue-ctan /macros/latex/contrib/sectsty +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics headings +catalogue-version 2.0.2 + +name seealso +category Package +revision 43595 +shortdesc Improve the performance of \see macros with makeindex +relocated 1 +longdesc The package amends the \see and \seealso macros that are used +longdesc in building indexes with makeindex, to deal with repetitions, +longdesc and to ensure page numbers are present in the actual index +longdesc entries. on these indirecty +containersize 2240 +containerchecksum 4d52687aa57245d3be55bf486b100d61fe2e2d979447c2f123f566c3aeb13657e531ace55fe5d00eab57cebe89cfd3729a71dc7177831b5192b8c0fde452d7df +doccontainersize 251844 +doccontainerchecksum 6baba95b6b08ef95f2966d227161ea39a4084b46371967057266ddae155b115fbe4fcf148e1afc4629e33f54d0329ebb6169f1be4fdcb801d869b212d056cc61 +docfiles size=64 + RELOC/doc/latex/seealso/README + RELOC/doc/latex/seealso/seealso.pdf details="Package documentation" +srccontainersize 11592 +srccontainerchecksum 981ed17cba32b2bdc4848c099038193dba2b39d04210cbb2851400044654234c75c160f9c775af2fad6b76b80c85c782fe6ea75a61728ab67193dcf414b0b4d8 +srcfiles size=11 + RELOC/source/latex/seealso/seealso.dtx + RELOC/source/latex/seealso/seealso.ins +runfiles size=2 + RELOC/tex/latex/seealso/seealso.sty +catalogue-ctan /macros/latex/contrib/seealso +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl1.3 +catalogue-topics index +catalogue-version 1.2 + +name seetexk +category TLCore +revision 50602 +catalogue dvibook +shortdesc Utilities for manipulating DVI files +longdesc The collection comprises: dvibook, which will rearrange the +longdesc pages of a DVI file into 'signatures' as used when printing a +longdesc book; dviconcat, for concatenating pages of DVI file(s); +longdesc dviselect, which will select pages from one DVI file to create +longdesc a new DVI file; dvitodvi, which will rearrange the pages of a +longdesc DVI file to create a new file; and libtex, a library for +longdesc manipulating the files, from the old SeeTeX project. The +longdesc utilities are provided as C source with Imakefiles, and an +longdesc MS-DOS version of dvibook is also provided. +depend seetexk.ARCH +containersize 644 +containerchecksum b3dea76f239ec78da4eb15d4bea4dd1171c3193e9d9e82a1ecc5d5ed747e421a7a3dc96e422839772d2f825e862b8a71befbacb7cd816405d707f654c7e5a32c +doccontainersize 68816 +doccontainerchecksum 39504cee7a077e16d10b2d4d1f393b1b90e7c21c7452f761dde1117f4b8668962b1baeac4b834b71b481fd170059e4e60f2d529e523e40503d26704ff15a7dcf +docfiles size=27 + texmf-dist/doc/man/man1/dvibook.1 + texmf-dist/doc/man/man1/dvibook.man1.pdf + texmf-dist/doc/man/man1/dviconcat.1 + texmf-dist/doc/man/man1/dviconcat.man1.pdf + texmf-dist/doc/man/man1/dviselect.1 + texmf-dist/doc/man/man1/dviselect.man1.pdf + texmf-dist/doc/man/man1/dvitodvi.1 + texmf-dist/doc/man/man1/dvitodvi.man1.pdf +catalogue-ctan /dviware/dvibook +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics dvi-proc + +name seetexk.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of seetexk +containersize 24420 +containerchecksum 682f4252e6d5d26e1716fd511d1e9365dfb467d450c790b7bb07236e3c57eaac3be144cfa84ed0f51ece64df5f1c3d401679b1362811658a3ffade61dcad4270 +binfiles arch=aarch64-linux size=29 + bin/aarch64-linux/dvibook + bin/aarch64-linux/dviconcat + bin/aarch64-linux/dviselect + bin/aarch64-linux/dvitodvi + +name seetexk.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of seetexk +containersize 41888 +containerchecksum 62c69bfe71343a8348b58f0efe84f3f977b30422cf4a9fd198c553f79fafd14b77f1bd5b3d03f42bebd684e645e44d9fc4ac43c608fd73a5a7b618e2b54dbff7 +binfiles arch=amd64-freebsd size=45 + bin/amd64-freebsd/dvibook + bin/amd64-freebsd/dviconcat + bin/amd64-freebsd/dviselect + bin/amd64-freebsd/dvitodvi + +name seetexk.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of seetexk +containersize 30892 +containerchecksum 5d0df5e870a3797dbc7e51bfc17fa8c26f680bd191a769402c7c08cd38a63d36f98b3f303978704635d1748d235234c7c59e7203776859d9743c1f956723d57e +binfiles arch=amd64-netbsd size=40 + bin/amd64-netbsd/dvibook + bin/amd64-netbsd/dviconcat + bin/amd64-netbsd/dviselect + bin/amd64-netbsd/dvitodvi + +name seetexk.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of seetexk +containersize 20648 +containerchecksum baac477ede8d7a729da283dd02c29676a7941a280cf75e389e781de305d667bbc6a3742f153931a01487b643e89ae3cb787170c7dca03641158b6cc4c31bb4e4 +binfiles arch=armhf-linux size=24 + bin/armhf-linux/dvibook + bin/armhf-linux/dviconcat + bin/armhf-linux/dviselect + bin/armhf-linux/dvitodvi + +name seetexk.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of seetexk +containersize 23052 +containerchecksum 5c15978783a71244c24876a9cb36fa363ae30ac54cbc6bad87fae37d1125bda70c1d020a4b9876db90956b0005aff987354bc54a2dde7617798157785b4ca369 +binfiles arch=i386-cygwin size=28 + bin/i386-cygwin/dvibook.exe + bin/i386-cygwin/dviconcat.exe + bin/i386-cygwin/dviselect.exe + bin/i386-cygwin/dvitodvi.exe + +name seetexk.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of seetexk +containersize 34652 +containerchecksum 44a3b60a46727bdeba5ca6b02110870a9433c4e3329d64d7b5f3bfaaf59a51328e5e8a4f8ab321eec9e63a88a3ac0efbb6c453726e9031c928d5101eb0121fbb +binfiles arch=i386-freebsd size=38 + bin/i386-freebsd/dvibook + bin/i386-freebsd/dviconcat + bin/i386-freebsd/dviselect + bin/i386-freebsd/dvitodvi + +name seetexk.i386-linux +category TLCore +revision 50281 +shortdesc i386-linux files of seetexk +containersize 26488 +containerchecksum 9d39ddae44983a39426d06bacf46a293710d568b323d042a02b010c60b3256dea85c74c7662937b4f03d19c1bbcd27b295a0a79be47362fd76d37052ccb45544 +binfiles arch=i386-linux size=25 + bin/i386-linux/dvibook + bin/i386-linux/dviconcat + bin/i386-linux/dviselect + bin/i386-linux/dvitodvi + +name seetexk.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of seetexk +containersize 25488 +containerchecksum 3c1aac5b7ddeaf17b8c06b8ce41e7a171f04ae968084d9cd7a04f150529fd2e0778e33ecee534715cabb8ba5756ff87574fb18a12793cc09e7eae0ea5b4eb13a +binfiles arch=i386-netbsd size=33 + bin/i386-netbsd/dvibook + bin/i386-netbsd/dviconcat + bin/i386-netbsd/dviselect + bin/i386-netbsd/dvitodvi + +name seetexk.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of seetexk +containersize 36964 +containerchecksum a17a6c14ffaa0f90d7f05e4963b9e09fbe46a6ae4d32f567499201759c91f5e95edae5e1ddbea80af0e355090fa97a8f792926e349fb102afd29e3df1344aaa3 +binfiles arch=i386-solaris size=36 + bin/i386-solaris/dvibook + bin/i386-solaris/dviconcat + bin/i386-solaris/dviselect + bin/i386-solaris/dvitodvi + +name seetexk.win32 +category TLCore +revision 50155 +shortdesc win32 files of seetexk +containersize 26304 +containerchecksum d267c572202d70ce384f55e017ee54cdbb6c83c2052601d90db7ab14fac5bf088feff4ba8b3c62ff3dc3782c33cc95e554386fe12228213c961d4a51693fde23 +binfiles arch=win32 size=27 + bin/win32/dvibook.exe + bin/win32/dviconcat.exe + bin/win32/dviselect.exe + bin/win32/dvitodvi.exe + +name seetexk.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of seetexk +containersize 25988 +containerchecksum f090dec047312a045611431030b4c23cda4bfa6783e9c305b498c472925e6c4bdc1fca1fbdbcc9ad147b33073ea0c34092f07cc813024c1e88e278d2e8728298 +binfiles arch=x86_64-cygwin size=27 + bin/x86_64-cygwin/dvibook.exe + bin/x86_64-cygwin/dviconcat.exe + bin/x86_64-cygwin/dviselect.exe + bin/x86_64-cygwin/dvitodvi.exe + +name seetexk.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of seetexk +containersize 28728 +containerchecksum 97ee89999c320445c0f10be86f047b2b41ec112995752baa749f6fe8a753a8783c520664cfe3d299e7575686b163c56aa6b00a6cdb218a1bb2b32b2b893afbe0 +binfiles arch=x86_64-darwin size=31 + bin/x86_64-darwin/dvibook + bin/x86_64-darwin/dviconcat + bin/x86_64-darwin/dviselect + bin/x86_64-darwin/dvitodvi + +name seetexk.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of seetexk +containersize 28936 +containerchecksum ba7f0d39302160490044fc3c11f05e1c5b3f2cc5e179a9f78484f88a9b94aab8c042cffb6339ad989dd317c79b69636450263d3956d93fba014d168459195076 +binfiles arch=x86_64-darwinlegacy size=31 + bin/x86_64-darwinlegacy/dvibook + bin/x86_64-darwinlegacy/dviconcat + bin/x86_64-darwinlegacy/dviselect + bin/x86_64-darwinlegacy/dvitodvi + +name seetexk.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of seetexk +containersize 26960 +containerchecksum ca4ab9858fbcd730a41062e3f64e7ace18c7c68afad47c4190bed20c689e40f7d55eda6f71e3d31adefba959f169ffbcc17352902205c0d47b85c7a5d5aea3d4 +binfiles arch=x86_64-linux size=26 + bin/x86_64-linux/dvibook + bin/x86_64-linux/dviconcat + bin/x86_64-linux/dviselect + bin/x86_64-linux/dvitodvi + +name seetexk.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of seetexk +containersize 31432 +containerchecksum e479232299a509d2f2fe70ed281f6c0a037cb91390cffaed01a9ec768eeec23196c6c9d7753a55c166b359c2875e195b44a8b42a5c3a595a9bf9ee5ec0136c4b +binfiles arch=x86_64-linuxmusl size=34 + bin/x86_64-linuxmusl/dvibook + bin/x86_64-linuxmusl/dviconcat + bin/x86_64-linuxmusl/dviselect + bin/x86_64-linuxmusl/dvitodvi + +name seetexk.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of seetexk +containersize 36104 +containerchecksum 2dfb4e4ad6411753b8783176e5b45ea37530c7618168260adf7d84778d8c33b479c00d0eab95882ab0c026b62b43c2b4e1c4da67aa9cfc861955dc9692152812 +binfiles arch=x86_64-solaris size=36 + bin/x86_64-solaris/dvibook + bin/x86_64-solaris/dviconcat + bin/x86_64-solaris/dviselect + bin/x86_64-solaris/dvitodvi + +name selectp +category Package +revision 20185 +shortdesc Select pages to be output +relocated 1 +longdesc Defines a command \outputonly, whose argument is a list of +longdesc pages to be output. With the command present (before +longdesc \begin{document}), only those pages are output. This package +longdesc was inspired by code published by Knuth in TUGboat 8(2) (July +longdesc 1987). +containersize 4196 +containerchecksum 1674c9c9d7afbc851f8c4fad1b46a1ec18161eb48375d892c947416ee97791addf92f75a69090c95a0f08bbaac1a7a745af93a7bcf91e2e0f8117ed3f3106dc9 +doccontainersize 280200 +doccontainerchecksum 7c99f0400841cb1d88af4c239f43eaec7c0b2358c2e581866d4361cd86b9eff413bc9e07d8df630ddff8d4f37193896bd430f4c357d9cc04591295f18ebd09aa +docfiles size=70 + RELOC/doc/latex/selectp/selectp-doc.pdf details="Package documentation" + RELOC/doc/latex/selectp/selectp-doc.tex +runfiles size=3 + RELOC/tex/latex/selectp/selectp.sty +catalogue-also selectpage pagesel +catalogue-ctan /macros/latex/contrib/selectp +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics page-control +catalogue-version 1.0 + +name selnolig +category Package +revision 38721 +shortdesc Selectively disable typographic ligatures +relocated 1 +longdesc The package suppresses typographic ligatures selectively, i.e., +longdesc based on predefined search patterns. The search patterns focus +longdesc on ligatures deemed inappropriate because they span morpheme +longdesc boundaries. For example, the word shelfful, which is mentioned +longdesc in the TeXbook as a word for which the ff ligature might be +longdesc inappropriate, is automatically typeset as shelf\/ful rather +longdesc than as shel{ff}ul. For English and German language documents, +longdesc the package provides extensive rules for the selective +longdesc suppression of so-called "common" ligatures. These comprise the +longdesc ff, fi, fl, ffi, and ffl ligatures as well as the ft and fft +longdesc ligatures. Other f-ligatures, such as fb, fh, fj and fk, are +longdesc suppressed globally, while exceptions are made for names and +longdesc words of non-English/German origin, such as Kafka and fjord. +longdesc For English language documents, the package further provides +longdesc ligature suppression macros for a number of so-called +longdesc "discretionary" or "rare" ligatures such as ct, st, and sp. The +longdesc package requires use of a recent LuaLaTeX format (for example +longdesc those from TeX Live 2012 or 2013, or MiKTeX 2.9). +containersize 54008 +containerchecksum 8b01d1b6f4e6f83efbfc603be7c510d3c8435559b1272f3e8beae7d0de04ac889e04d539c689abfbfb8af5ff2d04c38459320fec333a122c3b60a1a79a0b115a +doccontainersize 509908 +doccontainerchecksum afc1a84aa85f3da5e5d121de0ee37f5347527985b3a9ae75abf0e51edc1d5371e831b5ffc7218d9863b8ff717554c6f469adec908f02f5d9be3bd4f6e45fc1ac +docfiles size=166 + RELOC/doc/lualatex/selnolig/README details="Readme" + RELOC/doc/lualatex/selnolig/gpp-ft.fea + RELOC/doc/lualatex/selnolig/selnolig-bugreport.tex + RELOC/doc/lualatex/selnolig/selnolig-english-test.pdf + RELOC/doc/lualatex/selnolig/selnolig-english-test.tex + RELOC/doc/lualatex/selnolig/selnolig-english-wordlist.tex + RELOC/doc/lualatex/selnolig/selnolig-german-test.pdf + RELOC/doc/lualatex/selnolig/selnolig-german-test.tex + RELOC/doc/lualatex/selnolig/selnolig-german-wordlist.tex + RELOC/doc/lualatex/selnolig/selnolig.pdf details="Package documentation" + RELOC/doc/lualatex/selnolig/selnolig.tex +runfiles size=59 + RELOC/tex/lualatex/selnolig/selnolig-english-hyphex.sty + RELOC/tex/lualatex/selnolig/selnolig-english-patterns.sty + RELOC/tex/lualatex/selnolig/selnolig-german-hyphex.sty + RELOC/tex/lualatex/selnolig/selnolig-german-patterns.sty + RELOC/tex/lualatex/selnolig/selnolig.lua + RELOC/tex/lualatex/selnolig/selnolig.sty +catalogue-contact-repository https://github.com/micoloretan/selnolig +catalogue-ctan /macros/luatex/latex/selnolig +catalogue-date 2018-03-07 05:17:28 +0100 +catalogue-license lppl1.3 +catalogue-topics typesetting luatex +catalogue-version 0.302 + +name semantic +category Package +revision 15878 +shortdesc Help for writing programming language semantics +relocated 1 +longdesc Eases the typesetting of notation of semantics and compilers. +longdesc Includes T-diagrams, various derivation symbols and inference +longdesc trees. +containersize 6616 +containerchecksum d49c22d4982a33177fdd73c5ff15a68e663c3ff1ec9a45a40e5a8364371a25b536dd6c1dd963296ae998760178833b5f2c357119f41e7bb5a72061f0f9ad23fa +doccontainersize 357820 +doccontainerchecksum 21e9a7efd9fd6dc28be30f284285cc8c13b266eb03c9212b30f97b761c1383e1fb84a18e92437d331d3963068a68c61276cc1fd3446807bedc954a490fc490aa +docfiles size=96 + RELOC/doc/latex/semantic/semantic.pdf details="Package documentation" +srccontainersize 32236 +srccontainerchecksum 4d513b6c9b320b9ddd8ec92fd8eae079134d351170122833e99557fdec7510938d8ef856c52e0a862a8cb8cdffa3894c160dfe085452e0cffc49db4d3fac6a79 +srcfiles size=30 + RELOC/source/latex/semantic/semantic.dtx + RELOC/source/latex/semantic/semantic.ins +runfiles size=10 + RELOC/tex/latex/semantic/infernce.sty + RELOC/tex/latex/semantic/ligature.sty + RELOC/tex/latex/semantic/reserved.sty + RELOC/tex/latex/semantic/semantic.sty + RELOC/tex/latex/semantic/shrthand.sty + RELOC/tex/latex/semantic/tdiagram.sty +catalogue-ctan /macros/latex/contrib/semantic +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics comp-sci +catalogue-version 2.0 + +name semantic-markup +category Package +revision 47837 +shortdesc Meaningful semantic markup in the spirit of the Text Encoding Initiative +relocated 1 +longdesc The package provides simple commands to allow authors +longdesc (especially scholars in the humanities) to write with a focus +longdesc on content rather than presentation. The commands are inspired +longdesc by the XML elements of the Text Encoding Initiative. Commands +longdesc like \term and \foreign are aliases for \emph. \quoted and +longdesc \soCalled are aliases for quoting commands. These commands +longdesc could be easily redefined for different formats. The package +longdesc also provides a footnote environment so that long footnotes can +longdesc be more cleanly separated from the main text. Because the +longdesc author is a music scholar, the package also includes some +longdesc macros for musical symbols and other basic notations for +longdesc musical analysis. +containersize 2484 +containerchecksum e0e519f87b17fc26a3a30662e9ad5ee6637c2bc054c9d718925cb5b68e6855c1510ef75e8df28d09b676ab40e348b15b85057c6f64d5f5a7f526f84791e5c67e +doccontainersize 277408 +doccontainerchecksum 28c2448170a73203261c1762eab7b2aa176c7c798b2320592f6fb4863be2a3845c10df86479ae984d7279882e080addf0476cceb3507b8daa17c94606aeb93b2 +docfiles size=70 + RELOC/doc/latex/semantic-markup/README details="Readme" + RELOC/doc/latex/semantic-markup/semantic-markup.pdf details="Package documentation" + RELOC/doc/latex/semantic-markup/semantic-markup.tex +runfiles size=2 + RELOC/tex/latex/semantic-markup/semantic-markup.sty +catalogue-ctan /macros/latex/contrib/semantic-markup +catalogue-date 2018-05-24 21:39:42 +0200 +catalogue-license lppl1.3 +catalogue-topics humanities linguistic + +name semaphor +category Package +revision 18651 +shortdesc Semaphore alphabet font +relocated 1 +longdesc These fonts represent semaphore in a highly schematic, but very +longdesc clear, fashion. The fonts are provided as Metafont source, and +longdesc in both OpenType and Adobe Type 1 formats. +execute addMixedMap semaf.map +containersize 244948 +containerchecksum b8741be1544d8ab488632e05464cf607069f0d09df7a727bc05d06175dc16bff461d551e7130e01edbb53863d56fbf4cd0cc9085c51186e19e5f2fae986b400b +doccontainersize 266760 +doccontainerchecksum ef0c85ca5e86a17d59c03255d679d54cc8fb36eec02c8546f29e1c514408559788d1dbe3ac7565224b320b71e9ad77979b1092fb0f098a1c48c3a7093b72b172 +docfiles size=75 + RELOC/doc/fonts/semaphor/README details="Readme" + RELOC/doc/fonts/semaphor/example.pdf details="Listing of semaphor letters" + RELOC/doc/fonts/semaphor/example.tex + RELOC/doc/fonts/semaphor/test-context.pdf + RELOC/doc/fonts/semaphor/test-context.tex +runfiles size=714 + RELOC/fonts/afm/public/semaphor/smfb10.afm + RELOC/fonts/afm/public/semaphor/smfbsl10.afm + RELOC/fonts/afm/public/semaphor/smfeb10.afm + RELOC/fonts/afm/public/semaphor/smfebsl10.afm + RELOC/fonts/afm/public/semaphor/smfer10.afm + RELOC/fonts/afm/public/semaphor/smfesl10.afm + RELOC/fonts/afm/public/semaphor/smfett10.afm + RELOC/fonts/afm/public/semaphor/smfpb10.afm + RELOC/fonts/afm/public/semaphor/smfpbsl10.afm + RELOC/fonts/afm/public/semaphor/smfpr10.afm + RELOC/fonts/afm/public/semaphor/smfpsl10.afm + RELOC/fonts/afm/public/semaphor/smfptt10.afm + RELOC/fonts/afm/public/semaphor/smfr10-1.afm + RELOC/fonts/afm/public/semaphor/smfr10-2.afm + RELOC/fonts/afm/public/semaphor/smfr10.afm + RELOC/fonts/afm/public/semaphor/smfsl10.afm + RELOC/fonts/afm/public/semaphor/smftt10.afm + RELOC/fonts/enc/dvips/semaphor/smfb10.enc + RELOC/fonts/enc/dvips/semaphor/smfbsl10.enc + RELOC/fonts/enc/dvips/semaphor/smfeb10.enc + RELOC/fonts/enc/dvips/semaphor/smfebsl10.enc + RELOC/fonts/enc/dvips/semaphor/smfer10.enc + RELOC/fonts/enc/dvips/semaphor/smfesl10.enc + RELOC/fonts/enc/dvips/semaphor/smfett10.enc + RELOC/fonts/enc/dvips/semaphor/smfpb10.enc + RELOC/fonts/enc/dvips/semaphor/smfpbsl10.enc + RELOC/fonts/enc/dvips/semaphor/smfpr10.enc + RELOC/fonts/enc/dvips/semaphor/smfpsl10.enc + RELOC/fonts/enc/dvips/semaphor/smfptt10.enc + RELOC/fonts/enc/dvips/semaphor/smfr10.enc + RELOC/fonts/enc/dvips/semaphor/smfsl10.enc + RELOC/fonts/enc/dvips/semaphor/smftt10.enc + RELOC/fonts/map/dvips/semaphor/semaf.map + RELOC/fonts/opentype/public/semaphor/smfb10.otf + RELOC/fonts/opentype/public/semaphor/smfbsl10.otf + RELOC/fonts/opentype/public/semaphor/smfeb10.otf + RELOC/fonts/opentype/public/semaphor/smfebsl10.otf + RELOC/fonts/opentype/public/semaphor/smfer10.otf + RELOC/fonts/opentype/public/semaphor/smfesl10.otf + RELOC/fonts/opentype/public/semaphor/smfett10.otf + RELOC/fonts/opentype/public/semaphor/smfpb10.otf + RELOC/fonts/opentype/public/semaphor/smfpbsl10.otf + RELOC/fonts/opentype/public/semaphor/smfpr10.otf + RELOC/fonts/opentype/public/semaphor/smfpsl10.otf + RELOC/fonts/opentype/public/semaphor/smfptt10.otf + RELOC/fonts/opentype/public/semaphor/smfr10.otf + RELOC/fonts/opentype/public/semaphor/smfsl10.otf + RELOC/fonts/opentype/public/semaphor/smftt10.otf + RELOC/fonts/source/public/semaphor/Makefile + RELOC/fonts/source/public/semaphor/README + RELOC/fonts/source/public/semaphor/metafont/semaf.mf + RELOC/fonts/source/public/semaphor/metafont/smfbf10.mf + RELOC/fonts/source/public/semaphor/metafont/smfebf10.mf + RELOC/fonts/source/public/semaphor/metafont/smfer10.mf + RELOC/fonts/source/public/semaphor/metafont/smfesl10.mf + RELOC/fonts/source/public/semaphor/metafont/smfett10.mf + RELOC/fonts/source/public/semaphor/metafont/smfpbf10.mf + RELOC/fonts/source/public/semaphor/metafont/smfpr10.mf + RELOC/fonts/source/public/semaphor/metafont/smfpsl10.mf + RELOC/fonts/source/public/semaphor/metafont/smfptt10.mf + RELOC/fonts/source/public/semaphor/metafont/smfr10.mf + RELOC/fonts/source/public/semaphor/metafont/smfsl10.mf + RELOC/fonts/source/public/semaphor/metafont/smftt10.mf + RELOC/fonts/source/public/semaphor/pfb2otf.pe + RELOC/fonts/source/public/semaphor/semaf.mp + RELOC/fonts/source/public/semaphor/smfb10.mp + RELOC/fonts/source/public/semaphor/smfbsl10.mp + RELOC/fonts/source/public/semaphor/smfeb10.mp + RELOC/fonts/source/public/semaphor/smfebsl10.mp + RELOC/fonts/source/public/semaphor/smfer10.mp + RELOC/fonts/source/public/semaphor/smfesl10.mp + RELOC/fonts/source/public/semaphor/smfett10.mp + RELOC/fonts/source/public/semaphor/smfpb10.mp + RELOC/fonts/source/public/semaphor/smfpbsl10.mp + RELOC/fonts/source/public/semaphor/smfpr10.mp + RELOC/fonts/source/public/semaphor/smfpsl10.mp + RELOC/fonts/source/public/semaphor/smfptt10.mp + RELOC/fonts/source/public/semaphor/smfr10.mp + RELOC/fonts/source/public/semaphor/smfsl10.mp + RELOC/fonts/source/public/semaphor/smftt10.mp + RELOC/fonts/tfm/public/semaphor/smfb10.tfm + RELOC/fonts/tfm/public/semaphor/smfbsl10.tfm + RELOC/fonts/tfm/public/semaphor/smfeb10.tfm + RELOC/fonts/tfm/public/semaphor/smfebsl10.tfm + RELOC/fonts/tfm/public/semaphor/smfer10.tfm + RELOC/fonts/tfm/public/semaphor/smfesl10.tfm + RELOC/fonts/tfm/public/semaphor/smfett10.tfm + RELOC/fonts/tfm/public/semaphor/smfpb10.tfm + RELOC/fonts/tfm/public/semaphor/smfpbsl10.tfm + RELOC/fonts/tfm/public/semaphor/smfpr10.tfm + RELOC/fonts/tfm/public/semaphor/smfpsl10.tfm + RELOC/fonts/tfm/public/semaphor/smfptt10.tfm + RELOC/fonts/tfm/public/semaphor/smfr10.tfm + RELOC/fonts/tfm/public/semaphor/smfsl10.tfm + RELOC/fonts/tfm/public/semaphor/smftt10.tfm + RELOC/fonts/type1/public/semaphor/smfb10.pfb + RELOC/fonts/type1/public/semaphor/smfb10.pfm + RELOC/fonts/type1/public/semaphor/smfbsl10.pfb + RELOC/fonts/type1/public/semaphor/smfbsl10.pfm + RELOC/fonts/type1/public/semaphor/smfeb10.pfb + RELOC/fonts/type1/public/semaphor/smfeb10.pfm + RELOC/fonts/type1/public/semaphor/smfebsl10.pfb + RELOC/fonts/type1/public/semaphor/smfebsl10.pfm + RELOC/fonts/type1/public/semaphor/smfer10.pfb + RELOC/fonts/type1/public/semaphor/smfer10.pfm + RELOC/fonts/type1/public/semaphor/smfesl10.pfb + RELOC/fonts/type1/public/semaphor/smfesl10.pfm + RELOC/fonts/type1/public/semaphor/smfett10.pfb + RELOC/fonts/type1/public/semaphor/smfett10.pfm + RELOC/fonts/type1/public/semaphor/smfpb10.pfb + RELOC/fonts/type1/public/semaphor/smfpb10.pfm + RELOC/fonts/type1/public/semaphor/smfpbsl10.pfb + RELOC/fonts/type1/public/semaphor/smfpbsl10.pfm + RELOC/fonts/type1/public/semaphor/smfpr10.pfb + RELOC/fonts/type1/public/semaphor/smfpr10.pfm + RELOC/fonts/type1/public/semaphor/smfpsl10.pfb + RELOC/fonts/type1/public/semaphor/smfpsl10.pfm + RELOC/fonts/type1/public/semaphor/smfptt10.pfb + RELOC/fonts/type1/public/semaphor/smfptt10.pfm + RELOC/fonts/type1/public/semaphor/smfr10.pfb + RELOC/fonts/type1/public/semaphor/smfr10.pfm + RELOC/fonts/type1/public/semaphor/smfsl10.pfb + RELOC/fonts/type1/public/semaphor/smfsl10.pfm + RELOC/fonts/type1/public/semaphor/smftt10.pfb + RELOC/fonts/type1/public/semaphor/smftt10.pfm + RELOC/tex/context/third/semaphor/t-type-semaf.tex + RELOC/tex/latex/semaphor/il2semaf.fd + RELOC/tex/latex/semaphor/semaf.fd + RELOC/tex/plain/semaphor/semaf.tex +catalogue-ctan /fonts/semaphor +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics font font-mf font-type1 font-otf font-specialist + +name seminar +category Package +revision 34011 +shortdesc Make overhead slides +relocated 1 +longdesc A class that produces overhead slides (transparencies), with +longdesc many facilities. The class requires availability of the +longdesc fancybox package. Seminar is also the basis of other classes, +longdesc such as prosper. In fact, seminar is not nowadays reckoned a +longdesc good basis for a presentation -- users are advised to use more +longdesc recent classes such as powerdot or beamer, both of which are +longdesc tuned to 21st-century presentation styles. Note that the +longdesc seminar distribution relies on the xcomment package, which was +longdesc once part of the bundle, but now has a separate existence. +containersize 29936 +containerchecksum 63173000935f741b7d1e7dab2fa0091bcb758ba36dfca0b6c745ae165f6b5f3aeea7972319078f175e231d3e0ebd3454d2241a2bc4f0f36ee51bac7bb7287a56 +doccontainersize 356048 +doccontainerchecksum 0bc4ea04a561c8a8c17f4f6ea493fa98e12e93cefd58b0aeeb0b09823f2b97028d945f1c9199fd1a5ab10e0b695079a8d97608474a4d04640496737640a9993c +docfiles size=157 + RELOC/doc/latex/seminar/Changes + RELOC/doc/latex/seminar/README details="Readme" + RELOC/doc/latex/seminar/run.sh + RELOC/doc/latex/seminar/sem-code.tex + RELOC/doc/latex/seminar/sem-make.tex + RELOC/doc/latex/seminar/seminar-doc.pdf details="Package documentation" + RELOC/doc/latex/seminar/seminar-doc.tex + RELOC/doc/latex/seminar/seminar.bg3 + RELOC/doc/latex/seminar/seminar.con + RELOC/doc/latex/seminar/seminar.doc + RELOC/doc/latex/seminar/semlayer.doc + RELOC/doc/latex/seminar/semsamp1.pdf + RELOC/doc/latex/seminar/semsamp1.tex + RELOC/doc/latex/seminar/semsamp2.pdf + RELOC/doc/latex/seminar/semsamp2.tex + RELOC/doc/latex/seminar/semsamp3.pdf + RELOC/doc/latex/seminar/semsamp3.tex +runfiles size=48 + RELOC/tex/latex/seminar/npsfont.sty + RELOC/tex/latex/seminar/sem-a4.sty + RELOC/tex/latex/seminar/sem-dem.sty + RELOC/tex/latex/seminar/sem-page.sty + RELOC/tex/latex/seminar/semcolor.sty + RELOC/tex/latex/seminar/semhelv.sty + RELOC/tex/latex/seminar/seminar.bg2 + RELOC/tex/latex/seminar/seminar.bug + RELOC/tex/latex/seminar/seminar.cls + RELOC/tex/latex/seminar/seminar.sty + RELOC/tex/latex/seminar/semlayer.sty + RELOC/tex/latex/seminar/semlcmss.sty + RELOC/tex/latex/seminar/semrot.sty + RELOC/tex/latex/seminar/slidesec.sty + RELOC/tex/latex/seminar/tvz-code.sty + RELOC/tex/latex/seminar/tvz-hax.sty + RELOC/tex/latex/seminar/tvz-user.sty +catalogue-also foiltex slidenotes +catalogue-ctan /macros/latex/contrib/seminar +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl1.2 +catalogue-topics presentation +catalogue-version 1.62 + +name semioneside +category Package +revision 15878 +shortdesc Put only special contents on left-hand pages in two sided layout +relocated 1 +longdesc This package supports the preparation of semi one sided +longdesc documents. That is, two sided documents, where all text is +longdesc output on right-hand pages--as in a one-sided documents--and +longdesc only special contents are output on left-hand pages on user +longdesc request, e.g., floating objects. +containersize 1204 +containerchecksum cb3f20a7f766681f9b7748ea3a816fcd477e6685a159b071502716c708e0e1d5a2a33a5b210cd1e2a684a288d07079870ad243218dd74e80853a227fd445c884 +doccontainersize 129076 +doccontainerchecksum 8d6b1ada214f99028ea9843b4d5a85a8a974a9ab52e8a7d9338d25341282d6f1c8ca4e7a24271ec20bc4be781f418f2ffb558ef4fe6e6f42d165bb24650b54da +docfiles size=40 + RELOC/doc/latex/semioneside/README + RELOC/doc/latex/semioneside/example.tex + RELOC/doc/latex/semioneside/figure.mp + RELOC/doc/latex/semioneside/semioneside.pdf details="Package documentation" +srccontainersize 6308 +srccontainerchecksum 1b8d0d90db12b52add0f7dae10cb16bac8a9260e0a6783762908a07a014dca294ea6c631ceac3a5d063705cf39fd1a57ce6b99f72c5da4d57d4a30cdafd25767 +srcfiles size=6 + RELOC/source/latex/semioneside/semioneside.dtx + RELOC/source/latex/semioneside/semioneside.ins +runfiles size=1 + RELOC/tex/latex/semioneside/semioneside.sty +catalogue-ctan /macros/latex/contrib/semioneside +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics layout +catalogue-version 0.41 + +name semproc +category Package +revision 37568 +shortdesc Seminar proceedings +relocated 1 +longdesc The package provides functionality for typesetting seminar +longdesc proceedings based on KOMA-Script's scrreprt class and etoc. It +longdesc offers an alternative to \chapter that typesets the speaker and +longdesc if necessary the typist of the notes for the talk in question. +longdesc Moreover, the class provides two types of table of contents. A +longdesc global table of contents showing only the talks of the seminar +longdesc and the respective speakers and a local table of contents for +longdesc each talk showing the sections and subsections of the +longdesc respective talk. +containersize 2616 +containerchecksum ac78e19197af3c72863ee4ca94842d596189d37c2d559ac1254f70fda1011943ddd7ce17b48f183b839a6610f8d7dbded2a0f2a18453823a0c0044a70841dcf2 +doccontainersize 364736 +doccontainerchecksum 2c7e2a40348b098037001928d6f21f5a66c23967dc63296ce26736b006a46f9d9536fae9480c1f0d0db72ed59973a6140471bb110702fd5cb997fafe03133dee +docfiles size=92 + RELOC/doc/latex/semproc/README.txt + RELOC/doc/latex/semproc/example.bib + RELOC/doc/latex/semproc/example.tex + RELOC/doc/latex/semproc/semproc.hd + RELOC/doc/latex/semproc/semproc.pdf details="Package documentation" +srccontainersize 6888 +srccontainerchecksum 7faf073ad7da9627b59509f41056df76658875d04651321389b3ae789e2d704691e494726635161eeab97786b8c8d6cd322e3ba83b3e1a779ff3d10a752fb51f +srcfiles size=7 + RELOC/source/latex/semproc/semproc.dtx + RELOC/source/latex/semproc/semproc.ins +runfiles size=2 + RELOC/tex/latex/semproc/semproc.cls +catalogue-ctan /macros/latex/contrib/semproc +catalogue-date 2017-11-12 11:01:19 +0100 +catalogue-license lppl1.3 +catalogue-topics semproc +catalogue-version 0.1 + +name sepfootnotes +category Package +revision 41732 +shortdesc Support footnotes and endnotes from separate files +relocated 1 +longdesc The package supports footnotes and endnotes from separate +longdesc files. This is achieved with commands \sepfootnotecontent and +longdesc \sepfootnote; the former defines the content of a note, while +longdesc the latter typesets that note. +containersize 2372 +containerchecksum a7333a9779ebca371aeef0a1348968d8b4649ca037e88f6e8a6f5224d13265202c8de8d2ce5dd89de170ddc348cfb04f5df92e249c122a608efa8fbab4daba98 +doccontainersize 207656 +doccontainerchecksum eb7d70eaec4bf58c85964f7a3692da09894c898f712a119fc0ffa42429be2e53b96ed6f569fcd37aff170d2b953543992bcc693e264ee1ec542c435be2723414 +docfiles size=59 + RELOC/doc/latex/sepfootnotes/README details="Readme" + RELOC/doc/latex/sepfootnotes/sepfootnotes.pdf details="Package documentation" + RELOC/doc/latex/sepfootnotes/sepfootnotes.tex +runfiles size=3 + RELOC/tex/latex/sepfootnotes/sepfootnotes.sty +catalogue-ctan /macros/latex/contrib/sepfootnotes +catalogue-date 2016-07-19 16:05:59 +0200 +catalogue-license lppl1.3 +catalogue-topics footnote +catalogue-version 0.3c + +name sepnum +category Package +revision 20186 +shortdesc Print numbers in a "friendly" format +relocated 1 +longdesc Provides a command to print a number with (potentially +longdesc different) separators every three digits in the parts either +longdesc side of the decimal point (the point itself is also +longdesc configurable). The macro is fully expandable and not fragile +longdesc (unless one of the separators is). There is also a command +longdesc \sepnumform, that may be used when defining \the +longdesc macros. +containersize 2680 +containerchecksum 4ba90558d397f0c047ffeb01620d2d5ed4bc38431ddbd75d9a381fac58360d78270b8f22e761693a8a39176d1ab92c9da3b6bf92aaaa90b8ee20490f5b70f50d +doccontainersize 354104 +doccontainerchecksum 080b081b101ea57480e4c958e997f5b10d22c5de56a60c1f415248ba0564046560650ae589b29c73d185fa88334a26ca3412e996fcc1214ef0b9d20e71bf18fa +docfiles size=87 + RELOC/doc/latex/sepnum/sepnum-doc.pdf details="Package documentation" + RELOC/doc/latex/sepnum/sepnum-doc.tex +runfiles size=2 + RELOC/tex/latex/sepnum/sepnum.sty +catalogue-also comma numprint +catalogue-ctan /macros/latex/contrib/sepnum +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl +catalogue-topics numbers +catalogue-version 2.0 + +name seqsplit +category Package +revision 15878 +shortdesc Split long sequences of characters in a neutral way +relocated 1 +longdesc When one needs to type long sequences of letters (such as in +longdesc base-sequences in genes) or of numbers (such as calculations of +longdesc transcendental numbers), there's no obvious break points to be +longdesc found. The package provides a command \seqsplit, which makes +longdesc its argument splittable anywhere, and then leaves the TeX +longdesc paragraph-maker to do the splitting. While the package may +longdesc obviously be used to typeset DNA sequences, the user may +longdesc consider the dnaseq as a rather more powerful alternative. +containersize 1296 +containerchecksum 02413d104e12aad40f093731e2d28d0354216d3d57e6f811609f398b8122bdbf906f78cef38f355562efb4e7df6dca314f8548d8d8c03a2a9404addc42f0e1f3 +doccontainersize 110396 +doccontainerchecksum 0c49425b619ac62da4eb2392c51cb7726d9bab008910a88ec36b866717c8ac341be0903e3014ed36a30ac701fafc453a0e319470f2f65eb6775d6ff52b9f07e9 +docfiles size=33 + RELOC/doc/latex/seqsplit/README + RELOC/doc/latex/seqsplit/seqsplit.pdf details="Package documentation" +srccontainersize 5408 +srccontainerchecksum 7349cf842e7142c5c13e46d16acc35535cf34be8a4985f9a581a4338ca54beffbd80fe2820123652f3ffc868bcfe1c995200ab918c99b19d6c2ee339b61354e3 +srcfiles size=6 + RELOC/source/latex/seqsplit/Makefile + RELOC/source/latex/seqsplit/seqsplit.dtx + RELOC/source/latex/seqsplit/seqsplit.ins +runfiles size=1 + RELOC/tex/latex/seqsplit/seqsplit.sty +catalogue-ctan /macros/latex/contrib/seqsplit +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics hyph-pseudo +catalogue-version 0.1 + +name serbian-apostrophe +category Package +revision 23799 +shortdesc Commands for Serbian words with apostrophes +relocated 1 +longdesc The package provides a collection of commands (whose names are +longdesc Serbian words) whose expansion is the Serbian word with +longdesc appropriate apostrophes. +containersize 10988 +containerchecksum 4e3998b6c3f5578929204c0b5f131b0ad4526057b50811253b6a90367327c63af5bec386aef54ae6c80be7a1ecdcc6875bbdca532fab864e61837cf16855750f +doccontainersize 462196 +doccontainerchecksum 38c8ac74b304ac992bad807f2727a3e75a727a77c5bfe5042e24a39ad305162e828ca0333963a3f91c5f26ca0324e7feea97dc6ab84c1cfdb6c26b05ed5f4fd5 +docfiles size=131 + RELOC/doc/latex/serbian-apostrophe/README details="Readme" + RELOC/doc/latex/serbian-apostrophe/apostrophe-list.pdf details="List of word commands and their expansion" + RELOC/doc/latex/serbian-apostrophe/apostrophe-list.tex + RELOC/doc/latex/serbian-apostrophe/serbian-apostrophe.pdf details="Package documentation" + RELOC/doc/latex/serbian-apostrophe/serbian-apostrophe.tex +runfiles size=18 + RELOC/tex/latex/serbian-apostrophe/serbian-apostrophe.sty +catalogue-ctan /language/serbian/filipovic/serbian-apostrophe +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics serbian + +name serbian-date-lat +category Package +revision 23446 +shortdesc Updated date typesetting for Serbian +relocated 1 +longdesc Babel defines dates for Serbian texts, in Latin script. The +longdesc style it uses does not match current practices. The present +longdesc package defines a \date command that solves the problem. +containersize 776 +containerchecksum 420b77a36a08e75f8020edffed704ff0398115a6bfe694fa46957ad8b35c58435ecde4c16176a72bbcbcd16139502f8fb679399852bfc9000df6d5f305fbb04e +doccontainersize 352304 +doccontainerchecksum 5c10fe13a4e1d6117ebfe8d737d50047dc97483c7a0cc287a9e79d367af50ec1cbdc0800161919b92c6d82774c9e756970db71344259028c254fbf2c1fe86219 +docfiles size=94 + RELOC/doc/latex/serbian-date-lat/README details="Readme" + RELOC/doc/latex/serbian-date-lat/SerbianDateLat.pdf details="Package documentation" + RELOC/doc/latex/serbian-date-lat/SerbianDateLat.tex + RELOC/doc/latex/serbian-date-lat/TestDateLat.pdf + RELOC/doc/latex/serbian-date-lat/TestDateLat.tex +runfiles size=1 + RELOC/tex/latex/serbian-date-lat/serbian-date-lat.sty +catalogue-ctan /language/serbian/filipovic/serbian-date-lat +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl2 +catalogue-topics serbian + +name serbian-def-cyr +category Package +revision 23734 +shortdesc Serbian cyrillic localization +relocated 1 +longdesc This package provides abstract, chapter, title, date etc, for +longdesc serbian language in cyrillic scripts in T2A encoding and cp1251 +longdesc code pages. +containersize 1820 +containerchecksum 6cbd1da1160519914db1a2269a54f1f81442d84750b15179e4a0f4e5373512c959542a789ef39a2803b68030bd6a8001fde777e907e85852703ff696ec9e5113 +doccontainersize 235684 +doccontainerchecksum 0f2a2fb44eaef8e0eb01e12260fa310d661501c3e1dacde2882199ce4bd5323c837704fd50e8db5b4ba567a38038b37be28fd834874262de2e3ad36b65816498 +docfiles size=66 + RELOC/doc/latex/serbian-def-cyr/README details="Readme" + RELOC/doc/latex/serbian-def-cyr/proba.pdf + RELOC/doc/latex/serbian-def-cyr/proba.tex + RELOC/doc/latex/serbian-def-cyr/usage.pdf details="Package documentation" + RELOC/doc/latex/serbian-def-cyr/usage.tex +runfiles size=1 + RELOC/tex/latex/serbian-def-cyr/serbian-def-cyr.sty +catalogue-ctan /macros/latex/contrib/serbian-def-cyr +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics serbian + +name serbian-lig +category Package +revision 48197 +shortdesc Control ligatures in Serbian +relocated 1 +longdesc The package suppresses fi and fl (and other ligatures) in +longdesc Serbian text written using Roman script. +containersize 8644 +containerchecksum cc8961bd7d6b0fd9226b663a6913e2312ba61b9dec8479fe4fb573b4dbbd7a74b82415fe1c83baa30c33f1bfaf672f02342997d45cd52096ed840544704fd062 +doccontainersize 417316 +doccontainerchecksum 696c8d37d417b797beec4c4cbb5d7997c20391e98a875c59a1c803263e2ad64d6fcd2e4541a50364fce0176a472b201b99ceba0539cfa156814ea6e8cfa660e1 +docfiles size=122 + RELOC/doc/latex/serbian-lig/Changes.txt + RELOC/doc/latex/serbian-lig/README.txt details="Readme" + RELOC/doc/latex/serbian-lig/lig-list.pdf + RELOC/doc/latex/serbian-lig/lig-list.tex + RELOC/doc/latex/serbian-lig/serbian-lig.pdf details="Package documentation" + RELOC/doc/latex/serbian-lig/serbian-lig.tex +runfiles size=20 + RELOC/tex/latex/serbian-lig/serbian-lig.sty +catalogue-ctan /language/serbian/filipovic/serbian-lig +catalogue-date 2018-07-14 14:14:22 +0200 +catalogue-license lppl1.3 +catalogue-topics serbian + +name sesamanuel +category Package +revision 36613 +shortdesc Class and package for sesamath books or paper +relocated 1 +longdesc The package contains a sesamanuel class which could be used to +longdesc compose a student's classroom book with LaTeX, and also a +longdesc sesamanuelTIKZ style to be used for TikZ pictures in the +longdesc sesamath book. +containersize 28800 +containerchecksum bb7b38ff9e6494fb3150602008a66df5fd8c35dcb52a2da196cd177bcffeb40e284fa493b296f01f22864a5bf25d89fb4c079ff4d9fffacdf37dfc9de9256518 +doccontainersize 858604 +doccontainerchecksum cd144c93693367bdda658fb1ecd424715849fa57f0aded627125db2703947c8b5886df9ec08595592b6900327b42e8cff00f0c69967075321bd7cd1064054f3b +docfiles size=279 + RELOC/doc/latex/sesamanuel/Lisez.moi details="Readme" language="fr" + RELOC/doc/latex/sesamanuel/logotex.eps + RELOC/doc/latex/sesamanuel/read.me + RELOC/doc/latex/sesamanuel/sesamanuel.pdf details="Package documentation" language="fr" + RELOC/doc/latex/sesamanuel/sesamath-doc-fr.pdf details="Package documentation" language="fr" + RELOC/doc/latex/sesamanuel/sesamath-doc-fr.tex + RELOC/doc/latex/sesamanuel/tiger.eps +srccontainersize 66020 +srccontainerchecksum 4a5dd4a8da6a8719f47d4b4bfb5e3a6c0e1498369fbcf7f9fd48304906bbff383793329959b69f13a75bcf3d01b888325c23079b4503aa779f464c2864560416 +srcfiles size=103 + RELOC/source/latex/sesamanuel/sesamanuel.dtx + RELOC/source/latex/sesamanuel/sesamanuel.ins +runfiles size=61 + RELOC/tex/latex/sesamanuel/sesamanuel.cls + RELOC/tex/latex/sesamanuel/sesamanuel.sty + RELOC/tex/latex/sesamanuel/sesamanuelTIKZ.sty +catalogue-ctan /macros/latex/contrib/sesamanuel +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 0.6 + +name sesstime +category Package +revision 49750 +shortdesc Session and timing information in lecture notes +relocated 1 +longdesc This LaTeX2e package makes it possible to add timing marks to +longdesc lecture notes in order to help managing the time available for +longdesc presenting a given section of the document. It also provides +longdesc tools to record and estimate the progress throughout the +longdesc course. +containersize 3552 +containerchecksum 5c5ab4808645230c6563a08b8243f27fad02a76fa56296f4c7e1b17d2140ad0c9ab0b6ed02e27240f596113019afbed52dc5a9f5efd874ba7783c921b81416c9 +doccontainersize 314264 +doccontainerchecksum 93b986ea6853761fae06b297b951a7a46ffee403a4fc980aa1afb7cc42c15fe753797eecbacacbfb49b0119ac9e24dc105975acf72852eb0265dc4586f397bc2 +docfiles size=84 + RELOC/doc/latex/sesstime/README.txt details="Readme" + RELOC/doc/latex/sesstime/sesstime.pdf details="Package documentation" + RELOC/doc/latex/sesstime/stimsamp.tex + RELOC/doc/latex/sesstime/stimsmp3.tex + RELOC/doc/latex/sesstime/stimsmp4.tex +srccontainersize 15500 +srccontainerchecksum 8f3200ab63d77bf24aa9b2cd51ac460f086cb82599e9099b41614f039cf569f4fba23f2dcd59174623037046bacfd5a11ff59f140b09f373edb6346292db7910 +srcfiles size=18 + RELOC/source/latex/sesstime/sesstime.dtx + RELOC/source/latex/sesstime/sesstime.ins +runfiles size=4 + RELOC/tex/latex/sesstime/sesstime.sty +catalogue-ctan /macros/latex/contrib/sesstime +catalogue-date 2019-01-18 00:03:38 +0100 +catalogue-license lppl1.3 +catalogue-topics teaching +catalogue-version 1.12 + +name setdeck +category Package +revision 40613 +shortdesc Typeset cards for Set +relocated 1 +longdesc The package will typeset cards for use in a game of Set. +containersize 2528 +containerchecksum 817474bc928883f4bbe97391a477bf492a4e339879fc85d7aec3ca932f9b46c310f8fec5b732deb2196c705c2bd3a22721376ea8289a1bbdc12555447f12f757 +doccontainersize 62808 +doccontainerchecksum c27f7ab563f35293ee6019560f643d562ff2bf06747402930c767031a8dccffac0ebae9cd16b9e3009b5883f594c541ccf4c38883aa89f4256f7db83e378e1e9 +docfiles size=17 + RELOC/doc/latex/setdeck/README details="Readme" + RELOC/doc/latex/setdeck/setdeck.pdf details="Package documentation" + RELOC/doc/latex/setdeck/setdeck.tex +runfiles size=12 + RELOC/tex/latex/setdeck/setdeck.sty +catalogue-ctan /graphics/pgf/contrib/setdeck +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl3 +catalogue-topics games pgf-tikz +catalogue-version 0.1 + +name setspace +category Package +revision 24881 +shortdesc Set space between lines +relocated 1 +longdesc Provides support for setting the spacing between lines in a +longdesc document. Package options include singlespacing, +longdesc onehalfspacing, and doublespacing. Alternatively the spacing +longdesc can be changed as required with the \singlespacing, +longdesc \onehalfspacing, and \doublespacing commands. Other size +longdesc spacings also available. +containersize 7584 +containerchecksum d7e7f2ea7ea8ad3c0b2437a04a965a25b37d96fcc03e92a524f823e80316569db67ca4b1d9313c27e487d4914f4a7e1b4d088ba8fb6c1cb27040552cbb4c8697 +doccontainersize 932 +doccontainerchecksum 6af94bda31c7276e7872286a1199363dc1de52c04f8cc8eb5825abda675657454f1349b619309014e934a9e5d3b80dd8d4b7a590c05d6ca2993ad3d8ceabd7fe +docfiles size=2 + RELOC/doc/latex/setspace/README details="Readme" + RELOC/doc/latex/setspace/setspace-test.tex +runfiles size=6 + RELOC/tex/latex/setspace/setspace.sty +catalogue-contact-repository https://github.com/rf-latex/setspace +catalogue-contact-support https://github.com/rf-latex/setspace/issues +catalogue-ctan /macros/latex/contrib/setspace +catalogue-date 2018-09-14 18:16:49 +0200 +catalogue-license lppl1.3 +catalogue-topics line-space +catalogue-version 6.7a + +name seuthesis +category Package +revision 33042 +shortdesc LaTeX template for theses at Southeastern University +relocated 1 +longdesc This template is for theses at Southeastern University, +longdesc Nanjing, China. +containersize 10520 +containerchecksum a36006ff6a093cd589a0e328c60e7e78afc160ab45746e562a43a8944b2ab331643261f56890497b70449f76be43c0b226642cc5570dccfe0d6240181b20bcb3 +doccontainersize 2221748 +doccontainerchecksum 5bbc5770bc42c62da7ca569b10558dc02bbe7fda2a463a3a2a78bc76fda3f1d0e7023c311f62a91bef73ae3c4026561403284404acc6bc72cb2e308ad4092ab8 +docfiles size=1154 + RELOC/doc/latex/seuthesis/Makefile + RELOC/doc/latex/seuthesis/a3cover/A3cover.tex + RELOC/doc/latex/seuthesis/a3cover/A4cover.tex + RELOC/doc/latex/seuthesis/a3cover/a3cover.bat + RELOC/doc/latex/seuthesis/a3cover/a3cover.sh + RELOC/doc/latex/seuthesis/a3cover/a4cover.bat + RELOC/doc/latex/seuthesis/a3cover/a4cover.sh + RELOC/doc/latex/seuthesis/a3cover/bookspine_hor.tex + RELOC/doc/latex/seuthesis/a3cover/bookspine_ver.tex + RELOC/doc/latex/seuthesis/figures/back-cover.png + RELOC/doc/latex/seuthesis/figures/doctor-hwzs.pdf + RELOC/doc/latex/seuthesis/figures/doctor.png + RELOC/doc/latex/seuthesis/figures/engineering.png + RELOC/doc/latex/seuthesis/figures/front-cover.jpg + RELOC/doc/latex/seuthesis/figures/master-hwzs.pdf + RELOC/doc/latex/seuthesis/figures/master.png + RELOC/doc/latex/seuthesis/figures/seu-badge-logo.eps + RELOC/doc/latex/seuthesis/figures/seu-badge-logo.pdf + RELOC/doc/latex/seuthesis/figures/seu-color-logo.png + RELOC/doc/latex/seuthesis/figures/seu-text-logo.eps + RELOC/doc/latex/seuthesis/figures/seu-text-logo.png + RELOC/doc/latex/seuthesis/sample-bachelor.pdf + RELOC/doc/latex/seuthesis/sample-doctor.pdf + RELOC/doc/latex/seuthesis/sample-master.pdf + RELOC/doc/latex/seuthesis/sample.tex + RELOC/doc/latex/seuthesis/seuthesis.bib + RELOC/doc/latex/seuthesis/seuthesis.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/seuthesis/zharticle/scrsize9pt.clo + RELOC/doc/latex/seuthesis/zharticle/zharticle.bst + RELOC/doc/latex/seuthesis/zharticle/zharticle.cfg + RELOC/doc/latex/seuthesis/zharticle/zharticle.cls +srccontainersize 18188 +srccontainerchecksum a442b5ca4e1e8a4a3f8d331e5575066a8c63d1521d1f774fa7d386a8e42b09a2c4727fae1f0a51a31c6a98c173113349738caac8991d50e4459082a874fed1ad +srcfiles size=16 + RELOC/source/latex/seuthesis/seuthesis.dtx + RELOC/source/latex/seuthesis/seuthesis.ins +runfiles size=22 + RELOC/bibtex/bst/seuthesis/seuthesis.bst +catalogue-also seuthesix +catalogue-contact-repository https://github.com/seucs/seuthesis +catalogue-ctan /macros/latex/contrib/seuthesis +catalogue-date 2018-04-05 06:13:24 +0200 +catalogue-license gpl3 +catalogue-topics dissertation class +catalogue-version 2.1.2 + +name seuthesix +category Package +revision 40088 +shortdesc LaTeX class for theses at Southeast University, Nanjing, China +relocated 1 +longdesc This project provides a LaTeX document class as well as a +longdesc bibliography style file for typesetting theses at the Southeast +longdesc University, Nanjing, China. It is based on the seuthesis +longdesc package which, according to the author of seuthesix, is buggy +longdesc and has not been maintained for some time. +containersize 9908 +containerchecksum 8f2aa388faf3fc41cdda54ac44631dc2f0737b727f3af27c41bc268223d2f3f6353dc24f067ec487fe5f3ced5c7837ee6f60d46de3950a3a3c9573df77cc725a +doccontainersize 3026736 +doccontainerchecksum 1d54dacc742d558af5fb006cb4f26e073bbf6a3a572b7e81fbacf691995a4a96c72251225fb7cff598c930a4c9984d0d01d080c797f202f7e30aced20b8b3e5b +docfiles size=1770 + RELOC/doc/latex/seuthesix/LICENCE + RELOC/doc/latex/seuthesix/README details="Readme" + RELOC/doc/latex/seuthesix/figures/back-cover.png + RELOC/doc/latex/seuthesix/figures/doctor-hwzs.pdf + RELOC/doc/latex/seuthesix/figures/doctor.png + RELOC/doc/latex/seuthesix/figures/engineering.png + RELOC/doc/latex/seuthesix/figures/front-cover.jpg + RELOC/doc/latex/seuthesix/figures/lxfbook.jpg + RELOC/doc/latex/seuthesix/figures/master-hwzs.pdf + RELOC/doc/latex/seuthesix/figures/master.png + RELOC/doc/latex/seuthesix/figures/seu-badge-logo.eps + RELOC/doc/latex/seuthesix/figures/seu-badge-logo.pdf + RELOC/doc/latex/seuthesix/figures/seu-color-logo.png + RELOC/doc/latex/seuthesix/figures/seu-text-logo.eps + RELOC/doc/latex/seuthesix/figures/seu-text-logo.png + RELOC/doc/latex/seuthesix/figures/seu_logo.jpg + RELOC/doc/latex/seuthesix/make_pdf.sh + RELOC/doc/latex/seuthesix/makefile_engineering.sh + RELOC/doc/latex/seuthesix/makefile_masters.sh + RELOC/doc/latex/seuthesix/makefile_phd.sh + RELOC/doc/latex/seuthesix/rules.pdf + RELOC/doc/latex/seuthesix/sample_engineering.pdf + RELOC/doc/latex/seuthesix/sample_engineering.tex + RELOC/doc/latex/seuthesix/sample_masters.pdf + RELOC/doc/latex/seuthesix/sample_masters.tex + RELOC/doc/latex/seuthesix/sample_phd.pdf + RELOC/doc/latex/seuthesix/sample_phd.tex + RELOC/doc/latex/seuthesix/seuthesix.bib + RELOC/doc/latex/seuthesix/seuthesix.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/seuthesix/seuthesix.tex +srccontainersize 548 +srccontainerchecksum fbc848315e2b76ac915aa6abc0a9e7bf2f63c4af716ccf65c9af3ae05e049952703c1f86db97a5825b92f43dc2d1163e6544c30fcfce4b672272b4ba9057c171 +srcfiles size=4 + RELOC/source/latex/seuthesix/make_pdf.bat + RELOC/source/latex/seuthesix/makefile_engineering.bat + RELOC/source/latex/seuthesix/makefile_masters.bat + RELOC/source/latex/seuthesix/makefile_phd.bat +runfiles size=11 + RELOC/bibtex/bst/seuthesix/seuthesix.bst + RELOC/tex/latex/seuthesix/seuthesix.cfg + RELOC/tex/latex/seuthesix/seuthesix.cls +catalogue-also seuthesis +catalogue-contact-repository https://github.com/zhimengfan1990/seuthesix +catalogue-ctan /macros/latex/contrib/seuthesix +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license gpl3 +catalogue-topics dissertation class +catalogue-version 1.0.1 + +name sexam +category Package +revision 46628 +shortdesc Package for typesetting arabic exam scripts +relocated 1 +longdesc The package provides a modified version of the exam package +longdesc made compatible with XeLaTeX/polyglossia to typesetting arabic +longdesc exams. +containersize 2480 +containerchecksum 60fc18bf706b787b9bc59d1ff12e62fc3b69f5c6815a629f6743c8ff3fbbb2948c145278805888b235756beac5dde5613c10fe4ce20bb6536b4a3d77a2713569 +doccontainersize 992712 +doccontainerchecksum 0d2d5e2e5214622ea6b398c0b0f7a297a3f247ef3df0ed696c6faed94527b2edb6564c917d182177f8f3b44d7cd0e14ef4ac186c89113ad74e3ea70475ce1179 +docfiles size=359 + RELOC/doc/xelatex/sexam/01.JPG + RELOC/doc/xelatex/sexam/10.png + RELOC/doc/xelatex/sexam/11.png + RELOC/doc/xelatex/sexam/2.JPG + RELOC/doc/xelatex/sexam/3.JPG + RELOC/doc/xelatex/sexam/4.JPG + RELOC/doc/xelatex/sexam/6.JPG + RELOC/doc/xelatex/sexam/7.JPG + RELOC/doc/xelatex/sexam/8.JPG + RELOC/doc/xelatex/sexam/9.JPG + RELOC/doc/xelatex/sexam/README.txt details="Readme" + RELOC/doc/xelatex/sexam/bac_template-DZ.pdf + RELOC/doc/xelatex/sexam/bac_template-DZ.tex + RELOC/doc/xelatex/sexam/exam_with_sexam_ar-DZ.pdf + RELOC/doc/xelatex/sexam/exam_with_sexam_ar-DZ.tex + RELOC/doc/xelatex/sexam/exam_with_wexam_ar-DZ.pdf + RELOC/doc/xelatex/sexam/exam_with_wexam_ar-DZ.tex + RELOC/doc/xelatex/sexam/sexam_wexam_doc_ar.pdf details="Package documentation" language="ar-dz" + RELOC/doc/xelatex/sexam/sexam_wexam_doc_ar.tex +runfiles size=3 + RELOC/tex/xelatex/sexam/bacex.sty + RELOC/tex/xelatex/sexam/sexam.sty + RELOC/tex/xelatex/sexam/wexam.sty +catalogue-also exam +catalogue-ctan /macros/xetex/latex/sexam +catalogue-date 2018-02-15 04:59:58 +0100 +catalogue-license lppl1.3 +catalogue-topics exam arabic class +catalogue-version 1 + +name sf298 +category Package +revision 41653 +shortdesc Standard form 298 +relocated 1 +longdesc A LaTeX package for generating a completed standard form 298 +longdesc (Rev. 8-98) as prescribed by ANSI Std. Z39.18 for report +longdesc documentation as part of a document delivered, for instance, on +longdesc a U.S. government contract. +containersize 6988 +containerchecksum c9a262481a01019010a645c321c675bc93e3e0c6627b693bce53a808bc9366d7915c19f97871786001fbf61b589f2cef274aba005681f9b32094644568d0f2ec +doccontainersize 420024 +doccontainerchecksum 03b1d51626e6ec0b076f4c2fb5b34daf490a671df69edef7235a6c8c77b2475e79604c7d49aed3c7d756c9fb781a7398a27596ab9b183b942119ee86385ec612 +docfiles size=106 + RELOC/doc/latex/sf298/Makefile + RELOC/doc/latex/sf298/README.txt details="Readme" + RELOC/doc/latex/sf298/sample298.tex + RELOC/doc/latex/sf298/sf298.pdf details="Package documentation" +srccontainersize 22544 +srccontainerchecksum af4d0437e6c79c7bf0975f8e14bd8f19675223849b04b9e7b1d526ccc70a8a4a6d6773f86f9ddbcb98329368eff8c7f41cab4f2468f0100b8f5f840288184826 +srcfiles size=24 + RELOC/source/latex/sf298/sf298.dtx + RELOC/source/latex/sf298/sf298.ins +runfiles size=7 + RELOC/tex/latex/sf298/sf298.sty +catalogue-ctan /macros/latex/contrib/sf298 +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl1.2 +catalogue-topics report-like +catalogue-version 1.3 + +name sffms +category Package +revision 15878 +shortdesc Typesetting science fiction/fantasy manuscripts +relocated 1 +longdesc The class is designed for typesetting science fiction and +longdesc fantasy manuscripts. Sffms now includes several options for +longdesc specific publishers as well as extensive documentation aimed at +longdesc new LaTeX users. +containersize 3376 +containerchecksum ea7fbce545b9e9dc8b804e293239fdd491bf1293875fa841afc5a33ddcac7acddf243194e36f8958df4d23c71ad9b83348fda57dc261f211b49fc137b66ff6b2 +doccontainersize 156244 +doccontainerchecksum e1702249f2516dde93887403833f9261f73e90ce04bb97d4052de1a28b9f5bcd5729d1d9a68759ea92271b46cbbebed39565e8c30248af4c894c347e4b9b75a9 +docfiles size=52 + RELOC/doc/latex/sffms/README details="Readme" + RELOC/doc/latex/sffms/blind.tex + RELOC/doc/latex/sffms/sffms_manual.pdf details="Package documentation" +srccontainersize 15740 +srccontainerchecksum 50fec199dddd2509682af8910db1cecaba7359be24a1666e156715e4613571c6f48c27eb813efaab2d6a4fd01e0e9d110021a42afca501a75a2ee02f7c80499e +srcfiles size=13 + RELOC/source/latex/sffms/sffms.dtx + RELOC/source/latex/sffms/sffms.ins +runfiles size=4 + RELOC/tex/latex/sffms/sffdumb.sty + RELOC/tex/latex/sffms/sffms.cls + RELOC/tex/latex/sffms/sffsmart.sty +catalogue-ctan /macros/latex/contrib/sffms +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics class publisher +catalogue-version 2.0 + +name sfg +category Package +revision 20209 +shortdesc Draw signal flow graphs +relocated 1 +longdesc Defines some commands to draw signal flow graphs as used by +longdesc electrical and electronics engineers and graph theorists. +longdesc Requires fp and pstricks packages (and a relatively fast +longdesc machine). +containersize 6172 +containerchecksum d90305b5fbac3e06bc3195b802b4ef78f7c6cfb4f0592dfd300839dd608150e1ad08fc7479fe6d8df4f2429ad6b7f81692d9723dde198991fc9626565cb38578 +doccontainersize 388384 +doccontainerchecksum 26c17b606f0cfb4e199755f7f16eec16cbe379a786a88bec2d77d983d17107d86bf8da23474bc3450f8467d18028f2f41a314c83565916cf3ac3e97c5c079267 +docfiles size=100 + RELOC/doc/latex/sfg/Changes + RELOC/doc/latex/sfg/README details="Readme" + RELOC/doc/latex/sfg/sfg-doc.pdf details="Package documentation" + RELOC/doc/latex/sfg/sfg-doc.tex + RELOC/doc/latex/sfg/sfg_test.tex +runfiles size=6 + RELOC/tex/latex/sfg/sfg.sty +catalogue-ctan /macros/latex/contrib/sfg +catalogue-date 2018-09-15 14:02:36 +0200 +catalogue-license lppl +catalogue-topics diagram pstricks +catalogue-version 0.91 + +name sfmath +category Package +revision 15878 +shortdesc Sans-serif mathematics +relocated 1 +longdesc sfmath is a simple package for sans serif maths in documents. +longdesc After including the package, all maths of the current document +longdesc is displayed with sans serif fonts. +containersize 4472 +containerchecksum 7ba73610785c9270e8741ba0137701677575e38cac79976d89e2f5768804ff52117c5fcbaab9b260be522f174458a18d2d70d82c2da201e7fd6a91fe4bbdf6fb +runfiles size=5 + RELOC/tex/latex/sfmath/sfmath.sty +catalogue-also sansmath +catalogue-ctan /macros/latex/contrib/sfmath/sfmath.sty +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font-maths maths +catalogue-version 0.8 + +name sgame +category Package +revision 30959 +shortdesc LaTeX style for typesetting strategic games +relocated 1 +longdesc Formats strategic games. For a 2x2 game, for example, the +longdesc input: \begin{game}{2}{2} &$L$ &$M$\\ $T$ &$2,2$ &$2,0$\\ $B$ +longdesc &$3,0$ &$0,9$ \end{game} produces output with (a) boxes around +longdesc the payoffs, (b) payoff columns of equal width, and (c) payoffs +longdesc vertically centered within the boxes. Note that the game +longdesc environment will not work in the argument of another command. +containersize 4560 +containerchecksum 60e1c4d7f68bd6d39e081d49bfa1ecfa7dc56b940172719b4d6d0f2e87456c4b511ac29bb1884f7c290e7b226eb6ecae8f2ce4de3f7f5fbbd21934c440395ab7 +doccontainersize 69168 +doccontainerchecksum 29f4ee374c7b9d07274fb6f622c0769ff6977ce522ae25fa24571c0b7e60f1e120e4e26d37c6c340372fc0a2dde71a25121fa9538a35aa100e21637d5c79c874 +docfiles size=28 + RELOC/doc/latex/sgame/README + RELOC/doc/latex/sgame/sgame.pdf details="Package documentation" + RELOC/doc/latex/sgame/sgame.tex +runfiles size=8 + RELOC/tex/latex/sgame/sgame.sty + RELOC/tex/latex/sgame/sgamevar.sty +catalogue-contact-home https://www.economics.utoronto.ca/osborne/latex/index.html +catalogue-ctan /macros/latex/contrib/sgame +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl +catalogue-topics games +catalogue-version 2.15 + +name shade +category Package +revision 22212 +shortdesc Shade pieces of text +relocated 1 +longdesc The package provides a shaded backdrop to a box of text. It +longdesc uses a Metafont font (provided) which generates to appropriate +longdesc shading dependent on the resolution used in the Metafont +longdesc printer parameters. +containersize 1652 +containerchecksum 968be382e1f82029e7e06f5ed34473fc20fd38dc758b97fec6dbf015ca13c3604dd6b7638dcad2f80be474ad001c47ec86e75e8d9947bde26053873376e9e068 +doccontainersize 14040 +doccontainerchecksum 0c9ec337ed4c9bba949e6b449368868856d652b2f5ac7c70dd08a9daaf8a3ed3be4008a91c003c731c97f7e4132f571c44ea9d4a4529f7b0ac9be11a673310ff +docfiles size=9 + RELOC/doc/generic/shade/README details="Readme" + RELOC/doc/generic/shade/description.pdf details="Description of the algorithm:" language="en" + RELOC/doc/generic/shade/description.tex +runfiles size=2 + RELOC/fonts/source/public/shade/shade.mf + RELOC/tex/generic/shade/shade.tex +catalogue-also shadebox +catalogue-ctan /macros/generic/shade +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl1 +catalogue-topics decoration +catalogue-version 1 + +name shadethm +category Package +revision 20319 +shortdesc Theorem environments that are shaded +relocated 1 +longdesc Extends the \newtheorem command. If you say +longdesc \newshadetheorem{theorem}{Theorem} in the preamble then your +longdesc regular \begin{theorem} .. \end{theorem} will produce a theorem +longdesc statement in a shaded box. It supports all the options of +longdesc \newtheorem, including forms \newshadetheorem{..}[..]{..} and +longdesc \newshadetheorem{..}{..}[..]. Environments declared using the +longdesc package require their body to remain on one page; the mdframed +longdesc package can frame and shade theorems, and its environments +longdesc break at the end of a page; users are generally recommended, +longdesc therefore, to use mdframed. +containersize 7392 +containerchecksum e86b448ac347677f4439e3fdf8d7d3448dee3d29529e72fd1c11e9b98af71dba6101ab3b3a4a988b6daeef4c1f96ba092426b109220d70289f43f12bd010f735 +doccontainersize 360876 +doccontainerchecksum b99b7c5eae48fa6a1af0fe25e71d7dcf65433e7ae0b2f712fbe7ff3569a66c10fde956287df9dd0bdf0c2b21610b295517a2065d9cba81a3d305e843e81d415f +docfiles size=93 + RELOC/doc/latex/shadethm/1st_read.me details="Readme" + RELOC/doc/latex/shadethm/shadetest.pdf + RELOC/doc/latex/shadethm/shadetest.tex + RELOC/doc/latex/shadethm/shadethm-doc.pdf details="Package documentation" + RELOC/doc/latex/shadethm/shadethm-doc.tex +runfiles size=8 + RELOC/tex/latex/shadethm/colored.sth + RELOC/tex/latex/shadethm/shadein.sth + RELOC/tex/latex/shadethm/shadethm.sty +catalogue-ctan /macros/latex/contrib/shadethm +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics maths-theorem decoration + +name shadow +category Package +revision 20312 +shortdesc Shadow boxes +relocated 1 +longdesc Defines a command \shabox (analgous to \fbox), and supporting +longdesc mechanisms. +containersize 1948 +containerchecksum 885bca1090b93545f59b387e952998f65dee0931fb5b680d06667c3bb8172e2aad37e840942b9495134b421bb40b871633eb5de941b3a257618751e789128ca6 +doccontainersize 223584 +doccontainerchecksum 402e64195e247cd2c5106e3bd621705b80c006b2f6cf0b1da14ea459acb7dd97e2ebeda87ec118be3e73bf76edebe3067330498a2875c52c4248add70d7a0a25 +docfiles size=56 + RELOC/doc/latex/shadow/shadow-doc.pdf details="Package documentation" + RELOC/doc/latex/shadow/shadow-doc.tex +runfiles size=2 + RELOC/tex/latex/shadow/shadow.sty +catalogue-also fancybox +catalogue-ctan /macros/latex/contrib/shadow +catalogue-date 2018-04-18 05:32:44 +0200 +catalogue-license lppl +catalogue-topics decoration + +name shadowtext +category Package +revision 26522 +shortdesc Produce text with a shadow behind it +relocated 1 +longdesc The package introduces a command \shadowtext, which adds a drop +longdesc shadow to the text that is given as its argument. The colour +longdesc and positioning of the shadow are customisable. +containersize 1484 +containerchecksum 59ab708b0f8987838cafe864cdcd68aad5aceb7cb4b3ab2b479ec4fbd15e268ba4fdd1b0143b7c247cc186a825d99ad810839221a391eafd5146f0a46865e23d +doccontainersize 145128 +doccontainerchecksum a89bd6ab160e364af06e26d9bbb88988c286befb5dfe4e4bdfc7c511811ef4a1ef630708d4a7ff32cb0ab6831dbee54d49a84376ee9366bd422d5689d86db404 +docfiles size=38 + RELOC/doc/latex/shadowtext/README details="Readme" + RELOC/doc/latex/shadowtext/shadowtext.pdf details="Package documentation" + RELOC/doc/latex/shadowtext/shadowtext.tex +runfiles size=1 + RELOC/tex/latex/shadowtext/shadowtext.sty +catalogue-ctan /macros/latex/contrib/shadowtext +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics decoration +catalogue-version 0.3 + +name shapepar +category Package +revision 30708 +shortdesc A macro to typeset paragraphs in specific shapes +relocated 1 +longdesc \shapepar is a macro to typeset paragraphs in a specific shape. +longdesc The size is adjusted automatically so that the entire shape is +longdesc filled with text. There may not be displayed maths or +longdesc '\vadjust' material (no \vspace) in the argument of \shapepar. +longdesc The macros work for both LaTeX and plain TeX. For LaTeX, +longdesc specify \usepackage{shapepar}; for Plain, \input shapepar.sty. +longdesc \shapepar works in terms of user-defined shapes, though the +longdesc package does provide some predefined shapes: so you can form +longdesc any paragraph into the form of a heart by putting +longdesc \heartpar{sometext...} inside your document. The tedium of +longdesc creating these polygon definitions may be alleviated by using +longdesc the shapepatch extension to transfig which will convert xfig +longdesc output to \shapepar polygon form. +containersize 15972 +containerchecksum 407fb09d162a3f361c7182f23b010d25bf5d0d4d645780c1c9679be422a50f7181a8184ea391505d258afda822059f0d7d60ad24321adffa05f37d56d0376605 +doccontainersize 169100 +doccontainerchecksum 4db069b9e52935f0ef1463e40999b7f7893ae12b68f6bb07a105f83199b839e6ca3366b7367f6b38f79c4febfbf3a8c1f88115244f59a306870fa4617ade478a +docfiles size=59 + RELOC/doc/generic/shapepar/README.shapepar details="Package README" + RELOC/doc/generic/shapepar/proshap.py + RELOC/doc/generic/shapepar/shapepar.ltx + RELOC/doc/generic/shapepar/shapepar.pdf details="Package documentation" +runfiles size=16 + RELOC/tex/generic/shapepar/Canflagshape.def + RELOC/tex/generic/shapepar/TeXshape.def + RELOC/tex/generic/shapepar/candleshape.def + RELOC/tex/generic/shapepar/dropshape.def + RELOC/tex/generic/shapepar/shapepar.sty + RELOC/tex/generic/shapepar/triangleshapes.def +catalogue-ctan /macros/latex/contrib/shapepar +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license other-free +catalogue-topics micro-layout +catalogue-version 2.2 + +name shapes +category Package +revision 42428 +shortdesc Draw polygons, reentrant stars, and fractions in circles with MetaPost +relocated 1 +longdesc The shapes set of macros allows drawing regular polygons; their +longdesc corresponding reentrant stars in all their variations; and +longdesc fractionally filled circles (useful for visually demonstrating +longdesc the nature of fractions) in MetaPost. +containersize 1888 +containerchecksum 4e082b6b61ae9f2d02c6bdf7fe5beeb6b6384b2718c1644b945b175bc17c951ec7890fe7e81eb59faea4ae86da93eaf51467450cd61d223e734408e624bd8abb +doccontainersize 183000 +doccontainerchecksum 2c295a28748f8df117a5abf16a758b079d7481f579e1bb571fc758bae505860e1a1b82f9615259b14359eb4ea8f43be82de6ae6d761225ea76bc0da167b6786c +docfiles size=51 + RELOC/doc/metapost/shapes/CHANGES + RELOC/doc/metapost/shapes/README details="Readme" + RELOC/doc/metapost/shapes/lppl.txt + RELOC/doc/metapost/shapes/shapes.pdf details="Package documentation" +srccontainersize 4620 +srccontainerchecksum 58ccff2be6db013bb66e606ebec52b0f86b4ab3e2066d9191f18da0534d2187fe6a3944cf179b6b807025182cbd40be8c24f190c5938bf4e4264ba492a845be1 +srcfiles size=5 + RELOC/source/metapost/shapes/shapes.dtx + RELOC/source/metapost/shapes/shapes.ins +runfiles size=2 + RELOC/metapost/shapes/shapes.mp +catalogue-ctan /graphics/metapost/contrib/macros/shapes +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 1.1 + +name shdoc +category Package +revision 41991 +shortdesc Float environment to document the shell commands of a terminal session +relocated 1 +longdesc The package provides a simple, though fancy float environment +longdesc to document terminal sessions -- like command executions or +longdesc shell operations. The look and feel of the package output +longdesc imitates the look of a shell prompt. +containersize 2996 +containerchecksum e72e5d88966ab88ce2ea331f2989a949f3da30cb1066a0501fe8770f077f8aaf15803d9337ab266374364fdb7b35507c6d3cd181e1fb472f6d39b6ef94c08c1f +doccontainersize 543984 +doccontainerchecksum 38c3a7302edd2e38e3196b4d3935bc001f83fc71ed50ca8c3563ccf82e9e0729c65baf0b95db0ac637cd037cd572ba557586bc85230ff6014f63a8fe0602d9d1 +docfiles size=137 + RELOC/doc/latex/shdoc/README details="Readme" + RELOC/doc/latex/shdoc/README.txt + RELOC/doc/latex/shdoc/avrdude-log.save + RELOC/doc/latex/shdoc/shdoc.pdf details="Package documentation" + RELOC/doc/latex/shdoc/shreformat.sh +srccontainersize 16536 +srccontainerchecksum 8de0b05b8cfaf13d3f3c1192c718f5663bc5d1e5d9f67395956bc18d8f97c6acd0811660c02c3dd087f617098d0ec810a69dc31a20e157fde69431eaae4047c4 +srcfiles size=17 + RELOC/source/latex/shdoc/shdoc.dtx + RELOC/source/latex/shdoc/shdoc.ins +runfiles size=3 + RELOC/tex/latex/shdoc/shdoc.sty +catalogue-ctan /macros/latex/contrib/shdoc +catalogue-date 2016-09-04 18:33:35 +0200 +catalogue-license lppl1.3 +catalogue-topics synt-hlt float listing +catalogue-version 2.1b + +name shipunov +category Package +revision 29349 +shortdesc A collection of LaTeX packages and classes +relocated 1 +longdesc The bundle collects packages and classes, along with one +longdesc bibliography style and examples and scripts for converting TeX +longdesc files. Many of the files in the collection are designed to +longdesc support field biologists and/or Russian writers, while others +longdesc have wider application. The collection includes (among others): +longdesc altverse, a simple verse typesetting package; autolist, which +longdesc provides various list formatting facilities; biokey, which +longdesc provides a mechanism for typesetting biological identification +longdesc lists; biolist, which typesets species lists; boldline, which +longdesc typesets heavier separating lines in tables; cassete, which +longdesc lays out audio cassette inserts; classif2, which typesets +longdesc classification lists; drcaps, which provides dropped capital +longdesc macros; etiketka, a class for typesetting business-card-sized +longdesc information (including business cards); flower, for typesetting +longdesc lists of flower formulae; isyntax; numerus; punct; sltables, +longdesc which develops on the stables package, for use in a LaTeX +longdesc context; and starfn. +containersize 18960 +containerchecksum fb50254e920a844282a1daf66bbc53d3ee1675b0c67ee50e57532c141e1a41616e2f06c106996a44301c1aa44a355e5c644a221605bea06c20ce6503c0784f79 +doccontainersize 2000396 +doccontainerchecksum 27ae22f82b52043024644139a2d39a14dc559a57758fc2ff5c16a0f79366d08a9af9c05c80695c03e97eeee4ca367045777ef844acce6bae36ab35c41da66cf2 +docfiles size=624 + RELOC/doc/latex/shipunov/NEWS + RELOC/doc/latex/shipunov/README details="Readme" language="en" + RELOC/doc/latex/shipunov/altverse-ex-en.pdf + RELOC/doc/latex/shipunov/altverse-ex-en.tex + RELOC/doc/latex/shipunov/altverse-ex1-ru.pdf + RELOC/doc/latex/shipunov/altverse-ex1-ru.tex + RELOC/doc/latex/shipunov/altverse-ex2-ru.pdf + RELOC/doc/latex/shipunov/altverse-ex2-ru.tex + RELOC/doc/latex/shipunov/autolist-ex-en.pdf + RELOC/doc/latex/shipunov/autolist-ex-en.tex + RELOC/doc/latex/shipunov/autolist-ex-ru.pdf + RELOC/doc/latex/shipunov/autolist-ex-ru.tex + RELOC/doc/latex/shipunov/biokey-doc-en.pdf + RELOC/doc/latex/shipunov/biokey-doc-en.tex + RELOC/doc/latex/shipunov/biokey2html-doc-en.pdf + RELOC/doc/latex/shipunov/biokey2html-doc-en.tex + RELOC/doc/latex/shipunov/biokey2html-ex-en.html + RELOC/doc/latex/shipunov/biokey2html-ex-en1.pdf + RELOC/doc/latex/shipunov/biokey2html-ex-en2.pdf + RELOC/doc/latex/shipunov/biolist-ex-en.pdf + RELOC/doc/latex/shipunov/biolist-ex-en.tex + RELOC/doc/latex/shipunov/boldline-ex-en.pdf + RELOC/doc/latex/shipunov/boldline-ex-en.tex + RELOC/doc/latex/shipunov/cassete-ex-ru.pdf + RELOC/doc/latex/shipunov/cassete-ex-ru.tex + RELOC/doc/latex/shipunov/classif2-ex-en.pdf + RELOC/doc/latex/shipunov/classif2-ex-en.tex + RELOC/doc/latex/shipunov/drcaps-ex-en.pdf + RELOC/doc/latex/shipunov/drcaps-ex-en.tex + RELOC/doc/latex/shipunov/etiketka-ex-ru.pdf + RELOC/doc/latex/shipunov/etiketka-ex-ru.tex + RELOC/doc/latex/shipunov/etiketka-ex1-en.pdf + RELOC/doc/latex/shipunov/etiketka-ex1-en.tex + RELOC/doc/latex/shipunov/etiketka-ex2-en.pdf + RELOC/doc/latex/shipunov/etiketka-ex2-en.tex + RELOC/doc/latex/shipunov/field-form-ex1-ru.pdf + RELOC/doc/latex/shipunov/field-form-ex1-ru.tex + RELOC/doc/latex/shipunov/field-form-ex2-ru.pdf + RELOC/doc/latex/shipunov/field-form-ex2-ru.tex + RELOC/doc/latex/shipunov/flower-ex-en-x.pdf + RELOC/doc/latex/shipunov/flower-ex-en-x.tex + RELOC/doc/latex/shipunov/flower-ex-en.pdf + RELOC/doc/latex/shipunov/flower-ex-en.tex + RELOC/doc/latex/shipunov/isyntax-ex-en.tex + RELOC/doc/latex/shipunov/numerus-ex-ru.pdf + RELOC/doc/latex/shipunov/numerus-ex-ru.tex + RELOC/doc/latex/shipunov/punct-ex-en.pdf + RELOC/doc/latex/shipunov/punct-ex-en.tex + RELOC/doc/latex/shipunov/rusnat-doc-ru.pdf + RELOC/doc/latex/shipunov/rusnat-doc-ru.tex + RELOC/doc/latex/shipunov/rusnat-ex-ru.bib + RELOC/doc/latex/shipunov/rusnat-ex1-ru.pdf + RELOC/doc/latex/shipunov/rusnat-ex1-ru.tex + RELOC/doc/latex/shipunov/rusnat-ex2-ru.pdf + RELOC/doc/latex/shipunov/rusnat-ex2-ru.tex + RELOC/doc/latex/shipunov/sltables-doc-en.pdf + RELOC/doc/latex/shipunov/sltables-doc-en.tex + RELOC/doc/latex/shipunov/starfn-ex-ru.pdf + RELOC/doc/latex/shipunov/starfn-ex-ru.tex +runfiles size=29 + RELOC/bibtex/bst/shipunov/rusnat.bst + RELOC/scripts/shipunov/biokey2html.bat + RELOC/scripts/shipunov/biokey2html.sh + RELOC/scripts/shipunov/biokey2html1.pl + RELOC/scripts/shipunov/biokey2html2.pl + RELOC/scripts/shipunov/biokey2html3.pl + RELOC/tex/latex/shipunov/altverse.sty + RELOC/tex/latex/shipunov/autolist.sty + RELOC/tex/latex/shipunov/biokey.sty + RELOC/tex/latex/shipunov/biolist.sty + RELOC/tex/latex/shipunov/boldline.sty + RELOC/tex/latex/shipunov/cassete.cls + RELOC/tex/latex/shipunov/classif2.sty + RELOC/tex/latex/shipunov/drcaps.sty + RELOC/tex/latex/shipunov/etiketka.cls + RELOC/tex/latex/shipunov/flower.sty + RELOC/tex/latex/shipunov/isyntax.sty + RELOC/tex/latex/shipunov/numerus.sty + RELOC/tex/latex/shipunov/punct.sty + RELOC/tex/latex/shipunov/sltables.sty + RELOC/tex/latex/shipunov/starfn.sty +catalogue-ctan /macros/latex/contrib/shipunov +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics collection +catalogue-version 1.1 + +name shobhika +category Package +revision 50555 +shortdesc An OpenType Devanagari font designed for scholars +relocated 1 +longdesc This package provides a free, open source, Unicode compliant, +longdesc OpenType font with support for Devanagari, Latin, and Cyrillic +longdesc scripts. It is available in two weights--regular and bold. The +longdesc font is designed with over 1600 Devanagari glyphs, including +longdesc support for over 1100 conjunct consonants, as well as vedic +longdesc accents. The Latin component of the font not only supports a +longdesc wide range of characters required for Roman transliteration of +longdesc Sanskrit, but also provides a subset of regularly used +longdesc mathematical symbols for scholars working with scientific and +longdesc technical documents. The project has been launched under the +longdesc auspices of the Science and Heritage Initiative (SandHI) at IIT +longdesc Bombay, and builds upon the following two fonts for its +longdesc Devanagari and Latin components respectively: (i) Yashomudra by +longdesc Rajya Marathi Vikas Samstha, and (ii) PT Serif by ParaType. We +longdesc would like to thank both these organisations for releasing +longdesc their fonts under the SIL Open Font Licence, which has enabled +longdesc us to create Shobhika. +containersize 421140 +containerchecksum 86050c89e5939b8ffc2148f9269a48dc66f8adf396cb883a7018a1a8f123cb602f216f652f56715bebbdb7b0577a8d0cc799c847898543a4cbd22e478524b127 +doccontainersize 26936 +doccontainerchecksum f5d9d05f54876bab260043e698fd746c95b59b04ea5b2df7244b11af30bb78e5cbb6e3511bb75d775e1bc649082575192ccbcb68fcd32b9816879b5cbf3277ba +docfiles size=14 + RELOC/doc/fonts/shobhika/AUTHORS.txt + RELOC/doc/fonts/shobhika/CONTRIBUTORS.txt + RELOC/doc/fonts/shobhika/Copyright.txt + RELOC/doc/fonts/shobhika/OFL.txt + RELOC/doc/fonts/shobhika/README.md details="Readme" + RELOC/doc/fonts/shobhika/shobhika.pdf details="Font samples" + RELOC/doc/fonts/shobhika/shobhika.tex +runfiles size=176 + RELOC/fonts/opentype/public/shobhika/Shobhika-Bold.otf + RELOC/fonts/opentype/public/shobhika/Shobhika-Regular.otf +catalogue-contact-bugs https://github.com/Sandhi-IITBombay/Shobhika/issues +catalogue-contact-repository https://github.com/Sandhi-IITBombay/Shobhika +catalogue-ctan /fonts/shobhika +catalogue-date 2019-03-23 11:09:58 +0100 +catalogue-license ofl +catalogue-topics font font-cyrillic font-indic font-multilingual font-otf +catalogue-version 1.05 + +name short-math-guide +category Package +revision 46126 +shortdesc Guide to using amsmath and related packages to typeset mathematical notation with LaTeX +relocated 1 +longdesc The Short Math Guide is intended to be a concise introduction +longdesc to the use of the facilities provided by amsmath and various +longdesc other LaTeX packages for typesetting mathematical notation. +longdesc Originally created by Michael Downes of the American +longdesc Mathematical Society based only on amsmath, it has been brought +longdesc up to date with references to related packages and other useful +longdesc information. +containersize 612 +containerchecksum 6e2c131cb3a2ce85a6718a8dab1cc52fa5dab7a3db34575dcfb0a33e6a3f3ba6025eccb82a2e07a198243bd24c5070a931e591003a768c4a057f70659e442155 +doccontainersize 563828 +doccontainerchecksum 0feaf4b3cafbac8fc78855250dc39858b0b8326b803c851efd831f36476dac2f1ce86083c11476e36ac88b44a2a8d25094f9203c774044306536fcb2b261a184 +docfiles size=154 + RELOC/doc/latex/short-math-guide/README details="Readme" + RELOC/doc/latex/short-math-guide/short-math-guide.pdf details="Package documentation" + RELOC/doc/latex/short-math-guide/short-math-guide.tex +catalogue-ctan /info/short-math-guide +catalogue-date 2017-12-24 17:24:22 +0100 +catalogue-license lppl1.3c +catalogue-topics maths documentation maths-doc +catalogue-version 2.0 + +name shorttoc +category Package +revision 15878 +shortdesc Table of contents with different depths +relocated 1 +longdesc A package to create another table of contents with a different +longdesc depth, useful in large documents where a detailed table of +longdesc contents should be accompanied by a shorter one, giving only a +longdesc general overview of the main topics in the document. +containersize 1344 +containerchecksum 6e78bca7425e0b23d7520af19494d9de303b86fae7a013ef85b2d512ee86be1f478ede2293650b435ab579811e444b570995e2ae8720afc60b42c0c26d7489a6 +doccontainersize 192508 +doccontainerchecksum 03090924cdde619877b271fbd70761035b5da1f2278a3642b471a86e83559da316558a752d85716242001f40ca403a985d036750218e78d873a4920905c5a652 +docfiles size=52 + RELOC/doc/latex/shorttoc/00readme details="Package README" + RELOC/doc/latex/shorttoc/shorttoc.pdf details="Package documentation" +srccontainersize 3876 +srccontainerchecksum 2841e846e2e691864e3412c52c3cb2130462b2b94f01ab9ccfba7cad05392db2b63ce3cd3ce60896a7861969ea20fdd3b1918a69e122316149af3fddf1b9c492 +srcfiles size=4 + RELOC/source/latex/shorttoc/shorttoc.dtx + RELOC/source/latex/shorttoc/shorttoc.ins +runfiles size=1 + RELOC/tex/latex/shorttoc/shorttoc.sty +catalogue-ctan /macros/latex/contrib/shorttoc +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics toc-etc +catalogue-version 1.3 + +name show2e +category Package +revision 15878 +shortdesc Variants of \show for LaTeX2e +relocated 1 +longdesc This small package aims at making debugging (especially in an +longdesc interactive way) easier, by providing \show variants suited to +longdesc LaTeX2e commands (whether with optional arguments or robust) +longdesc and environments. The variant commands also display the +longdesc internal macros used by such commands, if any. The \showcs +longdesc variant helps with macros with exotic names. +containersize 1216 +containerchecksum 702d0913a299b68bedec15c697868a70f058957dbd3a2dd2c503bc21c8a250dc7601e6348080bb394a38108bcd2f5ee67796a888183aa181c9f88a72e7666580 +doccontainersize 61116 +doccontainerchecksum a427f7126ded4251c255fcaf2c381f7c00d0d0e55253804cbe631ac59be1bd51e7ba2ee51110af86bcee27d73698bb7baa323fef8e23a41000928b242b0be282 +docfiles size=23 + RELOC/doc/latex/show2e/README details="Readme" + RELOC/doc/latex/show2e/show2e-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/show2e/show2e.pdf details="Package documentation (English)" language="en" +srccontainersize 4340 +srccontainerchecksum 3a6bb6fbc35b5f6b1cae00d5c63c16ea13af270cbf90f57761f71076b26130272924154b8b0aac60cda41d27b75db4f1edfc82101f38b29e9641a4e02cb6c2a2 +srcfiles size=3 + RELOC/source/latex/show2e/show2e.dtx +runfiles size=1 + RELOC/tex/latex/show2e/show2e.sty +catalogue-ctan /macros/latex/contrib/show2e +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics debug-supp +catalogue-version 1.0 + +name showcharinbox +category Package +revision 29803 +shortdesc Show characters inside a box +relocated 1 +longdesc The package typesets a character inside a box, showing where +longdesc reference point is, and displaying width, height, and depth +longdesc information of the character. The output is like that on page +longdesc 63 of "The TeXBook" or page 101 of "The METAFONTbook". The +longdesc package itself is motivated by Knuth's macros in the file +longdesc manmac.tex. Users should note that using a small size for the +longdesc character inside the box does not make any sense: use a large +longdesc size. +containersize 1952 +containerchecksum 9cb18e80701d22e167b026767068e0fc0a7b6c4cdbc9014991f10ecd76d37614983591c931972584c50e0d6e35abee70ae3079f7dd8c855d33d1e4ea06693d25 +doccontainersize 72044 +doccontainerchecksum 47dc7121ed852931bdc5bc38b7fb4dfda6616b8b0ce649d90da71c7a4cb6084ddd69e07596dd4179b5654fa9a54fcedef6949ac4778b449ad14740058e237dad +docfiles size=20 + RELOC/doc/latex/showcharinbox/README details="Readme" + RELOC/doc/latex/showcharinbox/showcharinbox.pdf details="Package documentation" +srccontainersize 3668 +srccontainerchecksum 0c3ee2d6c00183936b57ba8e44d274baae8d90b8c089f6b5f3384c5928c703f22c87ac2781a8399189e028d6503c3e154499e85ac6b1ae69c7cb27eb29ee11a3 +srcfiles size=4 + RELOC/source/latex/showcharinbox/showcharinbox.dtx + RELOC/source/latex/showcharinbox/showcharinbox.ins +runfiles size=1 + RELOC/tex/latex/showcharinbox/showcharinbox.sty +catalogue-contact-bugs https://github.com/bidi-tex/showcharinbox/issues +catalogue-contact-repository https://github.com/bidi-tex/showcharinbox +catalogue-ctan /macros/latex/contrib/showcharinbox +catalogue-date 2018-11-28 21:01:12 +0100 +catalogue-license lppl1.3 +catalogue-topics font-devel +catalogue-version 0.1 + +name showdim +category Package +revision 28918 +shortdesc Variants on printing dimensions +relocated 1 +longdesc A package for LaTeX providing a number of commands for printing +longdesc the value of a TeX dimension. For example, +longdesc \tenthpt{\baselineskip} yields the current value of +longdesc \baselineskip rounded to the nearest tenth of a point. +containersize 1652 +containerchecksum 07c409f3d30def6894a787d9c2f7366abf6ee4248386e9d5b2e4f7858d692c7cd3e72871ff02c73a39a190ac36ccbaf5fe16e8e1b7b328be80a9ba041d12feb7 +doccontainersize 928 +doccontainerchecksum ba76568009149bec7484b4dbe7bede8e516a2c2ad20c77c70f0357e865c66751aa4f3d8c92c59effa1ac12e03b3b8c500c65708547ddf52458b0ce90def8fc98 +docfiles size=1 + RELOC/doc/latex/showdim/README +runfiles size=1 + RELOC/tex/latex/showdim/showdim.sty +catalogue-ctan /macros/latex/contrib/showdim/showdim.sty +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics debug-supp +catalogue-version 1.2 + +name showexpl +category Package +revision 42677 +shortdesc Typesetting LaTeX source code +relocated 1 +longdesc This package provides a way to typeset LaTeX source code and +longdesc the related result in the same document. +containersize 4072 +containerchecksum b937f9824793206b0fa55eb77f6c2688364d712fef66c63244a776c95e733d2b0e4535a2d63b23ad446e50fa52804bd99305ff20bce6d74e880d3fdfec432924 +doccontainersize 594512 +doccontainerchecksum 90fbef0962c609d4a50aac3840c703c6d421553425dc0d41a62883e012e4e2a8627a2f98f499b8fe984bfa57b597ee65e274d6e5bb9f30aba96b8b1bcafe0211 +docfiles size=150 + RELOC/doc/latex/showexpl/README details="README file" + RELOC/doc/latex/showexpl/result-picture.pdf + RELOC/doc/latex/showexpl/showexpl-test.pdf details="Package example" + RELOC/doc/latex/showexpl/showexpl-test.tex + RELOC/doc/latex/showexpl/showexpl.pdf details="Package documentation" +srccontainersize 8888 +srccontainerchecksum afac56c2591c97fdb6b48ceba1acc2b4947a0d0778f3fcd1db966d3782a89388d09599077c1684c4de69cb61ee5d1018fe085ff7b57a6a8426b1936454066228 +srcfiles size=8 + RELOC/source/latex/showexpl/showexpl.dtx + RELOC/source/latex/showexpl/showexpl.ins +runfiles size=4 + RELOC/tex/latex/showexpl/showexpl.sty +catalogue-ctan /macros/latex/contrib/showexpl +catalogue-date 2016-12-11 13:56:29 +0100 +catalogue-license lppl1.2 +catalogue-topics listing +catalogue-version 0.3o + +name showhyphens +category Package +revision 39787 +shortdesc Show all possible hyphenations in LuaLaTeX +relocated 1 +longdesc With this package, LuaLaTeX will indicate all possible +longdesc hyphenations in the printed output. +containersize 1784 +containerchecksum e3dc83cf25d0006e4ed0b2181a7cfaa81a2c7d6a7152d9202b2d9ccc876a773045abcb055709a33d69f1efd80c11edd642364e13fde7991730755d944c35afe4 +doccontainersize 86248 +doccontainerchecksum 2e87bf2fb7eb014d28e44634fa8c307bcbfa4e774c1b279a5242b3c99e569dc1eb64d5f0ba30958d0ca84c5c2bd770ce3de81af98981a3e01a2c5bc8575c9e02 +docfiles size=28 + RELOC/doc/lualatex/showhyphens/README details="Readme" + RELOC/doc/lualatex/showhyphens/showhyphens-doc.pdf details="Package documentation" + RELOC/doc/lualatex/showhyphens/showhyphens-doc.tex + RELOC/doc/lualatex/showhyphens/showhyphens-sample.pdf details="Sample output" +runfiles size=1 + RELOC/tex/lualatex/showhyphens/showhyphens.sty +catalogue-ctan /macros/luatex/latex/showhyphens +catalogue-date 2016-12-18 08:34:28 +0100 +catalogue-license mit +catalogue-topics hyph-gen luatex +catalogue-version 0.5c + +name showlabels +category Package +revision 41322 +shortdesc Show label commands in the margin +relocated 1 +longdesc This package helps you keep track of all the labels you define, +longdesc by putting the name of new labels into the margin whenever the +longdesc \label command is used. The package allows you to do the same +longdesc thing for other commands. The only one for which this is +longdesc obviously useful is the \cite command, but it's easy to do it +longdesc for others, such as the \ref or \begin commands. +containersize 3180 +containerchecksum 4d805bcd319df51219c956fce18fffe3b91aad3f468f54f5b6fd9ca15f8c24df10e1092252ba6870fd406c024deb054c60d7f64dfef7194c45b92a8a78a9da1d +doccontainersize 169108 +doccontainerchecksum 0a8cf29e85526e92df738364607e31927223458a969c117d40a0e9cf3470e5c4050107b9fe915ad2a23720a2dd4f5faa1d43d9737b9b7a6f6105de3a36e9888b +docfiles size=53 + RELOC/doc/latex/showlabels/README details="Readme" + RELOC/doc/latex/showlabels/VERSION + RELOC/doc/latex/showlabels/lppl.txt + RELOC/doc/latex/showlabels/showlabels.html details="Package documentation (HTML)" + RELOC/doc/latex/showlabels/showlabels.pdf details="Package documentation (PDF)" + RELOC/doc/latex/showlabels/style.css +srccontainersize 12656 +srccontainerchecksum eb0dd894327bd6f4591a3a57c52af10e73ae07f7d933ff3310012d46b09d1572adac0eb6a8a22ff03ced5f7832a017b58ef809d5fd914103fb569b42cfb2abfa +srcfiles size=12 + RELOC/source/latex/showlabels/showlabels.drv + RELOC/source/latex/showlabels/showlabels.dtx + RELOC/source/latex/showlabels/showlabels.ins +runfiles size=3 + RELOC/tex/latex/showlabels/showlabels.sty +catalogue-ctan /macros/latex/contrib/showlabels +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl1.3 +catalogue-topics label-ref bibtex-supp macro-supp +catalogue-version 1.8 + +name showtags +category Package +revision 20336 +shortdesc Print the tags of bibliography entries +relocated 1 +longdesc Prints the tag right-aligned on each line of the bibliography. +containersize 2052 +containerchecksum b70dc03f22838dab65631d39d8690897d4a5c71b5451775e85cdc3ff600d63afc29bd28e49aa64a5a2467143f4a84d62f5a2a9af4a8365e0a867d6a46e9de93b +doccontainersize 211912 +doccontainerchecksum 3e1efebe8edd469e66b18aea9d9a3614b753a43ac61f5a31b57fccc1b45047aaaee8f80d156932671f9ae7457fc627732f1f72c65fca42946280c1182d8960de +docfiles size=53 + RELOC/doc/latex/showtags/showtags-doc.pdf details="Package documentation" + RELOC/doc/latex/showtags/showtags-doc.tex +runfiles size=2 + RELOC/tex/latex/showtags/showtags.sty +catalogue-ctan /macros/latex/contrib/showtags +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics bibtex-supp +catalogue-version 1.05 + +name shuffle +category Package +revision 15878 +shortdesc A symbol for the shuffle product +relocated 1 +longdesc The bundle provides a LaTeX package and a font (as Metafont +longdesc source) for the shuffle product which is used in some part of +longdesc mathematics and physics. +containersize 3644 +containerchecksum 62b456ae961d34908fc25cc085bfa04d39e70f2641d65dc8e0eda419ec96a328798cc258162ebe065285f3ee1088e6076525ccbd8c0f7c0800024f371bdee65d +doccontainersize 279692 +doccontainerchecksum 1b6427fa0cf98651a219f1cf6f15a400c09ea924bf0dcea7d48ce0665a5f1828ad64513f87089ea48d02d489d8020c90c661bac60c069601be437c77364813d4 +docfiles size=74 + RELOC/doc/latex/shuffle/README details="Readme" + RELOC/doc/latex/shuffle/shuffle.pdf details="Package documentation" +srccontainersize 3264 +srccontainerchecksum 250729a95e91eef9c1f9b5364aa3b0a1f03a75805845c773f82b26c3782764d6f866f33391aed2f0cbb167d016b06593c015e6fb2aa9b7ababf33f215fb92647 +srcfiles size=3 + RELOC/source/latex/shuffle/shuffle.dtx + RELOC/source/latex/shuffle/shuffle.ins +runfiles size=9 + RELOC/fonts/source/public/shuffle/shuffle.mf + RELOC/fonts/source/public/shuffle/shuffle10.mf + RELOC/fonts/source/public/shuffle/shuffle7.mf + RELOC/fonts/tfm/public/shuffle/shuffle10.tfm + RELOC/fonts/tfm/public/shuffle/shuffle7.tfm + RELOC/tex/latex/shuffle/Ushuffle.fd + RELOC/tex/latex/shuffle/shuffle.sty +catalogue-ctan /fonts/shuffle +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics maths physics +catalogue-version 1.0 + +name sidecap +category Package +revision 15878 +shortdesc Typeset captions sideways +relocated 1 +longdesc Defines environments called SCfigure and SCtable (analogous to +longdesc figure and table) to typeset captions sideways. Options include +longdesc outercaption, innercaption, leftcaption and rightcaption. +containersize 3448 +containerchecksum c0b775c16ea9acc7de952c6d08d49f57ac4517d5a78e822255176ee1f570c17d584b34821a255ec10e7fbb9334fc7904147bc4d613ad4db9553a3917f737b924 +doccontainersize 151364 +doccontainerchecksum 5bee3d448386a2bd508dcae495c6fb83806542680db7c5fe8cf35ea09a955df01e5c01fa64c28b64f0bb9a3dc0411fc68a835e1b0ae9d46c1387f544538d26de +docfiles size=47 + RELOC/doc/latex/sidecap/README details="Readme" + RELOC/doc/latex/sidecap/sc-test-common.tex + RELOC/doc/latex/sidecap/sc-test1.tex + RELOC/doc/latex/sidecap/sc-test2.tex + RELOC/doc/latex/sidecap/sc-test3.tex + RELOC/doc/latex/sidecap/sc-test4.tex + RELOC/doc/latex/sidecap/sc-test5.tex + RELOC/doc/latex/sidecap/sc-test6.tex + RELOC/doc/latex/sidecap/sidecap.pdf details="Package documentation" +srccontainersize 8216 +srccontainerchecksum b69fcf81ba9d05c20c64b7d71369ff25a0cc8185c914935cc986635ccf1ca9ce709cbe2f12f5e671a5b946f121950b3f6c6edb9d28e736959c5ccdf7fdbea405 +srcfiles size=9 + RELOC/source/latex/sidecap/Makefile + RELOC/source/latex/sidecap/sidecap.dtx + RELOC/source/latex/sidecap/sidecap.ins +runfiles size=3 + RELOC/tex/latex/sidecap/sidecap.sty +catalogue-ctan /macros/latex/contrib/sidecap +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics caption rotation +catalogue-version 1.6f + +name sidenotes +category Package +revision 40658 +shortdesc Typeset notes containing rich content, in the margin +relocated 1 +longdesc The package allows typesetting of texts with notes, figures, +longdesc citations, captions and tables in the margin. This is common +longdesc (for example) in science text books. +containersize 4476 +containerchecksum 4e8fc132974ce90f3e08bb3b2770c88faba2dfd7a9f63bbf0b6b900811fbdbb2c625015e8f181968918a5965a32da8ffccf2e5798f44ad4327a6bbbda785c708 +doccontainersize 295172 +doccontainerchecksum 944b4d77b6923328732038d273aa74b14689e5177b4d609c81735e189556cea7f66ce81c89c41e5ca0d6b9871e412e21d836024a5290f31a3fc419b7af4bb34e +docfiles size=76 + RELOC/doc/latex/sidenotes/README details="Readme" + RELOC/doc/latex/sidenotes/caesar_example.pdf + RELOC/doc/latex/sidenotes/caesar_example.tex + RELOC/doc/latex/sidenotes/sidenotes.pdf details="Package documentation" +srccontainersize 6004 +srccontainerchecksum e18b26b37882cb7b5ab6fd1f994b2a0bd38e9872ba3795c4a5b8269f1b0099e199407200b84bcc6c51eb0f882993a835aa94cc1cc409c5020dd5387280203d35 +srcfiles size=6 + RELOC/source/latex/sidenotes/sidenotes.dtx + RELOC/source/latex/sidenotes/sidenotes.ins +runfiles size=4 + RELOC/tex/latex/sidenotes/caesar_book.cls + RELOC/tex/latex/sidenotes/sidenotes.sty +catalogue-also footmisc +catalogue-ctan /macros/latex/contrib/sidenotes +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics marginal +catalogue-version 1.00 + +name sides +category Package +revision 15878 +shortdesc A LaTeX class for typesetting stage plays +relocated 1 +longdesc This is a LaTeX class for typesetting stage plays, based on the +longdesc plari class written by Antti-Juhani Kaijanaho in 1998. It has +longdesc been updated and several formatting changes have been made to +longdesc it--most noticibly there are no longer orphans. +containersize 3100 +containerchecksum 739e26e0c0b77d75e91f2a3a18996aa55ee1163a2bee6d489db4ba3b0864b51572c55ec53441946f16cb87694425d09e613abd2223fba2941fea4be137341b10 +doccontainersize 46528 +doccontainerchecksum 653a8472a278bb1d33d9f86559398b62e32b521c6ce8dd977dbbc4f44183e37b95378ea4b29356948735c42925f9ed25153cc6a9009341ff01d80befe2bcddb3 +docfiles size=15 + RELOC/doc/latex/sides/README details="Readme" + RELOC/doc/latex/sides/sides-sample.pdf details="A (distressing) sample play" + RELOC/doc/latex/sides/sides-sample.tex +runfiles size=2 + RELOC/tex/latex/sides/sides.cls +catalogue-also dramatist +catalogue-ctan /macros/latex/contrib/sides +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics drama-script + +name signchart +category Package +revision 39707 +shortdesc Create beautifully typeset sign charts +relocated 1 +longdesc The package allows users to easily typeset beautiful looking +longdesc sign charts directly into their (La)TeX document. +containersize 1756 +containerchecksum d379bb1a9fecc06f4e48419d0f4f49e50b6b276e15e64992ee7e154154eefc24e71c060066de3bf9e97da6c8e62b78208f3a01918150cd2ef51231b5abaee44e +doccontainersize 308744 +doccontainerchecksum 7b140f890f3342ba6b2d25385dcae6925d8e445a862af703578f455b73c69cb71f4b9b5a933ac8b1a16178874f71c80d124c352b5aff4d7bf3dad6f1aa5a3874 +docfiles size=77 + RELOC/doc/latex/signchart/README.txt details="Readme" + RELOC/doc/latex/signchart/signchart.pdf details="Package documentation" +srccontainersize 3856 +srccontainerchecksum c2f141c1e0a279d5a76cddf97d5dcf24e35cb219d0a0114d5d2f91a6b24bde3b900b168225cc6afa4c623c9011bd373388799a0448ff588ffefadf7109a24af6 +srcfiles size=4 + RELOC/source/latex/signchart/signchart.dtx + RELOC/source/latex/signchart/signchart.ins +runfiles size=1 + RELOC/tex/latex/signchart/signchart.sty +catalogue-ctan /macros/latex/contrib/signchart +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 1.01 + +name silence +category Package +revision 27028 +shortdesc Selective filtering of error messages and warnings +relocated 1 +longdesc The package allows the user to filter out unwanted warnings and +longdesc error messages issued by LaTeX, packages and classes, so they +longdesc won't pop out when there's nothing one can do about them. +longdesc Filtering goes from the very broad ("avoid all messages by such +longdesc and such") to the fine-grained ("avoid messages that begin +longdesc with..."). Messages may be saved to an external file for later +longdesc reference. +containersize 3620 +containerchecksum 95f4f095e0f70dcd11482be4f6d52c5ea7a06ad820c08386ad956b9bb9ad593410e59fe9bb5904c3242594d466c495e7793718d4cb707ed3edd1d17ac3c1c1a8 +doccontainersize 466940 +doccontainerchecksum 988df943eaf9337145d081de38ac22389bbffd3e94408b1cbb5de7605cccb47e2fa837813d4647c339d978b5b9b3e82e6d9859b840e89c09c95dd9572db0601b +docfiles size=116 + RELOC/doc/latex/silence/README details="Readme" + RELOC/doc/latex/silence/silence-doc.pdf details="Package documentation" +srccontainersize 17724 +srccontainerchecksum 7a628ca9efcc34863f064783a1e65e7bfee2a735a2457413d5b938e50b823fdfc6137f56041885e2c4910119ac756a5d6eecff91d9e99eb2bb85d2cd73f273b3 +srcfiles size=18 + RELOC/source/latex/silence/silence-doc.dtx + RELOC/source/latex/silence/silence.ins +runfiles size=5 + RELOC/tex/latex/silence/silence.sty +catalogue-ctan /macros/latex/contrib/silence +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics compilation +catalogue-version 1.5b + +name simple-resume-cv +category Package +revision 43057 +shortdesc Template for a simple resume or curriculum vitae (CV), in XeLaTeX +relocated 1 +longdesc Template for a simple resume or curriculum vitae (CV), in +longdesc XeLaTeX. Simple template that can be further customized or +longdesc extended, with numerous examples. +containersize 3432 +containerchecksum 996341ce711f6f9a68ccd7e0b315da98eed8f4737d44b8dbd9881c2a76c8ef2d04b1c956333b0e33997d57e0b62bcb2485029283bb4f4711c2f8e38c177755d7 +doccontainersize 96196 +doccontainerchecksum a380b2a498bde69cef1ba2401e16886d35edb40e3338963bcbd6e862da3e54f547e7900a18f668515b3ff178462a4ea0d41bc228b6b6e7ea8b0693e295231e92 +docfiles size=29 + RELOC/doc/xelatex/simple-resume-cv/CV.pdf details="Package documentation" + RELOC/doc/xelatex/simple-resume-cv/CV.tex + RELOC/doc/xelatex/simple-resume-cv/LICENSE + RELOC/doc/xelatex/simple-resume-cv/README.md details="Readme" +runfiles size=3 + RELOC/tex/xelatex/simple-resume-cv/simpleresumecv.cls +catalogue-ctan /macros/xetex/latex/simple-resume-cv +catalogue-date 2017-01-28 05:55:17 +0100 +catalogue-license pd +catalogue-topics cv class + +name simple-thesis-dissertation +category Package +revision 43058 +shortdesc Template for a simple thesis or dissertation (Ph.D. or master's degree) or technical report, in XeLaTeX +relocated 1 +longdesc Template for a simple thesis or dissertation (Ph.D. or master's +longdesc degree) or technical report, in XeLaTeX. Simple template that +longdesc can be further customized or extended, with numerous examples. +longdesc Consistent style for figures, tables, mathematical theorems, +longdesc definitions, lemmas, etc. +containersize 5208 +containerchecksum 201826e649acbc8dde933da3d141408ef3e4f3bc5daffbd520a19885af612f17de2618fe7e8c78a419b6e5e4eeeaa36a2fcb3db6f610df2189e01e0b4a66e9e3 +doccontainersize 198560 +doccontainerchecksum 8dd82147b1096f728fd52a56c39309d0f421abdd972a1297b88b516e0a5ecf8387a3accc508047bcd3996ab81d778dbdd221934e2bb4c96e1ef2a59cd0fc6995 +docfiles size=70 + RELOC/doc/xelatex/simple-thesis-dissertation/Figures/Figure-SampleVectorGraphic.odg + RELOC/doc/xelatex/simple-thesis-dissertation/Figures/Figure-SampleVectorGraphic.pdf + RELOC/doc/xelatex/simple-thesis-dissertation/LICENSE + RELOC/doc/xelatex/simple-thesis-dissertation/README.md details="Readme" + RELOC/doc/xelatex/simple-thesis-dissertation/Thesis-BackMatter.tex + RELOC/doc/xelatex/simple-thesis-dissertation/Thesis-Chapter-ChapAbbr.tex + RELOC/doc/xelatex/simple-thesis-dissertation/Thesis-Chapter-Intro.tex + RELOC/doc/xelatex/simple-thesis-dissertation/Thesis-Chapter-Summary.tex + RELOC/doc/xelatex/simple-thesis-dissertation/Thesis-FrontMatter.tex + RELOC/doc/xelatex/simple-thesis-dissertation/Thesis.bib + RELOC/doc/xelatex/simple-thesis-dissertation/Thesis.pdf details="Package documentation" + RELOC/doc/xelatex/simple-thesis-dissertation/Thesis.tex +runfiles size=5 + RELOC/tex/xelatex/simple-thesis-dissertation/simplethesisdissertation.cls +catalogue-ctan /macros/xetex/latex/simple-thesis-dissertation +catalogue-date 2017-01-28 05:55:17 +0100 +catalogue-license pd +catalogue-topics dissertation class + +name simplecd +category Package +revision 29260 +shortdesc Simple CD, DVD covers for printing +relocated 1 +longdesc The package provides printable cut-outs for various CD, DVD and +longdesc other disc holders. The name of the package comes from its +longdesc implementation and ease of use; it was designed just for text +longdesc content, but since the text is placed in a \parbox in a tabular +longdesc environment cell, a rather wide range of things may be placed. +containersize 6232 +containerchecksum 5fe4024ce7991242fd60b8a87c88605f68ef9595895857b56981b35dabe96c97f9af684fc5ca9c3089ba96791e076512ccd549ce70071d215eaed4e731145b30 +doccontainersize 915604 +doccontainerchecksum 5cd208f8869dc989542bf028c216fbddec5bfb285ffc18c25cfea928035946e903cc2b61de630125d8e8deea772f7f20cab552505538eaa5d3aecaef8192abec +docfiles size=249 + RELOC/doc/latex/simplecd/README details="Readme" + RELOC/doc/latex/simplecd/examples.pdf + RELOC/doc/latex/simplecd/examples.tex + RELOC/doc/latex/simplecd/simplecd.pdf details="Package documentation" +srccontainersize 17260 +srccontainerchecksum 9b26b5fb78bfeb1115af219615c7bcf2ee85c5878ff18807444642e103abccda517c3d701bdfd655f5f9e3d1dc0374c316db96d5d7b0ab9addad74b8d7ecb5f3 +srcfiles size=25 + RELOC/source/latex/simplecd/simplecd.dtx + RELOC/source/latex/simplecd/simplecd.ins +runfiles size=9 + RELOC/tex/latex/simplecd/simplecd.sty +catalogue-also cd cdcover +catalogue-ctan /macros/latex/contrib/simplecd +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.2 +catalogue-topics covers covers +catalogue-version 1.4 + +name simplecv +category Package +revision 35537 +shortdesc A simple class for writing curricula vitae +relocated 1 +longdesc A derivative of the cv class available to lyx users (renamed to +longdesc avoid the existing cv package). +containersize 2112 +containerchecksum c67e9200925ac86386efaab35a8edbf20f0fda700c00c3b0350eadbe62f39fc02f502493a73acc768a4727ad1162561d7baf38193d57d1fefb4c8083ebe38c35 +doccontainersize 292656 +doccontainerchecksum dbf087e0659f11b4dc0cf40a6826cc45f48b8155d9148262877a0d51f5766888780698d792f055666766f029ac6f5384b41c0fc41e1c84548582e665eccc0f20 +docfiles size=74 + RELOC/doc/latex/simplecv/README details="Readme" + RELOC/doc/latex/simplecv/simplecv.pdf details="Package documentation" + RELOC/doc/latex/simplecv/testcv.pdf details="Sample of use" + RELOC/doc/latex/simplecv/testcv.tex +srccontainersize 5844 +srccontainerchecksum cc8f96dbb9c99cf9567171e65276d18bc8faf4fa9980ca1fb60fb5fe1ab250d462c22af29105501d72ac7ff0421104be78f097bf6afe8b88dfe48932ac19fd70 +srcfiles size=5 + RELOC/source/latex/simplecv/simplecv.dtx + RELOC/source/latex/simplecv/simplecv.ins +runfiles size=2 + RELOC/tex/latex/simplecv/simplecv.cls +catalogue-ctan /macros/latex/contrib/simplecv +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics cv lyx class +catalogue-version 1.6a + +name simpleinvoice +category Package +revision 45673 +shortdesc Easy typesetting of invoices +relocated 1 +longdesc This package lets you easily typeset professional-looking +longdesc invoices. The user specifies the content of the invoice by +longdesc different \setPROPERTY commands, and an invoice is generated +longdesc automatically with the \makeinvoice command. +containersize 2420 +containerchecksum 8d3d905dd9dc418503bde7cd51c90ff6fc6f688502ff871040f9eb6bf96b6c1ef999d3dd98b16c8739ce9518a22a8e99a23b5cc66c437504b3837c30ea19cca1 +doccontainersize 224844 +doccontainerchecksum 81e5ff2bf76f2b35549feb9b6336bd04b9273d4e6b951ee327101d4e5a5d3c429276735238b63c3b2ee03466b477ca2d7990a68615c1d0eee4f12a37d6b65472 +docfiles size=100 + RELOC/doc/latex/simpleinvoice/LICENSE + RELOC/doc/latex/simpleinvoice/README.md details="Readme" + RELOC/doc/latex/simpleinvoice/doc/examples/english.pdf + RELOC/doc/latex/simpleinvoice/doc/examples/english.tex + RELOC/doc/latex/simpleinvoice/doc/examples/norwegian.pdf + RELOC/doc/latex/simpleinvoice/doc/examples/norwegian.tex + RELOC/doc/latex/simpleinvoice/doc/simpleinvoice.pdf details="Package documentation" + RELOC/doc/latex/simpleinvoice/doc/simpleinvoice.tex +runfiles size=2 + RELOC/tex/latex/simpleinvoice/simpleinvoice.sty +catalogue-contact-repository https://github.com/mathialo/simpleinvoice/ +catalogue-ctan /macros/latex/contrib/simpleinvoice +catalogue-date 2017-11-04 06:13:45 +0100 +catalogue-license gpl3 +catalogue-topics invoice + +name simplekv +category Package +revision 44987 +shortdesc A simple key/value system for TeX and LaTeX +relocated 1 +longdesc The package provides a simple key/value system for TeX and +longdesc LaTeX. +containersize 5204 +containerchecksum a67e5e977a4a14b32f3dcf08ffdf4b481a3926e9a5a7259b19aff07c4e311b223edacfd5bef8f9ecac4742dc94e7c65400cb9d883677f96d3d7d1d6256efe5be +doccontainersize 334420 +doccontainerchecksum 6a0e0a7200bbfad56ad6729cb375fd11e105cfc89ba93fe592d14755a88d819b69dc3a383f9fe3c59f8a9076450ca5fd75085101d7ceff4a62e2d738b0907f15 +docfiles size=85 + RELOC/doc/generic/simplekv/README details="Readme" + RELOC/doc/generic/simplekv/simplekv-fr.pdf details="Package documentation" language="fr" + RELOC/doc/generic/simplekv/simplekv-fr.tex +runfiles size=5 + RELOC/tex/generic/simplekv/simplekv.sty + RELOC/tex/generic/simplekv/simplekv.tex +catalogue-ctan /macros/generic/simplekv +catalogue-date 2017-08-13 05:06:52 +0200 +catalogue-license lppl1.3c +catalogue-topics keyval +catalogue-version 0.1 + +name simpler-wick +category Package +revision 39074 +shortdesc Simpler Wick contractions +relocated 1 +longdesc In every quantum field theory course, there will be a chapter +longdesc about Wick's theorem and how it can be used to convert a very +longdesc large product of many creation and annihilation operators into +longdesc something more tractable and normal ordered. The contractions +longdesc are denoted with a square bracket over the operators which are +longdesc being contracted, which used to be rather annoying to typeset +longdesc in LaTeX as the only other package available was simplewick, +longdesc which is rather unwieldy. This package provides a simpler +longdesc syntax for Wick contractions. +containersize 2612 +containerchecksum 2bead248c2380e19fb19012ba2cf7a41fdd113f48a372011c27ebac0820236500c5e49e5235e2c52fcc5a0f9c79f61cbf76a5d6de86322bc40382f5499216783 +doccontainersize 58000 +doccontainerchecksum d8a45e06707d3e6c39e36d83020f0a2d4654cab508d91e47022320e67454d08958cfd6d3872c5ae40539f29b03080915e136746452afb9f2e74fe8be2ec20bc1 +docfiles size=27 + RELOC/doc/latex/simpler-wick/LICENSE + RELOC/doc/latex/simpler-wick/README.md details="Readme" + RELOC/doc/latex/simpler-wick/simpler-wick.pdf details="Package documentation" + RELOC/doc/latex/simpler-wick/simpler-wick.tex +runfiles size=2 + RELOC/tex/latex/simpler-wick/simpler-wick.sty +catalogue-also simplewick +catalogue-contact-repository https://jp-ellis.github.io/projects/simpler-wick/ +catalogue-ctan /macros/latex/contrib/simpler-wick +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics physics +catalogue-version 1.0.0 + +name simplewick +category Package +revision 15878 +shortdesc Simple Wick contractions +relocated 1 +longdesc The package provides a simple means of drawing Wick +longdesc contractions above and below expressions. +containersize 2348 +containerchecksum 86aab23f8d19e9fa5a6251f8f725ada87b66a71a3024253d8b56f3edcc20f26695b2194b710f691ff9ed0713c993a8652447674ec84d4084c3354791244a6f10 +doccontainersize 71624 +doccontainerchecksum bf0c3b8724ed8cc41635f45001fa04f655a7b37792c5b0e632578b066649c3bde1f894c3ab739ea2bb49f6e4f65e63fd7cd7d515ea15b53ab5894778a7918d13 +docfiles size=22 + RELOC/doc/latex/simplewick/README + RELOC/doc/latex/simplewick/simplewick.pdf details="Package documentation" +srccontainersize 4412 +srccontainerchecksum 45d26e7044fe0928eb8e572f0333bee64c008c2e4d1536a0145939ce0f3392961e72bd7fc70c35b2607b2a241249d13e44e433b373b57898193185a808f128d4 +srcfiles size=5 + RELOC/source/latex/simplewick/simplewick.dtx + RELOC/source/latex/simplewick/simplewick.ins +runfiles size=2 + RELOC/tex/latex/simplewick/simplewick.sty +catalogue-also simpler-wick +catalogue-ctan /macros/latex/contrib/simplewick +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics physics +catalogue-version 1.2a + +name simplified-latex +category Package +revision 20620 +shortdesc A Simplified Introduction to LaTeX +relocated 1 +longdesc An accessible introduction for the beginner. +containersize 380 +containerchecksum 31313aede3900675d183bfcff0045df5fa7719b982df1822823c15d645c7ef64c0b46e0f1690d98d30b2a6057e082684f23cb61a490fb2217887d0f20231ce73 +doccontainersize 942836 +doccontainerchecksum f5bf92ed89cfc83f306cd4b2599446a11b73f73a0b82afbd0f441e26d837e6f436913bd2df18585c5e215fa0504bfee3d5d4f5ef4da8925161f85c70c14045e6 +docfiles size=261 + RELOC/doc/latex/simplified-latex/README details="Readme" + RELOC/doc/latex/simplified-latex/simplified-intro.pdf details="The document itself" + RELOC/doc/latex/simplified-latex/source.zip +catalogue-ctan /info/simplified-latex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics tut-latex + +name simurgh +category Package +revision 31719 +shortdesc Typeset Parsi in LuaLaTeX +relocated 1 +longdesc The package provides an automatic and unified interface for +longdesc Parsi typesetting in LaTeX, using the LuaTeX engine. The +longdesc project to produce this system is dedicated to Ferdowsi The +longdesc Great. +containersize 246476 +containerchecksum 11b77f831aff6796e41ccf2024496ae1c9d4b9b5f4c029daf33e0eb4b4fd3d1e5c78137b945e3c9fe7a16380365fb88165a46e614dc3078657ce025a55f90d44 +doccontainersize 136908 +doccontainerchecksum 30ddd7a9bbf3f568ad4876336228842651d8f95eb5f21df81ac524b99a7a695e68e0469f79867668dc3b9913cf223b72a22f6a0d0c818233c081ba90ac67de1a +docfiles size=58 + RELOC/doc/lualatex/simurgh/ChangeLog + RELOC/doc/lualatex/simurgh/README.doc + RELOC/doc/lualatex/simurgh/simurgh-doc.pdf details="Package documentation" + RELOC/doc/lualatex/simurgh/simurgh-doc.tex + RELOC/doc/lualatex/simurgh/simurgh-logo.pdf + RELOC/doc/lualatex/simurgh/simurgh-logo.tex +runfiles size=1054 + RELOC/tex/lualatex/simurgh/simurgh-abjad.sty + RELOC/tex/lualatex/simurgh/simurgh-adadi.sty + RELOC/tex/lualatex/simurgh/simurgh-algorithm.sty + RELOC/tex/lualatex/simurgh/simurgh-algorithmic.sty + RELOC/tex/lualatex/simurgh/simurgh-amsart.sty + RELOC/tex/lualatex/simurgh/simurgh-amsbook.sty + RELOC/tex/lualatex/simurgh/simurgh-amsmath.sty + RELOC/tex/lualatex/simurgh/simurgh-amstext.sty + RELOC/tex/lualatex/simurgh/simurgh-amsthm.sty + RELOC/tex/lualatex/simurgh/simurgh-array.sty + RELOC/tex/lualatex/simurgh/simurgh-article.sty + RELOC/tex/lualatex/simurgh/simurgh-artikel1.sty + RELOC/tex/lualatex/simurgh/simurgh-artikel2.sty + RELOC/tex/lualatex/simurgh/simurgh-artikel3.sty + RELOC/tex/lualatex/simurgh/simurgh-arydshln.sty + RELOC/tex/lualatex/simurgh/simurgh-backref.sty + RELOC/tex/lualatex/simurgh/simurgh-bidi.sty + RELOC/tex/lualatex/simurgh/simurgh-boek.sty + RELOC/tex/lualatex/simurgh/simurgh-boek3.sty + RELOC/tex/lualatex/simurgh/simurgh-book.sty + RELOC/tex/lualatex/simurgh/simurgh-bookest.sty + RELOC/tex/lualatex/simurgh/simurgh-caption3.sty + RELOC/tex/lualatex/simurgh/simurgh-char-def.lua + RELOC/tex/lualatex/simurgh/simurgh-char-ini.lua + RELOC/tex/lualatex/simurgh/simurgh-chkeng.sty + RELOC/tex/lualatex/simurgh/simurgh-clss.sty + RELOC/tex/lualatex/simurgh/simurgh-counters.sty + RELOC/tex/lualatex/simurgh/simurgh-cptns.sty + RELOC/tex/lualatex/simurgh/simurgh-doc.cls + RELOC/tex/lualatex/simurgh/simurgh-empheq.sty + RELOC/tex/lualatex/simurgh/simurgh-extarticle.sty + RELOC/tex/lualatex/simurgh/simurgh-extbook.sty + RELOC/tex/lualatex/simurgh/simurgh-extletter.sty + RELOC/tex/lualatex/simurgh/simurgh-extreport.sty + RELOC/tex/lualatex/simurgh/simurgh-fleqn.sty + RELOC/tex/lualatex/simurgh/simurgh-fonts.sty + RELOC/tex/lualatex/simurgh/simurgh-footnotes.sty + RELOC/tex/lualatex/simurgh/simurgh-ftnxtra.sty + RELOC/tex/lualatex/simurgh/simurgh-glossaries.sty + RELOC/tex/lualatex/simurgh/simurgh-harfi.sty + RELOC/tex/lualatex/simurgh/simurgh-jalalical.sty + RELOC/tex/lualatex/simurgh/simurgh-leqno.sty + RELOC/tex/lualatex/simurgh/simurgh-letter.sty + RELOC/tex/lualatex/simurgh/simurgh-lettrine.sty + RELOC/tex/lualatex/simurgh/simurgh-loader.sty + RELOC/tex/lualatex/simurgh/simurgh-ltx.sty + RELOC/tex/lualatex/simurgh/simurgh-mathdigitspec.sty + RELOC/tex/lualatex/simurgh/simurgh-memoir.sty + RELOC/tex/lualatex/simurgh/simurgh-minitoc.sty + RELOC/tex/lualatex/simurgh/simurgh-natbib.sty + RELOC/tex/lualatex/simurgh/simurgh-pkgs.sty + RELOC/tex/lualatex/simurgh/simurgh-poem.sty + RELOC/tex/lualatex/simurgh/simurgh-rapport1.sty + RELOC/tex/lualatex/simurgh/simurgh-rapport3.sty + RELOC/tex/lualatex/simurgh/simurgh-refrep.sty + RELOC/tex/lualatex/simurgh/simurgh-report.sty + RELOC/tex/lualatex/simurgh/simurgh-scrartcl.sty + RELOC/tex/lualatex/simurgh/simurgh-scrbook.sty + RELOC/tex/lualatex/simurgh/simurgh-scrlettr.sty + RELOC/tex/lualatex/simurgh/simurgh-scrreprt.sty + RELOC/tex/lualatex/simurgh/simurgh-shellescape.sty + RELOC/tex/lualatex/simurgh/simurgh-tags.sty + RELOC/tex/lualatex/simurgh/simurgh-tartibi.sty + RELOC/tex/lualatex/simurgh/simurgh-tools.sty + RELOC/tex/lualatex/simurgh/simurgh-unibidi-core.lua + RELOC/tex/lualatex/simurgh/simurgh-unibidi-ini.lua + RELOC/tex/lualatex/simurgh/simurgh-unibidi-math.lua + RELOC/tex/lualatex/simurgh/simurgh-unibidi.lua + RELOC/tex/lualatex/simurgh/simurgh-unibidi.sty + RELOC/tex/lualatex/simurgh/simurgh.sty +catalogue-contact-bugs https://github.com/bidi-tex/simurgh/issues +catalogue-contact-repository https://github.com/bidi-tex/simurgh +catalogue-ctan /macros/luatex/latex/simurgh +catalogue-date 2018-11-28 21:04:36 +0100 +catalogue-license gpl2 +catalogue-topics persian luatex +catalogue-version 0.01b + +name sitem +category Package +revision 22136 +shortdesc Save the optional argument of \item +relocated 1 +longdesc The package modifies \item commands to save the optional +longdesc argument in a box. +containersize 1004 +containerchecksum 64a34fcf0769ed4ab4b201facc056b890a89009e1847e9ca65fb405e1c1144225e8fff59c1a906341521bba5d39e3338900a9a35aff5bb716a5aff5e6aa4d49a +doccontainersize 73456 +doccontainerchecksum af74d7b4f4dfce45e543494344fa32f4f4d55435034cc1b23b24b333f89d54d0b8c9d0a1247561bb7182d3841fb04b7b3531be847a6fed3db212497ef2ccec3c +docfiles size=20 + RELOC/doc/latex/sitem/sitem.pdf details="Package documentation" +srccontainersize 1428 +srccontainerchecksum 9aa058eac9367ea31804b5c2983873f16d1c74f598fb0967f43257a963a38aeb7d578ddd596dbee87d942d87ece9188c6fe0f5e8734751325121195d9d348769 +srcfiles size=2 + RELOC/source/latex/sitem/sitem.dtx + RELOC/source/latex/sitem/sitem.ins +runfiles size=1 + RELOC/tex/latex/sitem/sitem.sty +catalogue-ctan /macros/latex/contrib/sitem +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics list +catalogue-version 1.0 + +name siunitx +category Package +revision 47746 +shortdesc A comprehensive (SI) units package +relocated 1 +longdesc Typesetting values with units requires care to ensure that the +longdesc combined mathematical meaning of the value plus unit +longdesc combination is clear. In particular, the SI units system lays +longdesc down a consistent set of units with rules on how they are to be +longdesc used. However, different countries and publishers have +longdesc differing conventions on the exact appearance of numbers (and +longdesc units). A number of LaTeX packages have been developed to +longdesc provide consistent application of the various rules: SIunits, +longdesc sistyle, unitsdef and units are the leading examples. The +longdesc numprint package provides a large number of number-related +longdesc functions, while dcolumn and rccol provide tools for +longdesc typesetting tabular numbers. The siunitx package takes the best +longdesc from the existing packages, and adds new features and a +longdesc consistent interface. A number of new ideas have been +longdesc incorporated, to fill gaps in the existing provision. The +longdesc package also provides backward-compatibility with SIunits, +longdesc sistyle, unitsdef and units. The aim is to have one package to +longdesc handle all of the possible unit-related needs of LaTeX users. +longdesc The package relies on LaTeX 3 support from the l3kernel and +longdesc l3packages bundles. +containersize 35128 +containerchecksum 1d8f6dcc74c851c1e59907fd041a7921605dcf524393bae21a494f6a40fa6a4a073daedfc0570cd992c101f5960632a89387805fac51ac003e8f163aec1ce6f2 +doccontainersize 600780 +doccontainerchecksum b491f4ed0eb201597565c1318f152b8c8bb9e15ba0f2d6b2d6f24d6e44607d3e81c1ca74428e513cae76de23795bc80e6f5f81c5af7216c45f007214c3630dd5 +docfiles size=151 + RELOC/doc/latex/siunitx/README.md details="Readme" + RELOC/doc/latex/siunitx/siunitx.pdf details="Package documentation" +srccontainersize 104140 +srccontainerchecksum ff7295254574cb5b4f0c7d332b7141eb535f75cb7bed551dfa66c5aa52c15df03d216d35797ebe97f3f253f9db1ce48bd592d23ae6799d9ef7325cb1671e8b66 +srcfiles size=152 + RELOC/source/latex/siunitx/siunitx.dtx +runfiles size=79 + RELOC/tex/latex/siunitx/siunitx-abbreviations.cfg + RELOC/tex/latex/siunitx/siunitx-binary.cfg + RELOC/tex/latex/siunitx/siunitx-version-1.cfg + RELOC/tex/latex/siunitx/siunitx.sty +catalogue-contact-bugs https://github.com/josephwright/siunitx/issues +catalogue-contact-home https://www.texdev.net +catalogue-contact-repository https://github.com/josephwright/siunitx +catalogue-ctan /macros/latex/contrib/siunitx +catalogue-date 2018-05-17 22:18:13 +0200 +catalogue-license lppl1.3c +catalogue-topics units scientific-docs +catalogue-version 2.7s + +name skak +category Package +revision 46259 +shortdesc Fonts and macros for typesetting chess games +relocated 1 +longdesc This package provides macros and fonts in Metafont format which +longdesc can be used to typeset chess games using PGN, and to show +longdesc diagrams of the current board in a document. The package builds +longdesc on work by Piet Tutelaers -- the main novelty is the use of PGN +longdesc for input instead of the more cumbersome coordinate notation +longdesc (g1f3 becomes the more readable Nf3 in PGN). An Adobe Type 1 +longdesc implementation of skak's fonts is available as package skaknew; +longdesc an alternative chess notational scheme is available in package +longdesc texmate, and a general mechanism for selecting chess fonts is +longdesc provided in chessfss. +containersize 20744 +containerchecksum 7bf473f1f35fa05c1cc7cccec212b035619382ce850c287a6b0734cd52182046df35133bd919a335532db9fd5327d2038ce1c3e98342055d93a5dc3b16028697 +doccontainersize 200108 +doccontainerchecksum 443d98538fb732bfe9f3df26e05e46be54641006df255d3084697301cfa93f48cb8d307a9a5b58f25742b96065658f446b52968c3bd8ce14fdc864f32cb920e4 +docfiles size=90 + RELOC/doc/latex/skak/ChangeLog.md + RELOC/doc/latex/skak/LICENSE + RELOC/doc/latex/skak/README + RELOC/doc/latex/skak/THANKS + RELOC/doc/latex/skak/WC-2004-S-00007.tex + RELOC/doc/latex/skak/andreas_wilm_1.tex + RELOC/doc/latex/skak/angletst.tex + RELOC/doc/latex/skak/debug_storegame.tex + RELOC/doc/latex/skak/demo-symbols.tex + RELOC/doc/latex/skak/fen_with_black.tex + RELOC/doc/latex/skak/font.tex + RELOC/doc/latex/skak/font2.tex + RELOC/doc/latex/skak/hightest.tex + RELOC/doc/latex/skak/informator.pdf + RELOC/doc/latex/skak/ingo-bug1.tex + RELOC/doc/latex/skak/longmove_king_bug.tex + RELOC/doc/latex/skak/longmoves.tex + RELOC/doc/latex/skak/promotion_problem_Ulrike.tex + RELOC/doc/latex/skak/refman.pdf + RELOC/doc/latex/skak/region.tex + RELOC/doc/latex/skak/show.tex + RELOC/doc/latex/skak/skakdoc.pdf + RELOC/doc/latex/skak/special.map + RELOC/doc/latex/skak/test1.tex + RELOC/doc/latex/skak/test2.tex + RELOC/doc/latex/skak/test_capture.tex + RELOC/doc/latex/skak/tuggame.pdf +runfiles size=38 + RELOC/fonts/source/public/skak/skak10.mf + RELOC/fonts/source/public/skak/skak15.mf + RELOC/fonts/source/public/skak/skak20.mf + RELOC/fonts/source/public/skak/skak30.mf + RELOC/fonts/source/public/skak/skakbase.mf + RELOC/fonts/source/public/skak/skakbrikker.mf + RELOC/fonts/source/public/skak/skakf10.mf + RELOC/fonts/source/public/skak/skakf10b.mf + RELOC/fonts/source/public/skak/skakinf.mf + RELOC/fonts/tfm/public/skak/skak10.tfm + RELOC/fonts/tfm/public/skak/skak15.tfm + RELOC/fonts/tfm/public/skak/skak20.tfm + RELOC/fonts/tfm/public/skak/skak30.tfm + RELOC/fonts/tfm/public/skak/skakf10.tfm + RELOC/fonts/tfm/public/skak/skakf10b.tfm + RELOC/tex/latex/skak/skak.fd + RELOC/tex/latex/skak/skak.sty +catalogue-ctan /fonts/chess/skak +catalogue-date 2018-01-09 06:30:58 +0100 +catalogue-license lppl +catalogue-topics font font-mf font-chess games +catalogue-version 1.5.3 + +name skaknew +category Package +revision 20031 +shortdesc The skak chess fonts redone in Adobe Type 1 +relocated 1 +longdesc This package offers Adobe Type 1 versions of the fonts provided +longdesc as Metafont source by the skak bundle. +execute addMap SkakNew.map +containersize 160064 +containerchecksum 879107f0bb96441082ccc4afb560e4fd0f625e7fb7cab84ebbd642af1ef180bc27540eb9ff26c689039dd6abb11e9b88bcea30d5b1e75b40f0e3499c981ae6e2 +doccontainersize 316212 +doccontainerchecksum 8c26115910f2e9a9ae28e1b6c0933db3308c9f59eb151bb37b23de3f0f790b9726aef895def0826e00928b75753d925c5c9db0a6b91ebf7035fad5a4e473a315 +docfiles size=90 + RELOC/doc/fonts/skaknew/README details="Readme" + RELOC/doc/fonts/skaknew/SkakNew.pdf details="Package documentation" + RELOC/doc/fonts/skaknew/SkakNew.tex + RELOC/doc/fonts/skaknew/fonttables.pdf details="Font tables" + RELOC/doc/fonts/skaknew/install.vtex +runfiles size=72 + RELOC/fonts/afm/public/skaknew/AlphaDia.afm + RELOC/fonts/afm/public/skaknew/SkakNew-Diagram.afm + RELOC/fonts/afm/public/skaknew/SkakNew-DiagramT.afm + RELOC/fonts/afm/public/skaknew/SkakNew-Figurine.afm + RELOC/fonts/afm/public/skaknew/SkakNew-FigurineBold.afm + RELOC/fonts/map/dvips/skaknew/SkakNew.map + RELOC/fonts/opentype/public/skaknew/AlphaDia.otf + RELOC/fonts/opentype/public/skaknew/SkakNew-Diagram.otf + RELOC/fonts/opentype/public/skaknew/SkakNew-DiagramT.otf + RELOC/fonts/opentype/public/skaknew/SkakNew-Figurine.otf + RELOC/fonts/opentype/public/skaknew/SkakNew-FigurineBold.otf + RELOC/fonts/tfm/public/skaknew/AlphaDia.tfm + RELOC/fonts/tfm/public/skaknew/SkakNew-Diagram.tfm + RELOC/fonts/tfm/public/skaknew/SkakNew-DiagramT.tfm + RELOC/fonts/tfm/public/skaknew/SkakNew-Figurine.tfm + RELOC/fonts/tfm/public/skaknew/SkakNew-FigurineBold.tfm + RELOC/fonts/type1/public/skaknew/AlphaDia.inf + RELOC/fonts/type1/public/skaknew/AlphaDia.pfb + RELOC/fonts/type1/public/skaknew/AlphaDia.pfm + RELOC/fonts/type1/public/skaknew/SkakNew-Diagram.inf + RELOC/fonts/type1/public/skaknew/SkakNew-Diagram.pfb + RELOC/fonts/type1/public/skaknew/SkakNew-Diagram.pfm + RELOC/fonts/type1/public/skaknew/SkakNew-DiagramT.inf + RELOC/fonts/type1/public/skaknew/SkakNew-DiagramT.pfb + RELOC/fonts/type1/public/skaknew/SkakNew-DiagramT.pfm + RELOC/fonts/type1/public/skaknew/SkakNew-Figurine.inf + RELOC/fonts/type1/public/skaknew/SkakNew-Figurine.pfb + RELOC/fonts/type1/public/skaknew/SkakNew-Figurine.pfm + RELOC/fonts/type1/public/skaknew/SkakNew-FigurineBold.inf + RELOC/fonts/type1/public/skaknew/SkakNew-FigurineBold.pfb + RELOC/fonts/type1/public/skaknew/SkakNew-FigurineBold.pfm +catalogue-contact-home http://www.art-satz.de/portfolio/schriften.html +catalogue-ctan /fonts/chess/skaknew +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl +catalogue-topics font font-type1 font-chess games + +name skb +category Package +revision 22781 +shortdesc Tools for a repository of long-living documents +relocated 1 +longdesc The package provides macros that help to build a document +longdesc repository for long living documents. It focuses on structure +longdesc and re-use of text, code, figures etc. The basic concept is +longdesc first to separate structure from content (i.e., text about a +longdesc topic from the structure it is presented by) and then +longdesc separating the content from the actual published document, thus +longdesc enabling easy re-use of text blocks in different publications +longdesc (i.e., text about a protocol in a short article about this +longdesc protocol as well as in a book about many protocols); all +longdesc without constantly copying or changing text. As a side effect, +longdesc using the document classes provided, it hides a lot of LaTeX +longdesc from someone who just wants to write articles and books. +containersize 6468 +containerchecksum 5c2e0e7310898e258505cf438ad91650fbcef6b720e9d05b9ddd241ceca3eea0ccc3a71b6ac38acee58d8e205b8352ad7abbdc277596ac74f6a5cf0ca805a0d7 +doccontainersize 1398720 +doccontainerchecksum 29aa9629f84a481cee1871b92b49e1a34683092759864f1e612ef4f7b3862a9ddf567b2d20fae3f99d5946de43055de2dae8ad326000e344383c854eb9ff4f20 +docfiles size=558 + RELOC/doc/latex/skb/HISTORY.TXT + RELOC/doc/latex/skb/LICENSE.TXT + RELOC/doc/latex/skb/MANIFEST.TXT + RELOC/doc/latex/skb/README details="Readme" + RELOC/doc/latex/skb/TODO.TXT + RELOC/doc/latex/skb/makefile + RELOC/doc/latex/skb/skb.pdf details="Implementation details" + RELOC/doc/latex/skb/user-guide.pdf details="User guide" + RELOC/doc/latex/skb/user-guide/database/acronyms.tex + RELOC/doc/latex/skb/user-guide/database/bibliography.tex + RELOC/doc/latex/skb/user-guide/database/bibtex-styles.bbx + RELOC/doc/latex/skb/user-guide/database/bibtex/article.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/book.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/collection.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/conference.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/inbook.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/incollection.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/inproceedings.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/manual.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/misc.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/online.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/proceedings.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/report.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/standard.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/techreport.bib + RELOC/doc/latex/skb/user-guide/database/bibtex/unpublished.bib + RELOC/doc/latex/skb/user-guide/examples/example-toc.tex + RELOC/doc/latex/skb/user-guide/examples/example.tex + RELOC/doc/latex/skb/user-guide/examples/figure-classic.tex + RELOC/doc/latex/skb/user-guide/examples/listings.tex + RELOC/doc/latex/skb/user-guide/examples/optional-text.tex + RELOC/doc/latex/skb/user-guide/examples/paths.tex + RELOC/doc/latex/skb/user-guide/examples/rebuild.tex + RELOC/doc/latex/skb/user-guide/examples/skbconfig.tex + RELOC/doc/latex/skb/user-guide/examples/skbem.tex + RELOC/doc/latex/skb/user-guide/examples/skbfigure.tex + RELOC/doc/latex/skb/user-guide/examples/skbheading.tex + RELOC/doc/latex/skb/user-guide/examples/skbinput.tex + RELOC/doc/latex/skb/user-guide/examples/skbslide.tex + RELOC/doc/latex/skb/user-guide/examples/skbslidecite.tex + RELOC/doc/latex/skb/user-guide/examples/used-options.tex + RELOC/doc/latex/skb/user-guide/figures/dirtree/baf.tex + RELOC/doc/latex/skb/user-guide/figures/dirtree/complete.tex + RELOC/doc/latex/skb/user-guide/figures/dirtree/exa-doc.tex + RELOC/doc/latex/skb/user-guide/figures/dirtree/publish-art.tex + RELOC/doc/latex/skb/user-guide/figures/dirtree/publish.tex + RELOC/doc/latex/skb/user-guide/figures/dirtree/repository.tex + RELOC/doc/latex/skb/user-guide/figures/dirtree/skb-distribution.tex + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-0.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-1.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-10.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-11.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-12.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-13.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-14.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-2.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-3.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-4.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-5.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-6.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-7.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-8.pdf + RELOC/doc/latex/skb/user-guide/figures/multiexample/dpe-9.pdf + RELOC/doc/latex/skb/user-guide/repository/abstract.tex + RELOC/doc/latex/skb/user-guide/repository/applicability.tex + RELOC/doc/latex/skb/user-guide/repository/exa-doc/documentation.tex + RELOC/doc/latex/skb/user-guide/repository/example-article.tex + RELOC/doc/latex/skb/user-guide/repository/getting-started/config-cmd.tex + RELOC/doc/latex/skb/user-guide/repository/getting-started/config-opt-table.tex + RELOC/doc/latex/skb/user-guide/repository/getting-started/config-opt.tex + RELOC/doc/latex/skb/user-guide/repository/getting-started/config.tex + RELOC/doc/latex/skb/user-guide/repository/getting-started/distribution.tex + RELOC/doc/latex/skb/user-guide/repository/getting-started/folders.tex + RELOC/doc/latex/skb/user-guide/repository/getting-started/installation.tex + RELOC/doc/latex/skb/user-guide/repository/getting-started/rebuild.tex + RELOC/doc/latex/skb/user-guide/repository/getting-started/start.tex + RELOC/doc/latex/skb/user-guide/repository/getting-started/used-options.tex + RELOC/doc/latex/skb/user-guide/repository/intent.tex + RELOC/doc/latex/skb/user-guide/repository/manual/acr-bib.tex + RELOC/doc/latex/skb/user-guide/repository/manual/figures.tex + RELOC/doc/latex/skb/user-guide/repository/manual/figures2.tex + RELOC/doc/latex/skb/user-guide/repository/manual/headings-and-files.tex + RELOC/doc/latex/skb/user-guide/repository/manual/listing.tex + RELOC/doc/latex/skb/user-guide/repository/manual/lists.tex + RELOC/doc/latex/skb/user-guide/repository/manual/manual.tex + RELOC/doc/latex/skb/user-guide/repository/manual/optional-text.tex + RELOC/doc/latex/skb/user-guide/repository/manual/path-commands.tex + RELOC/doc/latex/skb/user-guide/repository/manual/pdfinfo.tex + RELOC/doc/latex/skb/user-guide/repository/manual/skbem.tex + RELOC/doc/latex/skb/user-guide/repository/manual/skbfigure-opt-table.tex + RELOC/doc/latex/skb/user-guide/repository/manual/skbinput-opt-table.tex + RELOC/doc/latex/skb/user-guide/repository/manual/slides.tex + RELOC/doc/latex/skb/user-guide/repository/manual/slides2.tex + RELOC/doc/latex/skb/user-guide/repository/separate/separate-cs.tex + RELOC/doc/latex/skb/user-guide/repository/separate/separate-final.tex + RELOC/doc/latex/skb/user-guide/repository/separate/separate-parts-baf.tex + RELOC/doc/latex/skb/user-guide/repository/separate/separate-parts-pc.tex + RELOC/doc/latex/skb/user-guide/repository/separate/separate-parts-pc2.tex + RELOC/doc/latex/skb/user-guide/repository/separate/separate-parts.tex + RELOC/doc/latex/skb/user-guide/repository/separate/separate.tex + RELOC/doc/latex/skb/user-guide/repository/story/long.tex + RELOC/doc/latex/skb/user-guide/repository/story/long2.tex + RELOC/doc/latex/skb/user-guide/repository/story/short.tex + RELOC/doc/latex/skb/user-guide/repository/title.tex + RELOC/doc/latex/skb/user-guide/slides/about.tex + RELOC/doc/latex/skb/user-guide/slides/applicability.tex + RELOC/doc/latex/skb/user-guide/slides/example-art-tex1.tex + RELOC/doc/latex/skb/user-guide/slides/example-art-tex2.tex + RELOC/doc/latex/skb/user-guide/slides/example-art-tex3.tex + RELOC/doc/latex/skb/user-guide/slides/example-art-toc.tex + RELOC/doc/latex/skb/user-guide/slides/intent.tex + RELOC/doc/latex/skb/user-guide/slides/manual-acrbib.tex + RELOC/doc/latex/skb/user-guide/slides/manual-figures-exa.tex + RELOC/doc/latex/skb/user-guide/slides/manual-figures-exna.tex + RELOC/doc/latex/skb/user-guide/slides/manual-figures-opt.tex + RELOC/doc/latex/skb/user-guide/slides/manual-figures.tex + RELOC/doc/latex/skb/user-guide/slides/manual-haf.tex + RELOC/doc/latex/skb/user-guide/slides/manual-listings.tex + RELOC/doc/latex/skb/user-guide/slides/manual-lists.tex + RELOC/doc/latex/skb/user-guide/slides/manual-optional-text.tex + RELOC/doc/latex/skb/user-guide/slides/manual-paths.tex + RELOC/doc/latex/skb/user-guide/slides/manual-pdfinfo.tex + RELOC/doc/latex/skb/user-guide/slides/manual-skbem.tex + RELOC/doc/latex/skb/user-guide/slides/manual-slides1.tex + RELOC/doc/latex/skb/user-guide/slides/manual-slides2.tex + RELOC/doc/latex/skb/user-guide/slides/separate-cs.tex + RELOC/doc/latex/skb/user-guide/slides/separate-parts-baf.tex + RELOC/doc/latex/skb/user-guide/slides/separate-parts-pc1.tex + RELOC/doc/latex/skb/user-guide/slides/separate-parts-pc2.tex + RELOC/doc/latex/skb/user-guide/slides/separate.tex + RELOC/doc/latex/skb/user-guide/slides/start-config-cmd.tex + RELOC/doc/latex/skb/user-guide/slides/start-config-opt.tex + RELOC/doc/latex/skb/user-guide/slides/start-distribution.tex + RELOC/doc/latex/skb/user-guide/slides/start-folders.tex + RELOC/doc/latex/skb/user-guide/slides/start-installation.tex + RELOC/doc/latex/skb/user-guide/slides/start-rebuild1.tex + RELOC/doc/latex/skb/user-guide/slides/start-rebuild2.tex + RELOC/doc/latex/skb/user-guide/slides/start-used-options.tex + RELOC/doc/latex/skb/user-guide/slides/story-long1.tex + RELOC/doc/latex/skb/user-guide/slides/story-long2.tex + RELOC/doc/latex/skb/user-guide/slides/story-short.tex + RELOC/doc/latex/skb/user-guide/ug-slides-anim.tex + RELOC/doc/latex/skb/user-guide/ug-slides-load.tex + RELOC/doc/latex/skb/user-guide/ug-slides-noanim.tex + RELOC/doc/latex/skb/user-guide/ug-slides-notes.tex + RELOC/doc/latex/skb/user-guide/user-guide-load.tex + RELOC/doc/latex/skb/user-guide/user-guide.tex +srccontainersize 21144 +srccontainerchecksum fd0f3a1d4cf3fa189ef0fc8bbbb35586a39aabbc733fba3aa9d3fc48d920c416316a4a19d88583ea42b1a4c38baf4ec75cf0eec78b68a5434f3ac4578d56ea9f +srcfiles size=30 + RELOC/source/latex/skb/skb.dtx + RELOC/source/latex/skb/skb.ins +runfiles size=12 + RELOC/tex/latex/skb/skb.cfg + RELOC/tex/latex/skb/skb.sty + RELOC/tex/latex/skb/skbarticle.cls + RELOC/tex/latex/skb/skbbeamer.cls + RELOC/tex/latex/skb/skbbook.cls + RELOC/tex/latex/skb/skblncsbeamer.cls + RELOC/tex/latex/skb/skblncsppt.cls + RELOC/tex/latex/skb/skbmoderncv.cls +catalogue-contact-repository http://sourceforge.net/projects/latex-skb +catalogue-ctan /macros/latex/contrib/skb +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics archival +catalogue-version 0.52 + +name skdoc +category Package +revision 47526 +shortdesc Documentation and extraction for packages and document classes +relocated 1 +longdesc The class provides the functionality and implementation of +longdesc packages and document classes. It is loosely based on the ydoc +longdesc and ltxdoc classes, but has a number of incompatible +longdesc differences. The class defines a MacroCode environment which +longdesc offers an alternative to the usual docstrip method of +longdesc installing packages. It has the ability to generate both +longdesc documentation and code in a single run of a single file. +containersize 9736 +containerchecksum 5fcb40b4f6bf91a1f0757f51a498b361f154f6410dd15adeca0c5579ce8d9d12aac732a8c7b740df599b5562801ffdf74e0ebf156603e75e9dbeb0c21246c3cd +doccontainersize 271028 +doccontainerchecksum ed5bdb7318ebf7d5b736b15ce5061eb8f476b98ebc671264849e1964d7d6c04a6cabe568e524c1b325ffa55930a86cbf9694898e9b35333266db72b2218b1e89 +docfiles size=68 + RELOC/doc/latex/skdoc/README details="Readme" + RELOC/doc/latex/skdoc/skdoc.pdf details="Package documentation" +srccontainersize 26964 +srccontainerchecksum 776807c0844d09eb1611fae9ca7ae48de97706c163f9731937d2d03090c9ad011976ec277ee76ce974c96833a24544ed87ed8976ffb71b8331e943c1e219dabb +srcfiles size=31 + RELOC/source/latex/skdoc/skdoc.dtx +runfiles size=13 + RELOC/tex/latex/skdoc/skdoc.cls +catalogue-ctan /macros/latex/contrib/skdoc +catalogue-date 2019-01-12 10:17:10 +0100 +catalogue-license lppl1.3 +catalogue-topics doc-supp class +catalogue-version 1.5a + +name skeycommand +category Package +revision 24652 +shortdesc Create commands using parameters and keyval in parallel +relocated 1 +longdesc The package provides tools for defining LaTeX commands and +longdesc environments using combinations of parameters and keys. All the +longdesc facilities of the ltxkeys and skeyval packages are available to +longdesc the user of skeycommand. +containersize 4876 +containerchecksum 0aabcf0a47ffbdaa2f88bfb970f844df36cfa30f2e5ff02cbd9dba2179fd871c2ae1f979a99e70f3f7f2ab2589b7ecbaa6f999352559100bfaefcbe7f6ec16a8 +doccontainersize 328064 +doccontainerchecksum 26f7e544e9b1b75fe7131d409c3083c39914424c66051e46535de5415383d82e48a3e2c1d35e34e5bac624a034f2e14623c8cd5b6844707b09fd531daaf7c544 +docfiles size=100 + RELOC/doc/latex/skeycommand/README details="Readme" + RELOC/doc/latex/skeycommand/skeycommand-guide.cfg + RELOC/doc/latex/skeycommand/skeycommand-guide.pdf details="Package documentation" + RELOC/doc/latex/skeycommand/skeycommand-guide.tex +runfiles size=5 + RELOC/tex/latex/skeycommand/skeycommand.sty +catalogue-also skeyval +catalogue-ctan /macros/latex/contrib/skeycommand +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics keyval macro-supp +catalogue-version 0.4 + +name skeyval +category Package +revision 30560 +shortdesc Key-value parsing combining features of xkeyval and pgfkeys +relocated 1 +longdesc The package integrates the features of xkeyval and of pgfkeys +longdesc by introducing a new type of handlers. Style keys, links, +longdesc changing key callbacks and values on the fly, and other +longdesc features of pgfkeys are introduced in a new context. +containersize 99184 +containerchecksum 151a705f5e62dc80e8a470a7ce39cf197933452a35b296e70790d7ec0f6667f24acbc0c643db6c402ca1e9b9735f34be388efca5a5e5951725e8f00bb8d2833f +doccontainersize 328384 +doccontainerchecksum 97bf20706cd14e0b479221c6ed96e56754aca13d7b72f1d7bedec6117d159caca2a4e9a931d3d8311f593a538985d8e4e5bb9d5a76a653d72aa8d094a66e9e92 +docfiles size=114 + RELOC/doc/latex/skeyval/README details="Readme" + RELOC/doc/latex/skeyval/skeyval-pokayoke1.pdf + RELOC/doc/latex/skeyval/skeyval-pokayoke1.tex + RELOC/doc/latex/skeyval/skeyval-pokayoke2.pdf + RELOC/doc/latex/skeyval/skeyval-pokayoke2.tex + RELOC/doc/latex/skeyval/skeyval-view-pokayoke1.aux + RELOC/doc/latex/skeyval/skeyval-view-pokayoke1.log + RELOC/doc/latex/skeyval/skeyval-view-pokayoke1.pdf + RELOC/doc/latex/skeyval/skeyval-view-pokayoke1.tex +runfiles size=148 + RELOC/tex/latex/skeyval/skeyval-bc.sty + RELOC/tex/latex/skeyval/skeyval-core.tex + RELOC/tex/latex/skeyval/skeyval-for.tex + RELOC/tex/latex/skeyval/skeyval-ltxcmds.tex + RELOC/tex/latex/skeyval/skeyval-ltxpatch.sty + RELOC/tex/latex/skeyval/skeyval-pstkey.sty + RELOC/tex/latex/skeyval/skeyval-pstkey.tex + RELOC/tex/latex/skeyval/skeyval-testclass.cls + RELOC/tex/latex/skeyval/skeyval-testpkg.sty + RELOC/tex/latex/skeyval/skeyval-view.sty + RELOC/tex/latex/skeyval/skeyval.sty +catalogue-also skeycommand +catalogue-ctan /macros/latex/contrib/skeyval +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics keyval +catalogue-version 1.3 + +name skmath +category Package +revision 49550 +shortdesc Extensions to the maths command repertoir +relocated 1 +longdesc The package provides a selection of new maths commands and +longdesc improved re-definitions of existing commands. +containersize 3572 +containerchecksum a8c015b5a7d2031bc98d65a5d7a52262546180aa39106bb9266206541812530f4bb8351f042836353c66436084d1619ff24be8c0646a5991afc5b0c70429563a +doccontainersize 284048 +doccontainerchecksum 15b034f42b766af418b3278d4089e0c833f7d7027cf199118798216217ba811af49dbacdab735fd6aed7ff8d7115628f698ab4e23eb15ca625f6d92bdce0730e +docfiles size=71 + RELOC/doc/latex/skmath/README details="Readme" + RELOC/doc/latex/skmath/skmath.pdf details="Package documentation" +srccontainersize 8476 +srccontainerchecksum f57a6198337d1e85c85039cc1f0886adfee6022f3c16e1e91d2a537c18e9ddeac95079f683cb8a936ac1b2a758e227310eece2b30fe05451baab5a3b9ed1f816 +srcfiles size=9 + RELOC/source/latex/skmath/skmath.tex +runfiles size=4 + RELOC/tex/latex/skmath/skmath.sty +catalogue-ctan /macros/latex/contrib/skmath +catalogue-date 2018-12-29 23:02:23 +0100 +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 0.5 + +name skrapport +category Package +revision 49540 +shortdesc 'Simple' class for reports, etc. +relocated 1 +longdesc The class is intended for simple documents (e.g., reports +longdesc handed in as coursework and the like). The class is small and +longdesc straightforward; its design was inspired by that of the PracTeX +longdesc journal style. +containersize 12732 +containerchecksum d72270c0df7a79250ae1c0519e4f984f1ef3f74dd40952d3567ce1c965a90cf41231a985c39f84862fc37e1f098b05a1297d4b186c338a5355e0be98c3f24611 +doccontainersize 267616 +doccontainerchecksum d3162fd57a2c926f52f42149f74687b175ffb32e1185f0e1b3e047599aa9199ba952628fe518e6870267b61132650446fadc6307177659d84a2c4ab91c590acd +docfiles size=67 + RELOC/doc/latex/skrapport/README details="Readme" + RELOC/doc/latex/skrapport/skrapport.pdf details="Package documentation" +srccontainersize 31204 +srccontainerchecksum 915059538931683ccb030b3ace50d71b4d569408e0aa887092173a7ae095ad12f797411ecdcba185427867b79985252bdfd5b6d2a77a478c10a2b423c40df314 +srcfiles size=40 + RELOC/source/latex/skrapport/skrapport.tex +runfiles size=26 + RELOC/tex/latex/skrapport/skrapport-colortheme-cruelwater.sty + RELOC/tex/latex/skrapport/skrapport-colortheme-default.sty + RELOC/tex/latex/skrapport/skrapport-colortheme-skdoc.sty + RELOC/tex/latex/skrapport/skrapport-colortheme-unscathed.sty + RELOC/tex/latex/skrapport/skrapport-colortheme-violet.sty + RELOC/tex/latex/skrapport/skrapport-size-common.sty + RELOC/tex/latex/skrapport/skrapport-size10pt.clo + RELOC/tex/latex/skrapport/skrapport-size11pt.clo + RELOC/tex/latex/skrapport/skrapport-size12pt.clo + RELOC/tex/latex/skrapport/skrapport.cls +catalogue-contact-bugs https://github.com/urdh/skrapport/issues +catalogue-contact-repository https://github.com/urdh/skrapport +catalogue-ctan /macros/latex/contrib/skrapport +catalogue-date 2018-12-29 22:01:02 +0100 +catalogue-license lppl1.3 +catalogue-topics class +catalogue-version 0.12i + +name skull +category Package +revision 25608 +shortdesc A font to draw a skull +relocated 1 +longdesc The font (defined in Metafont) defines a single character, a +longdesc black solid skull. A package is supplied to make this character +longdesc available as a symbol in maths mode. +containersize 1680 +containerchecksum e466d663c3be27399739fa722dbafcf868c4ecde589a094ee6eaaee2daaaec99b5c704ac37b25cd50a1093686a15cfeb3b1a572e60b96f0e5813e5346dbab292 +srccontainersize 2272 +srccontainerchecksum a8fb69f9ce2ed9893caed45c5bcdf8d11576160cafa112c1407fd273aa31093b1313c0c058302f2babe1a20406f3c38373121ded324ff8222b4f9c27a0b28fb6 +srcfiles size=2 + RELOC/source/fonts/skull/skull.dtx + RELOC/source/fonts/skull/skull.ins +runfiles size=2 + RELOC/fonts/source/public/skull/skull.mf + RELOC/tex/latex/skull/skull.sty +catalogue-ctan /fonts/skull +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics font font-mf font-novelty +catalogue-version 0.1 + +name slantsc +category Package +revision 25007 +shortdesc Access different-shaped small-caps fonts +relocated 1 +longdesc This package enables the use of small capitals in different +longdesc font shapes, e.g., slanted or bold slanted for all fonts that +longdesc provide appropriate font shapes. (Note that a separate .fd file +longdesc is needed to define font shapes such as 'scsl' or 'scit'.) +containersize 1296 +containerchecksum 45d92cb8f2a5aeaecc9945ce2778f2fa330b703ea0efb2deb4407ac17d30ad3a3e1ae7966474af28a7816dee18254422fe7c72c50f11f47cd52a54522f05fec3 +doccontainersize 386948 +doccontainerchecksum 8f856a45e3088d2047157bc87d60a16b6c6e481334f4ee81a23e4cb8ecf53d1113849877ffb24ee4516dfba228c10c9974b0b0a148020d64e3069ed7a2d12750 +docfiles size=99 + RELOC/doc/latex/slantsc/ChangeLog + RELOC/doc/latex/slantsc/Makefile + RELOC/doc/latex/slantsc/README details="Readme" + RELOC/doc/latex/slantsc/getversion.tex + RELOC/doc/latex/slantsc/slantsc.pdf details="Package documentation" + RELOC/doc/latex/slantsc/testslantsc.tex +srccontainersize 4648 +srccontainerchecksum 7e2af37c07b8ccae052c84ade3ad49fb4d93fb5fd97a5387b1ea8af523167f21d48e3961df58c7a93dfbd07f09ed1140839e48a57b3149dfa713e5945081f200 +srcfiles size=6 + RELOC/source/latex/slantsc/slantsc.dtx + RELOC/source/latex/slantsc/slantsc.ins +runfiles size=1 + RELOC/tex/latex/slantsc/slantsc.sty +catalogue-ctan /macros/latex/contrib/slantsc +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl +catalogue-topics font-supp +catalogue-version 2.11 + +name slideshow +category Package +revision 15878 +shortdesc Generate slideshow with MetaPost +relocated 1 +longdesc The package provides a means of creating presentations in +longdesc MetaPost, without intervention from other utilities (except a +longdesc distiller). Such an arrangement has its advantages (though +longdesc there are disadvantages too). +containersize 8544 +containerchecksum f7bd44c9720512297f15ff6cee1c49ca52c29fc206f739e6aa447e778fed00a64e282aeab9d42b215cac69a64ab39f3919433bd0640d30d55ac540e2dde07967 +doccontainersize 105052 +doccontainerchecksum d271c1f9e7b9c45694463982da8c9542fea326d7e191a705e92f5b423e054c3f926768d2209844ddabbe75eb610d4a5cb05ffd53098cdca9e35328c865027eff +docfiles size=42 + RELOC/doc/metapost/slideshow/slideshow.txt + RELOC/doc/metapost/slideshow/sshowex.pdf + RELOC/doc/metapost/slideshow/sshowex2.pdf + RELOC/doc/metapost/slideshow/sshowex3.pdf + RELOC/doc/metapost/slideshow/sshowintro.pdf details="Presentation about package" +runfiles size=10 + RELOC/metapost/slideshow/pathalong.mp + RELOC/metapost/slideshow/slideshow.mp + RELOC/metapost/slideshow/sshowex.mp + RELOC/metapost/slideshow/sshowex2.mp + RELOC/metapost/slideshow/sshowex3.mp + RELOC/metapost/slideshow/sshowintro.mp +catalogue-ctan /graphics/metapost/contrib/macros/slideshow +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics presentation +catalogue-version 1.0 + +name smalltableof +category Package +revision 20333 +shortdesc Create listoffigures etc. in a single chapter +relocated 1 +longdesc The package allows you to create a list of figures and list of +longdesc tables in a chapter named 'List' that contains separate +longdesc sections for each list of figures, tables, etc. +containersize 996 +containerchecksum 50a4878bddc55e1b05ede3e770aad31f6c56b81f9e6d0a536ece25729e3c5a9a1720068534f26a9c224c101f0e0d833478f1a5c3b12759d7c3ffce027bbd5edd +doccontainersize 177112 +doccontainerchecksum ca62aa29f6ad62f149dd9c5077ee2b14ed69d8a750f33d3de274ae275e5d1528482e58140a78b0917cf02a879206194e24a6beecd33060544abb50dd6fc564a6 +docfiles size=45 + RELOC/doc/latex/smalltableof/README details="Readme (French)" language="fr" + RELOC/doc/latex/smalltableof/smalltableof-doc-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/smalltableof/smalltableof-doc-fr.tex +runfiles size=1 + RELOC/tex/latex/smalltableof/smalltableof.sty +catalogue-ctan /macros/latex/contrib/smalltableof +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics toc-etc + +name smartdiagram +category Package +revision 42781 +shortdesc Generate diagrams from lists +relocated 1 +longdesc The package will create 'smart' diagrams from lists of items, +longdesc for simple documents and for presentations. +containersize 6524 +containerchecksum 322589506d1cdaa30dd9f97b419347fba0d617a3ad35fd15fe91611b10382c595598ce1111a287f5b1aef617595cba77b53490da7744b23942f072f522a68ef1 +doccontainersize 258768 +doccontainerchecksum 1cc7abaed3dcdb11fca675bea8e458f1879bda4ac72278566a9247ec2cb0016f10467e3120e9ef688c5674af05559bff39862d4b3292596f0dafd5e13672a14f +docfiles size=67 + RELOC/doc/latex/smartdiagram/README details="Readme" + RELOC/doc/latex/smartdiagram/smartdiagram.pdf details="Package documentation" +srccontainersize 16864 +srccontainerchecksum a1141f82e32b444951bac9fa0fd119e59cc2389577cd05cc19702582c64972602215648e727ccb338565edafb0116f6c50a033d9c3ce8664e97f392148f888d1 +srcfiles size=26 + RELOC/source/latex/smartdiagram/smartdiagram.dtx + RELOC/source/latex/smartdiagram/smartdiagram.ins +runfiles size=15 + RELOC/tex/latex/smartdiagram/smartdiagram.sty + RELOC/tex/latex/smartdiagram/smartdiagramlibraryadditions.code.tex + RELOC/tex/latex/smartdiagram/smartdiagramlibrarycore.commands.code.tex + RELOC/tex/latex/smartdiagram/smartdiagramlibrarycore.definitions.code.tex + RELOC/tex/latex/smartdiagram/smartdiagramlibrarycore.styles.code.tex +catalogue-ctan /graphics/pgf/contrib/smartdiagram +catalogue-date 2016-12-23 16:27:20 +0100 +catalogue-license lppl1.3 +catalogue-topics diagram pgf-tikz +catalogue-version 0.3b + +name smartref +category Package +revision 20311 +shortdesc Extend LaTeX's \ref capability +relocated 1 +longdesc The package extends the LaTeX labelling system: whenever a +longdesc label is set, the values of counters (selected by the user) are +longdesc recorded, along with the label. The value of these counters can +longdesc be recalled with a command similar to \pageref. The package +longdesc also adds commands \s[name]ref (for each counter [name] that +longdesc the user has selected); these commands display something only +longdesc if the value of the [name] counter is changed from when the +longdesc label was set. Many commands are provided to serve as a macro +longdesc programming environment for using the extended labels. +containersize 3100 +containerchecksum 149dd95ca0677a4e273df64a589d1424b8dd89983adf3a3ef81f8236d1b594d35b851b4255fd9f0d05b4feb82db59d816408e3ca59f2b86b73a5724a8e937367 +doccontainersize 319192 +doccontainerchecksum 07eaecd9e924e5912e8e3a3ba6479412282e1408cbb59699b9e83006768c4042b173d38da2e8dd2c707b392cb48d99e4be25985023db4de80d69450fe95a338b +docfiles size=82 + RELOC/doc/latex/smartref/README details="Readme and command details" + RELOC/doc/latex/smartref/smartref-doc.pdf details="Package documentation" + RELOC/doc/latex/smartref/smartref-doc.tex +runfiles size=3 + RELOC/tex/latex/smartref/byname.sty + RELOC/tex/latex/smartref/smartref.sty +catalogue-also zref +catalogue-ctan /macros/latex/contrib/smartref +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics label-ref counter-mgmt +catalogue-version 1.9 + +name smartunits +category Package +revision 39592 +shortdesc Converting between common metric and Imperial units +relocated 1 +longdesc This LaTeX package implements a \SmartUnit macro for converting +longdesc between (some) metric and Imperial units. The package requires +longdesc pgfkeys and siunitx. +containersize 3408 +containerchecksum d4c23a39d79cb5c0ba700da40b916ac6072e612d0e5b8ea1c189100cfe56fe77c9d1ff742d92fc44450255048d96f2e1dc2b5f0e098e56aad5efcdd423fec608 +doccontainersize 340260 +doccontainerchecksum e85b83a090b3e352a0faa61ee0f3dfc84d3f2fad8f1ef503aef7bf571e706575b19c1da394b09e69968b10fff2542b5b749a895eb17e84ce1293273532d2e241 +docfiles size=90 + RELOC/doc/latex/smartunits/README.md details="Readme" + RELOC/doc/latex/smartunits/smartunits.pdf details="Package documentation" + RELOC/doc/latex/smartunits/smartunits.tex +runfiles size=3 + RELOC/tex/latex/smartunits/smartunits.sty +catalogue-ctan /macros/latex/contrib/smartunits +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics units misc-conv +catalogue-version 1.2 + +name snapshot +category Package +revision 15878 +shortdesc List the external dependencies of a LaTeX document +relocated 1 +longdesc The snapshot package helps the owner of a LaTeX document obtain +longdesc a list of the external dependencies of the document, in a form +longdesc that can be embedded at the top of the document. It provides a +longdesc snapshot of the current processing context of the document, +longdesc insofar as it can be determined from inside LaTeX. If a +longdesc document contains such a dependency list, then it becomes +longdesc possible to arrange that the document be processed always with +longdesc the same versions of everything, in order to ensure the same +longdesc output. This could be useful for someone wanting to keep a +longdesc LaTeX document on hand and consistently reproduce an identical +longdesc DVI file from it, on the fly; or for someone wanting to shield +longdesc a document during the final stages of its production cycle from +longdesc unexpected side effects of routine upgrades to the TeX system. +containersize 3952 +containerchecksum 9c9d7b00450375f1f7af6b30203d4c9811dfbb1d1d7901406b3e703e88af7003e39eb2ffb78334110b687e0e8070e176c2024ea7c6cd6b6ffb433567eefa50c1 +doccontainersize 104224 +doccontainerchecksum fbabe2c204f19558d6868a6a868ed6ef916770492cc7035dee79e58f36e0b0195efc542fbb119ae22f045bb00208d588766ba6ca3bfc51ac8ba7f55ed3ad33e0 +docfiles size=30 + RELOC/doc/latex/snapshot/snapshot.pdf details="Package documentation" +srccontainersize 9444 +srccontainerchecksum 52195965051697b5c95db6fa258a886b6f9f0a766502b5f5bb91369722a1f367f10b4d0dadd0ab8f4eb2e85982c7a005daf1841a5020658dab6af522acddc137 +srcfiles size=9 + RELOC/source/latex/snapshot/snapshot.dtx + RELOC/source/latex/snapshot/snapshot.ins +runfiles size=3 + RELOC/tex/latex/snapshot/snapshot.sty +catalogue-also bundledoc +catalogue-contact-home http://www.ams.org/publications/authors/tex/snapshot +catalogue-ctan /macros/latex/contrib/snapshot +catalogue-date 2018-04-11 14:09:31 +0200 +catalogue-license lppl +catalogue-topics file-mgmt +catalogue-version 1.14 + +name snotez +category Package +revision 30355 +shortdesc Typeset notes, in the margin +relocated 1 +longdesc The package provides a macro \sidenote, that places a note in +longdesc the margin of the document, with its baseline aligned with the +longdesc baseline in the body of the document. These sidenotes are +longdesc numbered (both in the text, and on the notes themselves). The +longdesc package loads the package etoolbox, pgfopts, marginnote and +longdesc perpage. +containersize 2924 +containerchecksum e1e6ecfd64a317745fba39643c70ef5a71719e3c4ed3644569ab7a4a549a44eb58d1fd1d77608fd455282124d0e7372a364f95f7b67de192b1cfca1a9644086a +doccontainersize 461068 +doccontainerchecksum 6ab47280669285be6cd72e2027b939ab2c2e2df7c910b5775dcf02b570ba558a3c89832a45d65cf1a8a649dad67606a2d2fe3d4e477de67098dce497f0c2beec +docfiles size=117 + RELOC/doc/latex/snotez/README details="Readme" + RELOC/doc/latex/snotez/snotez_en.pdf details="Package documentation" + RELOC/doc/latex/snotez/snotez_en.tex +runfiles size=3 + RELOC/tex/latex/snotez/snotez.sty +catalogue-also sidenotes +catalogue-ctan /macros/latex/contrib/snotez +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics marginal +catalogue-version 0.3 + +name songbook +category Package +revision 18136 +shortdesc Package for typesetting song lyrics and chord books +relocated 1 +longdesc The package provides an all purpose songbook style. Three types +longdesc of output may be created from a single input file: "words and +longdesc chords" books for the musicians to play from, "words only" +longdesc songbooks for the congregation to sing from, and overhead +longdesc transparency masters for congregational use. The package will +longdesc also print a table of contents, an index sorted by title and +longdesc first line, and an index sorted by key, or by artist/composer. +longdesc The package attempts to handle songs in multiple keys, as well +longdesc as songs in multiple languages. +containersize 9680 +containerchecksum 06f81b35318ee9844565f622b5ecfb0f323373f14acfed3fdd042a244537c313fcc974c8cc556011baed16c5a7f90b8163342d36e360749db240e6eb639351b0 +doccontainersize 1248060 +doccontainerchecksum a8d98e2d3b90ebfc4e8df53ebaf92f2d0deb95034bf234dfeaef1d38213af9a36e38d48599e6e78a7e87fb966de87db821f4de7a6fd50f57c1afb515050bb510 +docfiles size=438 + RELOC/doc/latex/songbook/LesserGPL.txt + RELOC/doc/latex/songbook/README details="Readme" + RELOC/doc/latex/songbook/contrib/CarolBook/CarolBook.tex + RELOC/doc/latex/songbook/contrib/CarolBook/CarolBookOH.pdf + RELOC/doc/latex/songbook/contrib/CarolBook/CarolBookWB.pdf + RELOC/doc/latex/songbook/contrib/README details="Readme" + RELOC/doc/latex/songbook/contrib/crd2sb/NothingButTheBlood.crd + RELOC/doc/latex/songbook/contrib/crd2sb/crd2sb + RELOC/doc/latex/songbook/contrib/crd2sb/crd2sb.txt + RELOC/doc/latex/songbook/contrib/modulate + RELOC/doc/latex/songbook/contrib/texchord.sty + RELOC/doc/latex/songbook/install.txt + RELOC/doc/latex/songbook/mksbadx + RELOC/doc/latex/songbook/mksbkdx + RELOC/doc/latex/songbook/mksbtdx + RELOC/doc/latex/songbook/sample-sb.tex + RELOC/doc/latex/songbook/sampleAdx.pdf + RELOC/doc/latex/songbook/sampleAdx.tex + RELOC/doc/latex/songbook/sampleCBK.pdf + RELOC/doc/latex/songbook/sampleCSBK.pdf + RELOC/doc/latex/songbook/sampleKdx.pdf + RELOC/doc/latex/songbook/sampleKdx.tex + RELOC/doc/latex/songbook/sampleOH.pdf + RELOC/doc/latex/songbook/sampleTdx.pdf + RELOC/doc/latex/songbook/sampleTdx.tex + RELOC/doc/latex/songbook/sampleToc.pdf + RELOC/doc/latex/songbook/sampleToc.tex + RELOC/doc/latex/songbook/sampleWBK.pdf + RELOC/doc/latex/songbook/songbook.pdf details="Package documentation" +srccontainersize 43224 +srccontainerchecksum 57fed8f034e860787cd72b2acece0a491832acc526964c75060258db6bd46d77a551b967af41bfeae47d83ab97e4d6c2799c0f4ade405a43812126acc1b3d390 +srcfiles size=51 + RELOC/source/latex/songbook/songbook.dtx + RELOC/source/latex/songbook/songbook.ins +runfiles size=15 + RELOC/makeindex/songbook/songbook.ist + RELOC/tex/latex/songbook/conditionals.sty + RELOC/tex/latex/songbook/songbook.sty +catalogue-contact-home http://rath.ca/Misc/Songbook/ +catalogue-ctan /macros/latex/contrib/songbook +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lgpl2.1 +catalogue-topics music chords +catalogue-version 4.5 + +name songs +category Package +revision 44553 +shortdesc Produce song books for church or fellowship +relocated 1 +longdesc The package provides a means of producing beautiful song books +longdesc for church or fellowship. It offers: a very easy chord-entry +longdesc syntax; multiple modes (words-only; words+chords; slides; +longdesc handouts); measure bars; guitar tablatures; automatic +longdesc transposition; scripture quotations; multiple indexes (sorted +longdesc by title, author, important lyrics, or scripture references); +longdesc and projector-style output generation, for interactive use. A +longdesc set of example documents is provided. +containersize 20340 +containerchecksum 8b537a9c13737afaaf2a039943bc214973691ea5228b44b73ee59dc4ffd5ee51e617acc9bac0fa7fb9036ad5ae5dd1399fb358414430989fd7c6eb469d0ad759 +doccontainersize 1161016 +doccontainerchecksum 75094f7af6f689e88899e7c2809c9f1e7e89a88ba2871c73d4743acae3d7fff739174a2b2c2731d8e50d52157cd8eec37b700a427887a019309977528841fdb4 +docfiles size=407 + RELOC/doc/latex/songs/Makefile + RELOC/doc/latex/songs/README details="Readme" + RELOC/doc/latex/songs/history.txt + RELOC/doc/latex/songs/license.txt + RELOC/doc/latex/songs/sample/Makefile + RELOC/doc/latex/songs/sample/chordbook.tex + RELOC/doc/latex/songs/sample/lyricbook.tex + RELOC/doc/latex/songs/sample/slidebook.tex + RELOC/doc/latex/songs/sample/songs.sbd + RELOC/doc/latex/songs/sample/transparencies.tex + RELOC/doc/latex/songs/songidx/bible.can + RELOC/doc/latex/songs/songidx/catholic.can + RELOC/doc/latex/songs/songidx/greek.can + RELOC/doc/latex/songs/songidx/protestant.can + RELOC/doc/latex/songs/songidx/songidx.lua + RELOC/doc/latex/songs/songidx/tanakh.can + RELOC/doc/latex/songs/songs.pdf details="Package documentation" +srccontainersize 93376 +srccontainerchecksum 4c2992d70c3fcc631af3569a3dbc08eb1e067f223fc23ca900299857f1b83ea655e25f0b84a0811d59290f19e5818ab00a7f513ba65f307a8758a24b4eebab24 +srcfiles size=103 + RELOC/source/latex/songs/songs.dtx + RELOC/source/latex/songs/songs.ins +runfiles size=26 + RELOC/tex/latex/songs/songs.sty +catalogue-also songbook +catalogue-contact-home http://songs.sourceforge.net +catalogue-contact-repository https://sourceforge.net/projects/songs +catalogue-ctan /macros/latex/contrib/songs +catalogue-date 2017-06-13 07:48:52 +0200 +catalogue-license gpl2 +catalogue-topics music chords +catalogue-version 3.0 + +name sort-by-letters +category Package +revision 27128 +shortdesc Bibliography styles for alphabetic sorting +relocated 1 +longdesc This bundle contains several bibliography styles for separating +longdesc a document's references by the first letter of the first +longdesc author/editor in the bibliography entry. The styles are adapted +longdesc from standard ones or from natbib ones. +containersize 11200 +containerchecksum 41e7db4a4c5242493aeb099ca103f4540e038b1e91ec0296629f4dab1ad013f98b26b664c7d661dd2f53c1e5c749509763c46f51bb823225a104c125a9f75f4d +doccontainersize 1520 +doccontainerchecksum e2b6c68a42b9364d44dfa06ea93d8c8ea2444d97a3cf3c111065b720d3706b36315a7c8650877f1d6a2a72c1aa42268af4f17fc4632032e1e3c0a2d0fa08e577 +docfiles size=1 + RELOC/doc/bibtex/sort-by-letters/README details="Readme" +runfiles size=48 + RELOC/bibtex/bst/sort-by-letters/abbrv-letters.bst + RELOC/bibtex/bst/sort-by-letters/alpha-letters.bst + RELOC/bibtex/bst/sort-by-letters/apalike-letters.bst + RELOC/bibtex/bst/sort-by-letters/frplainnat-letters.bst + RELOC/bibtex/bst/sort-by-letters/plain-letters.bst + RELOC/bibtex/bst/sort-by-letters/plainnat-letters.bst + RELOC/bibtex/bst/sort-by-letters/siam-letters.bst +catalogue-also alphabib +catalogue-ctan /biblio/bibtex/contrib/sort-by-letters +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics bibtex-sty + +name soton +category Package +revision 16215 +shortdesc University of Southampton-compliant slides +relocated 1 +longdesc The bundle contains two packages: soton-palette which defines +longdesc colour-ways, and soton-beamer, which uses the colours to +longdesc produce compliant presentations. +containersize 1384 +containerchecksum 59e9e0bd127e44e1a80ff7dccf1fecb18b34a54c379a46632b13f82d80648229daa54c4655575c52ee718b02277c4e2b264451f8d3fe58abd60e593d0826c97b +doccontainersize 480 +doccontainerchecksum de9b03e8626535d2633af3884e373d8b25fe6d203af75382cf329aeb7b79c745f94c6d08d49a69b42172f4bad3cab2048fadcc4ad826a1c1126425a40289ecdc +docfiles size=1 + RELOC/doc/latex/soton/README details="Readme" +runfiles size=2 + RELOC/tex/latex/soton/soton-beamer.sty + RELOC/tex/latex/soton/soton-palette.sty +catalogue-ctan /macros/latex/contrib/soton +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics presentation +catalogue-version 0.1 + +name soul +category Package +revision 15878 +shortdesc Hyphenation for letterspacing, underlining, and more +relocated 1 +longdesc Provides hyphenatable spacing out (letterspacing), underlining, +longdesc striking out, etc., using the TeX hyphenation algorithm to find +longdesc the proper hyphens automatically. The package also provides a +longdesc mechanism that can be used to implement similar tasks, that +longdesc have to treat text syllable by syllable. This is shown in two +longdesc examples. The package itself does not support UTF-8 input in +longdesc ordinary (PDF)LaTeX; some UTF-8 support is offered by package +longdesc soulutf8 +containersize 6004 +containerchecksum 7a4ee70527282c50f28bc535ca34476538158b6fae6e37008cf5f04cf3caf5cc01ccb859967192da1b159b1026afa3eddede2cd86c3d63f469e6e2f6254a80f0 +doccontainersize 308320 +doccontainerchecksum 9b8831cf9c013fcca715a8a7100b76f2de364f55e8203899779ba18868e637cbb0d00d982098a3e42191dc63ac41afc65d2547b9976c64110e7b83f5f8d0108b +docfiles size=96 + RELOC/doc/latex/soul/soul.pdf details="Package documentation" + RELOC/doc/latex/soul/soul.txt +srccontainersize 35900 +srccontainerchecksum 0b3fceb0238709d4241a5615055c61ced473fbb74ff75d66c70a221bd0ec8b84769674a3dd57b93765812daed14a21fc002de022400fc73858c103a5dd9f29dc +srcfiles size=35 + RELOC/source/latex/soul/Makefile + RELOC/source/latex/soul/soul.dtx + RELOC/source/latex/soul/soul.ins +runfiles size=6 + RELOC/tex/latex/soul/soul.sty +catalogue-ctan /macros/latex/contrib/soul +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics underline letterspace +catalogue-version 2.4 + +name soup +category Package +revision 50815 +shortdesc Generate alphabet soup puzzles +relocated 1 +longdesc Generate alphabet soup puzzles (aka word search puzzles), and +longdesc variations using numbers or other symbols. Provides macros to +longdesc generate an alphabet soup style puzzle (also known as word +longdesc search puzzles or "find-the-word" puzzles). Allow creating +longdesc numbersoup and soups with custom symbol sets. +containersize 3424 +containerchecksum 478c8cba8623b184db1c9237b7a805219bf1ffb7ef45280fecf7cd75a1720ca0ea2e1e1ad73465ee20dbc2bbaf14667d4707524edbc073dd4fbd0537dbeca8c2 +doccontainersize 113216 +doccontainerchecksum 318cb98167123bf8d9a5f80db8e31a31f6f61536e938da3b68efc0dfec6722bc898d8295d32896c24d2842b262f22f70e08014c07755b6728dbb2040f64aef5e +docfiles size=30 + RELOC/doc/latex/soup/README.md details="Readme" + RELOC/doc/latex/soup/soup.pdf details="Package documentation" +srccontainersize 7288 +srccontainerchecksum 41d74f1e6812f4b56b44e3a80abb398baf9eef5c6a361de98a1237fc6931952460450f3780f682d35bf9bc718d2902c9d82ce15994144b2a133dcda46b531774 +srcfiles size=8 + RELOC/source/latex/soup/soup.dtx + RELOC/source/latex/soup/soup.ins +runfiles size=4 + RELOC/tex/latex/soup/soup.sty +catalogue-ctan /macros/latex/contrib/soup +catalogue-date 2019-04-06 06:01:50 +0200 +catalogue-license lppl1.3 +catalogue-topics cwpuzzle games puzzle +catalogue-version 1.0.2 + +name sourcecodepro +category Package +revision 51163 +shortdesc Use SourceCodePro with TeX(-alike) systems +relocated 1 +longdesc The font is an open-source Monospaced development from Adobe. +longdesc The package provides fonts (in both Adobe Type 1 and OpenType +longdesc formats) and macros supporting their use in LaTeX (Type 1) and +longdesc XeLaTeX/LuaLaTeX (OTF). +execute addMap SourceCodePro.map +containersize 3704752 +containerchecksum 45c41d470f0e84cc35d4c06cacc1beebd7891e98326a0e0f6462c7dc0fdf1eb9f4e0da59ced33e47c2c93c9662eec31efb8cebcab471350eb2c1c198873268e0 +doccontainersize 569492 +doccontainerchecksum 7f8ca211769e3b626ba98f8d7265b7e383630c2d22496f03f79bca629f164374de9bb8601e903fc094c1264fa8b4ab4bef1db3b9deafef65ab41c56c27e8d8cc +docfiles size=277 + RELOC/doc/latex/sourcecodepro/LICENSE.txt + RELOC/doc/latex/sourcecodepro/README.md details="Readme" + RELOC/doc/latex/sourcecodepro/sourcecodepro-otf-specimen.pdf + RELOC/doc/latex/sourcecodepro/sourcecodepro-otf-specimen.tex + RELOC/doc/latex/sourcecodepro/sourcecodepro-type1-specimen.pdf + RELOC/doc/latex/sourcecodepro/sourcecodepro-type1-specimen.tex + RELOC/doc/latex/sourcecodepro/sourcecodepro.pdf details="Package documentation" + RELOC/doc/latex/sourcecodepro/sourcecodepro.tex +runfiles size=1903 + RELOC/fonts/enc/dvips/sourcecodepro/a_3iph7b.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_4bagdb.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_4jrrta.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_6samag.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_beydf2.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_bzs6pp.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_ciozbc.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_cy5ftw.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_d56bnw.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_fhxzui.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_fnt2zo.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_fy4e5k.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_gog54w.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_gufhru.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_h3vs4v.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_j24bgz.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_jjp77t.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_ljusoa.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_lutrty.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_lxssho.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_mjxvy6.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_n5gv3r.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_npftpj.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_o4vjd2.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_pyiqqv.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_snirjt.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_tadnvb.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_uio74x.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_v5qca6.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_xmlzny.enc + RELOC/fonts/enc/dvips/sourcecodepro/a_yyete5.enc + RELOC/fonts/map/dvips/sourcecodepro/SourceCodePro.map + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-Black.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-BlackIt.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-Bold.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-BoldIt.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-ExtraLight.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-ExtraLightIt.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-Light.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-LightIt.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-Medium.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-MediumIt.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-Regular.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-RegularIt.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-Semibold.otf + RELOC/fonts/opentype/adobe/sourcecodepro/SourceCodePro-SemiboldIt.otf + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Black-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BlackIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-It-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Light-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-LightIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-MediumIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-dnom-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-numr-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-sup-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-t2a.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-ts1.tfm + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-Black.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-BlackIt.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-Bold.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-BoldIt.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-ExtraLight.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-ExtraLightIt.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-It.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-Light.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-LightIt.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-Medium.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-MediumIt.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-Regular.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-Semibold.pfb + RELOC/fonts/type1/adobe/sourcecodepro/SourceCodePro-SemiboldIt.pfb + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Black-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BlackIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Bold-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-BoldIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-ExtraLightIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-It-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Light-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-LightIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Medium-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-MediumIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Regular-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-Semibold-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcecodepro/SourceCodePro-SemiboldIt-tosf-ts1.vf + RELOC/tex/latex/sourcecodepro/LY1SourceCodePro-Dnom.fd + RELOC/tex/latex/sourcecodepro/LY1SourceCodePro-Numr.fd + RELOC/tex/latex/sourcecodepro/LY1SourceCodePro-Sup.fd + RELOC/tex/latex/sourcecodepro/LY1SourceCodePro-TLF.fd + RELOC/tex/latex/sourcecodepro/LY1SourceCodePro-TOsF.fd + RELOC/tex/latex/sourcecodepro/OT1SourceCodePro-Dnom.fd + RELOC/tex/latex/sourcecodepro/OT1SourceCodePro-Numr.fd + RELOC/tex/latex/sourcecodepro/OT1SourceCodePro-Sup.fd + RELOC/tex/latex/sourcecodepro/OT1SourceCodePro-TLF.fd + RELOC/tex/latex/sourcecodepro/OT1SourceCodePro-TOsF.fd + RELOC/tex/latex/sourcecodepro/T1SourceCodePro-Dnom.fd + RELOC/tex/latex/sourcecodepro/T1SourceCodePro-Numr.fd + RELOC/tex/latex/sourcecodepro/T1SourceCodePro-Sup.fd + RELOC/tex/latex/sourcecodepro/T1SourceCodePro-TLF.fd + RELOC/tex/latex/sourcecodepro/T1SourceCodePro-TOsF.fd + RELOC/tex/latex/sourcecodepro/T2ASourceCodePro-Dnom.fd + RELOC/tex/latex/sourcecodepro/T2ASourceCodePro-Numr.fd + RELOC/tex/latex/sourcecodepro/T2ASourceCodePro-Sup.fd + RELOC/tex/latex/sourcecodepro/T2ASourceCodePro-TLF.fd + RELOC/tex/latex/sourcecodepro/T2ASourceCodePro-TOsF.fd + RELOC/tex/latex/sourcecodepro/TS1SourceCodePro-TLF.fd + RELOC/tex/latex/sourcecodepro/TS1SourceCodePro-TOsF.fd + RELOC/tex/latex/sourcecodepro/sourcecodepro-type1-autoinst.sty + RELOC/tex/latex/sourcecodepro/sourcecodepro.sty +catalogue-ctan /fonts/sourcecodepro +catalogue-date 2019-05-19 20:15:06 +0200 +catalogue-license ofllppl +catalogue-topics font font-sans font-mono font-otf font-type1 font-t1enc +catalogue-version 2.7 + +name sourcesanspro +category Package +revision 42852 +shortdesc Use SourceSansPro with TeX(-alike) systems +relocated 1 +longdesc The font is an open-source Sans-Serif development from Adobe. +longdesc The package provides fonts (in both Adobe Type 1 and OpenType +longdesc formats) and macros supporting their use in LaTeX (Type 1) and +longdesc XeLaTeX/LuaLaTeX (OTF). +execute addMap SourceSansPro.map +containersize 3464224 +containerchecksum 23b6a26836ec517e833c1ec4155b5da60bfd03ba093fadcbcd418658d3d36a8cc41914349cd117bf2c5eec4121bcd7e29d6c50ca8ce4e4728b729fcbf089d3ab +doccontainersize 495824 +doccontainerchecksum 963cf63732836329490ea1521ae0fd09e55591859ea4430799f32606c3710e44b7e203dabb4385821830043c12e6f19795951f3e4aff7abd173d8ba5d4d788ee +docfiles size=228 + RELOC/doc/latex/sourcesanspro/LICENSE.txt + RELOC/doc/latex/sourcesanspro/LPPL.txt + RELOC/doc/latex/sourcesanspro/sourcesanspro-otf-specimen.pdf + RELOC/doc/latex/sourcesanspro/sourcesanspro-otf-specimen.tex + RELOC/doc/latex/sourcesanspro/sourcesanspro-type1-specimen.pdf + RELOC/doc/latex/sourcesanspro/sourcesanspro-type1-specimen.tex + RELOC/doc/latex/sourcesanspro/sourcesanspro.pdf details="Package documentation" + RELOC/doc/latex/sourcesanspro/sourcesanspro.tex +runfiles size=3883 + RELOC/fonts/enc/dvips/sourcesanspro/a_2cvp4u.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_2dtrh6.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_2jmt2m.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_2n3jyq.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_3rlax2.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_3vq5rq.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_4jf6oe.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_5mnkjz.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_5tbsmu.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_6bttxp.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_7ajhns.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_b457hn.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_buvplz.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_cerb3o.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_cvynlr.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_cxftuq.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_debg3j.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_el7rh7.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_elrf5h.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_ev2kyj.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_fbyskd.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_floqlo.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_fva737.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_gc2pqo.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_ggs4wk.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_gsofwu.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_gw3vm7.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_ifkpwm.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_j24bgz.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_jpwolx.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_k74yek.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_kksgzp.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_ko3vnf.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_mf2mhr.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_mhce32.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_myad3x.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_n5gv3r.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_n5mfkj.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_nlm4w5.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_nxh7ce.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_p2xsve.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_p5cgg3.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_pcov5a.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_psnyba.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_pwnihc.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_qujrng.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_r6twhl.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_rseom6.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_rsnzt5.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_s26mqm.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_s4juqt.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_sd7igg.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_tczf5d.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_tnsd2h.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_tophx4.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_tzjlps.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_umlpmm.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_uvtzcn.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_v4sjy4.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_v537dd.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_vx5ywn.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_w2dgod.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_wdghyr.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_wn63nt.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_x5hjjp.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_xfkmtv.enc + RELOC/fonts/enc/dvips/sourcesanspro/a_yugc2g.enc + RELOC/fonts/map/dvips/sourcesanspro/SourceSansPro.map + RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-Black.otf + RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-BlackIt.otf + RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-Bold.otf + RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-BoldIt.otf + RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-ExtraLight.otf + RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-ExtraLightIt.otf + RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-Light.otf + RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-LightIt.otf + RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-Regular.otf + RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-RegularIt.otf + RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-Semibold.otf + RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-SemiboldIt.otf + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-dnom-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-dnom-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-inf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-inf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-inf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-inf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-inf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-inf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-inf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-numr-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-numr-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-sup-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-sup-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Black-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-dnom-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-dnom-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-inf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-inf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-inf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-inf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-inf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-numr-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-numr-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-sup-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-sup-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-dnom-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-dnom-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-inf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-inf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-inf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-inf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-inf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-inf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-inf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-numr-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-numr-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-sup-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-sup-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-It-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-dnom-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-dnom-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-inf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-inf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-inf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-inf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-inf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-inf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-inf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-numr-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-numr-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-sup-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-sup-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Light-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-inf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-inf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-inf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-inf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-inf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-inf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-inf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-numr-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-numr-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-sup-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-sup-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-dnom-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-dnom-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-inf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-inf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-inf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-inf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-inf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-numr-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-numr-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-sup-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-sup-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-inf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-inf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-inf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-inf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-inf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-inf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-inf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-numr-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-numr-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-sup-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-sup-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-lgr--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-lgr.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-ts1.tfm + RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-Black.pfb + RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-BlackIt.pfb + RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-Bold.pfb + RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-BoldIt.pfb + RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-ExtraLight.pfb + RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-ExtraLightIt.pfb + RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-It.pfb + RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-Light.pfb + RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-LightIt.pfb + RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-Regular.pfb + RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-Semibold.pfb + RELOC/fonts/type1/adobe/sourcesanspro/SourceSansPro-SemiboldIt.pfb + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-dnom-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-inf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-inf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-inf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-lf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-lf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-lf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-lf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-lf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-numr-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-numr-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-osf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-osf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-osf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-osf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-osf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-sup-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-sup-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tlf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tlf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tosf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tosf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Black-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-inf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-lf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-osf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BlackIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-dnom-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-inf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-inf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-inf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-lf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-lf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-lf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-lf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-lf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-numr-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-numr-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-osf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-osf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-osf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-osf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-osf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-sup-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-sup-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tlf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tosf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Bold-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-inf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-lf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-osf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-BoldIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-inf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-lf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-numr-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-osf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-sup-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-inf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-lf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-osf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-ExtraLightIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-dnom-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-inf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-inf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-inf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-lf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-lf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-lf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-lf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-numr-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-numr-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-osf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-osf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-osf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-osf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-sup-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-sup-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-tlf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-tosf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-It-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-dnom-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-inf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-inf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-inf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-lf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-lf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-lf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-lf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-lf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-numr-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-numr-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-osf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-osf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-osf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-osf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-osf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-sup-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-sup-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tlf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tlf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tosf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tosf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Light-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-inf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-inf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-inf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-lf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-lf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-lf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-lf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-numr-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-osf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-osf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-osf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-osf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-sup-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-LightIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-dnom-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-inf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-inf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-inf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-lf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-lf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-lf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-lf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-lf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-numr-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-numr-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-osf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-osf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-osf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-osf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-osf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-sup-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-sup-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tlf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tosf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Regular-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-inf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-inf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-inf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-lf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-lf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-lf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-lf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-lf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-numr-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-numr-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-osf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-osf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-osf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-osf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-osf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-sup-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-sup-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-sc-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-Semibold-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-inf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-lf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-osf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-lgr.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourcesanspro/SourceSansPro-SemiboldIt-tosf-ts1.vf + RELOC/tex/latex/sourcesanspro/LGRSourceSansPro-Dnom.fd + RELOC/tex/latex/sourcesanspro/LGRSourceSansPro-Inf.fd + RELOC/tex/latex/sourcesanspro/LGRSourceSansPro-LF.fd + RELOC/tex/latex/sourcesanspro/LGRSourceSansPro-Numr.fd + RELOC/tex/latex/sourcesanspro/LGRSourceSansPro-OsF.fd + RELOC/tex/latex/sourcesanspro/LGRSourceSansPro-Sup.fd + RELOC/tex/latex/sourcesanspro/LGRSourceSansPro-TLF.fd + RELOC/tex/latex/sourcesanspro/LGRSourceSansPro-TOsF.fd + RELOC/tex/latex/sourcesanspro/LY1SourceSansPro-Dnom.fd + RELOC/tex/latex/sourcesanspro/LY1SourceSansPro-Inf.fd + RELOC/tex/latex/sourcesanspro/LY1SourceSansPro-LF.fd + RELOC/tex/latex/sourcesanspro/LY1SourceSansPro-Numr.fd + RELOC/tex/latex/sourcesanspro/LY1SourceSansPro-OsF.fd + RELOC/tex/latex/sourcesanspro/LY1SourceSansPro-Sup.fd + RELOC/tex/latex/sourcesanspro/LY1SourceSansPro-TLF.fd + RELOC/tex/latex/sourcesanspro/LY1SourceSansPro-TOsF.fd + RELOC/tex/latex/sourcesanspro/OT1SourceSansPro-Dnom.fd + RELOC/tex/latex/sourcesanspro/OT1SourceSansPro-Inf.fd + RELOC/tex/latex/sourcesanspro/OT1SourceSansPro-LF.fd + RELOC/tex/latex/sourcesanspro/OT1SourceSansPro-Numr.fd + RELOC/tex/latex/sourcesanspro/OT1SourceSansPro-OsF.fd + RELOC/tex/latex/sourcesanspro/OT1SourceSansPro-Sup.fd + RELOC/tex/latex/sourcesanspro/OT1SourceSansPro-TLF.fd + RELOC/tex/latex/sourcesanspro/OT1SourceSansPro-TOsF.fd + RELOC/tex/latex/sourcesanspro/T1SourceSansPro-Dnom.fd + RELOC/tex/latex/sourcesanspro/T1SourceSansPro-Inf.fd + RELOC/tex/latex/sourcesanspro/T1SourceSansPro-LF.fd + RELOC/tex/latex/sourcesanspro/T1SourceSansPro-Numr.fd + RELOC/tex/latex/sourcesanspro/T1SourceSansPro-OsF.fd + RELOC/tex/latex/sourcesanspro/T1SourceSansPro-Sup.fd + RELOC/tex/latex/sourcesanspro/T1SourceSansPro-TLF.fd + RELOC/tex/latex/sourcesanspro/T1SourceSansPro-TOsF.fd + RELOC/tex/latex/sourcesanspro/TS1SourceSansPro-LF.fd + RELOC/tex/latex/sourcesanspro/TS1SourceSansPro-OsF.fd + RELOC/tex/latex/sourcesanspro/TS1SourceSansPro-TLF.fd + RELOC/tex/latex/sourcesanspro/TS1SourceSansPro-TOsF.fd + RELOC/tex/latex/sourcesanspro/sourcesanspro-type1-autoinst.sty + RELOC/tex/latex/sourcesanspro/sourcesanspro.sty +catalogue-ctan /fonts/sourcesanspro +catalogue-date 2017-01-03 15:01:48 +0100 +catalogue-license ofllppl1.3 +catalogue-topics font-sans font-type1 font-otf font-t1enc +catalogue-version 2.6 + +name sourceserifpro +category Package +revision 49120 +shortdesc Use SourceSerifPro with TeX(-alike) systems +relocated 1 +longdesc This package provides Source Serif Pro for LaTeX. It includes +longdesc both Type1 and OpenType fonts and selects the latter when using +longdesc XeLaTeX or LuaLaTeX. +execute addMap SourceSerifPro.map +containersize 3673396 +containerchecksum fbfd4b6bd8f75079272feee5f01c0c4b47aecfe89e382cd8f288453dffd6152bf7bab3ffbaf4d90c544f01a5943d280df061b757169f3dd27970cccdeb1f79f2 +doccontainersize 542680 +doccontainerchecksum 530b5ee29c8cad79ab359fc8fe225c18fe15483bb787f24c91a523ae8ddeca47aad5bf16c6ffea2465fc90182d5de65e08a1bea2f9015e710a03aed846510676 +docfiles size=261 + RELOC/doc/latex/sourceserifpro/LICENSE.txt + RELOC/doc/latex/sourceserifpro/sourceserifpro-otf-specimen.pdf + RELOC/doc/latex/sourceserifpro/sourceserifpro-otf-specimen.tex + RELOC/doc/latex/sourceserifpro/sourceserifpro-type1-specimen.pdf + RELOC/doc/latex/sourceserifpro/sourceserifpro-type1-specimen.tex + RELOC/doc/latex/sourceserifpro/sourceserifpro.pdf details="Package documentation" + RELOC/doc/latex/sourceserifpro/sourceserifpro.tex +runfiles size=4622 + RELOC/fonts/enc/dvips/sourceserifpro/a_3wqk3b.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_5mjl2d.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_5ts2b6.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_6lyhkv.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_a6i6f2.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_abavx3.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_an4p3v.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_bdm2ki.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_bizpe5.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_brdplf.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_dc746j.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_etdltz.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_flbt57.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_g6m65j.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_gtvdgc.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_jevuw6.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_l72wii.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_lnjzcs.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_lseshj.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_meqgh4.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_mjlzxh.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_n7bg2c.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_nan7a4.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_nqu667.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_nx47sx.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_ob4xxw.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_oi66c4.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_oprvft.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_osimgj.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_osnaur.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_qiz27h.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_r74etr.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_rlbtkr.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_s5phdg.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_s6kslv.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_sboynu.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_sonlso.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_sor56s.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_tf7hcc.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_uima5p.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_upudw7.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_vbwd4w.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_vnu3m6.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_z6lp4v.enc + RELOC/fonts/enc/dvips/sourceserifpro/a_ztztxn.enc + RELOC/fonts/map/dvips/sourceserifpro/SourceSerifPro.map + RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-Black.otf + RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-BlackIt.otf + RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-Bold.otf + RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-BoldIt.otf + RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-ExtraLight.otf + RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt.otf + RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-Light.otf + RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-LightIt.otf + RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-Regular.otf + RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-RegularIt.otf + RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-Semibold.otf + RELOC/fonts/opentype/adobe/sourceserifpro/SourceSerifPro-SemiboldIt.otf + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BlackIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-BoldIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-It-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-LightIt-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-sc-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-dnom-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-dnom-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-dnom-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-dnom-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-dnom-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-lf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-lf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-lf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-lf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-lf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-lf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-lf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-numr-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-numr-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-numr-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-numr-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-numr-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-osf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-osf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-osf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-osf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-osf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-osf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-osf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-sup-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-sup-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-sup-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-sup-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-sup-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tlf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tlf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tlf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tlf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tlf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tlf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tlf-ts1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tosf-ly1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tosf-ly1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tosf-ot1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tosf-t1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tosf-t1.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tosf-ts1--base.tfm + RELOC/fonts/tfm/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tosf-ts1.tfm + RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-Black.pfb + RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-BlackIt.pfb + RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-Bold.pfb + RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-BoldIt.pfb + RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-ExtraLight.pfb + RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt.pfb + RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-It.pfb + RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-Light.pfb + RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-LightIt.pfb + RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-Regular.pfb + RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-Semibold.pfb + RELOC/fonts/type1/adobe/sourceserifpro/SourceSerifPro-SemiboldIt.pfb + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-dnom-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-lf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-lf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-lf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-lf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-lf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-lf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-numr-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-numr-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-osf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-osf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-osf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-osf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-osf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-osf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-sup-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-sup-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tlf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tlf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tlf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tlf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tosf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tosf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tosf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tosf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Black-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-lf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-lf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-lf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-osf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-osf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-osf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BlackIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-dnom-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-lf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-lf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-lf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-numr-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-numr-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-osf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-osf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-osf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-sup-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-sup-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Bold-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-lf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-lf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-lf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-osf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-osf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-osf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-BoldIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-dnom-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-lf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-numr-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-osf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-sup-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-lf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-lf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-lf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-osf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-osf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-osf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-ExtraLightIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-dnom-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-lf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-lf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-lf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-numr-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-numr-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-osf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-osf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-osf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-sup-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-sup-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-tlf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-tosf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-It-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-dnom-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-lf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-lf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-lf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-lf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-lf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-lf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-numr-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-numr-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-osf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-osf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-osf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-osf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-osf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-osf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-sup-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-sup-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tlf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tlf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tosf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tosf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Light-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-lf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-lf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-lf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-osf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-osf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-osf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-LightIt-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-dnom-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-lf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-lf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-lf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-numr-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-numr-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-osf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-osf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-osf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-sup-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-sup-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Regular-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-dnom-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-lf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-numr-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-osf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-sup-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-sc-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-sc-ot1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-sc-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-Semibold-tosf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-dnom-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-dnom-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-lf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-lf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-lf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-numr-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-numr-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-osf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-osf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-osf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-sup-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-sup-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tlf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tlf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tlf-ts1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tosf-ly1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tosf-t1.vf + RELOC/fonts/vf/adobe/sourceserifpro/SourceSerifPro-SemiboldIt-tosf-ts1.vf + RELOC/tex/latex/sourceserifpro/LY1SourceSerifPro-Dnom.fd + RELOC/tex/latex/sourceserifpro/LY1SourceSerifPro-LF.fd + RELOC/tex/latex/sourceserifpro/LY1SourceSerifPro-Numr.fd + RELOC/tex/latex/sourceserifpro/LY1SourceSerifPro-OsF.fd + RELOC/tex/latex/sourceserifpro/LY1SourceSerifPro-Sup.fd + RELOC/tex/latex/sourceserifpro/LY1SourceSerifPro-TLF.fd + RELOC/tex/latex/sourceserifpro/LY1SourceSerifPro-TOsF.fd + RELOC/tex/latex/sourceserifpro/OT1SourceSerifPro-Dnom.fd + RELOC/tex/latex/sourceserifpro/OT1SourceSerifPro-LF.fd + RELOC/tex/latex/sourceserifpro/OT1SourceSerifPro-Numr.fd + RELOC/tex/latex/sourceserifpro/OT1SourceSerifPro-OsF.fd + RELOC/tex/latex/sourceserifpro/OT1SourceSerifPro-Sup.fd + RELOC/tex/latex/sourceserifpro/OT1SourceSerifPro-TLF.fd + RELOC/tex/latex/sourceserifpro/OT1SourceSerifPro-TOsF.fd + RELOC/tex/latex/sourceserifpro/T1SourceSerifPro-Dnom.fd + RELOC/tex/latex/sourceserifpro/T1SourceSerifPro-LF.fd + RELOC/tex/latex/sourceserifpro/T1SourceSerifPro-Numr.fd + RELOC/tex/latex/sourceserifpro/T1SourceSerifPro-OsF.fd + RELOC/tex/latex/sourceserifpro/T1SourceSerifPro-Sup.fd + RELOC/tex/latex/sourceserifpro/T1SourceSerifPro-TLF.fd + RELOC/tex/latex/sourceserifpro/T1SourceSerifPro-TOsF.fd + RELOC/tex/latex/sourceserifpro/TS1SourceSerifPro-LF.fd + RELOC/tex/latex/sourceserifpro/TS1SourceSerifPro-OsF.fd + RELOC/tex/latex/sourceserifpro/TS1SourceSerifPro-TLF.fd + RELOC/tex/latex/sourceserifpro/TS1SourceSerifPro-TOsF.fd + RELOC/tex/latex/sourceserifpro/sourceserifpro-type1-autoinst.sty + RELOC/tex/latex/sourceserifpro/sourceserifpro.sty +catalogue-contact-bugs https://github.com/silkeh/latex-sourceserifpro/issues +catalogue-contact-repository https://github.com/silkeh/latex-sourceserifpro +catalogue-ctan /fonts/sourceserifpro +catalogue-date 2018-11-10 20:37:11 +0100 +catalogue-license ofllppl1.3 +catalogue-topics font font-serif font-type1 font-otf font-t1enc font-proportional +catalogue-version 1.4 + +name spalign +category Package +revision 42225 +shortdesc Typeset matrices and arrays with spaces and semicolons as delimiters +relocated 1 +longdesc Typeset matrices and arrays with spaces and semicolons as +longdesc delimiters. The purpose of this package is to decrease the +longdesc number of keystrokes needed to typeset small amounts of aligned +longdesc material (matrices, arrays, etc.). It provides a facility for +longdesc typing alignment environments and macros with spaces as the +longdesc alignment delimiter and semicolons (by default) as the +longdesc end-of-row indicator. For instance, typeset a matrix using +longdesc \spalignmat{1 12 -3; 24 -2 2; 0 0 1}, or a vector using +longdesc \spalignvector{22 \frac{1}{2} -14}. This package also contains +longdesc utility macros for typesetting augmented matrices, vectors, +longdesc arrays, systems of equations, and more, and is easily +longdesc extendable to other situations that use alignments. People who +longdesc have to typeset a large number of matrices (like linear algebra +longdesc teachers) should find this package to be a real time saver. +containersize 2848 +containerchecksum 6e00399e0940778a6ed8326abce14f15836bcb69f8e7c67d06cdf8567330ce0482a213c7b65c2662e0fddc47ce7b684a640e133017eca314b59eefc278eb6425 +doccontainersize 120216 +doccontainerchecksum 534f2c39076a6ff243a8e4cffe353a569b493b90fc1bdcc3db43229dda3955f013de15ce1db7beb38bc9b8d972c7430a24d64c263041c82e84c799f446faab0a +docfiles size=35 + RELOC/doc/latex/spalign/README.md details="Readme" + RELOC/doc/latex/spalign/spalign.pdf details="Package documentation" +srccontainersize 12044 +srccontainerchecksum 3a12b34469bbefd61112b7338c8b5d440de46837632a695b52ae18e4f297d6ac0cde7ae71db7bb0a7bd3db0aeaa83e78f33a60e4dd496cf9c0ccda1a297b4ae9 +srcfiles size=13 + RELOC/source/latex/spalign/spalign.dtx + RELOC/source/latex/spalign/spalign.ins +runfiles size=3 + RELOC/tex/latex/spalign/spalign.sty +catalogue-ctan /macros/latex/contrib/spalign +catalogue-date 2018-01-07 14:49:11 +0100 +catalogue-license lppl1.3 +catalogue-topics maths matrix maths-syseqn maths-theorem typeset-grid + +name spanish-mx +category Package +revision 15878 +shortdesc Typeset Spanish as in Mexico +relocated 1 +longdesc The bundle provides files to support typesetting of texts in +longdesc Spanish according to Mexican current practices, using babel. +longdesc The files merge earlier work on a mexican.ldf, or may be used +longdesc to define a configuration that will typeset all documents (that +longdesc request babel's spanish option) to use the Mexican language +longdesc facilities. (Note that this facility is only available with the +longdesc recent (version >=4.2b) releases of the Spanish option.) +containersize 3076 +containerchecksum cb638093e1a50de3fd67720ae21e11285337910f98da86db79613f73878084b93fc8afd998b4422b673e3daceaa2ba7aa76b02efc98003e741b74449d4c94af2 +doccontainersize 1060 +doccontainerchecksum 0b257bd5ce8a7332fe6cf1f5772a464ffdc525e80794dc89600e9ad279beb1f39523fabfcd2723123a458787d7bfd32ecbe0b2962b4abfc3627275862e05b97f +docfiles size=1 + RELOC/doc/latex/spanish-mx/README details="Readme" +runfiles size=3 + RELOC/tex/latex/spanish-mx/esmx.cfg + RELOC/tex/latex/spanish-mx/spanishmx.ldf + RELOC/tex/latex/spanish-mx/spanishmx.sty +catalogue-ctan /language/spanish/babel/contrib/mexican +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics spanish multilingual-addon +catalogue-version 1.1a + +name spark-otf +category Package +revision 51005 +shortdesc Support OpenType Spark fonts +relocated 1 +longdesc The package supports the free fonts from "After the Flood" +longdesc which are available from AtF Spark. The following fonts are +longdesc supported: Spark -- Bar -- Medium Spark -- Bar -- Narrow Spark +longdesc -- Bar -- Thin Spark -- Dot-line -- Medium Spark -- Dot -- +longdesc Medium Spark -- Dot -- Small +containersize 2068 +containerchecksum 863587da0d6a03267dd36437b112be4a1391537d7186db0f9acae2d5c3721b2a303d7b2ca86d47a619b9265930fb4795f87522498cd34c80d057ef56d1b8daa2 +doccontainersize 104112 +doccontainerchecksum 2b3a9fab8e29c1fd9bf1b3a3f729d4d728fd22d6dba86aa746febac2eafe59df1afe65f557c9e3c816983eeeab8d798bb4f54712be8f5590706bcc49a2e50199 +docfiles size=33 + RELOC/doc/fonts/spark-otf/Changes + RELOC/doc/fonts/spark-otf/README.md details="Readme" + RELOC/doc/fonts/spark-otf/spark-otf-doc.bib + RELOC/doc/fonts/spark-otf/spark-otf-doc.pdf details="Package documentation" + RELOC/doc/fonts/spark-otf/spark-otf-doc.tex +runfiles size=2 + RELOC/tex/latex/spark-otf/spark-otf.sty +catalogue-ctan /fonts/spark-otf +catalogue-date 2019-04-13 10:06:36 +0200 +catalogue-license lppl1.3 +catalogue-topics font-absent font-symbol font-otf font-use +catalogue-version 0.05 + +name sparklines +category Package +revision 42821 +shortdesc Drawing sparklines: intense, simple, wordlike graphics +relocated 1 +longdesc Sparklines are intense, simple, wordlike graphics (so named by +longdesc Edward Tufte). In lieu of a more detailed introduction, +longdesc Professor Tufte's site has an early release of a chapter on +longdesc sparklines. A PHP implementation may be found at SourceForge. A +longdesc sparkline can be added using the sparkline environment. Also, +longdesc you can add sparkling rectangles for the median and special +longdesc sparkling dots in red or blue. The package requires pdfLaTeX; +longdesc sparklines cannot appear in a dvi file. The sparklines package +longdesc uses pgf, and does not work with pictex. +containersize 2624 +containerchecksum 5dc74f46a819a6539034d570d4bc11403cb9f4617e2e6e373cced6cf335630e4e5a3d919041ac67a8b114b2d53c56871239b67a6acd6bc47f8c6130171d84824 +doccontainersize 140580 +doccontainerchecksum 4db42aec14145d4b73fce7940563f6771c3d994955006cceac7c93c9d5d5e2200fddf6d83d15e4dde0385f982c0ee85fc844914d80aa249c3ac2e86a49369b38 +docfiles size=38 + RELOC/doc/latex/sparklines/README + RELOC/doc/latex/sparklines/sparklines.pdf details="Package documentation" + RELOC/doc/latex/sparklines/sparklines.tex +runfiles size=2 + RELOC/tex/latex/sparklines/sparklines.sty +catalogue-ctan /graphics/sparklines +catalogue-date 2016-12-31 14:06:34 +0100 +catalogue-license lppl +catalogue-topics graphics-in-tex +catalogue-version 1.7 + +name spath3 +category Package +revision 50018 +shortdesc Manipulate "soft paths" in PGF +relocated 1 +longdesc The spath3 library provides methods for manipulating the "soft +longdesc paths" of TikZ/PGF. Packaged with it are two TikZ libraries +longdesc that make use of the methods provided. These are libraries for +longdesc drawing calligraphic paths and for drawing knot diagrams. +containersize 11704 +containerchecksum 44417164e54d212ab18925af95cf4105d102ba07ea37e3275a59906637dca173db5de5e58ed3759ec61a2be96d4d44dcf3b2f7c811021acc2d0c0c6ad28ec64e +doccontainersize 1009612 +doccontainerchecksum 04ab2a7ef15dee7fdd418bc74f699c6afd21cbd912ed8d12760d0be5b5e4fa17f66b23e8e9c83ff8ee1a2459d95da483dc9e1978236c32d6c40d429c9582cc37 +docfiles size=285 + RELOC/doc/latex/spath3/README details="Readme" + RELOC/doc/latex/spath3/README.txt + RELOC/doc/latex/spath3/calligraphy_doc.pdf details="Use for calligraphy" + RELOC/doc/latex/spath3/calligraphy_doc.tex + RELOC/doc/latex/spath3/knots_doc.pdf details="Use for knot (and similar) diagrams" + RELOC/doc/latex/spath3/knots_doc.tex + RELOC/doc/latex/spath3/spath3_code.pdf details="Package documentation" +srccontainersize 17936 +srccontainerchecksum 8345ef716d56e7ace4bb952dab9c60adfdba028bd57a26c5e541e762745a6495ebb1e55aba6a78e5882e73be72dc30e7bd1eecb290b44948a9c627a80465d05a +srcfiles size=34 + RELOC/source/latex/spath3/spath3.dtx + RELOC/source/latex/spath3/spath3.ins +runfiles size=28 + RELOC/tex/latex/spath3/spath3.sty + RELOC/tex/latex/spath3/tikzlibrarycalligraphy.code.tex + RELOC/tex/latex/spath3/tikzlibraryknots.code.tex +catalogue-ctan /graphics/pgf/contrib/spath3 +catalogue-date 2019-02-13 10:37:08 +0100 +catalogue-license lppl1.3c +catalogue-topics pgf-tikz graphics-curve +catalogue-version 1.2 + +name spectralsequences +category Package +revision 50072 +shortdesc Print spectral sequence diagrams using PGF/TikZ +relocated 1 +longdesc The package is a specialized tool built on top of PGF/TikZ for +longdesc drawing spectral sequences. It provides a powerful, concise +longdesc syntax for specifying the data of a spectral sequence, and then +longdesc allows the user to print various pages of spectral sequences, +longdesc automatically choosing which subset of the classes, +longdesc differentials, and structure lines to display on each page. It +longdesc also handles most of the details of the layout. At the same +longdesc time, it is extremely flexible. spectralsequences is closely +longdesc integrated with TikZ to ensure that users can take advantage of +longdesc as much as possible of its expressive power. It is possible to +longdesc turn off most of the automated layout features and draw +longdesc replacements using TikZ commands. The package also provides a +longdesc carefully designed error reporting system intended to ensure +longdesc that it is as clear as possible what is going wrong. +containersize 69124 +containerchecksum 71677e3cba37f228acc096ae916793cf214f90d30809019efc67ba0793b5176da1a3fe8fab592ca80a077164948c4be777237f71e895515e519f399534cc0cd6 +doccontainersize 2635988 +doccontainerchecksum 80eda3718c3cb2daf9f3a96a6def78011be1d7882eb50db692c2d34332a5aa79a44e0201445f67d1623bcfc3618f79f6d158a98a91572796674071143f017789 +docfiles size=903 + RELOC/doc/latex/spectralsequences/README.md details="Readme" + RELOC/doc/latex/spectralsequences/examples/ANSS-S_2.pdf + RELOC/doc/latex/spectralsequences/examples/ANSS-S_2.tex + RELOC/doc/latex/spectralsequences/examples/ANSS-S_3.pdf + RELOC/doc/latex/spectralsequences/examples/ANSS-S_3.tex + RELOC/doc/latex/spectralsequences/examples/ASS-S_2.pdf + RELOC/doc/latex/spectralsequences/examples/ASS-S_2.tex + RELOC/doc/latex/spectralsequences/examples/ASS-S_3.pdf + RELOC/doc/latex/spectralsequences/examples/ASS-S_3.tex + RELOC/doc/latex/spectralsequences/examples/ASS-tmf_2.pdf + RELOC/doc/latex/spectralsequences/examples/ASS-tmf_2.tex + RELOC/doc/latex/spectralsequences/examples/HFPSS-EO2_3.pdf + RELOC/doc/latex/spectralsequences/examples/HFPSS-EO2_3.tex + RELOC/doc/latex/spectralsequences/examples/HFPSS-KO.pdf + RELOC/doc/latex/spectralsequences/examples/HFPSS-KO.tex + RELOC/doc/latex/spectralsequences/examples/J_RPinfty.pdf + RELOC/doc/latex/spectralsequences/examples/J_RPinfty.tex + RELOC/doc/latex/spectralsequences/examples/MaySS-bo-A1.pdf + RELOC/doc/latex/spectralsequences/examples/MaySS-bo-A1.tex + RELOC/doc/latex/spectralsequences/examples/MaySS-tmf-A2.pdf + RELOC/doc/latex/spectralsequences/examples/MaySS-tmf-A2.tex + RELOC/doc/latex/spectralsequences/examples/SSS-KF3n.pdf + RELOC/doc/latex/spectralsequences/examples/SSS-KF3n.tex + RELOC/doc/latex/spectralsequences/examples/SSS-KZ3.pdf + RELOC/doc/latex/spectralsequences/examples/SSS-KZ3.tex + RELOC/doc/latex/spectralsequences/examples/hatcher.pdf + RELOC/doc/latex/spectralsequences/examples/hatcher.tex + RELOC/doc/latex/spectralsequences/examples/unstable_ASS_SO.pdf + RELOC/doc/latex/spectralsequences/examples/unstable_ASS_SO.tex + RELOC/doc/latex/spectralsequences/manual/examples/spectralsequencesmanual-KORP8.tex + RELOC/doc/latex/spectralsequences/manual/examples/spectralsequencesmanual-class-page2a.tex + RELOC/doc/latex/spectralsequences/manual/examples/spectralsequencesmanual-class-page2b.tex + RELOC/doc/latex/spectralsequences/manual/examples/spectralsequencesmanual-imJ.tex + RELOC/doc/latex/spectralsequences/manual/examples/spectralsequencesmanual-insert.tex + RELOC/doc/latex/spectralsequences/manual/examples/spectralsequencesmanual-tikz.tex + RELOC/doc/latex/spectralsequences/manual/pgfmanual-en-macros.tex + RELOC/doc/latex/spectralsequences/manual/spectralsequences-howitworks.pdf + RELOC/doc/latex/spectralsequences/manual/spectralsequences-howitworks.tex + RELOC/doc/latex/spectralsequences/manual/spectralsequencesmanual-draftmode.pdf + RELOC/doc/latex/spectralsequences/manual/spectralsequencesmanual-layoutcharts.tex + RELOC/doc/latex/spectralsequences/manual/spectralsequencesmanual.pdf details="Package documentation" + RELOC/doc/latex/spectralsequences/manual/spectralsequencesmanual.tex + RELOC/doc/latex/spectralsequences/manual/spectralsequencesmanualpreamble.tex + RELOC/doc/latex/spectralsequences/manual/sseqmanualtest.tex +runfiles size=98 + RELOC/tex/latex/spectralsequences/spectralsequences.sty + RELOC/tex/latex/spectralsequences/sseqcheckdefinitions.code.tex + RELOC/tex/latex/spectralsequences/sseqdrawing.code.tex + RELOC/tex/latex/spectralsequences/sseqforeach.code.tex + RELOC/tex/latex/spectralsequences/sseqkeys.code.tex + RELOC/tex/latex/spectralsequences/sseqloadstore.code.tex + RELOC/tex/latex/spectralsequences/sseqmacromakers.code.tex + RELOC/tex/latex/spectralsequences/sseqmain.code.tex + RELOC/tex/latex/spectralsequences/sseqmessages.code.tex + RELOC/tex/latex/spectralsequences/sseqparsers.code.tex +catalogue-contact-repository https://github.com/hoodmane/spectralsequences +catalogue-ctan /graphics/pgf/contrib/spectralsequences +catalogue-date 2019-02-19 07:50:50 +0100 +catalogue-license lppl +catalogue-topics pgf-tikz +catalogue-version 1.2.2 + +name spelling +category Package +revision 30715 +shortdesc Support for spell-checking of LuaTeX documents +relocated 1 +longdesc The package aids spell-checking of TeX documents compiled with +longdesc the LuaTeX engine. It can give visual feedback in PDF output +longdesc similar to WYSIWYG word processors. The package relies on an +longdesc external spell-checker application to check spelling of a text +longdesc file and to output a list of bad spellings. The package should +longdesc work with most spell-checkers, even dumb, TeX-unaware ones. +containersize 14072 +containerchecksum ec32c627f52e1cc08f893aff21d43519ac30169772e82793525cfd61c302883c9c0c8444f2d51cd03a94f55e1ad589afac1a404a47b87ebbe7855acde887e511 +doccontainersize 142556 +doccontainerchecksum a51b8fb45701d318dd9b9736830b83ac34c84b781d61a3a247263167d527aad7cdb6e1917ce260d09e0304fba38bb2e2a25288f75aa2335bef479918036e1221 +docfiles size=50 + RELOC/doc/luatex/spelling/CHANGES details="Record of changes" + RELOC/doc/luatex/spelling/LICENSE + RELOC/doc/luatex/spelling/README details="Readme" + RELOC/doc/luatex/spelling/spelling-doc-lst-lua.tex + RELOC/doc/luatex/spelling/spelling-doc.bad + RELOC/doc/luatex/spelling/spelling-doc.pdf details="Package documentation" + RELOC/doc/luatex/spelling/spelling-doc.tex +runfiles size=19 + RELOC/scripts/spelling/spelling-main.lua + RELOC/scripts/spelling/spelling-recurse.lua + RELOC/scripts/spelling/spelling-stage-1.lua + RELOC/scripts/spelling/spelling-stage-2.lua + RELOC/scripts/spelling/spelling-stage-3.lua + RELOC/scripts/spelling/spelling-stage-4.lua + RELOC/tex/luatex/spelling/spelling.sty +catalogue-ctan /macros/luatex/generic/spelling +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics luatex spell +catalogue-version 0.41 + +name sphack +category Package +revision 20842 +shortdesc Patch LaTeX kernel spacing macros +relocated 1 +longdesc Change the kernel internal \@bsphack/\@esphack so that it is +longdesc also invisible in vertical mode. +containersize 2216 +containerchecksum b2cd588384770e0d95bf6e5c6b67df0ba8160e0a01e3f64932d67debcf9fa836212aafc78c79b8d28aae8124a25aff73f4846db514dbfc0a65a519eba75fc52a +doccontainersize 243456 +doccontainerchecksum 6b490ee2e736a6bf1ddf32d5db605ab5fe77f079d585c2e377bda73a688a7de575b99d56c6626d9888c395f6a4d181cd0b42e77dd5673c8456bb0e029510b8d9 +docfiles size=61 + RELOC/doc/latex/sphack/sphack-doc.pdf details="Package documentation" + RELOC/doc/latex/sphack/sphack-doc.tex +runfiles size=2 + RELOC/tex/latex/sphack/sphack.sty +catalogue-ctan /macros/latex/contrib/sphack +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics macro-supp + +name sphdthesis +category Package +revision 34374 +shortdesc LaTeX template for writing PhD Thesis +relocated 1 +longdesc The package provides a LaTeX document class for writing a PhD +longdesc thesis. The author developed it while writing his PhD thesis in +longdesc School of Computing (SoC), National University of Singapore +longdesc (NUS). By default, the class adheres to the NUS Guidelines on +longdesc Format of Research Thesis Submitted For Examination. However, +longdesc the class for conformation to a different guideline should not +longdesc be difficult. +containersize 6208 +containerchecksum 44c467fc1de689bc198acfa224aa1109c47bcdfce8b161673752f73d59877465b0c4b87f1fcd4a8f589a78fb05ef5efd42edaff2fbfe7910a1ab7b409d9a7e5f +doccontainersize 550152 +doccontainerchecksum cfcd8c02c68a990cda426d737914d195c78d98e0b8c9765128aa8319d47d27163e7d072ea50d312a394b85e8ac1e580dcbd204fcf6b670b4dc519d1f09ce8d72 +docfiles size=167 + RELOC/doc/latex/sphdthesis/LICENSE + RELOC/doc/latex/sphdthesis/README details="Readme" + RELOC/doc/latex/sphdthesis/SPhdThesis.pdf details="Package documentation" + RELOC/doc/latex/sphdthesis/SPhdThesis.tex + RELOC/doc/latex/sphdthesis/example/SPhdThesis.cls + RELOC/doc/latex/sphdthesis/example/abstract.tex + RELOC/doc/latex/sphdthesis/example/acknowledgments.tex + RELOC/doc/latex/sphdthesis/example/algorithm.tex + RELOC/doc/latex/sphdthesis/example/biblio.bib + RELOC/doc/latex/sphdthesis/example/border.pdf + RELOC/doc/latex/sphdthesis/example/chapter1.tex + RELOC/doc/latex/sphdthesis/example/figure.tex + RELOC/doc/latex/sphdthesis/example/table.tex + RELOC/doc/latex/sphdthesis/example/thesis.pdf + RELOC/doc/latex/sphdthesis/example/thesis.tex +runfiles size=5 + RELOC/tex/latex/sphdthesis/SPhdThesis.cls +catalogue-contact-repository https://github.com/saurabhg17/SPhdThesis/archive/master.zip +catalogue-ctan /macros/latex/contrib/sphdthesis +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license pd +catalogue-topics dissertation +catalogue-version 1.0 + +name spie +category Package +revision 15878 +shortdesc Support for formatting SPIE Proceedings manuscripts +relocated 1 +longdesc A class and a BibTeX style are provided. +containersize 10116 +containerchecksum 282ee645ea5022fc0e325bf211b358236f07c6509883a254fa4e1ca0728fd73a4be8889e4919eb5e0ea9c203300359808b4d141d71d0c158a71a3d10d982264f +doccontainersize 134192 +doccontainerchecksum 1242f49f1499b798977eace516487543c23dca36471b1e49a2b1377a84083f40a3d5a2e316624f8ac458b61c2cfa406fc3580209c9629739dabaa2fa35e6b806 +docfiles size=44 + RELOC/doc/latex/spie/README details="Readme" + RELOC/doc/latex/spie/article.pdf details="Template and guidelines for authors" + RELOC/doc/latex/spie/article.tex + RELOC/doc/latex/spie/mcr3b.eps +runfiles size=10 + RELOC/bibtex/bib/spie/report.bib + RELOC/bibtex/bst/spie/spiebib.bst + RELOC/tex/latex/spie/spie.cls +catalogue-contact-home http://public.lanl.gov/kmh/spie/ +catalogue-ctan /macros/latex/contrib/spie +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl +catalogue-topics confproc +catalogue-version 3.25 + +name splines +category Package +revision 15878 +shortdesc MetaPost macros for drawing cubic spline interpolants +relocated 1 +longdesc This is a small package of macros for creating cubic spline +longdesc interpolants in MetaPost or Metafont. Given a list of points +longdesc the macros can produce a closed or a relaxed spline joining +longdesc them. Given a list of function values y_j at x_j, the result +longdesc would define the graph of a cubic spline interpolating function +longdesc y=f(x), which is either periodic or relaxed. +containersize 2416 +containerchecksum f040046978cf51bbaf3347406e224fe60a85f449c1fac1703e7a2d936140b099c14ffd488ebe4c3d932b35a8380f943250734a054ea5165ed26b2be712ad577c +doccontainersize 87904 +doccontainerchecksum 08532f43fb7aac979e78d30f27f36047d7b70733ef6bdd65d26a40e6818f2b73852d4a6ac5eeae8cd29fc86e1630d2ba068b9707666f66a13e2090a6da81ac25 +docfiles size=27 + RELOC/doc/metapost/splines/README details="Package README" + RELOC/doc/metapost/splines/splines.pdf details="Package documentation" +srccontainersize 6084 +srccontainerchecksum dd23ff4702f70ca2f29950e2e1c915dc96f9b0951b6f00ff94371ff80fe60f20d8de517a9d9157db9518cb51f96f1f52b8cd7f080af7760c926c5d29649844e0 +srcfiles size=5 + RELOC/source/metapost/splines/splines.dtx + RELOC/source/metapost/splines/splines.ins +runfiles size=3 + RELOC/metapost/splines/splines.mp + RELOC/metapost/splines/testsplines.mp +catalogue-ctan /graphics/metapost/contrib/macros/splines +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics graphics-mpost +catalogue-version 0.2 + +name splitbib +category Package +revision 15878 +shortdesc Split and reorder your bibliography +relocated 1 +longdesc This package enables you to split a bibliography into several +longdesc categories and subcategories. It does not depend on BibTeX: any +longdesc bibliography may be split and reordered. +containersize 4852 +containerchecksum 2936732fdcebff683e240e139ba6e1e4268dc72e427bd30af0590cc3dd7dcc8dd49eaf6f007e549efc5c429fbcea2b37f9e68040d1ffb023162c571341abdb40 +doccontainersize 143484 +doccontainerchecksum df266ae77aaccf91b08931c57b01a9eefffe6a469c4cc549ce41640dc9c9041676539e1302aecfed88d19baef277f507ede8ba6f794dae6ea4745b1338459d14 +docfiles size=42 + RELOC/doc/latex/splitbib/README details="Readme" + RELOC/doc/latex/splitbib/splitbib.pdf details="Package documentation" +srccontainersize 11124 +srccontainerchecksum 72a8da016f943df7f5e2d7cb05cd1a64e222ec0c3be784ac21e6aa5f571c9e76cc3e8a5716444aa1033d5127af8d82df5cd632a884fe17f08c55e08d38956e3c +srcfiles size=14 + RELOC/source/latex/splitbib/splitbib.dtx + RELOC/source/latex/splitbib/splitbib.ins +runfiles size=7 + RELOC/tex/latex/splitbib/splitbib.sty +catalogue-ctan /macros/latex/contrib/splitbib +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics cite-supp +catalogue-version 1.17 + +name splitindex +category Package +revision 39766 +shortdesc Unlimited number of indexes +longdesc SplitIndex consists of a LaTeX package, splitidx, and a small +longdesc program, splitindex. The package may be used to produce one +longdesc index or several indexes. Without splitindex (for example, +longdesc using the index package), the number of indexes is limited by +longdesc the number of TeX's output streams. But using the program you +longdesc may use even more than 16 indexes: splitidx outputs only a +longdesc single file \jobname.idx and the program splits that file into +longdesc several raw index files and calls your favorite index processor +longdesc for each of the files. +depend splitindex.ARCH +containersize 8084 +containerchecksum 858033eadfa82b4e40a388356f64002370a5f4fc2c95565eae90c68373f708a3c9827fc4e0ba8094659382aba4e5925cba86632733b15d85ea6a82f73ace8737 +doccontainersize 442388 +doccontainerchecksum c8dd92e955fcccf71b412d9750fff7b6f214e929ddf194a6496a79a146f4837af3d773ed3f2303546727cc4a8fb9d5366dd75b64d3877e6121ce20315f71997a +docfiles size=114 + texmf-dist/doc/latex/splitindex/README details="Readme" + texmf-dist/doc/latex/splitindex/install.txt + texmf-dist/doc/latex/splitindex/manifest.txt + texmf-dist/doc/latex/splitindex/splitidx.pdf details="Package documentation" + texmf-dist/doc/man/man1/splitindex.1 + texmf-dist/doc/man/man1/splitindex.man1.pdf +srccontainersize 24252 +srccontainerchecksum 8aa928bdf6f2e8fb6274c1fe8d0b4567d03a1c6ffbd078726bf6a36ff1bdab981d5150cf0250602a64d2a0a9be92695fdd399c04d041b7a9579a7d3a71910151 +srcfiles size=29 + texmf-dist/source/latex/splitindex/install.sh + texmf-dist/source/latex/splitindex/splitidx.dtx + texmf-dist/source/latex/splitindex/splitidx.ins + texmf-dist/source/latex/splitindex/splitindex.c + texmf-dist/source/latex/splitindex/splitindex.java +runfiles size=10 + texmf-dist/scripts/splitindex/splitindex.pl + texmf-dist/scripts/splitindex/splitindex.tlu + texmf-dist/scripts/splitindex/splitindex_main.tlu + texmf-dist/tex/generic/splitindex/splitindex.tex + texmf-dist/tex/latex/splitindex/splitidx.sty +catalogue-ctan /macros/latex/contrib/splitindex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics index-multi index +catalogue-version 1.2c + +name splitindex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of splitindex +containersize 344 +containerchecksum 597ab388e3f37d66dbf85d87bc91fdf971b420e57b1ccb93ec00c7529fe9c6d52a53835beee9463ef11a5585099cdfe7fdb2c04cc7864560f4b4cdf99d22d9b2 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/splitindex + +name splitindex.amd64-freebsd +category Package +revision 29688 +shortdesc amd64-freebsd files of splitindex +containersize 344 +containerchecksum 8b447ca0f0e43024ca4f260b6d1283900d1bff78fe57cb065c41f3904b8f08394fa8f827f2c00d858053938c5931bb2c0ff21c9d6d9c7679bed390f1084a19df +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/splitindex + +name splitindex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of splitindex +containersize 344 +containerchecksum 83a09488ff6497aa999f5e2d1aa7159936aad38cf3f17587d11bedb07eec46eae0c057148632421178c066b4836b981d7d539276f757f76d224803f0d906feb6 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/splitindex + +name splitindex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of splitindex +containersize 344 +containerchecksum 0d16db703cae4444d0b6dd35aa531bfb586fd143f3fb45a05f348e69a3369633e535df12bd105a91fa3287f7b9e3192a181f5a029243788634af0c15a8b47911 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/splitindex + +name splitindex.i386-cygwin +category Package +revision 29688 +shortdesc i386-cygwin files of splitindex +containersize 340 +containerchecksum 990bfdf7e2965d28bf2c514e839e0aa2fa5b26177eccab3542e608924f6e3a11b26aa86084b970de2da1b92ee88959dc172079939e07a5cbefff841502930e19 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/splitindex + +name splitindex.i386-freebsd +category Package +revision 29688 +shortdesc i386-freebsd files of splitindex +containersize 344 +containerchecksum e9fcd4be380388deb9fd13513cc72d58335b58741a806473692d9c7f0a6579a5f9669affe69a147b2a28a5569a6bc00ada4c598dfcd788c4be582270417b15a8 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/splitindex + +name splitindex.i386-linux +category Package +revision 29688 +shortdesc i386-linux files of splitindex +containersize 344 +containerchecksum 662f86f37cc1a41fce855794fcd169d75cdd7fc18524303a85705f2ba21d1426cef67d784afa7db7d934012ea4060544c70c605621f364a5c4ce7eb09e34d5d9 +binfiles arch=i386-linux size=1 + bin/i386-linux/splitindex + +name splitindex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of splitindex +containersize 344 +containerchecksum b9db07b1826e5864b8616beec23c0ece8b77ea372cbeba8139229fe4eab59b53dde420741cbbdfc1261537110c330d3d1f9b94e22b063633cd50320fc37a8008 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/splitindex + +name splitindex.i386-solaris +category Package +revision 29688 +shortdesc i386-solaris files of splitindex +containersize 344 +containerchecksum 4106ce2ecce161de57f735c43064548ea149ab47c9003444662d0ee75a362106a30ea1ff7d9384b3d4e2209c5c10c24ed5dddc3fd6a8ef269aa23d155b320188 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/splitindex + +name splitindex.win32 +category Package +revision 15404 +shortdesc win32 files of splitindex +containersize 688 +containerchecksum 1d66c05e385fac18df6db7acbf7317e2307c4a55712ef2ba8cbba27fe276ad3138f6b792623bca2e444beeddf075cc09f3fb7c8ba9745e567816106d4ec304d0 +binfiles arch=win32 size=1 + bin/win32/splitindex.exe + +name splitindex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of splitindex +containersize 344 +containerchecksum c86305ce621b51d715eb6b92f68db26ea8446d4cb7aa63383af8815d66a07eb01443e3c46a33cb99c072350685a7391c3052f430fbe67cd6b49fb76dce00ff23 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/splitindex + +name splitindex.x86_64-darwin +category Package +revision 29688 +shortdesc x86_64-darwin files of splitindex +containersize 344 +containerchecksum 5302917f3dc86cf2824316e8c64c64fc3d77c892f4b00be574f4d08ef599817d2a80507975a42f6dfdb8eca29020339dd7257270ea5e9757233e164ad2fa6242 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/splitindex + +name splitindex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of splitindex +containersize 352 +containerchecksum 58c14e0ad695635361ab4f0da2b038bd6ef2aad87eeed38703bbc47b8bbce44c9ec4429b374f9f8d4bcad8fa3579724be27e895a511137da85417be94f8145bb +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/splitindex + +name splitindex.x86_64-linux +category Package +revision 29688 +shortdesc x86_64-linux files of splitindex +containersize 344 +containerchecksum 345192d4510da26ff6d9cb2353f892e7111d02d16918d0ebd310ee554d076e35cb96074066fa50baf341c11dc267ff8666e78b9eaa7e86a75e754e68a91a1371 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/splitindex + +name splitindex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of splitindex +containersize 348 +containerchecksum 1d5a03d064c499d4b5386142837d70e7a173fc8266088a9bfec24469452b7241fdf00457599886b514c96342105426b81580f445c15d8c8f91ee2d7a767c9305 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/splitindex + +name splitindex.x86_64-solaris +category Package +revision 29688 +shortdesc x86_64-solaris files of splitindex +containersize 344 +containerchecksum f2433a6b7d94c71d65363e8394024cc5bf90eddff96ecc7b99b52d9e1a8702048fed6ed9b695d99b6837810520627da0e71853106f9537ce25cd73b0198bd57d +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/splitindex + +name spot +category Package +revision 22408 +shortdesc Spotlight highlighting for Beamer +relocated 1 +longdesc The package allows dramatic highlighting of words and phrases +longdesc by painting shapes around them. It is chiefly intended for use +longdesc in Beamer presentations, but it can be used in other document +longdesc classes as well. +containersize 2520 +containerchecksum 95a7bf0a9e04e7157fe27499a7a2d2bf3e8d86f284e9c2d150c40b5efc1786d4820af20ccde7f5b649a775d7a13d25a78347138a200335fc0b9e4165dd3e1f0e +doccontainersize 233272 +doccontainerchecksum 26ee8b13622a46078e8199c818dc353801af36afdbf67707a6942202fa458e7cbe9a000a4ea022d0dc4ec6ddb3a63c6adadf240cf207778765e47b2db636ea5b +docfiles size=64 + RELOC/doc/latex/spot/README details="Readme" + RELOC/doc/latex/spot/spot.pdf details="Package documentation" +srccontainersize 9784 +srccontainerchecksum 96438aef76ade4df7f4f49d819f96792a28dcf3a0f5e50498f854c047a7754accd31d679d034886eafbfd32c0d4eb941e8a888a1ea94fb332b8b48912d0f673f +srcfiles size=9 + RELOC/source/latex/spot/spot.dtx + RELOC/source/latex/spot/spot.ins +runfiles size=2 + RELOC/tex/latex/spot/spot.sty +catalogue-ctan /macros/latex/contrib/beamer-contrib/spot +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics presentation +catalogue-version 1.1 + +name spotcolor +category Package +revision 15878 +shortdesc Spot colours for pdfLaTeX +relocated 1 +longdesc This package provides procedures for using spot colours in +longdesc LaTeX documents and the generated pdf files. Predefined +longdesc templates for PANTONE and HKS colour spaces are included but +longdesc new ones can easily be defined. +containersize 8944 +containerchecksum 6748982e7007323414dd8ca5f1ede105bb2bfd0b0f8d2f83c8731926628c094c8c08f0cf4ddadbaa209e182f8af83ed6fb761142ecbb97371752473b33c44ffa +doccontainersize 57820 +doccontainerchecksum 4055f42161bd45dee74974358eabda875e9a3d62690fec0486748cd7fe974af133c24e56bcfd240c6928334fd9c7e1e6a6935c45b974760b41f7ce080d44f568 +docfiles size=99 + RELOC/doc/latex/spotcolor/README details="Readme" + RELOC/doc/latex/spotcolor/readme.pdf details="Package documentation" + RELOC/doc/latex/spotcolor/readme.tcp + RELOC/doc/latex/spotcolor/readme.tex +runfiles size=27 + RELOC/tex/latex/spotcolor/spotcolor.sty + RELOC/tex/latex/spotcolor/spotcolorhks.tex + RELOC/tex/latex/spotcolor/spotcolorpantone.tex +catalogue-ctan /macros/latex/contrib/spotcolor +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics colour +catalogue-version 1.2 + +name spreadtab +category Package +revision 50147 +shortdesc Spreadsheet features for LaTeX tabular environments +relocated 1 +longdesc The package allows the user to construct tables in a manner +longdesc similar to a spreadsheet. The cells of a table have row and +longdesc column indices and these can be used in formulas to generate +longdesc values in other cells. +containersize 21928 +containerchecksum e662188fc94f3f31031238a9b20ce617b01adb65dfcb5ba00cc0f90555a151957747e9b24803436d0815528d945e3a65684ebffc04dc5de2552989c81bc80846 +doccontainersize 1089920 +doccontainerchecksum e7e1184c6d5013a5f991325e1f47b509b90f32022530281263bd5b1c0d9c9082a872f9b6ece3198ccdca555e1187546762c8fb4fcec9a75f72894f6fb49825c4 +docfiles size=343 + RELOC/doc/latex/spreadtab/README details="Readme" + RELOC/doc/latex/spreadtab/spreadtab-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/spreadtab/spreadtab-en.tex + RELOC/doc/latex/spreadtab/spreadtab-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/spreadtab/spreadtab-fr.tex +runfiles size=25 + RELOC/tex/latex/spreadtab/spreadtab.sty +catalogue-contact-bugs https://framagit.org/unbonpetit/spreadtab/issues +catalogue-contact-repository https://framagit.org/unbonpetit/spreadtab/tree/master +catalogue-ctan /macros/latex/contrib/spreadtab +catalogue-date 2019-02-27 09:37:31 +0100 +catalogue-license lppl1.3c +catalogue-topics table +catalogue-version 0.5 + +name spverbatim +category Package +revision 15878 +shortdesc Allow line breaks within \verb and verbatim output +relocated 1 +longdesc LaTeX's \verb macro treats its argument as an unbreakable unit +longdesc of text. This can lead to poor typesetting, especially when the +longdesc argument is long. The spverbatim package provides an \spverb +longdesc macro that is analogous to \verb and an spverbatim environment +longdesc that is analogous to verbatim with the difference being that +longdesc \spverb and spverbatim allow LaTeX to break lines at space +longdesc characters. +containersize 1196 +containerchecksum 0b26e941f77264ae2db7cdcf2c4459c26601f6079e0bad24a3ea0edbd22157c324bbf50426a794655dc1aee710092cd9b662bb401838186e42657fcef5c1121f +doccontainersize 101460 +doccontainerchecksum 245825f18ae835b984eb6474b927a579f80b6c6feefbfe02a53f8b7ea5a48023e1bdb43b39f090afe4ae42937d053cbebfec6ff97d7732d754287401a95fc641 +docfiles size=30 + RELOC/doc/latex/spverbatim/README details="Readme" + RELOC/doc/latex/spverbatim/spverbatim.pdf details="Package documentation" +srccontainersize 3612 +srccontainerchecksum 23f8eb04b0debee1c9babc4ee6720740a4e64a28969365c27c96113cd777e0565b19d8f6db233470cc600733b1831463881d86eaf4b4119cf60bd3fbbf3d0597 +srcfiles size=4 + RELOC/source/latex/spverbatim/spverbatim.dtx + RELOC/source/latex/spverbatim/spverbatim.ins +runfiles size=1 + RELOC/tex/latex/spverbatim/spverbatim.sty +catalogue-ctan /macros/latex/contrib/spverbatim +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics verbatim +catalogue-version 1.0 + +name sr-vorl +category Package +revision 39529 +shortdesc Class for Springer books +relocated 1 +longdesc This package provides a LaTeX class and templates for books to +longdesc be published at Springer Gabler Research, Springer Vieweg +longdesc Research, Springer Spektrum Research, Springer VS Research, or +longdesc Springer VS Forschung. It may be used to produce monographs in +longdesc different formats and "several-authors-books" fitting the +longdesc conditions of the aforementioned publishers. +containersize 3720 +containerchecksum 135186b501bcf2a9b338ff13e330401ae3ca39db4225f639549cc929991d2177804b44ddbaec805ec1cd56982b140cec4625e7564fad7f4de89d2c2e06ad60d8 +doccontainersize 447828 +doccontainerchecksum a65dc0b7a12b5435d753aeeaca7643747c94463835cf1706e042710272cc0eef66d4f5f827c99034f9126bcbbf7e41293196f9ee29ed3f9961b9af27e2879747 +docfiles size=115 + RELOC/doc/latex/sr-vorl/README details="Readme" + RELOC/doc/latex/sr-vorl/backmatter_sr-vorl.tex + RELOC/doc/latex/sr-vorl/frontmatter_sr-vorl.tex + RELOC/doc/latex/sr-vorl/hauptdatei_sr-vorl.tex + RELOC/doc/latex/sr-vorl/mainmatter_sr-vorl.tex + RELOC/doc/latex/sr-vorl/sr-vorl.pdf details="Package documentation" +srccontainersize 17404 +srccontainerchecksum f41d126426035fa0d1cf6564d9eb4966618a1c8f805bca3097a5f7e72c62a12c9d8e39b6830f9b1e356940b67bd99803e869d849949854a1a17da4c7ba971195 +srcfiles size=17 + RELOC/source/latex/sr-vorl/sr-vorl.dtx + RELOC/source/latex/sr-vorl/sr-vorl.ins +runfiles size=3 + RELOC/tex/latex/sr-vorl/sr-vorl.cls +catalogue-ctan /macros/latex/contrib/springer/sr-vorl +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics book-pub class +catalogue-version 1.1 + +name srbook-mem +category Package +revision 45818 +catalogue serbian-book +shortdesc Support for use of memoir in Serbian +relocated 1 +longdesc The package provides a number of commands for adjusting memoir +longdesc output to Serbian style. +containersize 1084 +containerchecksum 5cae41da74957078b2b0ed38c9fa4186006f24abca804b879641b4bff5324950b1a59296c5733fcadd2ef05661ff1dba8cd7d9a2c5f9e2a5c6bc1e6d993ff218 +doccontainersize 263956 +doccontainerchecksum 5e06fb85b3398cc65372fc0c82eaae3d807c6c908eedbfa8f4ea593ea6213790c3fe9c5142990a9b7d4c267ed01cd61aef4fb950a0c2b51424b0ef5e1f2aa520 +docfiles size=76 + RELOC/doc/latex/srbook-mem/README details="Readme" + RELOC/doc/latex/srbook-mem/SerbianBookMem.pdf details="Package documentation" + RELOC/doc/latex/srbook-mem/SerbianBookMem.tex + RELOC/doc/latex/srbook-mem/Test.pdf + RELOC/doc/latex/srbook-mem/Test.tex + RELOC/doc/latex/srbook-mem/TestLight.pdf + RELOC/doc/latex/srbook-mem/TestLight.tex +runfiles size=1 + RELOC/tex/latex/srbook-mem/srbook-mem.sty +catalogue-ctan /macros/latex/contrib/srbook-mem +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics book-pub serbian + +name srcltx +category Package +revision 15878 +shortdesc Jump between DVI and TeX files +relocated 1 +longdesc Provides a \special insertion into generated .dvi files +longdesc allowing one to jump from the .dvi file to the .tex source and +longdesc back again (given a .dvi viewer that supports this, such as Yap +longdesc or xdvi version 22.38 or later). This was originally written by +longdesc Aleksander Simonic, the author of the WinEdt shell. +containersize 2344 +containerchecksum 2edad3f8b56fafc034d94a3e3240190a8f4f1a1054c9b81d6dd9fa5426abaec0b29118f7bbec909ffc3534693b8941fd4e44b6670d7dbcb852fa3a056ba63fad +doccontainersize 109796 +doccontainerchecksum 1f8428bccf142790a3221d470fb66dcfba40552da0d8aeb9cab62732c5a5ee0af3a565774e29822ebcf0c1e4d7a2bfffc61a0944b762ffbb7ff4e8901a61ab48 +docfiles size=33 + RELOC/doc/latex/srcltx/README details="Package Readme" + RELOC/doc/latex/srcltx/srcltx.pdf details="Package documentation" +srccontainersize 8676 +srccontainerchecksum 497aa5f6bd5dcbb354a4abf74bf8276898148f42083a0657ac9dfeb4374038b4f8003b3ace3b4d65b2a08334c1cccafda371e8546def7e44f823212c257d42a3 +srcfiles size=8 + RELOC/source/latex/srcltx/srcltx.dtx + RELOC/source/latex/srcltx/srcltx.ins +runfiles size=3 + RELOC/tex/latex/srcltx/srcltx.sty + RELOC/tex/latex/srcltx/srctex.sty +catalogue-ctan /macros/latex/contrib/srcltx +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics debug-supp +catalogue-version 1.6 + +name srcredact +category Package +revision 38710 +shortdesc A tool for redacting sources +longdesc This package provides a tool to keep a master source, +longdesc consisting of different "chunks" intended for different +longdesc audiences. The tool allows to extract the versions intended for +longdesc different audiences and to incorporate the changes made in any +longdesc of these versions into the master document. This work was +longdesc commissioned by the Consumer Financial Protection Bureau, +longdesc United States Treasury. +depend srcredact.ARCH +containersize 4240 +containerchecksum 9e11ed88fbbfc0130f43fdecd8fb0b3eecbdf50eb33bdca57bd34c860cdfe84dcd560371efba4cb261e65aaf4577306f478d1c43ed89152e7e21fd627eb7328d +doccontainersize 384380 +doccontainerchecksum dba9916acf75e800af1e581b4276e82bfe4c421a500a400773354766b37849568c1f19752a75983374ca41f793903f9776423888215f00376db1e0f5f3b3dbbc +docfiles size=203 + texmf-dist/doc/man/man1/srcredact.1 + texmf-dist/doc/man/man1/srcredact.man1.pdf + texmf-dist/doc/support/srcredact/Makefile + texmf-dist/doc/support/srcredact/README details="Readme" + texmf-dist/doc/support/srcredact/srcredact.pdf details="Package documentation" + texmf-dist/doc/support/srcredact/srcredact.pod + texmf-dist/doc/support/srcredact/srcredact.tex + texmf-dist/doc/support/srcredact/twain-edited.tex + texmf-dist/doc/support/srcredact/twain1-default.pdf + texmf-dist/doc/support/srcredact/twain1-default.tex + texmf-dist/doc/support/srcredact/twain1-nobonds.pdf + texmf-dist/doc/support/srcredact/twain1-nobonds.tex + texmf-dist/doc/support/srcredact/twain1-uppercase.pdf + texmf-dist/doc/support/srcredact/twain1-uppercase.tex + texmf-dist/doc/support/srcredact/twain1.tex + texmf-dist/doc/support/srcredact/twain2-default.pdf + texmf-dist/doc/support/srcredact/twain2-default.tex + texmf-dist/doc/support/srcredact/twain2-nobonds.pdf + texmf-dist/doc/support/srcredact/twain2-nobonds.tex + texmf-dist/doc/support/srcredact/twain2-uppercase.pdf + texmf-dist/doc/support/srcredact/twain2-uppercase.tex + texmf-dist/doc/support/srcredact/twain2.tex +runfiles size=3 + texmf-dist/scripts/srcredact/srcredact.pl +catalogue-ctan /support/srcredact +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl2 +catalogue-topics cond-comp +catalogue-version 1.0 + +name srcredact.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of srcredact +containersize 344 +containerchecksum b563ab8959bcd2366a3b7ff70f11477e7d53b45ef6336b9c29fdbdc1e783d135624c4fae65e420f9cba27bfcd98164151b9e6950bb2d30214d0c8110a0d6d35c +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/srcredact + +name srcredact.amd64-freebsd +category Package +revision 38710 +shortdesc amd64-freebsd files of srcredact +containersize 344 +containerchecksum e477b056b20dac19f0e2c88e0ee7fde8eee45c4b7c27a959c3183f2a10e1153b625a6684e105f6e70a665558ac4a924f152c04211c8a8ba69a048a8797fe2c43 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/srcredact + +name srcredact.amd64-netbsd +category Package +revision 38710 +shortdesc amd64-netbsd files of srcredact +containersize 340 +containerchecksum befafe2b95b307f4b1d89a7f8e438647c687f8d68d87dc8a45ad0d940df3568d80f62ab954157285c5e7564764fa31eb52870b22270a79a4404a722f73eac442 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/srcredact + +name srcredact.armhf-linux +category Package +revision 38710 +shortdesc armhf-linux files of srcredact +containersize 340 +containerchecksum a176b2669baf38b90c0aaa94d1322acbce24ec2bf360333d3e381b4f5f6c1f8fbdc481d786d7eaa199bd30eed65a962cb6e88e4a1cbc1416f2f992f11dbfe781 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/srcredact + +name srcredact.i386-cygwin +category Package +revision 38710 +shortdesc i386-cygwin files of srcredact +containersize 336 +containerchecksum 63f21d722a509af23985fd49074bb9bbd395a5d9f0e7adf077f7d5b6121de3df953d176cd7ba9b22887a29b14482ea4429d90f5ce7778ea0286bc012c72ed0b7 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/srcredact + +name srcredact.i386-freebsd +category Package +revision 38710 +shortdesc i386-freebsd files of srcredact +containersize 344 +containerchecksum e92e58127e0b79ba6ba24c5d1f33e399656eda9284f351768e27308471b9a78b2ccc93c89ea89424e028f02d6cc28f55f63d2cfe3858e0fd2a715e7bba68b6a4 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/srcredact + +name srcredact.i386-linux +category Package +revision 38710 +shortdesc i386-linux files of srcredact +containersize 344 +containerchecksum 94d72ff5f3aab525c3b6d0b82ac9622dff36e493be6859e3821fcaece59b3ae3b371d2ee53e76c2c7cec7201402f3c5867e1dce6e1f62ba2249ab8abe3c2cfd5 +binfiles arch=i386-linux size=1 + bin/i386-linux/srcredact + +name srcredact.i386-netbsd +category Package +revision 38710 +shortdesc i386-netbsd files of srcredact +containersize 340 +containerchecksum 5e7db6ee44e9b3ebc27588a09d8acf8b79642769ebd6bc390b57ee426297bf47c9c4d695a71deeabecb6ab2d080ef7ba9f732c250a7fbf46cb7ac5aab9ad6dc0 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/srcredact + +name srcredact.i386-solaris +category Package +revision 38710 +shortdesc i386-solaris files of srcredact +containersize 340 +containerchecksum b9093f8c774fd1700049e3756d505ea1115dd252a67983e9855ff8703afe506015d65391ac38ed3d82257ff77de11d936b69f57c4519c9be7a498e22821d3688 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/srcredact + +name srcredact.win32 +category Package +revision 38710 +shortdesc win32 files of srcredact +containersize 684 +containerchecksum 8736d8d3d36f4e2d321f913831f4ecd28ecf4c97d1f2d425f04b5777d1b5a871d31b7105f8fb4fbee41d1599b5c2b15364dd4fa4b9443b6d3cb8d1c44ee85668 +binfiles arch=win32 size=1 + bin/win32/srcredact.exe + +name srcredact.x86_64-cygwin +category Package +revision 38710 +shortdesc x86_64-cygwin files of srcredact +containersize 344 +containerchecksum ef21610e47c5d5a1437cc79570c36c69d48a3bd905a6c2c9d988b07073b16114cac5ae807b6b6f383ae1bcfa61ca6627b7862116761c5b5de0ce58218f479259 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/srcredact + +name srcredact.x86_64-darwin +category Package +revision 38710 +shortdesc x86_64-darwin files of srcredact +containersize 344 +containerchecksum f3f27056e3e86a52b5414413569053933dcf68652c8fbc66de3a2d4cbe55617967fe43f505fac3fd500d9c261976dc0b1bf58567a8d65296c21578e92313b1d3 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/srcredact + +name srcredact.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of srcredact +containersize 348 +containerchecksum f290920edd5998ee675a2161dd6718f65e8c00e7946096598eba1de3910a9c51b55d2114f15057e159411baec954205858e6af2f344d17b101cb3bfffa452df4 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/srcredact + +name srcredact.x86_64-linux +category Package +revision 38710 +shortdesc x86_64-linux files of srcredact +containersize 340 +containerchecksum 1f3b9e8d45d1fd51e575b87e17adb46d197642237e35a9697fbe7ea7eb76a76eee6089903bb84d3868148b5ab175650001da8eb1c9b61a647f63a64b00c4af5f +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/srcredact + +name srcredact.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of srcredact +containersize 348 +containerchecksum 86e5e28a205e68127261213365ffbeba0b3898492d013f8535baa7e9aab012062eb1eabd64237d77882fba442d771b905c5c6a8cd2a2d65fa687197f6364c39b +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/srcredact + +name srcredact.x86_64-solaris +category Package +revision 38710 +shortdesc x86_64-solaris files of srcredact +containersize 340 +containerchecksum 21737c264b7ce73832e659a4c2beb7e7410937e8c6a90666d49a0c32a37774c98fd237d1d4e008efb6f0cd80a4122d0ff01171f28c77da2f3c31ffde752b1090 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/srcredact + +name srdp-mathematik +category Package +revision 49706 +shortdesc Typeset Austrian SRDP in mathematics +relocated 1 +longdesc This package provides basic commands for the defined formats of +longdesc the Austrian sRDP (Standardisierte Reife- und Diplomprufung) in +longdesc mathematics. Furthermore, it includes ways to implement answers +longdesc in the tex file which can optionally be displayed in the pdf +longdesc file, and it offers a way to vary the answers in order to +longdesc create different groups (e. g. for tests) easily. +containersize 6616 +containerchecksum 23ed13fe15c64960ca7e79e76386ccb4f86b27c9c21c6768995040535d0c17f5989f698d7915fa4add1dfbd02d001b6ff63679d8efc45ff30d633ed44a8dfc9f +doccontainersize 124392 +doccontainerchecksum 3e3ab92d16afd89bd8130206049ec1aab5cfd393852e6a5a39a4d27c77b919baf3fb97915b9e7bbdc82c77e1b3c55dc379567eb1e3cf1a366d9bc12cc2154f7b +docfiles size=47 + RELOC/doc/latex/srdp-mathematik/README.txt details="Readme" + RELOC/doc/latex/srdp-mathematik/srdp-mathematik.pdf details="Package documentation" + RELOC/doc/latex/srdp-mathematik/srdp-mathematik.tex +runfiles size=17 + RELOC/tex/latex/srdp-mathematik/srdp-mathematik.sty +catalogue-ctan /macros/latex/contrib/srdp-mathematik +catalogue-date 2019-01-14 18:24:52 +0100 +catalogue-license lppl1.3c +catalogue-topics exam maths +catalogue-version 1.2 + +name sseq +category Package +revision 31585 +shortdesc Typesetting spectral sequence charts +relocated 1 +longdesc The package provides commands to draw spectral sequence +longdesc diagrams, providing facilities for clipping and arranging +longdesc multiple symbols so that they do not overlap. The package is +longdesc built using pgf, and shares that systems large demands for TeX +longdesc system memory. Its geometric commands are based on a turtle +longdesc graphics model, and control structures such as loops and +longdesc conditionals are available. +containersize 8160 +containerchecksum 25d3d2af859d8ce83f7449470be02bc4bc77b8ac49c4e10f49fdca51b0a85488f01cbf5f826b07fba12806c932125a35197be2c7bcc330f9b6f51a331fbc77c6 +doccontainersize 215196 +doccontainerchecksum 3b5516fa412aa19fe8f3d23706b3046b6af698e8307db32cb895fb13eb876032c5c3fc908a69f0e18efc2ac5802a95957246d58248dd05e1fe25409d46a8bd20 +docfiles size=53 + RELOC/doc/latex/sseq/sseq.pdf details="Package documentation" +srccontainersize 16176 +srccontainerchecksum b86247430a144ef73ce271b904096368291a6581de3e1c7627d38751c102256e77d82963d86956d9a9dc8e2fa16aa6b8b0a15dd02b4468cda88f70b19e856711 +srcfiles size=17 + RELOC/source/latex/sseq/sseq.dtx + RELOC/source/latex/sseq/sseq.ins +runfiles size=10 + RELOC/tex/latex/sseq/sseq.sty +catalogue-ctan /macros/latex/contrib/sseq +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics maths +catalogue-version 2.01 + +name sslides +category Package +revision 32293 +shortdesc Slides with headers and footers +relocated 1 +longdesc The class provides a variant of the LaTeX standard slides +longdesc class, in which the user may add headers and footers to the +longdesc slide. +containersize 1116 +containerchecksum 5809b9968b16d35d5f76f185687c683512883942f8ff3537a7dafef3a76e5fb017a4bed36dfd102fb5edb93648148861c78f6f7e93aaea8c5cbc8113c05278a7 +doccontainersize 22356 +doccontainerchecksum 4a0fde19b43390f80d6d671933ba51b0be854d774d6f35f3e8fb33653ef7784df85871dc4fdec03f2c734e819af6c1098e8be152e0bd42740ec2f4ae53c38f4a +docfiles size=12 + RELOC/doc/latex/sslides/land-sample-slide.pdf details="Sample (landscape) slides" + RELOC/doc/latex/sslides/land-sample-slide.tex + RELOC/doc/latex/sslides/port-sample-slide.pdf + RELOC/doc/latex/sslides/port-sample-slide.tex +runfiles size=1 + RELOC/tex/latex/sslides/sslides.cls +catalogue-ctan /macros/latex/contrib/sslides +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics presentation + +name stack +category Package +revision 15878 +shortdesc Tools to define and use stacks +relocated 1 +longdesc The package provides a small set of commands to implement +longdesc stacks independently of TeX's own stack. As an example of how +longdesc the stacks might be used, the documentation offers a small +longdesc "relinput" package that implements the backbone of the import +longdesc package. +containersize 1812 +containerchecksum 897ca71e1a8531485d9807743e4549a994f5e6e22dbb9a958466d4bfc7fb1b4579af0d7ef701146b8142c394fcbfca70bfdf28779530e487a0ec868c77985c23 +srccontainersize 4104 +srccontainerchecksum d10c0b9555df5643d266cfcbc51970cb7d606c80053225e4c3891b49f59fd9831c89f8be97d41e3e70b8855defb2af709190631e71a470a061959486162d5ed1 +srcfiles size=4 + RELOC/source/latex/stack/stack.dtx + RELOC/source/latex/stack/stack.ins +runfiles size=2 + RELOC/tex/latex/stack/relinput.sty + RELOC/tex/latex/stack/stack.sty +catalogue-ctan /macros/latex/contrib/stack +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1.00 + +name stackengine +category Package +revision 43221 +shortdesc Highly customised stacking of objects, insets, baseline changes, etc +relocated 1 +longdesc The package provides a versatile way to stack objects +longdesc vertically in a variety of customizable ways. A number of +longdesc useful macros are provided, all of which make use of the +longdesc stackengine core. +containersize 5072 +containerchecksum a030fa3c9bf8153c4ab387b7906788640f4b8d36f3f1a67392db5e2d5f62cd9e421231a92611555df2011b03318b06023194a7bcaea6ad1108de945bdff787cb +doccontainersize 339824 +doccontainerchecksum e395c609c2160160c0892c5af1d197943ac6cce21c59ab489239b41877bd97fc70b75f1313118f3202b5d53ffe5f2537f5f084490dc70eb1e2f56dcb8bd208f0 +docfiles size=102 + RELOC/doc/latex/stackengine/README details="Readme" + RELOC/doc/latex/stackengine/stackengine.pdf details="Package documentation" + RELOC/doc/latex/stackengine/stackengine.tex +runfiles size=4 + RELOC/tex/latex/stackengine/stackengine.sty +catalogue-ctan /macros/latex/contrib/stackengine +catalogue-date 2017-02-13 14:03:10 +0100 +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 4.01 + +name stage +category Package +revision 44100 +shortdesc A LaTeX class for stage plays +relocated 1 +longdesc Stage.cls is a LaTeX class for creating plays of any length in +longdesc a standard manuscript format for production and submission. +containersize 2964 +containerchecksum 60ca903a632f328bff8595d3dd076495409ae27045dbcab56493d05496c885de101cb3d6c77745291c661847bac2da5e41dc22f6e08f52c36957c997f1a90fc0 +doccontainersize 153676 +doccontainerchecksum 96c32c5f5c272a521fa0efd94571fcdced21fcf582e7d94f503a46559a2f32a341e98f7c6b6f681c0b9918a63cf7a6bf6f90f628f87add2f7b60404e3d451d3d +docfiles size=41 + RELOC/doc/latex/stage/README details="Package README" + RELOC/doc/latex/stage/stage-documentation.pdf details="Package documentation" + RELOC/doc/latex/stage/stage-documentation.tex +runfiles size=2 + RELOC/tex/latex/stage/stage.cls +catalogue-contact-bugs https://github.com/rrthomas/stage/issues +catalogue-contact-development https://github.com/rrthomas/stage +catalogue-contact-home https://github.com/rrthomas/stage +catalogue-contact-repository https://github.com/rrthomas/stage +catalogue-ctan /macros/latex/contrib/stage +catalogue-date 2017-04-27 23:31:51 +0200 +catalogue-license lppl1.3 +catalogue-topics drama-script +catalogue-version 1.00 + +name standalone +category Package +revision 47136 +shortdesc Compile TeX pictures stand-alone or as part of a document +relocated 1 +longdesc A class and package is provided which allows TeX pictures or +longdesc other TeX code to be compiled standalone or as part of a main +longdesc document. Special support for pictures with beamer overlays is +longdesc also provided. The package is used in the main document and +longdesc skips extra preambles in sub-files. The class may be used to +longdesc simplify the preamble in sub-files. By default the preview +longdesc package is used to display the typeset code without margins. +longdesc The behaviour in standalone mode may adjusted using a +longdesc configuration file standalone.cfg to redefine the standalone +longdesc environment. +containersize 11896 +containerchecksum 48fdadf3c9e7b899ad75953baeaa9f47384d1bcea0ae08c94ee51b4f2fabfe2fa244a0b9a77f11fd038aa106551c4cb9e0ceb06292ab1ff7bf6802a65ad677fe +doccontainersize 270488 +doccontainerchecksum a5cb35587d86034c38584218b78fe4142563306a8d918d676cce0a970f593cece78bfb755d42b9fda3c0286bdd4a0bac231f8b750ed61acf6199eda6d51a3dcc +docfiles size=68 + RELOC/doc/latex/standalone/README details="Readme" + RELOC/doc/latex/standalone/standalone.pdf details="Package documentation" +srccontainersize 38568 +srccontainerchecksum 642474f0eed4ac5d3831c0764de9c2c61210cb93bb6bab5c77f65ca13ea54d2eeab038a2c9f52ce077be5749f4d93fae5ef5df561a1e33601bac00345797d3c6 +srcfiles size=47 + RELOC/source/latex/standalone/standalone.dtx + RELOC/source/latex/standalone/standalone.ins +runfiles size=18 + RELOC/tex/latex/standalone/standalone.cfg + RELOC/tex/latex/standalone/standalone.cls + RELOC/tex/latex/standalone/standalone.sty + RELOC/tex/plain/standalone/standalone.tex +catalogue-also combine docmute includex newclude +catalogue-contact-bugs https://bitbucket.org/martin_scharrer/standalone/issues +catalogue-contact-home https://bitbucket.org/martin_scharrer/standalone/ +catalogue-contact-repository https://bitbucket.org/martin_scharrer/standalone/src +catalogue-ctan /macros/latex/contrib/standalone +catalogue-date 2018-03-26 21:22:24 +0200 +catalogue-license lppl1.3 +catalogue-topics subdocs class +catalogue-version 1.3a + +name stanli +category Package +revision 42765 +shortdesc TikZ Library for Structural Analysis +relocated 1 +longdesc stanli is a STructural ANalysis LIbrary based on PGF/TikZ. +longdesc Creating new assignments and tests, at university, is usually a +longdesc very time-consuming task, especially when this includes drawing +longdesc graphics. In the field of structural engineering, those small +longdesc structures are a key part for teaching. This package permits to +longdesc create such 2D and 3D structures in a very fast and simple way. +containersize 9744 +containerchecksum 8026823a73d9c061eb01e2b92363b52314c4de4d48bc8557bf33b89cb5381ca4886dcfc0f429f5be9268f3f1e64297ad974485edfa6af025e7744474a2ecd565 +doccontainersize 461052 +doccontainerchecksum f97363b3d9aa6f0701c3ca89e7c3b2391327ee431fb71b5be599805a4063baf1f5517868fc3602de8d97aace79d6dc1d58fcceb789ae55b85a7c0824429f3ebb +docfiles size=153 + RELOC/doc/latex/stanli/README.md details="Readme" + RELOC/doc/latex/stanli/stanli.pdf details="Package documentation" + RELOC/doc/latex/stanli/stanli.tex +runfiles size=20 + RELOC/tex/latex/stanli/stanli.sty +catalogue-ctan /graphics/pgf/contrib/stanli +catalogue-date 2016-12-29 05:38:19 +0100 +catalogue-license gpllppl1.3 +catalogue-topics pgf-tikz engineering +catalogue-version 3.0 + +name starfont +category Package +revision 19982 +shortdesc The StarFont Sans astrological font +relocated 1 +longdesc The package contains StarFontSans and StarFontSerif, two +longdesc public-domain astrological fonts designed by Anthony I.P. Owen, +longdesc and the appropriate macros to use them with TeX and LaTeX. The +longdesc fonts are supplied both in the original TrueType Format and in +longdesc Adobe Type 1 format. +execute addMap starfont.map +containersize 179532 +containerchecksum 1f45f97813f5e51b45e1cbd3246b877aad823895a4b087294d0754c560db5796d8b4f9d09972b5c90c4c569db82a2d70bd1c39a9dfe6e1fcc4e0deeceb44f876 +doccontainersize 494536 +doccontainerchecksum def94e1e2995e20e282d9319f763ddbc5e152a48c18ba98ef4d168e69a9a6deb5d7d87923a3259553f990f2da73c78929858852c6165acf7a94a6010382f786b +docfiles size=138 + RELOC/doc/fonts/starfont/COPYING + RELOC/doc/fonts/starfont/Makefile + RELOC/doc/fonts/starfont/README details="Readme" + RELOC/doc/fonts/starfont/STRFNSAN.TTF + RELOC/doc/fonts/starfont/STRFNSER.TTF + RELOC/doc/fonts/starfont/starfont.pdf details="Package documentation" + RELOC/doc/fonts/starfont/starfont.tex + RELOC/doc/fonts/starfont/table.pdf +runfiles size=57 + RELOC/fonts/afm/public/starfont/starfont.afm + RELOC/fonts/afm/public/starfont/strfnser.afm + RELOC/fonts/map/dvips/starfont/starfont.map + RELOC/fonts/tfm/public/starfont/fstr8x.tfm + RELOC/fonts/tfm/public/starfont/fsts8x.tfm + RELOC/fonts/type1/public/starfont/starfont.pfb + RELOC/fonts/type1/public/starfont/strfnser.pfb + RELOC/tex/latex/starfont/starfont.sty +catalogue-ctan /fonts/ps-type1/starfont +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics font astrology font-specialist font-ttf +catalogue-version 1.2 + +name startex +category Package +revision 35718 +shortdesc An XML-inspired format for student use +relocated 1 +longdesc A TeX format designed to help students write short reports and +longdesc essays. It provides the user with a suitable set of commands +longdesc for such a task. It is also more robust than plain TeX and +longdesc LaTeX. +containersize 10172 +containerchecksum 840a60057867ea8439c0497eb22dbd8ca8c8a2375887d74ea383a8a356d5de34a389db3df5f4c41082683d1108a0f88cb31c25e4c3a56a27e45b8ff5b62da4b5 +doccontainersize 511988 +doccontainerchecksum d2076580253889e51a07ebd094daeb10a9ebbf2d9154d288460a84d7b2a581b849d1433a442d8eb911a9d2110e87ae4eb0628567b50eac95cf9c6866d3c34b3f +docfiles size=186 + RELOC/doc/otherformats/startex/INSTALL + RELOC/doc/otherformats/startex/README details="Readme" + RELOC/doc/otherformats/startex/README.TEXLIVE + RELOC/doc/otherformats/startex/guide.pdf details="Beginner's guide" + RELOC/doc/otherformats/startex/ideas.pdf details="TUG'96 paper" + RELOC/doc/otherformats/startex/startex.bib + RELOC/doc/otherformats/startex/startex.pdf details="Documented source code" +srccontainersize 25196 +srccontainerchecksum af1bdf22db048334823bdd18fd87fd8729c0bb4cb729ee53271f7e0b9ec4cea243840657e1a8ebba61728755d022d37495ef40f9962ce8e203d402b71d2d45cd +srcfiles size=26 + RELOC/source/startex/startex/startex.dtx + RELOC/source/startex/startex/startex.ins +runfiles size=17 + RELOC/makeindex/startex/stxglo.ist + RELOC/makeindex/startex/stxind.ist + RELOC/tex/startex/a4-article.stx + RELOC/tex/startex/article.stx + RELOC/tex/startex/ifi-article.stx + RELOC/tex/startex/ifi-artikkel.stx + RELOC/tex/startex/startex.lan + RELOC/tex/startex/startex.tex +catalogue-ctan /macros/startex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics format +catalogue-version 1.04 + +name statex +category Package +revision 20306 +shortdesc Statistics style +relocated 1 +longdesc A package defining many macros for items of significance in +longdesc statistical presentations. An updated, but incompatible, +longdesc version of the package is available: statex2. +containersize 4884 +containerchecksum 66fb0e346ddd4902ac98a90fb7d0b0193d8c8166aa30774dca1f5b6007a3e19c3b98e25bbc88abc379e199720b6c9a2c73caabbc515db2a54b2a8b437c5b270a +doccontainersize 177212 +doccontainerchecksum 9851bb7e2e9af03affa1f4b5750817543be9e985e02d06ca4908ee1ebcf0eea2b8d75a25cefdde3492efc52d86be5bde6fc2f6a99f935c183cf3fc9041ee0e25 +docfiles size=45 + RELOC/doc/latex/statex/statex-example.pdf details="Package documentation (by example)" + RELOC/doc/latex/statex/statex-example.tex +runfiles size=4 + RELOC/tex/latex/statex/statex.sty +catalogue-ctan /macros/latex/contrib/statex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics statistics +catalogue-version 1.6 + +name statex2 +category Package +revision 23961 +shortdesc Statistics style +relocated 1 +longdesc The package defines many macros for items of significance in +longdesc statistical presentations. It represents a syntax-incompatible +longdesc upgrade of statex. +containersize 5296 +containerchecksum dc823a25cdc70bac79c69e721feba69883a99e9e0a5b211398ff0682af4fe4bb1c4a7feeaecfc7c12d2df876b8aab6be0cb8868df8b8eaaa10850042615226a7 +doccontainersize 177524 +doccontainerchecksum 6f0b45577bd4383359dbeb592c3f9e3c1a66d1b2540cf6027ffaa20f8f644316cf2feb0e585f42801b43b529632efdea52fc2c83f2a6d9347cd443da27259646 +docfiles size=45 + RELOC/doc/latex/statex2/statex2-example.pdf details="Package documentation (by example)" + RELOC/doc/latex/statex2/statex2-example.tex +runfiles size=5 + RELOC/tex/latex/statex2/statex2.sty +catalogue-ctan /macros/latex/contrib/statex2 +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics statistics +catalogue-version 2.1 + +name statistics +category Package +revision 48252 +shortdesc Compute and typeset statistics tables and graphics +relocated 1 +longdesc The 'statistics' package can compute and typeset statistics +longdesc like frequency tables, cumulative distribution functions +longdesc (increasing or decreasing, in frequency or absolute count +longdesc domain), from the counts of individual values, or ranges, or +longdesc even the raw value list with repetitions. It can also compute +longdesc and draw a bar diagram in case of individual values, or, when +longdesc the data repartition is known from ranges, an histogram or the +longdesc continuous cumulative distribution function. You can ask +longdesc 'statistics' to display no result, selective results or all of +longdesc them. Similarly 'statistics' can draw only some parts of the +longdesc graphs. Every part of the generated tables or graphics is +longdesc customizable. +containersize 8280 +containerchecksum 3af04457e211b6094cefe7453a0d549d9d74d1a9f7c001f0cecc421538a3ccc3eb7b3cdb666880348821e68e1b85631fb2aa72fca02615b1e79e31b6688d3d2e +doccontainersize 431312 +doccontainerchecksum 0ab00ebe9eb209ca690d2e4f56ef080fe1a5897ff8e28f43f2fc263db2aab3dbf8ce9bf873d9eff0e19d8015e32b65ff6b8eac33ad77bdbb79d8ba10e34a265c +docfiles size=115 + RELOC/doc/latex/statistics/LICENSE + RELOC/doc/latex/statistics/README.md details="Readme" + RELOC/doc/latex/statistics/statistics.pdf details="Package documentation" +srccontainersize 23108 +srccontainerchecksum f6643b1408226b0e3f022cc89c6990b34c03eca4b223b2579d8938cce870ba6ab1dff4bca11a703556fe997458245146286d0d5e2fb7017c354f543f626150ff +srcfiles size=31 + RELOC/source/latex/statistics/statistics.dtx + RELOC/source/latex/statistics/statistics.ins +runfiles size=14 + RELOC/tex/latex/statistics/statistics.sty +catalogue-contact-bugs https://gitlab.com/frnchfrgg-latex/statistics/issues +catalogue-contact-development https://gitlab.com/frnchfrgg-latex/statistics +catalogue-contact-home https://gitlab.com/frnchfrgg-latex/statistics +catalogue-contact-repository https://gitlab.com/frnchfrgg-latex/statistics +catalogue-contact-support https://gitlab.com/frnchfrgg-latex/statistics/issues +catalogue-ctan /macros/latex/contrib/statistics +catalogue-date 2018-07-23 05:27:45 +0200 +catalogue-license gpl3+ +catalogue-topics maths statistics +catalogue-version 2.0 + +name statistik +category Package +revision 20334 +shortdesc Store statistics of a document +relocated 1 +longdesc The package counts the numbers of pages per chapter, and stores +longdesc the results in a separate file; the format of the file is +longdesc selectable. +containersize 2164 +containerchecksum 2d2455227b5db15235763c4fa677b549380d66f2485d1d53c2c607f96bb4b4a176ae9868419351f691f3efc3117e6e54be3317040f2a6f8d1d105cb86709f86a +doccontainersize 94864 +doccontainerchecksum 88b28820b5d2a4a304c26658e27da7d673bf430a6be3ddf46f5eb3103abb7e8d20b03e30b65b88583960f9cf3dbebb9088330621b99e1eb9f2f28c0684638240 +docfiles size=28 + RELOC/doc/latex/statistik/sta_cvs.tex + RELOC/doc/latex/statistik/sta_mytable.tex + RELOC/doc/latex/statistik/sta_tab.tex + RELOC/doc/latex/statistik/sta_textable.tex + RELOC/doc/latex/statistik/sta_xml.tex + RELOC/doc/latex/statistik/statistik.pdf details="Package documentation" +srccontainersize 4544 +srccontainerchecksum d37bf82f0830e14c500af27146a1ae1a80bf4aee3bb272429c7c2351366e2fdb51b7ba16ab6459b7cbb8abe2d37870b7bcb3fa43582e588c7cbbb889ac1e3859 +srcfiles size=5 + RELOC/source/latex/statistik/statistik.dtx + RELOC/source/latex/statistik/statistik.ins +runfiles size=2 + RELOC/tex/latex/statistik/statistik.sty +catalogue-ctan /macros/latex/contrib/statistik +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics doc-mgmt +catalogue-version 0.03 + +name statmath +category Package +revision 46925 +shortdesc A LaTeX package for simple use of statistical notation +relocated 1 +longdesc The package offers anumber of notational conventions to be used +longdesc in applied and theoretical papers in statistics which are +longdesc currently lacking in the popular amsmath package. The seasoned +longdesc LaTeX user will see that the provided commands are simple, +longdesc almost trivial, but will hopefully offer less cluttered +longdesc preambles as well as a welcome help for novice users. +containersize 1712 +containerchecksum 128532a808c4f8cae9ad03d19d9f70673427f9335d298d4840776ecf59a78b0051de64093f00510ef34c61d3e2ab900d4494f800eff8183a4c8451bf90a1424f +doccontainersize 205828 +doccontainerchecksum 14754afa159041c359c85d31d8cf3483789b02a7057f59f6772455ff7dfbaaf81e793db3bbdb8d1a67e25de7a00f32c22089e2cc908cb1c2e0abf6a17eceb7fc +docfiles size=52 + RELOC/doc/latex/statmath/README details="Readme" + RELOC/doc/latex/statmath/statmath.pdf details="Package documentation" +srccontainersize 3544 +srccontainerchecksum 67329fcd533335927638057bdafd76c3db6e49abbc23c63027623397ab35450ba811acf61c5b3ef299077cc92a14df3f0d66076a8f8a2d009ef9e4828ebb533e +srcfiles size=5 + RELOC/source/latex/statmath/statmath.dtx + RELOC/source/latex/statmath/statmath.ins +runfiles size=2 + RELOC/tex/latex/statmath/statmath.sty +catalogue-contact-bugs https://github.com/ankargren/statmath/issues +catalogue-contact-home https://github.com/ankargren/statmath +catalogue-ctan /macros/latex/contrib/statmath +catalogue-date 2018-04-29 07:15:59 +0200 +catalogue-license lppl1.3 +catalogue-topics statistics +catalogue-version 0.1 + +name staves +category Package +revision 15878 +shortdesc Typeset Icelandic staves and runic letters +relocated 1 +longdesc This package contains all the necessary tools to typeset the +longdesc "magical" Icelandic staves plus the runic letters used in +longdesc Iceland. Included are a font in Adobe Type 1 format and LaTeX +longdesc support. +execute addMap icelandic.map +containersize 121996 +containerchecksum f6a1aea97a3293ffb514ccc526faa71ea5ea3ab32990da8725cc3ff998d15a2909001976d9705ba13110fbde869001bec2f286e58c05f1fe31f345ecd5882482 +doccontainersize 230488 +doccontainerchecksum b839484325cc6d06a407ea685dd705b3616d1e87f22d4a625c20dbc507647b602417a085328f9ba886766ee0fca2516da397c742198569477bc1009271a4db23 +docfiles size=74 + RELOC/doc/fonts/staves/README details="Package README" + RELOC/doc/fonts/staves/staves.pdf details="Package documentation" + RELOC/doc/fonts/staves/symbols.pdf details="List of symbols" +srccontainersize 3748 +srccontainerchecksum 9dbe40efcd1699cc9267b739bc1b182fc0e5dc23ae52d19ea89c1742b815e4ea9b7612e4fb80aeb83f3d9206ab408cb0ca3fcb99c85883fb86f89f3ac26f0b5d +srcfiles size=4 + RELOC/source/latex/staves/staves.dtx + RELOC/source/latex/staves/staves.ins +runfiles size=34 + RELOC/fonts/map/dvips/staves/icelandic.map + RELOC/fonts/tfm/public/staves/icelandic.tfm + RELOC/fonts/type1/public/staves/icelandic.pfb + RELOC/tex/latex/staves/staves.sty +catalogue-ctan /language/staves +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font font-type1 font-rune icelandic + +name stdclsdv +category Package +revision 15878 +shortdesc Provide sectioning information for package writers +relocated 1 +longdesc The stdclsdv package is designed for package writers who need +longdesc to know what sectioning divsions are provided by the document's +longdesc class. It also provides a version of \CheckCommand that sets a +longdesc flag rather than printing a warning. +containersize 1500 +containerchecksum 88d8abc04d10f029a9ce0fe9025497afe3eba3dcc300631fd37baa8174bdec8dff44fbde07599ac8dd6635be27294c359c77178690a4e6c97f41d15f9d2abbd4 +doccontainersize 127960 +doccontainerchecksum 8321d823ffa159071f66d87d38fa38ba3af03f6c69999a041d765f0fda8549547da4b8eae86efce82109679284dd912f2c5494b5ef6e76c73c467cf4eb87aa2b +docfiles size=38 + RELOC/doc/latex/stdclsdv/README details="Readme" + RELOC/doc/latex/stdclsdv/stdclsdv.pdf details="Package documentation" +srccontainersize 5384 +srccontainerchecksum 4a9987bcbb557b7923c6c2a5c58dd117fd7b56f58b3df55154514075b68bc59a8928fdfe275dbf328ab2bd5b6608b193ad5ff07b95e7bfd2d79eb632837e5469 +srcfiles size=5 + RELOC/source/latex/stdclsdv/stdclsdv.dtx + RELOC/source/latex/stdclsdv/stdclsdv.ins +runfiles size=1 + RELOC/tex/latex/stdclsdv/stdclsdv.sty +catalogue-ctan /macros/latex/contrib/stdclsdv +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1.1a + +name stdpage +category Package +revision 15878 +shortdesc Standard pages with n lines of at most m characters each +relocated 1 +longdesc For translations, proofreading, journal contributions etc. +longdesc standard pages are used. Those standard pages consist of a +longdesc fixed number of lines and characters per line. This package +longdesc produces pages with n lines of at most m characters each. For +longdesc instance the German "Normseite": 60 lines of 30 characters +longdesc each. +containersize 2076 +containerchecksum a3835f211b744dd88e0238a01f0a5f960305f7eb92bbd9e3437474971173e66c84cbee1d5ab3f1aa1097a262a258b79085fd0d86884bcf3acc4017e7885968cc +doccontainersize 102708 +doccontainerchecksum 77510670a49db00b185e6b502d07bd85f9ca18bedeed86277c7d51abb582f40c793c665f2ab87435e90380f7f6f740b64c937d2171531a419ccc59bed197b90f +docfiles size=31 + RELOC/doc/latex/stdpage/README details="Package README" + RELOC/doc/latex/stdpage/stdpage-test.tex + RELOC/doc/latex/stdpage/stdpage.pdf details="Package documentation" +srccontainersize 7392 +srccontainerchecksum 2973110831807b73409be0082c5aa281b176dbe7174b736cb9703b0c75ee918d1135fdf0513bca5dc48bb996d0067c9201702b76212eb632073f9b0a17b00d55 +srcfiles size=6 + RELOC/source/latex/stdpage/stdpage.dtx + RELOC/source/latex/stdpage/stdpage.ins +runfiles size=2 + RELOC/tex/latex/stdpage/stdpage.sty +catalogue-ctan /macros/latex/contrib/stdpage +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.2 +catalogue-topics geometry +catalogue-version 0.6 + +name stealcaps +category Package +revision 46434 +shortdesc "Steal" small capitals +relocated 1 +longdesc This little package is mainly meant to be used when there is a +longdesc (TrueType or OpenType) font that does not provide real small +longdesc capitals. As a workaround, this package helps to borrow, or +longdesc "steal", the small capitals from another font. This might also +longdesc be useful in the rare case that someone does not like the +longdesc present small capitals, and wants to change them, or likes +longdesc those from another font better. To achieve the borrowing, one +longdesc only needs to load the package and specify the name of the +longdesc target font via the from option. Package dependencies: pgfopts, +longdesc iftex, fontspec. +containersize 1548 +containerchecksum 83296141df9f56d0e38d04bcc948cb4a9b5e308f5a71ef3080b4b53392792d42c142a2cc5b69140233d6f00bcf7804dd1c9dff686df3debbca857d765d7639b7 +doccontainersize 2993416 +doccontainerchecksum 3dd77d36d16fbfaf10993bf36c1a286506b6f80b795c721ce15b7854453af0b6041c586bbb653e7707eb057664885a9027135d199a9df7b748d23c6106175477 +docfiles size=743 + RELOC/doc/latex/stealcaps/README.md details="Readme" + RELOC/doc/latex/stealcaps/stealcaps.pdf details="Package documentation" + RELOC/doc/latex/stealcaps/testfile/EBGaramond.ttf.zip + RELOC/doc/latex/stealcaps/testfile/brelaregular.otf + RELOC/doc/latex/stealcaps/testfile/stealcapitals-test.pdf + RELOC/doc/latex/stealcaps/testfile/stealcapitals-test.tex +srccontainersize 3280 +srccontainerchecksum 8afa57a79a3bb38a04ebb681df5c7976e9ea275e379c00308b6672459ac61ebfe745f16d334beb4d3627438487446f638bd00788d60fd68b22f0026a7a87d4d8 +srcfiles size=3 + RELOC/source/latex/stealcaps/stealcaps.dtx + RELOC/source/latex/stealcaps/stealcaps.ins +runfiles size=1 + RELOC/tex/latex/stealcaps/stealcaps.sty +catalogue-contact-bugs https://github.com/giannotr/stealcaps/issues +catalogue-contact-home https://github.com/giannotr/stealcaps +catalogue-contact-repository https://github.com/giannotr/stealcaps.git +catalogue-ctan /macros/latex/contrib/stealcaps +catalogue-date 2018-01-26 07:47:53 +0100 +catalogue-license lppl1.3c +catalogue-topics font-supp font-use +catalogue-version 1.0 + +name steinmetz +category Package +revision 15878 +shortdesc Print Steinmetz notation +relocated 1 +longdesc The steinmetz package provides a command for typesetting +longdesc complex numbers in the Steinmetz notation used in +longdesc electrotechnics as: ; The package makes use of pict2e. +containersize 1352 +containerchecksum 8ff095645447f9349d2b35ab5ccde72109eddcd85ad3c9de262833320ffcbe94c2fb08df5323c69fc64cdf173ee7193ce2ce887f1c033997455a33f290cf1884 +doccontainersize 102708 +doccontainerchecksum e409db74c366c5f49011a6e21355150e3e97d16c1e3a7fcbf06cc8aa0db2c01288dfc60b3c79e539936077e452c40dd601490be8976c57d01f9a5a88a3798093 +docfiles size=31 + RELOC/doc/latex/steinmetz/README details="Readme" + RELOC/doc/latex/steinmetz/steinmetz-test.tex + RELOC/doc/latex/steinmetz/steinmetz.pdf details="Package documentation" +srccontainersize 4880 +srccontainerchecksum c18fde06e32eb4155921bdd7e4dca7ca108139859545c638f562f82deb6feec904a53870c929482504ddf28858ce5ad3c5abf4148b3bfec0193f260af432ebe9 +srcfiles size=4 + RELOC/source/latex/steinmetz/steinmetz.dtx + RELOC/source/latex/steinmetz/steinmetz.ins +runfiles size=1 + RELOC/tex/latex/steinmetz/steinmetz.sty +catalogue-ctan /macros/latex/contrib/steinmetz +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics engineering maths +catalogue-version 1.0 + +name stellenbosch +category Package +revision 36696 +shortdesc Stellenbosch thesis bundle +relocated 1 +longdesc The usthesis class/style files are provided to typeset reports, +longdesc theses and dissertations that conform to the requirements of +longdesc the Engineering Faculty of the University of Stellenbosch. The +longdesc class file usthesis.cls is based on the standard LaTeX book +longdesc class, while usthesis.sty is a style file to be loaded on top +longdesc of the very powerful memoir class. Both options give identical +longdesc output, but the benefit of the using memoir is that it has many +longdesc additional command and environments for formatting and +longdesc processing of a document. Usthesis is primarily concerned with +longdesc the formatting of the front matter such as the title page, +longdesc abstract, etc. and a decent page layout on A4 paper. It also +longdesc works together with the babel package to provide language +longdesc options to typeset documents in Afrikaans or in English. +longdesc Additional packages are provided for bibliographic matter, note +longdesc title pages, lists of symbols, as well as various graphic files +longdesc for logos. +containersize 703392 +containerchecksum 44b6b8149d4a5aa34ce4bc2e9e66b9bd3a1381b17ffea213b5d0f3afe5b71a62a3b85b4feb6caee4711119fbe27d46b3fcbad2a892e662ee9aac184336677d0a +doccontainersize 3071164 +doccontainerchecksum 6af215b7af75e04bf24ecf9f83c6e4b5a12013a84435e65872d4d84dadfc2231d341153b05f069d9ca927370a686b6642f4654c9924521f5d93d0d1772f48059 +docfiles size=835 + RELOC/doc/latex/stellenbosch/CHANGELOG + RELOC/doc/latex/stellenbosch/README details="Bundle README" language="en" + RELOC/doc/latex/stellenbosch/USbib-1.0.pdf details="USbib package documentation" language="en" + RELOC/doc/latex/stellenbosch/USlogos-4.0.pdf + RELOC/doc/latex/stellenbosch/USnomencl-1.1.pdf details="USnomencl package documentation" language="en" + RELOC/doc/latex/stellenbosch/USsummary-1.0a.pdf details="USsummary package documentation" language="en" + RELOC/doc/latex/stellenbosch/USthesis-5.0.pdf details="Class/package documentation" language="en" + RELOC/doc/latex/stellenbosch/UStitle-1.0.pdf details="UStitle package documentation" language="en" + RELOC/doc/latex/stellenbosch/templates/masters-sample.zip + RELOC/doc/latex/stellenbosch/templates/report-sample.zip +srccontainersize 415320 +srccontainerchecksum a4df0b0c1adc1477be9a8a0d2ee3c03c152e3a2a9c9bff5337accace9562a0b117f2ddd09ecf29bfef99ab3bf0a4a394f8780ef57fb693d98fc269cad2f940d0 +srcfiles size=108 + RELOC/source/latex/stellenbosch/USbib-1.0-scr.zip + RELOC/source/latex/stellenbosch/USlogos-4.0-src.zip + RELOC/source/latex/stellenbosch/USnomencl-1.1-src.zip + RELOC/source/latex/stellenbosch/USsummary-1.0a-src.zip + RELOC/source/latex/stellenbosch/USthesis-5.0-src.zip + RELOC/source/latex/stellenbosch/UStitle-1.0-src.zip +runfiles size=384 + RELOC/bibtex/bst/stellenbosch/usmeg-a.bst + RELOC/bibtex/bst/stellenbosch/usmeg-n.bst + RELOC/bibtex/bst/stellenbosch/ussagus.bst + RELOC/tex/latex/stellenbosch/logos/USEngLogo-BW-top.eps + RELOC/tex/latex/stellenbosch/logos/USEngLogo-BW-top.pdf + RELOC/tex/latex/stellenbosch/logos/USEngLogo-BW.eps + RELOC/tex/latex/stellenbosch/logos/USEngLogo-BW.pdf + RELOC/tex/latex/stellenbosch/logos/USEngLogo-top.eps + RELOC/tex/latex/stellenbosch/logos/USEngLogo-top.pdf + RELOC/tex/latex/stellenbosch/logos/USEngLogo.eps + RELOC/tex/latex/stellenbosch/logos/USEngLogo.pdf + RELOC/tex/latex/stellenbosch/logos/UScrest-BW.eps + RELOC/tex/latex/stellenbosch/logos/UScrest-BW.jpg + RELOC/tex/latex/stellenbosch/logos/UScrest-WM.eps + RELOC/tex/latex/stellenbosch/logos/UScrest-WM.jpg + RELOC/tex/latex/stellenbosch/logos/UScrest-stack.eps + RELOC/tex/latex/stellenbosch/logos/UScrest-stack.jpg + RELOC/tex/latex/stellenbosch/logos/UScrest-top.eps + RELOC/tex/latex/stellenbosch/logos/UScrest-top.jpg + RELOC/tex/latex/stellenbosch/logos/UScrest.eps + RELOC/tex/latex/stellenbosch/logos/UScrest.jpg + RELOC/tex/latex/stellenbosch/logos/USleaf-BW.eps + RELOC/tex/latex/stellenbosch/logos/USleaf-BW.pdf + RELOC/tex/latex/stellenbosch/logos/USleaf-gold.eps + RELOC/tex/latex/stellenbosch/logos/USleaf-gold.pdf + RELOC/tex/latex/stellenbosch/logos/USleaf-grey.eps + RELOC/tex/latex/stellenbosch/logos/USleaf-grey.pdf + RELOC/tex/latex/stellenbosch/logos/USleaf-maroon.eps + RELOC/tex/latex/stellenbosch/logos/USleaf-maroon.pdf + RELOC/tex/latex/stellenbosch/logos/USlogo-BW-left.eps + RELOC/tex/latex/stellenbosch/logos/USlogo-BW-left.pdf + RELOC/tex/latex/stellenbosch/logos/USlogo-BW-stack.eps + RELOC/tex/latex/stellenbosch/logos/USlogo-BW-stack.pdf + RELOC/tex/latex/stellenbosch/logos/USlogo-BW-top.eps + RELOC/tex/latex/stellenbosch/logos/USlogo-BW-top.pdf + RELOC/tex/latex/stellenbosch/logos/USlogo-BW.eps + RELOC/tex/latex/stellenbosch/logos/USlogo-BW.pdf + RELOC/tex/latex/stellenbosch/logos/USlogo-left.eps + RELOC/tex/latex/stellenbosch/logos/USlogo-left.pdf + RELOC/tex/latex/stellenbosch/logos/USlogo-stack.eps + RELOC/tex/latex/stellenbosch/logos/USlogo-stack.pdf + RELOC/tex/latex/stellenbosch/logos/USlogo-top.eps + RELOC/tex/latex/stellenbosch/logos/USlogo-top.pdf + RELOC/tex/latex/stellenbosch/logos/USlogo.eps + RELOC/tex/latex/stellenbosch/logos/USlogo.pdf + RELOC/tex/latex/stellenbosch/usbib.afr + RELOC/tex/latex/stellenbosch/usbib.eng + RELOC/tex/latex/stellenbosch/usbib.sty + RELOC/tex/latex/stellenbosch/usnomencl.sty + RELOC/tex/latex/stellenbosch/ussummary.sty + RELOC/tex/latex/stellenbosch/usthesis.afr + RELOC/tex/latex/stellenbosch/usthesis.cls + RELOC/tex/latex/stellenbosch/usthesis.eng + RELOC/tex/latex/stellenbosch/usthesis.sty + RELOC/tex/latex/stellenbosch/ustitle.sty +catalogue-ctan /macros/latex/contrib/stellenbosch +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics dissertation +catalogue-version 11a + +name stex +category Package +revision 50489 +shortdesc An Infrastructure for Semantic Preloading of LaTeX Documents +relocated 1 +longdesc The sTeX package collection is a version of TeX/LaTeX that +longdesc allows to markup TeX/LaTeX documents semantically without +longdesc leaving the document format, essentially turning it into a +longdesc document format for mathematical knowledge management (MKM). +containersize 41256 +containerchecksum 43d9cb084f47b1fc2bfab9eb11ec9253fda495f29640d333c00de5d7a5681bf37e0331002938e141679b0ab10345e23d5cbff19cb33fbfa01d25be62295b18dc +doccontainersize 5856944 +doccontainerchecksum 3e936e5905f5dac9a16030af94037398c60b6b79feeb6180af4b7542eb8293a681a213115dd082d9e2df8264771d6d92544e6ec514cf40cf4a136cf74a0a6e51 +docfiles size=1816 + RELOC/doc/latex/stex/cmath/README details="Readme" + RELOC/doc/latex/stex/cmath/cmath.pdf + RELOC/doc/latex/stex/dcm/README details="Readme" + RELOC/doc/latex/stex/dcm/dcm.pdf + RELOC/doc/latex/stex/example/Makefile + RELOC/doc/latex/stex/example/README details="Readme" + RELOC/doc/latex/stex/example/background/Makefile + RELOC/doc/latex/stex/example/background/all.pdf + RELOC/doc/latex/stex/example/background/all.tex + RELOC/doc/latex/stex/example/background/functions.omdoc + RELOC/doc/latex/stex/example/background/functions.pdf + RELOC/doc/latex/stex/example/background/functions.tex + RELOC/doc/latex/stex/example/background/post.tex + RELOC/doc/latex/stex/example/background/pre.tex + RELOC/doc/latex/stex/example/background/reals.pdf + RELOC/doc/latex/stex/example/background/reals.tex + RELOC/doc/latex/stex/example/paper/Makefile + RELOC/doc/latex/stex/example/paper/continuous.pdf + RELOC/doc/latex/stex/example/paper/continuous.tex + RELOC/doc/latex/stex/example/paper/differentiable.pdf + RELOC/doc/latex/stex/example/paper/differentiable.tex + RELOC/doc/latex/stex/example/paper/intro.pdf + RELOC/doc/latex/stex/example/paper/intro.tex + RELOC/doc/latex/stex/example/paper/paper.tex + RELOC/doc/latex/stex/hwexam/README details="Readme" + RELOC/doc/latex/stex/hwexam/hwexam.pdf + RELOC/doc/latex/stex/metakeys/README details="Readme" + RELOC/doc/latex/stex/metakeys/metakeys.pdf + RELOC/doc/latex/stex/mikoslides/README details="Readme" + RELOC/doc/latex/stex/mikoslides/mikoslides.pdf + RELOC/doc/latex/stex/modules/README details="Readme" + RELOC/doc/latex/stex/modules/modules.pdf + RELOC/doc/latex/stex/omdoc/README details="Readme" + RELOC/doc/latex/stex/omdoc/omdoc.pdf + RELOC/doc/latex/stex/omtext/README details="Readme" + RELOC/doc/latex/stex/omtext/omtext.pdf + RELOC/doc/latex/stex/presentation/README details="Readme" + RELOC/doc/latex/stex/presentation/presentation.pdf + RELOC/doc/latex/stex/problem/README details="Readme" + RELOC/doc/latex/stex/problem/problem.pdf + RELOC/doc/latex/stex/rfdmeta/README details="Readme" + RELOC/doc/latex/stex/rfdmeta/certification.pdf + RELOC/doc/latex/stex/rfdmeta/certification.tex + RELOC/doc/latex/stex/rfdmeta/rdfmeta.pdf + RELOC/doc/latex/stex/smglom/README details="Readme" + RELOC/doc/latex/stex/smglom/smglom.pdf + RELOC/doc/latex/stex/smultiling/README details="Readme" + RELOC/doc/latex/stex/smultiling/smultiling.pdf + RELOC/doc/latex/stex/sproof/README details="Readme" + RELOC/doc/latex/stex/sproof/sproof.pdf + RELOC/doc/latex/stex/sref/README details="Readme" + RELOC/doc/latex/stex/sref/book.pdf + RELOC/doc/latex/stex/sref/book.tex + RELOC/doc/latex/stex/sref/idc.pdf + RELOC/doc/latex/stex/sref/idc.tex + RELOC/doc/latex/stex/sref/idcmain.tex + RELOC/doc/latex/stex/sref/scr.pdf + RELOC/doc/latex/stex/sref/scr.tex + RELOC/doc/latex/stex/sref/scrmain.tex + RELOC/doc/latex/stex/sref/sref.pdf + RELOC/doc/latex/stex/statements/README details="Readme" + RELOC/doc/latex/stex/statements/statements.pdf + RELOC/doc/latex/stex/stex/README details="Readme" + RELOC/doc/latex/stex/stex/stex.pdf details="Package documentation" + RELOC/doc/latex/stex/structview/README details="Readme" + RELOC/doc/latex/stex/structview/structview.pdf + RELOC/doc/latex/stex/tikzinput/README details="Readme" + RELOC/doc/latex/stex/tikzinput/tikzinput.pdf + RELOC/doc/latex/stex/workaddress/README details="Readme" + RELOC/doc/latex/stex/workaddress/workaddress.pdf +srccontainersize 495572 +srccontainerchecksum 5cf2ccb75d699f86a095481c4fdefe0d2a981340d3df72c09ddfc4acd3798a35546674eca62c8aea07431b50edd643c514af901d86513a3e5d0d3af9588f24ed +srcfiles size=628 + RELOC/source/latex/stex/bin/Modparse.pm + RELOC/source/latex/stex/bin/README + RELOC/source/latex/stex/bin/checksum + RELOC/source/latex/stex/bin/filedate + RELOC/source/latex/stex/bin/installFonts.sh + RELOC/source/latex/stex/bin/sms + RELOC/source/latex/stex/cmath/cmath.dtx + RELOC/source/latex/stex/cmath/cmath.ins + RELOC/source/latex/stex/dcm/dcm.dtx + RELOC/source/latex/stex/dcm/dcm.ins + RELOC/source/latex/stex/hwexam/hwexam.dtx + RELOC/source/latex/stex/hwexam/hwexam.ins + RELOC/source/latex/stex/lib/bib/extcrossrefs.bib + RELOC/source/latex/stex/lib/bib/extpubs.bib + RELOC/source/latex/stex/lib/bib/kwarccrossrefs.bib + RELOC/source/latex/stex/lib/bib/kwarcpubs.bib + RELOC/source/latex/stex/lib/make/Makefile + RELOC/source/latex/stex/lib/make/Makefile.base.in + RELOC/source/latex/stex/lib/make/Makefile.base.vars + RELOC/source/latex/stex/lib/make/Makefile.in + RELOC/source/latex/stex/lib/make/Makefile.latex.in + RELOC/source/latex/stex/lib/make/Makefile.latex.vars + RELOC/source/latex/stex/lib/make/Makefile.latexml.in + RELOC/source/latex/stex/lib/make/Makefile.latexml.vars + RELOC/source/latex/stex/lib/make/Makefile.subdirs + RELOC/source/latex/stex/lib/make/Makefile.vars + RELOC/source/latex/stex/lib/make/README + RELOC/source/latex/stex/metakeys/metakeys.dtx + RELOC/source/latex/stex/metakeys/metakeys.ins + RELOC/source/latex/stex/mikoslides/mikoslides.dtx + RELOC/source/latex/stex/mikoslides/mikoslides.ins + RELOC/source/latex/stex/modules/modules.dtx + RELOC/source/latex/stex/modules/modules.ins + RELOC/source/latex/stex/omdoc/omdoc.dtx + RELOC/source/latex/stex/omdoc/omdoc.ins + RELOC/source/latex/stex/omtext/omtext.dtx + RELOC/source/latex/stex/omtext/omtext.ins + RELOC/source/latex/stex/presentation/presentation.dtx + RELOC/source/latex/stex/presentation/presentation.ins + RELOC/source/latex/stex/problem/problem.dtx + RELOC/source/latex/stex/problem/problem.ins + RELOC/source/latex/stex/rfdmeta/rdfmeta.dtx + RELOC/source/latex/stex/rfdmeta/rdfmeta.ins + RELOC/source/latex/stex/smglom/smglom.dtx + RELOC/source/latex/stex/smglom/smglom.ins + RELOC/source/latex/stex/smultiling/smultiling.dtx + RELOC/source/latex/stex/smultiling/smultiling.ins + RELOC/source/latex/stex/sproof/sproof.dtx + RELOC/source/latex/stex/sproof/sproof.ins + RELOC/source/latex/stex/sref/sref.dtx + RELOC/source/latex/stex/sref/sref.ins + RELOC/source/latex/stex/statements/statements.dtx + RELOC/source/latex/stex/statements/statements.ins + RELOC/source/latex/stex/stex/stex.dtx + RELOC/source/latex/stex/stex/stex.ins + RELOC/source/latex/stex/structview/structview.dtx + RELOC/source/latex/stex/structview/structview.ins + RELOC/source/latex/stex/tikzinput/tikzinput.dtx + RELOC/source/latex/stex/tikzinput/tikzinput.ins + RELOC/source/latex/stex/workaddress/workaddress.dtx + RELOC/source/latex/stex/workaddress/workaddress.ins +runfiles size=50 + RELOC/tex/latex/stex/cmath/cmath.sty + RELOC/tex/latex/stex/dcm/dcm.sty + RELOC/tex/latex/stex/hwexam/hwexam.cls + RELOC/tex/latex/stex/hwexam/hwexam.sty + RELOC/tex/latex/stex/metakeys/metakeys.sty + RELOC/tex/latex/stex/mikoslides/beamerthemeJacobs.sty + RELOC/tex/latex/stex/mikoslides/cc-by-sa.png + RELOC/tex/latex/stex/mikoslides/cc_somerights.png + RELOC/tex/latex/stex/mikoslides/dangerous-bend.png + RELOC/tex/latex/stex/mikoslides/jacobs-logo.png + RELOC/tex/latex/stex/mikoslides/mikoslides.cls + RELOC/tex/latex/stex/mikoslides/mikoslides.sty + RELOC/tex/latex/stex/mikoslides/shading-l2r.png + RELOC/tex/latex/stex/modules/modules.sty + RELOC/tex/latex/stex/omdoc/omdoc.cls + RELOC/tex/latex/stex/omdoc/omdoc.sty + RELOC/tex/latex/stex/omtext/omtext.sty + RELOC/tex/latex/stex/presentation/presentation.sty + RELOC/tex/latex/stex/problem/problem.sty + RELOC/tex/latex/stex/rfdmeta/rdfmeta.sty + RELOC/tex/latex/stex/smglom/smglom.cls + RELOC/tex/latex/stex/smultiling/smultiling.sty + RELOC/tex/latex/stex/sproof/sproof.sty + RELOC/tex/latex/stex/sref/sref.sty + RELOC/tex/latex/stex/statements/statements.sty + RELOC/tex/latex/stex/stex/stex.sty + RELOC/tex/latex/stex/structview/structview.sty + RELOC/tex/latex/stex/tikzinput/tikzinput.sty + RELOC/tex/latex/stex/workaddress/workaddress.sty +catalogue-contact-announce https://lists.informatik.uni-erlangen.de/mailman/listinfo/stex +catalogue-contact-bugs https://github.com/KWARC/sTeX/issues +catalogue-contact-development https://lists.informatik.uni-erlangen.de/mailman/listinfo/stex +catalogue-contact-home https://github.com/KWARC/sTeX +catalogue-contact-repository https://github.com/KWARC/sTeX +catalogue-ctan /macros/latex/contrib/stex +catalogue-date 2019-03-20 21:11:08 +0100 +catalogue-license lppl +catalogue-topics struc-mkup format + +name stickstoo +category Package +revision 47858 +shortdesc A reworking of STIX2 +relocated 1 +longdesc SticksToo is a reworking of the STIX2 with support files +longdesc focussing on enhancements of support for LaTeX users wishing to +longdesc be able to access more of its features. A companion addition to +longdesc the newtxmath package (version 1.55) provides a matching math +longdesc package using STIX2 letters (Roman and Greek) with newtxmath +longdesc symbols. +execute addMap SticksTooText.map +containersize 2670052 +containerchecksum 5f121b2f4df9a940e7655eaf4d780fda0307ec5c58be60e3792e1e5db0a4e0bcfad15f53888d295bdd4650ea04d2433af317fe0777371ed4a442bc804d6bcfdc +doccontainersize 511460 +doccontainerchecksum 1ee3b29b7d449612b2732c5cee636cd56c7af196a661ad69f237bf34504af1b93fa9ebf3f01c37cf3c32d5b0d910d9c3964bc97e927ce741bf9a957ab554ac30 +docfiles size=138 + RELOC/doc/fonts/stickstoo/OFL-FAQ.txt + RELOC/doc/fonts/stickstoo/OFL.txt + RELOC/doc/fonts/stickstoo/README details="Readme" + RELOC/doc/fonts/stickstoo/stickstoo-doc.pdf details="Package documentation" + RELOC/doc/fonts/stickstoo/stickstoo-doc.tex +runfiles size=6097 + RELOC/fonts/afm/public/stickstoo/SticksTooText-Bold.afm + RELOC/fonts/afm/public/stickstoo/SticksTooText-BoldItalic.afm + RELOC/fonts/afm/public/stickstoo/SticksTooText-Italic.afm + RELOC/fonts/afm/public/stickstoo/SticksTooText-Regular.afm + RELOC/fonts/afm/public/stickstoo/stickstooMath-Bold.afm + RELOC/fonts/afm/public/stickstoo/stickstooMath-BoldItalic.afm + RELOC/fonts/afm/public/stickstoo/stickstooMath-Italic.afm + RELOC/fonts/afm/public/stickstoo/stickstooMath-Regular.afm + RELOC/fonts/enc/dvips/stickstoo/stx2-ot1.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_3t3wpf.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_3vezss.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_4fcdhj.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_57cumc.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_5xzouo.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_7bhcze.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_7fpfyw.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_ao4o3i.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_b3i2vo.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_bg3hea.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_btooep.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_c34sac.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_dbm33u.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_eexofg.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_eqh7z7.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_gbmh45.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_gxpwoy.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_hfcbd6.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_irreni.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_iximus.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_m7frfq.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_nb7tts.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_nl7rkm.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_noim42.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_opxk4k.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_pu4fsw.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_pwkoq7.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_qdtmbx.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_quvxut.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_rejbux.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_rfrl5v.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_sdn3a4.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_slv267.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_srw4fv.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_t6nmmd.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_tu2ozo.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_uab2xo.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_uhazou.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_uofyr3.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_v3a2cx.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_vydqhu.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_w6fsfr.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_wfth6k.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_wwmqdh.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_wwolpm.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_wxq2z6.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_y4oioo.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_ym7moh.enc + RELOC/fonts/enc/dvips/stickstoo/stx2_zscetg.enc + RELOC/fonts/enc/dvips/stickstoo/stx2i-ot1.enc + RELOC/fonts/map/dvips/stickstoo/SticksTooText.map + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-dnom-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-dnom-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-dnom-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-inf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-numr-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-numr-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-numr-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-numr-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-numr-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-ot1G.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-numr-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-ot1G.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-dnom-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-dnom-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-dnom-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-inf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-th-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-th-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-th-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-th-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-th-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-numr-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-numr-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-numr-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-numr-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-th-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-th-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-th-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-th-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-th-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-ot1G.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-th-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-th-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-th-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-th-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-th-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-th-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-th-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-th-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-th-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-th-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-dnom-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-dnom-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-dnom-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-dnom-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-inf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-inf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-inf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-inf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-numr-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-numr-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-numr-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-numr-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-numr-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-ot1G.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/stickstoo/SticksTooText-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/stickstoo/ntxstx2bmi.tfm + RELOC/fonts/tfm/public/stickstoo/ntxstx2bmia.tfm + RELOC/fonts/tfm/public/stickstoo/ntxstx2mi.tfm + RELOC/fonts/tfm/public/stickstoo/ntxstx2mia.tfm + RELOC/fonts/tfm/public/stickstoo/stickstooMath-Bold.tfm + RELOC/fonts/tfm/public/stickstoo/stickstooMath-BoldItalic.tfm + RELOC/fonts/tfm/public/stickstoo/stickstooMath-Italic.tfm + RELOC/fonts/tfm/public/stickstoo/stickstooMath-Regular.tfm + RELOC/fonts/type1/public/stickstoo/SticksTooText-Bold.pfb + RELOC/fonts/type1/public/stickstoo/SticksTooText-BoldItalic.pfb + RELOC/fonts/type1/public/stickstoo/SticksTooText-Italic.pfb + RELOC/fonts/type1/public/stickstoo/SticksTooText-Regular.pfb + RELOC/fonts/type1/public/stickstoo/stickstooMath-Bold.pfb + RELOC/fonts/type1/public/stickstoo/stickstooMath-BoldItalic.pfb + RELOC/fonts/type1/public/stickstoo/stickstooMath-Italic.pfb + RELOC/fonts/type1/public/stickstoo/stickstooMath-Regular.pfb + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-dnom-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-dnom-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-inf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-inf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-lf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-lf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-lf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-numr-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-numr-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-osf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-osf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-osf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-sup-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-sup-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tlf-ot1G.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tlf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tosf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-numr-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-numr-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tlf-ot1G.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-dnom-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-dnom-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-inf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-inf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-lf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-lf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-lf-th-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-lf-th-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-lf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-numr-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-numr-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-osf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-osf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-osf-th-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-osf-th-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-osf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-sup-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-sup-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tlf-ot1G.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tlf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tlf-th-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tlf-th-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tosf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tosf-th-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tosf-th-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-dnom-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-dnom-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-inf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-inf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-lf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-lf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-lf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-numr-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-numr-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-osf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-osf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-osf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-sup-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-sup-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tlf-ot1G.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tlf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tosf-t1.vf + RELOC/fonts/vf/public/stickstoo/SticksTooText-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/stickstoo/ntxstx2bmi.vf + RELOC/fonts/vf/public/stickstoo/ntxstx2bmia.vf + RELOC/fonts/vf/public/stickstoo/ntxstx2mi.vf + RELOC/fonts/vf/public/stickstoo/ntxstx2mia.vf + RELOC/tex/latex/stickstoo/LY1SticksTooText-Dnom.fd + RELOC/tex/latex/stickstoo/LY1SticksTooText-Inf.fd + RELOC/tex/latex/stickstoo/LY1SticksTooText-LF.fd + RELOC/tex/latex/stickstoo/LY1SticksTooText-Numr.fd + RELOC/tex/latex/stickstoo/LY1SticksTooText-OsF.fd + RELOC/tex/latex/stickstoo/LY1SticksTooText-Sup.fd + RELOC/tex/latex/stickstoo/LY1SticksTooText-TLF.fd + RELOC/tex/latex/stickstoo/LY1SticksTooText-TOsF.fd + RELOC/tex/latex/stickstoo/OT1SticksTooText-Dnom.fd + RELOC/tex/latex/stickstoo/OT1SticksTooText-Inf.fd + RELOC/tex/latex/stickstoo/OT1SticksTooText-LF.fd + RELOC/tex/latex/stickstoo/OT1SticksTooText-Numr.fd + RELOC/tex/latex/stickstoo/OT1SticksTooText-OsF.fd + RELOC/tex/latex/stickstoo/OT1SticksTooText-Sup.fd + RELOC/tex/latex/stickstoo/OT1SticksTooText-TLF.fd + RELOC/tex/latex/stickstoo/OT1SticksTooText-TOsF.fd + RELOC/tex/latex/stickstoo/T1SticksTooText-Dnom.fd + RELOC/tex/latex/stickstoo/T1SticksTooText-Inf.fd + RELOC/tex/latex/stickstoo/T1SticksTooText-LF.fd + RELOC/tex/latex/stickstoo/T1SticksTooText-Numr.fd + RELOC/tex/latex/stickstoo/T1SticksTooText-OsF.fd + RELOC/tex/latex/stickstoo/T1SticksTooText-Sup.fd + RELOC/tex/latex/stickstoo/T1SticksTooText-TLF.fd + RELOC/tex/latex/stickstoo/T1SticksTooText-TOsF.fd + RELOC/tex/latex/stickstoo/TS1SticksTooText-LF.fd + RELOC/tex/latex/stickstoo/TS1SticksTooText-OsF.fd + RELOC/tex/latex/stickstoo/TS1SticksTooText-TLF.fd + RELOC/tex/latex/stickstoo/TS1SticksTooText-TOsF.fd + RELOC/tex/latex/stickstoo/stickstootext.sty +catalogue-ctan /fonts/stickstoo +catalogue-date 2018-05-28 08:09:08 +0200 +catalogue-license ofllppl +catalogue-topics font font-proportional font-maths font-type1 font-otf font-t1enc +catalogue-version 1.031 + +name stix +category Package +revision 47652 +shortdesc OpenType Unicode maths fonts +relocated 1 +longdesc The STIX fonts are a suite of unicode OpenType fonts containing +longdesc a complete set of mathematical glyphs. As of April 2018 this +longdesc package is considered obsolete. See stix2-otf and stix2-type1 +longdesc instead. +execute addMap stix.map +containersize 2595416 +containerchecksum 1d4af4d903ce164b95321dbdc45ee17dff776cbecfb29ef74d7c192909da2eacf7ca7c143ee655d842999d347af8e63df683e4a216569c5954e48be54ad55fbc +doccontainersize 1838232 +doccontainerchecksum fd69dc299f88faced8b7166025616de35f935d0726671fb19b94fce9acf6dbf6c9f041f0e4ecd3ddd3aaa8716b77939225301cc79bb0131f77bcff1429066e9b +docfiles size=591 + RELOC/doc/fonts/stix/README details="Readme" + RELOC/doc/fonts/stix/STIX_Font_1.1.1-latex_Release_Documentation.doc + RELOC/doc/fonts/stix/STIX_Font_1.1.1-latex_Release_Documentation.pdf + RELOC/doc/fonts/stix/STIX_Font_1.1.1_Release_Documentation.doc + RELOC/doc/fonts/stix/STIX_Font_1.1.1_Release_Documentation.pdf + RELOC/doc/fonts/stix/STIX_Font_License_2010.txt + RELOC/doc/fonts/stix/stix.pdf details="Package documentation" +srccontainersize 27804 +srccontainerchecksum 1f04ed2c60d8b94eb63e173157a896b14d70b7a0dabdffc1036c7eca0afc4c6257d8b0af24d83264ace3601704109587f0008c3f452232c57410834e6f12d1ed +srcfiles size=52 + RELOC/source/fonts/stix/stix.dtx + RELOC/source/fonts/stix/stix.fdd +runfiles size=1021 + RELOC/fonts/enc/dvips/stix/stix-extra1.enc + RELOC/fonts/enc/dvips/stix/stix-extra2.enc + RELOC/fonts/enc/dvips/stix/stix-extra3.enc + RELOC/fonts/enc/dvips/stix/stix-ot1.enc + RELOC/fonts/enc/dvips/stix/stix-ot2.enc + RELOC/fonts/enc/dvips/stix/stix-t1.enc + RELOC/fonts/enc/dvips/stix/stix-ts1.enc + RELOC/fonts/map/dvips/stix/stix.map + RELOC/fonts/opentype/public/stix/STIX-Bold.otf + RELOC/fonts/opentype/public/stix/STIX-BoldItalic.otf + RELOC/fonts/opentype/public/stix/STIX-Italic.otf + RELOC/fonts/opentype/public/stix/STIX-Regular.otf + RELOC/fonts/opentype/public/stix/STIXMath-Regular.otf + RELOC/fonts/tfm/public/stix/ot1-stixgeneral-bold.tfm + RELOC/fonts/tfm/public/stix/ot1-stixgeneral-bolditalic.tfm + RELOC/fonts/tfm/public/stix/ot1-stixgeneral-italic.tfm + RELOC/fonts/tfm/public/stix/ot1-stixgeneral.tfm + RELOC/fonts/tfm/public/stix/ot1-stixgeneralsc-bold.tfm + RELOC/fonts/tfm/public/stix/ot1-stixgeneralsc.tfm + RELOC/fonts/tfm/public/stix/ot2-stixgeneral-bold.tfm + RELOC/fonts/tfm/public/stix/ot2-stixgeneral-bolditalic.tfm + RELOC/fonts/tfm/public/stix/ot2-stixgeneral-italic.tfm + RELOC/fonts/tfm/public/stix/ot2-stixgeneral.tfm + RELOC/fonts/tfm/public/stix/ot2-stixgeneralsc-bold.tfm + RELOC/fonts/tfm/public/stix/ot2-stixgeneralsc.tfm + RELOC/fonts/tfm/public/stix/stix-extra1.tfm + RELOC/fonts/tfm/public/stix/stix-extra2.tfm + RELOC/fonts/tfm/public/stix/stix-extra3.tfm + RELOC/fonts/tfm/public/stix/stix-mathbb-bold.tfm + RELOC/fonts/tfm/public/stix/stix-mathbb.tfm + RELOC/fonts/tfm/public/stix/stix-mathbbit-bold.tfm + RELOC/fonts/tfm/public/stix/stix-mathbbit.tfm + RELOC/fonts/tfm/public/stix/stix-mathcal-bold.tfm + RELOC/fonts/tfm/public/stix/stix-mathcal.tfm + RELOC/fonts/tfm/public/stix/stix-mathex-bold.tfm + RELOC/fonts/tfm/public/stix/stix-mathex.tfm + RELOC/fonts/tfm/public/stix/stix-mathfrak-bold.tfm + RELOC/fonts/tfm/public/stix/stix-mathfrak.tfm + RELOC/fonts/tfm/public/stix/stix-mathit-bold.tfm + RELOC/fonts/tfm/public/stix/stix-mathit.tfm + RELOC/fonts/tfm/public/stix/stix-mathrm-bold.tfm + RELOC/fonts/tfm/public/stix/stix-mathrm.tfm + RELOC/fonts/tfm/public/stix/stix-mathscr-bold.tfm + RELOC/fonts/tfm/public/stix/stix-mathscr.tfm + RELOC/fonts/tfm/public/stix/stix-mathsf-bold.tfm + RELOC/fonts/tfm/public/stix/stix-mathsf.tfm + RELOC/fonts/tfm/public/stix/stix-mathsfit-bold.tfm + RELOC/fonts/tfm/public/stix/stix-mathsfit.tfm + RELOC/fonts/tfm/public/stix/stix-mathtt-bold.tfm + RELOC/fonts/tfm/public/stix/stix-mathtt.tfm + RELOC/fonts/tfm/public/stix/t1-stixgeneral-bold.tfm + RELOC/fonts/tfm/public/stix/t1-stixgeneral-bolditalic.tfm + RELOC/fonts/tfm/public/stix/t1-stixgeneral-italic.tfm + RELOC/fonts/tfm/public/stix/t1-stixgeneral.tfm + RELOC/fonts/tfm/public/stix/t1-stixgeneralsc-bold.tfm + RELOC/fonts/tfm/public/stix/t1-stixgeneralsc.tfm + RELOC/fonts/tfm/public/stix/ts1-stixgeneral-bold.tfm + RELOC/fonts/tfm/public/stix/ts1-stixgeneral-bolditalic.tfm + RELOC/fonts/tfm/public/stix/ts1-stixgeneral-italic.tfm + RELOC/fonts/tfm/public/stix/ts1-stixgeneral.tfm + RELOC/fonts/type1/public/stix/STIXGeneral-Bold.pfb + RELOC/fonts/type1/public/stix/STIXGeneral-BoldItalic.pfb + RELOC/fonts/type1/public/stix/STIXGeneral-Italic.pfb + RELOC/fonts/type1/public/stix/STIXGeneral-Regular.pfb + RELOC/fonts/type1/public/stix/stix-mathbb-bold.pfb + RELOC/fonts/type1/public/stix/stix-mathbb.pfb + RELOC/fonts/type1/public/stix/stix-mathbbit-bold.pfb + RELOC/fonts/type1/public/stix/stix-mathbbit.pfb + RELOC/fonts/type1/public/stix/stix-mathcal-bold.pfb + RELOC/fonts/type1/public/stix/stix-mathcal.pfb + RELOC/fonts/type1/public/stix/stix-mathex-bold.pfb + RELOC/fonts/type1/public/stix/stix-mathex.pfb + RELOC/fonts/type1/public/stix/stix-mathfrak-bold.pfb + RELOC/fonts/type1/public/stix/stix-mathfrak.pfb + RELOC/fonts/type1/public/stix/stix-mathit-bold.pfb + RELOC/fonts/type1/public/stix/stix-mathit.pfb + RELOC/fonts/type1/public/stix/stix-mathrm-bold.pfb + RELOC/fonts/type1/public/stix/stix-mathrm.pfb + RELOC/fonts/type1/public/stix/stix-mathscr-bold.pfb + RELOC/fonts/type1/public/stix/stix-mathscr.pfb + RELOC/fonts/type1/public/stix/stix-mathsf-bold.pfb + RELOC/fonts/type1/public/stix/stix-mathsf.pfb + RELOC/fonts/type1/public/stix/stix-mathsfit-bold.pfb + RELOC/fonts/type1/public/stix/stix-mathsfit.pfb + RELOC/fonts/type1/public/stix/stix-mathtt-bold.pfb + RELOC/fonts/type1/public/stix/stix-mathtt.pfb + RELOC/fonts/vf/public/stix/ot1-stixgeneralsc-bold.vf + RELOC/fonts/vf/public/stix/ot1-stixgeneralsc.vf + RELOC/fonts/vf/public/stix/ot2-stixgeneralsc-bold.vf + RELOC/fonts/vf/public/stix/ot2-stixgeneralsc.vf + RELOC/fonts/vf/public/stix/t1-stixgeneralsc-bold.vf + RELOC/fonts/vf/public/stix/t1-stixgeneralsc.vf + RELOC/tex/latex/stix/ls1stix.fd + RELOC/tex/latex/stix/ls1stixbb.fd + RELOC/tex/latex/stix/ls1stixfrak.fd + RELOC/tex/latex/stix/ls1stixscr.fd + RELOC/tex/latex/stix/ls1stixsf.fd + RELOC/tex/latex/stix/ls2stix.fd + RELOC/tex/latex/stix/ls2stixcal.fd + RELOC/tex/latex/stix/ls2stixex.fd + RELOC/tex/latex/stix/ls2stixtt.fd + RELOC/tex/latex/stix/ot1stix.fd + RELOC/tex/latex/stix/ot2stix.fd + RELOC/tex/latex/stix/stix.sty + RELOC/tex/latex/stix/t1stix.fd + RELOC/tex/latex/stix/ts1stix.fd +catalogue-also xits stix2-otf stix2-type1 +catalogue-contact-home http://www.stixfonts.org/ +catalogue-ctan /fonts/stix +catalogue-date 2018-04-18 21:20:16 +0200 +catalogue-license ofllppl1.3 +catalogue-topics font font-serif font-otf font-type1 font-maths font-symbol-maths font-bbd +catalogue-version 1.1.3 + +name stix2-otf +category Package +revision 50948 +shortdesc OpenType Unicode text and maths fonts +relocated 1 +longdesc The Scientific and Technical Information eXchange (STIX) fonts +longdesc are intended to satisfy the demanding needs of authors, +longdesc publishers, printers, and others working in the scientific, +longdesc medical, and technical fields. They combine a comprehensive +longdesc Unicode-based collection of mathematical symbols and alphabets +longdesc with a set of text faces suitable for professional publishing. +longdesc The fonts are available royalty-free under the SIL Open Font +longdesc License. +containersize 686992 +containerchecksum 103ecade85ae44948216c901c487b77c29acaec1813d995f79d50497c9b273f312a46709202ff1e450ed45866a306343aaa34c912e556da1496062beadb6bfa7 +doccontainersize 1780240 +doccontainerchecksum 678e183fdfef3a98a2778d7d694cb72682a2b1f44aa3595bc778b0b481f0fbbd60d3c05cc57f64edd78d656cda447b4a27505a71d942c6e63b7d35f31302445b +docfiles size=513 + RELOC/doc/fonts/stix2-otf/README.md details="Readme" + RELOC/doc/fonts/stix2-otf/STIX_2.0.1_license.pdf + RELOC/doc/fonts/stix2-otf/STIX_2.0.1_release_notes.txt + RELOC/doc/fonts/stix2-otf/StixTwoBold.pdf + RELOC/doc/fonts/stix2-otf/StixTwoBoldItalic.pdf + RELOC/doc/fonts/stix2-otf/StixTwoItalic.pdf + RELOC/doc/fonts/stix2-otf/StixTwoMath.pdf details="Package documentation" + RELOC/doc/fonts/stix2-otf/StixTwoRegular.pdf +runfiles size=569 + RELOC/fonts/opentype/public/stix2-otf/STIX2Math.otf + RELOC/fonts/opentype/public/stix2-otf/STIX2Text-Bold.otf + RELOC/fonts/opentype/public/stix2-otf/STIX2Text-BoldItalic.otf + RELOC/fonts/opentype/public/stix2-otf/STIX2Text-Italic.otf + RELOC/fonts/opentype/public/stix2-otf/STIX2Text-Regular.otf +catalogue-contact-bugs https://github.com/stipub/stixfonts/issues +catalogue-contact-home http://www.stixfonts.org/ +catalogue-contact-repository https://github.com/stipub/stixfonts +catalogue-ctan /fonts/stix2-otf +catalogue-date 2019-04-24 15:45:30 +0200 +catalogue-license ofl +catalogue-topics font font-otf font-maths font-symbol font-symbol-maths font-body font-collection font-nonroman font-serif +catalogue-version 2.0.1 + +name stix2-type1 +category Package +revision 50940 +shortdesc Type1 versions of the STIX Two OpenType fonts +relocated 1 +longdesc The stix2 package provides minimal support for using the STIX +longdesc Two fonts with versions of TeX that are limited to TFM files, +longdesc Type 1 PostScript fonts, and 8-bit font encodings. Version +longdesc 2.0.0 of the STIX fonts are being released in this format in +longdesc hopes of easing the transition from legacy TeX engines to +longdesc modern fully Unicode-compatible systems. The Type 1 versions +longdesc are merely a repackaging of the original OpenType versions and +longdesc should not be viewed as independent entities. Some glyphs that +longdesc are traditionally available in TeX math fonts are not yet +longdesc available in the STIX Two OpenType fonts. In such cases, we +longdesc have chosen to omit them from the stix2 package rather than +longdesc create incompatibilities between the OpenType and Type 1 +longdesc versions. In addition, while development of the OpenType +longdesc versions is ongoing, no further updates are planned to the Type +longdesc 1 versions of the fonts. +execute addMap stix2.map +containersize 3171320 +containerchecksum 7358467241a5eec7e62271395554de3a5e0aaafb926c2ecf5dbb2eec8d03b3bf054ec1366490950ca7f5e69e415816e82af3257c4ac87eb7e6a88fba1d35d4af +doccontainersize 1331720 +doccontainerchecksum 775626a232affb47e39da154da8a4d41f602fe235dfcf840966d5d60a102ae9a6f27b3ad05f3ab63c4a34746866ad076ba83ed9c2ec88f78039b56363e98756a +docfiles size=328 + RELOC/doc/latex/stix2/README.md details="Readme" + RELOC/doc/latex/stix2/stix2.pdf details="Package documentation" +srccontainersize 28004 +srccontainerchecksum 83d2c6307bb0f41248d15a9bd18305f9acb7c651839abfdabceba23ab2d22c6ae3162eea803addfda2df05724445ba1a65b73a00dfe3df894783628bab23b170 +srcfiles size=52 + RELOC/source/latex/stix2/stix2.dtx + RELOC/source/latex/stix2/stix2.fdd +runfiles size=1665 + RELOC/fonts/enc/dvips/stix2/stix2-mathbb.enc + RELOC/fonts/enc/dvips/stix2/stix2-mathbbit.enc + RELOC/fonts/enc/dvips/stix2/stix2-mathcal.enc + RELOC/fonts/enc/dvips/stix2/stix2-mathex.enc + RELOC/fonts/enc/dvips/stix2/stix2-mathfrak-bold.enc + RELOC/fonts/enc/dvips/stix2/stix2-mathfrak.enc + RELOC/fonts/enc/dvips/stix2/stix2-mathit-bold.enc + RELOC/fonts/enc/dvips/stix2/stix2-mathit.enc + RELOC/fonts/enc/dvips/stix2/stix2-mathrm-bold.enc + RELOC/fonts/enc/dvips/stix2/stix2-mathrm.enc + RELOC/fonts/enc/dvips/stix2/stix2-mathscr-bold.enc + RELOC/fonts/enc/dvips/stix2/stix2-mathscr.enc + RELOC/fonts/enc/dvips/stix2/stix2-mathsf-bold.enc + RELOC/fonts/enc/dvips/stix2/stix2-mathsf.enc + RELOC/fonts/enc/dvips/stix2/stix2-mathsfit-bold.enc + RELOC/fonts/enc/dvips/stix2/stix2-mathsfit.enc + RELOC/fonts/enc/dvips/stix2/stix2-mathtt.enc + RELOC/fonts/enc/dvips/stix2/stix2-ot1.enc + RELOC/fonts/enc/dvips/stix2/stix2-ot1sc.enc + RELOC/fonts/enc/dvips/stix2/stix2-ot2.enc + RELOC/fonts/enc/dvips/stix2/stix2-ot2sc.enc + RELOC/fonts/enc/dvips/stix2/stix2-t1.enc + RELOC/fonts/enc/dvips/stix2/stix2-t1sc.enc + RELOC/fonts/enc/dvips/stix2/stix2-ts1.enc + RELOC/fonts/map/dvips/stix2/stix2.map + RELOC/fonts/source/public/stix2/ot1-stix2text-bold.pl + RELOC/fonts/source/public/stix2/ot1-stix2text-bolditalic.pl + RELOC/fonts/source/public/stix2/ot1-stix2text-italic.pl + RELOC/fonts/source/public/stix2/ot1-stix2text.pl + RELOC/fonts/source/public/stix2/ot1-stix2textsc-bold.pl + RELOC/fonts/source/public/stix2/ot1-stix2textsc.pl + RELOC/fonts/source/public/stix2/ot2-stix2text-bold.pl + RELOC/fonts/source/public/stix2/ot2-stix2text-bolditalic.pl + RELOC/fonts/source/public/stix2/ot2-stix2text-italic.pl + RELOC/fonts/source/public/stix2/ot2-stix2text.pl + RELOC/fonts/source/public/stix2/ot2-stix2textsc-bold.pl + RELOC/fonts/source/public/stix2/ot2-stix2textsc.pl + RELOC/fonts/source/public/stix2/stix2-mathbb.pl + RELOC/fonts/source/public/stix2/stix2-mathbbit.pl + RELOC/fonts/source/public/stix2/stix2-mathcal.pl + RELOC/fonts/source/public/stix2/stix2-mathex.pl + RELOC/fonts/source/public/stix2/stix2-mathfrak-bold.pl + RELOC/fonts/source/public/stix2/stix2-mathfrak.pl + RELOC/fonts/source/public/stix2/stix2-mathit-bold.pl + RELOC/fonts/source/public/stix2/stix2-mathit.pl + RELOC/fonts/source/public/stix2/stix2-mathrm-bold.pl + RELOC/fonts/source/public/stix2/stix2-mathrm.pl + RELOC/fonts/source/public/stix2/stix2-mathscr-bold.pl + RELOC/fonts/source/public/stix2/stix2-mathscr.pl + RELOC/fonts/source/public/stix2/stix2-mathsf-bold.pl + RELOC/fonts/source/public/stix2/stix2-mathsf.pl + RELOC/fonts/source/public/stix2/stix2-mathsfit-bold.pl + RELOC/fonts/source/public/stix2/stix2-mathsfit.pl + RELOC/fonts/source/public/stix2/stix2-mathtt.pl + RELOC/fonts/source/public/stix2/t1-stix2text-bold.pl + RELOC/fonts/source/public/stix2/t1-stix2text-bolditalic.pl + RELOC/fonts/source/public/stix2/t1-stix2text-italic.pl + RELOC/fonts/source/public/stix2/t1-stix2text.pl + RELOC/fonts/source/public/stix2/t1-stix2textsc-bold.pl + RELOC/fonts/source/public/stix2/t1-stix2textsc.pl + RELOC/fonts/source/public/stix2/ts1-stix2text-bold.pl + RELOC/fonts/source/public/stix2/ts1-stix2text-bolditalic.pl + RELOC/fonts/source/public/stix2/ts1-stix2text-italic.pl + RELOC/fonts/source/public/stix2/ts1-stix2text.pl + RELOC/fonts/tfm/public/stix2/ot1-stix2text-bold.tfm + RELOC/fonts/tfm/public/stix2/ot1-stix2text-bolditalic.tfm + RELOC/fonts/tfm/public/stix2/ot1-stix2text-italic.tfm + RELOC/fonts/tfm/public/stix2/ot1-stix2text.tfm + RELOC/fonts/tfm/public/stix2/ot1-stix2textsc-bold.tfm + RELOC/fonts/tfm/public/stix2/ot1-stix2textsc.tfm + RELOC/fonts/tfm/public/stix2/ot2-stix2text-bold.tfm + RELOC/fonts/tfm/public/stix2/ot2-stix2text-bolditalic.tfm + RELOC/fonts/tfm/public/stix2/ot2-stix2text-italic.tfm + RELOC/fonts/tfm/public/stix2/ot2-stix2text.tfm + RELOC/fonts/tfm/public/stix2/ot2-stix2textsc-bold.tfm + RELOC/fonts/tfm/public/stix2/ot2-stix2textsc.tfm + RELOC/fonts/tfm/public/stix2/stix2-mathbb.tfm + RELOC/fonts/tfm/public/stix2/stix2-mathbbit.tfm + RELOC/fonts/tfm/public/stix2/stix2-mathcal.tfm + RELOC/fonts/tfm/public/stix2/stix2-mathex.tfm + RELOC/fonts/tfm/public/stix2/stix2-mathfrak-bold.tfm + RELOC/fonts/tfm/public/stix2/stix2-mathfrak.tfm + RELOC/fonts/tfm/public/stix2/stix2-mathit-bold.tfm + RELOC/fonts/tfm/public/stix2/stix2-mathit.tfm + RELOC/fonts/tfm/public/stix2/stix2-mathrm-bold.tfm + RELOC/fonts/tfm/public/stix2/stix2-mathrm.tfm + RELOC/fonts/tfm/public/stix2/stix2-mathscr-bold.tfm + RELOC/fonts/tfm/public/stix2/stix2-mathscr.tfm + RELOC/fonts/tfm/public/stix2/stix2-mathsf-bold.tfm + RELOC/fonts/tfm/public/stix2/stix2-mathsf.tfm + RELOC/fonts/tfm/public/stix2/stix2-mathsfit-bold.tfm + RELOC/fonts/tfm/public/stix2/stix2-mathsfit.tfm + RELOC/fonts/tfm/public/stix2/stix2-mathtt.tfm + RELOC/fonts/tfm/public/stix2/t1-stix2text-bold.tfm + RELOC/fonts/tfm/public/stix2/t1-stix2text-bolditalic.tfm + RELOC/fonts/tfm/public/stix2/t1-stix2text-italic.tfm + RELOC/fonts/tfm/public/stix2/t1-stix2text.tfm + RELOC/fonts/tfm/public/stix2/t1-stix2textsc-bold.tfm + RELOC/fonts/tfm/public/stix2/t1-stix2textsc.tfm + RELOC/fonts/tfm/public/stix2/ts1-stix2text-bold.tfm + RELOC/fonts/tfm/public/stix2/ts1-stix2text-bolditalic.tfm + RELOC/fonts/tfm/public/stix2/ts1-stix2text-italic.tfm + RELOC/fonts/tfm/public/stix2/ts1-stix2text.tfm + RELOC/fonts/type1/public/stix2/STIX2Math.pfb + RELOC/fonts/type1/public/stix2/STIX2Text-Bold.pfb + RELOC/fonts/type1/public/stix2/STIX2Text-BoldItalic.pfb + RELOC/fonts/type1/public/stix2/STIX2Text-Italic.pfb + RELOC/fonts/type1/public/stix2/STIX2Text-Regular.pfb + RELOC/tex/latex/stix2/ls1stix2.fd + RELOC/tex/latex/stix2/ls1stix2bb.fd + RELOC/tex/latex/stix2/ls1stix2frak.fd + RELOC/tex/latex/stix2/ls1stix2scr.fd + RELOC/tex/latex/stix2/ls1stix2sf.fd + RELOC/tex/latex/stix2/ls2stix2.fd + RELOC/tex/latex/stix2/ls2stix2cal.fd + RELOC/tex/latex/stix2/ls2stix2ex.fd + RELOC/tex/latex/stix2/ls2stix2tt.fd + RELOC/tex/latex/stix2/ot1stix2.fd + RELOC/tex/latex/stix2/ot2stix2.fd + RELOC/tex/latex/stix2/stix2.sty + RELOC/tex/latex/stix2/t1stix2.fd + RELOC/tex/latex/stix2/ts1stix2.fd +catalogue-contact-bugs https://github.com/stipub/stixfonts/issues +catalogue-contact-development https://github.com/stipub/stixfonts +catalogue-contact-home http://www.stixfonts.org/ +catalogue-ctan /fonts/stix2-type1 +catalogue-date 2019-04-23 21:47:35 +0200 +catalogue-license ofllppl1.3 +catalogue-topics font font-type1 font-maths font-symbol-maths font-bbd font-body font-collection font-nonroman font-otf font-serif font-symbol font-supp font-supp-maths font-supp-symbol +catalogue-version 2.0.0a + +name stmaryrd +category Package +revision 22027 +shortdesc St Mary Road symbols for theoretical computer science +relocated 1 +longdesc The fonts were originally distributed as Metafont sources only, +longdesc but Adobe Type 1 versions are also now available. Macro support +longdesc is provided for use under LaTeX; the package supports the +longdesc "only" option (provided by the somedefs package) to restrict +longdesc what is loaded, for those who don't need the whole font. +execute addMixedMap stmaryrd.map +containersize 166148 +containerchecksum 8abe58b84fff2f4fd6846b6c267f3b245fb1dfc2f38d0db54ce7cd9d456abd07627247613073f09dcf7e11e3e9c5940d8ff657327232ce638abc6babcc5b3d77 +doccontainersize 78724 +doccontainerchecksum caf883d1c5021b52d6471c4c2145e708ac3c05c8944eaae621a3ea7b602b683ba2ef2bc0052f9caf67adc1415e7db02b5b55d3642ed82727a926ec193dd984f4 +docfiles size=28 + RELOC/doc/fonts/stmaryrd/INSTALL + RELOC/doc/fonts/stmaryrd/README details="Original README:" + RELOC/doc/fonts/stmaryrd/README.hoekwater + RELOC/doc/fonts/stmaryrd/stmaryrd.pdf details="Package and font documentation" +srccontainersize 6248 +srccontainerchecksum ebefe2836daed0dd4db99517af0f40c73f0a7b19453d5415c80ae6cf723f4ec4e4ae6f9700a21722b4c0d9b8507c58a596697017893716111b46222f54676aa2 +srcfiles size=7 + RELOC/source/fonts/stmaryrd/stmaryrd.dtx + RELOC/source/fonts/stmaryrd/stmaryrd.ins +runfiles size=98 + RELOC/fonts/afm/public/stmaryrd/stmary10.afm + RELOC/fonts/afm/public/stmaryrd/stmary5.afm + RELOC/fonts/afm/public/stmaryrd/stmary6.afm + RELOC/fonts/afm/public/stmaryrd/stmary7.afm + RELOC/fonts/afm/public/stmaryrd/stmary8.afm + RELOC/fonts/afm/public/stmaryrd/stmary9.afm + RELOC/fonts/map/dvips/stmaryrd/stmaryrd.map + RELOC/fonts/source/public/stmaryrd/stmary10.mf + RELOC/fonts/source/public/stmaryrd/stmary5.mf + RELOC/fonts/source/public/stmaryrd/stmary6.mf + RELOC/fonts/source/public/stmaryrd/stmary7.mf + RELOC/fonts/source/public/stmaryrd/stmary8.mf + RELOC/fonts/source/public/stmaryrd/stmary9.mf + RELOC/fonts/source/public/stmaryrd/stmaryaj.mf + RELOC/fonts/source/public/stmaryrd/stmaryba.mf + RELOC/fonts/source/public/stmaryrd/stmarych.mf + RELOC/fonts/source/public/stmaryrd/stmaryjg.mf + RELOC/fonts/source/public/stmaryrd/stmaryrd.mf + RELOC/fonts/tfm/public/stmaryrd/stmary10.tfm + RELOC/fonts/tfm/public/stmaryrd/stmary5.tfm + RELOC/fonts/tfm/public/stmaryrd/stmary6.tfm + RELOC/fonts/tfm/public/stmaryrd/stmary7.tfm + RELOC/fonts/tfm/public/stmaryrd/stmary8.tfm + RELOC/fonts/tfm/public/stmaryrd/stmary9.tfm + RELOC/fonts/type1/public/stmaryrd/stmary10.pfb + RELOC/fonts/type1/public/stmaryrd/stmary10.pfm + RELOC/fonts/type1/public/stmaryrd/stmary5.pfb + RELOC/fonts/type1/public/stmaryrd/stmary5.pfm + RELOC/fonts/type1/public/stmaryrd/stmary6.pfb + RELOC/fonts/type1/public/stmaryrd/stmary6.pfm + RELOC/fonts/type1/public/stmaryrd/stmary7.pfb + RELOC/fonts/type1/public/stmaryrd/stmary7.pfm + RELOC/fonts/type1/public/stmaryrd/stmary8.pfb + RELOC/fonts/type1/public/stmaryrd/stmary8.pfm + RELOC/fonts/type1/public/stmaryrd/stmary9.pfb + RELOC/fonts/type1/public/stmaryrd/stmary9.pfm + RELOC/tex/latex/stmaryrd/Ustmry.fd + RELOC/tex/latex/stmaryrd/stmaryrd.sty +catalogue-ctan /fonts/stmaryrd +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics comp-theory font font-symbol-maths font-mf font-type1 + +name storebox +category Package +revision 24895 +shortdesc Storing information for reuse +relocated 1 +longdesc The package provides "store boxes" whose user interface matches +longdesc that of normal LaTeX "save boxes", except that the content of a +longdesc store box appears at most once in the output PDF file, however +longdesc often it is used. The present version of the package supports +longdesc pdfLaTeX and LuaLaTeX; when DVI is output, store boxes behave +longdesc the same as save boxes. +containersize 2984 +containerchecksum 365da48946b94161fe78447b402dfda931f7635b7a8a12fe6a4368c3b579c140b6c6037e6b04e192aaac1d768200af2fefc53659e52b813ac6956b9e82c8076c +doccontainersize 194352 +doccontainerchecksum 89867e995ec04c8411e6ebb9919e8b94bc12674fd7e659ad6f42b17988748c98a4756268782a9fb5f46095ed2b83a877c3969f0ca8433e5f8c37dc7551c7825e +docfiles size=49 + RELOC/doc/latex/storebox/README details="Readme" + RELOC/doc/latex/storebox/storebox.pdf details="Package documentation" +srccontainersize 6216 +srccontainerchecksum 248077174224766d5b35b47b319b9eb9afc3a5fcb0d1190474ffc3233c02dc7265c078b08ac57a325990678ab0eb58b818fef34cb932a229da1e43247c6f2578 +srcfiles size=7 + RELOC/source/latex/storebox/storebox.dtx + RELOC/source/latex/storebox/storebox.ins +runfiles size=4 + RELOC/tex/latex/storebox/storebox-pgf.sty + RELOC/tex/latex/storebox/storebox.sty +catalogue-contact-repository https://bitbucket.org/martin_scharrer/storebox +catalogue-ctan /macros/latex/contrib/storebox +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics pdf-feat macro-supp +catalogue-version 1.3a + +name storecmd +category Package +revision 24431 +shortdesc Store the name of a defined command in a container +relocated 1 +longdesc The package provides macros for command definition that save +longdesc the name of the command being defined in a file or a macro +longdesc container. The list could be useful for spelling exceptions in +longdesc text editors that do not support TeX syntax. +containersize 3304 +containerchecksum 1987e3cffafe007d9f3cb9e0d53fcc648eca40140f5188dcb0202a0916296651c1ab02fc589339fc51999b56bfa4a06b29701aa598ec03f51d7b1ee66ecfde7f +doccontainersize 242396 +doccontainerchecksum feacd83403672380cc2cfe90ada2704f98bef63e905740f8f8d50767f86ddf95478efc38fb38fccadad172f27db56045f50a6af4a487f0c5cd2b6ebb5e7666f7 +docfiles size=71 + RELOC/doc/latex/storecmd/README details="Readme" + RELOC/doc/latex/storecmd/storecmd-example.tex + RELOC/doc/latex/storecmd/storecmd-guide.pdf details="Package documentation" + RELOC/doc/latex/storecmd/storecmd-guide.tex +runfiles size=3 + RELOC/tex/latex/storecmd/storecmd.sty +catalogue-ctan /macros/latex/contrib/storecmd +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 0.0.2 + +name stringstrings +category Package +revision 36203 +shortdesc String manipulation for cosmetic and programming application +relocated 1 +longdesc The package provides a large and sundry set of macros for the +longdesc manipulation of strings. The macros are developed not merely +longdesc for cosmetic application (such as changing the case of letters +longdesc and string substitution), but also for programming applications +longdesc such as character look-ahead, argument parsing, conditional +longdesc tests on various string conditions, etc. The macros were +longdesc designed all to be expandable (note that things such as +longdesc \uppercase and \lowercase are not expandable), so that the +longdesc macros may be strung together sequentially and nested (after a +longdesc fashion) to achieve rather complex manipulations. +containersize 9252 +containerchecksum 8ed9dc3bbc869f06126280a4dfab23da73b57a9c5c1058dd9764e2bece26840ad37637d4e83aa84e6d9a17d92095803788697b8d325bca7fd57c7135ade7cbf1 +doccontainersize 395856 +doccontainerchecksum fd794606d8eb3a9ab27957268aae1b35b89c1bfc1b3d5602290797a6eda8551e14471d35fd85cc6d0561a1e74523a36450c958a0cf5881d42742eabf085bc794 +docfiles size=108 + RELOC/doc/latex/stringstrings/README details="Readme" + RELOC/doc/latex/stringstrings/stringstrings.pdf details="Package documentation" +srccontainersize 33280 +srccontainerchecksum 79d8d86c7c3695b8d821bd1bf5400b5195c753877f8aa6c24094acc87d91ba8b58b086b760e87acc6e1d4b7e3898c7530f40567f626cb3b002ee7064c636359a +srcfiles size=40 + RELOC/source/latex/stringstrings/stringstrings.dtx + RELOC/source/latex/stringstrings/stringstrings.ins +runfiles size=15 + RELOC/tex/latex/stringstrings/stringstrings.sty +catalogue-also getargs +catalogue-ctan /macros/latex/contrib/stringstrings +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics text-manip +catalogue-version 1.23 + +name structmech +category Package +revision 47859 +shortdesc A TikZ command set for structural mechanics drawings +relocated 1 +longdesc This package provides a collection of TikZ commands that allow +longdesc users to draw basic elements in material/structural mechanics. +longdesc It is thus possible to draw member forces, nodal +longdesc forces/displacements, various boundary conditions, internal +longdesc force distributions, etc. +containersize 592 +containerchecksum 4efa9a978eb0bb92dec5588107588346ba1a22a34e12bf43b811176d42871f415ec58adfa50a4a4bb9b72ef482395c374b9e7b979f1b779e672422bac2c91c6a +doccontainersize 150116 +doccontainerchecksum 4eb7e209e5034c6809f8e746f63b1a5f3ed62c85cede4fc989ad6d89a9710bd15ee3e5622181ea9a450ea2b8430ae2c51ccc845851cd9fffa582e3b91b656457 +docfiles size=52 + RELOC/doc/latex/structmech/README.md details="Readme" + RELOC/doc/latex/structmech/doc/structmech.pdf details="Package documentation" + RELOC/doc/latex/structmech/doc/structmech.tex + RELOC/doc/latex/structmech/tex/structmech.sty +catalogue-contact-bugs https://github.com/TLCFEM/structmech/issues +catalogue-contact-home https://github.com/TLCFEM/structmech +catalogue-ctan /graphics/pgf/contrib/structmech +catalogue-date 2018-05-28 20:53:43 +0200 +catalogue-license gpl3+ +catalogue-topics pgf-tikz physics +catalogue-version 1.0 + +name struktex +category Package +revision 47931 +shortdesc Draw Nassi-Shneiderman charts +relocated 1 +longdesc Even in the age of OOP one must develop algorithms. +longdesc Nassi-Shneiderman charts are a well known tool to describe an +longdesc algorithm in a graphical way. The package offers some macros +longdesc for generating those charts in a LaTeX document. The package +longdesc provides the most important elements of a Nassi-Shneiderman +longdesc charts, including processing blocks, loops, mapping conventions +longdesc for alternatives, etc. The charts are drawn using the picture +longdesc environment (using pict2e for preference). +containersize 10100 +containerchecksum 3d81817eac5cc8b8bd468537406db6a26fecdaad1db269c2ceed582cae84fc2b549eaf527d4c356be7d4f2f16f9db4746251e9b69db0f0fc3cc8acd9f39d1f50 +doccontainersize 785284 +doccontainerchecksum 261a9f7ef5036bc8eebb87ba503b604b158647e82e88844758be506ac5d389103661f681689a836c0048529446bad0d6537a6fc6ba273dd2ed29abee40336360 +docfiles size=232 + RELOC/doc/latex/struktex/LIESMICH.md details="LIESMICH file" language="de" + RELOC/doc/latex/struktex/README.md details="Readme" + RELOC/doc/latex/struktex/struktex-test-0.nss + RELOC/doc/latex/struktex/struktex-test-1.tex + RELOC/doc/latex/struktex/struktex-test-2.tex + RELOC/doc/latex/struktex/struktex-test-3.tex + RELOC/doc/latex/struktex/struktex-test-4.tex + RELOC/doc/latex/struktex/struktex.de.pdf details="Package documentation" language="de" + RELOC/doc/latex/struktex/struktex.el + RELOC/doc/latex/struktex/struktex.en.pdf details="Package documentation" language="en" + RELOC/doc/latex/struktex/struktex.makemake + RELOC/doc/latex/struktex/struktex.mk +srccontainersize 65696 +srccontainerchecksum 98b06394519aafc81a565c7b12fb1ad86856ca447cb5ccae14aacc95bded9663a72bea301e7f5998eb9cc2a6358c978881736e564c3672eef456c6c44efcce0c +srcfiles size=74 + RELOC/source/latex/struktex/struktex.dtx + RELOC/source/latex/struktex/struktex.ins +runfiles size=14 + RELOC/tex/latex/struktex/strukdoc.sty + RELOC/tex/latex/struktex/struktex.sty + RELOC/tex/latex/struktex/struktxf.sty + RELOC/tex/latex/struktex/struktxp.sty +catalogue-also pict2e +catalogue-ctan /macros/latex/contrib/struktex +catalogue-date 2018-06-04 21:54:41 +0200 +catalogue-license lppl1.2 +catalogue-topics diagram-flow +catalogue-version 2.3c-0-g7d3fc5b + +name sttools +category Package +revision 43684 +shortdesc Various macros +relocated 1 +longdesc A collection of tools and macros, providing: miscellaneous +longdesc float control, page styles for floats, multipage tabulars, even +longdesc columns at end of twocolumn region, switching between one- and +longdesc two-column anywhere, simulating the effect of "midfloats", a +longdesc package to manipulate numerical lists and arrays. +containersize 13160 +containerchecksum acc5c6b470d1e5fd96eaebf3792b3c2402a8fe4a07409328878313cfbaa1e0febc758ae75c6d736e9320f6a332c67f7d6898c761b9c5e30f6658e9049df889b3 +doccontainersize 806084 +doccontainerchecksum 15292806d0f8f4a0364076fa225b7d914a4ae88935e08f87a46978f5a561405f6fe4dc2d471c974c85b369e57bcdc00a5a4759d66d296610713d858dcdd4da34 +docfiles size=247 + RELOC/doc/latex/sttools/README.md details="Readme" + RELOC/doc/latex/sttools/cuted.pdf + RELOC/doc/latex/sttools/floatpag.pdf + RELOC/doc/latex/sttools/flushend.pdf + RELOC/doc/latex/sttools/midfloat.pdf + RELOC/doc/latex/sttools/stabular.pdf + RELOC/doc/latex/sttools/stfloats.pdf + RELOC/doc/latex/sttools/sttools.pdf details="Overview of the bundle" + RELOC/doc/latex/sttools/texsort.pdf +srccontainersize 21048 +srccontainerchecksum b22286c3e7b1bc31247fd52e0c64a5f3dddf35e69c2af8e2a617530a24f82e9504f9f0db82d3cd1c57bae61aba526d941636aa32f498ccb3b06983e6e5f511fe +srcfiles size=42 + RELOC/source/latex/sttools/cuted.dtx + RELOC/source/latex/sttools/floatpag.dtx + RELOC/source/latex/sttools/flushend.dtx + RELOC/source/latex/sttools/midfloat.dtx + RELOC/source/latex/sttools/stabular.dtx + RELOC/source/latex/sttools/stfloats.dtx + RELOC/source/latex/sttools/sttools.dtx + RELOC/source/latex/sttools/sttools.ins + RELOC/source/latex/sttools/texsort.dtx +runfiles size=28 + RELOC/tex/latex/sttools/cuted.sty + RELOC/tex/latex/sttools/floatpag.sty + RELOC/tex/latex/sttools/flushend.sty + RELOC/tex/latex/sttools/midfloat.sty + RELOC/tex/latex/sttools/stabular.sty + RELOC/tex/latex/sttools/stfloats.sty + RELOC/tex/latex/sttools/texsort.sty +catalogue-ctan /macros/latex/contrib/sttools +catalogue-date 2017-04-03 11:28:06 +0200 +catalogue-license lppl1.3 +catalogue-topics collection +catalogue-version 2.0 + +name stubs +category Package +revision 19440 +shortdesc Create tear-off stubs at the bottom of a page +relocated 1 +longdesc The \stubs command creates as many repetitions as possible of +longdesc its argument, at the bottom of the page; these stubs may be +longdesc used (for example) for contact information. +containersize 1720 +containerchecksum 13d9fbb0eb8fed9b92f1307db189e9f65df92470d0ed21a0c84dea2f53ebd1b4d665919372476b737184df4f9faab0a982e681a0f9cb5a99e40b5f80194d448e +doccontainersize 23904 +doccontainerchecksum a427047460a92a436b21c23c112bc4ed8608a9916b613530e5ee5cc56bc833a18c6336943ccba475b7854269680eb7d685bdf2f0641478e46cc4e8fd9a6e8260 +docfiles size=14 + RELOC/doc/latex/stubs/COPYING + RELOC/doc/latex/stubs/README + RELOC/doc/latex/stubs/README.TEXLIVE + RELOC/doc/latex/stubs/changelog.txt + RELOC/doc/latex/stubs/stubs_ex.pdf details="Example of use" + RELOC/doc/latex/stubs/stubs_ex.tex +runfiles size=1 + RELOC/tex/latex/stubs/stubs.sty +catalogue-ctan /macros/latex/contrib/stubs +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics advert +catalogue-version 0.1.1 + +name studenthandouts +category Package +revision 43516 +shortdesc Management and styling of student handout projects +relocated 1 +longdesc This package can be used to generate a single master document +longdesc that contains a set of individual student handouts. The package +longdesc has two main functions. First, it provides a simple framework +longdesc for organizing handout source code, and supplies a set of +longdesc import management tools for selectively importing a subset of +longdesc the handouts into the master document. Selective import is +longdesc convenient when compilation of all of the handouts is +longdesc unnecessary, for example when working on a new handout. As a +longdesc secondary feature, the package defines a basic visual style for +longdesc handouts. This style can be easily changed. +containersize 4352 +containerchecksum 2a7d8cab28b58a26633fec5845498a2987763f61b896fb747d97521b569786f114d80979956a9b9c2b94b61f01677101248a1a4c1735415703398b57306b6c15 +doccontainersize 318548 +doccontainerchecksum 10e3ff558cd5c544d82a61bc67be8b7ed0c9ec9b01550bd3d1c9d3265d1de7153832983593c0be6f5a990d33063b065b397e4ab6b7ed12b0ea79e9e49e0a68f6 +docfiles size=91 + RELOC/doc/latex/studenthandouts/README details="Readme" + RELOC/doc/latex/studenthandouts/samplecode/worksheets.tex + RELOC/doc/latex/studenthandouts/samplecode/worksheets/handout-1-1.tex + RELOC/doc/latex/studenthandouts/samplecode/worksheets/handout-1-2.tex + RELOC/doc/latex/studenthandouts/samplecode/worksheets/handout-1-3.tex + RELOC/doc/latex/studenthandouts/samplecode/worksheets/handout-2-1.tex + RELOC/doc/latex/studenthandouts/samplecode/worksheets/handout-2-2.tex + RELOC/doc/latex/studenthandouts/samplecode/worksheets/handout-3-1.tex + RELOC/doc/latex/studenthandouts/samplecode/worksheets/handout-3-2.tex + RELOC/doc/latex/studenthandouts/studenthandouts-doc.pdf details="Package documentation" + RELOC/doc/latex/studenthandouts/studenthandouts-doc.tex +runfiles size=3 + RELOC/tex/latex/studenthandouts/studenthandouts.sty +catalogue-ctan /macros/latex/contrib/studenthandouts +catalogue-date 2017-03-16 20:27:26 +0100 +catalogue-license lppl1.3 +catalogue-topics presentation +catalogue-version 1.0 + +name sty2dtx +category Package +revision 29743 +shortdesc Create a .dtx file from a .sty file +longdesc The package provides a Perl script that converts a .sty file +longdesc (LaTeX package) to .dtx format (documented LaTeX source), by +longdesc surrounding macro definitions with macro and macrocode +longdesc environments. The macro name is automatically inserted as an +longdesc argument to the macro environemnt. Code lines outside macro +longdesc definitions are wrapped only in macrocode environments. Empty +longdesc lines are removed. The script should not be thought to be fool +longdesc proof and 100% accurate but rather as a good start to the +longdesc business of making a .dtx file from an undocumented style file. +longdesc Full .dtx files are generated. A template based on the skeleton +longdesc file from 'dtxtut' is used. User level macros are added +longdesc automatically to the 'Usage' section of the .dtx file. A +longdesc corresponding .ins file can be generated as well. +depend sty2dtx.ARCH +containersize 8676 +containerchecksum 05e17abf8322e70f275308e983a244e178883aa36571640d513962e813a2bfeb88264c0ae9ccab956f9bd016923d1727c14a7a26bb58b257c7d05600a540da1c +doccontainersize 151548 +doccontainerchecksum 1abba13831a0cd4b93f9665f242b96d32e764c39ccdb917f655922fe2a4b00385d6a78c77c151e212082eace3b9c9447705681416b5cb2eed9f794d7eb30c905 +docfiles size=43 + texmf-dist/doc/man/man1/sty2dtx.1 + texmf-dist/doc/man/man1/sty2dtx.man1.pdf + texmf-dist/doc/support/sty2dtx/README details="Readme" + texmf-dist/doc/support/sty2dtx/sty2dtx.pdf +runfiles size=8 + texmf-dist/scripts/sty2dtx/sty2dtx.pl +catalogue-also makedtx +catalogue-ctan /support/sty2dtx +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl3 +catalogue-topics package-devel +catalogue-version 2.3 + +name sty2dtx.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of sty2dtx +containersize 340 +containerchecksum 5513b1db13d6f95e8585195fc4e0cf1a2e78c7288dc64149bba132de897f7d9ec61fd0b1bf9015f6b6dca1ef80d7b12dde10b47937399fedea37c8952140eb92 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/sty2dtx + +name sty2dtx.amd64-freebsd +category Package +revision 21215 +shortdesc amd64-freebsd files of sty2dtx +containersize 344 +containerchecksum 1796704b05b7db2274d53da2efd15b1033e06d6af752d978caae9346c11e924a551b16956c1a148bfd1b76275d946a4400a4ee8b4674e1befedb0d3259d4aa30 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/sty2dtx + +name sty2dtx.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of sty2dtx +containersize 340 +containerchecksum 4f441df5e6b06b65e1bcdded4837ef1ab5cbe2ecf320834760d661c19807cfd9bcbc569ee0ea2b707a096f3232441fad05ea3ad4e90809d0ded15780828acd31 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/sty2dtx + +name sty2dtx.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of sty2dtx +containersize 340 +containerchecksum 80cdefa3609834c196d739983010ebef83080f4cd94a601f2710ff411970047b250d43bade5a8bc662d78f9363a78483705441466a1087da74cf64d9111c7d1d +binfiles arch=armhf-linux size=1 + bin/armhf-linux/sty2dtx + +name sty2dtx.i386-cygwin +category Package +revision 21215 +shortdesc i386-cygwin files of sty2dtx +containersize 340 +containerchecksum cbca0441d505adf28ffe8940d9d5bded9fce126e013dd1f8e1c413025719aa3105b0ccbc6df74c86b407369e5026dca73c4450c88f010a21adc5c6565ae1042b +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/sty2dtx + +name sty2dtx.i386-freebsd +category Package +revision 21215 +shortdesc i386-freebsd files of sty2dtx +containersize 340 +containerchecksum 8ad97814bade7028367e9d1b6ecacfb972c3d627ab6a1c143f71b1b3c0ec8e627a92398a308b4e2cc15b787d5ec475d76318d3dc3a5ba685bbabd5dccb95213b +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/sty2dtx + +name sty2dtx.i386-linux +category Package +revision 21215 +shortdesc i386-linux files of sty2dtx +containersize 340 +containerchecksum ce73b1321d7dba48b4decd8142dab2b64189d053ca4787b074b4f846e0a8cf36755f7117aab2a978d5d1e8bf3c18fd1b5cf3e49eadef2bdcfa50e8d979133744 +binfiles arch=i386-linux size=1 + bin/i386-linux/sty2dtx + +name sty2dtx.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of sty2dtx +containersize 340 +containerchecksum d1b9b8adafd7c52341a8b48638019688efd9c41df61751bdbfcb4983f1acdd95b99d7d9f3aeeed1dd690412164a318e801e449ef9822116a78493d3409f0d0ca +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/sty2dtx + +name sty2dtx.i386-solaris +category Package +revision 21215 +shortdesc i386-solaris files of sty2dtx +containersize 340 +containerchecksum ffefd473cba005de712a95a0a836415970772ea75ca6fabf776e81662d1d9a0e2f9873083ce3f94f7e92ea28400076b35c338b9a245dfa60d7706ee0e93202a6 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/sty2dtx + +name sty2dtx.win32 +category Package +revision 21215 +shortdesc win32 files of sty2dtx +containersize 680 +containerchecksum de8418cb30fea8228b11fe638086954c9684f41e0978731ec87f14eeb193ab2d96d1af4c54d266193fe77354ed88f13197500721b904e6587194ef0b1261db64 +binfiles arch=win32 size=1 + bin/win32/sty2dtx.exe + +name sty2dtx.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of sty2dtx +containersize 344 +containerchecksum c66f52454f3908898159bdbfefd6bd5b6f1d3184d76831f1b84c1af1685319387f2434312bbe6c5d8b6bd5cb3d45a995b957d7c0be8637b13d0706cca26e6ee8 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/sty2dtx + +name sty2dtx.x86_64-darwin +category Package +revision 21215 +shortdesc x86_64-darwin files of sty2dtx +containersize 344 +containerchecksum d339d4b3d91fc08d1c13d14d1ebcf9b1cc1bd87f8c44eb41c20f14373e13d1733f74f94ee6a52e73e9f7c3aeea8cbf492c1a4b4feecc6ed20e8a90234213fc5b +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/sty2dtx + +name sty2dtx.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of sty2dtx +containersize 352 +containerchecksum a1ec9dfd12be90bb8ece8a53706ec1b00d476bba6bc384e2d640d47d49b6fd1a028fb3a6bc4267a964c091b230c23c2d60ecd389ed8959e8d799c6679b9604d4 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/sty2dtx + +name sty2dtx.x86_64-linux +category Package +revision 21215 +shortdesc x86_64-linux files of sty2dtx +containersize 340 +containerchecksum ea675926db6dde5dfabb1e688b2bd1b6ed0b3db4a3d02defb5ce4db15e7d9a99269da31e8dff78285a19197333973bc04b00ef429b0beeefd809c1d371d5f37b +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/sty2dtx + +name sty2dtx.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of sty2dtx +containersize 344 +containerchecksum bb08e3de75e0ef49d6b433fc30bd454e934aa81907bf8ec578e80d2679aaf766c9a7d913da41c80cdb5411edde553c0689dba5049849a41c03216a79f79fcd43 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/sty2dtx + +name sty2dtx.x86_64-solaris +category Package +revision 21215 +shortdesc x86_64-solaris files of sty2dtx +containersize 340 +containerchecksum c07e73b141df36e37e7006b62a448113104092877dae7ced982d55d6389c0c59f5ef35794b661eb498049054a887478d9254cfadd67d248f211f2005d2a97bb8 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/sty2dtx + +name suanpan +category Package +revision 15878 +shortdesc MetaPost macros for drawing Chinese and Japanese abaci +relocated 1 +longdesc These macros are described in Denis Roegel: MetaPost macros for +longdesc drawing Chinese and Japanese abaci, TUGboat (volume 30, number +longdesc 1, 2009, pages 74-79) +containersize 4528 +containerchecksum a9fd27694ea7491321580ee325f8b151bbcfcf6da14ecce85b6d4e68b09cdf125c810a5170aacc966835fad8f2aaefd78916920cc3e896cad7738d026450ed83 +doccontainersize 544 +doccontainerchecksum 667d3c5590468170acfded106a2a468d9abe7b4b34a9b56d153d401a60e8f24bce99a4f6c5f2761572a42b85c7faae5741ee5b6f22c3f1004e6d6685463b9350 +docfiles size=2 + RELOC/doc/metapost/suanpan/README details="Readme" + RELOC/doc/metapost/suanpan/article.txt +runfiles size=5 + RELOC/metapost/suanpan/abacus.mp + RELOC/metapost/suanpan/suanpan.mp +catalogue-ctan /graphics/metapost/contrib/macros/suanpan +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics games mp-use + +name subdepth +category Package +revision 15878 +shortdesc Unify maths subscript height +relocated 1 +longdesc This package is based on code (posted long ago to comp.text.tex +longdesc by Donald Arseneau) to equalise the height of subscripts in +longdesc maths. The default behaviour is to place subscripts slightly +longdesc lower when there is a superscript as well, but this can look +longdesc odd in some situations. +containersize 1644 +containerchecksum 7328742873abc42d2b9916161ca43e339e03ac1fd34479e93d9eccc98a065e95cffbc920395dd6f90d90989d29840cbdf2ca87dd1d0b293dfae66abbdc6e2d3a +doccontainersize 95520 +doccontainerchecksum 6bda8b822a4f1ac2a181ce34f739449bfb976a4450a54589e0cb4a64a0f1ff358a469fc88a37639104f731671ec474088968ab3dc95552a2d92a073d91857668 +docfiles size=28 + RELOC/doc/latex/subdepth/README details="Readme" + RELOC/doc/latex/subdepth/subdepth.pdf details="Package documentation" +srccontainersize 3636 +srccontainerchecksum 6a63a2d62dbc47d41e78004792e5c9e6ae7b2f3c435e95bc9969bbce109293a8257d4913a5b1959d95163c9aaae557daad53e950c5313faafbd8fb8d0de2c367 +srcfiles size=4 + RELOC/source/latex/subdepth/subdepth.dtx + RELOC/source/latex/subdepth/subdepth.ins +runfiles size=1 + RELOC/tex/latex/subdepth/subdepth.sty +catalogue-ctan /macros/latex/contrib/subdepth +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics subsup-pos maths +catalogue-version 0.1 + +name subeqn +category Package +revision 15878 +shortdesc Package for subequation numbering +relocated 1 +longdesc Sometimes it is necessary to be able to refer to subexpressions +longdesc of an equation. In order to do that these subexpressions should +longdesc be numbered. In standard LaTeX there is no provision for this. +longdesc To solve this problem Stephen Gildea once wrote subeqn.sty for +longdesc LaTeX 2.09; Donald Arsenau rewrote the macros and Johannes +longdesc Braams made them available for LaTeX2e. Note that this package +longdesc is not compatible with the package subeqnarray (written by +longdesc Johannes Braams), but it can be used together with the LaTeX +longdesc class options leqno and fleqn. +containersize 1604 +containerchecksum 7d04ceeb8f75cae074f9bff3e8d0aac4b529d199343c59fae7715d1023aebc3cbf2b45614e0d5ef0a95ff9bca4ff9e8318c4ddd86ceaec42d271f8c0f71282cb +doccontainersize 79832 +doccontainerchecksum 09f902bf3b4c8e2e1f9d805102c170b2bf2f4de067cdd590b22fde6b58f4e3042d0b14d362e0af587f9fff9e2c8789bb8af4b329bbfd721ca7dce8af01612c50 +docfiles size=25 + RELOC/doc/latex/subeqn/manifest.txt + RELOC/doc/latex/subeqn/subeqn.pdf details="Package documentation" + RELOC/doc/latex/subeqn/subeqn.tex +srccontainersize 3652 +srccontainerchecksum f1f7229f058a7dd80a67f18692fad36601015ad6bd7994775b573193d74c0ff7f175397ad446384cb74b3797f9f17605ce2d381327249ab9e36ae0aab756d09d +srcfiles size=4 + RELOC/source/latex/subeqn/subeqn.dtx + RELOC/source/latex/subeqn/subeqn.ins +runfiles size=1 + RELOC/tex/latex/subeqn/subeqn.sty +catalogue-also subeqnarray +catalogue-ctan /macros/latex/contrib/subeqn +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics maths +catalogue-version 2.0b + +name subeqnarray +category Package +revision 15878 +shortdesc Equation array with sub numbering +relocated 1 +longdesc This package defines the subeqnarray and subeqnarray* +longdesc environments, which behave like the corresponding eqnarray and +longdesc eqnarray* environments, except that the individual lines are +longdesc numbered like 1a, 1b, 1c, etc. To refer to these numbers an +longdesc extra label command \slabel is provided. Users are urged to +longdesc consider the alignment capabilities of the amsmath bundle, +longdesc which produce better results than eqnarray-related macros. +containersize 2296 +containerchecksum 846d822661b903328ee7b199df6bd7fe5b606c13a185cbb6e6fcccf3b009f2b94396bfc3f9e4b8eb5052688536867dee06c6b9571e051d477415e1ac999fc162 +doccontainersize 112308 +doccontainerchecksum 9f47b8fb760b51a87ce5f9728e9ff76dbbc10ae009e04c9bc0c91133941e5b528e09e5034156b1dc5ff9a0c74446b548bb69c389486e68a4b8a79a7c9ed1a7f7 +docfiles size=33 + RELOC/doc/latex/subeqnarray/manifest.txt + RELOC/doc/latex/subeqnarray/subeqnarray.pdf details="Package documentation" + RELOC/doc/latex/subeqnarray/subeqnarray.tex +srccontainersize 5068 +srccontainerchecksum f41086ca65c7821167acada640a11768da429158b4da7caa398db254be156dfb291281b1e2f4f4f58f04c0c8041c45efd2072ddc40db8673808b83b3ca09a93f +srcfiles size=5 + RELOC/source/latex/subeqnarray/subeqnarray.dtx + RELOC/source/latex/subeqnarray/subeqnarray.ins +runfiles size=2 + RELOC/tex/latex/subeqnarray/subeqnarray.sty +catalogue-also subeqn +catalogue-ctan /macros/latex/contrib/subeqnarray +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics maths-syseqn +catalogue-version 2.1c + +name subfig +category Package +revision 15878 +shortdesc Figures broken into subfigures +relocated 1 +longdesc The package provides support for the manipulation and reference +longdesc of small or 'sub' figures and tables within a single figure or +longdesc table environment. It is convenient to use this package when +longdesc your subfigures are to be separately captioned, referenced, or +longdesc are to be included in the List-of-Figures. A new \subfigure +longdesc command is introduced which can be used inside a figure +longdesc environment for each subfigure. An optional first argument is +longdesc used as the caption for that subfigure. This package supersedes +longdesc the subfigure package (which is no longer maintained). The name +longdesc was changed since the package is not completely backward +longdesc compatible with the older package The major advantage of the +longdesc new package is that the user interface is keyword/value driven +longdesc and easier to use. To ease the transition from the subfigure +longdesc package, the distribution includes a configuration file +longdesc (subfig.cfg) which nearly emulates the subfigure package. The +longdesc functionality of the package is provided by the (more recent +longdesc still) subcaption package. +containersize 6896 +containerchecksum ec7ae149b99fecae3b4ee7cf600811dcec9bc44eac762b5480c6df48b725db3c08a87922edb7a524d7d2b748bf7d25482e155fd40080cea9ac62f2575bf61d15 +doccontainersize 453616 +doccontainerchecksum 8cb67139bc1063fc4d5482b51f1c3ad690c85d4f7e022a99059a7b20176bbdc97a44af23756fa220b3f7f7afdf039c4a7b672700012e96b98ee25ebb9e5c99b5 +docfiles size=181 + RELOC/doc/latex/subfig/README details="Readme" + RELOC/doc/latex/subfig/ltxdoc.cfg + RELOC/doc/latex/subfig/subfig.pdf details="Package documentation" + RELOC/doc/latex/subfig/test1.tex + RELOC/doc/latex/subfig/test2.tex + RELOC/doc/latex/subfig/test3.tex + RELOC/doc/latex/subfig/test4.tex + RELOC/doc/latex/subfig/test5.tex + RELOC/doc/latex/subfig/test6.tex + RELOC/doc/latex/subfig/test7.tex +srccontainersize 43120 +srccontainerchecksum 44e7113550dcac4b14ddab03ad5ba4bc86cb3a4dcb14a31f73e5caf0b02f9f3bd56fd9d18ddae002a981e9680bc6fae5850ed07ee94e60d858647136cf9243eb +srcfiles size=50 + RELOC/source/latex/subfig/Makefile + RELOC/source/latex/subfig/subfig.dtx + RELOC/source/latex/subfig/subfig.ins +runfiles size=8 + RELOC/tex/latex/subfig/altsf.cfg + RELOC/tex/latex/subfig/subfig.sty +catalogue-also subfloat +catalogue-contact-bugs https://github.com/bidi-tex/subfig/issues +catalogue-contact-repository https://github.com/bidi-tex/subfig +catalogue-ctan /macros/latex/contrib/subfig +catalogue-date 2018-11-28 21:07:40 +0100 +catalogue-license lppl +catalogue-topics caption subfloat +catalogue-version 1.3 + +name subfigmat +category Package +revision 20308 +shortdesc Automates layout when using the subfigure package +relocated 1 +longdesc Defines an array/matrix-type environment that is used with the +longdesc subfigure package to automate the placement of subfigures (or +longdesc tables or text). The subfigures are placed left-to-right, +longdesc top-to-bottom. +containersize 2592 +containerchecksum d607d2e79b3b0d6e99c8577daa577aa25a0a7d9aecc00c8b7026ef3a923b0e2815837d257599dcfdb1e5320305f492bf17845f5c6cd487b476e789c5140e01c3 +doccontainersize 286940 +doccontainerchecksum 6cfbc274a466796ed0478e9c43cf68d51bbf5379691ea6848968c48cabcfd54525075727463905e48b64946df9822cd10903c562a2f7d546b3d2cd2e9ef11db4 +docfiles size=72 + RELOC/doc/latex/subfigmat/subfigmat-doc.pdf details="Package documentation" + RELOC/doc/latex/subfigmat/subfigmat-doc.tex +runfiles size=2 + RELOC/tex/latex/subfigmat/subfigmat.sty +catalogue-ctan /macros/latex/contrib/subfigmat +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics matrix float +catalogue-version 1.0 + +name subfigure +category Package +revision 15878 +shortdesc Deprecated: Figures divided into subfigures +relocated 1 +longdesc Provides support for the manipulation and reference of small or +longdesc 'sub' figures and tables within a single figure or table +longdesc environment. It is convenient to use this package when your +longdesc subfigures are to be separately captioned, referenced, or are +longdesc to be included in the List-of-Figures. A new \subfigure command +longdesc is introduced which can be used inside a figure environment for +longdesc each subfigure. An optional first argument is used as the +longdesc caption for that subfigure. The package is now considered +longdesc obsolete: it was superseded by subfig, but users may find the +longdesc more recent subcaption package more satisfactory. +containersize 4868 +containerchecksum d4ca2ef4c52c84ddda85ee95328c9d3e97ef601db4f08ea508bc53393e3b2722224273ac63f749d6a922c7b42787e932d7f60ed3ceb03667fcf8fc591d4ac97f +doccontainersize 344716 +doccontainerchecksum 46c2950db73fb557e81887f605b866827b6ae7e027a684f0d24cb3f9d5962a3d83aad97b84e61617381af8d0949057df17ef45d629e992e51c80bce3474cc742 +docfiles size=106 + RELOC/doc/latex/subfigure/README details="Readme" + RELOC/doc/latex/subfigure/ltxdoc.cfg + RELOC/doc/latex/subfigure/subfigure.pdf details="Package documentation" + RELOC/doc/latex/subfigure/test.tex + RELOC/doc/latex/subfigure/test2.tex + RELOC/doc/latex/subfigure/test3.tex + RELOC/doc/latex/subfigure/test4.tex + RELOC/doc/latex/subfigure/test5.tex +srccontainersize 36364 +srccontainerchecksum 1295290b8c5cc814f6cbadc2be418413d35a0a1cfd313a69b05fc8e5e47ecf5da0cbba73b81f499f0085a55b7e783b9bd82b29ce1072792fa34e422596a117c7 +srcfiles size=41 + RELOC/source/latex/subfigure/Makefile + RELOC/source/latex/subfigure/subfigure.dtx + RELOC/source/latex/subfigure/subfigure.ins +runfiles size=5 + RELOC/tex/latex/subfigure/subfigure.cfg + RELOC/tex/latex/subfigure/subfigure.sty +catalogue-also subfloat +catalogue-ctan /obsolete/macros/latex/contrib/subfigure +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics caption subfloat obsolete +catalogue-version 2.1.5 + +name subfiles +category Package +revision 48323 +shortdesc Individual typesetting of subfiles of a "main" document +relocated 1 +longdesc Using subfiles the user can handle multi-file projects more +longdesc comfortably making it possible to both process the subsidiary +longdesc files by themselves and to process the main file that includes +longdesc them, without making any changes to either. +containersize 1444 +containerchecksum 9a71fe71fe0acd6f9df8b94b29b59416953e353857989d45ad974e6cc5f013319252f1f02f4feaf4bc788013ae3acc5082361da0eead42da1e51b344c6388727 +doccontainersize 231984 +doccontainerchecksum 4c7470b61c49bf20292806f41ba21b824091a9c46bc3befb46dce259e706ba3523d1d41dfd45dc1a4406fc993a974c1e3f13eb6f7bd849dc24c21668acda20ea +docfiles size=58 + RELOC/doc/latex/subfiles/README + RELOC/doc/latex/subfiles/subfiles.pdf details="Package documentation" +srccontainersize 4904 +srccontainerchecksum ef5bd2853db5150d6c7890fa96f7eb59d35577457cd9c8214aef6e0afade618d8af17b9b8a9640a8d556835aa8e7cbfa6d20e735c440d90ee03266dd2c42186e +srcfiles size=4 + RELOC/source/latex/subfiles/subfiles.dtx + RELOC/source/latex/subfiles/subfiles.ins +runfiles size=2 + RELOC/tex/latex/subfiles/subfiles.cls + RELOC/tex/latex/subfiles/subfiles.sty +catalogue-also combine standalone +catalogue-ctan /macros/latex/contrib/subfiles +catalogue-date 2018-07-31 17:12:00 +0200 +catalogue-license lppl1.3 +catalogue-topics subdocs +catalogue-version 1.2 + +name subfloat +category Package +revision 29349 +shortdesc Sub-numbering for figures and tables +relocated 1 +longdesc This package enables sub-numbering of floats (figures and +longdesc tables) similar to the subequations-environment of the amsmath +longdesc package. The subfloat package is not to be confused with the +longdesc subfig package which generates sub-figures within one normal +longdesc figure, and manages their placement; subfloat only affects +longdesc captions and numbering. +containersize 2032 +containerchecksum d5bd48fe7634ef6deec540595fd23aea21d95d7c68d053bc65eeebc950e35064add73e5b81e92d3a3d4a4dc938448d9c9a27bd0f1a625e4a9f425d4e2d55f237 +doccontainersize 89332 +doccontainerchecksum 400b9b272e51cd9fa7370f1cf7cb354dc1235fc41d57fb07061dd08b44e06cfc17d38c1be3fd5bafb5ed6bd0404660c46c9bbbfd2fb852297f283be85424c088 +docfiles size=30 + RELOC/doc/latex/subfloat/ChangeLog + RELOC/doc/latex/subfloat/README details="Readme" + RELOC/doc/latex/subfloat/install.sh + RELOC/doc/latex/subfloat/subfloat.pdf details="Package documentation" +srccontainersize 7148 +srccontainerchecksum e72b55996a07665b1deb038c5924e7a71c7b7aea761a1420d4c38d64c1ee98b8663b4a996ae39a869cb12b6ef99efd09c989f937bee18f05a1eba57856dc686f +srcfiles size=10 + RELOC/source/latex/subfloat/Makefile + RELOC/source/latex/subfloat/subfloat.dtx + RELOC/source/latex/subfloat/subfloat.ins +runfiles size=2 + RELOC/tex/latex/subfloat/subfloat.sty +catalogue-ctan /macros/latex/contrib/subfloat +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics subfloat +catalogue-version 2.14 + +name substances +category Package +revision 40989 +shortdesc A database of chemicals +relocated 1 +longdesc The package provides the means to create a database-like file +longdesc that contains data of various chemicals. These data may be +longdesc retrieved in the document; an index of the chemicals mentioned +longdesc in the document can be created.. +containersize 4780 +containerchecksum c7e3d72a506242b79e99c531bc550c81081d59c5a850af52ca3b86054a5eae42f9f1ac5c7808f54c404bee829f4cafaa1807c46ac7b994cd0f88ade1aec94c5a +doccontainersize 578964 +doccontainerchecksum b2900ddbd6f8618522db171c5fb8b35ce5e5ab6b51fde609a18e6b5656437709772dba683767ad23ce955463a869c483e5e3fe81e1f9b5f7523f4f0cdb87a4d9 +docfiles size=152 + RELOC/doc/latex/substances/README details="Readme" + RELOC/doc/latex/substances/substances-examples.sub + RELOC/doc/latex/substances/substances_en.pdf details="Package documentation" + RELOC/doc/latex/substances/substances_en.tex +runfiles size=6 + RELOC/tex/latex/substances/substances-default.def + RELOC/tex/latex/substances/substances.sty +catalogue-ctan /macros/latex/contrib/substances +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics chemistry expl3 +catalogue-version 0.2a + +name substitutefont +category Package +revision 32066 +shortdesc Easy font substitution +relocated 1 +longdesc Many free fonts are extensions of a basic font family with new +longdesc glyphs or shapes. Such fonts may be given a new name due to +longdesc licence reasons or to the creator's preference. The package +longdesc facilitates the task of setting up a font family as substitute +longdesc for another one, using its \substitutefont command. +containersize 1604 +containerchecksum d060c12b1283ebcf314d6f9f6efd2ed94151ae7030a3d6e424478b2e2cd05753260837f1b9c5003735e27a7eba0313f29263e9a8a8892264bec131bbe07ef9d1 +doccontainersize 1430388 +doccontainerchecksum ce241b95d029651d2de4464880f7f59e4909939697537cf5257bc2e132a476147263c8e9253ddd1fd35fd62dba73cf4d0d06d41bde26b11776b83c456adb0fb4 +docfiles size=374 + RELOC/doc/latex/substitutefont/README details="Readme" + RELOC/doc/latex/substitutefont/cyrillic-lm-lgc.pdf + RELOC/doc/latex/substitutefont/cyrillic-lm-lgc.tex + RELOC/doc/latex/substitutefont/cyrillic-paratype.pdf + RELOC/doc/latex/substitutefont/cyrillic-paratype.tex + RELOC/doc/latex/substitutefont/greek-palatino-didot.pdf + RELOC/doc/latex/substitutefont/greek-palatino-didot.tex + RELOC/doc/latex/substitutefont/greek-times-artemisia.pdf + RELOC/doc/latex/substitutefont/greek-times-artemisia.tex + RELOC/doc/latex/substitutefont/substitutefont-doc.html + RELOC/doc/latex/substitutefont/substitutefont-test.pdf + RELOC/doc/latex/substitutefont/substitutefont-test.tex + RELOC/doc/latex/substitutefont/substitutefont.sty.html +runfiles size=1 + RELOC/tex/latex/substitutefont/substitutefont.sty +catalogue-ctan /macros/latex/contrib/substitutefont +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics font-supp +catalogue-version 0.1.4 + +name substr +category Package +revision 16117 +shortdesc Deal with substrings in strings +relocated 1 +longdesc The package provides commands to deal with substrings of +longdesc strings. Macros are provided to: determine if one string is a +longdesc substring of another, return the parts of a string before or +longdesc after a substring, and count the number of occurrences of a +longdesc substring. +containersize 2040 +containerchecksum 979aaff088f7bd521e2af3f008fd6fb9dc908ec7c9f3963ab7b6338ece92b2a7eebbf9b4974ab87f73cc71ecf7ba92c25d22be8d1fdd297d066da72f61ad1d4f +doccontainersize 17760 +doccontainerchecksum 97adaaa986a8540364cd6901448eb47bfbe9d53842f412100696621c55d2209807d0d527c8126d9df7b5b38b0ba2f0598e79a467934d9069fe96a2d9125b701f +docfiles size=8 + RELOC/doc/latex/substr/ChangeLog + RELOC/doc/latex/substr/README details="Readme" + RELOC/doc/latex/substr/testsubstr.pdf + RELOC/doc/latex/substr/testsubstr.tex +runfiles size=2 + RELOC/tex/latex/substr/substr.sty +catalogue-ctan /macros/latex/contrib/substr +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl1 +catalogue-topics macro-supp +catalogue-version 1.2 + +name subsupscripts +category Package +revision 16080 +shortdesc A range of sub- and superscript commands +relocated 1 +longdesc The package provides a comprehensive and flexible set of +longdesc commands for combinations of left and right sub- and +longdesc superscripts. +containersize 896 +containerchecksum a1578fb66e6068955c4aa69b8ccb951e79fe55616ceaac8d5f01b62d8c6e862d816e0e1ff6c387bad8b8416a3993699872b0ee3df4f432a733ded0eaa60424fe +doccontainersize 101524 +doccontainerchecksum b1424b69633b1c09fde52a38c2e50b6c744671292875688b295586bfcd340283c03a122c83298e8be9bf714201db35f0000c41720a6db49cc09591ae69a3d176 +docfiles size=31 + RELOC/doc/latex/subsupscripts/README details="Readme" + RELOC/doc/latex/subsupscripts/SubSupScripts.pdf details="Package documentation" + RELOC/doc/latex/subsupscripts/SubSupScripts.tex +runfiles size=1 + RELOC/tex/latex/subsupscripts/subsupscripts.sty +catalogue-ctan /macros/latex/contrib/subsupscripts +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics subsup-pos maths physics +catalogue-version 1.0 + +name sudoku +category Package +revision 15878 +shortdesc Create sudoku grids +relocated 1 +longdesc The sudoku package provides an environment for typesetting +longdesc sudoku grids. A sudoku puzzle is a 9x9 grid where some of the +longdesc squares in the grid contain numbers. The rules are simple: +longdesc every column can only contain the digits 1 to 9, every row can +longdesc only contain the digits 1 to 9 and every 3x3 box can only +longdesc contain the digits 1 to 9. More information, including help and +longdesc example puzzles, can be found at sudoku.org.uk. This site also +longdesc has blank sudoku grids (or worksheets), but you will not need +longdesc to print them from there if you have this package installed. +containersize 1864 +containerchecksum a5a9ed2ec9a5eb2cfe973094c6bfca609923ee14ec51916051985bcb2533d1f6670776877252f50a2f16fb54e3318adb15fde907182da215d1db81327fee313b +doccontainersize 54904 +doccontainerchecksum 7e1fc099e6f84e0e22f6e479bfc611ebb8668fd1391c07f877abf4455579248b99108c9b6224da3a0abec4e0853ac8ba8f817e80832629a1d3b624b16394c29f +docfiles size=19 + RELOC/doc/latex/sudoku/CHANGES + RELOC/doc/latex/sudoku/README details="Readme" + RELOC/doc/latex/sudoku/sudoku.pdf details="Package documentation" +srccontainersize 4356 +srccontainerchecksum 05e89ce1f640ed336d8d7447681517b6fb827fed72e8245998c0b11f7f767b8f20e9688f3740223213fed0e860c9304748a11fe94b1a8244697c79a0db54d441 +srcfiles size=4 + RELOC/source/latex/sudoku/sudoku.dtx + RELOC/source/latex/sudoku/sudoku.ins +runfiles size=1 + RELOC/tex/latex/sudoku/sudoku.sty +catalogue-ctan /macros/latex/contrib/sudoku +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics games +catalogue-version 1.0 + +name sudokubundle +category Package +revision 15878 +shortdesc A set of sudoku-related packages +relocated 1 +longdesc The bundle provides three packages: printsudoku, which provides +longdesc a command \sudoku whose argument is the name of a file +longdesc containing a puzzle specification; solvesudoku, which attempts +longdesc to find a solution to the puzzle in the file named in the +longdesc argument; and createsudoku, which uses the random package to +longdesc generate a puzzle according to a bunch of parameters that the +longdesc user sets via macros. The bundle comes with a set of +longdesc ready-prepared puzzle files. +containersize 8244 +containerchecksum da5c7954dda7fb8076d9b2fbd8a379e416a162ce0039a0566799bba0ddea975f3b951b7615cf50819440b46c419277a080b6e1c3c514e73483b4f81420a4b6d4 +doccontainersize 281764 +doccontainerchecksum 6878ae9a2734e5efb51f04fe24cc30546a2c812ccfd5ae62cbbbc94496a081b03f7d2bfcfa6c7edd610cd6eccd741c3dcc3441a6d437eea5f310865dd13d30f9 +docfiles size=97 + RELOC/doc/latex/sudokubundle/README details="Readme" + RELOC/doc/latex/sudokubundle/somesudoku.tex + RELOC/doc/latex/sudokubundle/sudokubundle.pdf details="Package documentation" +srccontainersize 27196 +srccontainerchecksum 00b0b27e9b97dcca17113d8f314480b2617d18603bf022631f6553f2b8a7c4e7d30e1718cfe4ce1ede7996d7ebe7905d25480c6516df4b3df65403346c050beb +srcfiles size=36 + RELOC/source/latex/sudokubundle/sudokubundle.dtx + RELOC/source/latex/sudokubundle/sudokubundle.ins +runfiles size=14 + RELOC/tex/latex/sudokubundle/createsudoku.sty + RELOC/tex/latex/sudokubundle/printsudoku.sty + RELOC/tex/latex/sudokubundle/solvesudoku.sty +catalogue-also sudoku +catalogue-ctan /macros/latex/contrib/sudokubundle +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics games +catalogue-version 1.0a + +name suftesi +category Package +revision 49138 +shortdesc A document class for typesetting theses, books and articles +relocated 1 +longdesc The class can be used to typeset any kind of book (originally +longdesc designed for use in the humanities). +containersize 13164 +containerchecksum b5c845b35d39c689f0dc63cda289a2b3cb28199c843d46bed2bb0549477a5756b31afd99dcb7de9a0a3d86e93264f8ab3755ccc27c63937ebebd4283b22491e1 +doccontainersize 1091596 +doccontainerchecksum 995905861f47c1069085cdd7e52fbd85045d1b8a1800522e78fa2300a2923029a9ff11aaac7b557ec30217f5d99c9d873dd49cbb694355cbf601911cd775b343 +docfiles size=270 + RELOC/doc/latex/suftesi/README details="Readme" + RELOC/doc/latex/suftesi/suftesi.pdf details="Package documentation" language="en" +srccontainersize 34116 +srccontainerchecksum e743364722e6f87aa375f19b5234708adfe83a4788cffa35ef94da0a3bd5933f78899d815fb75496136b28e61f337f6eb5c7be562898d7129ac5fe5fea140f6a +srcfiles size=43 + RELOC/source/latex/suftesi/suftesi.dtx +runfiles size=21 + RELOC/tex/latex/suftesi/suftesi.cls +catalogue-ctan /macros/latex/contrib/suftesi +catalogue-date 2018-11-12 12:44:06 +0100 +catalogue-license lppl1.3 +catalogue-topics book-pub class dissertation +catalogue-version 2.9.1 + +name sugconf +category Package +revision 15878 +shortdesc SAS(R) user group conference proceedings document class +relocated 1 +longdesc The class may be used to typeset articles to be published in +longdesc the proceedings of SAS(R) User group conferences and workshops. +longdesc The layout produced by the class is based on that published by +longdesc SAS Institute (2006). +containersize 2796 +containerchecksum 413a4e36d4e4623898ffef9109b7bf26b6c8769e05d9d631898420a62d0766dbc8597083c6fe27393c8769f8a55d683cf52e3c650b9ed521268064bf510e76aa +doccontainersize 87456 +doccontainerchecksum 9d4b4544d559fed2806783fd8cbc23485e4a4d14afa6702a90845786449b8fea920277c4c7d1bd4f5fa89ceefec34bd50e617a0ffd3bbee30711fa5e63a2414c +docfiles size=33 + RELOC/doc/latex/sugconf/README details="Readme" + RELOC/doc/latex/sugconf/SUGI-paper-example.txt + RELOC/doc/latex/sugconf/article-example.bat + RELOC/doc/latex/sugconf/article-example.pdf + RELOC/doc/latex/sugconf/article-example.tex + RELOC/doc/latex/sugconf/sugconf-example.bat + RELOC/doc/latex/sugconf/sugconf-example.pdf + RELOC/doc/latex/sugconf/sugconf-example.tex +runfiles size=2 + RELOC/tex/latex/sugconf/sugconf.cls +catalogue-ctan /macros/latex/contrib/conferences/sugconf +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics journalpub + +name superiors +category Package +revision 36422 +shortdesc Attach superior figures to a font family +relocated 1 +longdesc The package allows the attachment of an arbitrary superior +longdesc figures font to a font family that lacks one. (Superior figures +longdesc are commonly used as footnote markers.) Two superior figures +longdesc fonts are provided--one matching Times, the other matching +longdesc Libertine. +execute addMap superiors.map +containersize 9884 +containerchecksum 859d955467b42c924027c06002cd6333096be75df25f957b34bc7d16fb74404fd7afdf8cf93fa8382b9c11e42ae0ea70a3f89d88f800825a0927a38365c96843 +doccontainersize 316872 +doccontainerchecksum 18b0fb3511b7200d3e357db8655c36c8eb99b540188eb6900bfca8c47aff07d4cb228faef120d56d7cabe8266bb549b81021ce539edadd84cfb8817220387367 +docfiles size=89 + RELOC/doc/fonts/superiors/README details="Readme" + RELOC/doc/fonts/superiors/libfoot0-crop.pdf + RELOC/doc/fonts/superiors/libfoot1-crop.pdf + RELOC/doc/fonts/superiors/stempelfoot0-crop.pdf + RELOC/doc/fonts/superiors/stempelfoot1-crop.pdf + RELOC/doc/fonts/superiors/superiors-doc.pdf details="Package documentation" + RELOC/doc/fonts/superiors/superiors-doc.tex +runfiles size=7 + RELOC/fonts/enc/dvips/superiors/sups.enc + RELOC/fonts/map/dvips/superiors/superiors.map + RELOC/fonts/tfm/public/superiors/libertinesups.tfm + RELOC/fonts/type1/public/superiors/libertinesups.pfb + RELOC/tex/latex/superiors/superiors.sty +catalogue-ctan /fonts/superiors +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font font-symbol font-type1 font-supp +catalogue-version 1.05 + +name supertabular +category Package +revision 15878 +shortdesc A multi-page tables package +relocated 1 +longdesc The package was a predecessor of longtable; the newer package +longdesc (designed on quite different principles) is easier to use and +longdesc more flexible, in many cases, but supertabular retains its +longdesc usefulness in a few situations where longtable has problems. +containersize 3796 +containerchecksum 2501d5ccc7c4209cb2df6bb1f68ded224fd65fedc03d53b6854b5cb7824e5652cff18c8251f768e0ac1878beaa6c430231344d81fdc5dd375878ab2b62158d93 +doccontainersize 141704 +doccontainerchecksum 7934c89c7bec6acc26a96662fbbcd0ef86ec9583d86b9c5de41e9d5385b72f8fcfdd04615c667f7e60632836e35d1ec0954f9d083a09a9b41d1aa903bb20475f +docfiles size=45 + RELOC/doc/latex/supertabular/CATALOG + RELOC/doc/latex/supertabular/ChangeLog + RELOC/doc/latex/supertabular/MANIFEST + RELOC/doc/latex/supertabular/README details="Package documentation" + RELOC/doc/latex/supertabular/supertabular.pdf details="Package documentation" +srccontainersize 12276 +srccontainerchecksum aa38f07fb900f0649db23d42556ff8d73ee3d84f995af367dec74fe275da32a167cf23bdb7a9e20eda9bd7b8e59c2c21d468ad47c4215b9b64894aaf0b0a896e +srcfiles size=15 + RELOC/source/latex/supertabular/supertabular.dtx + RELOC/source/latex/supertabular/supertabular.ins +runfiles size=4 + RELOC/tex/latex/supertabular/supertabular.sty +catalogue-also xtab +catalogue-ctan /macros/latex/contrib/supertabular +catalogue-date 2017-08-05 18:49:19 +0200 +catalogue-license lppl1.3 +catalogue-topics table table-long +catalogue-version 4.1e + +name susy +category Package +revision 19440 +shortdesc Macros for SuperSymmetry-related work +relocated 1 +longdesc The package provides abbreviations of longer expressions. +containersize 944 +containerchecksum 406a172dfb787c833d8d71e74cde627fad5dc168a1be7a71c4d0006e2f0a6625738ec11f99c9215af6973b101e17abe8eb8355206bdaa18ab3fa6328d7ea42bd +doccontainersize 744 +doccontainerchecksum f802ccdadb5ac2bd96ff27396b020798ac023889f751bc3a286392f62341ee6ac50486899f4e633b90b85320f1bbb679dfba98aa3746d01f0220f07cf65549f6 +docfiles size=2 + RELOC/doc/latex/susy/README + RELOC/doc/latex/susy/README.TEXLIVE +runfiles size=1 + RELOC/tex/latex/susy/susy.sty +catalogue-ctan /macros/latex/contrib/susy +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics shortcut physics + +name svg +category Package +revision 49148 +shortdesc Include and extract SVG pictures in LaTeX documents +relocated 1 +longdesc This bundle contains the two packages svg and svg-extract. The +longdesc svg package is intended for the automated integration of SVG +longdesc graphics into LaTeX documents. Therefore the capabilities +longdesc provided by Inkscape -- or more precisely its command line tool +longdesc -- are used to export the text within an SVG graphic to a +longdesc separate file, which is then rendered by LaTeX. For this +longdesc purpose the two commands \includesvg and \includeinkscape are +longdesc provided which are very similar to the \includegraphics command +longdesc of the graphicx package. In addition, the package svg-extract +longdesc allows the extraction of these graphics into independent files +longdesc in different graphic formats, exactly as it is rendered within +longdesc the LaTeX document, using either ImageMagick or Ghostscript. +containersize 13056 +containerchecksum e5d007919b8665cf7907ff112e097439aa946443f8974c8a4a01c34f8426d8e5d1b9d3d41e672ffe650a17c277b65cc6e923f9cbd8b84713171378f763cfb1a3 +doccontainersize 1061324 +doccontainerchecksum 47941d908b12d6ee0d579a8f8c75344afc8806edd7c18998531c401bf0acdd3bc7c33d8adcc9da97f75e8025e5f808c420f8af1ff46567c57116f02f24cd424c +docfiles size=434 + RELOC/doc/latex/svg/LICENSE.md + RELOC/doc/latex/svg/README.md details="Readme" + RELOC/doc/latex/svg/root.C + RELOC/doc/latex/svg/root.svg + RELOC/doc/latex/svg/svg-example.svg + RELOC/doc/latex/svg/svg-preamble.tex + RELOC/doc/latex/svg/svg.pdf details="Package documentation" +srccontainersize 42180 +srccontainerchecksum be03128273dce1422856fd3b7d052a362ed2e5963ae89a0760b4bc1cd308baf1cf7d5ea53600287a5fdef881cb8efd3a68b49f128339ba3fd5913444b8369bbc +srcfiles size=54 + RELOC/source/latex/svg/svg.dtx +runfiles size=20 + RELOC/tex/latex/svg/svg-extract.sty + RELOC/tex/latex/svg/svg.sty +catalogue-also svg-inkscape +catalogue-contact-bugs https://github.com/mrpiggi/svg/issues +catalogue-contact-home https://github.com/mrpiggi/svg +catalogue-contact-repository https://github.com/mrpiggi/svg +catalogue-ctan /graphics/svg +catalogue-date 2018-11-13 10:20:49 +0100 +catalogue-license lppl1.3c +catalogue-topics graphics-incl graphics-import +catalogue-version 2.02b + +name svg-inkscape +category Package +revision 32199 +shortdesc How to include an SVG image in LaTeX using Inkscape +relocated 1 +longdesc The document demonstrates the use of SVG images in LaTeX +longdesc documents. Using the "PDF+LaTeX output" option of Inkscape, it +longdesc is possible to include SVG in documents, in which LaTeX +longdesc typesets the text. This results in uniform text style +longdesc throughout the document, including text in images; moreover, +longdesc LaTeX commands may be used in the image's text, providing such +longdesc things as mathematics and references. The document also +longdesc describes how to automate the conversion from SVG to PDF+LaTeX +longdesc using Inkscape. +containersize 648 +containerchecksum e1708206e6fe85271e729ee8c9bf952f45af662a54ad2e816b449fed263fefd8527529ea777b85a50f736d0ec7875afcb3059ed2ac81afd45c54ccdc687c3979 +doccontainersize 197212 +doccontainerchecksum 609d1a7d2256461a749c3a74ac5dffdb7efec999faa15315872f4e61884933cf47c380bfd8eba53de491494cb498a45ba263dc889fa0fd337c48f82842fa6bdd +docfiles size=90 + RELOC/doc/latex/svg-inkscape/InkscapePDFLaTeX.pdf details="The document itself" + RELOC/doc/latex/svg-inkscape/InkscapePDFLaTeX.tex + RELOC/doc/latex/svg-inkscape/README details="Readme" + RELOC/doc/latex/svg-inkscape/image-normal.pdf + RELOC/doc/latex/svg-inkscape/image.pdf + RELOC/doc/latex/svg-inkscape/image.pdf_tex + RELOC/doc/latex/svg-inkscape/image.svg +catalogue-also svg +catalogue-ctan /info/svg-inkscape +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics graphics-prep + +name svgcolor +category Package +revision 15878 +shortdesc Define SVG named colours +relocated 1 +longdesc The package defines the W3C Scalable Vector Graphics (SVG) +longdesc colour names for use with both the color and PSTricks packages. +containersize 3452 +containerchecksum 617a880e8e94e781819a8ab3a169325e667a18afd83a10f070a56dd9f1813153d8f52cbc3322c264ee249c0e70080421a9e1debf844ecbc7ea6c2368a6ac67e2 +doccontainersize 1380 +doccontainerchecksum 02a28da03f72cd85f30f73282558bd3aa05a82318cc90f56af6ff8ae29e1f205d3c05553598b88ea13206b4d54f64ca36d5a6a8d6f8913e08c185c7bce6011ea +docfiles size=1 + RELOC/doc/latex/svgcolor/README details="Readme" +runfiles size=4 + RELOC/tex/latex/svgcolor/svgcolor.sty +catalogue-ctan /macros/latex/contrib/svgcolor +catalogue-date 2018-09-15 14:10:32 +0200 +catalogue-license lppl +catalogue-topics colour +catalogue-version 1.0 + +name svn +category Package +revision 15878 +shortdesc Typeset Subversion keywords +relocated 1 +longdesc The svn package lets you typeset (in LaTeX) the value of +longdesc Subversion keywords. It is approximately an equivalent to the +longdesc rcs package, but for Subversion rather than CVS. Details of +longdesc Subversion (a replacement for CVS) is available from the +longdesc project's home site. +containersize 1616 +containerchecksum a64768b2c5931ba6b9e0b910d7bdc1473a7dbc01a70e41fbda46b4064ca1c41592f3d704496199e41ff27ac4d0ccfad56d9d89e536176010e35c1c8f56312454 +doccontainersize 441216 +doccontainerchecksum 123ce3eda16e4a1c44a85c6d2ef2bf4e5f6b9e9d939cf66eee52ad1326f06b35c457f4df054956dc16c169031909f2ea93aca380d2ba080f6049795a841dc34e +docfiles size=112 + RELOC/doc/latex/svn/README details="Package README" + RELOC/doc/latex/svn/svn.pdf details="Package documentation" +srccontainersize 7644 +srccontainerchecksum 0033fe1be2ede6984cbc0397c20187cc03520b5d893f7ae239bb688354d7198c4e96cfed09dcdffe7160769f6dafc9995d77f8f0f9def753048d4ecb8231ee69 +srcfiles size=7 + RELOC/source/latex/svn/Makefile + RELOC/source/latex/svn/svn.dtx + RELOC/source/latex/svn/svn.ins +runfiles size=1 + RELOC/tex/latex/svn/svn.sty +catalogue-also svninfo svn-multi +catalogue-ctan /macros/latex/contrib/svn +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics version-control doc-mgmt +catalogue-version 43 + +name svn-multi +category Package +revision 26313 +shortdesc Subversion keywords in multi-file LaTeX documents +longdesc This package lets you typeset keywords of the version control +longdesc system Subversion inside your LaTeX files anywhere you like. +longdesc Unlike the otherwise similar package svn the use of multiple +longdesc files for one LaTeX document is well supported. The package +longdesc uses the author's filehook and currfile packages. The package +longdesc interacts with an external Perl script, to retrieve information +longdesc necessary for the required output. +depend svn-multi.ARCH +containersize 12436 +containerchecksum f1367560fd6eb6247097d5e5901a56a01a90941f584797f6a5e3388cd9ebb5e33ae98a8cba69cccb4b42feb01a29d8507de8e814be8ca2516ba24ce6a0d929e5 +doccontainersize 401628 +doccontainerchecksum 8e54c597bec50dc541abe4e1be7ceeca9575c5e9f3e201bc66eaeab11ea529cfe3724389aa2d4938f6272c93213dd20a7ea89cc9c954f882ce916c6d610bafb1 +docfiles size=104 + texmf-dist/doc/latex/svn-multi/README details="Readme" + texmf-dist/doc/latex/svn-multi/example_chap1.tex + texmf-dist/doc/latex/svn-multi/example_main.tex + texmf-dist/doc/latex/svn-multi/group_example.tex + texmf-dist/doc/latex/svn-multi/svn-multi.pdf details="Package documentation" + texmf-dist/doc/support/svn-multi/svn-multi-pl.pdf details="Perl script documentation" +srccontainersize 39000 +srccontainerchecksum f90315214155802235b1137276d615bac052adb9295dba04443976fd7147898616e2ff8e32bc1c3f6cceaaf59480c9acafa73cc53ad50da2bd07d20dd68e2fa7 +srcfiles size=42 + texmf-dist/source/latex/svn-multi/svn-multi-pl.dtx + texmf-dist/source/latex/svn-multi/svn-multi.dtx + texmf-dist/source/latex/svn-multi/svn-multi.ins +runfiles size=15 + texmf-dist/scripts/svn-multi/svn-multi.pl + texmf-dist/tex/latex/svn-multi/svn-multi.sty + texmf-dist/tex/latex/svn-multi/svnkw.sty +catalogue-also svn svninfo +catalogue-contact-repository https://bitbucket.org/martin_scharrer/svn-multi +catalogue-ctan /macros/latex/contrib/svn-multi +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl +catalogue-topics version-control doc-mgmt +catalogue-version 2.4d + +name svn-multi.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of svn-multi +containersize 344 +containerchecksum ec309c96373770dd627ee6f615f9b0145a79b2a3735514b9519e0093698ee4a72f4cc5abd67b86ba9f285ed41cb5c5281554b2629df7512bfdad36e4c63f6499 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/svn-multi + +name svn-multi.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of svn-multi +containersize 344 +containerchecksum 4db61d83104465a207e29e61eb12ecd189e691cd1cbf07e41e4ce159f2870c6ea6ab07afd684c6c1e03012c34b6111513c25a82115727e6787cdb4d44c1da527 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/svn-multi + +name svn-multi.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of svn-multi +containersize 340 +containerchecksum 4f1d5983b4bc20a23795d720c0f17f6c3751213ad02c4c71fd403a4bda36f1539829731cbfc9a8c35abfa98b763f294b4857893ff26ff6ccc69c8b313a1080e0 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/svn-multi + +name svn-multi.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of svn-multi +containersize 340 +containerchecksum a50dd4fa60f9f880fe4e0de13c1b00fbbacb9a2bbeeab66d94f3a3a43b22819d654152eb939e68d8ab12fc6f95eddffaf669bd2ddffeb8ba51f63ed838630c16 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/svn-multi + +name svn-multi.i386-cygwin +category Package +revision 13717 +shortdesc i386-cygwin files of svn-multi +containersize 340 +containerchecksum 75255ac80c3a7f949532ed8f84f7f5022fba352947b2aee3fd0a4c8c00a7a372c349b1c05961ebd02872abc31745858ae0d357a847fbae8f7df96a8079140897 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/svn-multi + +name svn-multi.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of svn-multi +containersize 344 +containerchecksum 27a03aef15800d712f2b4b21c20eff0520f00a4f94c2989920d2a6ca928bcc31e34eb0e8b183e940e5ecd83aef407e2d208c78300650365ffdb0f8f23bccab50 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/svn-multi + +name svn-multi.i386-linux +category Package +revision 13663 +shortdesc i386-linux files of svn-multi +containersize 344 +containerchecksum e0f956594f4798238772cb37ab5d3aaf32413fd8f9f3ccb65349c4a21c56de76cf66e5c0e451dc5f451882147e95f410a52376c06bb8ff455a9298879dd98e7f +binfiles arch=i386-linux size=1 + bin/i386-linux/svn-multi + +name svn-multi.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of svn-multi +containersize 344 +containerchecksum 522e3721c507e1212a927b3e4f996847430c2c211001cf54f29d94959f32c8eca156d25e1b946eecdbec17bc79146f8abf393771195783895f5287512e37f60a +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/svn-multi + +name svn-multi.i386-solaris +category Package +revision 13898 +shortdesc i386-solaris files of svn-multi +containersize 344 +containerchecksum b02f1c9384d3afbf3deb21e327e426e3ff055e48bff8ca0ffa43f052ae197cae11170a4974df5e5dd30a6488ec50733767e9c8887d7917867eb532008e145955 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/svn-multi + +name svn-multi.win32 +category Package +revision 15404 +shortdesc win32 files of svn-multi +containersize 684 +containerchecksum 3cbc1fbcd5c116b6787b787a2f5c7ed4743e9fe97b9787f92358b3a6dae84bac9a00e81729992b195d496409bdeb14ef59e3bdd87018b731efee27e8221db78e +binfiles arch=win32 size=1 + bin/win32/svn-multi.exe + +name svn-multi.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of svn-multi +containersize 344 +containerchecksum cb997fd2e6b3763a1243d4fbc60211c1455d95fd2f763f380c59e18c1d56539a412929f907437a3949bb0e60152213e7f327fcbd00ebf01f928bcec9fffeaf40 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/svn-multi + +name svn-multi.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of svn-multi +containersize 344 +containerchecksum d02590d98e6894af2cdbfead1b9f12685f259bf0a739cdc778ec59dbc3c3594dc4f843055b60e9b1e9ffe00c2e75db4a101f5a15054deac0e36a76f2fd687b7f +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/svn-multi + +name svn-multi.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of svn-multi +containersize 352 +containerchecksum 4e69b6b4a0e5398a76ff93137590d5280e440e47523c50e319ea75a9b424a6f5f4a93dd520c918cc5512f75d9d2493b55ace0a29001c1d75bc1bbfad9190c71d +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/svn-multi + +name svn-multi.x86_64-linux +category Package +revision 13777 +shortdesc x86_64-linux files of svn-multi +containersize 344 +containerchecksum ef74acf61df44e3996e3e6765a5897744187c7144176eacfdc8fd6fba7ed2388c96922a3a9c6fae965064450f898241de10dc75e97bd3ecde6bb72d258b080f7 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/svn-multi + +name svn-multi.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of svn-multi +containersize 348 +containerchecksum abc3846b6a0fdf02dc4414f64f9c016ed9feffed43bd8c072419e89438ddce63ae319fafecbe8ab0e4cb13c6920bc9db0accd8fefa16f0f4a5abd49149fd839b +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/svn-multi + +name svn-multi.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of svn-multi +containersize 344 +containerchecksum cebed4a05452fd33c1b559d5b2b52add324d7dfbbeead8838624342176690f6b857fdfd4b18779dbdef46776ed31a513b1992072fdff4574f1daace60a61cc01 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/svn-multi + +name svn-prov +category Package +revision 18017 +shortdesc Subversion variants of \Provides... macros +relocated 1 +longdesc The package introduces Subversion variants of the standard +longdesc LaTeX macros \ProvidesPackage, \ProvidesClass and \ProvidesFile +longdesc where the file name and date is extracted from Subversion Id +longdesc keywords. The file name may also be given explicitly as an +longdesc optional argument. +containersize 2376 +containerchecksum 24325a3de52afb9328a4b608710b94839c77ac65b13f08219f4efa24680ceabc410135de3c468c89d5d283a8986f2a9e337ef2285241ce776d0270622e0e77d9 +doccontainersize 242148 +doccontainerchecksum b6de41de4535833025f2899ae28530f4198717bfdcf06b090d054c20bced3a524ae9627b1909eb7afc6ff4e09d5525203b869c09d23facbb86e207ab2193b57a +docfiles size=74 + RELOC/doc/latex/svn-prov/svn-prov.pdf details="Package documentation" +srccontainersize 10000 +srccontainerchecksum c7586e4592f9518d2a03218c9afe614422bc8021a192279d7be1b090bd09bc51191d8c0a2e760514206c53cecf5a7b89c617a4c209cdb878874a0e3396659a3c +srcfiles size=10 + RELOC/source/latex/svn-prov/Makefile + RELOC/source/latex/svn-prov/svn-prov.dtx + RELOC/source/latex/svn-prov/svn-prov.ins +runfiles size=2 + RELOC/tex/latex/svn-prov/svn-prov.sty +catalogue-ctan /macros/latex/contrib/svn-prov +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics version-control doc-mgmt +catalogue-version 3.1862 + +name svninfo +category Package +revision 17554 +shortdesc Typeset Subversion keywords +relocated 1 +longdesc A package for incorporating the values of Subversion keywords +longdesc into typeset documents. Information about Subversion (a +longdesc replacement for CVS) is available from +longdesc http://subversion.tigris.org/ +containersize 3940 +containerchecksum efb2b358bbf5a05b17a591114d0f45a38ff42837751d00b88183265d9bf595ba39377fc53dfe69ca01ae8c1776e6d4ded9c0f636e0e697b946f1d193b39c1537 +doccontainersize 258436 +doccontainerchecksum f8f20578da98d54181475d23be625a80c35af5e464fdcfca80643f8701a029bfdf03cfb13ec42be34312eafc372e42e5bbb4260aaa5066fe004b2fd6fcb2acc7 +docfiles size=70 + RELOC/doc/latex/svninfo/README details="Readme" + RELOC/doc/latex/svninfo/svninfo.init + RELOC/doc/latex/svninfo/svninfo.pdf details="Package documentation" +srccontainersize 12712 +srccontainerchecksum 7ce865a81c8fcd47ff2cf00b5304e40ca0d534ee63b23cf24eb716926f3258a8081ec6aa9bf160a3fce741f1dab6c62e069ada8f5298f9a354d92c34ab36058b +srcfiles size=14 + RELOC/source/latex/svninfo/Makefile + RELOC/source/latex/svninfo/svninfo.dtx + RELOC/source/latex/svninfo/svninfo.ins +runfiles size=5 + RELOC/tex/latex/svninfo/svninfo.cfg + RELOC/tex/latex/svninfo/svninfo.sty +catalogue-also svn svn-multi svn-prov +catalogue-ctan /macros/latex/contrib/svninfo +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1 +catalogue-topics version-control doc-mgmt +catalogue-version 0.7.4 + +name svrsymbols +category Package +revision 50019 +shortdesc A font with symbols for use in physics texts +relocated 1 +longdesc The svrsymbols package is a LaTeX interface to the SVRsymbols +longdesc font. The glyphs of this font are ideograms that have been +longdesc designed for use in physics texts. Some symbols are standard +longdesc and some are entirely new. +execute addMap svrsymbols.map +containersize 67560 +containerchecksum 1fadd5259d527daf316502aae6072865b9c6e2efc1ab92f4bc0c3d1070ca4dd863b8f7366c9e6909b7885858c1745cd723003a9f4bd28e8208889da2c21f18d3 +doccontainersize 58768 +doccontainerchecksum 6ff7b9c1efa4b59c453b42fd37dc66e3c79912ff0bf9765b2745fd0cd946a4cfc4a063fc943d1b5919368f8a5809eef5cb7f3a4bf3b6cbdf8200f42180d21f92 +docfiles size=18 + RELOC/doc/fonts/svrsymbols/README details="Readme" + RELOC/doc/fonts/svrsymbols/svrsymbols.pdf details="Package documentation" + RELOC/doc/fonts/svrsymbols/svrsymbols.tex +srccontainersize 3936 +srccontainerchecksum 916ca0f14ff1b9ae99fc609c41fa655eef39bb053ad39274dbe43167dbeed06ebbb9990cde6c040fcbf9b432b4ff89651195df094aa9c35bc172e7932917148d +srcfiles size=4 + RELOC/source/fonts/svrsymbols/svrsymbols.dtx + RELOC/source/fonts/svrsymbols/svrsymbols.ins +runfiles size=26 + RELOC/fonts/afm/public/svrsymbols/SVRsymbols.afm + RELOC/fonts/map/dvips/svrsymbols/svrsymbols.map + RELOC/fonts/opentype/public/svrsymbols/SVRsymbols.otf + RELOC/fonts/tfm/public/svrsymbols/SVRsymbols.tfm + RELOC/fonts/type1/public/svrsymbols/SVRsymbols.pfb + RELOC/tex/latex/svrsymbols/svrsymbols.sty +catalogue-ctan /fonts/svrsymbols +catalogue-date 2019-02-12 22:24:22 +0100 +catalogue-license lppl1.3c +catalogue-topics font font-maths font-symbol-maths physics +catalogue-version 2.0b + +name swebib +category Package +revision 15878 +shortdesc Swedish bibliography styles +relocated 1 +longdesc The bundle contains Swedish versions of the standard +longdesc bibliography styles, and of the style plainnat. The styles +longdesc should be funtionally equivalent to the corresponding original +longdesc styles, apart from the Swedish translations. The styles do not +longdesc implement Swedish collation. +containersize 6892 +containerchecksum c34174a73f2264bd0963bc6932f6ce840a84d3c48ec9aeae9f7f92ce25ce5f55dc2e4c05d1eaee54c18b4c0ef9adcf494310cdf0a3e1d73031910b75a6db30c8 +doccontainersize 492 +doccontainerchecksum a3db201554a0b828cfc72d47a22b777fd7b44b25c361a4d8f032cc62658780628e83f6eabfbf342b867fda335c1ddc228347f5fc66651193c8229e0bc6e46f67 +docfiles size=1 + RELOC/doc/latex/swebib/README details="Readme" +runfiles size=27 + RELOC/bibtex/bst/swebib/sweabbrv.bst + RELOC/bibtex/bst/swebib/swealpha.bst + RELOC/bibtex/bst/swebib/sweplain.bst + RELOC/bibtex/bst/swebib/sweplnat.bst + RELOC/bibtex/bst/swebib/sweunsrt.bst +catalogue-ctan /biblio/bibtex/contrib/swebib +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.2 +catalogue-topics bibtex-sty swedish + +name swimgraf +category Package +revision 25446 +shortdesc Graphical/textual representations of swimming performances +relocated 1 +longdesc The package provides two macros that produce representations of +longdesc a swimmer's performances. The user records data in a text file +longdesc and specifies as arguments of the macros the date range of +longdesc interest. The macros extract the relevant information from the +longdesc file and process it: \swimgraph produces a graph of the times +longdesc in a single swimming event (specified as an argument), plotting +longdesc long course and short course times in separate lines. Records +longdesc and qualifying times, stored in text files, may optionally be +longdesc included on the graph. \swimtext produces a written record of +longdesc the times in all events. Files of current world and Canadian +longdesc records are included. The package requires the PSTricks and +longdesc keyval packages. For attractive output it also requires a +longdesc colour output device. +containersize 11364 +containerchecksum d4bd2097892db6467ae1c80032e4ff5f39e3da81f45ecf472d350297687609ff37b8498de9e44405ad9c7dd7b483599c844672233d289c6cc4ed1e2b9e2bb842 +doccontainersize 51084 +doccontainerchecksum 2394080a393e2a0cc8e8299dc4debbcc7548186a714454c87662c22a371308c7e8e6705c9dcbf6eca632f2f80788a733f9d5a9f3fddb2f46167fd50654c5bcdc +docfiles size=46 + RELOC/doc/latex/swimgraf/100br1.pdf + RELOC/doc/latex/swimgraf/100br1.tex + RELOC/doc/latex/swimgraf/100br2.pdf + RELOC/doc/latex/swimgraf/100br2.tex + RELOC/doc/latex/swimgraf/README details="Readme" + RELOC/doc/latex/swimgraf/README.TEXLIVE + RELOC/doc/latex/swimgraf/fcanada.dat + RELOC/doc/latex/swimgraf/fcanada11.dat + RELOC/doc/latex/swimgraf/fcanada12.dat + RELOC/doc/latex/swimgraf/fcanada13.dat + RELOC/doc/latex/swimgraf/fcanada14.dat + RELOC/doc/latex/swimgraf/fcanada15.dat + RELOC/doc/latex/swimgraf/fcanada16.dat + RELOC/doc/latex/swimgraf/fcanada17.dat + RELOC/doc/latex/swimgraf/fontario10.dat + RELOC/doc/latex/swimgraf/fontario11.dat + RELOC/doc/latex/swimgraf/fontario12.dat + RELOC/doc/latex/swimgraf/fontario13.dat + RELOC/doc/latex/swimgraf/fontario14.dat + RELOC/doc/latex/swimgraf/fontario15.dat + RELOC/doc/latex/swimgraf/fontario16.dat + RELOC/doc/latex/swimgraf/fontario17.dat + RELOC/doc/latex/swimgraf/fontario8.dat + RELOC/doc/latex/swimgraf/fontario9.dat + RELOC/doc/latex/swimgraf/fworld.dat + RELOC/doc/latex/swimgraf/mcanada.dat + RELOC/doc/latex/swimgraf/mworld.dat + RELOC/doc/latex/swimgraf/sample1.dat + RELOC/doc/latex/swimgraf/sample2.dat + RELOC/doc/latex/swimgraf/text1.pdf + RELOC/doc/latex/swimgraf/text1.tex + RELOC/doc/latex/swimgraf/text2.pdf + RELOC/doc/latex/swimgraf/text2.tex +runfiles size=13 + RELOC/tex/latex/swimgraf/swimgraf.cfg + RELOC/tex/latex/swimgraf/swimgraf.sty +catalogue-ctan /macros/latex/contrib/swimgraf +catalogue-date 2018-09-15 14:13:15 +0200 +catalogue-license lppl +catalogue-topics data-disp + +name syllogism +category Package +revision 15878 +shortdesc Typeset syllogisms in LaTeX +relocated 1 +longdesc The package provides a simple, configurable, way for neatly +longdesc typesetting syllogisms and syllogistic-like arguments, composed +longdesc of two premises and a conclusion. +containersize 2728 +containerchecksum 6f74e300794afa114da0f498bf70a389500bd2346bd0bd3d9ecf0f30d6167bfc9ea094024039775c649f5feeaa4b62384072ff26fc0c0fb426634912f440999a +doccontainersize 310384 +doccontainerchecksum 1d2f3cfb453a4964b0e64a486a7c466731fec93e3a4210b216ebe9bc311923f055bbb903c26b5177c34a16a343e5f4e1a0643c7f6bf635dc0762182185f6e362 +docfiles size=95 + RELOC/doc/latex/syllogism/Examples.pdf + RELOC/doc/latex/syllogism/Examples.tex + RELOC/doc/latex/syllogism/README details="Readme" + RELOC/doc/latex/syllogism/syllogism.pdf details="Package documentation" + RELOC/doc/latex/syllogism/syllogism.tex +runfiles size=3 + RELOC/tex/latex/syllogism/syllogism.sty +catalogue-ctan /macros/latex/contrib/syllogism +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics logic +catalogue-version 1.2 + +name symbol +category Package +revision 31835 +catalogue urw-base35 +shortdesc URW "Base 35" font pack for LaTeX +relocated 1 +longdesc A set of fonts for use as "drop-in" replacements for Adobe's +longdesc basic set, comprising: Century Schoolbook (substituting for +longdesc Adobe's New Century Schoolbook); Dingbats (substituting for +longdesc Adobe's Zapf Dingbats); Nimbus Mono L (substituting for Abobe's +longdesc Courier); Nimbus Roman No9 L (substituting for Adobe's Times); +longdesc Nimbus Sans L (substituting for Adobe's Helvetica); Standard +longdesc Symbols L (substituting for Adobe's Symbol); URW Bookman; URW +longdesc Chancery L Medium Italic (substituting for Adobe's Zapf +longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant +longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). +execute addMap usy.map +containersize 36132 +containerchecksum d942031f4a865c9db3f1deb68e9468132e811c88a4de67661a25431506a8ea41b2a9cd36ae0855208802d5b7cd4495b3cc27e9e18996dbf96f2529fecf4683e0 +runfiles size=25 + RELOC/dvips/symbol/config.usy + RELOC/fonts/afm/adobe/symbol/psyb.afm + RELOC/fonts/afm/adobe/symbol/psyr.afm + RELOC/fonts/afm/urw/symbol/usyr.afm + RELOC/fonts/map/dvips/symbol/usy.map + RELOC/fonts/tfm/adobe/symbol/psyr.tfm + RELOC/fonts/tfm/monotype/symbol/msyr.tfm + RELOC/fonts/tfm/urw35vf/symbol/usyr.tfm + RELOC/fonts/type1/urw/symbol/usyr.pfb + RELOC/fonts/type1/urw/symbol/usyr.pfm + RELOC/tex/latex/symbol/uusy.fd +catalogue-also tex-gyre +catalogue-ctan /fonts/urw/base35 +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics font font-type1 font-collection + +name sympytexpackage +category Package +revision 45818 +catalogue sympytex +shortdesc Include symbolic computation (using sympy) in documents +relocated 1 +longdesc The bundle supports inclusion of symbolic-python (sympy) +longdesc expressions, as well as graphical output from the sympy +longdesc plotting module (or from matplotlib). +containersize 3640 +containerchecksum 14813cf24b562ed135e6d5a0078306f0687cd464915ecc17e61df0bb5d9900d7110e8338c469d4d55664b2fecd1eeb6bb4f359b11fb2a07bad72a442b7698842 +doccontainersize 1844 +doccontainerchecksum c4e7e386852b3acd071d1addea10435985e7722dfffd4933ac2c3821b5a75e8c9500f5c42bb6b3e2315bd06b8d3e2ad12423c2c43547bb51b2f59bd982d7dfd3 +docfiles size=2 + RELOC/doc/latex/sympytexpackage/README details="Readme" + RELOC/doc/latex/sympytexpackage/README.TEXLIVE +srccontainersize 17088 +srccontainerchecksum 7dfa3975f5c042f7196ef6a76e31b79caeca4101026afc53aed719239e7ce701a7917e733bb77297b569333adccab6b5bc7149befdd6eed4f09d46ea38684579 +srcfiles size=15 + RELOC/source/latex/sympytexpackage/sympytexpackage.dtx + RELOC/source/latex/sympytexpackage/sympytexpackage.ins +runfiles size=4 + RELOC/scripts/sympytexpackage/sympytex.py + RELOC/tex/latex/sympytexpackage/sympytex.sty +catalogue-contact-home http://elec.otago.ac.nz/w/index.php/SympyTeX +catalogue-ctan /macros/latex/contrib/sympytexpackage +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license gpl2 +catalogue-topics callback +catalogue-version 0.3 + +name synctex +category TLCore +revision 50602 +shortdesc engine-level feature synchronizing output and source +longdesc SyncTeX allows navigating between the TeX source and (usually +longdesc PDF) output, in both directions, given a SyncTeX-aware front +longdesc end. It is compiled into most engines and can be enabled with +longdesc the --synctex=1 option. It is developed as part of TeX Live. +depend synctex.ARCH +containersize 464 +containerchecksum 9fb5f8c3729115a91a51efb3645f39809b07ef9eb842d2ded1d64cdfe558c0bfec6234827dd87b38c40bb167225a88c6ff09e3d7bd49b50db7561981105bd6a2 +doccontainersize 41824 +doccontainerchecksum 3a61c57a78772d6f8441db824f489c7dbd5b547760b43dce500ba9ec07780a839d0c6db7f90921846985ce4400bccbec2435e6d4d8bc2952fe1dcbeb9a23c91f +docfiles size=17 + texmf-dist/doc/man/man1/synctex.1 + texmf-dist/doc/man/man1/synctex.man1.pdf + texmf-dist/doc/man/man5/synctex.5 + texmf-dist/doc/man/man5/synctex.man5.pdf + +name synctex.aarch64-linux +category TLCore +revision 48789 +shortdesc aarch64-linux files of synctex +containersize 62040 +containerchecksum b9ec8f8d93fd348366f4894c8522447e7b4eae65b6555c5e6241e07e496b91e8961bf9892fcff66fe32a479c8ee7dd6ed8d834dbe5fa2cdd164354bd7907a1f5 +binfiles arch=aarch64-linux size=41 + bin/aarch64-linux/synctex + +name synctex.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of synctex +containersize 75888 +containerchecksum 7c6b4e939472c5623ff81e29de9a9ae6c1054e10016e1efb1ca8a5075e82efdb74aecfe4bc4cc5f1492035ab1fecc3446a17710b21fead52892940cb169ccc60 +binfiles arch=amd64-freebsd size=51 + bin/amd64-freebsd/synctex + +name synctex.amd64-netbsd +category TLCore +revision 48698 +shortdesc amd64-netbsd files of synctex +containersize 65008 +containerchecksum 8ea68dfa294f766f1259ead412967787b1ac0949b755ebf37b662acf2ef71fac239d82e3fcc268fcbaa11910ed30c5bb382e389b184f589f11f90eca2f2c5d84 +binfiles arch=amd64-netbsd size=59 + bin/amd64-netbsd/synctex + +name synctex.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of synctex +containersize 59716 +containerchecksum 06c3c30ec78ed92fcd209aa7c81284e3beb87a0c2d4435f2e3cf22233a328850ab82be4203c899021d113ae613a8915b1f7f8630d437afef9ae34ae47ce7f0e7 +binfiles arch=armhf-linux size=38 + bin/armhf-linux/synctex + +name synctex.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of synctex +containersize 72632 +containerchecksum ee205a259cd4eaae1f0e0341bf3317066474b81ca1001c8bf6dce88f94ceaeddfa67919f4e59d7a4258c41fc401b9a3980fb5b133d5992d2291823ed9ccd97a7 +binfiles arch=i386-cygwin size=45 + bin/i386-cygwin/synctex.exe + +name synctex.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of synctex +containersize 69528 +containerchecksum 0c6cc5939fd3caaced6002250a929481440df6b9c159a8457ff1faa0f7755a6d1ad3a119b5d7ffaded537a67a1c05cb4fa4a5b24d4eb3325630b39ba7342dc68 +binfiles arch=i386-freebsd size=42 + bin/i386-freebsd/synctex + +name synctex.i386-linux +category TLCore +revision 50281 +shortdesc i386-linux files of synctex +containersize 76364 +containerchecksum a1c889622e67909e4aa2e5e4af51c0bb4d668d96ddd99878bc195587e9c5af724d4cac41f472022cdad5cde306d74de054930781f9f3254de4e578c9f276d41a +binfiles arch=i386-linux size=47 + bin/i386-linux/synctex + +name synctex.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of synctex +containersize 61824 +containerchecksum 29a86afe8263f69445a818fb71cd747b2cbacf98c811846b934d337fa43f5ee14e6b5907e95539a21509d6d8be0c249f0f256f9fc1b77ac36d6f89121883f0fb +binfiles arch=i386-netbsd size=52 + bin/i386-netbsd/synctex + +name synctex.i386-solaris +category TLCore +revision 46829 +shortdesc i386-solaris files of synctex +containersize 69320 +containerchecksum 8b340cfa98080f22787e065063aae4fa4c9c8ec270ef97c7eb4d6c09c2f954964c5bb2bd3f52bfdeac9c6412ac153608de4d63bca50876a88c488942d4bc2575 +binfiles arch=i386-solaris size=39 + bin/i386-solaris/synctex + +name synctex.win32 +category TLCore +revision 50155 +shortdesc win32 files of synctex +containersize 132364 +containerchecksum 9418e0e6feb92164bda22e63a2394e092332149fd6f32c3844118f5d2c7d06d55a1f8c10283b71050087967ccdd17d54fc2892fe6acfb6188f942f570ed40d6d +binfiles arch=win32 size=73 + bin/win32/synctex.exe + +name synctex.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of synctex +containersize 71212 +containerchecksum 1ea7cc1f0c3d0fc84b18f83ea335c26a4ecf1559976f50cf24c53110baae889dbd0309e69dbf6902fd2bd2a880aa5b4288bdbdbca7a603c8fe84e91a5a29f314 +binfiles arch=x86_64-cygwin size=43 + bin/x86_64-cygwin/synctex.exe + +name synctex.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of synctex +containersize 74124 +containerchecksum c36f423b9491ef57d4b7a97d4ba4fc56aa39d6247a111aea3b8032c37230a61a74126db307e3a99eea6c1730f20a87a9ad3cc5a7b4f03956d688363c8c2dec2c +binfiles arch=x86_64-darwin size=47 + bin/x86_64-darwin/synctex + +name synctex.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of synctex +containersize 67692 +containerchecksum 2686ff6e8ff96a2213e91b5e67e7eadedcee6873a3ce6b32381857ded8562f1e5fe1b4cb69c69af63b8f8ac1e1cdb109d0adee3e57c0cb9fa0dc4ce144511166 +binfiles arch=x86_64-darwinlegacy size=43 + bin/x86_64-darwinlegacy/synctex + +name synctex.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of synctex +containersize 72944 +containerchecksum 805d3bb3eed9efd77f2e4fe4ad29830b3f8c2ec70525d762aace625bd97f0a07710091bd9005dfe4106999a94dffd6f39501681f23d6bb0a25c6caa837e83cf8 +binfiles arch=x86_64-linux size=46 + bin/x86_64-linux/synctex + +name synctex.x86_64-linuxmusl +category TLCore +revision 46840 +shortdesc x86_64-linuxmusl files of synctex +containersize 77544 +containerchecksum dca52aea84c64565ed2631df288a669125c548297311c3d9b6b0e01a4832c53d8a3d8d6d67e025e74f3d3103f7bf0d2d7484f7dda793d5529021513bc23b3fa4 +binfiles arch=x86_64-linuxmusl size=53 + bin/x86_64-linuxmusl/synctex + +name synctex.x86_64-solaris +category TLCore +revision 46829 +shortdesc x86_64-solaris files of synctex +containersize 75124 +containerchecksum a9efe80a55ef9c6d7d89e264d37faa960c209ec49e738e729ee08f5f98b5bf4111d444a7680b5f3fe7ddfbcb1c281f079d92410370826dcb672df48b14835654 +binfiles arch=x86_64-solaris size=47 + bin/x86_64-solaris/synctex + +name synproof +category Package +revision 15878 +shortdesc Easy drawing of syntactic proofs +relocated 1 +longdesc The package provides a set of macros based on PSTricks that +longdesc will enable you to draw syntactic proofs easily (inspired by +longdesc the Gamut books). Very few commands are needed, however fine +longdesc tuning of the various parameters (dimensions) can still be +longdesc achieved through "key=value" pairs. +containersize 2200 +containerchecksum 934235e8eb4ca51a906ca287c5524cc3b0b69c649b47a9fa0fc2c9fd664199eb6fce835d435e97e0b24bd0662ee68b8db471e3546c4bdb402bfcc19b1fd02c50 +doccontainersize 61492 +doccontainerchecksum 9a12fab29c7c0118bd97a7af1585ae97c5086e7a1e9529624b7fa43a723151e00537b9488a42628d7f6e93b87d092fe0dd18476c7d232e3ee74597186a92585b +docfiles size=21 + RELOC/doc/latex/synproof/README details="Readme" + RELOC/doc/latex/synproof/synproof-doc.pdf details="Package documentation" + RELOC/doc/latex/synproof/synproof-doc.tex +runfiles size=2 + RELOC/tex/latex/synproof/synproof.sty +catalogue-ctan /macros/latex/contrib/synproof +catalogue-date 2018-09-15 14:15:12 +0200 +catalogue-license lppl +catalogue-topics logic linguistic +catalogue-version 1.0 + +name syntax +category Package +revision 15878 +catalogue syntax2 +shortdesc Creation of syntax diagrams +relocated 1 +longdesc Create syntax diagrams using special environments and commands +longdesc to represent the diagram structure. +containersize 2632 +containerchecksum be1e049a98cd7e45cec9675e707575107af9c613028012b8fbfa658c6c9cbbac5782d3a7111f37edc719fb90e7c168c9a98a3d30a4c997b6ac4ed0691fc7fdc3 +doccontainersize 104576 +doccontainerchecksum 7d0754c08081abc9867d0d40fc910ae5f8b34518004bf698dddc184f0b514d75a7feb3085870cf8322b3d6f3bc4c32ab50acdaeb56b574bf41604a18c23a6656 +docfiles size=35 + RELOC/doc/latex/syntax/README details="Package README" language="de" + RELOC/doc/latex/syntax/syntaxintro.pdf details="Introduction to the package" language="de" + RELOC/doc/latex/syntax/syntaxintro.tex + RELOC/doc/latex/syntax/syntaxtest.pdf + RELOC/doc/latex/syntax/syntaxtest.tex +runfiles size=3 + RELOC/tex/latex/syntax/syntax.tex +catalogue-also syntax-mdw +catalogue-ctan /macros/latex/contrib/syntax +catalogue-date 2016-07-19 09:53:55 +0200 +catalogue-license gpl +catalogue-topics syntax diagram + +name syntrace +category Package +revision 15878 +shortdesc Labels for tracing in a syntax tree +relocated 1 +longdesc This package adds support for traces in trees created using +longdesc either the synttree or the qtree package. The package provides +longdesc two commands (\traceLabel and \traceReference) to set and use a +longdesc trace. +containersize 1496 +containerchecksum 613c70859eb0c710c43fa4a62fe8b8d38a407ffe94c532d80927d00fd47c17b6570040f5d9ace5035f4dc53deef97419f52ecdf021ab11d5629445153b85ebd2 +doccontainersize 48700 +doccontainerchecksum 0349aba5e1455a6676cda43c7981677cfadf77b9898a79d90104808e77cd351f219392a91f83b670f7f1801babf53854f8719c32b8da112fde849b7b120e2327 +docfiles size=17 + RELOC/doc/latex/syntrace/README + RELOC/doc/latex/syntrace/syntrace.pdf details="Package documentation" +srccontainersize 2684 +srccontainerchecksum a6b5e08c1eae9b6c631f2d2316bf0d2afba452be7f8aed0d6f9724dedc7d50785ef09e1f29986d2cf869988e3b5c59332cd2b44d185b298e59333131413314f3 +srcfiles size=3 + RELOC/source/latex/syntrace/syntrace.dtx + RELOC/source/latex/syntrace/syntrace.ins +runfiles size=1 + RELOC/tex/latex/syntrace/syntrace.sty +catalogue-ctan /macros/latex/contrib/syntrace +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics tree +catalogue-version 1.1 + +name synttree +category Package +revision 16252 +shortdesc Typeset syntactic trees +relocated 1 +longdesc A package to typeset syntactic trees such as those used in +longdesc Chomsky's Generative grammar, based on a description of the +longdesc structure of the tree. +containersize 3568 +containerchecksum 3fa23536373a41957d985e5a0aac744473459d195c1e7e00e60f2b4aeab15d8f150bc76fab05068d5ae4994ce52ba4dc35380ab042cc9917a23962b2f0a7094a +doccontainersize 133628 +doccontainerchecksum 164c74dfacdb0cafab112d270b15ad0b7c58be0e8d65c5ce08f80182971b63026584c5c071988d9b7053f99b9d81c893f8b103a3145f1128ffad880259a16264 +docfiles size=41 + RELOC/doc/latex/synttree/README details="Readme" + RELOC/doc/latex/synttree/synttree.pdf details="Package documentation" +srccontainersize 10124 +srccontainerchecksum 3fcb8ccf6da19cb01f6a80f97bf98a84c86ca7d06a95b193cbb4b33968c80cd842554ab8d5a9127af0434b9abc83f2cbff428bf1bb976fba01e56d5770f6e20d +srcfiles size=10 + RELOC/source/latex/synttree/synttree.dtx + RELOC/source/latex/synttree/synttree.ins +runfiles size=4 + RELOC/tex/latex/synttree/synttree.sty +catalogue-ctan /macros/latex/contrib/synttree +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl +catalogue-topics tree linguistic +catalogue-version 1.4.2 + +name systeme +category Package +revision 49690 +shortdesc Format systems of equations +relocated 1 +longdesc The package allows you to enter systems of equations or +longdesc inequalities in an intuitive way, and produces typeset output +longdesc where the terms and signs are aligned vertically. The package +longdesc works with plain TeX or LaTeX, but e-TeX is required. Cette +longdesc petite extension permet de saisir des systemes d'equations ou +longdesc inequations de facon intuitive, et produit un affichage ou les +longdesc termes et les signes sont alignes verticalement. +containersize 6832 +containerchecksum a71c84f41447a568cc56b2afe139dc7df23660c329e82c1a0d40e3bcf41ae775b2847f9d391bb591420cc546a36d0a69571a829822932892af1dcedc29e54e38 +doccontainersize 463212 +doccontainerchecksum 4cf7120bd6291edbb101ef1fcdaaeced3a6c771052d8f176b6c11365e1d48699978bc0593354ad9b132e05fc6f14f4074ccd7326492391c49c34a8273f4389c7 +docfiles size=118 + RELOC/doc/generic/systeme/README + RELOC/doc/generic/systeme/systeme_fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/generic/systeme/systeme_fr.tex +runfiles size=8 + RELOC/tex/generic/systeme/systeme.sty + RELOC/tex/generic/systeme/systeme.tex +catalogue-contact-bugs https://framagit.org/unbonpetit/systeme/issues +catalogue-contact-repository https://framagit.org/unbonpetit/systeme/tree/master +catalogue-ctan /macros/generic/systeme +catalogue-date 2019-01-13 21:13:02 +0100 +catalogue-license lppl1.3c +catalogue-topics maths maths-syseqn simplified +catalogue-version 0.32 + +name t-angles +category Package +revision 15878 +shortdesc Draw tangles, trees, Hopf algebra operations and other pictures +relocated 1 +longdesc A LaTeX2e package for drawing tangles, trees, Hopf algebra +longdesc operations and other pictures. It is based on emTeX or TPIC +longdesc \specials. Therefore, it can be used with the most popular +longdesc drivers, including emTeX drivers, dviwin, xdvi and dvips, and +longdesc (using some code from ConTeXt) it may also be used with +longdesc pdfLaTeX. +containersize 5684 +containerchecksum dae9953288c0067e233ca26d2d5e7ea32207790eb16bcff2f0f56180dd9a65e70c234de48652d053a858ec92940c3c5fea10c699c697b65a249a8c84fa050b71 +doccontainersize 117652 +doccontainerchecksum 32dc9adfda93bee5e61eb062e6970f6e093a09016a6ddf32f82d110b7717916fcc92f961c8be682958d1f3f345e02ad49cde4a85ad4a0d0add08a0bc80109d8f +docfiles size=39 + RELOC/doc/latex/t-angles/README details="Readme" + RELOC/doc/latex/t-angles/t-manual.pdf details="Package documentation" + RELOC/doc/latex/t-angles/t-manual.tex +runfiles size=6 + RELOC/tex/latex/t-angles/t-angles.sty +catalogue-contact-home http://www.math.ksu.edu/~lub/ +catalogue-ctan /macros/latex/contrib/t-angles +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license gpl +catalogue-topics maths graphics-in-tex + +name t1utils +category TLCore +revision 50602 +shortdesc Simple Type 1 font manipulation programs +longdesc A collection of simple programs for manipulating Adobe Type 1 +longdesc fonts, comprising: - t1ascii: convert PFB (binary) to PFA +longdesc (ascii) fonts; - t1binary: convert PFA to PFB fonts; - +longdesc t1disasm: convert PFA or PFB fonts to human-readable and +longdesc -editable format; - t1asm: reassemble such editable formats to +longdesc a font; - t1unmac: extract font resources from a Macintosh font +longdesc file; and - t1mac: generate a Macintosh font from a Type 1 +longdesc font. +depend t1utils.ARCH +containersize 620 +containerchecksum 93248c576de8f3a4bce051cc18af8327e5d0f1fc2a5a91bce99663a2fb0ffd718e5a472c5bfbae7c2cb9435ed795ae3abe8b44ffcd0c6de29be02ab9d1b6721c +doccontainersize 94480 +doccontainerchecksum 839bb491b146fbb5bf9b0dc638a9a853dd025fd211754579ec5fef18175df835ed412aa957b4483064ef25ad4f6afa7c928e8f902f677a3afc7f26480b70d4ed +docfiles size=38 + texmf-dist/doc/man/man1/t1ascii.1 + texmf-dist/doc/man/man1/t1ascii.man1.pdf + texmf-dist/doc/man/man1/t1asm.1 + texmf-dist/doc/man/man1/t1asm.man1.pdf + texmf-dist/doc/man/man1/t1binary.1 + texmf-dist/doc/man/man1/t1binary.man1.pdf + texmf-dist/doc/man/man1/t1disasm.1 + texmf-dist/doc/man/man1/t1disasm.man1.pdf + texmf-dist/doc/man/man1/t1mac.1 + texmf-dist/doc/man/man1/t1mac.man1.pdf + texmf-dist/doc/man/man1/t1unmac.1 + texmf-dist/doc/man/man1/t1unmac.man1.pdf +catalogue-contact-home http://www.lcdf.org/~eddietwo/type/#t1utils +catalogue-ctan /fonts/utilities/t1utils +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license pd +catalogue-topics ps-manip + +name t1utils.aarch64-linux +category TLCore +revision 48789 +shortdesc aarch64-linux files of t1utils +containersize 35296 +containerchecksum bf2c7261ac8fc464a30c1de3865ebb7ceacbcbd2d2310bc7972f0fd2619ffcb101a0555b5bbbfd412ee819c1dba2be646f4d743ad2050ca0dfdbc85686d582c0 +binfiles arch=aarch64-linux size=59 + bin/aarch64-linux/t1ascii + bin/aarch64-linux/t1asm + bin/aarch64-linux/t1binary + bin/aarch64-linux/t1disasm + bin/aarch64-linux/t1mac + bin/aarch64-linux/t1unmac + +name t1utils.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of t1utils +containersize 51036 +containerchecksum 96631e3945274ceffc96f2bc378cef3b1536efce432689c05a8692c2ed85a4ee1f5cbc50e2ad57ed6801530711d028250a11212c6ba53119925be6e6751055ed +binfiles arch=amd64-freebsd size=82 + bin/amd64-freebsd/t1ascii + bin/amd64-freebsd/t1asm + bin/amd64-freebsd/t1binary + bin/amd64-freebsd/t1disasm + bin/amd64-freebsd/t1mac + bin/amd64-freebsd/t1unmac + +name t1utils.amd64-netbsd +category TLCore +revision 48698 +shortdesc amd64-netbsd files of t1utils +containersize 39540 +containerchecksum 32d2cdfee6909d47104d21abb329e72e39cd2dc86fcf95e134e6c089a22f03c317220ebb990e2173d54aaa19db07267fc905c136d790a40f0fbc9f0d5d38c606 +binfiles arch=amd64-netbsd size=81 + bin/amd64-netbsd/t1ascii + bin/amd64-netbsd/t1asm + bin/amd64-netbsd/t1binary + bin/amd64-netbsd/t1disasm + bin/amd64-netbsd/t1mac + bin/amd64-netbsd/t1unmac + +name t1utils.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of t1utils +containersize 32400 +containerchecksum e9801843ffd4fd2dbb9c070fe24724fb6afcadf4ceae22cd2cf2cc47f676d678d6d89ad9150a25c34a932f3856e975ce181d08bab45e59193c979b70f015dead +binfiles arch=armhf-linux size=53 + bin/armhf-linux/t1ascii + bin/armhf-linux/t1asm + bin/armhf-linux/t1binary + bin/armhf-linux/t1disasm + bin/armhf-linux/t1mac + bin/armhf-linux/t1unmac + +name t1utils.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of t1utils +containersize 35768 +containerchecksum 5e2b1faf5518656deac388a8f4740b586e56ac379830ad8f5ce31c26de8e650dec6961f68f65cea19e95b3bca21cedcdb2f9d1c59aa7d5b549852c63ba462761 +binfiles arch=i386-cygwin size=60 + bin/i386-cygwin/t1ascii.exe + bin/i386-cygwin/t1asm.exe + bin/i386-cygwin/t1binary.exe + bin/i386-cygwin/t1disasm.exe + bin/i386-cygwin/t1mac.exe + bin/i386-cygwin/t1unmac.exe + +name t1utils.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of t1utils +containersize 43948 +containerchecksum 426623789719fae87af857d223bee14e09976f226b328dcabde0380300a08dd4796b0801fc086b1276da2bb1a84c48f3fb73356674c9d6784d9c1554c38e9d83 +binfiles arch=i386-freebsd size=66 + bin/i386-freebsd/t1ascii + bin/i386-freebsd/t1asm + bin/i386-freebsd/t1binary + bin/i386-freebsd/t1disasm + bin/i386-freebsd/t1mac + bin/i386-freebsd/t1unmac + +name t1utils.i386-linux +category TLCore +revision 50281 +shortdesc i386-linux files of t1utils +containersize 41444 +containerchecksum 2c52fcf130a229d0386ce8753edf2d5379539fa97429a93ed316ff33e54514077b1bfecded738ea04a25c0332135c2b6a81772c71cd25f742636c9f936e91306 +binfiles arch=i386-linux size=59 + bin/i386-linux/t1ascii + bin/i386-linux/t1asm + bin/i386-linux/t1binary + bin/i386-linux/t1disasm + bin/i386-linux/t1mac + bin/i386-linux/t1unmac + +name t1utils.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of t1utils +containersize 36488 +containerchecksum 09d88b5681ffea8157c68a69c631f00a8619143842944c8270f87f9c55240803072cc952396c2bd8f7dc7e726acd754b1bee5095442db2f0a6d8b77254903867 +binfiles arch=i386-netbsd size=68 + bin/i386-netbsd/t1ascii + bin/i386-netbsd/t1asm + bin/i386-netbsd/t1binary + bin/i386-netbsd/t1disasm + bin/i386-netbsd/t1mac + bin/i386-netbsd/t1unmac + +name t1utils.i386-solaris +category TLCore +revision 46829 +shortdesc i386-solaris files of t1utils +containersize 42056 +containerchecksum e46e898d781394838d4d67f188d781e0eb90a9d39a2720c0a67ab9299879a0198bd7bae89456bcec5beadd759dd01924e00587037e6ad190bc139d314dd17ab3 +binfiles arch=i386-solaris size=58 + bin/i386-solaris/t1ascii + bin/i386-solaris/t1asm + bin/i386-solaris/t1binary + bin/i386-solaris/t1disasm + bin/i386-solaris/t1mac + bin/i386-solaris/t1unmac + +name t1utils.win32 +category TLCore +revision 50155 +shortdesc win32 files of t1utils +containersize 35748 +containerchecksum 8b0a0ed057cb1100a1a915fa1bffd1a4b57d08a074b6e39f8f2ef465aa1981a87028f82faa8f8706bbef820d39d4c4d4d4b4f07c4a0f372f037418c2bfd0f257 +binfiles arch=win32 size=47 + bin/win32/t1ascii.exe + bin/win32/t1asm.exe + bin/win32/t1binary.exe + bin/win32/t1disasm.exe + bin/win32/t1mac.exe + bin/win32/t1unmac.exe + +name t1utils.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of t1utils +containersize 36608 +containerchecksum e1080fcf433799b12f2973b75226f0fc1abcbd3b2e260ddc980651721768aac46982ac1f8749ee9fd12e2881d5bd7968a73daae7e4fea1ff8c562970e9a05c2a +binfiles arch=x86_64-cygwin size=59 + bin/x86_64-cygwin/t1ascii.exe + bin/x86_64-cygwin/t1asm.exe + bin/x86_64-cygwin/t1binary.exe + bin/x86_64-cygwin/t1disasm.exe + bin/x86_64-cygwin/t1mac.exe + bin/x86_64-cygwin/t1unmac.exe + +name t1utils.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of t1utils +containersize 45900 +containerchecksum 4640a9c22f3896bea094e8edb3587ffd2412bff991ad5bf749f689fa90dbdb54fd0bfef6d9f4ec46fee7280e891287d6eee20376982f69b8b1d79ee98d614204 +binfiles arch=x86_64-darwin size=74 + bin/x86_64-darwin/t1ascii + bin/x86_64-darwin/t1asm + bin/x86_64-darwin/t1binary + bin/x86_64-darwin/t1disasm + bin/x86_64-darwin/t1mac + bin/x86_64-darwin/t1unmac + +name t1utils.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of t1utils +containersize 39756 +containerchecksum e6d4bee85cf834a8ed1af68610b4f221d30844450b3a202735ea07d5c7b9bbb5c569f320470bb3257cfdc73034ebeffcfd7128d1232d395c1430a65fb40ab2e8 +binfiles arch=x86_64-darwinlegacy size=61 + bin/x86_64-darwinlegacy/t1ascii + bin/x86_64-darwinlegacy/t1asm + bin/x86_64-darwinlegacy/t1binary + bin/x86_64-darwinlegacy/t1disasm + bin/x86_64-darwinlegacy/t1mac + bin/x86_64-darwinlegacy/t1unmac + +name t1utils.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of t1utils +containersize 42492 +containerchecksum 5cac6bce7f408a98f20d97b6ed45fbf6e0792372063b708d46491c3f36fdc6b9a3f18690c255698982afadc42e4942b2d5b35b6cee666217b6585a3407d9e894 +binfiles arch=x86_64-linux size=64 + bin/x86_64-linux/t1ascii + bin/x86_64-linux/t1asm + bin/x86_64-linux/t1binary + bin/x86_64-linux/t1disasm + bin/x86_64-linux/t1mac + bin/x86_64-linux/t1unmac + +name t1utils.x86_64-linuxmusl +category TLCore +revision 46840 +shortdesc x86_64-linuxmusl files of t1utils +containersize 44816 +containerchecksum 329879f970392d74a9706b1ee8fe38f0953474835c2d150c3e6c1a4ea9b8b13244e93356956f16fb0655268d687a5245709482f18fa2c0b4dd573f022c4e7f27 +binfiles arch=x86_64-linuxmusl size=70 + bin/x86_64-linuxmusl/t1ascii + bin/x86_64-linuxmusl/t1asm + bin/x86_64-linuxmusl/t1binary + bin/x86_64-linuxmusl/t1disasm + bin/x86_64-linuxmusl/t1mac + bin/x86_64-linuxmusl/t1unmac + +name t1utils.x86_64-solaris +category TLCore +revision 46829 +shortdesc x86_64-solaris files of t1utils +containersize 46020 +containerchecksum 124e083715162513d1e48b75d7a7355411b010810746826d2f57bb8e60fc778fe1c96e0493a9062664d2fb83018a6c73aff5ec16cf000f6619d8a6008a402e3e +binfiles arch=x86_64-solaris size=69 + bin/x86_64-solaris/t1ascii + bin/x86_64-solaris/t1asm + bin/x86_64-solaris/t1binary + bin/x86_64-solaris/t1disasm + bin/x86_64-solaris/t1mac + bin/x86_64-solaris/t1unmac + +name t2 +category Package +revision 47870 +shortdesc Support for using T2 encoding +relocated 1 +longdesc The T2 bundle provides a variety of separate support functions +longdesc for using Cyrillic characters in LaTeX: the mathtext package, +longdesc for using Cyrillic letters 'transparently' in formulae; the +longdesc citehack package, for using Cyrillic (or indeed any non-ascii) +longdesc characters in citation keys; support for Cyrillic in BibTeX; +longdesc support for Cyrillic in Makeindex; and various items of font +longdesc support. +containersize 27072 +containerchecksum 9a47581909735a9ba582b71a132c925beab45cbfeb0201c93d138c35670fdf65580e6dc20d9498458e01eba7088c81d67cce329465e4763235e3f3404959c5c6 +doccontainersize 28752 +doccontainerchecksum 8c30658eab02eb576963a6a2f722b143444abf5d286473f165b6cab84c75ef703462a1841121a5d12cf822b150ce8c23a96256754a2d662fbe6c451a058333ef +docfiles size=67 + RELOC/doc/generic/t2/Makefile + RELOC/doc/generic/t2/OT2uni.map + RELOC/doc/generic/t2/README details="Readme" + RELOC/doc/generic/t2/T2Auni.map + RELOC/doc/generic/t2/T2Buni.map + RELOC/doc/generic/t2/T2Cuni.map + RELOC/doc/generic/t2/X2uni.map + RELOC/doc/generic/t2/amscyr.txt + RELOC/doc/generic/t2/broken1.txt + RELOC/doc/generic/t2/broken2.txt + RELOC/doc/generic/t2/cyrcset7.txt + RELOC/doc/generic/t2/cyrcset8.txt + RELOC/doc/generic/t2/cyrcsets.ind + RELOC/doc/generic/t2/etc/amsppt.diff + RELOC/doc/generic/t2/etc/mathtext.dtx + RELOC/doc/generic/t2/etc/mathtext.ins + RELOC/doc/generic/t2/etc/rubibtex/README details="Readme" + RELOC/doc/generic/t2/etc/rubibtex/rubibtex + RELOC/doc/generic/t2/etc/rubibtex/rubibtex.bat + RELOC/doc/generic/t2/etc/rubibtex/rubibtex.old + RELOC/doc/generic/t2/etc/rubibtex/rubibtex.sed + RELOC/doc/generic/t2/etc/ruinpenc + RELOC/doc/generic/t2/etc/rumkidx/README details="Readme" + RELOC/doc/generic/t2/etc/rumkidx/rumakeindex + RELOC/doc/generic/t2/etc/rumkidx/rumkidx1.sed + RELOC/doc/generic/t2/etc/rumkidx/rumkidx2.sed + RELOC/doc/generic/t2/etc/rumkidx/rumkidx3.sed + RELOC/doc/generic/t2/etc/rumkidx/rumkidxd.bat + RELOC/doc/generic/t2/etc/rumkidx/rumkidxw.bat + RELOC/doc/generic/t2/etc/t2filter.c + RELOC/doc/generic/t2/etc/utf-8/test-utf8.tex + RELOC/doc/generic/t2/etc/utf-8/utf-8.def + RELOC/doc/generic/t2/etc/utf-8/utfcyr.def + RELOC/doc/generic/t2/etc/utf-8/utflat.def + RELOC/doc/generic/t2/examples/example1.tex + RELOC/doc/generic/t2/examples/example2.tex + RELOC/doc/generic/t2/examples/example3.tex + RELOC/doc/generic/t2/examples/example4.tex + RELOC/doc/generic/t2/examples/example5.tex + RELOC/doc/generic/t2/make-enc.pl + RELOC/doc/generic/t2/mkencs.sh + RELOC/doc/generic/t2/mtcyr.txt + RELOC/doc/generic/t2/t2cyr.txt + RELOC/doc/generic/t2/t2lat.txt + RELOC/doc/generic/t2/urwcyr.txt +runfiles size=109 + RELOC/fonts/enc/t2/t2a-mod1.enc + RELOC/fonts/enc/t2/t2a-mod2.enc + RELOC/fonts/enc/t2/t2a.enc + RELOC/fonts/enc/t2/t2b.enc + RELOC/fonts/enc/t2/t2c.enc + RELOC/fonts/enc/t2/x2.enc + RELOC/tex/generic/t2/cyrfinst/6r.etx + RELOC/tex/generic/t2/cyrfinst/README + RELOC/tex/generic/t2/cyrfinst/cyrillic.mtx + RELOC/tex/generic/t2/cyrfinst/derivatives/lcyc.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/lcyci.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/lcycij.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/lcycj.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/lcyctt.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/lcyi.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/lcyij.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/lcyitt.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/lcyj.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/lcytt.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/ot2c.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/ot2cj.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/ot2i.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/ot2ij.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/ot2j.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2ac.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2acj.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2ai.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2aij.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2aj.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2bc.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2bcj.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2bi.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2bij.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2bj.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2cc.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2ccj.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2ci.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2cij.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/t2cj.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/x2c.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/x2cj.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/x2i.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/x2ij.etx + RELOC/tex/generic/t2/cyrfinst/derivatives/x2j.etx + RELOC/tex/generic/t2/cyrfinst/etc/alias-cmc.tex + RELOC/tex/generic/t2/cyrfinst/etc/alias-wncy.tex + RELOC/tex/generic/t2/cyrfinst/etc/cyralias.tex + RELOC/tex/generic/t2/cyrfinst/etc/fnstcorr.tex + RELOC/tex/generic/t2/cyrfinst/etc/showenc + RELOC/tex/generic/t2/cyrfinst/lcy-hi.etx + RELOC/tex/generic/t2/cyrfinst/lcy.etx + RELOC/tex/generic/t2/cyrfinst/ot2.etx + RELOC/tex/generic/t2/cyrfinst/t2a.etx + RELOC/tex/generic/t2/cyrfinst/t2b.etx + RELOC/tex/generic/t2/cyrfinst/t2c.etx + RELOC/tex/generic/t2/cyrfinst/x2.etx + RELOC/tex/latex/t2/citehack.sty + RELOC/tex/latex/t2/mathtext.sty + RELOC/tex/latex/t2/misccorr.sty +catalogue-ctan /macros/latex/contrib/t2 +catalogue-date 2018-05-08 17:14:58 +0200 catalogue-license lppl -catalogue-topics cvt-html +catalogue-topics fontenc cyrillic + +name tabfigures +category Package +revision 25202 +shortdesc Maintain vertical alignment of figures +relocated 1 +longdesc Knuth designed his original fonts with tabular figures (figures +longdesc whose width is uniform); this makes some layout problems rather +longdesc simple. In more recent times, fonts (such as Minion Pro), which +longdesc offer proportionally spaced figures, are increasingly being +longdesc used. The package provides mechanisms whereby such proportional +longdesc figures may still be aligned in tabular style (for example, in +longdesc the table of contents). +containersize 2172 +containerchecksum d2a1fe985a74427888995437beaafa62b5def851d6f2a7788ead9cddbfcefd7206366a6711f29e85d2705c0d787bfc88accc56c93b827fa372ebd9cfc562f2c6 +doccontainersize 246772 +doccontainerchecksum 5b2c7c5bd350c3dba68117151f3cfd6eac8f0e7ed602b44406ff9d15a79dd7de7e0ec303b1163e3c882412c86adc48afac6c9653cf1fbff86e7cf6a7ce852c94 +docfiles size=61 + RELOC/doc/latex/tabfigures/README details="Readme" + RELOC/doc/latex/tabfigures/tabfigures.pdf details="Package documentation" +srccontainersize 5452 +srccontainerchecksum 78602de26e50e0d9ee43b8289a96a3639904bdf79983d4633d6c11af1c8215d1e77649f640ecc6b3f37cce30e6cc6b4c204e2cec58a3454c8b8486104eb17922 +srcfiles size=5 + RELOC/source/latex/tabfigures/tabfigures.dtx + RELOC/source/latex/tabfigures/tabfigures.ins +runfiles size=2 + RELOC/tex/latex/tabfigures/tabfigures.sty +catalogue-ctan /macros/latex/contrib/tabfigures +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics font-use typesetting +catalogue-version 1.1 + +name table-fct +category Package +revision 41849 +shortdesc Draw a variations table of functions and a convexity table of its graph +relocated 1 +longdesc Draw a variations table of functions and a convexity table of +longdesc its graph This version offers two environnements, to draw +longdesc variations table of a function and a convexity table of its +longdesc graph. +containersize 2308 +containerchecksum a6300b1989f536fecb27d300bc0b27afd93f7f72b894fdb87bae5b0756ab241985ee2e5b4c0b68d1b2cc5611aafdb62b300fe40e2a08df5f6b11774f13309756 +doccontainersize 880 +doccontainerchecksum a9108cee93e6c7250643636619f923659d468a2148f5b04168fb08738d85e794c1050fef8152fb95d114551f6967c955f3d6f548e1ede37711b98b1362e9910a +docfiles size=2 + RELOC/doc/latex/table-fct/README details="Readme" + RELOC/doc/latex/table-fct/README.TEXLIVE +runfiles size=4 + RELOC/tex/latex/table-fct/table-fct.sty +catalogue-ctan /graphics/table-fct +catalogue-date 2018-01-07 14:49:11 +0100 +catalogue-license lppl1.3 +catalogue-topics graphics +catalogue-version 1.1 + +name tableaux +category Package +revision 42413 +shortdesc Construct tables of signs and variations +relocated 1 +longdesc The package uses PSTricks; the user may define the width of the +longdesc table, the number of lines and the height of each line. +longdesc Placement of labels within the boxes may be absolute, or as a +longdesc percentage of the width; various other controls are available. +containersize 2920 +containerchecksum 1846fe9da749b92700be07c094556fd296d47123df3a5d6823570056e6ce2ca8ef365b70f6ab2a8577602d1be338867fd2610403f89729dd51632d404951f84f +doccontainersize 57272 +doccontainerchecksum cfa58a8e76dd61659f6c13ea6b3f97ae484715b735028c513576312dfa7dfe92c8c15a0858077e3ff2399807274dd5a836182ea65b948a976f6384bd8d1b19d6 +docfiles size=25 + RELOC/doc/latex/tableaux/exemples.pdf details="Further examples (comments in French)" language="fr" + RELOC/doc/latex/tableaux/exemples.tex + RELOC/doc/latex/tableaux/tableau.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/tableaux/tableau.tex +runfiles size=3 + RELOC/tex/latex/tableaux/minimum.sty + RELOC/tex/latex/tableaux/tableau.sty +catalogue-also tablor tkz-tab tableauvariations tabvar +catalogue-ctan /macros/latex/contrib/tableaux +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics maths-tabvar + +name tablefootnote +category Package +revision 32804 +shortdesc Permit footnotes in tables +relocated 1 +longdesc The package provides the command \tablefootnote to be used in a +longdesc table or sidewaystable environment, where \footnote will not +longdesc work (and when using \footnotemark and \footnotetext, and +longdesc adjusting the counter as necessary, is too much work). +containersize 4056 +containerchecksum 90812cecdbb464592b17b8faf4d81b221844a354b0a3d3ea30cb72d0b56c4ff7eee701caf113e13586315ce846d30de6ce8d5028966f2c310527e34e8ec90464 +doccontainersize 505020 +doccontainerchecksum 712c1ab696f5924058f4ea6ce12e3ff14fcbf79a78328259c4b9acfdaad33e9e4dddf36dbb322598f09a8fa3ca75d68b474fe1a4bcd4d25752704e0c4e6ba5d7 +docfiles size=128 + RELOC/doc/latex/tablefootnote/README details="Readme" + RELOC/doc/latex/tablefootnote/tablefootnote-example.pdf details="Demonstration and outline of use" + RELOC/doc/latex/tablefootnote/tablefootnote-example.tex + RELOC/doc/latex/tablefootnote/tablefootnote.pdf details="Package documentation" +srccontainersize 16288 +srccontainerchecksum 70456471a5997592668198463d1e44af464e9c24619c09d186c952c5afe2bc5171d5c29442820b267d1782a966fbe63997694427f1c870d14ec6194ac99ded52 +srcfiles size=20 + RELOC/source/latex/tablefootnote/tablefootnote.drv + RELOC/source/latex/tablefootnote/tablefootnote.dtx + RELOC/source/latex/tablefootnote/tablefootnote.ins +runfiles size=5 + RELOC/tex/latex/tablefootnote/tablefootnote.sty +catalogue-ctan /macros/latex/contrib/tablefootnote +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics table footnote +catalogue-version 1.1c + +name tableof +category Package +revision 48815 +shortdesc Tagging tables of contents +relocated 1 +longdesc The package provides the commands to flag chapters or sections +longdesc (or anything else destined to become a TOC line). The command +longdesc \nexttocwithtags{req1,req2,...}{excl1,excl2,...} specifies +longdesc which tags are to be required and which ones are to be excluded +longdesc by the next \tableofcontents (or equivalent) command. In a +longdesc document that uses a class where \tableofcontents may only be +longdesc used once, the command +longdesc \tableoftaggedcontents{req1,req2,...}{excl1,excl2,...} may be +longdesc used to provide several tables. +containersize 2528 +containerchecksum 3eb5dd3a3399825a85280c79c9f013dc9615a534e475d64777ec84924c9257aa930b7fe677a85c32b158b4099d5b61f306ea54f610fa1c9db42764fbf5b683da +doccontainersize 56988 +doccontainerchecksum 609011dc53d37fbad2abf84531ab99d8f60b636222debdf0466b33ed85964326b688a7e5d957500a970e1e974d5fbcf1dfc198e146360b6d43b58f6f3d67c845 +docfiles size=15 + RELOC/doc/latex/tableof/README.md details="Readme" + RELOC/doc/latex/tableof/tableof.pdf details="Package documentation" +srccontainersize 10884 +srccontainerchecksum b55b6834b7dcc3ba83f3e8620ffa9ee66b0a6962a4c1b95d7b74ac164300334db89f432af7407268d00190e79333fb3e305074feaf116344957a5a986c842d17 +srcfiles size=10 + RELOC/source/latex/tableof/tableof.dtx + RELOC/source/latex/tableof/tableof.ins +runfiles size=2 + RELOC/tex/latex/tableof/tableof.sty +catalogue-ctan /macros/latex/contrib/tableof +catalogue-date 2018-10-02 13:25:15 +0200 +catalogue-license lppl1.3 +catalogue-topics toc-etc +catalogue-version 1.4b + +name tablestyles +category Package +revision 34495 +shortdesc Styles for tables with new commands +relocated 1 +longdesc This package tries to introduce a separation of text and style +longdesc in tables by defining reusable table commands and a simple +longdesc interface to define a style for a table. Furthermore the +longdesc package defines commonly used column styles and a bugfix +longdesc command for lists in tables. +containersize 2112 +containerchecksum 429d9e66e9dcc06814e75b08d1fcc9630de6cc614337c73fdc06588479e47e7df72dfab33a91fb7cb230f9e1ed0bade3d8e56fa423c1f2fcf0bac6f246620069 +doccontainersize 452888 +doccontainerchecksum 43c5dedd804a0aec1b7ad289d8113bca94d6fac7e9b5b8628880e2d7d7e4f0e29cde12864747cfcdf24ceeee0e143652c2acb2b448bfce0630b6915e2bed237c +docfiles size=113 + RELOC/doc/latex/tablestyles/README details="Readme" + RELOC/doc/latex/tablestyles/tablestyles.pdf details="Package documentation" +srccontainersize 9872 +srccontainerchecksum 26b5e4b276a202ba2b351287ce310b52a256659c55f88f68259ec358636c117d36dd8834542d385450c531d4db1d5e42e053a11e2a9c21c43fc72ce38c453072 +srcfiles size=12 + RELOC/source/latex/tablestyles/tablestyles.dtx + RELOC/source/latex/tablestyles/tablestyles.ins +runfiles size=2 + RELOC/tex/latex/tablestyles/tablestyles.sty +catalogue-ctan /macros/latex/contrib/tablestyles +catalogue-date 2017-11-18 19:32:57 +0100 +catalogue-license lppl1.3 +catalogue-topics table +catalogue-version 0.1 + +name tablists +category Package +revision 15878 +shortdesc Tabulated lists of short items +relocated 1 +longdesc This package offers environments and commands for one-level and +longdesc two-level lists of short items (e.g., exercises in textbooks). +longdesc The environments support optional arguments of item numbering +longdesc similar to the enumerate or paralist packages. +containersize 2756 +containerchecksum ed0ebef871c7bdffe93e2cc38b823dd13376c53e4388daa8aa1198cb213010594c9bfe468ec0e42901df2dbd1b938e7f037cf49ef2cf6d9ff3bc53502b220a14 +doccontainersize 211336 +doccontainerchecksum afcfa520702fd873b4deb7c4acfbd4290262a0df133c87f01698d20b8d17fd5b5932384124f49fb4d90155da284b873bb3ee1a2281955449f8ca2f278c38d39f +docfiles size=69 + RELOC/doc/latex/tablists/README details="README file" + RELOC/doc/latex/tablists/tablists-rus.pdf + RELOC/doc/latex/tablists/tablists-rus.tex + RELOC/doc/latex/tablists/tablists.pdf details="Package documentation" +srccontainersize 8040 +srccontainerchecksum 34ff94c3adfff4188daf4ff906721833dd925c84f107867d7931fe66c58ea8a8438737065f64a9aaf57acb0eeac9e17e8388dee7a0af93476f5add226d4481e7 +srcfiles size=8 + RELOC/source/latex/tablists/tablists.dtx +runfiles size=2 + RELOC/tex/latex/tablists/tablists.sty +catalogue-ctan /macros/latex/contrib/tablists +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics list-enum +catalogue-version 0.0e + +name tablor +category Package +revision 31855 +shortdesc Create tables of signs and of variations +relocated 1 +longdesc The package allows the user to use the computer algebra system +longdesc XCAS to generate tables of signs and of variations (the actual +longdesc plotting of the tables uses the MetaPost macro package +longdesc tableauVariations). Tables with forbidden regions may be +longdesc developed using the package. A configuration file permits some +longdesc configuration of the language to be used in the diagrams. The +longdesc tablor package requires that shell escape be enabled. +containersize 12620 +containerchecksum 64169a74a787f8877d41d5e32c42e5659950854a1e20cc05103b3ed58c54fb800a9af0701a40a6c5b75553b86d675fbda51948106cac464785c3d46aac77c979 +doccontainersize 449356 +doccontainerchecksum 77a6d1b47337f015dbfd39074e1dae417c3bea3c9635955c6518d691ff336854cdd7587af54640282b45f5bf3885044d3b6789a0a73f39a726aeaf0afd27c883 +docfiles size=293 + RELOC/doc/latex/tablor/Figures/TSav-105.mp + RELOC/doc/latex/tablor/Figures/capture.eps + RELOC/doc/latex/tablor/Figures/tablor_Tab.0 + RELOC/doc/latex/tablor/Figures/tablor_Tab.1 + RELOC/doc/latex/tablor/Figures/tablor_Tab.10 + RELOC/doc/latex/tablor/Figures/tablor_Tab.105 + RELOC/doc/latex/tablor/Figures/tablor_Tab.11 + RELOC/doc/latex/tablor/Figures/tablor_Tab.12 + RELOC/doc/latex/tablor/Figures/tablor_Tab.13 + RELOC/doc/latex/tablor/Figures/tablor_Tab.14 + RELOC/doc/latex/tablor/Figures/tablor_Tab.15 + RELOC/doc/latex/tablor/Figures/tablor_Tab.16 + RELOC/doc/latex/tablor/Figures/tablor_Tab.17 + RELOC/doc/latex/tablor/Figures/tablor_Tab.18 + RELOC/doc/latex/tablor/Figures/tablor_Tab.19 + RELOC/doc/latex/tablor/Figures/tablor_Tab.2 + RELOC/doc/latex/tablor/Figures/tablor_Tab.20 + RELOC/doc/latex/tablor/Figures/tablor_Tab.21 + RELOC/doc/latex/tablor/Figures/tablor_Tab.22 + RELOC/doc/latex/tablor/Figures/tablor_Tab.23 + RELOC/doc/latex/tablor/Figures/tablor_Tab.24 + RELOC/doc/latex/tablor/Figures/tablor_Tab.25 + RELOC/doc/latex/tablor/Figures/tablor_Tab.26 + RELOC/doc/latex/tablor/Figures/tablor_Tab.27 + RELOC/doc/latex/tablor/Figures/tablor_Tab.28 + RELOC/doc/latex/tablor/Figures/tablor_Tab.29 + RELOC/doc/latex/tablor/Figures/tablor_Tab.3 + RELOC/doc/latex/tablor/Figures/tablor_Tab.30 + RELOC/doc/latex/tablor/Figures/tablor_Tab.31 + RELOC/doc/latex/tablor/Figures/tablor_Tab.32 + RELOC/doc/latex/tablor/Figures/tablor_Tab.33 + RELOC/doc/latex/tablor/Figures/tablor_Tab.35 + RELOC/doc/latex/tablor/Figures/tablor_Tab.36 + RELOC/doc/latex/tablor/Figures/tablor_Tab.37 + RELOC/doc/latex/tablor/Figures/tablor_Tab.38 + RELOC/doc/latex/tablor/Figures/tablor_Tab.39 + RELOC/doc/latex/tablor/Figures/tablor_Tab.4 + RELOC/doc/latex/tablor/Figures/tablor_Tab.40 + RELOC/doc/latex/tablor/Figures/tablor_Tab.41 + RELOC/doc/latex/tablor/Figures/tablor_Tab.42 + RELOC/doc/latex/tablor/Figures/tablor_Tab.43 + RELOC/doc/latex/tablor/Figures/tablor_Tab.44 + RELOC/doc/latex/tablor/Figures/tablor_Tab.45 + RELOC/doc/latex/tablor/Figures/tablor_Tab.47 + RELOC/doc/latex/tablor/Figures/tablor_Tab.48 + RELOC/doc/latex/tablor/Figures/tablor_Tab.49 + RELOC/doc/latex/tablor/Figures/tablor_Tab.5 + RELOC/doc/latex/tablor/Figures/tablor_Tab.50 + RELOC/doc/latex/tablor/Figures/tablor_Tab.51 + RELOC/doc/latex/tablor/Figures/tablor_Tab.52 + RELOC/doc/latex/tablor/Figures/tablor_Tab.53 + RELOC/doc/latex/tablor/Figures/tablor_Tab.54 + RELOC/doc/latex/tablor/Figures/tablor_Tab.55 + RELOC/doc/latex/tablor/Figures/tablor_Tab.56 + RELOC/doc/latex/tablor/Figures/tablor_Tab.57 + RELOC/doc/latex/tablor/Figures/tablor_Tab.6 + RELOC/doc/latex/tablor/Figures/tablor_Tab.7 + RELOC/doc/latex/tablor/Figures/tablor_Tab.8 + RELOC/doc/latex/tablor/Figures/tablor_Tab.9 + RELOC/doc/latex/tablor/Figures/tablor_Tab.mp + RELOC/doc/latex/tablor/README details="Readme (English)" language="en" + RELOC/doc/latex/tablor/README-fr.txt details="Readme (French)" language="fr" + RELOC/doc/latex/tablor/auto/tablor-xetex.el + RELOC/doc/latex/tablor/auto/tablor.el + RELOC/doc/latex/tablor/tablor.html + RELOC/doc/latex/tablor/tablor.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/tablor/tablor.tex +runfiles size=48 + RELOC/tex/latex/tablor/tablor-xetex.sty + RELOC/tex/latex/tablor/tablor.cfg + RELOC/tex/latex/tablor/tablor.sty +catalogue-also tabvar tkz-tab tableaux tableauvariations +catalogue-ctan /macros/latex/contrib/tablor +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics maths-tabvar +catalogue-version 4.07-g + +name tabls +category Package +revision 17255 +shortdesc Better vertical spacing in tables and arrays +relocated 1 +longdesc Modifies LaTeX's array and tabular environments to keep text +longdesc from touching other text or hlines above or below. Several new +longdesc parameters are defined and some standard macros are re-defined. +longdesc The package slows down compilation of tables, since each entry +longdesc is boxed twice. +containersize 4348 +containerchecksum 1a341985ae61f047694470d19d4e192b4f4e01c0bb595d91b1f80080eed3077be4e40b431cc05b1bb482f18c30bf36e6076542f2cf37a49dd6b065b0fe044bca +doccontainersize 226408 +doccontainerchecksum f458058964660b2b1ff2a61ff8ff2ffcfe7ab103e9714cb1e7c307a8bd39c5a1a6990683c4ed7aa401cbe9b9dcc083dfbadd80a5aa00bcd64c0fb72638cf71f2 +docfiles size=59 + RELOC/doc/latex/tabls/miscdoc.sty + RELOC/doc/latex/tabls/tabls.pdf details="Package documentation" + RELOC/doc/latex/tabls/tabls.tex +runfiles size=3 + RELOC/tex/latex/tabls/tabls.sty +catalogue-also cellspace +catalogue-ctan /macros/latex/contrib/tabls +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics table +catalogue-version 3.5 + +name tablvar +category Package +revision 50949 +shortdesc Typesetting pretty tables of signs and variations according to French usage +relocated 1 +longdesc This is a complete and easy-to-use package for typesetting +longdesc pretty tables of signs and variations according to French +longdesc usage. The syntax is similar to that of the array environment +longdesc and uses intuitive position commands. Arrows are drawn +longdesc automatically (using PSTricks by default or TikZ as an option). +longdesc Several macros are provided for drawing twin bars, single bars +longdesc crossing the zeros, areas where the function is not defined, or +longdesc placing special values. Some features of the variation tables +longdesc can be customized. +containersize 3640 +containerchecksum c1d9758a1649d5b986cd330e5943a22be0045d779c44ed97dc1678bc9892d26a931b76a3e767e8026588eba04911cbe76bda81e4524505dc8808a379795f5bf9 +doccontainersize 164720 +doccontainerchecksum 3f8d3617b41b8850e41a353b7a3f6195f6a77481c0116fab36f3296436a3380bde8e9a9d77c6c3e0cd08fa92c1ebf3ee78824d3ac253258194079267368a7a73 +docfiles size=52 + RELOC/doc/latex/tablvar/README.md details="Readme" + RELOC/doc/latex/tablvar/tablvar.pdf details="Package documentation" language="fr" +srccontainersize 15644 +srccontainerchecksum 3c71b71ff43669f5ce1a0434b6b7f7d40dd4a5c0953c8c8309e7f5deda361055c57a986a301de28a1d7e5e9e9916161bab696200e81d2e84a333ea514e77fd37 +srcfiles size=17 + RELOC/source/latex/tablvar/tablvar.dtx + RELOC/source/latex/tablvar/tablvar.ins +runfiles size=3 + RELOC/tex/latex/tablvar/tablvar.sty +catalogue-ctan /macros/latex/contrib/tablvar +catalogue-date 2019-04-22 10:48:11 +0200 +catalogue-license lppl1.3 +catalogue-topics maths-tabvar maths french +catalogue-version 1.1 + +name tabriz-thesis +category Package +revision 29421 +shortdesc A template for the University of Tabriz +relocated 1 +longdesc The package offers a document class for typesetting theses and +longdesc dissertations at the University of Tabriz. The class requires +longdesc use of XeLaTeX. +containersize 3460 +containerchecksum ad153e762e24c2aa5be11b99e359f44ff2f784303855d6a1022d040a030f114a956e24b162fa62475ce018c56c8d1a53d2481819de62515bf730515b1562413a +doccontainersize 217012 +doccontainerchecksum 325a33c035a4a467fc4155ff62e0840529b4541cdd82859a85e9249666d92ffa3c01b39313618f0a8384ae7c5c83197d5f56960b646449d06a1f47aa6c8cfc62 +docfiles size=85 + RELOC/doc/latex/tabriz-thesis/README details="Readme" + RELOC/doc/latex/tabriz-thesis/appendix1.tex + RELOC/doc/latex/tabriz-thesis/chapter1.tex + RELOC/doc/latex/tabriz-thesis/chapter2.tex + RELOC/doc/latex/tabriz-thesis/chapter3.tex + RELOC/doc/latex/tabriz-thesis/dicen2fa.tex + RELOC/doc/latex/tabriz-thesis/dicfa2en.tex + RELOC/doc/latex/tabriz-thesis/en-title.tex + RELOC/doc/latex/tabriz-thesis/fa-title.tex + RELOC/doc/latex/tabriz-thesis/logo.jpg + RELOC/doc/latex/tabriz-thesis/references.tex + RELOC/doc/latex/tabriz-thesis/tabriz-thesis.pdf details="Package documentation" language="fa" + RELOC/doc/latex/tabriz-thesis/tabriz-thesis.tex +runfiles size=3 + RELOC/tex/latex/tabriz-thesis/tabriz-thesis.cls +catalogue-ctan /macros/latex/contrib/tabriz-thesis +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics dissertation persian xetex +catalogue-version 1.1 + +name tabstackengine +category Package +revision 46848 +shortdesc "Tabbing" front-end to stackengine +relocated 1 +longdesc The package provides a front end to the stackengine package, to +longdesc allow tabbed stacking. In most cases, an existing stackengine +longdesc command may be prepended with the word "tabbed", "align" or +longdesc "tabular" to create a new tabbed version of a stacking macro. +longdesc In addition, hooks in the package's parser that tabbed strings +longdesc of data may be parsed, extracted, and reconstituted (not +longdesc requiring use of any stacking constructions). +containersize 5168 +containerchecksum 2f6245d65a7d711d598b894c8acfd8d2a032ae210eabfa219934e8fa086bbe3edef81e73092234e5528f9f62a6856546aaec7eafe5572eded155ca8fa5fc3999 +doccontainersize 582016 +doccontainerchecksum 6ce0b2ec254e44bca6f6cb746d4e3762735e9bb85e561df7628d3a2e2e35ddaac1635c825f27900d06badeb310535e73c84495e24748c1181825fd61fb03105d +docfiles size=157 + RELOC/doc/latex/tabstackengine/README details="Readme" + RELOC/doc/latex/tabstackengine/tabstackengine.pdf details="Package documentation" + RELOC/doc/latex/tabstackengine/tabstackengine.tex +runfiles size=6 + RELOC/tex/latex/tabstackengine/tabstackengine.sty +catalogue-ctan /macros/latex/contrib/tabstackengine +catalogue-date 2018-03-05 20:20:38 +0100 +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 2.10 + +name tabto-generic +category Package +revision 15878 +shortdesc "Tab" to a measured position in the line +relocated 1 +longdesc \tabto{} moves the typesetting position to +longdesc from the left margin of the paragraph. If the typesetting +longdesc position is already further along, \tabto starts a new line. +containersize 1256 +containerchecksum 5b3bd8081ec6800c96ce4b4cbdd8091578ad1df2b625fb2792202a6c31f3f126d612f99f04802d82d490cb529e03e63f98b01c7842ec0df69b48c2fc289108fa +runfiles size=1 + RELOC/tex/generic/tabto-generic/tabto.tex +catalogue-also tabto-ltx +catalogue-ctan /macros/generic/misc/tabto.tex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics layout + +name tabto-ltx +category Package +revision 50188 +shortdesc "Tab" to a measured position in the line +relocated 1 +longdesc \tabto{} moves the typesetting position to +longdesc from the left margin of the paragraph. If the typesetting +longdesc position is already further along, \tabto starts a new line; +longdesc the command \tabto* will move position backwards if necessary, +longdesc so that previous text may be overwritten. The command +longdesc \TabPositions may be used to define a set of tabbing positions, +longdesc after which the command \tab advances typesetting position to +longdesc the next defined 'tab stop'. +containersize 3488 +containerchecksum 3679dfd17ada1f2959def0c8eb9d434b84e5bec7245d7e5059e1d1b975248ef54ee04b6178cedaa8228805892f323aeb33d57bcfd4c37bdfb7d57f43a516da23 +doccontainersize 53812 +doccontainerchecksum bf428fe02b3e1779a5ae685690527102f3d728095f55c3af0c54cc42d6c33430a52a0a27f57003cfe30eca3bfadc36343784ec93224c12ae612d2e24b4ec5e0b +docfiles size=17 + RELOC/doc/latex/tabto-ltx/README + RELOC/doc/latex/tabto-ltx/tabto-doc.pdf details="Package documentation" + RELOC/doc/latex/tabto-ltx/tabto-doc.tex +runfiles size=2 + RELOC/tex/latex/tabto-ltx/tabto.sty +catalogue-also tabto-generic +catalogue-ctan /macros/latex/contrib/tabto +catalogue-date 2019-03-01 08:38:06 +0100 +catalogue-license lppl1.3 +catalogue-topics layout +catalogue-version 1.4 + +name tabu +category Package +revision 49707 +shortdesc Flexible LaTeX tabulars +relocated 1 +longdesc The package provides an environment, tabu, which will make any +longdesc sort of tabular (that doesn't need to split across pages), and +longdesc an environment longtabu which provides the facilities of tabu +longdesc in a modified longtable environment. (Note that this latter +longdesc offers an enhancement of ltxtable.) The package requires the +longdesc array package, and needs e-TeX to run (since array.sty is +longdesc present in every conforming distribution of LaTeX, and since +longdesc every publicly available LaTeX format is built using e-TeX, the +longdesc requirements are provided by default on any reasonable system). +longdesc The package also requires xcolor for coloured rules in tables, +longdesc and colortbl for coloured cells. The longtabu environment +longdesc further requires that longtable be loaded. The package itself +longdesc does not load any of these packages for the user. The tabu +longdesc environment may be used in place of tabular, tabular* and +longdesc tabularx environments, as well as the array environment in +longdesc maths mode. It overloads tabularx's X-column specification, +longdesc allowing a width specification, alignment (l, r, c and j) and +longdesc column type indication (p, m and b). \begin{tabu} to +longdesc specifies a target width, and \begin{tabu} spread +longdesc enlarges the environment's "natural" width. +containersize 23904 +containerchecksum b5ee526ac9f68edba34784ed646557b8b1b28a0192c5acefa81dab5a637050798c4a7410589ff98549b2a29e30686c518d2f319144c7e4fb2ab1464d56d2fac6 +doccontainersize 1458864 +doccontainerchecksum b7cb976e6908f219d50bb3e30dc7874b3c9843c8c36bc59cfb909fd54472c4767e914889cb4f50b4ad426176764a09633254e05d271daaaefe0b0beef80161e9 +docfiles size=618 + RELOC/doc/latex/tabu/README.md details="Readme" + RELOC/doc/latex/tabu/tabu.pdf details="Package documentation" +srccontainersize 76076 +srccontainerchecksum 0684c272a9dabb794a0dbb3900006abe2b0997b6e3335668d058bd9195a6661ee523bb7324ec2e98a7cbfa88416310ec2427c1abcf01986ad1e07a1008bd506b +srcfiles size=86 + RELOC/source/latex/tabu/tabu.dtx +runfiles size=29 + RELOC/tex/latex/tabu/tabu.sty +catalogue-contact-bugs https://github.com/tabu-fixed/tabu/issues +catalogue-contact-repository https://github.com/tabu-fixed/tabu +catalogue-ctan /macros/latex/contrib/tabu +catalogue-date 2019-01-14 20:48:52 +0100 +catalogue-license lppl1.3 +catalogue-topics table table-long +catalogue-version 2.9 + +name tabularborder +category Package +revision 17885 +shortdesc Remove excess space at left and right of tabular +relocated 1 +longdesc The tabular environment is changed so that the outer +longdesc \tabcolseps are compensated and a \hline has the same length as +longdesc the text. No @{} is needed. +containersize 1496 +containerchecksum a30f668ea84238df674c079fea6b05878776b26b4f6465385e26b01b16181825a8cc20767fa45eda8e7870d272875bc9664aed145885dd655d15258aa072ebb7 +doccontainersize 99284 +doccontainerchecksum f0376dfe99c68523332be0e83c0a186d7e3051862fac22785b4ba1273673fb9b1776654a127ba1c617af67063763e5837723ca2f23b3f7dd012628bd40ad0604 +docfiles size=29 + RELOC/doc/latex/tabularborder/tabularborder.pdf details="Package documentation" +srccontainersize 4216 +srccontainerchecksum 862ea87bf23f2e4f42bc15fb82d9e417b4e51d7fbd555383cb985892b9b40734b38dc4f0dfb09790040c64791beb2cb2c6bbd2df9373c75438929be011748978 +srcfiles size=5 + RELOC/source/latex/tabularborder/tabularborder.dtx + RELOC/source/latex/tabularborder/tabularborder.ins +runfiles size=1 + RELOC/tex/latex/tabularborder/tabularborder.sty +catalogue-ctan /macros/latex/contrib/tabularborder +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.2 +catalogue-topics table +catalogue-version 1.0a + +name tabularcalc +category Package +revision 15878 +shortdesc Calculate formulas in a tabular environment +relocated 1 +longdesc Given a list of numbers and one (or more) formulas, the package +longdesc offers an easy syntax to build a table of values, i.e., a +longdesc tabular in which the first row contains the list of numbers, +longdesc and the other rows contain the calculated values of the +longdesc formulas for each number of the list. The table may be built +longdesc either horizontally or vertically and is fully customizable. +containersize 4964 +containerchecksum 7535398538d6802c4e70858028ce6e7414aa8a88336e71f90f7f909d015bf896eeb5e6652cc5bc5a2bb384bc25d280d8cd6506f7ba05823c20dda04fb3adf0ba +doccontainersize 789972 +doccontainerchecksum 7e35cad1507cfb62117aaddae77c3faa5d19c4e320193afa0054415e84d49833ba64afdf743b6241d611dbb4d45c6a532779293924f20b6c748659a361d6f30d +docfiles size=261 + RELOC/doc/latex/tabularcalc/README details="Readme" + RELOC/doc/latex/tabularcalc/tabularcalc_doc_en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/tabularcalc/tabularcalc_doc_en.tex + RELOC/doc/latex/tabularcalc/tabularcalc_doc_fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/tabularcalc/tabularcalc_doc_fr.tex + RELOC/doc/latex/tabularcalc/tabularcalc_doc_vn.pdf + RELOC/doc/latex/tabularcalc/tabularcalc_doc_vn.tex +runfiles size=5 + RELOC/tex/latex/tabularcalc/tabularcalc.sty +catalogue-ctan /macros/latex/contrib/tabularcalc +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics table +catalogue-version 0.2 + +name tabularew +category Package +revision 15878 +shortdesc A variation on the tabular environment +relocated 1 +longdesc The package offers a modification of the tabular environment, +longdesc which deals with the problem of column heads that are +longdesc significantly wider than the body of the column. +containersize 2128 +containerchecksum 512851ce7641e0904dd25ab8a5cd5ac0dd281154067e09c4389fa3d6f330d30099dc60b252de4ebee52a2cf28d6b7d10bcf63fe4ab1472238db35754adc1dba6 +doccontainersize 142128 +doccontainerchecksum 4b5b8aca9d9be8cc6618d9393278f8da2069341a982cf6cda9e561b64bc158e5c08cf9257b592f82134cd74ce0b69682e15339d9068d9fedcdb26626dc2b8a7b +docfiles size=43 + RELOC/doc/latex/tabularew/README details="Readme" + RELOC/doc/latex/tabularew/tabularew.pdf details="Package documentation" +srccontainersize 7140 +srccontainerchecksum 9779876bfc65936043b0b4918784888acc68a8e8aec3b5eab6eea5cba3fea10ff0f696d1c38f68b37227cc086ca519630a96b945b33e3c1b853ee8ad95ec08bb +srcfiles size=7 + RELOC/source/latex/tabularew/tabularew.dtx + RELOC/source/latex/tabularew/tabularew.ins +runfiles size=2 + RELOC/tex/latex/tabularew/tabularew.sty +catalogue-ctan /macros/latex/contrib/tabularew +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics table +catalogue-version 0.1 + +name tabulars-e +category Package +revision 21191 +shortdesc Examples from the book "Typesetting tables with LaTeX" +relocated 1 +longdesc The bundle presents the examples of the book "Typesetting +longdesc tables with LaTeX" (ISBN 978-1-906860-25-7), as standalone +longdesc documents. +containersize 448 +containerchecksum c755ffcbcb5636b641a5b31a7fa2b2d97ce2e3e0f14fd08c23e0b234abadfe584bdd6e2628fffb614c249ffd17e46d56790fedd929a5af55ec92869ec302e6a8 +doccontainersize 48228 +doccontainerchecksum 2a29bd4c343c172f37874423a754b03888838db7ba4237992ea38167b82fbf7169dbe3056b269d487e398208d165d4fe2bbcb5413c138cc6129fb926f9ee7701 +docfiles size=350 + RELOC/doc/latex/tabulars-e/01-01-1.ltxps + RELOC/doc/latex/tabulars-e/01-01-10.ltx + RELOC/doc/latex/tabulars-e/01-01-11.ltx + RELOC/doc/latex/tabulars-e/01-01-12.ltx + RELOC/doc/latex/tabulars-e/01-01-13.ltx + RELOC/doc/latex/tabulars-e/01-01-14.ltx + RELOC/doc/latex/tabulars-e/01-01-15.ltx + RELOC/doc/latex/tabulars-e/01-01-16.ltx + RELOC/doc/latex/tabulars-e/01-01-17.ltx + RELOC/doc/latex/tabulars-e/01-01-18.ltx + RELOC/doc/latex/tabulars-e/01-01-19.ltx + RELOC/doc/latex/tabulars-e/01-01-2.ltx + RELOC/doc/latex/tabulars-e/01-01-3.ltx + RELOC/doc/latex/tabulars-e/01-01-4.ltx + RELOC/doc/latex/tabulars-e/01-01-5.ltx + RELOC/doc/latex/tabulars-e/01-01-6.ltx + RELOC/doc/latex/tabulars-e/01-01-7.ltx + RELOC/doc/latex/tabulars-e/01-01-8.ltx + RELOC/doc/latex/tabulars-e/01-01-9.ltx + RELOC/doc/latex/tabulars-e/01-02-1.ltxps + RELOC/doc/latex/tabulars-e/01-02-10.ltx + RELOC/doc/latex/tabulars-e/01-02-2.ltx + RELOC/doc/latex/tabulars-e/01-02-3.ltx + RELOC/doc/latex/tabulars-e/01-02-4.ltx + RELOC/doc/latex/tabulars-e/01-02-5.ltx + RELOC/doc/latex/tabulars-e/01-02-6.ltx + RELOC/doc/latex/tabulars-e/01-02-7.ltx + RELOC/doc/latex/tabulars-e/01-02-8.ltx + RELOC/doc/latex/tabulars-e/01-02-9.ltx + RELOC/doc/latex/tabulars-e/02-01-1.ltx + RELOC/doc/latex/tabulars-e/02-01-10.ltx + RELOC/doc/latex/tabulars-e/02-01-11.ltx + RELOC/doc/latex/tabulars-e/02-01-12.ltx + RELOC/doc/latex/tabulars-e/02-01-13.ltx + RELOC/doc/latex/tabulars-e/02-01-14.ltx + RELOC/doc/latex/tabulars-e/02-01-15.ltx + RELOC/doc/latex/tabulars-e/02-01-16.ltx + RELOC/doc/latex/tabulars-e/02-01-17.ltx + RELOC/doc/latex/tabulars-e/02-01-18.ltx + RELOC/doc/latex/tabulars-e/02-01-2.ltx + RELOC/doc/latex/tabulars-e/02-01-3.ltx + RELOC/doc/latex/tabulars-e/02-01-4.ltx + RELOC/doc/latex/tabulars-e/02-01-5.ltx + RELOC/doc/latex/tabulars-e/02-01-6.ltx + RELOC/doc/latex/tabulars-e/02-01-7.ltx + RELOC/doc/latex/tabulars-e/02-01-8.ltx + RELOC/doc/latex/tabulars-e/02-01-9.ltx + RELOC/doc/latex/tabulars-e/02-02-1.ltx + RELOC/doc/latex/tabulars-e/02-02-2.ltx + RELOC/doc/latex/tabulars-e/02-02-3.ltx + RELOC/doc/latex/tabulars-e/02-02-4.ltx + RELOC/doc/latex/tabulars-e/02-02-5.ltx + RELOC/doc/latex/tabulars-e/02-02-6.ltx + RELOC/doc/latex/tabulars-e/02-03-1.ltx + RELOC/doc/latex/tabulars-e/02-03-10.ltx + RELOC/doc/latex/tabulars-e/02-03-11.ltx + RELOC/doc/latex/tabulars-e/02-03-12.ltx + RELOC/doc/latex/tabulars-e/02-03-13.ltx + RELOC/doc/latex/tabulars-e/02-03-14.ltx + RELOC/doc/latex/tabulars-e/02-03-15.ltx + RELOC/doc/latex/tabulars-e/02-03-2.ltx + RELOC/doc/latex/tabulars-e/02-03-3.ltx + RELOC/doc/latex/tabulars-e/02-03-4.ltx + RELOC/doc/latex/tabulars-e/02-03-5.ltx + RELOC/doc/latex/tabulars-e/02-03-6.ltx + RELOC/doc/latex/tabulars-e/02-03-7.ltx + RELOC/doc/latex/tabulars-e/02-03-8.ltx + RELOC/doc/latex/tabulars-e/02-03-9.ltx + RELOC/doc/latex/tabulars-e/02-04-1.ltx + RELOC/doc/latex/tabulars-e/02-04-10.ltx + RELOC/doc/latex/tabulars-e/02-04-11.ltx2crop + RELOC/doc/latex/tabulars-e/02-04-2.ltx + RELOC/doc/latex/tabulars-e/02-04-3.ltx + RELOC/doc/latex/tabulars-e/02-04-4.ltx + RELOC/doc/latex/tabulars-e/02-04-5.ltx + RELOC/doc/latex/tabulars-e/02-04-6.ltx + RELOC/doc/latex/tabulars-e/02-04-7.ltx + RELOC/doc/latex/tabulars-e/02-04-8.ltx + RELOC/doc/latex/tabulars-e/02-04-9.ltx + RELOC/doc/latex/tabulars-e/02-05-1.ltx + RELOC/doc/latex/tabulars-e/02-05-10.ltx + RELOC/doc/latex/tabulars-e/02-05-11.ltx + RELOC/doc/latex/tabulars-e/02-05-2.ltx + RELOC/doc/latex/tabulars-e/02-05-3.ltx + RELOC/doc/latex/tabulars-e/02-05-4.ltx + RELOC/doc/latex/tabulars-e/02-05-5.ltx + RELOC/doc/latex/tabulars-e/02-05-6.ltx + RELOC/doc/latex/tabulars-e/02-05-7.ltx + RELOC/doc/latex/tabulars-e/02-05-8.ltx + RELOC/doc/latex/tabulars-e/02-05-9.ltx + RELOC/doc/latex/tabulars-e/02-06-1.ltx + RELOC/doc/latex/tabulars-e/02-06-2.ltx + RELOC/doc/latex/tabulars-e/02-06-3.ltx + RELOC/doc/latex/tabulars-e/02-06-4.ltx + RELOC/doc/latex/tabulars-e/02-06-5.ltx + RELOC/doc/latex/tabulars-e/02-07-1.ltx + RELOC/doc/latex/tabulars-e/02-07-2.ltx + RELOC/doc/latex/tabulars-e/02-07-3.ltx + RELOC/doc/latex/tabulars-e/02-07-4.ltx2 + RELOC/doc/latex/tabulars-e/02-07-5.ltx + RELOC/doc/latex/tabulars-e/02-08-1.ltx + RELOC/doc/latex/tabulars-e/02-08-2.ltx + RELOC/doc/latex/tabulars-e/02-08-3.ltx + RELOC/doc/latex/tabulars-e/02-08-4.ltx + RELOC/doc/latex/tabulars-e/02-08-5.ltx + RELOC/doc/latex/tabulars-e/02-08-6.ltx + RELOC/doc/latex/tabulars-e/02-08-7.ltx + RELOC/doc/latex/tabulars-e/02-08-8.ltx + RELOC/doc/latex/tabulars-e/02-09-1.ltx + RELOC/doc/latex/tabulars-e/02-09-2.ltx + RELOC/doc/latex/tabulars-e/02-09-3.ltx + RELOC/doc/latex/tabulars-e/02-10-1.ltx + RELOC/doc/latex/tabulars-e/02-11-1.ltx + RELOC/doc/latex/tabulars-e/02-11-10.ltx + RELOC/doc/latex/tabulars-e/02-11-11.ltx + RELOC/doc/latex/tabulars-e/02-11-12.ltx + RELOC/doc/latex/tabulars-e/02-11-13.ltx + RELOC/doc/latex/tabulars-e/02-11-2.ltx + RELOC/doc/latex/tabulars-e/02-11-3.ltx + RELOC/doc/latex/tabulars-e/02-11-4.ltx + RELOC/doc/latex/tabulars-e/02-11-5.ltx + RELOC/doc/latex/tabulars-e/02-11-6.ltx + RELOC/doc/latex/tabulars-e/02-11-7.ltx + RELOC/doc/latex/tabulars-e/02-11-8.ltx + RELOC/doc/latex/tabulars-e/02-11-9.ltx + RELOC/doc/latex/tabulars-e/02-12-1.ltx + RELOC/doc/latex/tabulars-e/02-12-2.ltx + RELOC/doc/latex/tabulars-e/02-13-1.ltx + RELOC/doc/latex/tabulars-e/02-13-2.ltx + RELOC/doc/latex/tabulars-e/02-13-3.ltx + RELOC/doc/latex/tabulars-e/02-13-4.ltx + RELOC/doc/latex/tabulars-e/02-14-1.ltx + RELOC/doc/latex/tabulars-e/02-14-10.ltx + RELOC/doc/latex/tabulars-e/02-14-11.ltx + RELOC/doc/latex/tabulars-e/02-14-12.ltx + RELOC/doc/latex/tabulars-e/02-14-13.ltx + RELOC/doc/latex/tabulars-e/02-14-14.ltx + RELOC/doc/latex/tabulars-e/02-14-15.ltx + RELOC/doc/latex/tabulars-e/02-14-2.ltx + RELOC/doc/latex/tabulars-e/02-14-3.ltx + RELOC/doc/latex/tabulars-e/02-14-4.ltx + RELOC/doc/latex/tabulars-e/02-14-5.ltx + RELOC/doc/latex/tabulars-e/02-14-6.ltx + RELOC/doc/latex/tabulars-e/02-14-7.ltx + RELOC/doc/latex/tabulars-e/02-14-8.ltx + RELOC/doc/latex/tabulars-e/02-14-9.ltx + RELOC/doc/latex/tabulars-e/02-15-1.ltx + RELOC/doc/latex/tabulars-e/02-15-2.ltx + RELOC/doc/latex/tabulars-e/02-15-3.ltx + RELOC/doc/latex/tabulars-e/02-16-1.ltx + RELOC/doc/latex/tabulars-e/02-16-2.ltx + RELOC/doc/latex/tabulars-e/02-16-3.ltx + RELOC/doc/latex/tabulars-e/02-17-1.ltx + RELOC/doc/latex/tabulars-e/02-17-2.ltx + RELOC/doc/latex/tabulars-e/02-17-3.ltx + RELOC/doc/latex/tabulars-e/02-17-4.ltx + RELOC/doc/latex/tabulars-e/02-17-5.ltx + RELOC/doc/latex/tabulars-e/02-18-1.ltx + RELOC/doc/latex/tabulars-e/02-18-2.ltx + RELOC/doc/latex/tabulars-e/02-18-3.ltx + RELOC/doc/latex/tabulars-e/02-18-4.ltx + RELOC/doc/latex/tabulars-e/02-18-5.ltx + RELOC/doc/latex/tabulars-e/02-19-1.ltx + RELOC/doc/latex/tabulars-e/02-19-2.ltx + RELOC/doc/latex/tabulars-e/02-20-1.ltx + RELOC/doc/latex/tabulars-e/02-20-2.ltx + RELOC/doc/latex/tabulars-e/02-20-3.ltx + RELOC/doc/latex/tabulars-e/02-20-4.ltx + RELOC/doc/latex/tabulars-e/02-21-1.ltx2 + RELOC/doc/latex/tabulars-e/02-21-2.ltx2 + RELOC/doc/latex/tabulars-e/02-21-3.ltx + RELOC/doc/latex/tabulars-e/02-21-4.ltx + RELOC/doc/latex/tabulars-e/02-22-1.ltx + RELOC/doc/latex/tabulars-e/02-22-2.ltx + RELOC/doc/latex/tabulars-e/02-22-3.ltx + RELOC/doc/latex/tabulars-e/02-22-4.ltx + RELOC/doc/latex/tabulars-e/02-23-1.ltx + RELOC/doc/latex/tabulars-e/02-23-2.ltx + RELOC/doc/latex/tabulars-e/02-23-3.ltx + RELOC/doc/latex/tabulars-e/02-23-4.ltx + RELOC/doc/latex/tabulars-e/02-24-1.ltx + RELOC/doc/latex/tabulars-e/02-24-2.ltx + RELOC/doc/latex/tabulars-e/02-24-3.ltx + RELOC/doc/latex/tabulars-e/02-24-4.ltx + RELOC/doc/latex/tabulars-e/02-25-1.ltx + RELOC/doc/latex/tabulars-e/02-25-2.ltx + RELOC/doc/latex/tabulars-e/02-25-3.ltx + RELOC/doc/latex/tabulars-e/02-25-4.ltx + RELOC/doc/latex/tabulars-e/02-25-5.ltx + RELOC/doc/latex/tabulars-e/02-25-6.ltx + RELOC/doc/latex/tabulars-e/02-25-7.ltx + RELOC/doc/latex/tabulars-e/02-25-8.ltx + RELOC/doc/latex/tabulars-e/02-25-9.ltx + RELOC/doc/latex/tabulars-e/02-26-1.ltx + RELOC/doc/latex/tabulars-e/02-26-10.ltx + RELOC/doc/latex/tabulars-e/02-26-2.ltx + RELOC/doc/latex/tabulars-e/02-26-3.ltx + RELOC/doc/latex/tabulars-e/02-26-4.ltx + RELOC/doc/latex/tabulars-e/02-26-5.ltx + RELOC/doc/latex/tabulars-e/02-26-6.ltx + RELOC/doc/latex/tabulars-e/02-26-7.ltx + RELOC/doc/latex/tabulars-e/02-26-8.ltx + RELOC/doc/latex/tabulars-e/02-26-9.ltx + RELOC/doc/latex/tabulars-e/02-27-1.ltx + RELOC/doc/latex/tabulars-e/02-27-2.ltx + RELOC/doc/latex/tabulars-e/02-27-3.ltx + RELOC/doc/latex/tabulars-e/02-27-4.ltx + RELOC/doc/latex/tabulars-e/02-28-1.ltx + RELOC/doc/latex/tabulars-e/02-28-2.ltx + RELOC/doc/latex/tabulars-e/02-28-3.ltx + RELOC/doc/latex/tabulars-e/02-28-4.ltx + RELOC/doc/latex/tabulars-e/02-29-1.ltx + RELOC/doc/latex/tabulars-e/03-01-1.ltx + RELOC/doc/latex/tabulars-e/03-01-10.ltx + RELOC/doc/latex/tabulars-e/03-01-11.ltx + RELOC/doc/latex/tabulars-e/03-01-12.ltx + RELOC/doc/latex/tabulars-e/03-01-13.ltx + RELOC/doc/latex/tabulars-e/03-01-2.ltx + RELOC/doc/latex/tabulars-e/03-01-3.ltx + RELOC/doc/latex/tabulars-e/03-01-4.ltx + RELOC/doc/latex/tabulars-e/03-01-5.ltx + RELOC/doc/latex/tabulars-e/03-01-6.ltx + RELOC/doc/latex/tabulars-e/03-01-7.ltx + RELOC/doc/latex/tabulars-e/03-01-8.ltx + RELOC/doc/latex/tabulars-e/03-01-9.ltx + RELOC/doc/latex/tabulars-e/03-02-1.ltx + RELOC/doc/latex/tabulars-e/03-02-2.ltx + RELOC/doc/latex/tabulars-e/03-02-3.ltx + RELOC/doc/latex/tabulars-e/03-02-4.ltx + RELOC/doc/latex/tabulars-e/03-02-5.ltx + RELOC/doc/latex/tabulars-e/03-02-6.ltx + RELOC/doc/latex/tabulars-e/03-02-7.ltx + RELOC/doc/latex/tabulars-e/03-03-1.ltx + RELOC/doc/latex/tabulars-e/03-03-2.ltx + RELOC/doc/latex/tabulars-e/03-03-3.ltxb + RELOC/doc/latex/tabulars-e/03-03-4.ltx + RELOC/doc/latex/tabulars-e/03-03-5.ltx + RELOC/doc/latex/tabulars-e/03-03-6.ltx + RELOC/doc/latex/tabulars-e/04-01-1.ltx + RELOC/doc/latex/tabulars-e/04-01-10.ltx2 + RELOC/doc/latex/tabulars-e/04-01-11.ltx2 + RELOC/doc/latex/tabulars-e/04-01-12.ltx2 + RELOC/doc/latex/tabulars-e/04-01-13.ltx2 + RELOC/doc/latex/tabulars-e/04-01-14.ltx1 + RELOC/doc/latex/tabulars-e/04-01-15.ltx2 + RELOC/doc/latex/tabulars-e/04-01-2.ltx2 + RELOC/doc/latex/tabulars-e/04-01-3.ltx2 + RELOC/doc/latex/tabulars-e/04-01-4.ltx2 + RELOC/doc/latex/tabulars-e/04-01-5.ltx2 + RELOC/doc/latex/tabulars-e/04-01-6.ltx + RELOC/doc/latex/tabulars-e/04-01-7.ltx + RELOC/doc/latex/tabulars-e/04-01-8.ltx2 + RELOC/doc/latex/tabulars-e/04-01-9.ltx2 + RELOC/doc/latex/tabulars-e/04-02-1.ltx2 + RELOC/doc/latex/tabulars-e/04-02-2.ltx2 + RELOC/doc/latex/tabulars-e/04-03-1.ltx + RELOC/doc/latex/tabulars-e/04-03-2.ltx2 + RELOC/doc/latex/tabulars-e/04-03-3.ltx2 + RELOC/doc/latex/tabulars-e/04-04-1.ltx + RELOC/doc/latex/tabulars-e/04-04-2.ltx2 + RELOC/doc/latex/tabulars-e/04-04-3.ltx2 + RELOC/doc/latex/tabulars-e/04-04-4.ltx2 + RELOC/doc/latex/tabulars-e/04-04-5.ltx2 + RELOC/doc/latex/tabulars-e/04-05-1.ltx2 + RELOC/doc/latex/tabulars-e/04-05-2.ltx2 + RELOC/doc/latex/tabulars-e/04-05-3.ltx2 + RELOC/doc/latex/tabulars-e/04-05-4.ltx2 + RELOC/doc/latex/tabulars-e/04-05-5.ltx2 + RELOC/doc/latex/tabulars-e/04-05-6.ltx2 + RELOC/doc/latex/tabulars-e/04-05-7.ltx2 + RELOC/doc/latex/tabulars-e/04-05-8.ltx2 + RELOC/doc/latex/tabulars-e/04-06-1.ltx2 + RELOC/doc/latex/tabulars-e/04-06-2.ltx2 + RELOC/doc/latex/tabulars-e/04-06-3.ltx2 + RELOC/doc/latex/tabulars-e/04-06-4.ltx2 + RELOC/doc/latex/tabulars-e/04-06-5.ltx2 + RELOC/doc/latex/tabulars-e/04-06-6.ltx2 + RELOC/doc/latex/tabulars-e/04-06-7.ltx2 + RELOC/doc/latex/tabulars-e/04-06-8.ltx2 + RELOC/doc/latex/tabulars-e/04-06-9.ltx2 + RELOC/doc/latex/tabulars-e/05-01-1.ltx + RELOC/doc/latex/tabulars-e/05-01-2.ltx + RELOC/doc/latex/tabulars-e/05-01-3.ltx + RELOC/doc/latex/tabulars-e/05-01-4.ltx + RELOC/doc/latex/tabulars-e/05-01-5.ltx + RELOC/doc/latex/tabulars-e/05-02-1.ltx + RELOC/doc/latex/tabulars-e/05-03-1.ltx + RELOC/doc/latex/tabulars-e/05-03-2.ltx + RELOC/doc/latex/tabulars-e/05-03-3.ltx + RELOC/doc/latex/tabulars-e/05-04-1.ltx2 + RELOC/doc/latex/tabulars-e/05-04-2.ltx2 + RELOC/doc/latex/tabulars-e/05-05-1.ltx + RELOC/doc/latex/tabulars-e/05-05-2.ltx + RELOC/doc/latex/tabulars-e/05-06-1.ltxE + RELOC/doc/latex/tabulars-e/05-06-2.ltxE + RELOC/doc/latex/tabulars-e/05-06-3.ltxE + RELOC/doc/latex/tabulars-e/06-00-1.ltx + RELOC/doc/latex/tabulars-e/06-00-10.ltx + RELOC/doc/latex/tabulars-e/06-00-11.ltx + RELOC/doc/latex/tabulars-e/06-00-12.ltx + RELOC/doc/latex/tabulars-e/06-00-13.ltx + RELOC/doc/latex/tabulars-e/06-00-14.ltx + RELOC/doc/latex/tabulars-e/06-00-15.ltx + RELOC/doc/latex/tabulars-e/06-00-16.ltx + RELOC/doc/latex/tabulars-e/06-00-17.ltx + RELOC/doc/latex/tabulars-e/06-00-18.ltx + RELOC/doc/latex/tabulars-e/06-00-19.ltx + RELOC/doc/latex/tabulars-e/06-00-2.ltx + RELOC/doc/latex/tabulars-e/06-00-20.ltx + RELOC/doc/latex/tabulars-e/06-00-21.ltx + RELOC/doc/latex/tabulars-e/06-00-22.ltx + RELOC/doc/latex/tabulars-e/06-00-23.ltx + RELOC/doc/latex/tabulars-e/06-00-24.ltx + RELOC/doc/latex/tabulars-e/06-00-25.ltx + RELOC/doc/latex/tabulars-e/06-00-26.ltx2 + RELOC/doc/latex/tabulars-e/06-00-27.ltx + RELOC/doc/latex/tabulars-e/06-00-28.ltx + RELOC/doc/latex/tabulars-e/06-00-29.ltx + RELOC/doc/latex/tabulars-e/06-00-3.ltx + RELOC/doc/latex/tabulars-e/06-00-30.ltx + RELOC/doc/latex/tabulars-e/06-00-31.ltx + RELOC/doc/latex/tabulars-e/06-00-32.ltx2 + RELOC/doc/latex/tabulars-e/06-00-33.ltx + RELOC/doc/latex/tabulars-e/06-00-34.ltx + RELOC/doc/latex/tabulars-e/06-00-35.ltx + RELOC/doc/latex/tabulars-e/06-00-36.ltx2 + RELOC/doc/latex/tabulars-e/06-00-37.ltx2 + RELOC/doc/latex/tabulars-e/06-00-38.ltxps + RELOC/doc/latex/tabulars-e/06-00-39.ltx + RELOC/doc/latex/tabulars-e/06-00-4.ltxps + RELOC/doc/latex/tabulars-e/06-00-40.ltx + RELOC/doc/latex/tabulars-e/06-00-41.ltx + RELOC/doc/latex/tabulars-e/06-00-42.ltx + RELOC/doc/latex/tabulars-e/06-00-43.ltx2 + RELOC/doc/latex/tabulars-e/06-00-44.ltx + RELOC/doc/latex/tabulars-e/06-00-45.ltx + RELOC/doc/latex/tabulars-e/06-00-46.ltx + RELOC/doc/latex/tabulars-e/06-00-5.ltxps + RELOC/doc/latex/tabulars-e/06-00-6.ltxps + RELOC/doc/latex/tabulars-e/06-00-7.ltxps + RELOC/doc/latex/tabulars-e/06-00-8.ltx + RELOC/doc/latex/tabulars-e/06-00-9.ltx + RELOC/doc/latex/tabulars-e/07-02-1.ltx2 + RELOC/doc/latex/tabulars-e/07-02-2.ltx2 + RELOC/doc/latex/tabulars-e/07-03-1.ltx2 + RELOC/doc/latex/tabulars-e/07-03-2.ltx2 + RELOC/doc/latex/tabulars-e/README details="Readme" + RELOC/doc/latex/tabulars-e/din8.eps +catalogue-ctan /info/examples/tabulars-e +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics book-ex +catalogue-version 1.0 + +name tabulary +category Package +revision 34368 +shortdesc Tabular with variable width columns balanced +relocated 1 +longdesc The package defines a tabular*-like environment, tabulary, +longdesc taking a 'total width' argument as well as the column +longdesc specifications. The environment uses column types L, C, R and J +longdesc for variable width columns (\raggedright', \centering, +longdesc \raggedleft, and normally justified). In contrast to tabularx's +longdesc X columns, the width of each column is weighted according to +longdesc the natural width of the widest cell in the column. +containersize 4032 +containerchecksum 2c873a3840d8bf06a095ff3106b317ae6acfb8498d47b0229a37e247e0e0a9df80300759d65d13ebc9defb15d1cde0aa1e956d2f88bebab3311af459be47df0a +doccontainersize 255704 +doccontainerchecksum b619c6b3dce1421ad4f06ab5e6f0ecaa6dc4f55076b66303a4e5409b42a4a9e34d218251177234dc0f3dac13046638a75623db0094978badc4db93083660f5e9 +docfiles size=64 + RELOC/doc/latex/tabulary/README + RELOC/doc/latex/tabulary/tabulary.pdf details="Package documentation" +srccontainersize 8372 +srccontainerchecksum aa075526ddc2f793676ff45e9d37f02251660cec33b3f4a74da23e725181e48b2103fef16adcd6d622ea2c422a5fda1d46cd9fa1c35bbd72f06f77d05f3b4c58 +srcfiles size=9 + RELOC/source/latex/tabulary/tabulary.dtx + RELOC/source/latex/tabulary/tabulary.ins +runfiles size=4 + RELOC/tex/latex/tabulary/tabulary.sty +catalogue-ctan /macros/latex/contrib/tabulary +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl +catalogue-topics table +catalogue-version 0.10 + +name tabvar +category Package +revision 28908 +shortdesc Typesetting tables showing variations of functions +relocated 1 +longdesc This LaTeX package is meant to ease the typesetting of tables +longdesc showing variations of functions as they are used in France. +execute addMap tabvar.map +containersize 8888 +containerchecksum c03d57d066a5955ffe24900f97de82f9bd96d8ebc20ff7b9c11c1e5a858d8f4a50b171f687e041d629a7dbf43da708bd03aa0405419c9879b9a5bddf23021cb7 +doccontainersize 590652 +doccontainerchecksum 700e42e3e8d37e1b4e11af90f8f76bc2c3234984aa39b229138b5bd86418797bb8102b4624a43d3ca1738a7f848f1e09164c077d7224819250c7e034c10b4103 +docfiles size=151 + RELOC/doc/latex/tabvar/README details="Readme" + RELOC/doc/latex/tabvar/demo.pdf details="Package demo" + RELOC/doc/latex/tabvar/demo.tex + RELOC/doc/latex/tabvar/tabvar.pdf details="Package documentation (French)" language="fr" +srccontainersize 11240 +srccontainerchecksum 2f20de4b18e444112088d089c92675f3f5ed4f93c1e630b708e3e88a777aa38e2c84d98ec0605a7e446cfc7a99c346190b559e72f4735c7d776151e76a38a987 +srcfiles size=10 + RELOC/source/latex/tabvar/tabvar.dtx + RELOC/source/latex/tabvar/tabvar.ins +runfiles size=13 + RELOC/fonts/afm/public/tabvar/tabvar.afm + RELOC/fonts/map/dvips/tabvar/tabvar.map + RELOC/fonts/tfm/public/tabvar/tabvar.tfm + RELOC/fonts/type1/public/tabvar/tabvar.pfb + RELOC/metapost/tabvar/tabvar.mp + RELOC/tex/latex/tabvar/tabvar.1 + RELOC/tex/latex/tabvar/tabvar.2 + RELOC/tex/latex/tabvar/tabvar.3 + RELOC/tex/latex/tabvar/tabvar.cfg + RELOC/tex/latex/tabvar/tabvar.sty +catalogue-also tablor tableaux tableauvariations tkz-tab +catalogue-ctan /macros/latex/contrib/tabvar +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics maths-tabvar +catalogue-version 1.7 + +name tagging +category Package +revision 23761 +shortdesc Document configuration with tags +relocated 1 +longdesc The package allows the user to generate multiple documents from +longdesc a single source, by marking pieces of the document with tags +longdesc and specifying which marked pieces to include or exclude. +containersize 1160 +containerchecksum 644013fc6d4bc442f9305226c8f9e23a6047dfec35e49f70cb6ff975a620a020cd2a70be2d0489f9fe73e3916b0cd6d57cc33ecb2fdf4b5c242764cfcc33d5cf +doccontainersize 86140 +doccontainerchecksum 97dd07aee5d85453cccbab22e2444f60663f7f50fec5cabd6ae194ff2f1b6e76d297ec48ee9f313cba1268c1dc9909079c35c2961b6663e87244032649c91687 +docfiles size=26 + RELOC/doc/latex/tagging/README details="Readme" + RELOC/doc/latex/tagging/tagging.pdf details="Package documentation" + RELOC/doc/latex/tagging/tagging.tex +runfiles size=1 + RELOC/tex/latex/tagging/tagging.sty +catalogue-ctan /macros/latex/contrib/tagging +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics cond-comp + +name tagpair +category Package +revision 42138 +shortdesc Word-by-word glosses, translations, and bibliographic attributions +relocated 1 +longdesc This package provides environments and commands for pairing +longdesc lines, bottom lines, and tagged lines, intended to be used in +longdesc particular for word-by-word glosses, translations, and +longdesc bibliographic attributions, respectively. This LaTeX package is +longdesc inspired by Marcel R. van der Goot's classic Plain TeX macros +longdesc in gloss.tex. +containersize 1244 +containerchecksum 146c2e957965fb7ad9976a4b3b6c40d28b8d0cdaf0c8b9627f51dd55ba88b32ad7490bf000bb853a416b5dcc091243b9d6e92999431327a05879adcf89809d7f +doccontainersize 68912 +doccontainerchecksum af9dcc1c1dd0a5e44d3f436569cf5d36f8154b70219340dd914feb3d8c036164f1bd70eeb6819bb51a06c0f5c5dcab1b3ede8be4b4d22b2536529474d0d841ab +docfiles size=26 + RELOC/doc/latex/tagpair/COPYING + RELOC/doc/latex/tagpair/ChangeLog + RELOC/doc/latex/tagpair/README details="Readme" + RELOC/doc/latex/tagpair/sample.pdf details="Sample of use" + RELOC/doc/latex/tagpair/sample.tex + RELOC/doc/latex/tagpair/tagpair.pdf details="Package documentation" + RELOC/doc/latex/tagpair/tagpair.tex +runfiles size=1 + RELOC/tex/latex/tagpair/tagpair.sty +catalogue-ctan /macros/latex/contrib/tagpair +catalogue-date 2016-09-23 21:04:55 +0200 +catalogue-license lppl1.3 +catalogue-topics text-layout +catalogue-version 1.1 + +name tagpdf +category Package +revision 50509 +shortdesc Tools for experimenting with tagging using pdfLaTeX and LuaLaTeX +relocated 1 +longdesc The package offers tools to experiment with tagging and +longdesc accessibility using pdfLaTeX and LuaTeX. It isn't meant for +longdesc production but allows the user to try out how difficult it is +longdesc to tag some structures; to try out how much tagging is really +longdesc needed; to test what else is needed so that a pdf works e.g. +longdesc with a screen reader. Its goal is to get a feeling for what has +longdesc to be done, which kernel changes are needed, how packages +longdesc should be adapted. +containersize 22760 +containerchecksum 1795410780a4823dca17bca679e477a15fa4cc5413de25561440a5862ff684d1f77f3145751c5f7b235eecb78938c5ea1aabf0ba7bfe53cacb981ee50d87c162 +doccontainersize 536764 +doccontainerchecksum 63a78f1c157a93010636662ba8a5a3f78fabc52468be50c77a5c3c6d245b4e43210f21aaa7594c5d1efad8662be708b02d98fe6732d30cc72ff85b46b22ffd25 +docfiles size=818 + RELOC/doc/latex/tagpdf/README.md details="Readme" + RELOC/doc/latex/tagpdf/ex-alt-actualtext-luatex.pdf + RELOC/doc/latex/tagpdf/ex-alt-actualtext.pdf + RELOC/doc/latex/tagpdf/ex-alt-actualtext.tex + RELOC/doc/latex/tagpdf/ex-attribute.pdf + RELOC/doc/latex/tagpdf/ex-attribute.tex + RELOC/doc/latex/tagpdf/ex-formula-problem-luatex.pdf + RELOC/doc/latex/tagpdf/ex-formula-problem.tex + RELOC/doc/latex/tagpdf/ex-mc-manual-para-split.pdf + RELOC/doc/latex/tagpdf/ex-mc-manual-para-split.tex + RELOC/doc/latex/tagpdf/ex-patch-list-luatex.pdf + RELOC/doc/latex/tagpdf/ex-patch-list.pdf + RELOC/doc/latex/tagpdf/ex-patch-list.tex + RELOC/doc/latex/tagpdf/ex-patch-sectioning-koma-luatex.pdf + RELOC/doc/latex/tagpdf/ex-patch-sectioning-koma.pdf + RELOC/doc/latex/tagpdf/ex-patch-sectioning-koma.tex + RELOC/doc/latex/tagpdf/ex-patch-sectioning-memoir.pdf + RELOC/doc/latex/tagpdf/ex-patch-sectioning-memoir.tex + RELOC/doc/latex/tagpdf/ex-softhyphen.pdf + RELOC/doc/latex/tagpdf/ex-softhyphen.tex + RELOC/doc/latex/tagpdf/ex-spaceglyph-listings.pdf + RELOC/doc/latex/tagpdf/ex-spaceglyph-listings.tex + RELOC/doc/latex/tagpdf/ex-structure.pdf + RELOC/doc/latex/tagpdf/ex-structure.tex + RELOC/doc/latex/tagpdf/ex-tagpdf-template.pdf + RELOC/doc/latex/tagpdf/ex-tagpdf-template.tex + RELOC/doc/latex/tagpdf/link-figure-input.tex + RELOC/doc/latex/tagpdf/pac3.PNG + RELOC/doc/latex/tagpdf/tagpdf.bib + RELOC/doc/latex/tagpdf/tagpdf.pdf details="Package documentation" + RELOC/doc/latex/tagpdf/tagpdf.tex +runfiles size=31 + RELOC/tex/latex/tagpdf/tagpdf-attr-code.sty + RELOC/tex/latex/tagpdf/tagpdf-checks-code.sty + RELOC/tex/latex/tagpdf/tagpdf-luatex.def + RELOC/tex/latex/tagpdf/tagpdf-mc-code-generic.sty + RELOC/tex/latex/tagpdf/tagpdf-mc-code-lua.sty + RELOC/tex/latex/tagpdf/tagpdf-mc-code-shared.sty + RELOC/tex/latex/tagpdf/tagpdf-pdftex.def + RELOC/tex/latex/tagpdf/tagpdf-roles-code.sty + RELOC/tex/latex/tagpdf/tagpdf-space-code.sty + RELOC/tex/latex/tagpdf/tagpdf-struct-code.sty + RELOC/tex/latex/tagpdf/tagpdf-tree-code.sty + RELOC/tex/latex/tagpdf/tagpdf-user.sty + RELOC/tex/latex/tagpdf/tagpdf.lua + RELOC/tex/latex/tagpdf/tagpdf.sty + RELOC/tex/latex/tagpdf/tagpdfdocu-patches.sty +catalogue-contact-bugs https://github.com/u-fischer/tagpdf/issues +catalogue-contact-repository https://github.com/u-fischer/tagpdf +catalogue-contact-support https://github.com/u-fischer/tagpdf/issues +catalogue-ctan /macros/latex/contrib/tagpdf +catalogue-date 2019-03-21 08:11:50 +0100 +catalogue-license lppl1.3c +catalogue-topics tagged-pdf accessible +catalogue-version 0.60 + +name talk +category Package +revision 42428 +shortdesc A LaTeX class for presentations +relocated 1 +longdesc The talk document class allows you to create slides for screen +longdesc presentations or printing on transparencies. It also allows you +longdesc to print personal notes for your talk. You can create overlays +longdesc and display structure information (current section / +longdesc subsection, table of contents) on your slides. The main feature +longdesc that distinguishes talk from other presentation classes like +longdesc beamer or prosper is that it allows the user to define an +longdesc arbitrary number of slide styles and switch between these +longdesc styles from slide to slide. This way the slide layout can be +longdesc adapted to the slide content. For example, the title or +longdesc contents page of a talk can be given a slightly different +longdesc layout than the other slides. The talk class makes no +longdesc restrictions on the slide design whatsoever. The entire look +longdesc and feel of the presentation can be defined by the user. The +longdesc style definitions should be put in a separate sty file. +longdesc Currently the package comes with only one set of pre-defined +longdesc slide styles (greybars.sty). Contributions from people who are +longdesc artistically more gifted than the author are more than welcome! +containersize 4676 +containerchecksum 371c640254994616744b2bd0c9b4040415392bb2a3adfbe5f4656faaea5bf3e7d2d4ab35373a65a857fd57112f7fc628321492d5bf7c5b052e0026c277663d7d +doccontainersize 131060 +doccontainerchecksum d6a641789923559a94b0077d718e56258804caa1dec0c9ea0f9d010e92ffc361884664ac22b07b95d20f464d18ac76301a718430d8f1ee30172489cae3b844ae +docfiles size=45 + RELOC/doc/latex/talk/README details="Readme" + RELOC/doc/latex/talk/example.tex + RELOC/doc/latex/talk/talkdoc.pdf details="Package documentation" + RELOC/doc/latex/talk/talkdoc.tex +srccontainersize 556 +srccontainerchecksum 10661b5ee41914bdc60b5ab38c887087d6529b976a3acdbf95bf80160c6e432fe6f8a4d6030711f5672f8aea564fd23ada09f92b0e3a2a05ede903026d24bb36 +srcfiles size=1 + RELOC/source/latex/talk/Makefile +runfiles size=5 + RELOC/tex/latex/talk/sidebars.sty + RELOC/tex/latex/talk/talk.cls +catalogue-also seminar foiltex +catalogue-ctan /macros/latex/contrib/talk +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics presentation +catalogue-version 1.1 + +name tamefloats +category Package +revision 27345 +shortdesc Experimentally use \holdinginserts with LaTeX floats +relocated 1 +longdesc LaTeX's figures, tables, and \marginpars are dangerous for +longdesc footnotes (and probably also \enlargethispage). Here is a +longdesc proposal (a 'patch' package) to help, by using \holdinginserts +longdesc in a simple way. It replaces the original problem with a new +longdesc one -- it is an experiment to find out whether the new problem +longdesc is less bad (or it is just a contribution to the discussion, +longdesc maybe just a summary of previous work). The files provide +longdesc further information. +containersize 4372 +containerchecksum bd45962a9caa5b098b6a6a5c0bd3fb964e13cf2744a5fc960a97910183799d532aba24d5f4774ac29eef14bf1439e285010b2e22641167c826d5a36262fc39ef +doccontainersize 2236 +doccontainerchecksum 2b9d013fcb93682e9be0fb1758fc871b4784eef72a0892383a35073aa177ac29acfda5e54b6a919379b43a3dd0fb0b22dd44476857665efb59b2e9cf27bb679a +docfiles size=4 + RELOC/doc/latex/tamefloats/README.txt details="Readme" + RELOC/doc/latex/tamefloats/deml3541.tex + RELOC/doc/latex/tamefloats/fltfltdk.tex + RELOC/doc/latex/tamefloats/newbug.tex +runfiles size=3 + RELOC/tex/latex/tamefloats/tameflts.sty +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html +catalogue-ctan /macros/latex/contrib/tamefloats +catalogue-date 2017-05-06 09:30:28 +0200 +catalogue-license lppl1.3 +catalogue-topics experimental float +catalogue-version 0.42 + +name tamethebeast +category Package +revision 15878 +shortdesc A manual about bibliographies and especially BibTeX +relocated 1 +longdesc An (as-complete-as-possible) manual about bibliographies in +longdesc LaTeX, and thus mainly about BibTeX. +containersize 436 +containerchecksum 75a71590f1d905bd2a78b508d66936975eeacbfa32e850f599e94efa92da2b043edb8b0899b7027268fa131d94283c13432d4c4126afb79d1615bd538af52436 +doccontainersize 811124 +doccontainerchecksum 0df79f434714deefd60b9b9d32dfbd47ac7e560c26ec0d02465538eefbc779f0252aef235ae2e0a2d2d634d618bb52c73b31c229b5245866239776c742ebe69a +docfiles size=264 + RELOC/doc/bibtex/tamethebeast/CHANGES + RELOC/doc/bibtex/tamethebeast/Makefile + RELOC/doc/bibtex/tamethebeast/README details="Readme" + RELOC/doc/bibtex/tamethebeast/idxstyle.ist + RELOC/doc/bibtex/tamethebeast/local.bib + RELOC/doc/bibtex/tamethebeast/ttb_en.pdf details="Package documentation" + RELOC/doc/bibtex/tamethebeast/ttb_en.sec1.tex + RELOC/doc/bibtex/tamethebeast/ttb_en.sec2.tex + RELOC/doc/bibtex/tamethebeast/ttb_en.sec3.tex + RELOC/doc/bibtex/tamethebeast/ttb_en.sec4.tex + RELOC/doc/bibtex/tamethebeast/ttb_en.sec5.tex + RELOC/doc/bibtex/tamethebeast/ttb_en.tex + RELOC/doc/bibtex/tamethebeast/ttb_style.sty +catalogue-ctan /info/bibtex/tamethebeast +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics bibtex-doc +catalogue-version 1.4 + +name tap +category Package +revision 31731 +shortdesc TeX macros for typesetting complex tables +relocated 1 +longdesc The package offers a simple notation for pretty complex tables +longdesc (to Michael J. Ferguson's credit). With PostScript, the package +longdesc allows shaded/coloured tables, diagonal rules, etc. The package +longdesc is supposed to work with both Plain and LaTeX. An AWK converter +longdesc from ASCII semigraphic tables to TAP notation is included. +containersize 10672 +containerchecksum 07ca34ae47976c65deba5443052001406390befb6dc675af7651141505f088e2f67f39648f14a94f70788eda79221efb05c2246d1991811e697e88c7408f6cf6 +doccontainersize 27740 +doccontainerchecksum a61b861cdac25c0d8c7d48f67abb9eed88458d0d55e8afb706adabfbed0d1e7c7159fcf000b8012885f82f849ee965bf6a2607f1b67f2d9191f59f8538147230 +docfiles size=46 + RELOC/doc/generic/tap/0README.TAP details="Readme" + RELOC/doc/generic/tap/0tapdoc.inf + RELOC/doc/generic/tap/circ.eps + RELOC/doc/generic/tap/circmag.eps + RELOC/doc/generic/tap/epsfx.tex + RELOC/doc/generic/tap/tapanch.100 + RELOC/doc/generic/tap/tapanch.mp + RELOC/doc/generic/tap/tapcv/sampdos/0sampdos.inf + RELOC/doc/generic/tap/tapcv/sampdos/post1.tex + RELOC/doc/generic/tap/tapcv/sampdos/post2.tex + RELOC/doc/generic/tap/tapcv/sampdos/prea1.tex + RELOC/doc/generic/tap/tapcv/sampdos/prea2.tex + RELOC/doc/generic/tap/tapcv/sampdos/prea3.tex + RELOC/doc/generic/tap/tapcv/sampdos/tapcv0.raw + RELOC/doc/generic/tap/tapcv/sampdos/tapcv1.raw + RELOC/doc/generic/tap/tapcv/sampdos/tapcv2.raw + RELOC/doc/generic/tap/tapcv/sampdos/tapcv3.raw + RELOC/doc/generic/tap/tapcv/sampdos/tapcv4.raw + RELOC/doc/generic/tap/tapcv/sampdos/tapcv5.raw + RELOC/doc/generic/tap/tapcv/sampdos/tapcv6.raw + RELOC/doc/generic/tap/tapcv/sampdos/tcv.bat + RELOC/doc/generic/tap/tapcv/sampdos/tcv_.bat + RELOC/doc/generic/tap/tapcv/tapcv.awk + RELOC/doc/generic/tap/tapdoc.tex + RELOC/doc/generic/tap/tapxamp1.tex + RELOC/doc/generic/tap/tapxamp2.tex +runfiles size=9 + RELOC/tex/generic/tap/tap.tex +catalogue-ctan /macros/generic/tables/tap077.zip +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics table +catalogue-version 0.77 -name tex4ht.i386-linux +name tapir category Package -revision 36790 -shortdesc i386-linux files of tex4ht -binfiles arch=i386-linux size=87 - bin/i386-linux/ht - bin/i386-linux/htcontext - bin/i386-linux/htlatex - bin/i386-linux/htmex - bin/i386-linux/httex - bin/i386-linux/httexi - bin/i386-linux/htxelatex - bin/i386-linux/htxetex - bin/i386-linux/mk4ht - bin/i386-linux/t4ht - bin/i386-linux/tex4ht +revision 20484 +shortdesc A simple geometrical font +relocated 1 +longdesc Tapir is a simple geometrical font mostly created of line and +longdesc circular segments with constant thickness. The font is +longdesc available as Metafont source and in Adobe Type 1 format. The +longdesc character set contains all characters in the range 0-127 (as in +longdesc cmr10), accented characters used in the Czech, Slovak and +longdesc Polish languages. +containersize 51876 +containerchecksum f3d93c9ad813008fa72cbe317d244bca9a70855c20f327d22d1720b79d70019af0f5d8aef237fc78a598a545f44a4612f1e5a7622b34247044ab230bd42eed5d +doccontainersize 53796 +doccontainerchecksum a32573ba9df3d0b30e796f7bdd03e63ba8a96559380895b8db2d33fd9812c8b781b75d19a12a24405c52df13acd9a5f2e925da64b019e92a124d143345bb5bb9 +docfiles size=16 + RELOC/doc/fonts/tapir/readme details="Readme" + RELOC/doc/fonts/tapir/readme.pdf details="Package documentation" +runfiles size=49 + RELOC/fonts/source/public/tapir/tap-enc.mf + RELOC/fonts/source/public/tapir/tap.mf + RELOC/fonts/type1/public/tapir/tap.pfb +catalogue-contact-home http://mitek.webpark.cz/ +catalogue-ctan /fonts/tapir +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license gpl +catalogue-topics font-mf font-type1 font czech polish slovak +catalogue-version 0.2 -name texapi +name tasks category Package -revision 24237 -shortdesc Macros to write format-independent packages. +revision 41851 +shortdesc Horizontally columned lists relocated 1 -longdesc Texapi provides utility macros to write format-independent (and -longdesc -aware) packages. It is similar in spirit to the etoolbox, -longdesc except that it isn't tied to LaTeX. Tools include: engine and -longdesc format detection, expansion control, command definition and -longdesc manipulation, various testing macros, string operations, and -longdesc highly customizable while and for loops. The package requires e- -longdesc TeX (and, should you want to compile its documentation, the -longdesc pitex package is also needed). +longdesc The reason for the creation of the tasks environment was an +longdesc unwritten agreement in German maths textbooks (exspecially +longdesc (junior) high school textbooks) to organize exercises in +longdesc columns counting horizontally rather than vertically. This is +longdesc what the tasks package helps to achieve. +containersize 6556 +containerchecksum 90d3d9cb4a7361c0a6b0be4538532c88717fa5d10f6b69637717893ffb0f21dfe4ac5649ffb8fb84d24aac282115ee975a17cd5a6cff576fb570416de52c5130 +doccontainersize 464820 +doccontainerchecksum 5273910145ceea940fafb1f9237be7047747e56c636bb4e2242fb62fa71bf467c99a5e9dc5894e53cb01a2ad571bb55c6fb46ab6909809dce168e0ce067b6696 +docfiles size=119 + RELOC/doc/latex/tasks/README details="Readme" + RELOC/doc/latex/tasks/tasks_en.pdf details="Package documentation" + RELOC/doc/latex/tasks/tasks_en.tex runfiles size=8 - RELOC/tex/generic/texapi/texapi.tex -docfiles size=48 - RELOC/doc/generic/texapi/README - RELOC/doc/generic/texapi/texapi-doc.pdf - RELOC/doc/generic/texapi/texapi-doc.tex -catalogue-ctan /macros/generic/texapi -catalogue-date 2014-02-26 23:03:13 +0100 + RELOC/tex/latex/tasks/tasks.cfg + RELOC/tex/latex/tasks/tasks.sty +catalogue-contact-repository https://github.com/cgnieder/tasks/ +catalogue-ctan /macros/latex/contrib/tasks +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics list list-enum expl3 +catalogue-version 0.12 + +name tcldoc +category Package +revision 22018 +catalogue tclldoc +shortdesc Doc/docstrip for tcl +relocated 1 +longdesc The tclldoc package and class simplify the application of the +longdesc doc/docstrip style of literate programming with Dr. John +longdesc Ousterhout's Tool Command Language (Tcl, pronounced "tickle", +longdesc a.k.a. The Cool Language). The tclldoc package is a bit like +longdesc the doc package is for LaTeX, whereas the tclldoc class more +longdesc parallels the ltxdoc class. +containersize 7004 +containerchecksum 82348df3f6dcedc17a3cd50f709d01b1f2b0e4be9345e63d40ee6ad2aff908f97c7d19d586431e3fe8399a8d076505ceaadb5afe0116093240a6e59a335934c9 +doccontainersize 462992 +doccontainerchecksum 61f24f628c2b62c02e08e1a2a3a2fd917d057baaf977e7837b1f62e4331e370b83f8a0b00e679c86ddb1893d21af13211185502ed7bb19699d4f33356d3a3a0d +docfiles size=178 + RELOC/doc/latex/tcldoc/README.txt details="Readme" + RELOC/doc/latex/tcldoc/examples/README.txt details="Readme" + RELOC/doc/latex/tcldoc/examples/parsetcl.dtx + RELOC/doc/latex/tcldoc/examples/parsetcl.ins + RELOC/doc/latex/tcldoc/examples/pdf.dtx + RELOC/doc/latex/tcldoc/examples/pdf.ins + RELOC/doc/latex/tcldoc/tclldoc.pdf details="Package documentation" + RELOC/doc/latex/tcldoc/tools/README.txt details="Readme" + RELOC/doc/latex/tcldoc/tools/eemenu.dtx + RELOC/doc/latex/tcldoc/tools/eemenu.ins + RELOC/doc/latex/tcldoc/tools/sourcedtx.dtx + RELOC/doc/latex/tcldoc/tools/sourcedtx.ins +srccontainersize 41140 +srccontainerchecksum 44a8d3661061ab7dd828fe1cfa8342384e2cd20f5338d54fb0a79516a2cf686a3a6d2a1648d18a4d0c1395a60fe8f8a7b5af0d0c2edc38385852117f408f9e26 +srcfiles size=41 + RELOC/source/latex/tcldoc/tclldoc.dtx + RELOC/source/latex/tcldoc/tclldoc.ins +runfiles size=9 + RELOC/tex/latex/tcldoc/tcldoc.cls + RELOC/tex/latex/tcldoc/tcldoc.sty + RELOC/tex/latex/tcldoc/tclldoc.cls + RELOC/tex/latex/tcldoc/tclldoc.sty +catalogue-ctan /macros/latex/contrib/tclldoc +catalogue-date 2016-07-19 10:38:58 +0200 catalogue-license lppl -catalogue-version 1.04 +catalogue-topics listing doc-supp class +catalogue-version 2.40 -name texbytopic +name tcolorbox +category Package +revision 50206 +shortdesc Coloured boxes, for LaTeX examples and theorems, etc +relocated 1 +longdesc This package provides an environment for coloured and framed +longdesc text boxes with a heading line. Optionally, such a box may be +longdesc split in an upper and a lower part; thus the package may be +longdesc used for the setting of LaTeX examples where one part of the +longdesc box displays the source code and the other part shows the +longdesc output. Another common use case is the setting of theorems. The +longdesc package supports saving and reuse of source code and text +longdesc parts. The package depends on the pgf, verbatim, environ, and +longdesc etoolbox packages. +containersize 228600 +containerchecksum cb3ac4195d28c2a6b52c0cd31a09e215ecf76b5150295987945a38a405a8187c025a6376e9167d689e1cfe2af6a5c483ae85800b01d7612f6922bd169d090f6d +doccontainersize 5591892 +doccontainerchecksum cb419f2a369d60edefa1cd5655933fae371dc82650bc3cc70b47a441c01c34c0b93871b5192fe220c8cfcc92f23929c94e9a1aa7b604304bfd7e9b0ff260f297 +docfiles size=2500 + RELOC/doc/latex/tcolorbox/Basilica_5.png + RELOC/doc/latex/tcolorbox/CHANGES + RELOC/doc/latex/tcolorbox/README details="Readme" + RELOC/doc/latex/tcolorbox/lichtspiel.jpg + RELOC/doc/latex/tcolorbox/tcolorbox-example-poster.pdf + RELOC/doc/latex/tcolorbox/tcolorbox-example-poster.tex + RELOC/doc/latex/tcolorbox/tcolorbox-example.pdf details="Examples of use" + RELOC/doc/latex/tcolorbox/tcolorbox-example.tex + RELOC/doc/latex/tcolorbox/tcolorbox-tutorial-poster.pdf details="Tutorial: Poster creation with tcolorbox" + RELOC/doc/latex/tcolorbox/tcolorbox-tutorial-poster.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.abstract.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.beamer.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.bib + RELOC/doc/latex/tcolorbox/tcolorbox.doc.breakable.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.coremacros.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.coreoptions.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.documentation.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.external.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.filling.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.fitting.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.graphics.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.hooks.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.index.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.initoptions.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.intro.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.listings.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.magazine.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.picturecredits.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.poster.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.quickref.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.raster.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.recording.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.references.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.s_main.sty + RELOC/doc/latex/tcolorbox/tcolorbox.doc.s_snippet.sty + RELOC/doc/latex/tcolorbox/tcolorbox.doc.sidebyside.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.skins.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.technical.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.theorems.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.verbatim.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.vignette.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.xparse.tex + RELOC/doc/latex/tcolorbox/tcolorbox.pdf details="Package documentation" + RELOC/doc/latex/tcolorbox/tcolorbox.tex +runfiles size=140 + RELOC/tex/latex/tcolorbox/blueshade.png + RELOC/tex/latex/tcolorbox/crinklepaper.png + RELOC/tex/latex/tcolorbox/goldshade.png + RELOC/tex/latex/tcolorbox/pink_marble.png + RELOC/tex/latex/tcolorbox/tcbbreakable.code.tex + RELOC/tex/latex/tcolorbox/tcbdocumentation.code.tex + RELOC/tex/latex/tcolorbox/tcbexternal.code.tex + RELOC/tex/latex/tcolorbox/tcbfitting.code.tex + RELOC/tex/latex/tcolorbox/tcbhooks.code.tex + RELOC/tex/latex/tcolorbox/tcblistings.code.tex + RELOC/tex/latex/tcolorbox/tcblistingscore.code.tex + RELOC/tex/latex/tcolorbox/tcblistingsutf8.code.tex + RELOC/tex/latex/tcolorbox/tcbmagazine.code.tex + RELOC/tex/latex/tcolorbox/tcbminted.code.tex + RELOC/tex/latex/tcolorbox/tcbposter.code.tex + RELOC/tex/latex/tcolorbox/tcbprocessing.code.tex + RELOC/tex/latex/tcolorbox/tcbraster.code.tex + RELOC/tex/latex/tcolorbox/tcbskins.code.tex + RELOC/tex/latex/tcolorbox/tcbskinsjigsaw.code.tex + RELOC/tex/latex/tcolorbox/tcbtheorems.code.tex + RELOC/tex/latex/tcolorbox/tcbvignette.code.tex + RELOC/tex/latex/tcolorbox/tcbxparse.code.tex + RELOC/tex/latex/tcolorbox/tcolorbox.sty +catalogue-contact-bugs https://github.com/T-F-S/tcolorbox/issues +catalogue-ctan /macros/latex/contrib/tcolorbox +catalogue-date 2019-03-02 12:23:55 +0100 +catalogue-license lppl1.3 +catalogue-topics boxing colour verbatim listing +catalogue-version 4.20 + +name tdclock +category Package +revision 33043 +shortdesc A ticking digital clock package for PDF output +relocated 1 +longdesc A ticking digital clock package to be used in Pdf-LaTeX +longdesc documents, for example in presentations. +containersize 3944 +containerchecksum 29e2e50d9fa432b08ea730b8a12228cd2bd3eefe61946e576a262bab06a966c0b28c13d48b1074a838a1a567f9797a943282d17e936db146f15e7631261761fe +doccontainersize 244100 +doccontainerchecksum 139c82690e2c9b695a10a6f3e6f94a54c3ae4d4a929ddc18763e248114926554206fb4c007ed758695476de3750ffc1dce3db75efdf2598434f27abd1ac84baa +docfiles size=70 + RELOC/doc/latex/tdclock/Changelog + RELOC/doc/latex/tdclock/README details="Readme" + RELOC/doc/latex/tdclock/tdclock-beamer-example.pdf details="Example Usage" + RELOC/doc/latex/tdclock/tdclock-beamer-example.tex + RELOC/doc/latex/tdclock/tdclock-doc.pdf details="Package documentation" + RELOC/doc/latex/tdclock/tdclock-doc.tex +runfiles size=5 + RELOC/tex/latex/tdclock/tdclock.sty +catalogue-also analogclock +catalogue-ctan /macros/latex/contrib/tdclock +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl2 +catalogue-topics date-time +catalogue-version 2.5 + +name tds category Package revision 15878 -shortdesc Freed version of the book TeX by Topic. +shortdesc The TeX Directory Structure standard relocated 1 -longdesc An invaluable book, originally published by Addison-Wesley (who -longdesc have released their copyright -- their version of the book went -longdesc out of print in the 1990s). The book describes itself as "a -longdesc TeXnician's reference", and covers the way TeX (the engine) -longdesc works in as much detail as most ordinary TeX programmers will -longdesc ever need to know. A printed copy of the book may be had (for a -longdesc modest price) via lulu.com (see the package home page for -longdesc details). -docfiles size=559 - RELOC/doc/plain/texbytopic/README - RELOC/doc/plain/texbytopic/TeXbyTopic.pdf - RELOC/doc/plain/texbytopic/TeXbyTopic.tex - RELOC/doc/plain/texbytopic/figflow.tex - RELOC/doc/plain/texbytopic/glossary.tex - RELOC/doc/plain/texbytopic/tables.tex - RELOC/doc/plain/texbytopic/tex.bib -catalogue-ctan /info/texbytopic -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license fdl +longdesc Defines a structure for placement of TeX-related files on an +longdesc hierarchical file system, in a way that is well-defined, and is +longdesc readily implementable. +containersize 488 +containerchecksum 20b739d69ba9804c12761c0eb76c0b7961657d2ba2fb00db9d083022279cca2b2b176fc7aaba11fceb77da4b7a23ba53c80e98a492fb4929adb545d56f5e8958 +doccontainersize 232652 +doccontainerchecksum ab08ea4220a30ac896add47e5422dbf2ff3eb65c3c89e90c87983c5dff75dfae6fc4d6f8cda58f2da51dae505f537ea07cee0e2378da845c20e790f8a1724f7c +docfiles size=129 + RELOC/doc/generic/tds/ChangeLog + RELOC/doc/generic/tds/Makefile + RELOC/doc/generic/tds/README details="Readme" + RELOC/doc/generic/tds/index.html + RELOC/doc/generic/tds/tds.dvi + RELOC/doc/generic/tds/tds.html details="The standard, converted to HTML" + RELOC/doc/generic/tds/tds.pdf details="The standard specification" + RELOC/doc/generic/tds/tds.sed + RELOC/doc/generic/tds/tds.tex + RELOC/doc/generic/tds/tds2texi.el + RELOC/doc/generic/tds/tdsguide.cls +catalogue-contact-home http://tug.org/tds/ +catalogue-ctan /tds +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license other-free +catalogue-topics std-spec +catalogue-version 1.1 -name texconfig -category TLCore -revision 37078 -depend texconfig.ARCH -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 -docfiles size=9 - texmf-dist/doc/man/man1/texconfig-sys.1 - texmf-dist/doc/man/man1/texconfig-sys.man1.pdf - texmf-dist/doc/man/man1/texconfig.1 - texmf-dist/doc/man/man1/texconfig.man1.pdf +name tdsfrmath +category Package +revision 15878 +shortdesc Macros for French teachers of mathematics +relocated 1 +longdesc A collection of macros for French maths teachers in colleges +longdesc and lycees (and perhaps elsewhere). It is hoped that the +longdesc package will facilitate the everyday use of LaTeX by +longdesc mathematics teachers. +containersize 5480 +containerchecksum f2c7a19dc327230f46320c695eaf40e9ff17088a709e38ec7f8de23f5c0cbeb18f606bd41625a1229734dacc80edba9d052c21620f7cdf213f60e915b6128010 +doccontainersize 717616 +doccontainerchecksum 9b0e747f90b75f372f04eddfb1c17dc73c3ef6a95d576077790b23bb496cee07afd3af5d1a53581872255c4e71b933949beae909591d0e1c407d9efc3f1d227d +docfiles size=201 + RELOC/doc/latex/tdsfrmath/LISEZMOI details="Lisez-moi" language="fr" + RELOC/doc/latex/tdsfrmath/README details="Readme" language="en" + RELOC/doc/latex/tdsfrmath/tdsfrmath.pdf details="Package documentation (French)" language="fr" +srccontainersize 33688 +srccontainerchecksum f44f98be464973ef3596d6e0d77e508280b597e4010b2c94620aad0ff950c8328ba1d4bbcf22e0f71f091c311d9b99dd979c73c182debeedd90ab14bea9e1d7a +srcfiles size=32 + RELOC/source/latex/tdsfrmath/Makefile + RELOC/source/latex/tdsfrmath/tdsfrmath.dtx + RELOC/source/latex/tdsfrmath/tdsfrmath.ins +runfiles size=7 + RELOC/tex/latex/tdsfrmath/suite.sto + RELOC/tex/latex/tdsfrmath/taupe.sto + RELOC/tex/latex/tdsfrmath/tdsfrmath.sty +catalogue-ctan /macros/latex/contrib/tdsfrmath +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics maths +catalogue-version 1.3 -name texconfig.i386-linux -category TLCore -revision 29741 -shortdesc i386-linux files of texconfig -binfiles arch=i386-linux size=1 - bin/i386-linux/texconfig +name technics +category Package +revision 29349 +shortdesc A package to format technical documents +relocated 1 +longdesc The package provides a very simple LaTeX document template, in +longdesc the hope that this use of LaTeX will become attractive to +longdesc typical word processor users. (Presentation is as if it were a +longdesc class; users are expected to start from a template document.) +containersize 1792 +containerchecksum 8eb9eab801bd83fbf0d9365c36a202f909cbcd49b8da6887f3e26aa3fcd047b8085e0b405f0f5fa7f2b5ea0ef21a9956114ecaa7934e1b46b1abe55583d5e759 +doccontainersize 80880 +doccontainerchecksum 2158bee41c25a1fbbf8c963e3364cf7d08e160aa895f54c77ceeaab7da6963232af61b4c7349d1be7f0aa84097bc7c00cac7748bdb8ba523a899b9e7cf6ed11d +docfiles size=31 + RELOC/doc/latex/technics/png2eps.sh + RELOC/doc/latex/technics/rf-logo.zip + RELOC/doc/latex/technics/technics.pdf details="Package documentation" + RELOC/doc/latex/technics/technics.tex + RELOC/doc/latex/technics/view-dvi.sh + RELOC/doc/latex/technics/vmlinux.eps + RELOC/doc/latex/technics/vmlinux.png +runfiles size=1 + RELOC/tex/latex/technics/technics.sty +catalogue-ctan /macros/latex/contrib/technics +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics doc-templ +catalogue-version 1.0 -name texcount +name technion-thesis-template category Package -revision 31323 -shortdesc Count words in a LaTeX document. -longdesc TeXcount is a Perl script that counts words in the text of -longdesc LaTeX files. It has rules for handling most of the common -longdesc macros, and can provide colour-coded output showing which parts -longdesc of the text have been counted. The package script is available -longdesc as a Web service via its home page. -depend texcount.ARCH -runfiles size=32 - texmf-dist/scripts/texcount/texcount.pl -docfiles size=189 - texmf-dist/doc/support/texcount/QuickReference.pdf - texmf-dist/doc/support/texcount/QuickReference.tex - texmf-dist/doc/support/texcount/README - texmf-dist/doc/support/texcount/TeXcount.pdf - texmf-dist/doc/support/texcount/TeXcount.tex - texmf-dist/doc/support/texcount/TechDoc.pdf - texmf-dist/doc/support/texcount/TechDoc.tex - texmf-dist/doc/support/texcount/macros.tex - texmf-dist/doc/support/texcount/sub_addrules.tex - texmf-dist/doc/support/texcount/sub_options.tex - texmf-dist/doc/support/texcount/sub_tc_other.tex -catalogue-ctan /support/texcount -catalogue-date 2014-02-26 23:03:13 +0100 +revision 49889 +shortdesc Template for theses on the Technion graduate school +relocated 1 +longdesc This is a template for writing a thesis according to the +longdesc Technion specifications. +containersize 6760 +containerchecksum 5e9c6bd47744601258bef52102acdfc744e0dd1219a7236a5710d6dd98ba5ebf1061bd6070c5d02707a7c8b895e362db51f48ee081126bcd9a99e523c6b9e5c0 +doccontainersize 120248 +doccontainerchecksum bcc290eae933b00cb32af0da6d31c6190f3b38d02a599fec7f8cbfcdb6f8737380d4c440911b08de5d768d9925526a63521c97c20a8c075ce8e9500dd3a62c24 +docfiles size=49 + RELOC/doc/xelatex/technion-thesis-template/Example/abbrev.tex + RELOC/doc/xelatex/technion-thesis-template/Example/abstract.tex + RELOC/doc/xelatex/technion-thesis-template/Example/acknowledgments.tex + RELOC/doc/xelatex/technion-thesis-template/Example/appendix.tex + RELOC/doc/xelatex/technion-thesis-template/Example/chapfirst.tex + RELOC/doc/xelatex/technion-thesis-template/Example/chapsecond.tex + RELOC/doc/xelatex/technion-thesis-template/Example/discussion.tex + RELOC/doc/xelatex/technion-thesis-template/Example/habstract.tex + RELOC/doc/xelatex/technion-thesis-template/Example/hacknowledgments.tex + RELOC/doc/xelatex/technion-thesis-template/Example/introduction.tex + RELOC/doc/xelatex/technion-thesis-template/Example/main.pdf details="Example of use" + RELOC/doc/xelatex/technion-thesis-template/Example/main.tex + RELOC/doc/xelatex/technion-thesis-template/Example/mybib.bib + RELOC/doc/xelatex/technion-thesis-template/Example/technionThesisMacros.sty + RELOC/doc/xelatex/technion-thesis-template/README.md details="Readme" +runfiles size=6 + RELOC/tex/xelatex/technion-thesis-template/technionThesis.cls + RELOC/tex/xelatex/technion-thesis-template/technionThesisSetup.sty +catalogue-ctan /macros/xetex/latex/technion-thesis-template +catalogue-date 2019-02-04 05:16:17 +0100 +catalogue-license cc-by-4 +catalogue-topics dissertation class +catalogue-version 1.0 + +name ted +category Package +revision 15878 +shortdesc A (primitive) token list editor +relocated 1 +longdesc Just like sed is a stream editor, ted is a token list editor. +longdesc Actually, it is not as powerfull as sed, but its main feature +longdesc is that it really works with tokens, not only characters. The +longdesc ted package provides two user macros: \Substitute and +longdesc \ShowTokens. The first is maybe the most useful: it performs +longdesc substitutions in token lists (even inside braces). The second +longdesc displays each token of the list (one per line) with its catcode +longdesc (in the list, not just the current one), and can be useful for +longdesc debugging or for TeX learners. Ted is designed to work well +longdesc even if strange tokens (that is, unusual {charcode, catcode} +longdesc pairs or tokens with a confusing meaning) occur in the list. +containersize 3148 +containerchecksum 42b0fcded19e05d5cf316fdfc0f1f6474816b656a57bfb5214a76f47e644bc16a42bfa95a21b80251723e2c30651a284d873d898e84c277922120a9169d274df +doccontainersize 165928 +doccontainerchecksum a36387e2520d7afadeb270f7393ef45ac1b26673840d541a50ecf864304d529b24be7d107070c96cfa123801284ffc53c9daa60753640fcd2ad6367f88887069 +docfiles size=53 + RELOC/doc/latex/ted/README details="Readme" + RELOC/doc/latex/ted/ted-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/ted/ted.pdf details="Package documentation (English)" +srccontainersize 15216 +srccontainerchecksum b134ab90045781a2a686206d4de20ebf63ffd678d47d81815365f67eecce60984d7e17e3b9098e42f06876b1f711609bfa4133efb4b74705f25ba0e4323984bf +srcfiles size=13 + RELOC/source/latex/ted/ted.dtx +runfiles size=3 + RELOC/tex/latex/ted/ted.sty +catalogue-also patch +catalogue-ctan /macros/latex/contrib/ted +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl -catalogue-version 3.0 +catalogue-topics debug-supp +catalogue-version 1.06 -name texcount.i386-linux +name templates-fenn category Package -revision 13013 -shortdesc i386-linux files of texcount -binfiles arch=i386-linux size=1 - bin/i386-linux/texcount +revision 15878 +shortdesc Templates for TeX usage +relocated 1 +longdesc A set of templates for using LaTeX packages that the author +longdesc uses, comprising: - scrlttr2.tex: a letter, written with +longdesc scrlttr2.cls from the KOMA-Script bundle; - dinbrief.tex: a +longdesc letter according to the German (DIN) standards, written with +longdesc dinbrief.cls; - kbrief.tex: a brief memo ('Kurzbrief') to +longdesc accompany enclosures, as used in German offices, again based on +longdesc dinbrief; - vermerk.tex: a general form for taking down notes +longdesc on events in the office; and - diabetes.tex: a diary for the +longdesc basis-bolus insulin therapy of diabetes mellitus, using +longdesc scrartcl.cls from the KOMA-Script bundle. +containersize 704 +containerchecksum cc61496f15f9c4060c8d42de23e3bf6f6d2be02d3a8b4fb761f2fda4a9c3565d74bf1f107dd9371e096bef79ddbdef56d2e696cd84cb4fe39a41986b8ffbbc78 +doccontainersize 5992 +doccontainerchecksum 2a96b0963b2d09edd3f6a6866ae298001e6ccd4e96b98a9002df6e6718284a786b63761441c287ddd63dd5eba636fcb8ce9769d498962ffe2565e771902755e1 +docfiles size=10 + RELOC/doc/latex/templates-fenn/diabetes.tex + RELOC/doc/latex/templates-fenn/dinbrief.tex + RELOC/doc/latex/templates-fenn/kbrief.tex + RELOC/doc/latex/templates-fenn/scrlttr2.tex + RELOC/doc/latex/templates-fenn/scrlttr2en.tex + RELOC/doc/latex/templates-fenn/templates-fenn-de.txt details="Package documentation (German)" language="de" + RELOC/doc/latex/templates-fenn/templates-fenn-en.txt details="Package documentation (English)" language="en" + RELOC/doc/latex/templates-fenn/vermerk.tex +catalogue-contact-home http://www.juergenfenn.de/tex.html +catalogue-ctan /info/templates/fenn +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl +catalogue-topics doc-templ -name texdef +name templates-sommer category Package -revision 26420 -shortdesc Display the definitions of TeX commands. -longdesc The (Perl) script displays the definition of (La)TeX command -longdesc sequences/macros. Various options allow the selection of the -longdesc used class and package files and other things which can have -longdesc influence on the definition (before/after the preamble, inside -longdesc an environment, ...). The script creates a temporary TeX file -longdesc which is then compiled using (La)TeX to find the '\meaning' of -longdesc the command sequence. The result is formatted and presented to -longdesc the user. Length or number command sequences (dimensions, -longdesc \char..., count registers, ...) are recognized and the -longdesc contained value is also shown (using \the). Special definitions -longdesc like protected macros are also recognized and the underlying -longdesc macros are shown as well. The script will show plain TeX -longdesc definitions by default. LaTeX and ConTeXt are supported, -longdesc including flavours (pdf(la)tex, lua(la)tex, xe(la)tex, ...). -longdesc The flavour can be selected using an command line option or -longdesc over the script name: latexdef will use LaTeX as default, etc. -depend texdef.ARCH -runfiles size=8 - texmf-dist/scripts/texdef/texdef.pl -docfiles size=64 - texmf-dist/doc/support/texdef/INSTALL - texmf-dist/doc/support/texdef/README - texmf-dist/doc/support/texdef/texdef.pdf -srcfiles size=3 - texmf-dist/source/support/texdef/texdef.tex -catalogue-ctan /support/texdef -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license gpl3 -catalogue-version 1.7b +revision 15878 +shortdesc Templates for TeX usage +relocated 1 +longdesc A set of templates for using LaTeX packages that the author +longdesc uses, comprising: - Hausarbeit.tex: for students of the +longdesc Lehrstuhl Volkskunde an der Friedrich-Schiller-Universitat +longdesc Jena; - Psycho-Dipl.tex: for diploma theses in psychology. +containersize 508 +containerchecksum 55b47c4718786fd4910d099878d5808288e83714567adbdbceea32a76e92f7e36c3f850d8597b297445a6ff428d1d0dbaf9209a387485eca0fb1a85f4909ed59 +doccontainersize 14424 +doccontainerchecksum 543b5cce4842dc6b084d90f9bf4e3c19c18a690ebe85379d9d93a5998fed06272bcac4cb3ae44f965614962827b9926fec3439322e38a720c134133a88cd94f0 +docfiles size=14 + RELOC/doc/latex/templates-sommer/Hausarbeit.bib + RELOC/doc/latex/templates-sommer/Hausarbeit.tex + RELOC/doc/latex/templates-sommer/Logo.jpg + RELOC/doc/latex/templates-sommer/Psycho-Dipl.bib + RELOC/doc/latex/templates-sommer/Psycho-Dipl.tex + RELOC/doc/latex/templates-sommer/README.de details="README" language="de" +catalogue-ctan /info/templates/sommer +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics doc-templ -name texdef.i386-linux +name templatetools category Package -revision 21802 -shortdesc i386-linux files of texdef -binfiles arch=i386-linux size=1 - bin/i386-linux/texdef +revision 34495 +shortdesc Commands useful in LaTeX templates +relocated 1 +longdesc The package provides a collection of tools, which are helpful +longdesc for the creation of a LaTeX template if conditional paths for +longdesc code execution are required. All the commands work both in the +longdesc preamble and in the document. +containersize 2104 +containerchecksum 16abbf8e5c8972961d112cba712f927be24fca191467677bf27d76ba30c2eba8cd237842b003b9cf45247a122294d517b14a4bf5b4938eedaf3055ffdd22c05a +doccontainersize 440152 +doccontainerchecksum 54d696f510cc75384703f750a8c532eb2a0d46e02821fd9126daac52ed1b39859882d475758cc1ff7fd6257211e49ee0fc5c06dbb2e13e83d4584523064cf19f +docfiles size=109 + RELOC/doc/latex/templatetools/README details="Readme" + RELOC/doc/latex/templatetools/templatetools.pdf details="Package documentation" +srccontainersize 6684 +srccontainerchecksum 685e379f557b683adcf198fb0a6f962b1da431e004470d5fc53c8815f4e7048e73d6851ae1792d78fa322f8efc5375d40c8f3c79404a8feb4a229df2fadf154f +srcfiles size=8 + RELOC/source/latex/templatetools/templatetools.dtx + RELOC/source/latex/templatetools/templatetools.ins +runfiles size=2 + RELOC/tex/latex/templatetools/templatetools.sty +catalogue-ctan /macros/latex/contrib/templatetools +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics doc-templ + +name tempora +category Package +revision 39596 +shortdesc Greek and Cyrillic to accompany Times +relocated 1 +longdesc This package, derived from TemporaLGCUni by Alexej Kryukov, is +longdesc meant as a companion to Times text font packages, providing +longdesc Greek and Cyrillic in matching weights and styles. OpenType and +longdesc Type1 fonts are provided, with LaTeX support files giving +longdesc essentially complete LGR coverage of monotonic, polytonic and +longdesc ancient Greek, and almost full T2A coverage of Cyrillic. +execute addMap tempora.map +containersize 1260752 +containerchecksum 0e1cc1a13f7937e5497f454b15ca66e0975b784b80223a902bf12a9587abdfdb56116b100e04306b1999e053b7c3716b32e1183dd7e6624162611f3b70388df6 +doccontainersize 250588 +doccontainerchecksum 18259e25b2c9f2a9cfbce9a9303d8827af069bbe2a7ade5c14518ce2c19dc973a86fadaa99b2abc8bc65644ee5371c745abba03cca76a685382b7d8b6d20bc6e +docfiles size=67 + RELOC/doc/fonts/tempora/COPYING + RELOC/doc/fonts/tempora/README details="Readme" + RELOC/doc/fonts/tempora/tempora-doc.pdf details="Package documentation" + RELOC/doc/fonts/tempora/tempora-doc.tex +runfiles size=1163 + RELOC/fonts/afm/public/tempora/Tempora-Bold.afm + RELOC/fonts/afm/public/tempora/Tempora-BoldItalic.afm + RELOC/fonts/afm/public/tempora/Tempora-Italic.afm + RELOC/fonts/afm/public/tempora/Tempora-Regular.afm + RELOC/fonts/enc/dvips/tempora/lgr-tempora.enc + RELOC/fonts/enc/dvips/tempora/lgr-temporaosf.enc + RELOC/fonts/enc/dvips/tempora/ot2-tempora.enc + RELOC/fonts/enc/dvips/tempora/ot2-temporaosf.enc + RELOC/fonts/enc/dvips/tempora/t2a-tempora.enc + RELOC/fonts/enc/dvips/tempora/t2a-temporaosf.enc + RELOC/fonts/enc/dvips/tempora/t2b-tempora.enc + RELOC/fonts/enc/dvips/tempora/t2b-temporaosf.enc + RELOC/fonts/enc/dvips/tempora/t2c-tempora.enc + RELOC/fonts/enc/dvips/tempora/t2c-temporaosf.enc + RELOC/fonts/enc/dvips/tempora/tmp_6rqc3d.enc + RELOC/fonts/enc/dvips/tempora/tmp_ac5xuc.enc + RELOC/fonts/enc/dvips/tempora/tmp_aq2g6w.enc + RELOC/fonts/enc/dvips/tempora/tmp_arnbc6.enc + RELOC/fonts/enc/dvips/tempora/tmp_jglahm.enc + RELOC/fonts/enc/dvips/tempora/tmp_m6t7eu.enc + RELOC/fonts/enc/dvips/tempora/tmp_mdnuug.enc + RELOC/fonts/enc/dvips/tempora/tmp_q3dzgc.enc + RELOC/fonts/enc/dvips/tempora/tmp_v6f3ze.enc + RELOC/fonts/enc/dvips/tempora/tmp_xvqxbr.enc + RELOC/fonts/enc/dvips/tempora/tmp_y4r4km.enc + RELOC/fonts/enc/dvips/tempora/tmp_yz5x6b.enc + RELOC/fonts/map/dvips/tempora/tempora.map + RELOC/fonts/opentype/public/tempora/Tempora-Bold.otf + RELOC/fonts/opentype/public/tempora/Tempora-BoldItalic.otf + RELOC/fonts/opentype/public/tempora/Tempora-Italic.otf + RELOC/fonts/opentype/public/tempora/Tempora-Regular.otf + RELOC/fonts/tfm/public/tempora/Tempora-Bold-TLF-lgr.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-TLF-ot2.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-TLF-t2a.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-TLF-t2b.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-TLF-t2c.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-TOsF-lgr.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-TOsF-ot2.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-TOsF-t2a.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-TOsF-t2b.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-TOsF-t2c.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-TLF-lgr.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-TLF-ot2.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-TLF-t2a.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-TLF-t2b.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-TLF-t2c.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-TOsF-lgr.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-TOsF-ot2.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-TOsF-t2a.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-TOsF-t2b.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-TOsF-t2c.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-TLF-lgr.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-TLF-ot2.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-TLF-t2a.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-TLF-t2b.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-TLF-t2c.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-TOsF-lgr.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-TOsF-ot2.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-TOsF-t2a.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-TOsF-t2b.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-TOsF-t2c.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-TLF-lgr.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-TLF-ot2.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-TLF-t2a.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-TLF-t2b.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-TLF-t2c.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-TOsF-lgr.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-TOsF-ot2.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-TOsF-t2a.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-TOsF-t2b.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-TOsF-t2c.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/tempora/Tempora-Regular-tosf-ts1.tfm + RELOC/fonts/type1/public/tempora/Tempora-Bold.pfb + RELOC/fonts/type1/public/tempora/Tempora-BoldItalic.pfb + RELOC/fonts/type1/public/tempora/Tempora-Italic.pfb + RELOC/fonts/type1/public/tempora/Tempora-Regular.pfb + RELOC/fonts/vf/public/tempora/Tempora-Bold-sup-t1.vf + RELOC/fonts/vf/public/tempora/Tempora-Bold-tlf-ot1.vf + RELOC/fonts/vf/public/tempora/Tempora-Bold-tlf-t1.vf + RELOC/fonts/vf/public/tempora/Tempora-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/tempora/Tempora-Bold-tosf-ot1.vf + RELOC/fonts/vf/public/tempora/Tempora-Bold-tosf-t1.vf + RELOC/fonts/vf/public/tempora/Tempora-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/tempora/Tempora-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/tempora/Tempora-BoldItalic-tlf-ot1.vf + RELOC/fonts/vf/public/tempora/Tempora-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/tempora/Tempora-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/tempora/Tempora-BoldItalic-tosf-ot1.vf + RELOC/fonts/vf/public/tempora/Tempora-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/tempora/Tempora-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/tempora/Tempora-Italic-sup-t1.vf + RELOC/fonts/vf/public/tempora/Tempora-Italic-tlf-t1.vf + RELOC/fonts/vf/public/tempora/Tempora-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/tempora/Tempora-Italic-tosf-t1.vf + RELOC/fonts/vf/public/tempora/Tempora-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/tempora/Tempora-Regular-sup-t1.vf + RELOC/fonts/vf/public/tempora/Tempora-Regular-tlf-ot1.vf + RELOC/fonts/vf/public/tempora/Tempora-Regular-tlf-t1.vf + RELOC/fonts/vf/public/tempora/Tempora-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/tempora/Tempora-Regular-tosf-ot1.vf + RELOC/fonts/vf/public/tempora/Tempora-Regular-tosf-t1.vf + RELOC/fonts/vf/public/tempora/Tempora-Regular-tosf-ts1.vf + RELOC/tex/latex/tempora/OT1Tempora-Sup.fd + RELOC/tex/latex/tempora/OT1Tempora-TLF.fd + RELOC/tex/latex/tempora/OT1Tempora-TOsF.fd + RELOC/tex/latex/tempora/T1Tempora-Sup.fd + RELOC/tex/latex/tempora/T1Tempora-TLF.fd + RELOC/tex/latex/tempora/T1Tempora-TOsF.fd + RELOC/tex/latex/tempora/TS1Tempora-TLF.fd + RELOC/tex/latex/tempora/TS1Tempora-TOsF.fd + RELOC/tex/latex/tempora/lgrtempora-tlf.fd + RELOC/tex/latex/tempora/lgrtempora-tosf.fd + RELOC/tex/latex/tempora/ot2tempora-tlf.fd + RELOC/tex/latex/tempora/ot2tempora-tosf.fd + RELOC/tex/latex/tempora/t2atempora-tlf.fd + RELOC/tex/latex/tempora/t2atempora-tosf.fd + RELOC/tex/latex/tempora/t2btempora-tlf.fd + RELOC/tex/latex/tempora/t2btempora-tosf.fd + RELOC/tex/latex/tempora/t2ctempora-tlf.fd + RELOC/tex/latex/tempora/t2ctempora-tosf.fd + RELOC/tex/latex/tempora/tempora.fontspec + RELOC/tex/latex/tempora/tempora.sty +catalogue-also txfonts newtx +catalogue-ctan /fonts/tempora +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl2 +catalogue-topics font font-cyrillic font-greek font-otf font-type1 font-serif +catalogue-version 1.05 -name texdiff +name tengwarscript category Package -revision 29752 -shortdesc Compare documents and produce tagged merge. -longdesc Two files are compared and a new TeX file is output. When the -longdesc output file is processed with (La)TeX it marks new changes with -longdesc blue and old text with red with a strike-through line. -longdesc Furthermore, passages with changes are marked at the margin -longdesc with grey bars by the LaTeX changebar package. -depend texdiff.ARCH -runfiles size=5 - texmf-dist/scripts/texdiff/texdiff -docfiles size=6 - texmf-dist/doc/man/man1/texdiff.1 - texmf-dist/doc/man/man1/texdiff.man1.pdf - texmf-dist/doc/support/texdiff/README -catalogue-ctan /support/texdiff -catalogue-date 2015-03-04 21:13:23 +0100 -catalogue-license artistic -catalogue-version 0.4 +revision 34594 +shortdesc LaTeX support for using Tengwar fonts +relocated 1 +longdesc The package provides "mid-level" access to tengwar fonts, +longdesc providing good quality output. Each tengwar sign is represented +longdesc by a command, which will place the sign nicely in relation to +longdesc previous signs. A transcription package is available from the +longdesc package's home page: writing all those tengwar commands would +longdesc quickly become untenable. The package supports the use of a +longdesc wide variety of tengwar fonts that are available from the net; +longdesc metric and map files are provided for all the supported fonts. +containersize 32276 +containerchecksum c6a29d928b1f25dc4b8893f9fc803f3a5deef9e8e9aa4803153fbae5cdd7170eea819eafba8a165203e48c8b2f443c55ce682df9f7e968ab621f2cf7eb082108 +doccontainersize 472140 +doccontainerchecksum 35825a4c1cac91c088daea643e8a8901f0c3ea15c44e8a9328883c22c1fddab95fb32a65372af3979698f81e68d77b34764a1c5748460a28396480075cb594d1 +docfiles size=146 + RELOC/doc/latex/tengwarscript/COPYING + RELOC/doc/latex/tengwarscript/README details="Readme" + RELOC/doc/latex/tengwarscript/install-tengwar-scripts.sh + RELOC/doc/latex/tengwarscript/quetta.eps + RELOC/doc/latex/tengwarscript/quetta.pdf + RELOC/doc/latex/tengwarscript/tengfonts.pdf details="Font sampler" + RELOC/doc/latex/tengwarscript/tengfonts.tex + RELOC/doc/latex/tengwarscript/tengtest.pdf details="Crib sheet and tests" + RELOC/doc/latex/tengwarscript/tengtest.tex + RELOC/doc/latex/tengwarscript/tengwarscript.pdf details="Package manual" +srccontainersize 24200 +srccontainerchecksum 4afbd079f20f9989a817acf49b46409bfab6ba0b328249eedf428a5a11e127fedc6c763c87db08b8b7c453562400878ea0c54d6d66c6bb7d407aa498a78dda38 +srcfiles size=74 + RELOC/source/latex/tengwarscript/tengwarscript.dtx + RELOC/source/latex/tengwarscript/tengwarscript.ins +runfiles size=125 + RELOC/fonts/enc/dvips/tengwarscript/tengwaralt.enc + RELOC/fonts/enc/dvips/tengwarscript/tengwarcap.enc + RELOC/fonts/enc/dvips/tengwarscript/tengwarscript.enc + RELOC/fonts/map/dvips/tengwarscript/tengwarscript.map + RELOC/fonts/tfm/public/tengwarscript/Elfica32.tfm + RELOC/fonts/tfm/public/tengwarscript/Parmaite.tfm + RELOC/fonts/tfm/public/tengwarscript/Parmaite_alt.tfm + RELOC/fonts/tfm/public/tengwarscript/Parmaite_full.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarFormal12.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarFormalA12.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarFormal_full.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarGothika050.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarNoldor.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarNoldorAlt.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarNoldorCapitals1.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarNoldorCapitals2.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarNoldor_full.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarQuenya.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarQuenyaAlt.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarQuenyaCapitals1.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarQuenyaCapitals2.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarQuenya_full.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarSindarin.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarSindarinAlt.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarSindarinCapitals1.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarSindarinCapitals2.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarSindarin_full.tfm + RELOC/fonts/tfm/public/tengwarscript/TengwarTelerin.tfm + RELOC/fonts/tfm/public/tengwarscript/UnicodeParmaite.tfm + RELOC/fonts/tfm/public/tengwarscript/tngan.tfm + RELOC/fonts/tfm/public/tengwarscript/tngan_full.tfm + RELOC/fonts/tfm/public/tengwarscript/tngana.tfm + RELOC/fonts/tfm/public/tengwarscript/tnganab.tfm + RELOC/fonts/tfm/public/tengwarscript/tnganabi.tfm + RELOC/fonts/tfm/public/tengwarscript/tnganai.tfm + RELOC/fonts/tfm/public/tengwarscript/tnganb.tfm + RELOC/fonts/tfm/public/tengwarscript/tnganb_full.tfm + RELOC/fonts/tfm/public/tengwarscript/tnganbi.tfm + RELOC/fonts/tfm/public/tengwarscript/tnganbi_full.tfm + RELOC/fonts/tfm/public/tengwarscript/tngani.tfm + RELOC/fonts/tfm/public/tengwarscript/tngani_full.tfm + RELOC/fonts/vf/public/tengwarscript/Parmaite_full.vf + RELOC/fonts/vf/public/tengwarscript/TengwarFormal_full.vf + RELOC/fonts/vf/public/tengwarscript/TengwarNoldor_full.vf + RELOC/fonts/vf/public/tengwarscript/TengwarQuenya_full.vf + RELOC/fonts/vf/public/tengwarscript/TengwarSindarin_full.vf + RELOC/fonts/vf/public/tengwarscript/tngan_full.vf + RELOC/fonts/vf/public/tengwarscript/tnganb_full.vf + RELOC/fonts/vf/public/tengwarscript/tnganbi_full.vf + RELOC/fonts/vf/public/tengwarscript/tngani_full.vf + RELOC/tex/latex/tengwarscript/annatar.cfg + RELOC/tex/latex/tengwarscript/annatarbold.cfg + RELOC/tex/latex/tengwarscript/annatarbolditalic.cfg + RELOC/tex/latex/tengwarscript/annataritalic.cfg + RELOC/tex/latex/tengwarscript/elfica.cfg + RELOC/tex/latex/tengwarscript/formal.cfg + RELOC/tex/latex/tengwarscript/gothika.cfg + RELOC/tex/latex/tengwarscript/noldor.cfg + RELOC/tex/latex/tengwarscript/noldorcapI.cfg + RELOC/tex/latex/tengwarscript/noldorcapII.cfg + RELOC/tex/latex/tengwarscript/parmaite.cfg + RELOC/tex/latex/tengwarscript/quenya.cfg + RELOC/tex/latex/tengwarscript/quenyacapI.cfg + RELOC/tex/latex/tengwarscript/quenyacapII.cfg + RELOC/tex/latex/tengwarscript/sindarin.cfg + RELOC/tex/latex/tengwarscript/sindarincapI.cfg + RELOC/tex/latex/tengwarscript/sindarincapII.cfg + RELOC/tex/latex/tengwarscript/teleri.cfg + RELOC/tex/latex/tengwarscript/tengwarscript.sty + RELOC/tex/latex/tengwarscript/unicodeparmaite.cfg +catalogue-ctan /macros/latex/contrib/tengwarscript +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font-invented font-supp +catalogue-version 1.3.1 -name texdiff.i386-linux +name tensor category Package -revision 15506 -shortdesc i386-linux files of texdiff -binfiles arch=i386-linux size=1 - bin/i386-linux/texdiff +revision 15878 +shortdesc Typeset tensors +relocated 1 +longdesc A package which allows the user to set tensor-style super- and +longdesc subscripts with offsets between successive indices. It supports +longdesc the typesetting of tensors with mixed upper and lower indices +longdesc with spacing, also typset preposed indices. This is a complete +longdesc revision and extension of the original 'tensor' package by Mike +longdesc Piff. +containersize 2004 +containerchecksum 8f048f9c72eb693bf9e75e6ebda2901eb6b6add654b1f89651d54eb9416559c2455436f5e825160bfce220c790e00aa3a6f95a4557b3fdc880bade768dd36c05 +doccontainersize 90232 +doccontainerchecksum d9ec6b7b49d028a5a405f16c8cdb54873d92d3a0968b7df38aad44da607c8ea8cdcac45cce63b0bd2258a2a89787e2388b2375189636b93bf643055c0b9f86fd +docfiles size=28 + RELOC/doc/latex/tensor/README details="Package README" + RELOC/doc/latex/tensor/tensor.pdf details="Package documentation" +srccontainersize 7272 +srccontainerchecksum fb246320405988579412cb8afc3f0f0951bd6ca09974c3f38c83979ff195e16e43c1852bca5097e8e4b07039230d3c019117234d4bb77eb75e70bedbc796ab3a +srcfiles size=7 + RELOC/source/latex/tensor/tensor.dtx + RELOC/source/latex/tensor/tensor.ins +runfiles size=2 + RELOC/tex/latex/tensor/tensor.sty +catalogue-also tensind +catalogue-ctan /macros/latex/contrib/tensor +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics subsup-pos maths +catalogue-version 2.1 -name texdirflatten +name termcal category Package -revision 29725 -shortdesc Collect files related to a LaTeX job in a single directory. -longdesc The Perl script parses a LaTeX file recursively, scanning all -longdesc child files, and collects details of any included and other -longdesc data files. These component files, are then all put into a -longdesc single directory (thus "flattening" the document's directory -longdesc tree). -depend texdirflatten.ARCH +revision 22514 +shortdesc Print a class calendar +relocated 1 +longdesc This package is intended to print a term calendar for use in +longdesc planning a class. It has a flexible mechanism for specifying +longdesc which days of the week are to be included and for inserting +longdesc text either regularly on the same day each week, or on selected +longdesc days, or for a series of consecutive days. It also has a +longdesc flexible mechanism for specifing class and nonclass days. Text +longdesc may be inserted into consecutive days so that it automatically +longdesc flows around nonclass days. +containersize 2616 +containerchecksum f28ee31f06cf2b3119df8010aa6a8312d5365452e19c3a278db7bee3bdeafe9ae0d3b07decdf1a104d8eb763abc5e02ff0e6c7030dce924596ac89d8e9508e13 +doccontainersize 75500 +doccontainerchecksum 44f54dedd59afad78eea60ccfd43805dca1a4dc87a3d827e0fda26db15505dec18d91cf0629ec937dcf3eb14d1244f80559a0fa1ef09b30288bf687099fcec1f +docfiles size=25 + RELOC/doc/latex/termcal/Contents + RELOC/doc/latex/termcal/README details="Readme" + RELOC/doc/latex/termcal/termcal.pdf details="Package documentation" +srccontainersize 7624 +srccontainerchecksum 0dd39a06088a0bd2bbcc3a9d6715816368deb07c55c85897f7c49d23553ff941f5f68d7b0ebf8fc54c4fd4d2bb8a510cec3ac9d9b509f27aeee29696c75a7ef2 +srcfiles size=8 + RELOC/source/latex/termcal/termcal.dtx + RELOC/source/latex/termcal/termcal.ins runfiles size=2 - texmf-dist/scripts/texdirflatten/texdirflatten -docfiles size=4 - texmf-dist/doc/man/man1/texdirflatten.1 - texmf-dist/doc/man/man1/texdirflatten.man1.pdf -catalogue-ctan /support/texdirflatten -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license gpl + RELOC/tex/latex/termcal/termcal.sty +catalogue-also calendar kalender plcalendar +catalogue-ctan /macros/latex/contrib/termcal +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1 +catalogue-topics calendar +catalogue-version 1.8 + +name termcal-de +category Package +revision 47111 +shortdesc German localization for termcal +relocated 1 +longdesc This package provides a German localization to the termcal +longdesc package written by Bill Mitchell, which is intended to print a +longdesc term calendar for use in planning a class. termcal-de depends +longdesc on the following other packages: termcal, pgfkeys, pgfopts, +longdesc datetime2, and datetime2-german. +containersize 2164 +containerchecksum 9d4d0be3e26dc69fa3986fbe41099330e97cdd4d3aa0b12a180657577ef839878aea9e546a5651cdd0ea45e7af3968c5b83b509ad5bb3ef210d42af5c00fd91b +doccontainersize 107488 +doccontainerchecksum 48f0ec01526f75e9e2b8369f8b30bbd8e4f093cc91fd5b485a36e225de35fa0afc750508b6533f2ec82ef123805788e40e98d5459dc85a73bef675162e682fa7 +docfiles size=28 + RELOC/doc/latex/termcal-de/README.md details="Readme" + RELOC/doc/latex/termcal-de/termcal-de-doc.pdf details="Package documentation" +srccontainersize 9640 +srccontainerchecksum 51d257533f7897d6b605a2ac26f323e3c241cb6920b329387f1be3bfc8444e98570f2dc4f86e78e81f5838204a90a7f79074989737005f035e076c41be74f4a3 +srcfiles size=12 + RELOC/source/latex/termcal-de/termcal-de-doc-example1.dtx + RELOC/source/latex/termcal-de/termcal-de-doc-example2.dtx + RELOC/source/latex/termcal-de/termcal-de-doc.dtx + RELOC/source/latex/termcal-de/termcal-de.dtx + RELOC/source/latex/termcal-de/termcal-de.ins +runfiles size=2 + RELOC/tex/latex/termcal-de/termcal-de.sty +catalogue-contact-bugs https://github.com/SFr682k/termcal-de/issues +catalogue-contact-repository https://github.com/SFr682k/termcal-de +catalogue-ctan /macros/latex/contrib/termcal-de +catalogue-date 2018-03-24 09:28:30 +0100 +catalogue-license lppl1.3c +catalogue-topics calendar german +catalogue-version 2.0 + +name termlist +category Package +revision 18923 +shortdesc Label any kind of term with a continuous counter +relocated 1 +longdesc The termlist package provides environments to indent and label +longdesc any kind of terms with a continuous number. Candidate terms may +longdesc appear inside an equation or eqnarray environment. +containersize 1232 +containerchecksum 799d5fbfb9b055e8674a244ecaac65c2f0412a4c173e6608fff946544142d851d8dbba02505fa8be21bc37b15acc2ba99a6f0dc77a13dd241fedea1c1b38dec9 +doccontainersize 160640 +doccontainerchecksum 14add37c32500f246eea2a3219b58a232c9a8f41cf3cf5a0d1d2aaf4cba4d700c1ba5379b037fe10cfc06385ff0a7d0925b46beeef15dff2502142e56f37e597 +docfiles size=43 + RELOC/doc/latex/termlist/README details="Readme" + RELOC/doc/latex/termlist/termlist.pdf details="Package documentation" +srccontainersize 4356 +srccontainerchecksum 2d6a14828ca29c08d0b08f33749deaafef88ec73bdd72450468b5332e95c83ccc5d29d0a154a6cc49a04ca0a9e5a17d0f28f25139d928b87cb14a2059d51d848 +srcfiles size=4 + RELOC/source/latex/termlist/termlist.dtx +runfiles size=1 + RELOC/tex/latex/termlist/termlist.sty +catalogue-ctan /macros/latex/contrib/termlist +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl +catalogue-topics label-ref catalogue-version 1.1 -name texdirflatten.i386-linux +name termmenu category Package -revision 12782 -shortdesc i386-linux files of texdirflatten -binfiles arch=i386-linux size=1 - bin/i386-linux/texdirflatten +revision 37700 +shortdesc The package provides support for terminal-based menus using expl3 +relocated 1 +longdesc When writing programs, it's often required to present the user +longdesc with a list of options/actions. The user is then expected to +longdesc select one of these options for the program to process. +longdesc termmenu provides this mechanism for TeX. It requires only +longdesc expl3 support, thus the l3kernel and l3packages are both +longdesc required. +containersize 2016 +containerchecksum 5c3d4ac4a2bab5e18453b9de0b372b364981444df3550c3a195a8fee841a6d76e73835096ff1b71a37f5e5acf0fd2777dbc8846be9345f99b004adb560ced517 +doccontainersize 473824 +doccontainerchecksum 029f4ae3b57e0b226883e66030db2d3c41cffc0a4dbd4f8b3662562fd566d8a09b7aa0c83d98f7fb0cdfbd1226c5dde9c93211565292f037e5b5554e9a5d02b4 +docfiles size=117 + RELOC/doc/generic/termmenu/README details="Readme" + RELOC/doc/generic/termmenu/termmenu.pdf details="Package documentation" +srccontainersize 6808 +srccontainerchecksum 56c1396e90a4c1db5dd28ae96c6f3ebe0310c163d7fdb2cb4e3ade78b522b349fba0bd43556165c282bedcab167241033b065feaac4c4a5e3dc2d8a8a55dca61 +srcfiles size=7 + RELOC/source/generic/termmenu/termmenu.dtx + RELOC/source/generic/termmenu/termmenu.ins +runfiles size=2 + RELOC/tex/generic/termmenu/termmenu.tex +catalogue-ctan /macros/generic/termmenu +catalogue-date 2017-11-12 11:01:59 +0100 +catalogue-license lppl1.3 +catalogue-topics comp-mgmt expl3 -name texdoc +name testhyphens +category Package +revision 38928 +shortdesc Testing hyphenation patterns +relocated 1 +longdesc The package may be used for testing hyphenation patterns or for +longdesc controlling that specific words are hyphenated as expected. +longdesc This package implements some old TUGboat code to adapt it to +longdesc LaTeX with some enhancements. It differs form \showhyphens, +longdesc because it typesets its output on the document's output file. +longdesc It also works with xelatex, where \showhyphens requires a +longdesc workaround. +containersize 2044 +containerchecksum c16a9299721c571ce9bdc91e4ed4cc54c973b43fed5189d2f377b2a9143d94d3eeba6bd6b728e3df92a5436b3e2c5e07a21d4a6af0210bf87784d40d96caa42c +doccontainersize 383684 +doccontainerchecksum 44cc1d9afa4e12ef2dc1f7be2d7718fa33b80e5ee16c7396053690bfea6246f444b50cb044d314ec677436a3559ff1ba9fa227acb446db37bacaa2829c309b2b +docfiles size=96 + RELOC/doc/latex/testhyphens/README details="Readme" + RELOC/doc/latex/testhyphens/manifest.txt + RELOC/doc/latex/testhyphens/testhyphens.pdf details="Package documentation" +srccontainersize 8036 +srccontainerchecksum 2f84528ee4ca5d8434b0042f7b24908ff97c45f27580a5b59bfe226b195c295d4fa546fe240acb981db6deba970e2b020d38c00e6bbf5a0cc1b3caf2b3cbd506 +srcfiles size=6 + RELOC/source/latex/testhyphens/testhyphens.dtx +runfiles size=1 + RELOC/tex/latex/testhyphens/testhyphens.sty +catalogue-ctan /macros/latex/contrib/testhyphens +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics hyphenation +catalogue-version 0.7 + +name testidx +category Package +revision 45021 +shortdesc Dummy text for testing index styles and indexing applications +relocated 1 +longdesc This is a LaTeX package that provides a command to produce +longdesc dummy text interspersed with \index commands to test an index +longdesc style or indexing application. The dummy text is mostly in +longdesc English, but includes extended Latin characters provided either +longdesc through LaTeX accent commands or directly with UTF-8 +longdesc characters, depending on the setup, to allow for testing +longdesc extended Latin alphabets. The supplementary package +longdesc testidx-glossaries.sty uses the indexing interface provided by +longdesc the glossaries package. +containersize 27112 +containerchecksum 30ce5a38b5bd6df91b9914952f1dfa6ea337e778856a4c8768e7c34c23ce745e51ad24834bebe48b7dd8e36b99822234b1e4d2494f8acb3fe3b458f4a2584e1d +doccontainersize 3357224 +doccontainerchecksum b47e62f1b4ad56160bcb4b85d1b9744ea23307ede9e47a8d73c27eed49f7f99944b17e2b945017bbafda4661bb767b1fdd1dd856866921e72dd5b19f2fa3fc43 +docfiles size=1358 + RELOC/doc/latex/testidx/CHANGES + RELOC/doc/latex/testidx/README details="Readme" + RELOC/doc/latex/testidx/samples/sample-idx-a4.pdf + RELOC/doc/latex/testidx/samples/sample-idx-a4.tex + RELOC/doc/latex/testidx/samples/sample-idx-amsmath.pdf + RELOC/doc/latex/testidx/samples/sample-idx-amsmath.tex + RELOC/doc/latex/testidx/samples/sample-idx-babel-german.pdf + RELOC/doc/latex/testidx/samples/sample-idx-babel-german.tex + RELOC/doc/latex/testidx/samples/sample-idx-german.pdf + RELOC/doc/latex/testidx/samples/sample-idx-german.tex + RELOC/doc/latex/testidx/samples/sample-idx-hyp.pdf + RELOC/doc/latex/testidx/samples/sample-idx-hyp.tex + RELOC/doc/latex/testidx/samples/sample-idx-letter.pdf + RELOC/doc/latex/testidx/samples/sample-idx-letter.tex + RELOC/doc/latex/testidx/samples/sample-idx-lua.pdf + RELOC/doc/latex/testidx/samples/sample-idx-lua.tex + RELOC/doc/latex/testidx/samples/sample-idx-subset.pdf + RELOC/doc/latex/testidx/samples/sample-idx-subset.tex + RELOC/doc/latex/testidx/samples/sample-idx-t1.pdf + RELOC/doc/latex/testidx/samples/sample-idx-t1.tex + RELOC/doc/latex/testidx/samples/sample-idx-utf8.pdf + RELOC/doc/latex/testidx/samples/sample-idx-utf8.tex + RELOC/doc/latex/testidx/samples/sample-idx-xe-digraphs.pdf + RELOC/doc/latex/testidx/samples/sample-idx-xe-digraphs.tex + RELOC/doc/latex/testidx/samples/sample-idx-xe.pdf + RELOC/doc/latex/testidx/samples/sample-idx-xe.tex + RELOC/doc/latex/testidx/samples/sample-idx.pdf + RELOC/doc/latex/testidx/samples/sample-idx.tex + RELOC/doc/latex/testidx/samples/sample-idxgloss-bib2gls-xe.pdf + RELOC/doc/latex/testidx/samples/sample-idxgloss-bib2gls-xe.tex + RELOC/doc/latex/testidx/samples/sample-idxgloss-bib2gls.pdf + RELOC/doc/latex/testidx/samples/sample-idxgloss-bib2gls.tex + RELOC/doc/latex/testidx/samples/sample-idxgloss-desc.pdf + RELOC/doc/latex/testidx/samples/sample-idxgloss-desc.tex + RELOC/doc/latex/testidx/samples/sample-idxgloss-xe-digraphs.pdf + RELOC/doc/latex/testidx/samples/sample-idxgloss-xe-digraphs.tex + RELOC/doc/latex/testidx/samples/sample-idxgloss-xindy.pdf + RELOC/doc/latex/testidx/samples/sample-idxgloss-xindy.tex + RELOC/doc/latex/testidx/samples/sample-idxgloss.pdf + RELOC/doc/latex/testidx/samples/sample-idxgloss.tex + RELOC/doc/latex/testidx/samples/sample-noidxgloss.pdf + RELOC/doc/latex/testidx/samples/sample-noidxgloss.tex + RELOC/doc/latex/testidx/testidx-code.pdf + RELOC/doc/latex/testidx/testidx-glossaries-diglyphs-utf8.bib + RELOC/doc/latex/testidx/testidx-glossaries-diglyphs.tex + RELOC/doc/latex/testidx/testidx-glossaries-markers.bib + RELOC/doc/latex/testidx/testidx-glossaries-mathsym.bib + RELOC/doc/latex/testidx/testidx-glossaries-nodiglyphs-utf8.bib + RELOC/doc/latex/testidx/testidx-glossaries-nodiglyphs.bib + RELOC/doc/latex/testidx/testidx-glossaries-nodiglyphs.tex + RELOC/doc/latex/testidx/testidx-glossaries-numbers.bib + RELOC/doc/latex/testidx/testidx-glossaries-samples-ascii.bib + RELOC/doc/latex/testidx/testidx-glossaries-samples-utf8.bib + RELOC/doc/latex/testidx/testidx-glossaries-samples.bib + RELOC/doc/latex/testidx/testidx-glossaries-samples.tex + RELOC/doc/latex/testidx/testidx-manual.pdf details="Package documentation" + RELOC/doc/latex/testidx/testidx-manual.tex +srccontainersize 51268 +srccontainerchecksum 4ea0c1de69643cce5153e9e70e90d8f0fe17e5b002da9487befbd5345179a50ccd535cacf657b0deaec1d7a28440be35ecfa550e242020075f12c8b0bc8b35fd +srcfiles size=98 + RELOC/source/latex/testidx/testidx.dtx + RELOC/source/latex/testidx/testidx.ins +runfiles size=48 + RELOC/tex/latex/testidx/testidx-glossaries.sty + RELOC/tex/latex/testidx/testidx.sty +catalogue-also blindtext +catalogue-ctan /macros/latex/contrib/testidx +catalogue-date 2017-08-11 14:31:03 +0200 +catalogue-license lppl1.3 +catalogue-topics index dummy-gen +catalogue-version 1.1 + +name tetex category TLCore -revision 37078 -shortdesc Documentation access for TeX distributions. -longdesc TeXdoc is an application for easy access to the package -longdesc documentation of a TeX distributions (i.e., .dvi, .pdf or .ps -longdesc files on the $TEXDOCS tree). It is distributed with TeX-Live -longdesc and a derivative is distributed with miktex. -depend kpathsea -depend texdoc.ARCH -postaction shortcut type=menu name="TeXdoc GUI" cmd="TEXDIR/bin/win32/texdoctk.exe" -runfiles size=325 - texmf-dist/scripts/texdoc/Data.meta.lua - texmf-dist/scripts/texdoc/Data.tlpdb.lua - texmf-dist/scripts/texdoc/alias.tlu - texmf-dist/scripts/texdoc/config.tlu - texmf-dist/scripts/texdoc/constants.tlu - texmf-dist/scripts/texdoc/functions.tlu - texmf-dist/scripts/texdoc/main.tlu - texmf-dist/scripts/texdoc/score.tlu - texmf-dist/scripts/texdoc/search.tlu - texmf-dist/scripts/texdoc/texdoc.tlu - texmf-dist/scripts/texdoc/texdoclib.tlu - texmf-dist/scripts/texdoc/view.tlu - texmf-dist/scripts/texdoctk/texdoctk.pl - texmf-dist/texdoc/texdoc.cnf - texmf-dist/texdoctk/texdocrc-win32.defaults - texmf-dist/texdoctk/texdocrc.defaults - texmf-dist/texdoctk/texdoctk.dat -docfiles size=48 - texmf-dist/doc/man/man1/texdoc.1 - texmf-dist/doc/man/man1/texdoc.man1.pdf - texmf-dist/doc/man/man1/texdoctk.1 - texmf-dist/doc/man/man1/texdoctk.man1.pdf - texmf-dist/doc/texdoc/News - texmf-dist/doc/texdoc/texdoc.pdf - texmf-dist/doc/texdoc/texdoc.tex -catalogue-date 2014-01-03 12:07:14 +0100 -catalogue-license gpl +revision 51133 +shortdesc scripts and files originally from teTeX +longdesc Includes both core utilities such as fmtutil and updmap, and +longdesc rarely-used programs such as allec and dvi2fax. Some +longdesc functionality is now better provided by tlmgr, such as +longdesc texconfig and texlinks, but everything here is still supported. +depend tetex.ARCH +execute addMap mathpple.map +containersize 71648 +containerchecksum 4c51b762a71c161923e98af99bc9c695bf9ba46bb6f8aef2da1da0aabb65db48836fadbc964f0bd5eb25fc51fbd1e48214eadf63b7b1175683b6bd03a389aae7 +doccontainersize 525320 +doccontainerchecksum 1b049d99c487f66cdf0b05a0371d7cfdeff99e6fef86fc33b20fc31af6c40fe2280a082ea7572a6463498e5bada30d6587134a3fc9026fe9f8a18dee45fbad65 +docfiles size=247 + texmf-dist/doc/man/man1/allcm.1 + texmf-dist/doc/man/man1/allcm.man1.pdf + texmf-dist/doc/man/man1/allec.1 + texmf-dist/doc/man/man1/allec.man1.pdf + texmf-dist/doc/man/man1/allneeded.1 + texmf-dist/doc/man/man1/allneeded.man1.pdf + texmf-dist/doc/man/man1/dvi2fax.1 + texmf-dist/doc/man/man1/dvi2fax.man1.pdf + texmf-dist/doc/man/man1/dvired.1 + texmf-dist/doc/man/man1/dvired.man1.pdf + texmf-dist/doc/man/man1/fmtutil-sys.1 + texmf-dist/doc/man/man1/fmtutil-sys.man1.pdf + texmf-dist/doc/man/man1/fmtutil-user.1 + texmf-dist/doc/man/man1/fmtutil-user.man1.pdf + texmf-dist/doc/man/man1/fmtutil.1 + texmf-dist/doc/man/man1/fmtutil.man1.pdf + texmf-dist/doc/man/man1/kpsepath.1 + texmf-dist/doc/man/man1/kpsepath.man1.pdf + texmf-dist/doc/man/man1/kpsetool.1 + texmf-dist/doc/man/man1/kpsetool.man1.pdf + texmf-dist/doc/man/man1/kpsewhere.1 + texmf-dist/doc/man/man1/kpsewhere.man1.pdf + texmf-dist/doc/man/man1/kpsexpand.1 + texmf-dist/doc/man/man1/kpsexpand.man1.pdf + texmf-dist/doc/man/man1/texconfig-sys.1 + texmf-dist/doc/man/man1/texconfig-sys.man1.pdf + texmf-dist/doc/man/man1/texconfig.1 + texmf-dist/doc/man/man1/texconfig.man1.pdf + texmf-dist/doc/man/man1/texlinks.1 + texmf-dist/doc/man/man1/texlinks.man1.pdf + texmf-dist/doc/man/man1/updmap-sys.1 + texmf-dist/doc/man/man1/updmap-sys.man1.pdf + texmf-dist/doc/man/man1/updmap-user.1 + texmf-dist/doc/man/man1/updmap-user.man1.pdf + texmf-dist/doc/man/man1/updmap.1 + texmf-dist/doc/man/man1/updmap.man1.pdf + texmf-dist/doc/man/man5/fmtutil.cnf.5 + texmf-dist/doc/man/man5/fmtutil.cnf.man5.pdf + texmf-dist/doc/man/man5/updmap.cfg.5 + texmf-dist/doc/man/man5/updmap.cfg.man5.pdf + texmf-dist/doc/tetex/TETEXDOC.pdf + texmf-dist/doc/tetex/teTeX-FAQ +runfiles size=127 + 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-user.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/texconfig.sh + texmf-dist/scripts/texlive/texlinks.sh + texmf-dist/scripts/texlive/updmap-sys.sh + texmf-dist/scripts/texlive/updmap-user.sh + texmf-dist/scripts/texlive/updmap.pl + 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/web2c/updmap.cfg +catalogue-contact-home http://tug.org/teTeX/ +catalogue-ctan /obsolete/systems/unix/teTeX +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license other-free +catalogue-topics distribution obsolete +catalogue-version 3.0 -name texdoc.i386-linux +name tetex.aarch64-linux category TLCore -revision 29741 -shortdesc i386-linux files of texdoc -binfiles arch=i386-linux size=2 - bin/i386-linux/texdoc - bin/i386-linux/texdoctk +revision 46208 +shortdesc aarch64-linux files of tetex +containersize 720 +containerchecksum 14a5e5d77c73494f5ca0628c0bba21467031bbeaf72206369cbe6cd38c57bf1759cc61d007860b12cf34504557c8cc594bfceeafa91c226bdb7bf71bcfa8bf64 +binfiles arch=aarch64-linux size=19 + bin/aarch64-linux/allcm + bin/aarch64-linux/allec + bin/aarch64-linux/allneeded + bin/aarch64-linux/dvi2fax + bin/aarch64-linux/dvired + bin/aarch64-linux/fmtutil + bin/aarch64-linux/fmtutil-sys + bin/aarch64-linux/fmtutil-user + bin/aarch64-linux/kpsepath + bin/aarch64-linux/kpsetool + bin/aarch64-linux/kpsewhere + bin/aarch64-linux/kpsexpand + bin/aarch64-linux/texconfig + bin/aarch64-linux/texconfig-dialog + bin/aarch64-linux/texconfig-sys + bin/aarch64-linux/texlinks + bin/aarch64-linux/updmap + bin/aarch64-linux/updmap-sys + bin/aarch64-linux/updmap-user + +name tetex.amd64-freebsd +category TLCore +revision 45860 +shortdesc amd64-freebsd files of tetex +containersize 724 +containerchecksum 87de357207de0718d3fa356a326738dcca0322959211298c015fa05d54e63b00b742a90db4a3b0fd3333985209b31918892a92a769785ac47c8ca25e7dd62280 +binfiles arch=amd64-freebsd size=19 + bin/amd64-freebsd/allcm + bin/amd64-freebsd/allec + bin/amd64-freebsd/allneeded + bin/amd64-freebsd/dvi2fax + bin/amd64-freebsd/dvired + bin/amd64-freebsd/fmtutil + bin/amd64-freebsd/fmtutil-sys + bin/amd64-freebsd/fmtutil-user + bin/amd64-freebsd/kpsepath + bin/amd64-freebsd/kpsetool + bin/amd64-freebsd/kpsewhere + bin/amd64-freebsd/kpsexpand + bin/amd64-freebsd/texconfig + bin/amd64-freebsd/texconfig-dialog + bin/amd64-freebsd/texconfig-sys + bin/amd64-freebsd/texlinks + bin/amd64-freebsd/updmap + bin/amd64-freebsd/updmap-sys + bin/amd64-freebsd/updmap-user + +name tetex.amd64-netbsd +category TLCore +revision 45860 +shortdesc amd64-netbsd files of tetex +containersize 724 +containerchecksum 387e0fbeaa30ca72826e0d3629410c52cf8bc1a1cbccdcfec2b666a8b2fd64fc96df14530160518bfcba1a26812c42cbdb41d7ea4c2d1852fb71621ad03c6619 +binfiles arch=amd64-netbsd size=19 + bin/amd64-netbsd/allcm + bin/amd64-netbsd/allec + bin/amd64-netbsd/allneeded + bin/amd64-netbsd/dvi2fax + bin/amd64-netbsd/dvired + bin/amd64-netbsd/fmtutil + bin/amd64-netbsd/fmtutil-sys + bin/amd64-netbsd/fmtutil-user + bin/amd64-netbsd/kpsepath + bin/amd64-netbsd/kpsetool + bin/amd64-netbsd/kpsewhere + bin/amd64-netbsd/kpsexpand + bin/amd64-netbsd/texconfig + bin/amd64-netbsd/texconfig-dialog + bin/amd64-netbsd/texconfig-sys + bin/amd64-netbsd/texlinks + bin/amd64-netbsd/updmap + bin/amd64-netbsd/updmap-sys + bin/amd64-netbsd/updmap-user + +name tetex.armhf-linux +category TLCore +revision 45860 +shortdesc armhf-linux files of tetex +containersize 728 +containerchecksum b42631a899e909ec06d2f0877d6baeb551abb150702afb30ccb28c4579b9ad6f211d8b4aa1cb076acc240e40a287ee54e2e9c35880109fdebd543a575bb8159f +binfiles arch=armhf-linux size=19 + bin/armhf-linux/allcm + bin/armhf-linux/allec + bin/armhf-linux/allneeded + bin/armhf-linux/dvi2fax + bin/armhf-linux/dvired + bin/armhf-linux/fmtutil + bin/armhf-linux/fmtutil-sys + bin/armhf-linux/fmtutil-user + bin/armhf-linux/kpsepath + bin/armhf-linux/kpsetool + bin/armhf-linux/kpsewhere + bin/armhf-linux/kpsexpand + bin/armhf-linux/texconfig + bin/armhf-linux/texconfig-dialog + bin/armhf-linux/texconfig-sys + bin/armhf-linux/texlinks + bin/armhf-linux/updmap + bin/armhf-linux/updmap-sys + bin/armhf-linux/updmap-user + +name tetex.i386-cygwin +category TLCore +revision 45860 +shortdesc i386-cygwin files of tetex +containersize 720 +containerchecksum 0d531e8cadf434dc4c76f51b1f6aef2675f3ccf2aaa8a0a63cd96715dd87c4386f3643d28f31916bb0c01ca130d53a64318aaa90a3e5e162a605da11489f44e1 +binfiles arch=i386-cygwin size=19 + bin/i386-cygwin/allcm + bin/i386-cygwin/allec + bin/i386-cygwin/allneeded + bin/i386-cygwin/dvi2fax + bin/i386-cygwin/dvired + bin/i386-cygwin/fmtutil + bin/i386-cygwin/fmtutil-sys + bin/i386-cygwin/fmtutil-user + bin/i386-cygwin/kpsepath + bin/i386-cygwin/kpsetool + bin/i386-cygwin/kpsewhere + bin/i386-cygwin/kpsexpand + bin/i386-cygwin/texconfig + bin/i386-cygwin/texconfig-dialog + bin/i386-cygwin/texconfig-sys + bin/i386-cygwin/texlinks + bin/i386-cygwin/updmap + bin/i386-cygwin/updmap-sys + bin/i386-cygwin/updmap-user + +name tetex.i386-freebsd +category TLCore +revision 45860 +shortdesc i386-freebsd files of tetex +containersize 724 +containerchecksum c0b78431ebf8c47f530d3326e4e7ce4ce1fe2cc2f442f90baaa4121fd53ace642cff9ab09c3ca0e8b684bfcf8ff77c5aad7fc77fc601edf416699e9440fee544 +binfiles arch=i386-freebsd size=19 + bin/i386-freebsd/allcm + bin/i386-freebsd/allec + bin/i386-freebsd/allneeded + bin/i386-freebsd/dvi2fax + bin/i386-freebsd/dvired + bin/i386-freebsd/fmtutil + bin/i386-freebsd/fmtutil-sys + bin/i386-freebsd/fmtutil-user + bin/i386-freebsd/kpsepath + bin/i386-freebsd/kpsetool + bin/i386-freebsd/kpsewhere + bin/i386-freebsd/kpsexpand + bin/i386-freebsd/texconfig + bin/i386-freebsd/texconfig-dialog + bin/i386-freebsd/texconfig-sys + bin/i386-freebsd/texlinks + bin/i386-freebsd/updmap + bin/i386-freebsd/updmap-sys + bin/i386-freebsd/updmap-user -name texdraw +name tetex.i386-linux +category TLCore +revision 45860 +shortdesc i386-linux files of tetex +containersize 720 +containerchecksum 65a03da58567ff6256e0db6e9cc012620585f023e8da8d2069d82d94f81cf8b214c17243a9f701e27f4f2643b20e190519c6491289acb8b61e5bc5b8f568d633 +binfiles arch=i386-linux size=19 + bin/i386-linux/allcm + bin/i386-linux/allec + bin/i386-linux/allneeded + bin/i386-linux/dvi2fax + bin/i386-linux/dvired + bin/i386-linux/fmtutil + bin/i386-linux/fmtutil-sys + bin/i386-linux/fmtutil-user + bin/i386-linux/kpsepath + bin/i386-linux/kpsetool + bin/i386-linux/kpsewhere + bin/i386-linux/kpsexpand + bin/i386-linux/texconfig + bin/i386-linux/texconfig-dialog + bin/i386-linux/texconfig-sys + bin/i386-linux/texlinks + bin/i386-linux/updmap + bin/i386-linux/updmap-sys + bin/i386-linux/updmap-user + +name tetex.i386-netbsd +category TLCore +revision 45860 +shortdesc i386-netbsd files of tetex +containersize 720 +containerchecksum 6c18f56b88634cda3dbdfe3a23166d07efdcb87547eb7825786022d3e8511f2fc2351ddacf4d858e2901fe6be4ca9d00880d0f4a6ac489d46a23bc2a2aae9167 +binfiles arch=i386-netbsd size=19 + bin/i386-netbsd/allcm + bin/i386-netbsd/allec + bin/i386-netbsd/allneeded + bin/i386-netbsd/dvi2fax + bin/i386-netbsd/dvired + bin/i386-netbsd/fmtutil + bin/i386-netbsd/fmtutil-sys + bin/i386-netbsd/fmtutil-user + bin/i386-netbsd/kpsepath + bin/i386-netbsd/kpsetool + bin/i386-netbsd/kpsewhere + bin/i386-netbsd/kpsexpand + bin/i386-netbsd/texconfig + bin/i386-netbsd/texconfig-dialog + bin/i386-netbsd/texconfig-sys + bin/i386-netbsd/texlinks + bin/i386-netbsd/updmap + bin/i386-netbsd/updmap-sys + bin/i386-netbsd/updmap-user + +name tetex.i386-solaris +category TLCore +revision 45860 +shortdesc i386-solaris files of tetex +containersize 724 +containerchecksum 9cff13aaa6391ec2a8b9b2bf30cbcf7a6049aa327cac8006247145f7b0963b1fae1bed49e94f2176d644bd4fd34bfa2a3cce086ee9cfab0e49df2a46d7c69013 +binfiles arch=i386-solaris size=19 + bin/i386-solaris/allcm + bin/i386-solaris/allec + bin/i386-solaris/allneeded + bin/i386-solaris/dvi2fax + bin/i386-solaris/dvired + bin/i386-solaris/fmtutil + bin/i386-solaris/fmtutil-sys + bin/i386-solaris/fmtutil-user + bin/i386-solaris/kpsepath + bin/i386-solaris/kpsetool + bin/i386-solaris/kpsewhere + bin/i386-solaris/kpsexpand + bin/i386-solaris/texconfig + bin/i386-solaris/texconfig-dialog + bin/i386-solaris/texconfig-sys + bin/i386-solaris/texlinks + bin/i386-solaris/updmap + bin/i386-solaris/updmap-sys + bin/i386-solaris/updmap-user + +name tetex.win32 +category TLCore +revision 43958 +shortdesc win32 files of tetex +containersize 804 +containerchecksum 9e89314aa8f46781dab36a1988ca1cf0b2e130c26c287d49a105aad6aa052ae690000501349d4263bd0324f12fb866492bb3a4e3cf2eb10bf8c62b31cd259be3 +binfiles arch=win32 size=6 + bin/win32/fmtutil-sys.exe + bin/win32/fmtutil-user.exe + bin/win32/fmtutil.exe + bin/win32/updmap-sys.exe + bin/win32/updmap-user.exe + bin/win32/updmap.exe + +name tetex.x86_64-cygwin +category TLCore +revision 45860 +shortdesc x86_64-cygwin files of tetex +containersize 728 +containerchecksum 6dfccebe00f6281059f0332f5cde1df5fa39c3ffe7beeff1562499baf6668eccdf2d32d1c7f04411eaf8218eba54c9b4a66459fd23911830d2c537173c77d436 +binfiles arch=x86_64-cygwin size=19 + bin/x86_64-cygwin/allcm + bin/x86_64-cygwin/allec + bin/x86_64-cygwin/allneeded + bin/x86_64-cygwin/dvi2fax + bin/x86_64-cygwin/dvired + bin/x86_64-cygwin/fmtutil + bin/x86_64-cygwin/fmtutil-sys + bin/x86_64-cygwin/fmtutil-user + bin/x86_64-cygwin/kpsepath + bin/x86_64-cygwin/kpsetool + bin/x86_64-cygwin/kpsewhere + bin/x86_64-cygwin/kpsexpand + bin/x86_64-cygwin/texconfig + bin/x86_64-cygwin/texconfig-dialog + bin/x86_64-cygwin/texconfig-sys + bin/x86_64-cygwin/texlinks + bin/x86_64-cygwin/updmap + bin/x86_64-cygwin/updmap-sys + bin/x86_64-cygwin/updmap-user + +name tetex.x86_64-darwin +category TLCore +revision 45860 +shortdesc x86_64-darwin files of tetex +containersize 724 +containerchecksum 40e3c96ec76799e76b24689f25931884154028536ee93382436482aba54d60e7910f9d410eeffdeeb87dac1deb07975bf2d3c77371fc617d6f3b5df391193cdd +binfiles arch=x86_64-darwin size=19 + bin/x86_64-darwin/allcm + bin/x86_64-darwin/allec + bin/x86_64-darwin/allneeded + bin/x86_64-darwin/dvi2fax + bin/x86_64-darwin/dvired + bin/x86_64-darwin/fmtutil + bin/x86_64-darwin/fmtutil-sys + bin/x86_64-darwin/fmtutil-user + bin/x86_64-darwin/kpsepath + bin/x86_64-darwin/kpsetool + bin/x86_64-darwin/kpsewhere + bin/x86_64-darwin/kpsexpand + bin/x86_64-darwin/texconfig + bin/x86_64-darwin/texconfig-dialog + bin/x86_64-darwin/texconfig-sys + bin/x86_64-darwin/texlinks + bin/x86_64-darwin/updmap + bin/x86_64-darwin/updmap-sys + bin/x86_64-darwin/updmap-user + +name tetex.x86_64-darwinlegacy +category TLCore +revision 45860 +shortdesc x86_64-darwinlegacy files of tetex +containersize 740 +containerchecksum 6133ed29f834425dea3c729e948d650bb39f36593f629b3311fd6c43b5cf28f45f7eedc8581747de6ebf4bb60ad497bc0fecdc460680de993784df8a9314815a +binfiles arch=x86_64-darwinlegacy size=19 + bin/x86_64-darwinlegacy/allcm + bin/x86_64-darwinlegacy/allec + bin/x86_64-darwinlegacy/allneeded + bin/x86_64-darwinlegacy/dvi2fax + bin/x86_64-darwinlegacy/dvired + bin/x86_64-darwinlegacy/fmtutil + bin/x86_64-darwinlegacy/fmtutil-sys + bin/x86_64-darwinlegacy/fmtutil-user + bin/x86_64-darwinlegacy/kpsepath + bin/x86_64-darwinlegacy/kpsetool + bin/x86_64-darwinlegacy/kpsewhere + bin/x86_64-darwinlegacy/kpsexpand + bin/x86_64-darwinlegacy/texconfig + bin/x86_64-darwinlegacy/texconfig-dialog + bin/x86_64-darwinlegacy/texconfig-sys + bin/x86_64-darwinlegacy/texlinks + bin/x86_64-darwinlegacy/updmap + bin/x86_64-darwinlegacy/updmap-sys + bin/x86_64-darwinlegacy/updmap-user + +name tetex.x86_64-linux +category TLCore +revision 45860 +shortdesc x86_64-linux files of tetex +containersize 720 +containerchecksum 11e20fa35a76d61ebe1f716b4287ca4a7c0521123b7d1f7b6d63e73d1f821b31b18c1f9ff9d91dff1d90b70a0529babe5eea841e66cc7b4bdd8334e7d9a4bead +binfiles arch=x86_64-linux size=19 + bin/x86_64-linux/allcm + bin/x86_64-linux/allec + bin/x86_64-linux/allneeded + bin/x86_64-linux/dvi2fax + bin/x86_64-linux/dvired + bin/x86_64-linux/fmtutil + bin/x86_64-linux/fmtutil-sys + bin/x86_64-linux/fmtutil-user + bin/x86_64-linux/kpsepath + bin/x86_64-linux/kpsetool + bin/x86_64-linux/kpsewhere + bin/x86_64-linux/kpsexpand + bin/x86_64-linux/texconfig + bin/x86_64-linux/texconfig-dialog + bin/x86_64-linux/texconfig-sys + bin/x86_64-linux/texlinks + bin/x86_64-linux/updmap + bin/x86_64-linux/updmap-sys + bin/x86_64-linux/updmap-user + +name tetex.x86_64-linuxmusl +category TLCore +revision 46840 +shortdesc x86_64-linuxmusl files of tetex +containersize 732 +containerchecksum b72e428c17e7f6abf38ffe7c8c988f7de9b95d72f02f60b6bf83c67f1ce7ddf594c62c2f6bd74e914e8cde2191efb5c02ace2a2ab9edbf449cdc2aed6c495f9b +binfiles arch=x86_64-linuxmusl size=19 + bin/x86_64-linuxmusl/allcm + bin/x86_64-linuxmusl/allec + bin/x86_64-linuxmusl/allneeded + bin/x86_64-linuxmusl/dvi2fax + bin/x86_64-linuxmusl/dvired + bin/x86_64-linuxmusl/fmtutil + bin/x86_64-linuxmusl/fmtutil-sys + bin/x86_64-linuxmusl/fmtutil-user + bin/x86_64-linuxmusl/kpsepath + bin/x86_64-linuxmusl/kpsetool + bin/x86_64-linuxmusl/kpsewhere + bin/x86_64-linuxmusl/kpsexpand + bin/x86_64-linuxmusl/texconfig + bin/x86_64-linuxmusl/texconfig-dialog + bin/x86_64-linuxmusl/texconfig-sys + bin/x86_64-linuxmusl/texlinks + bin/x86_64-linuxmusl/updmap + bin/x86_64-linuxmusl/updmap-sys + bin/x86_64-linuxmusl/updmap-user + +name tetex.x86_64-solaris +category TLCore +revision 45860 +shortdesc x86_64-solaris files of tetex +containersize 728 +containerchecksum 2885e1a0957f7acfc7a22f84945bdba6f40a358a7e11dadb67cb1bbc95552f3844782708b065a25755b7ff7088bce185df0f8b573546318a4a8b1d42096c6b90 +binfiles arch=x86_64-solaris size=19 + bin/x86_64-solaris/allcm + bin/x86_64-solaris/allec + bin/x86_64-solaris/allneeded + bin/x86_64-solaris/dvi2fax + bin/x86_64-solaris/dvired + bin/x86_64-solaris/fmtutil + bin/x86_64-solaris/fmtutil-sys + bin/x86_64-solaris/fmtutil-user + bin/x86_64-solaris/kpsepath + bin/x86_64-solaris/kpsetool + bin/x86_64-solaris/kpsewhere + bin/x86_64-solaris/kpsexpand + bin/x86_64-solaris/texconfig + bin/x86_64-solaris/texconfig-dialog + bin/x86_64-solaris/texconfig-sys + bin/x86_64-solaris/texlinks + bin/x86_64-solaris/updmap + bin/x86_64-solaris/updmap-sys + bin/x86_64-solaris/updmap-user + +name tetragonos +category Package +revision 49732 +shortdesc Four-Corner codes of Chinese characters +relocated 1 +longdesc This is a XeLaTeX package for mapping Chinese characters to +longdesc their codes in the Four-Corner Method. +containersize 207756 +containerchecksum dbb37eec17d41633d951b3202289289bffd9bf9a8f509cfbb7f98baab9b7e684e7d7fbfb5f50ce41251d09d9f0ea81fd9e68fa91984e788e5e43f8e398463fff +doccontainersize 108080 +doccontainerchecksum f55cba055574e78934b8766f02de08f417f625042627c2c1e64cb7fe39ecb1e3553d5b862afe521f4d65805713c856ab000e3db3b7fc906266886f2ebec490a6 +docfiles size=31 + RELOC/doc/xelatex/tetragonos/README.md details="Readme" + RELOC/doc/xelatex/tetragonos/tetragonos-example.tex + RELOC/doc/xelatex/tetragonos/tetragonos.pdf details="Package documentation" language="zh" + RELOC/doc/xelatex/tetragonos/tetragonos.tex +runfiles size=376 + RELOC/tex/xelatex/tetragonos/tetragonos-database.def + RELOC/tex/xelatex/tetragonos/tetragonos.sty +catalogue-contact-bugs https://github.com/Mikumikunisiteageru/tetragonos/issues +catalogue-contact-home https://github.com/Mikumikunisiteageru/tetragonos +catalogue-ctan /macros/xetex/latex/tetragonos +catalogue-date 2019-01-17 05:07:30 +0100 +catalogue-license lppl1.3c +catalogue-topics chinese +catalogue-version 1 + +name teubner category Package -revision 31894 -shortdesc Graphical macros, using embedded PostScript. +revision 40197 +shortdesc Philological typesetting of classical Greek relocated 1 -longdesc TeXdraw is a set of macro definitions for TeX, which allow the -longdesc user to produce PostScript drawings from within TeX and LaTeX. -longdesc TeXdraw has been designed to be extensible. Drawing 'segments' -longdesc are relocatable, self-contained units. Using a combination of -longdesc the TeX's grouping mechanism and the gsave/grestore mechanism -longdesc in PostScript, drawing segments allow for local changes to the -longdesc scaling and line parameters. Using TeX's macro definition -longdesc capability, new drawing commands can be constructed from -longdesc drawing segments. -runfiles size=26 - RELOC/tex/generic/texdraw/blockdiagram.tex - RELOC/tex/generic/texdraw/texdraw.sty - RELOC/tex/generic/texdraw/texdraw.tex - RELOC/tex/generic/texdraw/txdexamp.latex - RELOC/tex/generic/texdraw/txdexamp.tex - RELOC/tex/generic/texdraw/txdps.tex - RELOC/tex/generic/texdraw/txdtools.tex -docfiles size=160 - RELOC/doc/info/texdraw.info - RELOC/doc/support/texdraw/ChangeLog - RELOC/doc/support/texdraw/README - RELOC/doc/support/texdraw/texdraw.cps - RELOC/doc/support/texdraw/texdraw.fns - RELOC/doc/support/texdraw/texdraw.ps - RELOC/doc/support/texdraw/texdraw.texi - RELOC/doc/support/texdraw/txi-src.tgz -catalogue-ctan /graphics/texdraw -catalogue-date 2012-06-05 21:37:17 +0200 -catalogue-license other-free +longdesc An extension to babel greek option for typesetting classical +longdesc Greek with a philological approach. The package works with the +longdesc author's greek fonts using the 'Lispiakos' font shape derived +longdesc from that of the fonts used in printers' shops in Lispia. The +longdesc package name honours the publisher B.G. Teubner +longdesc Verlaggesellschaft whose Greek text publications are of high +longdesc quality. +containersize 10144 +containerchecksum 196c611d9a1f8231541a345a71bb45279715a748a8ef624865c076a8f346f8ac9a7be636feed01130d98445f8fa032ea8f22ff4f4194ae45efa0073231d5cc41 +doccontainersize 1019216 +doccontainerchecksum 3714dd9003e03f0758031dce6dbd5a3840b2d9fee53382fdc66e99d4baaba153694c88fa5afc8e2ffd4af64e210a7e65e2a663baaeed7d96c0800a3fb08cc983 +docfiles size=270 + RELOC/doc/latex/teubner/README details="Readme" + RELOC/doc/latex/teubner/teubner-doc.pdf details="User manual" + RELOC/doc/latex/teubner/teubner-doc.tex + RELOC/doc/latex/teubner/teubner.pdf details="Package documentation" + RELOC/doc/latex/teubner/teubner.txt +srccontainersize 40784 +srccontainerchecksum 667dc5669ddda08eb3f100a501d3d5f3822c8bf1f58d51356fbd51bba3a98b53c47df32243e5733e8da4d136074b8e4c29caed91cb6c5d349079ed1387f3de82 +srcfiles size=43 + RELOC/source/latex/teubner/teubner.dtx +runfiles size=15 + RELOC/tex/latex/teubner/teubner.sty + RELOC/tex/latex/teubner/teubnertx.sty +catalogue-ctan /macros/latex/contrib/teubner +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics greek multilingual-addon +catalogue-version 4.8 + +name tex +category TLCore +revision 50602 +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 916 +containerchecksum 26b0f40fa859af1c76df5adae0d249255cf39c867051eabd703d1d4f56e37fa5c7a7506769b99470c1dd29f716926bbbffa6d9ce888b95f7c17b0765f1716d42 +doccontainersize 43480 +doccontainerchecksum a911ebce516a15f736e210d67c42f5237243c5509d74d8725ab0aa36bcc1c4898a25ce3519a756e3b8b654c68e10887698da3c5bc466d36b27ce2bffae876eb0 +docfiles size=27 + texmf-dist/doc/man/man1/initex.1 + texmf-dist/doc/man/man1/initex.man1.pdf + texmf-dist/doc/man/man1/tex.1 + texmf-dist/doc/man/man1/tex.man1.pdf +catalogue-contact-bugs http://lists.tug.org/tex-k +catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-contact-support http://lists.tug.org/tex-k +catalogue-ctan /systems/knuth/dist/tex +catalogue-date 2018-12-31 06:12:45 +0100 +catalogue-license knuth +catalogue-topics engine +catalogue-version 3.14159265 name tex-ewd category Package revision 15878 -shortdesc Macros to typeset calculational proofs and programs in Dijkstra's style. +shortdesc Macros to typeset calculational proofs and programs in Dijkstra's style relocated 1 longdesc Edsger W. Dijkstra and others suggest a unique style to present longdesc mathematical proofs and to construct programs. This package longdesc provides macros that support calculational proofs and longdesc Dijkstra's "guarded command language". -runfiles size=2 - RELOC/tex/generic/tex-ewd/dotnot.tex +containersize 3388 +containerchecksum 9850acafe002f1b6b147d00aee55e4cd9c1813edbea0f570282119fd8b2f134d3a48c113cc9957c69905c4e88a06097c45829026342d7ec88838870eedd7fc44 +doccontainersize 7684 +doccontainerchecksum 05f6414dd2309401d1800e2b053d7907703e144f829c2e7623a7c98c1313da50c0a659c25fa0d9a0fcb8b50891c575b47d8fb8a90b925e105ed9a6f8c45b8667 docfiles size=8 - RELOC/doc/generic/tex-ewd/README + RELOC/doc/generic/tex-ewd/README details="Readme" RELOC/doc/generic/tex-ewd/bsdlic.txt RELOC/doc/generic/tex-ewd/p0.tex RELOC/doc/generic/tex-ewd/t1.tex +runfiles size=2 + RELOC/tex/generic/tex-ewd/dotnot.tex catalogue-ctan /macros/generic/tex-ewd -catalogue-date 2012-06-27 16:40:35 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license bsd +catalogue-topics maths name tex-font-errors-cheatsheet category Package revision 18314 -shortdesc Cheat sheet outlining the most common TeX font errors. +shortdesc Cheat sheet outlining the most common TeX font errors relocated 1 longdesc This is a compact three-pages document highlighting the TeX longdesc flow of integrating fonts, and explains how some of the most longdesc common font-related error messages occur. Also, hints are given longdesc on how to address those. +containersize 548 +containerchecksum 403b4faae7b16b1eea5a4d2a7d77bcd8a6e7a7b5be54299b79635280be8f82f59d281380754a0bd1b9e53ff4fb534fb3bca0cf8bbe1cf0ee88ee4d925fba103d +doccontainersize 219316 +doccontainerchecksum adc72626fcb4c5a9285ad4a7cfd1c6b984f1aa26c7732f35cdc241f7b00d623f6b646e878317f30d10b9f47f4eee33e923538be58f3c15bee668f4fe652f0170 docfiles size=62 - RELOC/doc/latex/tex-font-errors-cheatsheet/README - RELOC/doc/latex/tex-font-errors-cheatsheet/tex-font-cheatsheet.pdf + RELOC/doc/latex/tex-font-errors-cheatsheet/README details="Readme" + RELOC/doc/latex/tex-font-errors-cheatsheet/tex-font-cheatsheet.pdf details="Package documentation" RELOC/doc/latex/tex-font-errors-cheatsheet/tex-font-cheatsheet.tex +catalogue-contact-home https://github.com/nschloe/tex-font-errors-cheatsheet catalogue-ctan /info/tex-font-errors-cheatsheet -catalogue-date 2012-06-27 16:40:35 +0200 +catalogue-date 2019-02-13 06:40:43 +0100 catalogue-license lppl +catalogue-topics tut-cheat catalogue-version 0.1 -name texfot -category Package -revision 38071 -shortdesc Filter clutter from the output of a TeX run -longdesc The package provides a small Perl script to filter the online -longdesc output from a TeX run, attempting to show only those messages -longdesc which probably deserve some change in the source. The TeX -longdesc invocation itself need not change. -depend texfot.ARCH -runfiles size=4 - texmf-dist/scripts/texfot/texfot.pl -docfiles size=9 - texmf-dist/doc/man/man1/texfot.1 - texmf-dist/doc/man/man1/texfot.man1.pdf - texmf-dist/doc/support/texfot/README -catalogue-ctan /support/texfot -catalogue-date 2015-08-07 18:19:09 +0200 -catalogue-license pd -catalogue-topics comp-mgmt -catalogue-version 1.28 - -name texfot.i386-linux -category Package -revision 33155 -shortdesc i386-linux files of texfot -binfiles arch=i386-linux size=1 - bin/i386-linux/texfot - -name tex-gyre-math -category Package -revision 36916 -shortdesc Maths fonts to match tex-gyre text fonts. -relocated 1 -longdesc TeX-Gyre-Math is a collection of maths fonts to match the text -longdesc fonts of the TeX-Gyre collection. The collection is available -longdesc in OpenType format, only; fonts conform to the developing -longdesc standards for OpenType maths fonts. TeX-Gyre-Math-Bonum (to -longdesc match TeX-Gyre-Bonum), TeX-Gyre-Math-Pagella (to match TeX-Gyre- -longdesc Pagella), TeX-Gyre-Math-Schola (to match TeX-Gyre-Schola) and -longdesc TeX-Gyre-Math-Termes (to match TeX-Gyre-Termes) fonts are -longdesc provided. -runfiles size=552 - RELOC/fonts/opentype/public/tex-gyre-math/texgyrebonum-math.otf - RELOC/fonts/opentype/public/tex-gyre-math/texgyrepagella-math.otf - RELOC/fonts/opentype/public/tex-gyre-math/texgyreschola-math.otf - RELOC/fonts/opentype/public/tex-gyre-math/texgyretermes-math.otf -docfiles size=130 - RELOC/doc/fonts/tex-gyre-math/GUST-FONT-LICENSE.txt - RELOC/doc/fonts/tex-gyre-math/INSTALL.txt - RELOC/doc/fonts/tex-gyre-math/MANIFEST-TeX-Gyre-Bonum-Math.txt - RELOC/doc/fonts/tex-gyre-math/MANIFEST-TeX-Gyre-Pagella-Math.txt - RELOC/doc/fonts/tex-gyre-math/MANIFEST-TeX-Gyre-Schola-Math.txt - RELOC/doc/fonts/tex-gyre-math/MANIFEST-TeX-Gyre-Termes-Math.txt - RELOC/doc/fonts/tex-gyre-math/README - RELOC/doc/fonts/tex-gyre-math/README-TeX-Gyre-Bonum-Math.txt - RELOC/doc/fonts/tex-gyre-math/README-TeX-Gyre-Pagella-Math.txt - RELOC/doc/fonts/tex-gyre-math/README-TeX-Gyre-Schola-Math.txt - RELOC/doc/fonts/tex-gyre-math/README-TeX-Gyre-Termes-Math.txt - RELOC/doc/fonts/tex-gyre-math/math-test-context.tex - RELOC/doc/fonts/tex-gyre-math/math-test.tex - RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_bonum_math.pdf - RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_bonum_math.tex - RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_pagella_math.pdf - RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_pagella_math.tex - RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_schola_math.pdf - RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_schola_math.tex - RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_termes_math.pdf - RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_termes_math.tex - RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_bonum_math.pdf - RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_bonum_math.tex - RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_pagella_math.pdf - RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_pagella_math.tex - RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_schola_math.pdf - RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_schola_math.tex - RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_termes_math.pdf - RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_termes_math.tex - RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_bonum_math.docx - RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_bonum_math.pdf - RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_pagella_math.docx - RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_pagella_math.pdf - RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_schola_math.docx - RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_schola_math.pdf - RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_termes_math.docx - RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_termes_math.pdf - RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_bonum_math.pdf - RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_bonum_math.tex - RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_pagella_math.pdf - RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_pagella_math.tex - RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_schola_math.pdf - RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_schola_math.tex - RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_termes_math.pdf - RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_termes_math.tex -catalogue-ctan /fonts/tex-gyre-math -catalogue-date 2015-04-18 11:33:52 +0200 -catalogue-license gfl - name tex-gyre category Package -revision 18651 -shortdesc TeX Fonts extending freely available URW fonts. +revision 48058 +shortdesc TeX Fonts extending freely available URW fonts relocated 1 longdesc The TeX-GYRE bundle consists of six font families: TeX Gyre longdesc Adventor is based on the URW Gothic L family of fonts (which is @@ -159531,19 +263603,19 @@ longdesc Gyre Heros is based on URW Nimbus Sans L (from Helvetica, longdesc prepared by Max Miedinger, with Eduard Hoffmann in 1957). TeX longdesc Gyre Pagella is based on URW Palladio L (from Palatino, longdesc designed by Hermann Zapf in the 1940s). TeX Gyre Schola is -longdesc based on the URW Century Schoolbook L family (which was -longdesc designed by Morris Fuller Benton for the American Type -longdesc Founders). TeX Gyre Termes is based on the URW Nimbus Roman No9 -longdesc L family of fonts (whose original, Times, was designed by +longdesc based on the URW Century Schoolbook L family (from Century +longdesc Schoolbook, designed by Morris Fuller Benton for the American +longdesc Type Founders). TeX Gyre Termes is based on the URW Nimbus +longdesc Roman No9 L family of fonts (from Times New Roman, designed by longdesc Stanley Morison together with Starling Burgess and Victor longdesc Lardent and first offered by Monotype). The constituent -longdesc standard faces of each family have been greatly extended, and -longdesc contain nearly 1100 glyphs each (though Chorus omits Greek -longdesc support, has no small-caps family and has approximately 800 -longdesc glyphs). Each family is available in Adobe Type 1 and Open Type +longdesc standard faces of each family have been greatly extended +longdesc (though Chorus omits Greek support and has no small-caps +longdesc family). Each family is available in Adobe Type 1 and Open Type longdesc formats, and LaTeX support (for use with a variety of longdesc encodings) is provided. Vietnamese characters were added by Han -longdesc The Thanh. +longdesc The Thanh. There are companion maths fonts for several of these +longdesc designs, listed in the TeX Gyre Math package. execute addMap qag.map execute addMap qbk.map execute addMap qcr.map @@ -159552,7 +263624,102 @@ execute addMap qhv.map execute addMap qpl.map execute addMap qtm.map execute addMap qzc.map -runfiles size=6213 +containersize 7748428 +containerchecksum 7e8ab25cd563e2be7f333f5f4232a7d64e9cd8ef2b5b898ad5e33af96d455f3bb0214184650dde76770cb95f3bfc6b10f35286e0263e52a6f43affa289920327 +doccontainersize 6673112 +doccontainerchecksum ebfea3bfa958175078b78ee0f2ea36a4de289b967f8fc900268dce7b3d356d2faae9d9a1123c48a06e3ec78b05863626fa97cb3e249d1b87c036fe00c194ceec +docfiles size=2369 + RELOC/doc/fonts/tex-gyre/GUST-FONT-LICENSE.txt + RELOC/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Adventor.txt + RELOC/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Bonum.txt + RELOC/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Chorus.txt + RELOC/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Cursor.txt + RELOC/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Heros.txt + RELOC/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Pagella.txt + RELOC/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Schola.txt + RELOC/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Termes.txt + RELOC/doc/fonts/tex-gyre/README-TeX-Gyre-Adventor.txt + RELOC/doc/fonts/tex-gyre/README-TeX-Gyre-Bonum.txt + RELOC/doc/fonts/tex-gyre/README-TeX-Gyre-Chorus.txt + RELOC/doc/fonts/tex-gyre/README-TeX-Gyre-Cursor.txt + RELOC/doc/fonts/tex-gyre/README-TeX-Gyre-Heros.txt + RELOC/doc/fonts/tex-gyre/README-TeX-Gyre-Pagella.txt + RELOC/doc/fonts/tex-gyre/README-TeX-Gyre-Schola.txt + RELOC/doc/fonts/tex-gyre/README-TeX-Gyre-Termes.txt + RELOC/doc/fonts/tex-gyre/goadb999.nam + RELOC/doc/fonts/tex-gyre/qag-hist.txt + RELOC/doc/fonts/tex-gyre/qag-info.pdf + RELOC/doc/fonts/tex-gyre/qbk-hist.txt + RELOC/doc/fonts/tex-gyre/qbk-info.pdf + RELOC/doc/fonts/tex-gyre/qbk-test.pdf + RELOC/doc/fonts/tex-gyre/qbk-test.tex + RELOC/doc/fonts/tex-gyre/qbkb.fea + RELOC/doc/fonts/tex-gyre/qbkbi.fea + RELOC/doc/fonts/tex-gyre/qbkr.fea + RELOC/doc/fonts/tex-gyre/qbkri.fea + RELOC/doc/fonts/tex-gyre/qcr-hist.txt + RELOC/doc/fonts/tex-gyre/qcr-info.pdf + RELOC/doc/fonts/tex-gyre/qcr-test.pdf + RELOC/doc/fonts/tex-gyre/qcr-test.tex + RELOC/doc/fonts/tex-gyre/qcrb.fea + RELOC/doc/fonts/tex-gyre/qcrbi.fea + RELOC/doc/fonts/tex-gyre/qcrr.fea + RELOC/doc/fonts/tex-gyre/qcrri.fea + RELOC/doc/fonts/tex-gyre/qcs-hist.txt + RELOC/doc/fonts/tex-gyre/qcs-info.pdf + RELOC/doc/fonts/tex-gyre/qcs-test.pdf + RELOC/doc/fonts/tex-gyre/qcs-test.tex + RELOC/doc/fonts/tex-gyre/qcsb.fea + RELOC/doc/fonts/tex-gyre/qcsbi.fea + RELOC/doc/fonts/tex-gyre/qcsr.fea + RELOC/doc/fonts/tex-gyre/qcsri.fea + RELOC/doc/fonts/tex-gyre/qhv-hist.txt + RELOC/doc/fonts/tex-gyre/qhv-info.pdf + RELOC/doc/fonts/tex-gyre/qhv-test.pdf + RELOC/doc/fonts/tex-gyre/qhv-test.tex + RELOC/doc/fonts/tex-gyre/qhvb.fea + RELOC/doc/fonts/tex-gyre/qhvbi.fea + RELOC/doc/fonts/tex-gyre/qhvcb.fea + RELOC/doc/fonts/tex-gyre/qhvcbi.fea + RELOC/doc/fonts/tex-gyre/qhvcr.fea + RELOC/doc/fonts/tex-gyre/qhvcri.fea + RELOC/doc/fonts/tex-gyre/qhvr.fea + RELOC/doc/fonts/tex-gyre/qhvri.fea + RELOC/doc/fonts/tex-gyre/qpl-hist.txt + RELOC/doc/fonts/tex-gyre/qpl-info.pdf + RELOC/doc/fonts/tex-gyre/qtm-hist.txt + RELOC/doc/fonts/tex-gyre/qtm-info.pdf + RELOC/doc/fonts/tex-gyre/qtm-test.pdf + RELOC/doc/fonts/tex-gyre/qtm-test.tex + RELOC/doc/fonts/tex-gyre/qtmb.fea + RELOC/doc/fonts/tex-gyre/qtmbi.fea + RELOC/doc/fonts/tex-gyre/qtmr.fea + RELOC/doc/fonts/tex-gyre/qtmri.fea + RELOC/doc/fonts/tex-gyre/qzc-hist.txt + RELOC/doc/fonts/tex-gyre/qzc-info.pdf + RELOC/doc/fonts/tex-gyre/qzc-test.pdf + RELOC/doc/fonts/tex-gyre/qzc-test.tex + RELOC/doc/fonts/tex-gyre/qzcmi.fea +srccontainersize 1016896 +srccontainerchecksum 68a06261fed419e106e8f6958a38bb0f5b78c3ee10b8b68365b3bf9925360cf726c4715954590f0b0b86faadfe636f50bce0ebf4b3b00162ffb4df54a2adc803 +srcfiles size=3204 + RELOC/source/fonts/tex-gyre/texgyreadventor-bold.fea + RELOC/source/fonts/tex-gyre/texgyreadventor-bold.sfd + RELOC/source/fonts/tex-gyre/texgyreadventor-bolditalic.fea + RELOC/source/fonts/tex-gyre/texgyreadventor-bolditalic.sfd + RELOC/source/fonts/tex-gyre/texgyreadventor-italic.fea + RELOC/source/fonts/tex-gyre/texgyreadventor-italic.sfd + RELOC/source/fonts/tex-gyre/texgyreadventor-regular.fea + RELOC/source/fonts/tex-gyre/texgyreadventor-regular.sfd + RELOC/source/fonts/tex-gyre/texgyrepagella-bold.fea + RELOC/source/fonts/tex-gyre/texgyrepagella-bold.sfd + RELOC/source/fonts/tex-gyre/texgyrepagella-bolditalic.fea + RELOC/source/fonts/tex-gyre/texgyrepagella-bolditalic.sfd + RELOC/source/fonts/tex-gyre/texgyrepagella-italic.fea + RELOC/source/fonts/tex-gyre/texgyrepagella-italic.sfd + RELOC/source/fonts/tex-gyre/texgyrepagella-regular.fea + RELOC/source/fonts/tex-gyre/texgyrepagella-regular.sfd +runfiles size=6656 RELOC/fonts/afm/public/tex-gyre/qagb.afm RELOC/fonts/afm/public/tex-gyre/qagbi.afm RELOC/fonts/afm/public/tex-gyre/qagr.afm @@ -160366,129 +264533,8330 @@ runfiles size=6213 RELOC/tex/latex/tex-gyre/ts1qpl.fd RELOC/tex/latex/tex-gyre/ts1qtm.fd RELOC/tex/latex/tex-gyre/ts1qzc.fd -docfiles size=2103 - RELOC/doc/fonts/tex-gyre/GUST-FONT-LICENSE.txt - RELOC/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Adventor.txt - RELOC/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Bonum.txt - RELOC/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Chorus.txt - RELOC/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Cursor.txt - RELOC/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Heros.txt - RELOC/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Pagella.txt - RELOC/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Schola.txt - RELOC/doc/fonts/tex-gyre/MANIFEST-TeX-Gyre-Termes.txt - RELOC/doc/fonts/tex-gyre/README-TeX-Gyre-Adventor.txt - RELOC/doc/fonts/tex-gyre/README-TeX-Gyre-Bonum.txt - RELOC/doc/fonts/tex-gyre/README-TeX-Gyre-Chorus.txt - RELOC/doc/fonts/tex-gyre/README-TeX-Gyre-Cursor.txt - RELOC/doc/fonts/tex-gyre/README-TeX-Gyre-Heros.txt - RELOC/doc/fonts/tex-gyre/README-TeX-Gyre-Pagella.txt - RELOC/doc/fonts/tex-gyre/README-TeX-Gyre-Schola.txt - RELOC/doc/fonts/tex-gyre/README-TeX-Gyre-Termes.txt - RELOC/doc/fonts/tex-gyre/goadb999.nam - RELOC/doc/fonts/tex-gyre/qag-hist.txt - RELOC/doc/fonts/tex-gyre/qag-info.pdf - RELOC/doc/fonts/tex-gyre/qag-test.pdf - RELOC/doc/fonts/tex-gyre/qag-test.tex - RELOC/doc/fonts/tex-gyre/qagb.fea - RELOC/doc/fonts/tex-gyre/qagbi.fea - RELOC/doc/fonts/tex-gyre/qagr.fea - RELOC/doc/fonts/tex-gyre/qagri.fea - RELOC/doc/fonts/tex-gyre/qbk-hist.txt - RELOC/doc/fonts/tex-gyre/qbk-info.pdf - RELOC/doc/fonts/tex-gyre/qbk-test.pdf - RELOC/doc/fonts/tex-gyre/qbk-test.tex - RELOC/doc/fonts/tex-gyre/qbkb.fea - RELOC/doc/fonts/tex-gyre/qbkbi.fea - RELOC/doc/fonts/tex-gyre/qbkr.fea - RELOC/doc/fonts/tex-gyre/qbkri.fea - RELOC/doc/fonts/tex-gyre/qcr-hist.txt - RELOC/doc/fonts/tex-gyre/qcr-info.pdf - RELOC/doc/fonts/tex-gyre/qcr-test.pdf - RELOC/doc/fonts/tex-gyre/qcr-test.tex - RELOC/doc/fonts/tex-gyre/qcrb.fea - RELOC/doc/fonts/tex-gyre/qcrbi.fea - RELOC/doc/fonts/tex-gyre/qcrr.fea - RELOC/doc/fonts/tex-gyre/qcrri.fea - RELOC/doc/fonts/tex-gyre/qcs-hist.txt - RELOC/doc/fonts/tex-gyre/qcs-info.pdf - RELOC/doc/fonts/tex-gyre/qcs-test.pdf - RELOC/doc/fonts/tex-gyre/qcs-test.tex - RELOC/doc/fonts/tex-gyre/qcsb.fea - RELOC/doc/fonts/tex-gyre/qcsbi.fea - RELOC/doc/fonts/tex-gyre/qcsr.fea - RELOC/doc/fonts/tex-gyre/qcsri.fea - RELOC/doc/fonts/tex-gyre/qhv-hist.txt - RELOC/doc/fonts/tex-gyre/qhv-info.pdf - RELOC/doc/fonts/tex-gyre/qhv-test.pdf - RELOC/doc/fonts/tex-gyre/qhv-test.tex - RELOC/doc/fonts/tex-gyre/qhvb.fea - RELOC/doc/fonts/tex-gyre/qhvbi.fea - RELOC/doc/fonts/tex-gyre/qhvcb.fea - RELOC/doc/fonts/tex-gyre/qhvcbi.fea - RELOC/doc/fonts/tex-gyre/qhvcr.fea - RELOC/doc/fonts/tex-gyre/qhvcri.fea - RELOC/doc/fonts/tex-gyre/qhvr.fea - RELOC/doc/fonts/tex-gyre/qhvri.fea - RELOC/doc/fonts/tex-gyre/qpl-hist.txt - RELOC/doc/fonts/tex-gyre/qpl-info.pdf - RELOC/doc/fonts/tex-gyre/qpl-test.pdf - RELOC/doc/fonts/tex-gyre/qpl-test.tex - RELOC/doc/fonts/tex-gyre/qplb.fea - RELOC/doc/fonts/tex-gyre/qplbi.fea - RELOC/doc/fonts/tex-gyre/qplr.fea - RELOC/doc/fonts/tex-gyre/qplri.fea - RELOC/doc/fonts/tex-gyre/qtm-hist.txt - RELOC/doc/fonts/tex-gyre/qtm-info.pdf - RELOC/doc/fonts/tex-gyre/qtm-test.pdf - RELOC/doc/fonts/tex-gyre/qtm-test.tex - RELOC/doc/fonts/tex-gyre/qtmb.fea - RELOC/doc/fonts/tex-gyre/qtmbi.fea - RELOC/doc/fonts/tex-gyre/qtmr.fea - RELOC/doc/fonts/tex-gyre/qtmri.fea - RELOC/doc/fonts/tex-gyre/qzc-hist.txt - RELOC/doc/fonts/tex-gyre/qzc-info.pdf - RELOC/doc/fonts/tex-gyre/qzc-test.pdf - RELOC/doc/fonts/tex-gyre/qzc-test.tex - RELOC/doc/fonts/tex-gyre/qzcmi.fea +catalogue-contact-home http://www.gust.org.pl/projects/e-foundry/tex-gyre catalogue-ctan /fonts/tex-gyre -catalogue-date 2014-06-07 20:47:53 +0200 -catalogue-license gfsl -catalogue-version 2.004 +catalogue-date 2018-06-16 09:34:11 +0200 +catalogue-license gfl +catalogue-topics font font-otf font-type1 font-collection +catalogue-version 2.501 + +name tex-gyre-math +category Package +revision 41264 +shortdesc Maths fonts to match tex-gyre text fonts +relocated 1 +longdesc TeX-Gyre-Math is a collection of maths fonts to match the text +longdesc fonts of the TeX-Gyre collection. The collection is available +longdesc in OpenType format, only; fonts conform to the developing +longdesc standards for OpenType maths fonts. TeX-Gyre-Math-Bonum (to +longdesc match TeX-Gyre-Bonum), TeX-Gyre-Math-Pagella (to match +longdesc TeX-Gyre-Pagella), TeX-Gyre-Math-Schola (to match +longdesc TeX-Gyre-Schola) and TeX-Gyre-Math-Termes (to match +longdesc TeX-Gyre-Termes) fonts are provided. +containersize 1182712 +containerchecksum a50a9eaa30cfd7754ae702a3bd6fced2d07fac858215b913945665940c71a0aafd2b59a0d0baa0fb9d5090773ef69a86864cc11126a5e30adc3d0e94cdbd2594 +doccontainersize 436052 +doccontainerchecksum cd346226dc36bb4fb5324a43dfab7790cd80ec6bba992849dfcca74ea6fe8d85fe7e0ac66408a41ac1ef644e6b32c9b06d337c4f394fbfd8fba4153fbc1abfe9 +docfiles size=179 + RELOC/doc/fonts/tex-gyre-math/GUST-FONT-LICENSE.txt + RELOC/doc/fonts/tex-gyre-math/INSTALL.txt + RELOC/doc/fonts/tex-gyre-math/LICENSE-DejaVu.txt + RELOC/doc/fonts/tex-gyre-math/MANIFEST-TeX-Gyre-Bonum-Math.txt + RELOC/doc/fonts/tex-gyre-math/MANIFEST-TeX-Gyre-DejaVu-Math.txt + RELOC/doc/fonts/tex-gyre-math/MANIFEST-TeX-Gyre-Pagella-Math.txt + RELOC/doc/fonts/tex-gyre-math/MANIFEST-TeX-Gyre-Schola-Math.txt + RELOC/doc/fonts/tex-gyre-math/MANIFEST-TeX-Gyre-Termes-Math.txt + RELOC/doc/fonts/tex-gyre-math/README details="Readme" + RELOC/doc/fonts/tex-gyre-math/README-TeX-Gyre-Bonum-Math.txt + RELOC/doc/fonts/tex-gyre-math/README-TeX-Gyre-DejaVu-Math.txt + RELOC/doc/fonts/tex-gyre-math/README-TeX-Gyre-Pagella-Math.txt + RELOC/doc/fonts/tex-gyre-math/README-TeX-Gyre-Schola-Math.txt + RELOC/doc/fonts/tex-gyre-math/README-TeX-Gyre-Termes-Math.txt + RELOC/doc/fonts/tex-gyre-math/math-test-context.tex + RELOC/doc/fonts/tex-gyre-math/math-test.tex + RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_bonum_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_bonum_math.tex + RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_dejavu_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_dejavu_math.tex + RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_pagella_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_pagella_math.tex + RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_schola_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_schola_math.tex + RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_termes_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-context-texgyre_termes_math.tex + RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_bonum_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_bonum_math.tex + RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_dejavu_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_dejavu_math.tex + RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_pagella_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_pagella_math.tex + RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_schola_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_schola_math.tex + RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_termes_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-lualatex-texgyre_termes_math.tex + RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_bonum_math.docx + RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_bonum_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_dejavu_math.docx + RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_dejavu_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_pagella_math.docx + RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_pagella_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_schola_math.docx + RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_schola_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_termes_math.docx + RELOC/doc/fonts/tex-gyre-math/test-word-texgyre_termes_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_bonum_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_bonum_math.tex + RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_dejavu_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_dejavu_math.tex + RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_pagella_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_pagella_math.tex + RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_schola_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_schola_math.tex + RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_termes_math.pdf + RELOC/doc/fonts/tex-gyre-math/test-xelatex-texgyre_termes_math.tex +srccontainersize 474164 +srccontainerchecksum 3c58821e5307257578ec149317cb621331aafa00bfa465eeb055f1f93691ce57a489a32a7eea068b12b70228433031de33c0ffe36b0e8e10b368e0ef5e33fe24 +srcfiles size=780 + RELOC/source/fonts/tex-gyre-math/texgyredejavu-math.sfd +runfiles size=681 + RELOC/fonts/opentype/public/tex-gyre-math/texgyrebonum-math.otf + RELOC/fonts/opentype/public/tex-gyre-math/texgyredejavu-math.otf + RELOC/fonts/opentype/public/tex-gyre-math/texgyrepagella-math.otf + RELOC/fonts/opentype/public/tex-gyre-math/texgyreschola-math.otf + RELOC/fonts/opentype/public/tex-gyre-math/texgyretermes-math.otf +catalogue-ctan /fonts/tex-gyre-math +catalogue-date 2018-06-15 14:16:16 +0200 +catalogue-license gfl +catalogue-topics font font-collection font-maths font-otf + +name tex-ini-files +category Package +revision 40533 +shortdesc Model TeX format creation files +relocated 1 +longdesc This bundle provides a collection of model .ini files for +longdesc creating TeX formats. These files are commonly used to +longdesc introduced distribution-dependent variations in formats. They +longdesc are also used to allow existing format source files to be used +longdesc with newer engines, for example to adapt the plain e-TeX source +longdesc file to work with XeTeX and LuaTeX. +containersize 3264 +containerchecksum c053ad3aaa49224f26999112b3f5f28eb6ba34cd130cb54ab5ce67971632d41a8470c361e4471f9d75831d230737a0197186b05c25a9b401286bb4d5525b12a2 +doccontainersize 1336 +doccontainerchecksum c44315e35793a1e77b621af53061c25605fbc5ffce2f07fe52bc5e58f4db0e9252cdb1935c14d8dc632bf1b84c18f3ec18506c5415831ad230c7a314f4f7b670 +docfiles size=1 + RELOC/doc/generic/tex-ini-files/README.md details="Readme" +runfiles size=8 + RELOC/tex/generic/tex-ini-files/dvilualatex.ini + RELOC/tex/generic/tex-ini-files/dviluatex.ini + RELOC/tex/generic/tex-ini-files/lualatex.ini + RELOC/tex/generic/tex-ini-files/luatex.ini + RELOC/tex/generic/tex-ini-files/luatexconfig.tex + RELOC/tex/generic/tex-ini-files/pdftexconfig.tex + RELOC/tex/generic/tex-ini-files/xelatex.ini + RELOC/tex/generic/tex-ini-files/xetex.ini +catalogue-ctan /macros/generic/tex-ini-files +catalogue-date 2016-11-05 08:51:03 +0100 +catalogue-license pd +catalogue-topics latex3 + +name tex-label +category Package +revision 16372 +shortdesc Place a classification on each page of a document +relocated 1 +longdesc Enables the user to place a 'classification' label on each +longdesc page, at the bottom to the right of the page number +containersize 940 +containerchecksum 513310d4dc5240d0b290d0acc941455ba64e069d19c223670d05a632033aba8de367d5dce6acf073af4df476876d3ee414dcf9f1f579738bf9bdfe6738c19d36 +doccontainersize 36596 +doccontainerchecksum bc705cf6812515923d60cf44b75830bd3ea78f078c9ef88ded3e94f060155e1fbf5dc1485cbaa8530e1f10b41b421e70bcec6c61066ee98b498aba7ea8799dc4 +docfiles size=14 + RELOC/doc/latex/tex-label/README details="Readme" + RELOC/doc/latex/tex-label/tex-label-demo.pdf details="Example of use" + RELOC/doc/latex/tex-label/tex-label-demo.tex + RELOC/doc/latex/tex-label/tex-label-doc.pdf details="Package documentation" + RELOC/doc/latex/tex-label/tex-label-doc.tex +srccontainersize 420 +srccontainerchecksum 07c29de4e85fc21404dad1da3a01a5037b641526110fe5410899c60aeae6a92836de322895afc83824df60f431955a4da959c4d4c21cf17dc32929f445cc1ed8 +srcfiles size=1 + RELOC/source/latex/tex-label/Makefile +runfiles size=1 + RELOC/tex/latex/tex-label/tex-label.sty +catalogue-ctan /macros/latex/contrib/tex-label +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics security + +name tex-locale +category Package +revision 48500 +shortdesc Localisation support for TeX and LaTeX documents +relocated 1 +longdesc This package uses both tracklang and texosquery to look up the +longdesc locale information from the operating system and provide +longdesc commands that can access locale-dependent information, such as +longdesc the currency symbol and decimal separator. The file +longdesc tex-locale.tex provides generic TeX code. The LaTeX package +longdesc tex-locale.sty can additionally load babel or polyglossia with +longdesc the locale's language setting, as well as various other +longdesc packages such as fontspec (XeLaTeX/LuaLaTeX) or fontenc + +longdesc inputenc (pdfLaTeX). +containersize 12328 +containerchecksum 0e3aca622bb6fb49a06a3aea1d997414add9272dd39c10c3a1d80956dece59882993b24366a1126acab80f8a7c8328a30756f727210f829f5eb838ac0b9cb1a6 +doccontainersize 940332 +doccontainerchecksum d3898da3687603b1f1f3f2f5b203d01c985ab0c3e39eeb05dc7c855c14fad8b73649777e4a0b7844c242bc8946cab80b585987eda37a1c10e3ba75c6955fee23 +docfiles size=245 + RELOC/doc/generic/tex-locale/CHANGES + RELOC/doc/generic/tex-locale/README details="Readme" + RELOC/doc/generic/tex-locale/samples/sample-locale-xe.pdf + RELOC/doc/generic/tex-locale/samples/sample-locale-xe.tex + RELOC/doc/generic/tex-locale/samples/sample-locale-xeltx.pdf + RELOC/doc/generic/tex-locale/samples/sample-locale-xeltx.tex + RELOC/doc/generic/tex-locale/samples/sample-locale-xeltx2.pdf + RELOC/doc/generic/tex-locale/samples/sample-locale-xeltx2.tex + RELOC/doc/generic/tex-locale/samples/sample-locale-xeltx3.pdf + RELOC/doc/generic/tex-locale/samples/sample-locale-xeltx3.tex + RELOC/doc/generic/tex-locale/samples/sample-locale.pdf + RELOC/doc/generic/tex-locale/samples/sample-locale.tex + RELOC/doc/generic/tex-locale/samples/sample-locale2.pdf + RELOC/doc/generic/tex-locale/samples/sample-locale2.tex + RELOC/doc/generic/tex-locale/tex-locale.pdf details="Package documentation" +srccontainersize 44596 +srccontainerchecksum b24a01b9845f79a86c12911e71ef179a4dd8f5a8284d067b760a8ac3cb906cbf2465ae3617e0196d9163348f3a865fea4e5869adac9921088b13d738803f87f4 +srcfiles size=74 + RELOC/source/latex/tex-locale/tex-locale.dtx + RELOC/source/latex/tex-locale/tex-locale.ins +runfiles size=23 + RELOC/tex/generic/tex-locale/tex-locale.tex + RELOC/tex/latex/tex-locale/tex-locale-encodings.def + RELOC/tex/latex/tex-locale/tex-locale-scripts-enc.def + RELOC/tex/latex/tex-locale/tex-locale-support.def + RELOC/tex/latex/tex-locale/tex-locale.sty +catalogue-ctan /macros/generic/tex-locale +catalogue-date 2018-08-28 05:08:56 +0200 +catalogue-license lppl1.3 +catalogue-topics env-query sys-supp +catalogue-version 1.0 + +name tex-overview +category Package +revision 41403 +shortdesc An overview of the development of TeX +relocated 1 +longdesc The document gives a short overview of TeX and its children, as +longdesc well as the macro packages LaTeX and ConTeXt. +containersize 432 +containerchecksum 1217aeba55d723dad2843509ad3adf205090298f2362ba4ce23d73ec581e439c344f055281a95f82bd8cec298c77da012cf892e60369562238bba7f8b8d258a1 +doccontainersize 260424 +doccontainerchecksum 0cd9941afc0e50d3d936f5ba1f9d2c7f16244899982ff7eaa44bb019653b5e4e142edc1ee608ca1664636c77178dd8a02f4625a2216a019e770651a718f0a27b +docfiles size=79 + RELOC/doc/latex/tex-overview/README.md details="Readme" + RELOC/doc/latex/tex-overview/tex-overview-aux.tex + RELOC/doc/latex/tex-overview/tex-overview.pdf details="The document itself" + RELOC/doc/latex/tex-overview/tex-overview.tex +catalogue-ctan /info/tex-overview +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics documentation +catalogue-version 0.2 + +name tex-ps +category Package +revision 15878 +shortdesc TeX to PostScript generic macros and add-ons +relocated 1 +longdesc TeX to PostScript generic macros and add-ons: transformations +longdesc of EPS files, prepress preparation, color separation, mirror, +longdesc etc. +containersize 21404 +containerchecksum cc616b501be7c0724646d5e0f326a5729df8f4cb0c4070f92bdd3b5b370e496efd6208b3ec8b2387713810b9764c75525689f434b7f482a83fb0b8e9b0383cb6 +doccontainersize 246188 +doccontainerchecksum 2f82f63954c1407c2caa9c39a538ed1cffeabfde8ac0506906f0f28430d12e18d858040ee66f2326cad3fa758c23d1ed490b70c5d18eb68b699b7ddd0afd15d1 +docfiles size=94 + RELOC/doc/generic/tex-ps/cmyk-hax/README + RELOC/doc/generic/tex-ps/cmyk-hax/cmyk-doc.pdf + RELOC/doc/generic/tex-ps/cmyk-hax/fountain.eps + RELOC/doc/generic/tex-ps/cmyk-hax/gdansk.eps + RELOC/doc/generic/tex-ps/cmyk-hax/rules.tex + RELOC/doc/generic/tex-ps/cmyk-hax/sam1-sep.bat + RELOC/doc/generic/tex-ps/cmyk-hax/sample1.tex + RELOC/doc/generic/tex-ps/cmyk-hax/sample2.tex + RELOC/doc/generic/tex-ps/cmyk-hax/sample3.tex + RELOC/doc/generic/tex-ps/cmyk-hax/sample4.tex + RELOC/doc/generic/tex-ps/cmyk-hax/screen.eps + RELOC/doc/generic/tex-ps/poligraf/README + RELOC/doc/generic/tex-ps/poligraf/kol-cmyk.eps + RELOC/doc/generic/tex-ps/poligraf/sample.tex + RELOC/doc/generic/tex-ps/poligraf/samplelx.tex +runfiles size=24 + RELOC/dvips/tex-ps/crops.pro + RELOC/dvips/tex-ps/mirr.hd + RELOC/dvips/tex-ps/separate.pro + RELOC/tex/generic/tex-ps/cmyk-hax.tex + RELOC/tex/generic/tex-ps/epsfx.tex + RELOC/tex/generic/tex-ps/poligraf.sty + RELOC/tex/generic/tex-ps/trans.tex +catalogue-also epsfx cmyk-hax trans mirr poligraf +catalogue-ctan /macros/generic/TeX-PS +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics ps-manip + +name tex-refs +category Package +revision 44131 +catalogue tex-references +shortdesc References for TeX and Friends +relocated 1 +longdesc This is an ongoing project with the aim of providing a help +longdesc file for LaTeX (and its friends like ConTeXt, MetaPost, +longdesc Metafont, etc.) using a state-of-the-art source format, aka +longdesc DocBook/XML. +containersize 540 +containerchecksum 12ce34f2173ddb5be885b174a6be708fb47822cdd34e05ffcf6f17cb28ccfc32528206c9e73373a6f68a5f3987cb9e244c5093539f14db3a4eab0daf8ff7fbaf +doccontainersize 423940 +doccontainerchecksum 318f2872f308b2f22d96af2a553d9e13b60e1f6ffc1cbdf44e123fb2ca82423ff8bb7aba524f0e8570b8086ef85833cb11070d7848b3212b87ae0046405c1a5a +docfiles size=314 + RELOC/doc/generic/tex-refs/README details="Readme" + RELOC/doc/generic/tex-refs/tex-refs-0.4.1.tar.bz2 + RELOC/doc/generic/tex-refs/tex-refs.css + RELOC/doc/generic/tex-refs/tex-refs.epub + RELOC/doc/generic/tex-refs/tex-refs.html details="The references themselves" + RELOC/doc/generic/tex-refs/tex-refs.txt +catalogue-contact-home http://www.miwie.org/tex-refs +catalogue-ctan /info/tex-references +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license other-free +catalogue-topics documentation +catalogue-version 0.4.8 + +name tex-virtual-academy-pl +category Package +revision 34177 +shortdesc TeX usage web pages, in Polish +relocated 1 +longdesc TeX Virtual Academy is a bundle of Polish documentation in HTML +longdesc format about TeX and Co. It contains information for beginners, +longdesc LaTeX packages, descriptions, etc. +containersize 520 +containerchecksum b9358f50caf39d274c1684d4514fef0439e015588431883955f7aec63d35f7176ed61671f72cda7ae28125b2a977f25ae66b028b21017f106d8f78bbfc7df109 +doccontainersize 1080060 +doccontainerchecksum aa73261fb0ffdbb7cdbf85df354490a72bd95e4d98e4a497e98666e6f5533a7f05a7132533db044ba993d86e03fc21825bc6fa7f262e5a0bcdb6de8114d38eee +docfiles size=837 + RELOC/doc/generic/tex-virtual-academy-pl/README details="Readme" + RELOC/doc/generic/tex-virtual-academy-pl/context/context.html + RELOC/doc/generic/tex-virtual-academy-pl/context/tytuly.html + RELOC/doc/generic/tex-virtual-academy-pl/cototex.html + RELOC/doc/generic/tex-virtual-academy-pl/fonty/back.gif + RELOC/doc/generic/tex-virtual-academy-pl/fonty/font-abc.html + RELOC/doc/generic/tex-virtual-academy-pl/fonty/fonts_inst.html + RELOC/doc/generic/tex-virtual-academy-pl/fonty/index.html + RELOC/doc/generic/tex-virtual-academy-pl/fonty/nfss.html + RELOC/doc/generic/tex-virtual-academy-pl/fonty/qx-info.html + RELOC/doc/generic/tex-virtual-academy-pl/fonty/qx-table1.html + RELOC/doc/generic/tex-virtual-academy-pl/fonty/qx-table2.html + RELOC/doc/generic/tex-virtual-academy-pl/fonty/tpstyle.css + RELOC/doc/generic/tex-virtual-academy-pl/gify/artykul.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/context.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/cop.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/grupa.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/gust.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/gustloge.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/indexowanie.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/latex2e.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/lew-7vs.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/lew.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/mail.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/podpis.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/prog.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/tex.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/texologia.gif + RELOC/doc/generic/tex-virtual-academy-pl/gify/wa.gif + RELOC/doc/generic/tex-virtual-academy-pl/idx/day.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/decode.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/dies.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/fig1.gif + RELOC/doc/generic/tex-virtual-academy-pl/idx/flags.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/id.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/index.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/jedn.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/lang.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/lower.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/mil.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/mon.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/name.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/order.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/plmindex.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/porzadek.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/program.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/setki.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/spec.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/tex-idx.gif + RELOC/doc/generic/tex-virtual-academy-pl/idx/toascii.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/typy.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/tys.html + RELOC/doc/generic/tex-virtual-academy-pl/idx/upper.html + RELOC/doc/generic/tex-virtual-academy-pl/index.html + RELOC/doc/generic/tex-virtual-academy-pl/kuchnia/hist.html + RELOC/doc/generic/tex-virtual-academy-pl/kuchnia/tex.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/latex2e.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/desc_p1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/desc_p2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/desc_p3.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/desc_p4.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/description.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/description.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/enum_p1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/enum_p2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/enumerate.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/enumerate.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/item_p1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/item_p2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/itemize.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/itemize.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/klopoty.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/list.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/lista_p.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/porzadek.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/standard.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/3parttab.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/3parttable.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/BAhhline.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/EASYEQN2.PNG + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/EASYEQN5.PNG + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/EASYEQN7.PNG + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/accent.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/accents.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/acromake.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/acromake.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/afterpage.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/alltt.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/amsthm.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/amsthm1.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/amsthm2.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/arabic.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/array.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/balance.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bar.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bar1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bar2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbm.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbm1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbm2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbm3.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbm4.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbm5.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbm6.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbma.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbmb.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk1.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk2.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk3.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk4.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk5.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk6.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk7.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk8.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk9.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blkarray.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bm.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bophook.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/boxedminipage.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/boxm.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/calc.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/calc1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/calc2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/capt-of.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/caption.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/caption2.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/case1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/case2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/cases.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ccapt1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ccaption.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/changebar.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/chapterbib.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/cite.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/color.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/color.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/colortbl.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/comma.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/cute.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/cute1.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/cuted.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/dblcol.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/dblfnote.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/dcolumn.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/delarray.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/delarray.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq10.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq11.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq12.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq13.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq14.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq15.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq3.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq4.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq5.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq6.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq7.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq8.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq9.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/diam.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/dotseqn.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/dotseqn.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/dow.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/drftcite.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/dropp1.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/dropping.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn1.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn10.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn11.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn12.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn13.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn14.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn15.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn16.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn17.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn3.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn4.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn6.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn8.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn9.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ellipsis.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/endfloat.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/enum.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/enumerate.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/enumitem.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/epsfig.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/everyship.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/expdlist.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/exscale.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/extmath.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/extramarks.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancb1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancb2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancb3.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancb4.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancb5.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancb6.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancb7.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancb8.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancybox.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancyhdr.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancyheading.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/filecontents.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/flafter.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/float.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/floatflt.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/floatpag.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/flt1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/flt2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fltpage.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/flushend.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fn2end.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fnpara.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fnpara.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fnpos.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/footmisc.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/footmisc1.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/footmisc2.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/footnpag.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fp.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/framed.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ftnright.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/geom1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/geom1.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/geom2.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/geometry.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/graphicx.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/graphpaper.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harp1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harp2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harp3.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harp4.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harp5.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harp6.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harp7.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harp8.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harpoon.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/heart.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/here.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/hhline.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/hhline.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/hyperref.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ifthen.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ifthen1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ifthen2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/indentfirst.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/index.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/labeldeb.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/lastpage.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/lcg.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/legend.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/letter.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/letterspace.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/listpart.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/localloc.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/longtable.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/lscape.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/lt1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ltablex.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ltabptch.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ltxtable.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/macro.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/macro_t.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/manyfoot.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/manyfoot1.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/minitoc.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/moje_typy.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/moreverb.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/mparhack.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multfoot.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multfoot1.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multfoot2.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multibox.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multibox.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multicol.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multirow.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multirow1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multirow2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multirow3.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multirow4.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multirow5.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/mycss.css + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/num.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/numprint.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/nut.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/oldst1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/oldstyle.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/oubraces.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/overbrace.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/overbrace1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/pdfscreen.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/pdfslide.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/pfnote.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/plain.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/printtim.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/pstcol.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/q1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/qobitree.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ragged2e.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/regcount.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/relsize.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/removefromreset.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/rotate.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/rotating.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/rotbox.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/selectpage.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/shadepar.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/shadetheorem.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/shadethm.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/shadethm.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/shadow.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/shapepar.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/shedbox.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/shortvrb.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/showkeys.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/sidecap.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/squa.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/stm1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/stm2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/stm3.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/stm4.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/stmaryrd.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/sube1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subeqn-1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subeqn-2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subeqn-3.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subeqn.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subeqna.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subeqnarray.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subfig.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subfigure.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subfloat.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/sublabel.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/sublabel.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subscript.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/supertabular.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/sverb.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/sverb_n.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/sverb_w.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/tabularx.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/tabularx.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/theorem.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/theorem.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/threeparttable.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/time.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ulem.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ulem.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ulem1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/umoline.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/undertilde-1.png + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/undertilde.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/url.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/verbatim.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/verbdef.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/verbt.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/verbt1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/verbt2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/version.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/vfrlocal.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/vmargin.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/vrbexin.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/vrflocal.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/wiggly.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/wmcropmark.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/wrapf.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/wrapfig.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/xr.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/xspace.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/xspace1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/xspace2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/xtab.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/spisy/chap.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/spisy/l_chap.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/spisy/l_sec.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/spisy/spis.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/spisy/spis.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/chapter.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/count.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/liczniki.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/num.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p1.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p2.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p3.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p3.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p4.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p4.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p5.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p5.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p6.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p6.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p7.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p7.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/part.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/poziom.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/s.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/sect.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tc.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tc.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tca.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tl.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tl.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tr.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tr.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tx.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tx.html + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/txx.gif + RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/txx.html + RELOC/doc/generic/tex-virtual-academy-pl/poczatki/index.html + RELOC/doc/generic/tex-virtual-academy-pl/poczatki/latex-pl.html + RELOC/doc/generic/tex-virtual-academy-pl/poczatki/mex.html + RELOC/doc/generic/tex-virtual-academy-pl/poczatki/spw.html + RELOC/doc/generic/tex-virtual-academy-pl/poczatki/tetex.html + RELOC/doc/generic/tex-virtual-academy-pl/poczatki/web2c.html + RELOC/doc/generic/tex-virtual-academy-pl/podstawy/2-0wst1.html + RELOC/doc/generic/tex-virtual-academy-pl/podstawy/2-1coto.html + RELOC/doc/generic/tex-virtual-academy-pl/podstawy/2-1kazio.html + RELOC/doc/generic/tex-virtual-academy-pl/podstawy/2-1przyg.html + RELOC/doc/generic/tex-virtual-academy-pl/podstawy/2-1zece.html + RELOC/doc/generic/tex-virtual-academy-pl/podstawy/bib.html + RELOC/doc/generic/tex-virtual-academy-pl/podstawy/spis.html + RELOC/doc/generic/tex-virtual-academy-pl/podstawy/tex.html + RELOC/doc/generic/tex-virtual-academy-pl/podstawy/title.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/auctex.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex-1.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex-2.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex-3.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex-4.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex-5.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex-6.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex-7.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex-8.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/dvidvi.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/dvistro1.gif + RELOC/doc/generic/tex-virtual-academy-pl/prog/dvistro2.gif + RELOC/doc/generic/tex-virtual-academy-pl/prog/hyph.html + RELOC/doc/generic/tex-virtual-academy-pl/prog/prog.html + RELOC/doc/generic/tex-virtual-academy-pl/tex/fermat.gif + RELOC/doc/generic/tex-virtual-academy-pl/tex/odsylacze.html + RELOC/doc/generic/tex-virtual-academy-pl/tex/tex.html + RELOC/doc/generic/tex-virtual-academy-pl/tex/tex_key.html + RELOC/doc/generic/tex-virtual-academy-pl/tex/tryby.html +catalogue-contact-home http://www.gust.org.pl/projects/wirtualna-akademia-texowa +catalogue-ctan /info/tex-virtual-academy-pl +catalogue-date 2017-11-18 20:45:08 +0100 +catalogue-license fdl +catalogue-topics documentation polish-doc + +name tex.aarch64-linux +category TLCore +revision 50700 +shortdesc aarch64-linux files of tex +containersize 167868 +containerchecksum 78c70cafc37d184a9db7b8e0cebddff907c76eecdec798696486c38018a51fa4a357664728211131a401e5f30e525e2235bbfb021c002665954aaf0a5da5d4db +binfiles arch=aarch64-linux size=112 + bin/aarch64-linux/initex + bin/aarch64-linux/tex + +name tex.amd64-freebsd +category TLCore +revision 50700 +shortdesc amd64-freebsd files of tex +containersize 227628 +containerchecksum 759817b3b9d845781467d1dbacaf451432e79adf9243d0850f429a1b09b3995e57e4cffe41d80e4b7cd7665fab224269c5e8a3db5f75842494bbab6cd720dc6b +binfiles arch=amd64-freebsd size=151 + bin/amd64-freebsd/initex + bin/amd64-freebsd/tex + +name tex.amd64-netbsd +category TLCore +revision 50693 +shortdesc amd64-netbsd files of tex +containersize 154928 +containerchecksum 4b7c2d9e5adffafcaf8333988d63a467d057e89481a71f415615efd23b23cbf295792b8b1222d37f0a785e9e642d5f77247fc92997a22c608098df90ca595842 +binfiles arch=amd64-netbsd size=115 + bin/amd64-netbsd/initex + bin/amd64-netbsd/tex + +name tex.armhf-linux +category TLCore +revision 50790 +shortdesc armhf-linux files of tex +containersize 150268 +containerchecksum a8478def6a7478712faeff49fb335312e79291999c67505c902f48dd7559a138c233abaa19e9026ee78af4e280c80afe0fe3b18900eae4406f151557fb44032b +binfiles arch=armhf-linux size=87 + bin/armhf-linux/initex + bin/armhf-linux/tex + +name tex.i386-cygwin +category TLCore +revision 50855 +shortdesc i386-cygwin files of tex +containersize 128144 +containerchecksum 040767729db5833ec836b4d8cbb3aa1ca822b14132d2bbace964beca293df4a5ba1189be3532248b56b27ce3b6abeb9d978bcc64ecc9009b9a86dae7ab6e2356 +binfiles arch=i386-cygwin size=77 + bin/i386-cygwin/initex + bin/i386-cygwin/tex.exe + +name tex.i386-freebsd +category TLCore +revision 50700 +shortdesc i386-freebsd files of tex +containersize 166512 +containerchecksum 190064f3af2289122ed8c4e11b41e2223e21b59ab337f572b8d4c70453379d11593b76a36619a7ff27cbea1f7c798439b679abb94e9ca534bb75d4bca37f1e29 +binfiles arch=i386-freebsd size=130 + bin/i386-freebsd/initex + bin/i386-freebsd/tex + +name tex.i386-linux +category TLCore +revision 50700 +shortdesc i386-linux files of tex +containersize 168336 +containerchecksum 51f0dc79728e93ac0e8be4f56611bec02d030ee07c16f0c358153a90444b78289b1f3630a8a53b9df75ce6a865d4c19678a1c0117a9cdb5c97a4e107038a8bf6 +binfiles arch=i386-linux size=101 + bin/i386-linux/initex + bin/i386-linux/tex + +name tex.i386-netbsd +category TLCore +revision 50693 +shortdesc i386-netbsd files of tex +containersize 127376 +containerchecksum 4129cbe3efda17c39b67da0a25290bb401b647cb7d8b8f72feac0f2bda4980f852cba7f16f5ffc0246ec139eaa42a65d08ca58d2dc7e011df1f4694d9a4b990a +binfiles arch=i386-netbsd size=104 + bin/i386-netbsd/initex + bin/i386-netbsd/tex + +name tex.i386-solaris +category TLCore +revision 50700 +shortdesc i386-solaris files of tex +containersize 163716 +containerchecksum c22cf0bf7c7c95ee9c718174b86e74673e84fae5a33293801f87a2df9a27bb8692e4cf9365fb734b3386d64dc0bda7daf2a2e1258a0f3188db149b8464311340 +binfiles arch=i386-solaris size=94 + bin/i386-solaris/initex + bin/i386-solaris/tex + +name tex.win32 +category TLCore +revision 50540 +shortdesc win32 files of tex +containersize 132608 +containerchecksum f7c1eb60aed2349b80c7c18e3460695975d27a3cd86e155832e1135599e748e0711858fe6843c58426387da343bf731f25879cb5b01a45fc0896c22a08b8c730 +binfiles arch=win32 size=75 + bin/win32/initex.exe + bin/win32/tex.dll + bin/win32/tex.exe + +name tex.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of tex +containersize 145192 +containerchecksum 1dcf51485107ce3b72991fbe3f91be62a450e6765f2a97f11f9ac0d8ea585e164291d051228d656d05f2fbed3222d5cdaf0bc547d6aad996ac1a418de5dacd41 +binfiles arch=x86_64-cygwin size=79 + bin/x86_64-cygwin/initex + bin/x86_64-cygwin/tex.exe + +name tex.x86_64-darwin +category TLCore +revision 50700 +shortdesc x86_64-darwin files of tex +containersize 221860 +containerchecksum 9387c9ebd899fd7d0f6c39a7c57be7381fbfa24af85d0fa82ffd7bd8926dca90b305a77cca9eccf139a65d26434b27982982883fac214b78f7b2e83196113a41 +binfiles arch=x86_64-darwin size=133 + bin/x86_64-darwin/initex + bin/x86_64-darwin/tex + +name tex.x86_64-darwinlegacy +category TLCore +revision 50700 +shortdesc x86_64-darwinlegacy files of tex +containersize 171572 +containerchecksum 5ff1751f2db706b2dcdc034e172b74e07edad22126521553fa38a7a93362540feafabcde85125662e207dab505e9da6a151cc184e35c7958273301c94b10c3da +binfiles arch=x86_64-darwinlegacy size=92 + bin/x86_64-darwinlegacy/initex + bin/x86_64-darwinlegacy/tex + +name tex.x86_64-linux +category TLCore +revision 50700 +shortdesc x86_64-linux files of tex +containersize 175532 +containerchecksum 037aa5ff8eb41164fc01e5ee4646e4fe67370b980df61ba400ed7dc8d87173cc5c21fbe9be9f347901064c08137bfc84d4fdee4920aa523d771f7faf3ff557eb +binfiles arch=x86_64-linux size=95 + bin/x86_64-linux/initex + bin/x86_64-linux/tex + +name tex.x86_64-linuxmusl +category TLCore +revision 50700 +shortdesc x86_64-linuxmusl files of tex +containersize 191148 +containerchecksum 2e555c23bca20124eaa72342b385057ad8f9196b765f8ceba2f4507877e5e2aade41c49412cf103aea84ffe9e05ab5a390d83a9f6d251fd2764581a700fcd9f0 +binfiles arch=x86_64-linuxmusl size=115 + bin/x86_64-linuxmusl/initex + bin/x86_64-linuxmusl/tex + +name tex.x86_64-solaris +category TLCore +revision 50700 +shortdesc x86_64-solaris files of tex +containersize 191704 +containerchecksum cff97d1c386704a8c813c8aa6cd21d01e6714a830ff55fc787705dc13a8929481b0539179c6720ae29cf2796de14595677a8883f54afa6676593be9c6a452ab0 +binfiles arch=x86_64-solaris size=107 + bin/x86_64-solaris/initex + bin/x86_64-solaris/tex + +name tex4ebook +category Package +revision 50512 +shortdesc Convertor from LaTeX to ebook formats +longdesc This is a bundle of lua scripts and LaTeX packages for +longdesc conversion of LaTeX files to ebook formats such as epub, mobi +longdesc and epub3. tex4ht is used as conversion engine. +depend tex4ebook.ARCH +containersize 15776 +containerchecksum 946317be3532db3e60b1fcf2c027f616c00526da55562ab3b682c01306277059edaf14138902d1e21eab53cfb9bf293c636598cffddb9f1980b287b2fba081d9 +doccontainersize 81192 +doccontainerchecksum 586d3ce7642a0f06e358e0cb3d3dc577396a638d7e7c9f333a118716bf4dee8c18991d1736ac7169ba32c22b9aa10b887a8ae77ae5a4f40c800f2f1aca958abd +docfiles size=30 + texmf-dist/doc/support/tex4ebook/README details="Readme" + texmf-dist/doc/support/tex4ebook/changelog.tex + texmf-dist/doc/support/tex4ebook/readme.tex + texmf-dist/doc/support/tex4ebook/tex4ebook-doc.pdf details="Package documentation" + texmf-dist/doc/support/tex4ebook/tex4ebook-doc.tex + texmf-dist/doc/support/tex4ebook/tidyconf.conf +runfiles size=17 + texmf-dist/scripts/tex4ebook/config-t4e.lua + texmf-dist/scripts/tex4ebook/exec_epub.lua + texmf-dist/scripts/tex4ebook/exec_epub3.lua + texmf-dist/scripts/tex4ebook/exec_mobi.lua + texmf-dist/scripts/tex4ebook/list-fonts.lua + texmf-dist/scripts/tex4ebook/tex4ebook + texmf-dist/tex/latex/tex4ebook/tex4ebook-epub3.4ht + texmf-dist/tex/latex/tex4ebook/tex4ebook.4ht + texmf-dist/tex/latex/tex4ebook/tex4ebook.sty +catalogue-contact-bugs https://github.com/michal-h21/tex4ebook/issues +catalogue-contact-repository https://github.com/michal-h21/tex4ebook +catalogue-ctan /support/tex4ebook +catalogue-date 2019-03-21 16:08:34 +0100 +catalogue-license lppl1.3 +catalogue-topics ebook +catalogue-version 0.2c + +name tex4ebook.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of tex4ebook +containersize 340 +containerchecksum b217c101b948aacd5b7a69f713ec1ad4d2f492c8ba800242a9e1220206276cb7d971331dd4ff57064495fb677e57905c0790566cb573055fadc3c284f99584a0 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/tex4ebook + +name tex4ebook.amd64-freebsd +category Package +revision 37771 +shortdesc amd64-freebsd files of tex4ebook +containersize 340 +containerchecksum 0d811c8830e60503f801ffecaf3760b4ecf5fd016aaa82f24a3c011dde61f47a71d773bf1c46e88b450c983e3f57cbd1561a0b1aa0f6468164a6a58da0ba1442 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/tex4ebook + +name tex4ebook.amd64-netbsd +category Package +revision 37771 +shortdesc amd64-netbsd files of tex4ebook +containersize 340 +containerchecksum 2bf1919c5d0fc6ec5f15ae2446f8c13dc8f2e2a8fde0aed330e3a7b170139e8e2f3e43b81b2a78e0cb82867891e2d4b3c1c7f9d45c4f882305755e619d2c4906 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/tex4ebook + +name tex4ebook.armhf-linux +category Package +revision 37771 +shortdesc armhf-linux files of tex4ebook +containersize 340 +containerchecksum 6d6c2c3e018c293cd52ec96b3e95f0b77324a1f9e946fad7e812dc50c26817e65183d2252b538612b5c0dd1e8904592f3c8f14111bb07848add8600f3c7e383d +binfiles arch=armhf-linux size=1 + bin/armhf-linux/tex4ebook + +name tex4ebook.i386-cygwin +category Package +revision 37771 +shortdesc i386-cygwin files of tex4ebook +containersize 336 +containerchecksum be76dc4b72009ee6756ac08f9428660a1fbc9b03ac6d803725feb228883e84ad365ec9d21a1dae1453cf32c882044131a3de55bc2daa8953aae69977322c7650 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/tex4ebook + +name tex4ebook.i386-freebsd +category Package +revision 37771 +shortdesc i386-freebsd files of tex4ebook +containersize 340 +containerchecksum c03ec474180141e4bafe9f3e85290dd0efa003e980b88198fd2aeecedb64d024a692cfb9fb20cde6d5a7831a12643df03c65974ee4a3ae2333b18a7563417756 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/tex4ebook + +name tex4ebook.i386-linux +category Package +revision 37771 +shortdesc i386-linux files of tex4ebook +containersize 340 +containerchecksum 3a41ab468791fd84084b2395b091ce0ae33845b07e896a314ef67791fbc485ee8c499bdd7b07d311a933b66fb7b84ddf9d5f4626ccbded63c41c492333cae982 +binfiles arch=i386-linux size=1 + bin/i386-linux/tex4ebook + +name tex4ebook.i386-netbsd +category Package +revision 37771 +shortdesc i386-netbsd files of tex4ebook +containersize 340 +containerchecksum ecaef5637232f60f55c9619657668e8394c4dfae995b315ab805935f6b0e4a9a777abd9616a71d17c6fbe8eb994e1696e81d757bba2e11edc63bf9573d1c5597 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/tex4ebook + +name tex4ebook.i386-solaris +category Package +revision 37771 +shortdesc i386-solaris files of tex4ebook +containersize 340 +containerchecksum 0cd64e3d601c45d12e5180e4a8403da2b49c44cbadd487535cdc8bbc1f5336c6b6ef26aa04df158d4573e737f4ddc88884312f0d51f10b7a92c243872bbdf567 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/tex4ebook + +name tex4ebook.win32 +category Package +revision 37771 +shortdesc win32 files of tex4ebook +containersize 684 +containerchecksum a09fa5d0d8797cbe40b0925dffa8d4f177175400719558a9d3c26be44989c2b46f6e792ef8b247efd74e242816f539ae302b63dab71be6d419454ebc9a5a2868 +binfiles arch=win32 size=1 + bin/win32/tex4ebook.exe + +name tex4ebook.x86_64-cygwin +category Package +revision 37771 +shortdesc x86_64-cygwin files of tex4ebook +containersize 340 +containerchecksum e3a9dcd5f35a34533905241a31f7924ba39c758141d449b3db5ee00b99240240a3d40ee6508117242b26ab4c2b500d370d705b48b4b518b4b04f907ac21af586 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/tex4ebook + +name tex4ebook.x86_64-darwin +category Package +revision 37771 +shortdesc x86_64-darwin files of tex4ebook +containersize 340 +containerchecksum b8ce6f2071bb7d16ed4285b0fa89a359cc0962916bfae92e0333d9a3724f35f8af210fa75d794cd5ed24f121eb9570fb51ca49970b9ed397e1c023513ca059f2 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/tex4ebook + +name tex4ebook.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of tex4ebook +containersize 348 +containerchecksum 36b46aaf77c363e1f9f7830327d31e8e6b21b85d7e6bdca5854f20170884f5da2ee64b4bc66dc4a387481460908e0eb029224cea8af7440b530d9f8542f1120b +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/tex4ebook + +name tex4ebook.x86_64-linux +category Package +revision 37771 +shortdesc x86_64-linux files of tex4ebook +containersize 340 +containerchecksum 99a43ad76caf33d2ecc215bb8861edab835e642f5ad421c801908d0ec033f2a1560fe623b947b69860fd2b39d9b787289d50a33e5e909c3dc7ef44f135094454 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/tex4ebook + +name tex4ebook.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of tex4ebook +containersize 344 +containerchecksum 2f51866a24bf978c3271ad9c3ba4c721ca8141c6dca0590781d7416ce88d62b15525f547f7d324fa4b68bee042e985dda43e71918230bf3d2a5230e1303c7948 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/tex4ebook + +name tex4ebook.x86_64-solaris +category Package +revision 37771 +shortdesc x86_64-solaris files of tex4ebook +containersize 340 +containerchecksum 6a961d0fd7e939816dcbc1b4e9d9e51b6094d77015e65ab384c3885baee0b8c456877a1f26b86f6ac1930ad88ef2fdafb56af39a7e44d55281497f1e90a1bf5b +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/tex4ebook + +name tex4ht +category Package +revision 51195 +shortdesc Convert (La)TeX to HTML/XML +longdesc A converter from TeX and LaTeX to SGML-based formats such as +longdesc (X)HTML, MathML, OpenDocument, and DocBook, providing a +longdesc configurable (La)TeX-based authoring system for hypertext. +longdesc TeX4ht does not parse (La)TeX source (so that it avoids the +longdesc difficulties encountered by many other converters, arising from +longdesc the irregularity of (La)TeX syntax). Instead, TeX4ht uses +longdesc (La)TeX itself (with an extra macro package) to produce a +longdesc non-standard DVI file that it can then process. This technique +longdesc allows TeX4ht to approach the robustness characteristic of +longdesc restricted-syntax systems such as hyperlatex and gellmu. Note +longdesc that CTAN no longer holds the definitive sources of the +longdesc package: see the 'Readme' file. +depend tex4ht.ARCH +containersize 870100 +containerchecksum 40cea4513db85fa255db433e8a79b926ccd5633f76db7f2c3cfd3c7b235101a19491bb1c89158da8b65a9bd5a1647b333a475489aeaf6874e649c9365d5874b1 +doccontainersize 61188 +doccontainerchecksum e300f87b730dfa7811f57353aa539759b5844e430e0572cc5ae7fc630008bd154296af0f48167a9c743308ade8edf2659a52e29cbdd233009803382a9547e9af +docfiles size=195 + texmf-dist/doc/generic/tex4ht/bugfixes.css + texmf-dist/doc/generic/tex4ht/bugfixes.html + texmf-dist/doc/generic/tex4ht/cmmi10-b.gif + texmf-dist/doc/generic/tex4ht/cmsy10-28.gif + texmf-dist/doc/generic/tex4ht/index.html + texmf-dist/doc/generic/tex4ht/jhsample.tex + texmf-dist/doc/generic/tex4ht/mn-htf.html + texmf-dist/doc/generic/tex4ht/mn-index.html + texmf-dist/doc/generic/tex4ht/mn-mswin.html + texmf-dist/doc/generic/tex4ht/mn-port.html + texmf-dist/doc/generic/tex4ht/mn-unix.html + texmf-dist/doc/generic/tex4ht/mn.css + texmf-dist/doc/generic/tex4ht/mn.html details="Package documentation" + texmf-dist/doc/generic/tex4ht/mn0x.gif + texmf-dist/doc/generic/tex4ht/mn10.html + texmf-dist/doc/generic/tex4ht/mn11.html + texmf-dist/doc/generic/tex4ht/mn12.html + texmf-dist/doc/generic/tex4ht/mn13.html + texmf-dist/doc/generic/tex4ht/mn14.html + texmf-dist/doc/generic/tex4ht/mn15.html + texmf-dist/doc/generic/tex4ht/mn16.html + texmf-dist/doc/generic/tex4ht/mn17.html + texmf-dist/doc/generic/tex4ht/mn19.html + texmf-dist/doc/generic/tex4ht/mn1x.gif + texmf-dist/doc/generic/tex4ht/mn2.html + texmf-dist/doc/generic/tex4ht/mn20.html + texmf-dist/doc/generic/tex4ht/mn21.html + texmf-dist/doc/generic/tex4ht/mn23.html + texmf-dist/doc/generic/tex4ht/mn24.html + texmf-dist/doc/generic/tex4ht/mn25.html + texmf-dist/doc/generic/tex4ht/mn27.html + texmf-dist/doc/generic/tex4ht/mn28.html + texmf-dist/doc/generic/tex4ht/mn29.html + texmf-dist/doc/generic/tex4ht/mn2x.gif + texmf-dist/doc/generic/tex4ht/mn3.html + texmf-dist/doc/generic/tex4ht/mn31.html + texmf-dist/doc/generic/tex4ht/mn32.html + texmf-dist/doc/generic/tex4ht/mn33.html + texmf-dist/doc/generic/tex4ht/mn34.html + texmf-dist/doc/generic/tex4ht/mn35.html + texmf-dist/doc/generic/tex4ht/mn36.html + texmf-dist/doc/generic/tex4ht/mn37.html + texmf-dist/doc/generic/tex4ht/mn38.html + texmf-dist/doc/generic/tex4ht/mn39.html + texmf-dist/doc/generic/tex4ht/mn3x.gif + texmf-dist/doc/generic/tex4ht/mn4.html + texmf-dist/doc/generic/tex4ht/mn40.html + texmf-dist/doc/generic/tex4ht/mn41.html + texmf-dist/doc/generic/tex4ht/mn42.html + texmf-dist/doc/generic/tex4ht/mn43.html + texmf-dist/doc/generic/tex4ht/mn44.html + texmf-dist/doc/generic/tex4ht/mn45.html + texmf-dist/doc/generic/tex4ht/mn46.html + texmf-dist/doc/generic/tex4ht/mn47.html + texmf-dist/doc/generic/tex4ht/mn48.html + texmf-dist/doc/generic/tex4ht/mn49.html + texmf-dist/doc/generic/tex4ht/mn4x.gif + texmf-dist/doc/generic/tex4ht/mn5.html + texmf-dist/doc/generic/tex4ht/mn50.html + texmf-dist/doc/generic/tex4ht/mn51.html + texmf-dist/doc/generic/tex4ht/mn52.html + texmf-dist/doc/generic/tex4ht/mn53.html + texmf-dist/doc/generic/tex4ht/mn54.html + texmf-dist/doc/generic/tex4ht/mn55.html + texmf-dist/doc/generic/tex4ht/mn56.html + texmf-dist/doc/generic/tex4ht/mn57.html + texmf-dist/doc/generic/tex4ht/mn58.html + texmf-dist/doc/generic/tex4ht/mn59.html + texmf-dist/doc/generic/tex4ht/mn6.html + texmf-dist/doc/generic/tex4ht/mn60.html + texmf-dist/doc/generic/tex4ht/mn7.html + texmf-dist/doc/generic/tex4ht/mn8.html + texmf-dist/doc/generic/tex4ht/mn9.html +runfiles size=8108 + texmf-dist/scripts/tex4ht/ht.sh + texmf-dist/scripts/tex4ht/htcontext.sh + texmf-dist/scripts/tex4ht/htcopy.pl + texmf-dist/scripts/tex4ht/htlatex.sh + texmf-dist/scripts/tex4ht/htmex.sh + texmf-dist/scripts/tex4ht/htmove.pl + texmf-dist/scripts/tex4ht/httex.sh + texmf-dist/scripts/tex4ht/httexi.sh + texmf-dist/scripts/tex4ht/htxelatex.sh + texmf-dist/scripts/tex4ht/htxetex.sh + texmf-dist/scripts/tex4ht/mk4ht.pl + texmf-dist/scripts/tex4ht/xhlatex.sh + texmf-dist/tex/generic/tex4ht/2up.4ht + texmf-dist/tex/generic/tex4ht/8859-6.4ht + texmf-dist/tex/generic/tex4ht/CJK.4ht + texmf-dist/tex/generic/tex4ht/IEEEtran.4ht + texmf-dist/tex/generic/tex4ht/JHEP.4ht + texmf-dist/tex/generic/tex4ht/ProTex.4ht + texmf-dist/tex/generic/tex4ht/SIunits.4ht + texmf-dist/tex/generic/tex4ht/TextBook.4ht + texmf-dist/tex/generic/tex4ht/aa.4ht + texmf-dist/tex/generic/tex4ht/abidir.4ht + texmf-dist/tex/generic/tex4ht/accents.4ht + texmf-dist/tex/generic/tex4ht/acm_proc_article-sp.4ht + texmf-dist/tex/generic/tex4ht/adjustbox.4ht + texmf-dist/tex/generic/tex4ht/afterpage.4ht + texmf-dist/tex/generic/tex4ht/alatex.4ht + texmf-dist/tex/generic/tex4ht/algorithm.4ht + texmf-dist/tex/generic/tex4ht/algorithmic.4ht + texmf-dist/tex/generic/tex4ht/algorithmicx.4ht + texmf-dist/tex/generic/tex4ht/alltt.4ht + texmf-dist/tex/generic/tex4ht/alphanum.4ht + texmf-dist/tex/generic/tex4ht/amsart.4ht + texmf-dist/tex/generic/tex4ht/amsbook.4ht + texmf-dist/tex/generic/tex4ht/amsbsy.4ht + texmf-dist/tex/generic/tex4ht/amscd.4ht + texmf-dist/tex/generic/tex4ht/amsdtx.4ht + texmf-dist/tex/generic/tex4ht/amsfonts.4ht + texmf-dist/tex/generic/tex4ht/amsldoc.4ht + texmf-dist/tex/generic/tex4ht/amsmath.4ht + texmf-dist/tex/generic/tex4ht/amsopn.4ht + texmf-dist/tex/generic/tex4ht/amsppt.4ht + texmf-dist/tex/generic/tex4ht/amsproc.4ht + texmf-dist/tex/generic/tex4ht/amssymb.4ht + texmf-dist/tex/generic/tex4ht/amstex.4ht + texmf-dist/tex/generic/tex4ht/amstex1.4ht + texmf-dist/tex/generic/tex4ht/amstext.4ht + texmf-dist/tex/generic/tex4ht/amsthm.4ht + texmf-dist/tex/generic/tex4ht/animate.4ht + texmf-dist/tex/generic/tex4ht/aoutput.4ht + texmf-dist/tex/generic/tex4ht/apa-a.4ht + texmf-dist/tex/generic/tex4ht/apa.4ht + texmf-dist/tex/generic/tex4ht/apacite.4ht + texmf-dist/tex/generic/tex4ht/aps.4ht + texmf-dist/tex/generic/tex4ht/arabicore.4ht + texmf-dist/tex/generic/tex4ht/array.4ht + texmf-dist/tex/generic/tex4ht/article.4ht + texmf-dist/tex/generic/tex4ht/austrian.4ht + texmf-dist/tex/generic/tex4ht/authblk.4ht + texmf-dist/tex/generic/tex4ht/babel.4ht + texmf-dist/tex/generic/tex4ht/beamer.4ht + texmf-dist/tex/generic/tex4ht/beamerbasefont.4ht + texmf-dist/tex/generic/tex4ht/beamerbasetoc.4ht + texmf-dist/tex/generic/tex4ht/beton.4ht + texmf-dist/tex/generic/tex4ht/biblatex-chicago.4ht + texmf-dist/tex/generic/tex4ht/biblatex.4ht + texmf-dist/tex/generic/tex4ht/bibtex.4ht + texmf-dist/tex/generic/tex4ht/bibtex2.4ht + texmf-dist/tex/generic/tex4ht/bibtopic.4ht + texmf-dist/tex/generic/tex4ht/bm.4ht + texmf-dist/tex/generic/tex4ht/book.4ht + texmf-dist/tex/generic/tex4ht/booktabs.4ht + texmf-dist/tex/generic/tex4ht/boxedminipage.4ht + texmf-dist/tex/generic/tex4ht/braket.4ht + texmf-dist/tex/generic/tex4ht/bussproofs.4ht + texmf-dist/tex/generic/tex4ht/byname.4ht + texmf-dist/tex/generic/tex4ht/caption.4ht + texmf-dist/tex/generic/tex4ht/catalan.4ht + texmf-dist/tex/generic/tex4ht/cgloss4e.4ht + texmf-dist/tex/generic/tex4ht/chapterbib.4ht + texmf-dist/tex/generic/tex4ht/chicago.4ht + texmf-dist/tex/generic/tex4ht/cleveref.4ht + texmf-dist/tex/generic/tex4ht/color.4ht + texmf-dist/tex/generic/tex4ht/colortbl.4ht + texmf-dist/tex/generic/tex4ht/combine.4ht + texmf-dist/tex/generic/tex4ht/cond4ht.4ht + texmf-dist/tex/generic/tex4ht/context.4ht + texmf-dist/tex/generic/tex4ht/covington.4ht + texmf-dist/tex/generic/tex4ht/cp1250.4ht + texmf-dist/tex/generic/tex4ht/cp1252.4ht + texmf-dist/tex/generic/tex4ht/cp1256.4ht + texmf-dist/tex/generic/tex4ht/cp437.4ht + texmf-dist/tex/generic/tex4ht/cp437de.4ht + texmf-dist/tex/generic/tex4ht/cp850.4ht + texmf-dist/tex/generic/tex4ht/cp852.4ht + texmf-dist/tex/generic/tex4ht/cp862.4ht + texmf-dist/tex/generic/tex4ht/cp865.4ht + texmf-dist/tex/generic/tex4ht/croatian.4ht + texmf-dist/tex/generic/tex4ht/csquotes.4ht + texmf-dist/tex/generic/tex4ht/curve.4ht + texmf-dist/tex/generic/tex4ht/czech.4ht + texmf-dist/tex/generic/tex4ht/danish.4ht + texmf-dist/tex/generic/tex4ht/dcolumn.4ht + texmf-dist/tex/generic/tex4ht/debug.4ht + texmf-dist/tex/generic/tex4ht/diagram.4ht + texmf-dist/tex/generic/tex4ht/diagrams.4ht + texmf-dist/tex/generic/tex4ht/doc.4ht + texmf-dist/tex/generic/tex4ht/docbook-math.4ht + texmf-dist/tex/generic/tex4ht/docbook-mml.4ht + texmf-dist/tex/generic/tex4ht/docbook.4ht + texmf-dist/tex/generic/tex4ht/dratex.4ht + texmf-dist/tex/generic/tex4ht/dsfont.4ht + texmf-dist/tex/generic/tex4ht/dutch.4ht + texmf-dist/tex/generic/tex4ht/dvipdf.4ht + texmf-dist/tex/generic/tex4ht/dvips.4ht + texmf-dist/tex/generic/tex4ht/dvipsnam.4ht + texmf-dist/tex/generic/tex4ht/dvipsone.4ht + texmf-dist/tex/generic/tex4ht/elsart.4ht + texmf-dist/tex/generic/tex4ht/emacspeak.4ht + texmf-dist/tex/generic/tex4ht/emulateapj.4ht + texmf-dist/tex/generic/tex4ht/endfloat.4ht + texmf-dist/tex/generic/tex4ht/endnotes.4ht + texmf-dist/tex/generic/tex4ht/english.4ht + texmf-dist/tex/generic/tex4ht/enumerate.4ht + texmf-dist/tex/generic/tex4ht/enumitem.4ht + texmf-dist/tex/generic/tex4ht/epigraph.4ht + texmf-dist/tex/generic/tex4ht/eplain.4ht + texmf-dist/tex/generic/tex4ht/epsf.4ht + texmf-dist/tex/generic/tex4ht/epsfig.4ht + texmf-dist/tex/generic/tex4ht/errata.4ht + texmf-dist/tex/generic/tex4ht/esperant.4ht + texmf-dist/tex/generic/tex4ht/esperanto.4ht + texmf-dist/tex/generic/tex4ht/estonian.4ht + texmf-dist/tex/generic/tex4ht/eucal.4ht + texmf-dist/tex/generic/tex4ht/euler.4ht + texmf-dist/tex/generic/tex4ht/europecv.4ht + texmf-dist/tex/generic/tex4ht/eurosym.4ht + texmf-dist/tex/generic/tex4ht/everyshi.4ht + texmf-dist/tex/generic/tex4ht/exam.4ht + texmf-dist/tex/generic/tex4ht/exerquiz.4ht + texmf-dist/tex/generic/tex4ht/exerqz.4ht + texmf-dist/tex/generic/tex4ht/extarticle.4ht + texmf-dist/tex/generic/tex4ht/extbook.4ht + texmf-dist/tex/generic/tex4ht/extletter.4ht + texmf-dist/tex/generic/tex4ht/extproc.4ht + texmf-dist/tex/generic/tex4ht/extreport.4ht + texmf-dist/tex/generic/tex4ht/fancybox.4ht + texmf-dist/tex/generic/tex4ht/fancyvrb.4ht + texmf-dist/tex/generic/tex4ht/fig4tex.4ht + texmf-dist/tex/generic/tex4ht/finnish.4ht + texmf-dist/tex/generic/tex4ht/fleqn.4ht + texmf-dist/tex/generic/tex4ht/float.4ht + texmf-dist/tex/generic/tex4ht/floatflt.4ht + texmf-dist/tex/generic/tex4ht/foils.4ht + texmf-dist/tex/generic/tex4ht/fontmath.4ht + texmf-dist/tex/generic/tex4ht/fontspec-4ht.lua + texmf-dist/tex/generic/tex4ht/fontspec-luatex.4ht + texmf-dist/tex/generic/tex4ht/fontspec-xetex.4ht + texmf-dist/tex/generic/tex4ht/fontspec.4ht + texmf-dist/tex/generic/tex4ht/footmisc.4ht + texmf-dist/tex/generic/tex4ht/footnote-dw.4ht + texmf-dist/tex/generic/tex4ht/framed.4ht + texmf-dist/tex/generic/tex4ht/francais.4ht + texmf-dist/tex/generic/tex4ht/french.4ht + texmf-dist/tex/generic/tex4ht/frenchb.4ht + texmf-dist/tex/generic/tex4ht/g-brief.4ht + texmf-dist/tex/generic/tex4ht/galician.4ht + texmf-dist/tex/generic/tex4ht/gauss.4ht + texmf-dist/tex/generic/tex4ht/geometry.4ht + texmf-dist/tex/generic/tex4ht/german.4ht + texmf-dist/tex/generic/tex4ht/germanb.4ht + texmf-dist/tex/generic/tex4ht/gloss.4ht + texmf-dist/tex/generic/tex4ht/glossaries.4ht + texmf-dist/tex/generic/tex4ht/glossary.4ht + texmf-dist/tex/generic/tex4ht/go.4ht + texmf-dist/tex/generic/tex4ht/graphics.4ht + texmf-dist/tex/generic/tex4ht/graphicx.4ht + texmf-dist/tex/generic/tex4ht/greek.4ht + texmf-dist/tex/generic/tex4ht/harvard.4ht + texmf-dist/tex/generic/tex4ht/hebrew.4ht + texmf-dist/tex/generic/tex4ht/hebtex.4ht + texmf-dist/tex/generic/tex4ht/hewrite.4ht + texmf-dist/tex/generic/tex4ht/holtxdoc.4ht + texmf-dist/tex/generic/tex4ht/html-jsmath.4ht + texmf-dist/tex/generic/tex4ht/html-mltx.4ht + texmf-dist/tex/generic/tex4ht/html-mml.4ht + texmf-dist/tex/generic/tex4ht/html-speech-math.4ht + texmf-dist/tex/generic/tex4ht/html-speech.4ht + texmf-dist/tex/generic/tex4ht/html0.4ht + texmf-dist/tex/generic/tex4ht/html32-math.4ht + texmf-dist/tex/generic/tex4ht/html32.4ht + texmf-dist/tex/generic/tex4ht/html4-l2-url.4ht + texmf-dist/tex/generic/tex4ht/html4-math.4ht + texmf-dist/tex/generic/tex4ht/html4-russian-accents.4ht + texmf-dist/tex/generic/tex4ht/html4-svg.4ht + texmf-dist/tex/generic/tex4ht/html4-uni.4ht + texmf-dist/tex/generic/tex4ht/html4.4ht + texmf-dist/tex/generic/tex4ht/html5.4ht + texmf-dist/tex/generic/tex4ht/htmlw.4ht + texmf-dist/tex/generic/tex4ht/hypcap.4ht + texmf-dist/tex/generic/tex4ht/hyperref.4ht + texmf-dist/tex/generic/tex4ht/idxmake.4ht + texmf-dist/tex/generic/tex4ht/ifthen.4ht + texmf-dist/tex/generic/tex4ht/index.4ht + texmf-dist/tex/generic/tex4ht/info4ht.4ht + texmf-dist/tex/generic/tex4ht/infoht4.4ht + texmf-dist/tex/generic/tex4ht/infojh.4ht + texmf-dist/tex/generic/tex4ht/infomml.4ht + texmf-dist/tex/generic/tex4ht/infoof.4ht + texmf-dist/tex/generic/tex4ht/infosvg.4ht + texmf-dist/tex/generic/tex4ht/inputenc.4ht + texmf-dist/tex/generic/tex4ht/italian.4ht + texmf-dist/tex/generic/tex4ht/javahelp-a.4ht + texmf-dist/tex/generic/tex4ht/javahelp.4ht + texmf-dist/tex/generic/tex4ht/jeep.4ht + texmf-dist/tex/generic/tex4ht/jsmath.4ht + texmf-dist/tex/generic/tex4ht/jsml-math.4ht + texmf-dist/tex/generic/tex4ht/jsml.4ht + texmf-dist/tex/generic/tex4ht/jurabib.4ht + texmf-dist/tex/generic/tex4ht/koi8-r.4ht + texmf-dist/tex/generic/tex4ht/latex.4ht + texmf-dist/tex/generic/tex4ht/latex209.4ht + texmf-dist/tex/generic/tex4ht/latex2man.4ht + texmf-dist/tex/generic/tex4ht/latin1.4ht + texmf-dist/tex/generic/tex4ht/latin2.4ht + texmf-dist/tex/generic/tex4ht/lb.4ht + texmf-dist/tex/generic/tex4ht/letter.4ht + texmf-dist/tex/generic/tex4ht/lettrine.4ht + texmf-dist/tex/generic/tex4ht/lfeenc.4ht + texmf-dist/tex/generic/tex4ht/lineno.4ht + texmf-dist/tex/generic/tex4ht/linguex.4ht + texmf-dist/tex/generic/tex4ht/listings.4ht + texmf-dist/tex/generic/tex4ht/llncs-a.4ht + texmf-dist/tex/generic/tex4ht/llncs.4ht + texmf-dist/tex/generic/tex4ht/lncse-a.4ht + texmf-dist/tex/generic/tex4ht/lncse.4ht + texmf-dist/tex/generic/tex4ht/longdiv.4ht + texmf-dist/tex/generic/tex4ht/longtable.4ht + texmf-dist/tex/generic/tex4ht/ltugboat-a.4ht + texmf-dist/tex/generic/tex4ht/ltugboat.4ht + texmf-dist/tex/generic/tex4ht/ltugproc-a.4ht + texmf-dist/tex/generic/tex4ht/ltugproc.4ht + texmf-dist/tex/generic/tex4ht/ltxguide.4ht + texmf-dist/tex/generic/tex4ht/m-tex4ht.tex + texmf-dist/tex/generic/tex4ht/magyar.4ht + texmf-dist/tex/generic/tex4ht/makeidx.4ht + texmf-dist/tex/generic/tex4ht/manju.4ht + texmf-dist/tex/generic/tex4ht/manmac.4ht + texmf-dist/tex/generic/tex4ht/mathjax-latex-4ht.4ht + texmf-dist/tex/generic/tex4ht/mathltx.4ht + texmf-dist/tex/generic/tex4ht/mathml.4ht + texmf-dist/tex/generic/tex4ht/mathplayer.4ht + texmf-dist/tex/generic/tex4ht/mathtools.4ht + texmf-dist/tex/generic/tex4ht/mdframed.4ht + texmf-dist/tex/generic/tex4ht/mdwlist.4ht + texmf-dist/tex/generic/tex4ht/mdwtab.4ht + texmf-dist/tex/generic/tex4ht/memoir.4ht + texmf-dist/tex/generic/tex4ht/mempatch.4ht + texmf-dist/tex/generic/tex4ht/mex.4ht + texmf-dist/tex/generic/tex4ht/mfpic.4ht + texmf-dist/tex/generic/tex4ht/microtype.4ht + texmf-dist/tex/generic/tex4ht/minitoc.4ht + texmf-dist/tex/generic/tex4ht/mkht-scripts.4ht + texmf-dist/tex/generic/tex4ht/mkht.4ht + texmf-dist/tex/generic/tex4ht/mktex4ht.4ht + texmf-dist/tex/generic/tex4ht/mla.4ht + texmf-dist/tex/generic/tex4ht/mls.4ht + texmf-dist/tex/generic/tex4ht/moreverb.4ht + texmf-dist/tex/generic/tex4ht/mozilla.4ht + texmf-dist/tex/generic/tex4ht/multicol.4ht + texmf-dist/tex/generic/tex4ht/multind.4ht + texmf-dist/tex/generic/tex4ht/multirow.4ht + texmf-dist/tex/generic/tex4ht/mwart.4ht + texmf-dist/tex/generic/tex4ht/mwbk.4ht + texmf-dist/tex/generic/tex4ht/mwrep.4ht + texmf-dist/tex/generic/tex4ht/nameref.4ht + texmf-dist/tex/generic/tex4ht/natbib.4ht + texmf-dist/tex/generic/tex4ht/ngerman.4ht + texmf-dist/tex/generic/tex4ht/ngermanb.4ht + texmf-dist/tex/generic/tex4ht/nicefrac.4ht + texmf-dist/tex/generic/tex4ht/nomencl.4ht + texmf-dist/tex/generic/tex4ht/norsk.4ht + texmf-dist/tex/generic/tex4ht/ntheorem.4ht + texmf-dist/tex/generic/tex4ht/onmouseover.4ht + texmf-dist/tex/generic/tex4ht/ooffice-mml.4ht + texmf-dist/tex/generic/tex4ht/ooffice.4ht + texmf-dist/tex/generic/tex4ht/ooimpress.4ht + texmf-dist/tex/generic/tex4ht/osudeG.4ht + texmf-dist/tex/generic/tex4ht/ot4enc.4ht + texmf-dist/tex/generic/tex4ht/overcite.4ht + texmf-dist/tex/generic/tex4ht/overpic.4ht + texmf-dist/tex/generic/tex4ht/paralist.4ht + texmf-dist/tex/generic/tex4ht/path.4ht + texmf-dist/tex/generic/tex4ht/pb-diagram.4ht + texmf-dist/tex/generic/tex4ht/pctable.4ht + texmf-dist/tex/generic/tex4ht/pctex32.4ht + texmf-dist/tex/generic/tex4ht/pd1enc.4ht + texmf-dist/tex/generic/tex4ht/pgf.4ht + texmf-dist/tex/generic/tex4ht/picins.4ht + texmf-dist/tex/generic/tex4ht/pictex.4ht + texmf-dist/tex/generic/tex4ht/pifont.4ht + texmf-dist/tex/generic/tex4ht/plain.4ht + texmf-dist/tex/generic/tex4ht/polish.4ht + texmf-dist/tex/generic/tex4ht/polski.4ht + texmf-dist/tex/generic/tex4ht/portuges.4ht + texmf-dist/tex/generic/tex4ht/powerdot-a.4ht + texmf-dist/tex/generic/tex4ht/powerdot.4ht + texmf-dist/tex/generic/tex4ht/proof.4ht + texmf-dist/tex/generic/tex4ht/prosper-a.4ht + texmf-dist/tex/generic/tex4ht/prosper.4ht + texmf-dist/tex/generic/tex4ht/psfig.4ht + texmf-dist/tex/generic/tex4ht/pst-all.4ht + texmf-dist/tex/generic/tex4ht/pst-jtree.4ht + texmf-dist/tex/generic/tex4ht/pstricks.4ht + texmf-dist/tex/generic/tex4ht/quoting.4ht + texmf-dist/tex/generic/tex4ht/reading.4ht + texmf-dist/tex/generic/tex4ht/report.4ht + texmf-dist/tex/generic/tex4ht/res-a.4ht + texmf-dist/tex/generic/tex4ht/res.4ht + texmf-dist/tex/generic/tex4ht/resume.4ht + texmf-dist/tex/generic/tex4ht/revsymb.4ht + texmf-dist/tex/generic/tex4ht/revtex.4ht + texmf-dist/tex/generic/tex4ht/revtex4.4ht + texmf-dist/tex/generic/tex4ht/rlbabel.4ht + texmf-dist/tex/generic/tex4ht/romanian.4ht + texmf-dist/tex/generic/tex4ht/rotating.4ht + texmf-dist/tex/generic/tex4ht/russianb.4ht + texmf-dist/tex/generic/tex4ht/scottish.4ht + texmf-dist/tex/generic/tex4ht/scrartcl.4ht + texmf-dist/tex/generic/tex4ht/scrbook.4ht + texmf-dist/tex/generic/tex4ht/scrjura.4ht + texmf-dist/tex/generic/tex4ht/scrreprt.4ht + texmf-dist/tex/generic/tex4ht/sectionbreak.4ht + texmf-dist/tex/generic/tex4ht/seminar-a.4ht + texmf-dist/tex/generic/tex4ht/seminar.4ht + texmf-dist/tex/generic/tex4ht/seslideb.4ht + texmf-dist/tex/generic/tex4ht/showfonts.4ht + texmf-dist/tex/generic/tex4ht/sig-alternate.4ht + texmf-dist/tex/generic/tex4ht/sistyle.4ht + texmf-dist/tex/generic/tex4ht/skak.4ht + texmf-dist/tex/generic/tex4ht/slides.4ht + texmf-dist/tex/generic/tex4ht/slidesec.4ht + texmf-dist/tex/generic/tex4ht/slovak.4ht + texmf-dist/tex/generic/tex4ht/slovene.4ht + texmf-dist/tex/generic/tex4ht/soul.4ht + texmf-dist/tex/generic/tex4ht/spanish.4ht + texmf-dist/tex/generic/tex4ht/splitidx.4ht + texmf-dist/tex/generic/tex4ht/srcltx.4ht + texmf-dist/tex/generic/tex4ht/subeqnarray.4ht + texmf-dist/tex/generic/tex4ht/subfigure.4ht + texmf-dist/tex/generic/tex4ht/subscript.4ht + texmf-dist/tex/generic/tex4ht/supertabular.4ht + texmf-dist/tex/generic/tex4ht/sverb.4ht + texmf-dist/tex/generic/tex4ht/svg-option.4ht + texmf-dist/tex/generic/tex4ht/svg.4ht + texmf-dist/tex/generic/tex4ht/svgnam.4ht + texmf-dist/tex/generic/tex4ht/swedish.4ht + texmf-dist/tex/generic/tex4ht/syntax.4ht + texmf-dist/tex/generic/tex4ht/t2benc.4ht + texmf-dist/tex/generic/tex4ht/tabu.4ht + texmf-dist/tex/generic/tex4ht/tabularx.4ht + texmf-dist/tex/generic/tex4ht/tabulary-a.4ht + texmf-dist/tex/generic/tex4ht/tabulary.4ht + texmf-dist/tex/generic/tex4ht/tcilatex.4ht + texmf-dist/tex/generic/tex4ht/tei-math.4ht + texmf-dist/tex/generic/tex4ht/tei-mml.4ht + texmf-dist/tex/generic/tex4ht/tei-mmltei.4ht + texmf-dist/tex/generic/tex4ht/tei.4ht + texmf-dist/tex/generic/tex4ht/tex4ht.4ht + texmf-dist/tex/generic/tex4ht/tex4ht.sty + texmf-dist/tex/generic/tex4ht/texinfo.4ht + texmf-dist/tex/generic/tex4ht/texpower.4ht + texmf-dist/tex/generic/tex4ht/textures.4ht + texmf-dist/tex/generic/tex4ht/th4.4ht + texmf-dist/tex/generic/tex4ht/theorem.4ht + texmf-dist/tex/generic/tex4ht/titlesec.4ht + texmf-dist/tex/generic/tex4ht/tocloft.4ht + texmf-dist/tex/generic/tex4ht/tuenc-luatex.4ht + texmf-dist/tex/generic/tex4ht/tuenc-xetex-input.4ht + texmf-dist/tex/generic/tex4ht/tuenc-xetex.4ht + texmf-dist/tex/generic/tex4ht/tugboat.4ht + texmf-dist/tex/generic/tex4ht/turkish.4ht + texmf-dist/tex/generic/tex4ht/ucs.4ht + texmf-dist/tex/generic/tex4ht/ukraineb.4ht + texmf-dist/tex/generic/tex4ht/ulem.4ht + texmf-dist/tex/generic/tex4ht/unicode.4ht + texmf-dist/tex/generic/tex4ht/url.4ht + texmf-dist/tex/generic/tex4ht/usepackage-fontspec.4ht + texmf-dist/tex/generic/tex4ht/usepackage.4ht + texmf-dist/tex/generic/tex4ht/ushort.4ht + texmf-dist/tex/generic/tex4ht/usorbian.4ht + texmf-dist/tex/generic/tex4ht/utf8.4ht + texmf-dist/tex/generic/tex4ht/utf8x.4ht + texmf-dist/tex/generic/tex4ht/vanilla.4ht + texmf-dist/tex/generic/tex4ht/varioref.4ht + texmf-dist/tex/generic/tex4ht/verbatim.4ht + texmf-dist/tex/generic/tex4ht/verbatimfiles.4ht + texmf-dist/tex/generic/tex4ht/verse.4ht + texmf-dist/tex/generic/tex4ht/vowel.4ht + texmf-dist/tex/generic/tex4ht/web.4ht + texmf-dist/tex/generic/tex4ht/welsh.4ht + texmf-dist/tex/generic/tex4ht/wrapfig.4ht + texmf-dist/tex/generic/tex4ht/writer.4ht + texmf-dist/tex/generic/tex4ht/xcolor.4ht + texmf-dist/tex/generic/tex4ht/xr-hyper.4ht + texmf-dist/tex/generic/tex4ht/xr.4ht + texmf-dist/tex/generic/tex4ht/xy.4ht + texmf-dist/tex4ht/base/unix/tex4ht.env + texmf-dist/tex4ht/base/win32/tex4ht.env + texmf-dist/tex4ht/bin/tex4ht.jar + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagd.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagd7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagd8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagd8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagd8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdc.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdo.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdo8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagdo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagk.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagk7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagk8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagk8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagk8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagkc.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagkc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagkc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagko.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagko7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagko8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagko8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/pagko8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/rpagd.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/rpagdo.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/rpagk.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/avantgar/rpagko.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkd.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkd7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkd8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkd8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkd8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdc.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdi.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdi7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdi8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdi8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdi8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdo.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdo8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkdo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkl.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkl8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkl8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklc.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkli.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkli7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkli8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkli8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbkli8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklo.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklo8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/pbklo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/rpbkd.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/rpbkdi.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/rpbkl.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/bookman/rpbkli.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrb.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrb7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrb8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrb8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrb8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrb8u.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbc.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbo.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbo8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrbo8u.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrr.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrr8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrr8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrr8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrr8u.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrrc.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrrc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrro.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrro7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrro8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/pcrro8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/rpcrb.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/rpcrbo.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/rpcrr.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/courier/rpcrro.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8cn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8rn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8tn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvb8z.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbc.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbc7tn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbc8tn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo7tn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo8cn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo8rn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbo8tn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbon.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvbrn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr8cn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr8rn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvr8tn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvrc.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvrc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvrc7tn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvrc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvrc8tn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro7tn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro8cn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro8rn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvro8tn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvron.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/phvrrn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/pplb8z.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/pplbi8z.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/pplr8z.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/pplri8z.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvb.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvbo.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvbon.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvbrn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvr.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvro.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvron.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/helvetic/rphvrrn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmb.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmbm.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmby.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmr.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmrm.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmrv.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/mathppl/zpplcmry.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/mathptmx/zptmcm7m.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/mathptmx/zptmcm7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/mathptmx/zptmcm7v.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/mathptmx/zptmcm7y.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncb.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncb7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncb8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncb8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncb8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbc.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbi.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbi7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbi8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbi8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbi8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbo.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbo8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncbo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncr.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncr7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncr8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncr8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncr8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncrc.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncrc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncrc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncri.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncri7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncri8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncri8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncri8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncro.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncro7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncro8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncro8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/pncro8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/rpncb.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/rpncbi.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/rpncr.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ncntrsbk/rpncri.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb9d.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb9e.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb9o.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplb9t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbc.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbc8z.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi9c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi9d.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi9e.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi9o.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbi9t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbo.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbo8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbu.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplbu8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr8rn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr9c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr9d.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr9e.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr9o.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplr9t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrc8z.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrc9d.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrc9e.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrc9o.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri9c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri9d.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri9e.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplri9o.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplro.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplro7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplro8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplro8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplro8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrr8re.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrre.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplrrn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplru.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/pplru8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplb.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplbi.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplbu.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplr.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplri.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplro.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplrre.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplrrn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/palatino/rpplru.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplb7d.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplb8a.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbcj7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbcj8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbi7d.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbi8a.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbij7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbij8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbij8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbj7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbj8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbj8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbjo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbjo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplbjo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppll7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppll8a.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppll8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppll8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppll8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppllc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppllc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplli7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplli8a.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplli8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplli8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplli8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppllo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppllo8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppllo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/ppllo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplm7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplm8a.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplm8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplm8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplm8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmi7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmi8a.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmi8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmi8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmi8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmo8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplmo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplr8a.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrc7d.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrcj7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrcj8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrcj8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrcjo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplri7d.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplri8a.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrij.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrij7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrij8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrj.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrj7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplrjo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplx7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplx8a.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplx8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplx8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplx8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxi7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxi8a.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxi8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxi8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxi8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxo8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/ppalatino/pplxo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/pslatex/pcrr8rn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/pslatex/pcrr8tn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/symbol/psyro.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/symbol/rpsyr.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/symbol/rpsyro.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmb.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmb7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmb8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmb8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmb8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbi.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbi7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbi8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbi8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbi8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbo.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbo8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmbo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmr.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmr8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmr8rn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmr8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmr8z.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmrc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmri.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmri8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmri8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmri8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmri8z.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmro7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmro8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmro8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmro8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmrr8re.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/ptmrrn.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmb.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmbi.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmbo.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmr.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmri.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmro.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/times/rptmrre.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putb7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putb8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putb8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbi7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbi8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbi8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putbo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putr7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putr8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putr8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putrc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putrc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putri7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putri8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putri8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putro7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putro8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/utopia/putro8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfchan/rpzcmi.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfding/pzcmi.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfding/pzcmi7t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfding/pzcmi8c.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfding/pzcmi8r.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfding/pzcmi8t.htf + texmf-dist/tex4ht/ht-fonts/alias/adobe/zapfding/rpzdr.htf + texmf-dist/tex4ht/ht-fonts/alias/ae/ae.htf + texmf-dist/tex4ht/ht-fonts/alias/ae/aetcsc.htf + texmf-dist/tex4ht/ht-fonts/alias/ams/euler/eurb.htf + texmf-dist/tex4ht/ht-fonts/alias/ams/euler/eurm.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/antpb.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/antpbi.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/antpri.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/anttb.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/anttri.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttcbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttcbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttcmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttcmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttcrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttcricap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttlcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttlicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/cs-anttricap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttcbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttcbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttcmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttcmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttcrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttcricap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttlcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttlicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ec-anttricap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/el-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ex-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/exp-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/greek-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttcbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttcbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttcmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttcmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttcrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttcricap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttlcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttlicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/qx-anttricap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/rm-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/sy-anttrz.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/t2a-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/t2b-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/t2c-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/t5-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttcbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttcbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttcmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttcmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttcrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttcricap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttlcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttlicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/texnansi-anttricap.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/ts1-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/antt/wncy-antt.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aealbattar.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aealmateen.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aealmohanadb.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aealmothnna.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aealyermook.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aearab.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aecortoba.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aedimnah.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aefurat.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aegranada.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aegraph.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aehani.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aekayrawan.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aekhalid.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aemashq.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aemetal.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aenada.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aenagham.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aenice.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aeostorah.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aeouhod.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aepetra.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aerehan.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aesalem.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aeshado.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aesharjah.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aesindibad.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aetarablus.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/aetholoth.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/homa.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/nazlib.htf + texmf-dist/tex4ht/ht-fonts/alias/arabi/titr.htf + texmf-dist/tex4ht/ht-fonts/alias/arev/favb8r.htf + texmf-dist/tex4ht/ht-fonts/alias/arev/favbi8r.htf + texmf-dist/tex4ht/ht-fonts/alias/arev/favri8r.htf + texmf-dist/tex4ht/ht-fonts/alias/arev/zavmb7t.htf + texmf-dist/tex4ht/ht-fonts/alias/arev/zavmbi7m.htf + texmf-dist/tex4ht/ht-fonts/alias/arev/zavmr7t.htf + texmf-dist/tex4ht/ht-fonts/alias/arev/zavmr7y.htf + texmf-dist/tex4ht/ht-fonts/alias/arev/zavmri7m.htf + texmf-dist/tex4ht/ht-fonts/alias/bera/fveb8r.htf + texmf-dist/tex4ht/ht-fonts/alias/bera/fveb8t.htf + texmf-dist/tex4ht/ht-fonts/alias/bera/fver8r.htf + texmf-dist/tex4ht/ht-fonts/alias/bera/fver8t.htf + texmf-dist/tex4ht/ht-fonts/alias/bera/fvero8r.htf + texmf-dist/tex4ht/ht-fonts/alias/bera/fvero8t.htf + texmf-dist/tex4ht/ht-fonts/alias/bera/fvmr8r.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchb7t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchbc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchbi7t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchbo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchr7t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchrc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchri7t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchro7t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/bchro8t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchb8r.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchb8t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchbc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchbi8r.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchbi8t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchbo8r.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchbo8t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchr8r.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchrc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchri8r.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchri8t.htf + texmf-dist/tex4ht/ht-fonts/alias/bitstrea/charter/bchro8r.htf + texmf-dist/tex4ht/ht-fonts/alias/cc-pl/pccsc.htf + texmf-dist/tex4ht/ht-fonts/alias/cc-pl/pcmi.htf + texmf-dist/tex4ht/ht-fonts/alias/cc-pl/pcr.htf + texmf-dist/tex4ht/ht-fonts/alias/cc-pl/pcsl.htf + texmf-dist/tex4ht/ht-fonts/alias/cc-pl/pcti.htf + texmf-dist/tex4ht/ht-fonts/alias/chartervn/bchri8v.htf + texmf-dist/tex4ht/ht-fonts/alias/chess/chess10f.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm01.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm02.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm03.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm04.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm05.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm06.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm07.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm08.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm09.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm10.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm11.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm12.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm13.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm14.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm15.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm16.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm17.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm18.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm19.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm20.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm21.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm22.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm23.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm24.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm25.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm26.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm27.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm28.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm29.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm30.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm31.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm32.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm33.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm34.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm35.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm36.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm37.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm38.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm39.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm40.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm41.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm42.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm43.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm44.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm45.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm46.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm47.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm48.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm49.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm50.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm51.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm52.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm53.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm54.htf + texmf-dist/tex4ht/ht-fonts/alias/cjk/b5ka/ntufsm55.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmb.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmbsy.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmbx.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmbxti.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmcs.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmcsc.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmcss.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmcti.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmcyr.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmdunh.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmff.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmfi.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmitt.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmsl.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmsltt.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmss.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmssq.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmtex.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmtt.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmu.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/cmvtt.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/sauter/wnbx.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/sauter/wnbxti.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/sauter/wnr.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/sauter/wnsl.htf + texmf-dist/tex4ht/ht-fonts/alias/cm/wncyi.htf + texmf-dist/tex4ht/ht-fonts/alias/concrete/ccmi.htf + texmf-dist/tex4ht/ht-fonts/alias/concrete/ccr.htf + texmf-dist/tex4ht/ht-fonts/alias/concrete/ccsl.htf + texmf-dist/tex4ht/ht-fonts/alias/concrete/ccti.htf + texmf-dist/tex4ht/ht-fonts/alias/cs/csti.htf + texmf-dist/tex4ht/ht-fonts/alias/cs/cstt.htf + texmf-dist/tex4ht/ht-fonts/alias/currency/feybl.htf + texmf-dist/tex4ht/ht-fonts/alias/currency/feybo.htf + texmf-dist/tex4ht/ht-fonts/alias/currency/feybr.htf + texmf-dist/tex4ht/ht-fonts/alias/currency/feyml.htf + texmf-dist/tex4ht/ht-fonts/alias/currency/feymo.htf + texmf-dist/tex4ht/ht-fonts/alias/cyklop/cs-cyklopr-sc.htf + texmf-dist/tex4ht/ht-fonts/alias/cyklop/ec-cyklopr-sc.htf + texmf-dist/tex4ht/ht-fonts/alias/cyklop/l7x-cyklopi-sc.htf + texmf-dist/tex4ht/ht-fonts/alias/cyklop/l7x-cyklopi.htf + texmf-dist/tex4ht/ht-fonts/alias/cyklop/l7x-cyklopr-sc.htf + texmf-dist/tex4ht/ht-fonts/alias/cyklop/l7x-cyklopr.htf + texmf-dist/tex4ht/ht-fonts/alias/cyklop/ly1-cyklopi.htf + texmf-dist/tex4ht/ht-fonts/alias/cyklop/ly1-cyklopr-sc.htf + texmf-dist/tex4ht/ht-fonts/alias/cyklop/ly1-cyklopr.htf + texmf-dist/tex4ht/ht-fonts/alias/cyklop/qx-cyklopi.htf + texmf-dist/tex4ht/ht-fonts/alias/cyklop/qx-cyklopr-sc.htf + texmf-dist/tex4ht/ht-fonts/alias/cyklop/t5-cyklopr.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmcb.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmcitt.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmcsltt.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmcssbx.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmcssi.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmctt.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/cmcyr/cmcu.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmbx.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmbxti.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmcsc.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmdunh.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmff.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmsl.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmsltt.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmss.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmssbx.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmssdc.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmssi.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmti.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmtt.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmvtt.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/kmvtti.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/wbxipa.htf + texmf-dist/tex4ht/ht-fonts/alias/cyrillic/wslipa.htf + texmf-dist/tex4ht/ht-fonts/alias/ec/dc.htf + texmf-dist/tex4ht/ht-fonts/alias/ec/dccc.htf + texmf-dist/tex4ht/ht-fonts/alias/ec/ec.htf + texmf-dist/tex4ht/ht-fonts/alias/ec/eccc.htf + texmf-dist/tex4ht/ht-fonts/alias/ec/ecxc.htf + texmf-dist/tex4ht/ht-fonts/alias/eulervm/zeuex.htf + texmf-dist/tex4ht/ht-fonts/alias/eulervm/zeur.htf + texmf-dist/tex4ht/ht-fonts/alias/eulervm/zeus.htf + texmf-dist/tex4ht/ht-fonts/alias/euro/zpeub.htf + texmf-dist/tex4ht/ht-fonts/alias/euro/zpeubi.htf + texmf-dist/tex4ht/ht-fonts/alias/euro/zpeubis.htf + texmf-dist/tex4ht/ht-fonts/alias/euro/zpeubit.htf + texmf-dist/tex4ht/ht-fonts/alias/euro/zpeubs.htf + texmf-dist/tex4ht/ht-fonts/alias/euro/zpeubt.htf + texmf-dist/tex4ht/ht-fonts/alias/euro/zpeuri.htf + texmf-dist/tex4ht/ht-fonts/alias/euro/zpeuris.htf + texmf-dist/tex4ht/ht-fonts/alias/euro/zpeurit.htf + texmf-dist/tex4ht/ht-fonts/alias/euro/zpeurs.htf + texmf-dist/tex4ht/ht-fonts/alias/euro/zpeurt.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy01.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy02.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy03.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy04.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy05.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy06.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy07.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy08.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy09.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy10.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy11.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy12.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy13.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy14.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy15.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy16.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy17.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy18.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy19.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy20.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy21.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy22.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy23.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy24.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy25.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy26.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy27.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy28.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy29.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy30.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy31.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy32.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy33.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy34.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy35.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy36.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy37.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy38.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy39.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy40.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy41.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy42.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy43.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy44.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy45.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy46.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy47.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy48.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy49.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy50.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy51.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy52.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy53.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy54.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy55.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy56.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy57.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy58.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy59.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy60.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy61.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy62.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy63.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy64.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy65.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy66.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy67.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy68.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy69.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy70.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy71.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy72.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy73.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy74.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy75.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy76.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy77.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy78.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy79.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy80.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy81.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy82.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy83.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy84.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy85.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy86.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy87.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy88.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy89.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy90.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy91.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy92.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy93.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkcy/gbkcy94.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs01.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs02.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs03.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs04.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs05.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs06.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs07.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs08.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs09.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs10.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs11.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs12.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs13.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs14.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs15.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs16.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs17.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs18.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs19.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs20.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs21.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs22.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs23.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs24.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs25.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs26.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs27.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs28.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs29.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs30.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs31.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs32.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs33.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs34.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs35.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs36.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs37.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs38.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs39.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs40.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs41.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs42.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs43.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs44.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs45.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs46.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs47.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs48.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs49.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs50.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs51.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs52.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs53.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs54.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs55.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs56.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs57.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs58.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs59.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs60.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs61.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs62.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs63.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs64.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs65.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs66.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs67.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs68.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs69.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs70.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs71.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs72.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs73.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs74.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs75.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs76.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs77.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs78.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs79.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs80.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs81.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs82.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs83.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs84.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs85.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs86.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs87.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs88.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs89.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs90.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs91.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs92.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs93.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkfs/gbkfs94.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei01.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei02.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei03.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei04.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei05.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei06.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei07.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei08.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei09.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei10.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei11.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei12.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei13.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei14.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei15.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei16.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei17.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei18.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei19.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei20.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei21.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei22.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei23.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei24.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei25.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei26.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei27.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei28.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei29.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei30.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei31.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei32.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei33.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei34.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei35.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei36.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei37.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei38.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei39.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei40.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei41.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei42.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei43.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei44.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei45.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei46.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei47.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei48.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei49.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei50.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei51.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei52.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei53.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei54.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei55.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei56.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei57.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei58.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei59.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei60.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei61.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei62.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei63.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei64.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei65.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei66.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei67.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei68.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei69.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei70.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei71.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei72.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei73.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei74.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei75.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei76.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei77.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei78.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei79.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei80.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei81.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei82.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei83.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei84.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei85.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei86.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei87.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei88.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei89.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei90.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei91.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei92.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei93.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkhei/gbkhei94.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai01.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai02.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai03.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai04.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai05.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai06.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai07.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai08.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai09.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai10.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai11.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai12.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai13.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai14.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai15.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai16.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai17.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai18.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai19.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai20.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai21.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai22.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai23.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai24.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai25.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai26.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai27.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai28.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai29.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai30.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai31.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai32.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai33.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai34.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai35.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai36.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai37.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai38.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai39.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai40.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai41.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai42.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai43.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai44.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai45.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai46.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai47.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai48.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai49.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai50.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai51.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai52.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai53.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai54.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai55.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai56.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai57.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai58.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai59.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai60.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai61.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai62.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai63.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai64.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai65.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai66.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai67.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai68.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai69.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai70.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai71.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai72.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai73.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai74.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai75.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai76.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai77.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai78.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai79.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai80.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai81.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai82.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai83.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai84.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai85.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai86.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai87.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai88.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai89.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai90.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai91.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai92.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai93.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkkai/gbkkai94.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli01.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli02.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli03.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli04.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli05.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli06.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli07.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli08.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli09.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli10.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli11.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli12.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli13.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli14.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli15.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli16.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli17.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli18.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli19.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli20.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli21.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli22.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli23.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli24.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli25.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli26.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli27.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli28.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli29.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli30.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli31.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli32.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli33.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli34.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli35.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli36.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli37.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli38.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli39.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli40.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli41.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli42.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli43.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli44.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli45.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli46.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli47.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli48.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli49.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli50.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli51.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli52.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli53.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli54.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli55.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli56.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli57.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli58.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli59.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli60.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli61.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli62.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli63.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli64.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli65.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli66.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli67.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli68.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli69.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli70.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli71.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli72.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli73.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli74.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli75.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli76.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli77.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli78.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli79.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli80.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli81.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli82.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli83.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli84.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli85.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli86.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli87.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli88.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli89.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli90.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli91.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli92.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli93.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkli/gbkli94.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu01.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu02.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu03.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu04.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu05.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu06.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu07.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu08.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu09.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu10.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu11.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu12.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu13.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu14.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu15.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu16.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu17.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu18.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu19.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu20.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu21.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu22.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu23.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu24.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu25.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu26.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu27.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu28.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu29.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu30.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu31.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu32.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu33.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu34.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu35.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu36.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu37.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu38.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu39.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu40.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu41.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu42.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu43.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu44.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu45.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu46.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu47.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu48.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu49.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu50.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu51.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu52.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu53.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu54.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu55.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu56.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu57.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu58.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu59.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu60.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu61.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu62.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu63.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu64.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu65.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu66.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu67.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu68.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu69.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu70.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu71.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu72.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu73.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu74.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu75.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu76.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu77.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu78.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu79.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu80.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu81.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu82.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu83.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu84.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu85.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu86.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu87.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu88.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu89.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu90.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu91.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu92.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu93.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkshu/gbkshu94.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu01.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu02.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu03.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu04.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu05.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu06.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu07.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu08.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu09.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu10.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu11.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu12.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu13.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu14.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu15.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu16.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu17.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu18.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu19.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu20.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu21.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu22.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu23.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu24.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu25.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu26.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu27.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu28.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu29.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu30.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu31.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu32.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu33.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu34.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu35.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu36.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu37.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu38.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu39.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu40.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu41.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu42.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu43.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu44.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu45.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu46.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu47.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu48.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu49.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu50.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu51.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu52.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu53.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu54.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu55.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu56.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu57.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu58.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu59.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu60.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu61.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu62.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu63.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu64.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu65.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu66.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu67.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu68.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu69.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu70.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu71.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu72.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu73.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu74.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu75.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu76.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu77.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu78.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu79.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu80.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu81.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu82.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu83.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu84.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu85.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu86.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu87.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu88.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu89.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu90.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu91.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu92.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu93.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbksu/gbksu94.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh01.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh02.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh03.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh04.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh05.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh06.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh07.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh08.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh09.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh10.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh11.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh12.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh13.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh14.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh15.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh16.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh17.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh18.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh19.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh20.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh21.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh22.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh23.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh24.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh25.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh26.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh27.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh28.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh29.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh30.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh31.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh32.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh33.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh34.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh35.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh36.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh37.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh38.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh39.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh40.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh41.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh42.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh43.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh44.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh45.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh46.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh47.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh48.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh49.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh50.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh51.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh52.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh53.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh54.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh55.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh56.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh57.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh58.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh59.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh60.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh61.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh62.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh63.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh64.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh65.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh66.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh67.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh68.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh69.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh70.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh71.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh72.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh73.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh74.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh75.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh76.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh77.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh78.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh79.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh80.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh81.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh82.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh83.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh84.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh85.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh86.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh87.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh88.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh89.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh90.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh91.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh92.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh93.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxh/gbkxh94.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk01.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk02.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk03.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk04.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk05.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk06.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk07.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk08.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk09.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk10.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk11.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk12.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk13.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk14.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk15.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk16.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk17.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk18.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk19.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk20.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk21.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk22.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk23.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk24.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk25.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk26.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk27.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk28.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk29.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk30.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk31.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk32.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk33.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk34.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk35.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk36.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk37.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk38.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk39.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk40.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk41.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk42.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk43.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk44.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk45.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk46.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk47.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk48.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk49.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk50.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk51.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk52.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk53.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk54.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk55.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk56.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk57.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk58.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk59.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk60.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk61.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk62.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk63.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk64.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk65.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk66.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk67.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk68.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk69.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk70.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk71.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk72.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk73.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk74.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk75.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk76.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk77.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk78.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk79.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk80.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk81.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk82.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk83.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk84.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk85.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk86.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk87.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk88.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk89.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk90.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk91.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk92.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk93.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxk/gbkxk94.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw01.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw02.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw03.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw04.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw05.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw06.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw07.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw08.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw09.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw10.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw11.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw12.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw13.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw14.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw15.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw16.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw17.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw18.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw19.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw20.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw21.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw22.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw23.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw24.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw25.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw26.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw27.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw28.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw29.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw30.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw31.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw32.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw33.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw34.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw35.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw36.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw37.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw38.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw39.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw40.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw41.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw42.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw43.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw44.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw45.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw46.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw47.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw48.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw49.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw50.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw51.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw52.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw53.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw54.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw55.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw56.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw57.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw58.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw59.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw60.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw61.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw62.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw63.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw64.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw65.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw66.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw67.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw68.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw69.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw70.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw71.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw72.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw73.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw74.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw75.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw76.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw77.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw78.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw79.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw80.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw81.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw82.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw83.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw84.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw85.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw86.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw87.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw88.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw89.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw90.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw91.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw92.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw93.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkxw/gbkxw94.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao01.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao02.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao03.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao04.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao05.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao06.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao07.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao08.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao09.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao10.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao11.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao12.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao13.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao14.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao15.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao16.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao17.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao18.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao19.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao20.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao21.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao22.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao23.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao24.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao25.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao26.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao27.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao28.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao29.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao30.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao31.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao32.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao33.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao34.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao35.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao36.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao37.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao38.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao39.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao40.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao41.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao42.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao43.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao44.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao45.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao46.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao47.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao48.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao49.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao50.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao51.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao52.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao53.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao54.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao55.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao56.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao57.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao58.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao59.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao60.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao61.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao62.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao63.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao64.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao65.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao66.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao67.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao68.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao69.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao70.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao71.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao72.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao73.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao74.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao75.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao76.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao77.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao78.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao79.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao80.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao81.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao82.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao83.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao84.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao85.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao86.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao87.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao88.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao89.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao90.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao91.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao92.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao93.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyao/gbkyao94.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou01.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou02.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou03.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou04.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou05.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou06.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou07.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou08.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou09.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou10.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou11.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou12.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou13.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou14.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou15.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou16.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou17.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou18.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou19.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou20.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou21.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou22.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou23.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou24.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou25.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou26.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou27.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou28.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou29.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou30.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou31.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou32.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou33.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou34.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou35.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou36.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou37.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou38.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou39.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou40.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou41.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou42.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou43.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou44.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou45.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou46.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou47.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou48.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou49.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou50.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou51.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou52.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou53.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou54.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou55.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou56.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou57.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou58.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou59.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou60.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou61.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou62.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou63.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou64.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou65.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou66.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou67.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou68.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou69.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou70.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou71.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou72.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou73.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou74.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou75.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou76.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou77.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou78.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou79.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou80.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou81.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou82.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou83.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou84.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou85.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou86.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou87.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou88.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou89.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou90.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou91.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou92.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou93.htf + texmf-dist/tex4ht/ht-fonts/alias/gbk/gbkyou/gbkyou94.htf + texmf-dist/tex4ht/ht-fonts/alias/greek/ibygrk/fibo.htf + texmf-dist/tex4ht/ht-fonts/alias/hebrew/cjheblsm.htf + texmf-dist/tex4ht/ht-fonts/alias/hebrew/deads.htf + texmf-dist/tex4ht/ht-fonts/alias/hebrew/hcaption.htf + texmf-dist/tex4ht/ht-fonts/alias/hebrew/oldjaf.htf + texmf-dist/tex4ht/ht-fonts/alias/hebrew/rcjheblsm.htf + texmf-dist/tex4ht/ht-fonts/alias/hebrew/rcjhebltx.htf + texmf-dist/tex4ht/ht-fonts/alias/hebrew/telav.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonabcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonabicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonacbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonacbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonachcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonachicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonaclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonaclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonacmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonacmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonacrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonacricap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonahcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonahicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonalcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonalicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonamcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonamicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonarcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/cs-iwonacap/cs-iwonaricap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwona.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonabcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonabicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonacbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonacbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonachcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonachicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonaclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonaclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonacmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonacmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonacrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonacricap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonahcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonahicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonalcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonalicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonamcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonamicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonarcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/ec-iwonacap/ec-iwonaricap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/mi-iwona.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonabcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonabicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonacbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonacbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonachcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonachicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonaclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonaclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonacmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonacmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonacrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonacricap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonahcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonahicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonalcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonalicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonamcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonamicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonarcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/qx/qx-iwonaricap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonabcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonabicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonacbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonacbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonachcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonachicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonaclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonaclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonacmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonacmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonacrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonacricap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonahcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonahicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonalcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonalicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonamcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonamicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonarcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/t5-iwonacap/t5-iwonaricap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonabcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonabicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonacbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonacbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonachcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonachicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonaclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonaclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonacmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonacmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonacrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonacricap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonahcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonahicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonalcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonalicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonamcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonamicap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonarcap.htf + texmf-dist/tex4ht/ht-fonts/alias/iwona/texnansi/texnansi-iwonaricap.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcbi.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcbl.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcbx.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcci.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcit.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcrb.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcsi.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcsl.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcso.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcss.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcst.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcsx.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcti.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tctt.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcui.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcvi.htf + texmf-dist/tex4ht/ht-fonts/alias/jknappen/tc/tcvt.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwona/cs-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierchcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierchicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriercricap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierhcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierhicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierlcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierlicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriermcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kuriermicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/cs-iwonacap/cs-kurierricap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierchcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierchicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriercricap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierhcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierhicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierlcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierlicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriermcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kuriermicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ec/ec-kurierricap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/ex-iwona/ex-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/exp-iwona/exp-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/greek-iwona/greek-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/mi-iwona/mi-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwona/qx-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierchcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierchicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriercricap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierhcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierhicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierlcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierlicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriermcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kuriermicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/qx-iwonacap/qx-kurierricap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/rm-iwona/rm-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/sy-iwona/sy-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t2a-iwona/t2a-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t2b-iwona/t2b-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t2c-iwona/t2c-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwona/t5-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierchcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierchicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriercricap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierhcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierhicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierlcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierlicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriermcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kuriermicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/t5-iwonacap/t5-kurierricap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierchcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierchicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriercricap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierhcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierhicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierlcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierlicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriermcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kuriermicap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/texnansi/texnansi-kurierricap.htf + texmf-dist/tex4ht/ht-fonts/alias/kurier/wncy-iwona/wncy-kurier.htf + texmf-dist/tex4ht/ht-fonts/alias/latex/lcmss.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/labi.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/labx.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lait.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lass.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/latc.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lati.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/latt.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lbbx.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lbcc.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lbrm.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lbss.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lbti.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lbtt.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lcbx.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lccc.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lcrm.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lcss.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lcti.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/lctt.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/ldbx.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/ldcc.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/ldrm.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/ldss.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/ldti.htf + texmf-dist/tex4ht/ht-fonts/alias/lh/lh-t2a/ldtt.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxl.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-8r.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-lgi.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-00.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-01.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-02.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-03.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-04.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-05.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-1e.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-1f.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-20.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-21.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-22.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-23.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-24.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-25.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-26.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-27.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-2c.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-a7.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-circle.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-e0.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-e1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-f6.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-fb.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-ff.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-infsup.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-lgi.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlb-xl-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbc-t1o.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbc-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-8r.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-lgi.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-00.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-01.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-02.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-03.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-04.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-05.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-1e.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-1f.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-20.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-21.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-23.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-25.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-26.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-2c.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-a7.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-circle.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-fb.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-ff.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-infsup.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-lgi.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbi-xl-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbic-t1o.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlbic-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlr-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlr-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlr-xl-infsup.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlrc-t1o.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlrc-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-8r.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-lgi.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-00.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-01.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-02.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-03.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-04.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-05.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-1e.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-1f.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-20.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-21.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-22.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-23.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-25.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-27.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-2c.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-a7.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-e0.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-f6.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-fb.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-ff.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-infsup.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-lgi.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlri-xl-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlric-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlric-t1o.htf + texmf-dist/tex4ht/ht-fonts/alias/libertine/fxlric-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/cs-lmcs.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-ec/ec-lm.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-qx/lm-qx.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-qx/qx-lm.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cmin/cminch.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cmrm/cmr.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cmsc/cmcscsl.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csin/csinch.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csb.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csbx.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csbxsl.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csbxti.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/cssl.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csss.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csssbx.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csssdc.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csssi.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csssq.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csssqi.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-csrm/csu.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cstt/csitt.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cstt/cssltt.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cstt/cstcsc.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-cstt/csvtt.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-plrm/plss.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lm-rep-t5psn/vntcsc.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lmbsy.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lmex.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lmmi.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/lmsy.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/pre2005/cork-lmtcs.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/pre2005/qx-.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/pre2005/qx-lmtcs.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/pre2005/qx-lmvt.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/pre2005/texnansi-lm.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/pre2005/texnansi-lmtcs.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/rm-lmt.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/rm-lmvt.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/t5-lm.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/t5-lmtcs.htf + texmf-dist/tex4ht/ht-fonts/alias/lm/ts1-.htf + texmf-dist/tex4ht/ht-fonts/alias/marvosym/fmvri8x.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchb7m.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchb7t.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchb7v.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchb7y.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchbi7m.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchbi7t.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchbo7t.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchr7m.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchr7t.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchr7y.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchri7m.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchri7t.htf + texmf-dist/tex4ht/ht-fonts/alias/mathdesign/mdbchro7t.htf + texmf-dist/tex4ht/ht-fonts/alias/mathpple/eurbo.htf + texmf-dist/tex4ht/ht-fonts/alias/mathpple/eurmo.htf + texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppleb7m.htf + texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppleb7t.htf + texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppleb7y.htf + texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppler7m.htf + texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppler7t.htf + texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppler7v.htf + texmf-dist/tex4ht/ht-fonts/alias/mathpple/zppler7y.htf + texmf-dist/tex4ht/ht-fonts/alias/mathtime/blex.htf + texmf-dist/tex4ht/ht-fonts/alias/mathtime/blmi.htf + texmf-dist/tex4ht/ht-fonts/alias/mathtime/blsy.htf + texmf-dist/tex4ht/ht-fonts/alias/mathtime/mtex.htf + texmf-dist/tex4ht/ht-fonts/alias/mathtime/mtmi.htf + texmf-dist/tex4ht/ht-fonts/alias/mathtime/mtsy.htf + texmf-dist/tex4ht/ht-fonts/alias/mathtime/mtsyn.htf + texmf-dist/tex4ht/ht-fonts/alias/pazo/fplmbb.htf + texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmb7m.htf + texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmb7t.htf + texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmb7y.htf + texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmr7m.htf + texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmr7t.htf + texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmr7v.htf + texmf-dist/tex4ht/ht-fonts/alias/pazo/zplmr7y.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plb.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plbxsl.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plbxti.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plcsc.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/pldunh.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plex.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plff.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plfi.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plitt.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plmi.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plr.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plsl.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plsltt.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plsy.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plti.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/pltt.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plu.htf + texmf-dist/tex4ht/ht-fonts/alias/pl/plvtt.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/p1x.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/p1xbsc.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/p1xsc.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pcx.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxb.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbex.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbexa.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbi.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbmi.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbmi1.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbmia.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbsc.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbsl.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbsy.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbsya.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxbsyb.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxex.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxi.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxmi.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxmi1.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxmia.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxsl.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxsy.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxsya.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/pxsyb.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpcxb.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpcxi.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpcxsl.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpxbmi.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpxbsc.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpxi.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpxmi.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpxpplb.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpxr.htf + texmf-dist/tex4ht/ht-fonts/alias/pxfonts/rpxsl.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qbkb.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qbkbi.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qbkri.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qcrb.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qcrbi.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qcrri.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvb.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvbi.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvcb.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvcbi.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvcr.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvcri.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvr.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qhvri.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qplb.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qplbi.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qplr.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qplri.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qtmb.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qtmbi.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qtmr.htf + texmf-dist/tex4ht/ht-fonts/alias/qfonts/qtmri.htf + texmf-dist/tex4ht/ht-fonts/alias/sw/arial.htf + texmf-dist/tex4ht/ht-fonts/alias/sw/cour.htf + texmf-dist/tex4ht/ht-fonts/alias/sw/times.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AccanthisADFStdNo3-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AccanthisADFStdNo3-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AccanthisADFStdNo3-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AccanthisADFStdNo3-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Black-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Black-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Black-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Black-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Black-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Black-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-BlackItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-BlackItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-BlackItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-BlackItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-BlackItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-BlackItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Bold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-BoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Italic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Regular-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Alegreya-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSC-Black-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSC-BlackItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSC-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSC-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSC-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSC-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Black-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Black-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Black-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Black-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Black-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Black-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-BlackItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-BlackItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-BlackItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-BlackItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-BlackItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-BlackItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Bold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-BoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ExtraBold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ExtraBold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ExtraBold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ExtraBold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ExtraBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ExtraBold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ExtraBoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ExtraBoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ExtraBoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ExtraBoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ExtraBoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ExtraBoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Italic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Light-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Light-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Light-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Light-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Light-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Light-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-LightItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-LightItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-LightItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-LightItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-LightItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-LightItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Medium-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Medium-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Medium-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Medium-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Medium-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Medium-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-MediumItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-MediumItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-MediumItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-MediumItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-MediumItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-MediumItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Regular-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Thin-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Thin-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Thin-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Thin-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Thin-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-Thin-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ThinItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ThinItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ThinItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ThinItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ThinItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSans-ThinItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Black-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Black-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Black-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Black-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Black-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Black-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-BlackItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-BlackItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-BlackItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-BlackItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-BlackItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-BlackItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Bold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-BoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ExtraBold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ExtraBold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ExtraBold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ExtraBold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ExtraBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ExtraBold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ExtraBoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ExtraBoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ExtraBoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ExtraBoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ExtraBoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ExtraBoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Italic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Light-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Light-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Light-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Light-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Light-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Light-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-LightItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-LightItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-LightItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-LightItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-LightItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-LightItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Medium-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Medium-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Medium-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Medium-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Medium-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Medium-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-MediumItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-MediumItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-MediumItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-MediumItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-MediumItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-MediumItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Regular-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Thin-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Thin-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Thin-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Thin-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Thin-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-Thin-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ThinItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ThinItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ThinItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ThinItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ThinItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AlegreyaSansSC-ThinItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AnonymousPro-Bold-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AnonymousPro-BoldItalic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AnonymousPro-BoldSC-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AnonymousPro-Italic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AnonymousPro-Regular-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/AnonymousPro-RegularSC-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Bol-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-BolIta-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Ita-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Baskervaldx-Reg-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-Bold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-BoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-Italic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-Medium-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-Medium-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-MediumItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-MediumItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-SemiBold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-SemiBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-SemiBoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cabin-SemiBoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-Bold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-BoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-Medium-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-Medium-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-MediumItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-MediumItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-RegularItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-RegularItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-SemiBold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-SemiBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-SemiBoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CabinCondensed-SemiBoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Caladea-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Caladea-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Caladea-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Caladea-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cantarell-Bold-Slanted-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cantarell-Bold-Slanted-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cantarell-Bold-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cantarell-Bold-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cantarell-Regular-Slanted-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cantarell-Regular-Slanted-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cantarell-Regular-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cantarell-Regular-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-Bold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-BoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-Italic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Carlito-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cinzel-Black-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cinzel-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Cinzel-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CinzelDecorative-Black-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CinzelDecorative-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/CinzelDecorative-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ClearSans-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ClearSans-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ClearSans-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ClearSans-Light-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ClearSans-Medium-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ClearSans-MediumItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ClearSans-Thin-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ClearSans-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Comfortaa-Bold-Slanted-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Comfortaa-Bold-Slanted-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Comfortaa-Bold-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Comfortaa-Bold-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Comfortaa-Light-Slanted-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Comfortaa-Light-Slanted-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Comfortaa-Light-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Comfortaa-Light-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Comfortaa-Regular-Slanted-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Comfortaa-Regular-Slanted-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Comfortaa-Regular-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Comfortaa-Regular-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSans-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSans-BoldOblique-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSans-ExtraLight-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSans-Oblique-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSans-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSansCondensed-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSansCondensed-BoldOblique-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSansCondensed-Oblique-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSansCondensed-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSansMono-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSansMono-BoldOblique-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSansMono-Oblique-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSansMono-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSerif-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSerif-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSerif-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSerif-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSerifCondensed-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSerifCondensed-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSerifCondensed-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DejaVuSerifCondensed-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSans-Bold-Slanted-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSans-Bold-Slanted-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSans-Bold-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSans-Bold-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSans-Slanted-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSans-Slanted-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSans-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSans-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSansMono-Slanted-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSansMono-Slanted-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSansMono-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSansMono-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-Bold-Slanted-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-Bold-Slanted-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-Bold-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-Bold-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-BoldItalic-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-BoldItalic-Upright-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-BoldItalic-Upright-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-BoldItalic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-Italic-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-Italic-Upright-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-Italic-Upright-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-Italic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-Regular-Slanted-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-Regular-Slanted-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-Regular-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/DroidSerif-Regular-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramond12-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/EBGaramondInitials-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Bold-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Bold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Bold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Bold-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Bold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Bold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Bold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldItalic-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldItalic-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldSlanted-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldSlanted-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldSlanted-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldSlanted-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldSlanted-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldSlanted-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldSlanted-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldSlanted-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldSlanted-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldSlanted-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldSlanted-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-BoldSlanted-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Italic-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Italic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Italic-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Regular-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Regular-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Regular-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Regular-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Regular-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Regular-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-RegularSlanted-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-RegularSlanted-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-RegularSlanted-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-RegularSlanted-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-RegularSlanted-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-RegularSlanted-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-RegularSlanted-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-RegularSlanted-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-RegularSlanted-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-RegularSlanted-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-RegularSlanted-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Erewhon-RegularSlanted-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Bold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Bold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Bold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Bold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BoldItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BoldItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Book-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Book-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Book-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Book-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Book-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Book-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Book-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Book-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Book-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BookItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BookItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BookItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BookItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BookItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BookItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BookItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BookItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-BookItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBoldItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBoldItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraBoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLight-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLight-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLight-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLight-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLight-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLight-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLight-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLight-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLight-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLightItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLightItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLightItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLightItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLightItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLightItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLightItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLightItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ExtraLightItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Heavy-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Heavy-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Heavy-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Heavy-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Heavy-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Heavy-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Heavy-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Heavy-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Heavy-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-HeavyItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-HeavyItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-HeavyItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-HeavyItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-HeavyItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-HeavyItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-HeavyItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-HeavyItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-HeavyItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Italic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Italic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Italic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Italic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Light-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Light-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Light-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Light-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Light-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Light-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Light-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Light-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Light-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-LightItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-LightItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-LightItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-LightItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-LightItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-LightItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-LightItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-LightItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-LightItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Medium-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Medium-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Medium-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Medium-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Medium-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Medium-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Medium-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Medium-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Medium-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-MediumItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-MediumItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-MediumItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-MediumItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-MediumItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-MediumItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-MediumItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-MediumItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-MediumItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Regular-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Regular-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Regular-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBoldItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBoldItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-SemiBoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Thin-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Thin-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Thin-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Thin-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Thin-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Thin-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Thin-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Thin-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-Thin-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ThinItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ThinItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ThinItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ThinItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ThinItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ThinItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ThinItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ThinItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-ThinItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLight-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLight-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLight-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLight-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLight-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLight-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLight-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLight-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLight-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLightItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLightItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLightItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLightItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLightItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLightItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLightItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLightItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/FiraSans-UltraLightItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADF-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADF-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADF-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADF-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADFCond-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADFCond-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADFCond-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADFCond-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADFNo2-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADFNo2-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADFNo2-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADFNo2-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADFNo2Cond-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADFNo2Cond-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADFNo2Cond-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/GilliusADFNo2Cond-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Bold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-BoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Italic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Regular-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Regular-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Heuristica-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-Bla-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-Bla-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-BlaIta-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-BlaIta-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-Bol-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-Bol-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-BolIta-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-BolIta-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-Hai-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-Hai-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-HaiIta-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-HaiIta-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-Lig-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-Lig-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-LigIta-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-LigIta-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-Reg-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-Reg-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-RegIta-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Lato-RegIta-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreBaskerville-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreBaskerville-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreBaskerville-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreBaskerville-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreBaskerville-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreBaskerville-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreBaskerville-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreBaskerville-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreCaslonText-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreCaslonText-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreCaslonText-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreCaslonText-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreCaslonText-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreCaslonText-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreCaslonText-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreCaslonText-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreCaslonText-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreCaslonText-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreCaslonText-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LibreCaslonText-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumT-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumT-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumT-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumT-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumT-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumT-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumT-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumT-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumT-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTB-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTB-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTB-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTB-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTB-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTB-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTB-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTB-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTB-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTBO-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTBO-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTBO-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTBO-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTBO-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTBO-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTBO-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTBO-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTBO-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTI-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTI-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTI-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTI-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTI-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTI-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTI-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTI-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinBiolinumTI-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineDisplayT-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineDisplayT-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineDisplayT-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineDisplayT-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineDisplayT-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineIT-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineIT-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineIT-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineMT-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineMT-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineMTB-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineMTB-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineMTBO-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineMTBO-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineMTO-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineMTO-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineT-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineT-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineT-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineT-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineT-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineT-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineT-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineT-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineT-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTB-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTB-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTB-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTB-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTB-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTB-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTB-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTB-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTB-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTBI-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTBI-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTBI-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTBI-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTBI-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTBI-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTBI-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTBI-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTBI-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTI-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTI-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTI-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTI-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTI-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTI-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTI-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTI-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTI-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTZ-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTZ-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTZ-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTZ-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTZ-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTZ-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTZ-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTZ-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTZ-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTZI-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTZI-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTZI-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTZI-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTZI-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTZI-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTZI-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTZI-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LinLibertineTZI-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LobsterTwo-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LobsterTwo-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LobsterTwo-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/LobsterTwo-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Merriweather-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Merriweather-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Merriweather-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Merriweather-Light-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Merriweather-LightIt-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Merriweather-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Merriweather-UltraBdIt-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Merriweather-UltraBold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MerriweatherSans-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MerriweatherSans-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MerriweatherSans-ExtraBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MerriweatherSans-ExtraBoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MerriweatherSans-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MerriweatherSans-Light-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MerriweatherSans-LightItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MerriweatherSans-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MinLibBol-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MinLibBolIta-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MinLibIta-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MinLibReg-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Bold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-BoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Italic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Regular-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpirit-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Bold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-BoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Italic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Regular-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/MintSpiritNo2-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Bold-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Bold-SmallCaps-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Bold-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Bold-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-BoldItalic-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-BoldItalic-SmallCaps-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-BoldItalic-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-BoldItalic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-CondLight-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-CondLight-SmallCaps-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-CondLight-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-CondLight-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-CondLightItalic-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-CondLightItalic-SmallCaps-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-CondLightItalic-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-CondLightItalic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-ExtraBold-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-ExtraBold-SmallCaps-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-ExtraBold-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-ExtraBold-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-ExtraBoldItalic-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-ExtraBoldItalic-SmallCaps-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-ExtraBoldItalic-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-ExtraBoldItalic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Italic-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Italic-SmallCaps-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Italic-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Italic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Light-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Light-SmallCaps-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Light-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Light-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-LightItalic-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-LightItalic-SmallCaps-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-LightItalic-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-LightItalic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Regular-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Regular-SmallCaps-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Regular-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Regular-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Semibold-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Semibold-SmallCaps-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Semibold-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-Semibold-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-SemiboldItalic-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-SemiboldItalic-SmallCaps-OSFigures-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-SemiboldItalic-SmallCaps-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OpenSans-SemiboldItalic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Overlock-Black-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Overlock-BlackItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Overlock-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Overlock-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Overlock-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Overlock-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/OverlockSC-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTMono-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTMono-BoldSlanted-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTMono-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTMono-Slanted-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSans-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSans-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSans-Caption-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSans-CaptionBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSans-CaptionBoldSlanted-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSans-CaptionSlanted-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSans-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSans-Narrow-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSans-NarrowBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSans-NarrowBoldSlanted-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSans-NarrowSlanted-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSans-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSerif-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSerif-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSerif-BoldSlanted-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSerif-BoldUprightItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSerif-Caption-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSerif-CaptionItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSerif-CaptionSlanted-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSerif-CaptionUprightItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSerif-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSerif-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSerif-Slanted-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PTSerif-UprightItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Black-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Black-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Black-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Black-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Black-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-BlackItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-BlackItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-BlackItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-BlackItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-BlackItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Bold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Bold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-BoldItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-BoldItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Italic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Italic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Regular-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Regular-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/PlayfairDisplay-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Quattrocento-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Quattrocento-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Quattrocento-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Quattrocento-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/QuattrocentoItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/QuattrocentoItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/QuattrocentoRegular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/QuattrocentoRegular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/QuattrocentoSans-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/QuattrocentoSans-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/QuattrocentoSans-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/QuattrocentoSans-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/QuattrocentoSans-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/QuattrocentoSans-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/QuattrocentoSans-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/QuattrocentoSans-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Black-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Black-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Black-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Black-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-BlackItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-BlackItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-BlackItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-BlackItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Bold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Bold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-BoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-BoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraBold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraBold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraBold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraBoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraBoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraBoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraBoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraLight-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraLight-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraLight-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraLight-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraLightItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraLightItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraLightItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ExtraLightItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Italic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Italic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Light-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Light-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Light-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Light-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-LightItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-LightItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-LightItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-LightItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Medium-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Medium-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Medium-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Medium-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-MediumItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-MediumItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-MediumItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-MediumItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Regular-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-SemiBold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-SemiBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-SemiBold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-SemiBold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-SemiBoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-SemiBoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-SemiBoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-SemiBoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Thin-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Thin-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Thin-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-Thin-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ThinItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ThinItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ThinItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Raleway-ThinItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Roboto-Black-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Roboto-BlackItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Roboto-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Roboto-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Roboto-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Roboto-Light-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Roboto-LightItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Roboto-Medium-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Roboto-MediumItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Roboto-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Roboto-Thin-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/Roboto-ThinItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/RobotoCondensed-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/RobotoCondensed-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/RobotoCondensed-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/RobotoCondensed-Light-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/RobotoCondensed-LightItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/RobotoCondensed-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/RobotoSlab-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/RobotoSlab-Light-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/RobotoSlab-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/RobotoSlab-Thin-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Black-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Black-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Black-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Black-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Black-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Black-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Bold-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Bold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Bold-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-ExtraLight-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-ExtraLight-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-ExtraLight-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-ExtraLight-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-ExtraLight-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-ExtraLight-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Light-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Light-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Light-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Light-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Light-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Light-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Medium-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Medium-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Medium-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Medium-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Medium-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Medium-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Regular-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Regular-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Regular-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Semibold-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Semibold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Semibold-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Semibold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Semibold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceCodePro-Semibold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Black-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Black-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Black-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Black-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Black-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Black-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Black-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Black-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Black-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Black-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Black-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Black-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BlackIt-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BlackIt-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BlackIt-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BlackIt-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BlackIt-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BlackIt-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BlackIt-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BlackIt-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Bold-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Bold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Bold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Bold-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Bold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Bold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Bold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BoldIt-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BoldIt-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BoldIt-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BoldIt-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BoldIt-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BoldIt-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BoldIt-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-BoldIt-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLight-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLight-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLight-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLight-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLight-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLight-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLight-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLight-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLight-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLight-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLight-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLight-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLightIt-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLightIt-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLightIt-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLightIt-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLightIt-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLightIt-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLightIt-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-ExtraLightIt-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-It-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-It-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-It-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-It-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-It-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-It-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-It-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-It-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Light-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Light-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Light-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Light-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Light-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Light-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Light-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Light-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Light-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Light-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Light-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Light-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-LightIt-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-LightIt-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-LightIt-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-LightIt-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-LightIt-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-LightIt-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-LightIt-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-LightIt-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Regular-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Regular-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Regular-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Regular-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Regular-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Regular-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Semibold-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Semibold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Semibold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Semibold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Semibold-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Semibold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Semibold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Semibold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Semibold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Semibold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Semibold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-Semibold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-SemiboldIt-dnom-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-SemiboldIt-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-SemiboldIt-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-SemiboldIt-numr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-SemiboldIt-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-SemiboldIt-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-SemiboldIt-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/SourceSansPro-SemiboldIt-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/UniversalisADFStd-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/UniversalisADFStd-BoldCond-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/UniversalisADFStd-BoldCondIt-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/UniversalisADFStd-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/UniversalisADFStd-Cond-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/UniversalisADFStd-CondItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/UniversalisADFStd-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/UniversalisADFStd-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Bold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Bold-tlf-t1--base.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Bold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-BoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-BoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Italic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Italic-tlf-t1--base.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Italic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Roman-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Roman-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Roman-tlf-t1--base.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Roman-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Roman-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter-Roman-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter1-Bold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter1-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter1-BoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter1-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter1-Italic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter1-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter1-Roman-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/XCharter1-Roman-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Bold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Bold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Bold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Bold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-BoldItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-BoldItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-BoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-BoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Italic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Italic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Italic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Italic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Regular-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Regular-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Regular-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Regular-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/fbb-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ipxg-r-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ipxg-ro-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ipxm-r-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ipxm-ro-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-lf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-osf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-tlf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-tosf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-tosf-scla-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-BoldItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-BoldItalic-lf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-BoldItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-BoldItalic-osf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-BoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-BoldItalic-tlf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-BoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-BoldItalic-tosf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-lf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-osf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-osf-th-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-tlf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-tlf-th-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-tosf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-lf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-osf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-tlf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-tosf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-tosf-scla-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntx-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntxsups-Bold-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntxsups-BoldItalic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntxsups-Italic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ntxsups-Regular-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ylyb-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ylybi-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ylyr-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/ylyri-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Bold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Bold-lf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Bold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Bold-osf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Bold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Bold-tlf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Bold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Bold-tosf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-BoldItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-BoldItalic-lf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-BoldItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-BoldItalic-osf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-BoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-BoldItalic-tlf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-BoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-BoldItalic-tosf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-lf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-osf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-osf-th-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-tlf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-tlf-th-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-tosf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Regular-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Regular-lf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Regular-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Regular-osf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Regular-tlf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Regular-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Regular-tosf-scl-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zpl-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zplsups-Bold-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zplsups-BoldItalic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zplsups-Italic-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/t1fonts/zplsups-Regular-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/times.htf + texmf-dist/tex4ht/ht-fonts/alias/times/ptmr7t.htf + texmf-dist/tex4ht/ht-fonts/alias/tipa/tipx.htf + texmf-dist/tex4ht/ht-fonts/alias/tipa/xipa.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/pxbsyc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtcxb.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtcxbi.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtcxbsl.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtcxbss.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtcxbsso.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtcxi.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtcxsl.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtcxsssl.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxbmi.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxbsc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxbsssc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxmi.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxphvb.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxphvbo.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxphvr.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxphvro.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxptmb.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxptmbi.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxptmbo.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxptmr.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxptmri.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxptmro.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/rtxsssc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/t1x.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/t1xbsc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/t1xbsssc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/t1xbttsc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/t1xsssc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/t1xttsc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tcxi.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tcxr.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tcxsl.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tcxss.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tcxsssl.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tcxtt.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tcxttsl.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txbex.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txbmi.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txbsc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txbtt.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txbttsc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txex.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txexa.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txi.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txmi.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txmia.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txr.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txsl.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txss.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txsssc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txsssl.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txsy.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txsya.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txsyb.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/txttsc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tyx.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tyxbsc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tyxbsssc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tyxbttsc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tyxsssc.htf + texmf-dist/tex4ht/ht-fonts/alias/txfonts/tyxttsc.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/arevvn/fav.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchb8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchbc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchbi8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchbo8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchr8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchrc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/bchro8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/chartervn/txtt.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/classicovn/uop.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/cmbrightvn/vncm.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/comicsansvn/comic.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/concretevn/vncc.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/garamondvn/ugm.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/grotesqvn/ugq.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jthb8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jthbc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jthr8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jthrc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jvnb8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jvnbc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jvnbi8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jvnr8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jvnrc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/jvnri8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/lprb8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/lprbc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/lprbi8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/lprr8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/lprrc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/lprri8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/ma1b8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/ma1bc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/ma1bi8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/ma1r8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/ma1rc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/ma1ri8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mcrb8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mcrbc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mcrbi8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mcrr8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mcrrc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mcrri8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mnsb8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mnsbc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mnsbi8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mnsr8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mnsrc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/mscorevn/mnsri8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-ant.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttcbcap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttcbicap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttclcap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttclicap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttcmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttcmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttcrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttcricap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttlcap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttlicap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttmcap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttmicap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttrcap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/t5-anttricap.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/fplrc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uagd8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uagdc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uagdo8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uagk8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uagkc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uagko8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubkd8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubkdc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubkdi8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubkdo8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubkl8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubklc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubkli8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ubklo8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ucrb8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ucrbc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ucrbo8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ucrr8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ucrrc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/ucrro8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uhvb8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uhvbc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uhvbo8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uhvr8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uhvrc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uhvro8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncb8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncbc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncbi8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncbo8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncr8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncrc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncri8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uncro8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplb8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplbc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplbi8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplbo8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplr8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplrc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplri8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uplro8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmb8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmbc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmbi8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmbo8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmr8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmrc8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmri8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/utmro8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/urwvn/uzcmi8v.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/utopiavn/put.htf + texmf-dist/tex4ht/ht-fonts/alias/vntex/vnr/vn.htf + texmf-dist/tex4ht/ht-fonts/aliase/mathtime/mtsy-bs.htf + texmf-dist/tex4ht/ht-fonts/ascii/manfnt/manfnt.htf + texmf-dist/tex4ht/ht-fonts/cp1256/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/css/emacspeak/cm/cmbx.4es + texmf-dist/tex4ht/ht-fonts/css/emacspeak/cm/cmmi.4es + texmf-dist/tex4ht/ht-fonts/css/emacspeak/cm/cmti.4es + texmf-dist/tex4ht/ht-fonts/css/emacspeak/cm/cmtt.4es + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1201.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1202.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1203.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1204.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1205.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1206.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1207.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1208.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1209.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1210.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1211.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1212.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1213.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1214.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1215.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1216.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1217.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1218.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1219.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1220.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1221.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1222.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1223.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1224.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1225.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1226.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1227.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1228.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1229.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1230.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1231.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1232.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1233.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1234.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1235.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1236.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1237.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1238.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1239.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1240.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1241.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1242.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1243.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1244.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1245.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1246.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1247.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1248.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1249.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1250.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1251.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1252.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1253.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1254.htf + texmf-dist/tex4ht/ht-fonts/dbcs/cjk/b5ka/b5ka1255.htf + texmf-dist/tex4ht/ht-fonts/gb2312/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/gbk/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/html-speech/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/iso8859/1/charset/uni/unicode.4hf + texmf-dist/tex4ht/ht-fonts/iso8859/1/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/iso8859/1/chess/chess.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/chess/chessf.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/chess/fselch.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/cm/cminch.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/devanagari/dvng.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/euro/zpeur.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/go/go.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/go/go1bla.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/go/go1whi.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/go/go2bla.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/go/go2whi.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/html/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/iso8859/1/ipa/wsuipa.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/blex-bs.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/blmi-bs.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/blsy-bs.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/mtex-bs.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/mtmi-bs.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/mtsy-bs.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/mathtime/mtsyn-bs.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/mongolian/bicigh.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/mongolian/bthh.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/mongolian/bthv.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/ps2mf/times-ps.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/sw/curr.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/sw/times-sw.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/tibetan/ctib.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/xypic/xyatip.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/xypic/xybsql.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/xypic/xybtip.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/xypic/xydash.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/xypic/xyebut.htf + texmf-dist/tex4ht/ht-fonts/iso8859/1/xypic/xymisc.htf + texmf-dist/tex4ht/ht-fonts/iso8859/2/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/iso8859/2/html/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/iso8859/5/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/iso8859/5/cm/sauter/wnr.htf + texmf-dist/tex4ht/ht-fonts/iso8859/5/cm/sauter/wnti.htf + texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/cmcyr/cmcbx.htf + texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/cmcyr/cmcbxti.htf + texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/cmcyr/cmccsc.htf + texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/kminch.htf + texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/kmitt.htf + texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/kmr.htf + texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/kmtcsc.htf + texmf-dist/tex4ht/ht-fonts/iso8859/5/cyrillic/wncsc.htf + texmf-dist/tex4ht/ht-fonts/iso8859/5/html/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/iso8859/5/lh/lh-t2a/larm.htf + texmf-dist/tex4ht/ht-fonts/iso8859/6/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/iso8859/6/html/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/iso8859/7/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/iso8859/8/hebrew/hclassic.htf + texmf-dist/tex4ht/ht-fonts/iso8859/8/hebrew/jerus.htf + texmf-dist/tex4ht/ht-fonts/jsml/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/koi/8r/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/koi/8r/lh/lh-t2a/larm.htf + texmf-dist/tex4ht/ht-fonts/mozilla/charset/mnemonic/unicode.4hf + texmf-dist/tex4ht/ht-fonts/mozilla/charset/native/unicode.4hf + texmf-dist/tex4ht/ht-fonts/mozilla/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/ooffice/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/share/adobe/helvetic/phvr8z.htf + texmf-dist/tex4ht/ht-fonts/symbol/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/symbol/cyrillic/xcmr.htf + texmf-dist/tex4ht/ht-fonts/symbol/cyrillic/xcmti.htf + texmf-dist/tex4ht/ht-fonts/symbol/hebrew/hclassic.htf + texmf-dist/tex4ht/ht-fonts/symbol/mathtime/blex-bs.htf + texmf-dist/tex4ht/ht-fonts/symbol/mathtime/blmi-bs.htf + texmf-dist/tex4ht/ht-fonts/symbol/mathtime/blsy-bs.htf + texmf-dist/tex4ht/ht-fonts/symbol/mathtime/mtex-bs.htf + texmf-dist/tex4ht/ht-fonts/symbol/mathtime/mtmi-bs.htf + texmf-dist/tex4ht/ht-fonts/symbol/mathtime/mtsy-bs.htf + texmf-dist/tex4ht/ht-fonts/symbol/mathtime/mtsyn-bs.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/courier/pcrr7t.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/courier/pcrrc7t.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/courier/pcrro8r.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/courier/pcrro8u.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/courier/pplrc8r.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/helvetic/ptmb8z.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/helvetic/ptmrc8z.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/mathptm/zpsycmrv.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/mathptm/zptmcmr.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/mathptm/zptmcmrm.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/mathptm/zpzccmry.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/palatino/pplb9c.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/palatino/pplrc9t.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/palatino/pplri9t.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/symbol/psyr.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/ptmr8c.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/ptmrc.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/ptmrc7t.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/ptmri7t.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/ptmro.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/ptmrre.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/times/rptmrrn.htf + texmf-dist/tex4ht/ht-fonts/unicode/adobe/zapfding/pzdr.htf + texmf-dist/tex4ht/ht-fonts/unicode/ae/aecsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/ams/cyrillic/wncyr.htf + texmf-dist/tex4ht/ht-fonts/unicode/ams/euler/euex.htf + texmf-dist/tex4ht/ht-fonts/unicode/ams/euler/eufb.htf + texmf-dist/tex4ht/ht-fonts/unicode/ams/euler/eufm.htf + texmf-dist/tex4ht/ht-fonts/unicode/ams/euler/eusb.htf + texmf-dist/tex4ht/ht-fonts/unicode/ams/euler/eusm.htf + texmf-dist/tex4ht/ht-fonts/unicode/ams/symbols/msam.htf + texmf-dist/tex4ht/ht-fonts/unicode/ams/symbols/msbm.htf + texmf-dist/tex4ht/ht-fonts/unicode/antt/antpr.htf + texmf-dist/tex4ht/ht-fonts/unicode/antt/anttr.htf + texmf-dist/tex4ht/ht-fonts/unicode/antt/ec-anttbcap.htf + texmf-dist/tex4ht/ht-fonts/unicode/antt/mi-antt.htf + texmf-dist/tex4ht/ht-fonts/unicode/antt/qx-anttbcap.htf + texmf-dist/tex4ht/ht-fonts/unicode/antt/sy-antt.htf + texmf-dist/tex4ht/ht-fonts/unicode/antt/sy-anttlz.htf + texmf-dist/tex4ht/ht-fonts/unicode/arabi/aehor.htf + texmf-dist/tex4ht/ht-fonts/unicode/arabi/nazli.htf + texmf-dist/tex4ht/ht-fonts/unicode/arev/favr8r.htf + texmf-dist/tex4ht/ht-fonts/unicode/bbold/bbold.htf + texmf-dist/tex4ht/ht-fonts/unicode/bitstrea/charter/bchr8t.htf + texmf-dist/tex4ht/ht-fonts/unicode/cbgreek/grmc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cbgreek/grmn.htf + texmf-dist/tex4ht/ht-fonts/unicode/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/unicode/chess/chess.htf + texmf-dist/tex4ht/ht-fonts/unicode/chess/chessf.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1201.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1202.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1203.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1204.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1205.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1206.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1207.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1208.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1209.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1210.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1211.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1212.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1213.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1214.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1215.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1216.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1217.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1218.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1219.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1220.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1221.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1222.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1223.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1224.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1225.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1226.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1227.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1228.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1229.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1230.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1231.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1232.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1233.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1234.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1235.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1236.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1237.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1238.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1239.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1240.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1241.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1242.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1243.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1244.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1245.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1246.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1247.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1248.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1249.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1250.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1251.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1252.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1253.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1254.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/b5ka/b5ka1255.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong01.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong02.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong03.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong04.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong05.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong06.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong07.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong08.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong09.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong10.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong11.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong12.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong13.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong14.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong15.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong16.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong17.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong18.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong19.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong20.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong21.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong22.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong23.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong24.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong25.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong26.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong27.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong28.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong29.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong30.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong31.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong32.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong33.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong34.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong35.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong36.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong37.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong38.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong39.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong40.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong41.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong42.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong43.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong44.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong45.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong46.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong47.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong48.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong49.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong50.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong51.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong52.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong53.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong54.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong55.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong56.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong57.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong58.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong59.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong60.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong61.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong62.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong63.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong64.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong65.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong66.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong67.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong68.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong69.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong70.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong71.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong72.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong73.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong74.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong75.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong76.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong77.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong78.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong79.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong80.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong81.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong82.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong83.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong84.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong85.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong86.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong87.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong88.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong89.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong90.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong91.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong92.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong93.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/gbksong94.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong25.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong27.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong28.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong32.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong35.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong90.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong92.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong93.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/gbksong/long/gbksong94.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song01.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song02.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song03.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song04.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song05.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song06.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song07.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song08.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song09.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song0a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song0b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song0c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song0d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song0e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song0f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song10.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song11.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song12.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song13.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song14.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song15.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song16.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song17.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song18.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song19.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song1a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song1b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song1c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song1d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song1e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song1f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song20.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song21.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song22.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song23.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song24.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song25.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song26.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song27.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song28.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song29.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song2a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song2b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song2c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song2d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song2e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song2f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song30.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song31.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song32.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song33.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song34.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song35.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song36.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song37.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song38.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song39.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song3a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song3b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song3c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song3d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song3e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song3f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song40.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song41.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song42.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song43.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song44.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song45.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song46.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song47.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song48.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song49.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song4a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song4b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song4c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song4d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song4e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song4f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song50.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song51.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song52.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song53.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song54.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song55.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song56.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song57.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song58.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song59.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song5a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song5b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song5c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song5d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song5e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song5f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song60.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song61.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song62.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song63.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song64.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song65.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song66.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song67.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song68.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song69.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song6a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song6b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song6c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song6d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song6e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song6f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song70.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song71.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song72.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song73.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song74.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song75.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song76.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song77.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song78.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song79.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song7a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song7b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song7c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song7d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song7e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song7f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song80.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song81.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song82.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song83.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song84.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song85.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song86.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song87.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song88.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song89.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song8a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song8b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song8c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song8d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song8e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song8f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song90.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song91.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song92.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song93.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song94.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song95.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song96.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song97.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song98.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song99.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song9a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song9b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song9c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song9d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song9e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8song9f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa0.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa1.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa2.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa3.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa4.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa5.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa6.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa7.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa8.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songa9.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songaa.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songab.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songac.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songad.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songae.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songaf.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb0.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb1.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb2.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb3.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb4.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb5.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb6.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb7.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb8.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songb9.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songba.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songbb.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songbc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songbd.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songbe.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songbf.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc0.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc1.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc2.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc3.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc4.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc5.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc6.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc7.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc8.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songc9.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songca.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songcb.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songcc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songcd.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songce.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songcf.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songd0.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songd1.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songd2.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songd3.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songd4.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songd5.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songd6.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songd7.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songdc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songdd.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songde.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songdf.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe0.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe1.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe2.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe3.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe4.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe5.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe6.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe7.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe8.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songe9.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songea.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songeb.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songec.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songed.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songee.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songef.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf0.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf1.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf2.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf3.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf4.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf5.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf6.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf7.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf8.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songf9.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songfa.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songfb.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songfc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songfd.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songfe.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/utf8songff.htf + texmf-dist/tex4ht/ht-fonts/unicode/cm/cmex.htf + texmf-dist/tex4ht/ht-fonts/unicode/cm/cmmi.htf + texmf-dist/tex4ht/ht-fonts/unicode/cm/cmsy.htf + texmf-dist/tex4ht/ht-fonts/unicode/cm/cmtcsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cm/cmti.htf + texmf-dist/tex4ht/ht-fonts/unicode/concrete/cccsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cs/cscsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cs/csr.htf + texmf-dist/tex4ht/ht-fonts/unicode/currency/feymr.htf + texmf-dist/tex4ht/ht-fonts/unicode/cyklop/cs-cyklop.htf + texmf-dist/tex4ht/ht-fonts/unicode/cyklop/cs-cyklopi-sc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cyklop/ec-cyklopi-sc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cyklop/ly1-cyklopi-sc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cyklop/qx-cyklopi-sc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cyklop/qx-cyklopr.htf + texmf-dist/tex4ht/ht-fonts/unicode/cyklop/t5-cyklopi-sc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cyklop/t5-cyklopi.htf + texmf-dist/tex4ht/ht-fonts/unicode/cyrillic/cmcyr/cmcbx.htf + texmf-dist/tex4ht/ht-fonts/unicode/cyrillic/cmcyr/cmcbxti.htf + texmf-dist/tex4ht/ht-fonts/unicode/cyrillic/cmcyr/cmccsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/dstroke/dsrom.htf + texmf-dist/tex4ht/ht-fonts/unicode/dstroke/esint.htf + texmf-dist/tex4ht/ht-fonts/unicode/ec/eccc-uni.htf + texmf-dist/tex4ht/ht-fonts/unicode/ec/eccc.htf + texmf-dist/tex4ht/ht-fonts/unicode/greek/ibygrk/fibr.htf + texmf-dist/tex4ht/ht-fonts/unicode/hebrew/cjhebltx.htf + texmf-dist/tex4ht/ht-fonts/unicode/hebrew/crml.htf + texmf-dist/tex4ht/ht-fonts/unicode/hebrew/fr.htf + texmf-dist/tex4ht/ht-fonts/unicode/hebrew/hclassic.htf + texmf-dist/tex4ht/ht-fonts/unicode/hebrew/jerus.htf + texmf-dist/tex4ht/ht-fonts/unicode/hebrew/redis.htf + texmf-dist/tex4ht/ht-fonts/unicode/hebrew/shold.htf + texmf-dist/tex4ht/ht-fonts/unicode/hebrew/shscr.htf + texmf-dist/tex4ht/ht-fonts/unicode/hebrew/shstk.htf + texmf-dist/tex4ht/ht-fonts/unicode/html/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/cs-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/cs-iwonacap.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/ec-iwonacap.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/ex-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/exp-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/greek-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/qx-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/qx-iwonacap.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/rm-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/sy-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/t2a-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/t2b-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/t2c-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/t5-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/t5-iwonacap.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/texnansi-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/texnansi-iwonacap.htf + texmf-dist/tex4ht/ht-fonts/unicode/iwona/wncy-iwona.htf + texmf-dist/tex4ht/ht-fonts/unicode/jknappen/tc/tcrm.htf + texmf-dist/tex4ht/ht-fonts/unicode/latex/lasy.htf + texmf-dist/tex4ht/ht-fonts/unicode/latex/lcircle.htf + texmf-dist/tex4ht/ht-fonts/unicode/latex/line.htf + texmf-dist/tex4ht/ht-fonts/unicode/lh/lh-t2a/lacc.htf + texmf-dist/tex4ht/ht-fonts/unicode/lh/lh-t2a/larm.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlbi-xl-22.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlbi-xl-24.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlbi-xl-27.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlbi-xl-8x.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlbi-xl-e0.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlbi-xl-f6.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-8r.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-lgi.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-00.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-01.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-02.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-03.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-04.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-05.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-1e.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-1f.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-20.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-21.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-22.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-23.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-24.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-25.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-26.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-27.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-2c.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-8x.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-a7.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-circle.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-e0.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-e1.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-f6.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-fb.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-ff.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-lgi.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-lgr.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlr-xl-ts1.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlrc-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlri-xl-26.htf + texmf-dist/tex4ht/ht-fonts/unicode/libertine/fxlri-xl-e1.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/cs-lm.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/el-lm.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/el-lmcs.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/l7x-lm.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/l7x-lmcsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-ec.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-qxtt.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cmin.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cmit.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cmitt.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cmrm.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cmsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cmtt.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-csin.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-csrm.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cssc.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-cstt.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-plin.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-plit.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-plitt.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-plrm.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-plsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-pltt.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-rep-t5psn.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-t5.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-texnansi.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/lm-ts1.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/pre2005/cork-.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/pre2005/cork-lmcs.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/pre2005/qx-lmcs.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/pre2005/qx-lmtt.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/pre2005/texnansi-lmcs.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/rm-lm.htf + texmf-dist/tex4ht/ht-fonts/unicode/lm/t5-lmcsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/marvosym/fmvr8x.htf + texmf-dist/tex4ht/ht-fonts/unicode/math/rsfs.htf + texmf-dist/tex4ht/ht-fonts/unicode/mathdesign/mdbchr7v.htf + texmf-dist/tex4ht/ht-fonts/unicode/mathtime/blex-bs.htf + texmf-dist/tex4ht/ht-fonts/unicode/mathtime/blmi-bs.htf + texmf-dist/tex4ht/ht-fonts/unicode/mathtime/blsy-bs.htf + texmf-dist/tex4ht/ht-fonts/unicode/mathtime/mtex-bs.htf + texmf-dist/tex4ht/ht-fonts/unicode/mathtime/mtmi-bs.htf + texmf-dist/tex4ht/ht-fonts/unicode/mathtime/mtsyn-bs.htf + texmf-dist/tex4ht/ht-fonts/unicode/mflogo/logo.htf + texmf-dist/tex4ht/ht-fonts/unicode/misc/SkakNew.htf + texmf-dist/tex4ht/ht-fonts/unicode/misc/cmman.htf + texmf-dist/tex4ht/ht-fonts/unicode/misc/ifsym.htf + texmf-dist/tex4ht/ht-fonts/unicode/misc/wasy.htf + texmf-dist/tex4ht/ht-fonts/unicode/pl/plbsy.htf + texmf-dist/tex4ht/ht-fonts/unicode/pl/plinch.htf + texmf-dist/tex4ht/ht-fonts/unicode/pl/pltcsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/pl/pltex.htf + texmf-dist/tex4ht/ht-fonts/unicode/public/bbding.htf + texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/pxbsyc.htf + texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/pxexa.htf + texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/pxr.htf + texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/pxsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/pxsyc.htf + texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/rpcxr.htf + texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/rpxb.htf + texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/rpxpplr.htf + texmf-dist/tex4ht/ht-fonts/unicode/pxfonts/rpxsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/stmaryrd/stmary.htf + texmf-dist/tex4ht/ht-fonts/unicode/tibetan/ctib.htf + texmf-dist/tex4ht/ht-fonts/unicode/tipa/tipa.htf + texmf-dist/tex4ht/ht-fonts/unicode/tipa/xipx.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/rtcxr.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/rtcxss.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/rtx.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/rtxsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/t1x.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/t1xsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/tcxb.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/txb.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/txbexa.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/txbmia.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/txbsy.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/txbsyc.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/txsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/txfonts/tyxsc.htf + texmf-dist/tex4ht/ht-fonts/utf8/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/viqr/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/viscii/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/win/1251/charset/unicode.4hf + texmf-dist/tex4ht/ht-fonts/win/1251/cm/sauter/wnti.htf + texmf-dist/tex4ht/ht-fonts/win/1251/cyrillic/cmcyr/cmcbx.htf + texmf-dist/tex4ht/ht-fonts/win/1251/cyrillic/cmcyr/cmcbxti.htf + texmf-dist/tex4ht/ht-fonts/win/1251/cyrillic/cmcyr/cmccsc.htf + texmf-dist/tex4ht/ht-fonts/win/1251/cyrillic/wncsc.htf + texmf-dist/tex4ht/ht-fonts/win/1251/lh/lh-t2a/larm.htf + texmf-dist/tex4ht/xtpipes/docbook.4xt + texmf-dist/tex4ht/xtpipes/htspk.4xt + texmf-dist/tex4ht/xtpipes/javahelp.4xt + texmf-dist/tex4ht/xtpipes/jsml.4xt + texmf-dist/tex4ht/xtpipes/oo-math.4xt + texmf-dist/tex4ht/xtpipes/oo-text.4xt + texmf-dist/tex4ht/xtpipes/xhtml.4xt + texmf-dist/tex4ht/xtpipes/xhtmml.4xt + texmf-dist/tex4ht/xtpipes/xtpipes-default.4xt + texmf-dist/tex4ht/xtpipes/xtpipes-map.dtd + texmf-dist/tex4ht/xtpipes/xtpipes.dtd +catalogue-contact-bugs https://puszcza.gnu.org.ua/bugs/?group=tex4ht +catalogue-contact-home http://tug.org/tex4ht +catalogue-contact-repository https://puszcza.gnu.org.ua/projects/tex4ht/ +catalogue-contact-support http://lists.tug.org/tex4ht +catalogue-ctan /support/TeX4ht +catalogue-date 2017-11-12 01:24:26 +0100 +catalogue-license lppl +catalogue-topics cvt-html + +name tex4ht.aarch64-linux +category Package +revision 50285 +shortdesc aarch64-linux files of tex4ht +containersize 77076 +containerchecksum e3114b736870878cfca0f297e777521430c7d6324e4bff598de70407dd105ad333755fc17502234608a9f7f459d7ad37cae044f0449ae52e530ab54b3b8e877c +binfiles arch=aarch64-linux size=69 + bin/aarch64-linux/ht + bin/aarch64-linux/htcontext + bin/aarch64-linux/htlatex + bin/aarch64-linux/htmex + bin/aarch64-linux/httex + bin/aarch64-linux/httexi + bin/aarch64-linux/htxelatex + bin/aarch64-linux/htxetex + bin/aarch64-linux/mk4ht + bin/aarch64-linux/t4ht + bin/aarch64-linux/tex4ht + bin/aarch64-linux/xhlatex + +name tex4ht.amd64-freebsd +category Package +revision 50445 +shortdesc amd64-freebsd files of tex4ht +containersize 109552 +containerchecksum c88e99848d402cf133ea304c1e48340ea8eba3ed74d1aae036f4502d47d4752271f1d684fddce648803b7ea480ccd63adf1609175007f60f2a644d8daad07b1f +binfiles arch=amd64-freebsd size=92 + bin/amd64-freebsd/ht + bin/amd64-freebsd/htcontext + bin/amd64-freebsd/htlatex + bin/amd64-freebsd/htmex + bin/amd64-freebsd/httex + bin/amd64-freebsd/httexi + bin/amd64-freebsd/htxelatex + bin/amd64-freebsd/htxetex + bin/amd64-freebsd/mk4ht + bin/amd64-freebsd/t4ht + bin/amd64-freebsd/tex4ht + bin/amd64-freebsd/xhlatex + +name tex4ht.amd64-netbsd +category Package +revision 50274 +shortdesc amd64-netbsd files of tex4ht +containersize 86808 +containerchecksum 30eeffb7322eb9cdd9729b2519873ccb4c4253f038729e85c1a2d75e8c659573bba109a82a1bb10b1ae0dcd442ad766fde0acd9a3e50fb47bc1bb9f3056bb287 +binfiles arch=amd64-netbsd size=96 + bin/amd64-netbsd/ht + bin/amd64-netbsd/htcontext + bin/amd64-netbsd/htlatex + bin/amd64-netbsd/htmex + bin/amd64-netbsd/httex + bin/amd64-netbsd/httexi + bin/amd64-netbsd/htxelatex + bin/amd64-netbsd/htxetex + bin/amd64-netbsd/mk4ht + bin/amd64-netbsd/t4ht + bin/amd64-netbsd/tex4ht + bin/amd64-netbsd/xhlatex + +name tex4ht.armhf-linux +category Package +revision 50296 +shortdesc armhf-linux files of tex4ht +containersize 71980 +containerchecksum c465911a5c7eb258834e9bd9c81b21344935c1c073608670ad508a6bb44c61194ae80b03295049cc8f41d53f0e101d8ddb01ad221a72fc972ce9a73cf9bb4354 +binfiles arch=armhf-linux size=65 + bin/armhf-linux/ht + bin/armhf-linux/htcontext + bin/armhf-linux/htlatex + bin/armhf-linux/htmex + bin/armhf-linux/httex + bin/armhf-linux/httexi + bin/armhf-linux/htxelatex + bin/armhf-linux/htxetex + bin/armhf-linux/mk4ht + bin/armhf-linux/t4ht + bin/armhf-linux/tex4ht + bin/armhf-linux/xhlatex + +name tex4ht.i386-cygwin +category Package +revision 50455 +shortdesc i386-cygwin files of tex4ht +containersize 50444 +containerchecksum 9d2b6717909731b13b5e9378f34b5cd5d07989a2012090f82b9bd3c3daa4d214db6f9e091fcbd142759298c2f8aa6921d4686f2a44b5144ef79471bd33369978 +binfiles arch=i386-cygwin size=40 + bin/i386-cygwin/ht + bin/i386-cygwin/htcontext + bin/i386-cygwin/htlatex + bin/i386-cygwin/htmex + bin/i386-cygwin/httex + bin/i386-cygwin/httexi + bin/i386-cygwin/htxelatex + bin/i386-cygwin/htxetex + bin/i386-cygwin/mk4ht + bin/i386-cygwin/t4ht.exe + bin/i386-cygwin/tex4ht.exe + bin/i386-cygwin/xhlatex + +name tex4ht.i386-freebsd +category Package +revision 50473 +shortdesc i386-freebsd files of tex4ht +containersize 90236 +containerchecksum 4c499c85cad707985071c4857dd23308cb7654abe0321d9e79bfc304611c3d27bbda76db57f75f000feacb6f182283a31cae70ef241789c5e2f8654eda1378ee +binfiles arch=i386-freebsd size=78 + bin/i386-freebsd/ht + bin/i386-freebsd/htcontext + bin/i386-freebsd/htlatex + bin/i386-freebsd/htmex + bin/i386-freebsd/httex + bin/i386-freebsd/httexi + bin/i386-freebsd/htxelatex + bin/i386-freebsd/htxetex + bin/i386-freebsd/mk4ht + bin/i386-freebsd/t4ht + bin/i386-freebsd/tex4ht + bin/i386-freebsd/xhlatex + +name tex4ht.i386-linux +category Package +revision 50281 +shortdesc i386-linux files of tex4ht +containersize 88904 +containerchecksum 0cca1d7484eb3fa3579d66cf385dabd2899ff965869fdd9d3ad0e60d2fadfdf003dd867d92ea5b7c7fd9f64ff8a5d0c06adbe006bec74c1be785b92a48b8be01 +binfiles arch=i386-linux size=79 + bin/i386-linux/ht + bin/i386-linux/htcontext + bin/i386-linux/htlatex + bin/i386-linux/htmex + bin/i386-linux/httex + bin/i386-linux/httexi + bin/i386-linux/htxelatex + bin/i386-linux/htxetex + bin/i386-linux/mk4ht + bin/i386-linux/t4ht + bin/i386-linux/tex4ht + bin/i386-linux/xhlatex + +name tex4ht.i386-netbsd +category Package +revision 50274 +shortdesc i386-netbsd files of tex4ht +containersize 75544 +containerchecksum 3a662bd34cd477af20b39a4586e90f47b10dc8b0082e5906394c107a06e43744cca283bd37e1771796f5800f788281007eec5e9ed5c1a2fbefe9e42636c143b0 +binfiles arch=i386-netbsd size=89 + bin/i386-netbsd/ht + bin/i386-netbsd/htcontext + bin/i386-netbsd/htlatex + bin/i386-netbsd/htmex + bin/i386-netbsd/httex + bin/i386-netbsd/httexi + bin/i386-netbsd/htxelatex + bin/i386-netbsd/htxetex + bin/i386-netbsd/mk4ht + bin/i386-netbsd/t4ht + bin/i386-netbsd/tex4ht + bin/i386-netbsd/xhlatex + +name tex4ht.i386-solaris +category Package +revision 50282 +shortdesc i386-solaris files of tex4ht +containersize 83892 +containerchecksum 911e3bc40cb05c8bac631369c103705cbdbb9a8b94312463e355a358e8c6bca8f171086129fcf6b0b8b074da38030c31bbcdfa54fd489c27ce0aaee7729c0aa1 +binfiles arch=i386-solaris size=69 + bin/i386-solaris/ht + bin/i386-solaris/htcontext + bin/i386-solaris/htlatex + bin/i386-solaris/htmex + bin/i386-solaris/httex + bin/i386-solaris/httexi + bin/i386-solaris/htxelatex + bin/i386-solaris/htxetex + bin/i386-solaris/mk4ht + bin/i386-solaris/t4ht + bin/i386-solaris/tex4ht + bin/i386-solaris/xhlatex + +name tex4ht.win32 +category Package +revision 50172 +shortdesc win32 files of tex4ht +containersize 57724 +containerchecksum aefaec5c53abebfe816635cc229a533cc874814bf8fb9b3eae493376ac281dd0769622b014ab1d7f3fe4c7d12f166c1cd548438c38768b28f349c28a20a2f2e5 +binfiles arch=win32 size=51 + bin/win32/ht.bat + bin/win32/ht.exe + bin/win32/htcontext.bat + bin/win32/htcontext.exe + bin/win32/htlatex.bat + bin/win32/htlatex.exe + bin/win32/htmex.bat + bin/win32/htmex.exe + bin/win32/httex.bat + bin/win32/httex.exe + bin/win32/httexi.bat + bin/win32/httexi.exe + bin/win32/htxelatex.bat + bin/win32/htxelatex.exe + bin/win32/htxetex.bat + bin/win32/htxetex.exe + bin/win32/mk4ht.exe + bin/win32/t4ht.exe + bin/win32/tex4ht.exe + bin/win32/xhlatex.bat + bin/win32/xhlatex.exe + +name tex4ht.x86_64-cygwin +category Package +revision 50889 +shortdesc x86_64-cygwin files of tex4ht +containersize 57752 +containerchecksum ba3ed01753622a5f70f71fff9cce01aab555e345b7b62755cc9f15fa029507b321019d0638773a408e4094ed23a1b8fcdd27bfeeaf7885c6eff271a148c0fcb9 +binfiles arch=x86_64-cygwin size=42 + bin/x86_64-cygwin/ht + bin/x86_64-cygwin/htcontext + bin/x86_64-cygwin/htlatex + bin/x86_64-cygwin/htmex + bin/x86_64-cygwin/httex + bin/x86_64-cygwin/httexi + bin/x86_64-cygwin/htxelatex + bin/x86_64-cygwin/htxetex + bin/x86_64-cygwin/mk4ht + bin/x86_64-cygwin/t4ht.exe + bin/x86_64-cygwin/tex4ht.exe + bin/x86_64-cygwin/xhlatex + +name tex4ht.x86_64-darwin +category Package +revision 50284 +shortdesc x86_64-darwin files of tex4ht +containersize 97308 +containerchecksum 790a462aca95537e20ce3000079d29dde366f1722c547b73fc0a0304d19b9528e3d738a85f9deb25fd0a1a18a5a9b5015aefce12da14a6a828e0da5923595fd6 +binfiles arch=x86_64-darwin size=81 + bin/x86_64-darwin/ht + bin/x86_64-darwin/htcontext + bin/x86_64-darwin/htlatex + bin/x86_64-darwin/htmex + bin/x86_64-darwin/httex + bin/x86_64-darwin/httexi + bin/x86_64-darwin/htxelatex + bin/x86_64-darwin/htxetex + bin/x86_64-darwin/mk4ht + bin/x86_64-darwin/t4ht + bin/x86_64-darwin/tex4ht + bin/x86_64-darwin/xhlatex + +name tex4ht.x86_64-darwinlegacy +category Package +revision 50282 +shortdesc x86_64-darwinlegacy files of tex4ht +containersize 85540 +containerchecksum 2c421a0891456661b79ce56f80e5ce1fa99cab5290169f71d05165d6b9b386fc159eae205f93dc9f6fd6b4df08b267ad434973393b99d5cfad8b8fbc4ecebe18 +binfiles arch=x86_64-darwinlegacy size=73 + bin/x86_64-darwinlegacy/ht + bin/x86_64-darwinlegacy/htcontext + bin/x86_64-darwinlegacy/htlatex + bin/x86_64-darwinlegacy/htmex + bin/x86_64-darwinlegacy/httex + bin/x86_64-darwinlegacy/httexi + bin/x86_64-darwinlegacy/htxelatex + bin/x86_64-darwinlegacy/htxetex + bin/x86_64-darwinlegacy/mk4ht + bin/x86_64-darwinlegacy/t4ht + bin/x86_64-darwinlegacy/tex4ht + bin/x86_64-darwinlegacy/xhlatex + +name tex4ht.x86_64-linux +category Package +revision 50281 +shortdesc x86_64-linux files of tex4ht +containersize 92376 +containerchecksum 5602a29075bbb567b2695192e73f46f3ec8ea2431541d00074dab7dc8baa2e3bc56a071ebf92bfc77b1cd333e4a07c4ed8744126777d8a6053025e35eb26e2ae +binfiles arch=x86_64-linux size=73 + bin/x86_64-linux/ht + bin/x86_64-linux/htcontext + bin/x86_64-linux/htlatex + bin/x86_64-linux/htmex + bin/x86_64-linux/httex + bin/x86_64-linux/httexi + bin/x86_64-linux/htxelatex + bin/x86_64-linux/htxetex + bin/x86_64-linux/mk4ht + bin/x86_64-linux/t4ht + bin/x86_64-linux/tex4ht + bin/x86_64-linux/xhlatex + +name tex4ht.x86_64-linuxmusl +category Package +revision 50281 +shortdesc x86_64-linuxmusl files of tex4ht +containersize 95580 +containerchecksum b2824691f81f638b2ee82361b5df054b4dcc4f4d90e4488f47bf4b247329c0af8c079ceeb32330884ef5f301fc95653f28a4bd30ae71d139aa606befc83763ee +binfiles arch=x86_64-linuxmusl size=80 + bin/x86_64-linuxmusl/ht + bin/x86_64-linuxmusl/htcontext + bin/x86_64-linuxmusl/htlatex + bin/x86_64-linuxmusl/htmex + bin/x86_64-linuxmusl/httex + bin/x86_64-linuxmusl/httexi + bin/x86_64-linuxmusl/htxelatex + bin/x86_64-linuxmusl/htxetex + bin/x86_64-linuxmusl/mk4ht + bin/x86_64-linuxmusl/t4ht + bin/x86_64-linuxmusl/tex4ht + bin/x86_64-linuxmusl/xhlatex + +name tex4ht.x86_64-solaris +category Package +revision 50282 +shortdesc x86_64-solaris files of tex4ht +containersize 94844 +containerchecksum 2a6ebd51a36461d69eefa341c6795ada6f6b83212a32c42922f45430ddd37d724b14acf95eb44751279f01ac1753d745f74a3781568ad870535a569e283d3500 +binfiles arch=x86_64-solaris size=77 + bin/x86_64-solaris/ht + bin/x86_64-solaris/htcontext + bin/x86_64-solaris/htlatex + bin/x86_64-solaris/htmex + bin/x86_64-solaris/httex + bin/x86_64-solaris/httexi + bin/x86_64-solaris/htxelatex + bin/x86_64-solaris/htxetex + bin/x86_64-solaris/mk4ht + bin/x86_64-solaris/t4ht + bin/x86_64-solaris/tex4ht + bin/x86_64-solaris/xhlatex + +name texapi +category Package +revision 24237 +shortdesc Macros to write format-independent packages +relocated 1 +longdesc Texapi provides utility macros to write format-independent (and +longdesc -aware) packages. It is similar in spirit to the etoolbox, +longdesc except that it isn't tied to LaTeX. Tools include: engine and +longdesc format detection, expansion control, command definition and +longdesc manipulation, various testing macros, string operations, and +longdesc highly customizable while and for loops. The package requires +longdesc e-TeX (and, should you want to compile its documentation, the +longdesc pitex package is also needed). +containersize 7440 +containerchecksum ca4622f53eab49612b80781bf58130d419a89791f507164e34dc8123772d041d50790f63018a87bbe3e8ebecdbe49925fccdc35f4d90f5d87312a36ce1ee482d +doccontainersize 148348 +doccontainerchecksum 2740b51e345092c14bf86a42d8b94a5595248851c606b6274369abab75b708bbd17a67a544b1b3a0bdae18f779e042a53bc2dc04edbfea912ed60078cedde16e +docfiles size=48 + RELOC/doc/generic/texapi/README details="Readme" + RELOC/doc/generic/texapi/texapi-doc.pdf details="Package documentation" + RELOC/doc/generic/texapi/texapi-doc.tex +runfiles size=8 + RELOC/tex/generic/texapi/texapi.tex +catalogue-ctan /macros/generic/texapi +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 1.04 + +name texbytopic +category Package +revision 15878 +shortdesc Freed version of the book TeX by Topic +relocated 1 +longdesc An invaluable book, originally published by Addison-Wesley (who +longdesc have released their copyright -- their version of the book went +longdesc out of print in the 1990s). The book describes itself as "a +longdesc TeXnician's reference", and covers the way TeX (the engine) +longdesc works in as much detail as most ordinary TeX programmers will +longdesc ever need to know. A printed copy of the book may be had (for a +longdesc modest price) via lulu.com (see the package home page for +longdesc details). +containersize 680 +containerchecksum d6d7373a50b85b4dcf30f9d6cd1f3ec3a4cbbe72f53158387b99ab5cae5372d1c7a7954d03a0ee06b9af6df9784cd9a06f73658a6286a737674f5046883a9ab6 +doccontainersize 1132796 +doccontainerchecksum 29b3ea490b6c67a4c1d6dd2b744978536e3b847beda3a901873db7723c7c21ae4063b800d30d2d009e77a0e6fb199a3fb0d16d1f7f8d9a09722cfd7702c73c67 +docfiles size=559 + RELOC/doc/plain/texbytopic/README details="Readme" + RELOC/doc/plain/texbytopic/TeXbyTopic.pdf details="The book itself" + RELOC/doc/plain/texbytopic/TeXbyTopic.tex + RELOC/doc/plain/texbytopic/figflow.tex + RELOC/doc/plain/texbytopic/glossary.tex + RELOC/doc/plain/texbytopic/tables.tex + RELOC/doc/plain/texbytopic/tex.bib +catalogue-contact-home http://www.eijkhout.net/texbytopic/texbytopic.html +catalogue-ctan /info/texbytopic +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license fdl +catalogue-topics book-src tut-plaintex ref-latex + +name texcount +category Package +revision 49013 +shortdesc Count words in a LaTeX document +longdesc TeXcount is a Perl script that counts words in the text of +longdesc LaTeX files. It has rules for handling most of the common +longdesc macros, and can provide colour-coded output showing which parts +longdesc of the text have been counted. The package script is available +longdesc as a Web service via its home page. +depend texcount.ARCH +containersize 35908 +containerchecksum 82f51346d9474270af6374cc1619ca005206b1bd729ce1559b8b66e361b184a192c7fbe085216a3a64e656197756593f7d76e52437ac562fd33bf09504b0f58f +doccontainersize 559548 +doccontainerchecksum 5141bdf4378cf87a19933945d6742427f4467dc73d92f4a470e34474232dbb2f60c4d8db065f812481520f1aa2f8a90d7e97dfc83f0f089d10386847f64f4d94 +docfiles size=191 + texmf-dist/doc/support/texcount/README.md details="Readme" + texmf-dist/doc/support/texcount/doc/QuickReference.pdf details="Quick reference" + texmf-dist/doc/support/texcount/doc/QuickReference.tex + texmf-dist/doc/support/texcount/doc/TeXcount.pdf details="Package documentation" + texmf-dist/doc/support/texcount/doc/TeXcount.tex + texmf-dist/doc/support/texcount/doc/TechDoc.pdf + texmf-dist/doc/support/texcount/doc/TechDoc.tex + texmf-dist/doc/support/texcount/doc/macros.tex + texmf-dist/doc/support/texcount/doc/sub_addrules.tex + texmf-dist/doc/support/texcount/doc/sub_options.tex + texmf-dist/doc/support/texcount/doc/sub_ruletypes.tex + texmf-dist/doc/support/texcount/doc/sub_tc_other.tex +runfiles size=34 + texmf-dist/scripts/texcount/texcount.pl +catalogue-also latexcount wordcount +catalogue-contact-announce http://app.uio.no/ifi/texcount/news.php +catalogue-contact-home http://app.uio.no/ifi/texcount/ +catalogue-ctan /support/texcount +catalogue-date 2018-10-28 16:11:54 +0100 +catalogue-license lppl +catalogue-topics word-count +catalogue-version 3.1.1 + +name texcount.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of texcount +containersize 340 +containerchecksum 71d84b59cbe66869aff8eba5ef14bc76001a4c0c9d43abffd80ff60842f198091cc1649378d40f5bcc15678da22eff688e6db8320fb8b59778452c2adbaef958 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/texcount + +name texcount.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of texcount +containersize 340 +containerchecksum b279d9052ad1210f31766662194cfd5b10cd760f8385a1ca1852b2e34f689edb17525d2108b30c5583638278d6b08440d42a25b249f91b3f4abba24a80a3ac53 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/texcount + +name texcount.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of texcount +containersize 340 +containerchecksum b818a21e444a22c0c208feb98433954c81565a7eee9d4fdf922ed8592c90cb3e8f67b3dee58c15d05710adea2967d31421f0d09ea19a44099b9f95b33b0c38e0 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/texcount + +name texcount.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of texcount +containersize 340 +containerchecksum 6704f8e561d39ff4e59b87b765f096749e4b4fd8d9b9016b1787611fc59eb43a246344a301b9525bfd2dc4f7edd68e654009cd8ecf334a068b7903bb91edcf72 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/texcount + +name texcount.i386-cygwin +category Package +revision 13103 +shortdesc i386-cygwin files of texcount +containersize 340 +containerchecksum 4c7e9842e80160793bd96e31a225ecb47d52072109adc747f5feba0e8ffb75ec3e82bf5514c92ee0bba0199d333fafe53c79148d7cce0e489c8bbeca0f36f0cd +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/texcount + +name texcount.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of texcount +containersize 340 +containerchecksum 88b6647012c18576664c8c832bb1a5bc69d141a6feebe61db69358f63185148d40c5b17724272fdb2214b88fb4639a71743f4de5dc6bab718452c6516096ce4a +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/texcount + +name texcount.i386-linux +category Package +revision 13013 +shortdesc i386-linux files of texcount +containersize 340 +containerchecksum 6ac2079df859862ff7be88fbcb6bd9c550e57d7b5567534f3629591cc9912fa6927f7fe7083ce61588c0762cbd133ba7956507168b0bfe57f066e1486b27d952 +binfiles arch=i386-linux size=1 + bin/i386-linux/texcount + +name texcount.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of texcount +containersize 340 +containerchecksum 4b10f7713cfb3e112a264919b206e77d2079cef27c0a91024e8a16040633c311793e1832777f3c779359f036eba8e77e56b8658916a586d537d27e33de80c14b +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/texcount + +name texcount.i386-solaris +category Package +revision 13013 +shortdesc i386-solaris files of texcount +containersize 340 +containerchecksum 73f84cc3057101bdc428b2e350bfb7706c080e8d68b91b19f7ec45a3c8e092359f5f0677a60d6ae6a1c1e5f63a836bf43b5757ec8489b0aad9c4c304909a924e +binfiles arch=i386-solaris size=1 + bin/i386-solaris/texcount + +name texcount.win32 +category Package +revision 15404 +shortdesc win32 files of texcount +containersize 684 +containerchecksum ac70c3ec9a89ddf896a005c0bccaa2dca6bafd72347b65b3f9b832fc5f7bf305aad0a0ef5b8d227f1879465cd6d05e005bb92f8561d0a1f0578e528805c61964 +binfiles arch=win32 size=1 + bin/win32/texcount.exe + +name texcount.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of texcount +containersize 344 +containerchecksum a1877b3cb8c79a2194b78ebd72f7168cf506d19d2c91a7f6fb4a466fef9002629b89d588c9a0524d3f108ab9784a473122401ec335f40591907d94457c49b77b +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/texcount + +name texcount.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of texcount +containersize 340 +containerchecksum adbd369ef91d8b1068785efdf500bd1521694e71bfa383f9d0cb7ee2b388a10f9f3c56b764fc1eac84989d000aea198c6d0bda331c7535f3ac9b8037d58e3714 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/texcount + +name texcount.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of texcount +containersize 348 +containerchecksum 3c7e9ca34963367045be3167287ad74ab7d1b99ec03004987fbec7fd26c9f1029eaf241149e7e4102c8610bf77e0a977ff1c18767f94e58061d65a6750ee03bf +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/texcount + +name texcount.x86_64-linux +category Package +revision 13013 +shortdesc x86_64-linux files of texcount +containersize 340 +containerchecksum 5d4823ce741a1ca092b01ac1f24cb02dbe9a1053978e5dbac69281b173cda93dd1414b6c900e9bb21209e6af1c1af79001454241a3d325b0ab38bfde78094ec0 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/texcount + +name texcount.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of texcount +containersize 344 +containerchecksum 8d91ac9ed87e828554e1eef5c71eb01a1d81fce4be718281120f274ffb5c98f9d4b176a9bb0851db592f594cb747ce11f11e8dce0167ecf7a7af57fac530b6b8 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/texcount + +name texcount.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of texcount +containersize 340 +containerchecksum 984b7ced9c990323e4ec19ff363d9c19379567dcfa6572c557f5571eca9d58621d454b5e3b243ac15b4de9ea10c1a80909b3435d2cc162fc3f45eab8aa052c38 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/texcount + +name texdate +category Package +revision 49362 +shortdesc Date printing, formatting, and manipulation in TeX +relocated 1 +longdesc TeX and LaTeX provide few facilities for dates by default, +longdesc though many packages have filled this gap. This package fills +longdesc it, as well, with a pure TeX-primitive implementation. It can +longdesc print dates, advance them by numbers of days, weeks, or months, +longdesc determine the weekday automatically (with an algorithm cribbed +longdesc from the dayofweek.tex file written by Martin Minow), and print +longdesc them in (mostly) arbitrary format. It can also print calendars +longdesc (monthly and yearly) automatically, and can be easily localized +longdesc for non-English languages. +containersize 3976 +containerchecksum c6f34d5ab0c54f799669c4c44e8c6e00381796ca76b9d2e8352a749effe65b9ffd6ebd139998ab9267d1e54da6471f5f38cc6931f7ff046882261cd5e5440bc7 +doccontainersize 256872 +doccontainerchecksum 2338dd99b32a1b2e04326e888b718f595a26848bbef17206f92a0a0f26556edddc3e0a06327d86e72fcb3e55270bcdff846cab3bfc37cbd61115b601164fc10e +docfiles size=69 + RELOC/doc/generic/texdate/CHANGES + RELOC/doc/generic/texdate/README details="Readme" + RELOC/doc/generic/texdate/lppl.txt + RELOC/doc/generic/texdate/texdate.pdf details="Package documentation" +srccontainersize 11800 +srccontainerchecksum 30a5c6401d66e7fc2cf0300341c7007881945fdfb267ce4c1f9930f6cb84d04d7895df613215be27da15e307baff361cba6bd4b530ac78f352b74aa81bb94356 +srcfiles size=13 + RELOC/source/generic/texdate/texdate.dtx + RELOC/source/generic/texdate/texdate.ins +runfiles size=6 + RELOC/tex/generic/texdate/texdate.sty +catalogue-ctan /macros/generic/texdate +catalogue-date 2018-12-09 09:53:38 +0100 +catalogue-license lppl1.3c +catalogue-topics date-time +catalogue-version 2.0 + +name texdef +category Package +revision 47420 +shortdesc Display the definitions of TeX commands +longdesc This (Perl) script displays the definitions of (La)TeX command +longdesc sequences/macros. Various options allow the selection of the +longdesc used class as well as package files and other factors that may +longdesc influence the definition (before/after the preamble, inside an +longdesc environment, ...). The script creates a temporary TeX file +longdesc which is then compiled using (La)TeX to find the '\meaning' of +longdesc the command sequence. The result is formatted and presented to +longdesc the user. Length or number command sequences (dimensions, +longdesc \char..., count registers, ...) are recognized and the +longdesc contained value is also shown (using \the). Special definitions +longdesc like protected macros are also recognized and the underlying +longdesc macros are shown as well. The script will show plain TeX +longdesc definitions by default. LaTeX and ConTeXt are supported, +longdesc including flavours (pdf(La)TeX, Lua(La)TeX, Xe(La)TeX, ...). +longdesc The flavour can be selected using a command line option, or via +longdesc the script name: latexdef will use LaTeX as default, etc. +depend texdef.ARCH +containersize 9408 +containerchecksum 7c5defeb9cf9d5fbe92f8433265543e6d7024e9f7fdc768582ec51a5880745c54cf8576f1b7455e32d51429e2faf122c0775ead117be97510f4b2d8123b04d71 +doccontainersize 155444 +doccontainerchecksum a4727d57bb5b56106a9baf4aabbabd16cc8a8ac08358c28263abe9c40b76a6d692d0e819c23c7b8e946e97fd3f7574a498a6f43207c04e7544a0383b3681f54e +docfiles size=42 + texmf-dist/doc/support/texdef/CHANGELOG + texmf-dist/doc/support/texdef/INSTALL + texmf-dist/doc/support/texdef/README details="Readme" + texmf-dist/doc/support/texdef/texdef.pdf details="Package documentation" +srccontainersize 4764 +srccontainerchecksum 4b57478b06d4cd67ae6b8d2afb059eb52e03e31c4c4066108d471134865a64f3eb3dc99f8bc4330625eaa8e7c660f445365c6bbe510f36d5770b406df99d6c8c +srcfiles size=4 + texmf-dist/source/support/texdef/texdef.tex +runfiles size=8 + texmf-dist/scripts/texdef/texdef.pl +catalogue-contact-bugs https://bitbucket.org/martin_scharrer/texdef/issues +catalogue-contact-home https://bitbucket.org/martin_scharrer/texdef/ +catalogue-contact-repository https://bitbucket.org/martin_scharrer/texdef/src +catalogue-ctan /support/texdef +catalogue-date 2018-03-29 08:55:43 +0200 +catalogue-license gpl3 +catalogue-topics debug-supp +catalogue-version 1.8a + +name texdef.aarch64-linux +category Package +revision 46228 +shortdesc aarch64-linux files of texdef +containersize 368 +containerchecksum 4d2f548857393f55d8fcf00780930a8dd720a4d0588947b6fe64803ef915a09f924685e14fe9db378c12742806c71a17034494ff389d06185928c6c9a8366dfa +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/latexdef + bin/aarch64-linux/texdef + +name texdef.amd64-freebsd +category Package +revision 45011 +shortdesc amd64-freebsd files of texdef +containersize 368 +containerchecksum 40ff164f987a013d5770eb1ef6d67d4f6f85412e7fc91b567bc9ba05684bc4c15928d1a0547facc4651225cb30a99a88dc9da48d3e0ec2e5d7b94320b7a94b51 +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/latexdef + bin/amd64-freebsd/texdef + +name texdef.amd64-netbsd +category Package +revision 45011 +shortdesc amd64-netbsd files of texdef +containersize 364 +containerchecksum e467a21caf8b263b3a1465dbcec66b9f3eeb0b9bb594bee24e41908cda127a21cb3b7daf789308b4a8e1a666bd5c19c761d0054080727d067efbd034d0163145 +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/latexdef + bin/amd64-netbsd/texdef + +name texdef.armhf-linux +category Package +revision 45011 +shortdesc armhf-linux files of texdef +containersize 368 +containerchecksum 5d73ac637c7f3a7ffb82fecb4f8b2c9ff9f35f8284482fecdc2e5b0973deb5d073cade966fafa5185684563880678a94ac44523b13fa5f81db786f75d31df345 +binfiles arch=armhf-linux size=2 + bin/armhf-linux/latexdef + bin/armhf-linux/texdef + +name texdef.i386-cygwin +category Package +revision 45011 +shortdesc i386-cygwin files of texdef +containersize 360 +containerchecksum cbaa5c433370725b0c0a845d729964c329471487fd6f434252aff194ac2fa2043b5c969d3e0ca62c0a0c219d7be364edc381a4a0c456d9dea10678e5f3a48fea +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/latexdef + bin/i386-cygwin/texdef + +name texdef.i386-freebsd +category Package +revision 45011 +shortdesc i386-freebsd files of texdef +containersize 368 +containerchecksum e02d4810d6d6060a2133cd6712bfb246901e1588ddc8e6692f102e16f58b2f45bf1db53eb6a1b9ce4e62e74104309fbf96dce291fe41d40fbc5c1ea7ffe6bcdc +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/latexdef + bin/i386-freebsd/texdef + +name texdef.i386-linux +category Package +revision 45011 +shortdesc i386-linux files of texdef +containersize 364 +containerchecksum d8c079d44b28752c66f39b63771c3c9ca94bb932156f68edaba6070b9b2a57c398a2c06dae3ecbf95be350b87eb4abcb493c6f509a0322d5873eff99f31a5a94 +binfiles arch=i386-linux size=2 + bin/i386-linux/latexdef + bin/i386-linux/texdef + +name texdef.i386-netbsd +category Package +revision 45011 +shortdesc i386-netbsd files of texdef +containersize 364 +containerchecksum fa7b31cddb0181187ae8bf9e44e0921a739bc7ed5111a7a28b8d75c5c656606c1ede1704a3bc9414227362c97421f03c8983886a51804b013bc10fd01d50457c +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/latexdef + bin/i386-netbsd/texdef + +name texdef.i386-solaris +category Package +revision 45011 +shortdesc i386-solaris files of texdef +containersize 368 +containerchecksum 69fc0355538bf5ead2b55a3e08bc973e710dfb2c5878c3ec3ce07469c224cd1a7a51c01f26ab2e210dde598a305771723a16386de9876903cdf6b16626f92cbd +binfiles arch=i386-solaris size=2 + bin/i386-solaris/latexdef + bin/i386-solaris/texdef + +name texdef.win32 +category Package +revision 45011 +shortdesc win32 files of texdef +containersize 704 +containerchecksum f1253afa06877ef2bcca2952aee932721d8b4d5ea99b974c8206300ca322df99bfc5a14490c4c8e48d67ef2da032e1dae55f938c93e3f2870fa00da5e481c362 +binfiles arch=win32 size=2 + bin/win32/latexdef.exe + bin/win32/texdef.exe + +name texdef.x86_64-cygwin +category Package +revision 45011 +shortdesc x86_64-cygwin files of texdef +containersize 368 +containerchecksum 2fa76d1e12e892c6337ca694ac4c000705a7cb73d424445fbae79578f41255546b891facfa60445fe0bbd031d4ee0270d3e661a9008d7fb80205a59a28c9f4a0 +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/latexdef + bin/x86_64-cygwin/texdef + +name texdef.x86_64-darwin +category Package +revision 45011 +shortdesc x86_64-darwin files of texdef +containersize 368 +containerchecksum eb1413840b3beab4a609f3a6f00b2b7ad0a9844a0965b4c5f977e3ff7e7073efbcee89797c2e9dfa7a4809a0e73b89e4b8a8bdbdd50fbaab0c18cc6f7faeeabd +binfiles arch=x86_64-darwin size=2 + bin/x86_64-darwin/latexdef + bin/x86_64-darwin/texdef + +name texdef.x86_64-darwinlegacy +category Package +revision 45011 +shortdesc x86_64-darwinlegacy files of texdef +containersize 376 +containerchecksum 192be9c1a533ae7541c9a8bfc17867ebb40f7d34627518fe63f242918b474394e0fba36bbb6da049ade9861a0910cd30862bf9ff6d02431d65ad45b00f2e3dee +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/latexdef + bin/x86_64-darwinlegacy/texdef + +name texdef.x86_64-linux +category Package +revision 45011 +shortdesc x86_64-linux files of texdef +containersize 364 +containerchecksum 8f33ce18c99882f8b20b4f001a2ced349654a2c8ed36ef1d4177871676bf55a642f72652793ce2a41622a6270f8107cf261fa762ebbaf796412143ab19cd19bc +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/latexdef + bin/x86_64-linux/texdef + +name texdef.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of texdef +containersize 372 +containerchecksum 80f213238f95b1d96a7077f4931a66c3f1bf4d545bb116621578c4d8a5f4913ba1a99e4f4af1c78f731f3fc5b59757805fe76f09b2d7832a6b5da1b5bcd9655c +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/latexdef + bin/x86_64-linuxmusl/texdef + +name texdef.x86_64-solaris +category Package +revision 45011 +shortdesc x86_64-solaris files of texdef +containersize 368 +containerchecksum 767c7853ae68794a1d0c20ce49af94cebd651674e890b60d04a3b8bed8e40fdf82d7246cb222a6029c84ca533865f4ca9a28365c285743f5da344a1d2b16dd70 +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/latexdef + bin/x86_64-solaris/texdef + +name texdiff +category Package +revision 29752 +shortdesc Compare documents and produce tagged merge +longdesc Two files are compared and a new TeX file is output. When the +longdesc output file is processed with (La)TeX it marks new changes with +longdesc blue and old text with red with a strike-through line. +longdesc Furthermore, passages with changes are marked at the margin +longdesc with grey bars by the LaTeX changebar package. +depend texdiff.ARCH +containersize 7172 +containerchecksum 26fa84b3090d641efb186947ce4d1d89c30a2c224cfc8fa759da3ba7ec9cc113c0ed4afc1c3d0fa5f9d0a88af4f9b3001d57651df6b5be6e0234fb78ec4f252a +doccontainersize 10296 +doccontainerchecksum d458fa8db6433b4c7fbd23a16f9be53c2c822e396e7f50844cfa6acdd2a08acf8efdd0bd946c8fdc09ca8aa28d1eb25708d3719184634abced92ea5c94d9a948 +docfiles size=6 + texmf-dist/doc/man/man1/texdiff.1 + texmf-dist/doc/man/man1/texdiff.man1.pdf + texmf-dist/doc/support/texdiff/README details="Readme" +runfiles size=5 + texmf-dist/scripts/texdiff/texdiff +catalogue-also ltxdiff +catalogue-contact-home http://www.markdoll.de/texdiff/ +catalogue-ctan /support/texdiff +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license artistic +catalogue-topics editorial +catalogue-version 0.4 + +name texdiff.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of texdiff +containersize 336 +containerchecksum 06ec7b07dd2057627bc7bc92993de71469f8119d29f32c49462d95aeb27d4044bbe047908ea4b94d3f93dfb8e0a23846c6e36f82cab644ccf075d63f78b88905 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/texdiff + +name texdiff.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of texdiff +containersize 340 +containerchecksum 41a890548aa70e30b540189469c09ee2fe1a15f831acf076ae5cab40758a8deda24028ad641269c07e19b5d9a8976186f43803df67985b038c1535a981139580 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/texdiff + +name texdiff.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of texdiff +containersize 336 +containerchecksum 371462296b49d69083a459b732032432302381bdc8241314030ef819895a4f6b0f6b4321174de8612daccaf7dd911b179cfe55ff2cde2c20dffc8b215c0b512b +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/texdiff + +name texdiff.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of texdiff +containersize 336 +containerchecksum 7cff575aa832283d82e52aff831cce528b51d2cb1ece8de32e63789526f19bea2f7816ebe25fac069ae14a604953bfefc95afbd9b5787beae1ac2105eb705050 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/texdiff + +name texdiff.i386-cygwin +category Package +revision 15506 +shortdesc i386-cygwin files of texdiff +containersize 336 +containerchecksum 1d44781a8c6a16458af0fd291d16a8c6191b0b17c00fae0c359f699afe60cf004b29e18c5905ac555427bcb255aec74c39c57f8f3f10f19f04e06671e3d15c18 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/texdiff + +name texdiff.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of texdiff +containersize 340 +containerchecksum eb43e7f03760b8f4f307cfd7f0bb11ccd32069b0e179e60fd9d90d99f94d8180e822af9ec58e1610a1ce885e91df26227e1c44ec968120851ebd691fec949a6e +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/texdiff + +name texdiff.i386-linux +category Package +revision 15506 +shortdesc i386-linux files of texdiff +containersize 336 +containerchecksum 914ab16ad0b0306389c823b371ee5b223d81e8bd8698e61de81c67728c0f6097624468cc908dbb4decfd8ef07c0413b51e8d9f8c83fcd23d62f9c8948650d789 +binfiles arch=i386-linux size=1 + bin/i386-linux/texdiff + +name texdiff.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of texdiff +containersize 336 +containerchecksum 71c800ab424264571059ff0b7b8730015900a4ea2acb29ddcb093f6b76e9dd078f8e6af5f527ae5ee36d3ef31e8e094b55c959da8499fcca1ce7b2e1c0990c35 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/texdiff + +name texdiff.i386-solaris +category Package +revision 15506 +shortdesc i386-solaris files of texdiff +containersize 336 +containerchecksum 5b57dcd53b8e77f5c165a36227e821cf581b50db5c2d62499bebbcc4a7c14d66b8908b336d8afc43c99e3026833766d45f3c3a2a0c4cae8db108e2104620b3e7 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/texdiff + +name texdiff.win32 +category Package +revision 15506 +shortdesc win32 files of texdiff +containersize 684 +containerchecksum bdaf06cca1793cbcf8bcf9a794266001bfad0eb0bec1ef9737d88bdb26794a84dcf2edf6a7c167d140e88fbf77b129ffeeb471c6386db5287a3324b1faf0655b +binfiles arch=win32 size=1 + bin/win32/texdiff.exe + +name texdiff.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of texdiff +containersize 340 +containerchecksum 11ead673fee96d5d77a740f77538bb4d7ff25815c5a1095d455ddf525b591f28dac66e93b68568ad911bda45cd434957d1b8618b63aa3bfc865b3a88425c00b0 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/texdiff + +name texdiff.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of texdiff +containersize 340 +containerchecksum 43fc73caa27298bac300a7a1d02ca629ff5912a5a004b1b23ed58908d05cae7c16e31f3f771ed2ff58d6ef9a4c3771f23562279aaa8d4114a342068416d1b135 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/texdiff + +name texdiff.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of texdiff +containersize 344 +containerchecksum 0b1909709ed62ce753d4f8f8a284f2f16b783f6c7aadcb91fdde1c38d41012d37b7d16083a287416ff0696d2e407702653187f78536c273aa2e4b3d7f43f786b +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/texdiff + +name texdiff.x86_64-linux +category Package +revision 15506 +shortdesc x86_64-linux files of texdiff +containersize 336 +containerchecksum 54015561a76b09f8c06cd64a61e20ad436ee75b58ed59a3ec063594da4756a761645bad851bb1f75288944cdd836c270aaf0def2e2c2bc72ddb36ee1834f1476 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/texdiff + +name texdiff.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of texdiff +containersize 340 +containerchecksum 38708c08b70861f28e398557791f3771a4c7506f4bc0b7db20beb8aaff36db4030434c3ee2e386b80a7265d46206c3a192d454dac8ceb76b098d115ceba1cdeb +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/texdiff + +name texdiff.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of texdiff +containersize 340 +containerchecksum a366f2b680f8b299cb351beeb474a00cef6fbeff4f8e18780e408a5ef9f63314f96e0b78cf444a95750aa9f0c8ca281cf9111da7ba7e813b79cda21014587f1b +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/texdiff + +name texdirflatten +category Package +revision 44751 +shortdesc Collect files related to a LaTeX job in a single directory +longdesc The Perl script parses a LaTeX file recursively, scanning all +longdesc child files, and collects details of any included and other +longdesc data files. These component files, are then all put into a +longdesc single directory (thus "flattening" the document's directory +longdesc tree). +depend texdirflatten.ARCH +containersize 4848 +containerchecksum e4f03e9a434e1ab8ea1b69ca0ed2dffe1f8cdb2c853a733e275bee74ed4b17b84b72cd8cc7d1820f595e1c2282a38b9bfc7f7b7a9e003fdace6488390a1b97ba +doccontainersize 11016 +doccontainerchecksum 972fc69b705b2f6289358199cedc91ec386da9212048f7f7a84e43eeadc943f7f42ade8d7faa9f58d1685d2bb10408e274b2461032927042371feb86b4ef6b43 +docfiles size=6 + texmf-dist/doc/man/man1/texdirflatten.1 + texmf-dist/doc/man/man1/texdirflatten.man1.pdf + texmf-dist/doc/support/texdirflatten/README details="Readme" +runfiles size=3 + texmf-dist/scripts/texdirflatten/texdirflatten +catalogue-contact-announce https://github.com/cengique/texdirflatten +catalogue-contact-bugs https://github.com/cengique/texdirflatten/issues +catalogue-contact-development https://github.com/cengique/texdirflatten +catalogue-contact-home https://github.com/cengique/texdirflatten +catalogue-contact-repository https://github.com/cengique/texdirflatten +catalogue-contact-support https://github.com/cengique/texdirflatten +catalogue-ctan /support/texdirflatten +catalogue-date 2017-07-03 23:22:32 +0200 +catalogue-license artistic +catalogue-topics file-mgmt +catalogue-version 1.3 + +name texdirflatten.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of texdirflatten +containersize 344 +containerchecksum aa831163adf08d56466c37b832271f600efeb69d31e81353b6475386f0ebe732d7cb3e8e6bed213765c795bd72f61fd47938a17f377055aa28ef83b09d2cf50f +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/texdirflatten + +name texdirflatten.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of texdirflatten +containersize 344 +containerchecksum 511938e49dc419f48445ca1ad65048cfe4a580eb092b99c0ea4be44555c7dbef3042c37e9eb3b18c729a1999cdd72475f91f586e5da8b9643821cd8ff91f1094 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/texdirflatten + +name texdirflatten.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of texdirflatten +containersize 340 +containerchecksum 69eb20646a3c59212fba3cade6a4ca419b87e9e27ff87a294e64531c41213f5c6696178bd9b4d06543e5121154d1594f70eb29ec22a692e98c24d64937463f90 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/texdirflatten + +name texdirflatten.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of texdirflatten +containersize 340 +containerchecksum fcb7c72a63afc80cacdf759e38b26d0f9a1dd3a22116a38c889f1546db984c412e1aed63b1086fd0d9ad01853512f8e54cd0f13e96f1c7ca28f7a09a3dc7c7a2 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/texdirflatten + +name texdirflatten.i386-cygwin +category Package +revision 13717 +shortdesc i386-cygwin files of texdirflatten +containersize 340 +containerchecksum 70469d5a726b67e05b1e135128880634b065c50c79db03d0ff2da0446772b49b3a262099af6ec8835eafa61f408d91da630a58ee4d5be2fb978f11736ebaaf82 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/texdirflatten + +name texdirflatten.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of texdirflatten +containersize 344 +containerchecksum f4a6724008ecf1fc91f406a3a6598bd42f027e5cf68cb3c0ab0187349a604af203edf97944d87789a28f509b19088d2bec23e851da4a0aef8ba889865e5bdd96 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/texdirflatten + +name texdirflatten.i386-linux +category Package +revision 12782 +shortdesc i386-linux files of texdirflatten +containersize 344 +containerchecksum c0df17b236f854e9a7a872167f96ec2a584a662d7380ced4a0a8a542a6122e713515b6fd0ca9dcdcd3658ee8020bf7b4359aed2c61970d72228780d8c52810bd +binfiles arch=i386-linux size=1 + bin/i386-linux/texdirflatten + +name texdirflatten.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of texdirflatten +containersize 344 +containerchecksum a9602f1130689132ab3fcdea698ba3258f70f0442e964a1d882f3e43146d3ddb91524289324af0ed2b07242dd357b107861f16da665d370f56a6e3591746ccdc +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/texdirflatten + +name texdirflatten.i386-solaris +category Package +revision 12782 +shortdesc i386-solaris files of texdirflatten +containersize 344 +containerchecksum 6d442e438d96cd6cefe0f04b33dc91a37a73ee1c07c7cf81ee7b7b1d54eef2ca7e7fe0d07213df13d8123133c8a9d7bf4353076210d2b81a7e984d536a071691 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/texdirflatten + +name texdirflatten.win32 +category Package +revision 15404 +shortdesc win32 files of texdirflatten +containersize 692 +containerchecksum d1ed5738b38e35cd0bb2b48cb177a7d34989ed6b877dda343df9b4a54a8da273668aa59acbbd7872e7d29de5c8f3583c99697c81c9e9d4a2f96d5d04188a6620 +binfiles arch=win32 size=1 + bin/win32/texdirflatten.exe + +name texdirflatten.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of texdirflatten +containersize 344 +containerchecksum 0de641af3256645099ba95f7ef071e73175ea44bc0402e2e0d4a8117afbb1f93d9e5be6bdc8f545c1f5cd92aae382b21e619789cf8f766bdfab24006d9e55bef +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/texdirflatten + +name texdirflatten.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of texdirflatten +containersize 348 +containerchecksum a046a2c974bbe6ed7837999852a571b369945da4ee37ccda37e96806e74e26a7537d4051b40ae359c457e5210421f12d09297ef5acf866d3b00bf562d7b39a88 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/texdirflatten + +name texdirflatten.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of texdirflatten +containersize 352 +containerchecksum 34ec35c848b31b18c938d86719dce7e72824890deb2f6f46d84fda30b4efab4868c6718fcba2b951db2bf131b21c8c0f83c496915ff81aea040a406bc2f6b3a3 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/texdirflatten + +name texdirflatten.x86_64-linux +category Package +revision 12782 +shortdesc x86_64-linux files of texdirflatten +containersize 344 +containerchecksum 44247b7e4049053789ea839d5ee13093797f155086d566f302ef161ca645652f44b0e7ce20fd3579c56528f41c5f3d71d1ad62ac8f5422ceda25d8a5f5174397 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/texdirflatten + +name texdirflatten.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of texdirflatten +containersize 348 +containerchecksum 33215ac8ec2cd931787eb38fef891a64cf7ec19fa0cb4c8a24da7759259890ced46367d5b0e92eebed8f4bda34c11fc1822ba65e3d2fc67c322c033ad1d3ca16 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/texdirflatten + +name texdirflatten.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of texdirflatten +containersize 344 +containerchecksum 4527ef89a1d9ab921772ba7e2b9d16b0587632ea6538b2a8727fcf5b0272ef7cf8c7aa1ee42ad6632e0c5089c2d3938cbf5d1a801f8e44b7e7e7a15c5ae1cb7d +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/texdirflatten + +name texdoc +category TLCore +revision 50627 +shortdesc Documentation access for TeX Live +longdesc texdoc is a Lua script providing easy access to the +longdesc documentation in TeX Live: PDF, DVI, plain text files, and +longdesc more. Viewing and other configuration can be extensively +longdesc customized. It is distributed with TeX Live; MiKTeX provides a +longdesc program by the same name to do the same job, but its +longdesc implementation is unrelated. +depend kpathsea +depend texdoc.ARCH +containersize 25736 +containerchecksum 2c12bf48d03d456e95d6bc31ad6d46f77c0dfebde73fd8a87e2128c7267327377b8d8d7d9b04ecf7295eaad16eccf1df5bab6f9050df7113c62bfbbffc0d00be +doccontainersize 124736 +doccontainerchecksum 133abc048e8cbfa84bd2788fe0942bc48d4d2844bec525c010a3590afa62b22ca77518ebbfd26e78c825152ec0eea0a8e1513d15931332656b8fec702b0b7479 +docfiles size=48 + texmf-dist/doc/man/man1/texdoc.1 + texmf-dist/doc/man/man1/texdoc.man1.pdf + texmf-dist/doc/support/texdoc/COPYING + texmf-dist/doc/support/texdoc/NEWS + texmf-dist/doc/support/texdoc/README.md details="Readme" + texmf-dist/doc/support/texdoc/texdoc.pdf details="Package documentation" + texmf-dist/doc/support/texdoc/texdoc.tex +runfiles size=29 + texmf-dist/scripts/texdoc/texdoc.tlu + texmf-dist/scripts/texdoc/texdoclib-alias.tlu + texmf-dist/scripts/texdoc/texdoclib-cli.tlu + texmf-dist/scripts/texdoc/texdoclib-config.tlu + texmf-dist/scripts/texdoc/texdoclib-const.tlu + texmf-dist/scripts/texdoc/texdoclib-score.tlu + texmf-dist/scripts/texdoc/texdoclib-search.tlu + texmf-dist/scripts/texdoc/texdoclib-util.tlu + texmf-dist/scripts/texdoc/texdoclib-view.tlu + texmf-dist/scripts/texdoc/texdoclib.tlu + texmf-dist/texdoc/texdoc.cnf +catalogue-also texdoctk +catalogue-contact-bugs https://github.com/TeX-Live/texdoc/issues +catalogue-contact-home http://tug.org/texdoc/ +catalogue-contact-repository https://github.com/TeX-Live/texdoc +catalogue-contact-support http://lists.tug.org/texdoc +catalogue-ctan /support/texdoc +catalogue-date 2019-03-28 14:31:59 +0100 +catalogue-license gpl +catalogue-topics view-doc +catalogue-version 3.1 + +name texdoc.aarch64-linux +category TLCore +revision 47948 +shortdesc aarch64-linux files of texdoc +containersize 340 +containerchecksum ae7ddc0a25ff1320380e04b6139f82184eca10cd15134f3bc5c0d0be6fbda19418137226cad886cb294f0cd33bcba625fb9b7a5d5193ab7ade099677995b3bde +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/texdoc + +name texdoc.amd64-freebsd +category TLCore +revision 47948 +shortdesc amd64-freebsd files of texdoc +containersize 344 +containerchecksum fe00524ec8c90a66cc928d3c0f453937e35d7754d74cd7b73db54b4a0d0d8ae5dc2e280801587e622a8edd77591ecb1f34ff580812a88fe1feef5a191773328a +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/texdoc + +name texdoc.amd64-netbsd +category TLCore +revision 47948 +shortdesc amd64-netbsd files of texdoc +containersize 340 +containerchecksum ad6b863fd16a8c3f9309ea88b2f9809eb4142f4c5c6888a8e7133b28e44e239723f2265c49283ca8de89ab7270b7f98c1df09b3e56f20778a8d46f9d847b9def +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/texdoc + +name texdoc.armhf-linux +category TLCore +revision 47948 +shortdesc armhf-linux files of texdoc +containersize 340 +containerchecksum 3d63f1585dbee7c20cb2043fb9cc369039e89c8fa1d89c904d7cbf207e654c3cbf29d3e1164e058f5cc0060eeb18a94954a1ecf703213b76b362a9bec26fe43b +binfiles arch=armhf-linux size=1 + bin/armhf-linux/texdoc + +name texdoc.i386-cygwin +category TLCore +revision 47948 +shortdesc i386-cygwin files of texdoc +containersize 336 +containerchecksum 400afe75ca64bf1a127790a076e0e5b2f8c6584603f650b20e348b69b48aa97612efa76d9a7a7fa0ffbb4694667f9b410a84828354b1f065262ae7dfc9ecdce4 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/texdoc + +name texdoc.i386-freebsd +category TLCore +revision 47948 +shortdesc i386-freebsd files of texdoc +containersize 340 +containerchecksum 630a89ad37f3a5e8e0ebf2c7baa032cb1b0fab45cde10717cb4ca4db6e5df0e8a754016eb31fb870d5b98eb4dcc838ad71c34a90b3e92ad64d3cd8ac6903bece +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/texdoc + +name texdoc.i386-linux +category TLCore +revision 47948 +shortdesc i386-linux files of texdoc +containersize 340 +containerchecksum f5892a2059d7d6d4c0dcc838276aa8fd07b2d16b467c0ddfc8fce43183d885453e04c6e767dc652e19ea736d34c355b22af6cfba71261acee668038d84851b91 +binfiles arch=i386-linux size=1 + bin/i386-linux/texdoc + +name texdoc.i386-netbsd +category TLCore +revision 47948 +shortdesc i386-netbsd files of texdoc +containersize 340 +containerchecksum 7d922e61c44b5df2cad4b29d88c8bf8e9238c3edc08217a48f797ac0836ab0c4ee0d3fa25268dfa6453f25cc5ae2556e2fd4aa67df9b2943ec50e069c5fd6685 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/texdoc + +name texdoc.i386-solaris +category TLCore +revision 47948 +shortdesc i386-solaris files of texdoc +containersize 340 +containerchecksum 74469498c2f85c7d34210fe89265301af799e3126dc1dfc62164ae91fe21f5b4637bfc02f643474f4444ba95a70d1a0cf7cd380376b131227a71ca0d31ae10ed +binfiles arch=i386-solaris size=1 + bin/i386-solaris/texdoc + +name texdoc.win32 +category TLCore +revision 47948 +shortdesc win32 files of texdoc +containersize 680 +containerchecksum b03dc5aae34e0bd841c27883dc15af7c9a0f759027f1a04cc775894b8dc6bed0f2e91e881fc606d4a59c51245aa010219487ec55cfd9f27672838397e24593b9 +binfiles arch=win32 size=1 + bin/win32/texdoc.exe + +name texdoc.x86_64-cygwin +category TLCore +revision 47948 +shortdesc x86_64-cygwin files of texdoc +containersize 344 +containerchecksum e16a558b8c714a44b8aec8b22f1fcba503d4388422320b5541d2467228af4a1365631df4a41ea95689b21d76bc83398759ea54a23853078003d9e7ec301521f1 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/texdoc + +name texdoc.x86_64-darwin +category TLCore +revision 47948 +shortdesc x86_64-darwin files of texdoc +containersize 344 +containerchecksum 330b76302c7c11649bdea236d45124e6390d2626a383e2b7cb1167dcee6ea831b30ac067300799560c3b91f3d7fa7482c513b79a055172003f667023e0a71aa6 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/texdoc + +name texdoc.x86_64-darwinlegacy +category TLCore +revision 47948 +shortdesc x86_64-darwinlegacy files of texdoc +containersize 348 +containerchecksum c8655bb9a73e31f9bc749897da3000c5771c19d369ecc7a01f7960cbd3793ca718ed35a7dcb978dea9151be701c2f9e5e3f672a2b2650337ae41f8120d306334 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/texdoc + +name texdoc.x86_64-linux +category TLCore +revision 47948 +shortdesc x86_64-linux files of texdoc +containersize 340 +containerchecksum d2b66ccccab24076063facd08b7689151f7d42f6be63ef6b02e336626c4279df0ab94e96716f1e5079f351c6612f860de0b554bb2da21c01d38e70927dd0cf2c +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/texdoc + +name texdoc.x86_64-linuxmusl +category TLCore +revision 47948 +shortdesc x86_64-linuxmusl files of texdoc +containersize 344 +containerchecksum 3cc93e41becc25f3a35f5b5319cb71970bf75edec85237a2e82e20474eaa736c5ecc595bf33a4b80786e94cb855383daab6c88403b762810ac329e7c446dcdeb +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/texdoc + +name texdoc.x86_64-solaris +category TLCore +revision 47948 +shortdesc x86_64-solaris files of texdoc +containersize 340 +containerchecksum d37143e8a7b39403bb182d9ff243c999be5e366ec980bd0c7fecc1dfc1197750150bc75431245f07d424c3243c065ffd8d8e7e5da26786c6a24e750d5e561bc6 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/texdoc + +name texdoctk +category TLCore +revision 50602 +shortdesc Easy access to package documentation +longdesc A Perl/Tk-based GUI for easy access to package documentation +longdesc for TeX on Unix platforms; the databases it uses are based on +longdesc the texmf/doc subtrees of teTeX, but database files for local +longdesc configurations with modified/extended directories can be +longdesc derived from them. Note that texdoctk is not a viewer itself, +longdesc but an interface for finding documentation files and opening +longdesc them with the appropriate viewer; so it relies on appropriate +longdesc programs to be installed on the system. However, the choice of +longdesc these programs can be configured by the sysadmin or user. Now +longdesc only distributed as part of TeX Live, which includes a Windows +longdesc executable. +depend kpathsea +depend texdoctk.ARCH +containersize 26700 +containerchecksum d6799beb8f8615c82dc8f66971bcfcb62e763672d707a284d2293164861cd861b47a691fadbda9dca736ce820e4c90adcf1358b04f4db38121459415101efbce +doccontainersize 30716 +doccontainerchecksum f8f08bbc68488fd75a2291ea1556a8c1166357ba225ac0b0205f2b9e8ee1b23957f41c1a577540028b74f12647578c6fcc2219a07afb6d3a1f63affbfe383c19 +docfiles size=11 + texmf-dist/doc/man/man1/texdoctk.1 + texmf-dist/doc/man/man1/texdoctk.man1.pdf +runfiles size=27 + texmf-dist/scripts/texdoctk/texdoctk.pl + texmf-dist/texdoctk/texdocrc-win32.defaults + texmf-dist/texdoctk/texdocrc.defaults + texmf-dist/texdoctk/texdoctk.dat +catalogue-also texdoc +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics view-doc +catalogue-version 0.6.0 + +name texdoctk.aarch64-linux +category TLCore +revision 46208 +shortdesc aarch64-linux files of texdoctk +containersize 344 +containerchecksum 0d39e99ffc0886f56cc12485beac0d619aaac678ba50df2645718909d28211afb9add807b931dc4aa6ed84ccd7af60620aa4a7d8c43588a288d2598cb90dc5ff +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/texdoctk + +name texdoctk.amd64-freebsd +category TLCore +revision 29785 +shortdesc amd64-freebsd files of texdoctk +containersize 344 +containerchecksum 4966896bbdd5d1fe99adfe9c8f2f84c77742f136879c097c418737d2b1ac0a65f7c48dd4a53f1a0a040a11c3b5c944fa94da518c9d1d1943f623325b3af15ec1 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/texdoctk + +name texdoctk.amd64-netbsd +category TLCore +revision 30191 +shortdesc amd64-netbsd files of texdoctk +containersize 340 +containerchecksum 9f74fdfd32d35debd551b8627ad067ffd7cd5c8765e96ac71818f4a7dc9626414fb9d3db15c223b9ba5346ff819c9f140859667c7c5ca7ce42d175eb7f207e28 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/texdoctk + +name texdoctk.armhf-linux +category TLCore +revision 30015 +shortdesc armhf-linux files of texdoctk +containersize 340 +containerchecksum 2d3405048185ce3f7f8a67e6cfaf883a065b3a60acfb21779e941d821b0d476e3dacee5f49025b96f9fe0575495e7776da239c4de5926dcd2bdc57247040e123 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/texdoctk + +name texdoctk.i386-cygwin +category TLCore +revision 29836 +shortdesc i386-cygwin files of texdoctk +containersize 340 +containerchecksum facd8bcb82cf0e37e0a0677c3b9d5fbdf66628dd37cc63f52d49eef868dfb2ff7076a6b10df3339c92d0b883da3db0d630a070fbe927520710a0c6584521634a +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/texdoctk + +name texdoctk.i386-freebsd +category TLCore +revision 29785 +shortdesc i386-freebsd files of texdoctk +containersize 340 +containerchecksum c4eabf244b724925b746640663169e06ea58600ef99ebd6865851d32f44798c205ee06562826b54336622c8b2beb949b0052367eefecc1235b43c07fc989345c +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/texdoctk + +name texdoctk.i386-linux +category TLCore +revision 29741 +shortdesc i386-linux files of texdoctk +containersize 340 +containerchecksum 4c9ca86090d2f7949caaf37b42e66342749ecfe619ee80ef454758a22e40b91b83bc1342c4b0e14d918263f94ae16e818cbcc9e71369775075934ec6cd66a4d0 +binfiles arch=i386-linux size=1 + bin/i386-linux/texdoctk + +name texdoctk.i386-netbsd +category TLCore +revision 30191 +shortdesc i386-netbsd files of texdoctk +containersize 340 +containerchecksum a7a47fa0137eb47f637df8bae892aada5758cbc93e0dbf58a1ecc219ed11644857be799382ede2c70a307932ab83a0090569cc26f3b15d265b26ffef3b9f2c65 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/texdoctk + +name texdoctk.i386-solaris +category TLCore +revision 29806 +shortdesc i386-solaris files of texdoctk +containersize 340 +containerchecksum 002e94fed830a40743b474df87f1682f411de6d1b9cdfa22dc1c10700c9f44120b1cdf209d254689564b93725d07f9bdf8108bc77c6aa65fa050a2acc0d18a99 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/texdoctk + +name texdoctk.win32 +category TLCore +revision 18918 +shortdesc win32 files of texdoctk +containersize 2008 +containerchecksum f82158ef9eef0972fe1d9cafac26261acb53c17035592d2267ebea85b3945d40f7782abe4d79162bdf10f998748db779c86362fca759dbc3f800a7014209e875 +binfiles arch=win32 size=2 + bin/win32/texdoctk.exe + +name texdoctk.x86_64-cygwin +category TLCore +revision 33557 +shortdesc x86_64-cygwin files of texdoctk +containersize 344 +containerchecksum af85bc5965596b8f984d66f9dc9851a0e9af29fa775b5dd2176f50aa0dd06ee0c0148a2a778df13542e367ecf157be769bcf5b6ed269321290492bd1aacf3edb +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/texdoctk + +name texdoctk.x86_64-darwin +category TLCore +revision 29809 +shortdesc x86_64-darwin files of texdoctk +containersize 344 +containerchecksum 0b5857dd64bfaad94008e16981508d34bad963976b9dd88ca80d27d44c19bd0aa9dc1715425dc7f5b6c55103bfc24466c8134c7e6409903922e860efd9ec6565 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/texdoctk + +name texdoctk.x86_64-darwinlegacy +category TLCore +revision 43871 +shortdesc x86_64-darwinlegacy files of texdoctk +containersize 348 +containerchecksum ef21e7532c653565fac7c1592e7368e71ffa2c0a5b9461043bc3bcad601d3a1015c2eb65fe976f3e26ea2f34b6b8cbd59980ef2b716b5f5a2cf1fe52157b119f +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/texdoctk + +name texdoctk.x86_64-linux +category TLCore +revision 29820 +shortdesc x86_64-linux files of texdoctk +containersize 340 +containerchecksum 3d45517e2573b7eee9d7963d5a30e9f28e096dd0ef05a979827d8dc0acac4ab99061c686c5daf48790231813b7149665e3f3c7c96d2cdf56302a06b7f8fb8b1d +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/texdoctk + +name texdoctk.x86_64-linuxmusl +category TLCore +revision 46840 +shortdesc x86_64-linuxmusl files of texdoctk +containersize 348 +containerchecksum 4f160f2dd7aece8413f7af233ebad49ce35c2007ede0595eaf552cf6163c44bc1e5b982381a505fa20e4a94c3777736d2ee753ebcfcd501f3f1c666bcedff4d0 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/texdoctk + +name texdoctk.x86_64-solaris +category TLCore +revision 29807 +shortdesc x86_64-solaris files of texdoctk +containersize 340 +containerchecksum 927a7c31b49fc3bbb8124c93bcbd278a475fb49fd16d1be2b3448e162b0b12037c0bad326bb35e42bff7ec24fbf51da5486a07655fca8e2834ebe8798f06459b +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/texdoctk + +name texdraw +category Package +revision 51030 +shortdesc Graphical macros, using embedded PostScript +relocated 1 +longdesc TeXdraw is a set of macro definitions for TeX, which allow the +longdesc user to produce PostScript drawings from within TeX and LaTeX. +longdesc TeXdraw has been designed to be extensible. Drawing 'segments' +longdesc are relocatable, self-contained units. Using a combination of +longdesc TeX's grouping mechanism and the gsave/grestore mechanism in +longdesc PostScript, drawing segments allow for local changes to the +longdesc scaling and line parameters. Using TeX's macro definition +longdesc capability, new drawing commands can be constructed from +longdesc drawing segments. +containersize 15548 +containerchecksum 30cc546b259f93bec3f5d3efea5e73cdf7e34f9f76cac8946d82fff3123abb6f5bc7c70c48987bab24e154c56f6145fef0680b416e7cf2aaa79f5aa673600f59 +doccontainersize 243680 +doccontainerchecksum 28a7028a28749e2d7c8b5176dd473b749230750fe1ead78a731c9f4a40db299c4bd034be18e0587ab1dd79b6b0802abff19d12fdf44dab5e1a64e26d48185771 +docfiles size=126 + RELOC/doc/info/texdraw.info + RELOC/doc/support/texdraw/ChangeLog + RELOC/doc/support/texdraw/Makefile + RELOC/doc/support/texdraw/README details="Readme" + RELOC/doc/support/texdraw/examples/txdexamp.latex + RELOC/doc/support/texdraw/examples/txdexamp.tex + RELOC/doc/support/texdraw/test/ttexdraw.tex + RELOC/doc/support/texdraw/texdraw.pdf details="Package documentation" + RELOC/doc/support/texdraw/texdraw.texi +runfiles size=19 + RELOC/tex/generic/texdraw/blockdiagram.tex + RELOC/tex/generic/texdraw/texdraw.sty + RELOC/tex/generic/texdraw/texdraw.tex + RELOC/tex/generic/texdraw/txdps.tex + RELOC/tex/generic/texdraw/txdtools.tex +catalogue-ctan /graphics/texdraw +catalogue-date 2019-05-06 20:46:20 +0200 +catalogue-license cc-by-4 +catalogue-topics graphics-in-tex +catalogue-version v2r3 + +name texfot +category Package +revision 44991 +shortdesc Filter clutter from the output of a TeX run +longdesc The package provides a small Perl script to filter the online +longdesc output from a TeX run, attempting to show only those messages +longdesc which probably deserve some change in the source. The TeX +longdesc invocation itself need not change. +depend texfot.ARCH +containersize 6204 +containerchecksum 19b496131b7d68e77e7370a28cf05ab5edd2540027a927750237be0956c8e0fe9773017db5501f1ed31e213b1978aa217973d22ded0315b59cea453f59519bfe +doccontainersize 19076 +doccontainerchecksum c0645e3061ec11cb0f27840391fd762eb18f407f173dc10da98190bcc33b2c64ecb7aac11fb7c79df7861273ce8710881bacfd976e635b3870f29a662a19caac +docfiles size=10 + texmf-dist/doc/man/man1/texfot.1 + texmf-dist/doc/man/man1/texfot.man1.pdf + texmf-dist/doc/support/texfot/README details="Readme" +runfiles size=4 + texmf-dist/scripts/texfot/texfot.pl +catalogue-ctan /support/texfot +catalogue-date 2017-08-08 20:53:45 +0200 +catalogue-license pd +catalogue-topics comp-mgmt +catalogue-version 1.37 + +name texfot.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of texfot +containersize 340 +containerchecksum 3380486f45523d143a59bb07470673681de4efdc296056bcbe02d41db869bf55ef530adaf84b2d631054d6b49c12c87973476a6f95ba04a0d4ec0573922a1208 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/texfot + +name texfot.amd64-freebsd +category Package +revision 33155 +shortdesc amd64-freebsd files of texfot +containersize 340 +containerchecksum aaf3fda96afedbae81c9c9f705fe3bc61393d35dcd429bb192c70a05629b6382b26bf56bf542e64fa533552b2ff78ae9c96a49a0f81b61ede737d85d789e359d +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/texfot + +name texfot.amd64-netbsd +category Package +revision 33155 +shortdesc amd64-netbsd files of texfot +containersize 336 +containerchecksum 3d2c73362e51474ce8f117ada8216388f7b7ff7b4d2eb81b222a3f8fb48aadf4bee21afb117eed3f6b89ad62d776a994019200afe26519b1fdb4c27e5be88415 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/texfot + +name texfot.armhf-linux +category Package +revision 33155 +shortdesc armhf-linux files of texfot +containersize 336 +containerchecksum 8f691f5a0a8af6cad6b761804f743a1b4bb913d7870e79fbd1de2a04a43a11817b96f9eec45de0be76c3780b6b423357d400f7d543cebae9aa96a7de7d4ad30d +binfiles arch=armhf-linux size=1 + bin/armhf-linux/texfot + +name texfot.i386-cygwin +category Package +revision 33155 +shortdesc i386-cygwin files of texfot +containersize 336 +containerchecksum 8883c4b4a4b222e3eb8f9ab181b696505cacd675de66a59f263589d5af3c00d65c51724335192ece630b09980490ef6ec84b9aba6db2de401f830e3c89d0e4bc +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/texfot + +name texfot.i386-freebsd +category Package +revision 33155 +shortdesc i386-freebsd files of texfot +containersize 340 +containerchecksum 220688b9b26823606983cbf0cd8315afdcdd735b823cc14a1233bad6a93db0d02276bf363612fcfd1058d23e17654e01fb825cb563813f74ede290fe7f4d951b +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/texfot + +name texfot.i386-linux +category Package +revision 33155 +shortdesc i386-linux files of texfot +containersize 340 +containerchecksum 0ba383b819ba3b9b3cfdc8415f1c0e95afbed31dec1ea6a913d1310fc0e3e6354ea45084b8b513c50bff8c9ac9dbb0cd38b24f2fde2971b15ddd84f3efa6409c +binfiles arch=i386-linux size=1 + bin/i386-linux/texfot + +name texfot.i386-netbsd +category Package +revision 33155 +shortdesc i386-netbsd files of texfot +containersize 336 +containerchecksum fbc6da687705084169344a6bcb1a0dfad6f473cc49f23c7c23b66c5ca34285856c61189d7b9bc2255a9c88a5b76b9cdf41dad82b5ba83c4f7688bbc32a577e9d +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/texfot + +name texfot.i386-solaris +category Package +revision 33155 +shortdesc i386-solaris files of texfot +containersize 340 +containerchecksum 294a90083e697c7970b694ce788d7811bd1a4026a9e83418046a1d943bb4918f300f36d77a9cc7c97a48c2516eb43c4908fa5248ba9ce842dd2a39d507855599 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/texfot + +name texfot.win32 +category Package +revision 33155 +shortdesc win32 files of texfot +containersize 684 +containerchecksum c1b4eb2cdb93c91794010087c8ab3a6493da26785c50aebc5fc43f671c67ec4769736fb299a81fa9be3eef4e49ac7377a72fdcd7c2e451bad1d86cc8d9c01e37 +binfiles arch=win32 size=1 + bin/win32/texfot.exe + +name texfot.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of texfot +containersize 340 +containerchecksum 49acc9b1afb74212eb4d6d2d52614a6f88b6a74a089480f048274eb4b5923941f0b891fe700ab4ee94697a2de957ad9815fb19581aa5a217df8a253675e0cb65 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/texfot + +name texfot.x86_64-darwin +category Package +revision 33155 +shortdesc x86_64-darwin files of texfot +containersize 340 +containerchecksum be2b2efdc9412c15c1c5661f98f034fac5a0b2296010eaedf52c32523091f9c35700eb45db9efd85ed22d3fa732860836f23347c70cc7524ecfbac6fa8235419 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/texfot + +name texfot.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of texfot +containersize 348 +containerchecksum e6b6032fe158cd8c770329c659c0661ea8705fb9eae4979e6b1fd32a3cfc644670ebc3f76e76c81149945684adac15f2bd355b8586d973a579048e37b75a3da7 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/texfot + +name texfot.x86_64-linux +category Package +revision 33155 +shortdesc x86_64-linux files of texfot +containersize 336 +containerchecksum 6791108a4e2c8bdb7fc613aba3a55880f80e32d9aa57069f2ea9ccc4758362601a32093d3fb562801c11b9604a55618b75c349212e333a4d6e827afde5ac689f +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/texfot + +name texfot.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of texfot +containersize 344 +containerchecksum 99aed0da46a14cc3654cfc855165ee9ba7544298deae53b18df7cccd860890c776e464dbfb70a3375ec5a3678443e72803687a99ab926d393fd96e14eb651855 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/texfot + +name texfot.x86_64-solaris +category Package +revision 33155 +shortdesc x86_64-solaris files of texfot +containersize 340 +containerchecksum fd805ace455f4f72971183bea7ac14964d7fb8e44ba52e290c9bd92aabb6d61605020b4f903b10dfcf44d495b6565cba1888fd6e095a0f3888f7e42508db8f44 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/texfot name texilikechaps category Package revision 28553 -shortdesc Format chapters with a texi-like format. +shortdesc Format chapters with a texi-like format relocated 1 longdesc The package enables the user to reduce the size of the rather longdesc large chapter headings in standard classes into a texi-like longdesc smaller format. Details of the format may be controlled with longdesc internal commands. +containersize 1956 +containerchecksum b65e737c138a176e6674612dda6b066a9953d8b737fe2e947eb10c058d6b67eb27f154a3ca4f346481f4dc077fddc2c95cc302762a9e9eaa2f0f1d23160bd4be runfiles size=1 RELOC/tex/latex/texilikechaps/texilikechaps.sty catalogue-ctan /macros/latex/contrib/misc/texilikechaps.sty -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics headings catalogue-version 1.0a name texilikecover category Package revision 15878 -shortdesc A cover-page package, like TeXinfo. +shortdesc A cover-page package, like TeXinfo relocated 1 longdesc The package creates document cover pages, like those that longdesc TeXinfo produces. +containersize 956 +containerchecksum fc73ce5601a10d638ea78fe815978d395001a73be75084539498644ac7f3fea0f3a57e95bd80e5f38659891adfd9c817e6068acfe04972a836938d733e0d4382 runfiles size=1 RELOC/tex/latex/texilikecover/texilikecover.sty catalogue-ctan /macros/latex/contrib/misc/texilikecover.sty -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics covers catalogue-version 0.1 name texinfo category Package -revision 37747 -shortdesc Texinfo documentation system. +revision 50923 +shortdesc Texinfo documentation system relocated 1 longdesc Texinfo is the preferred format for documentation in the GNU longdesc project; the format may be used to produce online or printed @@ -160498,7 +272866,9 @@ longdesc distribution offer online interactive use (with hypertext longdesc linkages in some cases). Note that a developers' snapshot of longdesc the latest release of the Texinfo macros may be found in the longdesc Texinfo 'latest' package. -runfiles size=98 +containersize 97888 +containerchecksum e0e392efd79744d2676e34ac5cab7a51ce62ff9dcde5721eb1d0257f0954f399f323eceb941040efbb436139b8c1a43ada167195e9a81c367223a83aa8d842fb +runfiles size=108 RELOC/tex/texinfo/texinfo.ini RELOC/tex/texinfo/texinfo.tex RELOC/tex/texinfo/txi-cs.tex @@ -160516,62 +272886,50 @@ runfiles size=98 RELOC/tex/texinfo/txi-sr.tex RELOC/tex/texinfo/txi-tr.tex RELOC/tex/texinfo/txi-uk.tex +catalogue-contact-home http://www.gnu.org/software/texinfo/ catalogue-ctan /macros/texinfo/texinfo -catalogue-date 2015-03-01 06:25:07 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license gpl catalogue-topics doc-supp format catalogue-version 5.1 -name tex-label -category Package -revision 16372 -shortdesc Place a classification on each page of a document -relocated 1 -longdesc Enables the user to place a 'classification' label on each -longdesc page, at the bottom to the right of the page number -runfiles size=1 - RELOC/tex/latex/tex-label/tex-label.sty -docfiles size=14 - RELOC/doc/latex/tex-label/README - RELOC/doc/latex/tex-label/tex-label-demo.pdf - RELOC/doc/latex/tex-label/tex-label-demo.tex - RELOC/doc/latex/tex-label/tex-label-doc.pdf - RELOC/doc/latex/tex-label/tex-label-doc.tex -srcfiles size=1 - RELOC/source/latex/tex-label/Makefile -catalogue-ctan /macros/latex/contrib/tex-label -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 - name texlive-common category TLCore -revision 37183 +revision 50466 shortdesc TeX Live documentation (common elements) relocated 1 postaction shortcut type=menu name="TeX Live documentation" cmd=TEXDIR/texmf-dist/doc/texlive/index.html -docfiles size=84 +containersize 344 +containerchecksum a2d1330cf12d9c7d78350384e69163f3c97c2d7ffe923a0819f487cf5b1f610b50ed2835f658f4a6c6e7df6b9d95bebed24073cb03f4213bd1a430e48716a702 +doccontainersize 449556 +doccontainerchecksum 9fa949114a490a7cfcd7c0083ea7fe797bafe4ae4b61f1b689e9950afafe8a8367f87a5e371aea6b669c90b3a6b31df00a0700e3bc0a96fd2b71c373f2a24a6a +docfiles size=131 RELOC/doc/texlive/index.html + RELOC/doc/texlive/texlive-common/advanced-lnx.png + RELOC/doc/texlive/texlive-common/basic-w32.png RELOC/doc/texlive/texlive-common/examples/ex5.tex RELOC/doc/texlive/texlive-common/examples/ex6.tex RELOC/doc/texlive/texlive-common/examples/ex6a.tex RELOC/doc/texlive/texlive-common/examples/ex6b.tex RELOC/doc/texlive/texlive-common/examples/ex6c.tex - RELOC/doc/texlive/texlive-common/install-lnx-main.png RELOC/doc/texlive/texlive-common/nsis_installer.png RELOC/doc/texlive/texlive-common/psview.png RELOC/doc/texlive/texlive-common/stdcoll.png - RELOC/doc/texlive/texlive-common/tlmgr-general-options.png + RELOC/doc/texlive/texlive-common/tlcockpit-packages.png RELOC/doc/texlive/texlive-common/tlmgr-gui.png - RELOC/doc/texlive/texlive-common/tlmgr-paper-options.png + RELOC/doc/texlive/texlive-common/tlshell-macos.png RELOC/doc/texlive/texlive-common/tray-menu.png - RELOC/doc/texlive/texlive-common/wizard-w32.png name texlive-cz category TLCore -revision 37325 +revision 50778 shortdesc TeX Live manual (Czech/Slovak) relocated 1 -docfiles size=376 +containersize 280 +containerchecksum 2c65a9915e58f81a298389fda9dbfe5c6d0a0fbb91db2da4d970f084f568da8dbd20e61576c2af05c74c4c2876835f8159d6dc3a250038dd64b433e4cc305a37 +doccontainersize 1152664 +doccontainerchecksum 8527c18ca429a877e747f66d68e3c6ff1992c42af0ce8e65d15a89743b689062e5d825578fb5896d5fb978251726cb2623d49207cb8126258bb6f419b36d09ec +docfiles size=413 RELOC/doc/texlive/texlive-cz/Makefile RELOC/doc/texlive/texlive-cz/csquote.sty RELOC/doc/texlive/texlive-cz/ec-lmr10-19.png @@ -160584,11 +272942,17 @@ docfiles size=376 name texlive-de category TLCore -revision 37312 +revision 50617 shortdesc TeX Live manual (German) relocated 1 -docfiles size=402 +containersize 272 +containerchecksum 89b6004f34abdd998257c723613ac09a1ff761bc2eb1dd441b21c6e25958874bc388e0fb4256410661f53d2145f3ccabeadc9ec1341af834b719913dbc6b59a0 +doccontainersize 1299960 +doccontainerchecksum c13300d4bfa0a9d97c5b01b82634c854dbf9c4239d9ad320470c8d16eff439b1996ff0d51a72baa5c3080ea027105521bd165198c8fe58f06fe785d130603916 +docfiles size=572 RELOC/doc/texlive/texlive-de/Makefile + RELOC/doc/texlive/texlive-de/advanced-lnx.png + RELOC/doc/texlive/texlive-de/basic-w32.png RELOC/doc/texlive/texlive-de/install-lnx-main.png RELOC/doc/texlive/texlive-de/lmsy10-40.png RELOC/doc/texlive/texlive-de/nsis_installer.png @@ -160601,31 +272965,42 @@ docfiles size=402 RELOC/doc/texlive/texlive-de/texlive-de.html RELOC/doc/texlive/texlive-de/texlive-de.pdf RELOC/doc/texlive/texlive-de/texlive-de.tex + RELOC/doc/texlive/texlive-de/tlcockpit-packages.png RELOC/doc/texlive/texlive-de/tlmgr-general-options.png RELOC/doc/texlive/texlive-de/tlmgr-gui.png RELOC/doc/texlive/texlive-de/tlmgr-paper-options.png + RELOC/doc/texlive/texlive-de/tlshell-macos.png RELOC/doc/texlive/texlive-de/tray-menu.png RELOC/doc/texlive/texlive-de/wizard-w32.png name texlive-docindex category TLCore -revision 38366 +revision 51185 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 109876 +containerchecksum 9c0a64c260b07a68d46a959673ade05256ec4def4a207fac59dcdccd66e5781b8af7991f3a513704ffc6fd3fda9e08dc7d7fa44a1a1c106292c5713aca542774 +doccontainersize 152288 +doccontainerchecksum 6abcb46c4814b483ddd3b104a138082fc968cd0d17c208899a672fcc849e2bcb5e4c441ced16cd67d657ea3cc8cf8f0f93cc7365b0a18d34e72e4ee4c8fd6561 +docfiles size=297 + doc.html runfiles size=270 texmf-dist/scripts/texlive/var/texcatalogue.keywords -docfiles size=195 - doc.html name texlive-en category TLCore -revision 37206 +revision 50613 shortdesc TeX Live manual (English) relocated 1 -docfiles size=1119 +containersize 272 +containerchecksum a978dec07ba5b69fca4516b184426e29a6487bcaed6fcb9502f318c6f0d36853fac5aca6824718962bd151a05a64f6753339e13740c4e8a7b7acffe445023a11 +doccontainersize 1856376 +doccontainerchecksum 26a2b59b28884d7df22a64b553ddf55e7e139de95a685bdb94382dc386c5b9afa29d9cf2f8ecfaa6fe8d92374ed7319c8b75109859016e9a14d25dad17af8ac7 +docfiles size=1354 RELOC/doc/info/tlbuild.info + RELOC/doc/texlive/texlive-en/.dict.pws RELOC/doc/texlive/texlive-en/Makefile RELOC/doc/texlive/texlive-en/README RELOC/doc/texlive/texlive-en/archive/bv-live.tex @@ -160643,6 +273018,10 @@ docfiles size=1119 RELOC/doc/texlive/texlive-en/archive/live-2012.tex RELOC/doc/texlive/texlive-en/archive/live-2013.tex RELOC/doc/texlive/texlive-en/archive/live-2014.tex + RELOC/doc/texlive/texlive-en/archive/live-2015.tex + RELOC/doc/texlive/texlive-en/archive/live-2016.tex + RELOC/doc/texlive/texlive-en/archive/live-2017.tex + RELOC/doc/texlive/texlive-en/archive/live-2018.tex RELOC/doc/texlive/texlive-en/archive/live-tl7.tex RELOC/doc/texlive/texlive-en/archive/live4ht.cfg-2004 RELOC/doc/texlive/texlive-en/archive/mod.pl @@ -160651,124 +273030,83 @@ docfiles size=1119 RELOC/doc/texlive/texlive-en/archive/split.pl RELOC/doc/texlive/texlive-en/archive/status.pl RELOC/doc/texlive/texlive-en/archive/tex-live.bib - RELOC/doc/texlive/texlive-en/archive/tex-live.bst - RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2003 - RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2004 - RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2005 - RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2007 - RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2008 - RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2009 - RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2010 - RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2014 - RELOC/doc/texlive/texlive-en/archive/texlive.pl - RELOC/doc/texlive/texlive-en/live4ht.cfg - RELOC/doc/texlive/texlive-en/tex-live.css - RELOC/doc/texlive/texlive-en/tex-live.sty - RELOC/doc/texlive/texlive-en/texlive-en.css - RELOC/doc/texlive/texlive-en/texlive-en.html - RELOC/doc/texlive/texlive-en/texlive-en.pdf - RELOC/doc/texlive/texlive-en/texlive-en.tex - RELOC/doc/texlive/tlbuild/tlbuild.html - RELOC/doc/texlive/tlbuild/tlbuild.pdf - -name texlive-fr -category TLCore -revision 37426 -shortdesc TeX Live manual (French) -relocated 1 -docfiles size=417 - RELOC/doc/texlive/texlive-fr/Makefile - RELOC/doc/texlive/texlive-fr/live4ht.cfg - RELOC/doc/texlive/texlive-fr/notes - RELOC/doc/texlive/texlive-fr/tex-live.css - RELOC/doc/texlive/texlive-fr/texlive-fr.css - RELOC/doc/texlive/texlive-fr/texlive-fr.html - RELOC/doc/texlive/texlive-fr/texlive-fr.pdf - RELOC/doc/texlive/texlive-fr/texlive-fr.tex - -name texlive.infra -category TLCore -revision 37738 -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 -runfiles size=264 - LICENSE.CTAN - LICENSE.TL - README - README.usergroups - index.html - readme-html.dir/readme.cs.html - readme-html.dir/readme.de.html - readme-html.dir/readme.en.html - readme-html.dir/readme.fr.html - readme-html.dir/readme.it.html - readme-html.dir/readme.ja.html - readme-html.dir/readme.pl.html - readme-html.dir/readme.pt-br.html - readme-html.dir/readme.ru.html - readme-html.dir/readme.sr.html - readme-html.dir/readme.zh-cn.html - readme-txt.dir/README.CS - readme-txt.dir/README.DE - readme-txt.dir/README.EN - readme-txt.dir/README.FR - readme-txt.dir/README.IT - readme-txt.dir/README.JA - readme-txt.dir/README.PL - readme-txt.dir/README.PT-BR - readme-txt.dir/README.RU - readme-txt.dir/README.RU-cp1251 - readme-txt.dir/README.RU-koi8 - readme-txt.dir/README.SK-ascii - readme-txt.dir/README.SK-cp1250 - readme-txt.dir/README.SK-il2 - readme-txt.dir/README.SR - readme-txt.dir/README.ZH-CN - 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/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/installer/config.guess -docfiles size=46 - texmf-dist/doc/man/man1/tlmgr.1 - texmf-dist/doc/man/man1/tlmgr.man1.pdf - texmf-dist/scripts/texlive/NEWS - tlpkg/README - tlpkg/installer/COPYING.MinGW-runtime.txt + RELOC/doc/texlive/texlive-en/archive/tex-live.bst + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2003 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2004 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2005 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2007 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2008 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2009 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2010 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2014 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2015 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2016 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2017 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2018 + RELOC/doc/texlive/texlive-en/archive/texlive.pl + RELOC/doc/texlive/texlive-en/live4ht.cfg + RELOC/doc/texlive/texlive-en/tex-live.css + RELOC/doc/texlive/texlive-en/tex-live.sty + RELOC/doc/texlive/texlive-en/texlive-en.css + RELOC/doc/texlive/texlive-en/texlive-en.html + RELOC/doc/texlive/texlive-en/texlive-en.pdf + RELOC/doc/texlive/texlive-en/texlive-en.tex + RELOC/doc/texlive/tlbuild/tlbuild.html + RELOC/doc/texlive/tlbuild/tlbuild.pdf -name texlive.infra.i386-linux +name texlive-es category TLCore -revision 36790 -shortdesc i386-linux files of texlive.infra -binfiles arch=i386-linux size=87 - bin/i386-linux/tlmgr - tlpkg/installer/xz/xz.i386-linux - tlpkg/installer/xz/xzdec.i386-linux +revision 50671 +shortdesc TeX Live manual (Spanish) +relocated 1 +containersize 276 +containerchecksum ecd29f0b62735145f57e48c74c07f1b7188a3e4aea26d82dad7e136e2276e2697381bae0afacd7b2083d796c213e72141893fc186b84e9b6caf4ed19513d9a29 +doccontainersize 2279380 +doccontainerchecksum 32c4b3fad90a989e2b94f4fe63b8869721c36aa90df3a815177dbae38c8fc90bc420f197810266ee1350e2580428b8444ef73c5436041eab8bb46704bccc4fba +docfiles size=1046 + RELOC/doc/texlive/texlive-es/Makefile + RELOC/doc/texlive/texlive-es/archive/2017/texlive-es.html + RELOC/doc/texlive/texlive-es/archive/2017/texlive-es.pdf + RELOC/doc/texlive/texlive-es/archive/2017/texlive-es.tex + RELOC/doc/texlive/texlive-es/archive/2018/texlive-es.css + RELOC/doc/texlive/texlive-es/archive/2018/texlive-es.html + RELOC/doc/texlive/texlive-es/archive/2018/texlive-es.pdf + RELOC/doc/texlive/texlive-es/archive/2018/texlive-es.tex + RELOC/doc/texlive/texlive-es/tex-live.css + RELOC/doc/texlive/texlive-es/texlive-es.css + RELOC/doc/texlive/texlive-es/texlive-es.html + RELOC/doc/texlive/texlive-es/texlive-es.pdf + RELOC/doc/texlive/texlive-es/texlive-es.tex + +name texlive-fr +category TLCore +revision 50567 +shortdesc TeX Live manual (French) +relocated 1 +containersize 276 +containerchecksum fa1830c0a7337f5629eff5f380f877307304f1986a3d9f63c43b0ef88960354c2737278e0e123523eb0d2c2957ec41ace896cefd096f4b2982b7086daf7f3ebb +doccontainersize 1268060 +doccontainerchecksum bee228b706954bcdc1ea424d0227890bda2115abf47b73687a0f486b7daf68476bfd7a649f457b22b62e55936b1a113a685451095d1f23268e0d094dec902b7a +docfiles size=451 + RELOC/doc/texlive/texlive-fr/Makefile + RELOC/doc/texlive/texlive-fr/live4ht.cfg + RELOC/doc/texlive/texlive-fr/notes + RELOC/doc/texlive/texlive-fr/tex-live.css + RELOC/doc/texlive/texlive-fr/texlive-fr.css + RELOC/doc/texlive/texlive-fr/texlive-fr.html + RELOC/doc/texlive/texlive-fr/texlive-fr.pdf + RELOC/doc/texlive/texlive-fr/texlive-fr.tex name texlive-it category TLCore -revision 37462 +revision 50750 shortdesc TeX Live manual (Italian) relocated 1 -docfiles size=374 +containersize 276 +containerchecksum be04ef3a7fabeeb9d6a05210e5939d61e0a364cbe97e461476db186c71ecfa2754af159ced3fad5fddff081e6bf5541bf60ed053cb8cb0e2de8813944e775009 +doccontainersize 1146116 +doccontainerchecksum a3381b82bfa78453c6014849e8ea8dc2ee881088450824e62bc056f0303227fb7eb5276f594436c6ac113292ee52672dd3e7b9e6007bdc22dc331b63330fca81 +docfiles size=405 RELOC/doc/texlive/texlive-it/Makefile RELOC/doc/texlive/texlive-it/texlive-it.html RELOC/doc/texlive/texlive-it/texlive-it.pdf @@ -160776,13 +273114,16 @@ docfiles size=374 name texlive-msg-translations category TLCore -revision 37957 +revision 51098 shortdesc translations of the TeX Live installer and TeX Live Manager longdesc This package contains the translated messages of the TeX Live longdesc installer and TeX Live Manager. For information on creating or longdesc updating translations, see longdesc http://tug.org/texlive/doc.html#install-tl-xlate. -runfiles size=292 +containersize 139088 +containerchecksum 270326a1dc3973645847b38dd37dae7044f6cc903991b0d724a074cc4203548a1c44c6aa08af000308d001bd474b849e4ed6890400072acd4f2cc0c79130e53c +runfiles size=380 + tlpkg/translations/README tlpkg/translations/cs.po tlpkg/translations/de.po tlpkg/translations/es.po @@ -160803,40 +273144,16 @@ runfiles size=292 tlpkg/translations/zh_CN.po tlpkg/translations/zh_TW.po -name texliveonfly -category Package -revision 26313 -shortdesc On-the-fly download of missing TeX live packages. -longdesc The package provides a script that performs 'on the fly' -longdesc downloads of missing packages, while a document is being -longdesc compiled. (This feature is already available in the MikTeX -longdesc distribution for Windows machines.) To use the script, replace -longdesc your (LaTeX) compilation command with texliveonfly.py file.tex -longdesc (default options are --engine=lualatex and --arguments="- -longdesc synctex=1 -interaction=nonstopmode", which may all be changed). -longdesc The script is designed to work on Linux distributions. -depend texliveonfly.ARCH -runfiles size=5 - texmf-dist/scripts/texliveonfly/texliveonfly.py -docfiles size=1 - texmf-dist/doc/support/texliveonfly/README -catalogue-ctan /support/texliveonfly -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license gpl3 - -name texliveonfly.i386-linux -category Package -revision 24062 -shortdesc i386-linux files of texliveonfly -binfiles arch=i386-linux size=1 - bin/i386-linux/texliveonfly - name texlive-pl category TLCore -revision 37455 +revision 50665 shortdesc TeX Live manual (Polish) relocated 1 -docfiles size=405 +containersize 276 +containerchecksum 57dc3f82b08ddb2a9f6e168ba7cee0870e558d796bd6acb8669207cc14aa327a531f6731d312fabd1761444f9d49da4f2b8a1424c603735468e76ae868813208 +doccontainersize 1212516 +doccontainerchecksum 1e00df1860220e5627a913f2504e125165ec2743f5b461497e77636e46b069ba2e790de2c01317f7698212d2862e0aaf5cdbed40eaca40618d97e56436b93adc +docfiles size=436 RELOC/doc/texlive/texlive-pl/Makefile RELOC/doc/texlive/texlive-pl/live4ht.cfg RELOC/doc/texlive/texlive-pl/tex-live.css @@ -160847,10 +273164,14 @@ docfiles size=405 name texlive-ru category TLCore -revision 37222 +revision 50683 shortdesc TeX Live manual (Russian) relocated 1 -docfiles size=419 +containersize 276 +containerchecksum 53b6b2cdfc0357f7614cdb9ac5f4f26dd51288acf093e3bf644b0b259c61b9765775bd90956b645e2a915cd64b4d4470679e3725dc8f1dd044f2280e04677c5d +doccontainersize 999852 +doccontainerchecksum b5d982cfe9cbb9022b0d35cf583a90148c0add4f898dc86f732f305cd9adf704902851366722d2624f0ceac66d00aab177663160d5ef624331f83d6a717c3505 +docfiles size=503 RELOC/doc/texlive/texlive-ru/Makefile RELOC/doc/texlive/texlive-ru/live4ht.cfg RELOC/doc/texlive/texlive-ru/tex-live.css @@ -160861,14 +273182,21 @@ docfiles size=419 name texlive-scripts category TLCore -revision 38366 +revision 51185 shortdesc TeX Live infrastructure programs longdesc Includes install-tl, tl-portable, rungs, etc.; not needed for longdesc tlmgr to run but still ours. Not included in tlcritical. depend texlive.infra depend texlive-scripts.ARCH postaction shortcut type=menu name="TeX Live command-line" cmd=TEXDIR/tlpkg/installer/tl-cmd.bat -runfiles size=66 +containersize 83808 +containerchecksum 5b213cbe064521c52c6417ab5dc7808dbf4f6a67d20808f730ce34e575389dff57e8ba17c6bd52d45dbb730d03b9935958952be753c4606d2176870e1e3284b0 +doccontainersize 51228 +doccontainerchecksum d74f7ed8382145779090bd0a6091c284725a0c902c20432113eea47e29e81aeaa87df6157664c75d25fa18afd61280be147b770bd7e296536e28d9efe5a9bdcd +docfiles size=20 + texmf-dist/doc/man/man1/install-tl.1 + texmf-dist/doc/man/man1/install-tl.man1.pdf +runfiles size=87 install-tl texmf-dist/scripts/texlive/lua/texlive/getopt.tlu texmf-dist/scripts/texlive/lua/texlive/tlpdb.tlu @@ -160877,36 +273205,195 @@ runfiles size=66 texmf-dist/scripts/texlive/test-tlpdb.tlu texmf-dist/scripts/texlive/texconf.tlu tlpkg/installer/ctan-mirrors.pl + tlpkg/installer/install-menu-extl.pl tlpkg/installer/install-menu-perltk.pl tlpkg/installer/install-menu-text.pl tlpkg/installer/install-menu-wizard.pl + tlpkg/installer/install-tl-gui.tcl tlpkg/installer/texlive.png -docfiles size=10 - texmf-dist/doc/man/man1/install-tl.1 - texmf-dist/doc/man/man1/install-tl.man1.pdf + +name texlive-scripts.aarch64-linux +category TLCore +revision 46208 +shortdesc aarch64-linux files of texlive-scripts +containersize 368 +containerchecksum ac1b815f297210235a91f357cd54dd50894a2f5c46ee1c4a929250e7a7da1afb3daf3b37343cba82b4cd0373e8c38d3e11db35a51fe8c60285ddf42849e5e333 +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/man + bin/aarch64-linux/rungs + +name texlive-scripts.amd64-freebsd +category TLCore +revision 29785 +shortdesc amd64-freebsd files of texlive-scripts +containersize 372 +containerchecksum c4c0b1c2bda081b1aed4bba57e235243d66ea1d4bb6808adfaa2e836e6500b2d590f7837261b608b45aba5c3fbf55a66873c67c4d402cd83858ddcc85f7f3cf8 +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/man + bin/amd64-freebsd/rungs + +name texlive-scripts.amd64-netbsd +category TLCore +revision 30191 +shortdesc amd64-netbsd files of texlive-scripts +containersize 372 +containerchecksum 81e23230359dc07ea82f45fa4106c962a0dc4c44cd134d271148b9463f50a946c382ed0b7e3e81afc854e973c62a2c05dba69c4a1c2158c5f330100a9dd970ce +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/man + bin/amd64-netbsd/rungs + +name texlive-scripts.armhf-linux +category TLCore +revision 30015 +shortdesc armhf-linux files of texlive-scripts +containersize 372 +containerchecksum 6b3b0493441a978e109c45eafec2e26e6c4dc29b5b2e29e5f91caf7a45e59e403ce97b6da950307f7536f7a42c4413bd20e0152baf0506822e30305d409acf00 +binfiles arch=armhf-linux size=2 + bin/armhf-linux/man + bin/armhf-linux/rungs + +name texlive-scripts.i386-cygwin +category TLCore +revision 29836 +shortdesc i386-cygwin files of texlive-scripts +containersize 372 +containerchecksum 612fbbd31a711219e98be299837675676ea2e1ef30b32d3a8f567672d184ead6f5b17e2f33e5fae31fae2878ba7247240e33e8e4281a9b3fbfdde4c709bc2619 +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/man + bin/i386-cygwin/rungs + +name texlive-scripts.i386-freebsd +category TLCore +revision 29785 +shortdesc i386-freebsd files of texlive-scripts +containersize 372 +containerchecksum 4bdd45297f97b5745e909b655e7e36e50dc418dc0bf8662f56c9d6b19742460f2bb228d4fdd65a8d9aa8a7f62f2867c45bc6f876d73272e81e1288f19903dd41 +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/man + bin/i386-freebsd/rungs name texlive-scripts.i386-linux category TLCore revision 29741 shortdesc i386-linux files of texlive-scripts +containersize 372 +containerchecksum b2122765fa2c236c816df59b2b056448dca872b3e9c62cda8f604eb787e21abca100eaf8da8d5b56dde9435576e7a155a364474d8ce2e8895682206942c3b749 binfiles arch=i386-linux size=2 + bin/i386-linux/man bin/i386-linux/rungs +name texlive-scripts.i386-netbsd +category TLCore +revision 30191 +shortdesc i386-netbsd files of texlive-scripts +containersize 372 +containerchecksum b95fcb3cf1d53383f913a870c29a333e98f8382b01a38453c3aedfa9864892ce41bdaa146955607f379588dca32fd8e8a690a824066550597da1586bc128b517 +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/man + bin/i386-netbsd/rungs + +name texlive-scripts.i386-solaris +category TLCore +revision 29806 +shortdesc i386-solaris files of texlive-scripts +containersize 372 +containerchecksum 62f1dc4556f5c371f9a71039fc329c44e90a55e40db504dcf57006d2acb0b892d43706e91ba00565c5b6a70ef72af5907a4cf7d65e02f3e41dafa5256ffd3379 +binfiles arch=i386-solaris size=2 + bin/i386-solaris/man + bin/i386-solaris/rungs + +name texlive-scripts.win32 +category TLCore +revision 51057 +shortdesc win32 files of texlive-scripts +containersize 11616 +containerchecksum bbb4932a0f63b7bb964d63ae1d1f907d519e40b44886d6b4950d0147c47e3acbfda05109bfbbe8a76f309cf5c067d0ee04537a42cf034acf3d35f1019efb03a6 +binfiles arch=win32 size=11 + bin/win32/rungs.exe + install-tl-windows.bat + tl-tray-menu.exe + tlpkg/installer/tl-cmd.bat + tlpkg/installer/tl-tray-menu.ini + +name texlive-scripts.x86_64-cygwin +category TLCore +revision 33557 +shortdesc x86_64-cygwin files of texlive-scripts +containersize 372 +containerchecksum 20213fac179beeace7a42bad29d77f750bb2d45c1508fc515b40c504576dc30ce6e71901d97c0057ef69fe999ce04d343b3296383336d7d15617b500e57bd9df +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/man + bin/x86_64-cygwin/rungs + +name texlive-scripts.x86_64-darwin +category TLCore +revision 29809 +shortdesc x86_64-darwin files of texlive-scripts +containersize 372 +containerchecksum 5b39a01726671fd9ef922c2aaea5c4c05d0ab2357463f9b76d18b525ef9c47efe9338bfa135ed9137b4c32577ce0f5bce38448fb3a4defecd72067ba8e3f592c +binfiles arch=x86_64-darwin size=2 + bin/x86_64-darwin/man + bin/x86_64-darwin/rungs + +name texlive-scripts.x86_64-darwinlegacy +category TLCore +revision 43871 +shortdesc x86_64-darwinlegacy files of texlive-scripts +containersize 376 +containerchecksum 7bc3b050d73c16713095aa67d6fdb779dec3d02d2c44bce3c2d6845c0e0087bcc583fa38a68442eaa20d7f90cd1406c9030647981daafc6141bd4b9fbddfa4ae +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/man + bin/x86_64-darwinlegacy/rungs + +name texlive-scripts.x86_64-linux +category TLCore +revision 29820 +shortdesc x86_64-linux files of texlive-scripts +containersize 368 +containerchecksum 6684a36e446fef1e412e8309dacd2bd2173b8971f8551dbafbeb96c97edbea7db529c50c17889de6c682a6008c4d8839cce66fc488de52a396bd7949784850e1 +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/man + bin/x86_64-linux/rungs + +name texlive-scripts.x86_64-linuxmusl +category TLCore +revision 46840 +shortdesc x86_64-linuxmusl files of texlive-scripts +containersize 372 +containerchecksum e52fab302dfc71f285fef4c0a7ddc740b38c3407d3fe3de77950c9f5658ef9e408fcc6a2bf83859e91679c329cf9ff10e28a3799a46c9b0ab318b2b8d0f3b171 +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/man + bin/x86_64-linuxmusl/rungs + +name texlive-scripts.x86_64-solaris +category TLCore +revision 29807 +shortdesc x86_64-solaris files of texlive-scripts +containersize 372 +containerchecksum ccaafd2e72d74a0e101b3539349d07aaa94f0dd716ae9f7732ed047c6ab13bbad55c4a99d9b785fde33272b4c92b275eb28eca5b3bb4e6f7f75356f0595b4cd6 +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/man + bin/x86_64-solaris/rungs + name texlive-sr category TLCore -revision 37233 +revision 47370 shortdesc TeX Live manual (Serbian) relocated 1 -docfiles size=413 +containersize 276 +containerchecksum 65cbac03143ec8b2881ba02b2827867848ba7b034745e2c3e5e793cb5a950c897d2903c1865cd42fbbfa65cea79cfa4b819be781027691be1467375598a6388d +doccontainersize 1168828 +doccontainerchecksum fdff59485fde0a134c78c506969b8c29bf82d30b3d2fa9b8137ee7efed7786e8aec9c79f5a1e000ce04ebd5bbe805885f8952234427a411021b9ef3988b11234 +docfiles size=469 RELOC/doc/texlive/texlive-sr/Makefile RELOC/doc/texlive/texlive-sr/README-SR.txt - RELOC/doc/texlive/texlive-sr/images/tl2015-install-tl-collections-freebsd-sr.png - RELOC/doc/texlive/texlive-sr/images/tl2015-install-tl-expert-gui-freebsd-sr.png - RELOC/doc/texlive/texlive-sr/images/tl2015-install-tl-first.stage-win32-sr.png - RELOC/doc/texlive/texlive-sr/images/tl2015-install-tl-wizard-win32-sr.png - RELOC/doc/texlive/texlive-sr/images/tl2015-tlmgr-main-screen-freebsd-sr.png - RELOC/doc/texlive/texlive-sr/images/tl2015-tlmgr-options-freebsd-sr.png - RELOC/doc/texlive/texlive-sr/images/tl2015-tlmgr-paper-options-freebsd-sr.png + RELOC/doc/texlive/texlive-sr/images/tl2018-install-tl-collections-freebsd-sr.png + RELOC/doc/texlive/texlive-sr/images/tl2018-install-tl-expert-gui-freebsd-sr.png + RELOC/doc/texlive/texlive-sr/images/tl2018-install-tl-first.stage-win32-sr.png + RELOC/doc/texlive/texlive-sr/images/tl2018-install-tl-wizard-win32-sr.png + RELOC/doc/texlive/texlive-sr/images/tl2018-tlmgr-main-screen-freebsd-sr.png + RELOC/doc/texlive/texlive-sr/images/tl2018-tlmgr-options-freebsd-sr.png + RELOC/doc/texlive/texlive-sr/images/tl2018-tlmgr-paper-options-freebsd-sr.png RELOC/doc/texlive/texlive-sr/texlive-sr.css RELOC/doc/texlive/texlive-sr/texlive-sr.html RELOC/doc/texlive/texlive-sr/texlive-sr.pdf @@ -160915,43 +273402,627 @@ docfiles size=413 name texlive-zh-cn category TLCore -revision 37314 +revision 50478 shortdesc TeX Live manual (Chinese) relocated 1 -docfiles size=243 +containersize 276 +containerchecksum 86d70c96c3fd13095d664a9f719613dfcc6295803f9058341fd915d6cac240ca11d64e939395dcfc0ff84eff1bcdc2425971ee0c90f7fc45cc86be737e30b772 +doccontainersize 1056332 +doccontainerchecksum 9567c16b972e2bae6f02356203cf68cf4390434e3da4f8a1cdfe8b902483fa33289c761bb00de345ff038e98054fef5994a980daaf0bb75aabf62be2bc1bdf75 +docfiles size=292 RELOC/doc/texlive/texlive-zh-cn/Makefile RELOC/doc/texlive/texlive-zh-cn/README-live.ZH-CN RELOC/doc/texlive/texlive-zh-cn/tex-live-zh-cn.sty RELOC/doc/texlive/texlive-zh-cn/texlive-zh-cn.pdf RELOC/doc/texlive/texlive-zh-cn/texlive-zh-cn.tex +name texlive.infra +category TLCore +revision 50861 +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 also end up in the +longdesc tlcritical recovery scripts. The standalone installer is +longdesc close, but not the same; it's defined in 00texlive.installer. +depend texlive.infra.ARCH +containersize 220796 +containerchecksum 4550aca83dffc9acd90a538671a13f82acfe3270b6f42ab3e3485ce67b45da539521ef075d3212f1dd8a637f2fef597388edb87a2cb1c57c763369b3acae6cba +doccontainersize 178504 +doccontainerchecksum 48145aac20d15c3a830058d513d852e06aec6324d04e185f4f1820fdc26d8caf733481ad973c3393026f061f33bed92c3ebc67108886bf0bec417210b4c26104 +docfiles size=118 + README + README.usergroups + index.html + readme-html.dir/readme.cs.html + readme-html.dir/readme.de.html + readme-html.dir/readme.en.html + readme-html.dir/readme.es.html + readme-html.dir/readme.fr.html + readme-html.dir/readme.it.html + readme-html.dir/readme.ja.html + readme-html.dir/readme.pl.html + readme-html.dir/readme.pt-br.html + readme-html.dir/readme.ru.html + readme-html.dir/readme.sr.html + readme-html.dir/readme.vi.html + readme-html.dir/readme.zh-cn.html + readme-txt.dir/README.CS + readme-txt.dir/README.DE + readme-txt.dir/README.EN + readme-txt.dir/README.ES + readme-txt.dir/README.FR + readme-txt.dir/README.IT + readme-txt.dir/README.JA + readme-txt.dir/README.PL + readme-txt.dir/README.PT-BR + readme-txt.dir/README.RU + readme-txt.dir/README.SK-ascii + readme-txt.dir/README.SR + readme-txt.dir/README.VI + readme-txt.dir/README.ZH-CN + texmf-dist/doc/man/man1/tlmgr.1 + texmf-dist/doc/man/man1/tlmgr.man1.pdf + texmf-dist/scripts/texlive/NEWS + tlpkg/README + tlpkg/installer/COPYING.MinGW-runtime.txt +runfiles size=256 + 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/scripts/texlive/uninstq.vbs + texmf-dist/web2c/fmtutil-hdr.cnf + texmf-dist/web2c/updmap-hdr.cfg + tlpkg/TeXLive/TLConfFile.pm + tlpkg/TeXLive/TLConfig.pm + tlpkg/TeXLive/TLCrypto.pm + tlpkg/TeXLive/TLDownload.pm + tlpkg/TeXLive/TLPDB.pm + tlpkg/TeXLive/TLPOBJ.pm + tlpkg/TeXLive/TLPSRC.pm + tlpkg/TeXLive/TLPaper.pm + tlpkg/TeXLive/TLTREE.pm + tlpkg/TeXLive/TLUtils.pm + tlpkg/TeXLive/TLWinGoo.pm + tlpkg/TeXLive/TeXCatalogue.pm + tlpkg/TeXLive/trans.pl + tlpkg/gpg/pubring.gpg + tlpkg/gpg/random_seed + tlpkg/gpg/secring.gpg + tlpkg/gpg/tl-key-extension.txt + tlpkg/gpg/trustdb.gpg + tlpkg/installer/config.guess + tlpkg/tltcl/gui_err.tcl + tlpkg/tltcl/tlmgr.gif + tlpkg/tltcl/tltcl.tcl + +name texlive.infra.aarch64-linux +category TLCore +revision 50287 +shortdesc aarch64-linux files of texlive.infra +containersize 74948 +containerchecksum 1e73b00e0d23745692b3729bece2a0505e27693ad7d22f29024c78b1273bece8d0914ecc2d875d442a1e5f747e7934147764a52fda97739af94c281d25223b12 +binfiles arch=aarch64-linux size=42 + bin/aarch64-linux/tlmgr + tlpkg/installer/xz/xz.aarch64-linux + +name texlive.infra.amd64-freebsd +category TLCore +revision 47820 +shortdesc amd64-freebsd files of texlive.infra +containersize 244612 +containerchecksum c92cfe767219818deb0bd3f26c11f68f3d7769b3761c7c3bdaca2ec8e36d5c7292e0ab15950f336d9a53789e7602f7df4a2a52f632faf637053b7e79a72416df +binfiles arch=amd64-freebsd size=203 + bin/amd64-freebsd/tlmgr + tlpkg/installer/wget/wget.amd64-freebsd + tlpkg/installer/xz/xz.amd64-freebsd + +name texlive.infra.amd64-netbsd +category TLCore +revision 47820 +shortdesc amd64-netbsd files of texlive.infra +containersize 251028 +containerchecksum 38e6f3b1691450ded65a1abe6675bd749d74589c6b9de6a32336cd6f6a6fd2477253dbe4ddca2b7d883d767b35cdf4d49b53a511935385bb618f93d89ed4a2d0 +binfiles arch=amd64-netbsd size=196 + bin/amd64-netbsd/tlmgr + tlpkg/installer/wget/wget.amd64-netbsd + tlpkg/installer/xz/xz.amd64-netbsd + +name texlive.infra.armhf-linux +category TLCore +revision 50203 +shortdesc armhf-linux files of texlive.infra +containersize 142144 +containerchecksum 9e5f1a9839f787c5da8601173d2a4f5bd10ef28e709e55915316eda605f05f8777868054f2555709abe2aeaef053331c57a6b36ece3860fbce370b9577229505 +binfiles arch=armhf-linux size=87 + bin/armhf-linux/tlmgr + tlpkg/installer/lz4/lz4.armhf-linux + tlpkg/installer/xz/xz.armhf-linux + +name texlive.infra.i386-cygwin +category TLCore +revision 50204 +shortdesc i386-cygwin files of texlive.infra +containersize 166748 +containerchecksum e3ea655053209ac65b0d9a79b0f5477929ae7f5c570dd489e0500d7c3e37deddc67eba7e38ab5822a7c3dad722842aed79888cf09a38a1d05555c851916beb3f +binfiles arch=i386-cygwin size=102 + bin/i386-cygwin/tlmgr + tlpkg/installer/lz4/lz4.i386-cygwin.exe + tlpkg/installer/xz/xz.i386-cygwin.exe + +name texlive.infra.i386-freebsd +category TLCore +revision 47820 +shortdesc i386-freebsd files of texlive.infra +containersize 230216 +containerchecksum 9585fba1255f840620b79845cf4d354482525df881d254abe83aa7b3cea7cc1d587950d70f0529b0c93cf5d778936fdfe8063d6e8bc0fc72e07a6133f7d5b43d +binfiles arch=i386-freebsd size=179 + bin/i386-freebsd/tlmgr + tlpkg/installer/wget/wget.i386-freebsd + tlpkg/installer/xz/xz.i386-freebsd + +name texlive.infra.i386-linux +category TLCore +revision 50346 +shortdesc i386-linux files of texlive.infra +containersize 150236 +containerchecksum aebf38fbb372c6a8a9ffeb04cf59615e34e5a2343ab245bb42486d51d5aef3d39b68234c6650469c24a14445792f6a37e626c0b327f081b981022db8e155ac66 +binfiles arch=i386-linux size=89 + bin/i386-linux/tlmgr + tlpkg/installer/lz4/lz4.i386-linux + tlpkg/installer/xz/xz.i386-linux + +name texlive.infra.i386-netbsd +category TLCore +revision 47820 +shortdesc i386-netbsd files of texlive.infra +containersize 246804 +containerchecksum 1b39f4cfd544afc9ddd87bed4928a26999c5a73ca89c8e396c505197a85ac9f60c8d8d8cac9289749aa2e215a1f16b4f8beefa7c973560e69d6f2e1272b0610a +binfiles arch=i386-netbsd size=184 + bin/i386-netbsd/tlmgr + tlpkg/installer/wget/wget.i386-netbsd + tlpkg/installer/xz/xz.i386-netbsd + +name texlive.infra.i386-solaris +category TLCore +revision 50196 +shortdesc i386-solaris files of texlive.infra +containersize 158696 +containerchecksum 6052ca81a6f36b033cd3712f9fa8b8f7b6fdd9a96e4e5fa1d6230f1e64a6f51b611c77fd26ab5c4d2f3f0f802c1eadfc12e2a0a6d8d13265d47be7641d6a33bb +binfiles arch=i386-solaris size=90 + bin/i386-solaris/tlmgr + tlpkg/installer/lz4/lz4.i386-solaris + tlpkg/installer/xz/xz.i386-solaris + +name texlive.infra.win32 +category TLCore +revision 50798 +shortdesc win32 files of texlive.infra +containersize 5330800 +containerchecksum 3d10d8e370a91695058c3cbb6cd56e1849edb3a4923436fab2bb0c0f901bc01f8176c7636a37599d6fd15c6cf55cda84ded908f86c7c675416f8ec6f5d347b93 +binfiles arch=win32 size=2412 + bin/win32/runscript.dll + bin/win32/runscript.exe + bin/win32/runscript.tlu + bin/win32/tlmgr.bat + bin/win32/wrunscript.exe + tlpkg/installer/lz4/lz4.exe + tlpkg/installer/tar.exe + tlpkg/installer/wget/wget.exe + tlpkg/installer/xz/xz.exe + tlpkg/tltcl/tclkit.exe + +name texlive.infra.x86_64-cygwin +category TLCore +revision 50204 +shortdesc x86_64-cygwin files of texlive.infra +containersize 180344 +containerchecksum a850ed3457a428d4318ea2b94e06bcd5b4fbafe995bc62b5d56f316905b9f3b8dcd38b6ff99e68aea2d7946a7c1e9e6a78b64b426378ab986e949b82975a0cba +binfiles arch=x86_64-cygwin size=117 + bin/x86_64-cygwin/tlmgr + tlpkg/installer/lz4/lz4.x86_64-cygwin.exe + tlpkg/installer/xz/xz.x86_64-cygwin.exe + +name texlive.infra.x86_64-darwin +category TLCore +revision 50203 +shortdesc x86_64-darwin files of texlive.infra +containersize 349592 +containerchecksum 04751cb25747214973adaf6e130d1680b5e1b117bed5fcaf29d2c5cb207532dfe5695b11e8b5857999b48dcc1bce7bd7cfbdf40c58661e981e40698e4910d593 +binfiles arch=x86_64-darwin size=249 + bin/x86_64-darwin/tlmgr + tlpkg/installer/lz4/lz4.x86_64-darwin + tlpkg/installer/wget/wget.x86_64-darwin + tlpkg/installer/xz/xz.x86_64-darwin + +name texlive.infra.x86_64-darwinlegacy +category TLCore +revision 50314 +shortdesc x86_64-darwinlegacy files of texlive.infra +containersize 256956 +containerchecksum fe8d9a4b910d02510109ba4e1e975b009c25e0958791344ad50de2e48c8115252416ec147b758783adcf33ec62280283c6de3feb485f2ab700986aae08eda3bb +binfiles arch=x86_64-darwinlegacy size=218 + bin/x86_64-darwinlegacy/tlmgr + tlpkg/installer/wget/wget.x86_64-darwinlegacy + tlpkg/installer/xz/xz.x86_64-darwinlegacy + +name texlive.infra.x86_64-linux +category TLCore +revision 50346 +shortdesc x86_64-linux files of texlive.infra +containersize 146200 +containerchecksum fc0392e2550e633531ff4569a6a0bba8bbc2ef0c445911e43309bb09b69b4c8157915afb2af908ddbb557ac371a675c82932c9b23fa96cab053dbb98fed93e07 +binfiles arch=x86_64-linux size=84 + bin/x86_64-linux/tlmgr + tlpkg/installer/lz4/lz4.x86_64-linux + tlpkg/installer/xz/xz.x86_64-linux + +name texlive.infra.x86_64-linuxmusl +category TLCore +revision 50203 +shortdesc x86_64-linuxmusl files of texlive.infra +containersize 536960 +containerchecksum 78b29c07c29dbe58765f4568f157c928eb9cd1664623306a939ff3f5343f7fb0041b0a7a8936f31c71e421ab4027f5ca17cf75921a72af8e4171fd05e8df48ec +binfiles arch=x86_64-linuxmusl size=473 + bin/x86_64-linuxmusl/tlmgr + tlpkg/installer/lz4/lz4.x86_64-linuxmusl + tlpkg/installer/wget/wget.x86_64-linuxmusl + tlpkg/installer/xz/xz.x86_64-linuxmusl + +name texlive.infra.x86_64-solaris +category TLCore +revision 50196 +shortdesc x86_64-solaris files of texlive.infra +containersize 165652 +containerchecksum 98f2bb4a7fb0e400cf7cae7f6121297d23f01b31f1590ec22da6fa314d85ce4dd52ca8d7712328120db584fd3a5ca4b394daa78b287b1dd7e661e9c224efdfb2 +binfiles arch=x86_64-solaris size=100 + bin/x86_64-solaris/tlmgr + tlpkg/installer/lz4/lz4.x86_64-solaris + tlpkg/installer/xz/xz.x86_64-solaris + +name texliveonfly +category Package +revision 26313 +shortdesc On-the-fly download of missing TeX live packages +longdesc The package provides a script that performs 'on the fly' +longdesc downloads of missing packages, while a document is being +longdesc compiled. (This feature is already available in the MikTeX +longdesc distribution for Windows machines.) To use the script, replace +longdesc your (LaTeX) compilation command with texliveonfly.py file.tex +longdesc (default options are --engine=pdflatex and +longdesc --arguments="-synctex=1 -interaction=nonstopmode", which may +longdesc all be changed). The script is designed to work on Linux +longdesc distributions. +depend texliveonfly.ARCH +containersize 6148 +containerchecksum e02a1214775f209c0698e62fb7f0ae91c9ad14024c076dd6a5ca73fad4c92ebbf9bbb0f281869cb0c073538c66edae2af23245f1bd0e1f939c80841269625af6 +doccontainersize 700 +doccontainerchecksum f89f82a59f726b226101275b1aeaec00b99ea1302ee5ff8c021e4696b4abad39d1a95b544a4bc45483440591e1266cfba4d5c3c3bbc769f193671a46aa7458b2 +docfiles size=1 + texmf-dist/doc/support/texliveonfly/README details="Readme" +runfiles size=5 + texmf-dist/scripts/texliveonfly/texliveonfly.py +catalogue-ctan /support/texliveonfly +catalogue-date 2018-11-12 17:15:52 +0100 +catalogue-license gpl3 +catalogue-topics distribution + +name texliveonfly.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of texliveonfly +containersize 344 +containerchecksum e87a171789bfd3ebfa26988e9c0b9d028a30b734c5d43c4bf4496531b156de0887f49e7eb110572ff67a7b7f03bc0dc5cb0939949df119bc69306422d2d14a41 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/texliveonfly + +name texliveonfly.amd64-freebsd +category Package +revision 24062 +shortdesc amd64-freebsd files of texliveonfly +containersize 344 +containerchecksum 00d989b9191adfd4387bc11e633eceae73759100e223a25738c9bfe7642b9c25f490ed11e929408b56950c3a35ee56e698d12ec493cd8a579ca7273b6cb428bb +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/texliveonfly + +name texliveonfly.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of texliveonfly +containersize 344 +containerchecksum 25867c8359faf04506cc6d9d4cf7b325bd9a5f1e52e27c3f62f9fafae2847a31f7f60f840a40eddd9e1da1f00742f07a3f12cd974e8bae2aca2dad3cd791244f +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/texliveonfly + +name texliveonfly.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of texliveonfly +containersize 344 +containerchecksum 1b22cc157eb393e8fa2af93cc3064a9fd687c44631c0838b5574236883c95bb8dec7f46f957d10b619ba69914e9b27123b1e5d50d4bba56878743f19c863faae +binfiles arch=armhf-linux size=1 + bin/armhf-linux/texliveonfly + +name texliveonfly.i386-cygwin +category Package +revision 24062 +shortdesc i386-cygwin files of texliveonfly +containersize 344 +containerchecksum 810b373b4956f56ccd989e04c287df150ea97159f53c8af06872e52f633b3cfb1f5fc7b6f05dfa78a5f97d9deb078278d733789912d817f05c8271227325d566 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/texliveonfly + +name texliveonfly.i386-freebsd +category Package +revision 24062 +shortdesc i386-freebsd files of texliveonfly +containersize 348 +containerchecksum 99d1eed7a6a29426bf95f9a8060e234c33b8fbef4caa6dd71232a7e750fe92fabc3310462c986ecf60056f43bc9f62fbcbe1478d27857bd72c39d6b46ce30d7d +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/texliveonfly + +name texliveonfly.i386-linux +category Package +revision 24062 +shortdesc i386-linux files of texliveonfly +containersize 344 +containerchecksum 085f4b8949556bd9d1dc99fa6267d75964e5c5f4718c6f6c2580670ffcb1d0c206e490bff0a1560b597528a310f1407f3a07b2cbce36bb361d886a7de48a0431 +binfiles arch=i386-linux size=1 + bin/i386-linux/texliveonfly + +name texliveonfly.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of texliveonfly +containersize 344 +containerchecksum 33fa4dfa0421aafee1fc02efedbd29b16cc22af8c79c5c6ddb69ac9de1bf4fffe8c6809cfae518a4755f8ffe8bfec185b9f4b5858c6844511fe1532eafa320d7 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/texliveonfly + +name texliveonfly.i386-solaris +category Package +revision 24062 +shortdesc i386-solaris files of texliveonfly +containersize 344 +containerchecksum 28fb5c4ecd4cd017fba408512de48f707508d86428334f9bfee9464dbf72757418cdf65eefeff7049f3afd6ab4b34768fd65bd4b45c398aaeb7a9b0a25a3c769 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/texliveonfly + +name texliveonfly.win32 +category Package +revision 24062 +shortdesc win32 files of texliveonfly +containersize 688 +containerchecksum 00a147553e234ef7aa13d5fdb14c603a94ed54e57cea63dbd1b12cae76cc2b0e1cfd7c011180b04bf76622a5a0293c077910f5ee1ba9246d35e96569a5f48af5 +binfiles arch=win32 size=1 + bin/win32/texliveonfly.exe + +name texliveonfly.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of texliveonfly +containersize 344 +containerchecksum f04cbd1a1cb4e03ec4d56efa2fd4b25bac5d2014b500439639af37fe87dfacf20b2ba29c53b9d33dcc224e6e659f1a100488c1422ff155c824322c9fe4b6522a +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/texliveonfly + +name texliveonfly.x86_64-darwin +category Package +revision 24062 +shortdesc x86_64-darwin files of texliveonfly +containersize 348 +containerchecksum 33acaf659132ed0bb119bac56bbfb7867c00a049ce329f7541b74d01b73abbc463437789ec5d6c9110868f456198067b8f6d85dfac5f80bc4b4d231b418043eb +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/texliveonfly + +name texliveonfly.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of texliveonfly +containersize 352 +containerchecksum cc718527b59ec71e11bc84cd3634767dde287f442c593ee51412ab1f54879f408e03a31dfa136c2f27bbfffbba24c063a7936f7e01f7130af62e27e9f2b0a6a3 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/texliveonfly + +name texliveonfly.x86_64-linux +category Package +revision 24062 +shortdesc x86_64-linux files of texliveonfly +containersize 344 +containerchecksum 408999116542cdeca540692510f27b151057c43b2def2367c62c9f211a2a85aebb7754bd1e299e804742d08cf94e0db4a2cc3dd70c739a2ea3b3e3e49b6aa189 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/texliveonfly + +name texliveonfly.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of texliveonfly +containersize 352 +containerchecksum 0d5c46ceee1ac671bd85fd1f99e3a497a937eafbe88865bccce3de7c8ddc3d11b0751709399ecbb75536bb93163588806d4938471a78c8d675249592b6c6633a +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/texliveonfly + +name texliveonfly.x86_64-solaris +category Package +revision 24062 +shortdesc x86_64-solaris files of texliveonfly +containersize 344 +containerchecksum d6ca18903e22738dd78ce319879df988a73802102f1c631c50c455f667c957fbf89d73f7b7faa6fe3c6b2c63bd3bf7c0716899dd9ecf4f269367a34eae3c92af +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/texliveonfly + name texloganalyser category Package revision 35584 -shortdesc Analyse TeX logs. +shortdesc Analyse TeX logs longdesc The perl script allows the user to extract (and display) longdesc elements of the log file depend texloganalyser.ARCH +containersize 3844 +containerchecksum cbc18031b9b9ecfb6088b82b99eb72ad70fce92e4b103230a06ffeda0a50871715405a0aad18a7495ba1b80f16913cbadc4b8d1a7d2ebaa77d5cbd00e1682c93 +doccontainersize 512 +doccontainerchecksum 1cccf82314d9afc841044aabbb5f06933f6bbdfcdb46c22909ce18c2736d40c532944405232633f61893f0f56de24233d520edd64d4cc89baeca5c01ffd0f9ea +docfiles size=1 + texmf-dist/doc/support/texloganalyser/README details="Readme" runfiles size=3 texmf-dist/scripts/texloganalyser/texloganalyser -docfiles size=1 - texmf-dist/doc/support/texloganalyser/README catalogue-ctan /support/texloganalyser -catalogue-date 2014-11-14 19:08:57 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license bsd +catalogue-topics log-manip catalogue-version 0.9 +name texloganalyser.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of texloganalyser +containersize 344 +containerchecksum 3b04ea85cf835b29e892c5d0aed9ce144963e02e5b6d0191fb87863f345b0e23eec29b6e929afbd62b7c14103fd38880eb2e5c8cc37be44055917ae0494c7ff1 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/texloganalyser + +name texloganalyser.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of texloganalyser +containersize 344 +containerchecksum 181dde004680b9d393f08c5f27e40f7a92de5079e07006702402abdc42085cb2651f3cfe68f79d5e81d68affbec7d5c19ee4781fb4f43abb06a86b35aedb5892 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/texloganalyser + +name texloganalyser.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of texloganalyser +containersize 344 +containerchecksum 3c4847332799e302dd7f9d05387a07f96f5837e8ef4ee1148033aa16d8d04a334ad90bbf00ffbd44a0ede230fd9d6dc1902a9757cd9846534532b6c7f1053aea +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/texloganalyser + +name texloganalyser.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of texloganalyser +containersize 344 +containerchecksum 47192f4c3387edd367e1b9cafc54d2b3046ad97fddbf09ca845f2cbfbd77b14c7d8f86ad9891a931f28c55b66308217d68efd24d26a9735d1cb8509c68bb1cf7 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/texloganalyser + +name texloganalyser.i386-cygwin +category Package +revision 13717 +shortdesc i386-cygwin files of texloganalyser +containersize 340 +containerchecksum ec0d3e98b1cc4848b741e53efeca460eea9e90bf9867e55769b2f86a02c02d0570bc4ac2f48e7c061f30d033710d89982c4baa2d4144ae0615bd2b0f17a9c01b +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/texloganalyser + +name texloganalyser.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of texloganalyser +containersize 344 +containerchecksum d1d72996ff1ee0ada7e376f321a90be994a895812a938643b9a90d21108803f164a5846cc92d7a3ac518234f7fceba08c1980d1a701fcc92f5f2bc5c881ecc7b +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/texloganalyser + name texloganalyser.i386-linux category Package revision 13663 shortdesc i386-linux files of texloganalyser +containersize 344 +containerchecksum 0aa932eff54bb1e842a153712e72614979aa6bd6e3f64a761ab1c261eecfcb2ecd06253728ee9ce21b599b61775d0a423408507ca9968056713f81f56163508b binfiles arch=i386-linux size=1 bin/i386-linux/texloganalyser +name texloganalyser.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of texloganalyser +containersize 344 +containerchecksum 690d67e853afde704296ff3edddab4217460985ec0f3431d2461bf3605cfe04ea97b06fc9937bf2e18f817b53ce8d076337515d1c8c5804321159a7b113aeb3a +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/texloganalyser + +name texloganalyser.i386-solaris +category Package +revision 13898 +shortdesc i386-solaris files of texloganalyser +containersize 344 +containerchecksum e8ff956240c948ddc5646370de7b4e61ee45f8bf6ce485d30e55fe6291400cda593ef7a292d60ebb17fa545824164703c7308d778b6b8d88311aebba142b33c4 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/texloganalyser + +name texloganalyser.win32 +category Package +revision 15404 +shortdesc win32 files of texloganalyser +containersize 692 +containerchecksum 293dcf9679eb09bf361463c4ce26e762f173b154df2d4692ad9e6a85deed9edd1f647ea9e011a2cc484c336df3b4bf68009a9db31a72a12a736b309c2f969dac +binfiles arch=win32 size=1 + bin/win32/texloganalyser.exe + +name texloganalyser.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of texloganalyser +containersize 344 +containerchecksum 14d240d7c6833ef1a5614db942659993f34192dc18f2724857960f64f0379fa8890e23207c3f5a8b1f40b4b173156d13acaf4cc4e950db4c9c33b4f12e5542d0 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/texloganalyser + +name texloganalyser.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of texloganalyser +containersize 344 +containerchecksum 7050d567e03b67ed4423ce505530f582cc1b375e6eb5d4b9c47d153985eea0e4bec8770ea65b1607615ee3dac70bdda48afbd085bac6cdf9a24077d3299f418f +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/texloganalyser + +name texloganalyser.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of texloganalyser +containersize 352 +containerchecksum a6b61978ec49e26c0e79fd6c2b8c0415711380e5492258b14ae59ab7c8478cf65442bfb9ebaa2a9f2f891de515082772538d5a8c3bb919631d23bfa1bde709a4 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/texloganalyser + +name texloganalyser.x86_64-linux +category Package +revision 13777 +shortdesc x86_64-linux files of texloganalyser +containersize 344 +containerchecksum f528315a820e989cc6f9824336f4dcc2ece6f1673e018dc7ba2a4b39d02aa7ffd0205c5d58df3b4c2c25dacafb09d2921772021db981866929f01e41c1112f63 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/texloganalyser + +name texloganalyser.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of texloganalyser +containersize 348 +containerchecksum 41b6af18b74500cbeb4e4c5cf1484482c567ae71077e58bd0e571a2dd4d1375bd2076412cb1df2e028986c7082ba686d82b5da91aa803a4fb9de2860f19908ab +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/texloganalyser + +name texloganalyser.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of texloganalyser +containersize 344 +containerchecksum a14d86a5267e04a76abd8f45f196ee727bcd1be12e83a02d8866a6482f33060e45e1f70437bd6b9316157940d0a7501ec079fa778e7b92379172163a8c3bd6a5 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/texloganalyser + name texlogos category Package revision 19083 -shortdesc Ready-to-use LaTeX logos. +shortdesc Ready-to-use LaTeX logos relocated 1 longdesc TeXlogos defines an assortment of frequently used logos not longdesc contained in base LaTeX itself. The Metafont, MetapostAMS, @@ -160961,17 +274032,21 @@ longdesc Yen, Won and Naira are defined so as not to need TS1-encoded longdesc fonts. Also defined are the C++ logo, with the '+' signs longdesc properly positioned, and the logo of the Vienna University longdesc Business Administration Center (BWZ). +containersize 1960 +containerchecksum d3b5f5ea0dd90e925bffc1ac0f790848d1c2abe50003e2591c8efb219b4a205d48e4420d2000b3de15b1ff9d4d0bd9e083ba1694d4ee34febd68f8db0df16ea2 runfiles size=2 RELOC/tex/latex/texlogos/texlogos.sty +catalogue-also hologo catalogue-ctan /macros/latex/contrib/texlogos/texlogos.sty -catalogue-date 2012-06-27 22:19:02 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics logo catalogue-version 1.3.1 name texmate category Package revision 15878 -shortdesc Comprehensive chess annotation in LaTeX. +shortdesc Comprehensive chess annotation in LaTeX relocated 1 longdesc TeXmate formats chess games from very simple ascii input. The longdesc clean "1. e4 e5; 2. Nf3 Nc6; 3. Bb5 a6" will produce the same @@ -160983,83 +274058,345 @@ longdesc customizable. The package includes a tool for the creation of longdesc diagrams. The package works in conjunction with skak to produce longdesc diagrams of the current position automatically. For chess longdesc fonts, the package uses the chessfss system. -runfiles size=7 - RELOC/tex/latex/texmate/texmate.sty +containersize 6000 +containerchecksum 52c35f096426385f229b7ddb66c8ec2a20539bbad6296f2bdd230c2da79edf5668fdde0fc7ebac7099a414b622b31309fa7f610564c8212602f71dca7193c597 +doccontainersize 233672 +doccontainerchecksum dc1ca347bfb0ba8c54403e643b4052604f98b39ced23d092808cb221e930384f49d1c34794a933b0a05c7691ef04158688653ce69eb8a4b72e9172b4254954ee docfiles size=82 RELOC/doc/latex/texmate/README - RELOC/doc/latex/texmate/texmate2manual.pdf + RELOC/doc/latex/texmate/texmate2manual.pdf details="Package documentation" RELOC/doc/latex/texmate/texmate2manual.tex +srccontainersize 6644 +srccontainerchecksum b75362c3b748021934052ef38b9f95ad7047804d5100b2a00bd8f9e396103d2d641f1fc5a3c636cb42ed66fa88488f6c69d3b188e3a55f715df2d19c05331889 srcfiles size=9 RELOC/source/latex/texmate/texmate.dtx RELOC/source/latex/texmate/texmate.ins +runfiles size=7 + RELOC/tex/latex/texmate/texmate.sty catalogue-ctan /macros/latex/contrib/texmate -catalogue-date 2012-06-05 21:37:17 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics games catalogue-version 2 name texments category Package revision 15878 -shortdesc Using the Pygments highlighter in LaTeX. +shortdesc Using the Pygments highlighter in LaTeX relocated 1 longdesc A package which allows to use the Pygments highlighter inside longdesc LaTeX documents. Pygments supports syntax colouring of over 50 longdesc types of files, and ships with multiple colour schemes. -runfiles size=1 - RELOC/tex/latex/texments/texments.sty +containersize 1352 +containerchecksum 6b0bc365ff7ba6a8118a4e83350e73d5c4dc40e6c30a0ed3267f0f20178a08264866bd016aa3a9da72d4f27a20bf7e8f658417561468294745b78911ff46fd4a +doccontainersize 87000 +doccontainerchecksum 67b7843546704e9b48f6ffe75a33ab68a5d8ededf3cd45ca329c6ca5ffcc783f4ecb9a663fc4eb94fb554e3c43e753512f82dc8f2f7924c1bf4bb8942aabf749 docfiles size=26 - RELOC/doc/latex/texments/README - RELOC/doc/latex/texments/texments.pdf + RELOC/doc/latex/texments/README details="Readme" + RELOC/doc/latex/texments/texments.pdf details="Package documentation" +srccontainersize 4868 +srccontainerchecksum 92d2216144fcbcc96907fd09ece64428684476ab8e9f3a0c60e898f9f4cf7e0627fb145adbd8186d56a6d5a21563c41d62871e860ad51d9b74e5a0f6441a44de srcfiles size=4 RELOC/source/latex/texments/texments.dtx RELOC/source/latex/texments/texments.ins +runfiles size=1 + RELOC/tex/latex/texments/texments.sty +catalogue-also minted verbments catalogue-ctan /macros/latex/contrib/texments -catalogue-date 2012-06-26 13:14:08 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics listing catalogue-version 0.2.0 -name tex-overview +name texonly category Package -revision 27724 -shortdesc An overview of the development of TeX. +revision 50985 +shortdesc A sample document in Plain TeX relocated 1 -longdesc The document gives a short overview of TeX and its children, as -longdesc well as the macro packages LaTeX and ConTeXt. -docfiles size=82 - RELOC/doc/latex/tex-overview/README - RELOC/doc/latex/tex-overview/tex-overview-aux.tex - RELOC/doc/latex/tex-overview/tex-overview.pdf - RELOC/doc/latex/tex-overview/tex-overview.tex -catalogue-ctan /info/tex-overview -catalogue-date 2014-02-26 23:03:13 +0100 +longdesc A file written with TeX, not using any packgages or sty-files, +longdesc to be compiled with TeX or pdfTeX only, not with LaTeX et al. +containersize 456 +containerchecksum a51d7288abaa3bd03e8f3816eaf2d7f8931340e95e3897ea4a63ae3d251277a78e71ae66b617da6cc81a8100c9ffe64a1c9142369c67d58daf200ab2ed7c9682 +doccontainersize 73548 +doccontainerchecksum 5f03987ce079f21801f08a7e325a36c6f1065f5cc32ff2dbec7989bdd3a6b3c54ade8f96a71e19553972d3c36454a08b007adf3287a7be7972a8b3ce6961778a +docfiles size=22 + RELOC/doc/plain/texonly/README.md details="Readme" + RELOC/doc/plain/texonly/texonly2.pdf details="Package documentation" language="de-de" + RELOC/doc/plain/texonly/texonly2.tex +catalogue-also gentle +catalogue-ctan /info/texonly +catalogue-date 2019-04-18 06:11:21 +0200 +catalogue-license lppl1.3c +catalogue-topics tut-plaintex +catalogue-version 2 + +name texosquery +category Package +revision 44656 +shortdesc Cross-platform Java application to query OS information +longdesc This package provides a cross-platform Java application to +longdesc query OS information designed for use in TeX's shell escape +longdesc mechanism. The application can query the following: locale and +longdesc codeset current working directory user home directory temporary +longdesc directory OS name, arch and version Current date and time in +longdesc PDF format (for TeX formats that don't provide +longdesc \pdfcreationdate) Date-time stamp of a file in PDF format (for +longdesc TeX formats that don't provide \pdffilemoddate) Size of a file +longdesc in bytes (for TeX formats that don't provide \pdffilesize) +longdesc Contents of a directory (captured as a list) Directory contents +longdesc filtered by regular expression (captured as a list) URI of a +longdesc file Canonical path of a file All paths use a forward slash as +longdesc directory divider so results can be used, for example, in +longdesc commands like \includegraphics. There are files provided for +longdesc easy access in TeX documents: texosquery.tex: generic TeX code +longdesc texosquery.sty: LaTeX package This provides commands to run +longdesc texosquery using TeX's shell escape mechanism and capture the +longdesc result in a control sequence. The category code of most of +longdesc TeX's default special characters (and some other potentially +longdesc problematic characters) is temporarily changed to 12 while +longdesc reading the result. +depend texosquery.ARCH +containersize 170196 +containerchecksum bfe5cbc793a81a9ce3c98ddc94fd217c3b235614394d2f329db4f98ae29ded1757bba5d98997118a2c78cfdf6d774146a7ac6a716b2bce91c876b0387e1aeba2 +doccontainersize 502508 +doccontainerchecksum 2b7cf8dad61829b96a2f17f1063baabd21087ea2526c8d8a6408b4c2e63c8f44be3f318be6d1e198661efe683afbff7055c678e7229a13d3b01e200565caea9d +docfiles size=130 + texmf-dist/doc/support/texosquery/CHANGES + texmf-dist/doc/support/texosquery/README.md details="Readme" + texmf-dist/doc/support/texosquery/texosquery.pdf details="Package documentation" +srccontainersize 71160 +srccontainerchecksum c834540e5448887bb0d80dac77770c7f89b8017743bbe4691e46aa5c95c3f59f2bdfde93e0dd72aa8dd94295b1dbcfdd374a8892d4c622c41df7c4a37a68a701 +srcfiles size=126 + texmf-dist/source/support/texosquery/java/FileListType.java + texmf-dist/source/support/texosquery/java/FilePathSortComparator.java + texmf-dist/source/support/texosquery/java/FileSortComparator.java + texmf-dist/source/support/texosquery/java/FileSortType.java + texmf-dist/source/support/texosquery/java/FileWalkVisitor.java + texmf-dist/source/support/texosquery/java/Manifest-jre5.txt + texmf-dist/source/support/texosquery/java/Manifest-jre7.txt + texmf-dist/source/support/texosquery/java/Manifest-jre8.txt + texmf-dist/source/support/texosquery/java/QueryAction.java + texmf-dist/source/support/texosquery/java/QueryActionType.java + texmf-dist/source/support/texosquery/java/TeXOSQuery.java + texmf-dist/source/support/texosquery/java/TeXOSQueryJRE5.java + texmf-dist/source/support/texosquery/java/TeXOSQueryJRE7.java + texmf-dist/source/support/texosquery/java/TeXOSQueryJRE8.java + texmf-dist/source/support/texosquery/texosquery-jre5.batch + texmf-dist/source/support/texosquery/texosquery-jre8.batch + texmf-dist/source/support/texosquery/texosquery.batch + texmf-dist/source/support/texosquery/texosquery.dtx + texmf-dist/source/support/texosquery/texosquery.ins +runfiles size=72 + texmf-dist/scripts/texosquery/texosquery-jre5.jar + texmf-dist/scripts/texosquery/texosquery-jre5.sh + texmf-dist/scripts/texosquery/texosquery-jre8.jar + texmf-dist/scripts/texosquery/texosquery-jre8.sh + texmf-dist/scripts/texosquery/texosquery.jar + texmf-dist/scripts/texosquery/texosquery.sh + texmf-dist/tex/latex/texosquery/texosquery.cfg + texmf-dist/tex/latex/texosquery/texosquery.sty + texmf-dist/tex/latex/texosquery/texosquery.tex +catalogue-contact-repository https://github.com/nlct/texosquery +catalogue-ctan /support/texosquery +catalogue-date 2017-06-20 18:22:33 +0200 catalogue-license lppl1.3 -catalogue-version 0.1f +catalogue-topics sys-supp +catalogue-version 1.6 + +name texosquery.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of texosquery +containersize 384 +containerchecksum 1b9b43dcda148f066b387905a1838bf6c80a234323a5d5dddd675dbff90a7e94cc5690aa9bee3ed591515d86167b9790bec0b4e66a52f35b69c7021e38ea274e +binfiles arch=aarch64-linux size=3 + bin/aarch64-linux/texosquery + bin/aarch64-linux/texosquery-jre5 + bin/aarch64-linux/texosquery-jre8 + +name texosquery.amd64-freebsd +category Package +revision 43596 +shortdesc amd64-freebsd files of texosquery +containersize 384 +containerchecksum ca41bb8071e31b3e93fd6a230c06eb46e23f6fbd81b8524bf7b587a30026378b2670ade66bbc5624825ea13ef5d60b60206797870794d24480bf3632d542d1dc +binfiles arch=amd64-freebsd size=3 + bin/amd64-freebsd/texosquery + bin/amd64-freebsd/texosquery-jre5 + bin/amd64-freebsd/texosquery-jre8 + +name texosquery.amd64-netbsd +category Package +revision 43596 +shortdesc amd64-netbsd files of texosquery +containersize 380 +containerchecksum 8acbc016b85c9b1823da4a2479db82f7c342b1c678c30a0d3a465c0e3c90cffb261f11570a7053418a63de85b2d5fb94c3610d04fd8dd54425188aeb91da9a8a +binfiles arch=amd64-netbsd size=3 + bin/amd64-netbsd/texosquery + bin/amd64-netbsd/texosquery-jre5 + bin/amd64-netbsd/texosquery-jre8 + +name texosquery.armhf-linux +category Package +revision 43596 +shortdesc armhf-linux files of texosquery +containersize 384 +containerchecksum 176393ffbd300fe5624dec531fefce31b4964f25f8c971ca45755f6297dcff04b2dc09cfd0b95b5c86ef669ceea869c8698b8c78057c7edfee36458e10a37936 +binfiles arch=armhf-linux size=3 + bin/armhf-linux/texosquery + bin/armhf-linux/texosquery-jre5 + bin/armhf-linux/texosquery-jre8 + +name texosquery.i386-cygwin +category Package +revision 43596 +shortdesc i386-cygwin files of texosquery +containersize 380 +containerchecksum 95c73c14fcf01b1032e9dfbc0ce0cb180c43d5f4fbfec5817a67a00b7b3e9491b16ada933ebfe9d7d01b103610df7e1aae6e58eec9ce175598ae8b254dc735da +binfiles arch=i386-cygwin size=3 + bin/i386-cygwin/texosquery + bin/i386-cygwin/texosquery-jre5 + bin/i386-cygwin/texosquery-jre8 + +name texosquery.i386-freebsd +category Package +revision 43596 +shortdesc i386-freebsd files of texosquery +containersize 384 +containerchecksum cfe81b5972353ded4e4d54bb573250927997aa3a93a4e8c738757d7b4ef0ddb36bd10ac3b1d456783a581d18cdc2f3e96fd76cada46fe5e4db92bbbdcebc9d38 +binfiles arch=i386-freebsd size=3 + bin/i386-freebsd/texosquery + bin/i386-freebsd/texosquery-jre5 + bin/i386-freebsd/texosquery-jre8 + +name texosquery.i386-linux +category Package +revision 43596 +shortdesc i386-linux files of texosquery +containersize 380 +containerchecksum 21f5e0370f6c012cf7cb9eb649572f07a84fdcf89cca9346c0383c3f6a95cd053c1397ddf2eb4686fbbe91e2be5bd194713e5eced17969c79bfbbd424ab55468 +binfiles arch=i386-linux size=3 + bin/i386-linux/texosquery + bin/i386-linux/texosquery-jre5 + bin/i386-linux/texosquery-jre8 + +name texosquery.i386-netbsd +category Package +revision 43596 +shortdesc i386-netbsd files of texosquery +containersize 380 +containerchecksum e2558e56c1df62a3983d3e69bd7599f8e34dd9b5c0b77b8efbda0753884f89678c5ca5d529ccb641477657583f98635f0b97af9ab6f7d6f448e6e43400b2b7d4 +binfiles arch=i386-netbsd size=3 + bin/i386-netbsd/texosquery + bin/i386-netbsd/texosquery-jre5 + bin/i386-netbsd/texosquery-jre8 + +name texosquery.i386-solaris +category Package +revision 43596 +shortdesc i386-solaris files of texosquery +containersize 380 +containerchecksum 67e443f74811a889d1ad99eefcefb9e870bbf1e0fa7226651447f4065b2b55fcd30b1e4320b67f86c0f1fa93bf0bbc229fb7215176ed8d854c071c068eaeeddf +binfiles arch=i386-solaris size=3 + bin/i386-solaris/texosquery + bin/i386-solaris/texosquery-jre5 + bin/i386-solaris/texosquery-jre8 + +name texosquery.win32 +category Package +revision 43601 +shortdesc win32 files of texosquery +containersize 712 +containerchecksum 1940f414bd28dfe866606a01903cf289826be32a007c2d578228d30a3a13fba5a7092de90aeae3d9541f26bae6ee0993a36f7148142f6dcab3deceda4df7b318 +binfiles arch=win32 size=3 + bin/win32/texosquery-jre5.exe + bin/win32/texosquery-jre8.exe + bin/win32/texosquery.exe + +name texosquery.x86_64-cygwin +category Package +revision 43596 +shortdesc x86_64-cygwin files of texosquery +containersize 384 +containerchecksum 5dad51ba702e1ce3652426345ac981da49c392b69a24eb4929cddab0f2c236dcecd32af2752b8cd61d5a02aae00bc5985d930668c3767ecfddac7b422ac96e0b +binfiles arch=x86_64-cygwin size=3 + bin/x86_64-cygwin/texosquery + bin/x86_64-cygwin/texosquery-jre5 + bin/x86_64-cygwin/texosquery-jre8 + +name texosquery.x86_64-darwin +category Package +revision 43596 +shortdesc x86_64-darwin files of texosquery +containersize 384 +containerchecksum 6b5606ff5a001f3da6c82b5db5312aecd1c67cf6ed79dc5c985e82f84507107941713055afb6564d63d6496e02939410ced5e35af05135957df7e57153c72ee0 +binfiles arch=x86_64-darwin size=3 + bin/x86_64-darwin/texosquery + bin/x86_64-darwin/texosquery-jre5 + bin/x86_64-darwin/texosquery-jre8 + +name texosquery.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of texosquery +containersize 388 +containerchecksum 61a8dfd01a6dbef15e9d46f6f5c8225a24d2601bfaa129a7e8628557aefc02c11999f377c0b6c516eb14acc3e81e3872caef477444d73a124c426717220cb40d +binfiles arch=x86_64-darwinlegacy size=3 + bin/x86_64-darwinlegacy/texosquery + bin/x86_64-darwinlegacy/texosquery-jre5 + bin/x86_64-darwinlegacy/texosquery-jre8 + +name texosquery.x86_64-linux +category Package +revision 43596 +shortdesc x86_64-linux files of texosquery +containersize 380 +containerchecksum 70a2c2968c961489271605f575fb359ad24597f35f2b328004ea83fbf20e5fa241f24ea0fa8345b914ad5444916b5ba0882cb5c02dd7d4ec1186974cba5d4cc4 +binfiles arch=x86_64-linux size=3 + bin/x86_64-linux/texosquery + bin/x86_64-linux/texosquery-jre5 + bin/x86_64-linux/texosquery-jre8 + +name texosquery.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of texosquery +containersize 388 +containerchecksum e922e6de64bc9e31a9031afe9500356770cfe9ea170c9620b94b6eca00b6fcc2626114438c653ee5edc9418282db834826736601dc869de59c7349ecc58460e5 +binfiles arch=x86_64-linuxmusl size=3 + bin/x86_64-linuxmusl/texosquery + bin/x86_64-linuxmusl/texosquery-jre5 + bin/x86_64-linuxmusl/texosquery-jre8 + +name texosquery.x86_64-solaris +category Package +revision 43596 +shortdesc x86_64-solaris files of texosquery +containersize 384 +containerchecksum 59fbc59145421a38be50434d3b6635282ed0087ae5efc9ca8f3e8a5a953cf8b9d1791e0be2cfba382e55f7689ce49ff42f834a1bb3f3da489d06f7234ed4c7e0 +binfiles arch=x86_64-solaris size=3 + bin/x86_64-solaris/texosquery + bin/x86_64-solaris/texosquery-jre5 + bin/x86_64-solaris/texosquery-jre8 name texpower category Package revision 29349 -shortdesc Create dynamic online presentations with LaTeX. -relocated 1 -longdesc TeXPower is a bundle of packages intended to provide an all- -longdesc inclusive environment for designing pdf screen presentations to -longdesc be viewed in full-screen mode, especially for projecting -longdesc `online' with a video beamer. For some of its core functions, -longdesc it uses code derived from ppower4 packages. It is, however, not -longdesc a complete environment in itself: it relies on an existing -longdesc class for preparing slides (such as foiltex or seminar) or -longdesc another package such as pdfslide. +shortdesc Create dynamic online presentations with LaTeX +relocated 1 +longdesc TeXPower is a bundle of packages intended to provide an +longdesc all-inclusive environment for designing pdf screen +longdesc presentations to be viewed in full-screen mode, especially for +longdesc projecting `online' with a video beamer. For some of its core +longdesc functions, it uses code derived from ppower4 packages. It is, +longdesc however, not a complete environment in itself: it relies on an +longdesc existing class for preparing slides (such as foiltex or +longdesc seminar) or another package such as pdfslide. depend tpslifonts -runfiles size=67 - RELOC/tex/latex/texpower/automata.sty - RELOC/tex/latex/texpower/fixseminar.sty - RELOC/tex/latex/texpower/powersem.cls - RELOC/tex/latex/texpower/texpower.sty - RELOC/tex/latex/texpower/tpcolors.cfg - RELOC/tex/latex/texpower/tplists.sty - RELOC/tex/latex/texpower/tpoptions.cfg - RELOC/tex/latex/texpower/tppstcol.sty - RELOC/tex/latex/texpower/tpsem-a4.sty - RELOC/tex/latex/texpower/tpsettings.cfg +containersize 40504 +containerchecksum 7e2efadabaf173fd30c592cbcd2338563b8690048ccaffd86efb079a04b7b95c8ab113b99205cbb2912eae3a709a110d7b152270422cf2cbfd2ab85d42f12d69 +doccontainersize 330264 +doccontainerchecksum e61965b5e31b487daba383a4e6ebc0dba85475f8cade2faae6adb8576ec7ec544b518a6e0e105aa185ff82fd6aba7a9ea4abda2a9446d52f5b3acdb42580e315 docfiles size=267 RELOC/doc/latex/texpower/00readme.txt RELOC/doc/latex/texpower/01install.txt @@ -161085,7 +274422,7 @@ docfiles size=267 RELOC/doc/latex/texpower/fulldemo.tex RELOC/doc/latex/texpower/hilitexample.tex RELOC/doc/latex/texpower/ifmslidemo.tex - RELOC/doc/latex/texpower/manual.pdf + RELOC/doc/latex/texpower/manual.pdf details="Manual" RELOC/doc/latex/texpower/manual.tex RELOC/doc/latex/texpower/mathexample.tex RELOC/doc/latex/texpower/panelexample.tex @@ -161110,6 +274447,8 @@ docfiles size=267 RELOC/doc/latex/texpower/tpslifonts/tpslifonts.dtx RELOC/doc/latex/texpower/tpslifonts/tpslifonts.ins RELOC/doc/latex/texpower/verbexample.tex +srccontainersize 111840 +srccontainerchecksum 3add8eeda886ce6422d3b7ea53a55dc69bb2f5c2e64cdede105a7b4756b008807bef6245ddc2596b45809311874e566263c51e98ec6751b4db9d3c5c5f58efd3 srcfiles size=172 RELOC/source/latex/texpower/Makefile RELOC/source/latex/texpower/powersem.dtx @@ -161119,73 +274458,84 @@ srcfiles size=172 RELOC/source/latex/texpower/texpower.dtx RELOC/source/latex/texpower/tpbundle.ins RELOC/source/latex/texpower/tplists.dtx +runfiles size=67 + RELOC/tex/latex/texpower/automata.sty + RELOC/tex/latex/texpower/fixseminar.sty + RELOC/tex/latex/texpower/powersem.cls + RELOC/tex/latex/texpower/texpower.sty + RELOC/tex/latex/texpower/tpcolors.cfg + RELOC/tex/latex/texpower/tplists.sty + RELOC/tex/latex/texpower/tpoptions.cfg + RELOC/tex/latex/texpower/tppstcol.sty + RELOC/tex/latex/texpower/tpsem-a4.sty + RELOC/tex/latex/texpower/tpsettings.cfg +catalogue-also prosper beamer +catalogue-contact-repository http://texpower.sourceforge.net/ catalogue-ctan /macros/latex/contrib/texpower -catalogue-date 2012-02-24 11:11:42 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license gpl +catalogue-topics presentation catalogue-version 0.2 -name tex-ps -category Package -revision 15878 -shortdesc TeX to PostScript generic macros and add-ons. -relocated 1 -longdesc TeX to PostScript generic macros and add-ons: transformations -longdesc of EPS files, prepress preparation, color separation, mirror, -longdesc etc. -runfiles size=24 - RELOC/dvips/tex-ps/crops.pro - RELOC/dvips/tex-ps/mirr.hd - RELOC/dvips/tex-ps/separate.pro - RELOC/tex/generic/tex-ps/cmyk-hax.tex - RELOC/tex/generic/tex-ps/epsfx.tex - RELOC/tex/generic/tex-ps/poligraf.sty - RELOC/tex/generic/tex-ps/trans.tex -docfiles size=94 - RELOC/doc/generic/tex-ps/cmyk-hax/README - RELOC/doc/generic/tex-ps/cmyk-hax/cmyk-doc.pdf - RELOC/doc/generic/tex-ps/cmyk-hax/fountain.eps - RELOC/doc/generic/tex-ps/cmyk-hax/gdansk.eps - RELOC/doc/generic/tex-ps/cmyk-hax/rules.tex - RELOC/doc/generic/tex-ps/cmyk-hax/sam1-sep.bat - RELOC/doc/generic/tex-ps/cmyk-hax/sample1.tex - RELOC/doc/generic/tex-ps/cmyk-hax/sample2.tex - RELOC/doc/generic/tex-ps/cmyk-hax/sample3.tex - RELOC/doc/generic/tex-ps/cmyk-hax/sample4.tex - RELOC/doc/generic/tex-ps/cmyk-hax/screen.eps - RELOC/doc/generic/tex-ps/poligraf/README - RELOC/doc/generic/tex-ps/poligraf/kol-cmyk.eps - RELOC/doc/generic/tex-ps/poligraf/sample.tex - RELOC/doc/generic/tex-ps/poligraf/samplelx.tex -catalogue-ctan /macros/generic/TeX-PS -catalogue-date 2012-06-26 13:14:08 +0200 -catalogue-license pd - -name tex-refs -category Package -revision 31946 -catalogue tex-references -shortdesc References for TeX and Friends -relocated 1 -longdesc This is an ongoing project with the aim of providing a help -longdesc file for LaTeX (and its friends like ConTeXt, Metapost, -longdesc Metafont, etc.) using a state-of-the-art source format, aka -longdesc DocBook/XML. -docfiles size=314 - RELOC/doc/generic/tex-refs/README - RELOC/doc/generic/tex-refs/tex-refs-0.4.1.tar.bz2 - RELOC/doc/generic/tex-refs/tex-refs.css - RELOC/doc/generic/tex-refs/tex-refs.epub - RELOC/doc/generic/tex-refs/tex-refs.html - RELOC/doc/generic/tex-refs/tex-refs.txt -catalogue-ctan /info/tex-references -catalogue-date 2013-10-24 16:44:11 +0200 +name texproposal +category Package +revision 43151 +shortdesc A proposal prototype for LaTeX promotion in Chinese universities +relocated 1 +longdesc This package contains the original source code and necessary +longdesc attachment of the document "Proposal for Offering TeX Courses +longdesc and Relevant Resources in Chongqing University". This proposal +longdesc could be helpful if one is considering to suggest his/her +longdesc university or company to use TeX (or LaTeX, or XeLaTeX) as a +longdesc typesetting system, especially for Chinese universities and +longdesc companies. The present proposal mainly explains the importance +longdesc and necessity of introducing TeX, a typesetting system often +longdesc used in academic writing, to students and teachers. This +longdesc proposal starts from a brief introduction of TeX, then steps +longdesc further into its fascinating application to academic writing +longdesc and dissertation formatting. Finally, a set of possible +longdesc implementation strategies with regard to the proper +longdesc introduction of TeX and relevant resources to our university, +longdesc is proposed. +containersize 872 +containerchecksum 19265b32271b8603d8baf8b16f043c3228606230c1151a33e243e493b6306faa839860f2b07ec9d5d43c57f49e984134e760342bc6302186924e5c95cc1f3380 +doccontainersize 2152096 +doccontainerchecksum 70c04643ced459099ae095c88c0316e96c75e99bba0877198c7800d3b5cc9ac872f74b36adfb03dde968150abb3cb99131fb52ecaff56dfbf1aa85379718a74f +docfiles size=785 + RELOC/doc/latex/texproposal/LICENSE.md + RELOC/doc/latex/texproposal/README.md details="Readme" + RELOC/doc/latex/texproposal/contents/OtherUsages.tex + RELOC/doc/latex/texproposal/contents/acceptFinalProj.tex + RELOC/doc/latex/texproposal/contents/conclusion.tex + RELOC/doc/latex/texproposal/contents/ctanMirror.tex + RELOC/doc/latex/texproposal/contents/finalYearDemands.tex + RELOC/doc/latex/texproposal/contents/introduction.tex + RELOC/doc/latex/texproposal/contents/journalDemands.tex + RELOC/doc/latex/texproposal/contents/texCourses.tex + RELOC/doc/latex/texproposal/contents/whatistex.tex + RELOC/doc/latex/texproposal/cqunumerical.bst + RELOC/doc/latex/texproposal/figures/CQU-Example.pdf + RELOC/doc/latex/texproposal/figures/CQUThesis-poster.pdf + RELOC/doc/latex/texproposal/figures/TeX-Word-Diff.pdf + RELOC/doc/latex/texproposal/figures/TeX-Word-Vote.pdf + RELOC/doc/latex/texproposal/figures/pubfig0.pdf + RELOC/doc/latex/texproposal/ref/bluescas.bib + RELOC/doc/latex/texproposal/ref/nanmu.bib + RELOC/doc/latex/texproposal/scripts/cover.tex + RELOC/doc/latex/texproposal/texproposal.pdf details="The document itself" language="zh" + RELOC/doc/latex/texproposal/texproposal.sty + RELOC/doc/latex/texproposal/texproposal.tex +catalogue-contact-repository https://github.com/CQUtug/TeXProposal +catalogue-ctan /info/texproposal +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license other-free -catalogue-version 0.4.8 +catalogue-topics chinese-doc +catalogue-version 1.4 name texshade category Package -revision 24716 -shortdesc Package for setting nucleotide and peptide alignments. +revision 46559 +shortdesc Package for setting nucleotide and peptide alignments relocated 1 longdesc TeXshade is alignment shading software completely written in longdesc TeX/LaTeX; it can process multiple sequence alignments in the @@ -161197,10 +274547,11 @@ longdesc legends; it even allows the user to define completely new longdesc shading modes. TeXshade combines highest flexibility with TeX longdesc output quality -- all in a bundle that does not demand longdesc excessive development time of the user. -runfiles size=155 - RELOC/tex/latex/texshade/texshade.def - RELOC/tex/latex/texshade/texshade.sty -docfiles size=311 +containersize 58772 +containerchecksum 785bba8f83063d37f2473759eb1ada73b31098ba757ce65ca1b7ac811581a64c706f2916eaa1237f6c6ee39dfa3514616d5b8789b9b8e2418c02ddd88e77e428 +doccontainersize 714020 +doccontainerchecksum e08cefab84354056854fa00b15efe8ba99e2e8f4ae6721afd03ecee5fad7b227674ca456de11b0607b1b34a2378ce41e11c517b0b0a544c12278bc3b9f0c4de4 +docfiles size=213 RELOC/doc/latex/texshade/AQP1.phd RELOC/doc/latex/texshade/AQP1.top RELOC/doc/latex/texshade/AQP2spec.ALN @@ -161209,24 +274560,30 @@ docfiles size=311 RELOC/doc/latex/texshade/AQP_HMM.sgl RELOC/doc/latex/texshade/AQP_TC.asc RELOC/doc/latex/texshade/AQPpro.MSF - RELOC/doc/latex/texshade/README + RELOC/doc/latex/texshade/README details="Readme" RELOC/doc/latex/texshade/ciliate.cod RELOC/doc/latex/texshade/standard.cod - RELOC/doc/latex/texshade/texshade.pdf - RELOC/doc/latex/texshade/tsfaq.pdf + RELOC/doc/latex/texshade/texshade.pdf details="Package documentation" language="en" + RELOC/doc/latex/texshade/tsfaq.pdf details="FAQs about TeXshade" language="en" RELOC/doc/latex/texshade/tsfaq.tex -srcfiles size=250 +srccontainersize 134816 +srccontainerchecksum 3ade54e59a3342a60ae75a3b4b1068d646bab1d9dc58b29cfb3ea55471038061af7a2581b5a125b14d767ca659a336ac09dd2ec8360c3e54889a69529d62335e +srcfiles size=251 RELOC/source/latex/texshade/texshade.dtx RELOC/source/latex/texshade/texshade.ins +runfiles size=157 + RELOC/tex/latex/texshade/texshade.def + RELOC/tex/latex/texshade/texshade.sty catalogue-ctan /macros/latex/contrib/texshade -catalogue-date 2011-12-01 13:24:33 +0100 +catalogue-date 2018-02-06 20:31:32 +0100 catalogue-license gpl2 -catalogue-version 1.24 +catalogue-topics chemistry molbio +catalogue-version 1.25 name texsis category Package -revision 31958 -shortdesc Plain TeX macros for Physicists. +revision 45678 +shortdesc Plain TeX macros for Physicists longdesc TeXsis is a TeX macro package which provides useful features longdesc for typesetting research papers and related documents. For longdesc example, it includes support specifically for: Automatic @@ -161234,7 +274591,7 @@ longdesc numbering of equations, figures, tables and references; longdesc Simplified control of type sizes, line spacing, footnotes, longdesc running headlines and footlines, and tables of contents, longdesc figures and tables; Specialized document formats for research -longdesc papers, preprints and ``e-prints,'' conference proceedings, +longdesc papers, preprints and "e-prints", conference proceedings, longdesc theses, books, referee reports, letters, and memoranda; longdesc Simplified means of constructing an index for a book or thesis; longdesc Easy to use double column formatting; Specialized environments @@ -161244,49 +274601,16 @@ longdesc constructing ruled tables. TeXsis was originally developed for longdesc physicists, but others may also find it useful. It is longdesc completely compatible with Plain TeX. depend tex +depend cm +depend hyphen-base +depend knuth-lib +depend plain depend texsis.ARCH -execute AddFormat name=texsis engine=pdftex options="-translate-file=cp227.tcx texsis.ini" -runfiles size=142 - texmf-dist/bibtex/bst/texsis/texsis.bst - texmf-dist/tex/texsis/base/AIP.txs - texmf-dist/tex/texsis/base/CVformat.txs - texmf-dist/tex/texsis/base/Elsevier.txs - texmf-dist/tex/texsis/base/Exam.txs - texmf-dist/tex/texsis/base/Formletr.txs - texmf-dist/tex/texsis/base/IEEE.txs - texmf-dist/tex/texsis/base/PhysRev.txs - texmf-dist/tex/texsis/base/Spanish.txs - texmf-dist/tex/texsis/base/Swedish.txs - texmf-dist/tex/texsis/base/TXSconts.tex - texmf-dist/tex/texsis/base/TXSdcol.tex - texmf-dist/tex/texsis/base/TXSenvmt.tex - texmf-dist/tex/texsis/base/TXSeqns.tex - texmf-dist/tex/texsis/base/TXSfigs.tex - texmf-dist/tex/texsis/base/TXSfmts.tex - texmf-dist/tex/texsis/base/TXSfonts.tex - texmf-dist/tex/texsis/base/TXShead.tex - texmf-dist/tex/texsis/base/TXSinit.tex - texmf-dist/tex/texsis/base/TXSletr.tex - texmf-dist/tex/texsis/base/TXSmacs.tex - texmf-dist/tex/texsis/base/TXSmemo.tex - texmf-dist/tex/texsis/base/TXSprns.tex - texmf-dist/tex/texsis/base/TXSrefs.tex - texmf-dist/tex/texsis/base/TXSruled.tex - texmf-dist/tex/texsis/base/TXSsects.tex - texmf-dist/tex/texsis/base/TXSsite.tex - texmf-dist/tex/texsis/base/TXSsymb.tex - texmf-dist/tex/texsis/base/TXStags.tex - texmf-dist/tex/texsis/base/TXStitle.tex - texmf-dist/tex/texsis/base/Tablebod.txs - texmf-dist/tex/texsis/base/WorldSci.txs - texmf-dist/tex/texsis/base/color.txs - texmf-dist/tex/texsis/base/nuclproc.txs - texmf-dist/tex/texsis/base/printfont.txs - texmf-dist/tex/texsis/base/spine.txs - texmf-dist/tex/texsis/base/texsis.tex - texmf-dist/tex/texsis/base/thesis.txs - texmf-dist/tex/texsis/base/twin.txs - texmf-dist/tex/texsis/config/texsis.ini +execute AddFormat name=texsis engine=pdftex options="-translate-file=cp227.tcx texsis.ini" fmttriggers=cm,hyphen-base,knuth-lib,plain +containersize 111124 +containerchecksum 7309726b33eadf8290e596aab50bb1af95600a067338b352c1ac092643a8c6d4142180d0146abbbb828a38fb08fdd9ae03da6572e6c221afcd151a51430a423e +doccontainersize 130016 +doccontainerchecksum 2a4979a10514ccd589b331ff34a677a4e22adbeea73d6112c9a14392b3ee75a8cdb292b008b160792b3d00b812834afa7e0211db860c41f1beb69bbc900fdb90 docfiles size=135 texmf-dist/doc/man/man1/texsis.1 texmf-dist/doc/man/man1/texsis.man1.pdf @@ -161301,7 +274625,7 @@ docfiles size=135 texmf-dist/doc/otherformats/texsis/base/Manual.tbl texmf-dist/doc/otherformats/texsis/base/Manual.tex texmf-dist/doc/otherformats/texsis/base/NEWS - texmf-dist/doc/otherformats/texsis/base/README + texmf-dist/doc/otherformats/texsis/base/README details="Readme" texmf-dist/doc/otherformats/texsis/base/TXSapxF.doc texmf-dist/doc/otherformats/texsis/base/TXScover.doc texmf-dist/doc/otherformats/texsis/base/TXSdcol.doc @@ -161332,22 +274656,201 @@ docfiles size=135 texmf-dist/doc/otherformats/texsis/base/penguin2.eps texmf-dist/doc/otherformats/texsis/base/texsis.el texmf-dist/doc/otherformats/texsis/base/texsis.lsm +runfiles size=142 + texmf-dist/bibtex/bst/texsis/texsis.bst + texmf-dist/tex/texsis/base/AIP.txs + texmf-dist/tex/texsis/base/CVformat.txs + texmf-dist/tex/texsis/base/Elsevier.txs + texmf-dist/tex/texsis/base/Exam.txs + texmf-dist/tex/texsis/base/Formletr.txs + texmf-dist/tex/texsis/base/IEEE.txs + texmf-dist/tex/texsis/base/PhysRev.txs + texmf-dist/tex/texsis/base/Spanish.txs + texmf-dist/tex/texsis/base/Swedish.txs + texmf-dist/tex/texsis/base/TXSconts.tex + texmf-dist/tex/texsis/base/TXSdcol.tex + texmf-dist/tex/texsis/base/TXSenvmt.tex + texmf-dist/tex/texsis/base/TXSeqns.tex + texmf-dist/tex/texsis/base/TXSfigs.tex + texmf-dist/tex/texsis/base/TXSfmts.tex + texmf-dist/tex/texsis/base/TXSfonts.tex + texmf-dist/tex/texsis/base/TXShead.tex + texmf-dist/tex/texsis/base/TXSinit.tex + texmf-dist/tex/texsis/base/TXSletr.tex + texmf-dist/tex/texsis/base/TXSmacs.tex + texmf-dist/tex/texsis/base/TXSmemo.tex + texmf-dist/tex/texsis/base/TXSprns.tex + texmf-dist/tex/texsis/base/TXSrefs.tex + texmf-dist/tex/texsis/base/TXSruled.tex + texmf-dist/tex/texsis/base/TXSsects.tex + texmf-dist/tex/texsis/base/TXSsite.tex + texmf-dist/tex/texsis/base/TXSsymb.tex + texmf-dist/tex/texsis/base/TXStags.tex + texmf-dist/tex/texsis/base/TXStitle.tex + texmf-dist/tex/texsis/base/Tablebod.txs + texmf-dist/tex/texsis/base/WorldSci.txs + texmf-dist/tex/texsis/base/color.txs + texmf-dist/tex/texsis/base/nuclproc.txs + texmf-dist/tex/texsis/base/printfont.txs + texmf-dist/tex/texsis/base/spine.txs + texmf-dist/tex/texsis/base/texsis.tex + texmf-dist/tex/texsis/base/thesis.txs + texmf-dist/tex/texsis/base/twin.txs + texmf-dist/tex/texsis/config/texsis.ini catalogue-ctan /macros/texsis -catalogue-date 2012-06-05 22:22:59 +0200 +catalogue-date 2016-10-16 19:36:27 +0200 catalogue-license lppl +catalogue-topics physics format catalogue-version 2.18 +name texsis.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of texsis +containersize 324 +containerchecksum dd494c6cf8d481139e17402e8af880b8918750243a1c01b6aeaa69e1ebdd804ac72b2e87a4d4fab4a57f9b4f488ff3ed7d0bd3ca1a7b19e2a7e80edd4df4817e +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/texsis + +name texsis.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of texsis +containersize 324 +containerchecksum 9fe1c6f65fc6bfd344c0f1d1cdeebe384519dcf428849b70e1bd6868543e98c8611378b232b8ae8f9e91b3b3b99a5188d8f560001a82356832647573d77ac25e +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/texsis + +name texsis.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of texsis +containersize 324 +containerchecksum b45b72043f5d0c8c741ca49a3a906e58a9a342a3325d6942b3bc96b46ea15350c42174a3ed948d19fa538f46f86306e5e827758fe40a1cf0b725638f394c3877 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/texsis + +name texsis.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of texsis +containersize 324 +containerchecksum a137d58698be313eb46a2a24b0ea0e1375fdb55af5aad7679fc5b9b6122abdb9fe029ebf818bbcbf727ed902098e8f15003efcfedd41af3bdfba807db5580143 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/texsis + +name texsis.i386-cygwin +category Package +revision 13930 +shortdesc i386-cygwin files of texsis +containersize 324 +containerchecksum df3ba60393feca16612835a058c6868e806271e576905e3cf1d0e7942022c9dac1dde3237381e1974052658ab3c3e58b446a609fc2d116443aea6a5c8c8aecc7 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/texsis + +name texsis.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of texsis +containersize 324 +containerchecksum c38dcf3b4d9908c43f9694a987a8b2a106098eb9b55f3b04c935a8ee504b963772700a7712c193b3de978eded47bf80a409503853f03f5dccb96640f899b5a0d +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/texsis + name texsis.i386-linux category Package revision 3006 shortdesc i386-linux files of texsis +containersize 320 +containerchecksum cae6dc2e33a4f9b4a4ed91d044463f878c45807000d215b14a67c0b0f4748219cc59c00bebc5f9a83731ae8ec25d16938c6efe180d263f9f0dc3dd092b856232 binfiles arch=i386-linux size=1 bin/i386-linux/texsis +name texsis.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of texsis +containersize 320 +containerchecksum 9899af6b5dd52b9cb342f6f19cc9fe3bb47acba912f7d5aa1feb8034eea73949d76cdc730b7584e8405355b5d2dfefaa467207a4bed273d62d7f250ae197c448 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/texsis + +name texsis.i386-solaris +category Package +revision 8102 +shortdesc i386-solaris files of texsis +containersize 320 +containerchecksum c176541a88b35fb09e44f49a4354f9f12be93b71ae0660e7afadbff70a56b8e2a722112efa8611facba98436c6fdd1fd9cdf41570e90175ea07cd16448a69b0a +binfiles arch=i386-solaris size=1 + bin/i386-solaris/texsis + +name texsis.win32 +category Package +revision 36810 +shortdesc win32 files of texsis +containersize 872 +containerchecksum 376bb8ffae9f6e819142f22456ff9bd71dc5f56a3164a6b14e7dd24f37687886bc861de9cd797045aacf07673977e34fc8b513e15553c442ca7e62a36bb84e09 +binfiles arch=win32 size=1 + bin/win32/texsis.exe + +name texsis.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of texsis +containersize 328 +containerchecksum 01a53dbce3f587d8ab843ddfd4b1abb530e02010d88d60ad0e06b0dc76f0db6042c2b19fae00d5370a72df9d04927a4a04bc433597a447386c9c45fcae97e3d8 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/texsis + +name texsis.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of texsis +containersize 324 +containerchecksum 2addebb8a138395bead3de1dcd7d1a88444e1f01214c9f6edb401da724e054fd108500aee1ac006b602ec290959bdacb922e3ed3daeeb47b0f7bb3825476b554 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/texsis + +name texsis.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of texsis +containersize 332 +containerchecksum 164ff7722955e3244d59355294c8293c0dfe4aef84d5dd58074142337723e0510437836d9f61e8628005896b69d41f075fafa90c9d50c57a03ac4b0cf38d5d4e +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/texsis + +name texsis.x86_64-linux +category Package +revision 3185 +shortdesc x86_64-linux files of texsis +containersize 320 +containerchecksum b2224c1f50890c32a31cf924fe66e88a2c350210ab77be87278dbd2b94152480fa76dc5db0cde6a3e0577be06dd950e79e8e4dce7fe1b5e6df1eae5d74bdc771 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/texsis + +name texsis.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of texsis +containersize 324 +containerchecksum 6febc737122761f78d4126f85460dc0da02c45ec232f2020997bc4934504be3dc2316a6b5763121fc5cd4fd6a8ddf2a3e5442961e075e95faa5912fe6300be31 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/texsis + +name texsis.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of texsis +containersize 324 +containerchecksum e2cb92a5f17721fe8fc797f0ca386aea05e9320a59470dbc9ae494c3c92125307137b3509b918a10c4807d7a3f1db0392ea583c2c91cc7e1ca8819c658db3f8b +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/texsis + name textcase category Package revision 15878 -shortdesc Case conversion ignoring mathematics, etc. +shortdesc Case conversion ignoring mathematics, etc relocated 1 longdesc The textcase package offers commands \MakeTextUppercase and longdesc \MakeTextLowercase are similar to the standard \MakeUppercase @@ -161359,22 +274862,29 @@ longdesc argument, so to force uppercase of a section including an longdesc environment, one might say: longdesc \MakeTextUppercase{...\NoCaseChange{\begin{foo}} longdesc ...\NoCaseChange{\end{foo}}...} -runfiles size=1 - RELOC/tex/latex/textcase/textcase.sty +containersize 1412 +containerchecksum d8f0395f7c06a2ae2dbaba4914cbf7e795cd71ca3ec11d1dd82b1fc857e69ffeb47ad18e89acacfbe8fa7da3b6716ee0c7f253137606df1268f238f5b6b18714 +doccontainersize 156624 +doccontainerchecksum 623f23aa7a1b3f59c97dfe4c96035e91c6a7b01fcdf07157866974abf45e8f5e3b2fa31aa096f5ac55582d81531ac20bc439d4f1219217bf21accfd2707b2a2f docfiles size=43 - RELOC/doc/latex/textcase/README - RELOC/doc/latex/textcase/textcase.pdf + RELOC/doc/latex/textcase/README details="Readme" + RELOC/doc/latex/textcase/textcase.pdf details="Package documentation" +srccontainersize 4692 +srccontainerchecksum 874ce770d2803b2a3294a713577ac0739cfb77155da7baab59922dc3ccd62066d75a3f1d6de04347933b4a97546dbf965a8b7077eb758d5caf81b21675980b1e srcfiles size=5 RELOC/source/latex/textcase/textcase.dtx RELOC/source/latex/textcase/textcase.ins +runfiles size=1 + RELOC/tex/latex/textcase/textcase.sty catalogue-ctan /macros/latex/contrib/textcase -catalogue-date 2012-06-26 14:36:07 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics macro-supp name textfit category Package revision 20591 -shortdesc Fit text to a desired size. +shortdesc Fit text to a desired size relocated 1 longdesc Package to fit text to a given width or height by scaling the longdesc font. For example: \scaletowidth{3in}{This}. (The job is done @@ -161382,138 +274892,133 @@ longdesc by calculating a magstep and applying it to the current font; longdesc thus "This" will be very tall, as well as very wide; to scale longdesc in just one dimension, use the facilities of the graphicx longdesc package.) -runfiles size=2 - RELOC/tex/latex/textfit/textfit.sty +containersize 2204 +containerchecksum 96638c0bd5cb14b629f03e4b6a3266160c75bcf05d871ce3d4262ac1c070d9efc0532411f5d8774f97362b148ef6cd1c5dd5253e72e3aebb542fdf14aa6d78fb +doccontainersize 162372 +doccontainerchecksum b88df8c99662a182483fc6d12d33d0bac5f6a32c84be700146d048b799045800cbb69b21599e5debac122995800b0e48fd82395c498a58df503395fcedc92228 docfiles size=43 - RELOC/doc/latex/textfit/README + RELOC/doc/latex/textfit/README details="Readme" RELOC/doc/latex/textfit/makefile RELOC/doc/latex/textfit/manifest RELOC/doc/latex/textfit/textfit.pdf +srccontainersize 3592 +srccontainerchecksum cde6e37b48b1aa49811fd5ec29cf094c7b49d690fb4d884edc358bd3a8a5bf58a815e539eb5e56a95616f54b0737dde09e312c0d2baf37498ead691d4fe1dd72 srcfiles size=4 RELOC/source/latex/textfit/textfit.dtx RELOC/source/latex/textfit/textfit.ins +runfiles size=2 + RELOC/tex/latex/textfit/textfit.sty catalogue-ctan /macros/latex/contrib/textfit -catalogue-date 2012-06-26 14:36:07 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics fit-to-size catalogue-version 5 name textglos category Package revision 30788 -shortdesc Typeset and index linguistic gloss abbreviations. +shortdesc Typeset and index linguistic gloss abbreviations relocated 1 longdesc The package provides a set of macros for in-line linguistic longdesc examples (as opposed to interlinear glossing, set apart from longdesc the main text). It prevents hyphenated examples from breaking longdesc across lines and consistently formats phonemic examples, longdesc orthographic examples, and more. -runfiles size=1 - RELOC/tex/latex/textglos/textglos.sty +containersize 1832 +containerchecksum 1652260a3e946a8847ceb7f937893bad27a24737d9b3573466f7369ce9cdbf900af0ef6c7f0bf3033200664da736e8232c3fbf6db61bb7d51acec1010d13a3e0 +doccontainersize 421316 +doccontainerchecksum 922ce1569fce889bc4608e9a5da4a45b7c3d2e80303ac36167efe6767c266844664de00384447e288da70383fe91261e5914394a6fdf8644349f785600271e5e docfiles size=105 - RELOC/doc/latex/textglos/README + RELOC/doc/latex/textglos/README details="Readme" RELOC/doc/latex/textglos/README.txt - RELOC/doc/latex/textglos/textglos.pdf + RELOC/doc/latex/textglos/textglos.pdf details="Package documentation" +srccontainersize 7652 +srccontainerchecksum 0dc80a20fcb8926b9bf586808bff2403452e43471983d0bf49bebd310d2bf78cb1e61cd4674f7bfcf86d94ee083d2c8e0099554858549dc5c6703d0f4ca57dbb srcfiles size=6 RELOC/source/latex/textglos/textglos.dtx RELOC/source/latex/textglos/textglos.ins +runfiles size=1 + RELOC/tex/latex/textglos/textglos.sty catalogue-ctan /macros/latex/contrib/textglos -catalogue-date 2013-06-19 00:57:02 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics linguistic catalogue-version 1.0 name textgreek category Package -revision 24282 -shortdesc Upright greek letters in text. +revision 44192 +shortdesc Upright greek letters in text relocated 1 longdesc Use upright greek letters as text symbols, e.g. \textbeta. -runfiles size=3 - RELOC/tex/latex/textgreek/textgreek.sty +depend greek-fontenc +containersize 2624 +containerchecksum 2370f666c2cef43a579e32a755675431717ccfb4bad6f30261a6c67e0617816ffc272c25e0d076d91c4047c41926c92ae375507f36f2fab01673bd7e708f5188 +doccontainersize 459404 +doccontainerchecksum 9107ca31b645977d56a3b1e37f7b12f0302b1b2531bd2a21883f7931831e70c4383beae77469aab4663253da3109cdd9c53589cbab95f7f0126389d12509127f docfiles size=136 - RELOC/doc/latex/textgreek/README - RELOC/doc/latex/textgreek/textgreek.pdf + RELOC/doc/latex/textgreek/README details="Readme" + RELOC/doc/latex/textgreek/textgreek.pdf details="Package documentation" +srccontainersize 8180 +srccontainerchecksum 367b63cd318c1e69944444f4cab82af7a7b1dde667d6469ade4c6433960b21a6f8922280d5a46e96fc88ddf4c2d5d3f3a440b55045a67512459208ae181bda96 srcfiles size=8 RELOC/source/latex/textgreek/textgreek.dtx RELOC/source/latex/textgreek/textgreek.ins +runfiles size=3 + RELOC/tex/latex/textgreek/textgreek.sty catalogue-ctan /macros/latex/contrib/textgreek -catalogue-date 2012-06-26 14:36:07 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl -catalogue-version v0.7 - -name tex -category TLCore -revision 37078 -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 tex.ARCH -execute AddFormat name=tex engine=tex options="tex.ini" -docfiles size=9 - texmf-dist/doc/man/man1/tex.1 - texmf-dist/doc/man/man1/tex.man1.pdf -catalogue-ctan /systems/knuth/dist/tex -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license knuth -catalogue-version 3.14159265 - -name tex.i386-linux -category TLCore -revision 36790 -shortdesc i386-linux files of tex -binfiles arch=i386-linux size=119 - bin/i386-linux/initex - bin/i386-linux/tex +catalogue-topics text-symbol +catalogue-version 0.7 name textmerg category Package revision 20677 -shortdesc Merge text in TeX and LaTeX. +shortdesc Merge text in TeX and LaTeX relocated 1 longdesc Repetetively produce documents from a fixed part and a variable longdesc part. Such an operation is commonly used as "mail merge" to longdesc produce mail shots. -runfiles size=2 - RELOC/tex/generic/textmerg/textmerg.sty +containersize 1928 +containerchecksum 5ef9048849bd2515c1af0ff41d0b5189715b375464c15d4708e0152d99f01839c462a0c9d0a9a12f401375d38e2c53a0f0c314e6905e1bfb3171296448bab649 +doccontainersize 253648 +doccontainerchecksum 05a087347db5dce688065f56c106d022f3ac30d27ee5d2f420e7658c5b81df66549cda86193f3ce4fb2cbeaad37abe7eb32b984d00d4f25dd0ad51433f8d7a01 docfiles size=68 RELOC/doc/generic/textmerg/results.dat RELOC/doc/generic/textmerg/silly.dat - RELOC/doc/generic/textmerg/textmerg.pdf + RELOC/doc/generic/textmerg/textmerg.pdf details="Package documentation" RELOC/doc/generic/textmerg/textmerg.tex RELOC/doc/generic/textmerg/tmexamp1.tex RELOC/doc/generic/textmerg/tmexamp2.tex RELOC/doc/generic/textmerg/tmexampp.tex +srccontainersize 9948 +srccontainerchecksum bec01fd7721b5fcc61ac934ebffc3936492817662f4445f082601fe4b7aad576448d33b7ec16ce400c8185704e60238c56bb9e8e31c3b445503673145c0cfadd srcfiles size=9 RELOC/source/generic/textmerg/textmerg.drv RELOC/source/generic/textmerg/textmerg.dtx RELOC/source/generic/textmerg/textmerg.ins +runfiles size=2 + RELOC/tex/generic/textmerg/textmerg.sty +catalogue-contact-repository https://github.com/rf-latex/textmerg +catalogue-contact-support https://github.com/rf-latex/textmerg/issues catalogue-ctan /macros/latex/contrib/textmerg -catalogue-date 2012-06-27 22:19:02 +0200 +catalogue-date 2018-09-15 15:55:01 +0200 catalogue-license pd +catalogue-topics doc-gen catalogue-version 2.01 name textopo category Package revision 23796 -shortdesc Annotated membrane protein topology plots. +shortdesc Annotated membrane protein topology plots relocated 1 longdesc A LaTeX package for setting shaded and annotated membrane longdesc protein topology plots and helical wheels. -runfiles size=67 - RELOC/tex/latex/textopo/biotex.sty - RELOC/tex/latex/textopo/textopo.def - RELOC/tex/latex/textopo/textopo.sty +containersize 31844 +containerchecksum 89a415b1040ff44f62c452e61abf9a5760929953ff0a4740080f79e8343b2b4f4eef9340e5a83fded39a000947dbe7f2916fb18624c4512c5ab58171708de268 +doccontainersize 578472 +doccontainerchecksum 80bd54a9843fae371884b87710094f72926d5ad8a7e40308e9aa753b01533d3e649ff94831ea75aed264b5f9f5df482e157a1563dc85ab2976cbf9260425c5ce docfiles size=190 RELOC/doc/latex/textopo/AQP1.SP RELOC/doc/latex/textopo/AQP1.hmm @@ -161523,56 +275028,73 @@ docfiles size=190 RELOC/doc/latex/textopo/AQP2spec.ALN RELOC/doc/latex/textopo/AQPpro.MSF RELOC/doc/latex/textopo/AQPpro1.shd - RELOC/doc/latex/textopo/textopo.pdf - RELOC/doc/latex/textopo/textopo.txt + RELOC/doc/latex/textopo/textopo.pdf details="Package documentation" + RELOC/doc/latex/textopo/textopo.txt details="Notes on the distribution" +srccontainersize 81908 +srccontainerchecksum d426490fee0b747726dfd7df1f6f72677c9aee3d8ba56ec04dd55037aef563297d16d08a821c2e9a1493c5c29ad6b52c5af23b6bb1f4adec754bf530beb81571 srcfiles size=123 RELOC/source/latex/textopo/textopo.dtx RELOC/source/latex/textopo/textopo.ins +runfiles size=67 + RELOC/tex/latex/textopo/biotex.sty + RELOC/tex/latex/textopo/textopo.def + RELOC/tex/latex/textopo/textopo.sty catalogue-ctan /macros/latex/contrib/textopo -catalogue-date 2011-09-27 20:18:06 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics molbio chemistry catalogue-version 1.5 name textpath category Package revision 15878 -shortdesc Setting text along a path with MetaPost. +shortdesc Setting text along a path with MetaPost relocated 1 longdesc This MetaPost package provides macros to typeset text along a longdesc free path with the help of LaTeX, thereby preserving kerning longdesc and allowing for 8-bit input (accented characters). -runfiles size=5 - RELOC/metapost/textpath/textpath.mp - RELOC/tex/latex/textpath/textpathmp.sty +containersize 4328 +containerchecksum 7780972480a1355a05cbcca3c46f3e5284b120a93ed2265f0fcceb6965f55ed793756cf96df63aa8da589dd12fe1b8127bd470077b9f9dda758238ced566b3e6 +doccontainersize 237628 +doccontainerchecksum 5507082be0235ec2253ddc0b03e239607b9d140952799684e5193e4d3d584846d33a59aa9b1630d058f17cacf7cedd2fe0a180b40207ea8f10947b534784fc02 docfiles size=77 RELOC/doc/metapost/textpath/CHANGES - RELOC/doc/metapost/textpath/README - RELOC/doc/metapost/textpath/textpath.pdf + RELOC/doc/metapost/textpath/README details="README file" + RELOC/doc/metapost/textpath/textpath.pdf details="Package documentation" RELOC/doc/metapost/textpath/textpath.tex RELOC/doc/metapost/textpath/textpathfigs.mp RELOC/doc/metapost/textpath/textpathfigs.tex +runfiles size=5 + RELOC/metapost/textpath/textpath.mp + RELOC/tex/latex/textpath/textpathmp.sty +catalogue-also pst-text catalogue-ctan /graphics/metapost/contrib/macros/textpath -catalogue-date 2012-06-27 22:19:02 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics graphics-text catalogue-version 1.6 name textpos category Package -revision 32571 -shortdesc Place boxes at arbitrary positions on the LaTeX page. +revision 50988 +shortdesc Place boxes at arbitrary positions on the LaTeX page relocated 1 longdesc A package to facilitate placement of boxes at absolute longdesc positions on the LaTeX page. There are several reasons why this longdesc might be useful, an important one being to help the creation of -longdesc large-format conference posters. -runfiles size=3 - RELOC/tex/latex/textpos/textpos.sty -docfiles size=90 +longdesc large-format conference posters. The package depends on +longdesc everyshi and keyval. +containersize 3944 +containerchecksum 430c373d2c228615ecc9c46c10a99ce5394ff0497e9a375eec3c4e409452e006979501f7d18c5f603055c9ddb57b7c0687cf0a9273761d23aec75ed64c032200 +doccontainersize 315020 +doccontainerchecksum 5fdd14982f8b783f6b42197fb483eebb62f40c7e6f80648cfe7b7a356ae3fd243b4133a050cd84d2c8893460c15e717a21a70a5e1e0e31d52275f4a206956eb9 +docfiles size=98 RELOC/doc/latex/textpos/LICENCE - RELOC/doc/latex/textpos/README - RELOC/doc/latex/textpos/VERSION-1.7j - RELOC/doc/latex/textpos/examples/README-examples + RELOC/doc/latex/textpos/README details="Package README" + RELOC/doc/latex/textpos/VERSION-1.9.1 + RELOC/doc/latex/textpos/examples/README.examples RELOC/doc/latex/textpos/examples/t1.tex + RELOC/doc/latex/textpos/examples/t10.tex RELOC/doc/latex/textpos/examples/t2.tex RELOC/doc/latex/textpos/examples/t3.tex RELOC/doc/latex/textpos/examples/t4.tex @@ -161580,476 +275102,96 @@ docfiles size=90 RELOC/doc/latex/textpos/examples/t6.tex RELOC/doc/latex/textpos/examples/t7.tex RELOC/doc/latex/textpos/examples/t8.tex - RELOC/doc/latex/textpos/niepraschk-eso-pic.pdf + RELOC/doc/latex/textpos/examples/t9.tex + RELOC/doc/latex/textpos/niepraschk-eso-pic.pdf details="Demo file: textpos with eso-pic" RELOC/doc/latex/textpos/niepraschk-eso-pic.tex RELOC/doc/latex/textpos/textpos-example.tex - RELOC/doc/latex/textpos/textpos.html - RELOC/doc/latex/textpos/textpos.pdf -srcfiles size=17 + RELOC/doc/latex/textpos/textpos.html details="Version history, etc. (HTML)" + RELOC/doc/latex/textpos/textpos.pdf details="Package documentation (PDF)" +srccontainersize 22860 +srccontainerchecksum c4afcb5134b7618a9397f40e6e633d126f2803e15783b9ce6a26c82fb21d0ad226d65fa9e90e60ca5a1ccbaaa3a436712ee15d8fd13a6acc5cae7af8150da6cc +srcfiles size=21 RELOC/source/latex/textpos/textpos.drv RELOC/source/latex/textpos/textpos.dtx RELOC/source/latex/textpos/textpos.ins +runfiles size=3 + RELOC/tex/latex/textpos/textpos.sty +catalogue-contact-bugs https://bitbucket.org/nxg/textpos/issues/ +catalogue-contact-home http://purl.org/nxg/dist/textpos +catalogue-contact-repository https://bitbucket.org/nxg/textpos/ catalogue-ctan /macros/latex/contrib/textpos -catalogue-date 2014-01-04 08:41:38 +0100 -catalogue-license gpl -catalogue-version 1.7j +catalogue-date 2019-04-16 15:36:26 +0200 +catalogue-license lppl1.3 +catalogue-topics layout +catalogue-version 1.9.1 -name tex-virtual-academy-pl +name textualicomma category Package -revision 34177 +revision 48474 +shortdesc Use the textual comma character as decimal separator in math mode relocated 1 -docfiles size=837 - RELOC/doc/generic/tex-virtual-academy-pl/README - RELOC/doc/generic/tex-virtual-academy-pl/context/context.html - RELOC/doc/generic/tex-virtual-academy-pl/context/tytuly.html - RELOC/doc/generic/tex-virtual-academy-pl/cototex.html - RELOC/doc/generic/tex-virtual-academy-pl/fonty/back.gif - RELOC/doc/generic/tex-virtual-academy-pl/fonty/font-abc.html - RELOC/doc/generic/tex-virtual-academy-pl/fonty/fonts_inst.html - RELOC/doc/generic/tex-virtual-academy-pl/fonty/index.html - RELOC/doc/generic/tex-virtual-academy-pl/fonty/nfss.html - RELOC/doc/generic/tex-virtual-academy-pl/fonty/qx-info.html - RELOC/doc/generic/tex-virtual-academy-pl/fonty/qx-table1.html - RELOC/doc/generic/tex-virtual-academy-pl/fonty/qx-table2.html - RELOC/doc/generic/tex-virtual-academy-pl/fonty/tpstyle.css - RELOC/doc/generic/tex-virtual-academy-pl/gify/artykul.gif - RELOC/doc/generic/tex-virtual-academy-pl/gify/context.gif - RELOC/doc/generic/tex-virtual-academy-pl/gify/cop.gif - RELOC/doc/generic/tex-virtual-academy-pl/gify/grupa.gif - RELOC/doc/generic/tex-virtual-academy-pl/gify/gust.gif - RELOC/doc/generic/tex-virtual-academy-pl/gify/gustloge.gif - RELOC/doc/generic/tex-virtual-academy-pl/gify/indexowanie.gif - RELOC/doc/generic/tex-virtual-academy-pl/gify/latex2e.gif - RELOC/doc/generic/tex-virtual-academy-pl/gify/lew-7vs.gif - RELOC/doc/generic/tex-virtual-academy-pl/gify/lew.gif - RELOC/doc/generic/tex-virtual-academy-pl/gify/mail.gif - RELOC/doc/generic/tex-virtual-academy-pl/gify/podpis.gif - RELOC/doc/generic/tex-virtual-academy-pl/gify/prog.gif - RELOC/doc/generic/tex-virtual-academy-pl/gify/tex.gif - RELOC/doc/generic/tex-virtual-academy-pl/gify/texologia.gif - RELOC/doc/generic/tex-virtual-academy-pl/gify/wa.gif - RELOC/doc/generic/tex-virtual-academy-pl/idx/day.html - RELOC/doc/generic/tex-virtual-academy-pl/idx/decode.html - RELOC/doc/generic/tex-virtual-academy-pl/idx/dies.html - RELOC/doc/generic/tex-virtual-academy-pl/idx/fig1.gif - RELOC/doc/generic/tex-virtual-academy-pl/idx/flags.html - RELOC/doc/generic/tex-virtual-academy-pl/idx/id.html - RELOC/doc/generic/tex-virtual-academy-pl/idx/index.html - RELOC/doc/generic/tex-virtual-academy-pl/idx/jedn.html - RELOC/doc/generic/tex-virtual-academy-pl/idx/lang.html - RELOC/doc/generic/tex-virtual-academy-pl/idx/lower.html - RELOC/doc/generic/tex-virtual-academy-pl/idx/mil.html - RELOC/doc/generic/tex-virtual-academy-pl/idx/mon.html - RELOC/doc/generic/tex-virtual-academy-pl/idx/name.html - RELOC/doc/generic/tex-virtual-academy-pl/idx/order.html - RELOC/doc/generic/tex-virtual-academy-pl/idx/plmindex.html - RELOC/doc/generic/tex-virtual-academy-pl/idx/porzadek.html - RELOC/doc/generic/tex-virtual-academy-pl/idx/program.html - RELOC/doc/generic/tex-virtual-academy-pl/idx/setki.html - RELOC/doc/generic/tex-virtual-academy-pl/idx/spec.html - RELOC/doc/generic/tex-virtual-academy-pl/idx/tex-idx.gif - RELOC/doc/generic/tex-virtual-academy-pl/idx/toascii.html - RELOC/doc/generic/tex-virtual-academy-pl/idx/typy.html - RELOC/doc/generic/tex-virtual-academy-pl/idx/tys.html - RELOC/doc/generic/tex-virtual-academy-pl/idx/upper.html - RELOC/doc/generic/tex-virtual-academy-pl/index.html - RELOC/doc/generic/tex-virtual-academy-pl/kuchnia/hist.html - RELOC/doc/generic/tex-virtual-academy-pl/kuchnia/tex.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/latex2e.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/desc_p1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/desc_p2.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/desc_p3.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/desc_p4.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/description.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/description.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/enum_p1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/enum_p2.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/enumerate.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/enumerate.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/item_p1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/item_p2.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/itemize.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/itemize.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/klopoty.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/list.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/lista_p.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/porzadek.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/listy/standard.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/3parttab.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/3parttable.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/BAhhline.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/EASYEQN2.PNG - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/EASYEQN5.PNG - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/EASYEQN7.PNG - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/accent.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/accents.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/acromake.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/acromake.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/afterpage.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/alltt.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/amsthm.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/amsthm1.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/amsthm2.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/arabic.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/array.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/balance.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bar.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bar1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bar2.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbm.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbm1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbm2.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbm3.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbm4.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbm5.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbm6.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbma.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bbmb.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk1.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk2.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk3.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk4.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk5.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk6.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk7.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk8.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blk9.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/blkarray.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bm.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/bophook.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/boxedminipage.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/boxm.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/calc.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/calc1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/calc2.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/capt-of.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/caption.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/caption2.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/case1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/case2.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/cases.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ccapt1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ccaption.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/changebar.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/chapterbib.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/cite.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/color.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/color.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/colortbl.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/comma.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/cute.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/cute1.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/cuted.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/dblcol.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/dblfnote.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/dcolumn.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/delarray.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/delarray.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq10.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq11.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq12.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq13.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq14.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq15.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq2.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq3.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq4.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq5.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq6.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq7.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq8.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/deleq9.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/diam.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/dotseqn.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/dotseqn.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/dow.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/drftcite.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/dropp1.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/dropping.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn1.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn10.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn11.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn12.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn13.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn14.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn15.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn16.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn17.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn3.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn4.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn6.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn8.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn9.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ellipsis.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/endfloat.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/enum.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/enumerate.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/enumitem.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/epsfig.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/everyship.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/expdlist.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/exscale.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/extmath.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/extramarks.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancb1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancb2.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancb3.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancb4.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancb5.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancb6.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancb7.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancb8.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancybox.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancyhdr.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fancyheading.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/filecontents.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/flafter.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/float.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/floatflt.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/floatpag.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/flt1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/flt2.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fltpage.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/flushend.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fn2end.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fnpara.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fnpara.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fnpos.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/footmisc.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/footmisc1.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/footmisc2.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/footnpag.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/fp.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/framed.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ftnright.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/geom1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/geom1.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/geom2.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/geometry.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/graphicx.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/graphpaper.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harp1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harp2.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harp3.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harp4.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harp5.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harp6.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harp7.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harp8.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/harpoon.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/heart.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/here.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/hhline.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/hhline.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/hyperref.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ifthen.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ifthen1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ifthen2.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/indentfirst.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/index.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/labeldeb.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/lastpage.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/lcg.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/legend.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/letter.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/letterspace.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/listpart.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/localloc.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/longtable.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/lscape.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/lt1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ltablex.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ltabptch.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ltxtable.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/macro.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/macro_t.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/manyfoot.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/manyfoot1.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/minitoc.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/moje_typy.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/moreverb.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/mparhack.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multfoot.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multfoot1.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multfoot2.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multibox.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multibox.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multicol.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multirow.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multirow1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multirow2.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multirow3.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multirow4.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/multirow5.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/mycss.css - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/num.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/numprint.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/nut.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/oldst1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/oldstyle.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/oubraces.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/overbrace.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/overbrace1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/pdfscreen.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/pdfslide.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/pfnote.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/plain.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/printtim.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/pstcol.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/q1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/qobitree.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ragged2e.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/regcount.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/relsize.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/removefromreset.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/rotate.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/rotating.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/rotbox.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/selectpage.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/shadepar.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/shadetheorem.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/shadethm.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/shadethm.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/shadow.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/shapepar.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/shedbox.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/shortvrb.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/showkeys.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/sidecap.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/squa.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/stm1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/stm2.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/stm3.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/stm4.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/stmaryrd.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/sube1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subeqn-1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subeqn-2.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subeqn-3.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subeqn.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subeqna.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subeqnarray.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subfig.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subfigure.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subfloat.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/sublabel.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/sublabel.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/subscript.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/supertabular.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/sverb.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/sverb_n.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/sverb_w.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/tabularx.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/tabularx.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/theorem.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/theorem.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/threeparttable.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/time.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ulem.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ulem.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/ulem1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/umoline.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/undertilde-1.png - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/undertilde.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/url.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/verbatim.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/verbdef.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/verbt.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/verbt1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/verbt2.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/version.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/vfrlocal.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/vmargin.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/vrbexin.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/vrflocal.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/wiggly.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/wmcropmark.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/wrapf.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/wrapfig.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/xr.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/xspace.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/xspace1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/xspace2.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/macro/xtab.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/spisy/chap.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/spisy/l_chap.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/spisy/l_sec.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/spisy/spis.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/spisy/spis.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/chapter.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/count.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/liczniki.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/num.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p1.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p2.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p3.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p3.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p4.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p4.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p5.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p5.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p6.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p6.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p7.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/p7.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/part.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/poziom.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/s.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/sect.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tc.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tc.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tca.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tl.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tl.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tr.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tr.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tx.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tx.html - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/txx.gif - RELOC/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/txx.html - RELOC/doc/generic/tex-virtual-academy-pl/poczatki/index.html - RELOC/doc/generic/tex-virtual-academy-pl/poczatki/latex-pl.html - RELOC/doc/generic/tex-virtual-academy-pl/poczatki/mex.html - RELOC/doc/generic/tex-virtual-academy-pl/poczatki/spw.html - RELOC/doc/generic/tex-virtual-academy-pl/poczatki/tetex.html - RELOC/doc/generic/tex-virtual-academy-pl/poczatki/web2c.html - RELOC/doc/generic/tex-virtual-academy-pl/podstawy/2-0wst1.html - RELOC/doc/generic/tex-virtual-academy-pl/podstawy/2-1coto.html - RELOC/doc/generic/tex-virtual-academy-pl/podstawy/2-1kazio.html - RELOC/doc/generic/tex-virtual-academy-pl/podstawy/2-1przyg.html - RELOC/doc/generic/tex-virtual-academy-pl/podstawy/2-1zece.html - RELOC/doc/generic/tex-virtual-academy-pl/podstawy/bib.html - RELOC/doc/generic/tex-virtual-academy-pl/podstawy/spis.html - RELOC/doc/generic/tex-virtual-academy-pl/podstawy/tex.html - RELOC/doc/generic/tex-virtual-academy-pl/podstawy/title.html - RELOC/doc/generic/tex-virtual-academy-pl/prog/auctex.html - RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex-1.html - RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex-2.html - RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex-3.html - RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex-4.html - RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex-5.html - RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex-6.html - RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex-7.html - RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex-8.html - RELOC/doc/generic/tex-virtual-academy-pl/prog/bibtex/bibtex.html - RELOC/doc/generic/tex-virtual-academy-pl/prog/dvidvi.html - RELOC/doc/generic/tex-virtual-academy-pl/prog/dvistro1.gif - RELOC/doc/generic/tex-virtual-academy-pl/prog/dvistro2.gif - RELOC/doc/generic/tex-virtual-academy-pl/prog/hyph.html - RELOC/doc/generic/tex-virtual-academy-pl/prog/prog.html - RELOC/doc/generic/tex-virtual-academy-pl/tex/fermat.gif - RELOC/doc/generic/tex-virtual-academy-pl/tex/odsylacze.html - RELOC/doc/generic/tex-virtual-academy-pl/tex/tex.html - RELOC/doc/generic/tex-virtual-academy-pl/tex/tex_key.html - RELOC/doc/generic/tex-virtual-academy-pl/tex/tryby.html +longdesc The package is based on the icomma package, and intended as a +longdesc solution for situations where the text comma character discerns +longdesc from the math comma character, e. g. when fonts whithout math +longdesc support are involved. Escaping to text mode every time a comma +longdesc is used in math mode may slow down the compilation process. +containersize 2008 +containerchecksum 044ef3451267bcb74d3e4162d19915b1b7f2fac337af6faae7d3dcd630bc9be8484fa155a3579ad5245ce1f07578d8faada2e6a67830edb09b332714a95f2e9e +doccontainersize 118032 +doccontainerchecksum 6e6c380eb0169878a34d3d40fea47bc57885c7ea378ffd2d2a7e9bf26826dd922f67a02e74d6c78801cecb87b18de3ab52b7600623de39c53954ed568c57eadf +docfiles size=30 + RELOC/doc/latex/textualicomma/README.md details="Readme" + RELOC/doc/latex/textualicomma/textualicomma-doc.pdf details="Package documentation" +srccontainersize 5352 +srccontainerchecksum 69f6594a039c9b367e48430927298768f816ba31a7bcc41036111963c5e9059dfbde6b771ab7dcbfddb6e40dc49b2daa1d1ae04625a31ae44b8ba340c42d3f58 +srcfiles size=6 + RELOC/source/latex/textualicomma/textualicomma-doc.dtx + RELOC/source/latex/textualicomma/textualicomma.dtx + RELOC/source/latex/textualicomma/textualicomma.ins +runfiles size=1 + RELOC/tex/latex/textualicomma/textualicomma.sty +catalogue-also icomma +catalogue-contact-bugs https://gitlab.com/SFr682k/textualicomma/issues +catalogue-contact-repository https://gitlab.com/SFr682k/textualicomma +catalogue-ctan /macros/latex/contrib/textualicomma +catalogue-date 2018-08-23 23:17:44 +0200 +catalogue-license lppl1.3c +catalogue-topics typesetting maths +catalogue-version 1.1 + +name texvc +category Package +revision 46844 +shortdesc Use MediaWiki LaTeX commands +relocated 1 +longdesc User MediaWiki LaTeX commands to copy and past formulae from +longdesc MediaWiki to LaTeX documents. +containersize 1544 +containerchecksum cc149d490180e58e9796ae0bc962e51794400384671eee53c932acef88512a129dc3d87ea4378247813acbd3ead010014ab71bd1717b6edb0bef4b7856be8aeb +doccontainersize 252440 +doccontainerchecksum e8639a2ffdd2d40b27545c3f4265e473bfbd81a028632a082199fb0dba7ea0b0468bdae488a9eeea63578bdd610f7e16d4f4da846f9316dabf5645af95fc8cab +docfiles size=67 + RELOC/doc/latex/texvc/LICENSE + RELOC/doc/latex/texvc/README.md details="Readme" + RELOC/doc/latex/texvc/texvc.pdf details="Package documentation" +srccontainersize 4016 +srccontainerchecksum 4bbcf12af602c328084e76e339d9ca33c205f08faf489be3008fa5fe0b424631e940baee1da9144fafac42e09fd2d27a7726c16e159cfe24c70d32ae1014d198 +srcfiles size=7 + RELOC/source/latex/texvc/texvc.dtx + RELOC/source/latex/texvc/texvc.ins +runfiles size=1 + RELOC/tex/latex/texvc/texvc.sty +catalogue-contact-repository https://github.com/ag-gipp/texvc-latex +catalogue-ctan /macros/latex/contrib/texvc +catalogue-date 2018-03-05 12:45:06 +0100 +catalogue-license lppl1.3 +catalogue-topics foreign-import +catalogue-version 1.1 name texware category TLCore -revision 37078 -shortdesc Utility programs for use with TeX. +revision 50602 +shortdesc Utility programs for use with TeX longdesc Basic utitility programs, comprising: - dvitype, which converts longdesc a TeX output (DVI) file to a plain text file (see also the DVI longdesc Text Language suite); - pooltype, which converts a TeX-suite @@ -162057,39 +275199,212 @@ longdesc program's "pool" (string) file into human-readable form; and - longdesc tftopl and pltotf, which convert TeX Font Metric (TFM) file to longdesc human readable Property List (PL) files and vice versa. depend texware.ARCH -docfiles size=5 +containersize 668 +containerchecksum cc66e87d459fb04070b0c43c16f3412ea22e3cf8a2748efb8a87fb0417bf0b9caa32a38147a9dd068d7ad0d25e320dc78ac54d9004cf5adef337ed0a90e52923 +doccontainersize 34600 +doccontainerchecksum a8ef6e6a062140ca6ab3311b7e57f452bbbb0eddebe36d02cd8122141320814508438d764a97d351febf9f65a5539b03774f611e9bfdcb5abdc5fa989fc5a848 +docfiles size=13 texmf-dist/doc/man/man1/dvitype.1 texmf-dist/doc/man/man1/dvitype.man1.pdf texmf-dist/doc/man/man1/pooltype.1 texmf-dist/doc/man/man1/pooltype.man1.pdf +catalogue-contact-bugs http://lists.tug.org/tex-k +catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-contact-support http://lists.tug.org/tex-k catalogue-ctan /systems/knuth/dist/texware -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-12-31 06:12:45 +0100 catalogue-license knuth +catalogue-topics debug-supp + +name texware.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of texware +containersize 45032 +containerchecksum 71a566f822c4748eaf23c9b5cde983dbc2c33203fec8739f4e5f6818ad06383b87f1e96ac3ca2446177055ba111d04630220cb172dfd57cf5d6a4b6c5c956756 +binfiles arch=aarch64-linux size=35 + bin/aarch64-linux/dvitype + bin/aarch64-linux/pooltype + +name texware.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of texware +containersize 53964 +containerchecksum 9448acb43bc93fc3ae37589ed5ce9f0ce660e7261abc04ab18e0f664a98f966cdfceaf63556b9ac432d85a5c239bbed40894f3519287bb593cab51c9a0a57348 +binfiles arch=amd64-freebsd size=37 + bin/amd64-freebsd/dvitype + bin/amd64-freebsd/pooltype + +name texware.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of texware +containersize 47416 +containerchecksum 795ee07f1f6e50b53c382b68f465cf658d0d49492e0a73feca322c8f4a5f844c5b413b2f71fe78b27ea819c118506192392047d5dbaefeebcbfe1a12744da633 +binfiles arch=amd64-netbsd size=42 + bin/amd64-netbsd/dvitype + bin/amd64-netbsd/pooltype + +name texware.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of texware +containersize 40764 +containerchecksum 3e05794c5b2e5ff7b77d91e9705708b52440f57ff0b8489f7f735259fda4447fd4820d2ba8835da6df6c370a1967b1819242905b37cd7b6cf9fcb245bbf9ae45 +binfiles arch=armhf-linux size=28 + bin/armhf-linux/dvitype + bin/armhf-linux/pooltype + +name texware.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of texware +containersize 17604 +containerchecksum d4aa9819218e7a98f888f2455ce57d4ce61245c4f199f08cfda2f5f2c023f8237555128ad5650cc6b7f109b77d0852d0f50f49560fc2a00e377c92943e675c65 +binfiles arch=i386-cygwin size=15 + bin/i386-cygwin/dvitype.exe + bin/i386-cygwin/pooltype.exe + +name texware.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of texware +containersize 44116 +containerchecksum 72b5ccf138c931ec9202dbfd84aeb7bce252c1c75ee0c0b630fc97694df50a6fabf26ef7377cc4859a512fe509726f98fff5f421d46894c220e49490da1b2c5a +binfiles arch=i386-freebsd size=29 + bin/i386-freebsd/dvitype + bin/i386-freebsd/pooltype name texware.i386-linux category TLCore -revision 36790 +revision 50281 shortdesc i386-linux files of texware -binfiles arch=i386-linux size=43 +containersize 50576 +containerchecksum 16b53bc926666e3e974126a8fe7d4b3d39cdd9a2f4d7c2fd57fb7a3d6b4c76f5f8835d73de037e1f3d1a1246faaf844978d1dc4b2a2efd0dfd9f3c6520a660e0 +binfiles arch=i386-linux size=36 bin/i386-linux/dvitype bin/i386-linux/pooltype +name texware.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of texware +containersize 42420 +containerchecksum 0091aa7029eb580ae7fab2713048f6ad6d3c222c26d00e762ef03f034be78c877f37cc9c9780db642381bacc205983f0fc82b450f34d67edf75894faeffa061c +binfiles arch=i386-netbsd size=38 + bin/i386-netbsd/dvitype + bin/i386-netbsd/pooltype + +name texware.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of texware +containersize 50476 +containerchecksum 68235c4bde0a7bf0cbe1610733a18d3b6d76860d8af99339b9ab9bde5cb46df607012b6b4dec0f7484a885b568913cfdcffce3bfb23c6a0e0f4c8f93ac0686a3 +binfiles arch=i386-solaris size=34 + bin/i386-solaris/dvitype + bin/i386-solaris/pooltype + +name texware.win32 +category TLCore +revision 50155 +shortdesc win32 files of texware +containersize 18892 +containerchecksum 32f7e237c00a9931b8132550b0b39265b027a6794e3ec3f275b9664bb2882e3a585d1cdb74270251362e178428e064ec818afa8a3f3475fd0f2d48813cfe3088 +binfiles arch=win32 size=12 + bin/win32/dvitype.exe + bin/win32/pooltype.exe + +name texware.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of texware +containersize 20180 +containerchecksum 919e3666c88ec0c0fef0ced967b2c830b91e8ac29da2c8382d35396f61e607c95054bbf3aaeffb468ed098ff7a600ed5deb6513d24ab714d643ea7a77beffa7b +binfiles arch=x86_64-cygwin size=15 + bin/x86_64-cygwin/dvitype.exe + bin/x86_64-cygwin/pooltype.exe + +name texware.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of texware +containersize 52856 +containerchecksum 177f4875c43f3b8b9663c12c8d4b93904c16831772f340be2490cc22942ce788a23c150515c25dd0fe0cd1db3fef7cf810eae1a32dfa07bbe73c11c12d0bad25 +binfiles arch=x86_64-darwin size=35 + bin/x86_64-darwin/dvitype + bin/x86_64-darwin/pooltype + +name texware.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of texware +containersize 51304 +containerchecksum c06ae714b4d20c36985177a9a768d944239572caa56974cf9cc41cb3e4f41f04f8ae5b55150e7872aedc8efefe22445acc7d25bbc12b5be005ffd007143d86a6 +binfiles arch=x86_64-darwinlegacy size=35 + bin/x86_64-darwinlegacy/dvitype + bin/x86_64-darwinlegacy/pooltype + +name texware.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of texware +containersize 50036 +containerchecksum 0a3444b9fae0c1409599ed911d1bf3add8fae89154de6abd99aeccd0a38096ea2a3af5e701c08ec3db27edee615d3600479a432ba76adcca84a24ad641053d53 +binfiles arch=x86_64-linux size=33 + bin/x86_64-linux/dvitype + bin/x86_64-linux/pooltype + +name texware.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of texware +containersize 55628 +containerchecksum 1ada2f1e8c673fb041f8cc0c9550f76cfb6ffef4adb5b358886cfc243a32bbc303bb0d148a226b5623d973211d90aee49740c44659bd73d63aa2161d26d47e1c +binfiles arch=x86_64-linuxmusl size=39 + bin/x86_64-linuxmusl/dvitype + bin/x86_64-linuxmusl/pooltype + +name texware.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of texware +containersize 55980 +containerchecksum d9f8e92fef63f8da917279296f55681f8e5eae8b564bf96f477df9934dbaa7d4fa3d41171d4cdb9bdbca162278e0ae1a5d57d92ea01daf42448f82e8222af7ba +binfiles arch=x86_64-solaris size=39 + bin/x86_64-solaris/dvitype + bin/x86_64-solaris/pooltype + name texworks category TLCore -revision 37429 -shortdesc Cross-platform friendly front end. +revision 45650 +shortdesc friendly cross-platform front end longdesc See http://tug.org/texworks for information and downloads. TeX -longdesc Live includes executables only for Windows. +longdesc Live includes executables and support files only for Windows. depend texworks.ARCH postaction shortcut type=menu name="TeXworks editor" cmd=TEXDIR/bin/win32/texworks.exe postaction filetype name=TL.TeXworks.edit cmd='"TEXDIR/bin/win32/texworks.exe" "%1"' postaction fileassoc extension=.tex filetype=TL.TeXworks.edit postaction fileassoc extension=.sty filetype=TL.TeXworks.edit postaction fileassoc extension=.cls filetype=TL.TeXworks.edit -runfiles size=4730 +containersize 492 +containerchecksum 06184922ee1dfb3fd6029d10d3bffa984aa7e1970d7439075678490f604d3d357e2b5b8d3cee4c941b5f43308006c53a816d015a61f0e9fa81a24d21593ff43b +doccontainersize 732 +doccontainerchecksum 35bb50b86efa5f8842778f47b9f2c6863f6475f396e72d0cd34e6d6fcc4c2f103622904ebb27baa59f9ada014197e47bfb6537a391705c894ed669a7a92271f1 +docfiles size=1 + texmf-dist/doc/texworks/README + +name texworks.win32 +category TLCore +revision 50414 +shortdesc win32 files of texworks +containersize 15804712 +containerchecksum 630dc884e6110cd6169ca95c2b5baca6b51f6976524f8e7acfbe5f56dc73e390e5cb8a49ec6a0a600f2a2f8a8fe10259860ad5be37be2919d40e760fd8f8d562 +binfiles arch=win32 size=11510 + bin/win32/texworks.exe tlpkg/texworks/COPYING tlpkg/texworks/README.txt - tlpkg/texworks/lua52.dll tlpkg/texworks/share/fonts/README tlpkg/texworks/share/fonts/d050000l.pfb tlpkg/texworks/share/fonts/s050000l.pfb @@ -162106,6 +275421,7 @@ runfiles size=4730 tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-4 tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-5 tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-6 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-7 tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-B5pc tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-ETen-B5 tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-H-CID @@ -162393,7 +275709,7 @@ runfiles size=4730 tlpkg/texworks/texworks-help/TeXworks-manual/en/images/toolbar2.png tlpkg/texworks/texworks-help/TeXworks-manual/en/index.css tlpkg/texworks/texworks-help/TeXworks-manual/en/index.html - tlpkg/texworks/texworks-help/TeXworks-manual/en/index10.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index11.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index12.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index13.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index14.html @@ -162404,7 +275720,7 @@ runfiles size=4730 tlpkg/texworks/texworks-help/TeXworks-manual/en/index19.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index2.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index20.html - tlpkg/texworks/texworks-help/TeXworks-manual/en/index21.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index22.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index23.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index24.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index25.html @@ -162412,23 +275728,22 @@ runfiles size=4730 tlpkg/texworks/texworks-help/TeXworks-manual/en/index27.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index28.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index29.html - tlpkg/texworks/texworks-help/TeXworks-manual/en/index30.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index31.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index32.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index33.html - tlpkg/texworks/texworks-help/TeXworks-manual/en/index34.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index35.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index36.html - tlpkg/texworks/texworks-help/TeXworks-manual/en/index37.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index39.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index40.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index41.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index42.html - tlpkg/texworks/texworks-help/TeXworks-manual/en/index43.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index44.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index45.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index46.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index47.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index48.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index49.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index5.html - tlpkg/texworks/texworks-help/TeXworks-manual/en/index50.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index6.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index8.html tlpkg/texworks/texworks-help/TeXworks-manual/en/index9.html @@ -162481,7 +275796,7 @@ runfiles size=4730 tlpkg/texworks/texworks-help/TeXworks-manual/fr/index.css tlpkg/texworks/texworks-help/TeXworks-manual/fr/index.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index10.html - tlpkg/texworks/texworks-help/TeXworks-manual/fr/index11.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index12.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index13.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index14.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index15.html @@ -162493,7 +275808,7 @@ runfiles size=4730 tlpkg/texworks/texworks-help/TeXworks-manual/fr/index20.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index21.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index22.html - tlpkg/texworks/texworks-help/TeXworks-manual/fr/index23.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index24.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index25.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index26.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index27.html @@ -162502,87 +275817,207 @@ runfiles size=4730 tlpkg/texworks/texworks-help/TeXworks-manual/fr/index30.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index31.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index32.html - tlpkg/texworks/texworks-help/TeXworks-manual/fr/index33.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index34.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index35.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index36.html - tlpkg/texworks/texworks-help/TeXworks-manual/fr/index37.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index38.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index39.html - tlpkg/texworks/texworks-help/TeXworks-manual/fr/index40.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index42.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index43.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index44.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index45.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index46.html - tlpkg/texworks/texworks-help/TeXworks-manual/fr/index47.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index48.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index49.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index5.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index50.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index51.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index52.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index53.html - tlpkg/texworks/texworks-help/TeXworks-manual/fr/index54.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index6.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index7.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/index9.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/indexname.html tlpkg/texworks/texworks-help/TeXworks-manual/fr/manual.css tlpkg/texworks/texworks-help/TeXworks-manual/fr/tw-help-title.txt -docfiles size=1 - texmf-dist/doc/texworks/README + tlpkg/texworks/texworks.exe name tfrupee category Package revision 20770 -shortdesc A font offering the new (Indian) Rupee symbol. +shortdesc A font offering the new (Indian) Rupee symbol relocated 1 longdesc The package provides LaTeX support for the (Indian) Rupee longdesc symbol font, created by TechFat. The original font has been longdesc converted to Adobe Type 1 format, and simple LaTeX support longdesc written for its use. execute addMap tfrupee.map +containersize 601352 +containerchecksum ee935ea5c6563fd8da4f403a1c3583b289b64e212aed4b9e3703ec345dc47c5521d291e1ae0a10c9aec2ebfed407fbf14e804bf51ae4c4a1e03046fc7cd0ad5c +doccontainersize 113240 +doccontainerchecksum 19da18d665a8369e58a26d4e979d5fd6c8b3187dfba97a281008627aeb8c5ee824dc2ad3f5c94c3b35c67fe28a646f44aa5f532912de5f5640b0a7d56afec2f8 +docfiles size=37 + RELOC/doc/fonts/tfrupee/LICENSE + RELOC/doc/fonts/tfrupee/README details="Readme" + RELOC/doc/fonts/tfrupee/tfrupee.pdf details="Package documentation" + RELOC/doc/fonts/tfrupee/tfrupee.tex +srccontainersize 538548 +srccontainerchecksum 30133dbf65f1a33f79ad8b2c8ee84ff376b39d12cf0d48c4e72e86b393e0d55f5768c7af5f5f3f6ff1d78fe2c7d4f2b09d2980107dd5aa1d94fb5ea27545ee9d +srcfiles size=1020 + RELOC/source/fonts/tfrupee/tfrupee.sfd runfiles size=191 RELOC/fonts/afm/public/tfrupee/tfrupee.afm RELOC/fonts/map/dvips/tfrupee/tfrupee.map RELOC/fonts/tfm/public/tfrupee/tfrupee.tfm RELOC/fonts/type1/public/tfrupee/tfrupee.pfb RELOC/tex/latex/tfrupee/tfrupee.sty -docfiles size=37 - RELOC/doc/fonts/tfrupee/LICENSE - RELOC/doc/fonts/tfrupee/README - RELOC/doc/fonts/tfrupee/tfrupee.pdf - RELOC/doc/fonts/tfrupee/tfrupee.tex -srcfiles size=1020 - RELOC/source/fonts/tfrupee/tfrupee.sfd catalogue-ctan /fonts/tfrupee -catalogue-date 2014-05-28 18:11:22 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl3 +catalogue-topics font font-type1 font-specialist catalogue-version 1.02 +name thaienum +category Package +revision 44140 +shortdesc Thai labels in enumerate environments +relocated 1 +longdesc This LaTeX package provides a command to use Thai numerals or +longdesc characters as labels in enumerate environments. Once the +longdesc package is loaded with \usepackage{thaienum} you can use labels +longdesc such as \thainum* or \thaimultialph* in conjunction with the +longdesc package enumitem. Concrete examples are given in the +longdesc documentation. +containersize 1556 +containerchecksum 25f6bd1e6e9586b261721b66b6b193c07f60dc074f7b7b1911b0a8ba4f33815c86945bcb3946ffe153f70f0dbaeec4dca8e5574f8369c754a6151fc271029f3b +doccontainersize 184444 +doccontainerchecksum 246dbb624a2e2e30bd5468c2596e7b3f7183c7dd9d03eda42fbed88fe51f16b53801ed39f85590d2739a93d48bc413fce5c52685d5425615f650b19f56013261 +docfiles size=58 + RELOC/doc/latex/thaienum/README.md details="Readme" + RELOC/doc/latex/thaienum/thaienum.pdf details="Package documentation" + RELOC/doc/latex/thaienum/thaienum.pre.tex + RELOC/doc/latex/thaienum/thaienum.tex +runfiles size=1 + RELOC/tex/latex/thaienum/thaienum.sty +catalogue-contact-bugs https://github.com/abhabongse/latex-thaienum/issues +catalogue-contact-repository https://github.com/abhabongse/latex-thaienum/ +catalogue-ctan /macros/latex/contrib/thaienum +catalogue-date 2017-06-06 19:56:03 +0200 +catalogue-license lppl1.3 +catalogue-topics thai list-enum numbers +catalogue-version 0.2 + +name thaispec +category Package +revision 46923 +shortdesc Thai Language Typesetting in XeLaTeX +relocated 1 +longdesc This package allows you to input Thai characters directly to +longdesc LaTeX documents and choose any (system wide) Thai fonts for +longdesc typesetting in XeLaTeX. It also tries to appropriately justify +longdesc paragraphs with no more external tools. Required packages are +longdesc fontspec, ucharclasses, polyglossia, setspace, datetime2, +longdesc kvoptions, fp, afterpackage, xstring, and xpatch. +containersize 3340 +containerchecksum 9ba72a1ea7dabc10fa424f6230d3ce217d9b9ce3009d019a6f1d6bdfb7bd4b7cbb44cf719882398c808a844ebdc65961857b91f694f36bb4804ca3d17c1b6f93 +doccontainersize 56996 +doccontainerchecksum 534901ba06432f56f644da26e11b96c078eda8f1cc716dd08e893b02df084d5d4fa40397ef635f91aeeea60c510849376edcaecb62c5e69a4e09976db2c9f82c +docfiles size=15 + RELOC/doc/latex/thaispec/README.md details="Readme" + RELOC/doc/latex/thaispec/thaispec.pdf details="Package documentation (Thai)" language="th" +srccontainersize 5940 +srccontainerchecksum 46d937ddb05dae9d678e23080de57096c1aee4b83cda8714e15a24c68c366d911c714f9723c0d234b11aec7dbd43c3fbedcd6acf5216f01a38bf34fb0e7145ec +srcfiles size=6 + RELOC/source/latex/thaispec/thaispec.dtx + RELOC/source/latex/thaispec/thaispec.ins +runfiles size=3 + RELOC/tex/latex/thaispec/thaispec.sty +catalogue-contact-home https://github.com/epsilonxe/LaTeX/tree/master/Packages/thaispec +catalogue-ctan /language/thai/thaispec +catalogue-date 2018-05-13 08:10:59 +0200 +catalogue-license lppl1.3 +catalogue-topics thai xetex +catalogue-version 0.3 + name thalie category Package -revision 34435 -shortdesc Typeset drama plays. +revision 50129 +shortdesc Typeset drama plays relocated 1 longdesc The package provides tools to typeset drama plays. It defines longdesc commands to introduce characters' lines, to render stage longdesc directions, to divide a play into acts and scenes and to build longdesc the dramatis personae automatically. -runfiles size=4 - RELOC/tex/latex/thalie/thalie.sty -docfiles size=94 - RELOC/doc/latex/thalie/README - RELOC/doc/latex/thalie/thalie.pdf -srcfiles size=15 +containersize 5052 +containerchecksum 1ea9207d5b9284f8e7571e9f802e0d0e9c600da3516d40bfe25067dfbf007b0a5c37642d4f24221e0d3cc89835542b3b230cbcac0f2151ac0bae95f2ffed1fa7 +doccontainersize 427448 +doccontainerchecksum c040c19fe0b4e5f18aac0d3edfb62ebbb04b83bab180302f412fd53c62648abc06485ba47d5bd69bbe5e47f946906607865db5fff7d177002924355f8826d8e5 +docfiles size=111 + RELOC/doc/latex/thalie/CHANGELOG.md + RELOC/doc/latex/thalie/LICENSE.txt + RELOC/doc/latex/thalie/README.md details="Readme" + RELOC/doc/latex/thalie/thalie.pdf details="Package documentation" +srccontainersize 18592 +srccontainerchecksum d1801a3d45cd95ba49636f399d183df8fb71a5cb054d9ce280c076d640ed28ca467a49c23b27de196908122bd12f4195de1f22444f45342cef3d74f6e0d4ddd5 +srcfiles size=19 RELOC/source/latex/thalie/thalie.dtx RELOC/source/latex/thalie/thalie.ins +runfiles size=9 + RELOC/tex/latex/thalie/thalie-english.trsl + RELOC/tex/latex/thalie/thalie-fallback.trsl + RELOC/tex/latex/thalie/thalie-french.trsl + RELOC/tex/latex/thalie/thalie-german.trsl + RELOC/tex/latex/thalie/thalie.sty +catalogue-also drama dramatist play +catalogue-contact-bugs https://framagit.org/spalax/thalie/issues +catalogue-contact-development https://framagit.org/spalax/thalie +catalogue-contact-home https://framagit.org/spalax/thalie +catalogue-contact-repository https://framagit.org/spalax/thalie catalogue-ctan /macros/latex/contrib/thalie -catalogue-date 2014-06-26 11:32:01 +0200 +catalogue-date 2019-02-24 23:46:17 +0100 catalogue-license lppl1.3 -catalogue-version 0.6 +catalogue-topics drama-script +catalogue-version 0.10a + +name theatre +category Package +revision 45363 +shortdesc A sophisticated package for typesetting stage plays +relocated 1 +longdesc This package enables the user to typeset stage plays in a way +longdesc that permits to create highly customized printouts for each +longdesc actor. +containersize 500 +containerchecksum d450ef176d5543581316ff36590eba2ed829a3f2b8a019fa8ca379af0ae2aa4df4e4e3068b52ed91edec4df33d08aa78b1f5f21d0fdf33d0aa718704e3de2851 +doccontainersize 124012 +doccontainerchecksum cb4920d5acfe0e1288c7d459d15b06b9ced1130b56ea92c9ed49376743cee7e3fbb694362bac51f2660269992d64717effc5d8e9f52a21337fe7eed51a4622f6 +docfiles size=56 + RELOC/doc/latex/theatre/README details="Readme" + RELOC/doc/latex/theatre/doc/Help_Theatre.pdf details="Package documentation (French and English)" + RELOC/doc/latex/theatre/doc/help_source/ExampleMacBeth.tex + RELOC/doc/latex/theatre/doc/help_source/Exemplelemaladeimaginaire.tex + RELOC/doc/latex/theatre/doc/help_source/HelpTheatre_en.tex + RELOC/doc/latex/theatre/doc/help_source/HelpTheatre_fr.tex + RELOC/doc/latex/theatre/doc/help_source/Help_Theatre.tex + RELOC/doc/latex/theatre/doc/help_source/ListeCommandesTheatre.tex + RELOC/doc/latex/theatre/doc/help_source/createrules.tex + RELOC/doc/latex/theatre/doc/help_source/creerlesroles.tex + RELOC/doc/latex/theatre/doc/help_source/util/chimakehelps.sty + RELOC/doc/latex/theatre/doc/help_source/util/languesetfonteslatex.tex + RELOC/doc/latex/theatre/doc/help_source/util/languesetfontesxetex.tex + RELOC/doc/latex/theatre/doc/help_source/util/monformatindex.ist + RELOC/doc/latex/theatre/tex/theatre.sty +catalogue-contact-home https://christian.hinque.fr/wp/latex/ +catalogue-ctan /macros/latex/contrib/theatre +catalogue-date 2017-09-22 05:04:31 +0200 +catalogue-license lppl1.2 +catalogue-topics drama-script +catalogue-version 0.1 name theoremref category Package revision 30640 -shortdesc References with automatic theorem names. +shortdesc References with automatic theorem names relocated 1 longdesc The theoremref package provides variants of the \label and \ref longdesc commands for theorem-like environments, capable of @@ -162590,47 +276025,152 @@ longdesc automatically typesetting references including the theorem name longdesc (apart from the theorem number). The scheme is particularly longdesc valuable if the author decides to change a lemma to a longdesc proposition or a theorem (or whatever). -runfiles size=3 - RELOC/tex/latex/theoremref/theoremref.sty +containersize 4124 +containerchecksum ec3f8bea432fc0a72d008884e8879bf22db5c2be3694d298828a493e1b4cde2dd591f35887e4aba646f44db47a75f87a08ec7e269cec77be66cb45798137c85a +doccontainersize 333032 +doccontainerchecksum ec478b840b200dd0e731545f039c8ac01d9f088b7644350cc3366aece722b924187ca0701ad15be3a428131bc3025d1af9bb0440e8a487e0272c8d7997924200 docfiles size=94 RELOC/doc/latex/theoremref/COPYING - RELOC/doc/latex/theoremref/README - RELOC/doc/latex/theoremref/theoremref-doc.pdf + RELOC/doc/latex/theoremref/README details="Readme" + RELOC/doc/latex/theoremref/theoremref-doc.pdf details="Package documentation" RELOC/doc/latex/theoremref/theoremref-doc.tex +runfiles size=3 + RELOC/tex/latex/theoremref/theoremref.sty catalogue-ctan /macros/latex/contrib/theoremref -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lpplgpl2 +catalogue-topics label-ref maths-theorem name thesis-ekf category Package -revision 36950 -shortdesc Thesis class for Eszterhazy Karoly College. +revision 51026 +shortdesc Thesis class for Eszterhazy Karoly University relocated 1 -longdesc The distribution contains the files to generate the thesis -longdesc class as well as three templates. -runfiles size=848 - RELOC/tex/latex/thesis-ekf/images/ekf-logo1.png - RELOC/tex/latex/thesis-ekf/images/ekf-logo2.pdf - RELOC/tex/latex/thesis-ekf/images/ekf-logo3.pdf - RELOC/tex/latex/thesis-ekf/images/ekf-logo4.pdf - RELOC/tex/latex/thesis-ekf/images/ekf-logo5.pdf - RELOC/tex/latex/thesis-ekf/thesis-ekf.cls -docfiles size=567 - RELOC/doc/latex/thesis-ekf/README - RELOC/doc/latex/thesis-ekf/szakdolgozat1.pdf - RELOC/doc/latex/thesis-ekf/szakdolgozat1.tex - RELOC/doc/latex/thesis-ekf/szakdolgozat2.pdf - RELOC/doc/latex/thesis-ekf/szakdolgozat2.tex - RELOC/doc/latex/thesis-ekf/szakdolgozat3.pdf - RELOC/doc/latex/thesis-ekf/szakdolgozat3.tex - RELOC/doc/latex/thesis-ekf/thesis-ekf.pdf -srcfiles size=5 +longdesc This is a class file for theses and dissertations at the +longdesc Eszterhazy Karoly University (Eger, Hungary). It is based on +longdesc the report class. The documentation is in Hungarian. +containersize 59236 +containerchecksum ee4e7a6e73e113334cd6ef392e2530803ace4873eb3c477df1b9de898dffcfbc73a20e466f9137ffb295b247df5ae2c5ab147ae274ef81224a2d1e6d4ec873f1 +doccontainersize 256944 +doccontainerchecksum 36bbf561af8e75cc4c890b0856a1272be7f24fb24943706d94a3b4b4aceefd5b21f0857665ce800649e425c7e446f89952bb6b3d3b7a25b2dbc6810160d25dc6 +docfiles size=64 + RELOC/doc/latex/thesis-ekf/README details="Readme" + RELOC/doc/latex/thesis-ekf/thesis-ekf.pdf details="Package documentation" language="hu" +srccontainersize 7428 +srccontainerchecksum 9c1edc9bcf27f0e4186c7a57aac14cfc34b0f1f17c554b93ff6cb0f86e0eeb41af81d6fe105a32d33730ba881952e1fa9f72d2cfd8b8689d4a9a2e8f62edeb41 +srcfiles size=8 RELOC/source/latex/thesis-ekf/thesis-ekf.dtx RELOC/source/latex/thesis-ekf/thesis-ekf.ins +runfiles size=42 + RELOC/tex/latex/thesis-ekf/eszterhazy-logo-de.eps + RELOC/tex/latex/thesis-ekf/eszterhazy-logo-de.pdf + RELOC/tex/latex/thesis-ekf/eszterhazy-logo-en.eps + RELOC/tex/latex/thesis-ekf/eszterhazy-logo-en.pdf + RELOC/tex/latex/thesis-ekf/eszterhazy-logo-hu.eps + RELOC/tex/latex/thesis-ekf/eszterhazy-logo-hu.pdf + RELOC/tex/latex/thesis-ekf/thesis-ekf.cls catalogue-ctan /macros/latex/contrib/thesis-ekf -catalogue-date 2015-04-19 14:02:25 +0200 +catalogue-date 2019-05-06 15:29:08 +0200 catalogue-license lppl1.2 -catalogue-version 1.1 +catalogue-topics dissertation class hungarian +catalogue-version 3.1 + +name thesis-gwu +category Package +revision 48537 +shortdesc Thesis class for George Washington University School of Engineering and Applied Science +relocated 1 +longdesc This class is an attempt to create a standard format for GWU +longdesc SEAS dissertations/theses. It automatically handles many of the +longdesc complicated formatting requirements and includes many useful +longdesc packages. An example thesis is provided serving as a user guide +longdesc and a demonstration of the thesis. +containersize 10428 +containerchecksum f5f54b6ba4d95422d3b5e219a8319375f543939b0a4fff260616048faee47203497cff1eadf8603f03ad54f7f93bfd524fc3f2efa108bcf36c34a38f468b85cf +doccontainersize 402080 +doccontainerchecksum 88928ac624aa85413652ae32170854cce4c0519858b5e35752fa06bc4e7130ac031eade4127704edadf69a1fc5fa0e3357af1a0350af83decde430e606c0ff4b +docfiles size=139 + RELOC/doc/latex/thesis-gwu/LICENSE.md + RELOC/doc/latex/thesis-gwu/README.md details="Readme" + RELOC/doc/latex/thesis-gwu/figures/data.png + RELOC/doc/latex/thesis-gwu/figures/file_extensions.png + RELOC/doc/latex/thesis-gwu/figures/orbital_mechanics.png + RELOC/doc/latex/thesis-gwu/figures/picard_yes.jpg + RELOC/doc/latex/thesis-gwu/figures/tumblr_lrvyd1GuNe1r3aueno1_400.jpg + RELOC/doc/latex/thesis-gwu/tex/appendix.tex + RELOC/doc/latex/thesis-gwu/tex/frontmatter.tex + RELOC/doc/latex/thesis-gwu/tex/intro.tex + RELOC/doc/latex/thesis-gwu/tex/manual.tex + RELOC/doc/latex/thesis-gwu/tex/results.tex + RELOC/doc/latex/thesis-gwu/thesis-bib.bib + RELOC/doc/latex/thesis-gwu/thesis-sample.pdf details="Example thesis and user guide" + RELOC/doc/latex/thesis-gwu/thesis-sample.tex +runfiles size=13 + RELOC/tex/latex/thesis-gwu/thesis-gwu.cls +catalogue-contact-bugs https://github.com/skulumani/thesis-gwu/issues +catalogue-contact-home https://github.com/skulumani/thesis-gwu +catalogue-contact-repository https://github.com/skulumani/thesis-gwu +catalogue-ctan /macros/latex/contrib/thesis-gwu +catalogue-date 2018-08-31 23:05:31 +0200 +catalogue-license gpl3 +catalogue-topics dissertation class +catalogue-version 1.6.1 + +name thesis-qom +category Package +revision 49124 +shortdesc Thesis style of the University of Qom, Iran +relocated 1 +longdesc This package provides a class file for writing theses and +longdesc dissertations according to the University of Qom Graduate +longdesc Schools's guidelines for the electronic submission of master +longdesc theses and PhD dissertations. The class should meet all the +longdesc current requirements and is updated whenever the university +longdesc guidelines change. The class needs XeLaTeX in conjunction with +longdesc the following fonts: XB Niloofar, IranNastaliq, IRlotus, XB +longdesc Zar, XB Titre, and Yas. +containersize 14060 +containerchecksum 5afaa0d05b88dbe2d3e5dc2450d1d01b57a24f54be4437c2e9c71afa6c8b1f10144c674de2d8062c6d4a5b7a5140b1fac6ba82bb68c03ecb6560d8afd1384cae +doccontainersize 1248052 +doccontainerchecksum 7bfe521b8f1df650304080e50805f48437e9b22b5b06f3f2fc309bc770ea0370d0e5acf2977c4332e0ca3d7b664c2dc8161f31f057a910069ba1cb585225145d +docfiles size=428 + RELOC/doc/xelatex/thesis-qom/Print-PDF.png + RELOC/doc/xelatex/thesis-qom/README details="Readme" + RELOC/doc/xelatex/thesis-qom/Xindy_Make_Index.png + RELOC/doc/xelatex/thesis-qom/basmalah.jpg + RELOC/doc/xelatex/thesis-qom/bib-index.tex + RELOC/doc/xelatex/thesis-qom/bibref.png + RELOC/doc/xelatex/thesis-qom/bidabad.png + RELOC/doc/xelatex/thesis-qom/comma.png + RELOC/doc/xelatex/thesis-qom/correctWriting.tex + RELOC/doc/xelatex/thesis-qom/dicen2fa.tex + RELOC/doc/xelatex/thesis-qom/dicfa2en.tex + RELOC/doc/xelatex/thesis-qom/installation.tex + RELOC/doc/xelatex/thesis-qom/intro.tex + RELOC/doc/xelatex/thesis-qom/knuth.jpg + RELOC/doc/xelatex/thesis-qom/labs.tex + RELOC/doc/xelatex/thesis-qom/lamport.jpg + RELOC/doc/xelatex/thesis-qom/latexCommands.tex + RELOC/doc/xelatex/thesis-qom/logo.jpg + RELOC/doc/xelatex/thesis-qom/morelatex.tex + RELOC/doc/xelatex/thesis-qom/preface.tex + RELOC/doc/xelatex/thesis-qom/qomthesis-guide.tex + RELOC/doc/xelatex/thesis-qom/realSample.tex + RELOC/doc/xelatex/thesis-qom/references.bib + RELOC/doc/xelatex/thesis-qom/settings.tex + RELOC/doc/xelatex/thesis-qom/test-crop.jpg + RELOC/doc/xelatex/thesis-qom/texworks_preferences.png + RELOC/doc/xelatex/thesis-qom/thesis-qom.pdf details="Package documentation" language="fa-ir" + RELOC/doc/xelatex/thesis-qom/thesis-qom.tex + RELOC/doc/xelatex/thesis-qom/xindy_shellescape.png +runfiles size=15 + RELOC/tex/xelatex/thesis-qom/thesis-qom.cls +catalogue-contact-repository https://github.com/javadr/thesis-qom +catalogue-ctan /macros/xetex/latex/thesis-qom +catalogue-date 2018-11-10 11:03:25 +0100 +catalogue-license lppl1.3c +catalogue-topics dissertation class xetex +catalogue-version 0.42 name thesis-titlepage-fhac category Package @@ -162639,76 +276179,96 @@ shortdesc Little style to create a standard titlepage for diploma thesis relocated 1 longdesc Yet another thesis titlepage style: support of Fachhochschule longdesc Aachen (Standort Juelich) -runfiles size=5 - RELOC/tex/latex/thesis-titlepage-fhac/fhACtitlepage.cfg - RELOC/tex/latex/thesis-titlepage-fhac/fhACtitlepage.sty - RELOC/tex/latex/thesis-titlepage-fhac/figbib_add.sty - RELOC/tex/latex/thesis-titlepage-fhac/gloss_add.sty +containersize 3132 +containerchecksum 62cdba17287f90580fe6273d1ca9143c9fac01d7da214a20413995b925c6eced385b3a5c172e8bedb4f17396ed7e9b78e789ca475c5efe542283d9b421bd6ffb +doccontainersize 135708 +doccontainerchecksum 13378f3ef37bd1033d009d03772244e048ff2a16b95ca8a0f14feeda8c44b29036276c41aae812cf1c28ac5684edad56b000f8a45576bd0065fb844f5b6dd189 docfiles size=82 RELOC/doc/latex/thesis-titlepage-fhac/LogoFH.eps RELOC/doc/latex/thesis-titlepage-fhac/LogoFH.pdf RELOC/doc/latex/thesis-titlepage-fhac/LogoFH.png RELOC/doc/latex/thesis-titlepage-fhac/LogoFH.tif - RELOC/doc/latex/thesis-titlepage-fhac/README + RELOC/doc/latex/thesis-titlepage-fhac/README details="README file" RELOC/doc/latex/thesis-titlepage-fhac/antrc_pre.bat RELOC/doc/latex/thesis-titlepage-fhac/build.xml RELOC/doc/latex/thesis-titlepage-fhac/diplomArbeit.ltx RELOC/doc/latex/thesis-titlepage-fhac/doxygen_header.tex - RELOC/doc/latex/thesis-titlepage-fhac/fhACtitlepage.pdf + RELOC/doc/latex/thesis-titlepage-fhac/fhACtitlepage.pdf details="Package documentation" RELOC/doc/latex/thesis-titlepage-fhac/pdf_with_figbig_and_glossar.tco +srccontainersize 8004 +srccontainerchecksum 34b0f176df84b1b1d1f3e47c7c01d640b0e74e30a86488e07e9e67c61c80a96cb1b9ec835266dbee3e45a952f406ade5af5173e7df33f1d12d1b1f5d0611ac75 srcfiles size=8 RELOC/source/latex/thesis-titlepage-fhac/doxygen_header.dtx.input RELOC/source/latex/thesis-titlepage-fhac/fhACtitlepage.dtx RELOC/source/latex/thesis-titlepage-fhac/fhACtitlepage.ins RELOC/source/latex/thesis-titlepage-fhac/gloss_add.dtx.input +runfiles size=5 + RELOC/tex/latex/thesis-titlepage-fhac/fhACtitlepage.cfg + RELOC/tex/latex/thesis-titlepage-fhac/fhACtitlepage.sty + RELOC/tex/latex/thesis-titlepage-fhac/figbib_add.sty + RELOC/tex/latex/thesis-titlepage-fhac/gloss_add.sty catalogue-ctan /macros/latex/contrib/thesis-titlepage-fhAC -catalogue-date 2012-02-09 21:58:23 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics dissertation catalogue-version 0.1 name thinsp category Package -revision 15878 -shortdesc A stretchable \thinspace for LaTeX. +revision 39669 +shortdesc A stretchable \thinspace for LaTeX relocated 1 longdesc The package redefines \thinspace to have a stretch component. +containersize 1352 +containerchecksum ddc80b4de32524ce76fe34e8f88d01e2db18a8bbf60a718454a0303aea8082fc2e495c89c2ad0a7459ed3151e890e30a1263267f249581e24bac87113a5fd266 +doccontainersize 297648 +doccontainerchecksum b5b50522a4a7b5f7772118d95fdf42e2f570ac35c49a8690560df27df0754a170acddd782b516fa185c0f6ef2abb3ff8a9f366370c2ad46e2e4d32dba21e634b +docfiles size=82 + RELOC/doc/latex/thinsp/COPYRIGHT + RELOC/doc/latex/thinsp/README details="Readme" + RELOC/doc/latex/thinsp/thinsp.pdf details="Package documentation" + RELOC/doc/latex/thinsp/thinsp.tex runfiles size=1 RELOC/tex/latex/thinsp/thinsp.sty -docfiles size=93 - RELOC/doc/latex/thinsp/COPYIRIGHT - RELOC/doc/latex/thinsp/README - RELOC/doc/latex/thinsp/thinsp.pdf - RELOC/doc/latex/thinsp/thinsp.tex catalogue-ctan /macros/latex/contrib/thinsp -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl -catalogue-version 0.1 +catalogue-topics typesetting +catalogue-version 0.2 name thmbox category Package revision 15878 -shortdesc Decorate theorem statements. +shortdesc Decorate theorem statements relocated 1 longdesc The package defines an environment thmbox that presents longdesc theorems, definitions and similar objects in boxes decorated longdesc with frames and various aesthetic features. The standard macro longdesc \newtheorem may be redefined to use the environment. -runfiles size=2 - RELOC/tex/latex/thmbox/thmbox.sty +containersize 2416 +containerchecksum 83ceeb0cf84ff75afb734f41be5a5309692c6804a5a20627c54cc8760f8ac5e205cf1a24097c8b8624823668796092d620f5ffbc488f63b87e7cbf9365279aac +doccontainersize 93936 +doccontainerchecksum ad8e0710a15781eb3164527dd16ecc2050d3cd3317c386841ad8612a9ebc6055a1501272e3b01bcbc6a7f1ffa80455bf2ccdc0cc9ff4428c9688e9f6404a16ff docfiles size=30 - RELOC/doc/latex/thmbox/README - RELOC/doc/latex/thmbox/thmbox.pdf + RELOC/doc/latex/thmbox/README details="Readme" + RELOC/doc/latex/thmbox/thmbox.pdf details="Package documentation" +srccontainersize 8324 +srccontainerchecksum 1b559b9286a97c3157d568982513541028d96cfd5d67ac541909586251ac3729574c23a05ebdfc42ab06a92ab2ea0cef878b1f42983d06fd48f825962de57cb6 srcfiles size=9 RELOC/source/latex/thmbox/thmbox.dtx RELOC/source/latex/thmbox/thmbox.ins +runfiles size=2 + RELOC/tex/latex/thmbox/thmbox.sty +catalogue-also shadethm catalogue-ctan /macros/latex/contrib/thmbox -catalogue-date 2012-04-27 11:57:13 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics maths-theorem decoration name thmtools category Package revision 33624 -shortdesc Extensions to theorem environments. +shortdesc Extensions to theorem environments relocated 1 longdesc The bundle provides several packages for commonly-needed longdesc support for typesetting theorems. The packages should work with @@ -162717,30 +276277,19 @@ longdesc theorem and amsthm packages. Features of the bundle include: a longdesc key-value interface to \newtheorem; a \listoftheorems command; longdesc hyperref and autoref compatibility; a mechanism for restating longdesc entire theorems in a single macro call. -runfiles size=23 - RELOC/tex/latex/thmtools/aliasctr.sty - RELOC/tex/latex/thmtools/parseargs.sty - RELOC/tex/latex/thmtools/thm-amsthm.sty - RELOC/tex/latex/thmtools/thm-autoref.sty - RELOC/tex/latex/thmtools/thm-beamer.sty - RELOC/tex/latex/thmtools/thm-kv.sty - RELOC/tex/latex/thmtools/thm-listof.sty - RELOC/tex/latex/thmtools/thm-llncs.sty - RELOC/tex/latex/thmtools/thm-ntheorem.sty - RELOC/tex/latex/thmtools/thm-patch.sty - RELOC/tex/latex/thmtools/thm-restate.sty - RELOC/tex/latex/thmtools/thmdef-mdframed.sty - RELOC/tex/latex/thmtools/thmdef-shaded.sty - RELOC/tex/latex/thmtools/thmdef-thmbox.sty - RELOC/tex/latex/thmtools/thmtools.sty - RELOC/tex/latex/thmtools/unique.sty +containersize 12400 +containerchecksum 137ac9352b2abe6963aea4e30eb5cd3c7cb872c7440778566d5b766b29e55ba107ae57ec474e00986f6b6ef6db04b8c133340d8afaa705b11f72a2c2635e4ad4 +doccontainersize 240460 +doccontainerchecksum e6880e3ff9f6140f767cb75e7a8e38f08c9c8b227c2cdd1a6fc24a23d45bf61b2ca1e3e1d8f25faee99c0b6371dd5f3858d132cda8e86f3e99db0ecba7750452 docfiles size=75 RELOC/doc/latex/thmtools/COPYING - RELOC/doc/latex/thmtools/README + RELOC/doc/latex/thmtools/README details="Readme" RELOC/doc/latex/thmtools/TODO RELOC/doc/latex/thmtools/VERSION.tex RELOC/doc/latex/thmtools/thmtools-manual.tex - RELOC/doc/latex/thmtools/thmtools.pdf + RELOC/doc/latex/thmtools/thmtools.pdf details="Package documentation" +srccontainersize 19456 +srccontainerchecksum 16aa0fe2db8826a35603738d8f54a50174bc8dec7f68e42f85070e4098e650d7bbc6eb595be2da824191ba52619f161bf60da3fb315c44467bcd90d0d09f822a srcfiles size=28 RELOC/source/latex/thmtools/aliasctr.dtx RELOC/source/latex/thmtools/parseargs.dtx @@ -162759,63 +276308,94 @@ srcfiles size=28 RELOC/source/latex/thmtools/thmtools.dtx RELOC/source/latex/thmtools/thmtools.ins RELOC/source/latex/thmtools/unique.dtx +runfiles size=23 + RELOC/tex/latex/thmtools/aliasctr.sty + RELOC/tex/latex/thmtools/parseargs.sty + RELOC/tex/latex/thmtools/thm-amsthm.sty + RELOC/tex/latex/thmtools/thm-autoref.sty + RELOC/tex/latex/thmtools/thm-beamer.sty + RELOC/tex/latex/thmtools/thm-kv.sty + RELOC/tex/latex/thmtools/thm-listof.sty + RELOC/tex/latex/thmtools/thm-llncs.sty + RELOC/tex/latex/thmtools/thm-ntheorem.sty + RELOC/tex/latex/thmtools/thm-patch.sty + RELOC/tex/latex/thmtools/thm-restate.sty + RELOC/tex/latex/thmtools/thmdef-mdframed.sty + RELOC/tex/latex/thmtools/thmdef-shaded.sty + RELOC/tex/latex/thmtools/thmdef-thmbox.sty + RELOC/tex/latex/thmtools/thmtools.sty + RELOC/tex/latex/thmtools/unique.sty catalogue-ctan /macros/latex/exptl/thmtools -catalogue-date 2014-10-15 15:43:28 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics maths-theorem catalogue-version 66 name threadcol category Package revision 28754 -shortdesc Organize document columns into PDF "article thread". +shortdesc Organize document columns into PDF "article thread" relocated 1 longdesc The package combines a document's columns into a PDF "article longdesc thread". PDF readers that support this mechanism (probably longdesc Adobe Acrobat/Reader only) can be instructed to scroll -longdesc automatically from column to column, which facilitates on- -longdesc screen reading of two-column documents. Even for single-column -longdesc documents, threadcol supports the creation of multiple article -longdesc threads, which help organize discontiguous but logically -longdesc related regions of text into a form that the user can scroll -longdesc through as if its contents were contiguous. -runfiles size=1 - RELOC/tex/latex/threadcol/threadcol.sty +longdesc automatically from column to column, which facilitates +longdesc on-screen reading of two-column documents. Even for +longdesc single-column documents, threadcol supports the creation of +longdesc multiple article threads, which help organize discontiguous but +longdesc logically related regions of text into a form that the user can +longdesc scroll through as if its contents were contiguous. +containersize 1764 +containerchecksum e75f887dc04aa55834c285d5e36babfd0844b79b9d1cc5cfb2eb6412bde9f42b651bfdca9f6819b27f6615aff6f96031135f1a6af3b59503fda34e7566cdb01a +doccontainersize 290856 +doccontainerchecksum 626ac69b0a26fdbed51876782a9ac2e3b0ab9b32bf3b2f32ce19cce080b5cda40a62160f453199a76b58903d762cc8085a8541fa2de3adc5fea6266592c06bdc docfiles size=81 - RELOC/doc/latex/threadcol/README - RELOC/doc/latex/threadcol/threadcol.pdf + RELOC/doc/latex/threadcol/README details="Readme" + RELOC/doc/latex/threadcol/threadcol.pdf details="Package documentation" +srccontainersize 93120 +srccontainerchecksum df757dcfd1eec3e8da04939ef69d04ffa59767544a1d5349eb538e111843f4c6dd4374e15bc6e586edac629f61d6979688c229381ad3cd4ad61dc2d48afa7c10 srcfiles size=28 RELOC/source/latex/threadcol/articles-ar9.png RELOC/source/latex/threadcol/threadcol.dtx RELOC/source/latex/threadcol/threadcol.ins +runfiles size=1 + RELOC/tex/latex/threadcol/threadcol.sty catalogue-ctan /macros/latex/contrib/threadcol -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics pdf-feat catalogue-version 1.0 name threeddice category Package revision 20675 -shortdesc Create images of dice with one, two, or three faces showing, using MetaPost. +shortdesc Create images of dice with one, two, or three faces showing, using MetaPost relocated 1 longdesc The package provides MetaPost code to create all possible longdesc symmetrical views (up to rotation) of a right-handed die. longdesc Configuration is possible by editing the source code, following longdesc the guidance in the documentation. -runfiles size=2 - RELOC/metapost/threeddice/threeddice.mp +containersize 2212 +containerchecksum 66e6a27aa277b45b44c156d408c764da5bee6dc540f2058a783f02bbe806c95052267a5ed79ea49b5dc356d0f03747e9b186542640b34753a693ecffa158a6a4 +doccontainersize 119008 +doccontainerchecksum c750497229b8bd41eca05b221ed2ca2ca49db8cbbff03bfce2712869d352ae0385e4c10e9730e0b2f8286db9af1e1b87f10d599788a3dfe8d41c28efb8b0e4a6 docfiles size=32 - RELOC/doc/metapost/threeddice/README - RELOC/doc/metapost/threeddice/threeddice-doc.pdf + RELOC/doc/metapost/threeddice/README details="Readme" + RELOC/doc/metapost/threeddice/threeddice-doc.pdf details="Package documentation" RELOC/doc/metapost/threeddice/threeddice-doc.tex +runfiles size=2 + RELOC/metapost/threeddice/threeddice.mp +catalogue-also dice epsdice catalogue-ctan /graphics/metapost/contrib/macros/threeddice -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics graphics-use catalogue-version 1.0 name threeparttable category Package revision 17383 -shortdesc Tables with captions and notes all the same width. +shortdesc Tables with captions and notes all the same width relocated 1 longdesc Provides a scheme for tables that have a structured note longdesc section, after the caption. This scheme provides an answer to @@ -162823,39 +276403,117 @@ longdesc the old problem of putting footnotes in tables -- by making longdesc footnotes entirely unnecessary. Note that a threeparttable is longdesc not a float of itself; but you can place it in a table or a longdesc table* environment, if necessary. -runfiles size=5 - RELOC/tex/latex/threeparttable/3parttable.sty - RELOC/tex/latex/threeparttable/threeparttable.sty +containersize 5448 +containerchecksum f947dd01e56f6f3db8a4ed0b8f3ec564a38486fcb27f30bb3bacdf31af8360590e7e3886cc00cfbab813213974f4b335ff06ceb521d25519e8b95e345a002692 +doccontainersize 280024 +doccontainerchecksum 6b5eb1d6ceea740ec54ba935c45f03c2e6328140e86122a38b90d84e375382adfcfe14e2e9f56384f825c913140f01a1eb6266d2d46f6b813a34b4da652ee31d docfiles size=73 RELOC/doc/latex/threeparttable/miscdoc.sty - RELOC/doc/latex/threeparttable/threeparttable.pdf + RELOC/doc/latex/threeparttable/threeparttable.pdf details="Package documentation" RELOC/doc/latex/threeparttable/threeparttable.tex +runfiles size=5 + RELOC/tex/latex/threeparttable/3parttable.sty + RELOC/tex/latex/threeparttable/threeparttable.sty catalogue-ctan /macros/latex/contrib/threeparttable -catalogue-date 2011-10-17 18:01:19 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics table notes name threeparttablex category Package revision 34206 -shortdesc Notes in longtables. +shortdesc Notes in longtables relocated 1 longdesc The package provides the functionality of the threeparttable longdesc package to tables created using the longtable package. -runfiles size=2 - RELOC/tex/latex/threeparttablex/threeparttablex.sty +containersize 2320 +containerchecksum 9dd33dcb7f9eebb9396a6a05ac20e9bb221260cd80f355b23f60a0466c64847ebacd8b0d19c75b3d9cecd9c522a8633468e7cc86121f7626141c066e12f977d6 +doccontainersize 64400 +doccontainerchecksum 3dceb0aecfa2ef09bc20250cd38dd698e35b2cd2a33fb446e78a39fa654899c4f6658a18b95b39a5bff2279a0cbeeda71bcedcdb7fa91d148290302b73e7a64c docfiles size=19 - RELOC/doc/latex/threeparttablex/README - RELOC/doc/latex/threeparttablex/threeparttablex.pdf + RELOC/doc/latex/threeparttablex/README details="Readme" + RELOC/doc/latex/threeparttablex/threeparttablex.pdf details="Package documentation" RELOC/doc/latex/threeparttablex/threeparttablex.tex +runfiles size=2 + RELOC/tex/latex/threeparttablex/threeparttablex.sty catalogue-ctan /macros/latex/contrib/threeparttablex -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics table notes catalogue-version 0.3 +name thucoursework +category Package +revision 47781 +shortdesc Coursework template for Tsinghua University +relocated 1 +longdesc A LaTeX package for students of Tsinghua University to write +longdesc coursework more efficiently. It can also be used by students +longdesc from other universities. Note that the package itself does not +longdesc import the ctex package; to use it with Chinese writing, see +longdesc example file ithw.tex for details. +containersize 2208 +containerchecksum 28786a2d16bef84f87bd87b57977a9d9cbf8b2f172928ccf56224205ec54945fc12ebe563d73df1d3501e987f8aa6af9038e28127d7d381b31be276f6e2546f6 +doccontainersize 656892 +doccontainerchecksum a4e7cdf992721820376ef2b967aeed1821edb6e4763251b627c61a0a85328de8d3d3ff78c7a39f43dd57f3c2ccf54fabf274a074e529ee9f82770766e87cd263 +docfiles size=179 + RELOC/doc/latex/thucoursework/Makefile + RELOC/doc/latex/thucoursework/README.md details="Readme" + RELOC/doc/latex/thucoursework/dtx-style.sty + RELOC/doc/latex/thucoursework/iihw.pdf details="Example of use (English)" + RELOC/doc/latex/thucoursework/iihw.tex + RELOC/doc/latex/thucoursework/ithw.pdf details="Example of use (Chinese)" language="zh" + RELOC/doc/latex/thucoursework/ithw.tex + RELOC/doc/latex/thucoursework/matlabscript.m + RELOC/doc/latex/thucoursework/pdf_normal.eps + RELOC/doc/latex/thucoursework/thucoursework.hd + RELOC/doc/latex/thucoursework/thucoursework.pdf details="Package documentation" language="zh" +srccontainersize 8240 +srccontainerchecksum 82615d29bafe844d4c27f75d477b2f731f090fa8080fd36f727c9f17dfbadcfd0bcee2ca7d1ebaae0b75ba61d18828298d5ce64c046f8a6a2a283a2f24658c0f +srcfiles size=6 + RELOC/source/latex/thucoursework/thucoursework.dtx +runfiles size=2 + RELOC/tex/latex/thucoursework/iidef.sty +catalogue-contact-bugs https://github.com/zhaofeng-shu33/THU-coursework-template/issues +catalogue-contact-development https://github.com/zhaofeng-shu33 +catalogue-contact-repository https://github.com/zhaofeng-shu33/THU-coursework-template +catalogue-ctan /macros/latex/contrib/thucoursework +catalogue-date 2018-05-20 08:52:27 +0200 +catalogue-license lppl1.3 +catalogue-topics doc-templ chinese +catalogue-version 2.5 + +name thumb +category Package +revision 16549 +shortdesc Thumb marks in documents +relocated 1 +longdesc Place thumb marks in books, manuals and reference maunals. +containersize 3972 +containerchecksum 30290cc3b8cc48de6c601fcb3d066f0533bb3f09f053d7912db7a127d8327c4aac0a96499b7eaed36b8caf4dcdda5c8f34a5430d69e1fac70510f426c92ab9f4 +doccontainersize 194472 +doccontainerchecksum 29abd2e57cf17edbfeea06c041666ba29e436defff1600df7222dca6160e7be740b64647d7a44a10f6f803011a1754abd693048ca36c4c372ee0da52df2562dc +docfiles size=52 + RELOC/doc/latex/thumb/README details="Package Readme" + RELOC/doc/latex/thumb/thumb.pdf details="Package documentation" +srccontainersize 11880 +srccontainerchecksum 1712eaf8ef694998eab8cd0b95c6e8affc2a967c81cef6d6bbe8d985137662631254318ad2dad9a021a70ab849986e727699715b27fca1a5952df111474f92e8 +srcfiles size=12 + RELOC/source/latex/thumb/thumb.dtx + RELOC/source/latex/thumb/thumb.ins +runfiles size=4 + RELOC/tex/latex/thumb/thumb.sty +catalogue-also fancyhdr +catalogue-ctan /macros/latex/contrib/thumb +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics layout-page +catalogue-version 1.0 + name thumbpdf category Package -revision 34621 -shortdesc Thumbnails for pdfTeX and dvips/ps2pdf. +revision 48625 +shortdesc Thumbnails for pdfTeX and dvips/ps2pdf longdesc A Perl script that provides support for thumbnails in pdfTeX longdesc and dvips/ps2pdf. The script uses ghostscript to generate the longdesc thumbnails which get represented in a TeX readable file that is @@ -162863,30 +276521,174 @@ longdesc read by the package thumbpdf.sty to automatically include the longdesc thumbnails. This arrangement works with both plain TeX and longdesc LaTeX. depend thumbpdf.ARCH -runfiles size=19 - texmf-dist/scripts/thumbpdf/thumbpdf.pl - texmf-dist/tex/generic/thumbpdf/thumbpdf.sty - texmf-dist/tex/generic/thumbpdf/thumbpdf.tex +containersize 18876 +containerchecksum f3eaaa9ad4287d58ab89b98e1889f99dbabd82153f99921a9249b2cfb741c0cc45bfdd1903590c66bf0b63c77490017c36f552e34d7d15290cbc5904e57a3bc8 +doccontainersize 14604 +doccontainerchecksum fa2a7cbf80f7b76e63aff8ce5584e698e9f88a0d5a902895afa22a100202fb30bc857f5a1b88e190ff2dbf5ca9cf2338f6ca96a7b80a6d3e6e549040fc3ece7d docfiles size=10 texmf-dist/doc/generic/thumbpdf/README texmf-dist/doc/man/man1/thumbpdf.1 texmf-dist/doc/man/man1/thumbpdf.man1.pdf +runfiles size=19 + texmf-dist/scripts/thumbpdf/thumbpdf.pl + texmf-dist/tex/generic/thumbpdf/thumbpdf.sty + texmf-dist/tex/generic/thumbpdf/thumbpdf.tex +catalogue-contact-bugs https://github.com/ho-tex/thumbpdf/issues +catalogue-contact-repository https://github.com/ho-tex/thumbpdf catalogue-ctan /support/thumbpdf -catalogue-date 2014-07-15 08:34:09 +0200 -catalogue-license lppl -catalogue-version 3.16 +catalogue-date 2018-09-08 21:16:49 +0200 +catalogue-license lppl1.3 +catalogue-topics pdf-feat +catalogue-version 3.17 + +name thumbpdf.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of thumbpdf +containersize 340 +containerchecksum 6c4e4c7c3536e91aea59fc17fe6eef99a8766db30bfe053c19d3b6306e020f5e8b62ccf471e7e3932e3f20fb648b0e8b27a47f03ec35235459f3fa5599ff94e8 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/thumbpdf + +name thumbpdf.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of thumbpdf +containersize 344 +containerchecksum a7e2b65b2a9ba11fd674d195109597089ed2ef881adb223d4c2a8aa7faaeecaf48f1bb3696d1fcca2b3ea52fd3657d754710dc10196e2221276f53793a5824c2 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/thumbpdf + +name thumbpdf.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of thumbpdf +containersize 340 +containerchecksum ec52b0239c698f0d440403cc465e89af27276f1cd839f0b4a1ab6c9f52f8f469d63b8a847a805795d9433bbff216a44d32b54b6b4e37651d1676bc03f77f744c +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/thumbpdf + +name thumbpdf.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of thumbpdf +containersize 340 +containerchecksum ca03668974012331f2289a82dd5bbfed0cca57aa067eb827209fc8cdb5ec35760bbfaebd488c69c0686c8801486c84a31ed5a257d6a389575758f1bad4a42d00 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/thumbpdf + +name thumbpdf.i386-cygwin +category Package +revision 25941 +shortdesc i386-cygwin files of thumbpdf +containersize 340 +containerchecksum 7e4dfed78f257ec49df47d9258f32cab5b6316989ee103e97bd9c08c4fbd29b063df6face26c0646877d077d460705fb4d5e7c6e424bbd40ad2a80192e5ce7d5 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/thumbpdf + +name thumbpdf.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of thumbpdf +containersize 344 +containerchecksum 62f16b00679b36ee2368ce4fcce04816e29befc9ee9e0c765f2341cec630e129555ae9124e1e12aa272975733bda4d2267929d583c341446a80c3ef6a3836411 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/thumbpdf name thumbpdf.i386-linux category Package revision 6898 shortdesc i386-linux files of thumbpdf +containersize 340 +containerchecksum 6226939d167da25d44a0e01ee4b9ec2e0370f6f32b78966b6679e75f69712eb712a80409af03c53e134bf2c94265aae750ee2285d483ba8fe10514c3f674104f binfiles arch=i386-linux size=1 bin/i386-linux/thumbpdf +name thumbpdf.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of thumbpdf +containersize 340 +containerchecksum 155db8b47b5b9488688b3decd6574a812b9616332c6b467535005a9a95c30fee45964eadd997ff2d13f6fea36ccc8e834481bb2e80ffefd13a3c5bff87359322 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/thumbpdf + +name thumbpdf.i386-solaris +category Package +revision 8102 +shortdesc i386-solaris files of thumbpdf +containersize 340 +containerchecksum 12499ca8021437bbd08dd9f80f29117e12575daa38e2514cb70e1aba05bedbb0f593d16e41ad74bc637c7d3c6d45c01b0244b638187cacd209c30cbc6b4ddcf7 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/thumbpdf + +name thumbpdf.win32 +category Package +revision 15404 +shortdesc win32 files of thumbpdf +containersize 684 +containerchecksum 19f001794e022666e365fc0a38d343cb0c53475508e9daabb316e56e57541040619c897dd9bf2051d342e16405658e9e6a94e2a5bbd6778d4d7f96143754a3bf +binfiles arch=win32 size=1 + bin/win32/thumbpdf.exe + +name thumbpdf.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of thumbpdf +containersize 344 +containerchecksum 1816292e3fd1eb0fb993042d96b1916f3cefcd65939a7cb9116685c0d9d6813dcf1afcab39581d60b3a3bf18dedf986d310f5a0a06d1067a547d99f26689a473 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/thumbpdf + +name thumbpdf.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of thumbpdf +containersize 344 +containerchecksum d42487e9022948db8d7f278bb731a78dfd676d218a47dc4efc09c1d158c53a718c0d8a3c29cb3306d2df094a358aed7062782e6ac9c0904b6dcb696ff1e3de32 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/thumbpdf + +name thumbpdf.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of thumbpdf +containersize 352 +containerchecksum 743036017ccffc7840ebfa5accccfd41e19aa9e530ecd8fe3a22c6c2e9a6fb43e16290ef47221c22bca189ad7879b70bd31a1542cfadc65db429a0e44377f893 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/thumbpdf + +name thumbpdf.x86_64-linux +category Package +revision 8601 +shortdesc x86_64-linux files of thumbpdf +containersize 340 +containerchecksum c849271637d15c3b74cf2473df2695efa53a892f84178516815656cad18c2b4eb483687a9268fe288b009fb3999ca710c09557c8611da0a358a637bc53024b54 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/thumbpdf + +name thumbpdf.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of thumbpdf +containersize 344 +containerchecksum d0f0c815da6fb62cd8c635b2f6fb94a8bed15bc08c0d09e938d38391dad21ee4a08bea6f9497c1e5c045ca2a0a31e5201cc887a6f7ae8435fdd1dcad94b17245 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/thumbpdf + +name thumbpdf.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of thumbpdf +containersize 344 +containerchecksum 0a929107949da61238d0c4444c83f911f6751168d0df6e64438dd3eec2d5a4c1e7751945283925776d63ba7a8a53b8a6f9796673235c8720aaafc6fb0ec54a57 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/thumbpdf + name thumbs category Package revision 33134 -shortdesc Create thumb indexes. +shortdesc Create thumb indexes relocated 1 longdesc The package puts running, customizable thumb marks in the outer longdesc margin, moving downward as the chapter number (or whatever @@ -162897,45 +276699,33 @@ longdesc the object/thumb mark first appears, and the thumb mark itself longdesc at its correct position. The thumb marks are useful for large longdesc documents (such as reference guides, anthologies, etc.), where longdesc a quick and easy way to find (for example) a chapter is needed. -runfiles size=14 - RELOC/tex/latex/thumbs/thumbs.sty +containersize 10936 +containerchecksum 58e489402fc44cbaece118203bbe7011494b7ef16ffa0e5d60be2daaec0c4ef2d048a71f0d9373a1683aa780fd20e3d64330e199596effc7cf2fcdac34f1faf1 +doccontainersize 701996 +doccontainerchecksum 4c58ff61d64b841b3a3bc018f94c193730129edf45c87fcb9c85685f748ca3db1f7d51969dd25882848cec906485f739f8f07c8bb2f8bded580b59ea93032a14 docfiles size=182 - RELOC/doc/latex/thumbs/README - RELOC/doc/latex/thumbs/thumbs-example.pdf + RELOC/doc/latex/thumbs/README details="Readme" + RELOC/doc/latex/thumbs/thumbs-example.pdf details="Package examples" RELOC/doc/latex/thumbs/thumbs-example.tex - RELOC/doc/latex/thumbs/thumbs.pdf + RELOC/doc/latex/thumbs/thumbs.pdf details="Package documentation" +srccontainersize 33908 +srccontainerchecksum 26458ebc431f64a324c39ec370f2b0714a56563decc944c64156f0a6a3e22664e89239bbbfa7710d9b46706657b48470ffd1da7a1801aaca2732b30e01935fe4 srcfiles size=41 RELOC/source/latex/thumbs/thumbs.drv RELOC/source/latex/thumbs/thumbs.dtx RELOC/source/latex/thumbs/thumbs.ins +runfiles size=14 + RELOC/tex/latex/thumbs/thumbs.sty catalogue-ctan /macros/latex/contrib/thumbs -catalogue-date 2014-03-12 00:15:37 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics layout-page catalogue-version 1.0q -name thumb -category Package -revision 16549 -shortdesc Thumb marks in documents. -relocated 1 -longdesc Place thumb marks in books, manuals and reference maunals. -runfiles size=4 - RELOC/tex/latex/thumb/thumb.sty -docfiles size=52 - RELOC/doc/latex/thumb/README - RELOC/doc/latex/thumb/thumb.pdf -srcfiles size=12 - RELOC/source/latex/thumb/thumb.dtx - RELOC/source/latex/thumb/thumb.ins -catalogue-ctan /macros/latex/contrib/thumb -catalogue-date 2012-04-27 12:20:53 +0200 -catalogue-license gpl -catalogue-version 1.0 - name thumby category Package revision 16736 -shortdesc Create thumb indexes for printed books. +shortdesc Create thumb indexes for printed books relocated 1 longdesc The package can generate thumb indexes for your document. It longdesc features printing thumb indexes on one- or two-sided pages, @@ -162945,36 +276735,38 @@ longdesc height of each thumb index is automatically chosen based on the longdesc number of chapters in your document, while the width is chosen longdesc by the user. The package is designed to work with the memoir longdesc class, and also requires PerlTeX and tikz/ -runfiles size=3 - RELOC/tex/latex/thumby/thumby.sty +containersize 3268 +containerchecksum 485bb2670133c3c83f0f7aaa685defc6d36f5d24173652d869f526770e1f55c55a31f3a3180f115aef45fb824d9032ee915b91c1c59b9b33794c95c92f03c3e6 +doccontainersize 155976 +doccontainerchecksum bac645197085968fe8a7bd41f4a9ec3c6e51e17e6750b87ca1a458acc9f6a4f244d1f3b36b9c622c98492b90abddf9a4df1636b1874c02820dcdb6340bad0910 docfiles size=52 RELOC/doc/latex/thumby/LICENSE - RELOC/doc/latex/thumby/README + RELOC/doc/latex/thumby/README details="Readme" RELOC/doc/latex/thumby/example.pdf RELOC/doc/latex/thumby/latexmkrc - RELOC/doc/latex/thumby/thumby.pdf + RELOC/doc/latex/thumby/thumby.pdf details="Package documentation" +runfiles size=3 + RELOC/tex/latex/thumby/thumby.sty catalogue-ctan /macros/latex/contrib/thumby -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl3 +catalogue-topics layout-page catalogue-version 0.1 name thuthesis category Package -revision 35774 -shortdesc Thesis template for Tsinghua University. +revision 50932 +shortdesc Thesis template for Tsinghua University relocated 1 longdesc ThuThesis is a LaTeX thesis template package for Tsinghua longdesc University in order to make it easy to write theses for either -longdesc bachelor's, master's or doctor's degree. -runfiles size=18 - RELOC/bibtex/bst/thuthesis/thubib.bst - RELOC/tex/latex/thuthesis/thufonts.def - RELOC/tex/latex/thuthesis/thuthesis.cfg - RELOC/tex/latex/thuthesis/thuthesis.cls - RELOC/tex/latex/thuthesis/thutils.sty -docfiles size=651 - RELOC/doc/latex/thuthesis/Makefile - RELOC/doc/latex/thuthesis/README +longdesc bachelor's, master's, or doctor's degree. +containersize 19384 +containerchecksum c13d916b927b5caadd0b6d7d9b9abe05cb6ccff2eebff4cad0034589ec63eddeb8a7bb19f8280e7f52b7fe4ef651df29fe20f82c0e2b34e3c8c259cb5654ac5f +doccontainersize 1857044 +doccontainerchecksum db975be86cdfa84682ca866141e2673bee2cc9650c598057b9ab6e65251a07dbd4f760b9a80104df82661822b2319a1fca9589f568405543fdf5c207fa3560c3 +docfiles size=580 + RELOC/doc/latex/thuthesis/README.md details="Readme" RELOC/doc/latex/thuthesis/data/ack.tex RELOC/doc/latex/thuthesis/data/appendix01.tex RELOC/doc/latex/thuthesis/data/chap01.tex @@ -162983,59 +276775,61 @@ docfiles size=651 RELOC/doc/latex/thuthesis/data/denotation.tex RELOC/doc/latex/thuthesis/data/resume.tex RELOC/doc/latex/thuthesis/dtx-style.sty - RELOC/doc/latex/thuthesis/figures/hello.eps - RELOC/doc/latex/thuthesis/figures/hello.fig - RELOC/doc/latex/thuthesis/figures/hello.pdf - RELOC/doc/latex/thuthesis/figures/thu-fig-logo.eps + RELOC/doc/latex/thuthesis/figures/scan-auth.pdf + RELOC/doc/latex/thuthesis/figures/scan-record.pdf + RELOC/doc/latex/thuthesis/figures/scan-statement.pdf RELOC/doc/latex/thuthesis/figures/thu-fig-logo.pdf - RELOC/doc/latex/thuthesis/figures/thu-lib-logo.eps RELOC/doc/latex/thuthesis/figures/thu-lib-logo.pdf - RELOC/doc/latex/thuthesis/figures/thu-text-logo.eps RELOC/doc/latex/thuthesis/figures/thu-text-logo.pdf - RELOC/doc/latex/thuthesis/figures/thu-whole-logo.eps RELOC/doc/latex/thuthesis/figures/thu-whole-logo.pdf + RELOC/doc/latex/thuthesis/latexmkrc RELOC/doc/latex/thuthesis/main.pdf RELOC/doc/latex/thuthesis/main.tex RELOC/doc/latex/thuthesis/ref/refs.bib RELOC/doc/latex/thuthesis/shuji.pdf RELOC/doc/latex/thuthesis/shuji.tex - RELOC/doc/latex/thuthesis/thuthesis.pdf - RELOC/doc/latex/thuthesis/zhfonts.py -srcfiles size=32 + RELOC/doc/latex/thuthesis/thuthesis.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/thuthesis/tsinghua.pdf +srccontainersize 39140 +srccontainerchecksum 74c47a6ed23839ede380bcadc4aaa24a526f62b46a92456e0f2c22e125dcfdb1006a0e4d9070247bb65b5096dd573988de9c4c1e6f12cca4cd8f9d553ad137d1 +srcfiles size=35 + RELOC/source/latex/thuthesis/Makefile RELOC/source/latex/thuthesis/thuthesis.dtx RELOC/source/latex/thuthesis/thuthesis.ins +runfiles size=40 + RELOC/bibtex/bst/thuthesis/thuthesis-author-year.bst + RELOC/bibtex/bst/thuthesis/thuthesis-bachelor.bst + RELOC/bibtex/bst/thuthesis/thuthesis-numeric.bst + RELOC/tex/latex/thuthesis/thuthesis.cls + RELOC/tex/latex/thuthesis/thuthesis.sty +catalogue-contact-announce https://github.com/xueruini/thuthesis/releases +catalogue-contact-bugs https://github.com/xueruini/thuthesis/issues +catalogue-contact-development https://github.com/xueruini/thuthesis +catalogue-contact-home https://github.com/xueruini/thuthesis +catalogue-contact-repository https://github.com/xueruini/thuthesis +catalogue-contact-support https://github.com/xueruini/thuthesis/issues catalogue-ctan /macros/latex/contrib/thuthesis -catalogue-date 2014-12-09 20:29:22 +0100 +catalogue-date 2019-04-27 09:31:18 +0200 catalogue-license lppl1.3 -catalogue-version 4.8.1 +catalogue-topics dissertation class chinese +catalogue-version 5.5.2 name ticket category Package -revision 20679 -shortdesc Make labels, visiting-cards, pins with LaTeX. +revision 42280 +shortdesc Make labels, visiting-cards, pins with LaTeX relocated 1 longdesc Provides an easy to handle interface to produce visiting cards, longdesc labels for your files, stickers, pins and other stuff for your longdesc office, conferences etc. All you need is a definition of your longdesc 'ticket' included in a ticket definition file and the two longdesc commands \ticketdefault and \ticket. -runfiles size=16 - RELOC/tex/latex/ticket/aj8414.tdf - RELOC/tex/latex/ticket/dura5222.tdf - RELOC/tex/latex/ticket/flashCard.tdf - RELOC/tex/latex/ticket/freepin.tdf - RELOC/tex/latex/ticket/freepin2.tdf - RELOC/tex/latex/ticket/freepin3.tdf - RELOC/tex/latex/ticket/he4432.tdf - RELOC/tex/latex/ticket/lz1680.tdf - RELOC/tex/latex/ticket/lz1681.tdf - RELOC/tex/latex/ticket/lz1685.tdf - RELOC/tex/latex/ticket/ticket.sty - RELOC/tex/latex/ticket/zw32010.tdf - RELOC/tex/latex/ticket/zw3424.tdf - RELOC/tex/latex/ticket/zw4752.tdf -docfiles size=124 - RELOC/doc/latex/ticket/README +containersize 3996 +containerchecksum cefb3e06df2953063e9d12f19f03e973212e784cebfd2d6628d2e9ddb443159b285b34f12238f6b77813cc48e86aae7018cb5bccc4fd158f4d891f05fc51dab5 +doccontainersize 488008 +doccontainerchecksum fde4b06ad09837d1d6b6efb275800e32f617619f9c18d2dda5924b094f860492053c4ee361a2fded1c9f4509ba5e615601b183191c0cf064af24cc59cfb23748 +docfiles size=148 + RELOC/doc/latex/ticket/README.txt details="Package Readme" RELOC/doc/latex/ticket/comment RELOC/doc/latex/ticket/ex_file.pdf RELOC/doc/latex/ticket/ex_file.tex @@ -163050,87 +276844,257 @@ docfiles size=124 RELOC/doc/latex/ticket/ex_pin.tex RELOC/doc/latex/ticket/ex_vcard.pdf RELOC/doc/latex/ticket/ex_vcard.tex - RELOC/doc/latex/ticket/manual.pdf + RELOC/doc/latex/ticket/logo.png + RELOC/doc/latex/ticket/manual.pdf details="Package manual" RELOC/doc/latex/ticket/manual.tex - RELOC/doc/latex/ticket/test.tex RELOC/doc/latex/ticket/words.tex +runfiles size=18 + RELOC/tex/latex/ticket/aj8414.tdf + RELOC/tex/latex/ticket/dura5222.tdf + RELOC/tex/latex/ticket/flashCard.tdf + RELOC/tex/latex/ticket/freepin.tdf + RELOC/tex/latex/ticket/freepin2.tdf + RELOC/tex/latex/ticket/freepin3.tdf + RELOC/tex/latex/ticket/he4432.tdf + RELOC/tex/latex/ticket/invite.tdf + RELOC/tex/latex/ticket/lz1680.tdf + RELOC/tex/latex/ticket/lz1681.tdf + RELOC/tex/latex/ticket/lz1685.tdf + RELOC/tex/latex/ticket/rex23184237.tdf + RELOC/tex/latex/ticket/ticket.sty + RELOC/tex/latex/ticket/zw32010.tdf + RELOC/tex/latex/ticket/zw3424.tdf + RELOC/tex/latex/ticket/zw4752.tdf catalogue-ctan /macros/latex/contrib/ticket -catalogue-date 2012-04-27 12:20:53 +0200 -catalogue-license lppl -catalogue-version 0.4b +catalogue-date 2016-10-11 17:37:14 +0200 +catalogue-license lppl1.3 +catalogue-topics labels +catalogue-version 0.4d name ticollege category Package revision 36306 -shortdesc Graphical representation of keys on a standard scientific calculator. +shortdesc Graphical representation of keys on a standard scientific calculator relocated 1 longdesc This package provides commands to draw scientific calculator longdesc keys with the help of TikZ. It also provides commands to draw longdesc the content of screens and of menu items. -runfiles size=6 - RELOC/tex/latex/ticollege/ticollege.sty +containersize 5040 +containerchecksum 92bebbf5a5e7ccf7be09c205d9007a780422c625d9a308eeeae50b2ec4ba3cc6755a37fd8a49e24b7a381894cc3791fbf50f54348c3ac584a2c0d9a693f93a56 +doccontainersize 371572 +doccontainerchecksum f0049064eab926eefcf77fe5aa0606202cbce79ed7f0e0f1bafb171ad82b72daf09fe2c0cdf79720834d6349d9190f1d3069f155df922ceb469ad3453a6389b1 docfiles size=100 RELOC/doc/latex/ticollege/IndexHead.ist - RELOC/doc/latex/ticollege/README - RELOC/doc/latex/ticollege/ticollege-doc.pdf + RELOC/doc/latex/ticollege/README details="Readme" language="fr" + RELOC/doc/latex/ticollege/ticollege-doc.pdf details="Package documentation (French)" language="fr" RELOC/doc/latex/ticollege/ticollege-doc.tex +runfiles size=6 + RELOC/tex/latex/ticollege/ticollege.sty catalogue-ctan /graphics/pgf/contrib/ticollege -catalogue-date 2015-03-01 06:19:26 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics pgf-tikz doc-supp catalogue-version 1.0 name tie category TLCore -revision 37078 -shortdesc Allow multiple web change files. +revision 50602 +shortdesc Allow multiple web change files longdesc Tie was originally developed to allow web programmers to apply longdesc more than one change file to their source. The program may also longdesc be used to create a new version of a .web file that longdesc incorporates existing changes. depend kpathsea depend tie.ARCH -docfiles size=3 +containersize 500 +containerchecksum 970a855d2d025b3ac30a4e1631986568459bae84727b661ffc8e0982656bc66eb940b59e2b9c3ee6430e3abd5f7d8b0ce4ff828127bd2f9420e0139f1860527b +doccontainersize 14936 +doccontainerchecksum 24f07d9954fe0385abec8487d4c488df551453e13e8f638e32899722d62dc91b23df9d4494f9bc13662d57fed6e8dfd4d71835ef79832b59f075f9023797e858 +docfiles size=6 texmf-dist/doc/man/man1/tie.1 texmf-dist/doc/man/man1/tie.man1.pdf catalogue-ctan /web/tie -catalogue-date 2014-01-03 12:10:34 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics litprog-tools catalogue-version 2.4 +name tie.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of tie +containersize 28776 +containerchecksum 4c33b8388bff4ddfacaae181ccda0ecece5b8c72f518908bf3dca9c341294e357afda74b1696e572a437379b47697a61beafe7c922d6bda877f71653d46800b9 +binfiles arch=aarch64-linux size=19 + bin/aarch64-linux/tie + +name tie.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of tie +containersize 33080 +containerchecksum d89c14620709bb7bff367331bbfa326634ceeee6903bf9cd494a2a4fa12794ae959ba748e937b6608e07094e6073273f664ca170c31839da146867c7e5c71566 +binfiles arch=amd64-freebsd size=20 + bin/amd64-freebsd/tie + +name tie.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of tie +containersize 30404 +containerchecksum fc00d71e19452fc610f236d1fde5b1aa8ab6b6c636277f4ce871f9428ba09aa32f580f6a496c9271332f56f016db9714775672ed2bd441674e7e9926c683118e +binfiles arch=amd64-netbsd size=24 + bin/amd64-netbsd/tie + +name tie.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of tie +containersize 27344 +containerchecksum 529420e42856579d65b3e1058f7c85d6454f956c9bd9b064a9b6785c221b3d3cab15af028a5ddac6f3ea79f3ca3e8ccc99841735168c9ec4de91bfa644217431 +binfiles arch=armhf-linux size=17 + bin/armhf-linux/tie + +name tie.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of tie +containersize 5164 +containerchecksum a893dde19e37020809481b55396572b6766d756f76eeacb8a76ba5fb8d490e53e1831375a11a1c91f2c9477e425fe2837aafa3b84bfd94ec9541062bb1d2e955 +binfiles arch=i386-cygwin size=4 + bin/i386-cygwin/tie.exe + +name tie.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of tie +containersize 28336 +containerchecksum 9a84c6e74d67539b3463d22dcd46f92a40f64eb69f280214d3b97bd96b9260d6ea976ff05165b41cdd609df677f94c0d33e1ea42686fb7bc40e76ca5676554bf +binfiles arch=i386-freebsd size=16 + bin/i386-freebsd/tie + name tie.i386-linux category TLCore -revision 36790 +revision 50281 shortdesc i386-linux files of tie -binfiles arch=i386-linux size=27 +containersize 36248 +containerchecksum 63ea165dbd158d6616526552da30c94e432c0c515bf3c22b1cde46b79c6699b497eaee77dfe7ea92336cf929a8cd5ec0223441863c2881dfd523a9aa11cc1378 +binfiles arch=i386-linux size=23 bin/i386-linux/tie +name tie.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of tie +containersize 28016 +containerchecksum 7dda043daafbb1b63cfaa1c15f24922d3d47c394738e600f96f5c96681581e7994b7bddcdc91a087576aaba6eccae5aec9f3b5e92d6b8a76fb04e4fd0af7e82c +binfiles arch=i386-netbsd size=23 + bin/i386-netbsd/tie + +name tie.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of tie +containersize 32288 +containerchecksum d5a025bad218d812b9edfeb56ae4739fe6408aba19b673459a9b562156144be1eebda93aa940ddbcbc5fd3489b9da792ed8f810d58a166010fe2c454819358aa +binfiles arch=i386-solaris size=18 + bin/i386-solaris/tie + +name tie.win32 +category TLCore +revision 50155 +shortdesc win32 files of tie +containersize 5924 +containerchecksum aa4b137b7b404dd6caa19a6f74b88a35cb93ad70c748120946550e25284e129ced76395f7bd63357c9ee0cdd2e40ec368830d4e8d0bff93ebce25eba85786848 +binfiles arch=win32 size=3 + bin/win32/tie.exe + +name tie.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of tie +containersize 5168 +containerchecksum 4d3170634cf222dbd8215731b25826ac4ca510bdfa1bc11b0455d023a98e0c3aa908cd2617dac41bda0ccf46c7c156f397b27a528633ce4902fc4851f8edf475 +binfiles arch=x86_64-cygwin size=4 + bin/x86_64-cygwin/tie.exe + +name tie.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of tie +containersize 32344 +containerchecksum 125f4d8205d14e1f68b949924d963dda93bebcedb5ad1d6c0db5c5c99a9c2ff0634153f076ed81f5e63f1f230d98d0e2d065dd3d70d1a9b808c9f278f42bac7f +binfiles arch=x86_64-darwin size=19 + bin/x86_64-darwin/tie + +name tie.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of tie +containersize 31912 +containerchecksum b3b4cf598cc4b27f12a60eb509730f39639f1afc796c08abe4ba181efd8e7fec3996f2da77e101df8134897859c6297f7f000447d4454024edc92328a10ce955 +binfiles arch=x86_64-darwinlegacy size=21 + bin/x86_64-darwinlegacy/tie + +name tie.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of tie +containersize 34308 +containerchecksum f347c2c9a12bc17c72fb072b1ae6fcdc0d96067a4a45a0e0ada24a93c462e41dfe002a8d85a273f34549c653268f5633977c387903f80d97b28fd8395a63959c +binfiles arch=x86_64-linux size=20 + bin/x86_64-linux/tie + +name tie.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of tie +containersize 35876 +containerchecksum 5be5a1688e779caf1a4dd96434cc31a610198f9cd1fb5bdf6286de3e07cae5c118ed6ad3d1e68ddd7e11697b3908a10b05cf1d32a55b7df2623ee37de7ecb48d +binfiles arch=x86_64-linuxmusl size=22 + bin/x86_64-linuxmusl/tie + +name tie.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of tie +containersize 35168 +containerchecksum f7f15a358bdfa8879eeffdd05e5b784a278adba34914d50906fafbc1c5376b7481682d886dfa8cc0d18cd238932a7cc9df5f1703470c913a4a7d473447e233bb +binfiles arch=x86_64-solaris size=22 + bin/x86_64-solaris/tie + name tikz-3dplot category Package revision 25087 -shortdesc Coordinate transformation styles for 3d plotting in TikZ. -relocated 1 -longdesc The package provides straightforward ways to define three- -longdesc dimensional coordinate frames through which to plot in TikZ. -longdesc The user can specify the orientation of the main coordinate -longdesc frame, and use standard TikZ commands and coordinates to render -longdesc their tikzfigure. A secondary coordinate frame is provided to -longdesc allow rotations and translations with respect to the main -longdesc coordinate frame. In addition, the package can also handle -longdesc plotting user-specified functions in spherical polar -longdesc coordinates, where both the radius and fill color can be +shortdesc Coordinate transformation styles for 3d plotting in TikZ +relocated 1 +longdesc The package provides straightforward ways to define +longdesc three-dimensional coordinate frames through which to plot in +longdesc TikZ. The user can specify the orientation of the main +longdesc coordinate frame, and use standard TikZ commands and +longdesc coordinates to render their tikzfigure. A secondary coordinate +longdesc frame is provided to allow rotations and translations with +longdesc respect to the main coordinate frame. In addition, the package +longdesc can also handle plotting user-specified functions in spherical +longdesc polar coordinates, where both the radius and fill color can be longdesc expressed as parametric functions of polar angles. -runfiles size=8 - RELOC/tex/latex/tikz-3dplot/tikz-3dplot.sty +containersize 7812 +containerchecksum 6d4aac2eaeebbe2a4827a5a40e8571c48ff4f5cc854daf130ec7f20f8fa06135bae1486a42b223410be848b72be2c19d6e2ed798694ef5dcdb5861846bd9c072 +doccontainersize 391432 +doccontainerchecksum 0fd9bde0f12ddf5a4bf6e2e1df66a9aafa42e81cd945b41e09e8d289c57b04faddd303a415c36239e6686be90f06e8a7cc794ea50d17ec54f1e25703314257da docfiles size=139 RELOC/doc/latex/tikz-3dplot/CHANGELOG - RELOC/doc/latex/tikz-3dplot/README + RELOC/doc/latex/tikz-3dplot/README details="Readme" RELOC/doc/latex/tikz-3dplot/externalize_images.bat - RELOC/doc/latex/tikz-3dplot/tikz-3dplot_documentation.pdf + RELOC/doc/latex/tikz-3dplot/tikz-3dplot_documentation.pdf details="Package documentation" RELOC/doc/latex/tikz-3dplot/tikz-3dplot_documentation.tex RELOC/doc/latex/tikz-3dplot/tikz-3dplot_documentation_figures.tex +runfiles size=8 + RELOC/tex/latex/tikz-3dplot/tikz-3dplot.sty catalogue-ctan /graphics/pgf/contrib/tikz-3dplot -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics graphics-use graphics-3d pgf-tikz name tikz-bayesnet category Package @@ -163140,8 +277104,10 @@ relocated 1 longdesc The package provides a library supporting the display of longdesc Bayesian networks, graphical models and (directed) factor longdesc graphs in LaTeX. -runfiles size=1 - RELOC/tex/latex/tikz-bayesnet/tikzlibrarybayesnet.code.tex +containersize 1748 +containerchecksum b3c535af8afe86e311e4c7371addfa484403a0a9571a17d1cb8d39dd7242aa4798476352bb04a6bb214086f1ed4985595c502723444a032f9bde04423c26bea8 +doccontainersize 20444 +doccontainerchecksum 2bdd764163c606579e68099873844fdef6b9a36495f4117b99ca483bbe43334965a177f398da60e82c11035b5c7b9e0513ae56e6868d6238cc0c798f47ab37e7 docfiles size=20 RELOC/doc/latex/tikz-bayesnet/LICENSE_GPL RELOC/doc/latex/tikz-bayesnet/LICENSE_LPPL @@ -163151,15 +277117,17 @@ docfiles size=20 RELOC/doc/latex/tikz-bayesnet/model_lda.tex RELOC/doc/latex/tikz-bayesnet/model_pca.tex RELOC/doc/latex/tikz-bayesnet/model_pca2.tex +runfiles size=1 + RELOC/tex/latex/tikz-bayesnet/tikzlibrarybayesnet.code.tex catalogue-ctan /graphics/pgf/contrib/tikz-bayesnet -catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 catalogue-topics statistics pgf-tikz catalogue-version 0.1 name tikz-cd category Package -revision 35485 +revision 49201 shortdesc Create commutative diagrams with TikZ relocated 1 longdesc The general-purpose drawing package TiKZ can be used to typeset @@ -163170,87 +277138,190 @@ longdesc providing a convenient set of macros and reasonable default longdesc settings. This package also includes an arrow tip library that longdesc match closely the arrows present in the Computer Modern longdesc typeface. +containersize 6452 +containerchecksum 3fbfa7731eeb6d2b9cbe67cbc4d5470e235f6f990b76b3c82961df172fbba9a8f62ec6055743098cbdb2d3d8aaa3b94f5d4dd8f735624c7d9562de6aa72fdda3 +doccontainersize 276360 +doccontainerchecksum 63be72c0d55112e8328d40ae4fbd1e3c92133615e28f032f9f5efcf2432b6cc440b3c4de4ba46f3eb9e65725caf7de3623a8b49f3b9a87ef780dbeacc536df46 +docfiles size=80 + RELOC/doc/latex/tikz-cd/README.md details="Readme" + RELOC/doc/latex/tikz-cd/tikz-cd-doc.pdf details="Package documentation" + RELOC/doc/latex/tikz-cd/tikz-cd-doc.tex runfiles size=7 RELOC/tex/generic/tikz-cd/tikzlibrarycd.code.tex RELOC/tex/latex/tikz-cd/tikz-cd.sty -docfiles size=98 - RELOC/doc/latex/tikz-cd/README - RELOC/doc/latex/tikz-cd/tikz-cd-doc.pdf - RELOC/doc/latex/tikz-cd/tikz-cd-doc.tex +catalogue-contact-repository https://github.com/astoff/tikz-cd/ catalogue-ctan /graphics/pgf/contrib/tikz-cd -catalogue-date 2014-10-31 09:00:43 +0100 +catalogue-date 2018-11-19 23:14:49 +0100 catalogue-license gpl3 -catalogue-version 0.9e +catalogue-topics diagram-comm graphics-in-tex pgf-tikz +catalogue-version 0.9f name tikz-dependency category Package -revision 25156 -shortdesc A library for drawing dependency graphs. +revision 42454 +shortdesc A library for drawing dependency graphs relocated 1 longdesc The package provides a library that draws together existing longdesc TikZ facilities to make a comfortable environment for drawing longdesc dependency graphs. Basic facilities of the package include a longdesc lot of styling facilities, to let you personalize the look and longdesc feel of the graphs. -runfiles size=3 - RELOC/tex/latex/tikz-dependency/tikz-dependency.sty -docfiles size=225 +containersize 15752 +containerchecksum e6f04805d8c36c6bf81deb68ffa2c43fed7a7ce21541d6b02828574b579cf41d5b57fd53d12f18e82b66c3f96e7c6962555dede9072e243693f6f6767146ad57 +doccontainersize 500028 +doccontainerchecksum ebb3821e66d238967aadcb06d801a0d18a90610eba37d1763c44452f7bf8fdf0c1cd30d52a72f0120a45429c303739fa239ad05b92ae067b99771d9bf4f568ca +docfiles size=212 RELOC/doc/latex/tikz-dependency/AUTHORS RELOC/doc/latex/tikz-dependency/LICENSE RELOC/doc/latex/tikz-dependency/README RELOC/doc/latex/tikz-dependency/VERSION RELOC/doc/latex/tikz-dependency/pgfmanual-en-macros.tex - RELOC/doc/latex/tikz-dependency/pgfmanual.code.tex - RELOC/doc/latex/tikz-dependency/pgfmanual.pdflinks.code.tex - RELOC/doc/latex/tikz-dependency/pgfmanual.prettyprinter.code.tex - RELOC/doc/latex/tikz-dependency/tikz-dependency-doc.pdf + RELOC/doc/latex/tikz-dependency/tikz-dependency-doc.pdf details="Package documentation" RELOC/doc/latex/tikz-dependency/tikz-dependency-doc.tex +runfiles size=20 + RELOC/tex/latex/tikz-dependency/pgfmanual.code.tex + RELOC/tex/latex/tikz-dependency/pgfmanual.pdflinks.code.tex + RELOC/tex/latex/tikz-dependency/pgfmanual.prettyprinter.code.tex + RELOC/tex/latex/tikz-dependency/tikz-dependency.sty catalogue-ctan /graphics/pgf/contrib/tikz-dependency -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.1 +catalogue-date 2018-02-07 16:05:00 +0100 +catalogue-license lpplgpl2 +catalogue-topics linguistic tree pgf-tikz +catalogue-version 1.2 name tikz-dimline category Package revision 35805 -shortdesc Technical dimension lines using PGF/TikZ. +shortdesc Technical dimension lines using PGF/TikZ relocated 1 longdesc tikz-dimline helps drawing technical dimension lines in TikZ longdesc picture environments. Its usage is similar to some longdesc contributions posted on stackexchange. -runfiles size=2 - RELOC/tex/latex/tikz-dimline/tikz-dimline.sty +containersize 2000 +containerchecksum c7a3b158a8acd100192b7dc936f2e452513125389f72c12f0c3818bb4e771abf0748338f13603765904adf1d808fc2b263d0f798999c52638e610d24addcc641 +doccontainersize 162296 +doccontainerchecksum 62edb9667ae4405c798a00c1d079ea9ed5bbdddd76e4a730aaf7405d175afa146fcb7bf43a551001eeff1f683ce3b47a0a79fab66b7410be59f18f4f6e409ef4 docfiles size=49 - RELOC/doc/latex/tikz-dimline/README + RELOC/doc/latex/tikz-dimline/README details="Readme" RELOC/doc/latex/tikz-dimline/dimline1.png RELOC/doc/latex/tikz-dimline/dimline2.png RELOC/doc/latex/tikz-dimline/dimline3.png - RELOC/doc/latex/tikz-dimline/tikz-dimline-doc.pdf + RELOC/doc/latex/tikz-dimline/tikz-dimline-doc.pdf details="Package documentation" RELOC/doc/latex/tikz-dimline/tikz-dimline-doc.tex +runfiles size=2 + RELOC/tex/latex/tikz-dimline/tikz-dimline.sty +catalogue-contact-repository https://github.com/renard/tikz-dimline catalogue-ctan /graphics/pgf/contrib/tikz-dimline -catalogue-date 2014-12-31 01:06:50 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license other-free +catalogue-topics pgf-tikz catalogue-version 1.0 -name tikzinclude +name tikz-feynhand +category Package +revision 46502 +shortdesc Feynman diagrams with TikZ +relocated 1 +longdesc This package lets you draw Feynman diagrams using TikZ. It is a +longdesc low-end modification of the TikZ-Feynman package, one of whose +longdesc principal advantages is the automatic generation of diagrams, +longdesc for which it needs LuaTex. TikZ-FeynHand only provides the +longdesc manual mode and hence runs in LaTeX without any reference to +longdesc LuaTeX. In addition it provides some new styles for vertices +longdesc and propagators, alternative shorter keywords in addition to +longdesc TikZ-Feynman's longer ones, some shortcut commands for quickly +longdesc customizing the diagrams' look, and the new feature of putting +longdesc one propagator "on top" of another. It also includes a quick +longdesc user guide for getting started, with many examples and a +longdesc 5-minute introduction to TikZ. +containersize 6712 +containerchecksum bc3aa0738f67a1a410425eedbe7c315e4da00d435a812848e86989a85ee9908d8569ae4439ed7c24bed518b805dc8bf760be803ac82f6b440230b15c84401895 +doccontainersize 313668 +doccontainerchecksum e95e699ae44834801ed0bf243e0bfd4dd6a7e649cb51eec8eb29118f5acb561ecbef6bb8a7bc33821fa0913e36cc6f1807e3616bcee7bedfbe350cba445f0c31 +docfiles size=114 + RELOC/doc/latex/tikz-feynhand/README.md details="Readme" + RELOC/doc/latex/tikz-feynhand/changes.txt + RELOC/doc/latex/tikz-feynhand/shell_escape.jpg + RELOC/doc/latex/tikz-feynhand/tikz-feynhand.userguide.pdf details="Package documentation" + RELOC/doc/latex/tikz-feynhand/tikz-feynhand.userguide.tex +runfiles size=13 + RELOC/tex/latex/tikz-feynhand/tikz-feynhand.sty + RELOC/tex/latex/tikz-feynhand/tikzfeynhand.keys.code.tex + RELOC/tex/latex/tikz-feynhand/tikzlibraryfeynhand.code.tex +catalogue-also tikz-feynman +catalogue-ctan /graphics/pgf/contrib/tikz-feynhand +catalogue-date 2018-02-03 06:27:57 +0100 +catalogue-license gpl3+ +catalogue-topics physics pgf-tikz +catalogue-version 1.0.0 + +name tikz-feynman +category Package +revision 39582 +shortdesc Feynman diagrams with TikZ +relocated 1 +longdesc This is a LaTeX package allowing Feynman diagrams to be easily +longdesc generated within LaTeX with minimal user instructions and +longdesc without the need of external programs. It builds upon the TikZ +longdesc package and leverages the graph placement algorithms from TikZ +longdesc in order to automate the placement of many vertices. +longdesc tikz-feynman allows fine-tuned placement of vertices so that +longdesc even complex diagrams can still be generated with ease. +containersize 15444 +containerchecksum 1a1ebc5d2f2eca4e5dd16ce744774add9b8f5b4c3124dee46f0366f43a59b188b0873939d2b68ff0d679f3e52f1a6bc387ab81c363912024efd0eb4110e2ba27 +doccontainersize 322304 +doccontainerchecksum b3e90aa1d8476aed01faef977b75f4e3450cab121d457eca0bb254075c1e2ed58fe15196ab0d923906dcf6af4f78bc76d6053343f6444c8294bf7d5bbceb3cd1 +docfiles size=104 + RELOC/doc/latex/tikz-feynman/LICENSE + RELOC/doc/latex/tikz-feynman/README.md details="Readme" + RELOC/doc/latex/tikz-feynman/references.bib + RELOC/doc/latex/tikz-feynman/tikz-feynman.pdf details="Package documentation" + RELOC/doc/latex/tikz-feynman/tikz-feynman.tex +runfiles size=28 + RELOC/tex/latex/tikz-feynman/tikz-feynman.sty + RELOC/tex/latex/tikz-feynman/tikzfeynman.keys.code.tex + RELOC/tex/latex/tikz-feynman/tikzfeynman.patch.3.0.0.lua + RELOC/tex/latex/tikz-feynman/tikzfeynman.patch.3.0.1.lua + RELOC/tex/latex/tikz-feynman/tikzlibraryfeynman.code.tex +catalogue-also tikz-feynhand +catalogue-contact-home http://www.jpellis.me/projects/tikz-feynman +catalogue-ctan /graphics/pgf/contrib/tikz-feynman +catalogue-date 2018-01-31 19:51:33 +0100 +catalogue-license lppl1.3 +catalogue-topics physics pgf-tikz use-luatex +catalogue-version 1.1.0 + +name tikz-imagelabels category Package -revision 28715 -shortdesc Import TikZ images from colletions. +revision 49864 +shortdesc Put labels on images using TikZ relocated 1 -longdesc The package addresses the problem of importing only one TikZ- -longdesc image from a file holding multiple images. -runfiles size=1 - RELOC/tex/latex/tikzinclude/tikzinclude.sty -docfiles size=43 - RELOC/doc/latex/tikzinclude/README - RELOC/doc/latex/tikzinclude/tikzinclude.pdf -srcfiles size=3 - RELOC/source/latex/tikzinclude/tikzinclude.dtx - RELOC/source/latex/tikzinclude/tikzinclude.ins -catalogue-ctan /graphics/pgf/contrib/tikzinclude -catalogue-date 2014-02-26 23:03:13 +0100 +longdesc This package allows to add label texts to an existing image +longdesc with the aid of TikZ. This may be used to label certain +longdesc features in an image. +containersize 2024 +containerchecksum c5c593299ce3fdfb52c24098b50898407374a375e272b831a42c36748fc4c0cc8e10ef5883865a778d806d824e13426955546390354ad664cc0d805b07baa295 +doccontainersize 967992 +doccontainerchecksum 304339d71812f8eed741cd3b160d7559204664dedd87ddb00ac2ba7f5cb0e6005b4ce7fb14ce03ac9962e59333bb38e49e0f6620fac1c8c74dfdaa75543e8e05 +docfiles size=365 + RELOC/doc/latex/tikz-imagelabels/README.md details="Readme" + RELOC/doc/latex/tikz-imagelabels/pleiades.jpg + RELOC/doc/latex/tikz-imagelabels/tikz-imagelabels.pdf details="Package documentation" +srccontainersize 7864 +srccontainerchecksum db59295e5c56b10610737e34de8ecd19d16b096ea8f7b2d2e6c34a1a2a55e89be3076d39acfea72b36f6bb23a6c254e8d23e58d2c28a8730854920acb009c498 +srcfiles size=8 + RELOC/source/latex/tikz-imagelabels/Makefile + RELOC/source/latex/tikz-imagelabels/tikz-imagelabels.dtx + RELOC/source/latex/tikz-imagelabels/tikz-imagelabels.ins +runfiles size=2 + RELOC/tex/latex/tikz-imagelabels/tikz-imagelabels.sty +catalogue-contact-bugs https://github.com/tcpluess/tikz-imagelabels/issues +catalogue-contact-repository https://github.com/tcpluess/tikz-imagelabels +catalogue-ctan /graphics/pgf/contrib/tikz-imagelabels +catalogue-date 2019-02-21 05:19:21 +0100 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics graphics pgf-tikz graphics-incl graphics-text +catalogue-version 0.1 name tikz-inet category Package @@ -163258,158 +277329,869 @@ revision 15878 shortdesc Draw interaction nets with TikZ relocated 1 longdesc The package extends TikZ with macros to draw interaction nets. -runfiles size=4 - RELOC/tex/latex/tikz-inet/tikz-inet.sty +containersize 2832 +containerchecksum 0c4ecd55d10893ac8bca7b8ac38f2366f30cd989c5d6ab4dd501047f01c0285f8e4b78309dfce06525bf525cff77e2edd56429aa166f24b9a7e07586e3befe96 +doccontainersize 115776 +doccontainerchecksum e61f0a7879dd0ec016b6c85d66e6ace6b953adc2b9abd87306dc4d071d82f44984e6e25530db3fc658650f5ca74e5c237aa64d18e60a3c5c8c7f57c6f42103e0 docfiles size=38 - RELOC/doc/latex/tikz-inet/README - RELOC/doc/latex/tikz-inet/tikz-inet-doc.pdf + RELOC/doc/latex/tikz-inet/README details="Readme" + RELOC/doc/latex/tikz-inet/tikz-inet-doc.pdf details="Package documentation" RELOC/doc/latex/tikz-inet/tikz-inet-doc.tex +runfiles size=4 + RELOC/tex/latex/tikz-inet/tikz-inet.sty catalogue-ctan /graphics/pgf/contrib/tikz-inet -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics logic catalogue-version 0.1 -name tikzmark +name tikz-kalender +category Package +revision 49456 +shortdesc A LaTeX based calendar using TikZ +relocated 1 +longdesc For usage see the example files tikz-kalender-example1.tex, +longdesc tikz-kalender-example2.tex, and *.events. The Code is inspired +longdesc by this document and is subject to the >>Creative Commons +longdesc attribution license (CC-BY-SA)<<. The class tikz-kalender +longdesc requires the package TikZ and the TikZ libraries calc and +longdesc calendar. +containersize 4316 +containerchecksum 018547e2515c01b0e2615a91cccf53f9a24f6369e2686cd2a1fca482e7c3e901c482c3c130fc7c1740973e1f4b43fb95538606945df6f0cad342cbf3e85e6059 +doccontainersize 118580 +doccontainerchecksum 08675592fe8779ac1994ba090f86f10822bc229b85bee8c8b881c4c1b8e25c835ec3e40be2a46c20c8da5cf5751318ab8efb18aa91fc93ad8bbe7294eb37bc66 +docfiles size=37 + RELOC/doc/latex/tikz-kalender/Feiertage-2016.events + RELOC/doc/latex/tikz-kalender/Geburtstage.events + RELOC/doc/latex/tikz-kalender/README.md details="Readme" + RELOC/doc/latex/tikz-kalender/Schulferien-2016.events + RELOC/doc/latex/tikz-kalender/Sonstiges.events + RELOC/doc/latex/tikz-kalender/Urlaub.events + RELOC/doc/latex/tikz-kalender/tikz-kalender-example1.pdf details="Example of use" + RELOC/doc/latex/tikz-kalender/tikz-kalender-example1.tex + RELOC/doc/latex/tikz-kalender/tikz-kalender-example2.pdf + RELOC/doc/latex/tikz-kalender/tikz-kalender-example2.tex +runfiles size=4 + RELOC/tex/latex/tikz-kalender/tikz-kalender-translation.clo + RELOC/tex/latex/tikz-kalender/tikz-kalender.cls +catalogue-also calendar +catalogue-contact-bugs https://github.com/rolfn/kalenderRN/issues +catalogue-contact-repository https://github.com/rolfn/kalenderRN +catalogue-ctan /graphics/pgf/contrib/tikz-kalender +catalogue-date 2018-12-19 13:44:06 +0100 +catalogue-license cc-by-sa-1 +catalogue-topics calendar class pgf-tikz +catalogue-version 0.4d + +name tikz-karnaugh +category Package +revision 47026 +shortdesc Typeset Karnaugh maps using TikZ +relocated 1 +longdesc The tikz-karnaugh package is a LaTeX package used to draw +longdesc Karnaugh maps. It uses TikZ to produce high quality graph up to +longdesc 12 variables, but this limit depends on the TeX memory usage +longdesc and can be different for you. It is very good for presentation +longdesc since TikZ allows for a better control over the final +longdesc appearance of the map. You can control colour, styles and +longdesc distances. It can be considered as an upgrade of Andreas W. +longdesc Wieland's karnaugh package towards TikZ supporting. Also, +longdesc complex maps with solution (prime implicants) pointed out can +longdesc be generated with external java software. It supports both +longdesc America and traditional styles, though American style requires +longdesc a little extra effort. +containersize 4532 +containerchecksum aef1c5e3fe96191d0dbe55ea9f2307b05c328b92621e9dcebf4f8fb862ae501bc6dabd4f96915a800532723b447632e21110cbfb9483bd73dcef928b102bfec3 +doccontainersize 273192 +doccontainerchecksum b17971734dac21649b75c140dc1dca832de35460ba5de9e83f8907ed075fbd0fc2872edd39da7aaa5631b126ca0d59d1ad440e4fb2e68ad277d7ea4bb8975440 +docfiles size=89 + RELOC/doc/latex/tikz-karnaugh/README.txt details="Readme" + RELOC/doc/latex/tikz-karnaugh/tikz-karnaugh-doc.pdf details="Package documentation" + RELOC/doc/latex/tikz-karnaugh/tikz-karnaugh-doc.tex +runfiles size=5 + RELOC/tex/latex/tikz-karnaugh/tikzlibrarykarnaugh.code.tex +catalogue-also karnaugh karnaugh-map karnaughmap +catalogue-ctan /graphics/pgf/contrib/tikz-karnaugh +catalogue-date 2018-03-19 17:04:32 +0100 +catalogue-license lppl1 +catalogue-topics maths engineering pgf-tikz +catalogue-version 1.2 + +name tikz-ladder +category Package +revision 46555 +shortdesc Draw ladder diagrams using TikZ +relocated 1 +longdesc The tikz-ladder package contains a collection of symbols for +longdesc typesetting ladder diagrams (PLC program) in agreement with the +longdesc international standard IEC-61131-3/2013. It includes blocks +longdesc (for representing functions and function blocks) besides +longdesc contacts and coils. It extends the circuit library of TikZ and +longdesc allows you to draw a ladder diagram in the same way as you +longdesc would draw any other circuit. +containersize 4544 +containerchecksum b01bd48b4e8dbf5e3549bd24949b81b3731b32d715dcf3d3141e2e2eca5a98c1f5e5369c10cfdc62791280aa3349cb5409f582d71701ff03dced0688cad1847c +doccontainersize 236908 +doccontainerchecksum 9133c29850f486ea62be8ef9b61bf67907e88c9557fbac132ad04501616efee97725fc58585fce64c59707b4828a4953d926860af7c99fde9e3e73a479b28d0c +docfiles size=101 + RELOC/doc/latex/tikz-ladder/README.txt details="Readme" + RELOC/doc/latex/tikz-ladder/tikz-ladder-doc.pdf details="Package documentation" + RELOC/doc/latex/tikz-ladder/tikz-ladder-doc.tex +runfiles size=6 + RELOC/tex/latex/tikz-ladder/tikzlibrarycircuits.plc.ladder.code.tex +catalogue-also ladder +catalogue-ctan /graphics/pgf/contrib/tikz-ladder +catalogue-date 2018-02-06 19:35:43 +0100 +catalogue-license lppl1 +catalogue-topics pgf-tikz diagram diagram-circ engineering +catalogue-version 1.1 + +name tikz-layers category Package -revision 29999 -shortdesc Use TikZ's method of remembering a position on a page. +revision 46660 +shortdesc TikZ provides graphical layers on TikZ: "behind", "above" and "glass" relocated 1 -longdesc The tikzmark package defines a command to "remember" a position -longdesc on a page for later (or earlier) use, primarily (but not -longdesc exclusively) with TikZ. -runfiles size=3 - RELOC/tex/latex/tikzmark/tikzlibrarytikzmark.code.tex - RELOC/tex/latex/tikzmark/tikzmarklibrarylistings.code.tex -docfiles size=101 - RELOC/doc/latex/tikzmark/README.txt - RELOC/doc/latex/tikzmark/tikzmark.pdf -srcfiles size=9 - RELOC/source/latex/tikzmark/tikzmark.dtx - RELOC/source/latex/tikzmark/tikzmark.ins -catalogue-ctan /graphics/pgf/contrib/tikzmark -catalogue-date 2014-02-26 23:03:13 +0100 +longdesc TikZ-layers is a tiny package that provides, along side +longdesc "background", typical graphical layers on TikZ: "behind", +longdesc "above" and "glass". The layers may be selected with one of the +longdesc styles "on behind layer", "on above layer", "on glass layer" as +longdesc an option to a {scope} environment. +containersize 1084 +containerchecksum 900f3cba19f723cd75f59f2d3380ac96c6bcd53f4d80ce27b2d393d4728f37b9d9d2bae414f20d38e4b3b93769374281d4e741ac2480986b1662696e08a9a207 +doccontainersize 960 +doccontainerchecksum 617f1a53fa77f4a766157e72013227e992589b0030ac90ddd181643b1ef212f7e83b8f84f2520d64acf53f2cc76e3333e7ba56b78984b28c3320e2977a87cd56 +docfiles size=3 + RELOC/doc/latex/tikz-layers/README details="Readme" + RELOC/doc/latex/tikz-layers/README.TEXLIVE + RELOC/doc/latex/tikz-layers/manifest.txt +runfiles size=1 + RELOC/tex/latex/tikz-layers/tikz-layers.sty +catalogue-ctan /graphics/pgf/contrib/tikz-layers +catalogue-date 2018-02-19 05:24:39 +0100 catalogue-license lppl1.3 +catalogue-topics pgf-tikz graphics +catalogue-version 0.9 + +name tikz-nef +category Package +revision 48240 +shortdesc create diagrams for neural networks constructed with the methods of the Neural Engineering Framework (NEF) +relocated 1 +longdesc The nef TikZ library provides predefined styles and shapes to +longdesc create diagrams for neural networks constructed with the +longdesc methods of the Neural Engineering Framework (NEF). The +longdesc following styles are supported: ea: ensemble array ens: +longdesc ensemble ext: external input or output inhibt: inhibitory +longdesc connection net: network pnode: pass-through node rect: +longdesc rectification ensemble recurrent: recurrent connection +containersize 1308 +containerchecksum e0bfbce75ff6c9ea02a42576a767e1a06b589797995e29e9c2ddd8640916496bb50126da69fd859d9fe6c89a447c342fc15d66ba620f084980740c6e7238c780 +doccontainersize 97020 +doccontainerchecksum 724dc025c4e67817940f9c4269290dbd1a77208ebb8bb489f4807fea30594eba77c9896e3bc814825307f2012112576cd268633e99b53ead7b60d3689e155c09 +docfiles size=31 + RELOC/doc/latex/tikz-nef/LICENSE + RELOC/doc/latex/tikz-nef/README.md details="Readme" + RELOC/doc/latex/tikz-nef/example-net.tex + RELOC/doc/latex/tikz-nef/nef.bib + RELOC/doc/latex/tikz-nef/tikz-nef-doc.pdf details="Package documentation" + RELOC/doc/latex/tikz-nef/tikz-nef-doc.tex +runfiles size=1 + RELOC/tex/latex/tikz-nef/tikzlibrarynef.code.tex +catalogue-contact-bugs https://github.com/jgosmann/tikz-nef/issues +catalogue-contact-home https://github.com/jgosmann/tikz-nef +catalogue-contact-repository https://github.com/jgosmann/tikz-nef +catalogue-ctan /graphics/pgf/contrib/tikz-nef +catalogue-date 2018-07-23 05:30:43 +0200 +catalogue-license mit +catalogue-topics pgf-tikz diagram +catalogue-version 0.1 + +name tikz-network +category Package +revision 48314 +shortdesc Draw networks with TikZ +relocated 1 +longdesc This package allows the creation of images of complex networks +longdesc that are seamlessly integrated into the underlying LaTeX files. +containersize 8188 +containerchecksum c27f6f89e57e5199e68d7c94b186642449677575f5f8af7be5b6163baeb63deed79812d0b24ee8825287e37bba90edca55fa7ed5a68c99af0819b79004fb16ce +doccontainersize 790028 +doccontainerchecksum ac74e660b25e308050b3aedd27c4d777e68a61e4e077a636eacb2f1b4865d4532b355b8ec7a862393fde15d8d72ce268d77715bc69a82ad54de4d78cfbf74f9e +docfiles size=278 + RELOC/doc/latex/tikz-network/README.md details="Readme" + RELOC/doc/latex/tikz-network/data/edges.csv + RELOC/doc/latex/tikz-network/data/front.pdf + RELOC/doc/latex/tikz-network/data/ml_edges.csv + RELOC/doc/latex/tikz-network/data/ml_edges_simple.csv + RELOC/doc/latex/tikz-network/data/ml_vertices.csv + RELOC/doc/latex/tikz-network/data/ml_vertices_simple.csv + RELOC/doc/latex/tikz-network/data/plane.png + RELOC/doc/latex/tikz-network/data/vertices.csv + RELOC/doc/latex/tikz-network/data/vertices_RGB.csv + RELOC/doc/latex/tikz-network/tikz-network.pdf details="Package documentation" + RELOC/doc/latex/tikz-network/tikz-network.tex +runfiles size=13 + RELOC/tex/latex/tikz-network/tikz-network.sty +catalogue-contact-announce https://github.com/hackl/tikz-network +catalogue-contact-bugs https://github.com/hackl/tikz-network/issues +catalogue-contact-home https://github.com/hackl/tikz-network +catalogue-contact-repository https://github.com/hackl/tikz-network +catalogue-contact-support https://github.com/hackl/tikz-network/issues +catalogue-ctan /graphics/pgf/contrib/tikz-network +catalogue-date 2018-08-04 05:30:36 +0200 +catalogue-license gpl3+ +catalogue-topics pgf-tikz diagram catalogue-version 1.0 name tikz-opm category Package revision 32769 -shortdesc Typeset OPM diagrams. +shortdesc Typeset OPM diagrams relocated 1 longdesc Typeset OPM (Object-Process Methodology) diagrams using LaTeX -longdesc and pgf/TikZ. +longdesc and PGF/TikZ. +containersize 1872 +containerchecksum eeb000cf28e2ff79106edd734ab71b9ec4ecb0db043a8b03764a98a33d3ef570711974bb13b58453362dd045b1019bfb4a1c1a856b74590110f7d8af308a3f01 +doccontainersize 75232 +doccontainerchecksum a2ed9a4b52d34dece5b0007b9dc46cf8da8cee0a9288b8db79f38068db5227e35ef9e3fe1f93a4c53e994c06c2d5cf21257bcde24b02f1553cb21d9f7585751d +docfiles size=20 + RELOC/doc/latex/tikz-opm/README details="Readme" + RELOC/doc/latex/tikz-opm/tikz-opm.pdf details="Package documentation" runfiles size=2 RELOC/tex/latex/tikz-opm/tikz-opm.sty -docfiles size=20 - RELOC/doc/latex/tikz-opm/README - RELOC/doc/latex/tikz-opm/tikz-opm.pdf catalogue-ctan /graphics/pgf/contrib/tikz-opm -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics diagram pgf-tikz catalogue-version 0.1.1 +name tikz-optics +category Package +revision 43466 +shortdesc A library for drawing optical setups with TikZ +relocated 1 +longdesc This package provides a new TikZ library designed to easily +longdesc draw optical setups with TikZ. It provides shapes for lens, +longdesc mirror, etc. The geometrically (in)correct computation of light +longdesc rays through the setup is left to the user. +containersize 13176 +containerchecksum 703bf6777a78abfc72ff87d16a45c1599d9d68586b38fdb2aa4b2e180ce9cbd808a399a61f6ed381a3b04e83877dc2095c4701d10973f8632a0a32356d71f83c +doccontainersize 393040 +doccontainerchecksum 0a9f4d246869cfa0a8e7d252f78261a7877f4366fe1fa5c9db9dcb9a8dc36021818042d4ba79eb711e73a7ac32c0dd601ff892f97243fd5cdad373ee3ee02611 +docfiles size=118 + RELOC/doc/latex/tikz-optics/README details="Readme" + RELOC/doc/latex/tikz-optics/tikz-optics.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/tikz-optics/tikz-optics.tex +runfiles size=22 + RELOC/tex/latex/tikz-optics/tikzlibraryoptics.code.tex +catalogue-contact-repository https://github.com/fruchart/tikz-optics +catalogue-ctan /graphics/pgf/contrib/tikz-optics +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics physics pgf-tikz graphics-in-tex +catalogue-version 0.2.3 + +name tikz-page +category Package +revision 42039 +shortdesc Small macro to help building nice and complex layout materials +relocated 1 +longdesc The package provides a small macro to help building nice and +longdesc complex layout materials. +containersize 3600 +containerchecksum be0e43fc329a014b11fce907c6b073f5f4be64b4da4b184705aff2c08d82c1e644056491d01d59ef0ef8a22b4b4c3f22b9012953e00802a9b697a10f0a2f4920 +doccontainersize 564660 +doccontainerchecksum 896da337485c89508e7cb2adf377090b768beded3360a730a5a9c2400db73866b01e0091aaaaf8ce25b7444bf5c5a243f5eeff444d4588a4f8f8b5ac8aa9cdc9 +docfiles size=142 + RELOC/doc/latex/tikz-page/Makefile + RELOC/doc/latex/tikz-page/README + RELOC/doc/latex/tikz-page/README.md details="Readme" + RELOC/doc/latex/tikz-page/example.png + RELOC/doc/latex/tikz-page/tikz-page.pdf details="Package documentation" +srccontainersize 6820 +srccontainerchecksum 34741f8aec629a8d7929372f1fc5b51ffcef4d95fb95c039c9ba96e4fe05db366c09c88b6987b57ae0573ed067947e2a375f0bea96a74653133abba850453593 +srcfiles size=8 + RELOC/source/latex/tikz-page/tikz-page.dtx +runfiles size=4 + RELOC/tex/latex/tikz-page/tikz-page.sty +catalogue-contact-repository https://github.com/renard/tikz-page/ +catalogue-ctan /graphics/pgf/contrib/tikz-page +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics pgf-tikz +catalogue-version 1.0 + +name tikz-palattice +category Package +revision 43442 +shortdesc Draw particle accelerator lattices with TikZ +relocated 1 +longdesc This package allows for drawing a map of a particle accelerator +longdesc just by giving a list of elements -- similar to lattice files +longdesc for simulation software. The package includes 12 common element +longdesc types like dipoles, quadrupoles, cavities, or screens, as well +longdesc as automatic labels with element names, a legend, a rule, and +longdesc an environment to fade out parts of the accelerator. The +longdesc coordinate of any element can be saved and used for custom TikZ +longdesc drawings or annotations. Thereby, lattices can be connected to +longdesc draw injection/extraction or even a complete accelerator +longdesc facility. +containersize 5440 +containerchecksum 6654ca0888b9a4ac7106d5d275a347e38de7dfc342d7c6228670e51a0285937015a39fd34e83e42a5ab8c2f4341e7f233535308bb2cd65a55227dba2d67ad79b +doccontainersize 518248 +doccontainerchecksum 8fd0a5a2ca4371e021ccceef41115b6520df6437198fdcba7fc37aa600821a95e91696fabb19cb0277639ff7664574cc56a62e1edcc96e58f26dd65ef5c82fa2 +docfiles size=146 + RELOC/doc/latex/tikz-palattice/Makefile + RELOC/doc/latex/tikz-palattice/README details="Readme" + RELOC/doc/latex/tikz-palattice/elsa.tex + RELOC/doc/latex/tikz-palattice/example1_linear.tex + RELOC/doc/latex/tikz-palattice/example2_circular.tex + RELOC/doc/latex/tikz-palattice/example3_coordinates.tex + RELOC/doc/latex/tikz-palattice/example4_labels.tex + RELOC/doc/latex/tikz-palattice/example5_legend.tex + RELOC/doc/latex/tikz-palattice/tikz-palattice_documentation.pdf details="Package documentation" + RELOC/doc/latex/tikz-palattice/tikz-palattice_documentation.tex +runfiles size=6 + RELOC/tex/latex/tikz-palattice/tikz-palattice.sty +catalogue-ctan /graphics/pgf/contrib/tikz-palattice +catalogue-date 2017-03-09 14:14:05 +0100 +catalogue-license lppl1.3 +catalogue-topics pgf-tikz +catalogue-version 2.3 + +name tikz-qtree +category Package +revision 26108 +shortdesc Use existing qtree syntax for trees in TikZ +relocated 1 +longdesc The package provides a macro for drawing trees with TikZ using +longdesc the easy syntax of Alexis Dimitriadis' Qtree. It improves on +longdesc TikZ's standard tree-drawing facility by laying out tree nodes +longdesc without collisions; it improves on Qtree by adding lots of +longdesc features from TikZ (for example, edge labels, arrows between +longdesc nodes); and it improves on pst-qtree in being usable with +longdesc pdfTeX and XeTeX. +containersize 7216 +containerchecksum 5b00d147eef48e874d2d5c9b171e93703c728cb56f3882af4e63a41b36ebdadbd5bcae332bcfc8e091b16ee14a3a3e16c594b0f0879bdedeaacde1c1700c542d +doccontainersize 111032 +doccontainerchecksum 0e2a19415d00cc6c94961dc2e8292038078334cbedeff63d889a3d843d9ca3e89533870cabe2068f5631b3f48fc456cac36b1720df175c20a9f6c986c388f799 +docfiles size=32 + RELOC/doc/latex/tikz-qtree/README details="Readme" + RELOC/doc/latex/tikz-qtree/tikz-qtree-manual.pdf details="Package documentation" + RELOC/doc/latex/tikz-qtree/tikz-qtree-manual.tex +runfiles size=11 + RELOC/tex/latex/tikz-qtree/pgfsubpic.sty + RELOC/tex/latex/tikz-qtree/pgfsubpic.tex + RELOC/tex/latex/tikz-qtree/pgftree.sty + RELOC/tex/latex/tikz-qtree/pgftree.tex + RELOC/tex/latex/tikz-qtree/tikz-qtree-compat.sty + RELOC/tex/latex/tikz-qtree/tikz-qtree.sty + RELOC/tex/latex/tikz-qtree/tikz-qtree.tex +catalogue-ctan /graphics/pgf/contrib/tikz-qtree +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license gpl +catalogue-topics tree +catalogue-version 1.2 + +name tikz-relay +category Package +revision 48024 +shortdesc TikZ library for typesetting electrical diagrams +relocated 1 +longdesc This package contains a collection of symbols for typesetting +longdesc electrical wiring diagrams for relay control systems. The +longdesc symbols are meant to be in agreement with the international +longdesc standard IEC-60617 which has been adopted worldwide, with +longdesc perhaps the exception of the USA. It extends and modifies, when +longdesc needed, the TikZ-libray circuits.ee.IEC. A few non-standard +longdesc symbols are also included mainly to be used in presentations, +longdesc particularly with the beamer package. +containersize 676 +containerchecksum aa06a1513fc4c065c5c2484148a11224c5a7665ba340b2dd0ff7746f19fcd731b3fc715ea9041286cbecf55301fbe7c5dc777ea78206e382357fd145e84cc264 +doccontainersize 488776 +doccontainerchecksum 4a18dcda8d810d269d3237e58768d70a671e7ff15f267b6019c959fd8598f9f673ec6e98704b1ffc342c556267e92e893116fba84670e04325752d9a96de6364 +docfiles size=223 + RELOC/doc/latex/tikz-relay/README.txt details="Readme" + RELOC/doc/latex/tikz-relay/doc/BeamerAnimation.pdf details="Further documentation" + RELOC/doc/latex/tikz-relay/doc/BeamerAnimation.tex + RELOC/doc/latex/tikz-relay/doc/tikz-relay-doc.pdf details="Package documentation" + RELOC/doc/latex/tikz-relay/doc/tikz-relay-doc.tex + RELOC/doc/latex/tikz-relay/tex/tikzlibrarycircuits.ee.IEC.relay.code.tex +catalogue-ctan /graphics/pgf/contrib/tikz-relay +catalogue-date 2018-06-15 09:29:54 +0200 +catalogue-license lppl1 +catalogue-topics pgf-tikz diagram diagram-circ engineering physics +catalogue-version 1.2 + +name tikz-sfc +category Package +revision 49424 +shortdesc Symbols collection for typesetting Sequential Function Chart (SFC) diagrams (PLC programs) +relocated 1 +longdesc This package contains a collection of symbols for typesetting +longdesc Sequential Function Chart (SFC) diagrams in agreement with the +longdesc international standard IEC-61131-3/2013. It includes steps +longdesc (normal and initial), transitions, actions and actions +longdesc qualifiers (with and without time duration). It extends the +longdesc circuit library of TikZ and allows you to draw an SFC diagram +longdesc in same way you would draw any other circuit. +containersize 2824 +containerchecksum f31541b2333c5d8343143aad3a260e528523f78636cd772deae6e0eba81957ceeeb41491279dad621e4476bd9f5125ad994814cb2ab691e5039b54f9fffc7cc8 +doccontainersize 331232 +doccontainerchecksum caaa3c08f358b7f920322c553ff77e1f42414f16c67d2dd77bde8992e545366224cd7070e833268437332c080d6c65ab244678a3e9d5888fa97d21aafaa2d2b4 +docfiles size=154 + RELOC/doc/latex/tikz-sfc/BeamerAnimation.pdf + RELOC/doc/latex/tikz-sfc/BeamerAnimation.tex + RELOC/doc/latex/tikz-sfc/README.txt details="Readme" + RELOC/doc/latex/tikz-sfc/tikz-sfc-doc.pdf details="Package documentation" + RELOC/doc/latex/tikz-sfc/tikz-sfc-doc.tex +runfiles size=3 + RELOC/tex/latex/tikz-sfc/tikzlibrarycircuits.plc.sfc.code.tex +catalogue-also grafcet +catalogue-ctan /graphics/pgf/contrib/tikz-sfc +catalogue-date 2018-12-15 21:28:58 +0100 +catalogue-license lppl1 +catalogue-topics pgf-tikz diagram diagram-circ diagram-flow engineering +catalogue-version 1.0.1 + +name tikz-timing +category Package +revision 46111 +shortdesc Easy generation of timing diagrams as TikZ pictures +relocated 1 +longdesc This package provides macros and an environment to generate +longdesc timing diagrams (digital waveforms) without much effort. The +longdesc TikZ package is used to produce the graphics. The diagrams may +longdesc be inserted into text (paragraphs, \hbox, etc.) and into +longdesc tikzpictures. A tabular-like environment is provided to produce +longdesc larger timing diagrams. +depend svn-prov +containersize 19096 +containerchecksum f5f771d0fecb0615770d978d1ee5a8a5ebeae4c1d78d9f0ea33099a5c8d89cb7523c70dc38d3a0a6970e997fb5d7b9eb30e54bab4b865cbd8a53519d3bf529a5 +doccontainersize 468644 +doccontainerchecksum e0d03fa23c84c8241a8b29a6a7242cb54bc6cab8a25ecdea64dcdca70606ac086de9f021045ddd103b35209af05b5e0342808a97b007c639afc40159de211ce9 +docfiles size=117 + RELOC/doc/latex/tikz-timing/README details="Readme" + RELOC/doc/latex/tikz-timing/tikz-timing.pdf details="Package documentation" +srccontainersize 54980 +srccontainerchecksum 20a12782a5fed931f92198f02408ffe39a973eda5cf95904b3b33f5fa5b7a338b419da5e985c76c57610eb82c6b428f02c2fd28f24ef381708af46974bfa0920 +srcfiles size=71 + RELOC/source/latex/tikz-timing/tikz-timing.dtx + RELOC/source/latex/tikz-timing/tikz-timing.ins +runfiles size=41 + RELOC/tex/latex/tikz-timing/tikz-timing-advnodes.sty + RELOC/tex/latex/tikz-timing/tikz-timing-arrows.sty + RELOC/tex/latex/tikz-timing/tikz-timing-beamer.sty + RELOC/tex/latex/tikz-timing/tikz-timing-clockarrows.sty + RELOC/tex/latex/tikz-timing/tikz-timing-columntype.sty + RELOC/tex/latex/tikz-timing/tikz-timing-counters.sty + RELOC/tex/latex/tikz-timing/tikz-timing-either.sty + RELOC/tex/latex/tikz-timing/tikz-timing-ifsym.sty + RELOC/tex/latex/tikz-timing/tikz-timing-interval.sty + RELOC/tex/latex/tikz-timing/tikz-timing-nicetabs.sty + RELOC/tex/latex/tikz-timing/tikz-timing-overlays.sty + RELOC/tex/latex/tikz-timing/tikz-timing.sty +catalogue-also timing +catalogue-contact-bugs https://bitbucket.org/martin_scharrer/tikz-timing/issues +catalogue-contact-home https://bitbucket.org/martin_scharrer/tikz-timing +catalogue-contact-repository https://bitbucket.org/martin_scharrer/tikz-timing/src +catalogue-ctan /graphics/pgf/contrib/tikz-timing +catalogue-date 2017-12-21 18:51:58 +0100 +catalogue-license lppl +catalogue-topics electronic diagram-tmg +catalogue-version 0.7f + +name tikz-truchet +category Package +revision 50020 +shortdesc Draw Truchet tiles +relocated 1 +longdesc This is a package for LaTeX that draws Truchet tiles, as used +longdesc in Colin Beveridge's article Too good to be Truchet in issue 08 +longdesc of Chalkdust. +containersize 2236 +containerchecksum 74cc5a05cd9558c68cbb7987671fe1e02a9a076049aad96d4c95d7471ff04e48f03c500f58b85bd8eead46e1af592a54ffe1ef0b0ea0644f4479a332a63dec4a +doccontainersize 119856 +doccontainerchecksum 7fb291a9d7309c722fe31cbcea7a4004d44552f547e4d71fdcd667efb4aba41b6bf0be0cb941dd16e425eedc668dc6de3d2e55f964146a62b861296b0ed18579 +docfiles size=31 + RELOC/doc/latex/tikz-truchet/README.md details="Readme" + RELOC/doc/latex/tikz-truchet/tikz-truchet.pdf details="Package documentation" +srccontainersize 3476 +srccontainerchecksum 88a3d1ca19871e0329e40165b35ec90ce65b1565d42b4a678bfe611311a0cde68a6a8c67ff3ebdf78a1bafed1fec875a4f221efc6934724a265a3402d4970832 +srcfiles size=5 + RELOC/source/latex/tikz-truchet/tikz-truchet.dtx + RELOC/source/latex/tikz-truchet/tikz-truchet.ins +runfiles size=3 + RELOC/tex/latex/tikz-truchet/tikz-truchet.sty +catalogue-also truchet +catalogue-contact-bugs https://github.com/mscroggs/truchet/issues +catalogue-contact-home https://github.com/mscroggs/truchet +catalogue-ctan /graphics/pgf/contrib/tikz-truchet +catalogue-date 2019-02-17 05:29:19 +0100 +catalogue-license mit +catalogue-topics pgf-tikz + +name tikzcodeblocks +category Package +revision 47265 +shortdesc Helps to draw codeblocks like scratch, NEPO and PXT in TikZ +relocated 1 +longdesc tikzcodeblocks is a LaTeX package for typesetting blockwise +longdesc graphic programming languages like scratch, nepo or pxt. +containersize 5784 +containerchecksum 709d531084b03a8bd1b645699de70a24ccd6c57050bd5d7b9697c778ea702e846adfe288983970a745b8745eeffe6acda3d0024fac65ec4e99475c736c5fc2e8 +doccontainersize 480132 +doccontainerchecksum 26ac33c604e51ed31a5b36c174350b1860b8b01169470cc1b50ce49808f7c8d84886110299bea82e72b3a5f0c18ac0f897d879aaabad1a4712dd94af47b3b10c +docfiles size=135 + RELOC/doc/latex/tikzcodeblocks/README.md details="Readme" + RELOC/doc/latex/tikzcodeblocks/examples/bsp-einruecken.tikz + RELOC/doc/latex/tikzcodeblocks/examples/bsp-english.tikz + RELOC/doc/latex/tikzcodeblocks/examples/bsp-hello-world.tikz + RELOC/doc/latex/tikzcodeblocks/examples/bsp-openroberta-umgebung.tikz + RELOC/doc/latex/tikzcodeblocks/examples/bsp-openroberta-zacken.tikz + RELOC/doc/latex/tikzcodeblocks/examples/bsp-start-roberta.tikz + RELOC/doc/latex/tikzcodeblocks/examples/bsp-start.tikz + RELOC/doc/latex/tikzcodeblocks/examples/bsp-verschachtelt-zacken.tikz + RELOC/doc/latex/tikzcodeblocks/examples/bsp-verzweigung.tikz + RELOC/doc/latex/tikzcodeblocks/examples/smarthome.tikz + RELOC/doc/latex/tikzcodeblocks/tikzcodeblocks-documentation.pdf details="Package documentation" language="de" + RELOC/doc/latex/tikzcodeblocks/tikzcodeblocks-documentation.tex +runfiles size=7 + RELOC/tex/latex/tikzcodeblocks/tikzcodeblocks.sty +catalogue-also scratch +catalogue-ctan /graphics/pgf/contrib/tikzcodeblocks +catalogue-date 2018-04-03 13:13:53 +0200 +catalogue-license lppl1.3c +catalogue-topics pgf-tikz +catalogue-version 0.12 + +name tikzducks +category Package +revision 50840 +shortdesc A little fun package for using rubber ducks in TikZ +relocated 1 +longdesc The package is a LaTeX package for ducks to be used in TikZ +longdesc pictures. This project is a continuation of an answer at +longdesc StackExchange How we can draw a duck? +containersize 15252 +containerchecksum a4787c51f622a45befe7a01e0d30dd7b6f7f408fc9f64bd53fbfbbef721a0adfbf80253a395670e13c6eed43593facb704894d8652d65853d1082c0fecde8498 +doccontainersize 569176 +doccontainerchecksum 55f442ca85b45e3ab1852e2dca324bb580e35a648a4eeb7a693c4497ac358e6be94e5c90062f6216f5feddaa900376f96bf00b222574a5f45b176e2a80b38449 +docfiles size=152 + RELOC/doc/latex/tikzducks/README.md details="Readme" + RELOC/doc/latex/tikzducks/tikzducks-doc.pdf details="Package documentation" + RELOC/doc/latex/tikzducks/tikzducks-doc.tex +runfiles size=22 + RELOC/tex/latex/tikzducks/tikzducks.sty + RELOC/tex/latex/tikzducks/tikzlibraryducks.code.tex +catalogue-also tikzlings tikzmarmots +catalogue-contact-bugs https://github.com/samcarter/tikzducks/issues +catalogue-contact-repository https://github.com/samcarter/tikzducks +catalogue-contact-support https://github.com/samcarter/tikzducks/issues +catalogue-ctan /graphics/pgf/contrib/tikzducks +catalogue-date 2019-04-07 09:38:44 +0200 +catalogue-license lppl1.3c +catalogue-topics pgf-tikz +catalogue-version 1.1 + +name tikzinclude +category Package +revision 28715 +shortdesc Import TikZ images from colletions +relocated 1 +longdesc The package addresses the problem of importing only one +longdesc TikZ-image from a file holding multiple images. +containersize 1336 +containerchecksum 1559c739ee5ce26c531ed1c989a2d986ee6da05880e6dcb8f14018c71c638028517d1c2374cb452421c92f5d430d4560ae4463732926c56ff33407941e70ffc3 +doccontainersize 171152 +doccontainerchecksum 9cf9e6f5e45f9dba8843684cce3ff395f18c485e30ad0d0566e947dfa69704cd99600f8673203ae212a1aaf77908715c2e5ddbaae0de3732b98564725297112d +docfiles size=43 + RELOC/doc/latex/tikzinclude/README details="Readme" + RELOC/doc/latex/tikzinclude/tikzinclude.pdf details="Package documentation" +srccontainersize 3468 +srccontainerchecksum 3c7b7da5f7fb09fb52a4517846d3cb380482a03a2506c0f2f04f4d71bb42c7ce6cbe4087fe772b45808ad497fc7ba353c9ab193e61c328d57a5dd58b607ad4e0 +srcfiles size=3 + RELOC/source/latex/tikzinclude/tikzinclude.dtx + RELOC/source/latex/tikzinclude/tikzinclude.ins +runfiles size=1 + RELOC/tex/latex/tikzinclude/tikzinclude.sty +catalogue-ctan /graphics/pgf/contrib/tikzinclude +catalogue-date 2019-02-21 05:13:12 +0100 +catalogue-license lppl1.3 +catalogue-topics graphics-supp +catalogue-version 1.0 + +name tikzlings +category Package +revision 50841 +shortdesc A collection of cute little animals and similar creatures +relocated 1 +longdesc A collection of LaTeX packages for drawing cute little animals +longdesc and similar creatures using TikZ. Currently, the following +longdesc TikZlings are included: bear cat coati hippo koala marmot moles +longdesc mouse owl panda penguin pig rhino sloth snowman These little +longdesc drawings can be customized in many ways. +containersize 18332 +containerchecksum 0c7c5af85cbdc6b5146e67083a8ab5485c3d0aab78d677ad8ef53f6419530e96385542d1317da04bf783a4c94b61152ebb8fd037ad8bd0ee472531476646177c +doccontainersize 466836 +doccontainerchecksum 2b60d87c6925d1465588f244fdb3bee6912ebe02d89bed593caad9a8b8710b0d18a9aaef903395af9fa85207f0278054fb6a8d94b6572acdc60b30e7f8d9c6c2 +docfiles size=125 + RELOC/doc/latex/tikzlings/README.md details="Readme" + RELOC/doc/latex/tikzlings/tikzlings-doc.pdf details="Package documentation" + RELOC/doc/latex/tikzlings/tikzlings-doc.tex +runfiles size=46 + RELOC/tex/latex/tikzlings/tikzlings-addons.sty + RELOC/tex/latex/tikzlings/tikzlings-bears.sty + RELOC/tex/latex/tikzlings/tikzlings-cats.sty + RELOC/tex/latex/tikzlings/tikzlings-coatis.sty + RELOC/tex/latex/tikzlings/tikzlings-hippos.sty + RELOC/tex/latex/tikzlings/tikzlings-koalas.sty + RELOC/tex/latex/tikzlings/tikzlings-marmots.sty + RELOC/tex/latex/tikzlings/tikzlings-mice.sty + RELOC/tex/latex/tikzlings/tikzlings-moles.sty + RELOC/tex/latex/tikzlings/tikzlings-owls.sty + RELOC/tex/latex/tikzlings/tikzlings-pandas.sty + RELOC/tex/latex/tikzlings/tikzlings-penguins.sty + RELOC/tex/latex/tikzlings/tikzlings-pigs.sty + RELOC/tex/latex/tikzlings/tikzlings-rhinos.sty + RELOC/tex/latex/tikzlings/tikzlings-sloths.sty + RELOC/tex/latex/tikzlings/tikzlings-snowmans.sty + RELOC/tex/latex/tikzlings/tikzlings.sty +catalogue-also tikzducks tikzmarmots +catalogue-contact-bugs https://github.com/samcarter/tikzlings/issues +catalogue-contact-repository https://github.com/samcarter/tikzlings +catalogue-contact-support https://github.com/samcarter/tikzlings/issues +catalogue-ctan /graphics/pgf/contrib/tikzlings +catalogue-date 2019-04-07 10:07:47 +0200 +catalogue-license lppl1.3c +catalogue-topics graphics pgf-tikz +catalogue-version 0.2 + +name tikzmark +category Package +revision 51050 +shortdesc Use TikZ's method of remembering a position on a page +relocated 1 +longdesc The tikzmark package defines a command to "remember" a position +longdesc on a page for later (or earlier) use, primarily (but not +longdesc exclusively) with TikZ. +containersize 5432 +containerchecksum 470bd579472e928b0b0ac362d874abd5859467d1fe696363e09d6fe878f135cb39bfb014bbe53f78bee8e7e5b14c046f90879b1b4cb1d671f3dc98a7db704f07 +doccontainersize 455908 +doccontainerchecksum b088a6898d6daab3a4cb4959cf661f863e3802e3481163463fe671f4c744a3fb9a1f0880a3c6e60a65a0c7bce1d9e9ca9fcd882b9911aa35f06916646fe6599e +docfiles size=115 + RELOC/doc/latex/tikzmark/README details="Readme" + RELOC/doc/latex/tikzmark/README.txt + RELOC/doc/latex/tikzmark/tikzmark.pdf details="Package documentation" +srccontainersize 17492 +srccontainerchecksum 532f27397de6672164f93098963651f051d9d196883dd549eef45acb406194b332720cbf6cb89ce4475bad62ba2d098ecf8d9f7d2fa3101bfc40e8af5bf08886 +srcfiles size=18 + RELOC/source/latex/tikzmark/tikzmark.dtx + RELOC/source/latex/tikzmark/tikzmark.ins +runfiles size=7 + RELOC/tex/latex/tikzmark/tikzlibrarytikzmark.code.tex + RELOC/tex/latex/tikzmark/tikzmarklibrarylistings.code.tex +catalogue-contact-bugs https://github.com/loopspace/tikzmark/issues +catalogue-contact-home https://github.com/loopspace/tikzmark +catalogue-contact-repository https://github.com/loopspace/tikzmark +catalogue-ctan /graphics/pgf/contrib/tikzmark +catalogue-date 2019-05-08 08:24:23 +0200 +catalogue-license lppl1.3c +catalogue-topics pgf-tikz graphics-supp +catalogue-version 1.7 + +name tikzmarmots +category Package +revision 49114 +shortdesc Drawing little marmots in TikZ +relocated 1 +longdesc This is a LaTeX package for marmots to be used in TikZ +longdesc pictures. These little figures are constructed in such a way +longdesc that they may even "borrow" some garments and other attributes +longdesc from the TikZducks. +containersize 2476 +containerchecksum d390b922ccb3cec5b215a97586578462f83774b3dd5d3dd461f47833f1ddaf705773e4a60acf385747df6b55d6d20c495f4ffa7f1c3f2e6d480d66ab5c5b04f6 +doccontainersize 230968 +doccontainerchecksum 4836d1d7c55ae98b26aa4968c5717457c8e2cb64d3e21f2b7298d3990ef612fb9087e64074945e24999fc302ae012e47c95a00c07e23286aae5ea7cb63fa254e +docfiles size=65 + RELOC/doc/latex/tikzmarmots/LICENSE.txt + RELOC/doc/latex/tikzmarmots/README.md details="Readme" + RELOC/doc/latex/tikzmarmots/tikzmarmots-doc.pdf details="Package documentation" + RELOC/doc/latex/tikzmarmots/tikzmarmots-doc.tex +runfiles size=3 + RELOC/tex/latex/tikzmarmots/tikzlibrarymarmots.code.tex + RELOC/tex/latex/tikzmarmots/tikzmarmots.sty +catalogue-also tikzducks tikzlings +catalogue-contact-bugs https://github.com/samcarter/tikzmarmots/issues +catalogue-contact-repository https://github.com/samcarter/tikzmarmots +catalogue-contact-support https://github.com/samcarter/tikzmarmots/issues +catalogue-ctan /graphics/pgf/contrib/tikzmarmots +catalogue-date 2018-11-09 18:39:11 +0100 +catalogue-license lppl1.3c +catalogue-topics pgf-tikz +catalogue-version 1.0 + name tikzorbital category Package revision 36439 -shortdesc Atomic and molecular orbitals using TiKZ. +shortdesc Atomic and molecular orbitals using TikZ relocated 1 longdesc Atomic s, p and d orbitals may be drawn, as well as molecular longdesc orbital diagrams. -runfiles size=5 - RELOC/tex/latex/tikzorbital/tikzorbital.sty +containersize 3532 +containerchecksum cc0be76e583d67759d53ab89f777f137e7038eb8344e841a3a1c6e5327129063f2cdcb67c586546f8bec94e8e83d944ae864f291b5b7d384610f93c0ce604aea +doccontainersize 197628 +doccontainerchecksum 676980e8772650f77ed37d545cbd4ac22af170e1a4541acbd0739f3b5c0aff91f3d48cd3b3fa3c562510c1c624f46de2218fe33a9e53532ca88ccbb929e3495b docfiles size=56 RELOC/doc/latex/tikzorbital/README.rst - RELOC/doc/latex/tikzorbital/tikzorbital.pdf + RELOC/doc/latex/tikzorbital/tikzorbital.pdf details="Package documentation" RELOC/doc/latex/tikzorbital/tikzorbital.tex +runfiles size=5 + RELOC/tex/latex/tikzorbital/tikzorbital.sty +catalogue-also modiagram catalogue-ctan /graphics/pgf/contrib/tikzorbital -catalogue-date 2015-03-05 19:37:30 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics chemistry diagram name tikzpagenodes category Package revision 27723 -shortdesc A single TikZ node for the whole page. +shortdesc A single TikZ node for the whole page relocated 1 longdesc The package provides special PGF/TikZ nodes for the text, longdesc marginpar, footer and header area of the current page. They are longdesc inspired by the 'current page' node defined by PGF/TikZ itself. -runfiles size=2 - RELOC/tex/latex/tikzpagenodes/tikzpagenodes.sty +containersize 1516 +containerchecksum 4f0d6a4270bf90aa1fa5c5a018fb8a2703a6884215672cfcdb908f7c6d4e9b3610a9f6fb6c26b7b302daaf509d635d26443c6e8944bc1f8704f94a527090319e +doccontainersize 251304 +doccontainerchecksum 14ad07e01c014d000a2bdd483a2dadba652cd78b42faf0ea5f9ba829ba484239361d73233443303be121dd5122b7e5e209867145b10e7607b5c6e5d13e2fb428 docfiles size=63 - RELOC/doc/latex/tikzpagenodes/README - RELOC/doc/latex/tikzpagenodes/tikzpagenodes.pdf + RELOC/doc/latex/tikzpagenodes/README details="Readme" + RELOC/doc/latex/tikzpagenodes/tikzpagenodes.pdf details="Package documentation" +srccontainersize 3692 +srccontainerchecksum bfde76eecef7173d34cddab9ac517a4d1440aa2888007cdc62acef2dcd84e26345f86a757e1c1b6af6211c2e33e0ac656501d76e980a90fdfa970843eb7c0eb3 srcfiles size=5 RELOC/source/latex/tikzpagenodes/tikzpagenodes.dtx RELOC/source/latex/tikzpagenodes/tikzpagenodes.ins +runfiles size=2 + RELOC/tex/latex/tikzpagenodes/tikzpagenodes.sty catalogue-ctan /graphics/pgf/contrib/tikzpagenodes -catalogue-date 2014-01-09 12:53:44 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics graphics macro-supp pgf-tikz catalogue-version 1.1 -name tikz-palattice -category Package -revision 36554 -shortdesc Draw particle accelerator lattices with TikZ. -relocated 1 -longdesc This package allows for drawing a map of a particle accelerator -longdesc just by giving a list of elements -- similar to lattice files -longdesc for simulation software. The package includes 12 common element -longdesc types like dipoles, quadrupoles, cavities, or screens, as well -longdesc as automatic labels with element names, a legend, a rule, and -longdesc an environment to fade out parts of the accelerator. The -longdesc coordinate of any element can be saved and used for custom tikz -longdesc drawings or annotations. Thereby, lattices can be connected to -longdesc draw injection/extraction or even a complete accelerator -longdesc facility. -runfiles size=5 - RELOC/tex/latex/tikz-palattice/tikz-palattice.sty -docfiles size=133 - RELOC/doc/latex/tikz-palattice/Makefile - RELOC/doc/latex/tikz-palattice/README - RELOC/doc/latex/tikz-palattice/elsa.tex - RELOC/doc/latex/tikz-palattice/example1_linear.tex - RELOC/doc/latex/tikz-palattice/example2_circular.tex - RELOC/doc/latex/tikz-palattice/example3_coordinates.tex - RELOC/doc/latex/tikz-palattice/example4_labels.tex - RELOC/doc/latex/tikz-palattice/tikz-palattice_documentation.pdf - RELOC/doc/latex/tikz-palattice/tikz-palattice_documentation.tex -catalogue-ctan /graphics/pgf/contrib/tikz-palattice -catalogue-date 2015-03-18 12:36:56 +0100 +name tikzpeople +category Package +revision 43978 +shortdesc Draw people-shaped nodes in TikZ +relocated 1 +longdesc This package provides people-shaped nodes in the style of +longdesc Microsoft Visio clip art, to be used with TikZ. The available, +longdesc highly customizable, node shapes are: alice, bob, bride, +longdesc builder, businessman, charlie, chef, conductor, cowboy, +longdesc criminal, dave, devil, duck, graduate, groom, guard, jester, +longdesc judge, maininblack, mexican, nun, nurse, physician, pilot, +longdesc police, priest, sailor, santa, surgeon. +containersize 20712 +containerchecksum 9a7cdc232e91fc0d6e5fcc67ea8c39dd2a4b482ccb6ccfd82332151117ef5121ef49bebcd2e0266492c88b57c146eaa578d2136a23f8781f3fc5f5d07f527db7 +doccontainersize 486576 +doccontainerchecksum f561978adbe443659ec0890a8a38e9c9506f311d49d11fe952eacf579db0619946f86c0c6929a215fe7a98f5f02a782d1bc528359f195e09e1f388460dc0d55c +docfiles size=130 + RELOC/doc/latex/tikzpeople/README.md details="Readme" + RELOC/doc/latex/tikzpeople/tikzpeople.pdf details="Package documentation" + RELOC/doc/latex/tikzpeople/tikzpeople.tex +runfiles size=54 + RELOC/tex/latex/tikzpeople/tikzpeople.shape.alice.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.bob.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.bride.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.builder.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.businessman.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.charlie.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.chef.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.conductor.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.cowboy.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.criminal.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.dave.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.devil.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.duck.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.graduate.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.groom.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.guard.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.jester.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.judge.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.maninblack.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.mexican.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.nun.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.nurse.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.physician.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.pilot.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.police.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.priest.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.sailor.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.santa.sty + RELOC/tex/latex/tikzpeople/tikzpeople.shape.surgeon.sty + RELOC/tex/latex/tikzpeople/tikzpeople.sty +catalogue-ctan /graphics/pgf/contrib/tikzpeople +catalogue-date 2017-04-22 20:32:41 +0200 catalogue-license lppl1.3 -catalogue-version 2.21 +catalogue-topics pgf-tikz +catalogue-version 0.4 name tikzpfeile category Package revision 25777 -shortdesc Draw arrows using PGF/TikZ. +shortdesc Draw arrows using PGF/TikZ relocated 1 longdesc In a document with a lot of diagrams created with PGF/TikZ, longdesc there is a possibility of the reader being distracted by longdesc different sorts of arrowheads in the diagrams and in the text longdesc (as, e.g., in \rightarrow). The package defines macros to longdesc create all arrows using PGF/TikZ, so as to avoid the problem. -runfiles size=2 - RELOC/tex/latex/tikzpfeile/tikzpfeile.sty +containersize 1456 +containerchecksum 9da38e2e02c651e2f89a0e9ea917fc5147626026acc7302b7e32aa2cbee072f91311fbab73e44852a2c237290de76e560f2b45e88639936b542e6986d90a9b4d +doccontainersize 49016 +doccontainerchecksum a66c6ca303ab6afcea5d94b02936335d28077697d81632199de2678528100c3b5a754aa281fa83d93819a53eb2fc945ae899e254b6d6ccd926f8fbbd86d5ac2e docfiles size=14 - RELOC/doc/latex/tikzpfeile/README - RELOC/doc/latex/tikzpfeile/tikzpfeile.pdf + RELOC/doc/latex/tikzpfeile/README details="Readme" + RELOC/doc/latex/tikzpfeile/tikzpfeile.pdf details="Package documentation" +srccontainersize 2428 +srccontainerchecksum 0a2e2d5ec964bbe5e6230c609d1997fac779f1edb087fdf130b93ce3ae76fbc0b90f5af9076de3f969a8d69e4054571f63dea947113f7447b7fb1f526849929f srcfiles size=4 RELOC/source/latex/tikzpfeile/tikzpfeile.dtx RELOC/source/latex/tikzpfeile/tikzpfeile.ins +runfiles size=2 + RELOC/tex/latex/tikzpfeile/tikzpfeile.sty catalogue-ctan /graphics/pgf/contrib/tikzpfeile -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics graphics-symb catalogue-version 1.0 name tikzposter category Package revision 32732 -shortdesc Create scientific posters using TikZ. +shortdesc Create scientific posters using TikZ relocated 1 longdesc A document class provides a simple way of using TikZ for longdesc generating posters. Several formatting options are available, longdesc and spacing and layout of the poster is to a large extent longdesc automated. +containersize 11280 +containerchecksum 75fd7b71632c663329843a48bed32b2fd04cbac02d24271ff1a49bf03e2905ab8f94b5876ee68876bc6017455cc3272750e85eea6061dea57f47fe96ec9e1045 +doccontainersize 297844 +doccontainerchecksum 1bfdf7bc2aa38e876378a1dfac751a57ac93dcb0fc5abeff700107c8ef11423751dc69bd7502c9b2ad2641f7f760eb697a248833b6914111dcd86d7f8a32e9bd +docfiles size=77 + RELOC/doc/latex/tikzposter/README details="Readme" + RELOC/doc/latex/tikzposter/tikzposter-example.tex + RELOC/doc/latex/tikzposter/tikzposter-template.tex + RELOC/doc/latex/tikzposter/tikzposter.pdf details="Package documentation" +srccontainersize 26040 +srccontainerchecksum 3d78ed0799114da415a112f6cfe73b84a242389d475e223db53a4c9b25d9d5c4ad3285910a3b24eb9fece2195dbbae72e18d57cc83f057fad6062bd5fd5325cb +srcfiles size=36 + RELOC/source/latex/tikzposter/tikzposter.dtx + RELOC/source/latex/tikzposter/tikzposter.ins runfiles size=25 RELOC/tex/latex/tikzposter/tikzposter.cls RELOC/tex/latex/tikzposter/tikzposterBackgroundstyles.tex @@ -163420,61 +278202,27 @@ runfiles size=25 RELOC/tex/latex/tikzposter/tikzposterLayoutthemes.tex RELOC/tex/latex/tikzposter/tikzposterNotestyles.tex RELOC/tex/latex/tikzposter/tikzposterTitlestyles.tex -docfiles size=77 - RELOC/doc/latex/tikzposter/README - RELOC/doc/latex/tikzposter/tikzposter-example.tex - RELOC/doc/latex/tikzposter/tikzposter-template.tex - RELOC/doc/latex/tikzposter/tikzposter.pdf -srcfiles size=36 - RELOC/source/latex/tikzposter/tikzposter.dtx - RELOC/source/latex/tikzposter/tikzposter.ins catalogue-ctan /graphics/pgf/contrib/tikzposter -catalogue-date 2014-09-14 18:18:23 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics poster class catalogue-version 2.0 -name tikz-qtree -category Package -revision 26108 -shortdesc Use existing qtree syntax for trees in TikZ. -relocated 1 -longdesc The package provides a macro for drawing trees with TikZ using -longdesc the easy syntax of Alexis Dimitriadis' Qtree. It improves on -longdesc TikZ's standard tree-drawing facility by laying out tree nodes -longdesc without collisions; it improves on Qtree by adding lots of -longdesc features from TikZ (for example, edge labels, arrows between -longdesc nodes); and it improves on pst-qtree in being usable with -longdesc pdfTeX and XeTeX. -runfiles size=11 - RELOC/tex/latex/tikz-qtree/pgfsubpic.sty - RELOC/tex/latex/tikz-qtree/pgfsubpic.tex - RELOC/tex/latex/tikz-qtree/pgftree.sty - RELOC/tex/latex/tikz-qtree/pgftree.tex - RELOC/tex/latex/tikz-qtree/tikz-qtree-compat.sty - RELOC/tex/latex/tikz-qtree/tikz-qtree.sty - RELOC/tex/latex/tikz-qtree/tikz-qtree.tex -docfiles size=32 - RELOC/doc/latex/tikz-qtree/README - RELOC/doc/latex/tikz-qtree/tikz-qtree-manual.pdf - RELOC/doc/latex/tikz-qtree/tikz-qtree-manual.tex -catalogue-ctan /graphics/pgf/contrib/tikz-qtree -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license gpl -catalogue-version 1.2 - name tikzscale category Package revision 30637 -shortdesc Resize pictures while respecting text size. +shortdesc Resize pictures while respecting text size relocated 1 longdesc The package extends the \includegraphics command to support longdesc tikzpictures. It allows scaling of TikZ images and PGFPlots to longdesc a given width or height without changing the text size. -runfiles size=5 - RELOC/tex/latex/tikzscale/tikzscale.sty +containersize 4712 +containerchecksum 73aa62d84417deec8085c3f46b1ababb756e32ae55c4af97def15816606df2b3df4a7735ab434d489d24dabf26806428d945ff3fced3c5eb7c19b36996f2f58b +doccontainersize 560500 +doccontainerchecksum d2ac9080a08d7d7e37ea2d1f801c4091cddf9540eb7c2cc2c0753ab0c07c2f0e7392742bc2e93274775c890184c126aa490c78fedf8827a6c787b951abcb6bf5 docfiles size=189 RELOC/doc/latex/tikzscale/3Dplot.tikz - RELOC/doc/latex/tikzscale/README + RELOC/doc/latex/tikzscale/README details="Readme" RELOC/doc/latex/tikzscale/alt.tikz RELOC/doc/latex/tikzscale/histogramNormal.tikz RELOC/doc/latex/tikzscale/invisible.tikz @@ -163491,78 +278239,85 @@ docfiles size=189 RELOC/doc/latex/tikzscale/testRectangle.tikz RELOC/doc/latex/tikzscale/testgraphic2D.tikz RELOC/doc/latex/tikzscale/tikzscale-beamer.tex - RELOC/doc/latex/tikzscale/tikzscale.pdf + RELOC/doc/latex/tikzscale/tikzscale.pdf details="Package documentation" RELOC/doc/latex/tikzscale/uncover.tikz RELOC/doc/latex/tikzscale/visible.tikz +srccontainersize 19780 +srccontainerchecksum e073c55b8101eca9f401dc58046cbae260cd9513945e9c7a2fadd0ef86886607d1f92b83a11258be94e0bca08dea87ee878af031c6b42e343b716a1c6af42a2b srcfiles size=22 RELOC/source/latex/tikzscale/tikzscale.dtx RELOC/source/latex/tikzscale/tikzscale.ins +runfiles size=5 + RELOC/tex/latex/tikzscale/tikzscale.sty catalogue-ctan /graphics/pgf/contrib/tikzscale -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics graphics-supp catalogue-version 0.2.6 name tikzsymbols category Package -revision 35484 -shortdesc Some symbols created using TikZ. +revision 49975 +shortdesc Some symbols created using TikZ relocated 1 longdesc The package provides various emoticons, cooking symbols and longdesc trees. -runfiles size=19 - RELOC/tex/latex/tikzsymbols/tikzsymbols.sty -docfiles size=200 - RELOC/doc/latex/tikzsymbols/README - RELOC/doc/latex/tikzsymbols/tikzsymbols.pdf -srcfiles size=34 +containersize 14016 +containerchecksum 6061fad290f71257b2496faabc1a11721518274964a18dc1d31d1e530de029c7418668444f868e6b660eea5d85bc440dbb7796fbf6cf181ec190ff34019b5aae +doccontainersize 541092 +doccontainerchecksum b688b3d4e2ec3352000b7bd8842736bbf52b10b5215725fba7970e048e4e823c0d522d753adf8c65be3ab6d1c091ab9b01b68922ba2796c012c4d948e3958f77 +docfiles size=134 + RELOC/doc/latex/tikzsymbols/README.md details="Readme" + RELOC/doc/latex/tikzsymbols/tikzsymbols.pdf details="Package documentation" +srccontainersize 34300 +srccontainerchecksum c7a3d6290a1eb7da4fff7f7f9fb2ef4a8c128c742023da966444be2b662bd98a20e7d3d82ac77637caa0067c2b5ec5ddd84ca224bf793e5b65eb637e8ebbc814 +srcfiles size=50 RELOC/source/latex/tikzsymbols/tikzsymbols.dtx RELOC/source/latex/tikzsymbols/tikzsymbols.ins +runfiles size=31 + RELOC/tex/latex/tikzsymbols/tikzsymbols.sty +catalogue-contact-repository https://github.com/Vidabe/tikzsymbols catalogue-ctan /graphics/pgf/contrib/tikzsymbols -catalogue-date 2014-11-01 11:54:40 +0100 -catalogue-license lppl1.3 -catalogue-version 3.0f - -name tikz-timing -category Package -revision 21013 -shortdesc Easy generation of timing diagrams as tikz pictures. -relocated 1 -longdesc This package provides macros and an environment to generate -longdesc timing diagrams (digital waveforms) without much effort. The -longdesc TikZ package is used to produce the graphics. The diagrams may -longdesc be inserted into text (paragraphs, \hbox, etc.) and into -longdesc tikzpictures. A tabular-like environment is provided to produce -longdesc larger timing diagrams. -depend svn-prov -runfiles size=39 - RELOC/tex/latex/tikz-timing/tikz-timing-advnodes.sty - RELOC/tex/latex/tikz-timing/tikz-timing-arrows.sty - RELOC/tex/latex/tikz-timing/tikz-timing-beamer.sty - RELOC/tex/latex/tikz-timing/tikz-timing-clockarrows.sty - RELOC/tex/latex/tikz-timing/tikz-timing-columntype.sty - RELOC/tex/latex/tikz-timing/tikz-timing-counters.sty - RELOC/tex/latex/tikz-timing/tikz-timing-either.sty - RELOC/tex/latex/tikz-timing/tikz-timing-ifsym.sty - RELOC/tex/latex/tikz-timing/tikz-timing-interval.sty - RELOC/tex/latex/tikz-timing/tikz-timing-nicetabs.sty - RELOC/tex/latex/tikz-timing/tikz-timing-overlays.sty - RELOC/tex/latex/tikz-timing/tikz-timing.sty -docfiles size=121 - RELOC/doc/latex/tikz-timing/README - RELOC/doc/latex/tikz-timing/tikz-timing.pdf -srcfiles size=69 - RELOC/source/latex/tikz-timing/tikz-timing.dtx - RELOC/source/latex/tikz-timing/tikz-timing.ins -catalogue-ctan /graphics/pgf/contrib/tikz-timing -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 0.7d +catalogue-date 2019-02-08 11:35:20 +0100 +catalogue-license lppl1.3c +catalogue-topics graphics-symb pgf-tikz +catalogue-version 4.10c + +name timbreicmc +category Package +revision 49740 +shortdesc Typeset documents with ICMC/USP watermarks +relocated 1 +longdesc With this package you can typeset documents with ICMC/USP Sao +longdesc Carlos watermarks. ICMC is acronym for "Instituto de Ciencias +longdesc Matematicas e de Computacao" of the "Universidade de Sao Paulo" +longdesc (USP), in the city of Sao Carlos-SP, Brazil. +containersize 15436 +containerchecksum 01e0e06769810e07389006e9443a836de76e95fea6133e7aab1f47cc554c3912a8aeb43bbf33d06cf9f3a8550a9eb9ec23830ab96ebbb84629ec957d7050e9a9 +doccontainersize 701320 +doccontainerchecksum ebe4cf57814e6699127a30031c801efe583505098c707a97bece8dff93ff0cd4939cf047802ed38e645c339592e1a062c512dcb5d027192122e4c98ce41d1eac +docfiles size=195 + RELOC/doc/latex/timbreicmc/README.md details="Readme" + RELOC/doc/latex/timbreicmc/timbreicmc.pdf details="Package documentation" +srccontainersize 20352 +srccontainerchecksum eae8ea0badfc036dd6c5908c95bda4e829bebc90e4d50cbf766937701a6f631ec9f39269d09889c5c2bf15a3dd24ddd8062829e5bf735c291e4338085749607f +srcfiles size=20 + RELOC/source/latex/timbreicmc/timbreicmc.dtx + RELOC/source/latex/timbreicmc/timbreicmc.ins +runfiles size=16 + RELOC/tex/latex/timbreicmc/timbreicmc.sty +catalogue-also watermark +catalogue-ctan /macros/latex/contrib/timbreicmc +catalogue-date 2019-01-17 19:44:57 +0100 +catalogue-license lppl1.3c +catalogue-topics watermark +catalogue-version 2.0 name times category Package revision 35058 catalogue urw-base35 -shortdesc URW "Base 35" font pack for LaTeX. +shortdesc URW "Base 35" font pack for LaTeX relocated 1 longdesc A set of fonts for use as "drop-in" replacements for Adobe's longdesc basic set, comprising: Century Schoolbook (substituting for @@ -163575,6 +278330,8 @@ longdesc Chancery L Medium Italic (substituting for Adobe's Zapf longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). execute addMap utm.map +containersize 286928 +containerchecksum 252c933fb17ce2533f6e0f2b13a478d62223a596ee257937558c61e224c30753c157c92ed9d5ce3ced5ade0f5eb00ec15368fc75c10a182011312d6a0668911d runfiles size=335 RELOC/dvips/times/config.utm RELOC/fonts/afm/adobe/times/ptmb8a.afm @@ -163739,70 +278496,134 @@ runfiles size=335 RELOC/tex/latex/times/ot1utm.fd RELOC/tex/latex/times/t1utm.fd RELOC/tex/latex/times/ts1utm.fd +catalogue-also tex-gyre catalogue-ctan /fonts/urw/base35 -catalogue-date 2014-06-07 20:47:53 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics font font-type1 font-collection name timetable category Package revision 15878 -shortdesc Generate timetables. +shortdesc Generate timetables relocated 1 longdesc A highly-configurable package, with nice output and simple longdesc input. The macros use a radix sort mechanism so that the order longdesc of input is not critical. +containersize 7400 +containerchecksum caee17cfe1a4bae7bae4479066e2f869e6ccee34d28a8952bed7a1409bd9ecb27adfd005f0e824d8ddacbd0e65762da79f9ea5b04d0332d643749ef36b908946 runfiles size=10 RELOC/tex/plain/timetable/timetable.tex -catalogue-ctan /macros/plain/contrib/timetable/timetable.tex -catalogue-date 2012-07-10 17:27:46 +0200 +catalogue-ctan /macros/plain/contrib/timetable +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics timetable name timing-diagrams category Package revision 31491 -shortdesc Draw timing diagrams. +shortdesc Draw timing diagrams relocated 1 longdesc The package provides commands to draw and annotate various longdesc kinds of timing diagrams, using Tikz. Documentation is sparse, longdesc but the source and the examples file should be of some use. -runfiles size=2 - RELOC/tex/latex/timing-diagrams/timing-diagrams.sty +containersize 2372 +containerchecksum 0c07a24aea43b0092610cda5878a7e2be95777f199c9983e0aad42d83c1a6bd96dd4ca4caddef6b61165d62e924033eb01524fc925fdc8a4fd4baf44f568eec6 +doccontainersize 98352 +doccontainerchecksum 1882008e990cd6cfea47b35bd70a50f22972dab0470ada417edf1aa236d2619d57bd3b1d4a149ecc08c1a196c36c9dbf97328f58ea4aa25acb0a6addfcfe8651 docfiles size=30 RELOC/doc/latex/timing-diagrams/Makefile - RELOC/doc/latex/timing-diagrams/README - RELOC/doc/latex/timing-diagrams/diagrams-examples.pdf + RELOC/doc/latex/timing-diagrams/README details="Readme" + RELOC/doc/latex/timing-diagrams/diagrams-examples.pdf details="Examples of use" RELOC/doc/latex/timing-diagrams/diagrams-examples.tex RELOC/doc/latex/timing-diagrams/version.txt +runfiles size=2 + RELOC/tex/latex/timing-diagrams/timing-diagrams.sty +catalogue-also tikz-timing timing +catalogue-contact-repository https://gitlab.com/tikz-goodies/tikz-goodies catalogue-ctan /graphics/pgf/contrib/timing-diagrams -catalogue-date 2014-04-27 13:42:31 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 +catalogue-topics diagram-tmg -name tipa-de +name tinos category Package -revision 22005 -shortdesc German translation of tipa documentation. +revision 42882 +shortdesc Tinos fonts with LaTeX support relocated 1 -longdesc This is a translation of Fukui Rei's tipaman from the tipa -longdesc bundle. -docfiles size=986 - RELOC/doc/latex/tipa-de/LIESMICH - RELOC/doc/latex/tipa-de/tipa.bib - RELOC/doc/latex/tipa-de/tipaman-de.pdf - RELOC/doc/latex/tipa-de/tipaman-de.tex - RELOC/doc/latex/tipa-de/tipaman0-de.tex - RELOC/doc/latex/tipa-de/tipaman1-de.tex - RELOC/doc/latex/tipa-de/tipaman2-de.tex - RELOC/doc/latex/tipa-de/tipaman3-de.tex - RELOC/doc/latex/tipa-de/tipaman4-de.tex -catalogue-ctan /info/translations/tipa/de -catalogue-date 2014-05-31 17:44:05 +0200 -catalogue-license lppl -catalogue-version 1.3 +longdesc Tinos, designed by Steve Matteson, is an innovative, refreshing +longdesc serif design that is metrically compatible with Times New +longdesc Roman. +execute addMap tinos.map +containersize 3230744 +containerchecksum e8e8648d656cee747cae8eb5665fb8e1d327c9578b79a65b6d50cc1bbb428ed8ea81bd2332fb91af797383264d2fd9af9354be5a02a4721bbb7350051bcb2783 +doccontainersize 29264 +doccontainerchecksum 5c826e5a78001821396c0dce64c6becf9469c5b648d716ddbe899460242b67790f75d1a8a27973f450f1d7d7dba6ea672af5bca488209614fa72a7ff1a7aefb0 +docfiles size=11 + RELOC/doc/fonts/tinos/LICENSE.txt + RELOC/doc/fonts/tinos/README details="Readme" + RELOC/doc/fonts/tinos/tinos-samples.pdf details="Package documentation" + RELOC/doc/fonts/tinos/tinos-samples.tex +runfiles size=1119 + RELOC/fonts/enc/dvips/tinos/tns_27astb.enc + RELOC/fonts/enc/dvips/tinos/tns_s6t4vy.enc + RELOC/fonts/enc/dvips/tinos/tns_xze2cy.enc + RELOC/fonts/enc/dvips/tinos/tns_y6kixo.enc + RELOC/fonts/map/dvips/tinos/tinos.map + RELOC/fonts/tfm/google/tinos/Tinos-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/tinos/Tinos-Bold-tlf-t1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/tinos/Tinos-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/tinos/Tinos-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/tinos/Tinos-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/tinos/Tinos-Italic-tlf-t1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/tinos/Tinos-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-tlf-ly1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-tlf-ot1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-tlf-t1--base.tfm + RELOC/fonts/tfm/google/tinos/Tinos-tlf-t1.tfm + RELOC/fonts/tfm/google/tinos/Tinos-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/tinos/Tinos-tlf-ts1.tfm + RELOC/fonts/truetype/google/tinos/Tinos-Bold.ttf + RELOC/fonts/truetype/google/tinos/Tinos-BoldItalic.ttf + RELOC/fonts/truetype/google/tinos/Tinos-Italic.ttf + RELOC/fonts/truetype/google/tinos/Tinos-Regular.ttf + RELOC/fonts/type1/google/tinos/Tinos-Bold.pfb + RELOC/fonts/type1/google/tinos/Tinos-BoldItalic.pfb + RELOC/fonts/type1/google/tinos/Tinos-Italic.pfb + RELOC/fonts/type1/google/tinos/Tinos.pfb + RELOC/fonts/vf/google/tinos/Tinos-Bold-tlf-t1.vf + RELOC/fonts/vf/google/tinos/Tinos-Bold-tlf-ts1.vf + RELOC/fonts/vf/google/tinos/Tinos-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/tinos/Tinos-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/tinos/Tinos-Italic-tlf-t1.vf + RELOC/fonts/vf/google/tinos/Tinos-Italic-tlf-ts1.vf + RELOC/fonts/vf/google/tinos/Tinos-tlf-t1.vf + RELOC/fonts/vf/google/tinos/Tinos-tlf-ts1.vf + RELOC/tex/latex/tinos/LY1Tinos-TLF.fd + RELOC/tex/latex/tinos/OT1Tinos-TLF.fd + RELOC/tex/latex/tinos/T1Tinos-TLF.fd + RELOC/tex/latex/tinos/TS1Tinos-TLF.fd + RELOC/tex/latex/tinos/tinos.sty +catalogue-ctan /fonts/tinos +catalogue-date 2017-01-10 05:17:21 +0100 +catalogue-license apache2 +catalogue-topics font font-type1 font-virtual font-otf name tipa category Package revision 29349 -shortdesc Fonts and macros for IPA phonetics characters. +shortdesc Fonts and macros for IPA phonetics characters relocated 1 longdesc These fonts are considered the 'ultimate answer' to IPA longdesc typesetting. The encoding of these 8-bit fonts has been @@ -163810,6 +278631,36 @@ longdesc registered as LaTeX standard encoding T3, and the set of longdesc addendum symbols as encoding TS3. 'Times-like' Adobe Type 1 longdesc versions are provided for both the T3 and the TS3 fonts. execute addMixedMap tipa.map +containersize 2876104 +containerchecksum 7919b8f5a416cab24c02675ee0a24c60f64e9dfb3bbacb416eb74e29badf6b4dfd8a0528cc8b38dab6395b8c74ec5c808ad84d3a8d4ae5e8212691bed9066129 +doccontainersize 2343456 +doccontainerchecksum 213c4eb24943e655c03087dbc5a51eb3cfeff09ece1d31fd11f1734ab3b219db94cc8b5f4735f3d6381b79a5d6ee2cfe727acd17f823b21163e910c09f48e413 +docfiles size=711 + RELOC/doc/fonts/tipa/00README details="Readme" + RELOC/doc/fonts/tipa/00README.doc + RELOC/doc/fonts/tipa/Makefile + RELOC/doc/fonts/tipa/Makefile.doc + RELOC/doc/fonts/tipa/Manifest.txt + RELOC/doc/fonts/tipa/boxchar.sty + RELOC/doc/fonts/tipa/codelist.sty + RELOC/doc/fonts/tipa/gentfm.sh + RELOC/doc/fonts/tipa/gentipa.sh + RELOC/doc/fonts/tipa/gentipx.sh + RELOC/doc/fonts/tipa/genxipa.sh + RELOC/doc/fonts/tipa/genxipx.sh + RELOC/doc/fonts/tipa/mktipapk.sh + RELOC/doc/fonts/tipa/mkxipapk.sh + RELOC/doc/fonts/tipa/tipa.bib + RELOC/doc/fonts/tipa/tipaman.pdf details="Package manual (English)" language="en" + RELOC/doc/fonts/tipa/tipaman.sty + RELOC/doc/fonts/tipa/tipaman.tex + RELOC/doc/fonts/tipa/tipaman0.tex + RELOC/doc/fonts/tipa/tipaman1.tex + RELOC/doc/fonts/tipa/tipaman2.tex + RELOC/doc/fonts/tipa/tipaman3.tex + RELOC/doc/fonts/tipa/tipaman4.tex + RELOC/doc/fonts/tipa/vowel.pdf + RELOC/doc/fonts/tipa/vowel.tex runfiles size=1096 RELOC/fonts/map/dvips/tipa/tipa.map RELOC/fonts/source/public/tipa/tipa.mf @@ -164057,60 +278908,69 @@ runfiles size=1096 RELOC/tex/latex/tipa/uxipx.fd RELOC/tex/latex/tipa/uxipxss.fd RELOC/tex/latex/tipa/vowel.sty -docfiles size=711 - RELOC/doc/fonts/tipa/00README - RELOC/doc/fonts/tipa/00README.doc - RELOC/doc/fonts/tipa/Makefile - RELOC/doc/fonts/tipa/Makefile.doc - RELOC/doc/fonts/tipa/Manifest.txt - RELOC/doc/fonts/tipa/boxchar.sty - RELOC/doc/fonts/tipa/codelist.sty - RELOC/doc/fonts/tipa/gentfm.sh - RELOC/doc/fonts/tipa/gentipa.sh - RELOC/doc/fonts/tipa/gentipx.sh - RELOC/doc/fonts/tipa/genxipa.sh - RELOC/doc/fonts/tipa/genxipx.sh - RELOC/doc/fonts/tipa/mktipapk.sh - RELOC/doc/fonts/tipa/mkxipapk.sh - RELOC/doc/fonts/tipa/tipa.bib - RELOC/doc/fonts/tipa/tipaman.pdf - RELOC/doc/fonts/tipa/tipaman.sty - RELOC/doc/fonts/tipa/tipaman.tex - RELOC/doc/fonts/tipa/tipaman0.tex - RELOC/doc/fonts/tipa/tipaman1.tex - RELOC/doc/fonts/tipa/tipaman2.tex - RELOC/doc/fonts/tipa/tipaman3.tex - RELOC/doc/fonts/tipa/tipaman4.tex - RELOC/doc/fonts/tipa/vowel.pdf - RELOC/doc/fonts/tipa/vowel.tex +catalogue-also wsuipa2tipa catalogue-ctan /fonts/tipa/tipa -catalogue-date 2014-05-31 17:44:05 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-mf font-type1 font-specialist phonetic +catalogue-version 1.3 + +name tipa-de +category Package +revision 22005 +shortdesc German translation of tipa documentation +relocated 1 +longdesc This is a translation of Fukui Rei's tipaman from the tipa +longdesc bundle. +containersize 416 +containerchecksum 45ce2504e63e517e76ebbd7b6bfc7b6a4b3a10d72747714c731b6af0b1a9de4d025bce996594449ea61e983097748389a6d878936078fb676ddd4d6f1f267425 +doccontainersize 3676376 +doccontainerchecksum c69333d9a7d335fb217dacb00610b9f0e5eaaf78e535d69998fc600fe53f0ba61c7e3cc1e82d75f52b435cd6945044560b2d275476e96d84d611ab4978c02e3f +docfiles size=986 + RELOC/doc/latex/tipa-de/LIESMICH details="Readme" language="de" + RELOC/doc/latex/tipa-de/tipa.bib + RELOC/doc/latex/tipa-de/tipaman-de.pdf details="The document itself" language="de" + RELOC/doc/latex/tipa-de/tipaman-de.tex + RELOC/doc/latex/tipa-de/tipaman0-de.tex + RELOC/doc/latex/tipa-de/tipaman1-de.tex + RELOC/doc/latex/tipa-de/tipaman2-de.tex + RELOC/doc/latex/tipa-de/tipaman3-de.tex + RELOC/doc/latex/tipa-de/tipaman4-de.tex +catalogue-ctan /info/translations/tipa/de +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics translation german-doc font-doc catalogue-version 1.3 name tipfr category Package -revision 35984 -shortdesc Produces calculator's keys with the help of TikZ. +revision 38646 +shortdesc Produces calculator's keys with the help of TikZ relocated 1 longdesc The package provides commands to draw calculator keys with the longdesc help of TikZ. It also provides commands to draw the content of longdesc screens and of menu items. -docfiles size=112 - RELOC/doc/latex/tipfr/README - RELOC/doc/latex/tipfr/doc/IndexHead.ist - RELOC/doc/latex/tipfr/doc/tipfr-doc.pdf - RELOC/doc/latex/tipfr/doc/tipfr-doc.tex - RELOC/doc/latex/tipfr/latex/tipfr.sty +containersize 5880 +containerchecksum c8a8efbca7e1785dd81fd4695ed7e0c5dbe713d0a5632078bdba2f7df8e9358bc246d8f9d972ad3035106a7ef687f9229ed31bb630009eaec3b63170cf8933bb +doccontainersize 381176 +doccontainerchecksum bb739994051c5738ec0cacf1111d104b225593cbac1ee829057dce42017990483630cc062131ccd7d766d7400a252b1ff84744f91b77d0ca5a1f9ee195a28d5f +docfiles size=104 + RELOC/doc/latex/tipfr/IndexHead.ist + RELOC/doc/latex/tipfr/README details="Readme" + RELOC/doc/latex/tipfr/tipfr-doc.pdf details="Package documentation" language="fr" + RELOC/doc/latex/tipfr/tipfr-doc.tex +runfiles size=8 + RELOC/tex/latex/tipfr/tipfr.sty catalogue-ctan /graphics/pgf/contrib/tipfr -catalogue-date 2015-01-14 14:29:45 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics pgf-tikz catalogue-version 1.5 name titlecaps category Package revision 36170 -shortdesc Setting rich-text input into Titling Caps. +shortdesc Setting rich-text input into Titling Caps relocated 1 longdesc The package is intended for setting rich text into titling longdesc capitals (in which the first character of words are @@ -164120,53 +278980,66 @@ longdesc font changing commands that alter the appearance or size of the longdesc text. It allows a list of predesignated words to be protected longdesc as lower-cased, and also allows for titling exceptions of longdesc various sorts. -runfiles size=4 - RELOC/tex/latex/titlecaps/titlecaps.sty +containersize 4148 +containerchecksum 683240554b79bbf4f7e4f31653c5c633e93c74d71dd26232587de4d0d8ea012d350d0d43d508e9e9d8be4369d4ea9df996283c818583e573d4bc5fc379e4da4c +doccontainersize 261184 +doccontainerchecksum 7025b5f9d53b65e228520a5e79fcbbf928ddc2f0fe071016a8c3726dca3e9b428b80749bce53438eb7a882a4660c2a10a4ee85e24ae5a26522b78d6a1dde4584 docfiles size=74 - RELOC/doc/latex/titlecaps/README - RELOC/doc/latex/titlecaps/titlecaps.pdf + RELOC/doc/latex/titlecaps/README details="Readme" + RELOC/doc/latex/titlecaps/titlecaps.pdf details="Package documentation" RELOC/doc/latex/titlecaps/titlecaps.tex +runfiles size=4 + RELOC/tex/latex/titlecaps/titlecaps.sty catalogue-ctan /macros/latex/contrib/titlecaps -catalogue-date 2015-01-30 15:05:03 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics typesetting catalogue-version 1.2 name titlefoot category Package revision 15878 -shortdesc Add special material to footer of title page. +shortdesc Add special material to footer of title page relocated 1 longdesc Provides the capability of adding keywords (with a \keywords longdesc command), a running title (\runningtitle), AMS subject longdesc classifications (\amssubj), and an 'author's footnote' as longdesc footnotes to the title or first page of a document. Works with longdesc any class for which the \thanks macro works (e.g., article). +containersize 2928 +containerchecksum aee68d15213c20d9ba0ef6e3a95f111804e4438d2c80a6cd83ae67725c3174db7f38b0d4280b26f7119e9e1c6477a0aa04d3ee5877e15b05ff2742d94a720c5b runfiles size=3 RELOC/tex/latex/titlefoot/titlefoot.sty catalogue-ctan /macros/latex/contrib/titlefoot -catalogue-date 2012-07-24 16:30:52 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics titlepage page-hf name titlepages category Package revision 19457 -shortdesc Sample titlepages, and how to code them. +shortdesc Sample titlepages, and how to code them relocated 1 longdesc The document provides examples of over two dozen title page longdesc designs based on a range of published books and theses, longdesc together with the LaTeX code used to create them. +containersize 480 +containerchecksum affb8e221dd2ba1ad6e18d08dcbf3176bf65ae3006a732a7d2bf954fbfe90215175cd3de0dbb7546906b7d65eecb9aff06fabce86c46e88e5027851e11e52260 +doccontainersize 887312 +doccontainerchecksum 703f376c6bb2480f7a326f31ec277716073ddf67834930401c17627dba41c5321a0115e01ec73160917c68fb7ba4e0042e8ac40d968eef89f52b5dd27c2e0495 docfiles size=270 RELOC/doc/latex/titlepages/README - RELOC/doc/latex/titlepages/titlepages.pdf + RELOC/doc/latex/titlepages/titlepages.pdf details="The document itself" RELOC/doc/latex/titlepages/titlepages.tex catalogue-ctan /info/latex-samples/TitlePages -catalogue-date 2015-02-23 19:56:17 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics titlepage use-sample name titlepic category Package -revision 15878 -shortdesc Add picture to title page of a document. +revision 43497 +shortdesc Add picture to title page of a document relocated 1 longdesc The package allows you to place a picture on the title page longdesc (cover page) of a LaTeX document. Example of usage: @@ -164174,41 +279047,52 @@ longdesc \usepackage[cc]{titlepic} \usepackage{graphicx} longdesc \titlepic{\includegraphics[width=\textwidth]{picture.png}} The longdesc package currently only works with the document classes article, longdesc report and book. +containersize 1472 +containerchecksum 753ff5c116f102ebd9fe59ea0ad1e80a7fd102f55588f9454fb3ef43fd5478add2d39984638e112dfcc5421f5f79b4c34c8c15d47845273744b6960946ad1805 +doccontainersize 125016 +doccontainerchecksum 6faaeeb6c7212e35c22321e279c08ac8a985ebb8ec66054b49456ee5a9491b88e48edcb20920d61a052b2df9617ddee7e40bb0e868fe082ce5889e63c193b641 +docfiles size=32 + RELOC/doc/latex/titlepic/README.md details="Readme" + RELOC/doc/latex/titlepic/titlepic-manual.pdf details="Package documentation" + RELOC/doc/latex/titlepic/titlepic-manual.tex runfiles size=1 RELOC/tex/latex/titlepic/titlepic.sty -docfiles size=17 - RELOC/doc/latex/titlepic/README - RELOC/doc/latex/titlepic/titlepic-manual.pdf - RELOC/doc/latex/titlepic/titlepic-manual.tex catalogue-ctan /macros/latex/contrib/titlepic -catalogue-date 2014-10-15 16:17:24 +0200 +catalogue-date 2017-03-14 12:42:38 +0100 catalogue-license pd -catalogue-version 1.1 +catalogue-topics titlepage graphics-use +catalogue-version 1.2 name titleref category Package revision 18729 -shortdesc A "\titleref" command to cross-reference section titles. +shortdesc A "\titleref" command to cross-reference section titles relocated 1 longdesc Defines a command \titleref that allows you to cross-reference longdesc section (and chapter, etc) titles and captions just like \ref longdesc and \pageref. The package does not interwork with hyperref; if longdesc you need hypertext capabilities, use nameref instead. -runfiles size=2 - RELOC/tex/latex/titleref/titleref.sty +containersize 2924 +containerchecksum 73905fbe96bc095f602339e0c943048d775bf2a89ef9de3b7149dae7b76aef04e5c77803555450d931f3a4dfef16f5e72597a4d06052d4a852623516edd978f5 +doccontainersize 200724 +doccontainerchecksum 70db133fb8a5fa38a6f0f82912d19afe84e0f68820fe62b3835a6d237582a32fe6c2ba5ad05e46f39540d52d0aafa5a88325e1050e6102164a5753fd9c68d6ad docfiles size=53 RELOC/doc/latex/titleref/miscdoc.sty - RELOC/doc/latex/titleref/titleref.pdf + RELOC/doc/latex/titleref/titleref.pdf details="Package documentation" RELOC/doc/latex/titleref/titleref.tex +runfiles size=2 + RELOC/tex/latex/titleref/titleref.sty +catalogue-also nameref catalogue-ctan /macros/latex/contrib/titleref -catalogue-date 2012-03-07 12:52:16 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics label-ref catalogue-version 3.1 name titlesec category Package -revision 24852 -shortdesc Select alternative section titles. +revision 40129 +shortdesc Select alternative section titles relocated 1 longdesc A package providing an interface to sectioning commands for longdesc selection from various title styles. E.g., marginal titles and @@ -164216,6 +279100,17 @@ longdesc to change the font of all headings with a single command, also longdesc providing simple one-step page styles. Also includes a package longdesc to change the page styles when there are floats in a page. You longdesc may assign headers/footers to individual floats, too. +containersize 20848 +containerchecksum f0e5cf51f52e9e36f7eac396c0f3520be6d315d9b3ecb7bcf7d61993228ec6c8b13a136191383337ad6a5965f247d589d91a55cf55b0f64364134189888655f3 +doccontainersize 347460 +doccontainerchecksum a31b9295b59816a950ef3625479abdec38c686427644e3ce9962f598b498fca4f7fbcd5bf2b89d79abdbc3c51ce5bf5488a79b4effdced038c027c573d646b21 +docfiles size=108 + RELOC/doc/latex/titlesec/CHANGES + RELOC/doc/latex/titlesec/README details="Readme" + RELOC/doc/latex/titlesec/titleps.pdf + RELOC/doc/latex/titlesec/titleps.tex + RELOC/doc/latex/titlesec/titlesec.pdf details="Package documentation" + RELOC/doc/latex/titlesec/titlesec.tex runfiles size=30 RELOC/tex/latex/titlesec/block.tss RELOC/tex/latex/titlesec/drop.tss @@ -164229,22 +279124,17 @@ runfiles size=30 RELOC/tex/latex/titlesec/ttlkeys.def RELOC/tex/latex/titlesec/ttlps.def RELOC/tex/latex/titlesec/wrap.tss -docfiles size=104 - RELOC/doc/latex/titlesec/CHANGES - RELOC/doc/latex/titlesec/README - RELOC/doc/latex/titlesec/titleps.pdf - RELOC/doc/latex/titlesec/titleps.tex - RELOC/doc/latex/titlesec/titlesec.pdf - RELOC/doc/latex/titlesec/titlesec.tex +catalogue-also fancyhdr titleps sectsty titletoc tocloft catalogue-ctan /macros/latex/contrib/titlesec -catalogue-date 2012-05-01 16:59:50 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl -catalogue-version 2.10.0 +catalogue-topics headings page-hf +catalogue-version 2.10.2 name titling category Package revision 15878 -shortdesc Control over the typesetting of the \maketitle command. +shortdesc Control over the typesetting of the \maketitle command relocated 1 longdesc The titling package provides control over the typesetting of longdesc the \maketitle command and \thanks commands, and makes the @@ -164252,27 +279142,46 @@ longdesc \title, \author and \date information permanently available. longdesc Multiple titles are allowed in a single document. New titling longdesc elements can be added and a titlepage title can be centered on longdesc a physical page. -runfiles size=2 - RELOC/tex/latex/titling/titling.sty +containersize 2524 +containerchecksum 2a321a17b1ff74f57e7bf3f9d72d1b66a0623ed286c8aa75df6d55f1e62b214954ff38456f27f172789bc4cb500688656ab156609933faef67e62954d05d0ce2 +doccontainersize 175188 +doccontainerchecksum e69af16331da73c2a61b063ca4dc4c5f70f7958c366b06e96745a2bc92397f89210ebfe598f445ff33ce7705d0f0b56fc3a46f93bcc89145d50b92d56820f61b docfiles size=50 - RELOC/doc/latex/titling/README - RELOC/doc/latex/titling/titling.pdf + RELOC/doc/latex/titling/README details="Readme" + RELOC/doc/latex/titling/titling.pdf details="Package documentation" +srccontainersize 14800 +srccontainerchecksum 1b32988678f184fb335c70ee59d47cc3e20a7ee0f1606495d77880aa915677ed4a885557a406cfc5f5a67878cdd0675ecad503a6457056d901b96124f7eb171a srcfiles size=14 RELOC/source/latex/titling/titling.dtx RELOC/source/latex/titling/titling.ins +runfiles size=2 + RELOC/tex/latex/titling/titling.sty catalogue-ctan /macros/latex/contrib/titling -catalogue-date 2012-07-24 20:02:06 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics titlepage catalogue-version 2.1d name tkz-base category Package -revision 22961 -shortdesc Tools for drawing with a cartesian coordinate system. +revision 48710 +shortdesc Tools for drawing with a cartesian coordinate system relocated 1 longdesc The bundle is a set of packages, designed to give mathematics longdesc teachers (and students) easy access to programming of drawings longdesc with TikZ. +containersize 20104 +containerchecksum 3d187ef9abac64179de9d1c5992fb0b493eddd54e14b83b57adba977fea69598480f56546e685d212093f21d3ce7c9dcc0cef41f426975c2d51fd0188c53ad7b +doccontainersize 527804 +doccontainerchecksum 8ae2af7426f66ac769e13399a6bbcb86ed785dc45ad4b89c325fb1a3f5b512b24cb574162f6b1324b3b5d877e4acb0c00d07858a7ee46c8ea2b9bf64e4c5a087 +docfiles size=155 + RELOC/doc/latex/tkz-base/README details="Readme" + RELOC/doc/latex/tkz-base/examples/Makefile + RELOC/doc/latex/tkz-base/examples/info_base_tex.txt + RELOC/doc/latex/tkz-base/examples/latex/tkzbase-tex.zip + RELOC/doc/latex/tkz-base/examples/tkzbasepreamble.ltx + RELOC/doc/latex/tkz-base/latex/TKZdoc.zip + RELOC/doc/latex/tkz-base/tkz-base-screen.pdf details="Package documentation" language="fr" runfiles size=36 RELOC/tex/latex/tkz-base/tkz-base.cfg RELOC/tex/latex/tkz-base/tkz-base.sty @@ -164285,29 +279194,25 @@ runfiles size=36 RELOC/tex/latex/tkz-base/tkz-tools-misc.tex RELOC/tex/latex/tkz-base/tkz-tools-obsolete.tex RELOC/tex/latex/tkz-base/tkz-tools-utilities.tex -docfiles size=155 - RELOC/doc/latex/tkz-base/README - RELOC/doc/latex/tkz-base/examples/Makefile - RELOC/doc/latex/tkz-base/examples/info_base_tex.txt - RELOC/doc/latex/tkz-base/examples/latex/tkzbase-tex.zip - RELOC/doc/latex/tkz-base/examples/tkzbasepreamble.ltx - RELOC/doc/latex/tkz-base/latex/TKZdoc.zip - RELOC/doc/latex/tkz-base/tkz-base-screen.pdf +catalogue-also pgf +catalogue-contact-repository https://github.com/tkz-sty catalogue-ctan /macros/latex/contrib/tkz/tkz-base -catalogue-date 2012-06-24 19:27:06 +0200 +catalogue-date 2018-09-19 23:00:28 +0200 catalogue-license lppl -catalogue-version 1.16 +catalogue-topics pgf-tikz +catalogue-version 1.16d name tkz-berge category Package revision 22891 -shortdesc Macros for drawing graphs of graph theory. +shortdesc Macros for drawing graphs of graph theory relocated 1 longdesc The package provides a collection of useful macros for drawing longdesc classic graphs of graph theory, or to make other graphs. -runfiles size=24 - RELOC/tex/latex/tkz-berge/tkz-arith.sty - RELOC/tex/latex/tkz-berge/tkz-berge.sty +containersize 8392 +containerchecksum f56372592ff8a7ddc3f9d778631c4ef5e06cd6e0995b35d2c16d24b046540765a41df701d830720c95cde77cc1757af99a3f51471d4b83d5311fd5695865f299 +doccontainersize 1040428 +doccontainerchecksum b5514c49defbcc5d934266df428ad96a158803edcfd9ba23fb32080cc383ffcc32ea51a26094684094740df3a28e3137e0a26dec8792bbd60b454269312de596 docfiles size=454 RELOC/doc/latex/tkz-berge/NamedGraphs/README RELOC/doc/latex/tkz-berge/NamedGraphs/doc/NamedGraphs.pdf @@ -164478,55 +279383,56 @@ docfiles size=454 RELOC/doc/latex/tkz-berge/latex/TKZdoc-berge-style.tex RELOC/doc/latex/tkz-berge/latex/TKZdoc-gr-installation.tex RELOC/doc/latex/tkz-berge/latex/berge.ist - RELOC/doc/latex/tkz-berge/readme-tkz-berge.txt - RELOC/doc/latex/tkz-berge/tkz-berge-screen.pdf + RELOC/doc/latex/tkz-berge/readme-tkz-berge.txt details="Readme" + RELOC/doc/latex/tkz-berge/tkz-berge-screen.pdf details="Package documentation" +runfiles size=24 + RELOC/tex/latex/tkz-berge/tkz-arith.sty + RELOC/tex/latex/tkz-berge/tkz-berge.sty +catalogue-also tkz-graph catalogue-ctan /macros/latex/contrib/tkz/tkz-berge -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-09-19 18:43:21 +0200 catalogue-license lppl +catalogue-topics maths pgf-tikz catalogue-version 1.00c name tkz-doc category Package -revision 22959 -shortdesc Documentation macros for the TKZ series of packages. +revision 48709 +shortdesc Documentation macros for the TKZ series of packages relocated 1 longdesc This bundle offers a documentation class (tkz-doc) and a longdesc package (tkzexample). These files are used in the documentation longdesc of the author's packages tkz-tab and tkz-linknodes. +containersize 8364 +containerchecksum 8ca4da6f1b627c7e6604e8eb55fec2a20198e23240cdb043f83d7f8b28ff1687f71e63fb6a500018d7b5a17add28531c45abe79398880bfbcf5395f5baf7639c +doccontainersize 404 +doccontainerchecksum e35ae8c425fb20a4f54ab5a81b0b013d107c86a37113b92b4db9fd90de338ec746899e2e554a5c568def0439ff484520bbb7e3bdffdea0728c0bc38d0d574c18 +docfiles size=1 + RELOC/doc/latex/tkz-doc/README runfiles size=9 RELOC/tex/latex/tkz-doc/tkz-doc.cls RELOC/tex/latex/tkz-doc/tkzexample.sty -docfiles size=1 - RELOC/doc/latex/tkz-doc/README +catalogue-contact-repository https://github.com/tkz-sty catalogue-ctan /macros/latex/contrib/tkz-doc -catalogue-date 2014-09-21 12:31:39 +0200 +catalogue-date 2018-09-19 23:07:30 +0200 catalogue-license lppl -catalogue-version 1.1c +catalogue-topics doc-supp class +catalogue-version 1.1d name tkz-euclide category Package revision 22830 -shortdesc Tools for drawing Euclidean geometry. +shortdesc Tools for drawing Euclidean geometry relocated 1 -longdesc The tkz-euclide package is a set of files, designed to give -longdesc math teachers and students) easy access at the programming of +longdesc The tkz-euclide package is a set of files designed to give math +longdesc teachers and students easy access to the programming of longdesc Euclidean geometry with TikZ. -runfiles size=38 - RELOC/tex/latex/tkz-euclide/tkz-euclide.sty - RELOC/tex/latex/tkz-euclide/tkz-lib-symbols.tex - RELOC/tex/latex/tkz-euclide/tkz-obj-addpoints.tex - RELOC/tex/latex/tkz-euclide/tkz-obj-angles.tex - RELOC/tex/latex/tkz-euclide/tkz-obj-arcs.tex - RELOC/tex/latex/tkz-euclide/tkz-obj-circles.tex - RELOC/tex/latex/tkz-euclide/tkz-obj-lines.tex - RELOC/tex/latex/tkz-euclide/tkz-obj-polygons.tex - RELOC/tex/latex/tkz-euclide/tkz-obj-protractor.tex - RELOC/tex/latex/tkz-euclide/tkz-obj-sectors.tex - RELOC/tex/latex/tkz-euclide/tkz-obj-vectors.tex - RELOC/tex/latex/tkz-euclide/tkz-tools-intersections.tex - RELOC/tex/latex/tkz-euclide/tkz-tools-transformations.tex +containersize 17732 +containerchecksum 59ec42eeb1bbdafd1b4c8cc386260d6db02d799e21a4d4a4e43e44edd3adce0b6ee67902b8e9c713738b3371cad22cf69f90f61e0ea55d9815f689afc2c5cac8 +doccontainersize 755372 +doccontainerchecksum 44dd15fa046d3efb34de0050589ed1358e3b8db121aa64ac07a40ee83364fc8df5af30126ba58bd9fda22bb4dfde7b55170d5949b8cbee41f69de1a7a4e7d515 docfiles size=252 - RELOC/doc/latex/tkz-euclide/README + RELOC/doc/latex/tkz-euclide/README details="Readme" language="en" RELOC/doc/latex/tkz-euclide/examples/Makefile RELOC/doc/latex/tkz-euclide/examples/info_euclide_tex.txt RELOC/doc/latex/tkz-euclide/examples/latex/euclide-tex.zip @@ -164556,26 +279462,44 @@ docfiles size=252 RELOC/doc/latex/tkz-euclide/latex/TKZdoc-euclide-transf.tex RELOC/doc/latex/tkz-euclide/latex/TKZdoc-euclide-vec.tex RELOC/doc/latex/tkz-euclide/latex/euclide.ist - RELOC/doc/latex/tkz-euclide/readme-tkz-euclide-fr.txt + RELOC/doc/latex/tkz-euclide/readme-tkz-euclide-fr.txt details="Readme" language="fr" RELOC/doc/latex/tkz-euclide/readme-tkz-euclide.txt - RELOC/doc/latex/tkz-euclide/tkz-euclide-screen.pdf + RELOC/doc/latex/tkz-euclide/tkz-euclide-screen.pdf details="Package documentation" language="fr" +runfiles size=38 + RELOC/tex/latex/tkz-euclide/tkz-euclide.sty + RELOC/tex/latex/tkz-euclide/tkz-lib-symbols.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-addpoints.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-angles.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-arcs.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-circles.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-lines.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-polygons.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-protractor.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-sectors.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-vectors.tex + RELOC/tex/latex/tkz-euclide/tkz-tools-intersections.tex + RELOC/tex/latex/tkz-euclide/tkz-tools-transformations.tex +catalogue-also eukleides pst-eucl catalogue-ctan /macros/latex/contrib/tkz/tkz-euclide -catalogue-date 2012-06-25 01:24:05 +0200 +catalogue-date 2018-09-19 18:55:04 +0200 catalogue-license lppl +catalogue-topics maths graphics-use catalogue-version 1.16c name tkz-fct category Package revision 22831 -shortdesc Tools for drawing graphs of functions. +shortdesc Tools for drawing graphs of functions relocated 1 longdesc The tkz-fct package is designed to give math teachers (and longdesc students) easy access to programming graphs of functions with longdesc TikZ and gnuplot. -runfiles size=7 - RELOC/tex/latex/tkz-fct/tkz-fct.sty +containersize 4708 +containerchecksum baacde6c1153323e051b859477f888c66e707472db9e8377df2a3cca31de863a2c9357f10a199f1c3e494f85f412709be91fb8f4814b3ffe2c32dec5ea5d2c7f +doccontainersize 804592 +doccontainerchecksum 6bd18423f7169cf75247f77ad28b5b8a4ae5408dc417c4fb08985a559f2309f6dd34253a15cdd3bbb68f3f64c2d6b9bfadb3fc346c7e5a413673e83529b730ab docfiles size=311 - RELOC/doc/latex/tkz-fct/README + RELOC/doc/latex/tkz-fct/README details="Readme" language="en" RELOC/doc/latex/tkz-fct/examples/Makefile RELOC/doc/latex/tkz-fct/examples/info_fct_tex.txt RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-1-0-0.tex @@ -164677,24 +279601,30 @@ docfiles size=311 RELOC/doc/latex/tkz-fct/latex/TKZdoc-fct-tangent.tex RELOC/doc/latex/tkz-fct/latex/TKZdoc-fct-why.tex RELOC/doc/latex/tkz-fct/latex/fct.ist - RELOC/doc/latex/tkz-fct/readme-tkz-fct-fr.txt + RELOC/doc/latex/tkz-fct/readme-tkz-fct-fr.txt details="Readme" language="fr" RELOC/doc/latex/tkz-fct/readme-tkz-fct.txt RELOC/doc/latex/tkz-fct/readme.tex - RELOC/doc/latex/tkz-fct/tkz-fct-screen.pdf + RELOC/doc/latex/tkz-fct/tkz-fct-screen.pdf details="Package documentation" language="fr" +runfiles size=7 + RELOC/tex/latex/tkz-fct/tkz-fct.sty +catalogue-also pgf catalogue-ctan /macros/latex/contrib/tkz/tkz-fct -catalogue-date 2012-06-25 01:24:05 +0200 +catalogue-date 2018-09-19 19:07:11 +0200 catalogue-license lppl +catalogue-topics graphics-plot catalogue-version 1.16c name tkz-graph category Package -revision 22832 -shortdesc Draw graph-theory graphs. +revision 48711 +shortdesc Draw graph-theory graphs relocated 1 longdesc The package is designed to create graph diagrams as simply as longdesc possible, using TikZ -runfiles size=12 - RELOC/tex/latex/tkz-graph/tkz-graph.sty +containersize 6112 +containerchecksum 9a933a9925dfe8782abaa6c983881a10d20542be294f15904d1645f5481309ed00d42d3b4eb38498dd4eab84774b685455235f89462de0af443b617bd4566927 +doccontainersize 305024 +doccontainerchecksum ec22ca39b559b4d6f6192272470cfc748c466b5efe9f5ca00fdcf263cc172dcab5e34b059c328097479e1c03e038e71e4658fc22518cda545f9febaba2f43310 docfiles size=112 RELOC/doc/latex/tkz-graph/latex/TKZdoc-gr-Dijkstra.tex RELOC/doc/latex/tkz-graph/latex/TKZdoc-gr-Welsh.tex @@ -164710,25 +279640,32 @@ docfiles size=112 RELOC/doc/latex/tkz-graph/latex/TKZdoc-gr-vertex.tex RELOC/doc/latex/tkz-graph/latex/TKZdoc-gr-vertices.tex RELOC/doc/latex/tkz-graph/latex/graph.ist - RELOC/doc/latex/tkz-graph/readme-tkz-graph.txt - RELOC/doc/latex/tkz-graph/tkz-graph-screen.pdf + RELOC/doc/latex/tkz-graph/readme-tkz-graph.txt details="Readme (French)" language="fr" + RELOC/doc/latex/tkz-graph/tkz-graph-screen.pdf details="Package documentation" +runfiles size=12 + RELOC/tex/latex/tkz-graph/tkz-graph.sty +catalogue-also tkz-berge catalogue-ctan /macros/latex/contrib/tkz/tkz-graph -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-09-19 23:16:57 +0200 catalogue-license lppl -catalogue-version 1.00 +catalogue-topics maths pgf-tikz +catalogue-version 1.00 d name tkz-kiviat category Package -revision 22857 -shortdesc Draw Kiviat graphs. +revision 48712 +shortdesc Draw Kiviat graphs relocated 1 longdesc The package allows the user to draw Kiviat Graphs directly, or longdesc with data from an external file. The drawing is done with the longdesc help of pgfplots. -runfiles size=3 - RELOC/tex/latex/tkz-kiviat/tkz-kiviat.sty -docfiles size=50 - RELOC/doc/latex/tkz-kiviat/TKZdoc-kiviat-main.pdf +containersize 2352 +containerchecksum d1b6b4c1ecfe29397c2a63c808cc24119688782326bff3615c3e84dc22ae1bd6bdffc57761af31ef21bf3f3378806dfd087fdd24d5dbac49ec890df54ea3bcf8 +doccontainersize 156212 +doccontainerchecksum 5ab29135b2903988727129f37496ae27a5ead3800edbe47728d7d5171d210ef7e11bf47d3a4fdd27c0c03f6e09aad8b9697acadbb959f549f5c290e66c1cab45 +docfiles size=51 + RELOC/doc/latex/tkz-kiviat/README + RELOC/doc/latex/tkz-kiviat/TKZdoc-kiviat-main.pdf details="Package documentation" RELOC/doc/latex/tkz-kiviat/examples/latex/file.dat RELOC/doc/latex/tkz-kiviat/examples/latex/kiviat1.tex RELOC/doc/latex/tkz-kiviat/examples/latex/kiviat2.tex @@ -164738,24 +279675,30 @@ docfiles size=50 RELOC/doc/latex/tkz-kiviat/latex/TKZdoc-kiviat-main.tex RELOC/doc/latex/tkz-kiviat/latex/file.dat RELOC/doc/latex/tkz-kiviat/latex/file2.dat +runfiles size=3 + RELOC/tex/latex/tkz-kiviat/tkz-kiviat.sty +catalogue-contact-repository https://github.com/tkz-sty catalogue-ctan /macros/latex/contrib/tkz/tkz-kiviat -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-09-19 23:58:18 +0200 catalogue-license lppl -catalogue-version 0.1 +catalogue-topics graphics-plot +catalogue-version 0.1b name tkz-linknodes category Package -revision 22833 -shortdesc Link nodes in mathematical environments. +revision 48713 +shortdesc Link nodes in mathematical environments relocated 1 longdesc The package arose from a requirement to link the elements of an longdesc amsmath align or aligned environment. The package makes use of longdesc PGF/TikZ. The package documentation relies on the facilities of longdesc the tkz-doc bundle -runfiles size=3 - RELOC/tex/latex/tkz-linknodes/tkz-linknodes.sty +containersize 2968 +containerchecksum b41f40a2c27b9384c3edef8217c1224293b8a2901a0f3752c3267d911a7788e27138464b2f11634f67bca00dbfe2ed71a87fb9b3dd4dbc5f62765a022c51bcbe +doccontainersize 339088 +doccontainerchecksum d4fc88cf1dcc49b6bf2292c6892c5094bc4eb6f17535dd1ac51783b9abb7312279cadc5e06e624720be756f5a0907551f4411f246cbeb6dcbb1365b891e70840 docfiles size=107 - RELOC/doc/latex/tkz-linknodes/README + RELOC/doc/latex/tkz-linknodes/README details="Readme" language="en" RELOC/doc/latex/tkz-linknodes/examples/equation.pdf RELOC/doc/latex/tkz-linknodes/examples/latex/equation.tex RELOC/doc/latex/tkz-linknodes/examples/latex/quadratic.tex @@ -164765,46 +279708,58 @@ docfiles size=107 RELOC/doc/latex/tkz-linknodes/latex/TKZdoc-linknodes-us.tex RELOC/doc/latex/tkz-linknodes/latex/linknodes.ist RELOC/doc/latex/tkz-linknodes/readme-linknodes.txt - RELOC/doc/latex/tkz-linknodes/tkz-linknodes-screen.pdf + RELOC/doc/latex/tkz-linknodes/tkz-linknodes-screen.pdf details="Package documentation" language="en" +runfiles size=3 + RELOC/tex/latex/tkz-linknodes/tkz-linknodes.sty +catalogue-contact-repository https://github.com/tkz-sty catalogue-ctan /macros/latex/contrib/tkz/tkz-linknodes -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-09-19 23:44:41 +0200 catalogue-license lppl -catalogue-version 1.0c +catalogue-topics graphics-use pgf-tikz +catalogue-version 1.1d name tkz-orm category Package -revision 16849 -shortdesc Create Object-Role Model (ORM) diagrams, +revision 39408 +shortdesc Create Object-Role Model (ORM) diagrams relocated 1 longdesc The package provides styles for drawing Object-Role Model (ORM) -longdesc diagrams in TeX based on the pgf and TikZ picture environment. -runfiles size=6 - RELOC/tex/latex/tkz-orm/tkz-orm.sty -docfiles size=84 +longdesc diagrams in TeX based on the PGF and TikZ picture environment. +containersize 7512 +containerchecksum a90dda0186a3e3309eaabe444a7404fe2cafa1caa737f7d5ec9779eafd76f0795890f36bc4f0c5302dcff30231ccc3a8306fe318f10695e8caf00cbf61fc6e04 +doccontainersize 431372 +doccontainerchecksum a1686b02d79cf0af41f99faa2ac06e2a3d864b078231f4c9c165261557df0fe8f26db8159dce2a90be6206750d6fc8f3013421cb0171c1ff1f11624e634f910d +docfiles size=120 RELOC/doc/latex/tkz-orm/LICENSE RELOC/doc/latex/tkz-orm/Makefile - RELOC/doc/latex/tkz-orm/README + RELOC/doc/latex/tkz-orm/README details="Readme" RELOC/doc/latex/tkz-orm/pgfmanualstyle.sty RELOC/doc/latex/tkz-orm/tkz-orm.bib - RELOC/doc/latex/tkz-orm/tkz-orm.pdf + RELOC/doc/latex/tkz-orm/tkz-orm.pdf details="Package documentation" RELOC/doc/latex/tkz-orm/tkz-orm.tex +runfiles size=10 + RELOC/tex/latex/tkz-orm/tkz-orm.sty +catalogue-contact-home http://purl.org/net/tkz-orm catalogue-ctan /graphics/pgf/contrib/tkz-orm -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license gpl -catalogue-version 0.1 +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license gpl2lppl1.3 +catalogue-topics diagram pgf-tikz +catalogue-version 0.1.4 name tkz-tab category Package -revision 22834 -shortdesc Tables of signs and variations using PGF/TikZ. +revision 49775 +shortdesc Tables of signs and variations using PGF/TikZ relocated 1 longdesc The package provides comprehensive facilities for preparing longdesc lists of signs and variations, using PGF. The package longdesc documentation requires the tkz-doc bundle. -runfiles size=12 - RELOC/tex/latex/tkz-tab/tkz-tab.sty +containersize 6500 +containerchecksum c4290e2633a44122789abb3dd054cf61a1bdcece6274a43d9ce6ae403b73f0c0a32b4c1e6470278c46468d53149540f3884c6b2186b51008b0beeecc8a84b1c9 +doccontainersize 449072 +doccontainerchecksum 08d79e8c0aeef5323112182ae60c25a8ea6547aa5ec75f37b8c5e6e15a894d1a70efbd99421140156de844d35483803c21bba0ea0ee88ca36aea55e303095d14 docfiles size=150 - RELOC/doc/latex/tkz-tab/README + RELOC/doc/latex/tkz-tab/README details="Readme" language="en" RELOC/doc/latex/tkz-tab/latex/TKZ-doc-tab-faq.tex RELOC/doc/latex/tkz-tab/latex/TKZdoc-tab-adapt.tex RELOC/doc/latex/tkz-tab/latex/TKZdoc-tab-bac.tex @@ -164822,21 +279777,67 @@ docfiles size=150 RELOC/doc/latex/tkz-tab/latex/TKZdoc-tab-variation.tex RELOC/doc/latex/tkz-tab/latex/TKZdoc-tab.ist RELOC/doc/latex/tkz-tab/readme-us.txt - RELOC/doc/latex/tkz-tab/tkz-tab-screen.pdf + RELOC/doc/latex/tkz-tab/tkz-tab-screen.pdf details="Package documentation (French)" language="fr" +runfiles size=12 + RELOC/tex/latex/tkz-tab/tkz-tab.sty +catalogue-also tableaux tableauvariations tablor tabvar +catalogue-contact-repository https://github.com/tkz-sty catalogue-ctan /macros/latex/contrib/tkz/tkz-tab -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.3c +catalogue-date 2019-01-20 08:40:22 +0100 +catalogue-license lppl1.3gpl +catalogue-topics maths-tabvar pgf-tikz +catalogue-version 1.4e + +name tlc-article +category Package +revision 47891 +shortdesc A LaTeX document class for formal documents +relocated 1 +longdesc The package provides a LaTeX document class that orchestrates a +longdesc logical arrangement for document header, footer, author, +longdesc abstract, table of contents, and margins. It standardizes a +longdesc document layout intended for formal documents. The tlc_article +longdesc GitHub repository uses a SCRUM framework adapted to standard +longdesc GitHub tooling. tlc_article is integrated with Travis-ci.org +longdesc for continuous integration and AllanConsulting.slack.com for +longdesc centralized notification. +containersize 3760 +containerchecksum 7b533169d7f59aa2024311ff4cb2d1a1da7bad458f376a1d5835f136e77ef49faf2fb30dbb95a1f287cdf7f08f382b31f48b696a651c10dab546e30debdf826c +doccontainersize 110140 +doccontainerchecksum ec4637ac508bb74fa4df73a36dd78092588aca0a84cc5fb39e901a08ecb5e9034059d44d9b9252850e3257791139940dc08dead475a2732a11bb543ef06cfd4d +docfiles size=38 + RELOC/doc/latex/tlc-article/GettingStarted.tex + RELOC/doc/latex/tlc-article/GettingStarted.texx + RELOC/doc/latex/tlc-article/LICENSE + RELOC/doc/latex/tlc-article/README.md details="Readme" + RELOC/doc/latex/tlc-article/data/logo.png + RELOC/doc/latex/tlc-article/data/required-packages.csv + RELOC/doc/latex/tlc-article/data/version.csv + RELOC/doc/latex/tlc-article/doc/sprint.md + RELOC/doc/latex/tlc-article/images/titlepage.png +runfiles size=3 + RELOC/tex/latex/tlc-article/tlc-article.cls +catalogue-contact-bugs https://github.com/Traap/tlc-article/issues +catalogue-contact-home https://github.com/Traap/tlc-article +catalogue-ctan /macros/latex/contrib/tlc-article +catalogue-date 2018-06-05 05:23:42 +0200 +catalogue-license bsd3 +catalogue-topics class article-like +catalogue-version 1.0.10 name tlc2 category Package revision 26096 catalogue tlc2-examples -shortdesc Examples from "The LaTeX Companion", second edition. +shortdesc Examples from "The LaTeX Companion", second edition relocated 1 longdesc The source of the examples printed in the book, together with -longdesc necessary supporting files. The book was published by Addison- -longdesc Wesley, 2004, ISBN 0-201-36299-6. +longdesc necessary supporting files. The book was published by +longdesc Addison-Wesley, 2004, ISBN 0-201-36299-6. +containersize 484 +containerchecksum 3ac7d28285b15d7e97839619a449c870b3f96e1c557470ba4bf680016c9834af9f09715e09525b00aa2b951bbe20e5d3b1d0a5e5f957de99c13fdb39f4267e3d +doccontainersize 114656 +doccontainerchecksum 79eead14f268eab643f676c36b20ba89828928fb3b418956277304ac6cf7145d53b4f97c30605690cddce8660361614b58ac65e8454b7740dde17ff82a053818 docfiles size=890 RELOC/doc/latex/tlc2/1-3-1.ltx RELOC/doc/latex/tlc2/1-3-2.ltx2 @@ -165708,128 +280709,2768 @@ docfiles size=890 RELOC/doc/latex/tlc2/w.eps RELOC/doc/latex/tlc2/w.ps catalogue-ctan /info/examples/tlc2 -catalogue-date 2012-06-24 19:27:06 +0200 -catalogue-license lppl +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics book-ex + +name tlcockpit +category Package +revision 48846 +shortdesc A GUI frontend to TeX Live Manager (tlmgr) +longdesc This package aims at being a GUI for tlmgr, the TeX Live +longdesc Manager, with a modern look and feel. We take inspiration from +longdesc the excellent TeX Live Utility for MacOS. +depend tlcockpit.ARCH +containersize 15369828 +containerchecksum 71311166878766909118415e59f5252e581e2f3b98df14a5db8958cd9325a88c36cb2a834db82fa4ec35fe00fa5da9fdf72a54b5bfbabe1196976a438709dd0a +doccontainersize 1012280 +doccontainerchecksum 861c801439ea2fbfba6ace5e7e2c06e54c59a8169aa9848e44a7318c4b3a273ed5a1e31e7cb90a633aed5501063e0f47b034fb1d32223b5eb77c5b067d56872a +docfiles size=444 + texmf-dist/doc/support/tlcockpit/ChangeLog + texmf-dist/doc/support/tlcockpit/LICENSE + texmf-dist/doc/support/tlcockpit/NEWS + texmf-dist/doc/support/tlcockpit/README.md details="Readme" + texmf-dist/doc/support/tlcockpit/logo/tlcockpit-banner.jpg + texmf-dist/doc/support/tlcockpit/logo/tlcockpit-banner.xcf + texmf-dist/doc/support/tlcockpit/logo/tlcockpit.xcf + texmf-dist/doc/support/tlcockpit/screenshots/tlcockpit-backups.jpg + texmf-dist/doc/support/tlcockpit/screenshots/tlcockpit-collections.jpg + texmf-dist/doc/support/tlcockpit/screenshots/tlcockpit-config.jpg + texmf-dist/doc/support/tlcockpit/screenshots/tlcockpit-loading.jpg + texmf-dist/doc/support/tlcockpit/screenshots/tlcockpit-menu-debug-expert.jpg + texmf-dist/doc/support/tlcockpit/screenshots/tlcockpit-packages.jpg + texmf-dist/doc/support/tlcockpit/screenshots/tlcockpit-paper.jpg + texmf-dist/doc/support/tlcockpit/screenshots/tlcockpit-pkgdetails.jpg + texmf-dist/doc/support/tlcockpit/screenshots/tlcockpit-postactions.jpg + texmf-dist/doc/support/tlcockpit/screenshots/tlcockpit-repositories.jpg + texmf-dist/doc/support/tlcockpit/screenshots/tlcockpit-updates.jpg +srccontainersize 96728 +srccontainerchecksum 4232e4eb98cc9442d4f32c6426b14329e002c3aa069b0dbdcfd0ccc917fc2711a8e4685a6ff47506a6557f6c3bf6447c8795f9efb7b52077a0a872cd38481511 +srcfiles size=56 + texmf-dist/source/support/tlcockpit/TODO + texmf-dist/source/support/tlcockpit/build.sbt + texmf-dist/source/support/tlcockpit/project/assembly.sbt + texmf-dist/source/support/tlcockpit/project/build.properties + texmf-dist/source/support/tlcockpit/src/main/resources/TLCockpit/spinner-small.gif + texmf-dist/source/support/tlcockpit/src/main/resources/TLCockpit/spinner.gif + texmf-dist/source/support/tlcockpit/src/main/resources/TLCockpit/tlcockpit-128.jpg + texmf-dist/source/support/tlcockpit/src/main/resources/TLCockpit/tlcockpit-48.jpg + texmf-dist/source/support/tlcockpit/src/main/resources/logback.xml + texmf-dist/source/support/tlcockpit/src/main/scala/TLCockpit/ApplicationMain.scala + texmf-dist/source/support/tlcockpit/src/main/scala/TLCockpit/LocationDialog.scala + texmf-dist/source/support/tlcockpit/src/main/scala/TLCockpit/OptionsDialog.scala + texmf-dist/source/support/tlcockpit/src/main/scala/TLCockpit/PaperDialog.scala + texmf-dist/source/support/tlcockpit/src/main/scala/TLCockpit/PkgInfoDialog.scala + texmf-dist/source/support/tlcockpit/src/main/scala/TLCockpit/TLDisplayClasses.scala + texmf-dist/source/support/tlcockpit/src/main/scala/TLCockpit/Utils.scala + texmf-dist/source/support/tlcockpit/src/main/scala/TeXLive/JsonProtocol.scala + texmf-dist/source/support/tlcockpit/src/main/scala/TeXLive/OsTools.scala + texmf-dist/source/support/tlcockpit/src/main/scala/TeXLive/TLClasses.scala + texmf-dist/source/support/tlcockpit/src/main/scala/TeXLive/TlmgrProcess.scala + texmf-dist/source/support/tlcockpit/src/main/scala/TeXLive/package.scala +runfiles size=4052 + texmf-dist/scripts/tlcockpit/tlcockpit.jar + texmf-dist/scripts/tlcockpit/tlcockpit.sh +catalogue-contact-bugs https://github.com/TeX-Live/tlcockpit/issues +catalogue-contact-repository https://github.com/TeX-Live/tlcockpit +catalogue-ctan /support/tlcockpit +catalogue-date 2018-10-06 10:55:25 +0200 +catalogue-license gpl3+ +catalogue-topics install-mgmt +catalogue-version 1.0 + +name tlcockpit.aarch64-linux +category Package +revision 46798 +shortdesc aarch64-linux files of tlcockpit +containersize 340 +containerchecksum ee3b6fdeebfdc0055ab4f94d2ec8ac02e74e4c9cd25f6a573ae9b8c94a30b6a36711882816305ebfde1b0025513307adb16ed1b3ef6ae6eeadd1101347675064 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/tlcockpit + +name tlcockpit.amd64-freebsd +category Package +revision 46798 +shortdesc amd64-freebsd files of tlcockpit +containersize 344 +containerchecksum bd79470b0d7d9315138ed8a718e4c77c954dcfa5808e72b06fc7e4434228364ab4a391ebb34adf3f52876872ad2ad3b2111e4f635a95c99c590e83c3ac13d165 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/tlcockpit + +name tlcockpit.amd64-netbsd +category Package +revision 46798 +shortdesc amd64-netbsd files of tlcockpit +containersize 344 +containerchecksum 37ca8a77c24a5f08ad4fe1869ec7a69aaaf05f3099e619a3e24bc5891adff7e9dc1fbb9a461d6f1d329a3701595c7db8ba57757f3c8ac23af788d123d7af847a +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/tlcockpit + +name tlcockpit.armhf-linux +category Package +revision 46798 +shortdesc armhf-linux files of tlcockpit +containersize 340 +containerchecksum 14c7851b3b61b6e219c35e18d5f17fddbe9bbabc1c9b8a56be16d627cc3ad9ff801237234ed395b46cb8633aa9bd6ed8f46d616211664fdc3e238768a199c1a6 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/tlcockpit + +name tlcockpit.i386-cygwin +category Package +revision 46798 +shortdesc i386-cygwin files of tlcockpit +containersize 340 +containerchecksum 93de942c9f8ec6732a7baedcbf79b181e69c520fb2a558d2f7ae3f98376e8a2f8e67418ce9affb39dce89b11c14235d62f04c20a43b2660782e4e5f903b9b96f +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/tlcockpit + +name tlcockpit.i386-freebsd +category Package +revision 46798 +shortdesc i386-freebsd files of tlcockpit +containersize 344 +containerchecksum aeeab3c44bc2b2e15a3734a56c5a1fe4b6112a8a1db0e6b287f9ae5c620da4460f379755dceac9772a2f8ebe49e30a5cad589f5357d8958325584f3b70168a4e +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/tlcockpit + +name tlcockpit.i386-linux +category Package +revision 46798 +shortdesc i386-linux files of tlcockpit +containersize 344 +containerchecksum 276ef2bf5a7e0584399e21431cedc405dcd737b55b3dd14241c2bda2002c7f63e75056a29c9dcf82a57ca5971b7bea4e6dc92c6a69e398976b6bc52d8d500854 +binfiles arch=i386-linux size=1 + bin/i386-linux/tlcockpit + +name tlcockpit.i386-netbsd +category Package +revision 46798 +shortdesc i386-netbsd files of tlcockpit +containersize 340 +containerchecksum 3081aeb5197b4d359718f46c6dd2ad33ce1f2297ce39bc272f24ce988f7a24ae8971a5ef8358303f8f9e3a14cbcb18314e6ded62cf3dff16ea992942fe1b2268 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/tlcockpit + +name tlcockpit.i386-solaris +category Package +revision 46798 +shortdesc i386-solaris files of tlcockpit +containersize 340 +containerchecksum 89e768b51b7401a86553f25bd08b85bb82e8f37e0a32932cf2677151b050cde38786a507db5f00af42a06331459fc914002a055bd93e82493d29a00c13d88d49 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/tlcockpit + +name tlcockpit.x86_64-cygwin +category Package +revision 46798 +shortdesc x86_64-cygwin files of tlcockpit +containersize 344 +containerchecksum 9a86f76fd5ce33f10ec713049b2d83b530a3541fa09f11940637e5176e05c2b161017176c414aad20142bd67957fd1b67a0d4f3335b0be96ac4c04dfcd660e4b +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/tlcockpit + +name tlcockpit.x86_64-darwin +category Package +revision 46798 +shortdesc x86_64-darwin files of tlcockpit +containersize 344 +containerchecksum 84a702a99066f88200a445f013c87bc1d5a86cc79b682caa38046d52e26b27c4cd9308b52361db152bf04a04d7001a7cb77e98ea03a1eb74a7b27f05b6734f21 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/tlcockpit + +name tlcockpit.x86_64-darwinlegacy +category Package +revision 46798 +shortdesc x86_64-darwinlegacy files of tlcockpit +containersize 352 +containerchecksum 3cbea611ab2427de2cf794f9d6cd9ebf1ae94253d603fc99fbf435b3ea8dcee4ba8455da1d42bb462f0de668ce4f3ffec171410d0108947183a3f79737b60df8 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/tlcockpit + +name tlcockpit.x86_64-linux +category Package +revision 46798 +shortdesc x86_64-linux files of tlcockpit +containersize 340 +containerchecksum e0d68662d662741b6e7013a5eda9a122fb95b9de226170474042fbf103ccf2294f17f02e6bd23a785105cd81ba7c8eeb56ec230a9a16e1ffcea93a3e04464783 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/tlcockpit + +name tlcockpit.x86_64-linuxmusl +category Package +revision 47036 +shortdesc x86_64-linuxmusl files of tlcockpit +containersize 348 +containerchecksum 67967a960826166c390ae088ada3b42b58af827f405202b11508b1e6c8d61afab0f0f7e2f74042c55c010e157eaeb87c69d41251073ef547a3a9079b68a7abf1 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/tlcockpit + +name tlcockpit.x86_64-solaris +category Package +revision 46798 +shortdesc x86_64-solaris files of tlcockpit +containersize 340 +containerchecksum 5c874fddba271b59aec6f3addf78f303735ed2c5ea6dac0cb34c5a15973cf14b2ab2eb8f2ab571d3fd06b7496d1925ad3f1115ca7b0b8f77971f9b8c4d97b5da +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/tlcockpit + +name tlgs.win32 +category TLCore +revision 51080 +catalogue ghostscript +shortdesc Freely available PostScript interpreter +longdesc Ghostscript is a freely available PostScript interpreter which +longdesc is available for many platforms. It is a near-essential +longdesc complement to a TeX installation, used in many utilities, +longdesc including PostScript/PDF viewers such as gv and GSview. +longdesc Ghostscript is no longer held on CTAN: please see the home page +longdesc for downloads. +containersize 6800716 +containerchecksum e94fe2d0c7283d6a2aedd643061bb447eccbd995e4c9255ae191857c3a19f14a2e68ea3b5f9e04ea734e60d7c1ac334581c1d1d7e09da6f41dfc996a90bec700 +binfiles arch=win32 size=6232 + bin/win32/eps2eps.exe + bin/win32/pdf2dsc.exe + bin/win32/pdfopt.exe + bin/win32/ps2ascii.exe + bin/win32/ps2pdf.exe + bin/win32/ps2pdf12.exe + bin/win32/ps2pdf13.exe + bin/win32/ps2pdf14.exe + bin/win32/ps2ps.exe + bin/win32/ps2ps2.exe + texmf-dist/scripts/tlgs/gswin32/eps2eps.tlu + texmf-dist/scripts/tlgs/gswin32/pdf2dsc.tlu + texmf-dist/scripts/tlgs/gswin32/pdfopt.tlu + texmf-dist/scripts/tlgs/gswin32/ps2ascii.tlu + texmf-dist/scripts/tlgs/gswin32/ps2pdf.tlu + texmf-dist/scripts/tlgs/gswin32/ps2pdf12.tlu + texmf-dist/scripts/tlgs/gswin32/ps2pdf13.tlu + texmf-dist/scripts/tlgs/gswin32/ps2pdf14.tlu + texmf-dist/scripts/tlgs/gswin32/ps2ps.tlu + tlpkg/tlgs/COPYING + tlpkg/tlgs/README.TEXLIVE + tlpkg/tlgs/Resource/CIDFSubst/DroidSansFallback.ttf + tlpkg/tlgs/Resource/CIDFont/ArtifexBullet + tlpkg/tlgs/Resource/CMap/78-EUC-H + tlpkg/tlgs/Resource/CMap/78-EUC-V + tlpkg/tlgs/Resource/CMap/78-H + tlpkg/tlgs/Resource/CMap/78-RKSJ-H + tlpkg/tlgs/Resource/CMap/78-RKSJ-V + tlpkg/tlgs/Resource/CMap/78-V + tlpkg/tlgs/Resource/CMap/78ms-RKSJ-H + tlpkg/tlgs/Resource/CMap/78ms-RKSJ-V + tlpkg/tlgs/Resource/CMap/83pv-RKSJ-H + tlpkg/tlgs/Resource/CMap/90ms-RKSJ-H + tlpkg/tlgs/Resource/CMap/90ms-RKSJ-V + tlpkg/tlgs/Resource/CMap/90msp-RKSJ-H + tlpkg/tlgs/Resource/CMap/90msp-RKSJ-V + tlpkg/tlgs/Resource/CMap/90pv-RKSJ-H + tlpkg/tlgs/Resource/CMap/90pv-RKSJ-V + tlpkg/tlgs/Resource/CMap/Add-H + tlpkg/tlgs/Resource/CMap/Add-RKSJ-H + tlpkg/tlgs/Resource/CMap/Add-RKSJ-V + tlpkg/tlgs/Resource/CMap/Add-V + tlpkg/tlgs/Resource/CMap/Adobe-CNS1-0 + tlpkg/tlgs/Resource/CMap/Adobe-CNS1-1 + tlpkg/tlgs/Resource/CMap/Adobe-CNS1-2 + tlpkg/tlgs/Resource/CMap/Adobe-CNS1-3 + tlpkg/tlgs/Resource/CMap/Adobe-CNS1-4 + tlpkg/tlgs/Resource/CMap/Adobe-CNS1-5 + tlpkg/tlgs/Resource/CMap/Adobe-CNS1-6 + tlpkg/tlgs/Resource/CMap/Adobe-CNS1-7 + tlpkg/tlgs/Resource/CMap/Adobe-GB1-0 + tlpkg/tlgs/Resource/CMap/Adobe-GB1-1 + tlpkg/tlgs/Resource/CMap/Adobe-GB1-2 + tlpkg/tlgs/Resource/CMap/Adobe-GB1-3 + tlpkg/tlgs/Resource/CMap/Adobe-GB1-4 + tlpkg/tlgs/Resource/CMap/Adobe-GB1-5 + tlpkg/tlgs/Resource/CMap/Adobe-Japan1-0 + tlpkg/tlgs/Resource/CMap/Adobe-Japan1-1 + tlpkg/tlgs/Resource/CMap/Adobe-Japan1-2 + tlpkg/tlgs/Resource/CMap/Adobe-Japan1-3 + tlpkg/tlgs/Resource/CMap/Adobe-Japan1-4 + tlpkg/tlgs/Resource/CMap/Adobe-Japan1-5 + tlpkg/tlgs/Resource/CMap/Adobe-Japan1-6 + tlpkg/tlgs/Resource/CMap/Adobe-Japan2-0 + tlpkg/tlgs/Resource/CMap/Adobe-Korea1-0 + tlpkg/tlgs/Resource/CMap/Adobe-Korea1-1 + tlpkg/tlgs/Resource/CMap/Adobe-Korea1-2 + tlpkg/tlgs/Resource/CMap/B5-H + tlpkg/tlgs/Resource/CMap/B5-V + tlpkg/tlgs/Resource/CMap/B5pc-H + tlpkg/tlgs/Resource/CMap/B5pc-V + tlpkg/tlgs/Resource/CMap/CNS-EUC-H + tlpkg/tlgs/Resource/CMap/CNS-EUC-V + tlpkg/tlgs/Resource/CMap/CNS1-H + tlpkg/tlgs/Resource/CMap/CNS1-V + tlpkg/tlgs/Resource/CMap/CNS2-H + tlpkg/tlgs/Resource/CMap/CNS2-V + tlpkg/tlgs/Resource/CMap/ETHK-B5-H + tlpkg/tlgs/Resource/CMap/ETHK-B5-V + tlpkg/tlgs/Resource/CMap/ETen-B5-H + tlpkg/tlgs/Resource/CMap/ETen-B5-V + tlpkg/tlgs/Resource/CMap/ETenms-B5-H + tlpkg/tlgs/Resource/CMap/ETenms-B5-V + tlpkg/tlgs/Resource/CMap/EUC-H + tlpkg/tlgs/Resource/CMap/EUC-V + tlpkg/tlgs/Resource/CMap/Ext-H + tlpkg/tlgs/Resource/CMap/Ext-RKSJ-H + tlpkg/tlgs/Resource/CMap/Ext-RKSJ-V + tlpkg/tlgs/Resource/CMap/Ext-V + tlpkg/tlgs/Resource/CMap/GB-EUC-H + tlpkg/tlgs/Resource/CMap/GB-EUC-V + tlpkg/tlgs/Resource/CMap/GB-H + tlpkg/tlgs/Resource/CMap/GB-V + tlpkg/tlgs/Resource/CMap/GBK-EUC-H + tlpkg/tlgs/Resource/CMap/GBK-EUC-V + tlpkg/tlgs/Resource/CMap/GBK2K-H + tlpkg/tlgs/Resource/CMap/GBK2K-V + tlpkg/tlgs/Resource/CMap/GBKp-EUC-H + tlpkg/tlgs/Resource/CMap/GBKp-EUC-V + tlpkg/tlgs/Resource/CMap/GBT-EUC-H + tlpkg/tlgs/Resource/CMap/GBT-EUC-V + tlpkg/tlgs/Resource/CMap/GBT-H + tlpkg/tlgs/Resource/CMap/GBT-V + tlpkg/tlgs/Resource/CMap/GBTpc-EUC-H + tlpkg/tlgs/Resource/CMap/GBTpc-EUC-V + tlpkg/tlgs/Resource/CMap/GBpc-EUC-H + tlpkg/tlgs/Resource/CMap/GBpc-EUC-V + tlpkg/tlgs/Resource/CMap/H + tlpkg/tlgs/Resource/CMap/HKdla-B5-H + tlpkg/tlgs/Resource/CMap/HKdla-B5-V + tlpkg/tlgs/Resource/CMap/HKdlb-B5-H + tlpkg/tlgs/Resource/CMap/HKdlb-B5-V + tlpkg/tlgs/Resource/CMap/HKgccs-B5-H + tlpkg/tlgs/Resource/CMap/HKgccs-B5-V + tlpkg/tlgs/Resource/CMap/HKm314-B5-H + tlpkg/tlgs/Resource/CMap/HKm314-B5-V + tlpkg/tlgs/Resource/CMap/HKm471-B5-H + tlpkg/tlgs/Resource/CMap/HKm471-B5-V + tlpkg/tlgs/Resource/CMap/HKscs-B5-H + tlpkg/tlgs/Resource/CMap/HKscs-B5-V + tlpkg/tlgs/Resource/CMap/Hankaku + tlpkg/tlgs/Resource/CMap/Hiragana + tlpkg/tlgs/Resource/CMap/Hojo-EUC-H + tlpkg/tlgs/Resource/CMap/Hojo-EUC-V + tlpkg/tlgs/Resource/CMap/Hojo-H + tlpkg/tlgs/Resource/CMap/Hojo-V + tlpkg/tlgs/Resource/CMap/Identity-H + tlpkg/tlgs/Resource/CMap/Identity-UTF16-H + tlpkg/tlgs/Resource/CMap/Identity-V + tlpkg/tlgs/Resource/CMap/KSC-EUC-H + tlpkg/tlgs/Resource/CMap/KSC-EUC-V + tlpkg/tlgs/Resource/CMap/KSC-H + tlpkg/tlgs/Resource/CMap/KSC-Johab-H + tlpkg/tlgs/Resource/CMap/KSC-Johab-V + tlpkg/tlgs/Resource/CMap/KSC-V + tlpkg/tlgs/Resource/CMap/KSCms-UHC-H + tlpkg/tlgs/Resource/CMap/KSCms-UHC-HW-H + tlpkg/tlgs/Resource/CMap/KSCms-UHC-HW-V + tlpkg/tlgs/Resource/CMap/KSCms-UHC-V + tlpkg/tlgs/Resource/CMap/KSCpc-EUC-H + tlpkg/tlgs/Resource/CMap/KSCpc-EUC-V + tlpkg/tlgs/Resource/CMap/Katakana + tlpkg/tlgs/Resource/CMap/NWP-H + tlpkg/tlgs/Resource/CMap/NWP-V + tlpkg/tlgs/Resource/CMap/RKSJ-H + tlpkg/tlgs/Resource/CMap/RKSJ-V + tlpkg/tlgs/Resource/CMap/Roman + tlpkg/tlgs/Resource/CMap/UniCNS-UCS2-H + tlpkg/tlgs/Resource/CMap/UniCNS-UCS2-V + tlpkg/tlgs/Resource/CMap/UniCNS-UTF16-H + tlpkg/tlgs/Resource/CMap/UniCNS-UTF16-V + tlpkg/tlgs/Resource/CMap/UniCNS-UTF32-H + tlpkg/tlgs/Resource/CMap/UniCNS-UTF32-V + tlpkg/tlgs/Resource/CMap/UniCNS-UTF8-H + tlpkg/tlgs/Resource/CMap/UniCNS-UTF8-V + tlpkg/tlgs/Resource/CMap/UniGB-UCS2-H + tlpkg/tlgs/Resource/CMap/UniGB-UCS2-V + tlpkg/tlgs/Resource/CMap/UniGB-UTF16-H + tlpkg/tlgs/Resource/CMap/UniGB-UTF16-V + tlpkg/tlgs/Resource/CMap/UniGB-UTF32-H + tlpkg/tlgs/Resource/CMap/UniGB-UTF32-V + tlpkg/tlgs/Resource/CMap/UniGB-UTF8-H + tlpkg/tlgs/Resource/CMap/UniGB-UTF8-V + tlpkg/tlgs/Resource/CMap/UniHojo-UCS2-H + tlpkg/tlgs/Resource/CMap/UniHojo-UCS2-V + tlpkg/tlgs/Resource/CMap/UniHojo-UTF16-H + tlpkg/tlgs/Resource/CMap/UniHojo-UTF16-V + tlpkg/tlgs/Resource/CMap/UniHojo-UTF32-H + tlpkg/tlgs/Resource/CMap/UniHojo-UTF32-V + tlpkg/tlgs/Resource/CMap/UniHojo-UTF8-H + tlpkg/tlgs/Resource/CMap/UniHojo-UTF8-V + tlpkg/tlgs/Resource/CMap/UniJIS-UCS2-H + tlpkg/tlgs/Resource/CMap/UniJIS-UCS2-HW-H + tlpkg/tlgs/Resource/CMap/UniJIS-UCS2-HW-V + tlpkg/tlgs/Resource/CMap/UniJIS-UCS2-V + tlpkg/tlgs/Resource/CMap/UniJIS-UTF16-H + tlpkg/tlgs/Resource/CMap/UniJIS-UTF16-V + tlpkg/tlgs/Resource/CMap/UniJIS-UTF32-H + tlpkg/tlgs/Resource/CMap/UniJIS-UTF32-V + tlpkg/tlgs/Resource/CMap/UniJIS-UTF8-H + tlpkg/tlgs/Resource/CMap/UniJIS-UTF8-V + tlpkg/tlgs/Resource/CMap/UniJIS2004-UTF16-H + tlpkg/tlgs/Resource/CMap/UniJIS2004-UTF16-V + tlpkg/tlgs/Resource/CMap/UniJIS2004-UTF32-H + tlpkg/tlgs/Resource/CMap/UniJIS2004-UTF32-V + tlpkg/tlgs/Resource/CMap/UniJIS2004-UTF8-H + tlpkg/tlgs/Resource/CMap/UniJIS2004-UTF8-V + tlpkg/tlgs/Resource/CMap/UniJISPro-UCS2-HW-V + tlpkg/tlgs/Resource/CMap/UniJISPro-UCS2-V + tlpkg/tlgs/Resource/CMap/UniJISPro-UTF8-V + tlpkg/tlgs/Resource/CMap/UniJISX0213-UTF32-H + tlpkg/tlgs/Resource/CMap/UniJISX0213-UTF32-V + tlpkg/tlgs/Resource/CMap/UniJISX02132004-UTF32-H + tlpkg/tlgs/Resource/CMap/UniJISX02132004-UTF32-V + tlpkg/tlgs/Resource/CMap/UniKS-UCS2-H + tlpkg/tlgs/Resource/CMap/UniKS-UCS2-V + tlpkg/tlgs/Resource/CMap/UniKS-UTF16-H + tlpkg/tlgs/Resource/CMap/UniKS-UTF16-V + tlpkg/tlgs/Resource/CMap/UniKS-UTF32-H + tlpkg/tlgs/Resource/CMap/UniKS-UTF32-V + tlpkg/tlgs/Resource/CMap/UniKS-UTF8-H + tlpkg/tlgs/Resource/CMap/UniKS-UTF8-V + tlpkg/tlgs/Resource/CMap/V + tlpkg/tlgs/Resource/CMap/WP-Symbol + tlpkg/tlgs/Resource/ColorSpace/DefaultCMYK + tlpkg/tlgs/Resource/ColorSpace/DefaultGray + tlpkg/tlgs/Resource/ColorSpace/DefaultRGB + tlpkg/tlgs/Resource/ColorSpace/TrivialCMYK + tlpkg/tlgs/Resource/ColorSpace/sGray + tlpkg/tlgs/Resource/ColorSpace/sRGB + tlpkg/tlgs/Resource/Decoding/FCO_Dingbats + tlpkg/tlgs/Resource/Decoding/FCO_Symbol + tlpkg/tlgs/Resource/Decoding/FCO_Unicode + tlpkg/tlgs/Resource/Decoding/FCO_Wingdings + tlpkg/tlgs/Resource/Decoding/Latin1 + tlpkg/tlgs/Resource/Decoding/StandardEncoding + tlpkg/tlgs/Resource/Decoding/Unicode + tlpkg/tlgs/Resource/Encoding/CEEncoding + tlpkg/tlgs/Resource/Encoding/ExpertEncoding + tlpkg/tlgs/Resource/Encoding/ExpertSubsetEncoding + tlpkg/tlgs/Resource/Encoding/NotDefEncoding + tlpkg/tlgs/Resource/Encoding/Wingdings + tlpkg/tlgs/Resource/Font/README + tlpkg/tlgs/Resource/IdiomSet/Pscript5Idiom + tlpkg/tlgs/Resource/Init/FAPIcidfmap + tlpkg/tlgs/Resource/Init/FAPIconfig + tlpkg/tlgs/Resource/Init/FAPIfontmap + tlpkg/tlgs/Resource/Init/FCOfontmap-PCLPS2 + tlpkg/tlgs/Resource/Init/gs_agl.ps + tlpkg/tlgs/Resource/Init/gs_btokn.ps + tlpkg/tlgs/Resource/Init/gs_cet.ps + tlpkg/tlgs/Resource/Init/gs_cff.ps + tlpkg/tlgs/Resource/Init/gs_cidcm.ps + tlpkg/tlgs/Resource/Init/gs_ciddc.ps + tlpkg/tlgs/Resource/Init/gs_cidfm.ps + tlpkg/tlgs/Resource/Init/gs_cidfn.ps + tlpkg/tlgs/Resource/Init/gs_cidtt.ps + tlpkg/tlgs/Resource/Init/gs_cmap.ps + tlpkg/tlgs/Resource/Init/gs_cspace.ps + tlpkg/tlgs/Resource/Init/gs_dbt_e.ps + tlpkg/tlgs/Resource/Init/gs_diskn.ps + tlpkg/tlgs/Resource/Init/gs_dps1.ps + tlpkg/tlgs/Resource/Init/gs_dps2.ps + tlpkg/tlgs/Resource/Init/gs_dscp.ps + tlpkg/tlgs/Resource/Init/gs_epsf.ps + tlpkg/tlgs/Resource/Init/gs_fapi.ps + tlpkg/tlgs/Resource/Init/gs_fntem.ps + tlpkg/tlgs/Resource/Init/gs_fonts.ps + tlpkg/tlgs/Resource/Init/gs_frsd.ps + tlpkg/tlgs/Resource/Init/gs_icc.ps + tlpkg/tlgs/Resource/Init/gs_il1_e.ps + tlpkg/tlgs/Resource/Init/gs_img.ps + tlpkg/tlgs/Resource/Init/gs_init.ps + tlpkg/tlgs/Resource/Init/gs_lev2.ps + tlpkg/tlgs/Resource/Init/gs_ll3.ps + tlpkg/tlgs/Resource/Init/gs_mex_e.ps + tlpkg/tlgs/Resource/Init/gs_mgl_e.ps + tlpkg/tlgs/Resource/Init/gs_mro_e.ps + tlpkg/tlgs/Resource/Init/gs_pdf_e.ps + tlpkg/tlgs/Resource/Init/gs_pdfwr.ps + tlpkg/tlgs/Resource/Init/gs_res.ps + tlpkg/tlgs/Resource/Init/gs_resmp.ps + tlpkg/tlgs/Resource/Init/gs_setpd.ps + tlpkg/tlgs/Resource/Init/gs_statd.ps + tlpkg/tlgs/Resource/Init/gs_std_e.ps + tlpkg/tlgs/Resource/Init/gs_sym_e.ps + tlpkg/tlgs/Resource/Init/gs_trap.ps + tlpkg/tlgs/Resource/Init/gs_ttf.ps + tlpkg/tlgs/Resource/Init/gs_typ32.ps + tlpkg/tlgs/Resource/Init/gs_typ42.ps + tlpkg/tlgs/Resource/Init/gs_type1.ps + tlpkg/tlgs/Resource/Init/gs_wan_e.ps + tlpkg/tlgs/Resource/Init/pdf_base.ps + tlpkg/tlgs/Resource/Init/pdf_draw.ps + tlpkg/tlgs/Resource/Init/pdf_font.ps + tlpkg/tlgs/Resource/Init/pdf_main.ps + tlpkg/tlgs/Resource/Init/pdf_ops.ps + tlpkg/tlgs/Resource/Init/pdf_rbld.ps + tlpkg/tlgs/Resource/Init/pdf_sec.ps + tlpkg/tlgs/Resource/Init/xlatmap + tlpkg/tlgs/Resource/SubstCID/CNS1-WMode + tlpkg/tlgs/Resource/SubstCID/GB1-WMode + tlpkg/tlgs/Resource/SubstCID/Japan1-WMode + tlpkg/tlgs/Resource/SubstCID/Korea1-WMode + tlpkg/tlgs/bin/gsdll32.dll + tlpkg/tlgs/bin/gsdll32.lib + tlpkg/tlgs/bin/gswin32.exe + tlpkg/tlgs/bin/gswin32c.exe + tlpkg/tlgs/fonts/COPYING + tlpkg/tlgs/fonts/LICENSE-utopia.txt + tlpkg/tlgs/fonts/README-utopia.txt + tlpkg/tlgs/fonts/README.base35 + tlpkg/tlgs/fonts/bchb8a.afm + tlpkg/tlgs/fonts/bchb8a.pfb + tlpkg/tlgs/fonts/bchbi8a.afm + tlpkg/tlgs/fonts/bchbi8a.pfb + tlpkg/tlgs/fonts/bchr8a.afm + tlpkg/tlgs/fonts/bchr8a.pfb + tlpkg/tlgs/fonts/bchri8a.afm + tlpkg/tlgs/fonts/bchri8a.pfb + tlpkg/tlgs/fonts/putb8a.afm + tlpkg/tlgs/fonts/putb8a.pfb + tlpkg/tlgs/fonts/putbi8a.afm + tlpkg/tlgs/fonts/putbi8a.pfb + tlpkg/tlgs/fonts/putr8a.afm + tlpkg/tlgs/fonts/putr8a.pfb + tlpkg/tlgs/fonts/putri8a.afm + tlpkg/tlgs/fonts/putri8a.pfb + tlpkg/tlgs/fonts/readme.charter + tlpkg/tlgs/fonts/uagd8a.afm + tlpkg/tlgs/fonts/uagd8a.pfb + tlpkg/tlgs/fonts/uagdo8a.afm + tlpkg/tlgs/fonts/uagdo8a.pfb + tlpkg/tlgs/fonts/uagk8a.afm + tlpkg/tlgs/fonts/uagk8a.pfb + tlpkg/tlgs/fonts/uagko8a.afm + tlpkg/tlgs/fonts/uagko8a.pfb + tlpkg/tlgs/fonts/ubkd8a.afm + tlpkg/tlgs/fonts/ubkd8a.pfb + tlpkg/tlgs/fonts/ubkdi8a.afm + tlpkg/tlgs/fonts/ubkdi8a.pfb + tlpkg/tlgs/fonts/ubkl8a.afm + tlpkg/tlgs/fonts/ubkl8a.pfb + tlpkg/tlgs/fonts/ubkli8a.afm + tlpkg/tlgs/fonts/ubkli8a.pfb + tlpkg/tlgs/fonts/ucrb8a.afm + tlpkg/tlgs/fonts/ucrb8a.pfb + tlpkg/tlgs/fonts/ucrbo8a.afm + tlpkg/tlgs/fonts/ucrbo8a.pfb + tlpkg/tlgs/fonts/ucrr8a.afm + tlpkg/tlgs/fonts/ucrr8a.pfb + tlpkg/tlgs/fonts/ucrro8a.afm + tlpkg/tlgs/fonts/ucrro8a.pfb + tlpkg/tlgs/fonts/uhvb8a.afm + tlpkg/tlgs/fonts/uhvb8a.pfb + tlpkg/tlgs/fonts/uhvb8ac.afm + tlpkg/tlgs/fonts/uhvb8ac.pfb + tlpkg/tlgs/fonts/uhvbo8a.afm + tlpkg/tlgs/fonts/uhvbo8a.pfb + tlpkg/tlgs/fonts/uhvbo8ac.afm + tlpkg/tlgs/fonts/uhvbo8ac.pfb + tlpkg/tlgs/fonts/uhvr8a-105.pfb + tlpkg/tlgs/fonts/uhvr8a.afm + tlpkg/tlgs/fonts/uhvr8a.pfb + tlpkg/tlgs/fonts/uhvr8ac.afm + tlpkg/tlgs/fonts/uhvr8ac.pfb + tlpkg/tlgs/fonts/uhvro8a-105.pfb + tlpkg/tlgs/fonts/uhvro8a.afm + tlpkg/tlgs/fonts/uhvro8a.pfb + tlpkg/tlgs/fonts/uhvro8ac.afm + tlpkg/tlgs/fonts/uhvro8ac.pfb + tlpkg/tlgs/fonts/uncb8a.afm + tlpkg/tlgs/fonts/uncb8a.pfb + tlpkg/tlgs/fonts/uncbi8a.afm + tlpkg/tlgs/fonts/uncbi8a.pfb + tlpkg/tlgs/fonts/uncr8a.afm + tlpkg/tlgs/fonts/uncr8a.pfb + tlpkg/tlgs/fonts/uncri8a.afm + tlpkg/tlgs/fonts/uncri8a.pfb + tlpkg/tlgs/fonts/uplb8a.afm + tlpkg/tlgs/fonts/uplb8a.pfb + tlpkg/tlgs/fonts/uplbi8a.afm + tlpkg/tlgs/fonts/uplbi8a.pfb + tlpkg/tlgs/fonts/uplr8a.afm + tlpkg/tlgs/fonts/uplr8a.pfb + tlpkg/tlgs/fonts/uplri8a.afm + tlpkg/tlgs/fonts/uplri8a.pfb + tlpkg/tlgs/fonts/usyr.afm + tlpkg/tlgs/fonts/usyr.pfb + tlpkg/tlgs/fonts/utmb8a.afm + tlpkg/tlgs/fonts/utmb8a.pfb + tlpkg/tlgs/fonts/utmbi8a.afm + tlpkg/tlgs/fonts/utmbi8a.pfb + tlpkg/tlgs/fonts/utmr8a.afm + tlpkg/tlgs/fonts/utmr8a.pfb + tlpkg/tlgs/fonts/utmri8a.afm + tlpkg/tlgs/fonts/utmri8a.pfb + tlpkg/tlgs/fonts/uzcmi8a.afm + tlpkg/tlgs/fonts/uzcmi8a.pfb + tlpkg/tlgs/fonts/uzdr.afm + tlpkg/tlgs/fonts/uzdr.pfb + tlpkg/tlgs/iccprofiles/a98.icc + tlpkg/tlgs/iccprofiles/default_cmyk.icc + tlpkg/tlgs/iccprofiles/default_gray.icc + tlpkg/tlgs/iccprofiles/default_rgb.icc + tlpkg/tlgs/iccprofiles/esrgb.icc + tlpkg/tlgs/iccprofiles/gray_to_k.icc + tlpkg/tlgs/iccprofiles/lab.icc + tlpkg/tlgs/iccprofiles/ps_cmyk.icc + tlpkg/tlgs/iccprofiles/ps_gray.icc + tlpkg/tlgs/iccprofiles/ps_rgb.icc + tlpkg/tlgs/iccprofiles/rommrgb.icc + tlpkg/tlgs/iccprofiles/scrgb.icc + tlpkg/tlgs/iccprofiles/sgray.icc + tlpkg/tlgs/iccprofiles/srgb.icc + tlpkg/tlgs/kanji/allkanji.ps + tlpkg/tlgs/kanji/article9.ps + tlpkg/tlgs/kanji/fmaptype.ps + tlpkg/tlgs/kanji/hankaku.ps + tlpkg/tlgs/kanji/kbase.ps + tlpkg/tlgs/kanji/kbitmap.ps + tlpkg/tlgs/kanji/kcomp.ps + tlpkg/tlgs/kanji/kconfig.ps + tlpkg/tlgs/kanji/kfwin32.ps + tlpkg/tlgs/kanji/kfwin32bm.ps + tlpkg/tlgs/kanji/kinit.ps + tlpkg/tlgs/kanji/kmapping.ps + tlpkg/tlgs/kanji/koutline.ps + tlpkg/tlgs/kanji/metrics2.ps + tlpkg/tlgs/kanji/useopentype.ps + tlpkg/tlgs/kanji/vchars.ps + tlpkg/tlgs/kanji/vchars1.ps + tlpkg/tlgs/lib/Fontmap + tlpkg/tlgs/lib/Fontmap.TeXLive + tlpkg/tlgs/lib/PDFA_def.ps + tlpkg/tlgs/lib/PDFX_def.ps + tlpkg/tlgs/lib/acctest.ps + tlpkg/tlgs/lib/afmdiff.awk + tlpkg/tlgs/lib/align.ps + tlpkg/tlgs/lib/caption.ps + tlpkg/tlgs/lib/cid2code.ps + tlpkg/tlgs/lib/cidfmap + tlpkg/tlgs/lib/cidfmap.TeXLive + tlpkg/tlgs/lib/docie.ps + tlpkg/tlgs/lib/gs_ce_e.ps + tlpkg/tlgs/lib/gs_il2_e.ps + tlpkg/tlgs/lib/gs_kanji.ps + tlpkg/tlgs/lib/gs_ksb_e.ps + tlpkg/tlgs/lib/gs_lgo_e.ps + tlpkg/tlgs/lib/gs_lgx_e.ps + tlpkg/tlgs/lib/gs_wl1_e.ps + tlpkg/tlgs/lib/gs_wl2_e.ps + tlpkg/tlgs/lib/gs_wl5_e.ps + tlpkg/tlgs/lib/gslp.ps + tlpkg/tlgs/lib/gsnup.ps + tlpkg/tlgs/lib/ht_ccsto.ps + tlpkg/tlgs/lib/image-qa.ps + tlpkg/tlgs/lib/jispaper.ps + tlpkg/tlgs/lib/landscap.ps + tlpkg/tlgs/lib/lines.ps + tlpkg/tlgs/lib/mkcidfm.ps + tlpkg/tlgs/lib/pdf2dsc.ps + tlpkg/tlgs/lib/pf2afm.ps + tlpkg/tlgs/lib/pfbtopfa.ps + tlpkg/tlgs/lib/ppath.ps + tlpkg/tlgs/lib/pphs.ps + tlpkg/tlgs/lib/prfont.ps + tlpkg/tlgs/lib/printafm.ps + tlpkg/tlgs/lib/ps2ai.ps + tlpkg/tlgs/lib/ps2epsi.ps + tlpkg/tlgs/lib/rollconv.ps + tlpkg/tlgs/lib/stocht.ps + tlpkg/tlgs/lib/traceimg.ps + tlpkg/tlgs/lib/traceop.ps + tlpkg/tlgs/lib/uninfo.ps + tlpkg/tlgs/lib/viewcmyk.ps + tlpkg/tlgs/lib/viewgif.ps + tlpkg/tlgs/lib/viewjpeg.ps + tlpkg/tlgs/lib/viewmiff.ps + tlpkg/tlgs/lib/viewpbm.ps + tlpkg/tlgs/lib/viewpcx.ps + tlpkg/tlgs/lib/viewps2a.ps + tlpkg/tlgs/lib/viewpwg.ps + tlpkg/tlgs/lib/viewraw.ps + tlpkg/tlgs/lib/viewrgb.ps + tlpkg/tlgs/lib/winmaps.ps + tlpkg/tlgs/lib/zeroline.ps +catalogue-contact-home http://www.ghostscript.com/ +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license collection +catalogue-topics graphics-prep + +name tlperl.win32 +category TLCore +revision 50322 +shortdesc internal Perl for Windows +longdesc TeX Live includes Perl for Windows, but it is intended only for +longdesc internal use by TeX Live programs, and should not be used as a +longdesc general system program. Install your own Perl for that. See +longdesc http://perl.org. +containersize 7126216 +containerchecksum 198387f86c08e85500d6cd67e3f36d236541f6569ed7bd77024ec25c66eb29fb2690cea40212dda1d78ee0497860a703b67c310163a9813c1a639294f5ee09e5 +runfiles size=11279 + tlpkg/tlperl/README.TEXLIVE + tlpkg/tlperl/bin/libgcc_s_dw2-1.dll + tlpkg/tlperl/bin/libstdc++-6.dll + tlpkg/tlperl/bin/libwinpthread-1.dll + tlpkg/tlperl/bin/perl.exe + tlpkg/tlperl/bin/perl5.28.1.exe + tlpkg/tlperl/bin/perl528.dll + tlpkg/tlperl/bin/perlglob.exe + tlpkg/tlperl/bin/wperl.exe + tlpkg/tlperl/lib/.packlist + tlpkg/tlperl/lib/AnyDBM_File.pm + tlpkg/tlperl/lib/App/Cpan.pm + tlpkg/tlperl/lib/App/Prove.pm + tlpkg/tlperl/lib/App/Prove/State.pm + tlpkg/tlperl/lib/App/Prove/State/Result.pm + tlpkg/tlperl/lib/App/Prove/State/Result/Test.pm + tlpkg/tlperl/lib/Archive/Tar.pm + tlpkg/tlperl/lib/Archive/Tar/Constant.pm + tlpkg/tlperl/lib/Archive/Tar/File.pm + tlpkg/tlperl/lib/Attribute/Handlers.pm + tlpkg/tlperl/lib/AutoLoader.pm + tlpkg/tlperl/lib/AutoSplit.pm + tlpkg/tlperl/lib/B.pm + tlpkg/tlperl/lib/B/Concise.pm + tlpkg/tlperl/lib/B/Debug.pm + tlpkg/tlperl/lib/B/Deparse.pm + tlpkg/tlperl/lib/B/Op_private.pm + tlpkg/tlperl/lib/B/Showlex.pm + tlpkg/tlperl/lib/B/Terse.pm + tlpkg/tlperl/lib/B/Xref.pm + tlpkg/tlperl/lib/Benchmark.pm + tlpkg/tlperl/lib/CORE.pod + tlpkg/tlperl/lib/CORE/EXTERN.h + tlpkg/tlperl/lib/CORE/INTERN.h + tlpkg/tlperl/lib/CORE/XSUB.h + tlpkg/tlperl/lib/CORE/arpa/inet.h + tlpkg/tlperl/lib/CORE/av.h + tlpkg/tlperl/lib/CORE/bitcount.h + tlpkg/tlperl/lib/CORE/charclass_invlists.h + tlpkg/tlperl/lib/CORE/config.h + tlpkg/tlperl/lib/CORE/cop.h + tlpkg/tlperl/lib/CORE/cv.h + tlpkg/tlperl/lib/CORE/dirent.h + tlpkg/tlperl/lib/CORE/dosish.h + tlpkg/tlperl/lib/CORE/dquote_inline.h + tlpkg/tlperl/lib/CORE/ebcdic_tables.h + tlpkg/tlperl/lib/CORE/embed.h + tlpkg/tlperl/lib/CORE/embedvar.h + tlpkg/tlperl/lib/CORE/fakesdio.h + tlpkg/tlperl/lib/CORE/feature.h + tlpkg/tlperl/lib/CORE/form.h + tlpkg/tlperl/lib/CORE/git_version.h + tlpkg/tlperl/lib/CORE/gv.h + tlpkg/tlperl/lib/CORE/handy.h + tlpkg/tlperl/lib/CORE/hv.h + tlpkg/tlperl/lib/CORE/hv_func.h + tlpkg/tlperl/lib/CORE/hv_macro.h + tlpkg/tlperl/lib/CORE/inline.h + tlpkg/tlperl/lib/CORE/intrpvar.h + tlpkg/tlperl/lib/CORE/invlist_inline.h + tlpkg/tlperl/lib/CORE/iperlsys.h + tlpkg/tlperl/lib/CORE/keywords.h + tlpkg/tlperl/lib/CORE/l1_char_class_tab.h + tlpkg/tlperl/lib/CORE/libperl528.a + tlpkg/tlperl/lib/CORE/malloc_ctl.h + tlpkg/tlperl/lib/CORE/metaconfig.h + tlpkg/tlperl/lib/CORE/mg.h + tlpkg/tlperl/lib/CORE/mg_data.h + tlpkg/tlperl/lib/CORE/mg_raw.h + tlpkg/tlperl/lib/CORE/mg_vtable.h + tlpkg/tlperl/lib/CORE/mydtrace.h + tlpkg/tlperl/lib/CORE/netdb.h + tlpkg/tlperl/lib/CORE/nostdio.h + tlpkg/tlperl/lib/CORE/op.h + tlpkg/tlperl/lib/CORE/op_reg_common.h + tlpkg/tlperl/lib/CORE/opcode.h + tlpkg/tlperl/lib/CORE/opnames.h + tlpkg/tlperl/lib/CORE/overload.h + tlpkg/tlperl/lib/CORE/pad.h + tlpkg/tlperl/lib/CORE/parser.h + tlpkg/tlperl/lib/CORE/patchlevel.h + tlpkg/tlperl/lib/CORE/perl.h + tlpkg/tlperl/lib/CORE/perl_inc_macro.h + tlpkg/tlperl/lib/CORE/perl_langinfo.h + tlpkg/tlperl/lib/CORE/perlapi.h + tlpkg/tlperl/lib/CORE/perlhost.h + tlpkg/tlperl/lib/CORE/perlio.h + tlpkg/tlperl/lib/CORE/perliol.h + tlpkg/tlperl/lib/CORE/perlsdio.h + tlpkg/tlperl/lib/CORE/perlvars.h + tlpkg/tlperl/lib/CORE/perly.h + tlpkg/tlperl/lib/CORE/pp.h + tlpkg/tlperl/lib/CORE/pp_proto.h + tlpkg/tlperl/lib/CORE/proto.h + tlpkg/tlperl/lib/CORE/reentr.h + tlpkg/tlperl/lib/CORE/regcharclass.h + tlpkg/tlperl/lib/CORE/regcomp.h + tlpkg/tlperl/lib/CORE/regexp.h + tlpkg/tlperl/lib/CORE/regnodes.h + tlpkg/tlperl/lib/CORE/sbox32_hash.h + tlpkg/tlperl/lib/CORE/scope.h + tlpkg/tlperl/lib/CORE/stadtx_hash.h + tlpkg/tlperl/lib/CORE/sv.h + tlpkg/tlperl/lib/CORE/sys/errno2.h + tlpkg/tlperl/lib/CORE/sys/socket.h + tlpkg/tlperl/lib/CORE/thread.h + tlpkg/tlperl/lib/CORE/time64.h + tlpkg/tlperl/lib/CORE/time64_config.h + tlpkg/tlperl/lib/CORE/uconfig.h + tlpkg/tlperl/lib/CORE/uni_keywords.h + tlpkg/tlperl/lib/CORE/unicode_constants.h + tlpkg/tlperl/lib/CORE/unixish.h + tlpkg/tlperl/lib/CORE/utf8.h + tlpkg/tlperl/lib/CORE/utfebcdic.h + tlpkg/tlperl/lib/CORE/util.h + tlpkg/tlperl/lib/CORE/uudmap.h + tlpkg/tlperl/lib/CORE/vdir.h + tlpkg/tlperl/lib/CORE/vmem.h + tlpkg/tlperl/lib/CORE/vutil.h + tlpkg/tlperl/lib/CORE/warnings.h + tlpkg/tlperl/lib/CORE/win32.h + tlpkg/tlperl/lib/CORE/win32iop-o.h + tlpkg/tlperl/lib/CORE/win32iop.h + tlpkg/tlperl/lib/CORE/win32thread.h + tlpkg/tlperl/lib/CORE/wince.h + tlpkg/tlperl/lib/CORE/zaphod32_hash.h + tlpkg/tlperl/lib/CPAN.pm + tlpkg/tlperl/lib/CPAN/API/HOWTO.pod + tlpkg/tlperl/lib/CPAN/Author.pm + tlpkg/tlperl/lib/CPAN/Bundle.pm + tlpkg/tlperl/lib/CPAN/CacheMgr.pm + tlpkg/tlperl/lib/CPAN/Complete.pm + tlpkg/tlperl/lib/CPAN/Debug.pm + tlpkg/tlperl/lib/CPAN/DeferredCode.pm + tlpkg/tlperl/lib/CPAN/Distribution.pm + tlpkg/tlperl/lib/CPAN/Distroprefs.pm + tlpkg/tlperl/lib/CPAN/Distrostatus.pm + tlpkg/tlperl/lib/CPAN/Exception/RecursiveDependency.pm + tlpkg/tlperl/lib/CPAN/Exception/blocked_urllist.pm + tlpkg/tlperl/lib/CPAN/Exception/yaml_not_installed.pm + tlpkg/tlperl/lib/CPAN/Exception/yaml_process_error.pm + tlpkg/tlperl/lib/CPAN/FTP.pm + tlpkg/tlperl/lib/CPAN/FTP/netrc.pm + tlpkg/tlperl/lib/CPAN/FirstTime.pm + tlpkg/tlperl/lib/CPAN/HTTP/Client.pm + tlpkg/tlperl/lib/CPAN/HTTP/Credentials.pm + tlpkg/tlperl/lib/CPAN/HandleConfig.pm + tlpkg/tlperl/lib/CPAN/Index.pm + tlpkg/tlperl/lib/CPAN/InfoObj.pm + tlpkg/tlperl/lib/CPAN/Kwalify.pm + tlpkg/tlperl/lib/CPAN/Kwalify/distroprefs.dd + tlpkg/tlperl/lib/CPAN/Kwalify/distroprefs.yml + tlpkg/tlperl/lib/CPAN/LWP/UserAgent.pm + tlpkg/tlperl/lib/CPAN/Meta.pm + tlpkg/tlperl/lib/CPAN/Meta/Converter.pm + tlpkg/tlperl/lib/CPAN/Meta/Feature.pm + tlpkg/tlperl/lib/CPAN/Meta/History.pm + tlpkg/tlperl/lib/CPAN/Meta/History/Meta_1_0.pod + tlpkg/tlperl/lib/CPAN/Meta/History/Meta_1_1.pod + tlpkg/tlperl/lib/CPAN/Meta/History/Meta_1_2.pod + tlpkg/tlperl/lib/CPAN/Meta/History/Meta_1_3.pod + tlpkg/tlperl/lib/CPAN/Meta/History/Meta_1_4.pod + tlpkg/tlperl/lib/CPAN/Meta/Merge.pm + tlpkg/tlperl/lib/CPAN/Meta/Prereqs.pm + tlpkg/tlperl/lib/CPAN/Meta/Requirements.pm + tlpkg/tlperl/lib/CPAN/Meta/Spec.pm + tlpkg/tlperl/lib/CPAN/Meta/Validator.pm + tlpkg/tlperl/lib/CPAN/Meta/YAML.pm + tlpkg/tlperl/lib/CPAN/Mirrors.pm + tlpkg/tlperl/lib/CPAN/Module.pm + tlpkg/tlperl/lib/CPAN/Nox.pm + tlpkg/tlperl/lib/CPAN/Plugin.pm + tlpkg/tlperl/lib/CPAN/Plugin/Specfile.pm + tlpkg/tlperl/lib/CPAN/Prompt.pm + tlpkg/tlperl/lib/CPAN/Queue.pm + tlpkg/tlperl/lib/CPAN/Shell.pm + tlpkg/tlperl/lib/CPAN/Tarzip.pm + tlpkg/tlperl/lib/CPAN/URL.pm + tlpkg/tlperl/lib/CPAN/Version.pm + tlpkg/tlperl/lib/Carp.pm + tlpkg/tlperl/lib/Carp/Heavy.pm + tlpkg/tlperl/lib/Class/Struct.pm + tlpkg/tlperl/lib/Compress/Raw/Bzip2.pm + tlpkg/tlperl/lib/Compress/Raw/Zlib.pm + tlpkg/tlperl/lib/Compress/Zlib.pm + tlpkg/tlperl/lib/Config.pm + tlpkg/tlperl/lib/Config.pm.orig + tlpkg/tlperl/lib/Config.pod + tlpkg/tlperl/lib/Config/Extensions.pm + tlpkg/tlperl/lib/Config/Perl/V.pm + tlpkg/tlperl/lib/Config_git.pl + tlpkg/tlperl/lib/Config_heavy.pl + tlpkg/tlperl/lib/Config_heavy.pl.orig + tlpkg/tlperl/lib/Cwd.pm + tlpkg/tlperl/lib/DB.pm + tlpkg/tlperl/lib/DBM_Filter.pm + tlpkg/tlperl/lib/DBM_Filter/compress.pm + tlpkg/tlperl/lib/DBM_Filter/encode.pm + tlpkg/tlperl/lib/DBM_Filter/int32.pm + tlpkg/tlperl/lib/DBM_Filter/null.pm + tlpkg/tlperl/lib/DBM_Filter/utf8.pm + tlpkg/tlperl/lib/Data/Dumper.pm + tlpkg/tlperl/lib/Devel/PPPort.pm + tlpkg/tlperl/lib/Devel/Peek.pm + tlpkg/tlperl/lib/Devel/SelfStubber.pm + tlpkg/tlperl/lib/Digest.pm + tlpkg/tlperl/lib/Digest/MD5.pm + tlpkg/tlperl/lib/Digest/SHA.pm + tlpkg/tlperl/lib/Digest/base.pm + tlpkg/tlperl/lib/Digest/file.pm + tlpkg/tlperl/lib/DirHandle.pm + tlpkg/tlperl/lib/Dumpvalue.pm + tlpkg/tlperl/lib/DynaLoader.pm + tlpkg/tlperl/lib/Encode.pm + tlpkg/tlperl/lib/Encode/Alias.pm + tlpkg/tlperl/lib/Encode/Byte.pm + tlpkg/tlperl/lib/Encode/CJKConstants.pm + tlpkg/tlperl/lib/Encode/CN.pm + tlpkg/tlperl/lib/Encode/CN/HZ.pm + tlpkg/tlperl/lib/Encode/Changes.e2x + tlpkg/tlperl/lib/Encode/Config.pm + tlpkg/tlperl/lib/Encode/ConfigLocal_PM.e2x + tlpkg/tlperl/lib/Encode/EBCDIC.pm + tlpkg/tlperl/lib/Encode/Encoder.pm + tlpkg/tlperl/lib/Encode/Encoding.pm + tlpkg/tlperl/lib/Encode/GSM0338.pm + tlpkg/tlperl/lib/Encode/Guess.pm + tlpkg/tlperl/lib/Encode/JP.pm + tlpkg/tlperl/lib/Encode/JP/H2Z.pm + tlpkg/tlperl/lib/Encode/JP/JIS7.pm + tlpkg/tlperl/lib/Encode/KR.pm + tlpkg/tlperl/lib/Encode/KR/2022_KR.pm + tlpkg/tlperl/lib/Encode/MIME/Header.pm + tlpkg/tlperl/lib/Encode/MIME/Header/ISO_2022_JP.pm + tlpkg/tlperl/lib/Encode/MIME/Name.pm + tlpkg/tlperl/lib/Encode/Makefile_PL.e2x + tlpkg/tlperl/lib/Encode/PerlIO.pod + tlpkg/tlperl/lib/Encode/README.e2x + tlpkg/tlperl/lib/Encode/Supported.pod + tlpkg/tlperl/lib/Encode/Symbol.pm + tlpkg/tlperl/lib/Encode/TW.pm + tlpkg/tlperl/lib/Encode/Unicode.pm + tlpkg/tlperl/lib/Encode/Unicode/UTF7.pm + tlpkg/tlperl/lib/Encode/_PM.e2x + tlpkg/tlperl/lib/Encode/_T.e2x + tlpkg/tlperl/lib/Encode/encode.h + tlpkg/tlperl/lib/English.pm + tlpkg/tlperl/lib/Env.pm + tlpkg/tlperl/lib/Errno.pm + tlpkg/tlperl/lib/Exporter.pm + tlpkg/tlperl/lib/Exporter/Heavy.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Base.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Unix.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/VMS.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/aix.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/android.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/cygwin.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/darwin.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/dec_osf.pm + tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/os2.pm + tlpkg/tlperl/lib/ExtUtils/Command.pm + tlpkg/tlperl/lib/ExtUtils/Command/MM.pm + tlpkg/tlperl/lib/ExtUtils/Constant.pm + tlpkg/tlperl/lib/ExtUtils/Constant/Base.pm + tlpkg/tlperl/lib/ExtUtils/Constant/ProxySubs.pm + tlpkg/tlperl/lib/ExtUtils/Constant/Utils.pm + tlpkg/tlperl/lib/ExtUtils/Constant/XS.pm + tlpkg/tlperl/lib/ExtUtils/Embed.pm + tlpkg/tlperl/lib/ExtUtils/Install.pm + tlpkg/tlperl/lib/ExtUtils/Installed.pm + tlpkg/tlperl/lib/ExtUtils/Liblist.pm + tlpkg/tlperl/lib/ExtUtils/Liblist/Kid.pm + tlpkg/tlperl/lib/ExtUtils/MANIFEST.SKIP + tlpkg/tlperl/lib/ExtUtils/MM.pm + tlpkg/tlperl/lib/ExtUtils/MM_AIX.pm + tlpkg/tlperl/lib/ExtUtils/MM_Any.pm + tlpkg/tlperl/lib/ExtUtils/MM_BeOS.pm + tlpkg/tlperl/lib/ExtUtils/MM_Cygwin.pm + tlpkg/tlperl/lib/ExtUtils/MM_DOS.pm + tlpkg/tlperl/lib/ExtUtils/MM_Darwin.pm + tlpkg/tlperl/lib/ExtUtils/MM_MacOS.pm + tlpkg/tlperl/lib/ExtUtils/MM_NW5.pm + tlpkg/tlperl/lib/ExtUtils/MM_OS2.pm + tlpkg/tlperl/lib/ExtUtils/MM_QNX.pm + tlpkg/tlperl/lib/ExtUtils/MM_UWIN.pm + tlpkg/tlperl/lib/ExtUtils/MM_Unix.pm + tlpkg/tlperl/lib/ExtUtils/MM_VMS.pm + tlpkg/tlperl/lib/ExtUtils/MM_VOS.pm + tlpkg/tlperl/lib/ExtUtils/MM_Win32.pm + tlpkg/tlperl/lib/ExtUtils/MM_Win95.pm + tlpkg/tlperl/lib/ExtUtils/MY.pm + tlpkg/tlperl/lib/ExtUtils/MakeMaker.pm + tlpkg/tlperl/lib/ExtUtils/MakeMaker/Config.pm + tlpkg/tlperl/lib/ExtUtils/MakeMaker/FAQ.pod + tlpkg/tlperl/lib/ExtUtils/MakeMaker/Locale.pm + tlpkg/tlperl/lib/ExtUtils/MakeMaker/Tutorial.pod + tlpkg/tlperl/lib/ExtUtils/MakeMaker/version.pm + tlpkg/tlperl/lib/ExtUtils/Manifest.pm + tlpkg/tlperl/lib/ExtUtils/Miniperl.pm + tlpkg/tlperl/lib/ExtUtils/Mkbootstrap.pm + tlpkg/tlperl/lib/ExtUtils/Mksymlists.pm + tlpkg/tlperl/lib/ExtUtils/Packlist.pm + tlpkg/tlperl/lib/ExtUtils/ParseXS.pm + tlpkg/tlperl/lib/ExtUtils/ParseXS.pod + tlpkg/tlperl/lib/ExtUtils/ParseXS/Constants.pm + tlpkg/tlperl/lib/ExtUtils/ParseXS/CountLines.pm + tlpkg/tlperl/lib/ExtUtils/ParseXS/Eval.pm + tlpkg/tlperl/lib/ExtUtils/ParseXS/Utilities.pm + tlpkg/tlperl/lib/ExtUtils/Typemaps.pm + tlpkg/tlperl/lib/ExtUtils/Typemaps/Cmd.pm + tlpkg/tlperl/lib/ExtUtils/Typemaps/InputMap.pm + tlpkg/tlperl/lib/ExtUtils/Typemaps/OutputMap.pm + tlpkg/tlperl/lib/ExtUtils/Typemaps/Type.pm + tlpkg/tlperl/lib/ExtUtils/testlib.pm + tlpkg/tlperl/lib/ExtUtils/typemap + tlpkg/tlperl/lib/ExtUtils/xsubpp + tlpkg/tlperl/lib/Fatal.pm + tlpkg/tlperl/lib/Fcntl.pm + tlpkg/tlperl/lib/File/Basename.pm + tlpkg/tlperl/lib/File/Compare.pm + tlpkg/tlperl/lib/File/Copy.pm + tlpkg/tlperl/lib/File/DosGlob.pm + tlpkg/tlperl/lib/File/Fetch.pm + tlpkg/tlperl/lib/File/Find.pm + tlpkg/tlperl/lib/File/Glob.pm + tlpkg/tlperl/lib/File/GlobMapper.pm + tlpkg/tlperl/lib/File/Path.pm + tlpkg/tlperl/lib/File/Spec.pm + tlpkg/tlperl/lib/File/Spec/AmigaOS.pm + tlpkg/tlperl/lib/File/Spec/Cygwin.pm + tlpkg/tlperl/lib/File/Spec/Epoc.pm + tlpkg/tlperl/lib/File/Spec/Functions.pm + tlpkg/tlperl/lib/File/Spec/Mac.pm + tlpkg/tlperl/lib/File/Spec/OS2.pm + tlpkg/tlperl/lib/File/Spec/Unix.pm + tlpkg/tlperl/lib/File/Spec/VMS.pm + tlpkg/tlperl/lib/File/Spec/Win32.pm + tlpkg/tlperl/lib/File/Temp.pm + tlpkg/tlperl/lib/File/stat.pm + tlpkg/tlperl/lib/FileCache.pm + tlpkg/tlperl/lib/FileHandle.pm + tlpkg/tlperl/lib/Filter/Simple.pm + tlpkg/tlperl/lib/Filter/Util/Call.pm + tlpkg/tlperl/lib/FindBin.pm + tlpkg/tlperl/lib/Getopt/Long.pm + tlpkg/tlperl/lib/Getopt/Std.pm + tlpkg/tlperl/lib/HTTP/Tiny.pm + tlpkg/tlperl/lib/Hash/Util.pm + tlpkg/tlperl/lib/Hash/Util/FieldHash.pm + tlpkg/tlperl/lib/I18N/Collate.pm + tlpkg/tlperl/lib/I18N/LangTags.pm + tlpkg/tlperl/lib/I18N/LangTags/Detect.pm + tlpkg/tlperl/lib/I18N/LangTags/List.pm + tlpkg/tlperl/lib/I18N/Langinfo.pm + tlpkg/tlperl/lib/IO.pm + tlpkg/tlperl/lib/IO/Compress/Adapter/Bzip2.pm + tlpkg/tlperl/lib/IO/Compress/Adapter/Deflate.pm + tlpkg/tlperl/lib/IO/Compress/Adapter/Identity.pm + tlpkg/tlperl/lib/IO/Compress/Base.pm + tlpkg/tlperl/lib/IO/Compress/Base/Common.pm + tlpkg/tlperl/lib/IO/Compress/Bzip2.pm + tlpkg/tlperl/lib/IO/Compress/Deflate.pm + tlpkg/tlperl/lib/IO/Compress/FAQ.pod + tlpkg/tlperl/lib/IO/Compress/Gzip.pm + tlpkg/tlperl/lib/IO/Compress/Gzip/Constants.pm + tlpkg/tlperl/lib/IO/Compress/RawDeflate.pm + tlpkg/tlperl/lib/IO/Compress/Zip.pm + tlpkg/tlperl/lib/IO/Compress/Zip/Constants.pm + tlpkg/tlperl/lib/IO/Compress/Zlib/Constants.pm + tlpkg/tlperl/lib/IO/Compress/Zlib/Extra.pm + tlpkg/tlperl/lib/IO/Dir.pm + tlpkg/tlperl/lib/IO/File.pm + tlpkg/tlperl/lib/IO/Handle.pm + tlpkg/tlperl/lib/IO/Pipe.pm + tlpkg/tlperl/lib/IO/Poll.pm + tlpkg/tlperl/lib/IO/Seekable.pm + tlpkg/tlperl/lib/IO/Select.pm + tlpkg/tlperl/lib/IO/Socket.pm + tlpkg/tlperl/lib/IO/Socket/INET.pm + tlpkg/tlperl/lib/IO/Socket/IP.pm + tlpkg/tlperl/lib/IO/Socket/UNIX.pm + tlpkg/tlperl/lib/IO/Uncompress/Adapter/Bunzip2.pm + tlpkg/tlperl/lib/IO/Uncompress/Adapter/Identity.pm + tlpkg/tlperl/lib/IO/Uncompress/Adapter/Inflate.pm + tlpkg/tlperl/lib/IO/Uncompress/AnyInflate.pm + tlpkg/tlperl/lib/IO/Uncompress/AnyUncompress.pm + tlpkg/tlperl/lib/IO/Uncompress/Base.pm + tlpkg/tlperl/lib/IO/Uncompress/Bunzip2.pm + tlpkg/tlperl/lib/IO/Uncompress/Gunzip.pm + tlpkg/tlperl/lib/IO/Uncompress/Inflate.pm + tlpkg/tlperl/lib/IO/Uncompress/RawInflate.pm + tlpkg/tlperl/lib/IO/Uncompress/Unzip.pm + tlpkg/tlperl/lib/IO/Zlib.pm + tlpkg/tlperl/lib/IPC/Cmd.pm + tlpkg/tlperl/lib/IPC/Open2.pm + tlpkg/tlperl/lib/IPC/Open3.pm + tlpkg/tlperl/lib/Internals.pod + tlpkg/tlperl/lib/JSON/PP.pm + tlpkg/tlperl/lib/JSON/PP/Boolean.pm + tlpkg/tlperl/lib/List/Util.pm + tlpkg/tlperl/lib/List/Util/XS.pm + tlpkg/tlperl/lib/Locale/Codes.pm + tlpkg/tlperl/lib/Locale/Codes.pod + tlpkg/tlperl/lib/Locale/Codes/Changes.pod + tlpkg/tlperl/lib/Locale/Codes/Constants.pm + tlpkg/tlperl/lib/Locale/Codes/Country.pm + tlpkg/tlperl/lib/Locale/Codes/Country.pod + tlpkg/tlperl/lib/Locale/Codes/Country_Codes.pm + tlpkg/tlperl/lib/Locale/Codes/Country_Retired.pm + tlpkg/tlperl/lib/Locale/Codes/Currency.pm + tlpkg/tlperl/lib/Locale/Codes/Currency.pod + tlpkg/tlperl/lib/Locale/Codes/Currency_Codes.pm + tlpkg/tlperl/lib/Locale/Codes/Currency_Retired.pm + tlpkg/tlperl/lib/Locale/Codes/LangExt.pm + tlpkg/tlperl/lib/Locale/Codes/LangExt.pod + tlpkg/tlperl/lib/Locale/Codes/LangExt_Codes.pm + tlpkg/tlperl/lib/Locale/Codes/LangExt_Retired.pm + tlpkg/tlperl/lib/Locale/Codes/LangFam.pm + tlpkg/tlperl/lib/Locale/Codes/LangFam.pod + tlpkg/tlperl/lib/Locale/Codes/LangFam_Codes.pm + tlpkg/tlperl/lib/Locale/Codes/LangFam_Retired.pm + tlpkg/tlperl/lib/Locale/Codes/LangVar.pm + tlpkg/tlperl/lib/Locale/Codes/LangVar.pod + tlpkg/tlperl/lib/Locale/Codes/LangVar_Codes.pm + tlpkg/tlperl/lib/Locale/Codes/LangVar_Retired.pm + tlpkg/tlperl/lib/Locale/Codes/Language.pm + tlpkg/tlperl/lib/Locale/Codes/Language.pod + tlpkg/tlperl/lib/Locale/Codes/Language_Codes.pm + tlpkg/tlperl/lib/Locale/Codes/Language_Retired.pm + tlpkg/tlperl/lib/Locale/Codes/Script.pm + tlpkg/tlperl/lib/Locale/Codes/Script.pod + tlpkg/tlperl/lib/Locale/Codes/Script_Codes.pm + tlpkg/tlperl/lib/Locale/Codes/Script_Retired.pm + tlpkg/tlperl/lib/Locale/Codes/Types.pod + tlpkg/tlperl/lib/Locale/Country.pm + tlpkg/tlperl/lib/Locale/Country.pod + tlpkg/tlperl/lib/Locale/Currency.pm + tlpkg/tlperl/lib/Locale/Currency.pod + tlpkg/tlperl/lib/Locale/Language.pm + tlpkg/tlperl/lib/Locale/Language.pod + tlpkg/tlperl/lib/Locale/Maketext.pm + tlpkg/tlperl/lib/Locale/Maketext.pod + tlpkg/tlperl/lib/Locale/Maketext/Cookbook.pod + tlpkg/tlperl/lib/Locale/Maketext/Guts.pm + tlpkg/tlperl/lib/Locale/Maketext/GutsLoader.pm + tlpkg/tlperl/lib/Locale/Maketext/Simple.pm + tlpkg/tlperl/lib/Locale/Maketext/TPJ13.pod + tlpkg/tlperl/lib/Locale/Script.pm + tlpkg/tlperl/lib/Locale/Script.pod + tlpkg/tlperl/lib/MIME/Base64.pm + tlpkg/tlperl/lib/MIME/QuotedPrint.pm + tlpkg/tlperl/lib/Math/BigFloat.pm + tlpkg/tlperl/lib/Math/BigFloat/Trace.pm + tlpkg/tlperl/lib/Math/BigInt.pm + tlpkg/tlperl/lib/Math/BigInt/Calc.pm + tlpkg/tlperl/lib/Math/BigInt/CalcEmu.pm + tlpkg/tlperl/lib/Math/BigInt/FastCalc.pm + tlpkg/tlperl/lib/Math/BigInt/Lib.pm + tlpkg/tlperl/lib/Math/BigInt/Trace.pm + tlpkg/tlperl/lib/Math/BigRat.pm + tlpkg/tlperl/lib/Math/Complex.pm + tlpkg/tlperl/lib/Math/Trig.pm + tlpkg/tlperl/lib/Memoize.pm + tlpkg/tlperl/lib/Memoize/AnyDBM_File.pm + tlpkg/tlperl/lib/Memoize/Expire.pm + tlpkg/tlperl/lib/Memoize/ExpireFile.pm + tlpkg/tlperl/lib/Memoize/ExpireTest.pm + tlpkg/tlperl/lib/Memoize/NDBM_File.pm + tlpkg/tlperl/lib/Memoize/SDBM_File.pm + tlpkg/tlperl/lib/Memoize/Storable.pm + tlpkg/tlperl/lib/Module/CoreList.pm + tlpkg/tlperl/lib/Module/CoreList.pod + tlpkg/tlperl/lib/Module/CoreList/Utils.pm + tlpkg/tlperl/lib/Module/Load.pm + tlpkg/tlperl/lib/Module/Load/Conditional.pm + tlpkg/tlperl/lib/Module/Loaded.pm + tlpkg/tlperl/lib/Module/Metadata.pm + tlpkg/tlperl/lib/NEXT.pm + tlpkg/tlperl/lib/Net/Cmd.pm + tlpkg/tlperl/lib/Net/Config.pm + tlpkg/tlperl/lib/Net/Domain.pm + tlpkg/tlperl/lib/Net/FTP.pm + tlpkg/tlperl/lib/Net/FTP/A.pm + tlpkg/tlperl/lib/Net/FTP/E.pm + tlpkg/tlperl/lib/Net/FTP/I.pm + tlpkg/tlperl/lib/Net/FTP/L.pm + tlpkg/tlperl/lib/Net/FTP/dataconn.pm + tlpkg/tlperl/lib/Net/NNTP.pm + tlpkg/tlperl/lib/Net/Netrc.pm + tlpkg/tlperl/lib/Net/POP3.pm + tlpkg/tlperl/lib/Net/Ping.pm + tlpkg/tlperl/lib/Net/SMTP.pm + tlpkg/tlperl/lib/Net/Time.pm + tlpkg/tlperl/lib/Net/hostent.pm + tlpkg/tlperl/lib/Net/libnetFAQ.pod + tlpkg/tlperl/lib/Net/netent.pm + tlpkg/tlperl/lib/Net/protoent.pm + tlpkg/tlperl/lib/Net/servent.pm + tlpkg/tlperl/lib/O.pm + tlpkg/tlperl/lib/Opcode.pm + tlpkg/tlperl/lib/POSIX.pm + tlpkg/tlperl/lib/POSIX.pod + tlpkg/tlperl/lib/Params/Check.pm + tlpkg/tlperl/lib/Parse/CPAN/Meta.pm + tlpkg/tlperl/lib/Perl/OSType.pm + tlpkg/tlperl/lib/PerlIO.pm + tlpkg/tlperl/lib/PerlIO/encoding.pm + tlpkg/tlperl/lib/PerlIO/mmap.pm + tlpkg/tlperl/lib/PerlIO/scalar.pm + tlpkg/tlperl/lib/PerlIO/via.pm + tlpkg/tlperl/lib/PerlIO/via/QuotedPrint.pm + tlpkg/tlperl/lib/Pod/Checker.pm + tlpkg/tlperl/lib/Pod/Escapes.pm + tlpkg/tlperl/lib/Pod/Find.pm + tlpkg/tlperl/lib/Pod/Functions.pm + tlpkg/tlperl/lib/Pod/Html.pm + tlpkg/tlperl/lib/Pod/InputObjects.pm + tlpkg/tlperl/lib/Pod/Man.pm + tlpkg/tlperl/lib/Pod/ParseLink.pm + tlpkg/tlperl/lib/Pod/ParseUtils.pm + tlpkg/tlperl/lib/Pod/Parser.pm + tlpkg/tlperl/lib/Pod/Perldoc.pm + tlpkg/tlperl/lib/Pod/Perldoc/BaseTo.pm + tlpkg/tlperl/lib/Pod/Perldoc/GetOptsOO.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToANSI.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToChecker.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToMan.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToNroff.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToPod.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToRtf.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToTerm.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToText.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToTk.pm + tlpkg/tlperl/lib/Pod/Perldoc/ToXml.pm + tlpkg/tlperl/lib/Pod/PlainText.pm + tlpkg/tlperl/lib/Pod/Select.pm + tlpkg/tlperl/lib/Pod/Simple.pm + tlpkg/tlperl/lib/Pod/Simple.pod + tlpkg/tlperl/lib/Pod/Simple/BlackBox.pm + tlpkg/tlperl/lib/Pod/Simple/Checker.pm + tlpkg/tlperl/lib/Pod/Simple/Debug.pm + tlpkg/tlperl/lib/Pod/Simple/DumpAsText.pm + tlpkg/tlperl/lib/Pod/Simple/DumpAsXML.pm + tlpkg/tlperl/lib/Pod/Simple/HTML.pm + tlpkg/tlperl/lib/Pod/Simple/HTMLBatch.pm + tlpkg/tlperl/lib/Pod/Simple/HTMLLegacy.pm + tlpkg/tlperl/lib/Pod/Simple/LinkSection.pm + tlpkg/tlperl/lib/Pod/Simple/Methody.pm + tlpkg/tlperl/lib/Pod/Simple/Progress.pm + tlpkg/tlperl/lib/Pod/Simple/PullParser.pm + tlpkg/tlperl/lib/Pod/Simple/PullParserEndToken.pm + tlpkg/tlperl/lib/Pod/Simple/PullParserStartToken.pm + tlpkg/tlperl/lib/Pod/Simple/PullParserTextToken.pm + tlpkg/tlperl/lib/Pod/Simple/PullParserToken.pm + tlpkg/tlperl/lib/Pod/Simple/RTF.pm + tlpkg/tlperl/lib/Pod/Simple/Search.pm + tlpkg/tlperl/lib/Pod/Simple/SimpleTree.pm + tlpkg/tlperl/lib/Pod/Simple/Subclassing.pod + tlpkg/tlperl/lib/Pod/Simple/Text.pm + tlpkg/tlperl/lib/Pod/Simple/TextContent.pm + tlpkg/tlperl/lib/Pod/Simple/TiedOutFH.pm + tlpkg/tlperl/lib/Pod/Simple/Transcode.pm + tlpkg/tlperl/lib/Pod/Simple/TranscodeDumb.pm + tlpkg/tlperl/lib/Pod/Simple/TranscodeSmart.pm + tlpkg/tlperl/lib/Pod/Simple/XHTML.pm + tlpkg/tlperl/lib/Pod/Simple/XMLOutStream.pm + tlpkg/tlperl/lib/Pod/Text.pm + tlpkg/tlperl/lib/Pod/Text/Color.pm + tlpkg/tlperl/lib/Pod/Text/Overstrike.pm + tlpkg/tlperl/lib/Pod/Text/Termcap.pm + tlpkg/tlperl/lib/Pod/Usage.pm + tlpkg/tlperl/lib/SDBM_File.pm + tlpkg/tlperl/lib/Safe.pm + tlpkg/tlperl/lib/Scalar/Util.pm + tlpkg/tlperl/lib/Search/Dict.pm + tlpkg/tlperl/lib/SelectSaver.pm + tlpkg/tlperl/lib/SelfLoader.pm + tlpkg/tlperl/lib/Socket.pm + tlpkg/tlperl/lib/Storable.pm + tlpkg/tlperl/lib/Storable/Limit.pm + tlpkg/tlperl/lib/Sub/Util.pm + tlpkg/tlperl/lib/Symbol.pm + tlpkg/tlperl/lib/Sys/Hostname.pm + tlpkg/tlperl/lib/TAP/Base.pm + tlpkg/tlperl/lib/TAP/Formatter/Base.pm + tlpkg/tlperl/lib/TAP/Formatter/Color.pm + tlpkg/tlperl/lib/TAP/Formatter/Console.pm + tlpkg/tlperl/lib/TAP/Formatter/Console/ParallelSession.pm + tlpkg/tlperl/lib/TAP/Formatter/Console/Session.pm + tlpkg/tlperl/lib/TAP/Formatter/File.pm + tlpkg/tlperl/lib/TAP/Formatter/File/Session.pm + tlpkg/tlperl/lib/TAP/Formatter/Session.pm + tlpkg/tlperl/lib/TAP/Harness.pm + tlpkg/tlperl/lib/TAP/Harness/Beyond.pod + tlpkg/tlperl/lib/TAP/Harness/Env.pm + tlpkg/tlperl/lib/TAP/Object.pm + tlpkg/tlperl/lib/TAP/Parser.pm + tlpkg/tlperl/lib/TAP/Parser/Aggregator.pm + tlpkg/tlperl/lib/TAP/Parser/Grammar.pm + tlpkg/tlperl/lib/TAP/Parser/Iterator.pm + tlpkg/tlperl/lib/TAP/Parser/Iterator/Array.pm + tlpkg/tlperl/lib/TAP/Parser/Iterator/Process.pm + tlpkg/tlperl/lib/TAP/Parser/Iterator/Stream.pm + tlpkg/tlperl/lib/TAP/Parser/IteratorFactory.pm + tlpkg/tlperl/lib/TAP/Parser/Multiplexer.pm + tlpkg/tlperl/lib/TAP/Parser/Result.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Bailout.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Comment.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Plan.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Pragma.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Test.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Unknown.pm + tlpkg/tlperl/lib/TAP/Parser/Result/Version.pm + tlpkg/tlperl/lib/TAP/Parser/Result/YAML.pm + tlpkg/tlperl/lib/TAP/Parser/ResultFactory.pm + tlpkg/tlperl/lib/TAP/Parser/Scheduler.pm + tlpkg/tlperl/lib/TAP/Parser/Scheduler/Job.pm + tlpkg/tlperl/lib/TAP/Parser/Scheduler/Spinner.pm + tlpkg/tlperl/lib/TAP/Parser/Source.pm + tlpkg/tlperl/lib/TAP/Parser/SourceHandler.pm + tlpkg/tlperl/lib/TAP/Parser/SourceHandler/Executable.pm + tlpkg/tlperl/lib/TAP/Parser/SourceHandler/File.pm + tlpkg/tlperl/lib/TAP/Parser/SourceHandler/Handle.pm + tlpkg/tlperl/lib/TAP/Parser/SourceHandler/Perl.pm + tlpkg/tlperl/lib/TAP/Parser/SourceHandler/RawTAP.pm + tlpkg/tlperl/lib/TAP/Parser/YAMLish/Reader.pm + tlpkg/tlperl/lib/TAP/Parser/YAMLish/Writer.pm + tlpkg/tlperl/lib/Term/ANSIColor.pm + tlpkg/tlperl/lib/Term/Cap.pm + tlpkg/tlperl/lib/Term/Complete.pm + tlpkg/tlperl/lib/Term/ReadLine.pm + tlpkg/tlperl/lib/Test.pm + tlpkg/tlperl/lib/Test/Builder.pm + tlpkg/tlperl/lib/Test/Builder/Formatter.pm + tlpkg/tlperl/lib/Test/Builder/IO/Scalar.pm + tlpkg/tlperl/lib/Test/Builder/Module.pm + tlpkg/tlperl/lib/Test/Builder/Tester.pm + tlpkg/tlperl/lib/Test/Builder/Tester/Color.pm + tlpkg/tlperl/lib/Test/Builder/TodoDiag.pm + tlpkg/tlperl/lib/Test/Harness.pm + tlpkg/tlperl/lib/Test/More.pm + tlpkg/tlperl/lib/Test/Simple.pm + tlpkg/tlperl/lib/Test/Tester.pm + tlpkg/tlperl/lib/Test/Tester/Capture.pm + tlpkg/tlperl/lib/Test/Tester/CaptureRunner.pm + tlpkg/tlperl/lib/Test/Tester/Delegate.pm + tlpkg/tlperl/lib/Test/Tutorial.pod + tlpkg/tlperl/lib/Test/use/ok.pm + tlpkg/tlperl/lib/Test2.pm + tlpkg/tlperl/lib/Test2/API.pm + tlpkg/tlperl/lib/Test2/API/Breakage.pm + tlpkg/tlperl/lib/Test2/API/Context.pm + tlpkg/tlperl/lib/Test2/API/Instance.pm + tlpkg/tlperl/lib/Test2/API/Stack.pm + tlpkg/tlperl/lib/Test2/Event.pm + tlpkg/tlperl/lib/Test2/Event/Bail.pm + tlpkg/tlperl/lib/Test2/Event/Diag.pm + tlpkg/tlperl/lib/Test2/Event/Encoding.pm + tlpkg/tlperl/lib/Test2/Event/Exception.pm + tlpkg/tlperl/lib/Test2/Event/Fail.pm + tlpkg/tlperl/lib/Test2/Event/Generic.pm + tlpkg/tlperl/lib/Test2/Event/Note.pm + tlpkg/tlperl/lib/Test2/Event/Ok.pm + tlpkg/tlperl/lib/Test2/Event/Pass.pm + tlpkg/tlperl/lib/Test2/Event/Plan.pm + tlpkg/tlperl/lib/Test2/Event/Skip.pm + tlpkg/tlperl/lib/Test2/Event/Subtest.pm + tlpkg/tlperl/lib/Test2/Event/TAP/Version.pm + tlpkg/tlperl/lib/Test2/Event/V2.pm + tlpkg/tlperl/lib/Test2/Event/Waiting.pm + tlpkg/tlperl/lib/Test2/EventFacet.pm + tlpkg/tlperl/lib/Test2/EventFacet/About.pm + tlpkg/tlperl/lib/Test2/EventFacet/Amnesty.pm + tlpkg/tlperl/lib/Test2/EventFacet/Assert.pm + tlpkg/tlperl/lib/Test2/EventFacet/Control.pm + tlpkg/tlperl/lib/Test2/EventFacet/Error.pm + tlpkg/tlperl/lib/Test2/EventFacet/Hub.pm + tlpkg/tlperl/lib/Test2/EventFacet/Info.pm + tlpkg/tlperl/lib/Test2/EventFacet/Meta.pm + tlpkg/tlperl/lib/Test2/EventFacet/Parent.pm + tlpkg/tlperl/lib/Test2/EventFacet/Plan.pm + tlpkg/tlperl/lib/Test2/EventFacet/Render.pm + tlpkg/tlperl/lib/Test2/EventFacet/Trace.pm + tlpkg/tlperl/lib/Test2/Formatter.pm + tlpkg/tlperl/lib/Test2/Formatter/TAP.pm + tlpkg/tlperl/lib/Test2/Hub.pm + tlpkg/tlperl/lib/Test2/Hub/Interceptor.pm + tlpkg/tlperl/lib/Test2/Hub/Interceptor/Terminator.pm + tlpkg/tlperl/lib/Test2/Hub/Subtest.pm + tlpkg/tlperl/lib/Test2/IPC.pm + tlpkg/tlperl/lib/Test2/IPC/Driver.pm + tlpkg/tlperl/lib/Test2/IPC/Driver/Files.pm + tlpkg/tlperl/lib/Test2/Tools/Tiny.pm + tlpkg/tlperl/lib/Test2/Transition.pod + tlpkg/tlperl/lib/Test2/Util.pm + tlpkg/tlperl/lib/Test2/Util/ExternalMeta.pm + tlpkg/tlperl/lib/Test2/Util/Facets2Legacy.pm + tlpkg/tlperl/lib/Test2/Util/HashBase.pm + tlpkg/tlperl/lib/Test2/Util/Trace.pm + tlpkg/tlperl/lib/Text/Abbrev.pm + tlpkg/tlperl/lib/Text/Balanced.pm + tlpkg/tlperl/lib/Text/ParseWords.pm + tlpkg/tlperl/lib/Text/Tabs.pm + tlpkg/tlperl/lib/Text/Wrap.pm + tlpkg/tlperl/lib/Thread.pm + tlpkg/tlperl/lib/Thread/Queue.pm + tlpkg/tlperl/lib/Thread/Semaphore.pm + tlpkg/tlperl/lib/Tie/Array.pm + tlpkg/tlperl/lib/Tie/File.pm + tlpkg/tlperl/lib/Tie/Handle.pm + tlpkg/tlperl/lib/Tie/Hash.pm + tlpkg/tlperl/lib/Tie/Hash/NamedCapture.pm + tlpkg/tlperl/lib/Tie/Memoize.pm + tlpkg/tlperl/lib/Tie/RefHash.pm + tlpkg/tlperl/lib/Tie/Scalar.pm + tlpkg/tlperl/lib/Tie/StdHandle.pm + tlpkg/tlperl/lib/Tie/SubstrHash.pm + tlpkg/tlperl/lib/Time/HiRes.pm + tlpkg/tlperl/lib/Time/Local.pm + tlpkg/tlperl/lib/Time/Piece.pm + tlpkg/tlperl/lib/Time/Seconds.pm + tlpkg/tlperl/lib/Time/gmtime.pm + tlpkg/tlperl/lib/Time/localtime.pm + tlpkg/tlperl/lib/Time/tm.pm + tlpkg/tlperl/lib/UNIVERSAL.pm + tlpkg/tlperl/lib/Unicode/Collate.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/Big5.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/GB2312.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/JISX0208.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/Korean.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/Pinyin.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/Stroke.pm + tlpkg/tlperl/lib/Unicode/Collate/CJK/Zhuyin.pm + tlpkg/tlperl/lib/Unicode/Collate/Locale.pm + tlpkg/tlperl/lib/Unicode/Collate/Locale/af.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ar.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/as.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/az.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/be.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/bn.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ca.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/cs.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/cy.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/da.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/de_at_ph.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/de_phone.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/dsb.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ee.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/eo.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/es.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/es_trad.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/et.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/fa.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/fi.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/fi_phone.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/fil.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/fo.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/fr_ca.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/gu.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ha.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/haw.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/he.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/hi.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/hr.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/hu.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/hy.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ig.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/is.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ja.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/kk.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/kl.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/kn.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ko.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/kok.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/lkt.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ln.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/lt.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/lv.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/mk.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ml.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/mr.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/mt.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/nb.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/nn.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/nso.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/om.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/or.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/pa.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/pl.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ro.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sa.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/se.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/si.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/si_dict.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sk.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sl.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sq.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sr.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sv.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/sv_refo.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ta.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/te.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/th.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/tn.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/to.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/tr.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ug_cyrl.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/uk.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/ur.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/vi.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/vo.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/wae.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/wo.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/yo.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/zh.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_big5.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_gb.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_pin.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_strk.pl + tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_zhu.pl + tlpkg/tlperl/lib/Unicode/Collate/allkeys.txt + tlpkg/tlperl/lib/Unicode/Collate/keys.txt + tlpkg/tlperl/lib/Unicode/Normalize.pm + tlpkg/tlperl/lib/Unicode/UCD.pm + tlpkg/tlperl/lib/User/grent.pm + tlpkg/tlperl/lib/User/pwent.pm + tlpkg/tlperl/lib/Win32.pm + tlpkg/tlperl/lib/Win32API/File.pm + tlpkg/tlperl/lib/Win32API/File/cFile.pc + tlpkg/tlperl/lib/Win32CORE.pm + tlpkg/tlperl/lib/XSLoader.pm + tlpkg/tlperl/lib/_charnames.pm + tlpkg/tlperl/lib/arybase.pm + tlpkg/tlperl/lib/attributes.pm + tlpkg/tlperl/lib/auto/B/B.dll + tlpkg/tlperl/lib/auto/Compress/Raw/Bzip2/Bzip2.dll + tlpkg/tlperl/lib/auto/Compress/Raw/Zlib/Zlib.dll + tlpkg/tlperl/lib/auto/Cwd/Cwd.dll + tlpkg/tlperl/lib/auto/Data/Dumper/Dumper.dll + tlpkg/tlperl/lib/auto/Devel/Peek/Peek.dll + tlpkg/tlperl/lib/auto/Digest/MD5/MD5.dll + tlpkg/tlperl/lib/auto/Digest/SHA/SHA.dll + tlpkg/tlperl/lib/auto/Encode/Byte/Byte.dll + tlpkg/tlperl/lib/auto/Encode/CN/CN.dll + tlpkg/tlperl/lib/auto/Encode/EBCDIC/EBCDIC.dll + tlpkg/tlperl/lib/auto/Encode/Encode.dll + tlpkg/tlperl/lib/auto/Encode/JP/JP.dll + tlpkg/tlperl/lib/auto/Encode/KR/KR.dll + tlpkg/tlperl/lib/auto/Encode/Symbol/Symbol.dll + tlpkg/tlperl/lib/auto/Encode/TW/TW.dll + tlpkg/tlperl/lib/auto/Encode/Unicode/Unicode.dll + tlpkg/tlperl/lib/auto/Fcntl/Fcntl.dll + tlpkg/tlperl/lib/auto/File/DosGlob/DosGlob.dll + tlpkg/tlperl/lib/auto/File/Glob/Glob.dll + tlpkg/tlperl/lib/auto/Filter/Util/Call/Call.dll + tlpkg/tlperl/lib/auto/Hash/Util/FieldHash/FieldHash.dll + tlpkg/tlperl/lib/auto/Hash/Util/Util.dll + tlpkg/tlperl/lib/auto/I18N/Langinfo/Langinfo.dll + tlpkg/tlperl/lib/auto/IO/IO.dll + tlpkg/tlperl/lib/auto/List/Util/Util.dll + tlpkg/tlperl/lib/auto/MIME/Base64/Base64.dll + tlpkg/tlperl/lib/auto/Math/BigInt/FastCalc/FastCalc.dll + tlpkg/tlperl/lib/auto/Opcode/Opcode.dll + tlpkg/tlperl/lib/auto/POSIX/POSIX.dll + tlpkg/tlperl/lib/auto/PerlIO/encoding/encoding.dll + tlpkg/tlperl/lib/auto/PerlIO/mmap/mmap.dll + tlpkg/tlperl/lib/auto/PerlIO/scalar/scalar.dll + tlpkg/tlperl/lib/auto/PerlIO/via/via.dll + tlpkg/tlperl/lib/auto/SDBM_File/SDBM_File.dll + tlpkg/tlperl/lib/auto/Socket/Socket.dll + tlpkg/tlperl/lib/auto/Storable/Storable.dll + tlpkg/tlperl/lib/auto/Sys/Hostname/Hostname.dll + tlpkg/tlperl/lib/auto/Tie/Hash/NamedCapture/NamedCapture.dll + tlpkg/tlperl/lib/auto/Time/HiRes/HiRes.dll + tlpkg/tlperl/lib/auto/Time/Piece/Piece.dll + tlpkg/tlperl/lib/auto/Unicode/Collate/Collate.dll + tlpkg/tlperl/lib/auto/Unicode/Normalize/Normalize.dll + tlpkg/tlperl/lib/auto/Win32/Win32.dll + tlpkg/tlperl/lib/auto/Win32API/File/File.dll + tlpkg/tlperl/lib/auto/Win32CORE/extralibs.ld + tlpkg/tlperl/lib/auto/arybase/arybase.dll + tlpkg/tlperl/lib/auto/attributes/attributes.dll + tlpkg/tlperl/lib/auto/mro/mro.dll + tlpkg/tlperl/lib/auto/re/re.dll + tlpkg/tlperl/lib/auto/threads/shared/shared.dll + tlpkg/tlperl/lib/auto/threads/threads.dll + tlpkg/tlperl/lib/autodie.pm + tlpkg/tlperl/lib/autodie/Scope/Guard.pm + tlpkg/tlperl/lib/autodie/Scope/GuardStack.pm + tlpkg/tlperl/lib/autodie/Util.pm + tlpkg/tlperl/lib/autodie/exception.pm + tlpkg/tlperl/lib/autodie/exception/system.pm + tlpkg/tlperl/lib/autodie/hints.pm + tlpkg/tlperl/lib/autodie/skip.pm + tlpkg/tlperl/lib/autouse.pm + tlpkg/tlperl/lib/base.pm + tlpkg/tlperl/lib/bigint.pm + tlpkg/tlperl/lib/bignum.pm + tlpkg/tlperl/lib/bigrat.pm + tlpkg/tlperl/lib/blib.pm + tlpkg/tlperl/lib/bytes.pm + tlpkg/tlperl/lib/bytes_heavy.pl + tlpkg/tlperl/lib/charnames.pm + tlpkg/tlperl/lib/constant.pm + tlpkg/tlperl/lib/deprecate.pm + tlpkg/tlperl/lib/diagnostics.pm + tlpkg/tlperl/lib/dumpvar.pl + tlpkg/tlperl/lib/encoding.pm + tlpkg/tlperl/lib/encoding/warnings.pm + tlpkg/tlperl/lib/experimental.pm + tlpkg/tlperl/lib/feature.pm + tlpkg/tlperl/lib/fields.pm + tlpkg/tlperl/lib/filetest.pm + tlpkg/tlperl/lib/if.pm + tlpkg/tlperl/lib/integer.pm + tlpkg/tlperl/lib/less.pm + tlpkg/tlperl/lib/lib.pm + tlpkg/tlperl/lib/locale.pm + tlpkg/tlperl/lib/meta_notation.pm + tlpkg/tlperl/lib/mro.pm + tlpkg/tlperl/lib/ok.pm + tlpkg/tlperl/lib/open.pm + tlpkg/tlperl/lib/ops.pm + tlpkg/tlperl/lib/overload.pm + tlpkg/tlperl/lib/overload/numbers.pm + tlpkg/tlperl/lib/overloading.pm + tlpkg/tlperl/lib/parent.pm + tlpkg/tlperl/lib/perl5db.pl + tlpkg/tlperl/lib/perlfaq.pm + tlpkg/tlperl/lib/perllocal.pod + tlpkg/tlperl/lib/re.pm + tlpkg/tlperl/lib/sigtrap.pm + tlpkg/tlperl/lib/sort.pm + tlpkg/tlperl/lib/strict.pm + tlpkg/tlperl/lib/subs.pm + tlpkg/tlperl/lib/threads.pm + tlpkg/tlperl/lib/threads/shared.pm + tlpkg/tlperl/lib/unicore/Blocks.txt + tlpkg/tlperl/lib/unicore/CombiningClass.pl + tlpkg/tlperl/lib/unicore/Decomposition.pl + tlpkg/tlperl/lib/unicore/Heavy.pl + tlpkg/tlperl/lib/unicore/Name.pl + tlpkg/tlperl/lib/unicore/Name.pm + tlpkg/tlperl/lib/unicore/NamedSequences.txt + tlpkg/tlperl/lib/unicore/SpecialCasing.txt + tlpkg/tlperl/lib/unicore/To/Age.pl + tlpkg/tlperl/lib/unicore/To/Bc.pl + tlpkg/tlperl/lib/unicore/To/Bmg.pl + tlpkg/tlperl/lib/unicore/To/Bpb.pl + tlpkg/tlperl/lib/unicore/To/Bpt.pl + tlpkg/tlperl/lib/unicore/To/Cf.pl + tlpkg/tlperl/lib/unicore/To/Digit.pl + tlpkg/tlperl/lib/unicore/To/Ea.pl + tlpkg/tlperl/lib/unicore/To/Fold.pl + tlpkg/tlperl/lib/unicore/To/GCB.pl + tlpkg/tlperl/lib/unicore/To/Gc.pl + tlpkg/tlperl/lib/unicore/To/Hst.pl + tlpkg/tlperl/lib/unicore/To/InPC.pl + tlpkg/tlperl/lib/unicore/To/InSC.pl + tlpkg/tlperl/lib/unicore/To/Isc.pl + tlpkg/tlperl/lib/unicore/To/Jg.pl + tlpkg/tlperl/lib/unicore/To/Jt.pl + tlpkg/tlperl/lib/unicore/To/Lb.pl + tlpkg/tlperl/lib/unicore/To/Lc.pl + tlpkg/tlperl/lib/unicore/To/Lower.pl + tlpkg/tlperl/lib/unicore/To/NFCQC.pl + tlpkg/tlperl/lib/unicore/To/NFDQC.pl + tlpkg/tlperl/lib/unicore/To/NFKCCF.pl + tlpkg/tlperl/lib/unicore/To/NFKCQC.pl + tlpkg/tlperl/lib/unicore/To/NFKDQC.pl + tlpkg/tlperl/lib/unicore/To/Na1.pl + tlpkg/tlperl/lib/unicore/To/NameAlia.pl + tlpkg/tlperl/lib/unicore/To/Nt.pl + tlpkg/tlperl/lib/unicore/To/Nv.pl + tlpkg/tlperl/lib/unicore/To/PerlDeci.pl + tlpkg/tlperl/lib/unicore/To/SB.pl + tlpkg/tlperl/lib/unicore/To/Sc.pl + tlpkg/tlperl/lib/unicore/To/Scx.pl + tlpkg/tlperl/lib/unicore/To/Tc.pl + tlpkg/tlperl/lib/unicore/To/Title.pl + tlpkg/tlperl/lib/unicore/To/Uc.pl + tlpkg/tlperl/lib/unicore/To/Upper.pl + tlpkg/tlperl/lib/unicore/To/Vo.pl + tlpkg/tlperl/lib/unicore/To/WB.pl + tlpkg/tlperl/lib/unicore/To/_PerlLB.pl + tlpkg/tlperl/lib/unicore/To/_PerlSCX.pl + tlpkg/tlperl/lib/unicore/To/_PerlWB.pl + tlpkg/tlperl/lib/unicore/UCD.pl + tlpkg/tlperl/lib/unicore/lib/Age/NA.pl + tlpkg/tlperl/lib/unicore/lib/Age/V100.pl + tlpkg/tlperl/lib/unicore/lib/Age/V11.pl + tlpkg/tlperl/lib/unicore/lib/Age/V20.pl + tlpkg/tlperl/lib/unicore/lib/Age/V30.pl + tlpkg/tlperl/lib/unicore/lib/Age/V31.pl + tlpkg/tlperl/lib/unicore/lib/Age/V32.pl + tlpkg/tlperl/lib/unicore/lib/Age/V40.pl + tlpkg/tlperl/lib/unicore/lib/Age/V41.pl + tlpkg/tlperl/lib/unicore/lib/Age/V50.pl + tlpkg/tlperl/lib/unicore/lib/Age/V51.pl + tlpkg/tlperl/lib/unicore/lib/Age/V52.pl + tlpkg/tlperl/lib/unicore/lib/Age/V60.pl + tlpkg/tlperl/lib/unicore/lib/Age/V61.pl + tlpkg/tlperl/lib/unicore/lib/Age/V70.pl + tlpkg/tlperl/lib/unicore/lib/Age/V80.pl + tlpkg/tlperl/lib/unicore/lib/Age/V90.pl + tlpkg/tlperl/lib/unicore/lib/Alpha/Y.pl + tlpkg/tlperl/lib/unicore/lib/Bc/AL.pl + tlpkg/tlperl/lib/unicore/lib/Bc/AN.pl + tlpkg/tlperl/lib/unicore/lib/Bc/B.pl + tlpkg/tlperl/lib/unicore/lib/Bc/BN.pl + tlpkg/tlperl/lib/unicore/lib/Bc/CS.pl + tlpkg/tlperl/lib/unicore/lib/Bc/EN.pl + tlpkg/tlperl/lib/unicore/lib/Bc/ES.pl + tlpkg/tlperl/lib/unicore/lib/Bc/ET.pl + tlpkg/tlperl/lib/unicore/lib/Bc/L.pl + tlpkg/tlperl/lib/unicore/lib/Bc/NSM.pl + tlpkg/tlperl/lib/unicore/lib/Bc/ON.pl + tlpkg/tlperl/lib/unicore/lib/Bc/R.pl + tlpkg/tlperl/lib/unicore/lib/Bc/WS.pl + tlpkg/tlperl/lib/unicore/lib/BidiC/Y.pl + tlpkg/tlperl/lib/unicore/lib/BidiM/Y.pl + tlpkg/tlperl/lib/unicore/lib/Blk/NB.pl + tlpkg/tlperl/lib/unicore/lib/Bpt/C.pl + tlpkg/tlperl/lib/unicore/lib/Bpt/N.pl + tlpkg/tlperl/lib/unicore/lib/Bpt/O.pl + tlpkg/tlperl/lib/unicore/lib/CE/Y.pl + tlpkg/tlperl/lib/unicore/lib/CI/Y.pl + tlpkg/tlperl/lib/unicore/lib/CWCF/Y.pl + tlpkg/tlperl/lib/unicore/lib/CWCM/Y.pl + tlpkg/tlperl/lib/unicore/lib/CWKCF/Y.pl + tlpkg/tlperl/lib/unicore/lib/CWL/Y.pl + tlpkg/tlperl/lib/unicore/lib/CWT/Y.pl + tlpkg/tlperl/lib/unicore/lib/CWU/Y.pl + tlpkg/tlperl/lib/unicore/lib/Cased/Y.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/A.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/AL.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/AR.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/ATAR.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/B.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/BR.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/DB.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/NK.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/NR.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/OV.pl + tlpkg/tlperl/lib/unicore/lib/Ccc/VR.pl + tlpkg/tlperl/lib/unicore/lib/CompEx/Y.pl + tlpkg/tlperl/lib/unicore/lib/DI/Y.pl + tlpkg/tlperl/lib/unicore/lib/Dash/Y.pl + tlpkg/tlperl/lib/unicore/lib/Dep/Y.pl + tlpkg/tlperl/lib/unicore/lib/Dia/Y.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Com.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Enc.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Fin.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Font.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Init.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Iso.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Med.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Nar.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Nb.pl + tlpkg/tlperl/lib/unicore/lib/Dt/NonCanon.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Sqr.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Sub.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Sup.pl + tlpkg/tlperl/lib/unicore/lib/Dt/Vert.pl + tlpkg/tlperl/lib/unicore/lib/Ea/A.pl + tlpkg/tlperl/lib/unicore/lib/Ea/H.pl + tlpkg/tlperl/lib/unicore/lib/Ea/N.pl + tlpkg/tlperl/lib/unicore/lib/Ea/Na.pl + tlpkg/tlperl/lib/unicore/lib/Ea/W.pl + tlpkg/tlperl/lib/unicore/lib/Ext/Y.pl + tlpkg/tlperl/lib/unicore/lib/GCB/CN.pl + tlpkg/tlperl/lib/unicore/lib/GCB/EB.pl + tlpkg/tlperl/lib/unicore/lib/GCB/EX.pl + tlpkg/tlperl/lib/unicore/lib/GCB/GAZ.pl + tlpkg/tlperl/lib/unicore/lib/GCB/LV.pl + tlpkg/tlperl/lib/unicore/lib/GCB/LVT.pl + tlpkg/tlperl/lib/unicore/lib/GCB/PP.pl + tlpkg/tlperl/lib/unicore/lib/GCB/SM.pl + tlpkg/tlperl/lib/unicore/lib/GCB/XX.pl + tlpkg/tlperl/lib/unicore/lib/Gc/C.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Cf.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Cn.pl + tlpkg/tlperl/lib/unicore/lib/Gc/L.pl + tlpkg/tlperl/lib/unicore/lib/Gc/LC.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Ll.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Lm.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Lo.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Lu.pl + tlpkg/tlperl/lib/unicore/lib/Gc/M.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Mc.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Me.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Mn.pl + tlpkg/tlperl/lib/unicore/lib/Gc/N.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Nd.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Nl.pl + tlpkg/tlperl/lib/unicore/lib/Gc/No.pl + tlpkg/tlperl/lib/unicore/lib/Gc/P.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Pc.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Pd.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Pe.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Pf.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Pi.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Po.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Ps.pl + tlpkg/tlperl/lib/unicore/lib/Gc/S.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Sc.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Sk.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Sm.pl + tlpkg/tlperl/lib/unicore/lib/Gc/So.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Z.pl + tlpkg/tlperl/lib/unicore/lib/Gc/Zs.pl + tlpkg/tlperl/lib/unicore/lib/GrBase/Y.pl + tlpkg/tlperl/lib/unicore/lib/Hex/Y.pl + tlpkg/tlperl/lib/unicore/lib/Hst/NA.pl + tlpkg/tlperl/lib/unicore/lib/Hyphen/T.pl + tlpkg/tlperl/lib/unicore/lib/IDC/Y.pl + tlpkg/tlperl/lib/unicore/lib/IDS/Y.pl + tlpkg/tlperl/lib/unicore/lib/Ideo/Y.pl + tlpkg/tlperl/lib/unicore/lib/In/10_0.pl + tlpkg/tlperl/lib/unicore/lib/In/2_0.pl + tlpkg/tlperl/lib/unicore/lib/In/2_1.pl + tlpkg/tlperl/lib/unicore/lib/In/3_0.pl + tlpkg/tlperl/lib/unicore/lib/In/3_1.pl + tlpkg/tlperl/lib/unicore/lib/In/3_2.pl + tlpkg/tlperl/lib/unicore/lib/In/4_0.pl + tlpkg/tlperl/lib/unicore/lib/In/4_1.pl + tlpkg/tlperl/lib/unicore/lib/In/5_0.pl + tlpkg/tlperl/lib/unicore/lib/In/5_1.pl + tlpkg/tlperl/lib/unicore/lib/In/5_2.pl + tlpkg/tlperl/lib/unicore/lib/In/6_0.pl + tlpkg/tlperl/lib/unicore/lib/In/6_1.pl + tlpkg/tlperl/lib/unicore/lib/In/6_2.pl + tlpkg/tlperl/lib/unicore/lib/In/6_3.pl + tlpkg/tlperl/lib/unicore/lib/In/7_0.pl + tlpkg/tlperl/lib/unicore/lib/In/8_0.pl + tlpkg/tlperl/lib/unicore/lib/In/9_0.pl + tlpkg/tlperl/lib/unicore/lib/InPC/Bottom.pl + tlpkg/tlperl/lib/unicore/lib/InPC/Left.pl + tlpkg/tlperl/lib/unicore/lib/InPC/LeftAndR.pl + tlpkg/tlperl/lib/unicore/lib/InPC/NA.pl + tlpkg/tlperl/lib/unicore/lib/InPC/Overstru.pl + tlpkg/tlperl/lib/unicore/lib/InPC/Right.pl + tlpkg/tlperl/lib/unicore/lib/InPC/Top.pl + tlpkg/tlperl/lib/unicore/lib/InPC/TopAndBo.pl + tlpkg/tlperl/lib/unicore/lib/InPC/TopAndL2.pl + tlpkg/tlperl/lib/unicore/lib/InPC/TopAndLe.pl + tlpkg/tlperl/lib/unicore/lib/InPC/TopAndRi.pl + tlpkg/tlperl/lib/unicore/lib/InPC/VisualOr.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Avagraha.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Bindu.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Cantilla.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona2.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona3.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona4.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona5.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consona6.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Consonan.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Invisibl.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Nukta.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Number.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Other.pl + tlpkg/tlperl/lib/unicore/lib/InSC/PureKill.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Syllable.pl + tlpkg/tlperl/lib/unicore/lib/InSC/ToneMark.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Virama.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Visarga.pl + tlpkg/tlperl/lib/unicore/lib/InSC/Vowel.pl + tlpkg/tlperl/lib/unicore/lib/InSC/VowelDep.pl + tlpkg/tlperl/lib/unicore/lib/InSC/VowelInd.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Ain.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Alef.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Beh.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Dal.pl + tlpkg/tlperl/lib/unicore/lib/Jg/FarsiYeh.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Feh.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Gaf.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Hah.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Kaf.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Lam.pl + tlpkg/tlperl/lib/unicore/lib/Jg/NoJoinin.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Qaf.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Reh.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Sad.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Seen.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Waw.pl + tlpkg/tlperl/lib/unicore/lib/Jg/Yeh.pl + tlpkg/tlperl/lib/unicore/lib/Jt/C.pl + tlpkg/tlperl/lib/unicore/lib/Jt/D.pl + tlpkg/tlperl/lib/unicore/lib/Jt/R.pl + tlpkg/tlperl/lib/unicore/lib/Jt/T.pl + tlpkg/tlperl/lib/unicore/lib/Jt/U.pl + tlpkg/tlperl/lib/unicore/lib/Lb/AI.pl + tlpkg/tlperl/lib/unicore/lib/Lb/AL.pl + tlpkg/tlperl/lib/unicore/lib/Lb/BA.pl + tlpkg/tlperl/lib/unicore/lib/Lb/BB.pl + tlpkg/tlperl/lib/unicore/lib/Lb/CJ.pl + tlpkg/tlperl/lib/unicore/lib/Lb/CL.pl + tlpkg/tlperl/lib/unicore/lib/Lb/CM.pl + tlpkg/tlperl/lib/unicore/lib/Lb/EB.pl + tlpkg/tlperl/lib/unicore/lib/Lb/EX.pl + tlpkg/tlperl/lib/unicore/lib/Lb/GL.pl + tlpkg/tlperl/lib/unicore/lib/Lb/ID.pl + tlpkg/tlperl/lib/unicore/lib/Lb/IN.pl + tlpkg/tlperl/lib/unicore/lib/Lb/IS.pl + tlpkg/tlperl/lib/unicore/lib/Lb/NS.pl + tlpkg/tlperl/lib/unicore/lib/Lb/OP.pl + tlpkg/tlperl/lib/unicore/lib/Lb/PO.pl + tlpkg/tlperl/lib/unicore/lib/Lb/PR.pl + tlpkg/tlperl/lib/unicore/lib/Lb/QU.pl + tlpkg/tlperl/lib/unicore/lib/Lb/SA.pl + tlpkg/tlperl/lib/unicore/lib/Lb/XX.pl + tlpkg/tlperl/lib/unicore/lib/Lower/Y.pl + tlpkg/tlperl/lib/unicore/lib/Math/Y.pl + tlpkg/tlperl/lib/unicore/lib/NFCQC/M.pl + tlpkg/tlperl/lib/unicore/lib/NFCQC/Y.pl + tlpkg/tlperl/lib/unicore/lib/NFDQC/N.pl + tlpkg/tlperl/lib/unicore/lib/NFDQC/Y.pl + tlpkg/tlperl/lib/unicore/lib/NFKCQC/N.pl + tlpkg/tlperl/lib/unicore/lib/NFKCQC/Y.pl + tlpkg/tlperl/lib/unicore/lib/NFKDQC/N.pl + tlpkg/tlperl/lib/unicore/lib/NFKDQC/Y.pl + tlpkg/tlperl/lib/unicore/lib/Nt/Di.pl + tlpkg/tlperl/lib/unicore/lib/Nt/None.pl + tlpkg/tlperl/lib/unicore/lib/Nt/Nu.pl + tlpkg/tlperl/lib/unicore/lib/Nv/0.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1.pl + tlpkg/tlperl/lib/unicore/lib/Nv/10.pl + tlpkg/tlperl/lib/unicore/lib/Nv/100.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/10000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/11.pl + tlpkg/tlperl/lib/unicore/lib/Nv/12.pl + tlpkg/tlperl/lib/unicore/lib/Nv/13.pl + tlpkg/tlperl/lib/unicore/lib/Nv/14.pl + tlpkg/tlperl/lib/unicore/lib/Nv/15.pl + tlpkg/tlperl/lib/unicore/lib/Nv/16.pl + tlpkg/tlperl/lib/unicore/lib/Nv/17.pl + tlpkg/tlperl/lib/unicore/lib/Nv/18.pl + tlpkg/tlperl/lib/unicore/lib/Nv/19.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1_16.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1_2.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1_3.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1_4.pl + tlpkg/tlperl/lib/unicore/lib/Nv/1_8.pl + tlpkg/tlperl/lib/unicore/lib/Nv/2.pl + tlpkg/tlperl/lib/unicore/lib/Nv/20.pl + tlpkg/tlperl/lib/unicore/lib/Nv/200.pl + tlpkg/tlperl/lib/unicore/lib/Nv/2_3.pl + tlpkg/tlperl/lib/unicore/lib/Nv/3.pl + tlpkg/tlperl/lib/unicore/lib/Nv/30.pl + tlpkg/tlperl/lib/unicore/lib/Nv/300.pl + tlpkg/tlperl/lib/unicore/lib/Nv/3_16.pl + tlpkg/tlperl/lib/unicore/lib/Nv/3_4.pl + tlpkg/tlperl/lib/unicore/lib/Nv/4.pl + tlpkg/tlperl/lib/unicore/lib/Nv/40.pl + tlpkg/tlperl/lib/unicore/lib/Nv/400.pl + tlpkg/tlperl/lib/unicore/lib/Nv/5.pl + tlpkg/tlperl/lib/unicore/lib/Nv/50.pl + tlpkg/tlperl/lib/unicore/lib/Nv/500.pl + tlpkg/tlperl/lib/unicore/lib/Nv/5000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/50000.pl + tlpkg/tlperl/lib/unicore/lib/Nv/6.pl + tlpkg/tlperl/lib/unicore/lib/Nv/60.pl + tlpkg/tlperl/lib/unicore/lib/Nv/600.pl + tlpkg/tlperl/lib/unicore/lib/Nv/7.pl + tlpkg/tlperl/lib/unicore/lib/Nv/70.pl + tlpkg/tlperl/lib/unicore/lib/Nv/700.pl + tlpkg/tlperl/lib/unicore/lib/Nv/8.pl + tlpkg/tlperl/lib/unicore/lib/Nv/80.pl + tlpkg/tlperl/lib/unicore/lib/Nv/800.pl + tlpkg/tlperl/lib/unicore/lib/Nv/9.pl + tlpkg/tlperl/lib/unicore/lib/Nv/90.pl + tlpkg/tlperl/lib/unicore/lib/Nv/900.pl + tlpkg/tlperl/lib/unicore/lib/PCM/Y.pl + tlpkg/tlperl/lib/unicore/lib/PatSyn/Y.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Alnum.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Assigned.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Blank.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Graph.pl + tlpkg/tlperl/lib/unicore/lib/Perl/PerlWord.pl + tlpkg/tlperl/lib/unicore/lib/Perl/PosixPun.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Print.pl + tlpkg/tlperl/lib/unicore/lib/Perl/SpacePer.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Title.pl + tlpkg/tlperl/lib/unicore/lib/Perl/Word.pl + tlpkg/tlperl/lib/unicore/lib/Perl/XPosixPu.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlAny.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlCh2.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlCha.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlFol.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlIDC.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlIDS.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlNch.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlPat.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlPr2.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlPro.pl + tlpkg/tlperl/lib/unicore/lib/Perl/_PerlQuo.pl + tlpkg/tlperl/lib/unicore/lib/QMark/Y.pl + tlpkg/tlperl/lib/unicore/lib/SB/AT.pl + tlpkg/tlperl/lib/unicore/lib/SB/CL.pl + tlpkg/tlperl/lib/unicore/lib/SB/EX.pl + tlpkg/tlperl/lib/unicore/lib/SB/FO.pl + tlpkg/tlperl/lib/unicore/lib/SB/LE.pl + tlpkg/tlperl/lib/unicore/lib/SB/LO.pl + tlpkg/tlperl/lib/unicore/lib/SB/NU.pl + tlpkg/tlperl/lib/unicore/lib/SB/SC.pl + tlpkg/tlperl/lib/unicore/lib/SB/ST.pl + tlpkg/tlperl/lib/unicore/lib/SB/Sp.pl + tlpkg/tlperl/lib/unicore/lib/SB/UP.pl + tlpkg/tlperl/lib/unicore/lib/SB/XX.pl + tlpkg/tlperl/lib/unicore/lib/SD/Y.pl + tlpkg/tlperl/lib/unicore/lib/STerm/Y.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Arab.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Armn.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Beng.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Cprt.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Cyrl.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Deva.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Dupl.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Geor.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Glag.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Gran.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Grek.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Gujr.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Guru.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Han.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Hang.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Hira.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Kana.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Knda.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Latn.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Limb.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Linb.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Mlym.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Mong.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Mult.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Orya.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Sinh.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Syrc.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Taml.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Telu.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Zinh.pl + tlpkg/tlperl/lib/unicore/lib/Sc/Zyyy.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Adlm.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Arab.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Armn.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Beng.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Bhks.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Bopo.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Cakm.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Cham.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Copt.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Cprt.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Cyrl.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Deva.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Dupl.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Ethi.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Geor.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Glag.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Gonm.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Gran.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Grek.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Gujr.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Guru.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Han.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Hang.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Hebr.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Hira.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Hmng.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Kana.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Khar.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Khmr.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Knda.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Lana.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Lao.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Latn.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Limb.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Lina.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Linb.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Mlym.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Mong.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Mult.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Mymr.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Orya.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Phlp.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Shrd.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Sind.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Sinh.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Syrc.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Tagb.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Takr.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Talu.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Taml.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Telu.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Thaa.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Tibt.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Tirh.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Xsux.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Yi.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Zinh.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Zyyy.pl + tlpkg/tlperl/lib/unicore/lib/Scx/Zzzz.pl + tlpkg/tlperl/lib/unicore/lib/Term/Y.pl + tlpkg/tlperl/lib/unicore/lib/UIdeo/Y.pl + tlpkg/tlperl/lib/unicore/lib/Upper/Y.pl + tlpkg/tlperl/lib/unicore/lib/Vo/R.pl + tlpkg/tlperl/lib/unicore/lib/Vo/Tr.pl + tlpkg/tlperl/lib/unicore/lib/Vo/Tu.pl + tlpkg/tlperl/lib/unicore/lib/Vo/U.pl + tlpkg/tlperl/lib/unicore/lib/WB/EX.pl + tlpkg/tlperl/lib/unicore/lib/WB/Extend.pl + tlpkg/tlperl/lib/unicore/lib/WB/FO.pl + tlpkg/tlperl/lib/unicore/lib/WB/HL.pl + tlpkg/tlperl/lib/unicore/lib/WB/KA.pl + tlpkg/tlperl/lib/unicore/lib/WB/LE.pl + tlpkg/tlperl/lib/unicore/lib/WB/MB.pl + tlpkg/tlperl/lib/unicore/lib/WB/ML.pl + tlpkg/tlperl/lib/unicore/lib/WB/MN.pl + tlpkg/tlperl/lib/unicore/lib/WB/NU.pl + tlpkg/tlperl/lib/unicore/lib/WB/XX.pl + tlpkg/tlperl/lib/unicore/lib/XIDC/Y.pl + tlpkg/tlperl/lib/unicore/lib/XIDS/Y.pl + tlpkg/tlperl/lib/unicore/version + tlpkg/tlperl/lib/utf8.pm + tlpkg/tlperl/lib/utf8_heavy.pl + tlpkg/tlperl/lib/vars.pm + tlpkg/tlperl/lib/version.pm + tlpkg/tlperl/lib/version.pod + tlpkg/tlperl/lib/version/Internals.pod + tlpkg/tlperl/lib/version/regex.pm + tlpkg/tlperl/lib/vmsish.pm + tlpkg/tlperl/lib/warnings.pm + tlpkg/tlperl/lib/warnings/register.pm + tlpkg/tlperl/site/lib/Cpanel/JSON/XS.pm + tlpkg/tlperl/site/lib/Cpanel/JSON/XS/Boolean.pm + tlpkg/tlperl/site/lib/Cpanel/JSON/XS/Type.pm + tlpkg/tlperl/site/lib/Date/Format.pm + tlpkg/tlperl/site/lib/Date/Language.pm + tlpkg/tlperl/site/lib/Date/Language/Afar.pm + tlpkg/tlperl/site/lib/Date/Language/Amharic.pm + tlpkg/tlperl/site/lib/Date/Language/Austrian.pm + tlpkg/tlperl/site/lib/Date/Language/Brazilian.pm + tlpkg/tlperl/site/lib/Date/Language/Bulgarian.pm + tlpkg/tlperl/site/lib/Date/Language/Chinese.pm + tlpkg/tlperl/site/lib/Date/Language/Chinese_GB.pm + tlpkg/tlperl/site/lib/Date/Language/Czech.pm + tlpkg/tlperl/site/lib/Date/Language/Danish.pm + tlpkg/tlperl/site/lib/Date/Language/Dutch.pm + tlpkg/tlperl/site/lib/Date/Language/English.pm + tlpkg/tlperl/site/lib/Date/Language/Finnish.pm + tlpkg/tlperl/site/lib/Date/Language/French.pm + tlpkg/tlperl/site/lib/Date/Language/Gedeo.pm + tlpkg/tlperl/site/lib/Date/Language/German.pm + tlpkg/tlperl/site/lib/Date/Language/Greek.pm + tlpkg/tlperl/site/lib/Date/Language/Hungarian.pm + tlpkg/tlperl/site/lib/Date/Language/Icelandic.pm + tlpkg/tlperl/site/lib/Date/Language/Italian.pm + tlpkg/tlperl/site/lib/Date/Language/Norwegian.pm + tlpkg/tlperl/site/lib/Date/Language/Oromo.pm + tlpkg/tlperl/site/lib/Date/Language/Romanian.pm + tlpkg/tlperl/site/lib/Date/Language/Russian.pm + tlpkg/tlperl/site/lib/Date/Language/Russian_cp1251.pm + tlpkg/tlperl/site/lib/Date/Language/Russian_koi8r.pm + tlpkg/tlperl/site/lib/Date/Language/Sidama.pm + tlpkg/tlperl/site/lib/Date/Language/Somali.pm + tlpkg/tlperl/site/lib/Date/Language/Spanish.pm + tlpkg/tlperl/site/lib/Date/Language/Swedish.pm + tlpkg/tlperl/site/lib/Date/Language/Tigrinya.pm + tlpkg/tlperl/site/lib/Date/Language/TigrinyaEritrean.pm + tlpkg/tlperl/site/lib/Date/Language/TigrinyaEthiopian.pm + tlpkg/tlperl/site/lib/Date/Language/Turkish.pm + tlpkg/tlperl/site/lib/Date/Parse.pm + tlpkg/tlperl/site/lib/Digest/SHA1.pm + tlpkg/tlperl/site/lib/Encode/Locale.pm + tlpkg/tlperl/site/lib/Encode/compat.pm + tlpkg/tlperl/site/lib/Encode/compat/5006001.pm + tlpkg/tlperl/site/lib/Encode/compat/Alias.pm + tlpkg/tlperl/site/lib/Encode/compat/common.pm + tlpkg/tlperl/site/lib/File/Listing.pm + tlpkg/tlperl/site/lib/File/Which.pm + tlpkg/tlperl/site/lib/HTML/Entities.pm + tlpkg/tlperl/site/lib/HTML/Filter.pm + tlpkg/tlperl/site/lib/HTML/HeadParser.pm + tlpkg/tlperl/site/lib/HTML/LinkExtor.pm + tlpkg/tlperl/site/lib/HTML/Parser.pm + tlpkg/tlperl/site/lib/HTML/PullParser.pm + tlpkg/tlperl/site/lib/HTML/Tagset.pm + tlpkg/tlperl/site/lib/HTML/TokeParser.pm + tlpkg/tlperl/site/lib/HTTP/Config.pm + tlpkg/tlperl/site/lib/HTTP/Cookies.pm + tlpkg/tlperl/site/lib/HTTP/Cookies/Microsoft.pm + tlpkg/tlperl/site/lib/HTTP/Cookies/Netscape.pm + tlpkg/tlperl/site/lib/HTTP/Daemon.pm + tlpkg/tlperl/site/lib/HTTP/Date.pm + tlpkg/tlperl/site/lib/HTTP/Headers.pm + tlpkg/tlperl/site/lib/HTTP/Headers/Auth.pm + tlpkg/tlperl/site/lib/HTTP/Headers/ETag.pm + tlpkg/tlperl/site/lib/HTTP/Headers/Util.pm + tlpkg/tlperl/site/lib/HTTP/Message.pm + tlpkg/tlperl/site/lib/HTTP/Negotiate.pm + tlpkg/tlperl/site/lib/HTTP/Request.pm + tlpkg/tlperl/site/lib/HTTP/Request/Common.pm + tlpkg/tlperl/site/lib/HTTP/Response.pm + tlpkg/tlperl/site/lib/HTTP/Status.pm + tlpkg/tlperl/site/lib/IO/HTML.pm + tlpkg/tlperl/site/lib/IO/String.pm + tlpkg/tlperl/site/lib/JSON/MaybeXS.pm + tlpkg/tlperl/site/lib/LWP.pm + tlpkg/tlperl/site/lib/LWP/Authen/Basic.pm + tlpkg/tlperl/site/lib/LWP/Authen/Digest.pm + tlpkg/tlperl/site/lib/LWP/Authen/Ntlm.pm + tlpkg/tlperl/site/lib/LWP/ConnCache.pm + tlpkg/tlperl/site/lib/LWP/Debug.pm + tlpkg/tlperl/site/lib/LWP/Debug/TraceHTTP.pm + tlpkg/tlperl/site/lib/LWP/DebugFile.pm + tlpkg/tlperl/site/lib/LWP/MediaTypes.pm + tlpkg/tlperl/site/lib/LWP/MemberMixin.pm + tlpkg/tlperl/site/lib/LWP/Protocol.pm + tlpkg/tlperl/site/lib/LWP/Protocol/cpan.pm + tlpkg/tlperl/site/lib/LWP/Protocol/data.pm + tlpkg/tlperl/site/lib/LWP/Protocol/file.pm + tlpkg/tlperl/site/lib/LWP/Protocol/ftp.pm + tlpkg/tlperl/site/lib/LWP/Protocol/gopher.pm + tlpkg/tlperl/site/lib/LWP/Protocol/http.pm + tlpkg/tlperl/site/lib/LWP/Protocol/loopback.pm + tlpkg/tlperl/site/lib/LWP/Protocol/mailto.pm + tlpkg/tlperl/site/lib/LWP/Protocol/nntp.pm + tlpkg/tlperl/site/lib/LWP/Protocol/nogo.pm + tlpkg/tlperl/site/lib/LWP/RobotUA.pm + tlpkg/tlperl/site/lib/LWP/Simple.pm + tlpkg/tlperl/site/lib/LWP/UserAgent.pm + tlpkg/tlperl/site/lib/LWP/media.types + tlpkg/tlperl/site/lib/Math/Int64.pm + tlpkg/tlperl/site/lib/Math/Int64/die_on_overflow.pm + tlpkg/tlperl/site/lib/Math/Int64/native_if_available.pm + tlpkg/tlperl/site/lib/Math/UInt64.pm + tlpkg/tlperl/site/lib/Mozilla/CA.pm + tlpkg/tlperl/site/lib/Mozilla/CA/cacert.pem + tlpkg/tlperl/site/lib/Mozilla/mk-ca-bundle.pl + tlpkg/tlperl/site/lib/Net/HTTP.pm + tlpkg/tlperl/site/lib/Net/HTTP/Methods.pm + tlpkg/tlperl/site/lib/Net/HTTP/NB.pm + tlpkg/tlperl/site/lib/Net/HTTPS.pm + tlpkg/tlperl/site/lib/OLE.pm + tlpkg/tlperl/site/lib/Socket.pm + tlpkg/tlperl/site/lib/Test/Fatal.pm + tlpkg/tlperl/site/lib/Test/Needs.pm + tlpkg/tlperl/site/lib/Test/RequiresInternet.pm + tlpkg/tlperl/site/lib/Tie/Registry.pm + tlpkg/tlperl/site/lib/Time/Zone.pm + tlpkg/tlperl/site/lib/Try/Tiny.pm + tlpkg/tlperl/site/lib/URI.pm + tlpkg/tlperl/site/lib/URI/Escape.pm + tlpkg/tlperl/site/lib/URI/Heuristic.pm + tlpkg/tlperl/site/lib/URI/IRI.pm + tlpkg/tlperl/site/lib/URI/QueryParam.pm + tlpkg/tlperl/site/lib/URI/Split.pm + tlpkg/tlperl/site/lib/URI/URL.pm + tlpkg/tlperl/site/lib/URI/WithBase.pm + tlpkg/tlperl/site/lib/URI/_foreign.pm + tlpkg/tlperl/site/lib/URI/_generic.pm + tlpkg/tlperl/site/lib/URI/_idna.pm + tlpkg/tlperl/site/lib/URI/_ldap.pm + tlpkg/tlperl/site/lib/URI/_login.pm + tlpkg/tlperl/site/lib/URI/_punycode.pm + tlpkg/tlperl/site/lib/URI/_query.pm + tlpkg/tlperl/site/lib/URI/_segment.pm + tlpkg/tlperl/site/lib/URI/_server.pm + tlpkg/tlperl/site/lib/URI/_userpass.pm + tlpkg/tlperl/site/lib/URI/data.pm + tlpkg/tlperl/site/lib/URI/file.pm + tlpkg/tlperl/site/lib/URI/file/Base.pm + tlpkg/tlperl/site/lib/URI/file/FAT.pm + tlpkg/tlperl/site/lib/URI/file/Mac.pm + tlpkg/tlperl/site/lib/URI/file/OS2.pm + tlpkg/tlperl/site/lib/URI/file/QNX.pm + tlpkg/tlperl/site/lib/URI/file/Unix.pm + tlpkg/tlperl/site/lib/URI/file/Win32.pm + tlpkg/tlperl/site/lib/URI/ftp.pm + tlpkg/tlperl/site/lib/URI/gopher.pm + tlpkg/tlperl/site/lib/URI/http.pm + tlpkg/tlperl/site/lib/URI/https.pm + tlpkg/tlperl/site/lib/URI/ldap.pm + tlpkg/tlperl/site/lib/URI/ldapi.pm + tlpkg/tlperl/site/lib/URI/ldaps.pm + tlpkg/tlperl/site/lib/URI/mailto.pm + tlpkg/tlperl/site/lib/URI/mms.pm + tlpkg/tlperl/site/lib/URI/news.pm + tlpkg/tlperl/site/lib/URI/nntp.pm + tlpkg/tlperl/site/lib/URI/pop.pm + tlpkg/tlperl/site/lib/URI/rlogin.pm + tlpkg/tlperl/site/lib/URI/rsync.pm + tlpkg/tlperl/site/lib/URI/rtsp.pm + tlpkg/tlperl/site/lib/URI/rtspu.pm + tlpkg/tlperl/site/lib/URI/sftp.pm + tlpkg/tlperl/site/lib/URI/sip.pm + tlpkg/tlperl/site/lib/URI/sips.pm + tlpkg/tlperl/site/lib/URI/snews.pm + tlpkg/tlperl/site/lib/URI/ssh.pm + tlpkg/tlperl/site/lib/URI/telnet.pm + tlpkg/tlperl/site/lib/URI/tn3270.pm + tlpkg/tlperl/site/lib/URI/urn.pm + tlpkg/tlperl/site/lib/URI/urn/isbn.pm + tlpkg/tlperl/site/lib/URI/urn/oid.pm + tlpkg/tlperl/site/lib/WWW/RobotRules.pm + tlpkg/tlperl/site/lib/WWW/RobotRules/AnyDBM_File.pm + tlpkg/tlperl/site/lib/Win32/API.pm + tlpkg/tlperl/site/lib/Win32/API/Callback.pm + tlpkg/tlperl/site/lib/Win32/API/Callback/IATPatch.pod + tlpkg/tlperl/site/lib/Win32/API/Struct.pm + tlpkg/tlperl/site/lib/Win32/API/Type.pm + tlpkg/tlperl/site/lib/Win32/Console.pm + tlpkg/tlperl/site/lib/Win32/OLE.pm + tlpkg/tlperl/site/lib/Win32/OLE/Const.pm + tlpkg/tlperl/site/lib/Win32/OLE/Enum.pm + tlpkg/tlperl/site/lib/Win32/OLE/Lite.pm + tlpkg/tlperl/site/lib/Win32/OLE/NEWS.pod + tlpkg/tlperl/site/lib/Win32/OLE/NLS.pm + tlpkg/tlperl/site/lib/Win32/OLE/TPJ.pod + tlpkg/tlperl/site/lib/Win32/OLE/TypeInfo.pm + tlpkg/tlperl/site/lib/Win32/OLE/Variant.pm + tlpkg/tlperl/site/lib/Win32/Shortcut.pm + tlpkg/tlperl/site/lib/Win32/TieRegistry.pm + tlpkg/tlperl/site/lib/Win32/WinError.pm + tlpkg/tlperl/site/lib/Win32API/Registry.pm + tlpkg/tlperl/site/lib/Win32API/Registry/cRegistry.pc + tlpkg/tlperl/site/lib/auto/Cpanel/JSON/XS/.packlist + tlpkg/tlperl/site/lib/auto/Cpanel/JSON/XS/XS.dll + tlpkg/tlperl/site/lib/auto/Date/Parse/.packlist + tlpkg/tlperl/site/lib/auto/Digest/SHA1/.packlist + tlpkg/tlperl/site/lib/auto/Digest/SHA1/SHA1.dll + tlpkg/tlperl/site/lib/auto/Encode/Locale/.packlist + tlpkg/tlperl/site/lib/auto/Encode/compat/.packlist + tlpkg/tlperl/site/lib/auto/File/Listing/.packlist + tlpkg/tlperl/site/lib/auto/File/Which/.packlist + tlpkg/tlperl/site/lib/auto/HTML/Parser/.packlist + tlpkg/tlperl/site/lib/auto/HTML/Parser/Parser.dll + tlpkg/tlperl/site/lib/auto/HTML/Tagset/.packlist + tlpkg/tlperl/site/lib/auto/HTTP/Cookies/.packlist + tlpkg/tlperl/site/lib/auto/HTTP/Daemon/.packlist + tlpkg/tlperl/site/lib/auto/HTTP/Date/.packlist + tlpkg/tlperl/site/lib/auto/HTTP/Message/.packlist + tlpkg/tlperl/site/lib/auto/HTTP/Negotiate/.packlist + tlpkg/tlperl/site/lib/auto/IO/HTML/.packlist + tlpkg/tlperl/site/lib/auto/IO/String/.packlist + tlpkg/tlperl/site/lib/auto/JSON/MaybeXS/.packlist + tlpkg/tlperl/site/lib/auto/LWP/MediaTypes/.packlist + tlpkg/tlperl/site/lib/auto/Math/Int64/.packlist + tlpkg/tlperl/site/lib/auto/Math/Int64/Int64.dll + tlpkg/tlperl/site/lib/auto/Mozilla/CA/.packlist + tlpkg/tlperl/site/lib/auto/Net/HTTP/.packlist + tlpkg/tlperl/site/lib/auto/Socket/.packlist + tlpkg/tlperl/site/lib/auto/Socket/Socket.dll + tlpkg/tlperl/site/lib/auto/Test/Fatal/.packlist + tlpkg/tlperl/site/lib/auto/Test/Needs/.packlist + tlpkg/tlperl/site/lib/auto/Test/RequiresInternet/.packlist + tlpkg/tlperl/site/lib/auto/Try/Tiny/.packlist + tlpkg/tlperl/site/lib/auto/URI/.packlist + tlpkg/tlperl/site/lib/auto/WWW/RobotRules/.packlist + tlpkg/tlperl/site/lib/auto/Win32/API/.packlist + tlpkg/tlperl/site/lib/auto/Win32/API/API.dll + tlpkg/tlperl/site/lib/auto/Win32/API/Callback/Callback.dll + tlpkg/tlperl/site/lib/auto/Win32/Console/.packlist + tlpkg/tlperl/site/lib/auto/Win32/Console/Console.dll + tlpkg/tlperl/site/lib/auto/Win32/OLE/.packlist + tlpkg/tlperl/site/lib/auto/Win32/OLE/OLE.dll + tlpkg/tlperl/site/lib/auto/Win32/Shortcut/.packlist + tlpkg/tlperl/site/lib/auto/Win32/Shortcut/Shortcut.dll + tlpkg/tlperl/site/lib/auto/Win32/TieRegistry/.packlist + tlpkg/tlperl/site/lib/auto/Win32API/Registry/.packlist + tlpkg/tlperl/site/lib/auto/Win32API/Registry/Registry.dll + tlpkg/tlperl/site/lib/auto/libwww/perl/.packlist + tlpkg/tlperl/site/lib/libwww/lwpcook.pod + tlpkg/tlperl/site/lib/libwww/lwptut.pod + +name tlpsv.win32 +category TLCore +revision 50728 +shortdesc cross-platform PostScript and PDF previewer (PS_view, psview, psv) +longdesc See http://psview.sf.net for information and downloads. TeX +longdesc Live includes executables only for Windows. +containersize 1444352 +containerchecksum 8610ee3c4ce1d81e2cd1a401e8851cfc5e8d642f9a1a6362581ce5dd9bf3ac5c506414bc6401c62e122131e8fedf704ddb742f6635b56f740f836823496e911a +runfiles size=459 + tlpkg/tlpsv/README + tlpkg/tlpsv/cs/LC_MESSAGES/psv.mo + tlpkg/tlpsv/de/LC_MESSAGES/psv.mo + tlpkg/tlpsv/en/LC_MESSAGES/psv.mo + tlpkg/tlpsv/gswxlua.exe + tlpkg/tlpsv/nl/LC_MESSAGES/psv.mo + tlpkg/tlpsv/pl/LC_MESSAGES/psv.mo + tlpkg/tlpsv/psv.bat + tlpkg/tlpsv/psv.exe + tlpkg/tlpsv/psv.ico + tlpkg/tlpsv/psv.wx.lua + tlpkg/tlpsv/psv_about.ps + tlpkg/tlpsv/psv_about_pl.ps + tlpkg/tlpsv/psv_help_en.htb + tlpkg/tlpsv/psv_help_pl.htb + tlpkg/tlpsv/psv_view.ps +binfiles arch=win32 size=5 + bin/win32/psv.exe + +name tlshell +category Package +revision 50776 +depend tlshell.ARCH +postaction shortcut type=menu name="TeX Live Manager" cmd=TEXDIR/bin/win32/tlshell.exe +containersize 18584 +containerchecksum b60df04fd42a09a6293c059432ea1a305e6dea0c86a53f46336e238e7a8db8642f323661bfa69890c7ea5889ddc044a034889ec658c19bfcf7a6ec5787b4d1a5 +doccontainersize 464 +doccontainerchecksum b648cfc8d651c9ff0d11be5b237ca7a490c87b3892badb6c6c8d9b8086c9086c2b2dabfe904587b1b0fb90b29bcea203b9b26ab7f0dba295b3eaff1b7f4d7289 +docfiles size=1 + texmf-dist/doc/support/tlshell/README +runfiles size=18 + texmf-dist/scripts/tlshell/tlshell.tcl + +name tlshell.aarch64-linux +category Package +revision 46228 +shortdesc aarch64-linux files of tlshell +containersize 340 +containerchecksum b458b2cfd2a0eba8d1d24f3c8d8c74cde8fc3fb018c0f93f7b7af47da4c92e05bd2470964b92749140e7e81de9221f83c801e4fbb944bdb60567410106a1188c +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/tlshell + +name tlshell.amd64-freebsd +category Package +revision 45015 +shortdesc amd64-freebsd files of tlshell +containersize 344 +containerchecksum 4b946904ba7dcd05ec73a50f6f5e203ba1b3d04c07ca68a2cea0312c5751402f6cb4234039d345b3d354aabdc83cf494954419c1742726819f8f9e226042addc +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/tlshell + +name tlshell.amd64-netbsd +category Package +revision 45015 +shortdesc amd64-netbsd files of tlshell +containersize 340 +containerchecksum 92e65e71054e2a39685c887e10e340db4a6979719512aa075b2c6a8f872eb0c2fdfcb74d48c82943c358f7fae254d5214bdfb6b2e5fec77d4bf2bee53eb591a0 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/tlshell + +name tlshell.armhf-linux +category Package +revision 45015 +shortdesc armhf-linux files of tlshell +containersize 340 +containerchecksum 829c165f3271dfdbd2b9ff734a86aff167d4fe005ec072b6bb817f3d52a8866f127ef733659c71848710546b02b1c0446eb8817a1329a504ba503e2e9b8a1ddc +binfiles arch=armhf-linux size=1 + bin/armhf-linux/tlshell + +name tlshell.i386-cygwin +category Package +revision 45015 +shortdesc i386-cygwin files of tlshell +containersize 336 +containerchecksum 8b3e4f13b8e4ec3b16fee6b7359b2223d8ed78c2dc45d966d188afea7df598d8748cbe07ff236da6bf42c7c46a32cbea61b6eacafd3ae46a03c4da8cc5098a15 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/tlshell + +name tlshell.i386-freebsd +category Package +revision 45015 +shortdesc i386-freebsd files of tlshell +containersize 340 +containerchecksum 05f94df68ae2cfa74bd6b523c4d1e11fea19f7a280d86fc56a39a9ac5c6686ae0004dadb0003104097c051a8733efe2215633a410dd24af88734bb08cd1c30e5 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/tlshell + +name tlshell.i386-linux +category Package +revision 45015 +shortdesc i386-linux files of tlshell +containersize 340 +containerchecksum bc5fa145d221d663dacdf17d46338c8f59e6a8226a09a6c7d108da1ff915d8c058f750b6adc5c6e7489e639b15576756100cc8a961af377c34aa65e6d5a20f5e +binfiles arch=i386-linux size=1 + bin/i386-linux/tlshell + +name tlshell.i386-netbsd +category Package +revision 45015 +shortdesc i386-netbsd files of tlshell +containersize 340 +containerchecksum e8b6230e36733cc11afbe64435b218e0be016b1dd67568ae469eda752abd4cfee55b2b9dbb16df9741abca703db85285f310c735f9e060a022ea569b0307cc65 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/tlshell + +name tlshell.i386-solaris +category Package +revision 45015 +shortdesc i386-solaris files of tlshell +containersize 340 +containerchecksum b1cd006a83cd43607089688d4ba88fe2da9d14dcc48f80739ff82b577d08d8be212d8ac51b4edab5f2d2f0ea6f6b4fef33caeff220776fcaed4eb11140f2c6df +binfiles arch=i386-solaris size=1 + bin/i386-solaris/tlshell + +name tlshell.win32 +category Package +revision 50704 +shortdesc win32 files of tlshell +containersize 5960 +containerchecksum 3547b71061a27a02418d6d73608505e241069ad5cef8122ce709b6ba8e40011296b1fa7f45c3fc83c04c83ebcf0041792a6958c98dceea83a0565af3d29a9ccb +binfiles arch=win32 size=4 + bin/win32/tlshell.exe + +name tlshell.x86_64-cygwin +category Package +revision 45015 +shortdesc x86_64-cygwin files of tlshell +containersize 340 +containerchecksum 9c2a127c95c4b713cb5e6d6f498783fb632ed5b239f39f268e4dcf65df922514d5efd79c622eda8d2c5e62210f2f2c9c65b9e37be8d3c880b4c8f9afd242897f +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/tlshell + +name tlshell.x86_64-darwin +category Package +revision 45015 +shortdesc x86_64-darwin files of tlshell +containersize 340 +containerchecksum 6b0309ea769fd745bbfc015b94b573528664387eb0df31139e89e13d4162d7ac027161b48e8d72071bd9f7615046768619d4906c0781ce987ab1c398b8f7d479 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/tlshell + +name tlshell.x86_64-darwinlegacy +category Package +revision 45015 +shortdesc x86_64-darwinlegacy files of tlshell +containersize 348 +containerchecksum 134a6ebf790412fba94af33a20060fdc338a2bd90ee89bae8c0fd766b03d19feba68b72299860187b64fe48b92da2dc3d1f8a0a7eeef94239a979f44f7a7b9fc +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/tlshell + +name tlshell.x86_64-linux +category Package +revision 45015 +shortdesc x86_64-linux files of tlshell +containersize 340 +containerchecksum 335c928557a3acddc4a86ba5b73f994095a3562b89878477781b2e30535bc39365228c90c5633f00cae6d4b7522aca2395d4d775c0ce3dc4d10f2a7c38c588c2 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/tlshell + +name tlshell.x86_64-linuxmusl +category Package +revision 47036 +shortdesc x86_64-linuxmusl files of tlshell +containersize 344 +containerchecksum 01cf645d45550405f1fec7315feca72d2dd6b1326031ed404180a4696bf5f903c03f890357c19a75fc14c18706efc039d8f426d38ba0936f0d34b50d32df2b6b +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/tlshell + +name tlshell.x86_64-solaris +category Package +revision 45015 +shortdesc x86_64-solaris files of tlshell +containersize 340 +containerchecksum a49e421d42d54265f7fa43d2427c52a751de0b13b9baadf6999c6a2e9a8ec6bc409ae30780d03c16967c3711478738ef54c859e41dc90032aa73f0adf46b6836 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/tlshell name tocbibind category Package revision 20085 -shortdesc Add bibliography/index/contents to Table of Contents. +shortdesc Add bibliography/index/contents to Table of Contents relocated 1 longdesc Automatically adds the bibliography and/or the index and/or the longdesc contents, etc., to the Table of Contents listing. -runfiles size=3 - RELOC/tex/latex/tocbibind/tocbibind.sty +containersize 2916 +containerchecksum f373d6c98730e60d06790d1a219df26e60bbddd2aaffc3aefc5877ae6b2c10c1a08e21dfef82cc591e1c6f7c014e0843ae30be948b7eb55321dc94cfb7b16aa9 +doccontainersize 311568 +doccontainerchecksum 1521eaf8a15038a2a0b6136e444ac38d6033071b305f6de6db6a5f8ae34625a5b8bf654d7a97b5ebdfcf4efeae58c41a7c9c17005552314928e315295766c441 docfiles size=77 - RELOC/doc/latex/tocbibind/README - RELOC/doc/latex/tocbibind/tocbibind.pdf + RELOC/doc/latex/tocbibind/README details="Readme" + RELOC/doc/latex/tocbibind/tocbibind.pdf details="Package documentation" +srccontainersize 12776 +srccontainerchecksum fa8375bce4af25fec4743d0c0002f90dbad7240f7959ad843365b72502c8c2d2cc9047b21e01d68a6fc525fca132b3a4842481f808999cac40221af32ea7e487 srcfiles size=12 RELOC/source/latex/tocbibind/tocbibind.dtx RELOC/source/latex/tocbibind/tocbibind.ins +runfiles size=3 + RELOC/tex/latex/tocbibind/tocbibind.sty catalogue-ctan /macros/latex/contrib/tocbibind -catalogue-date 2012-06-24 19:27:06 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics toc-etc catalogue-version 1.5k +name tocdata +category Package +revision 50536 +shortdesc Adds names to chapters, sections, figures in the TOC and LOF +relocated 1 +longdesc This package may be used to add a small amount of data to an +longdesc entry in the table of contents or list of figures, between the +longdesc section or caption name and the page number. The typical use +longdesc would be to add the name of an author or artist of a chapter or +longdesc section, such as in an anthology or a collection of papers. +longdesc Additionally, user-level macros are provided which add the +longdesc author's name to a chapter or section, along with an optional +longdesc prefix and/or suffix, and add to a figure the artist's name, +longdesc prefix, and suffix, plus optional additional text. Author and +longdesc artist names are also added to the index. Additional user-level +longdesc macros control formatting. +containersize 2788 +containerchecksum 0dc60a65bad31aaab77b48ce2b9fc27ea7e31b34d1e57b4d703f6d7b80c7e28753da4cd0d804d1db08f49c31e941dcecaf7ffed3b4394eed964a29f1a5e78ad8 +doccontainersize 914204 +doccontainerchecksum d07c578c1c1c7afa235900d3b868159c101249ff9596d8ec138f26aad61e9f5affae11497e95221da3268c560ad20dce28f98a02539bbf8ddad99462799caab4 +docfiles size=226 + RELOC/doc/latex/tocdata/README.txt details="Readme" + RELOC/doc/latex/tocdata/tocdata.pdf details="Package documentation" +srccontainersize 11116 +srccontainerchecksum 4cbe31b7ab4f22d8403222b8b4b47dd02619d35d708703d4e88f4e0ed086611ad1997182ef200992d46def6989037789039118c1aa95696c635ed1a5501303c6 +srcfiles size=12 + RELOC/source/latex/tocdata/tocdata.dtx + RELOC/source/latex/tocdata/tocdata.ins +runfiles size=3 + RELOC/tex/latex/tocdata/tocdata.sty +catalogue-ctan /macros/latex/contrib/tocdata +catalogue-date 2019-03-21 21:40:32 +0100 +catalogue-license lppl1.3 +catalogue-topics toc-etc +catalogue-version 2.02 + name tocloft category Package -revision 30209 -shortdesc Control table of contents, figures, etc. +revision 45188 +shortdesc Control table of contents, figures, etc relocated 1 longdesc Provides control over the typography of the Table of Contents, longdesc List of Figures and List of Tables, and the ability to create longdesc new 'List of ...'. The ToC \parskip may be changed. -runfiles size=9 - RELOC/tex/latex/tocloft/tocloft.sty -docfiles size=111 - RELOC/doc/latex/tocloft/README - RELOC/doc/latex/tocloft/tocloft.pdf -srcfiles size=34 +containersize 6128 +containerchecksum 4630cda5785a75929f6b060a6d9a51168eb8a00476ce2ac4f070de8424df00cca1f7f2fb0d708ccb22b3516f0617977dffdb012b5d360c694c1a98f9495042f3 +doccontainersize 495916 +doccontainerchecksum 4c85d817ed65a7dc96ed5298793836725637f934aaab95ee11bbc6d3c9a3e0b60af8e792bb99fb172c40c83d59f3b06752b1db1fe1c2ee2757c3c3733c6b7f94 +docfiles size=125 + RELOC/doc/latex/tocloft/README details="Readme" + RELOC/doc/latex/tocloft/tocloft.pdf details="Package documentation" +srccontainersize 29168 +srccontainerchecksum 6328bc6635a6e25d3c4408c255252daa8f60c64bf9add32e17b8c50813c8b1149414ace626c9ac1691f90a3e6f4b5d4c29723b5f92960cee884b56365baaa7c2 +srcfiles size=35 RELOC/source/latex/tocloft/tocloft.dtx RELOC/source/latex/tocloft/tocloft.ins +runfiles size=9 + RELOC/tex/latex/tocloft/tocloft.sty +catalogue-also tocbasic +catalogue-contact-bugs https://github.com/wspr/herries-press/issues +catalogue-contact-repository https://github.com/wspr/herries-press catalogue-ctan /macros/latex/contrib/tocloft -catalogue-date 2015-01-18 12:33:42 +0100 -catalogue-license lppl1.3 -catalogue-version 2.3f +catalogue-date 2017-08-31 05:31:06 +0200 +catalogue-license lppl1.3c +catalogue-topics toc-etc +catalogue-version 2.3i name tocvsec2 category Package revision 33146 -shortdesc Section numbering and table of contents control. +shortdesc Section numbering and table of contents control relocated 1 longdesc Provides control over section numbering (without recourse to longdesc starred sectional commands) and/or the entries in the Table of longdesc Contents on a section by section basis. -runfiles size=2 - RELOC/tex/latex/tocvsec2/tocvsec2.sty +containersize 1924 +containerchecksum 685ff581b0cba155a763ba951b4f5b1e12a44741dc5245967cc2d2effad12127828e4d2f3adabb9fe3d126ffa1f76d43dc196b89faa39745ce85a7f96fb44017 +doccontainersize 302304 +doccontainerchecksum 9247adf45a6a8f18e03d7b93ea8de8decdd9f1ba15eed7ee28c356679a6f62bd8607b9c519448bae2234cec15b76a5155ad7efe99ceb9382022988a29c2ee85c docfiles size=76 - RELOC/doc/latex/tocvsec2/README + RELOC/doc/latex/tocvsec2/README details="Readme" RELOC/doc/latex/tocvsec2/tocvsec2-example.tex - RELOC/doc/latex/tocvsec2/tocvsec2.pdf + RELOC/doc/latex/tocvsec2/tocvsec2.pdf details="Package documentation" +srccontainersize 8052 +srccontainerchecksum c6af924f3d8e52028c7bfe7e27bab1420dec1fe6f3e948b09a131c65a37ec8e9baa594d725a4eca7b3dd10ed19ceb5f54f1ccae49706e9816c7e4e1d9f1212c0 srcfiles size=8 RELOC/source/latex/tocvsec2/tocvsec2.dtx RELOC/source/latex/tocvsec2/tocvsec2.ins +runfiles size=2 + RELOC/tex/latex/tocvsec2/tocvsec2.sty catalogue-ctan /macros/latex/contrib/tocvsec2 -catalogue-date 2014-03-10 12:04:22 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics headings toc-etc catalogue-version 1.3a +name todo +category Package +revision 17746 +shortdesc Make a to-do list for a document +relocated 1 +longdesc The package allows you to insert "to do" marks in your +longdesc document, to make lists of such items, and to cross-reference +longdesc to them. +containersize 1900 +containerchecksum e3cd06aa47c36344602a0dccfb48e43c0639cadcb91aa9e787d552c6d3ecca95da3b0f3af8d0f479caad41f657bbcc30016dfd3f80f42285fe8ab02e0a904601 +doccontainersize 179880 +doccontainerchecksum c747b4cdcbe8533338a9120b06120b0daa68940ace4cf44d87882d5b5a5a42e2c062c667d2e3fbf8979e1385cd55dfd8747f4fcb044a4112f4b2a79588d0463e +docfiles size=57 + RELOC/doc/latex/todo/README + RELOC/doc/latex/todo/todo-spl.pdf details="Sample of use" + RELOC/doc/latex/todo/todo-spl.tex + RELOC/doc/latex/todo/todo.pdf details="Package documentation" +srccontainersize 7408 +srccontainerchecksum 7f70973e13cba6c532d45af7f5c21264adfb75542a7a68e9bf23508955a553efee723edfe098c4a87015c463c99d4063a9bce6888e7bc9018999ab4721a524ce +srcfiles size=7 + RELOC/source/latex/todo/todo.dtx + RELOC/source/latex/todo/todo.ins +runfiles size=2 + RELOC/tex/latex/todo/todo.sty +catalogue-ctan /macros/latex/contrib/todo +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1 +catalogue-topics notes editorial +catalogue-version 2.142 + name todonotes category Package -revision 37829 -shortdesc Marking things to do in a LaTeX document. +revision 49820 +shortdesc Marking things to do in a LaTeX document relocated 1 longdesc The package lets the user mark things to do later, in a simple longdesc and visually appealing way. The package takes several options longdesc to enable customization/finetuning of the visual appearance. -runfiles size=5 - RELOC/tex/latex/todonotes/todonotes.sty -docfiles size=111 - RELOC/doc/latex/todonotes/README +containersize 4644 +containerchecksum 708012c523b8609da3f394cf2def8b07c642fd6d0eeddbcea3e6c6825b7a8b865446b2599e7f1d4d06d00ecd1097bb713fc495d6bc25e6165e265901056d71d0 +doccontainersize 430164 +doccontainerchecksum e8cda7e59c10af8c1b93bcd800f94b36ab3202a996edc417634676a36d0b37668f7fec6aeef54166b603d7652b2f129e141e0cdfd974712e886d6fb70212ca08 +docfiles size=113 + RELOC/doc/latex/todonotes/README details="Readme" RELOC/doc/latex/todonotes/examples/alterAppearenceOfListOfTodos.pdf RELOC/doc/latex/todonotes/examples/alterAppearenceOfListOfTodos.tex RELOC/doc/latex/todonotes/examples/externalize.pdf RELOC/doc/latex/todonotes/examples/externalize.tex RELOC/doc/latex/todonotes/examples/saveColorByUsingLayers.pdf RELOC/doc/latex/todonotes/examples/saveColorByUsingLayers.tex - RELOC/doc/latex/todonotes/todonotes.pdf -srcfiles size=18 + RELOC/doc/latex/todonotes/todonotes.pdf details="Package documentation" +srccontainersize 17968 +srccontainerchecksum 3b1c9037e8b96d3848ce4aad8a256327be081fd215379d14ad45e0eb633abb6406062d218fac90200c5bb9adfa964045ea5ff2b6f1307a485249a6635ec8587f +srcfiles size=20 RELOC/source/latex/todonotes/todonotes.dtx RELOC/source/latex/todonotes/todonotes.ins +runfiles size=5 + RELOC/tex/latex/todonotes/todonotes.sty catalogue-also todo +catalogue-contact-bugs https://github.com/henrikmidtiby/todonotes/issues +catalogue-contact-repository https://github.com/henrikmidtiby/todonotes catalogue-ctan /macros/latex/contrib/todonotes -catalogue-date 2015-07-10 19:33:04 +0200 -catalogue-license lppl1.2 +catalogue-date 2019-01-24 13:58:07 +0100 +catalogue-license lppl1.3 catalogue-topics notes editorial -catalogue-version 1.0.4 - -name todo -category Package -revision 17746 -shortdesc Make a to-do list for a document. -relocated 1 -longdesc The package allows you to insert "to do" marks in your -longdesc document, to make lists of such items, and to cross-reference -longdesc to them. -runfiles size=2 - RELOC/tex/latex/todo/todo.sty -docfiles size=57 - RELOC/doc/latex/todo/README - RELOC/doc/latex/todo/todo-spl.pdf - RELOC/doc/latex/todo/todo-spl.tex - RELOC/doc/latex/todo/todo.pdf -srcfiles size=7 - RELOC/source/latex/todo/todo.dtx - RELOC/source/latex/todo/todo.ins -catalogue-ctan /macros/latex/contrib/todo -catalogue-date 2012-08-24 15:51:53 +0200 -catalogue-license lppl1 -catalogue-version 2.142 +catalogue-version 1.1.2 name tokenizer category Package revision 15878 -shortdesc A tokenizer. +shortdesc A tokenizer relocated 1 longdesc A tokenizer for LaTeX. \GetTokens{Target1}{Target2}{Source} longdesc splits source into two tokens at the first encounter of a @@ -165839,20 +283480,26 @@ longdesc package option 'trim' causes leading and trailing space to be longdesc removed from each token; with this option, the \TrimSpaces longdesc command is defined, which removes leading and trailing spaces longdesc from its argument. -runfiles size=2 - RELOC/tex/latex/tokenizer/tokenizer.sty +containersize 2116 +containerchecksum 5174ea1b9c6c02fb8245db5315ccc7b65239d1343f719ee23428bd530dfd70edf26822bde25d672603d268a63360ba31b4a9fdcddf426b82eef440cd7f449d8e +doccontainersize 73892 +doccontainerchecksum 4e978a368cd7e97a1300addb739b457cbf4810ecb2d4e1161d931373d858573d8fe1688629cd7d23a44a4d5403e5d8d9dc92869be9809bddc9110c55879c940e docfiles size=22 - RELOC/doc/latex/tokenizer/tokenizer.pdf + RELOC/doc/latex/tokenizer/tokenizer.pdf details="Package documentation" RELOC/doc/latex/tokenizer/tokenizer.tex +runfiles size=2 + RELOC/tex/latex/tokenizer/tokenizer.sty +catalogue-also csvtools catalogue-ctan /macros/latex/contrib/tokenizer -catalogue-date 2014-09-23 18:36:08 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics data-import data-disp csv-support catalogue-version 1.1.0 name toolbox category Package revision 32260 -shortdesc Tool macros. +shortdesc Tool macros relocated 1 longdesc A package for (La)TeX which provides some macros which are longdesc convenient for writing indexes, glossaries, or other macros. It @@ -165860,25 +283507,33 @@ longdesc contains macros which support: implicit macros; fancy optional longdesc arguments; loops over tokenlists and itemlists; searching and longdesc splitting; controlled expansion; redefinition of macros; and longdesc concatenated macro names; macros for text replacement. -runfiles size=3 - RELOC/tex/latex/toolbox/toolbox.sty +containersize 3052 +containerchecksum af5320de678474075998f9497be0b766e826b0105b344939a66c5c1377e7c345623e2de18b73cb43f93c8edc241fca7a99fff1ca4b6bd3dfba52bf2ff476f18f +doccontainersize 142452 +doccontainerchecksum ee800bb98c9577b12bf20a0b19ce27d9c6900f66e0920c922626599986b887e34513cca8474456aab7ae59aa5d5fae3c7c323ca4cc21372979ab3d545921ed34 docfiles size=49 - RELOC/doc/latex/toolbox/README + RELOC/doc/latex/toolbox/README details="Readme" RELOC/doc/latex/toolbox/toolbox.pdf RELOC/doc/latex/toolbox/toolbox.tex RELOC/doc/latex/toolbox/toolbox.txt +srccontainersize 24148 +srccontainerchecksum 201c3153ceb48cc4f7a3b24babd95e78939f03a7d2f3992a73113d904c90e5c957135a0efab98cb2ed01f742c39cf84c4a12efb8bf9f9bb9a082d56f62c98255 srcfiles size=29 RELOC/source/latex/toolbox/toolbox.dtx RELOC/source/latex/toolbox/toolbox.ins +runfiles size=3 + RELOC/tex/latex/toolbox/toolbox.sty catalogue-ctan /macros/latex/contrib/toolbox -catalogue-date 2013-11-27 01:19:45 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics macro-supp catalogue-version 5.1 name tools category Package -revision 36834 -shortdesc The LaTeX standard tools bundle. +revision 49619 +catalogue latex-tools +shortdesc The LaTeX standard tools bundle relocated 1 longdesc A collection of (variously) simple tools provided as part of longdesc the LaTeX required tools distribution, comprising the packages: @@ -165886,48 +283541,13 @@ 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. -runfiles size=77 - RELOC/tex/latex/tools/.tex - RELOC/tex/latex/tools/afterpage.sty - RELOC/tex/latex/tools/array.sty - RELOC/tex/latex/tools/bm.sty - RELOC/tex/latex/tools/calc.sty - RELOC/tex/latex/tools/dcolumn.sty - RELOC/tex/latex/tools/delarray.sty - RELOC/tex/latex/tools/e.tex - RELOC/tex/latex/tools/enumerate.sty - RELOC/tex/latex/tools/fontsmpl.sty - RELOC/tex/latex/tools/fontsmpl.tex - RELOC/tex/latex/tools/ftnright.sty - RELOC/tex/latex/tools/h.tex - RELOC/tex/latex/tools/hhline.sty - RELOC/tex/latex/tools/indentfirst.sty - RELOC/tex/latex/tools/layout.sty - RELOC/tex/latex/tools/longtable.sty - RELOC/tex/latex/tools/multicol.sty - RELOC/tex/latex/tools/q.tex - RELOC/tex/latex/tools/r.tex - RELOC/tex/latex/tools/rawfonts.sty - RELOC/tex/latex/tools/s.tex - RELOC/tex/latex/tools/showkeys.sty - RELOC/tex/latex/tools/somedefs.sty - RELOC/tex/latex/tools/tabularx.sty - RELOC/tex/latex/tools/thb.sty - RELOC/tex/latex/tools/thc.sty - RELOC/tex/latex/tools/thcb.sty - RELOC/tex/latex/tools/theorem.sty - RELOC/tex/latex/tools/thm.sty - RELOC/tex/latex/tools/thmb.sty - RELOC/tex/latex/tools/thp.sty - RELOC/tex/latex/tools/trace.sty - RELOC/tex/latex/tools/varioref.sty - RELOC/tex/latex/tools/verbatim.sty - RELOC/tex/latex/tools/verbtest.tex - RELOC/tex/latex/tools/x.tex - RELOC/tex/latex/tools/xr.sty - RELOC/tex/latex/tools/xspace.sty -docfiles size=1585 - RELOC/doc/latex/tools/README +containersize 40028 +containerchecksum d26a2bbab076a6db6b23c1b54eb9ee462d415d32f0c57db7673fa9ed0e0ab06dab74e2e25f1c51ae20a344bd07ed2848d5dbb1cb4bf5a4885fe271e78dfbd0f5 +doccontainersize 5162448 +doccontainerchecksum 03ffdf8d2e683f8f9e8fca7f661367a790f67c5c377a47bfe485fbc391b1991c6496b6a840ba1901aba36a5fd52b68b4ae401ac23e074a1d71c2b0629ed3079b +docfiles size=1639 + RELOC/doc/latex/tools/README.md + RELOC/doc/latex/tools/README.txt details="Readme" RELOC/doc/latex/tools/afterpage.pdf RELOC/doc/latex/tools/array.pdf RELOC/doc/latex/tools/bm.pdf @@ -165946,6 +283566,7 @@ docfiles size=1585 RELOC/doc/latex/tools/manifest.txt RELOC/doc/latex/tools/multicol.pdf RELOC/doc/latex/tools/rawfonts.pdf + RELOC/doc/latex/tools/shellesc.pdf RELOC/doc/latex/tools/showkeys.pdf RELOC/doc/latex/tools/somedefs.pdf RELOC/doc/latex/tools/tabularx.pdf @@ -165957,7 +283578,9 @@ docfiles size=1585 RELOC/doc/latex/tools/verbatim.pdf RELOC/doc/latex/tools/xr.pdf RELOC/doc/latex/tools/xspace.pdf -srcfiles size=252 +srccontainersize 220572 +srccontainerchecksum 21281bfda35aecd345a86571057aeedc87da531ebbc00943f52b4a017e7ba6f5c36a27314cd72af023d7aa9bdda39bd6f33d4057a8a5b02a0e51162ebb9884ad +srcfiles size=259 RELOC/source/latex/tools/afterpage.dtx RELOC/source/latex/tools/afterpage.ins RELOC/source/latex/tools/array.dtx @@ -165978,6 +283601,7 @@ srcfiles size=252 RELOC/source/latex/tools/multicol.dtx RELOC/source/latex/tools/multicol.ins RELOC/source/latex/tools/rawfonts.dtx + RELOC/source/latex/tools/shellesc.dtx RELOC/source/latex/tools/showkeys.dtx RELOC/source/latex/tools/somedefs.dtx RELOC/source/latex/tools/tabularx.dtx @@ -165990,31 +283614,151 @@ srcfiles size=252 RELOC/source/latex/tools/verbatim.dtx RELOC/source/latex/tools/xr.dtx RELOC/source/latex/tools/xspace.dtx +runfiles size=89 + RELOC/tex/latex/tools/.tex + RELOC/tex/latex/tools/afterpage.sty + RELOC/tex/latex/tools/array-2016-10-06.sty + RELOC/tex/latex/tools/array.sty + RELOC/tex/latex/tools/bm.sty + RELOC/tex/latex/tools/calc.sty + RELOC/tex/latex/tools/dcolumn.sty + RELOC/tex/latex/tools/delarray.sty + RELOC/tex/latex/tools/e.tex + RELOC/tex/latex/tools/enumerate.sty + RELOC/tex/latex/tools/fontsmpl.sty + RELOC/tex/latex/tools/fontsmpl.tex + RELOC/tex/latex/tools/ftnright.sty + RELOC/tex/latex/tools/h.tex + RELOC/tex/latex/tools/hhline.sty + RELOC/tex/latex/tools/indentfirst.sty + RELOC/tex/latex/tools/layout.sty + RELOC/tex/latex/tools/longtable.sty + RELOC/tex/latex/tools/multicol-2017-04-11.sty + RELOC/tex/latex/tools/multicol.sty + RELOC/tex/latex/tools/q.tex + RELOC/tex/latex/tools/r.tex + RELOC/tex/latex/tools/rawfonts.sty + RELOC/tex/latex/tools/s.tex + RELOC/tex/latex/tools/shellesc.sty + RELOC/tex/latex/tools/showkeys.sty + RELOC/tex/latex/tools/somedefs.sty + RELOC/tex/latex/tools/tabularx.sty + RELOC/tex/latex/tools/thb.sty + RELOC/tex/latex/tools/thc.sty + RELOC/tex/latex/tools/thcb.sty + RELOC/tex/latex/tools/theorem.sty + RELOC/tex/latex/tools/thm.sty + RELOC/tex/latex/tools/thmb.sty + RELOC/tex/latex/tools/thp.sty + RELOC/tex/latex/tools/trace.sty + RELOC/tex/latex/tools/varioref.sty + RELOC/tex/latex/tools/verbatim.sty + RELOC/tex/latex/tools/verbtest.tex + RELOC/tex/latex/tools/x.tex + RELOC/tex/latex/tools/xr.sty + RELOC/tex/latex/tools/xspace.sty catalogue-ctan /macros/latex/required/tools -catalogue-date 2015-04-13 07:39:17 +0200 +catalogue-date 2019-01-05 22:09:35 +0100 catalogue-license lppl1.3 +catalogue-topics collection name topfloat category Package revision 19084 -shortdesc Move floats to the top of the page. +shortdesc Move floats to the top of the page relocated 1 -runfiles size=1 - RELOC/tex/latex/topfloat/topfloat.sty +containersize 1392 +containerchecksum a4e4031292203a04a1df1dc5e6bd4f6b89c8806599d995707fa0dfc238bcb3dd1ecf185665db33a406302567607da5640f385f12cffb46f482993850b78155a0 +doccontainersize 40340 +doccontainerchecksum 6c37c3b9ad32a121eb03f23049e11fe52b7cf6d49353e94a18eb39aaed3c049bee86ef6c6984440c9700546f20023f7a71975591c1f3750d31e176e8ba4f4c47 docfiles size=15 - RELOC/doc/latex/topfloat/topfloat.pdf + RELOC/doc/latex/topfloat/topfloat.pdf details="Package documentation" language="it" RELOC/doc/latex/topfloat/topfloat.tex +runfiles size=1 + RELOC/tex/latex/topfloat/topfloat.sty catalogue-ctan /macros/latex/contrib/topfloat -catalogue-date 2012-08-24 15:51:53 +0200 +catalogue-date 2016-06-18 16:48:54 +0200 catalogue-license gpl +catalogue-topics float + +name topiclongtable +category Package +revision 50629 +shortdesc Extend longtable with cells that merge hierarchically +relocated 1 +longdesc This LaTeX package extends longtable implementing cells that: +longdesc merge with the one above if it has the same content, do not +longdesc merge with the one above unless the ones on the left are +longdesc merged, are well behaved with respect to longtable chunking on +longdesc page breaks, and automatically draw the correct separation +longdesc lines. The typical use case is a table spanning multiple pages +longdesc that contains a list of hierarchically organized topics (hence +longdesc the package name). +containersize 4360 +containerchecksum 3a2831a620774448654fc2ad7290dfba06b328edff0655930eb45ffd07c70d0a789c7b141bf6a961555a1b26574736bd20ce01fdac9b191827c48f69ac0cb40b +doccontainersize 379924 +doccontainerchecksum b0eb6c4fb3cae99fed019580cb9b99c29055ace3778203c85557fe01f64f520fb6a9c8eec85a15565a0fd2c73174de1f4ecfee3fc5424d8ca741954fbb80eba6 +docfiles size=97 + RELOC/doc/latex/topiclongtable/README.md details="Readme" + RELOC/doc/latex/topiclongtable/topiclongtable-doc.pdf details="Package documentation" + RELOC/doc/latex/topiclongtable/topiclongtable-doc.tex +runfiles size=4 + RELOC/tex/latex/topiclongtable/topiclongtable.sty +catalogue-contact-bugs https://github.com/paolobrasolin/topiclongtable/issues +catalogue-contact-development https://github.com/paolobrasolin/topiclongtable +catalogue-contact-home https://github.com/paolobrasolin/topiclongtable +catalogue-contact-repository https://github.com/paolobrasolin/topiclongtable +catalogue-ctan /macros/latex/contrib/topiclongtable +catalogue-date 2019-03-27 22:00:53 +0100 +catalogue-license mit +catalogue-topics table-long +catalogue-version 1.3.0 + +name topletter +category Package +revision 48182 +shortdesc Letter class for the Politecnico di Torino +relocated 1 +longdesc This package provides a LaTeX class for typesetting letters +longdesc conforming to the official Corporate Image guidelines for the +longdesc Politecnico di Torino. The class can be used for letters +longdesc written in Italian and in English. +containersize 2552 +containerchecksum 1c583621d738ff203ef755c4ab6d4ad520fe25204c882b3b5b1dc719590cc4ae117502008f0b2ef67486f33127e6eab92a2177aed42a8e011c9309632ce1fda1 +doccontainersize 363444 +doccontainerchecksum 2fcaee9c15adec307e5cbbc4e71dadd2bfe2158f51d5bb842ea6faf1e10487f5881d171e29a48ac7c6c6ce52bae7bffee91772dd046311959167b11ddac8328c +docfiles size=132 + RELOC/doc/latex/topletter/EsempioLettera.pdf details="Example of use (Italian)" language="it" + RELOC/doc/latex/topletter/EsempioLettera.tex + RELOC/doc/latex/topletter/ExampleLetter.pdf details="Example of use (English)" + RELOC/doc/latex/topletter/ExampleLetter.tex + RELOC/doc/latex/topletter/LICENSE + RELOC/doc/latex/topletter/LogoPolitoBlu.pdf + RELOC/doc/latex/topletter/README.md details="Readme" + RELOC/doc/latex/topletter/TOPletter.pdf details="Package documentation" + RELOC/doc/latex/topletter/Walt_Disney_1942_signature.pdf +srccontainersize 6292 +srccontainerchecksum b22e020b8fc477da1316c9f36818d9508f45bd3259e03e2cb096aef984cf655b1171069135001301f9be631c7bfb99e63ed7dc95af968be0700c8027b6484f45 +srcfiles size=6 + RELOC/source/latex/topletter/TOPletter.dtx + RELOC/source/latex/topletter/TOPletter.ins +runfiles size=2 + RELOC/tex/latex/topletter/TOPletter.cls +catalogue-contact-bugs https://github.com/mtorchiano/TOPLetter/issues +catalogue-contact-repository https://github.com/mtorchiano/TOPLetter +catalogue-ctan /macros/latex/contrib/topletter +catalogue-date 2018-07-12 05:30:29 +0200 +catalogue-license apache2 +catalogue-topics letter class italian +catalogue-version 0.3.0 name toptesi category Package -revision 35916 -shortdesc Bundle for typesetting multilanguage theses. +revision 51022 +shortdesc Bundle for typesetting multilanguage theses relocated 1 -longdesc This bundle contains everything is needed for typesetting a -longdesc bachelor, master or PhD thesis in Italian (or in any other +longdesc This bundle contains everything needed for typesetting a +longdesc bachelor, master, or PhD thesis in Italian (or in any other longdesc language supported by LaTeX: the bundle is constructed to longdesc support multilingual use). The infix strings may be selected longdesc and specified at will by means of a configuration file, so as @@ -166025,112 +283769,148 @@ longdesc more and more frequent thanks to the double degree programs of longdesc the European Community Socrates programs. Toptesi is designed longdesc to save the PDF version of a thesis in PDF/A-1b compliant mode longdesc and with all the necessary metadata. -runfiles size=14 - RELOC/tex/latex/toptesi/topcoman.sty - RELOC/tex/latex/toptesi/topfront.sty - RELOC/tex/latex/toptesi/toptesi.cfg - RELOC/tex/latex/toptesi/toptesi.cls - RELOC/tex/latex/toptesi/toptesi.sty -docfiles size=944 +containersize 19596 +containerchecksum dded3f6d9b21dce2d8543a1671c9a585b14db2b4033706b3f6376f988866db907a14ecd29b75c99f70cc68673810c30dda6bbbbc2f765f96734e439e73e2976e +doccontainersize 5760132 +doccontainerchecksum 943ec8e52419850f89204b88546edf909cf99ecc8edd1d1dd8db0729560f883e14c542b829753633bebfb1b8926e9ba1afe3f4812570b55855604121e3096a74 +docfiles size=2185 RELOC/doc/latex/toptesi/FrontespiziAssemblati.pdf - RELOC/doc/latex/toptesi/FrontespiziAssemblati.tex RELOC/doc/latex/toptesi/FrontespiziAssemblati1.pdf - RELOC/doc/latex/toptesi/FrontespiziAssemblati1.tex RELOC/doc/latex/toptesi/FrontespiziAssemblati2.pdf - RELOC/doc/latex/toptesi/LPPL.tex - RELOC/doc/latex/toptesi/LoghiFinti.pdf - RELOC/doc/latex/toptesi/LoghiFinti.tex - RELOC/doc/latex/toptesi/README + RELOC/doc/latex/toptesi/Frontespizio-sss.pdf + RELOC/doc/latex/toptesi/FrontespizioLandscape.pdf + RELOC/doc/latex/toptesi/FrontespizioScudo.pdf RELOC/doc/latex/toptesi/README.TEXLIVE - RELOC/doc/latex/toptesi/Toptesi-con-ambiente-frontespizio.pdf - RELOC/doc/latex/toptesi/Toptesi-con-ambiente-frontespizio.tex - RELOC/doc/latex/toptesi/frontespizi-xetex.pdf - RELOC/doc/latex/toptesi/frontespizi-xetex.tex - RELOC/doc/latex/toptesi/frontespizi1-xetex.pdf - RELOC/doc/latex/toptesi/frontespizi1-xetex.tex - RELOC/doc/latex/toptesi/frontespizi2-xetex.pdf - RELOC/doc/latex/toptesi/frontespizi2-xetex.tex - RELOC/doc/latex/toptesi/frontespizi3-xetex.pdf - RELOC/doc/latex/toptesi/frontespizi3-xetex.tex - RELOC/doc/latex/toptesi/manifest.txt + RELOC/doc/latex/toptesi/README.txt details="Readme" language="en" + RELOC/doc/latex/toptesi/TITDocScCropped.pdf + RELOC/doc/latex/toptesi/Toptesi-con-topfront.pdf + RELOC/doc/latex/toptesi/Toptesi-con-topfront.tex + RELOC/doc/latex/toptesi/Toptesi-example-topfront.pdf + RELOC/doc/latex/toptesi/Toptesi-example-topfront.tex + RELOC/doc/latex/toptesi/VeraPDFiniziale.jpg + RELOC/doc/latex/toptesi/lppl.tex RELOC/doc/latex/toptesi/topfront-example.pdf RELOC/doc/latex/toptesi/topfront-example.tex RELOC/doc/latex/toptesi/toptesi-example-con-frontespizio.pdf RELOC/doc/latex/toptesi/toptesi-example-con-frontespizio.tex + RELOC/doc/latex/toptesi/toptesi-example-dottorale.pdf + RELOC/doc/latex/toptesi/toptesi-example-dottorale.tex + RELOC/doc/latex/toptesi/toptesi-example-luatex.pdf + RELOC/doc/latex/toptesi/toptesi-example-luatex.tex + RELOC/doc/latex/toptesi/toptesi-example-magistrale.pdf + RELOC/doc/latex/toptesi/toptesi-example-magistrale.tex + RELOC/doc/latex/toptesi/toptesi-example-sss.pdf + RELOC/doc/latex/toptesi/toptesi-example-sss.tex + RELOC/doc/latex/toptesi/toptesi-example-triennale.pdf + RELOC/doc/latex/toptesi/toptesi-example-triennale.tex RELOC/doc/latex/toptesi/toptesi-example-xetex.pdf RELOC/doc/latex/toptesi/toptesi-example-xetex.tex RELOC/doc/latex/toptesi/toptesi-example.cfg RELOC/doc/latex/toptesi/toptesi-example.pdf RELOC/doc/latex/toptesi/toptesi-example.tex - RELOC/doc/latex/toptesi/toptesi-example.xmpdata - RELOC/doc/latex/toptesi/toptesi-it-xetex-def.ps - RELOC/doc/latex/toptesi/toptesi-it-xetex.cfg - RELOC/doc/latex/toptesi/toptesi-it-xetex.pdf - RELOC/doc/latex/toptesi/toptesi-it-xetex.tex - RELOC/doc/latex/toptesi/toptesi.pdf -srcfiles size=39 + RELOC/doc/latex/toptesi/toptesi-it.pdf details="Class documentation (Italian)" language="it" + RELOC/doc/latex/toptesi/toptesi-it.tex + RELOC/doc/latex/toptesi/toptesi-scudo-example.zip + RELOC/doc/latex/toptesi/toptesi.pdf details="Package documentation" + RELOC/doc/latex/toptesi/veraPDFconformance.jpg + RELOC/doc/latex/toptesi/veraPDFnoconformance.jpg +srccontainersize 92204 +srccontainerchecksum b733ad4bc273ab093cf6b61d2a9c5b14fc8139e4d4a8188de031f33375ed3326e20db8377401e588cd5ed4f45a5426d97a69ad5e5090f4471bb85e342815e044 +srcfiles size=95 RELOC/source/latex/toptesi/toptesi.dtx +runfiles size=39 + RELOC/tex/latex/toptesi/topcoman.sty + RELOC/tex/latex/toptesi/topfront.sty + RELOC/tex/latex/toptesi/toptesi-dottorale.sty + RELOC/tex/latex/toptesi/toptesi-magistrale.sty + RELOC/tex/latex/toptesi/toptesi-monografia.sty + RELOC/tex/latex/toptesi/toptesi-scudo.sty + RELOC/tex/latex/toptesi/toptesi-sss.sty + RELOC/tex/latex/toptesi/toptesi.cfg + RELOC/tex/latex/toptesi/toptesi.cls + RELOC/tex/latex/toptesi/toptesi.sty catalogue-ctan /macros/latex/contrib/toptesi -catalogue-date 2014-12-28 08:03:05 +0100 -catalogue-license lppl1.3 -catalogue-version 5.86f +catalogue-date 2019-05-06 19:12:30 +0200 +catalogue-license lppl1.3c +catalogue-topics dissertation class multilingual +catalogue-version 6.3.04 name totcount category Package revision 21178 -shortdesc Find the last value of a counter. +shortdesc Find the last value of a counter relocated 1 longdesc The package records the value that was last set, for any longdesc counter of interest; since most such counters are simply longdesc incremented when they are changed, the recorded value will longdesc usually be the maximum value. -runfiles size=2 - RELOC/tex/latex/totcount/totcount.sty +containersize 2272 +containerchecksum 03ece717c7db3820cf41192e3bad2711e159fcb8a5a5a185e1c55335364917a515d9dd691cf1890421a8c62c9e55bdc49cb13718f7d98d9df34a2470cfff0daf +doccontainersize 286576 +doccontainerchecksum 46ef8cd2317108d0896b32ba9104c69fb34a6d13d1e123d6b8f1648bfdfffa6bb21f17207433dd763451b1f6c104ae3532e7aac43ef2ba73281842f0a3bcd05e docfiles size=72 - RELOC/doc/latex/totcount/README + RELOC/doc/latex/totcount/README details="Readme" RELOC/doc/latex/totcount/totcount-ex.tex - RELOC/doc/latex/totcount/totcount.pdf + RELOC/doc/latex/totcount/totcount.pdf details="Package documentation" +srccontainersize 6680 +srccontainerchecksum 1820b0b44434650c072a67a4c6144beb7a34129415a4ae298b9c97efd7e81d3396ddb6e4a03081a19962001c8c01a4cdda563c20ba19bda1411e4832d5e7fd14 srcfiles size=8 RELOC/source/latex/totcount/totcount.drv RELOC/source/latex/totcount/totcount.dtx RELOC/source/latex/totcount/totcount.ins +runfiles size=2 + RELOC/tex/latex/totcount/totcount.sty +catalogue-also lastpage totpages catalogue-ctan /macros/latex/contrib/totcount -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics macro-supp counter-mgmt catalogue-version 1.2 name totpages category Package revision 15878 -shortdesc Count pages in a document, and report last page number. +shortdesc Count pages in a document, and report last page number relocated 1 longdesc The package counts the actual pages in the document (as opposed longdesc to reporting the number of the last page, as does lastpage). longdesc The counter itself may be shipped out to the DVI file. The longdesc package uses the everyshi package for its task. -runfiles size=2 - RELOC/tex/latex/totpages/totpages.sty +containersize 3032 +containerchecksum 8dbfcf7728690d6c2a20f661daf62e80c00d3f08fd00aee7a07cbddd31f6adf8f38e32623b2963748367ea08dd3c95919ab576b22d70214a2f5f4f07c40374f1 +doccontainersize 177300 +doccontainerchecksum 58cb9d30644402a68462e0b00b6175ec4a002135eae0bb16ad2cb5b919d1dd6b93583074a0723e1c55946e7d94dab506b8527a67d7d7b39be20608207bae5626 docfiles size=52 - RELOC/doc/latex/totpages/README + RELOC/doc/latex/totpages/README details="Readme" RELOC/doc/latex/totpages/totexmpl.tex - RELOC/doc/latex/totpages/totpages.pdf + RELOC/doc/latex/totpages/totpages.pdf details="Package documentation" +srccontainersize 9836 +srccontainerchecksum 2ac7e8e8f7b79721fdbc6cfcf9d5d81d80b64f60a535435ec13335e1b6059c01001003ab87d9ab8fff4323575a0fbaf6e8a3569670eeb5411be495d9fd712a1a srcfiles size=9 RELOC/source/latex/totpages/totpages.drv RELOC/source/latex/totpages/totpages.dtx RELOC/source/latex/totpages/totpages.ins +runfiles size=2 + RELOC/tex/latex/totpages/totpages.sty +catalogue-also count1to catalogue-ctan /macros/latex/contrib/totpages -catalogue-date 2012-03-07 12:52:16 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics label-ref typesetting catalogue-version 2.00 name tpic2pdftex category TLCore -revision 37078 -shortdesc Use tpic commands in PDFTeX. +revision 50602 +shortdesc Use tpic commands in pdfTeX longdesc The AWK script converts pic language, embedded inline longdesc (delimited by .PS and .PE markers), to \pdfliteral commands. depend tpic2pdftex.ARCH -docfiles size=23 +containersize 440 +containerchecksum 3a0bfba17911731b52960646914da0050a6928b2b433c84140ccbe63835d816f018cea4b16a8513b447c7490fcfd610cbf7a48c8cb0d5dc67ee925c238361b14 +doccontainersize 54396 +doccontainerchecksum b2734d86215332e7898e611ee12880c559b095468881c9ec1f15696a182afaa2f056c46ebdcf4cd69427e9716ed70b1cf50f72384d9f698e644e8b2fe9d3a1a6 +docfiles size=26 texmf-dist/doc/man/man1/tpic2pdftex.1 texmf-dist/doc/man/man1/tpic2pdftex.man1.pdf texmf-dist/doc/tpic2pdftex/Makefile @@ -166139,20 +283919,149 @@ docfiles size=23 texmf-dist/doc/tpic2pdftex/example.pdf texmf-dist/doc/tpic2pdftex/example.pic catalogue-ctan /graphics/tpic2pdftex -catalogue-date 2015-03-27 20:48:30 +0100 +catalogue-date 2017-06-27 04:58:12 +0200 catalogue-license gpl +catalogue-topics graphics-prep + +name tpic2pdftex.aarch64-linux +category TLCore +revision 46208 +shortdesc aarch64-linux files of tpic2pdftex +containersize 4324 +containerchecksum e5a7f430eda8f2d3f7d02d2599e8407f3d5b4f5c26bc464de92c5c84db9f7d6b28c202b2884103ce011cbe2acfc4a8a0ed26ffe6c9e4d6309947c6cf35ad9304 +binfiles arch=aarch64-linux size=4 + bin/aarch64-linux/tpic2pdftex + +name tpic2pdftex.amd64-freebsd +category TLCore +revision 29785 +shortdesc amd64-freebsd files of tpic2pdftex +containersize 4328 +containerchecksum 564d07851de7d71dbfd0487cc55c7607ac5d30e8581119b6689d32bba744e3505a124e22a4f393577311cba82b7ca4e2755ef733c8eee1ce5312b40b476dbbbd +binfiles arch=amd64-freebsd size=4 + bin/amd64-freebsd/tpic2pdftex + +name tpic2pdftex.amd64-netbsd +category TLCore +revision 30191 +shortdesc amd64-netbsd files of tpic2pdftex +containersize 4332 +containerchecksum f37d1eed22ee9caf0a9de53cc845c55b420bb174170a347c5dd40910b141d9c925dbeefb01481c0c9cc972a032b9bb2a57dd0981a4c64c4477186c004f9a220e +binfiles arch=amd64-netbsd size=4 + bin/amd64-netbsd/tpic2pdftex + +name tpic2pdftex.armhf-linux +category TLCore +revision 30015 +shortdesc armhf-linux files of tpic2pdftex +containersize 4332 +containerchecksum 2974c3d8b9f3eb57c7ff192093d45da9d6b74701febc869d43ee2289d659c4527810e3d3beea314d2e4962726894da9343d056feea9620ff822fe5e52f5501d2 +binfiles arch=armhf-linux size=4 + bin/armhf-linux/tpic2pdftex + +name tpic2pdftex.i386-cygwin +category TLCore +revision 29836 +shortdesc i386-cygwin files of tpic2pdftex +containersize 4328 +containerchecksum 90b31b53979a5d14d0ee49be004a44e32d6ecd74f37ada3a9790a289a861df32baf2fc53c24d72a713eb3c3a65f69230df62e788b39ab1b9f259c218a3653a43 +binfiles arch=i386-cygwin size=4 + bin/i386-cygwin/tpic2pdftex + +name tpic2pdftex.i386-freebsd +category TLCore +revision 29785 +shortdesc i386-freebsd files of tpic2pdftex +containersize 4332 +containerchecksum 1119c9221492bd8ebf8285cea1e1da5327b04d99ac33ad8d9f4ea6fbc2f7f6cf08cb615cda54e68826782dd3bf7b20712078bf32dcfe3172e5a91e1e92b43f24 +binfiles arch=i386-freebsd size=4 + bin/i386-freebsd/tpic2pdftex name tpic2pdftex.i386-linux category TLCore -revision 29741 +revision 50281 shortdesc i386-linux files of tpic2pdftex +containersize 4296 +containerchecksum 15c6b0ba881b7ae22a7142d2b610ba778fee7ec361c667e4f82e175c867635eef58978e5aa5d7804251109e0c0697ca6fc6b9b46316c5ad80688f59941226d4c binfiles arch=i386-linux size=4 bin/i386-linux/tpic2pdftex +name tpic2pdftex.i386-netbsd +category TLCore +revision 30191 +shortdesc i386-netbsd files of tpic2pdftex +containersize 4328 +containerchecksum 25b3734a41e6c8642490f17b94acc3ee0d3757b905bfc910a678394e82ae612c5b44e0cdf384ad5db634fc489b6d2592ed5aec649d1b8958d22faacfb159e3a4 +binfiles arch=i386-netbsd size=4 + bin/i386-netbsd/tpic2pdftex + +name tpic2pdftex.i386-solaris +category TLCore +revision 29806 +shortdesc i386-solaris files of tpic2pdftex +containersize 4320 +containerchecksum 2b40ee4303001945db1d8b1911c91b3bfac10808f320836588a7461c6576be20d9055a4042388fe50c53bb7a3be32423f1c434bbb2145259dba00b7f1bd73c0b +binfiles arch=i386-solaris size=4 + bin/i386-solaris/tpic2pdftex + +name tpic2pdftex.x86_64-cygwin +category TLCore +revision 33557 +shortdesc x86_64-cygwin files of tpic2pdftex +containersize 4324 +containerchecksum da364856edcb9bedc71be8c2a6cd9b35ef76a7d92fb61b5e8f6bf5368e552e6f01541f3b6c5c05c48a028c646bf02e731e197aa93dd7c3fe5c42f8b696e1e976 +binfiles arch=x86_64-cygwin size=4 + bin/x86_64-cygwin/tpic2pdftex + +name tpic2pdftex.x86_64-darwin +category TLCore +revision 29809 +shortdesc x86_64-darwin files of tpic2pdftex +containersize 4328 +containerchecksum 42bce3601ad3117d26a39ea4ac7aafea19f71903040ff68399c8e37a9c572742d94f85babcf8d838c07b4b875347f35cc0ee25a52ee7656cfb4d99719f0f065c +binfiles arch=x86_64-darwin size=4 + bin/x86_64-darwin/tpic2pdftex + +name tpic2pdftex.x86_64-darwinlegacy +category TLCore +revision 43871 +shortdesc x86_64-darwinlegacy files of tpic2pdftex +containersize 4332 +containerchecksum 1542b30873ff38ed1f6bb7d508338b0d4146838d01d9c1bdcc5b3b0a345b5a779f4a69dc11aa67652552083060165f981f45d3c63cc4e7e35a7800a2b5b34e77 +binfiles arch=x86_64-darwinlegacy size=4 + bin/x86_64-darwinlegacy/tpic2pdftex + +name tpic2pdftex.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of tpic2pdftex +containersize 4292 +containerchecksum 0178b3e1bae658987947d438df32467d8ff3f6d6d0d68ab1f74c49996948e04b26c2d193b1c7c24aeccfd65dd87935bdf18db94416cb730460d880ee3cad1fc8 +binfiles arch=x86_64-linux size=4 + bin/x86_64-linux/tpic2pdftex + +name tpic2pdftex.x86_64-linuxmusl +category TLCore +revision 46840 +shortdesc x86_64-linuxmusl files of tpic2pdftex +containersize 4304 +containerchecksum 846a74df783c71405d2e1c20fde8b75b687c90320b961558ea375f780a37e2b1a1e93d97d8a2fa41e0e94bccea8621698963d60033e9746817a87ec6b173534b +binfiles arch=x86_64-linuxmusl size=4 + bin/x86_64-linuxmusl/tpic2pdftex + +name tpic2pdftex.x86_64-solaris +category TLCore +revision 29807 +shortdesc x86_64-solaris files of tpic2pdftex +containersize 4328 +containerchecksum 0f07c629f3af9b68e171d1bf45668bf1b83f4875f9ccd67400e897e86939d82c896ef5e3d23d33ab6950db352f59cba981dded5faa512b43254375faad0234fc +binfiles arch=x86_64-solaris size=4 + bin/x86_64-solaris/tpic2pdftex + name tpslifonts category Package -revision 27464 -shortdesc A LaTeX package for configuring presentation fonts. +revision 42428 +shortdesc A LaTeX package for configuring presentation fonts relocated 1 longdesc This package aims to improve of font readability in longdesc presentations, especially with maths. The standard cm maths @@ -166168,49 +284077,66 @@ longdesc computer modern sans serif, computer modern bright, or concrete longdesc roman are available, in addition to maths fonts from computer longdesc modern maths, computer modern bright maths, or Euler fonts. The longdesc package is part of the TeXPower bundle. -runfiles size=8 - RELOC/tex/latex/tpslifonts/tpslifonts.sty +containersize 5356 +containerchecksum 0394101636f394f04c38b6677f921136f74e3c8abccff199d4c972ede085c3915e2fe9bbc5b239044dd8f24b405cfc34b5c736a7cd03b749b6aeaf7feb15f5e4 +doccontainersize 15044 +doccontainerchecksum e5be9024a02669212044844ad0e99b72faae15c62fb0c9065c8a5e3beb852968cf4cd4744d01890534df5a540bd1066749d999e919afd7d791b4e9ca7dd3c26c docfiles size=18 RELOC/doc/latex/tpslifonts/00readme.txt RELOC/doc/latex/tpslifonts/01install.txt RELOC/doc/latex/tpslifonts/Makefile RELOC/doc/latex/tpslifonts/slifontsexample.tex +srccontainersize 10492 +srccontainerchecksum d55ebdf58c24f9d68f7a69fab79b8486c46d4d23714d9e1d2365320457ca60275449492482d5d28c4c8a2c884074bbe74874f509c60d66f49b6deb2a06925c9d srcfiles size=14 RELOC/source/latex/tpslifonts/tpslifonts.dtx RELOC/source/latex/tpslifonts/tpslifonts.ins +runfiles size=8 + RELOC/tex/latex/tpslifonts/tpslifonts.sty catalogue-ctan /macros/latex/contrib/texpower/tpslifonts -catalogue-date 2014-05-31 20:41:06 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics presentation font-use catalogue-version 0.6 name tqft category Package -revision 33411 -shortdesc Drawing TQFT diagrams with TikZ/PGF. +revision 44455 +shortdesc Drawing TQFT diagrams with TikZ/PGF relocated 1 longdesc The package defines some node shapes useful for drawing TQFT longdesc diagrams with TikZ/PGF. That is, it defines highly customisable longdesc shapes that look like cobordisms between circles, such as those longdesc used in TQFT and other mathematical diagrams. -runfiles size=13 - RELOC/tex/latex/tqft/tikzlibrarytqft.code.tex - RELOC/tex/latex/tqft/tqft.sty -docfiles size=116 +containersize 6808 +containerchecksum 0bd44773d17cdaac4e3490dbca1fe038bb18e50d057d6adee53b32d6127ec844e3ae9b8f0f671969c8a00e0df01eca9fd93f27e85fc1ebcf03966e6c82b53f8f +doccontainersize 692732 +doccontainerchecksum 0b6c66aefec59955214299a99eaf4949900fb294e7f1eb904efdfc0de3aa85c5fa38961073ba3f7a3c60f26688c28e6f1bb5ea2c32751062fb3231edc4607f0f +docfiles size=193 RELOC/doc/latex/tqft/README - RELOC/doc/latex/tqft/tqft_doc.pdf + RELOC/doc/latex/tqft/tqft.pdf details="Package documentation" + RELOC/doc/latex/tqft/tqft_code.pdf details="Annotated code" RELOC/doc/latex/tqft/tqft_doc.tex +srccontainersize 12520 +srccontainerchecksum afea6aaf0250f9c9307479d587e844b3f391e387a4d2b6bf83b1eb2e63459d132cf0da38160bbcbeba0eaf1fc8401c9c21dec9dbc8a5e54aebeb1bd25a357445 srcfiles size=21 RELOC/source/latex/tqft/tqft.dtx RELOC/source/latex/tqft/tqft.ins +runfiles size=14 + RELOC/tex/latex/tqft/tikzlibrarytqft.code.tex + RELOC/tex/latex/tqft/tqft.sty +catalogue-contact-home https://github.com/loopspace/TQFT +catalogue-contact-repository https://github.com/loopspace/TQFT catalogue-ctan /macros/latex/contrib/tqft -catalogue-date 2014-04-08 15:56:54 +0200 +catalogue-date 2017-06-01 14:43:33 +0200 catalogue-license lppl1.3 -catalogue-version 2.0 +catalogue-topics diagram graphics-use +catalogue-version 2.1 name tracklang category Package -revision 36603 -shortdesc Language and dialect tracker. +revision 47704 +shortdesc Language and dialect tracker relocated 1 longdesc The tracklang package is provided for package developers who longdesc want a simple interface to find out which languages the user @@ -166218,54 +284144,70 @@ longdesc has requested through packages such as babel or polyglossia. longdesc This package does not provide any translations! Its purpose is longdesc simply to track which languages have been requested by the longdesc user. Generic TeX code is in tracklang.tex for non-LaTeX users. -runfiles size=17 - RELOC/tex/generic/tracklang/tracklang.tex - RELOC/tex/latex/tracklang/tracklang.sty -docfiles size=204 +containersize 17260 +containerchecksum a3a608019270fed7ee5d72615d491371a24f2843b0c94908d2c02c91ab3be9ed58aaac68e7cee8a8ced1247fc956e6d860b1e87d0bd51d958cf5e62dbad0437b +doccontainersize 916780 +doccontainerchecksum 43e4b03365cfa613b630e36f94c4baee286063836de7e7cd08d31e9fd5b5c57fccb2f4c0b82cd9c31559fe0abfb09a7d16a5378c035baf10cdebf3c0135616d9 +docfiles size=314 RELOC/doc/generic/tracklang/CHANGES - RELOC/doc/generic/tracklang/README + RELOC/doc/generic/tracklang/README details="Readme" RELOC/doc/generic/tracklang/samples/animals/animals-en-GB.ldf RELOC/doc/generic/tracklang/samples/animals/animals-en-US.ldf RELOC/doc/generic/tracklang/samples/animals/animals-english.ldf + RELOC/doc/generic/tracklang/samples/animals/animals-german.ldf RELOC/doc/generic/tracklang/samples/animals/animals.sty RELOC/doc/generic/tracklang/samples/animals/animals2-en-GB.ldf RELOC/doc/generic/tracklang/samples/animals/animals2-en-US.ldf RELOC/doc/generic/tracklang/samples/animals/animals2-english.ldf + RELOC/doc/generic/tracklang/samples/animals/animals2-german.ldf RELOC/doc/generic/tracklang/samples/animals/animals2.sty - RELOC/doc/generic/tracklang/samples/animals/animals3-en-GB.ldf - RELOC/doc/generic/tracklang/samples/animals/animals3-en-US.ldf - RELOC/doc/generic/tracklang/samples/animals/animals3-english.ldf - RELOC/doc/generic/tracklang/samples/animals/animals3-german.ldf - RELOC/doc/generic/tracklang/samples/animals/animals3.sty + RELOC/doc/generic/tracklang/samples/animals/sample-animals-babel.pdf + RELOC/doc/generic/tracklang/samples/animals/sample-animals-babel.tex + RELOC/doc/generic/tracklang/samples/animals/sample-animals-de-poly.pdf + RELOC/doc/generic/tracklang/samples/animals/sample-animals-de-poly.tex + RELOC/doc/generic/tracklang/samples/animals/sample-animals-de.pdf + RELOC/doc/generic/tracklang/samples/animals/sample-animals-de.tex + RELOC/doc/generic/tracklang/samples/animals/sample-animals-poly.pdf + RELOC/doc/generic/tracklang/samples/animals/sample-animals-poly.tex RELOC/doc/generic/tracklang/samples/animals/sample-animals.pdf RELOC/doc/generic/tracklang/samples/animals/sample-animals.tex + RELOC/doc/generic/tracklang/samples/animals/sample-animals2-de.pdf + RELOC/doc/generic/tracklang/samples/animals/sample-animals2-de.tex + RELOC/doc/generic/tracklang/samples/animals/sample-animals2-de2.pdf + RELOC/doc/generic/tracklang/samples/animals/sample-animals2-de2.tex + RELOC/doc/generic/tracklang/samples/animals/sample-animals2-de3.pdf + RELOC/doc/generic/tracklang/samples/animals/sample-animals2-de3.tex + RELOC/doc/generic/tracklang/samples/animals/sample-animals2-de4.pdf + RELOC/doc/generic/tracklang/samples/animals/sample-animals2-de4.tex + RELOC/doc/generic/tracklang/samples/animals/sample-animals2-poly.pdf + RELOC/doc/generic/tracklang/samples/animals/sample-animals2-poly.tex RELOC/doc/generic/tracklang/samples/animals/sample-animals2.pdf RELOC/doc/generic/tracklang/samples/animals/sample-animals2.tex - RELOC/doc/generic/tracklang/samples/animals/sample-animals3-de.pdf - RELOC/doc/generic/tracklang/samples/animals/sample-animals3-de.tex - RELOC/doc/generic/tracklang/samples/animals/sample-animals3-de2.pdf - RELOC/doc/generic/tracklang/samples/animals/sample-animals3-de2.tex - RELOC/doc/generic/tracklang/samples/animals/sample-animals3-de3.pdf - RELOC/doc/generic/tracklang/samples/animals/sample-animals3-de3.tex - RELOC/doc/generic/tracklang/samples/animals/sample-animals3-de4.pdf - RELOC/doc/generic/tracklang/samples/animals/sample-animals3-de4.tex - RELOC/doc/generic/tracklang/samples/animals/sample-animals3-poly.pdf - RELOC/doc/generic/tracklang/samples/animals/sample-animals3-poly.tex - RELOC/doc/generic/tracklang/samples/animals/sample-animals3.pdf - RELOC/doc/generic/tracklang/samples/animals/sample-animals3.tex RELOC/doc/generic/tracklang/samples/regions/regions-BE.ldf RELOC/doc/generic/tracklang/samples/regions/regions-CA.ldf RELOC/doc/generic/tracklang/samples/regions/regions-GB.ldf + RELOC/doc/generic/tracklang/samples/regions/regions-IM.ldf RELOC/doc/generic/tracklang/samples/regions/regions-US.ldf RELOC/doc/generic/tracklang/samples/regions/regions-dutch.ldf RELOC/doc/generic/tracklang/samples/regions/regions-english.ldf RELOC/doc/generic/tracklang/samples/regions/regions-french.ldf RELOC/doc/generic/tracklang/samples/regions/regions-german.ldf RELOC/doc/generic/tracklang/samples/regions/regions-italian.ldf + RELOC/doc/generic/tracklang/samples/regions/regions-manx.ldf RELOC/doc/generic/tracklang/samples/regions/regions.sty RELOC/doc/generic/tracklang/samples/regions/regions2.sty RELOC/doc/generic/tracklang/samples/regions/sample-regions.pdf RELOC/doc/generic/tracklang/samples/regions/sample-regions.tex + RELOC/doc/generic/tracklang/samples/regions/sample-regions2-manx.pdf + RELOC/doc/generic/tracklang/samples/regions/sample-regions2-manx.tex + RELOC/doc/generic/tracklang/samples/regions/sample-regions2-map.pdf + RELOC/doc/generic/tracklang/samples/regions/sample-regions2-map.tex + RELOC/doc/generic/tracklang/samples/regions/sample-regions2-map2.pdf + RELOC/doc/generic/tracklang/samples/regions/sample-regions2-map2.tex + RELOC/doc/generic/tracklang/samples/regions/sample-regions2-map3.pdf + RELOC/doc/generic/tracklang/samples/regions/sample-regions2-map3.tex + RELOC/doc/generic/tracklang/samples/regions/sample-regions2-nomap.pdf + RELOC/doc/generic/tracklang/samples/regions/sample-regions2-nomap.tex RELOC/doc/generic/tracklang/samples/regions/sample-regions2.pdf RELOC/doc/generic/tracklang/samples/regions/sample-regions2.tex RELOC/doc/generic/tracklang/samples/sample-tracklang.pdf @@ -166280,19 +284222,28 @@ docfiles size=204 RELOC/doc/generic/tracklang/samples/sample-tracklang5.tex RELOC/doc/generic/tracklang/samples/sample-tracklang6.pdf RELOC/doc/generic/tracklang/samples/sample-tracklang6.tex - RELOC/doc/generic/tracklang/tracklang.pdf -srcfiles size=39 + RELOC/doc/generic/tracklang/tracklang.pdf details="Package documentation" +srccontainersize 51860 +srccontainerchecksum 1d47691f4ae9153d6666b6ebe2315d42391852ddc2fbc9e912484e3974df1faa790327a470d5a6be549196f158591554bf8f4ceff4abb31491b0d2a02069debf +srcfiles size=85 RELOC/source/latex/tracklang/tracklang.dtx RELOC/source/latex/tracklang/tracklang.ins +runfiles size=33 + RELOC/tex/generic/tracklang/tracklang-region-codes.tex + RELOC/tex/generic/tracklang/tracklang-scripts.tex + RELOC/tex/generic/tracklang/tracklang.tex + RELOC/tex/latex/tracklang/tracklang-scripts.sty + RELOC/tex/latex/tracklang/tracklang.sty catalogue-ctan /macros/generic/tracklang -catalogue-date 2015-03-23 20:26:19 +0100 +catalogue-date 2018-05-14 05:05:55 +0200 catalogue-license lppl1.3 -catalogue-version 1.2 +catalogue-topics package-devel class-supp +catalogue-version 1.3.6 name trajan category Package revision 15878 -shortdesc Fonts from the Trajan column in Rome. +shortdesc Fonts from the Trajan column in Rome relocated 1 longdesc Provides fonts (both as Metafont source and in Adobe Type 1 longdesc format) based on the capitals carved on the Trajan column in @@ -166301,6 +284252,20 @@ longdesc typographers think these rank first among the Roman's artistic longdesc legacy. The font is uppercase letters together with some longdesc punctuation and analphabetics; no lowercase or digits. execute addMixedMap trajan.map +containersize 46804 +containerchecksum 66fe869b94f489a3240078fa28da32fab71767d93befefca62fda3a39ae53ab975b13b7ddf84e490658e915c100f16225ea0ed8e7787b099bf4cb067a9fd4e09 +doccontainersize 172208 +doccontainerchecksum c6b6137d1952660b99bf077eae0ddc0f40b4ea9ff6308e4f461fd0e34c7b4b35b4ad79f3e42e4d0077c9d2947db642d0add032f2413d580748ba786a8abbf029 +docfiles size=57 + RELOC/doc/latex/trajan/README details="Readme" + RELOC/doc/latex/trajan/trajan.pdf details="Package documentation" + RELOC/doc/latex/trajan/trytrajan.pdf details="Font sample" + RELOC/doc/latex/trajan/trytrajan.tex +srccontainersize 20268 +srccontainerchecksum 36b85f870cd9b006f89df594193877a2188635be840636ae9300f511e5ab2a1ea60eac7f927ccb3e9832ab01972bf585460b47cf7ef30f36a6049ab0ce0fd95b +srcfiles size=21 + RELOC/source/latex/trajan/trajan.dtx + RELOC/source/latex/trajan/trajan.ins runfiles size=25 RELOC/fonts/afm/public/trajan/trjnr10.afm RELOC/fonts/afm/public/trajan/trjnsl10.afm @@ -166311,145 +284276,184 @@ runfiles size=25 RELOC/fonts/type1/public/trajan/trjnsl10.pfb RELOC/tex/latex/trajan/t1trjn.fd RELOC/tex/latex/trajan/trajan.sty -docfiles size=57 - RELOC/doc/latex/trajan/README - RELOC/doc/latex/trajan/trajan.pdf - RELOC/doc/latex/trajan/trytrajan.pdf - RELOC/doc/latex/trajan/trytrajan.tex -srcfiles size=21 - RELOC/source/latex/trajan/trajan.dtx - RELOC/source/latex/trajan/trajan.ins catalogue-ctan /fonts/trajan -catalogue-date 2014-05-31 20:51:30 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font font-archaic font-type1 font-mf catalogue-version 1.1 name tram category Package revision 29803 -shortdesc Typeset tram boxes in LaTeX. +shortdesc Typeset tram boxes in LaTeX relocated 1 longdesc Tram boxes are highlighted with patterns of dots; the package longdesc defines an environment tram that typesets its content into a longdesc tram box. The pattern used may be selected in an optional longdesc argument to the environment. +containersize 2528 +containerchecksum 4592a288c08f5bf6b41fdffee8129e08fec7397edb2b351617fe79571d2905be61cb776f87a5b152c4b62acefdf21ee2f0b293f210ce52f449d3b9e41833b2d5 +doccontainersize 29108 +doccontainerchecksum bfc46f516c2f81530ed7e648ef6774443502b580cf580b5fd5ea9f7be0311b33fb14156aca3f36bb4d74cc165dd33d0b8ef3ebbab5624f38239c281c7d7bda09 +docfiles size=9 + RELOC/doc/latex/tram/README details="Readme" + RELOC/doc/latex/tram/tram-doc.pdf details="Package documentation" + RELOC/doc/latex/tram/tram-doc.tex runfiles size=2 RELOC/fonts/source/public/tram/tram.mf RELOC/tex/latex/tram/tram.sty -docfiles size=9 - RELOC/doc/latex/tram/README - RELOC/doc/latex/tram/tram-doc.pdf - RELOC/doc/latex/tram/tram-doc.tex +catalogue-contact-bugs https://github.com/bidi-tex/tram/issues +catalogue-contact-repository https://github.com/bidi-tex/tram catalogue-ctan /macros/latex/contrib/tram -catalogue-date 2014-09-06 11:47:36 +0200 +catalogue-date 2018-11-28 21:10:31 +0100 catalogue-license lppl +catalogue-topics boxing decoration editorial catalogue-version 0.2 name translation-array-fr category Package revision 24344 -shortdesc French translation of the documentation of array. +shortdesc French translation of the documentation of array relocated 1 longdesc A French translation of the documentation of array. +containersize 384 +containerchecksum d32d6b397916bf631d65171f4f7de4bdb6049eec5414d1a9adbbe88d147ce2e4930a4f17b70c5c12b7ef9c3300d9eb099d63fb14ccd5478c6bfcd0557074b343 +doccontainersize 638988 +doccontainerchecksum 7d9b2e43f4fde3e6a3b7436a55b2095fbc4ffa31223019c1cbfdf3d623c48be406858cdb96c8693e10fd0023050ddfbb09b463a9a3804879945ac0d6aa616be4 docfiles size=188 RELOC/doc/latex/translation-array-fr/Copyright - RELOC/doc/latex/translation-array-fr/README + RELOC/doc/latex/translation-array-fr/README details="Readme" RELOC/doc/latex/translation-array-fr/f-array.dtx - RELOC/doc/latex/translation-array-fr/f-array.pdf + RELOC/doc/latex/translation-array-fr/f-array.pdf details="The translation" RELOC/doc/latex/translation-array-fr/ltxdoc.cfg catalogue-ctan /info/translations/array/fr -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics table matrix french-doc translation name translation-arsclassica-de category Package revision 23803 -shortdesc German version of arsclassica. +shortdesc German version of arsclassica relocated 1 longdesc This is a "translation" of the arsclassica documentation. +containersize 404 +containerchecksum 76ced8c2c93e35d6bee10f34a7de5709b8027f9d498f8fcd21ba776850c65e1e20eaf20528414b7d9da1891a2db7132b6e3b703c4f8d91f4ff0c69eb9159c996 +doccontainersize 358860 +doccontainerchecksum 58773adb7493e6ef31d8fd3854a51cd37921dd331f56f1d9eab5283c121fa8c3316ffc41242356a87af04bb6da68761ea15829e5e8555d2e6cdbb68833c8d313 docfiles size=98 - RELOC/doc/latex/translation-arsclassica-de/ArsClassica-de.pdf + RELOC/doc/latex/translation-arsclassica-de/ArsClassica-de.pdf details="Package documentation" language="de" RELOC/doc/latex/translation-arsclassica-de/ArsClassica-de.tex catalogue-ctan /info/translations/arsclassica/de -catalogue-date 2012-08-24 00:56:38 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics dissertation german-doc translation name translation-biblatex-de category Package -revision 24386 -shortdesc German translation of the documentation of biblatex. +revision 45592 +shortdesc German translation of the User Guide of BibLaTeX relocated 1 -longdesc A German translation of the documentation of biblatex. -docfiles size=394 - RELOC/doc/latex/translation-biblatex-de/README - RELOC/doc/latex/translation-biblatex-de/biblatex-de.pdf - RELOC/doc/latex/translation-biblatex-de/biblatex-de.tex +longdesc A German translation of the User Guide of BibLaTeX. +containersize 404 +containerchecksum 3968a37e0add02d6e31ad49b3a263ec35651c960d7132d1ecfa418888a51444430e8d6ffe4a92fd35ab3904ce6a7aa686085b412117cb282b7e2867a701625c0 +doccontainersize 712120 +doccontainerchecksum 8f945fd3a4a63ef8e0e6e979bd530f1d13d11eca7490697d0c94dbd43ab7e6608e3801539ccaa47c48c81c52e27a14587f4a48887ceff524a6e188cd80b551a4 +docfiles size=275 + RELOC/doc/latex/translation-biblatex-de/README details="Readme" + RELOC/doc/latex/translation-biblatex-de/biblatex-de-Benutzerhandbuch.pdf details="The translation" + RELOC/doc/latex/translation-biblatex-de/biblatex-de-Benutzerhandbuch.tex catalogue-ctan /info/translations/biblatex/de -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-10-24 11:14:04 +0200 catalogue-license lppl -catalogue-version 1.0 +catalogue-topics german-doc biblatex documentation +catalogue-version 3.0 name translation-chemsym-de category Package revision 23804 -shortdesc German version of chemsym. +shortdesc German version of chemsym relocated 1 longdesc This is a "translation" of the chemsym documentation. +containersize 396 +containerchecksum e23821fc1bbdee758e534bb52c4e0f348d6be3396ca2d8e3c11c9425132fc9c28f2bf6c98cb1beee9b23716cc1a75704561d9d8f16d2f4e94851fc2f88e0895a +doccontainersize 141988 +doccontainerchecksum efe9f711c42925fd035339c25284e09ca7a99c246bf70ef2c15c4f1149accf5bab09e396b94d6d59d4e8c303bfdb3f40570912713dcbd33e7ae360a6b21c36de docfiles size=49 RELOC/doc/latex/translation-chemsym-de/00Liesmich.chs RELOC/doc/latex/translation-chemsym-de/chemsym-de.dtx - RELOC/doc/latex/translation-chemsym-de/chemsym-de.pdf + RELOC/doc/latex/translation-chemsym-de/chemsym-de.pdf details="The document itself" language="de" catalogue-ctan /info/translations/chemsym/de -catalogue-date 2012-08-24 00:56:38 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics chemistry german-doc translation name translation-dcolumn-fr category Package revision 24345 -shortdesc French translation of the documentation of dcolumn. +shortdesc French translation of the documentation of dcolumn relocated 1 longdesc A French translation of the documentation of dcolumn. +containersize 388 +containerchecksum 8d2288707f13896dbb578b538b535efffc89991d56586f27a35b284b5be7c553df97a72ac163a625238e281bfe97bb79fa716855dc8e93f25f0a8af69674eb45 +doccontainersize 322312 +doccontainerchecksum 95d1633884f7237bf2a7abf8a43127ac1954fb5d0e308d676a7f4c3255d709496a382f01a8af6c28f793bcd1863e98f8ed1441e7cc288d3b8de3176631cdca1d docfiles size=88 RELOC/doc/latex/translation-dcolumn-fr/Copyright - RELOC/doc/latex/translation-dcolumn-fr/README + RELOC/doc/latex/translation-dcolumn-fr/README details="Readme" RELOC/doc/latex/translation-dcolumn-fr/f-dcolumn.dtx - RELOC/doc/latex/translation-dcolumn-fr/f-dcolumn.pdf + RELOC/doc/latex/translation-dcolumn-fr/f-dcolumn.pdf details="The translation" catalogue-ctan /info/translations/dcolumn/fr -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics french-doc documentation table typesetting name translation-ecv-de category Package revision 24754 -shortdesc Ecv documentation, in German. +shortdesc Ecv documentation, in German relocated 1 longdesc This is a "translation" of the ecv documentation. +containersize 392 +containerchecksum 33998fcadaf7b42874968348ef4e3232652ea401410eea6a8011db146a4989afb102a2bba247df53b875bc02b1ea8f21ec5c68783ae43f36a3f175e77dde6453 +doccontainersize 406924 +doccontainerchecksum a86784aaeaa786251f35ddf273050e9c981a68d060ba1a2f186379e04f89edc696090b44b402996c4f2422d1cbfd7fd68136c29fc7c74a2fd32d6d230eb2e489 docfiles size=108 - RELOC/doc/latex/translation-ecv-de/ecvde.dtx.pdf + RELOC/doc/latex/translation-ecv-de/ecvde.dtx.pdf details="Package documentation" language="de" RELOC/doc/latex/translation-ecv-de/ecvde.dtx.tex catalogue-ctan /info/translations/ecv/de -catalogue-date 2014-11-16 00:14:12 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics cv german-doc translation name translation-enumitem-de category Package revision 24196 -shortdesc Enumitem documentation, in German. +shortdesc Enumitem documentation, in German relocated 1 longdesc This is a translation of the manual for enumitem. +containersize 400 +containerchecksum 7018a95d7b68b6b736472d6f43d356d25d2a73df4a5dbc080485f3b4e747d122889788b3d1a75ec4c479a84a4453128104f01b2e1788e9dc50d09bda0eb53cfe +doccontainersize 607768 +doccontainerchecksum bee33ecf7a3045c382242f4b6ec9599f32fb254053a6417ceb514f3aad64b2bf51c50f660b562a2a3f0207f7bdc4676527627f432b1556362e3a9f5e9eda8694 docfiles size=160 - RELOC/doc/latex/translation-enumitem-de/enumitem-de.pdf + RELOC/doc/latex/translation-enumitem-de/enumitem-de.pdf details="The translation itself" language="de" RELOC/doc/latex/translation-enumitem-de/enumitem-de.tex catalogue-ctan /info/translations/enumitem/de -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics list german-doc translation name translation-europecv-de category Package revision 23840 -shortdesc German version of europecv. +shortdesc German version of europecv relocated 1 longdesc This is a "translation" of the europecv documentation. +containersize 392 +containerchecksum 6102a92b45fb7c19d2190bf4289e8b6b24ded67d0255ce2f483627bbdbee00c42c044be03bc10c9d0e23c2b911e781d21a7e6562e80988620a6da60562d98bf4 +doccontainersize 669668 +doccontainerchecksum f50e761fc7925f0cf404788ad2ad70586536e1676bc7a026be5a81136a1323f011a281160a344c455346553e90cb632133668c2483200a05ecf961e46e50bfb3 docfiles size=253 RELOC/doc/latex/translation-europecv-de/Beispiele/at.pdf RELOC/doc/latex/translation-europecv-de/Beispiele/bulgarian-koi8-r.tex @@ -166460,7 +284464,7 @@ docfiles size=253 RELOC/doc/latex/translation-europecv-de/Beispiele/maltese-utf8.tex RELOC/doc/latex/translation-europecv-de/Beispiele/minimal.pdf RELOC/doc/latex/translation-europecv-de/Beispiele/minimal.tex - RELOC/doc/latex/translation-europecv-de/europecv-de.pdf + RELOC/doc/latex/translation-europecv-de/europecv-de.pdf details="Package documentation" language="de" RELOC/doc/latex/translation-europecv-de/europecv-de.tex RELOC/doc/latex/translation-europecv-de/templates/cv_template_de.pdf RELOC/doc/latex/translation-europecv-de/templates/cv_template_de.tex @@ -166472,225 +284476,456 @@ docfiles size=253 RELOC/doc/latex/translation-europecv-de/templates/cv_template_pl.tex RELOC/doc/latex/translation-europecv-de/templates/publications.bib catalogue-ctan /info/translations/europecv/de -catalogue-date 2012-08-23 23:37:14 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics cv german-doc translation name translation-filecontents-de category Package revision 24010 -shortdesc German version of filecontents. +shortdesc German version of filecontents relocated 1 longdesc This is a "translation" of the filecontents documentation. +containersize 400 +containerchecksum 78dd9ee41d9b06438e01ec12f716929c4cf0fbf6ff209f45fadce9fad4bac0d1b31732b3f66896bf7526dac7532504e0913dbb69c3c7e13830e81297b2761935 +doccontainersize 214452 +doccontainerchecksum 17ed1c39c549b43c31c13dfd6ffbd968ecbdd3e64b00cbc66b0a8914726f4baa7faf98edf30c23ed81850cee98a732bbdd70ef667973163ccee0b35c160fdc64 docfiles size=56 RELOC/doc/latex/translation-filecontents-de/filecontents-de.dtx RELOC/doc/latex/translation-filecontents-de/filecontents-de.ins - RELOC/doc/latex/translation-filecontents-de/filecontents-de.pdf + RELOC/doc/latex/translation-filecontents-de/filecontents-de.pdf details="Package documentation" language="de" catalogue-ctan /info/translations/filecontents/de -catalogue-date 2012-08-23 23:34:30 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics file-mgmt german-doc translation name translation-moreverb-de category Package revision 23957 -shortdesc German version of moreverb. +shortdesc German version of moreverb relocated 1 longdesc This is a "translation" of the moreverb documentation. +containersize 396 +containerchecksum 6b11a1b522c728722d4d5d5b38dd453ec017dc053d360180b943778923ca9a23b3ebb92516c1a6880e507f5e8b6d8d87878c92762637acc5ac93f42ad790446e +doccontainersize 94828 +doccontainerchecksum 955070d4e92e38712a5df837fd0df716d1a597780a4b06046d5aac5164efc0fec1121c51ea09c3ef1a090d51732f57308f4db386440118548e2167f3cafe16ce docfiles size=33 RELOC/doc/latex/translation-moreverb-de/filecontens-de.ins.txt - RELOC/doc/latex/translation-moreverb-de/moreverb-de.dtx.pdf + RELOC/doc/latex/translation-moreverb-de/moreverb-de.dtx.pdf details="Package documentation" language="de" RELOC/doc/latex/translation-moreverb-de/moreverb-de.dtx.tex catalogue-ctan /info/translations/moreverb/de -catalogue-date 2012-08-23 23:34:30 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics german-doc verbatim translation name translation-natbib-fr category Package revision 25105 -shortdesc French translation of the documentation of natbib. +shortdesc French translation of the documentation of natbib relocated 1 longdesc A French translation of the documentation of natbib. +containersize 384 +containerchecksum ff34cb7cece157b933117ba0e9aadb0e9caa759a406fabf7b0ebb89e5b03ee6db7aa493551816e9061ff91a460e46a58f1402b086d37c48863b4e093d19326a8 +doccontainersize 687888 +doccontainerchecksum 971570414f9705cc4026a21a557b2f1dfe8fc010feca4f1ada946d11aa30169746c2017fb3882e65e68520539974eaf2361ebab7bcd292eed177fa7f6eb7337c docfiles size=207 RELOC/doc/latex/translation-natbib-fr/f-natbib.dtx - RELOC/doc/latex/translation-natbib-fr/f-natbib.pdf + RELOC/doc/latex/translation-natbib-fr/f-natbib.pdf details="Translated documentation" catalogue-ctan /info/translations/natbib/fr -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics french-doc bibtex-supp translation + +name translation-tabbing-fr +category Package +revision 24228 +shortdesc French translation of the documentation of Tabbing +relocated 1 +longdesc A translation to French (by the author) of the documentation of +longdesc the Tabbing package. +containersize 404 +containerchecksum 76f1c6318cd964b94d5a1d836b1a40fc58de49566cdc30b1ea60fc29fbcc8c6b01a477f4739a5fd9bb24998325dbf42817ad016fff27207e710bfc4b51b29985 +doccontainersize 355420 +doccontainerchecksum ae2f1aa60162512287f15c770a465c2e39abe1fa5d1223d96c524dc81bf065d62f307893d22dfc06fc50da8d63d817ed60c8f07fd4fede984b6febe9c8b7b710 +docfiles size=89 + RELOC/doc/latex/translation-tabbing-fr/f-Tabbing.dtx + RELOC/doc/latex/translation-tabbing-fr/f-Tabbing.pdf details="The document itself" language="fr" + RELOC/doc/latex/translation-tabbing-fr/ltxdoc.cfg +catalogue-ctan /info/translations/Tabbing/fr +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1 +catalogue-topics french-doc translation name translations category Package -revision 38308 +revision 45189 shortdesc Internationalisation of LaTeX2e packages relocated 1 longdesc This package (once part of the exsheets package), provides a longdesc framework for providing multilingual features to a LaTeX longdesc package. The package has its own basic dictionaries for -longdesc English, French, German and Spanish; it aims to use translation -longdesc material for English, French, German, Italian, Spanish, -longdesc Catalan, Turkish, Croatian, Hungarian, Danish and Portuguese -longdesc from babel or polyglossia if either is in use in the document. -longdesc (Additional languages from the multilingual packages may be -longdesc possible: ask the author.) -runfiles size=20 +longdesc English, Dutch, French, German and Spanish; it aims to use +longdesc translation material for English, Dutch, French, German, +longdesc Italian, Spanish, Catalan, Turkish, Croatian, Hungarian, Danish +longdesc and Portuguese from babel or polyglossia if either is in use in +longdesc the document. (Additional languages from the multilingual +longdesc packages may be possible: ask the author.) +containersize 11960 +containerchecksum 24686eda26044a45f42b4d821528af58b58710c31ba3a03e33e38de018cc8fc5c5d3f31f000ae69a1ba269e371c245b0c501718d45c803c3dfc8ba0f64dc99c7 +doccontainersize 511036 +doccontainerchecksum 683b3e6180801d96a457180649cca7ab79e6d965e1de95cab3bf2579ae4e8b34e30ba032e1fb2719a1a2826845d55d8a963ec813c8b2f6620e60bc986b3811a2 +docfiles size=134 + RELOC/doc/latex/translations/README details="Readme" + RELOC/doc/latex/translations/translations_en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/translations/translations_en.tex +runfiles size=23 RELOC/tex/latex/translations/translations-basic-dictionary-catalan.trsl + RELOC/tex/latex/translations/translations-basic-dictionary-dutch.trsl RELOC/tex/latex/translations/translations-basic-dictionary-english.trsl RELOC/tex/latex/translations/translations-basic-dictionary-french.trsl RELOC/tex/latex/translations/translations-basic-dictionary-german.trsl RELOC/tex/latex/translations/translations-basic-dictionary-spanish.trsl RELOC/tex/latex/translations/translations.sty -docfiles size=144 - RELOC/doc/latex/translations/README - RELOC/doc/latex/translations/translations_en.pdf - RELOC/doc/latex/translations/translations_en.tex +catalogue-also translator +catalogue-contact-bugs https://github.com/cgnieder/translations/issues +catalogue-contact-repository https://github.com/cgnieder/translations/ catalogue-ctan /macros/latex/contrib/translations -catalogue-date 2015-09-06 13:02:17 +0200 +catalogue-date 2017-11-30 18:19:07 +0100 catalogue-license lppl1.3 catalogue-topics multilingual package-supp -catalogue-version 1.2d +catalogue-version 1.7a -name translation-tabbing-fr -category Package -revision 24228 -shortdesc French translation of the documentation of Tabbing. -relocated 1 -longdesc A translation to French (by the author) of the documentation of -longdesc the Tabbing package. -docfiles size=89 - RELOC/doc/latex/translation-tabbing-fr/f-Tabbing.dtx - RELOC/doc/latex/translation-tabbing-fr/f-Tabbing.pdf - RELOC/doc/latex/translation-tabbing-fr/ltxdoc.cfg -catalogue-ctan /info/translations/Tabbing/fr -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1 +name translator +category Package +revision 46231 +shortdesc Easy translation of strings in LaTeX +relocated 1 +longdesc This LaTeX package provides a flexible mechanism for +longdesc translating individual words into different languages. For +longdesc example, it can be used to translate a word like "figure" into, +longdesc say, the German word "Abbildung". Such a translation mechanism +longdesc is useful when the author of some package would like to +longdesc localize the package such that texts are correctly translated +longdesc into the language preferred by the user. This package is not +longdesc intended to be used to automatically translate more than a few +longdesc words. +containersize 25396 +containerchecksum a3d5da1d07396fdc6df1c8f7ffd3cc43e0fa47932f3547ec91a519f607c850af2e20abc248c92a049e1f409241aca7e2e7e5aa7f80c751b14053467a38d05b4c +doccontainersize 210184 +doccontainerchecksum 16aa38aac409c700be0632a3a7ecf9b200ff8fd858dc57e77f3f47d74f5a26e782484987cc78c8f79ddec286ccf50667c0357e7e1d61a2ad8e12bb71e1cd5cf7 +docfiles size=57 + RELOC/doc/latex/translator/README.md details="Readme" + RELOC/doc/latex/translator/translator.pdf details="Package documentation" + RELOC/doc/latex/translator/translator.tex +runfiles size=111 + RELOC/tex/latex/translator/translator-basic-dictionary-Bulgarian.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Catalan.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Croatian.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Danish.dict + RELOC/tex/latex/translator/translator-basic-dictionary-English.dict + RELOC/tex/latex/translator/translator-basic-dictionary-French.dict + RELOC/tex/latex/translator/translator-basic-dictionary-German.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Greek.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Italian.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Norsk.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Nynorsk.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Polish.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Portuguese.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Russian.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Serbian.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Spanish.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Swedish.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Turkish.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Bulgarian.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Catalan.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Croatian.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Danish.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-English.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-French.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-German.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Greek.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Italian.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Polish.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Portuguese.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Russian.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Serbian.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Spanish.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Swedish.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Turkish.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Bulgarian.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Catalan.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Croatian.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Danish.dict + RELOC/tex/latex/translator/translator-environment-dictionary-English.dict + RELOC/tex/latex/translator/translator-environment-dictionary-French.dict + RELOC/tex/latex/translator/translator-environment-dictionary-German.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Greek.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Italian.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Polish.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Portuguese.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Russian.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Serbian.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Spanish.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Swedish.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Turkish.dict + RELOC/tex/latex/translator/translator-months-dictionary-Bulgarian.dict + RELOC/tex/latex/translator/translator-months-dictionary-Catalan.dict + RELOC/tex/latex/translator/translator-months-dictionary-Croatian.dict + RELOC/tex/latex/translator/translator-months-dictionary-Danish.dict + RELOC/tex/latex/translator/translator-months-dictionary-English.dict + RELOC/tex/latex/translator/translator-months-dictionary-French.dict + RELOC/tex/latex/translator/translator-months-dictionary-German.dict + RELOC/tex/latex/translator/translator-months-dictionary-Greek.dict + RELOC/tex/latex/translator/translator-months-dictionary-Italian.dict + RELOC/tex/latex/translator/translator-months-dictionary-Norsk.dict + RELOC/tex/latex/translator/translator-months-dictionary-Nynorsk.dict + RELOC/tex/latex/translator/translator-months-dictionary-Polish.dict + RELOC/tex/latex/translator/translator-months-dictionary-Portuguese.dict + RELOC/tex/latex/translator/translator-months-dictionary-Russian.dict + RELOC/tex/latex/translator/translator-months-dictionary-Serbian.dict + RELOC/tex/latex/translator/translator-months-dictionary-Spanish.dict + RELOC/tex/latex/translator/translator-months-dictionary-Swedish.dict + RELOC/tex/latex/translator/translator-months-dictionary-Turkish.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Bulgarian.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Catalan.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Croatian.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Danish.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-English.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-French.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-German.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Greek.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Italian.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Norsk.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Nynorsk.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Polish.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Portuguese.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Russian.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Serbian.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Spanish.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Swedish.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Turkish.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Bulgarian.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Catalan.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Croatian.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Danish.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-English.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-French.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-German.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Greek.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Italian.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Norsk.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Polish.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Portuguese.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Russian.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Serbian.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Spanish.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Swedish.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Turkish.dict + RELOC/tex/latex/translator/translator.sty +catalogue-also translations +catalogue-contact-bugs https://github.com/josephwright/translator/issues +catalogue-contact-repository https://github.com/josephwright/translator +catalogue-ctan /macros/latex/contrib/translator +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lpplgpl +catalogue-topics multilingual package-supp +catalogue-version 1.12 name tree-dvips category Package revision 21751 -shortdesc Trees and other linguists' macros. +shortdesc Trees and other linguists' macros relocated 1 longdesc The package defines a mechanism for specifying connected trees longdesc that uses a tabular environment to generate node positions. The longdesc package uses PostScript code, loaded by dvips, so output can longdesc only be generated by use of dvips. The package lingmacros.sty longdesc defines a few macros for linguists: \enumsentence for -longdesc enumerating sentence examples, simple tabular-based non- -longdesc connected tree macros, and gloss macros. -runfiles size=9 - RELOC/dvips/tree-dvips/tree-dvips91.pro - RELOC/tex/latex/tree-dvips/lingmacros.sty - RELOC/tex/latex/tree-dvips/tree-dvips.sty +longdesc enumerating sentence examples, simple tabular-based +longdesc non-connected tree macros, and gloss macros. +containersize 7964 +containerchecksum 6153417c5d2677a56adf031c5f2f27e4c2bf204c0acef1cc5cd49355370aa336814bad7d2be00e95d22bcf73b9b69105a255d15f29ed650511c0eccc3c9bda07 +doccontainersize 92268 +doccontainerchecksum 8c507ec7719b92f2cf82527c7799b073ff2679cf820528b489eb7d8c83d28d098033760cf092bceb9ee7e28fec15eb580122c080b982dbb12e0e65176121e84c docfiles size=42 RELOC/doc/latex/tree-dvips/Makefile - RELOC/doc/latex/tree-dvips/README + RELOC/doc/latex/tree-dvips/README details="Readme" RELOC/doc/latex/tree-dvips/README.TEXLIVE - RELOC/doc/latex/tree-dvips/lingmacros-manual.pdf + RELOC/doc/latex/tree-dvips/lingmacros-manual.pdf details="Manual for lingmacros" RELOC/doc/latex/tree-dvips/lingmacros-manual.tex RELOC/doc/latex/tree-dvips/tree-dvips91.script - RELOC/doc/latex/tree-dvips/tree-manual.pdf + RELOC/doc/latex/tree-dvips/tree-manual.pdf details="Manual for tree-dvips" RELOC/doc/latex/tree-dvips/tree-manual.tex +runfiles size=9 + RELOC/dvips/tree-dvips/tree-dvips91.pro + RELOC/tex/latex/tree-dvips/lingmacros.sty + RELOC/tex/latex/tree-dvips/tree-dvips.sty catalogue-ctan /macros/latex209/contrib/trees/tree-dvips -catalogue-date 2012-01-20 11:26:32 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1 -catalogue-version 91 +catalogue-topics tree +catalogue-version .91 name treetex category Package revision 28176 catalogue treetex-plain -shortdesc Draw trees. +shortdesc Draw trees relocated 1 longdesc Macros to draw trees, within TeX (or LaTeX). The algorithm used longdesc is discussed in an accompanying paper (written using LaTeX longdesc 2.09). +containersize 20196 +containerchecksum 49202a38697bd9bd3bc6fcbf30d28047b8ddc4d737bfa68cfdb83197b484352997a33f55e195211eff1d548f95e2072f07ed18f1d7c6772a03c66a13051d1709 +doccontainersize 23484 +doccontainerchecksum fb9e09bc2f6e45b854824c9c757733c2c17b4d48edc955ea48bea3ab3fb5dd914eb6427c8ae4f74ebc62b4715bada84c8f3fca0ee7d01f8d3c2526339a844681 +docfiles size=37 + RELOC/doc/plain/treetex/epodd.tex + RELOC/doc/plain/treetex/readme details="Readme" + RELOC/doc/plain/treetex/tree_doc.tex runfiles size=41 RELOC/tex/plain/treetex/classes.tex RELOC/tex/plain/treetex/l_pic.tex RELOC/tex/plain/treetex/treetex.tex -docfiles size=37 - RELOC/doc/plain/treetex/epodd.tex - RELOC/doc/plain/treetex/readme - RELOC/doc/plain/treetex/tree_doc.tex catalogue-ctan /macros/plain/contrib/treetex -catalogue-date 2012-01-20 11:26:32 +0100 +catalogue-date 2016-07-19 10:27:54 +0200 catalogue-license pd +catalogue-topics tree name trfsigns category Package revision 15878 -shortdesc Typeset transform signs. +shortdesc Typeset transform signs relocated 1 longdesc A package for typesetting various transformation signs for longdesc Laplace transforms, Fourier transforms and others. -runfiles size=2 - RELOC/tex/latex/trfsigns/trfsigns.sty +containersize 1476 +containerchecksum 3607b6371c2dbbd93524f0811dbf14cd93cb2556fc217899ef3a273c27158771f743bafff0fc90a582d65da431efd7ccc1f07bf92a6600a7bc301b5b6a308325 +doccontainersize 202928 +doccontainerchecksum 9bac4f4deafd62a8b113107ce47bb5ea3afe05078a3c5083b1ed790ed690bc3d73066e0abadc5cb1a3d45246f759941d6e2389105632bb6592c32a08e7b7671b docfiles size=59 RELOC/doc/latex/trfsigns/COPYING - RELOC/doc/latex/trfsigns/README + RELOC/doc/latex/trfsigns/README details="Package Readme" RELOC/doc/latex/trfsigns/trfexamp.tex - RELOC/doc/latex/trfsigns/trfsigns.pdf + RELOC/doc/latex/trfsigns/trfsigns.pdf details="Package documentation" language="de" +srccontainersize 5068 +srccontainerchecksum 71aaa336a9f66af6f682cadc72b2ae100c606be7d95d76c2631dbb03ff617718c1c322288c769bb1b9b19116a29baa208fa085e2868e67ce3f7a5552d823e6e0 srcfiles size=6 RELOC/source/latex/trfsigns/trfsigns.drv RELOC/source/latex/trfsigns/trfsigns.dtx RELOC/source/latex/trfsigns/trfsigns.ins +runfiles size=2 + RELOC/tex/latex/trfsigns/trfsigns.sty catalogue-ctan /macros/latex/contrib/trfsigns -catalogue-date 2012-08-23 23:34:30 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics maths-symbol catalogue-version 1.01 +name trigonometry +category Package +revision 43006 +shortdesc Demonstration code for cos and sin in TeX macros +relocated 1 +longdesc A document that both provides macros that are usable elsewhere, +longdesc and demonstrates the macros. The code uses the "classical" +longdesc analytical expansion of sin and cos (the more recent trig uses +longdesc a "numerical analyst's" expansion). +containersize 2552 +containerchecksum 366a5e96499bd96d2eee38b78305d9fd7368d0b70f91acecd5a5337675002808a5695a525d011a1ab7b31ff34cc14c469970a3fe55c694f003d0ba7002795297 +doccontainersize 656 +doccontainerchecksum a9bd77bda2cca604a69ca1b60deeb8da3128c625b87d64ccf39aaae853a645e736b5350d3d575302ec2a35e9736e4133cd4ffd223b9bff6191b6fed9549a8092 +docfiles size=1 + RELOC/doc/generic/trigonometry/README.txt +runfiles size=2 + RELOC/tex/generic/trigonometry/trigonometry.tex +catalogue-ctan /macros/generic/trigonometry +catalogue-date 2017-01-24 05:45:54 +0100 +catalogue-license knuth +catalogue-topics calculation + name trimspaces category Package revision 15878 -shortdesc Trim spaces around an argument or within a macro. +shortdesc Trim spaces around an argument or within a macro relocated 1 longdesc A very short package that allows you to expandably remove longdesc spaces around a token list (commands are provided to remove longdesc spaces before, spaces after, or both); or to remove surrounding longdesc spaces within a macro definition, or to define space-stripped longdesc macros. -runfiles size=1 - RELOC/tex/latex/trimspaces/trimspaces.sty +containersize 936 +containerchecksum 09bfe50d1b14502311aea7a20df80e70c1907b1c8443aba9453aa0a3eb76cbd34728734b81df63bd5895a4a5a55ddfe6d0feedf7d5d28d6b5922a374bc550c9e +doccontainersize 148416 +doccontainerchecksum 8e26064de0c14d6caa1d6cf625cbd2d598102056136dfa20d0a7ffb178c26829db0206d87893937b63f83171744a29bea3567e16e2a7a0d454734a0b72837277 docfiles size=44 - RELOC/doc/latex/trimspaces/README - RELOC/doc/latex/trimspaces/trimspaces.pdf + RELOC/doc/latex/trimspaces/README details="Readme" + RELOC/doc/latex/trimspaces/trimspaces.pdf details="Package documentation" +srccontainersize 2488 +srccontainerchecksum a34429fb9b8514d25ac523f0e3bfdc880b84951ff228ede3016e2d29c001b7f8058755870fc3c63e6041ef4768290177dabc6d520157082fb077497017065b65 srcfiles size=3 RELOC/source/latex/trimspaces/trimspaces.ins RELOC/source/latex/trimspaces/trimspaces.tex +runfiles size=1 + RELOC/tex/latex/trimspaces/trimspaces.sty catalogue-ctan /macros/latex/contrib/trimspaces -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics macro-supp catalogue-version 1.1 name trivfloat category Package revision 15878 -shortdesc Quick float definitions in LaTeX. +shortdesc Quick float definitions in LaTeX relocated 1 longdesc The trivfloat package provides a quick method for defining new longdesc float types in LaTeX. A single command sets up a new float in longdesc the same style as the LaTeX kernel figure and table float longdesc types. The package works with memoir as well as the standard longdesc classes. -runfiles size=2 - RELOC/tex/latex/trivfloat/trivfloat.sty +containersize 2444 +containerchecksum 25e07373c53a6d4c92a5f2f19fa0d70c86202435863b8b3cd036f2d12f74a477a33cca6508794f67256a877117bea821a11b9bff235e1a894c90b71810bbcca4 +doccontainersize 128892 +doccontainerchecksum eb9fce19c495eedd728e87bf47f5d925a685a8b9e81e8de0e6c317f74af6c82352f403486f5a904849ed418722d830ae294a89eaa57bbff59eee8a03cf9b8af8 docfiles size=37 - RELOC/doc/latex/trivfloat/README - RELOC/doc/latex/trivfloat/trivfloat.pdf + RELOC/doc/latex/trivfloat/README details="Readme" + RELOC/doc/latex/trivfloat/trivfloat.pdf details="Package documentation" +srccontainersize 7480 +srccontainerchecksum 9537944503c1606151207e75dd7a2bad64b34f82bb23d83e0eb93292ea9ad9edd0bd72a126de588125b6b425669f657506ca602796b6e2dd2997052b70f60dc5 srcfiles size=7 RELOC/source/latex/trivfloat/trivfloat.dtx RELOC/source/latex/trivfloat/trivfloat.ins +runfiles size=2 + RELOC/tex/latex/trivfloat/trivfloat.sty catalogue-ctan /macros/latex/contrib/trivfloat -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics float catalogue-version 1.3b name trsym category Package revision 18732 -shortdesc Symbols for transformations. +shortdesc Symbols for transformations relocated 1 longdesc The bundle provides Metafont source for a small font used for longdesc (e.g.) Laplace transformations, together with a LaTeX .fd file longdesc and a package providing commands for the symbols' use in longdesc mathematics. +containersize 1876 +containerchecksum e571d1c0c042e2fe75b992c6e0e9e07b04f0368f1e74a51ba91c34a642be148fb817027931ec35831672970725377038b5cc80d34bdb716d936f4aa59075d83a +doccontainersize 117560 +doccontainerchecksum d6cd64c1c4bbc927f4154c2281ef4c13ab145b750d92561235364a35082e497afc5d8aa5806452757b499b827305a0a183723deb38272ba43bcc38eedc367731 +docfiles size=33 + RELOC/doc/latex/trsym/README details="Readme" + RELOC/doc/latex/trsym/manifest.txt + RELOC/doc/latex/trsym/trsym.pdf details="Package documentation" +srccontainersize 2484 +srccontainerchecksum bd9c99b4c5ac266696ab4c3557028d1776a1852000db2e8c1b5a4c2f78e58f25df379a71794faf49e2c0d2ca14116796d8f6d617f4bcbaed7f05a75ec06fd5a5 +srcfiles size=3 + RELOC/source/latex/trsym/trsym.dtx + RELOC/source/latex/trsym/trsym.ins runfiles size=7 RELOC/fonts/source/public/trsym/trsy.mf RELOC/fonts/source/public/trsym/trsy10.mf @@ -166699,57 +284934,78 @@ runfiles size=7 RELOC/fonts/tfm/public/trsym/trsy12.tfm RELOC/tex/latex/trsym/trsym.sty RELOC/tex/latex/trsym/utrsy.fd -docfiles size=33 - RELOC/doc/latex/trsym/README - RELOC/doc/latex/trsym/manifest.txt - RELOC/doc/latex/trsym/trsym.pdf -srcfiles size=3 - RELOC/source/latex/trsym/trsym.dtx - RELOC/source/latex/trsym/trsym.ins catalogue-ctan /fonts/trsym -catalogue-date 2014-05-31 20:51:30 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics font font-symbol font-mf catalogue-version 1.0 name truncate category Package revision 18921 -shortdesc Truncate text to a specified width. +shortdesc Truncate text to a specified width relocated 1 longdesc The package will by default break at word boundaries, but longdesc package options are offered to permit breaks within words. -runfiles size=2 - RELOC/tex/latex/truncate/truncate.sty +containersize 3008 +containerchecksum b676d65803577b4bce5f6240a0d05a306199f24c2b14402954f4430f07fed9a8af574c4cf9cdc233824bb1a285eee0c531aa40ae31c782a43afd678d6e44f27a +doccontainersize 157044 +doccontainerchecksum 78e9a96fc2e635237cae9ab4d7ac30cfee8582dde13331800ac9079d1e0726c597accb598b5e679b6643d27b2a53fb367e740b76d59e9a5d27226a4c829e8518 docfiles size=42 RELOC/doc/latex/truncate/miscdoc.sty - RELOC/doc/latex/truncate/truncate.pdf + RELOC/doc/latex/truncate/truncate.pdf details="Package documentation" RELOC/doc/latex/truncate/truncate.tex +runfiles size=2 + RELOC/tex/latex/truncate/truncate.sty catalogue-ctan /macros/latex/contrib/truncate -catalogue-date 2012-08-23 23:07:17 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics layout catalogue-version 3.6 name tsemlines category Package revision 23440 -shortdesc Support for the ancient \emline macro. +shortdesc Support for the ancient \emline macro relocated 1 longdesc Occasional Documents appear, that use graphics generated by longdesc texcad from the emtex distribution. These documents often use longdesc the \emline macro, which produced lines at an arbitrary longdesc orientation. The present package emulates the macro, using longdesc TikZ. +containersize 1228 +containerchecksum d4b6a929a403ed7fea409aa618e7ca021c2c7138a6b11c980430ba18f952ffba44df951dbc7b7f3a5ffcdace3b5f3a455eedc2a50b6e0e003ae3e17e8e7f9969 runfiles size=1 RELOC/tex/latex/tsemlines/tsemlines.sty -catalogue-ctan /macros/latex/contrib/tsemlines/tsemlines.sty -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-ctan /macros/latex/contrib/tsemlines +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics graphics-prep catalogue-version 1.0 name ttfutils category TLCore -revision 37078 +revision 50602 +shortdesc convert TrueType to TFM and PK fonts +longdesc Utilities: ttf2afm ttf2pk ttf2tfm ttfdump. FreeType is the +longdesc underlying library. depend ttfutils.ARCH +containersize 108724 +containerchecksum cb133e9067cc3b2d99dc2910d3722fd87d53bf38e664fdc80cbdd7ff1787047f0e71bbc60018802cae34cc5d6eeaeaddd0cac6ae23f980d0eb7316f6c342ce38 +doccontainersize 137960 +doccontainerchecksum 27f3dc442a1892a903d5ebab16c82b0221efddd0def20b817ad1b33975d960219424ec1e6a408dc774e377aee99e905f6a850ce4a30ad1ed302acf442f09461d +docfiles size=65 + texmf-dist/doc/man/man1/ttf2afm.1 + texmf-dist/doc/man/man1/ttf2afm.man1.pdf + texmf-dist/doc/man/man1/ttf2pk.1 + texmf-dist/doc/man/man1/ttf2pk.man1.pdf + texmf-dist/doc/man/man1/ttf2tfm.1 + texmf-dist/doc/man/man1/ttf2tfm.man1.pdf + texmf-dist/doc/man/man1/ttfdump.1 + texmf-dist/doc/man/man1/ttfdump.man1.pdf + texmf-dist/doc/ttf2pk/ttf2pk.doc + texmf-dist/doc/ttf2pk/ttf2pk.txt + texmf-dist/doc/ttf2pk/ttf2tfm.txt runfiles size=219 texmf-dist/fonts/enc/ttf2pk/base/T1-WGL4.enc texmf-dist/fonts/sfd/ttf2pk/Big5.sfd @@ -166767,33 +285023,203 @@ runfiles size=219 texmf-dist/fonts/sfd/ttf2pk/Unicode.sfd texmf-dist/ttf2pk/VPS.rpl texmf-dist/ttf2pk/ttf2pk.cfg -docfiles size=45 - texmf-dist/doc/man/man1/ttf2afm.1 - texmf-dist/doc/man/man1/ttf2afm.man1.pdf - texmf-dist/doc/man/man1/ttf2pk.1 - texmf-dist/doc/man/man1/ttf2pk.man1.pdf - texmf-dist/doc/man/man1/ttf2tfm.1 - texmf-dist/doc/man/man1/ttf2tfm.man1.pdf - texmf-dist/doc/man/man1/ttfdump.1 - texmf-dist/doc/man/man1/ttfdump.man1.pdf - texmf-dist/doc/ttf2pk/ttf2pk.doc - texmf-dist/doc/ttf2pk/ttf2pk.txt - texmf-dist/doc/ttf2pk/ttf2tfm.txt + +name ttfutils.aarch64-linux +category TLCore +revision 50444 +shortdesc aarch64-linux files of ttfutils +containersize 361160 +containerchecksum ede04a66af626aa1959bd449fac0c384d6505569cfe847da8aa110702d318e0246d5a4113bcda5e0a46df319bc4f8181597cdf1268b6906600dcbc35303cb8dc +binfiles arch=aarch64-linux size=405 + bin/aarch64-linux/ttf2afm + bin/aarch64-linux/ttf2pk + bin/aarch64-linux/ttf2tfm + bin/aarch64-linux/ttfdump + +name ttfutils.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of ttfutils +containersize 445104 +containerchecksum dbf208508e2d6ae9418ab85a799700f01e051395eeaeec2d9e131efba4573d62a3c43f77bdbce781956ca02e5e3e1961a7df37b25bc2a5ece9c827b4925d78c0 +binfiles arch=amd64-freebsd size=474 + bin/amd64-freebsd/ttf2afm + bin/amd64-freebsd/ttf2pk + bin/amd64-freebsd/ttf2tfm + bin/amd64-freebsd/ttfdump + +name ttfutils.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of ttfutils +containersize 383940 +containerchecksum 654b3114e2dd0b7fbb7d9e5c3973e72949290cceed87536aa796b55f9b8d158dcfada0da47e97e7309545bfb40897f540986e2a5647f8479f26fd98b04b53909 +binfiles arch=amd64-netbsd size=582 + bin/amd64-netbsd/ttf2afm + bin/amd64-netbsd/ttf2pk + bin/amd64-netbsd/ttf2tfm + bin/amd64-netbsd/ttfdump + +name ttfutils.armhf-linux +category TLCore +revision 50296 +shortdesc armhf-linux files of ttfutils +containersize 327996 +containerchecksum ee3c2f2affe535ddfede5e0dda2ab55c0ac384a41338cc698e416b3e23b0ade32b711062b4a308140a243ca85d4793fcbb8c847e2cf38d739db19b23c1af8932 +binfiles arch=armhf-linux size=353 + bin/armhf-linux/ttf2afm + bin/armhf-linux/ttf2pk + bin/armhf-linux/ttf2tfm + bin/armhf-linux/ttfdump + +name ttfutils.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of ttfutils +containersize 345936 +containerchecksum cf0b0f4a71a607f0c3ed42492aa604f8e9cdf5ccbff56f38d907b908501041a5bb5226151a8c5e9d41212f6237ab418369f4de5119855d7c2dfb9c0b33352aed +binfiles arch=i386-cygwin size=351 + bin/i386-cygwin/ttf2afm.exe + bin/i386-cygwin/ttf2pk.exe + bin/i386-cygwin/ttf2tfm.exe + bin/i386-cygwin/ttfdump.exe + +name ttfutils.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of ttfutils +containersize 382912 +containerchecksum 09dfbfe729aa51a9fdaa64079a0c41a868ecd3ff116739ca614af20f12c63c564b5a061b95427aa820c9aebe7450ff03807e8b96ca01192fab0db7c1be3e919b +binfiles arch=i386-freebsd size=380 + bin/i386-freebsd/ttf2afm + bin/i386-freebsd/ttf2pk + bin/i386-freebsd/ttf2tfm + bin/i386-freebsd/ttfdump name ttfutils.i386-linux category TLCore -revision 37100 +revision 50281 shortdesc i386-linux files of ttfutils -binfiles arch=i386-linux size=477 +containersize 428900 +containerchecksum d7fdba3dc34317ba086c3e41a9bc476e9a550892ee75c9aac304a16043d3d71e5292a7201c46fc1bdaf34797690bf88cc0329f8a5196ea0218800c81b33724df +binfiles arch=i386-linux size=450 bin/i386-linux/ttf2afm bin/i386-linux/ttf2pk bin/i386-linux/ttf2tfm bin/i386-linux/ttfdump +name ttfutils.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of ttfutils +containersize 355380 +containerchecksum 421358dd8cd8cb6d6e22351fd81054bcc757b2c4d4bf11dc318005b62509150462cf5cbfbc51b5ffd9f8627575c712c66fa0ffe6c42f76329149d8442c5d380e +binfiles arch=i386-netbsd size=505 + bin/i386-netbsd/ttf2afm + bin/i386-netbsd/ttf2pk + bin/i386-netbsd/ttf2tfm + bin/i386-netbsd/ttfdump + +name ttfutils.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of ttfutils +containersize 392052 +containerchecksum 6e979a0da20183151c971fbe825fa410b73a718b24ff3fc6e657918e63249fa4a56ed110f50a8617ae7b5ba4f07b1289d1c90b514bc02d052a17c2ada6fa32db +binfiles arch=i386-solaris size=375 + bin/i386-solaris/ttf2afm + bin/i386-solaris/ttf2pk + bin/i386-solaris/ttf2tfm + bin/i386-solaris/ttfdump + +name ttfutils.win32 +category TLCore +revision 50155 +shortdesc win32 files of ttfutils +containersize 329928 +containerchecksum c4e4dad22d61af845c24eb874f91a1fcb8834bb1c0d12725c9769a5e4463e6a8bdd73183c6132286210fdffb385c63d509bd41b00eaadc9ad5f2434d68cf470e +binfiles arch=win32 size=294 + bin/win32/ttf2afm.exe + bin/win32/ttf2pk.exe + bin/win32/ttf2tfm.exe + bin/win32/ttfdump.exe + +name ttfutils.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of ttfutils +containersize 350412 +containerchecksum a4c3f9a92b6efd540bf0abf27ff0c3b66acbd79ee027a17525d4ea3990a38ff0262a6cd895b5f218152c8169df00ee9746d76bf023d166feddf2bb817d191309 +binfiles arch=x86_64-cygwin size=349 + bin/x86_64-cygwin/ttf2afm.exe + bin/x86_64-cygwin/ttf2pk.exe + bin/x86_64-cygwin/ttf2tfm.exe + bin/x86_64-cygwin/ttfdump.exe + +name ttfutils.x86_64-darwin +category TLCore +revision 50284 +shortdesc x86_64-darwin files of ttfutils +containersize 429328 +containerchecksum 52b9130fe0c715e0dc02ff21157dace3d176ee8e10fad67d865ac11e5014e104775a67fa292bb55205b24fd2be835d3ca22d6d6866305a63afc09b66e23b1086 +binfiles arch=x86_64-darwin size=449 + bin/x86_64-darwin/ttf2afm + bin/x86_64-darwin/ttf2pk + bin/x86_64-darwin/ttf2tfm + bin/x86_64-darwin/ttfdump + +name ttfutils.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of ttfutils +containersize 394256 +containerchecksum acd70b1e5c49429a62771ac384e8e289e2adbe01c83072e8fd4e31d377b80a7d3f3f8e00f2cd53bdaaa15cbfea3f4768d35a345625ce688d09d8a05482534040 +binfiles arch=x86_64-darwinlegacy size=408 + bin/x86_64-darwinlegacy/ttf2afm + bin/x86_64-darwinlegacy/ttf2pk + bin/x86_64-darwinlegacy/ttf2tfm + bin/x86_64-darwinlegacy/ttfdump + +name ttfutils.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of ttfutils +containersize 419336 +containerchecksum 69d4a1de9a63d19c9c7c9da4abf1d09950ab5795c41ba59b39927b71be337ef798f873be19fbb5e9f947a480b6eb73dfe83cda476a1d0d2991ca7d706edd3624 +binfiles arch=x86_64-linux size=433 + bin/x86_64-linux/ttf2afm + bin/x86_64-linux/ttf2pk + bin/x86_64-linux/ttf2tfm + bin/x86_64-linux/ttfdump + +name ttfutils.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of ttfutils +containersize 453900 +containerchecksum b195de794c9c6f5bfec810f605bf18612c26f4b7616463d51a0ddd57406eb8eb097fbdd1d9cdcd090d8b7fbafdba3fc72b87d14b3d631cfdd3a1bc90dcbd30ec +binfiles arch=x86_64-linuxmusl size=504 + bin/x86_64-linuxmusl/ttf2afm + bin/x86_64-linuxmusl/ttf2pk + bin/x86_64-linuxmusl/ttf2tfm + bin/x86_64-linuxmusl/ttfdump + +name ttfutils.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of ttfutils +containersize 436888 +containerchecksum b251f7bf7e5eb92bd50ea57ca24d25412ba7e3683fade2641bfcb32bb4d6bbc696f46c2d0492299864fe86cdf28fe3ea2172f0cca5938b635a8f95356ea48b10 +binfiles arch=x86_64-solaris size=447 + bin/x86_64-solaris/ttf2afm + bin/x86_64-solaris/ttf2pk + bin/x86_64-solaris/ttf2tfm + bin/x86_64-solaris/ttfdump + name tucv category Package revision 20680 -shortdesc Support for typesetting a CV or resumee. +shortdesc Support for typesetting a CV or resumee relocated 1 longdesc The package provides commands for typesetting a CV or resume. longdesc It provides commands for general-purpose headings, entries, and @@ -166804,29 +285230,36 @@ longdesc to produce a somewhat long and quite detailed document but may longdesc also be suitable to support a shorter resume. The package longdesc relies on a 'sufficiently recent' copy of the l3kernel and longdesc l3packages bundles. -runfiles size=1 - RELOC/tex/latex/tucv/tucv.sty +containersize 1860 +containerchecksum 957485431ecbdd31f180b36e7519c4bee8379f477b765ff5cebe57ffa3c95caa5556ed057943eb052d61e720074dc78035fe05b0023115caceb05bd2c3757183 +doccontainersize 254104 +doccontainerchecksum 750f739c7cc244ce52b4838009666c9b6196cee234e9bbf0028e3316c75a435b5038269e93f42d99116b9db3d93dc4710c03705b924d62f09a217f2acfe36303 docfiles size=69 - RELOC/doc/latex/tucv/README - RELOC/doc/latex/tucv/tucv.pdf - RELOC/doc/latex/tucv/tucv_ex.pdf + RELOC/doc/latex/tucv/README details="Readme" + RELOC/doc/latex/tucv/tucv.pdf details="Package documentation" + RELOC/doc/latex/tucv/tucv_ex.pdf details="Package sampler" RELOC/doc/latex/tucv/tucv_ex.tex +srccontainersize 4996 +srccontainerchecksum f754ab6d751eb5df0477802ab0a4d514aa0825e824531e76904ab474ed5423cbcaf773e37ce80e94c32236bee061f92c0782749c9196c3cc7fcb9249a57ea32a srcfiles size=5 RELOC/source/latex/tucv/tucv.dtx RELOC/source/latex/tucv/tucv.ins +runfiles size=1 + RELOC/tex/latex/tucv/tucv.sty catalogue-ctan /macros/latex/contrib/tucv -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics cv catalogue-version 1.0 name tudscr category Package -revision 37945 -shortdesc The Corporate Design of TU Dresden. +revision 44480 +shortdesc Corporate Design of Technische Universitat Dresden relocated 1 -longdesc The TUD-KOMA-Script bundle provides both classes and packages -longdesc in order to create LaTeX documents in the corporate design of -longdesc the Technische Universitat Dresden. It bases on the KOMA-Script +longdesc The TUD-Script bundle provides both classes and packages in +longdesc order to create LaTeX documents in the corporate design of the +longdesc Technische Universitat Dresden. It bases on the KOMA-Script longdesc bundle, which must necessarily be present. In addition, the longdesc PostScript font families Univers and DIN-Bold should be longdesc installed. Otherwise, the document classes can admittedly be @@ -166836,81 +285269,50 @@ longdesc Technische Universitat Dresden can request these fonts via longdesc https://tu-dresden.de/service/publizieren/cd/4_latex from the longdesc university marketing university marketing with regard to the longdesc use of LaTeX. To install the PostScript fonts, please refer to -longdesc the corresponding release under https://github.com/tud- -longdesc cd/tudscr/releases/tag/fonts and the LaTeX forum of the -longdesc Technische Universitat Dresden: http://latex.wcms-file3.tu- -longdesc dresden.de/phpBB3/index.php The bundle offers: the three -longdesc document classes tudscrartcl, tudscrreprt and tudscrbook which -longdesc serve as wrapper classes for scrartcl, scrreprt and scrbook. -longdesc the package tudscrsupervisor providing environments and macros -longdesc to create tasks, evaluations and notices for scientific theses, -longdesc the package tudscrfonts, which makes the corporate design fonts -longdesc of the Technische Universitat Dresden available for LaTeX -longdesc standard classes and KOMA-Script classes, the package mathswap -longdesc for swapping math delimiters within numbers (similar to -longdesc ionumbers), and the package twocolfix for fixing the -longdesc positioning bug of headings in two column layout, a -longdesc comprehensive user documentation as well as several tutorials. -runfiles size=326 - RELOC/tex/latex/tudscr/logo/DDC-01.eps - RELOC/tex/latex/tudscr/logo/DDC-01.pdf - RELOC/tex/latex/tudscr/logo/DDC-03.eps - RELOC/tex/latex/tudscr/logo/DDC-03.pdf - RELOC/tex/latex/tudscr/logo/DDC-07.eps - RELOC/tex/latex/tudscr/logo/DDC-07.pdf - RELOC/tex/latex/tudscr/logo/DDC-09.eps - RELOC/tex/latex/tudscr/logo/DDC-09.pdf - RELOC/tex/latex/tudscr/logo/DDC-19.eps - RELOC/tex/latex/tudscr/logo/DDC-19.pdf - RELOC/tex/latex/tudscr/logo/DDC-21.eps - RELOC/tex/latex/tudscr/logo/DDC-21.pdf - RELOC/tex/latex/tudscr/logo/DDC-22.eps - RELOC/tex/latex/tudscr/logo/DDC-22.pdf - RELOC/tex/latex/tudscr/logo/DDC-24.eps - RELOC/tex/latex/tudscr/logo/DDC-24.pdf - RELOC/tex/latex/tudscr/logo/DDC-25.eps - RELOC/tex/latex/tudscr/logo/DDC-25.pdf - RELOC/tex/latex/tudscr/logo/DDC-27.eps - RELOC/tex/latex/tudscr/logo/DDC-27.pdf - RELOC/tex/latex/tudscr/logo/DDC-28.eps - RELOC/tex/latex/tudscr/logo/DDC-28.pdf - RELOC/tex/latex/tudscr/logo/DDC-30.eps - RELOC/tex/latex/tudscr/logo/DDC-30.pdf - RELOC/tex/latex/tudscr/logo/TUD-black.eps - RELOC/tex/latex/tudscr/logo/TUD-black.pdf - RELOC/tex/latex/tudscr/logo/TUD-blue.eps - RELOC/tex/latex/tudscr/logo/TUD-blue.pdf - RELOC/tex/latex/tudscr/logo/TUD-white.eps - RELOC/tex/latex/tudscr/logo/TUD-white.pdf - RELOC/tex/latex/tudscr/mathswap.sty - RELOC/tex/latex/tudscr/tudscrartcl.cls - RELOC/tex/latex/tudscr/tudscrbase.sty - RELOC/tex/latex/tudscr/tudscrbook.cls - RELOC/tex/latex/tudscr/tudscrcolor.sty - RELOC/tex/latex/tudscr/tudscrcomp.sty - RELOC/tex/latex/tudscr/tudscrdoc.cls - RELOC/tex/latex/tudscr/tudscrfonts.sty - RELOC/tex/latex/tudscr/tudscrman.cls - RELOC/tex/latex/tudscr/tudscrman.sty - RELOC/tex/latex/tudscr/tudscrreprt.cls - RELOC/tex/latex/tudscr/tudscrsupervisor.sty - RELOC/tex/latex/tudscr/twocolfix.sty -docfiles size=975 - RELOC/doc/latex/tudscr/LICENSE - RELOC/doc/latex/tudscr/README - RELOC/doc/latex/tudscr/tudscr.pdf +longdesc the corresponding release under +longdesc https://github.com/tud-cd/tudscr/releases/tag/fonts and the +longdesc LaTeX forum of the Technische Universitat Dresden: +longdesc http://latex.wcms-file3.tu-dresden.de/phpBB3/. The bundle +longdesc offers: the three document classes tudscrartcl, tudscrreprt and +longdesc tudscrbook which serve as wrapper classes for scrartcl, +longdesc scrreprt and scrbook, the class tudscrposter for creating +longdesc posters, the package tudscrsupervisor providing environments +longdesc and macros to create tasks, evaluations and notices for +longdesc scientific theses, the package tudscrfonts, which makes the +longdesc corporate design fonts of the Technische Universitat Dresden +longdesc available for LaTeX standard classes and KOMA-Script classes, +longdesc the package fix-tudscrfonts, which provides the same fonts to +longdesc additional corporate design classes not related to TUD-Script +longdesc the package tudscrcomp, which simplifies the switch to +longdesc TUD-Script from external corporate design classes, the package +longdesc mathswap for swapping math delimiters within numbers (similar +longdesc to ionumbers), the package twocolfix for fixing the positioning +longdesc bug of headings in twocolumn layout and an comprehensive user +longdesc documentation as well as several tutorials. +containersize 153748 +containerchecksum 0daa38ad05e503edd91efa1d71a8d01c5e65bd9db5bc27be1012640db58183b2a3f0647dbacf9ff6db8cedb9a4919ba6fd0aade41b3e73d270172f604befc54d +doccontainersize 3729592 +doccontainerchecksum 95f98c67cf04972665d0089278112e3dba5dafd56f3048cafdb6295b30439c3bad271f9a33b57b820301854ce586540eea0ed2ff2725709013ea8aa2163c2aa0 +docfiles size=1143 + RELOC/doc/latex/tudscr/LICENSE.md + RELOC/doc/latex/tudscr/README.md details="Readme" + RELOC/doc/latex/tudscr/tudscr.pdf details="Package documentation" RELOC/doc/latex/tudscr/tudscr_print.pdf RELOC/doc/latex/tudscr/tudscrsource.pdf RELOC/doc/latex/tudscr/tutorials/mathswap.pdf RELOC/doc/latex/tudscr/tutorials/mathtype.pdf RELOC/doc/latex/tudscr/tutorials/treatise.pdf -srcfiles size=330 +srccontainersize 299600 +srccontainerchecksum 9134562bcbf351ee2ae2cd758b52abc152422a044327a5bbca665b42c0a3f0da602378de52597e4f8ae8da79d04e3ac8c36ef692ccd24a68f06f1c8fc34b0d0b +srcfiles size=433 RELOC/source/latex/tudscr/doc/examples/dissertation.tex RELOC/source/latex/tudscr/doc/examples/document.tex RELOC/source/latex/tudscr/doc/examples/evaluation.tex RELOC/source/latex/tudscr/doc/examples/mathswap-example.tex RELOC/source/latex/tudscr/doc/examples/mathtype-example.tex RELOC/source/latex/tudscr/doc/examples/notice.tex + RELOC/source/latex/tudscr/doc/examples/poster.tex + RELOC/source/latex/tudscr/doc/examples/poster_print.tex RELOC/source/latex/tudscr/doc/examples/task.tex RELOC/source/latex/tudscr/doc/examples/thesis.tex RELOC/source/latex/tudscr/doc/examples/treatise-example.tex @@ -166926,10 +285328,12 @@ srcfiles size=330 RELOC/source/latex/tudscr/doc/tudscr-packages.tex RELOC/source/latex/tudscr/doc/tudscr-poster.tex RELOC/source/latex/tudscr/doc/tudscr-preface.tex + RELOC/source/latex/tudscr/doc/tudscr-supervisor.tex RELOC/source/latex/tudscr/doc/tudscr.tex RELOC/source/latex/tudscr/doc/tutorials/mathswap.tex RELOC/source/latex/tudscr/doc/tutorials/mathtype.tex RELOC/source/latex/tudscr/doc/tutorials/treatise.tex + RELOC/source/latex/tudscr/tudscr-area.dtx RELOC/source/latex/tudscr/tudscr-base.dtx RELOC/source/latex/tudscr/tudscr-color.dtx RELOC/source/latex/tudscr/tudscr-comp.dtx @@ -166943,23 +285347,75 @@ srcfiles size=330 RELOC/source/latex/tudscr/tudscr-mathswap.dtx RELOC/source/latex/tudscr/tudscr-misc.dtx RELOC/source/latex/tudscr/tudscr-pagestyle.dtx - RELOC/source/latex/tudscr/tudscr-poster.dtx RELOC/source/latex/tudscr/tudscr-supervisor.dtx + RELOC/source/latex/tudscr/tudscr-texindy.dtx RELOC/source/latex/tudscr/tudscr-title.dtx RELOC/source/latex/tudscr/tudscr-twocolfix.dtx RELOC/source/latex/tudscr/tudscr-version.dtx RELOC/source/latex/tudscr/tudscr.ins RELOC/source/latex/tudscr/tudscrsource.tex +runfiles size=442 + RELOC/tex/latex/tudscr/fix-tudscrfonts.sty + RELOC/tex/latex/tudscr/logo/DDC-01.eps + RELOC/tex/latex/tudscr/logo/DDC-01.pdf + RELOC/tex/latex/tudscr/logo/DDC-03.eps + RELOC/tex/latex/tudscr/logo/DDC-03.pdf + RELOC/tex/latex/tudscr/logo/DDC-07.eps + RELOC/tex/latex/tudscr/logo/DDC-07.pdf + RELOC/tex/latex/tudscr/logo/DDC-09.eps + RELOC/tex/latex/tudscr/logo/DDC-09.pdf + RELOC/tex/latex/tudscr/logo/DDC-19.eps + RELOC/tex/latex/tudscr/logo/DDC-19.pdf + RELOC/tex/latex/tudscr/logo/DDC-21.eps + RELOC/tex/latex/tudscr/logo/DDC-21.pdf + RELOC/tex/latex/tudscr/logo/DDC-22.eps + RELOC/tex/latex/tudscr/logo/DDC-22.pdf + RELOC/tex/latex/tudscr/logo/DDC-24.eps + RELOC/tex/latex/tudscr/logo/DDC-24.pdf + RELOC/tex/latex/tudscr/logo/DDC-25.eps + RELOC/tex/latex/tudscr/logo/DDC-25.pdf + RELOC/tex/latex/tudscr/logo/DDC-27.eps + RELOC/tex/latex/tudscr/logo/DDC-27.pdf + RELOC/tex/latex/tudscr/logo/DDC-28.eps + RELOC/tex/latex/tudscr/logo/DDC-28.pdf + RELOC/tex/latex/tudscr/logo/DDC-30.eps + RELOC/tex/latex/tudscr/logo/DDC-30.pdf + RELOC/tex/latex/tudscr/logo/TUD-black.eps + RELOC/tex/latex/tudscr/logo/TUD-black.pdf + RELOC/tex/latex/tudscr/logo/TUD-blue.eps + RELOC/tex/latex/tudscr/logo/TUD-blue.pdf + RELOC/tex/latex/tudscr/logo/TUD-white.eps + RELOC/tex/latex/tudscr/logo/TUD-white.pdf + RELOC/tex/latex/tudscr/mathswap.sty + RELOC/tex/latex/tudscr/tudscrartcl.cls + RELOC/tex/latex/tudscr/tudscrbase.sty + RELOC/tex/latex/tudscr/tudscrbook.cls + RELOC/tex/latex/tudscr/tudscrcolor.sty + RELOC/tex/latex/tudscr/tudscrcomp-book.sty + RELOC/tex/latex/tudscr/tudscrcomp-poster.sty + RELOC/tex/latex/tudscr/tudscrcomp.sty + RELOC/tex/latex/tudscr/tudscrdoc.cls + RELOC/tex/latex/tudscr/tudscrfonts.sty + RELOC/tex/latex/tudscr/tudscrmanual.cls + RELOC/tex/latex/tudscr/tudscrposter.cls + RELOC/tex/latex/tudscr/tudscrreprt.cls + RELOC/tex/latex/tudscr/tudscrsupervisor.sty + RELOC/tex/latex/tudscr/tudscrtutorial.sty + RELOC/tex/latex/tudscr/twocolfix.sty +catalogue-contact-bugs https://github.com/tud-cd/tudscr/issues +catalogue-contact-home https://github.com/tud-cd/tudscr +catalogue-contact-repository https://github.com/tud-cd/tudscr +catalogue-contact-support https://latex.wcms-file3.tu-dresden.de/phpBB3/index.php catalogue-ctan /macros/latex/contrib/tudscr -catalogue-date 2015-07-24 14:52:08 +0200 -catalogue-license lppl1.3 +catalogue-date 2017-05-30 22:36:11 +0200 +catalogue-license lppl1.3c catalogue-topics dissertation class -catalogue-version 2.04a +catalogue-version 2.05m name tufte-latex category Package revision 37649 -shortdesc Document classes inspired by the work of Edward Tufte. +shortdesc Document classes inspired by the work of Edward Tufte relocated 1 longdesc Provided are two classes inspired, respectively, by handouts longdesc and books created by Edward Tufte. @@ -166969,11 +285425,10 @@ depend changepage depend paralist depend sauerj depend placeins -runfiles size=27 - RELOC/bibtex/bst/tufte-latex/tufte.bst - RELOC/tex/latex/tufte-latex/tufte-book.cls - RELOC/tex/latex/tufte-latex/tufte-common.def - RELOC/tex/latex/tufte-latex/tufte-handout.cls +containersize 21568 +containerchecksum 6dd01a5a6faf37439ca9aab23534f99050b84bfac16df48545417ee03e72700344c25b2de3262e8e28406da705d50296473a815fa14b701c609b3715f01405d1 +doccontainersize 453460 +doccontainerchecksum 11ac57e79a05db644235b6db851473c75d1538a1261d7022a63d9ab0cc54486cc13b7cc95c44d16912952e46bc9264c1bfb831a728b51a03495d01f1963410d3 docfiles size=185 RELOC/doc/latex/tufte-latex/History.txt RELOC/doc/latex/tufte-latex/Manifest.txt @@ -166993,81 +285448,105 @@ docfiles size=185 RELOC/doc/latex/tufte-latex/graphics/vdqi-title.pdf RELOC/doc/latex/tufte-latex/graphics/ve-contents.pdf RELOC/doc/latex/tufte-latex/graphics/ve-title.pdf - RELOC/doc/latex/tufte-latex/sample-book.pdf + RELOC/doc/latex/tufte-latex/sample-book.pdf details="Sample book" RELOC/doc/latex/tufte-latex/sample-book.tex RELOC/doc/latex/tufte-latex/sample-handout.bib - RELOC/doc/latex/tufte-latex/sample-handout.pdf + RELOC/doc/latex/tufte-latex/sample-handout.pdf details="Sample handout" RELOC/doc/latex/tufte-latex/sample-handout.tex +runfiles size=27 + RELOC/bibtex/bst/tufte-latex/tufte.bst + RELOC/tex/latex/tufte-latex/tufte-book.cls + RELOC/tex/latex/tufte-latex/tufte-common.def + RELOC/tex/latex/tufte-latex/tufte-handout.cls +catalogue-contact-repository https://tufte-latex.github.io/tufte-latex/ catalogue-ctan /macros/latex/contrib/tufte-latex -catalogue-date 2015-06-22 09:18:00 +0200 +catalogue-date 2018-04-05 06:13:24 +0200 catalogue-license apache2 catalogue-topics book-pub class catalogue-version 3.5.2 -name tugboat-plain -category Package -revision 31340 -shortdesc Plain TeX macros for TUGboat. -relocated 1 -longdesc The macros defined in this directory (in files tugboat.sty and -longdesc tugboat.cmn) are used in papers written in Plain TeX for -longdesc publication in TUGboat. -runfiles size=30 - RELOC/tex/plain/tugboat-plain/tugboat.cmn - RELOC/tex/plain/tugboat-plain/tugboat.sty - RELOC/tex/plain/tugboat-plain/tugproc.sty -docfiles size=66 - RELOC/doc/plain/tugboat-plain/README - RELOC/doc/plain/tugboat-plain/tubguide.pdf - RELOC/doc/plain/tugboat-plain/tubguide.tex -catalogue-ctan /macros/plain/contrib/tugboat -catalogue-date 2013-11-21 21:33:57 +0100 -catalogue-license other-free -catalogue-version 1.21 - name tugboat category Package -revision 36614 -shortdesc LaTeX macros for TUGboat articles. +revision 49415 +shortdesc LaTeX macros for TUGboat articles relocated 1 longdesc Provides ltugboat.cls for both regular and proceedings issues -longdesc of the TUGboat journal. The distribution also includes a BibTeX -longdesc style appropriate for use with the classes' "harvard" option. -runfiles size=30 +longdesc of the TUGboat journal. The distribution also a BibTeX style, +longdesc tugboat.bst. +containersize 26064 +containerchecksum 56a495c6239ed1a8ef1844bd90f9bcb97e2c97664877f343d198f9d9192d33e866b87334b961583d765d9b78633a5b5415933c000270d23be34f637612cfd1eb +doccontainersize 769816 +doccontainerchecksum 9fbe0a3438a81acc63424007bea1f2e8ff7f6a29e16bf1642963763aaba763f64bc26863ffbe9cc9318836df2e9191c5d8bcef821f573447a262f2b49896edfe +docfiles size=204 + RELOC/doc/latex/tugboat/README details="Readme" + RELOC/doc/latex/tugboat/ltubguid.ltx + RELOC/doc/latex/tugboat/ltubguid.pdf details="Instructions for authors" language="en" + RELOC/doc/latex/tugboat/manifest.txt + RELOC/doc/latex/tugboat/tugboat.pdf details="Program documentation" language="en" +srccontainersize 38620 +srccontainerchecksum 76152f1a32da57ed51d97a8f6189b5a72ae0ffbf18934506034ac84014bb0a4bd790aed1919454e87838e3a68f88d38f191dbce995372741a47bed65449dc90b +srcfiles size=34 + RELOC/source/latex/tugboat/tugboat.dtx + RELOC/source/latex/tugboat/tugboat.ins +runfiles size=39 RELOC/bibtex/bst/tugboat/ltugbib.bst + RELOC/bibtex/bst/tugboat/tugboat.bst RELOC/tex/latex/tugboat/ltugboat.cls RELOC/tex/latex/tugboat/ltugboat.sty RELOC/tex/latex/tugboat/ltugcomn.sty RELOC/tex/latex/tugboat/ltugproc.cls RELOC/tex/latex/tugboat/ltugproc.sty -docfiles size=203 - RELOC/doc/latex/tugboat/README - RELOC/doc/latex/tugboat/ltubguid.ltx - RELOC/doc/latex/tugboat/ltubguid.pdf - RELOC/doc/latex/tugboat/manifest.txt - RELOC/doc/latex/tugboat/tugboat.pdf -srcfiles size=33 - RELOC/source/latex/tugboat/tugboat.dtx - RELOC/source/latex/tugboat/tugboat.ins +catalogue-also tugboat-plain +catalogue-contact-home https://tug.org/TUGboat catalogue-ctan /macros/latex/contrib/tugboat -catalogue-date 2015-03-26 08:11:46 +0100 +catalogue-date 2018-12-14 21:15:38 +0100 catalogue-license lppl1.3 -catalogue-version 2.17 +catalogue-topics journalpub class +catalogue-version 2.21 + +name tugboat-plain +category Package +revision 48608 +shortdesc Plain TeX macros for TUGboat +relocated 1 +longdesc The macros defined in this directory (in files tugboat.sty and +longdesc tugboat.cmn) are used in papers written in Plain TeX for +longdesc publication in TUGboat. +containersize 32584 +containerchecksum b2e730b6c5a6fd23e088dc7990827c5bf9c009f28dd293b16b25ec7d59dc2fc2c6559d4d43f2f272c261645568b35f45ddf193bcd3995699753311094a8dc160 +doccontainersize 221368 +doccontainerchecksum 4194a3acc61dd9ab6cd9e2c421c29204e2f8e9463fed401939ee6d1ac780d43cdd9b8e51077425f924bff6b6523d302762e9561d64fe41720f83684ca69bad04 +docfiles size=60 + RELOC/doc/plain/tugboat-plain/README + RELOC/doc/plain/tugboat-plain/tubguide.pdf details="TUGboat Authors' Guide" + RELOC/doc/plain/tugboat-plain/tubguide.tex +runfiles size=31 + RELOC/tex/plain/tugboat-plain/tugboat.cmn + RELOC/tex/plain/tugboat-plain/tugboat.sty + RELOC/tex/plain/tugboat-plain/tugproc.sty +catalogue-also tugboat +catalogue-ctan /macros/plain/contrib/tugboat +catalogue-date 2018-09-06 20:20:38 +0200 +catalogue-license other-free +catalogue-topics journalpub +catalogue-version 1.24 name tui category Package revision 27253 -shortdesc Thesis style for the University of the Andes, Colombia. +shortdesc Thesis style for the University of the Andes, Colombia relocated 1 longdesc Doctoral Dissertations from the Faculty of Engineering at the longdesc Universidad de los Andes, Bogota, Colombia. The class is longdesc implemented as an extension of the memoir class. Clase de Tesis longdesc doctorales para ingenieria, Universidad de los Andes, Bogota. -runfiles size=3 - RELOC/tex/latex/tui/tui.cls +containersize 3928 +containerchecksum 59e8af51c39984a42247435ad893c3b8e37eb9dc53634e0a5f30733ee0c973690b66d805079a0f5cf61762abe7fceb1f2dc91691df9be26f72a1a8edd2524ba3 +doccontainersize 262356 +doccontainerchecksum b48d9811ac6414d96a7b5059b33c174464f262c721159552e48e6f5bcf5b969ae91bbac61aff6077304907d3d2bd8eb73774628458a7e740ea49fe433b9bbbc2 docfiles size=104 - RELOC/doc/latex/tui/README - RELOC/doc/latex/tui/TUIdoc.pdf + RELOC/doc/latex/tui/README details="Readme" language="en" + RELOC/doc/latex/tui/TUIdoc.pdf details="Package documentation (Spanish)" language="es" RELOC/doc/latex/tui/TUIdoc.tex RELOC/doc/latex/tui/example/abstract.tex RELOC/doc/latex/tui/example/agradec.tex @@ -167103,147 +285582,187 @@ docfiles size=104 RELOC/doc/latex/tui/template/plegal.tex RELOC/doc/latex/tui/template/portada.tex RELOC/doc/latex/tui/template/resumen.tex +runfiles size=3 + RELOC/tex/latex/tui/tui.cls catalogue-ctan /macros/latex/contrib/tui -catalogue-date 2014-09-12 18:40:58 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics dissertation class catalogue-version 1.9 -name turabian-formatting -category Package -revision 35917 -shortdesc Formatting based on Turabian's Manual. -relocated 1 -longdesc The turabian-formatting package provides Chicago-style -longdesc formatting based on Kate L. Turabian's "A Manual for Writers of -longdesc Research Papers, Theses, and Dissertations: Chicago Style for -longdesc Students and Researchers" (8th edition). -runfiles size=5 - RELOC/tex/latex/turabian-formatting/turabian-formatting.sty - RELOC/tex/latex/turabian-formatting/turabian-researchpaper.cls - RELOC/tex/latex/turabian-formatting/turabian-thesis.cls -docfiles size=31 - RELOC/doc/latex/turabian-formatting/README - RELOC/doc/latex/turabian-formatting/turabian-formatting-doc.pdf - RELOC/doc/latex/turabian-formatting/turabian-formatting-doc.tex -catalogue-ctan /macros/latex/contrib/turabian-formatting -catalogue-date 2014-12-27 07:33:12 +0100 -catalogue-license lppl1.3 - name turabian category Package revision 36298 -shortdesc Create Turabian-formatted material using LaTeX. +shortdesc Create Turabian-formatted material using LaTeX relocated 1 longdesc The bundle provides a class file and a template for creating longdesc Turabian-formatted projects. The class file supports citation longdesc formatting conforming to the Turabian 8th Edition style guide. -runfiles size=1 - RELOC/tex/latex/turabian/turabian.cls +containersize 1792 +containerchecksum fe4ec8291e8b1dfc6130bdc862384b8e7c6ea2d4db6baaf92e0b7b053ab8ed328ec452e0c1efc4da2eecc3f8b6c86e77cfd2100ea66e4f59276fb64683d55a92 +doccontainersize 4272 +doccontainerchecksum 3b4900c67c65ee1b20dedb2ffbc844ff22dc519dde0121b375dd13bcd80a0f2fdf5cef8c4e43a395ebe8fb4c82d463f18ca30ec65fe2be398c181af78ec0a0f7 docfiles size=4 - RELOC/doc/latex/turabian/README + RELOC/doc/latex/turabian/README details="Readme" RELOC/doc/latex/turabian/turabian.tex - RELOC/doc/latex/turabian/userguide.txt + RELOC/doc/latex/turabian/userguide.txt details="Package documentation" +runfiles size=1 + RELOC/tex/latex/turabian/turabian.cls +catalogue-also turabian-formatting catalogue-ctan /macros/latex/contrib/turabian -catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics gen-paper class catalogue-version 0.1.0 +name turabian-formatting +category Package +revision 48330 +shortdesc Formatting based on Turabian's Manual +relocated 1 +longdesc The turabian-formatting package provides Chicago-style +longdesc formatting based on Kate L. Turabian's "A Manual for Writers of +longdesc Research Papers, Theses, and Dissertations: Chicago Style for +longdesc Students and Researchers" (9th edition). +containersize 8272 +containerchecksum 7a6027cb84a6f2e2990d171aeb1e4cf528038f2dfa4f8bcd59f4775aecefd1a9e3d3dc36e9a7fa1904a9e42da1cea8b7843482ff8dbf00fef6666588f7b7c31d +doccontainersize 119024 +doccontainerchecksum 38d89482b53a8daec33e19fa9f6c782e42b61586ba96e7cdc91bfc839dc734352dd5abf9d3146c4eeadca5921d7a85189481393f0691ea5a9917547e1e7a1f3a +docfiles size=38 + RELOC/doc/latex/turabian-formatting/README details="Readme" + RELOC/doc/latex/turabian-formatting/turabian-formatting-doc.pdf details="Package documentation" + RELOC/doc/latex/turabian-formatting/turabian-formatting-doc.tex +runfiles size=11 + RELOC/tex/latex/turabian-formatting/turabian-formatting.sty + RELOC/tex/latex/turabian-formatting/turabian-researchpaper.cls + RELOC/tex/latex/turabian-formatting/turabian-thesis.cls +catalogue-also turabian biblatex-chicago +catalogue-ctan /macros/latex/contrib/turabian-formatting +catalogue-date 2018-08-01 18:15:02 +0200 +catalogue-license lppl1.3 +catalogue-topics dissertation class + name turkmen category Package revision 17748 -shortdesc Babel support for Turkmen. +shortdesc Babel support for Turkmen relocated 1 longdesc The package provides support for Turkmen in babel, but longdesc integration with babel is not available. -runfiles size=1 - RELOC/tex/latex/turkmen/turkmen.ldf +containersize 2216 +containerchecksum 437ff775642326f25f260280ca8d846e546f0f4b3c3082eb1ebaadcfc6ca5196967f82a00237367754b3ff307f983a828dba5c8117539d65634379567062a377 +doccontainersize 109384 +doccontainerchecksum 39014c9049322a1966951a242152b8774b2bc914bd620b6eba8c97e8ec457a1ed3547f2c211b3bba333cab21bac98882dbc9a1e9028443e7365780cf4d78b577 docfiles size=30 - RELOC/doc/latex/turkmen/README - RELOC/doc/latex/turkmen/turkmen.pdf + RELOC/doc/latex/turkmen/README details="Readme" + RELOC/doc/latex/turkmen/turkmen.pdf details="Package documentation" +srccontainersize 3932 +srccontainerchecksum 1d69e90b8aa74db44b7b89c8a3346ffbfca2b8514205a04610b5049e50e61b19ef063d9b3e9c99bf4c141d52bb03d600ad5ce1a13494b06fb7d13d12f47b860a srcfiles size=4 RELOC/source/latex/turkmen/turkmen.dtx RELOC/source/latex/turkmen/turkmen.ins +runfiles size=1 + RELOC/tex/latex/turkmen/turkmen.ldf catalogue-ctan /language/turkmen -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics turkmen multilingual-addon catalogue-version 0.2 name turnstile category Package revision 15878 -shortdesc Typeset the (logic) turnstile notation. +shortdesc Typeset the (logic) turnstile notation relocated 1 longdesc Among other uses, the turnstile sign is used by logicians for longdesc denoting a consequence relation, related to a given logic, longdesc between a collection of formulas and a derived formula. -runfiles size=3 - RELOC/tex/latex/turnstile/turnstile.sty +containersize 1928 +containerchecksum 083050bb9f34b576cc1033a0b754a2e888883d98d41aa08c1694f78cb5e372748cfc1d62af94732334ce05e91933e95796498fc120d6584f554260fef4d87811 +doccontainersize 598160 +doccontainerchecksum 6f51d17752aab1c33442a92d3d926b1802c1274b3799f33f65bcd417d268ce851be76d36b13fbe0fa3599399f10df9e8bec7bfb6ffa929f667b9e7ee3e9eb323 docfiles size=176 - RELOC/doc/latex/turnstile/README + RELOC/doc/latex/turnstile/README details="Readme" RELOC/doc/latex/turnstile/README.en RELOC/doc/latex/turnstile/README.pt - RELOC/doc/latex/turnstile/turnstile-en.pdf - RELOC/doc/latex/turnstile/turnstile-pt.pdf - RELOC/doc/latex/turnstile/turnstile_article.pdf + RELOC/doc/latex/turnstile/turnstile-en.pdf details="Package documentation (English)" + RELOC/doc/latex/turnstile/turnstile-pt.pdf details="Package documentation (Portuguese)" language="pt" + RELOC/doc/latex/turnstile/turnstile_article.pdf details="Article about the package (English)" RELOC/doc/latex/turnstile/turnstile_article.tex - RELOC/doc/latex/turnstile/turnstile_artigo.pdf + RELOC/doc/latex/turnstile/turnstile_artigo.pdf details="Article about the package (Portuguese)" language="pt" RELOC/doc/latex/turnstile/turnstile_artigo.tex +srccontainersize 7888 +srccontainerchecksum edab29b25bcad5c2f65980b5539d60b3f8d6481205c89a1fe386f4e1b15e5988c3e592816aae2ded548e624e1cd55fa987eadd2c727d2f261128172bee6b369a srcfiles size=14 RELOC/source/latex/turnstile/turnstile-en.dtx RELOC/source/latex/turnstile/turnstile-en.ins RELOC/source/latex/turnstile/turnstile-pt.dtx RELOC/source/latex/turnstile/turnstile-pt.ins +runfiles size=3 + RELOC/tex/latex/turnstile/turnstile.sty catalogue-ctan /macros/latex/contrib/turnstile -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics class maths-symbol catalogue-version 1.0 name turnthepage category Package revision 29803 -shortdesc Provide "turn page" instructions. -relocated 1 -longdesc The package prints a 'turn' instruction at the bottom of odd- -longdesc numbered pages (except the last). This is a common convention -longdesc for examination papers and the like. -runfiles size=3 - RELOC/tex/latex/turnthepage/turnpageetex.sty - RELOC/tex/latex/turnthepage/turnpagewoetex.sty - RELOC/tex/latex/turnthepage/turnthepage.sty +shortdesc Provide "turn page" instructions +relocated 1 +longdesc The package prints a 'turn' instruction at the bottom of +longdesc odd-numbered pages (except the last). This is a common +longdesc convention for examination papers and the like. +containersize 1664 +containerchecksum 446b0516264eac6b880048e16cf4ad7bb529718c726233fc645b8c32d625f3f6b505b72beef81994b61ddc77ec8ecfece907347be4f9e18a79fa36c2aef91b5d +doccontainersize 78428 +doccontainerchecksum 4af8dc61e53df587f19b61f6260e7a7820a8334f2841a63f2ecc05b7197eb69596dc36163b39cdaff9258651241a334b6e3a814699065c8ce4f861fba6110f83 docfiles size=45 RELOC/doc/latex/turnthepage/Makefile - RELOC/doc/latex/turnthepage/README + RELOC/doc/latex/turnthepage/README details="Readme" RELOC/doc/latex/turnthepage/perso.ist RELOC/doc/latex/turnthepage/turnthepage-bib.bib - RELOC/doc/latex/turnthepage/turnthepage.pdf + RELOC/doc/latex/turnthepage/turnthepage.pdf details="Package documentation" RELOC/doc/latex/turnthepage/turnthepage.tex +runfiles size=3 + RELOC/tex/latex/turnthepage/turnpageetex.sty + RELOC/tex/latex/turnthepage/turnpagewoetex.sty + RELOC/tex/latex/turnthepage/turnthepage.sty catalogue-ctan /macros/latex/contrib/turnthepage -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics layout exam catalogue-version 1.3a name twoinone category Package revision 17024 -shortdesc Print two pages on a single page. +shortdesc Print two pages on a single page relocated 1 longdesc The package is for printing two pages on a single (landscape) longdesc A4 page. Page numbers appear on the included pages, and not on longdesc the landscape 'container' page. -runfiles size=1 - RELOC/tex/latex/twoinone/2in1.sty +containersize 1272 +containerchecksum ffb9610d416a15f664bfc34772651af63f76843127290bd64462991b3b892a8bbe9b5a8251e278ce757883226bc07f89f54cf94be08d6bdbe6f68c5841e3a282 +doccontainersize 72400 +doccontainerchecksum 5b79b0b235fda5e32680884702a16fe033f3a617daa765a72233d22df5e217f6d2a617a2d067f6a230985e5144e6e6d733ef6e7060f267c6d22bf5de39361d41 docfiles size=20 - RELOC/doc/latex/twoinone/twoinone.pdf + RELOC/doc/latex/twoinone/twoinone.pdf details="Package documentation" RELOC/doc/latex/twoinone/twoinone.tex +runfiles size=1 + RELOC/tex/latex/twoinone/2in1.sty +catalogue-also twoupltx catalogue-ctan /macros/latex/contrib/twoinone -catalogue-date 2012-08-19 17:38:37 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics compact-print plain-ext name twoup category Package revision 15878 catalogue twoupltx -shortdesc Print two virtual pages on each physical page. +shortdesc Print two virtual pages on each physical page relocated 1 longdesc MiKTeX and many other TeX implementations include tools for longdesc massaging PostScript into booklet and two-up printing -- that @@ -167252,113 +285771,31 @@ longdesc sheet of paper. However, some LaTeX preliminaries are necessary longdesc to use those tools. The twoup package provides such longdesc preliminaries and gives advice on how to use the PostScript longdesc tools. -runfiles size=2 - RELOC/tex/latex/twoup/twoup.sty +containersize 2296 +containerchecksum b3734b3818498a7038d544304d27376ff481b81fbd776cc44b9d246c3e69560364a784d897755cb69f9608c51135a1fdbb8ed370d624db64dd7b5f18a48bf754 +doccontainersize 172196 +doccontainerchecksum 2bd34ca3274a229949c322a543c2e1fcffac7383edab2cbb7f0c74dd43d3b9531f9ade43f6d0126f5fd43371093f92170f69fdcbc4f69ba7fdca1d1fad167c36 docfiles size=52 - RELOC/doc/latex/twoup/README - RELOC/doc/latex/twoup/twoup.pdf + RELOC/doc/latex/twoup/README details="Package Readme" + RELOC/doc/latex/twoup/twoup.pdf details="Package documentation" +srccontainersize 9728 +srccontainerchecksum d121f96d050e4dac6b2b52ff99b9b1ac5d5dc5e815c670f6458cdf8989a7be5e5a2ffcf4bb25d3f1ab6d5c02d1c67c15382ea266d0ef2e1f6e86e404fa1dff20 srcfiles size=9 RELOC/source/latex/twoup/twoup.dtx RELOC/source/latex/twoup/twoup.ins +runfiles size=2 + RELOC/tex/latex/twoup/twoup.sty +catalogue-also twoinone catalogue-ctan /macros/latex/contrib/twoup -catalogue-date 2012-08-19 17:50:37 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics compact-print catalogue-version 1.3 -name txfontsb -category Package -revision 21578 -shortdesc Extensions to txfonts, using GNU Freefont. -relocated 1 -longdesc A set of fonts that extend the txfonts bundle with small caps -longdesc and old style numbers, together with Greek support. The -longdesc extensions are made with modifications of the GNU Freefont. -execute addMap gptimes.map -runfiles size=1596 - RELOC/fonts/afm/public/txfontsb/FreeSerifb-SmallCaps.afm - RELOC/fonts/afm/public/txfontsb/FreeSerifb-SmallCapsAlt.afm - RELOC/fonts/afm/public/txfontsb/FreeSerifb.afm - RELOC/fonts/afm/public/txfontsb/FreeSerifbBold.afm - RELOC/fonts/afm/public/txfontsb/FreeSerifbBoldItalic.afm - RELOC/fonts/afm/public/txfontsb/FreeSerifbItalic.afm - RELOC/fonts/enc/dvips/txfontsb/gptimes.enc - RELOC/fonts/enc/dvips/txfontsb/gptimesy.enc - RELOC/fonts/map/dvips/txfontsb/gptimes.map - RELOC/fonts/tfm/public/txfontsb/gtimesb6a.tfm - RELOC/fonts/tfm/public/txfontsb/gtimesb6r.tfm - RELOC/fonts/tfm/public/txfontsb/gtimesbi6a.tfm - RELOC/fonts/tfm/public/txfontsb/gtimesbi6r.tfm - RELOC/fonts/tfm/public/txfontsb/gtimesg6r.tfm - RELOC/fonts/tfm/public/txfontsb/gtimesi6a.tfm - RELOC/fonts/tfm/public/txfontsb/gtimesi6r.tfm - RELOC/fonts/tfm/public/txfontsb/gtimesrg6a.tfm - RELOC/fonts/tfm/public/txfontsb/gtimessc6a.tfm - RELOC/fonts/tfm/public/txfontsb/gtimessc6r.tfm - RELOC/fonts/tfm/public/txfontsb/gtimessco6a.tfm - RELOC/fonts/tfm/public/txfontsb/gtimessco6r.tfm - RELOC/fonts/tfm/public/txfontsb/gtimesyb6a.tfm - RELOC/fonts/tfm/public/txfontsb/gtimesyb6r.tfm - RELOC/fonts/tfm/public/txfontsb/gtimesybi6a.tfm - RELOC/fonts/tfm/public/txfontsb/gtimesybi6r.tfm - RELOC/fonts/tfm/public/txfontsb/gtimesyg6r.tfm - RELOC/fonts/tfm/public/txfontsb/gtimesyi6a.tfm - RELOC/fonts/tfm/public/txfontsb/gtimesyi6r.tfm - RELOC/fonts/tfm/public/txfontsb/gtimesyrg6a.tfm - RELOC/fonts/tfm/public/txfontsb/gtimesysc6a.tfm - RELOC/fonts/tfm/public/txfontsb/gtimesysc6r.tfm - RELOC/fonts/tfm/public/txfontsb/gtimesysco6a.tfm - RELOC/fonts/tfm/public/txfontsb/gtimesysco6r.tfm - RELOC/fonts/tfm/public/txfontsb/timessc6a.tfm - RELOC/fonts/tfm/public/txfontsb/timessc6r.tfm - RELOC/fonts/tfm/public/txfontsb/timessco6a.tfm - RELOC/fonts/tfm/public/txfontsb/timessco6r.tfm - RELOC/fonts/type1/public/txfontsb/FreeSerifb-SmallCaps.pfb - RELOC/fonts/type1/public/txfontsb/FreeSerifb-SmallCapsAlt.pfb - RELOC/fonts/type1/public/txfontsb/FreeSerifb.pfb - RELOC/fonts/type1/public/txfontsb/FreeSerifbBold.pfb - RELOC/fonts/type1/public/txfontsb/FreeSerifbBoldItalic.pfb - RELOC/fonts/type1/public/txfontsb/FreeSerifbItalic.pfb - RELOC/fonts/vf/public/txfontsb/gtimesb6a.vf - RELOC/fonts/vf/public/txfontsb/gtimesbi6a.vf - RELOC/fonts/vf/public/txfontsb/gtimesi6a.vf - RELOC/fonts/vf/public/txfontsb/gtimesrg6a.vf - RELOC/fonts/vf/public/txfontsb/gtimessc6a.vf - RELOC/fonts/vf/public/txfontsb/gtimessco6a.vf - RELOC/fonts/vf/public/txfontsb/gtimesyb6a.vf - RELOC/fonts/vf/public/txfontsb/gtimesybi6a.vf - RELOC/fonts/vf/public/txfontsb/gtimesyi6a.vf - RELOC/fonts/vf/public/txfontsb/gtimesyrg6a.vf - RELOC/fonts/vf/public/txfontsb/gtimesysc6a.vf - RELOC/fonts/vf/public/txfontsb/gtimesysco6a.vf - RELOC/fonts/vf/public/txfontsb/timessc6a.vf - RELOC/fonts/vf/public/txfontsb/timessco6a.vf - RELOC/tex/latex/txfontsb/lgrtxr.fd - RELOC/tex/latex/txfontsb/lgrtxrc.fd - RELOC/tex/latex/txfontsb/lgrtxry.fd - RELOC/tex/latex/txfontsb/lgrtxryc.fd - RELOC/tex/latex/txfontsb/ot1txrc.fd - RELOC/tex/latex/txfontsb/ot1txryc.fd - RELOC/tex/latex/txfontsb/txfontsb.sty -docfiles size=22 - RELOC/doc/fonts/txfontsb/README - RELOC/doc/fonts/txfontsb/txfontsb.pdf - RELOC/doc/fonts/txfontsb/txfontsb.tex -srcfiles size=6871 - RELOC/source/fonts/txfontsb/FreeSerifb-SmallCaps.sfd - RELOC/source/fonts/txfontsb/FreeSerifb-SmallCapsAlt.sfd - RELOC/source/fonts/txfontsb/FreeSerifb.sfd - RELOC/source/fonts/txfontsb/FreeSerifbBold.sfd - RELOC/source/fonts/txfontsb/FreeSerifbBoldItalic.sfd - RELOC/source/fonts/txfontsb/FreeSerifbItalic.sfd -catalogue-ctan /fonts/txfontsb -catalogue-date 2014-05-31 21:01:32 +0200 -catalogue-license gpl -catalogue-version 1.1 - name txfonts category Package revision 15878 -shortdesc Times-like fonts in support of mathematics. +shortdesc Times-like fonts in support of mathematics relocated 1 longdesc Txfonts supplies virtual text roman fonts using Adobe Times (or longdesc URW NimbusRomNo9L) with some modified and additional text @@ -167372,6 +285809,19 @@ longdesc All the fonts are in Type 1 format (AFM and PFB files), and are longdesc supported by TeX metrics (VF and TFM files) and macros for use longdesc with LaTeX. execute addMap txfonts.map +containersize 709536 +containerchecksum 2e6a195791067ec85f4eeaea5970467c97915dfa48f59d17b5a73c90ba221de1b41ed35502c6714335cd190af05ccaefc6cd5855c5f35f49bd8e15a2b4ca0726 +doccontainersize 619372 +doccontainerchecksum f19a988305799931023026f714b63ee539ebaddcd39e9be1f1bf765cc4cc89428b626ff4d6bfc91ea2f324f08cf09b618b6a0f8db6b01dc9d8685618daa1e2d1 +docfiles size=233 + RELOC/doc/fonts/txfonts/00bug_fix.txt + RELOC/doc/fonts/txfonts/COPYRIGHT + RELOC/doc/fonts/txfonts/README + RELOC/doc/fonts/txfonts/txfontsdoc.pdf details="Package documentation (Letter)" + RELOC/doc/fonts/txfonts/txfontsdoc.tex + RELOC/doc/fonts/txfonts/txfontsdocA4.pdf details="Package documentation (A4)" + RELOC/doc/fonts/txfonts/txfontsdocA4.tex + RELOC/doc/fonts/txfonts/txmi.vpl runfiles size=558 RELOC/fonts/afm/public/txfonts/rtcxb.afm RELOC/fonts/afm/public/txfonts/rtcxbi.afm @@ -167679,23 +286129,114 @@ runfiles size=558 RELOC/tex/latex/txfonts/utxsyb.fd RELOC/tex/latex/txfonts/utxsyc.fd RELOC/tex/latex/txfonts/utxtt.fd -docfiles size=233 - RELOC/doc/fonts/txfonts/00bug_fix.txt - RELOC/doc/fonts/txfonts/COPYRIGHT - RELOC/doc/fonts/txfonts/README - RELOC/doc/fonts/txfonts/txfontsdoc.pdf - RELOC/doc/fonts/txfonts/txfontsdoc.tex - RELOC/doc/fonts/txfonts/txfontsdocA4.pdf - RELOC/doc/fonts/txfonts/txfontsdocA4.tex - RELOC/doc/fonts/txfonts/txmi.vpl +catalogue-also newtx catalogue-ctan /fonts/txfonts -catalogue-date 2014-05-31 21:01:32 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics font font-maths font-type1 + +name txfontsb +category Package +revision 21578 +shortdesc Extensions to txfonts, using GNU Freefont +relocated 1 +longdesc A set of fonts that extend the txfonts bundle with small caps +longdesc and old style numbers, together with Greek support. The +longdesc extensions are made with modifications of the GNU Freefont. +execute addMap gptimes.map +containersize 2481212 +containerchecksum bcad7b4043aab05469166bc747a14746d8deaa3bf0d354c5b7bb706a86c4b95bea9943ef4529289f82ca939cffe377dc4f5cc89e95fc4bb4da797b61cc9b6c63 +doccontainersize 59380 +doccontainerchecksum f6af38502971c30cc2e082b0eb64ee86d494b77937e13b70dad24c77c90bc076b2b983028636bcdfb51ae5efb7d901cd082ca5d3cc6b7360d299611718d6eb31 +docfiles size=22 + RELOC/doc/fonts/txfontsb/README details="Readme" + RELOC/doc/fonts/txfontsb/txfontsb.pdf details="Package documentation" + RELOC/doc/fonts/txfontsb/txfontsb.tex +srccontainersize 1940068 +srccontainerchecksum 61da236fc5cc33b520c4d7a68beca24dd4799bbed7675d44a3daa8bb4a815a3f3944d73eaaa157536a60c6d67d68dd9a214f083b1dd2bc768f14611b6ddd8aeb +srcfiles size=6871 + RELOC/source/fonts/txfontsb/FreeSerifb-SmallCaps.sfd + RELOC/source/fonts/txfontsb/FreeSerifb-SmallCapsAlt.sfd + RELOC/source/fonts/txfontsb/FreeSerifb.sfd + RELOC/source/fonts/txfontsb/FreeSerifbBold.sfd + RELOC/source/fonts/txfontsb/FreeSerifbBoldItalic.sfd + RELOC/source/fonts/txfontsb/FreeSerifbItalic.sfd +runfiles size=1596 + RELOC/fonts/afm/public/txfontsb/FreeSerifb-SmallCaps.afm + RELOC/fonts/afm/public/txfontsb/FreeSerifb-SmallCapsAlt.afm + RELOC/fonts/afm/public/txfontsb/FreeSerifb.afm + RELOC/fonts/afm/public/txfontsb/FreeSerifbBold.afm + RELOC/fonts/afm/public/txfontsb/FreeSerifbBoldItalic.afm + RELOC/fonts/afm/public/txfontsb/FreeSerifbItalic.afm + RELOC/fonts/enc/dvips/txfontsb/gptimes.enc + RELOC/fonts/enc/dvips/txfontsb/gptimesy.enc + RELOC/fonts/map/dvips/txfontsb/gptimes.map + RELOC/fonts/tfm/public/txfontsb/gtimesb6a.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesb6r.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesbi6a.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesbi6r.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesg6r.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesi6a.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesi6r.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesrg6a.tfm + RELOC/fonts/tfm/public/txfontsb/gtimessc6a.tfm + RELOC/fonts/tfm/public/txfontsb/gtimessc6r.tfm + RELOC/fonts/tfm/public/txfontsb/gtimessco6a.tfm + RELOC/fonts/tfm/public/txfontsb/gtimessco6r.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesyb6a.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesyb6r.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesybi6a.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesybi6r.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesyg6r.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesyi6a.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesyi6r.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesyrg6a.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesysc6a.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesysc6r.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesysco6a.tfm + RELOC/fonts/tfm/public/txfontsb/gtimesysco6r.tfm + RELOC/fonts/tfm/public/txfontsb/timessc6a.tfm + RELOC/fonts/tfm/public/txfontsb/timessc6r.tfm + RELOC/fonts/tfm/public/txfontsb/timessco6a.tfm + RELOC/fonts/tfm/public/txfontsb/timessco6r.tfm + RELOC/fonts/type1/public/txfontsb/FreeSerifb-SmallCaps.pfb + RELOC/fonts/type1/public/txfontsb/FreeSerifb-SmallCapsAlt.pfb + RELOC/fonts/type1/public/txfontsb/FreeSerifb.pfb + RELOC/fonts/type1/public/txfontsb/FreeSerifbBold.pfb + RELOC/fonts/type1/public/txfontsb/FreeSerifbBoldItalic.pfb + RELOC/fonts/type1/public/txfontsb/FreeSerifbItalic.pfb + RELOC/fonts/vf/public/txfontsb/gtimesb6a.vf + RELOC/fonts/vf/public/txfontsb/gtimesbi6a.vf + RELOC/fonts/vf/public/txfontsb/gtimesi6a.vf + RELOC/fonts/vf/public/txfontsb/gtimesrg6a.vf + RELOC/fonts/vf/public/txfontsb/gtimessc6a.vf + RELOC/fonts/vf/public/txfontsb/gtimessco6a.vf + RELOC/fonts/vf/public/txfontsb/gtimesyb6a.vf + RELOC/fonts/vf/public/txfontsb/gtimesybi6a.vf + RELOC/fonts/vf/public/txfontsb/gtimesyi6a.vf + RELOC/fonts/vf/public/txfontsb/gtimesyrg6a.vf + RELOC/fonts/vf/public/txfontsb/gtimesysc6a.vf + RELOC/fonts/vf/public/txfontsb/gtimesysco6a.vf + RELOC/fonts/vf/public/txfontsb/timessc6a.vf + RELOC/fonts/vf/public/txfontsb/timessco6a.vf + RELOC/tex/latex/txfontsb/lgrtxr.fd + RELOC/tex/latex/txfontsb/lgrtxrc.fd + RELOC/tex/latex/txfontsb/lgrtxry.fd + RELOC/tex/latex/txfontsb/lgrtxryc.fd + RELOC/tex/latex/txfontsb/ot1txrc.fd + RELOC/tex/latex/txfontsb/ot1txryc.fd + RELOC/tex/latex/txfontsb/txfontsb.sty +catalogue-also newtx +catalogue-ctan /fonts/txfontsb +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics font font-maths font-greek font-type1 +catalogue-version 1.1 name txgreeks category Package revision 21839 -shortdesc Shape selection for TX fonts Greek letters. +shortdesc Shape selection for TX fonts Greek letters relocated 1 longdesc The package allows LaTeX users who use the TX fonts to select longdesc the shapes (italic or upright) for the Greek lowercase and @@ -167704,23 +286245,63 @@ longdesc have been selected via a package option, the \other prefix longdesc (e.g., \otheralpha) allows using the alternate glyph (as in the longdesc fourier package). The txgreeks package does not constrain the longdesc text font that may be used in the document. -runfiles size=2 - RELOC/tex/latex/txgreeks/txgreeks.sty +containersize 2116 +containerchecksum 05b24a0c9705589d2e04933a5e29b8a49de155ad0e9a4caa0c36785f7feafe475275b76c58aa50d9318df26342b800382d3c9e8164bd95fdf400f730191282f0 +doccontainersize 56040 +doccontainerchecksum b671e433740ddc414e0a881d1f91a1311ab0957038ebeba23fe99d623a62e0499825548dd591d0adc67d32a5d7331cdcdc76be6ba87f77265bcf48758626919f docfiles size=18 - RELOC/doc/latex/txgreeks/README - RELOC/doc/latex/txgreeks/txgreeks.pdf + RELOC/doc/latex/txgreeks/README details="Readme" + RELOC/doc/latex/txgreeks/txgreeks.pdf details="Package documentation" +srccontainersize 4652 +srccontainerchecksum 09ffe315c18dfe3ce065a6a48dd17f1340c2381df2585a973b666d2a93f1560be11fec50c44e178a154bc39416437772ef1059c539e5934ca6b02866a087eecb srcfiles size=4 RELOC/source/latex/txgreeks/txgreeks.dtx RELOC/source/latex/txgreeks/txgreeks.ins +runfiles size=2 + RELOC/tex/latex/txgreeks/txgreeks.sty catalogue-ctan /macros/latex/contrib/txgreeks -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics font-supp catalogue-version 1.0 +name txuprcal +category Package +revision 43327 +shortdesc Upright calligraphic font based on TX calligraphic +relocated 1 +longdesc This small package provides a means of loading as \mathcal an +longdesc uprighted version of the calligraphic fonts from the TX font +longdesc package. A scaled option to provided to allow arbitrary +longdesc scaling. +execute addMap TXUprCal.map +containersize 51556 +containerchecksum f6840ff0846b52130b65c81513d4bf358dfea413ac6d7f324eab592b96d5277d7036e5d991dbfc1ecf6376fd35baaf0351818eed69a21b6ba88e25f878a41ef1 +doccontainersize 86800 +doccontainerchecksum f5bd216c689b0368bbbfe29f7fbd57bb7c02344d8696af488fdd7f1078fc5ad9ac7ad5565f1408b7b7d19224093d1418c1e3d8920b8cb0cece770811576c894a +docfiles size=23 + RELOC/doc/fonts/txuprcal/README details="Readme" + RELOC/doc/fonts/txuprcal/txuprcal-doc.pdf details="Package documentation" + RELOC/doc/fonts/txuprcal/txuprcal-doc.tex +runfiles size=19 + RELOC/fonts/map/dvips/txuprcal/TXUprCal.map + RELOC/fonts/tfm/public/txuprcal/txUprCal-Bold.tfm + RELOC/fonts/tfm/public/txuprcal/txUprCal-Regular.tfm + RELOC/fonts/type1/public/txuprcal/txuprcal-bold.pfb + RELOC/fonts/type1/public/txuprcal/txuprcal-reg.pfb + RELOC/tex/latex/txuprcal/txuprcal.sty + RELOC/tex/latex/txuprcal/utxuprcal.fd +catalogue-also txfonts +catalogue-ctan /fonts/txuprcal +catalogue-date 2017-03-09 05:20:00 +0100 +catalogue-license gpl3 +catalogue-topics font-maths font-type1 +catalogue-version 1.00 + name type1cm category Package revision 21820 -shortdesc Arbitrary size font selection in LaTeX. +shortdesc Arbitrary size font selection in LaTeX relocated 1 longdesc LaTeX, by default, restricts the sizes at which you can use its longdesc default computer modern fonts, to a fixed set of discrete sizes @@ -167734,45 +286315,66 @@ longdesc application than just those using scaleable versions of the longdesc fonts. Note that the LaTeX distribution now contains a package longdesc fix-cm, which performs the task of type1cm, as well as doing longdesc the same job for T1- and TS1-encoded ec fonts. -runfiles size=2 - RELOC/tex/latex/type1cm/type1cm.sty +containersize 2064 +containerchecksum 85a72c942e61dc0c0fd3fd7646d264ee692ecaf4e2badab4f68dbcc380a1c88a78d4ce066e23a08d1cfb29ed3af0115b08ea05a0e078283513eb14f9c6031863 +doccontainersize 324940 +doccontainerchecksum 6cd4061eced23057d860143dd7121b1e0ca1a17de1c2f08334c678c9623c0066ee77c1ab5036953ce390be7356d3fc0d155a5de1f0aa977e1e95296fe71d5199 docfiles size=83 - RELOC/doc/latex/type1cm/type1cm-doc.pdf + RELOC/doc/latex/type1cm/type1cm-doc.pdf details="Package documentation" RELOC/doc/latex/type1cm/type1cm-doc.tex RELOC/doc/latex/type1cm/type1cm.txt +srccontainersize 2460 +srccontainerchecksum 6a66a866c6edbe8c914bd3b0a7568c0e23914253fcb70fd849326e42b2c32860c97756fb94f5879dead5bc3f057cba64f639038b5a125f607c3f21abe4807bf7 srcfiles size=4 RELOC/source/latex/type1cm/type1cm.fdd RELOC/source/latex/type1cm/type1cm.ins +runfiles size=2 + RELOC/tex/latex/type1cm/type1cm.sty +catalogue-also type1ec fix-cm catalogue-ctan /macros/latex/contrib/type1cm -catalogue-date 2012-05-16 13:32:16 +0200 -catalogue-license lppl - -name Type1fonts -category Package -revision 19603 -catalogue fontinstallationguide -shortdesc Font installation guide. -relocated 1 -longdesc This guide discusses the most common scenarios you are likely -longdesc to encounter when installing Type 1 PostScript fonts. While the -longdesc individual tools employed in the installation process are -longdesc documented well, the actual difficulty most users are facing -longdesc when trying to install new fonts is understanding how to put -longdesc all the pieces together. This is what this guide is about. -docfiles size=242 - RELOC/doc/fonts/Type1fonts/README - RELOC/doc/fonts/Type1fonts/examples.zip - RELOC/doc/fonts/Type1fonts/fontinstallationguide.pdf - RELOC/doc/fonts/Type1fonts/fontinstallationguide.tex -catalogue-ctan /info/Type1fonts/fontinstallationguide -catalogue-date 2012-07-06 23:09:35 +0200 -catalogue-license fdl -catalogue-version 2.14 +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font-supp + +name typed-checklist +category Package +revision 49731 +shortdesc Typesetting tasks, goals, milestones, artifacts, and more in LaTeX +relocated 1 +longdesc The main goal of this package is to provide means for +longdesc typesetting checklists in a way that stipulates users to +longdesc explicitly distinguish checklists for goals, for tasks, for +longdesc artifacts, and for milestones -- i.e., the type of checklist +longdesc entries. The intention behind this is that a user of the +longdesc package is coerced to think about what kind of entries he/she +longdesc adds to the checklist. This shall yield a clearer result and, +longdesc in the long run, help with training to distinguish entries of +longdesc different types. +containersize 5452 +containerchecksum 3ebcc55c6e6e5abe50b1040be5d53f662c632a8b53f2d1914dee66ff0ec812d61057113f8af5062171a3bc9f7a67de0b3b5768eb701534d386d0db6fdfea0ed2 +doccontainersize 346992 +doccontainerchecksum 87943514c64b12bc85711086f17bf06794e110f36b67232659f6746f39d4e671a7b618d45c21c7d034e5aef3f3374c959445e235329fd16d370410fc5f9621ec +docfiles size=88 + RELOC/doc/latex/typed-checklist/README.md details="Readme" + RELOC/doc/latex/typed-checklist/typed-checklist.pdf details="Package documentation" +srccontainersize 24360 +srccontainerchecksum bb0775fdb62b386d8b712a955849462c2c3c812469921a00a00d2fee20590a15f300f622bea0d86d6db7b2788c45bca4eeec443cb3c08b97c35e5f51e497fe81 +srcfiles size=26 + RELOC/source/latex/typed-checklist/typed-checklist.dtx + RELOC/source/latex/typed-checklist/typed-checklist.ins +runfiles size=5 + RELOC/tex/latex/typed-checklist/typed-checklist.sty +catalogue-contact-repository https://github.com/Ri-Ga/typed-checklist +catalogue-ctan /macros/latex/contrib/typed-checklist +catalogue-date 2019-01-16 09:01:57 +0100 +catalogue-license lppl1.2 +catalogue-topics list +catalogue-version 2.0 name typeface category Package revision 27046 -shortdesc Select a balanced set of fonts. +shortdesc Select a balanced set of fonts relocated 1 longdesc The package provides the means of establishing a consistent set longdesc of fonts for use in a LaTeX document. It allows mixing and @@ -167786,71 +286388,250 @@ longdesc transformation is given in those options. The approach enables longdesc the user to remember their own configurations (as a single longdesc command) and to borrow configurations that other users have longdesc developed. The present release is designated "for review". -runfiles size=57 - RELOC/tex/latex/typeface/typeface.cfg - RELOC/tex/latex/typeface/typeface.sty +containersize 44444 +containerchecksum 68a71a590aaf3c6defc28a52b47f38bd1d24ec034df904d7baf4e22f1d390ebbabe744855bda70e72986450b402f03295f772a9576a2bffcab5638f3f77718db +doccontainersize 17669688 +doccontainerchecksum 548caa57dcde46484ae947f46abbd8cfae54c0325b42cc32c23c092e23f7cfe6589b6ddcee1eef09ece3c5ce0328fa561c52234899d9544fdb86440c91c63ce9 docfiles size=4487 - RELOC/doc/latex/typeface/README - RELOC/doc/latex/typeface/typeface-all-rm.pdf + RELOC/doc/latex/typeface/README details="Readme" + RELOC/doc/latex/typeface/typeface-all-rm.pdf details="Properties of fonts that are available" RELOC/doc/latex/typeface/typeface-test.tex - RELOC/doc/latex/typeface/typeface.pdf + RELOC/doc/latex/typeface/typeface.pdf details="Package documentation" RELOC/doc/latex/typeface/typeface.tex +srccontainersize 1932 +srccontainerchecksum 3c0a366505b9631e4240bc6a54619c8f526b18ddada30f2a88f8adb29916d0be755bc0643fcb40dc4d1a0bc371596774d029ab4c42d473ec09c36fb48e99cd12 srcfiles size=6 RELOC/source/latex/typeface/typeface-all-rm.bat +runfiles size=57 + RELOC/tex/latex/typeface/typeface.cfg + RELOC/tex/latex/typeface/typeface.sty catalogue-ctan /macros/latex/contrib/typeface -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics font-sel catalogue-version 0.1 name typehtml category Package revision 17134 -shortdesc Typeset HTML directly from LaTeX. +shortdesc Typeset HTML directly from LaTeX relocated 1 longdesc Can handle almost all of HTML2, and most of the math fragment longdesc of the draft HTML3. -runfiles size=7 - RELOC/tex/latex/typehtml/typehtml.sty +containersize 6928 +containerchecksum 9a158c2fd4c16a5dda1f8828ba32e082f5839fb841a8479563828b0085db4fbe28cb91674c6f22ab4965f8bf6f6cdc0f5b3113743113ca0188ff8bb851845ae3 +doccontainersize 155096 +doccontainerchecksum 0001ed86af90c4fba458d299a2651a200ece010ec76bd8e934afcbacb7d7684fcd6c9514d280bac886a41eb38b4630fa52b1ea18da70ef9c29bc04618e392673 docfiles size=47 - RELOC/doc/latex/typehtml/README - RELOC/doc/latex/typehtml/typehtml.pdf + RELOC/doc/latex/typehtml/README details="Readme" + RELOC/doc/latex/typehtml/typehtml.pdf details="Package documentation" +srccontainersize 16928 +srccontainerchecksum 729bb6acd2e6ec28bb18972cc58b7ef8efae136bea2d96a38cedb4b0d40b02e00e2b21143706325bcf9add879e8adcc6b0194b6cbef3803c5566e7f6f0e63ca7 srcfiles size=17 RELOC/source/latex/typehtml/typehtml.dtx RELOC/source/latex/typehtml/typehtml.ins +runfiles size=7 + RELOC/tex/latex/typehtml/typehtml.sty catalogue-ctan /macros/latex/contrib/typehtml -catalogue-date 2011-10-03 12:30:02 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics foreign-import name typeoutfileinfo category Package revision 29349 -shortdesc Display class/package/file information. +shortdesc Display class/package/file information longdesc The package provides a minimalist shell script, for Unix longdesc systems, that displays the information content in a longdesc \ProvidesFile, \ProvidesPackage or \ProvidesClass command in a longdesc LaTeX source file. The package requires that the readprov longdesc package is available. depend typeoutfileinfo.ARCH +containersize 1628 +containerchecksum b30d2618c8cdbf69fcb8a5444922185a52b934448b5d28ba143948cf80ed17cb402d73d1162194df3d2992a52ca9e6faca79000644eef968c4eba892c415b6bd +doccontainersize 756 +doccontainerchecksum 143c4ad9cb3890b6350069d5d045f74c0bb0cfbe50e7d051c50c82011b56e651d483c1422d7d553a8d1d1784ae726a1ca1aead023fc3ccb1da4f0d59d47f7920 +docfiles size=1 + texmf-dist/doc/support/typeoutfileinfo/README details="Readme" runfiles size=1 texmf-dist/scripts/typeoutfileinfo/typeoutfileinfo.sh -docfiles size=1 - texmf-dist/doc/support/typeoutfileinfo/README +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html catalogue-ctan /support/typeoutfileinfo -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-05-06 09:34:02 +0200 catalogue-license lppl1.3 +catalogue-topics file-mgmt catalogue-version 0.31 +name typeoutfileinfo.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of typeoutfileinfo +containersize 348 +containerchecksum a4e75c6274b486cf8b6dbf8ba57549c275733e164d796ad212938f303de2c3757d8f829f55bf833b172cfd1630c7aca00e032a3b37798440c8e218e51e04e94d +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/typeoutfileinfo + +name typeoutfileinfo.amd64-freebsd +category Package +revision 25648 +shortdesc amd64-freebsd files of typeoutfileinfo +containersize 348 +containerchecksum df7ddcfc696333dd0f247144494d726048163ddebe99cce372f9b758fabbb2217a3301438dd457f0e939b83e0d1d68ea42e57c3b2bd14b9405154497d689b37a +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/typeoutfileinfo + +name typeoutfileinfo.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of typeoutfileinfo +containersize 348 +containerchecksum 9e3721e82f152f1843e8603af09fcfce1685ad83bf488df881a7873bdfa989c52ec85a595368e87b0b4bbabec1fe70c233b853a7f450f9166c67a5d6c973af62 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/typeoutfileinfo + +name typeoutfileinfo.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of typeoutfileinfo +containersize 348 +containerchecksum 3abe28aa66cb7c68206b3ffce7f264ee00fe63f021bac2bd92e24b58d8e5365afcb4ca59a2fb97f3da2b0689d468849c0c1397d035f0d49dc3e289db224bdf43 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/typeoutfileinfo + +name typeoutfileinfo.i386-cygwin +category Package +revision 25648 +shortdesc i386-cygwin files of typeoutfileinfo +containersize 344 +containerchecksum 29318e38aa936803dc047ab3e9b98ffa901ba5a0b66848987960f01ed8e047e4314b15308c5bc6cd73ae58ab312d236d76c91195462d790dcf91f263356ea5c6 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/typeoutfileinfo + +name typeoutfileinfo.i386-freebsd +category Package +revision 25648 +shortdesc i386-freebsd files of typeoutfileinfo +containersize 348 +containerchecksum d14e3248f198456ed9bd260f90de220f3e3c26f5946db06158ce9d05d58f6dad3341a602bd37793cc8f0ed25f7c0f846691a53b8543568be630480b67f33a96d +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/typeoutfileinfo + name typeoutfileinfo.i386-linux category Package revision 25648 shortdesc i386-linux files of typeoutfileinfo +containersize 348 +containerchecksum a048a1843ebe71a3be2ec35f543e9936b4ed844a265f56af558d51bbdfde7887cd05a20696c5163232a35d1782d5c20f4692950193e6ae5578d76462c07897a8 binfiles arch=i386-linux size=1 bin/i386-linux/typeoutfileinfo +name typeoutfileinfo.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of typeoutfileinfo +containersize 348 +containerchecksum 47792fe62a91cc7599501c472a4c78269f2fb0245e92e6b6537a65ef40f9ac98f6961d18ad9f2dfc0d1434552cf3221b577181fdee08c01629a289d67d8a771f +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/typeoutfileinfo + +name typeoutfileinfo.i386-solaris +category Package +revision 25648 +shortdesc i386-solaris files of typeoutfileinfo +containersize 348 +containerchecksum 3cefa1ad720942ba13de1e4643467d8b74396cd8f996b66d50189ce345a1ffa58ee6322c1fd8df6f4e7abb8cb551c60046ef8f39b85483e3ffeb10226093bbe4 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/typeoutfileinfo + +name typeoutfileinfo.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of typeoutfileinfo +containersize 348 +containerchecksum 88dc56e3b1950f44b72fe606e29b01b027c6bb22afdad2f2de332b53e26e20259716d706fda08b8be20dfb283df65e4c0f8f74d8a043022a089f55527f0a3541 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/typeoutfileinfo + +name typeoutfileinfo.x86_64-darwin +category Package +revision 25648 +shortdesc x86_64-darwin files of typeoutfileinfo +containersize 348 +containerchecksum 9cf28d9c7c033bc44b132988f7d8c2de0075004ade26ac13685a494ea57355f0446cc2fabe9774dd05fc8d3ecbd805cc773be09b92a4c4bd774da5fbcdcc0175 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/typeoutfileinfo + +name typeoutfileinfo.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of typeoutfileinfo +containersize 356 +containerchecksum 4a8a6dfe0424fc15aaa87da4fe6f9c2c882dc0a402823fdb2c61d6a9c3f1813ee0abd993a450b1eeef7e1b5b4d77e27d153e9035576855e165f0c01fcdbec256 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/typeoutfileinfo + +name typeoutfileinfo.x86_64-linux +category Package +revision 25648 +shortdesc x86_64-linux files of typeoutfileinfo +containersize 344 +containerchecksum bb5b0d91637fbef237a7969c5af8cd8927c7e7e0cd46b67252204898a713afd5344a02b67d5d97aeba718df6cbf58ae2d4aaf92babca603cd82397c3834ee917 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/typeoutfileinfo + +name typeoutfileinfo.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of typeoutfileinfo +containersize 348 +containerchecksum 0c353378420560033c7a5c106a3171ae6167dcb435993d73d95e503afadfa7ce4ad857106046543cebe429fa412789c4b0129b03013d4ae843a0da8c1cdc1913 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/typeoutfileinfo + +name typeoutfileinfo.x86_64-solaris +category Package +revision 25648 +shortdesc x86_64-solaris files of typeoutfileinfo +containersize 344 +containerchecksum b0733eebc9bc320dc604403f5cce2d47d0a2ab0ce36c9d5d17a402efa0a2e4a60606974ce67bedf6df2e433b13ec6f7489b9da4b9720df277e60253118db524e +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/typeoutfileinfo + +name typewriter +category Package +revision 46641 +shortdesc Typeset with a randomly variable monospace font +relocated 1 +longdesc The typewriter package uses the OpenType Computer Modern +longdesc Unicode Typewriter font, together with a LuaTeX virtual font +longdesc setup that introduces random variability in grey level and +longdesc angle of each character. It was originally an answer to a +longdesc question on stackexchange. +containersize 25272 +containerchecksum f8b9edca6a860f0acf0d676fff381276594f7c13fb13da2e54caf5513a8a65fde378b4c16dc621d89d25d7492318b006d7c5d863c1f96a0a246064c0dad1f2d8 +doccontainersize 101056 +doccontainerchecksum 12376247fd8500e7c147609bf47acab379e36126976ea9f2dc0a352b8b0d779b1cd43bd1394f3961b1a7fa894a8b6448b0369f612d8bbf8d1bec3175e850f89c +docfiles size=27 + RELOC/doc/lualatex/typewriter/README.md details="Readme" + RELOC/doc/lualatex/typewriter/typewriter-guide.pdf details="Package documentation" + RELOC/doc/lualatex/typewriter/typewriter-guide.tex +runfiles size=63 + RELOC/tex/lualatex/typewriter/typewriter.sty +catalogue-also ransom manuscript +catalogue-contact-bugs https://github.com/davidcarlisle/dpctex/issues +catalogue-contact-home https://github.com/davidcarlisle/dpctex/ +catalogue-contact-repository https://github.com/davidcarlisle/dpctex/ +catalogue-contact-support https://github.com/davidcarlisle/dpctex/issues +catalogue-ctan /macros/luatex/latex/typewriter +catalogue-date 2018-02-14 13:01:28 +0100 +catalogue-license lppl +catalogue-topics typesetting +catalogue-version 1.1 + name typicons category Package revision 37623 -shortdesc Font containing a set of web-related icons. +shortdesc Font containing a set of web-related icons relocated 1 longdesc This package grants access to 336 web-related icons provided by longdesc the included "Typicons" free font, designed by Stephen @@ -167863,114 +286644,136 @@ longdesc general \ticon command, which takes as argument the name of the longdesc desired icon, or through direct commands specific to each icon. longdesc The full list of icon designs, names and direct commands is longdesc showcased in the manual. +containersize 59552 +containerchecksum 38b0afff6e88635a2a27502f1abc279fd70e49f36d56bb44114895614cf80184ebf8b627bcd576d128b3557de08b3791c5c2e48f2adac9766f9a809ff0db3cba +doccontainersize 134792 +doccontainerchecksum 36b9517833fa6c430671fdaf0ad0775813c22ea3b3f56fad96410dd90e052b76d81f0ecd411ec19b567cd664b7ca44b9268d05ce59fb9bea0429c8f91c3a4a55 +docfiles size=39 + RELOC/doc/fonts/typicons/README details="Readme" + RELOC/doc/fonts/typicons/typicons.pdf details="Package documentation" + RELOC/doc/fonts/typicons/typicons.tex runfiles size=39 RELOC/fonts/truetype/public/typicons/typicons.ttf RELOC/tex/latex/typicons/typicons.sty -docfiles size=39 - RELOC/doc/fonts/typicons/README - RELOC/doc/fonts/typicons/typicons.pdf - RELOC/doc/fonts/typicons/typicons.tex catalogue-ctan /fonts/typicons -catalogue-date 2015-05-26 05:52:50 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 catalogue-topics font font-supp-symbol font-symbol font-ttf catalogue-version 2.0.7 +name typoaid +category Package +revision 44238 +shortdesc Macros for font diagnostics +relocated 1 +longdesc This package provides macros for measuring alphabet lengths +longdesc (i.e. the length occupied by the characters "abcd...xyz"), +longdesc em-widths and ex-heights, which may help in making typesetting +longdesc decisions. The package is compatible with pdfLaTeX, LuaLaTeX, +longdesc and XeLaTeX, and will accept font family switches defined via +longdesc the fontspec package. The plan is that future versions shall be +longdesc able to provide even more diagnostic tools, and some +longdesc LuaTeX-specific special commands, too. The package relies on +longdesc the following other LaTeX packages: expl3, array, booktabs, and +longdesc siunitx. +containersize 5772 +containerchecksum 56553f1ea620566efdcd5dbe3710627d4c1b0be0ee294d256cec8cd633a4b24048012c108eac867427ddda28614eadd73172fcd2c57ac702d5f5e5c4a40769bc +doccontainersize 333188 +doccontainerchecksum fd4809e02b1167e16bdb75cce5837f6202cfb44e7a0204900f6eb70173aac984eb35b14f00a9d43d4a61a4fb3a00298eafcbf71de15c7531f043e64cef418d8f +docfiles size=86 + RELOC/doc/latex/typoaid/README.md details="Readme" + RELOC/doc/latex/typoaid/typoaid.pdf details="Package documentation" + RELOC/doc/latex/typoaid/typoaid.tex +runfiles size=7 + RELOC/tex/latex/typoaid/typoaid.sty +catalogue-contact-repository https://github.com/ilFuria/typoaid +catalogue-ctan /macros/latex/contrib/typoaid +catalogue-date 2017-06-06 19:56:03 +0200 +catalogue-license lppl1.3c +catalogue-topics font-devel typeset-tool +catalogue-version 0.4.7 + name typogrid category Package revision 24994 -shortdesc Print a typographic grid. +shortdesc Print a typographic grid relocated 1 longdesc Draws a grid on every page of the document; the grid divides longdesc the page into columns, and may be used for fixing measurements longdesc of layout. -runfiles size=2 - RELOC/tex/latex/typogrid/typogrid.sty +containersize 1764 +containerchecksum 4ef0239ae626245b25e43819bc05da7d22d89d1e33b94402f8bf2b24e2518bfa7ce6626d0c9deffba5d461dd65db0160bd9134b78cd9ba930d0e6315cd761b9c +doccontainersize 296420 +doccontainerchecksum d228343668d98616c6cab8a1c4b0cea313b4a7d2f25699a0f54f64b660b10869d2669d98f7f5b992ddff5a3202139ef1e278ebd40b3dd76466c6154a59804c90 docfiles size=77 RELOC/doc/latex/typogrid/ChangeLog RELOC/doc/latex/typogrid/Makefile - RELOC/doc/latex/typogrid/README + RELOC/doc/latex/typogrid/README details="Readme" RELOC/doc/latex/typogrid/getversion.tex RELOC/doc/latex/typogrid/testtypogrid.tex - RELOC/doc/latex/typogrid/typogrid.pdf + RELOC/doc/latex/typogrid/typogrid.pdf details="Package documentation" +srccontainersize 3776 +srccontainerchecksum 23aa23ca0ca597a03ffbcd0ea79c1341d52aecd41d363e6daeea8b35c74d59a4edcb6a0f2dd7fc05e0a1018ce375f77ef7c831cf093292dd3785f486b2397388 srcfiles size=4 RELOC/source/latex/typogrid/typogrid.dtx RELOC/source/latex/typogrid/typogrid.ins +runfiles size=2 + RELOC/tex/latex/typogrid/typogrid.sty catalogue-ctan /macros/latex/contrib/typogrid -catalogue-date 2012-04-27 17:21:29 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics layout-show catalogue-version 0.21 name uaclasses category Package revision 15878 -shortdesc University of Arizona thesis and dissertation format. +shortdesc University of Arizona thesis and dissertation format relocated 1 -longdesc This package provides a LaTeX2e document class named 'ua- -longdesc thesis' for typesetting theses and dissertations in the +longdesc This package provides a LaTeX2e document class named +longdesc 'ua-thesis' for typesetting theses and dissertations in the longdesc official format required by the University of Arizona. longdesc Moreover, there is a fully compatible alternative document longdesc class 'my-thesis' for private 'nice' copies of the longdesc dissertation, and the respective title pages are available as longdesc separate packages to work with any document class. -runfiles size=7 - RELOC/tex/latex/uaclasses/my-thesis.cls - RELOC/tex/latex/uaclasses/my-title.sty - RELOC/tex/latex/uaclasses/ua-thesis.cls - RELOC/tex/latex/uaclasses/ua-title.sty +containersize 5948 +containerchecksum 4341612f18d6f5f4352ec0bf0018fe3115be73f479479586a81d7f994ec23adea7c38fd773022b4d81a126e43bcbfe5f97f4c36d61bad73509f2c1b97882c00f +doccontainersize 201492 +doccontainerchecksum 63beb08274ed7db9a2d77761277d65f89988812765a2484d7db54a8419cf67dad3fbf76b46bdafd8bd7cf17a1d540deb83c00c7b6df01f6f023bbb5f098c2ab1 docfiles size=70 - RELOC/doc/latex/uaclasses/README - RELOC/doc/latex/uaclasses/my-example.pdf - RELOC/doc/latex/uaclasses/ua-example.pdf + RELOC/doc/latex/uaclasses/README details="Readme" + RELOC/doc/latex/uaclasses/my-example.pdf details="my-thesis example" + RELOC/doc/latex/uaclasses/ua-example.pdf details="ua-thesis example" RELOC/doc/latex/uaclasses/ua-example.tex +srccontainersize 13868 +srccontainerchecksum ffc4902edf6b4007c3685a58d3e5a20a02a6ca3072466b7415cb4fa98de236e52c6a391c5e5cf30aabf37c7374cf00aaf2c7d6c845a3a61e2f9c0b0505e215bd srcfiles size=13 RELOC/source/latex/uaclasses/ua-classes.dtx RELOC/source/latex/uaclasses/ua-classes.ins +runfiles size=7 + RELOC/tex/latex/uaclasses/my-thesis.cls + RELOC/tex/latex/uaclasses/my-title.sty + RELOC/tex/latex/uaclasses/ua-thesis.cls + RELOC/tex/latex/uaclasses/ua-title.sty catalogue-ctan /macros/latex/contrib/uaclasses -catalogue-date 2011-11-23 23:58:18 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd - -name uadocs -category Package -revision 35016 -shortdesc Course texts and masters theses in University of Antwerp style. -relocated 1 -longdesc These class files implement the house style of the University -longdesc of Antwerp for course texts and master theses. Using these -longdesc class files will make it easy for you to make and keep your -longdesc documents compliant to this version and future versions of the -longdesc house style of the University of Antwerp. -runfiles size=137 - RELOC/tex/latex/uadocs/ua_color.eps - RELOC/tex/latex/uadocs/ua_color.pdf - RELOC/tex/latex/uadocs/uacoursetext.cls - RELOC/tex/latex/uadocs/uamasterthesis.cls -docfiles size=115 - RELOC/doc/latex/uadocs/LICENSE - RELOC/doc/latex/uadocs/uacoursetext-example.pdf - RELOC/doc/latex/uadocs/uacoursetext-example.tex - RELOC/doc/latex/uadocs/uadocs.pdf - RELOC/doc/latex/uadocs/uamasterthesis-example.pdf - RELOC/doc/latex/uadocs/uamasterthesis-example.tex -srcfiles size=17 - RELOC/source/latex/uadocs/uadocs.dtx - RELOC/source/latex/uadocs/uadocs.ins -catalogue-ctan /macros/latex/contrib/uadocs -catalogue-date 2014-08-22 16:28:19 +0200 -catalogue-license lppl1.3 -catalogue-version 1.2 +catalogue-topics dissertation name uafthesis category Package revision 29349 -shortdesc Document class for theses at University of Alaska Fairbanks. +shortdesc Document class for theses at University of Alaska Fairbanks relocated 1 longdesc This is an "unofficial" official class. -runfiles size=8 - RELOC/tex/latex/uafthesis/uafthesis.cls +containersize 7604 +containerchecksum 3f8146ae2cddcc8f136c7dad5cd926919d4d81a2b43038fcce55620c6c240326123b6f48c32504b44cbbd9b62aa3a61cd80f5b85c9890ecddef9d96342cc0eb7 +doccontainersize 30020 +doccontainerchecksum bb1e0fddf66350187d8507b34811c0c1ea84fbf0c6cd3e9eeaec8ef6c7111fa2ad1eb4d805df01fa6bed58030056ddf0b2b4305ad821e696fa6de977cff46c98 docfiles size=36 RELOC/doc/latex/uafthesis/Makefile - RELOC/doc/latex/uafthesis/README.md + RELOC/doc/latex/uafthesis/README.md details="Readme" RELOC/doc/latex/uafthesis/bib_styles/agufull08.bst RELOC/doc/latex/uafthesis/bib_styles/unsrtabbrv3.bst RELOC/doc/latex/uafthesis/example/abstract.tex @@ -167987,89 +286790,222 @@ docfiles size=36 RELOC/doc/latex/uafthesis/example/fig/fivebatteries.png RELOC/doc/latex/uafthesis/example/fig/onebattery.png RELOC/doc/latex/uafthesis/example/quotepage.tex +runfiles size=8 + RELOC/tex/latex/uafthesis/uafthesis.cls +catalogue-contact-repository https://github.com/jesusabdullah/uafthesis catalogue-ctan /macros/latex/contrib/uafthesis -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl +catalogue-topics dissertation catalogue-version 12.12 +name uantwerpendocs +category Package +revision 51007 +shortdesc Course texts, master theses, and exams in University of Antwerp style +relocated 1 +longdesc These class files implement the house style of the University +longdesc of Antwerp. This package originated from the Faculty of Applied +longdesc Engineering. Using these class files will make it easy for you +longdesc to make and keep your documents compliant to this version and +longdesc future versions of the house style of the University of +longdesc Antwerp. +containersize 1370040 +containerchecksum 93c494ac45f8713cdff15e03b5f17388041ecf569eea304966da980d413d542d72af79ce86a57686e790ac527c5c6e562a93b9612c03438aa7ea1acb3fe7af92 +doccontainersize 1162080 +doccontainerchecksum 94a6b8beddfa2b625fce0f75cbab43ae4fafa7cd7c5dd0568cbe46cc1a7b0218c74c5575d116c8e085bc0fddb62db0596635d549251a760ef93d93b662d40982 +docfiles size=366 + RELOC/doc/latex/uantwerpendocs/LICENSE + RELOC/doc/latex/uantwerpendocs/README details="Readme" + RELOC/doc/latex/uantwerpendocs/uantwerpenbamathesis-example.pdf details="Example bachelor/master thesis" + RELOC/doc/latex/uantwerpendocs/uantwerpenbamathesis-example.tex + RELOC/doc/latex/uantwerpendocs/uantwerpencoursetext-example.pdf details="Example course text" + RELOC/doc/latex/uantwerpendocs/uantwerpencoursetext-example.tex + RELOC/doc/latex/uantwerpendocs/uantwerpendocs.pdf details="Package documentation" + RELOC/doc/latex/uantwerpendocs/uantwerpenexam-example1.pdf details="Example exam (monolingual)" + RELOC/doc/latex/uantwerpendocs/uantwerpenexam-example1.tex + RELOC/doc/latex/uantwerpendocs/uantwerpenexam-example2.pdf details="Example exam (bilingual)" + RELOC/doc/latex/uantwerpendocs/uantwerpenexam-example2.tex + RELOC/doc/latex/uantwerpendocs/uantwerpenletter-example.pdf details="Example letter" + RELOC/doc/latex/uantwerpendocs/uantwerpenletter-example.tex + RELOC/doc/latex/uantwerpendocs/uantwerpenmasterthesis-example.pdf + RELOC/doc/latex/uantwerpendocs/uantwerpenmasterthesis-example.tex + RELOC/doc/latex/uantwerpendocs/uantwerpenphdthesis-example1.pdf + RELOC/doc/latex/uantwerpendocs/uantwerpenphdthesis-example1.tex + RELOC/doc/latex/uantwerpendocs/uantwerpenphdthesis-example2.pdf + RELOC/doc/latex/uantwerpendocs/uantwerpenphdthesis-example2.tex +srccontainersize 29404 +srccontainerchecksum 76725a1498c86eaf6e585a1269b737601136337770f304d598762aa7f354a478b70849b1a98ba8bdae71c81fbf0db372c275f95396463316dbb5a9631b068b20 +srcfiles size=36 + RELOC/source/latex/uantwerpendocs/uantwerpendocs.dtx + RELOC/source/latex/uantwerpendocs/uantwerpendocs.ins +runfiles size=779 + RELOC/tex/latex/uantwerpendocs/4E_PMS302_BR_ENG_RGB.eps + RELOC/tex/latex/uantwerpendocs/4E_PMS302_BR_ENG_RGB.pdf + RELOC/tex/latex/uantwerpendocs/4E_PMS302_BR_NED_RGB.eps + RELOC/tex/latex/uantwerpendocs/4E_PMS302_BR_NED_RGB.pdf + RELOC/tex/latex/uantwerpendocs/UA_HOR_DUI_CMYK.eps + RELOC/tex/latex/uantwerpendocs/UA_HOR_DUI_CMYK.pdf + RELOC/tex/latex/uantwerpendocs/UA_HOR_ENG_CMYK.eps + RELOC/tex/latex/uantwerpendocs/UA_HOR_ENG_CMYK.pdf + RELOC/tex/latex/uantwerpendocs/UA_HOR_FRA_CMYK.eps + RELOC/tex/latex/uantwerpendocs/UA_HOR_FRA_CMYK.pdf + RELOC/tex/latex/uantwerpendocs/UA_HOR_NED_CMYK.eps + RELOC/tex/latex/uantwerpendocs/UA_HOR_NED_CMYK.pdf + RELOC/tex/latex/uantwerpendocs/UA_HOR_SPA_CMYK.eps + RELOC/tex/latex/uantwerpendocs/UA_HOR_SPA_CMYK.pdf + RELOC/tex/latex/uantwerpendocs/keyboard.jpg + RELOC/tex/latex/uantwerpendocs/uantwerpenbamathesis.cls + RELOC/tex/latex/uantwerpendocs/uantwerpencoursetext.cls + RELOC/tex/latex/uantwerpendocs/uantwerpenexam.cls + RELOC/tex/latex/uantwerpendocs/uantwerpenletter.cls + RELOC/tex/latex/uantwerpendocs/uantwerpenmasterthesis.cls + RELOC/tex/latex/uantwerpendocs/uantwerpenphdthesis.cls +catalogue-ctan /macros/latex/contrib/uantwerpendocs +catalogue-date 2019-04-10 20:30:42 +0200 +catalogue-license lppl1.3 +catalogue-topics class dissertation essay letter exam +catalogue-version 2.4 + name uassign category Package -revision 38326 -shortdesc Provides environments and options for typesetting university assignments +revision 38459 +shortdesc Environments and options for typesetting university assignments relocated 1 -longdesc Provides environments and options for typesetting university -longdesc assignments -runfiles size=1 - RELOC/tex/latex/uassign/uassign.sty -docfiles size=21 - RELOC/doc/latex/uassign/README - RELOC/doc/latex/uassign/uassign.pdf +longdesc The purpose of this package is to provide simple question and +longdesc solution style environments for typesetting university +longdesc assignments. +containersize 1984 +containerchecksum 3e61f381e23c30670fe78c4a54d99970bd05883e6fa03040e7123fb0936aabf51341d64aeff92109fdc33b7b97f40aa0cd81fd6624d9449584aef1fa3061070b +doccontainersize 106832 +doccontainerchecksum e6569cdac6854bc1856d6a4604589619ecbf317442018790eabc3332723dc167a879e7ca6be0da8c281847e757ddada005daaa3b8712f7697ea4052b9c9f7cf9 +docfiles size=31 + RELOC/doc/latex/uassign/README.md details="Package README" + RELOC/doc/latex/uassign/uassign.pdf details="Package documentation" RELOC/doc/latex/uassign/uassign.tex +runfiles size=2 + RELOC/tex/latex/uassign/uassign.sty catalogue-ctan /macros/latex/contrib/uassign -catalogue-date 2015-09-08 08:01:50 +0200 -catalogue-license gpl2 +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl catalogue-topics class +catalogue-version 1.01 + +name ucalgmthesis +category Package +revision 50705 +shortdesc LaTeX thesis class for University of Calgary Faculty of Graduate Studies +relocated 1 +longdesc ucalgmthesis.cls is a LaTeX class file that produces documents +longdesc according to the thesis guidelines of the University of Calgary +longdesc Faculty of Graduate Studies. It uses the memoir class, which +longdesc provides very powerful and flexible mechanisms for book design +longdesc and layout. All memoir commands for changing chapter and +longdesc section headings, page layout, fancy foot- and endnotes, +longdesc typesetting poems, etc., can be used. (Memoir is meant as a +longdesc replacement for the standard LaTeX classes, so all standard +longdesc LaTeX commands such as \chapter, \section, etc., still work.) +longdesc Likewise, any of memoir's class options can be passed as +longdesc options to ucalgmthesis, in particular 12pt to select 12 point +longdesc type (11 point is the default). +containersize 3284 +containerchecksum 7f2d9b167b5268eb3f163ed71a12e3a979e2062469401a07b148c9d24f3080f050cb31df84adbd7de20675ec0275405f77923331862de78883faf86664445241 +doccontainersize 123212 +doccontainerchecksum f0a3a599e904525877c6737262de78b66d4144d49a5fbe3ac79db3a82481d168607f48af9974019d6bc773465714a5043bd95fb45161d833d2903de708375a03 +docfiles size=41 + RELOC/doc/latex/ucalgmthesis/LICENSE + RELOC/doc/latex/ucalgmthesis/README.md details="Readme" + RELOC/doc/latex/ucalgmthesis/appendix.tex + RELOC/doc/latex/ucalgmthesis/backmatter.tex + RELOC/doc/latex/ucalgmthesis/chapter1.tex + RELOC/doc/latex/ucalgmthesis/chapter2.tex + RELOC/doc/latex/ucalgmthesis/frontmatter.tex + RELOC/doc/latex/ucalgmthesis/sample-thesis.bib + RELOC/doc/latex/ucalgmthesis/sample-thesis.pdf details="Package documentation" + RELOC/doc/latex/ucalgmthesis/sample-thesis.tex + RELOC/doc/latex/ucalgmthesis/titlepage.tex +runfiles size=2 + RELOC/tex/latex/ucalgmthesis/ucalgmthesis.cls +catalogue-contact-bugs https://github.com/rzach/ucalgmthesis/issues +catalogue-contact-repository https://github.com/rzach/ucalgmthesis +catalogue-ctan /macros/latex/contrib/ucalgmthesis +catalogue-date 2019-04-02 20:36:26 +0200 +catalogue-license mit +catalogue-topics class dissertation name ucbthesis category Package revision 37776 -shortdesc Thesis and dissertation class supporting UCB requirements. +shortdesc Thesis and dissertation class supporting UCB requirements relocated 1 longdesc The class provides the necessary framework for electronic longdesc submission of Masters theses and Ph.D. dissertations at the longdesc University of California, Berkeley. It is based on the memoir longdesc class. -runfiles size=6 - RELOC/tex/latex/ucbthesis/ucbthesis.cls +containersize 7292 +containerchecksum 4dfe1e25633d23d5cf1a2eaf30bb47b28008722889e9d16ac8ba2d63b686a2184c69029933acd1ac5bd568c4a53c3f40fd26a65f0a5cfce3178e2c12077008e9 +doccontainersize 167964 +doccontainerchecksum b90e1cfff2a4eb17ce25b7b1f400bd10d5de8dbf349b98c50f3098990ed41d68be546f7c658c12f74e969a50802bc3154feb48ac3ed42c22df7a3c531560b7e7 docfiles size=51 - RELOC/doc/latex/ucbthesis/README + RELOC/doc/latex/ucbthesis/README details="Readme" RELOC/doc/latex/ucbthesis/example/abstract.tex RELOC/doc/latex/ucbthesis/example/chap1.tex RELOC/doc/latex/ucbthesis/example/chap2.tex RELOC/doc/latex/ucbthesis/example/references.bib RELOC/doc/latex/ucbthesis/example/thesis.tex - RELOC/doc/latex/ucbthesis/ucbthesis.pdf + RELOC/doc/latex/ucbthesis/ucbthesis.pdf details="Package documentation" RELOC/doc/latex/ucbthesis/ucbthesis.tex +runfiles size=6 + RELOC/tex/latex/ucbthesis/ucbthesis.cls catalogue-ctan /macros/latex/contrib/ucbthesis -catalogue-date 2015-06-02 07:10:48 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 catalogue-topics dissertation catalogue-version 3.5 name ucdavisthesis category Package -revision 31476 -shortdesc A thesis/dissertation class for University of California at Davis. -relocated 1 -longdesc The class conforms to the University's requirements for 2009. +revision 40772 +shortdesc A thesis/dissertation class for University of California at Davis +relocated 1 +longdesc The ucdavisthesis class is a LaTeX class that allows you to +longdesc create a dissertation or thesis conforming to UC Davis +longdesc formatting requirements as of April 2016. +containersize 10564 +containerchecksum ce8191ad81027361c23175194bf23284bc2e43407f0047586a4a89a2c51f9823356e2e571639a1f76f6a1f2b43c08eeb134d874c03f559897b0cf50aecfc94a9 +doccontainersize 1288712 +doccontainerchecksum 26ecd36ab09467341868d0ad7d71f39728f23688053ad4b8a89339238da5c96fcfe504d8e6403663eb6441a14333163f8998e00428609b161c3e9665a4ef0bf5 +docfiles size=501 + RELOC/doc/latex/ucdavisthesis/README details="Readme" + RELOC/doc/latex/ucdavisthesis/example/ucdavisthesis_example.bib + RELOC/doc/latex/ucdavisthesis/example/ucdavisthesis_example_Chap1.tex + RELOC/doc/latex/ucdavisthesis/example/ucdavisthesis_example_Chap2.tex + RELOC/doc/latex/ucdavisthesis/example/ucdavisthesis_example_Chap3.tex + RELOC/doc/latex/ucdavisthesis/example/ucdavisthesis_example_figure.eps + RELOC/doc/latex/ucdavisthesis/example/ucdavisthesis_example_figure.pdf + RELOC/doc/latex/ucdavisthesis/example/ucdavisthesis_example_main.pdf details="Example of output" + RELOC/doc/latex/ucdavisthesis/example/ucdavisthesis_example_main.tex + RELOC/doc/latex/ucdavisthesis/ucdavisthesis.pdf details="Package documentation" +srccontainersize 23044 +srccontainerchecksum 759eab6cc5b63ac159e481bd012ce5da4d6ba35f459928d4e578b96bac60485df32771660b4f8fce08e73303e517c37aee1a5503a96c810506bb854cf7bb050e +srcfiles size=23 + RELOC/source/latex/ucdavisthesis/ucdavisthesis.dtx + RELOC/source/latex/ucdavisthesis/ucdavisthesis.ins runfiles size=17 RELOC/tex/latex/ucdavisthesis/ucdavisthesis.cls RELOC/tex/latex/ucdavisthesis/ucdthesis10.clo RELOC/tex/latex/ucdavisthesis/ucdthesis11.clo RELOC/tex/latex/ucdavisthesis/ucdthesis12.clo RELOC/tex/latex/ucdavisthesis/ucdthesis13.clo -docfiles size=546 - RELOC/doc/latex/ucdavisthesis/Example/ucdavisthesis_example.bib - RELOC/doc/latex/ucdavisthesis/Example/ucdavisthesis_example_Chap1.tex - RELOC/doc/latex/ucdavisthesis/Example/ucdavisthesis_example_Chap2.tex - RELOC/doc/latex/ucdavisthesis/Example/ucdavisthesis_example_Chap3.tex - RELOC/doc/latex/ucdavisthesis/Example/ucdavisthesis_example_figure.eps - RELOC/doc/latex/ucdavisthesis/Example/ucdavisthesis_example_figure.pdf - RELOC/doc/latex/ucdavisthesis/Example/ucdavisthesis_example_main.pdf - RELOC/doc/latex/ucdavisthesis/Example/ucdavisthesis_example_main.tex - RELOC/doc/latex/ucdavisthesis/README - RELOC/doc/latex/ucdavisthesis/ucdavisthesis.pdf -srcfiles size=23 - RELOC/source/latex/ucdavisthesis/ucdavisthesis.dtx - RELOC/source/latex/ucdavisthesis/ucdavisthesis.ins catalogue-ctan /macros/latex/contrib/ucdavisthesis -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.2 +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl1.2 +catalogue-topics dissertation +catalogue-version 1.3 name ucharcat category Package -revision 38197 +revision 38907 shortdesc Implementation of the (new in 2015) XeTeX \Ucharcat command in lua, for LuaTeX relocated 1 longdesc The package implements the \Ucharcat command for LuaLaTeX. @@ -168077,45 +287013,61 @@ 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. -runfiles size=1 - RELOC/tex/latex/ucharcat/ucharcat.sty +containersize 1184 +containerchecksum 333e8f92394d89bdc3492606e467d4b664c5d87eb464e1c16ff293e3f87931c3c70308aeb523fb40f2e76e5d0aa2c1635402f40fc36ecfbb7ced98d232b8bcb5 +doccontainersize 159876 +doccontainerchecksum b4615cefd26201509c908c2719519f927d61ad96367a612d654917819b2ac973fff85d081dad6e1d092e634388b16e83e440d3cbad4fc7c16f638f5e2853bb7f docfiles size=40 - RELOC/doc/latex/ucharcat/README - RELOC/doc/latex/ucharcat/ucharcat.pdf + RELOC/doc/latex/ucharcat/README details="Readme" + RELOC/doc/latex/ucharcat/ucharcat.pdf details="Package documentation" +srccontainersize 2324 +srccontainerchecksum 6ac34b38f4e0908d841ded4981d649c9202bd3bc277843e6e82bce629a245cea9c6ef1336d575d77139584f3940181c5e6f0abadf4ff71c42a97ccc33be59d9d srcfiles size=3 RELOC/source/latex/ucharcat/ucharcat.dtx RELOC/source/latex/ucharcat/ucharcat.ins +runfiles size=1 + RELOC/tex/latex/ucharcat/ucharcat.sty catalogue-ctan /macros/latex/contrib/ucharcat -catalogue-date 2015-08-24 06:16:32 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl catalogue-topics lua-supp luatex -catalogue-version 0.02 +catalogue-version 0.03 name ucharclasses category Package -revision 27820 -shortdesc Font actions in XeTeX according to what is being processed. +revision 45024 +shortdesc Font actions in XeTeX according to what is being processed relocated 1 longdesc The package takes care of switching fonts when you switch from longdesc one Unicode block to another in the text of a document. This longdesc way, you can write a document with no explicit font selection, longdesc but a series of rules of the form "when entering block ..., longdesc switch font to use ...". -runfiles size=6 - RELOC/tex/xelatex/ucharclasses/ucharclasses.sty -docfiles size=47 - RELOC/doc/xelatex/ucharclasses/README - RELOC/doc/xelatex/ucharclasses/ucharclasses.pdf +containersize 8228 +containerchecksum 1c90d8c0f27919e8b3e8bb057a43bb1878b1bf35840d13b6304edb24df56086081883731c35d1d58638374bc2835ac3f111a23981459357b1d1883168a4dd833 +doccontainersize 140968 +doccontainerchecksum 21453f2a5fd247f05033b929200bed163391c718ac0562953a732718b8851546b1e2b8c1fc35c1412def0ac368c47ef1c06d9d8f4bb724be6863c2568662d10c +docfiles size=41 + RELOC/doc/xelatex/ucharclasses/README details="Readme" + RELOC/doc/xelatex/ucharclasses/ucharclasses.pdf details="Package documentation" RELOC/doc/xelatex/ucharclasses/ucharclasses.tex +runfiles size=8 + RELOC/tex/xelatex/ucharclasses/ucharclasses.sty +catalogue-contact-bugs https://github.com/Pomax/ucharclasses/issues +catalogue-contact-development https://github.com/Pomax/ucharclasses +catalogue-contact-home https://github.com/Pomax/ucharclasses +catalogue-contact-repository https://github.com/Pomax/ucharclasses +catalogue-contact-support https://github.com/Pomax/ucharclasses/issues catalogue-ctan /macros/xetex/latex/ucharclasses -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-08-11 05:34:18 +0200 catalogue-license pd -catalogue-version 2.0 +catalogue-topics xetex font-supp +catalogue-version 2.3.0 name ucs category Package revision 35853 -shortdesc Extended UTF-8 input encoding support for LaTeX. +shortdesc Extended UTF-8 input encoding support for LaTeX relocated 1 longdesc The bundle provides the ucs package, and utf8x.def, together longdesc with a large number of support files. The utf8x.def definition @@ -168127,6 +287079,64 @@ longdesc various options, which permits use of non-ASCII characters when longdesc coding mathematical formulae. Note that the bundle previously longdesc had an alias "unicode"; that alias has now been withdrawn, and longdesc no package of that name now exists. +containersize 268852 +containerchecksum f3a7120c45b722746b0f3c90a189ebf42daccaf659385c16507e5fbfb0a2922b7fbc3b3e34f53fc61ce6cf0883c9c182ee47c95b3596fbf9029db6fdafc6ddcb +doccontainersize 903048 +doccontainerchecksum b1c57fc95a282e546fae1fb8267c450412ff92b5bb0510c335cfa7d8ace9691c4f6c47fdc0a87d6752052abca1325a86a44b777cefd65363bf4d9c95265de888 +docfiles size=616 + RELOC/doc/latex/ucs/FAQ details="Frequently Asked Questions" + RELOC/doc/latex/ucs/GNUmakefile + RELOC/doc/latex/ucs/INSTALL details="Installation details" + RELOC/doc/latex/ucs/LICENSE + RELOC/doc/latex/ucs/README details="Bundle readme" + RELOC/doc/latex/ucs/README.TEXLIVE + RELOC/doc/latex/ucs/VERSION + RELOC/doc/latex/ucs/config/ascii.ucf + RELOC/doc/latex/ucs/config/boxdraw.ucf + RELOC/doc/latex/ucs/config/braille.ucf + RELOC/doc/latex/ucs/config/cjk-bg5.ucf + RELOC/doc/latex/ucs/config/cjk-gb.ucf + RELOC/doc/latex/ucs/config/cjk-globals.ucf + RELOC/doc/latex/ucs/config/cjk-hangul.ucf + RELOC/doc/latex/ucs/config/cjk-jis.ucf + RELOC/doc/latex/ucs/config/combining.ucf + RELOC/doc/latex/ucs/config/control.ucf + RELOC/doc/latex/ucs/config/ctrlglyphs.ucf + RELOC/doc/latex/ucs/config/currency.ucf + RELOC/doc/latex/ucs/config/cyrillic.ucf + RELOC/doc/latex/ucs/config/devanagari.ucf + RELOC/doc/latex/ucs/config/ethiopic.ucf + RELOC/doc/latex/ucs/config/geometric.ucf + RELOC/doc/latex/ucs/config/greek.ucf + RELOC/doc/latex/ucs/config/hebrew.ucf + RELOC/doc/latex/ucs/config/ipa.ucf + RELOC/doc/latex/ucs/config/klingon.ucf + RELOC/doc/latex/ucs/config/latin-a.ucf + RELOC/doc/latex/ucs/config/latin-b.ucf + RELOC/doc/latex/ucs/config/latin-e-a.ucf + RELOC/doc/latex/ucs/config/latin1.ucf + RELOC/doc/latex/ucs/config/math.ucf + RELOC/doc/latex/ucs/config/mathalpha.ucf + RELOC/doc/latex/ucs/config/miscsymb.ucf + RELOC/doc/latex/ucs/config/modifier.ucf + RELOC/doc/latex/ucs/config/mongolian.ucf + RELOC/doc/latex/ucs/config/pifont.ucf + RELOC/doc/latex/ucs/config/punct.ucf + RELOC/doc/latex/ucs/config/supersub.ucf + RELOC/doc/latex/ucs/config/tags.ucf + RELOC/doc/latex/ucs/config/telugu.ucf + RELOC/doc/latex/ucs/config/thai.ucf + RELOC/doc/latex/ucs/discovermacro.pl + RELOC/doc/latex/ucs/latexout.pl + RELOC/doc/latex/ucs/ltxmacrs.txt + RELOC/doc/latex/ucs/makeunidef.pl + RELOC/doc/latex/ucs/ucs.dtx + RELOC/doc/latex/ucs/ucs.ins + RELOC/doc/latex/ucs/ucs.pdf details="Package documentation" + RELOC/doc/latex/ucs/unsupported/README details="Bundle readme" + RELOC/doc/latex/ucs/unsupported/sym-to-fontenc.txt + RELOC/doc/latex/ucs/unsupported/tables.inc + RELOC/doc/latex/ucs/unsupported/u2ps runfiles size=704 RELOC/tex/latex/ucs/data/uni-0.def RELOC/tex/latex/ucs/data/uni-1.def @@ -168353,91 +287363,76 @@ runfiles size=704 RELOC/tex/latex/ucs/utils/tengwarDS.enc RELOC/tex/latex/ucs/utils/xscmr.fd RELOC/tex/latex/ucs/utils/xsenc.def -docfiles size=616 - RELOC/doc/latex/ucs/FAQ - RELOC/doc/latex/ucs/GNUmakefile - RELOC/doc/latex/ucs/INSTALL - RELOC/doc/latex/ucs/LICENSE - RELOC/doc/latex/ucs/README - RELOC/doc/latex/ucs/README.TEXLIVE - RELOC/doc/latex/ucs/VERSION - RELOC/doc/latex/ucs/config/ascii.ucf - RELOC/doc/latex/ucs/config/boxdraw.ucf - RELOC/doc/latex/ucs/config/braille.ucf - RELOC/doc/latex/ucs/config/cjk-bg5.ucf - RELOC/doc/latex/ucs/config/cjk-gb.ucf - RELOC/doc/latex/ucs/config/cjk-globals.ucf - RELOC/doc/latex/ucs/config/cjk-hangul.ucf - RELOC/doc/latex/ucs/config/cjk-jis.ucf - RELOC/doc/latex/ucs/config/combining.ucf - RELOC/doc/latex/ucs/config/control.ucf - RELOC/doc/latex/ucs/config/ctrlglyphs.ucf - RELOC/doc/latex/ucs/config/currency.ucf - RELOC/doc/latex/ucs/config/cyrillic.ucf - RELOC/doc/latex/ucs/config/devanagari.ucf - RELOC/doc/latex/ucs/config/ethiopic.ucf - RELOC/doc/latex/ucs/config/geometric.ucf - RELOC/doc/latex/ucs/config/greek.ucf - RELOC/doc/latex/ucs/config/hebrew.ucf - RELOC/doc/latex/ucs/config/ipa.ucf - RELOC/doc/latex/ucs/config/klingon.ucf - RELOC/doc/latex/ucs/config/latin-a.ucf - RELOC/doc/latex/ucs/config/latin-b.ucf - RELOC/doc/latex/ucs/config/latin-e-a.ucf - RELOC/doc/latex/ucs/config/latin1.ucf - RELOC/doc/latex/ucs/config/math.ucf - RELOC/doc/latex/ucs/config/mathalpha.ucf - RELOC/doc/latex/ucs/config/miscsymb.ucf - RELOC/doc/latex/ucs/config/modifier.ucf - RELOC/doc/latex/ucs/config/mongolian.ucf - RELOC/doc/latex/ucs/config/pifont.ucf - RELOC/doc/latex/ucs/config/punct.ucf - RELOC/doc/latex/ucs/config/supersub.ucf - RELOC/doc/latex/ucs/config/tags.ucf - RELOC/doc/latex/ucs/config/telugu.ucf - RELOC/doc/latex/ucs/config/thai.ucf - RELOC/doc/latex/ucs/discovermacro.pl - RELOC/doc/latex/ucs/latexout.pl - RELOC/doc/latex/ucs/ltxmacrs.txt - RELOC/doc/latex/ucs/makeunidef.pl - RELOC/doc/latex/ucs/ucs.dtx - RELOC/doc/latex/ucs/ucs.ins - RELOC/doc/latex/ucs/ucs.pdf - RELOC/doc/latex/ucs/unsupported/README - RELOC/doc/latex/ucs/unsupported/sym-to-fontenc.txt - RELOC/doc/latex/ucs/unsupported/tables.inc - RELOC/doc/latex/ucs/unsupported/u2ps catalogue-ctan /macros/latex/contrib/ucs -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl1.3 +catalogue-topics inputenc unicode catalogue-version 2.2 +name ucsmonograph +category Package +revision 49389 +shortdesc Typesetting academic documents from the University of Caxias do Sul +relocated 1 +longdesc This is a LaTeX class for typesetting academic documents +longdesc according to the ABNT (Brazilian Technical Standards +longdesc Association) standards and the UCS (University of Caxias do +longdesc Sul) specifications. +containersize 4260 +containerchecksum e7d128e550f797aa566e1364102c5625ceb268f7e3d8ac78f03734d5721e92628ddb22942afb4355ba6dbf68cade8b129148a41ba777f925a4c51743db12bdff +doccontainersize 412928 +doccontainerchecksum 500317f88c5162f201b22d0d511fadd2e2a024c72fb7ad30c15d6f251a6c350bee724f62701341d78dd4ac2d718b231994a98319fbbd8b79caa639272e2627dc +docfiles size=104 + RELOC/doc/latex/ucsmonograph/README.md details="Readme" + RELOC/doc/latex/ucsmonograph/ucsmonograph.pdf details="Package documentation" language="pt-br" +srccontainersize 13036 +srccontainerchecksum c802f694093eb71d8cce30ac2ff2672ac07ed40196575f89d192864d5fbae7e5bc5e0910042798cf4ddae7481e812c62b50c5ebf245c59dda1d3f9b992cf1497 +srcfiles size=13 + RELOC/source/latex/ucsmonograph/ucsmonograph.dtx + RELOC/source/latex/ucsmonograph/ucsmonograph.ins +runfiles size=4 + RELOC/tex/latex/ucsmonograph/ucsmonograph.cls +catalogue-also abntex2 +catalogue-contact-bugs https://github.com/HenriqueBaron/ucsmonograph/issues +catalogue-contact-repository https://github.com/HenriqueBaron/ucsmonograph +catalogue-contact-support https://tex.stackexchange.com/users/153467/henrique-baron +catalogue-ctan /macros/latex/contrib/ucsmonograph +catalogue-date 2018-12-11 07:40:11 +0100 +catalogue-license lppl1.3c +catalogue-topics class dissertation portuguese-br +catalogue-version 1.2.1 + name ucthesis category Package revision 15878 -shortdesc University of California thesis format. +shortdesc University of California thesis format relocated 1 longdesc A modified version of the standard LaTeX report style that is longdesc accepted for use with University of California PhD longdesc dissertations and Masters theses. A sample dissertation source longdesc and bibliography are provided. +containersize 19284 +containerchecksum 5409e366c69372dd3a93b3755d185e0b96edf71c7a8de4d6cc3d41850e5b9915d2bbe68d3265b5facd52e7d8c00159031737dbcc26302a1a6a89425ac47f443c +doccontainersize 6280 +doccontainerchecksum 7f7ec44a55e2d712af2204d883a7136b44192a402daff4376cd6cb217419179d2b46bc083688d9be9ad85d2b3daeb00305f2253196784ffc9d72c039f0aca5af +docfiles size=5 + RELOC/doc/latex/ucthesis/README details="Readme and basic documentation" + RELOC/doc/latex/ucthesis/uctest.bib + RELOC/doc/latex/ucthesis/uctest.tex runfiles size=27 RELOC/tex/latex/ucthesis/uct10.clo RELOC/tex/latex/ucthesis/uct11.clo RELOC/tex/latex/ucthesis/uct12.clo RELOC/tex/latex/ucthesis/ucthesis.cls -docfiles size=5 - RELOC/doc/latex/ucthesis/README - RELOC/doc/latex/ucthesis/uctest.bib - RELOC/doc/latex/ucthesis/uctest.tex catalogue-ctan /macros/latex/contrib/ucthesis -catalogue-date 2012-02-09 17:36:54 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics dissertation catalogue-version 3.2 name udesoftec category Package -revision 38298 +revision 47164 shortdesc Thesis class for the University of Duisburg-Essen relocated 1 longdesc The class is designed for typesetting theses in the Research @@ -168445,7 +287440,22 @@ longdesc Group for Business Informatics and Software Engineering. (The longdesc class may also serve as a template for such theses.) The class longdesc is designed for use with pdfLaTeX; input in UTF-8 encoding is longdesc assumed. -runfiles size=71 +containersize 108456 +containerchecksum 668c96da10c6fa73d9739e00e0144d20fcfe1677417f648c205fa0fd49eae7ce9d5460e30f2002c39791a41e7db19d8ac004b4bb0d4c44c230ae1ab1ba884719 +doccontainersize 480316 +doccontainerchecksum fe902d88de4e7e98a5416bfcd67529d860ee85733ad9f76e8ad2112fb2ec071c2fb26d786e88abf8fe8c8f7d7e199a4f0c15f728aa1c117bfff7e32941e677d7 +docfiles size=119 + RELOC/doc/latex/udesoftec/udesoftec-doc.pdf details="Package documentation (German)" language="de" +srccontainersize 45440 +srccontainerchecksum a964bb8d9dc2e10155b73121c062cb101108c94def892aeacf166bd739c64cebbf5132e2b94c5cb8f4e377b94005fb8f90b5a2a4bae4f9c5dee5a6551e821f9d +srcfiles size=24 + RELOC/source/latex/udesoftec/CHANGELOG + RELOC/source/latex/udesoftec/README + RELOC/source/latex/udesoftec/UPDATE-INSTRUCTIONS + RELOC/source/latex/udesoftec/udesoftec-doc-examplebib.bib + RELOC/source/latex/udesoftec/udesoftec-doc-exampleimage.pdf + RELOC/source/latex/udesoftec/udesoftec-doc.tex +runfiles size=74 RELOC/bibtex/bst/udesoftec/udesoftec.bst RELOC/tex/latex/udesoftec/udesoftec-bibcommon.sty RELOC/tex/latex/udesoftec/udesoftec-biblatex.sty @@ -168455,25 +287465,17 @@ runfiles size=71 RELOC/tex/latex/udesoftec/udesoftec-cover-ude-en.pdf RELOC/tex/latex/udesoftec/udesoftec-extra.sty RELOC/tex/latex/udesoftec/udesoftec.cls -docfiles size=120 - RELOC/doc/latex/udesoftec/udesoftec-doc.pdf -srcfiles size=24 - RELOC/source/latex/udesoftec/CHANGELOG - RELOC/source/latex/udesoftec/README - RELOC/source/latex/udesoftec/UPDATE-INSTRUCTIONS - RELOC/source/latex/udesoftec/udesoftec-doc-examplebib.bib - RELOC/source/latex/udesoftec/udesoftec-doc-exampleimage.pdf - RELOC/source/latex/udesoftec/udesoftec-doc.tex +catalogue-contact-bugs https://github.com/jpmschuler/SOFTEC-Templates/issues catalogue-ctan /macros/latex/contrib/udesoftec -catalogue-date 2015-09-04 19:17:42 +0200 +catalogue-date 2018-03-28 12:21:25 +0200 catalogue-license lppl1.3 catalogue-topics dissertation bus-study class -catalogue-version 1.5.2 +catalogue-version 1.6.2 name uebungsblatt category Package revision 15878 -shortdesc A LaTeX class for writing exercise sheets. +shortdesc A LaTeX class for writing exercise sheets relocated 1 longdesc This package implements a LaTeX class for writing exercise longdesc sheets for a lecture. Features: - quick typesetting of exercise @@ -168483,17 +287485,22 @@ longdesc sub-exercises, - the number of the exercise sheet is extracted longdesc automatically from the file name, - static information about longdesc the lectures and the authors needs to provided at one point longdesc only. -runfiles size=4 - RELOC/tex/latex/uebungsblatt/uebungsblatt.cls - RELOC/tex/latex/uebungsblatt/uebungsblatt.sty +containersize 3948 +containerchecksum e9ce935da13de8106d63f233349bd29e954538ad17de7505be14a4b5a2efa1e1aabd3ef46871e98d2f5d4730bcf6c49998187924328eed19a35a95bffdcb8d70 +doccontainersize 226580 +doccontainerchecksum 2853eae6fdddf889b305166c6c09351e8e7d7fb087c68a5ab9f4a7a282118200a5120c215708e7d2b9d4487457aa6330d11ec7f7a8e0139719b67217732f2633 docfiles size=63 - RELOC/doc/latex/uebungsblatt/README + RELOC/doc/latex/uebungsblatt/README details="README" language="de" RELOC/doc/latex/uebungsblatt/history.txt - RELOC/doc/latex/uebungsblatt/uebungsblatt-doc.pdf + RELOC/doc/latex/uebungsblatt/uebungsblatt-doc.pdf details="Package documentation (German)" language="de" RELOC/doc/latex/uebungsblatt/uebungsblatt-doc.tex +runfiles size=4 + RELOC/tex/latex/uebungsblatt/uebungsblatt.cls + RELOC/tex/latex/uebungsblatt/uebungsblatt.sty catalogue-ctan /macros/latex/contrib/uebungsblatt -catalogue-date 2012-01-14 17:47:45 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics exercise catalogue-version 1.5.0 name uestcthesis @@ -168503,11 +287510,12 @@ shortdesc Thesis class for UESTC relocated 1 longdesc The class is for typesetting a thesis at the University of longdesc Electronic Science and Technology of China. -runfiles size=31 - RELOC/bibtex/bst/uestcthesis/uestcthesis.bst - RELOC/tex/latex/uestcthesis/uestcthesis.cls +containersize 17228 +containerchecksum aaeb270174e260230d527379ef0a7581ec9f78387aae8505ed5e88a04586dfbb1d90cb923181f34e92d5100bcece0da66e17452218f0c83bbb12b38cc517f3b5 +doccontainersize 4250444 +doccontainerchecksum e68e86bb446c1e79111948b004ece03e2110166d01966d562b1bac6c932385aeaa682f04262eccd822e01b93c66c77be53c947c1dbdbf5ce129a74efdacf5df6 docfiles size=1191 - RELOC/doc/latex/uestcthesis/README + RELOC/doc/latex/uestcthesis/README details="Readme (in English and Chinese)" RELOC/doc/latex/uestcthesis/doc/chapters/DuplicateMe.tex RELOC/doc/latex/uestcthesis/doc/chapters/Matrix.java.tex RELOC/doc/latex/uestcthesis/doc/chapters/Place_has_TrainDAO.java.tex @@ -168541,23 +287549,34 @@ docfiles size=1191 RELOC/doc/latex/uestcthesis/doc/pics/highlight2.png RELOC/doc/latex/uestcthesis/doc/pics/system.png RELOC/doc/latex/uestcthesis/doc/pics/winedt.png - RELOC/doc/latex/uestcthesis/doc/uestcthesis-doc.pdf + RELOC/doc/latex/uestcthesis/doc/uestcthesis-doc.pdf details="Package documentation (Chinese)" language="zh" RELOC/doc/latex/uestcthesis/doc/uestcthesis-doc.tex RELOC/doc/latex/uestcthesis/source/uestcthesis.dtx RELOC/doc/latex/uestcthesis/source/uestcthesis.ins +runfiles size=31 + RELOC/bibtex/bst/uestcthesis/uestcthesis.bst + RELOC/tex/latex/uestcthesis/uestcthesis.cls +catalogue-contact-repository https://github.com/shifujun/UESTCthesis catalogue-ctan /macros/latex/contrib/uestcthesis -catalogue-date 2015-02-24 13:44:17 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 +catalogue-topics dissertation chinese catalogue-version 1.1.0 name uhc category Package revision 16791 -shortdesc Fonts for the Korean language. +shortdesc Fonts for the Korean language relocated 1 longdesc Support for Korean documents written in Korean standard KSC longdesc codes for LaTeX2e. execute addMap umj.map +containersize 3600148 +containerchecksum b5e722e7a72d2efcd89c969c10291779a2885603817374e4318f59b4042b8890df967503016d08a91e30ba8cbbc6f1838843644f06cf44766a7096efdd3bf905 +doccontainersize 872 +doccontainerchecksum c37c5041d155f9a175a6761154211a683405d094850cc829a6b942afcb93af987b4049e663d260ae2b066827007d8c6576fdcd5d14d3ff599f031b13c00e162f +docfiles size=1 + RELOC/doc/fonts/uhc/umj/README runfiles size=4177 RELOC/dvips/uhc/config.uhc RELOC/fonts/afm/uhc/umj/umj00.afm @@ -171755,64 +290774,141 @@ runfiles size=4177 RELOC/fonts/vf/uhc/wmj/wmjxo7.vf RELOC/fonts/vf/uhc/wmj/wmjxo8.vf RELOC/fonts/vf/uhc/wmj/wmjxo9.vf -docfiles size=1 - RELOC/doc/fonts/uhc/umj/README +catalogue-also hlatex catalogue-ctan /fonts/korean/HLaTeX -catalogue-date 2012-05-16 13:32:16 +0200 +catalogue-date 2017-06-19 06:38:53 +0200 catalogue-license lppl +catalogue-topics korean font-supp + +name uhhassignment +category Package +revision 44026 +shortdesc A document class for typesetting homework assignments +relocated 1 +longdesc This document class was created for typesetting solutions to +longdesc homework assignments at the university of Hamburg (Universitat +longdesc Hamburg). +containersize 2816 +containerchecksum a394f6f161cb72ba42eccdaf26f08b12048cee56207f754dac157a2eede1b0867fa0d5916a37d5e3dffbf10237178f156fd3cb33c88be6a926208ca8dcdd0508 +doccontainersize 380280 +doccontainerchecksum 21054dc051229a338d2aa954cbf80893e156236329206ff3cb63f47dceda4c35c6fbf6c2d9492551b7609aa88dec74c507094e2d96f2f96432436e74e80a9c38 +docfiles size=94 + RELOC/doc/latex/uhhassignment/README.md details="Readme" + RELOC/doc/latex/uhhassignment/uhhassignment.pdf details="Package documentation" +srccontainersize 7176 +srccontainerchecksum 0bd0fcb18d334c471fa7d4259cb7c511dc7917344ffcd724ea8bdf859272cc164649f01eb4e553deb5b44f91dfcaa1640b18ccbb5b10c1b0d3a7b585afa323ea +srcfiles size=7 + RELOC/source/latex/uhhassignment/uhhassignment.dtx + RELOC/source/latex/uhhassignment/uhhassignment.ins +runfiles size=3 + RELOC/tex/latex/uhhassignment/uhhassignment.cls +catalogue-ctan /macros/latex/contrib/uhhassignment +catalogue-date 2018-01-07 12:14:32 +0100 +catalogue-license lppl1.3c +catalogue-topics essay +catalogue-version 1.0 + +name uhrzeit +category Package +revision 39570 +shortdesc Time printing, in German +relocated 1 +longdesc The primary goal of this package is to facilitate formats and +longdesc ranges of times as formerly used in Germany. A variety of +longdesc printing formats are available. +containersize 2056 +containerchecksum 7b5c732258e25ecc2d429b09349b94cc4f24de77e8db40add018f42bf7658868e9c3730f0fed86312ea96625556fe02a276535eb14416d06fa5fd2cc1eff30c6 +doccontainersize 209100 +doccontainerchecksum 76c7bdb6c74ac05fd9b51366b68b0dae8180da51f506ba1793765d25de29582c8eba51826d6d6c6d3c3c1793f10fda3f6bb75c82d8d454fb19e1339eb98a9eb2 +docfiles size=53 + RELOC/doc/latex/uhrzeit/README.txt details="Readme" + RELOC/doc/latex/uhrzeit/uhrzeit-doc.pdf details="Package documentation" + RELOC/doc/latex/uhrzeit/uhrzeit-doc.tex +runfiles size=2 + RELOC/tex/latex/uhrzeit/uhrzeit.sty +catalogue-ctan /macros/latex/contrib/uhrzeit +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics german date-time +catalogue-version 0.2c name uiucredborder category Package revision 29974 -shortdesc Class for UIUC thesis red-bordered forms. +shortdesc Class for UIUC thesis red-bordered forms relocated 1 longdesc The class offers a means of filling out the "red-bordered form" longdesc that gets signed by the department head, your advisor, and -- longdesc for doctoral dissertations -- your thesis committee members. -runfiles size=1 - RELOC/tex/latex/uiucredborder/uiucredborder.cls +containersize 1968 +containerchecksum 4a398e734fe551f1636a63ab3ac8b851ff1e445c8b15b6e48017ed7a81edbcf042750919db790d7e2e9d6b08132ec5a3c04195854315ba1c1c8e8712996dcb25 +doccontainersize 322460 +doccontainerchecksum 6e1c91389897853bada4b52c8350dfbbc321395cf1ff7991d7f29d5e64119c86c4e07fdad889f2a4a149e0e2db1a1e5cd9a44cf6f905d5030afa25cfb14d1323 docfiles size=89 - RELOC/doc/latex/uiucredborder/uiucredborder.pdf + RELOC/doc/latex/uiucredborder/uiucredborder.pdf details="Package documentation" +srccontainersize 4456 +srccontainerchecksum 74256e3917f7d28adbcd5d08e4dad126dcc93019c852ff6307417b2e150cdefa986affb61d7b174bf510e5f75563bfde01fba9b4c588db3d41c2fca82e0c882b srcfiles size=4 RELOC/source/latex/uiucredborder/uiucredborder.dtx RELOC/source/latex/uiucredborder/uiucredborder.ins +runfiles size=1 + RELOC/tex/latex/uiucredborder/uiucredborder.cls +catalogue-also uiucthesis catalogue-ctan /macros/latex/contrib/uiucredborder -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics dissertation catalogue-version 1.00 name uiucthesis category Package revision 15878 -shortdesc UIUC thesis class. +shortdesc UIUC thesis class relocated 1 longdesc The class produces a document that conforms to the format longdesc described in the University's Handbook for Graduate Students longdesc Preparing to Deposit. -runfiles size=10 - RELOC/tex/latex/uiucthesis/uiucthesis.cls - RELOC/tex/latex/uiucthesis/uiucthesis.sty +containersize 5140 +containerchecksum 565b499bcef08716d627e206a53f2f344a10a0e219876eaf4bd82a63accb2eb43c14c8c8b25236d336022900e9a7d5299b5a34d5e40eba0be6d7dc8ee4431490 +doccontainersize 226612 +doccontainerchecksum 798e7428988a622562b94bfd4ae389dcbba3524fda0d427aa4fbdaff0f1a437babb4e68b58350a3229fa078bf11e17af9f5eff61a5c9153960a941783cca623e docfiles size=69 - RELOC/doc/latex/uiucthesis/README - RELOC/doc/latex/uiucthesis/thesis-ex.pdf + RELOC/doc/latex/uiucthesis/README details="Readme" + RELOC/doc/latex/uiucthesis/thesis-ex.pdf details="Example of use" RELOC/doc/latex/uiucthesis/thesis-ex.tex - RELOC/doc/latex/uiucthesis/uiucthesis.pdf + RELOC/doc/latex/uiucthesis/uiucthesis.pdf details="Package documentation" +srccontainersize 16144 +srccontainerchecksum 3d1eb025e066a311e4ae28292b00e697cf4de63b1038944b41edfbdacbdfd246d5a49bd63f561c5d0d4bfadad8d2a4325a8784245c09308ef5d2380054b966ad srcfiles size=16 RELOC/source/latex/uiucthesis/uiucthesis.dtx RELOC/source/latex/uiucthesis/uiucthesis.ins +runfiles size=10 + RELOC/tex/latex/uiucthesis/uiucthesis.cls + RELOC/tex/latex/uiucthesis/uiucthesis.sty +catalogue-also uiucredborder catalogue-ctan /macros/latex/contrib/uiucthesis -catalogue-date 2013-04-14 14:49:48 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics dissertation catalogue-version 2.25 name ukrhyph category Package revision 21081 -shortdesc Hyphenation Patterns for Ukrainian. +shortdesc Hyphenation Patterns for Ukrainian relocated 1 longdesc A range of patterns, depending on the encoding of the output longdesc font (including the standard T2A, so one can use the patterns longdesc with free fonts). +containersize 39116 +containerchecksum 043338c4e92d84bc2b7bd63610656b53b39bac225c5610089c0c8b58ce9bbe3f414129a6b043a5307ebb7b59cc062ade7bd803fb6949d06a0d0c87e2dd4a0bd3 +doccontainersize 160948 +doccontainerchecksum a283d11ed922181d4f29f521e3019fbca2b1bba1aacb312e22dd8e69d05d7dafbabc5c23b63707f265bcd215d8f517f58ab2ffee2b87d9bc1a968d00e9542840 +docfiles size=73 + RELOC/doc/generic/ukrhyph/README details="Readme" + RELOC/doc/generic/ukrhyph/rules60.pdf details="Old hyphenation rules" language="uk" + RELOC/doc/generic/ukrhyph/rules90.pdf details="New hyphenation rules" language="uk" + RELOC/doc/generic/ukrhyph/rules_ph.pdf details="Old hyphenation rules with phonetics" language="uk" runfiles size=45 RELOC/tex/generic/ukrhyph/catlcy.tex RELOC/tex/generic/ukrhyph/lcy2koi.tex @@ -171835,19 +290931,15 @@ runfiles size=45 RELOC/tex/generic/ukrhyph/ukrhypmt.tex RELOC/tex/generic/ukrhyph/ukrhypsm.tex RELOC/tex/generic/ukrhyph/ukrhypst.tex -docfiles size=73 - RELOC/doc/generic/ukrhyph/README - RELOC/doc/generic/ukrhyph/rules60.pdf - RELOC/doc/generic/ukrhyph/rules90.pdf - RELOC/doc/generic/ukrhyph/rules_ph.pdf catalogue-ctan /language/hyphenation/ukrhyph -catalogue-date 2012-06-26 16:04:59 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics hyphenation ukrainian name ulem category Package revision 26785 -shortdesc Package for underlining. +shortdesc Package for underlining relocated 1 longdesc The package provides an \ul (underline) command which will longdesc break over line ends; this technique may be used to replace \em @@ -171856,20 +290948,26 @@ longdesc output look as if it comes from a typewriter. The package also longdesc offers double and wavy underlining, and striking out (line longdesc through words) and crossing out (/// over words). The package longdesc works with both Plain TeX and LaTeX. -runfiles size=6 - RELOC/tex/generic/ulem/ulem.sty +containersize 9536 +containerchecksum f20ce5e900bfd20da9fe240214ae63ccb51fb6d0ee6f5a4081439f524889a480cfced5f261a10bcad8c7f28c31b7e1933254b3ab30c5de04d54ff80e49952342 +doccontainersize 99500 +doccontainerchecksum e73214c64517ecc2a30283b0e0e87f913bd768c2ab9dc0eef68e8c1534c3ac877ca8b96e6326205e7cb34eca072e5b2351542d0b9fb02b24f1604782efc5a7bf docfiles size=31 - RELOC/doc/generic/ulem/README + RELOC/doc/generic/ulem/README details="Readme" RELOC/doc/generic/ulem/ulem.ltx - RELOC/doc/generic/ulem/ulem.pdf + RELOC/doc/generic/ulem/ulem.pdf details="Package documentation" +runfiles size=6 + RELOC/tex/generic/ulem/ulem.sty +catalogue-also underlin-gen soul catalogue-ctan /macros/latex/contrib/ulem -catalogue-date 2012-06-01 11:43:10 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics underline emphasis name ulqda category Package revision 26313 -shortdesc Support of Qualitative Data Analysis. +shortdesc Support of Qualitative Data Analysis longdesc The package is for use in Qualitative Data Analysis research. longdesc It supports the integration of Qualitative Data Analysis (QDA) longdesc research tasks, specifically for Grounded Theory, into the @@ -171878,30 +290976,174 @@ longdesc such as interview transcripts and field notes by providing the longdesc LaTeX user with macros which are used to markup textual longdesc information -- for example, in-depth interviews. depend ulqda.ARCH -runfiles size=5 - texmf-dist/scripts/ulqda/ulqda.pl - texmf-dist/tex/latex/ulqda/ulqda.sty +containersize 5056 +containerchecksum 228132cc464dfe171426fffec6103f0dd5eac61c112b03d64d98bc89a0af0ddb7f52f27f9bb5461c8be6f752ae30ef3d4c6b987e580d834eb7524d5c27d956cf +doccontainersize 252628 +doccontainerchecksum 182dbcb73a25e05035f878696887ea219569a1a7ef44281bee14b4498b37e92346e0e97d187a5f3dbcd8d9783f260080ff10f58dfe41e69caec4888d901b9128 docfiles size=77 - texmf-dist/doc/latex/ulqda/README - texmf-dist/doc/latex/ulqda/ulqda.pdf + texmf-dist/doc/latex/ulqda/README details="Readme" + texmf-dist/doc/latex/ulqda/ulqda.pdf details="Package documentation" +srccontainersize 21072 +srccontainerchecksum 352f1a739cb9c74c0dae529ff330f3269e763242af4dd1bc0aca963b3af03f02f5becad436cc3a93aa105359a1bf2f229b3cdb7175d539d58df67563b490de8f srcfiles size=24 texmf-dist/source/latex/ulqda/Makefile texmf-dist/source/latex/ulqda/ulqda.dtx +runfiles size=5 + texmf-dist/scripts/ulqda/ulqda.pl + texmf-dist/tex/latex/ulqda/ulqda.sty catalogue-ctan /macros/latex/contrib/ulqda -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics humanities catalogue-version 1.1 +name ulqda.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of ulqda +containersize 340 +containerchecksum 7bfafd23f5b71ecd860fc43a32d5867fab5cddb69c890c97f13af5d1d4d79081f526113736029920815e15553c97561ff7cc13601c9dbdf96e6eb582790bda39 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/ulqda + +name ulqda.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of ulqda +containersize 340 +containerchecksum d1aa6cf0fbe437ff59b7f1354e714c8882d3eec4a40de70b08803c4a4eff881cd73732a41387b483f2cd71026a27eb11a1d3206e3f4df47dcafa81126d72ae1c +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/ulqda + +name ulqda.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of ulqda +containersize 340 +containerchecksum 834a9a4c16c7fe4f77aed5332a89049cfecdefbe7b3ae77f106c3866eefaf400df8d3fc3c2655e0a38c60085e1213860b1a1e8754976fd405717c5c48ab64198 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/ulqda + +name ulqda.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of ulqda +containersize 336 +containerchecksum 5e3d945078af70f041ede7d961c19291b316c2215200ddd0893e5efc26d5e7e48248d0c929c36e7994f7d533749c81cda5fbb6184ebab8788f6bb8c9468a6520 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/ulqda + +name ulqda.i386-cygwin +category Package +revision 13717 +shortdesc i386-cygwin files of ulqda +containersize 336 +containerchecksum 9a7cc5541de010ea35ca5403f6eba70df09c81657be030282e9681755c10ca5717d5d0fbc35e62c5148de1e2e95788a64c3d09bfbae2d05ecfca8ce6280af59a +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/ulqda + +name ulqda.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of ulqda +containersize 340 +containerchecksum 4444b07542a048517b318653006b9d5527560b244d65b292d44adbc55f254d8dfb322515c141e195c34d28f2ec55679092b23c60f22b19e49a11500a0e093502 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/ulqda + name ulqda.i386-linux category Package revision 13663 shortdesc i386-linux files of ulqda +containersize 340 +containerchecksum 888525215a6da5e97ba7ce2ffcedff69565745bc35b687ff7397c467073795c22f72a6b3d0043ad20a4229c7930291f2598a78c56df19c77e0fa278b5ba9ea5d binfiles arch=i386-linux size=1 bin/i386-linux/ulqda +name ulqda.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of ulqda +containersize 340 +containerchecksum 3cab91c80b9b9589d754b013e281f55a5542b918423448ec0037ec66515d474df786ab06c8b28da426263d3a6f608f207ec5981080f310812862952a7286386c +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/ulqda + +name ulqda.i386-solaris +category Package +revision 13898 +shortdesc i386-solaris files of ulqda +containersize 340 +containerchecksum 6f1a6a67433841f5d888c7b4775dfc944d1a6c14229fe49527a7477f26860a747fe0aa411bc70ef340f8269019d376a66d88973f10a72f1134a9b84134e71ade +binfiles arch=i386-solaris size=1 + bin/i386-solaris/ulqda + +name ulqda.win32 +category Package +revision 15404 +shortdesc win32 files of ulqda +containersize 680 +containerchecksum ffc616410863964c5434bbdffdd5f7e4ed80de47f1f6ff1853efab3886b7e4aacd3160fe8dd3e65acb38969a895a64ff3edc0590209d90340472335b31d6eb40 +binfiles arch=win32 size=1 + bin/win32/ulqda.exe + +name ulqda.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of ulqda +containersize 340 +containerchecksum 6627abc65378a6271b5fa13b0f3c7e67495b3ce0c6c5d7b17e3622311d6189d081053014d0a4f33c4f3ec1f0c73a68806c74640defea667e64c2430610027a35 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/ulqda + +name ulqda.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of ulqda +containersize 340 +containerchecksum 3a9371609043f7a8766399309bee5b52c38b155164c7bed4a9353b154fff124298b74c2c18029ddf75923eae5c32fec0d389f44d1f102cae0ce86130ad59bcaa +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/ulqda + +name ulqda.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of ulqda +containersize 348 +containerchecksum 1d9eca1a810eb8066b306db339a0c6491a715ee0637ada613aa3779bec8cf93625d55d39eb527cef824483872899cdc6d56fbb1d8da926494a864033c37aeae3 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/ulqda + +name ulqda.x86_64-linux +category Package +revision 13777 +shortdesc x86_64-linux files of ulqda +containersize 336 +containerchecksum 163882707eab250aa4353c4f1e71f5dff137a356461f85c197b5d3384b81a57c6a14fd6c98a69371276325aa97091831b249b1d9659349e6994333177b019c5c +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/ulqda + +name ulqda.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of ulqda +containersize 344 +containerchecksum 41fa1ac44242fd8419e513ac27cd1e25f99b54f748aaab4602fb4a48a630d9c325a619a317897c459942dbc60e6ff8b379ca0df7bb8d8456b2b14f5a1ca35e5a +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/ulqda + +name ulqda.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of ulqda +containersize 340 +containerchecksum e7cded7a679aabf5849affe4a2f55d0ae21c8d696ef460623ca44a06d3778fb1cb44a9bb1767f0c3e009f21b479b2d99997ac84e264861aa7d2c9a98343b7c8d +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/ulqda + name ulthese category Package -revision 38363 +revision 51038 shortdesc Thesis class and templates for Universite Laval relocated 1 longdesc The package provides a class based on memoir to prepare theses @@ -171912,147 +291154,206 @@ longdesc for the various types of theses and memoirs offered at Laval. longdesc Please note that the documentation for the class and the longdesc comments in the templates are all written in French, the longdesc language of the target audience. -runfiles size=46 - RELOC/tex/latex/ulthese/ul_p.eps - RELOC/tex/latex/ulthese/ul_p.pdf - RELOC/tex/latex/ulthese/ulthese.cls -docfiles size=104 - RELOC/doc/latex/ulthese/README +containersize 59816 +containerchecksum d9b1228e4fe2f425a6c0b31695283a07092d4fe5bed1eeb2ba63eeba702fb07235faa9f5b3b443a8373b719d0e82dd03f5e3e691911c7a0922e1ae335ff10227 +doccontainersize 251988 +doccontainerchecksum 1f93ca717472f2f894bdb413fbda7d3b40bb86742f470c1049a18dc141717475475e2ebba46923108db30f8a15d04da649c3d8840a3579b016c72334895080aa +docfiles size=85 + RELOC/doc/latex/ulthese/README.md details="Readme (in French)" language="fr" RELOC/doc/latex/ulthese/abstract.tex RELOC/doc/latex/ulthese/annexe.tex RELOC/doc/latex/ulthese/avantpropos.tex + RELOC/doc/latex/ulthese/chapitre1-articles.tex RELOC/doc/latex/ulthese/chapitre1.tex + RELOC/doc/latex/ulthese/chapitre2-articles.tex RELOC/doc/latex/ulthese/chapitre2.tex RELOC/doc/latex/ulthese/conclusion.tex + RELOC/doc/latex/ulthese/gabarit-doctorat-articles.tex RELOC/doc/latex/ulthese/gabarit-doctorat-cotutelle.tex - RELOC/doc/latex/ulthese/gabarit-doctorat-extension-UQO.tex - RELOC/doc/latex/ulthese/gabarit-doctorat-extension-UdeS.tex - RELOC/doc/latex/ulthese/gabarit-doctorat-mesure.tex - RELOC/doc/latex/ulthese/gabarit-doctorat-multifacultaire.tex RELOC/doc/latex/ulthese/gabarit-doctorat.tex + RELOC/doc/latex/ulthese/gabarit-maitrise-articles.tex RELOC/doc/latex/ulthese/gabarit-maitrise-bidiplomation.tex - RELOC/doc/latex/ulthese/gabarit-maitrise-extension-UQAC.tex - RELOC/doc/latex/ulthese/gabarit-maitrise-mesure.tex RELOC/doc/latex/ulthese/gabarit-maitrise.tex RELOC/doc/latex/ulthese/introduction.tex RELOC/doc/latex/ulthese/remerciements.tex RELOC/doc/latex/ulthese/resume.tex - RELOC/doc/latex/ulthese/ulthese.pdf -srcfiles size=22 + RELOC/doc/latex/ulthese/ulthese.pdf details="Package documentation" language="fr" +srccontainersize 26856 +srccontainerchecksum c9212c8cbeeadc87fdb1e5573d48eee6997e2827b53f6a1cabc33f358f47b5589dcb785fd6597adfcfa55cd3d8c0e370f84733acb183ab95a136dcab8ff1032b +srcfiles size=28 RELOC/source/latex/ulthese/ulthese.dtx RELOC/source/latex/ulthese/ulthese.ins +runfiles size=47 + RELOC/tex/latex/ulthese/ul_p.eps + RELOC/tex/latex/ulthese/ul_p.pdf + RELOC/tex/latex/ulthese/ulthese.cls catalogue-also memoir babel +catalogue-contact-repository https://gitlab.com/vigou3/ulthese catalogue-ctan /macros/latex/contrib/ulthese -catalogue-date 2015-09-11 21:07:42 +0200 -catalogue-license lppl1.3 +catalogue-date 2019-05-07 05:26:50 +0200 +catalogue-license lppl1.3c catalogue-topics dissertation class french -catalogue-version 4.0 +catalogue-version 5.2 + +name umbclegislation +category Package +revision 41348 +shortdesc A LaTeX class for building legislation files for UMBC Student Government Association Bills +relocated 1 +longdesc LaTeX class for building legislation files for UMBC Student +longdesc Government Association Bills. Requires pdflatex and the +longdesc mdframed enumitem, lineno, and xifthen packages. +containersize 2616 +containerchecksum ea6a55698b51da3939a1bfc10963dd74d9e772ebd18ad9018f649077224f7ee30ca20f051a68c9bd8d8bac94baf1d0d28ab2f864419c61385ebf9bc82aacb7f0 +doccontainersize 13532 +doccontainerchecksum d4d5f318baa1f1ecd446bb864d0670ed2dcd7208429bfd2ce587810b27dde22f49a6f7c072aad8f6515e721a98ea0ec356ee36eb970cdee385910a291d964394 +docfiles size=13 + RELOC/doc/latex/umbclegislation/COPYING + RELOC/doc/latex/umbclegislation/Makefile + RELOC/doc/latex/umbclegislation/README details="Readme" + RELOC/doc/latex/umbclegislation/example.tex +runfiles size=2 + RELOC/tex/latex/umbclegislation/legislation.cls +catalogue-ctan /macros/latex/contrib/umbclegislation +catalogue-date 2018-01-07 12:14:32 +0100 +catalogue-license gpl3 +catalogue-topics legal +catalogue-version 2016-6-8 name umich-thesis category Package revision 15878 -shortdesc University of Michigan Thesis LaTeX class. +shortdesc University of Michigan Thesis LaTeX class relocated 1 longdesc A LaTeX2e class to create a University of Michigan dissertation longdesc according to the Rackham dissertation handbook. +containersize 5696 +containerchecksum 52bb76c9d9e3bb742c2049495a74d026a1803396bc5064a10f4da2e80390ae6c9c9c74326b14966e989c9edd1e29b797b89413ed6e87e90527ae470a8b731889 +doccontainersize 904 +doccontainerchecksum db85abee0ad37ce814c645c072399a6ab7e3307c623bd402a1b9ee8b69a1c2a8aa782b5007a433ebe9eaba984432223bd78f247fdcd0c6f50edeccc87b874173 +docfiles size=1 + RELOC/doc/latex/umich-thesis/README details="Readme" runfiles size=5 RELOC/tex/latex/umich-thesis/umich-thesis.cls -docfiles size=1 - RELOC/doc/latex/umich-thesis/README catalogue-ctan /macros/latex/contrib/umich-thesis -catalogue-date 2012-02-09 17:36:54 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics dissertation catalogue-version 1.20 -name umlaute -category Package -revision 15878 -shortdesc German input encodings in LaTeX. -relocated 1 -longdesc An early package for using alternate input encodings. The -longdesc author considers the package mostly obsolete, since most of its -longdesc functions are taken by the inputenc package; however, inputenc -longdesc doesn't support the roman8 and atari encodings, so umlaute -longdesc remains the sole source of that support. -runfiles size=8 - RELOC/tex/latex/umlaute/atari.def - RELOC/tex/latex/umlaute/isolatin.def - RELOC/tex/latex/umlaute/mac.def - RELOC/tex/latex/umlaute/pc850.def - RELOC/tex/latex/umlaute/roman8.def - RELOC/tex/latex/umlaute/umlaute.sty -docfiles size=31 - RELOC/doc/latex/umlaute/cs_patch.uue - RELOC/doc/latex/umlaute/umlaute.pdf -srcfiles size=6 - RELOC/source/latex/umlaute/umlaute.dtx - RELOC/source/latex/umlaute/umlaute.ins -catalogue-ctan /macros/latex/contrib/umlaute -catalogue-date 2012-06-26 16:04:59 +0200 -catalogue-license lppl -catalogue-version v2.1 - name uml category Package revision 17476 -shortdesc UML diagrams in LaTeX. +shortdesc UML diagrams in LaTeX relocated 1 longdesc A PSTricks related package for writing UML (Unified Modelling longdesc Language) diagrams in LaTeX. Currently, it implements a subset longdesc of class diagrams, and some extra constructs as well. The longdesc package cannot be used together with pst-uml. -runfiles size=8 - RELOC/tex/latex/uml/uml.sty +containersize 6564 +containerchecksum b20da85c7166f8aec4309af3ab0b1319f37ada1513ff502555794b1721ac8c3f551afcdf49a58bf5c3c5e666e48962075f7711a45de003245584541175a6a470 +doccontainersize 381984 +doccontainerchecksum d81393e3b6d9efc0177478e562dc0a22323e3e5913d7592cdb6ec595d525238e154d2a599380521652eda4fe75b12006cfdc907715b0a9d461f8df60ed27986b docfiles size=129 RELOC/doc/latex/uml/Changes - RELOC/doc/latex/uml/README + RELOC/doc/latex/uml/README details="Package Readme" RELOC/doc/latex/uml/example.tex - RELOC/doc/latex/uml/uml.pdf + RELOC/doc/latex/uml/uml.pdf details="Package documentation" +srccontainersize 39836 +srccontainerchecksum afc5aa7db53b82f6063abca35d8cde75659682525d939e2f55c375b89fa4cc196bca8852c91d12f7daae939c053f4c9ecf99b326361f051847e660af5afe3ef7 srcfiles size=50 RELOC/source/latex/uml/Makefile RELOC/source/latex/uml/uml.dtx RELOC/source/latex/uml/uml.ins +runfiles size=8 + RELOC/tex/latex/uml/uml.sty +catalogue-also pst-uml catalogue-ctan /graphics/pstricks/contrib/uml -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-09-15 14:18:12 +0200 catalogue-license lppl +catalogue-topics uml pstricks catalogue-version 0.11 +name umlaute +category Package +revision 15878 +shortdesc German input encodings in LaTeX +relocated 1 +longdesc An early package for using alternate input encodings. The +longdesc author considers the package mostly obsolete, since most of its +longdesc functions are taken by the inputenc package; however, inputenc +longdesc doesn't support the roman8 and atari encodings, so umlaute +longdesc remains the sole source of that support. +containersize 2884 +containerchecksum 35188d3930b11c0d1b52a5032bcf9cea21a22ce8ca2930f69ad4ab54bcdf56b73858168cc62581aac1173452dd0f7d0da3de8ac21b0ca2255ef324ff63c89091 +doccontainersize 106300 +doccontainerchecksum 89f28b3b90f63ea4f367019f0b65aa1f8e9489ff0d897af6ea29b7455948e3e75ef003a5a2d5b4a88e00a5e415d409a577c03b63a330f93ed6804c99f951c68e +docfiles size=31 + RELOC/doc/latex/umlaute/cs_patch.uue + RELOC/doc/latex/umlaute/umlaute.pdf details="Package documentation" +srccontainersize 5732 +srccontainerchecksum 494ee6d1432d783f9586c80cee044e2857d4d24358c7dcb7d3043945bb3f5331b8eee78a13ee759ed6260518dcdebab33d78bab4cec5d384c4773b502c96fb0b +srcfiles size=6 + RELOC/source/latex/umlaute/umlaute.dtx + RELOC/source/latex/umlaute/umlaute.ins +runfiles size=8 + RELOC/tex/latex/umlaute/atari.def + RELOC/tex/latex/umlaute/isolatin.def + RELOC/tex/latex/umlaute/mac.def + RELOC/tex/latex/umlaute/pc850.def + RELOC/tex/latex/umlaute/roman8.def + RELOC/tex/latex/umlaute/umlaute.sty +catalogue-ctan /macros/latex/contrib/umlaute +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license lppl +catalogue-topics inputenc +catalogue-version 2.1 + name umoline category Package revision 19085 -shortdesc Underline text allowing line breaking. +shortdesc Underline text allowing line breaking relocated 1 longdesc Provides commands \Underline, \Midline and \Overline for longdesc underlining, striking out, and overlining their text arguments. -runfiles size=2 - RELOC/tex/latex/umoline/umoline.sty +containersize 3004 +containerchecksum db3b8216d50288ec096f3dea9db24dfbad76848d9b8ccdc5d1310f4b8bb1b37ef10fed74ee5e6e0b70cc3e0aaa73aea87354ad731e4057c888031eb4e1940539 +doccontainersize 207052 +doccontainerchecksum 64d559300349fd75af4bd98f0841aee5c5d622791cdd03373ea1e7840989b5175e300663023d0f08636b86337f66c6668871387a51a9a28e079111087265bb98 docfiles size=56 - RELOC/doc/latex/umoline/README + RELOC/doc/latex/umoline/README details="Readme" RELOC/doc/latex/umoline/umoline-man.tex - RELOC/doc/latex/umoline/umoline.pdf + RELOC/doc/latex/umoline/umoline.pdf details="Package documentation" +srccontainersize 13068 +srccontainerchecksum 13f53876f0b1c5921b480ad9d2c63ef3abf1e175006145f200f61f515e778161ba631c6da9ca4c4d928f94220e0964b64130638d7dd7195160b54f39e4bf868d srcfiles size=13 RELOC/source/latex/umoline/umoline.dtx RELOC/source/latex/umoline/umoline.ins +runfiles size=2 + RELOC/tex/latex/umoline/umoline.sty catalogue-ctan /macros/latex/contrib/umoline -catalogue-date 2011-10-30 13:37:56 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics underline name umthesis category Package revision 15878 -shortdesc Dissertations at the University of Michigan. +shortdesc Dissertations at the University of Michigan relocated 1 longdesc The class loads book class, and makes minimal changes to it; longdesc its coding aims to be as robust as possible, and as a result it longdesc has few conflicts with potential add-on packages. -runfiles size=6 - RELOC/tex/latex/umthesis/umthesis.cls +containersize 6764 +containerchecksum b2fb90713da6547b9d4cbea4f972144f70d7f1875e325225f0dfb90df1a04b4693c5a3dc651f0066ef7ba6456c7732aeb5272ccfd5e8edc24281c1b1bc9e4e32 +doccontainersize 91508 +doccontainerchecksum fb43c7ab262d2a1eb70b80bf4ad66ae9e022c847451009372e1ee1fcc5250e93b0a4a2195f4208799ae78cbcb5fc24d48de0b2355884721918ae5d4c827c3507 docfiles size=61 RELOC/doc/latex/umthesis/PDP.tex - RELOC/doc/latex/umthesis/README + RELOC/doc/latex/umthesis/README details="Readme" RELOC/doc/latex/umthesis/appendix.tex RELOC/doc/latex/umthesis/conclusion.tex - RELOC/doc/latex/umthesis/example.pdf + RELOC/doc/latex/umthesis/example.pdf details="Example of use" RELOC/doc/latex/umthesis/example.tex RELOC/doc/latex/umthesis/exp1.tex RELOC/doc/latex/umthesis/exp2.tex @@ -172060,21 +291361,26 @@ docfiles size=61 RELOC/doc/latex/umthesis/felty.bib RELOC/doc/latex/umthesis/intro.tex RELOC/doc/latex/umthesis/mybibstyle.bst +runfiles size=6 + RELOC/tex/latex/umthesis/umthesis.cls catalogue-ctan /macros/latex/contrib/umthesis -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics dissertation catalogue-version 0.2 name umtypewriter category Package revision 18651 -shortdesc Fonts to typeset with the xgreek package. +shortdesc Fonts to typeset with the xgreek package relocated 1 longdesc The UMTypewriter font family is a monospaced font family that longdesc was built from glyphs from the CB Greek fonts, the CyrTUG longdesc Cyrillic alphabet fonts ("LH"), and the standard Computer longdesc Modern font family. It contains four OpenType fonts which are longdesc required for use of the xgreek package for XeLaTeX. +containersize 338592 +containerchecksum 44dc925eccfa4010566bc751bf202fbea6b369beb57c6851bffce2dab757bbcf415d601de44f97e929e046cdba1720ecd7bb6ca12c992674d33b43b9e0ce77ff runfiles size=197 RELOC/fonts/opentype/public/umtypewriter/UMTypewriter-Bold.otf RELOC/fonts/opentype/public/umtypewriter/UMTypewriter-BoldItalic.otf @@ -172082,43 +291388,11 @@ runfiles size=197 RELOC/fonts/opentype/public/umtypewriter/UMTypewriter-Oblique.otf RELOC/fonts/opentype/public/umtypewriter/UMTypewriter-Regular.otf catalogue-ctan /fonts/umtypewriter -catalogue-date 2014-06-05 22:30:35 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license ofl +catalogue-topics font font-mono font-otf font-greek font-cyrillic font-cm catalogue-version 001.002 -name unamthesis -category Package -revision 29799 -shortdesc Style for Universidad Nacional Autonoma de Mexico theses. -relocated 1 -longdesc The package provides a customisable format to typeset Theses -longdesc according to the Universidad Nacional Autonoma de Mexico -longdesc guidelines. Support for use in Scientific Workplace (SWP) 3.x -longdesc is also provided. The bundle also includes an appropriate -longdesc bibliographic style which enables the use of author-year -longdesc schemes using the natbib package. -runfiles size=11 - RELOC/bibtex/bst/unamthesis/UNAMThesis.bst - RELOC/tex/latex/unamthesis/UNAMThesis.sty -docfiles size=269 - RELOC/doc/latex/unamthesis/Escudo-IBT.eps - RELOC/doc/latex/unamthesis/Escudo-IBT.pdf - RELOC/doc/latex/unamthesis/Escudo-UNAM.eps - RELOC/doc/latex/unamthesis/Escudo-UNAM.pdf - RELOC/doc/latex/unamthesis/LEEME - RELOC/doc/latex/unamthesis/License - RELOC/doc/latex/unamthesis/README - RELOC/doc/latex/unamthesis/Thesis-Universidad_Nacional_Autonoma_de_Mexico.shl - RELOC/doc/latex/unamthesis/UNAMThesis.cst - RELOC/doc/latex/unamthesis/UNAMThesis.pdf - RELOC/doc/latex/unamthesis/UNAMThesis.tex - RELOC/doc/latex/unamthesis/UNAMThesisSWP.tex - RELOC/doc/latex/unamthesis/testBib.bib -catalogue-ctan /macros/latex/contrib/unamthesis -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 2.02 - name unamth-template category Package revision 33625 @@ -172128,6 +291402,10 @@ longdesc The bundle provides a template for UNAM's College of longdesc Engineering Theses. The work is based on Harish Bhanderi's longdesc PhD/MPhil template, and the University of Cambridge Engineering longdesc Department template. +containersize 504 +containerchecksum b8d1d3bf42c11c967d9e3889e52e2c9a45aa3e0bf4ac6b6e5a72d69e1bccc2b254954a6828a66ec794dc7126f54d26ba48e3c11efb913d04e50f4867d348d3b1 +doccontainersize 5011364 +doccontainerchecksum eed527d21e7d8669e0a02fd5e880e9172dcc2ca8a1e499b079d1d8f3935b7e84a4c84763b0204bb3b90a9df493bbbba6ee90fefcde6b4975c1360ae119264f61 docfiles size=1563 RELOC/doc/latex/unamth-template/Agradecimientos/Agradecimientos.tex RELOC/doc/latex/unamth-template/Agradecimientos/Dedicatoria.tex @@ -172158,61 +291436,139 @@ docfiles size=1563 RELOC/doc/latex/unamth-template/Latex/Classes/urlbst RELOC/doc/latex/unamth-template/Latex/Macros/MacroFile1.tex RELOC/doc/latex/unamth-template/Latex/Macros/MacroFile1.tex.bak - RELOC/doc/latex/unamth-template/README.md + RELOC/doc/latex/unamth-template/README.md details="Readme" RELOC/doc/latex/unamth-template/Resumen/Resumen.tex RELOC/doc/latex/unamth-template/latex_intro.pdf - RELOC/doc/latex/unamth-template/tesis.pdf + RELOC/doc/latex/unamth-template/tesis.pdf details="Filled out sample (Mexican Spanis)" language="es" RELOC/doc/latex/unamth-template/tesis.tex catalogue-ctan /macros/latex/contrib/unamth-template -catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl3 +catalogue-topics doc-templ dissertation catalogue-version 2.0 +name unamthesis +category Package +revision 43639 +shortdesc Style for Universidad Nacional Autonoma de Mexico theses +relocated 1 +longdesc The package provides a customisable format to typeset Theses +longdesc according to the Universidad Nacional Autonoma de Mexico +longdesc guidelines. Support for use in Scientific Workplace (SWP) 3.x +longdesc is also provided. The bundle also includes an appropriate +longdesc bibliographic style which enables the use of author-year +longdesc schemes using the natbib package. +containersize 9860 +containerchecksum f48e7aab2c445c5e257bb39ea4dd880cf9334a5b1dcbf429e8d4420edbdc4621aa59548f31770d67698bfb4e59e239dbcddc959c1b010e012ad16971ee7956f0 +doccontainersize 631572 +doccontainerchecksum 240a697f242b880fd2436bbaa3752aae57ef3fd2e9ee63da173c78582c4bcbb1eb19e02a96607991d1d6a40157d52f00dadcd4956af230d429ad5223161a018d +docfiles size=309 + RELOC/doc/latex/unamthesis/Escudo-FC.eps + RELOC/doc/latex/unamthesis/Escudo-FC.pdf + RELOC/doc/latex/unamthesis/Escudo-IBT.eps + RELOC/doc/latex/unamthesis/Escudo-IBT.pdf + RELOC/doc/latex/unamthesis/Escudo-UNAM.eps + RELOC/doc/latex/unamthesis/Escudo-UNAM.pdf + RELOC/doc/latex/unamthesis/LEEME + RELOC/doc/latex/unamthesis/License + RELOC/doc/latex/unamthesis/README details="Readme" + RELOC/doc/latex/unamthesis/Thesis_-_Universidad_Nacional_Autonoma_de_Mexico.shl + RELOC/doc/latex/unamthesis/UNAMThesis.cst + RELOC/doc/latex/unamthesis/UNAMThesis.pdf details="Package documentation" + RELOC/doc/latex/unamthesis/UNAMThesis.tex + RELOC/doc/latex/unamthesis/UNAMThesisSWP.tex + RELOC/doc/latex/unamthesis/testBib.bib +runfiles size=11 + RELOC/bibtex/bst/unamthesis/UNAMThesis.bst + RELOC/tex/latex/unamthesis/UNAMThesis.sty +catalogue-ctan /macros/latex/contrib/unamthesis +catalogue-date 2017-03-29 05:27:26 +0200 +catalogue-license lppl1.3 +catalogue-topics dissertation +catalogue-version 2.1 + +name undergradmath +category Package +revision 42926 +shortdesc LaTeX Math for Undergraduates cheat sheet +relocated 1 +longdesc This is a cheat sheet for writing mathematics with LaTeX. It is +longdesc aimed at US undergraduates. +containersize 424 +containerchecksum 1fa7b30670ff888b7b848b756b960690489aa7ea12e5cc5cc97b56061cc91c2fc4bb2ab0a3a2eaf13177baf760edf8bd7f222dbe02cc16ad7b53f57b4b4340fc +doccontainersize 1479948 +doccontainerchecksum 5dfa5955c7e9ed8fe89f6ccfb4517e699861b95619fc2013631d457938d64bd56bf34718c29b154a46b8519ec61bb102963668b13bb414a3a7ab35b748a981c7 +docfiles size=398 + RELOC/doc/latex/undergradmath/LICENSE + RELOC/doc/latex/undergradmath/README details="Readme" + RELOC/doc/latex/undergradmath/convert_to_png.sh + RELOC/doc/latex/undergradmath/undergradmath.pdf details="Package documentation" + RELOC/doc/latex/undergradmath/undergradmath.tex + RELOC/doc/latex/undergradmath/undergradmath_0.png + RELOC/doc/latex/undergradmath/undergradmath_1.png +catalogue-ctan /info/undergradmath +catalogue-date 2017-01-12 05:19:00 +0100 +catalogue-license other-free +catalogue-topics maths maths-doc maths-symbol + name underlin category Package revision 15878 -shortdesc Underlined running heads. +shortdesc Underlined running heads relocated 1 longdesc Defines two pagestyles that provide underlined page heads in longdesc LaTeX. -runfiles size=1 - RELOC/tex/latex/underlin/underlin.sty +containersize 1032 +containerchecksum b3afaf4c51b3da2d082e2cc742deaabe70cfbea7425e0c57f0d1d6696cd7d8f993707a219556a5c5bca925ea63373e3f0a716a82ead647e09ef2f716535886d2 +doccontainersize 70524 +doccontainerchecksum d296a04d3a24b463de3e4fe99c96a2fd8afa7c4ed2fa17d1218ac9e4c17455b4752176be60743211d59657045c709c8b4bd66febf10c81a41879e8c7a67e9958 docfiles size=21 - RELOC/doc/latex/underlin/underlin.pdf + RELOC/doc/latex/underlin/underlin.pdf details="Package documentation" +srccontainersize 1976 +srccontainerchecksum 8c534008a2cb0710b95333869536bdef5e3910e4a7c29ad2daabacd94bc5a34ea15dd3bd8439e7ebede0985831662d86f68815bb13b3fc36c82d83c51b16cb5d srcfiles size=2 RELOC/source/latex/underlin/underlin.dtx RELOC/source/latex/underlin/underlin.ins +runfiles size=1 + RELOC/tex/latex/underlin/underlin.sty catalogue-ctan /macros/latex/contrib/underlin -catalogue-date 2012-06-26 18:23:46 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics underline page-hf catalogue-version 1.01 name underoverlap category Package revision 29019 -shortdesc Position decorations over and under expressions. +shortdesc Position decorations over and under expressions relocated 1 longdesc The package overcomes TeX's inherent limitations in commands longdesc that place decorations (such as braces) at arbirary positions longdesc over and under expressions, overlapping as necessary. -runfiles size=4 - RELOC/tex/latex/underoverlap/underoverlap.sty +containersize 3392 +containerchecksum 3f94b5d33cfaa7f48441ba656e9498ea17ee5ca404e39486004e43bed71bab5f2140b391191e4d6f9575ca23e09b83bce343433c02cc394844270e563aab70c3 +doccontainersize 271816 +doccontainerchecksum 5214981a15d7f15cd361f007505a4a0060a2952d75ea28f4eaef01c19a5b79736512a2b0a8c5e6ece2d08c364780256963276a9bc9ea980e13ba292e3d0b8bc2 docfiles size=76 - RELOC/doc/latex/underoverlap/README + RELOC/doc/latex/underoverlap/README details="Readme" RELOC/doc/latex/underoverlap/dry.sty RELOC/doc/latex/underoverlap/packagedoc.cls - RELOC/doc/latex/underoverlap/underoverlap.pdf + RELOC/doc/latex/underoverlap/underoverlap.pdf details="Package documentation" RELOC/doc/latex/underoverlap/underoverlap.tex RELOC/doc/latex/underoverlap/with.sty +runfiles size=4 + RELOC/tex/latex/underoverlap/underoverlap.sty +catalogue-contact-repository https://github.com/mhelvens/latex-underoverlap catalogue-ctan /macros/latex/contrib/underoverlap -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-06-28 04:59:58 +0200 catalogue-license lppl1.3 +catalogue-topics maths catalogue-version 0.0.1-r1 name underscore category Package revision 18261 -shortdesc Control the behaviour of "_" in text. +shortdesc Control the behaviour of "_" in text relocated 1 longdesc With the package, \_ in text mode (i.e., \textunderscore) longdesc prints an underscore so that hyphenation of words either side @@ -172221,42 +291577,261 @@ longdesc actual hyphenation point appears after the underscore, or longdesc merely a break point. The package also arranges that, while in longdesc text, '_' itself behaves as \textunderscore (the behaviour of _ longdesc in maths mode is not affected). -runfiles size=3 - RELOC/tex/latex/underscore/underscore.sty +containersize 4716 +containerchecksum 4fdc57d0a36aa5646c6b960b7579a8111441659469df32beaae06f54e6e835456810b1d9b5d36036510befd5e80b5b481b9179a6b24364bf8f858ebc97039ab2 +doccontainersize 246480 +doccontainerchecksum e1f0730b39a5d25cc52160e090b797ed73a5becc16b6813cd0c2f4bf78696b23aec5c82367c347d0e734f3b92761ad2090e517bb6dd2a40879639f62149fdba6 docfiles size=65 RELOC/doc/latex/underscore/miscdoc.sty - RELOC/doc/latex/underscore/underscore.pdf + RELOC/doc/latex/underscore/underscore.pdf details="Package documentation" RELOC/doc/latex/underscore/underscore.tex +runfiles size=3 + RELOC/tex/latex/underscore/underscore.sty catalogue-ctan /macros/latex/contrib/underscore -catalogue-date 2013-09-20 11:57:07 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics typesetting name undolabl category Package revision 36681 -shortdesc Override existing labels. +shortdesc Override existing labels relocated 1 longdesc The package allows the user to override existing labels (for longdesc example, those generated automatically). -runfiles size=2 - RELOC/tex/latex/undolabl/undolabl.sty +containersize 2356 +containerchecksum b753a9d8a4809118a76b9651c5c7994aebe5c95019b408c59b356135ab34fe4e463099280ea43fc4e47692e32af9570be929999a661fe80ce993f25b85547e10 +doccontainersize 355088 +doccontainerchecksum d7aa3497adacd6a5e10dfc9ac19762ba3fdabc74eb1d50c22dcd05e8d4a02d0723efe3c7e297050ab607525ad3611cddf87cc50d640394c4489d765fffbbe8b8 docfiles size=91 - RELOC/doc/latex/undolabl/README - RELOC/doc/latex/undolabl/undolabl-example.pdf + RELOC/doc/latex/undolabl/README details="Readme" + RELOC/doc/latex/undolabl/undolabl-example.pdf details="Package examples" RELOC/doc/latex/undolabl/undolabl-example.tex - RELOC/doc/latex/undolabl/undolabl.pdf + RELOC/doc/latex/undolabl/undolabl.pdf details="Package documentation" +srccontainersize 11852 +srccontainerchecksum dbbfbc331830b1d006d746a7ad0a7578ebeb805f7c8b1fc54cc5a502c878fc8b026ff781e05b5510b2331be529eabbd6b0308811b5471f9e4571cf1172a011b8 srcfiles size=13 RELOC/source/latex/undolabl/undolabl.drv RELOC/source/latex/undolabl/undolabl.dtx RELOC/source/latex/undolabl/undolabl.ins +runfiles size=2 + RELOC/tex/latex/undolabl/undolabl.sty catalogue-ctan /macros/latex/contrib/undolabl -catalogue-date 2015-03-30 15:49:30 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics label-ref catalogue-version 1.0l +name unfonts-core +category Package +revision 49455 +shortdesc TrueType version of Un-fonts +relocated 1 +longdesc The Un-fonts come from the HLaTeX as type1 fonts in 1998 by +longdesc Koaunghi Un, he made type1 fonts to use with Korean TeX +longdesc (HLaTeX) in the late 1990's and released it under the GPL +longdesc license. They were converted to TrueType with the FontForge +longdesc (PfaEdit) by Won-kyu Park in 2003. Core families (9 fonts): +longdesc UnBatang, UnBatangBold: serif UnDotum, UnDotumBold: sans-serif +longdesc UnGraphic, UnGraphicBold: sans-serif style UnPilgi, +longdesc UnPilgiBold: script UnGungseo: cursive, brush-stroke +containersize 14727572 +containerchecksum 5b405d4d77d15392ce5c90e9b50b6ab68309fdff67313af2749ff0865f46ba02a40e4850a690f69834f0b6a7c7e7ac33d3d422a9b241586433718f82de31bc30 +doccontainersize 10588 +doccontainerchecksum aabc766497c311a943f0a269d5822a44ab6baab6c8a82fddecf0b53010d794173d417f46fa6c073d2db453540a76866dd2265daea5879ec8c0ffdcd936d29a41 +docfiles size=10 + RELOC/doc/fonts/unfonts-core/COPYING + RELOC/doc/fonts/unfonts-core/README.md details="Readme" + RELOC/doc/fonts/unfonts-core/README_original + RELOC/doc/fonts/unfonts-core/changelog.Debian +runfiles size=8361 + RELOC/fonts/truetype/public/unfonts-core/UnBatang.ttf + RELOC/fonts/truetype/public/unfonts-core/UnBatangBold.ttf + RELOC/fonts/truetype/public/unfonts-core/UnDinaru.ttf + RELOC/fonts/truetype/public/unfonts-core/UnDinaruBold.ttf + RELOC/fonts/truetype/public/unfonts-core/UnDinaruLight.ttf + RELOC/fonts/truetype/public/unfonts-core/UnDotum.ttf + RELOC/fonts/truetype/public/unfonts-core/UnDotumBold.ttf + RELOC/fonts/truetype/public/unfonts-core/UnGraphic.ttf + RELOC/fonts/truetype/public/unfonts-core/UnGraphicBold.ttf + RELOC/fonts/truetype/public/unfonts-core/UnGungseo.ttf + RELOC/fonts/truetype/public/unfonts-core/UnPilgi.ttf + RELOC/fonts/truetype/public/unfonts-core/UnPilgiBold.ttf +catalogue-also unfonts-extra +catalogue-contact-home http://kldp.net/unfonts/ +catalogue-ctan /fonts/unfonts-core +catalogue-date 2018-12-19 15:10:28 +0100 +catalogue-license gpl2 +catalogue-topics font-ttf korean + +name unfonts-extra +category Package +revision 44465 +shortdesc TrueType version of Un-fonts +relocated 1 +longdesc The Un-fonts come from the HLaTeX as type1 fonts in 1998 by +longdesc Koaunghi Un, he made type1 fonts to use with Korean TeX +longdesc (HLaTeX) in the late 1990's and released it under the GPL +longdesc license. They were converted to TrueType with the FontForge +longdesc (PfaEdit) by Won-kyu Park in 2003. Extra families (10 fonts): +longdesc UnPen, UnPenheulim: script UnTaza: typewriter style UnBom: +longdesc decorative UnShinmun UnYetgul: old Korean printing style +longdesc UnJamoSora, UnJamoNovel, UnJamoDotum, UnJamoBatang +containersize 6565844 +containerchecksum ba57b43a7df5d1f9565a08e0a0588d9a3ac9702041763ee663dc8c906279f32c363a88e1c1be098e0d4e9b26550121e686cbb6fc6b0256bb91535a4a1b12a083 +doccontainersize 10160 +doccontainerchecksum 5fdc1ebd1d939ba99d4bb11c2d89128a97adaa4a0696abbc7517ab55ce39b87e7e7801e7a30b93c1f95e92bacd7d862144191f0ef542561816f6d1b84e9a7131 +docfiles size=9 + RELOC/doc/fonts/unfonts-extra/COPYING + RELOC/doc/fonts/unfonts-extra/README.md details="Readme" + RELOC/doc/fonts/unfonts-extra/README_original + RELOC/doc/fonts/unfonts-extra/changelog.Debian +runfiles size=4977 + RELOC/fonts/truetype/public/unfonts-extra/UnJamoBatang.ttf + RELOC/fonts/truetype/public/unfonts-extra/UnJamoDotum.ttf + RELOC/fonts/truetype/public/unfonts-extra/UnJamoNovel.ttf + RELOC/fonts/truetype/public/unfonts-extra/UnJamoSora.ttf + RELOC/fonts/truetype/public/unfonts-extra/UnPen.ttf + RELOC/fonts/truetype/public/unfonts-extra/UnPenheulim.ttf + RELOC/fonts/truetype/public/unfonts-extra/UnPilgia.ttf + RELOC/fonts/truetype/public/unfonts-extra/UnShinmun.ttf + RELOC/fonts/truetype/public/unfonts-extra/UnTaza.ttf + RELOC/fonts/truetype/public/unfonts-extra/UnVada.ttf + RELOC/fonts/truetype/public/unfonts-extra/UnYetgul.ttf +catalogue-also unfonts-core +catalogue-contact-home http://kldp.net/unfonts/ +catalogue-ctan /fonts/unfonts-extra +catalogue-date 2017-06-04 06:02:46 +0200 +catalogue-license gpl2 +catalogue-topics font-ttf korean + +name uni-wtal-ger +category Package +revision 31541 +shortdesc Citation style for literary studies at the University of Wuppertal +relocated 1 +longdesc The package defines a BibLaTeX citation style based on the +longdesc author-title style of biblatex-dw. The citations are optimised +longdesc for literary studies in faculty of humanities at the Bergische +longdesc Universitat Wuppertal. +containersize 1644 +containerchecksum d1b6186d50733f87576ef6509f7eebaa17651039d882f78abbfa8ae23ddf7b896a90065fd5ff83a2e216485c22e865057f715784fab37ad9440616297d67a26d +doccontainersize 71452 +doccontainerchecksum ffee19f2d4ac337f7615b99946287eb902d2841b48f9d5c49d51604b45b7eaa126538732d64b319a8ba320f1dcb9b62b45cf608dbb0059f37975a1220022c333 +docfiles size=23 + RELOC/doc/latex/uni-wtal-ger/CHANGES + RELOC/doc/latex/uni-wtal-ger/LIESMICH details="Readme" language="de" + RELOC/doc/latex/uni-wtal-ger/README details="Readme" language="en" + RELOC/doc/latex/uni-wtal-ger/germanistik.bib + RELOC/doc/latex/uni-wtal-ger/germanistik.pdf details="Package documentation" language="de" + RELOC/doc/latex/uni-wtal-ger/germanistik.tex +runfiles size=2 + RELOC/tex/latex/uni-wtal-ger/uni-wtal-ger.bbx + RELOC/tex/latex/uni-wtal-ger/uni-wtal-ger.cbx +catalogue-ctan /macros/latex/contrib/biblatex-contrib/uni-wtal-ger +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics humanities biblatex +catalogue-version 0.2 + +name uni-wtal-lin +category Package +revision 31409 +shortdesc Citation style for linguistic studies at the University of Wuppertal +relocated 1 +longdesc The package defines a BibLaTeX citation style based on the +longdesc standard author-year style. The citations are optimised for +longdesc linguistic studies at the Institute of Linguistics at the +longdesc Bergische Universitat Wuppertal. +containersize 2836 +containerchecksum 803107d89b4ce6fe120bb528c684a65db3a9c70433abfd6bcebe2a5d05e6c7680256a407ef5f0515a56915c5c1e0637a183cc866631558e32afd96a0e45139ce +doccontainersize 93524 +doccontainerchecksum e88b2c8364eeebf3768d0d562447d29233280daf685d56fe791d25b352cc64c4c95be3bec198aa6e5502287a654f3088e643a3a58edf7e55d0d899eed5b704c6 +docfiles size=30 + RELOC/doc/latex/uni-wtal-lin/CHANGES + RELOC/doc/latex/uni-wtal-lin/LIESMICH details="Readme" language="de" + RELOC/doc/latex/uni-wtal-lin/README details="Readme" language="en" + RELOC/doc/latex/uni-wtal-lin/uni-wtal-lin.bib + RELOC/doc/latex/uni-wtal-lin/uni-wtal-lin.pdf details="Package documentation" language="de" + RELOC/doc/latex/uni-wtal-lin/uni-wtal-lin.tex +runfiles size=4 + RELOC/tex/latex/uni-wtal-lin/uni-wtal-lin.bbx + RELOC/tex/latex/uni-wtal-lin/uni-wtal-lin.cbx +catalogue-ctan /macros/latex/contrib/biblatex-contrib/uni-wtal-lin +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics humanities linguistic biblatex +catalogue-version 0.2 + +name unicode-bidi +category Package +revision 42482 +shortdesc Experimental unicode bidi package for XeTeX +relocated 1 +longdesc The experimental unicode-bidi package allows to mix non-RTL +longdesc script with RTL script without any markup. +containersize 1120 +containerchecksum 35e32b9959e698ab0d32ef578376fdeaac54c1acb9abc584e742a7caafbb2cf82364d58d73ad07de4cd273a5c9c60e4468df74fc4c21fb6552ddb5be725e384d +doccontainersize 992 +doccontainerchecksum 44b76c810988c541c5dc6cc85a56fb81e8c2aa97afb84192477e57f59423e508e34aaa0542009ceb5ddbf74c95cd662697544af1cdda1d0c114bb3f0507493d5 +docfiles size=1 + RELOC/doc/xelatex/unicode-bidi/README.md details="Readme" +runfiles size=1 + RELOC/tex/xelatex/unicode-bidi/unicode-bidi.sty +catalogue-also bidi +catalogue-contact-bugs https://github.com/bidi-tex/unicode-bidi/issues +catalogue-contact-repository https://github.com/bidi-tex/unicode-bidi +catalogue-ctan /macros/xetex/latex/unicode-bidi +catalogue-date 2018-11-28 21:13:17 +0100 +catalogue-license lppl1.3 +catalogue-topics bidi +catalogue-version 0.01 + +name unicode-data +category Package +revision 50303 +shortdesc Unicode data and loaders for TeX +relocated 1 +longdesc This bundle provides generic access to Unicode Consortium data +longdesc for TeX use. It contains a set of text files provided by the +longdesc Unicode Consortium which are currently all from Unicode 8.0.0, +longdesc with the exception of MathClass.txt which is not currently part +longdesc of the Unicode Character Database. Accompanying these source +longdesc data are generic TeX loader files allowing this data to be used +longdesc as part of TeX runs, in particular in building format files. +longdesc Currently there are two loader files: one for general character +longdesc set up and one for initialising XeTeX character classes as has +longdesc been carried out to date by unicode-letters.tex. The source +longdesc data are distributed in accordance with the license stipulated +longdesc by the Unicode Consortium. The bundle as a whole is +longdesc co-ordinated by the LaTeX3 Project as a general resource for +longdesc TeX users. +containersize 233976 +containerchecksum 741daa1b4de621f1b9f46110b06d49ac19f19aa7faff081bcd4744cba908d31a641914d121a4ccbe61396c4d684037e607ef76f235416594e4a20465e6054174 +doccontainersize 3460 +doccontainerchecksum bd97e4d43d4e891db320f4b5e48292828b3e5a23f2fa6c0af58233fbbf4b4a1d6de77ba19266955cc36b5a01e3dbd8f145d26a77bee93dcd6d5049811d8b68ca +docfiles size=2 + RELOC/doc/generic/unicode-data/README.md details="Readme" +runfiles size=575 + RELOC/tex/generic/unicode-data/CaseFolding.txt + RELOC/tex/generic/unicode-data/EastAsianWidth.txt + RELOC/tex/generic/unicode-data/LineBreak.txt + RELOC/tex/generic/unicode-data/MathClass-15.txt + RELOC/tex/generic/unicode-data/SpecialCasing.txt + RELOC/tex/generic/unicode-data/UnicodeData.txt + RELOC/tex/generic/unicode-data/load-unicode-data.tex + RELOC/tex/generic/unicode-data/load-unicode-math-classes.tex + RELOC/tex/generic/unicode-data/load-unicode-xetex-classes.tex +catalogue-contact-repository https://github.com/latex3/unicode-data +catalogue-ctan /macros/generic/unicode-data +catalogue-date 2019-03-09 20:52:27 +0100 +catalogue-license lppl1.3c +catalogue-topics latex3 unicode +catalogue-version 1.8 + name unicode-math category Package -revision 38337 +revision 50245 shortdesc Unicode mathematics support for XeTeX and LuaTeX relocated 1 longdesc This package will provide a complete implementation of unicode @@ -172271,42 +291846,83 @@ longdesc LuaTeX, this package requires recent versions of the fontspec, longdesc expl3, xpackages, filehook, ucharcat and lualatex-math longdesc packages. depend fontspec -runfiles size=104 +containersize 43144 +containerchecksum 05b810142d6da7beb889fcb3f11b8b145d6250d18fa2b9d8745fa8ad7c7009a95bf447825ccf08d8e62fc63c57c0761ed907a6bf2bf5e0c9f8e239870bf73a2f +doccontainersize 1741260 +doccontainerchecksum a7bdae5dce94420835ef5af6b6631947ce4829d02a952339b32fa098a75aa6c9fbd7455358815fac0cc4e2d2a5646b47a71405b50ccdd0b0944d9d92c5ccbb7d +docfiles size=465 + RELOC/doc/latex/unicode-math/CHANGES.md + RELOC/doc/latex/unicode-math/LICENSE + RELOC/doc/latex/unicode-math/MANIFEST.md + RELOC/doc/latex/unicode-math/README.md details="Readme" + RELOC/doc/latex/unicode-math/RELEASE_CHECKLIST.md + RELOC/doc/latex/unicode-math/um-doc-legacyfontdimen.tex + RELOC/doc/latex/unicode-math/um-doc-main.tex + RELOC/doc/latex/unicode-math/um-doc-mathfontdimen.tex + RELOC/doc/latex/unicode-math/um-doc-nfsssummary.tex + RELOC/doc/latex/unicode-math/um-doc-stixextract.tex + RELOC/doc/latex/unicode-math/um-doc-style.tex + RELOC/doc/latex/unicode-math/unicode-math-code.ltx + RELOC/doc/latex/unicode-math/unicode-math-code.pdf details="Documentation of the source code" + RELOC/doc/latex/unicode-math/unicode-math.ltx + RELOC/doc/latex/unicode-math/unicode-math.pdf details="Package documentation (for the user)" + RELOC/doc/latex/unicode-math/unimath-example.ltx + RELOC/doc/latex/unicode-math/unimath-example.pdf details="Example of use" + RELOC/doc/latex/unicode-math/unimath-symbols.ltx + RELOC/doc/latex/unicode-math/unimath-symbols.pdf details="List of symbols defined by the package" +srccontainersize 38500 +srccontainerchecksum 077211b8416f3a09c321abe55a5d8a228cce27fd84801fbc2dfb11a57676e83527f3d3fd4e8048c0d27880a976ab43da293a8a22bb97d9ab0fe0d5f4b790d6aa +srcfiles size=68 + RELOC/source/latex/unicode-math/um-code-alphabets.dtx + RELOC/source/latex/unicode-math/um-code-amsmath.dtx + RELOC/source/latex/unicode-math/um-code-api.dtx + RELOC/source/latex/unicode-math/um-code-compat.dtx + RELOC/source/latex/unicode-math/um-code-epilogue.dtx + RELOC/source/latex/unicode-math/um-code-fontopt.dtx + RELOC/source/latex/unicode-math/um-code-fontparam.dtx + RELOC/source/latex/unicode-math/um-code-main.dtx + RELOC/source/latex/unicode-math/um-code-mathmap.dtx + RELOC/source/latex/unicode-math/um-code-mathtext.dtx + RELOC/source/latex/unicode-math/um-code-msg.dtx + RELOC/source/latex/unicode-math/um-code-opening.dtx + RELOC/source/latex/unicode-math/um-code-pkgopt.dtx + RELOC/source/latex/unicode-math/um-code-primes.dtx + RELOC/source/latex/unicode-math/um-code-setchar.dtx + RELOC/source/latex/unicode-math/um-code-sscript.dtx + RELOC/source/latex/unicode-math/um-code-sym-commands.dtx + RELOC/source/latex/unicode-math/um-code-ui.dtx + RELOC/source/latex/unicode-math/um-code-usv.dtx + RELOC/source/latex/unicode-math/um-code-variables.dtx + RELOC/source/latex/unicode-math/unicode-math.dtx + RELOC/source/latex/unicode-math/unicode-math.ins +runfiles size=127 RELOC/tex/latex/unicode-math/unicode-math-luatex.sty RELOC/tex/latex/unicode-math/unicode-math-table.tex RELOC/tex/latex/unicode-math/unicode-math-xetex.sty RELOC/tex/latex/unicode-math/unicode-math.sty -docfiles size=474 - RELOC/doc/latex/unicode-math/README.md - RELOC/doc/latex/unicode-math/unicode-math-doc.tex - RELOC/doc/latex/unicode-math/unicode-math.pdf - RELOC/doc/latex/unicode-math/unimath-example.ltx - RELOC/doc/latex/unicode-math/unimath-symbols.ltx - RELOC/doc/latex/unicode-math/unimath-symbols.pdf -srcfiles size=48 - RELOC/source/latex/unicode-math/unicode-math-alphabets.dtx - RELOC/source/latex/unicode-math/unicode-math-compat.dtx - RELOC/source/latex/unicode-math/unicode-math-msg.dtx - RELOC/source/latex/unicode-math/unicode-math-usv.dtx - RELOC/source/latex/unicode-math/unicode-math.dtx +catalogue-contact-bugs http://github.com/wspr/unicode-math/issues +catalogue-contact-home http://wspr.io/unicode-math/ +catalogue-contact-repository https://github.com/wspr/unicode-math/ catalogue-ctan /macros/latex/contrib/unicode-math -catalogue-date 2015-09-10 18:09:20 +0200 -catalogue-license lppl1.3 -catalogue-topics maths font-use luatex xetex -catalogue-version 0.8b +catalogue-date 2019-03-05 08:54:40 +0100 +catalogue-license lppl1.3c +catalogue-topics maths font-use luatex xetex unicode +catalogue-version 0.8o name unisugar category Package revision 22357 -shortdesc Define syntactic sugar for Unicode LaTeX. +shortdesc Define syntactic sugar for Unicode LaTeX relocated 1 longdesc The package allows the user to define shorthand aliases for longdesc single Unicode characters, and also provides support for such longdesc aliases in RTL-text. The package requires an TeX-alike system longdesc that uses Unicode input in a native way: current examples are longdesc XeTeX and LuaTeX. -runfiles size=2 - RELOC/tex/xelatex/unisugar/unisugar.sty +containersize 2468 +containerchecksum 01dbe995d32b49121e28163c11f89e51d4c692ab864b3dbe6305a0e4364c025b13751c137df52d24160acc9a8080fbee56fc7a5af522405c3d0564486c151260 +doccontainersize 456508 +doccontainerchecksum 8e6fdec36271f3561c768acf095b6fc353da07864829322dd0b52b1784d74793828951e006f8c56a9c38849b28ce186682d906bd7bc906739b22782db2102021 docfiles size=133 RELOC/doc/xelatex/unisugar/Makefile RELOC/doc/xelatex/unisugar/README @@ -172314,17 +291930,90 @@ docfiles size=133 RELOC/doc/xelatex/unisugar/gedit-mixed-traditional.png RELOC/doc/xelatex/unisugar/sugar.png RELOC/doc/xelatex/unisugar/traditional.png - RELOC/doc/xelatex/unisugar/unisugar.pdf + RELOC/doc/xelatex/unisugar/unisugar.pdf details="Package documentation" RELOC/doc/xelatex/unisugar/unisugar.tex +runfiles size=2 + RELOC/tex/xelatex/unisugar/unisugar.sty catalogue-ctan /macros/xetex/latex/unisugar -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics shortcut catalogue-version 0.92 +name unitn-bimrep +category Package +revision 45581 +shortdesc A bimonthly report class for the PhD School of Materials, Mechatronics and System Engineering +relocated 1 +longdesc This package allows to rapidly write the bimonthly report for +longdesc The Ph.D. School in Materials, Mechatronics and System +longdesc Engineering. It allows to define the research activities, the +longdesc participation to school and congress, and the publication +longdesc performed by a student. +containersize 76668 +containerchecksum 595883fa58169e9cd7a860933f19847895ca02d3a684b71536dfcdff54c5fe6410e6cf6fab8ae9574cb9a9180ce24f3ddf41f817ceeab85d0c65684cdc9b3909 +doccontainersize 825148 +doccontainerchecksum 3049a0bfcbae6666f309979e2c2b8d52647d3c445992201afbbfa28684b83adb2a1ad5f227360c49826ba2de2cfebbc87195801c38413f5eb26bcd793b77ca61 +docfiles size=278 + RELOC/doc/latex/unitn-bimrep/LICENSE.md + RELOC/doc/latex/unitn-bimrep/README.md details="Readme" + RELOC/doc/latex/unitn-bimrep/README.pdf details="Package documentation" + RELOC/doc/latex/unitn-bimrep/VERSION.md + RELOC/doc/latex/unitn-bimrep/examples/example.pdf details="Example of use" + RELOC/doc/latex/unitn-bimrep/examples/example.png + RELOC/doc/latex/unitn-bimrep/examples/example.tex + RELOC/doc/latex/unitn-bimrep/examples/example_bib.bib + RELOC/doc/latex/unitn-bimrep/examples/example_bib.pdf + RELOC/doc/latex/unitn-bimrep/examples/example_bib.png + RELOC/doc/latex/unitn-bimrep/examples/example_bib.tex +runfiles size=23 + RELOC/tex/latex/unitn-bimrep/unitn-bimrep.cls + RELOC/tex/latex/unitn-bimrep/unitn-bimrep.jpg +catalogue-contact-announce https://github.com/MatteoRagni/unitn-bimrep +catalogue-contact-bugs https://github.com/MatteoRagni/unitn-bimrep/issues +catalogue-contact-development https://github.com/MatteoRagni/unitn-bimrep +catalogue-contact-home https://github.com/MatteoRagni/unitn-bimrep +catalogue-contact-repository https://github.com/MatteoRagni/unitn-bimrep.git +catalogue-ctan /macros/latex/contrib/unitn-bimrep +catalogue-date 2018-01-07 12:14:32 +0100 +catalogue-license mit +catalogue-topics report-like + +name units +category Package +revision 42428 +shortdesc Typeset units +relocated 1 +longdesc The package is provided as a bundle with the nicefrac package +longdesc for typing fractions. Units uses nicefrac in typesetting +longdesc physical units in a standard-looking sort of way. +containersize 2004 +containerchecksum a1c3266bd95d8668d67e7dc451258f7a3a0362e4435ab70a574be5f7ac44bb5fbb7b30ded852602c73f227f57e8f7bf61af148070b9eae6103a982f726869a2f +doccontainersize 207040 +doccontainerchecksum e8a1d929e9817539a5fef6cd89c8d4daf60cc0495fc7698e4708eefbf60fd36daf88ee5cb668e9f1d53978d53253bb52ef6b3e6d1a313708022e5218c99e89d2 +docfiles size=60 + RELOC/doc/latex/units/COPYING + RELOC/doc/latex/units/README details="Package README" + RELOC/doc/latex/units/units.pdf details="Package documentation" +srccontainersize 7256 +srccontainerchecksum a6aff8a5917b48ce17a62de74bf327e0bc2b4a8cfc8a77fde67cfa710d8715b0d8dda54837b3f895cd769649444691df5fafd9e486bb37f4e9af110584f676da +srcfiles size=7 + RELOC/source/latex/units/units.dtx + RELOC/source/latex/units/units.ins +runfiles size=2 + RELOC/tex/latex/units/nicefrac.sty + RELOC/tex/latex/units/units.sty +catalogue-also siunitx +catalogue-ctan /macros/latex/contrib/units +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics units scientific-docs +catalogue-version 0.9b + name unitsdef category Package revision 15878 -shortdesc Typesetting units in LaTeX. +shortdesc Typesetting units in LaTeX relocated 1 longdesc Many packages for typesetting units have been written for use longdesc in LaTeX2e. Some define macros to typeset a lot of units but do @@ -172333,6 +292022,20 @@ longdesc needed available but do not predefine any unit. This package longdesc tries to comply with both requirements. It predefines common longdesc units, defines an easy to use interface to define new units and longdesc changes the output concerning to the surrounding font settings. +containersize 4836 +containerchecksum 048b2d4f3b160a359a8db5a66b9bc3bf68545384c39c7c4964521aa2067a35e4524734e082d5bedeaf3ff52b6a5043717ca6f510cce0d041b0968968ffd232b5 +doccontainersize 635436 +doccontainerchecksum c1e6de470c8b290c66f71020794fa5a855a0c9b22d90f629c8ec0f6ab110ff780c0f39291f0309348711cc2acb60cf52f38538da8894803cfee54f9fd6fdc9c6 +docfiles size=170 + RELOC/doc/latex/unitsdef/README.1st details="Readme" + RELOC/doc/latex/unitsdef/defedpraef.tex + RELOC/doc/latex/unitsdef/defedunits.tex + RELOC/doc/latex/unitsdef/unitsdef.pdf details="Package documentation" +srccontainersize 12264 +srccontainerchecksum 9ab403624c578eb8f33801309e8c7ab0bb0b53f5bd0de0ad912a5ed6955a5d3ea0d44bb43b61fbfe5cc60a667cd908f85061c92fd397931a2a4780d0af58646b +srcfiles size=14 + RELOC/source/latex/unitsdef/unitsdef.dtx + RELOC/source/latex/unitsdef/unitsdef.ins runfiles size=14 RELOC/tex/latex/unitsdef/ampabbrv.cfg RELOC/tex/latex/unitsdef/enerabbr.cfg @@ -172344,52 +292047,157 @@ runfiles size=14 RELOC/tex/latex/unitsdef/volabbrv.cfg RELOC/tex/latex/unitsdef/voltabbr.cfg RELOC/tex/latex/unitsdef/weigabbr.cfg -docfiles size=170 - RELOC/doc/latex/unitsdef/README.1st - RELOC/doc/latex/unitsdef/defedpraef.tex - RELOC/doc/latex/unitsdef/defedunits.tex - RELOC/doc/latex/unitsdef/unitsdef.pdf -srcfiles size=14 - RELOC/source/latex/unitsdef/unitsdef.dtx - RELOC/source/latex/unitsdef/unitsdef.ins +catalogue-also siunits sistyle units catalogue-ctan /macros/latex/contrib/unitsdef -catalogue-date 2012-04-20 15:37:05 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics units scientific-docs catalogue-version 0.2 -name units +name universa category Package -revision 36944 -shortdesc Typeset units. +revision 15878 +shortdesc Herbert Bayer's 'universal' font relocated 1 -longdesc The package is provided as a bundle with the nicefrac package -longdesc for typing fractions. Units uses nicefrac in typesetting -longdesc physical units in a standard-looking sort of way. -runfiles size=2 - RELOC/tex/latex/units/nicefrac.sty - RELOC/tex/latex/units/units.sty -docfiles size=60 - RELOC/doc/latex/units/COPYING - RELOC/doc/latex/units/README - RELOC/doc/latex/units/units.pdf -srcfiles size=7 - RELOC/source/latex/units/units.dtx - RELOC/source/latex/units/units.ins -catalogue-ctan /macros/latex/contrib/units -catalogue-date 2012-04-20 15:37:05 +0200 +longdesc An implementation of the universal font by Herbert Bayer of the +longdesc Bauhaus school. The Metafont sources of the fonts, and their +longdesc LaTeX support, are all supplied in a LaTeX documented source +longdesc (.dtx) file. +containersize 16716 +containerchecksum 23e159650d62c5d74c6816c07c37a4e29b77bd4025777507442875a08d148aa26ab562271680a0d72fca691b000c23bcc8c979f90afcdfa8728b6558849bf629 +doccontainersize 10744 +doccontainerchecksum 338b53452d610fd90df19ffcb6d8e0f42a40fcfd54922a52faae3196f740a10c9ce76932eda2a078d8f376af5cc22139fc4fa15eb62691bda1b68f63b5ed9caa +docfiles size=9 + RELOC/doc/fonts/universa/README.uni + RELOC/doc/fonts/universa/copyright.tex + RELOC/doc/fonts/universa/unidoc.sty +srccontainersize 55836 +srccontainerchecksum 6d72d7c6b8ffdc25ee3e7459b62f11f976f85c98f5b3e0b4a6f6ef7374c67a5978b8b736ebad58f0692e6759ecf0fa5837b83f22efebfe3402c5c0696a31608d +srcfiles size=58 + RELOC/source/fonts/universa/uni.dtx + RELOC/source/fonts/universa/uni.ins +runfiles size=104 + RELOC/fonts/source/public/universa/fulbc10.mf + RELOC/fonts/source/public/universa/fulbc12.mf + RELOC/fonts/source/public/universa/fulbc17.mf + RELOC/fonts/source/public/universa/fulbc8.mf + RELOC/fonts/source/public/universa/fulbc9.mf + RELOC/fonts/source/public/universa/fulbo10.mf + RELOC/fonts/source/public/universa/fulbo12.mf + RELOC/fonts/source/public/universa/fulbo17.mf + RELOC/fonts/source/public/universa/fulbo8.mf + RELOC/fonts/source/public/universa/fulbo9.mf + RELOC/fonts/source/public/universa/fulbr10.mf + RELOC/fonts/source/public/universa/fulbr12.mf + RELOC/fonts/source/public/universa/fulbr17.mf + RELOC/fonts/source/public/universa/fulbr8.mf + RELOC/fonts/source/public/universa/fulbr9.mf + RELOC/fonts/source/public/universa/fulbst10.mf + RELOC/fonts/source/public/universa/fulbst12.mf + RELOC/fonts/source/public/universa/fulbst17.mf + RELOC/fonts/source/public/universa/fulbst8.mf + RELOC/fonts/source/public/universa/fulbst9.mf + RELOC/fonts/source/public/universa/fulmc10.mf + RELOC/fonts/source/public/universa/fulmc12.mf + RELOC/fonts/source/public/universa/fulmc17.mf + RELOC/fonts/source/public/universa/fulmc8.mf + RELOC/fonts/source/public/universa/fulmc9.mf + RELOC/fonts/source/public/universa/fulmo10.mf + RELOC/fonts/source/public/universa/fulmo12.mf + RELOC/fonts/source/public/universa/fulmo17.mf + RELOC/fonts/source/public/universa/fulmo8.mf + RELOC/fonts/source/public/universa/fulmo9.mf + RELOC/fonts/source/public/universa/fulmr10.mf + RELOC/fonts/source/public/universa/fulmr12.mf + RELOC/fonts/source/public/universa/fulmr17.mf + RELOC/fonts/source/public/universa/fulmr8.mf + RELOC/fonts/source/public/universa/fulmr9.mf + RELOC/fonts/source/public/universa/fulmst10.mf + RELOC/fonts/source/public/universa/fulmst12.mf + RELOC/fonts/source/public/universa/fulmst17.mf + RELOC/fonts/source/public/universa/fulmst8.mf + RELOC/fonts/source/public/universa/fulmst9.mf + RELOC/fonts/source/public/universa/uniacc.mf + RELOC/fonts/source/public/universa/unibase.mf + RELOC/fonts/source/public/universa/unidig.mf + RELOC/fonts/source/public/universa/uniext.mf + RELOC/fonts/source/public/universa/unilig.mf + RELOC/fonts/source/public/universa/unilow.mf + RELOC/fonts/source/public/universa/unipun.mf + RELOC/fonts/source/public/universa/unispe.mf + RELOC/fonts/source/public/universa/uniupp.mf + RELOC/fonts/tfm/public/universa/fulbc10.tfm + RELOC/fonts/tfm/public/universa/fulbc12.tfm + RELOC/fonts/tfm/public/universa/fulbc17.tfm + RELOC/fonts/tfm/public/universa/fulbc8.tfm + RELOC/fonts/tfm/public/universa/fulbc9.tfm + RELOC/fonts/tfm/public/universa/fulbo10.tfm + RELOC/fonts/tfm/public/universa/fulbo12.tfm + RELOC/fonts/tfm/public/universa/fulbo17.tfm + RELOC/fonts/tfm/public/universa/fulbo8.tfm + RELOC/fonts/tfm/public/universa/fulbo9.tfm + RELOC/fonts/tfm/public/universa/fulbr10.tfm + RELOC/fonts/tfm/public/universa/fulbr12.tfm + RELOC/fonts/tfm/public/universa/fulbr17.tfm + RELOC/fonts/tfm/public/universa/fulbr8.tfm + RELOC/fonts/tfm/public/universa/fulbr9.tfm + RELOC/fonts/tfm/public/universa/fulbst10.tfm + RELOC/fonts/tfm/public/universa/fulbst12.tfm + RELOC/fonts/tfm/public/universa/fulbst17.tfm + RELOC/fonts/tfm/public/universa/fulbst8.tfm + RELOC/fonts/tfm/public/universa/fulbst9.tfm + RELOC/fonts/tfm/public/universa/fulmc10.tfm + RELOC/fonts/tfm/public/universa/fulmc12.tfm + RELOC/fonts/tfm/public/universa/fulmc17.tfm + RELOC/fonts/tfm/public/universa/fulmc8.tfm + RELOC/fonts/tfm/public/universa/fulmc9.tfm + RELOC/fonts/tfm/public/universa/fulmo10.tfm + RELOC/fonts/tfm/public/universa/fulmo12.tfm + RELOC/fonts/tfm/public/universa/fulmo17.tfm + RELOC/fonts/tfm/public/universa/fulmo8.tfm + RELOC/fonts/tfm/public/universa/fulmo9.tfm + RELOC/fonts/tfm/public/universa/fulmr10.tfm + RELOC/fonts/tfm/public/universa/fulmr12.tfm + RELOC/fonts/tfm/public/universa/fulmr17.tfm + RELOC/fonts/tfm/public/universa/fulmr8.tfm + RELOC/fonts/tfm/public/universa/fulmr9.tfm + RELOC/fonts/tfm/public/universa/fulmst10.tfm + RELOC/fonts/tfm/public/universa/fulmst12.tfm + RELOC/fonts/tfm/public/universa/fulmst17.tfm + RELOC/fonts/tfm/public/universa/fulmst8.tfm + RELOC/fonts/tfm/public/universa/fulmst9.tfm + RELOC/tex/latex/universa/omluni.fd + RELOC/tex/latex/universa/omsuni.fd + RELOC/tex/latex/universa/ot1uni.fd + RELOC/tex/latex/universa/t1uni.fd + RELOC/tex/latex/universa/uni.sty + RELOC/tex/latex/universa/uuni.fd +catalogue-ctan /fonts/universa +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl -catalogue-version 0.9b +catalogue-topics font font-mf +catalogue-version 2.0 name universalis category Package revision 33860 -shortdesc Universalis font, with support. +shortdesc Universalis font, with support relocated 1 longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX longdesc support for the UniversalisADFStd family of fonts, designed by longdesc Hirwin Harendal. The font is suitable as an alternative to longdesc fonts such as Adrian Frutiger's Univers and Frutiger. execute addMap universalis.map +containersize 514020 +containerchecksum fcf890f52623fbded89b6dc5e6a8ed425354437430f66a70515ef7cfc126e6af20331f557630205189c7aa676532795d77415f2b4099b1fa46f460dd1b0f2011 +doccontainersize 35596 +doccontainerchecksum 4cee70c65d7f83a5d280550934c47acc59cffad87d78364ef84d397914127f43fc74b469469371652a83625d0fbe97c2a50fad76f559f39924b1995bf6a09baf +docfiles size=15 + RELOC/doc/fonts/universalis/COPYING + RELOC/doc/fonts/universalis/NOTICE.txt + RELOC/doc/fonts/universalis/README details="Readme" + RELOC/doc/fonts/universalis/universalis-samples.pdf details="Font samples" + RELOC/doc/fonts/universalis/universalis-samples.tex runfiles size=326 RELOC/fonts/enc/dvips/universalis/unvsl_fe7xck.enc RELOC/fonts/enc/dvips/universalis/unvsl_qu6a6x.enc @@ -172546,323 +292354,494 @@ runfiles size=326 RELOC/tex/latex/universalis/TS1UniversalisADFStd-LF.fd RELOC/tex/latex/universalis/UniversalisADFStd.sty RELOC/tex/latex/universalis/universalis.sty -docfiles size=15 - RELOC/doc/fonts/universalis/COPYING - RELOC/doc/fonts/universalis/NOTICE.txt - RELOC/doc/fonts/universalis/README - RELOC/doc/fonts/universalis/universalis-samples.pdf - RELOC/doc/fonts/universalis/universalis-samples.tex catalogue-ctan /fonts/universalis -catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl2 - -name universa -category Package -revision 15878 -shortdesc Herbert Bayer's 'universal' font. -relocated 1 -longdesc An implementation of the universal font by Herbert Bayer of the -longdesc Bauhaus school. The Metafont sources of the fonts, and their -longdesc LaTeX support, are all supplied in a LaTeX documented source -longdesc (.dtx) file. -runfiles size=104 - RELOC/fonts/source/public/universa/fulbc10.mf - RELOC/fonts/source/public/universa/fulbc12.mf - RELOC/fonts/source/public/universa/fulbc17.mf - RELOC/fonts/source/public/universa/fulbc8.mf - RELOC/fonts/source/public/universa/fulbc9.mf - RELOC/fonts/source/public/universa/fulbo10.mf - RELOC/fonts/source/public/universa/fulbo12.mf - RELOC/fonts/source/public/universa/fulbo17.mf - RELOC/fonts/source/public/universa/fulbo8.mf - RELOC/fonts/source/public/universa/fulbo9.mf - RELOC/fonts/source/public/universa/fulbr10.mf - RELOC/fonts/source/public/universa/fulbr12.mf - RELOC/fonts/source/public/universa/fulbr17.mf - RELOC/fonts/source/public/universa/fulbr8.mf - RELOC/fonts/source/public/universa/fulbr9.mf - RELOC/fonts/source/public/universa/fulbst10.mf - RELOC/fonts/source/public/universa/fulbst12.mf - RELOC/fonts/source/public/universa/fulbst17.mf - RELOC/fonts/source/public/universa/fulbst8.mf - RELOC/fonts/source/public/universa/fulbst9.mf - RELOC/fonts/source/public/universa/fulmc10.mf - RELOC/fonts/source/public/universa/fulmc12.mf - RELOC/fonts/source/public/universa/fulmc17.mf - RELOC/fonts/source/public/universa/fulmc8.mf - RELOC/fonts/source/public/universa/fulmc9.mf - RELOC/fonts/source/public/universa/fulmo10.mf - RELOC/fonts/source/public/universa/fulmo12.mf - RELOC/fonts/source/public/universa/fulmo17.mf - RELOC/fonts/source/public/universa/fulmo8.mf - RELOC/fonts/source/public/universa/fulmo9.mf - RELOC/fonts/source/public/universa/fulmr10.mf - RELOC/fonts/source/public/universa/fulmr12.mf - RELOC/fonts/source/public/universa/fulmr17.mf - RELOC/fonts/source/public/universa/fulmr8.mf - RELOC/fonts/source/public/universa/fulmr9.mf - RELOC/fonts/source/public/universa/fulmst10.mf - RELOC/fonts/source/public/universa/fulmst12.mf - RELOC/fonts/source/public/universa/fulmst17.mf - RELOC/fonts/source/public/universa/fulmst8.mf - RELOC/fonts/source/public/universa/fulmst9.mf - RELOC/fonts/source/public/universa/uniacc.mf - RELOC/fonts/source/public/universa/unibase.mf - RELOC/fonts/source/public/universa/unidig.mf - RELOC/fonts/source/public/universa/uniext.mf - RELOC/fonts/source/public/universa/unilig.mf - RELOC/fonts/source/public/universa/unilow.mf - RELOC/fonts/source/public/universa/unipun.mf - RELOC/fonts/source/public/universa/unispe.mf - RELOC/fonts/source/public/universa/uniupp.mf - RELOC/fonts/tfm/public/universa/fulbc10.tfm - RELOC/fonts/tfm/public/universa/fulbc12.tfm - RELOC/fonts/tfm/public/universa/fulbc17.tfm - RELOC/fonts/tfm/public/universa/fulbc8.tfm - RELOC/fonts/tfm/public/universa/fulbc9.tfm - RELOC/fonts/tfm/public/universa/fulbo10.tfm - RELOC/fonts/tfm/public/universa/fulbo12.tfm - RELOC/fonts/tfm/public/universa/fulbo17.tfm - RELOC/fonts/tfm/public/universa/fulbo8.tfm - RELOC/fonts/tfm/public/universa/fulbo9.tfm - RELOC/fonts/tfm/public/universa/fulbr10.tfm - RELOC/fonts/tfm/public/universa/fulbr12.tfm - RELOC/fonts/tfm/public/universa/fulbr17.tfm - RELOC/fonts/tfm/public/universa/fulbr8.tfm - RELOC/fonts/tfm/public/universa/fulbr9.tfm - RELOC/fonts/tfm/public/universa/fulbst10.tfm - RELOC/fonts/tfm/public/universa/fulbst12.tfm - RELOC/fonts/tfm/public/universa/fulbst17.tfm - RELOC/fonts/tfm/public/universa/fulbst8.tfm - RELOC/fonts/tfm/public/universa/fulbst9.tfm - RELOC/fonts/tfm/public/universa/fulmc10.tfm - RELOC/fonts/tfm/public/universa/fulmc12.tfm - RELOC/fonts/tfm/public/universa/fulmc17.tfm - RELOC/fonts/tfm/public/universa/fulmc8.tfm - RELOC/fonts/tfm/public/universa/fulmc9.tfm - RELOC/fonts/tfm/public/universa/fulmo10.tfm - RELOC/fonts/tfm/public/universa/fulmo12.tfm - RELOC/fonts/tfm/public/universa/fulmo17.tfm - RELOC/fonts/tfm/public/universa/fulmo8.tfm - RELOC/fonts/tfm/public/universa/fulmo9.tfm - RELOC/fonts/tfm/public/universa/fulmr10.tfm - RELOC/fonts/tfm/public/universa/fulmr12.tfm - RELOC/fonts/tfm/public/universa/fulmr17.tfm - RELOC/fonts/tfm/public/universa/fulmr8.tfm - RELOC/fonts/tfm/public/universa/fulmr9.tfm - RELOC/fonts/tfm/public/universa/fulmst10.tfm - RELOC/fonts/tfm/public/universa/fulmst12.tfm - RELOC/fonts/tfm/public/universa/fulmst17.tfm - RELOC/fonts/tfm/public/universa/fulmst8.tfm - RELOC/fonts/tfm/public/universa/fulmst9.tfm - RELOC/tex/latex/universa/omluni.fd - RELOC/tex/latex/universa/omsuni.fd - RELOC/tex/latex/universa/ot1uni.fd - RELOC/tex/latex/universa/t1uni.fd - RELOC/tex/latex/universa/uni.sty - RELOC/tex/latex/universa/uuni.fd -docfiles size=9 - RELOC/doc/fonts/universa/README.uni - RELOC/doc/fonts/universa/copyright.tex - RELOC/doc/fonts/universa/unidoc.sty -srcfiles size=58 - RELOC/source/fonts/universa/uni.dtx - RELOC/source/fonts/universa/uni.ins -catalogue-ctan /fonts/universa -catalogue-date 2014-05-02 16:40:29 +0200 -catalogue-license gpl -catalogue-version 2.0 - -name uni-wtal-ger -category Package -revision 31541 -shortdesc Citation style for literary studies at the University of Wuppertal. -relocated 1 -longdesc The package defines a biblatex citation style based on the -longdesc author-title style of biblatex-dw. The citations are optimised -longdesc for literary studies in faculty of humanities at the Bergische -longdesc Universitat Wuppertal. -runfiles size=2 - RELOC/tex/latex/uni-wtal-ger/uni-wtal-ger.bbx - RELOC/tex/latex/uni-wtal-ger/uni-wtal-ger.cbx -docfiles size=23 - RELOC/doc/latex/uni-wtal-ger/CHANGES - RELOC/doc/latex/uni-wtal-ger/LIESMICH - RELOC/doc/latex/uni-wtal-ger/README - RELOC/doc/latex/uni-wtal-ger/germanistik.bib - RELOC/doc/latex/uni-wtal-ger/germanistik.pdf - RELOC/doc/latex/uni-wtal-ger/germanistik.tex -catalogue-ctan /macros/latex/contrib/biblatex-contrib/uni-wtal-ger -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 0.2 - -name uni-wtal-lin -category Package -revision 31409 -shortdesc Citation style for linguistic studies at the University of Wuppertal. -relocated 1 -longdesc The package defines a biblatex citation style based on the -longdesc standard author-year style. The citations are optimised for -longdesc linguistic studies at the Institute of Linguistics at the -longdesc Bergische Universitat Wuppertal. -runfiles size=4 - RELOC/tex/latex/uni-wtal-lin/uni-wtal-lin.bbx - RELOC/tex/latex/uni-wtal-lin/uni-wtal-lin.cbx -docfiles size=30 - RELOC/doc/latex/uni-wtal-lin/CHANGES - RELOC/doc/latex/uni-wtal-lin/LIESMICH - RELOC/doc/latex/uni-wtal-lin/README - RELOC/doc/latex/uni-wtal-lin/uni-wtal-lin.bib - RELOC/doc/latex/uni-wtal-lin/uni-wtal-lin.pdf - RELOC/doc/latex/uni-wtal-lin/uni-wtal-lin.tex -catalogue-ctan /macros/latex/contrib/biblatex-contrib/uni-wtal-lin -catalogue-date 2013-08-10 17:37:59 +0200 +catalogue-topics font font-otf font-type1 font-sans + +name univie-ling +category Package +revision 49785 +shortdesc Papers, theses and research proposals in (Applied) Linguistics at Vienna University +relocated 1 +longdesc This bundle provides LaTeX2e classes suitable for student +longdesc papers, PhD research proposals (Exposes), and theses in +longdesc (Applied) Linguistics at the University of Vienna. The classes +longdesc implement some standards for these types of text, such as +longdesc suitable title pages. They are particularly suited for the +longdesc field of (Applied) Linguistics and pre-load some packages that +longdesc are considered useful in this context. The classes can also be +longdesc used for General and Historical Linguistics as well as for +longdesc other fields of study at Vienna University. In this case, +longdesc however, some settings may have to be adjusted. +containersize 131168 +containerchecksum 33cb5fbb0b8cf2a5a49bfab100c584155a965bd1304a8f16e78ea3c5e5007e43580f3839367cfed28e6f20e8e6f653e1fb9c7aa357e31e41e8f688d74a9f8800 +doccontainersize 2101932 +doccontainerchecksum 52889934cb166ecfc6d5dc4433a9e1c4df927007584b6513d5a254734fd9b82c77af4fa535ddad34494fb207a41167080828500cce02b34f2f88787b8ec783d5 +docfiles size=712 + RELOC/doc/latex/univie-ling/README details="Readme" + RELOC/doc/latex/univie-ling/templates/template-expose-deutsch.pdf + RELOC/doc/latex/univie-ling/templates/template-expose-deutsch.tex + RELOC/doc/latex/univie-ling/templates/template-expose-english.pdf + RELOC/doc/latex/univie-ling/templates/template-expose-english.tex + RELOC/doc/latex/univie-ling/templates/template-paper-deutsch.pdf + RELOC/doc/latex/univie-ling/templates/template-paper-deutsch.tex + RELOC/doc/latex/univie-ling/templates/template-paper-english.pdf + RELOC/doc/latex/univie-ling/templates/template-paper-english.tex + RELOC/doc/latex/univie-ling/templates/template-thesis-deutsch.pdf + RELOC/doc/latex/univie-ling/templates/template-thesis-deutsch.tex + RELOC/doc/latex/univie-ling/templates/template-thesis-deutsch.xmpdata + RELOC/doc/latex/univie-ling/templates/template-thesis-english.pdf + RELOC/doc/latex/univie-ling/templates/template-thesis-english.tex + RELOC/doc/latex/univie-ling/templates/template-thesis-english.xmpdata + RELOC/doc/latex/univie-ling/templates/template-wlg-article.pdf + RELOC/doc/latex/univie-ling/templates/template-wlg-article.tex + RELOC/doc/latex/univie-ling/univie-ling-expose.pdf details="Package documentation (expose class)" + RELOC/doc/latex/univie-ling/univie-ling-expose.tex + RELOC/doc/latex/univie-ling/univie-ling-paper.pdf details="Package documentation (paper class)" + RELOC/doc/latex/univie-ling/univie-ling-paper.tex + RELOC/doc/latex/univie-ling/univie-ling-thesis.pdf details="Package documentation (thesis class)" + RELOC/doc/latex/univie-ling/univie-ling-thesis.tex + RELOC/doc/latex/univie-ling/univie-ling-wlg.pdf details="Package documentation (Wiener Linguistische Gazette)" + RELOC/doc/latex/univie-ling/univie-ling-wlg.tex +runfiles size=61 + RELOC/tex/latex/univie-ling/univie-ling-expose.cls + RELOC/tex/latex/univie-ling/univie-ling-paper.cls + RELOC/tex/latex/univie-ling/univie-ling-thesis.cls + RELOC/tex/latex/univie-ling/univie-ling-wlg-logo.pdf + RELOC/tex/latex/univie-ling/univie-ling-wlg.cls + RELOC/tex/latex/univie-ling/univie-ling.bbx + RELOC/tex/latex/univie-ling/univie-ling.cbx + RELOC/tex/latex/univie-ling/univielogo-sw.pdf +catalogue-contact-bugs https://github.com/jspitz/univie-ling/issues +catalogue-contact-repository https://github.com/jspitz/univie-ling +catalogue-ctan /macros/latex/contrib/univie-ling +catalogue-date 2019-01-21 18:42:51 +0100 catalogue-license lppl1.3 -catalogue-version 0.2 +catalogue-topics linguistic class dissertation article-like misc-paper +catalogue-version 1.9 name unravel category Package -revision 31307 -shortdesc Watching TeX digest tokens. -relocated 1 -longdesc The package emulates large parts of TeX's behaviour when it -longdesc chews on tokens, expanding and performing typesetting commands. -longdesc Using unravel will let you go one step at a time through some -longdesc complicated LaTeX code that you are trying to debug. It -longdesc understands a whole breadth of TeX's features, from deeply -longdesc nested expansion to box assignments, to characters, and the -longdesc proper insertion of \everypar. The unravel package requires up- -longdesc to-date l3kernel and l3experimental bundles, as well as the new -longdesc package gtl. -runfiles size=48 - RELOC/tex/latex/unravel/unravel.sty -docfiles size=166 - RELOC/doc/latex/unravel/README - RELOC/doc/latex/unravel/unravel.pdf -srcfiles size=61 +revision 50557 +shortdesc Watching TeX digest tokens +relocated 1 +longdesc The aim of this LaTeX package is to help debug complicated +longdesc macros. This is done by letting the user step through the +longdesc execution of some TeX code, going through the details of nested +longdesc expansions, performing assignments, as well as some simple +longdesc typesetting commands. To use this package, one should normally +longdesc run TeX in a terminal. The unravel package requires up-to-date +longdesc versions of the l3kernel, l3packages and l3experimental +longdesc bundles. +containersize 27964 +containerchecksum 862cdfee766dcf3be322423c7f3388b5bac739879f0910d7a3a5118a7813b86dea9e5c866c3bc33648e376ff223be55c18fcf56247e3082c199b5bd589cff49f +doccontainersize 681344 +doccontainerchecksum 5da7cdfb916e986ad783e43c79a57713c2d713061866a19fd975c157d8cd328b80a5620fa583b7964dbe37b8ac74d9c0921c15cef57e76266f52c62412a8befb +docfiles size=170 + RELOC/doc/latex/unravel/README.md details="Readme" + RELOC/doc/latex/unravel/unravel.pdf details="Package documentation" +srccontainersize 50984 +srccontainerchecksum 0f9791862c2b1e8ae4c9d293bde5a48fbcb49e5634f75c9bdff4d3ebd51f9e7b8f820b9c5f860f16bd15a6de0b04e112d96fee75313fd3316aa19a01803456a3 +srcfiles size=76 RELOC/source/latex/unravel/unravel.dtx RELOC/source/latex/unravel/unravel.ins +runfiles size=57 + RELOC/tex/latex/unravel/unravel.sty +catalogue-contact-repository https://github.com/blefloch/latex-unravel catalogue-ctan /macros/latex/contrib/unravel -catalogue-date 2013-08-20 11:39:33 +0200 -catalogue-license lppl -catalogue-version 0.0a +catalogue-date 2019-03-23 10:21:18 +0100 +catalogue-license lppl1.3c +catalogue-topics macro-supp +catalogue-version 0.2g name unswcover category Package revision 29476 -shortdesc Typeset a dissertation cover page following UNSW guidelines. +shortdesc Typeset a dissertation cover page following UNSW guidelines relocated 1 longdesc The package an UNSW cover sheet following the 2011 GRS longdesc guidelines. It may also (optionally) provide other required longdesc sheets such as Originality, Copyright and Authenticity longdesc statements. -runfiles size=2 - RELOC/tex/latex/unswcover/unswcover.sty +containersize 2664 +containerchecksum e51938d3e31bb75abf7b8af27a7cfc47efde49b1e569c2d9b5d170bd4e7a29479571717d9932de22907e2f23093e977959112d4c1c42687fbaecddd6fe1b990f +doccontainersize 119528 +doccontainerchecksum ea443054c6c89bac4ead8218e12a4a8020fbcea1204eb12f237f0a58f4f303797b27bb45585b78167d0a43a6758d257da0b140deb563de7cdc9497b8df56f329 docfiles size=43 RELOC/doc/latex/unswcover/COPYING RELOC/doc/latex/unswcover/Makefile - RELOC/doc/latex/unswcover/README + RELOC/doc/latex/unswcover/README details="Readme" RELOC/doc/latex/unswcover/logo_unsw_short.pdf RELOC/doc/latex/unswcover/thesis.bib - RELOC/doc/latex/unswcover/thesis.pdf + RELOC/doc/latex/unswcover/thesis.pdf details="Example document" RELOC/doc/latex/unswcover/thesis.tex +runfiles size=2 + RELOC/tex/latex/unswcover/unswcover.sty +catalogue-contact-repository https://scm.narf.ssji.net/git/unswcover catalogue-ctan /macros/latex/contrib/unswcover -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 +catalogue-topics dissertation catalogue-version 1.0 name uothesis category Package revision 25355 -shortdesc Class for dissertations and theses at the University of Oregon. +shortdesc Class for dissertations and theses at the University of Oregon relocated 1 longdesc The class generates documents that are suitable for submission longdesc to the Graduate School and conform with the style requirements longdesc for dissertations and theses as laid out in the Fall 2010 UO longdesc graduate school student manual. -runfiles size=8 - RELOC/tex/latex/uothesis/uothesis.cls +containersize 8728 +containerchecksum 8549715b39426264ae94d5618f13837bf20e48a350cfccc5642ff5e246ad84e04050e2def0780e8f3da69647d86b6795a009215da1277f43ab9a8a3b5acb798a +doccontainersize 608984 +doccontainerchecksum 16af5c258ae738401885a1451675ace657e169deb37670336ab87ac39d30128c98bff91b5f9f6f2de9961d981b2719f94472692c5456913bada6e7ec6bbb60c6 docfiles size=154 - RELOC/doc/latex/uothesis/README + RELOC/doc/latex/uothesis/README details="Readme" RELOC/doc/latex/uothesis/README.txt RELOC/doc/latex/uothesis/acs-uothesis.bib RELOC/doc/latex/uothesis/uothesis.hd - RELOC/doc/latex/uothesis/uothesis.pdf + RELOC/doc/latex/uothesis/uothesis.pdf details="Package documentation" +srccontainersize 24256 +srccontainerchecksum 3b6a5f3ccc28877e4e48000ec88c480b70f5f454c481f970e6ba409fe71e19cee64293cdbc9fe46c8d0a498401fb2f46f2bd6c1662c3bf19a2c24e1c10c3895a srcfiles size=25 RELOC/source/latex/uothesis/uothesis.dtx RELOC/source/latex/uothesis/uothesis.ins +runfiles size=8 + RELOC/tex/latex/uothesis/uothesis.cls catalogue-ctan /macros/latex/contrib/uothesis -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics dissertation catalogue-version 2.5.6 -name uowthesistitlepage -category Package -revision 32626 -shortdesc Title page for dissertations at the University of Wollongong. -relocated 1 -longdesc The package redefines \maketitle to generate a title page for a -longdesc University of Wollongong thesis, in accordance with the UoW -longdesc branding guidelines. The package should be used with the book -longdesc class to typeset a thesis. The package also defines a -longdesc \declaration command that typesets the declaration that this -longdesc thesis is your own work, etc., which is required in the front -longdesc of each PhD Thesis. -runfiles size=4 - RELOC/tex/latex/uowthesistitlepage/uowthesistitlepage.sty -docfiles size=352 - RELOC/doc/latex/uowthesistitlepage/README - RELOC/doc/latex/uowthesistitlepage/uowthesistitlepage_doc.pdf - RELOC/doc/latex/uowthesistitlepage/uowthesistitlepage_doc.tex -catalogue-ctan /macros/latex/contrib/uowthesistitlepage -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 2.0 - name uowthesis category Package revision 19700 -shortdesc Document class for dissertations at the University of Wollongong. +shortdesc Document class for dissertations at the University of Wollongong relocated 1 longdesc A document class for higher degree research theses in longdesc compliance with the specifications of University of Wollongong longdesc (UoW) theses in the "Guidelines for Preparation and Submission longdesc of Higher Degree Research Theses" (March 2006), by the Research longdesc Student Centre, Research & Innovation Division, UoW. +containersize 44552 +containerchecksum 060684c777f377fcc98b371123cfcd9717a113deb0f7fbd99cdf6cec65e66b77fc44d50a3475c8b1e8071eec80c2e6b1c20437a4432d6d5fba208fe3f06fe127 +doccontainersize 93176 +doccontainerchecksum 00386265fd93cc89146fba04eff87b55fc250e3429ca5d769f006ee1e8c581fdd96702830a90ca4eeedd35e0d90305b5ce19dea6f16ef5600479d1fc1ab2e35b +docfiles size=32 + RELOC/doc/latex/uowthesis/README details="Readme" + RELOC/doc/latex/uowthesis/myThesisBib.bib + RELOC/doc/latex/uowthesis/mythesis.pdf details="Demonstration document" + RELOC/doc/latex/uowthesis/mythesis.tex runfiles size=865 RELOC/tex/latex/uowthesis/UoWlogo.eps RELOC/tex/latex/uowthesis/UoWlogo.png RELOC/tex/latex/uowthesis/UoWthesis.cls -docfiles size=32 - RELOC/doc/latex/uowthesis/README - RELOC/doc/latex/uowthesis/myThesisBib.bib - RELOC/doc/latex/uowthesis/mythesis.pdf - RELOC/doc/latex/uowthesis/mythesis.tex catalogue-ctan /macros/latex/contrib/uowthesis -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics dissertation catalogue-version 1.0a +name uowthesistitlepage +category Package +revision 45022 +shortdesc Title page for dissertations at the University of Wollongong +relocated 1 +longdesc The package redefines \maketitle to generate a title page for a +longdesc University of Wollongong thesis, in accordance with the UoW +longdesc branding guidelines. The package should be used with the book +longdesc class to typeset a thesis. The package also defines a +longdesc \declaration command that typesets the declaration that this +longdesc thesis is your own work, etc., which is required in the front +longdesc of each PhD Thesis. +containersize 5080 +containerchecksum 28f5d3f8bba3c0f3ee1cd7ada8bfdeb815ec607565e7385fe8483d66aef9b9e3c39cbb9796f84c58e8a6b4772989c2aed3c5407d64aa740eed2cedfd26d60e8a +doccontainersize 903456 +doccontainerchecksum beda6c309230f20abe8ec32e41258a42806534bb181e4cd070c7c9362a677280a0133b4ce83fc7475aa785a778480134125a162ae7d96d791eeaa1a9af621dd2 +docfiles size=556 + RELOC/doc/latex/uowthesistitlepage/README.md details="Readme" + RELOC/doc/latex/uowthesistitlepage/uowthesistitlepage_doc.pdf details="Package documentation" + RELOC/doc/latex/uowthesistitlepage/uowthesistitlepage_doc.tex +runfiles size=5 + RELOC/tex/latex/uowthesistitlepage/uowthesistitlepage.sty +catalogue-also uowthesis +catalogue-ctan /macros/latex/contrib/uowthesistitlepage +catalogue-date 2017-08-11 08:56:36 +0200 +catalogue-license lppl1.3ccc-by-sa-4 +catalogue-topics dissertation +catalogue-version 3.0.1 + name upca category Package revision 22511 -shortdesc Print UPC-A barcodes. +shortdesc Print UPC-A barcodes relocated 1 longdesc The package defines a single macro \upca, to print UPC-A longdesc barcodes. -runfiles size=2 - RELOC/tex/generic/upca/upca.tex +containersize 1840 +containerchecksum 3423a3a7d42273bfb28642d250d5000fd55d5cfe2dfb5ba0c2f875ced6c6df344866a5512a624dedb12d6bb9357f02a831297f4aba463dbd5e69e5e8dd9941dd +doccontainersize 812 +doccontainerchecksum f19dd751bffb9ee92ee80f74f692ac410781e87817ee841c01f37bac87fc770b9fc97d488ffbe97490206899653d329034d82cf649de0ee52cfa4643f956d7de docfiles size=2 - RELOC/doc/generic/upca/README + RELOC/doc/generic/upca/README details="Readme" RELOC/doc/generic/upca/test-upca.tex +runfiles size=2 + RELOC/tex/generic/upca/upca.tex catalogue-ctan /macros/generic/upca -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics barcode + +name updmap-map +category Package +revision 51133 +shortdesc auto-generated font map files +relocated 1 +longdesc These map files are regenerated every time a new font is added. +longdesc There is no need to rebuild formats or update binaries because +longdesc of such updates, hence this separate package. +containersize 215932 +containerchecksum 9c492f767f0cefef6e2f8d6273ce90a5a23f96ac01839c1d8d837fda2ffa77237a9a423c32770eccc89f79c73250c17b85f48a240d2eb4710e43fe73fb00aaf6 +runfiles size=5615 + RELOC/fonts/map/dvipdfmx/updmap/kanjix.map + RELOC/fonts/map/dvips/updmap/builtin35.map + RELOC/fonts/map/dvips/updmap/download35.map + RELOC/fonts/map/dvips/updmap/ps2pk.map + RELOC/fonts/map/dvips/updmap/psfonts.map + RELOC/fonts/map/dvips/updmap/psfonts_pk.map + RELOC/fonts/map/dvips/updmap/psfonts_t1.map + RELOC/fonts/map/pdftex/updmap/pdftex.map + RELOC/fonts/map/pdftex/updmap/pdftex_dl14.map + RELOC/fonts/map/pdftex/updmap/pdftex_ndl14.map + +name uplatex +category Package +revision 51191 +shortdesc pLaTeX2e and miscellaneous macros for upTeX +longdesc The bundle provides pLaTeX2e macros for upTeX by Takuji Tanaka. +longdesc This is a community edition syncing with platex. The bundle +longdesc depends on platex. +depend uptex +depend babel +depend cm +depend hyphen-base +depend latex +depend latex-fonts +depend uptex-fonts +depend platex +depend uplatex.ARCH +execute AddFormat name=uplatex engine=euptex options="*uplatex.ini" patterns=language.dat fmttriggers=babel,cm,hyphen-base,latex,latex-fonts,uptex-fonts,platex +containersize 14868 +containerchecksum a1af3cea8ac76f1341763e9c5f32df55e7d543d4c5bbc7a82b4b06136c1f4adec58b89eaac0f292bb258b277951733729a8e56ca2b51f8713c44d29d47836212 +doccontainersize 884672 +doccontainerchecksum 50219b6fff4bb8d3b7fce501bdfae9a5035f2f027687d81643e1ffd2933cecc3c9ec65196bf3400f259a39edc72de6d4f0367e4c6178101e3d1e75e699f97343 +docfiles size=228 + texmf-dist/doc/man/man1/uplatex.1 + texmf-dist/doc/man/man1/uplatex.man1.pdf + texmf-dist/doc/uplatex/base/LICENSE + texmf-dist/doc/uplatex/base/README.md details="Readme" + texmf-dist/doc/uplatex/base/README_uplatex.txt + texmf-dist/doc/uplatex/base/uplatex-en.pdf details="Package documentation" + texmf-dist/doc/uplatex/base/uplatex.pdf details="Package documentation" language="ja" + texmf-dist/doc/uplatex/base/upldoc.pdf +srccontainersize 50448 +srccontainerchecksum 5a1ac1a7a64e8821d63eb5bfe1fb5663e66fbb2d198bede8e134fdc4501eeefa67e4d6e6aad68d0eb59e3d3831c82d4ea3cb1f6b41122f175da5516b4d6c1a12 +srcfiles size=70 + texmf-dist/source/uplatex/base/Makefile + texmf-dist/source/uplatex/base/ujclasses.dtx + texmf-dist/source/uplatex/base/ukinsoku.dtx + texmf-dist/source/uplatex/base/uplatex.dtx + texmf-dist/source/uplatex/base/uplcls.ins + texmf-dist/source/uplatex/base/upldocs.ins + texmf-dist/source/uplatex/base/uplfmt.ins + texmf-dist/source/uplatex/base/uplfonts.dtx + texmf-dist/source/uplatex/base/uplvers.dtx +runfiles size=94 + texmf-dist/tex/uplatex/base/jt2gt.fd + texmf-dist/tex/uplatex/base/jt2mc.fd + texmf-dist/tex/uplatex/base/jy2gt.fd + texmf-dist/tex/uplatex/base/jy2mc.fd + texmf-dist/tex/uplatex/base/ujarticle.cls + texmf-dist/tex/uplatex/base/ujbk10.clo + texmf-dist/tex/uplatex/base/ujbk11.clo + texmf-dist/tex/uplatex/base/ujbk12.clo + texmf-dist/tex/uplatex/base/ujbook.cls + texmf-dist/tex/uplatex/base/ujreport.cls + texmf-dist/tex/uplatex/base/ujsize10.clo + texmf-dist/tex/uplatex/base/ujsize11.clo + texmf-dist/tex/uplatex/base/ujsize12.clo + texmf-dist/tex/uplatex/base/ukinsoku.tex + texmf-dist/tex/uplatex/base/uplatex.ltx + texmf-dist/tex/uplatex/base/uplcore.ltx + texmf-dist/tex/uplatex/base/upldefs.ltx + texmf-dist/tex/uplatex/base/uptrace.sty + texmf-dist/tex/uplatex/base/utarticle.cls + texmf-dist/tex/uplatex/base/utbk10.clo + texmf-dist/tex/uplatex/base/utbk11.clo + texmf-dist/tex/uplatex/base/utbk12.clo + texmf-dist/tex/uplatex/base/utbook.cls + texmf-dist/tex/uplatex/base/utreport.cls + texmf-dist/tex/uplatex/base/utsize10.clo + texmf-dist/tex/uplatex/base/utsize11.clo + texmf-dist/tex/uplatex/base/utsize12.clo + texmf-dist/tex/uplatex/config/uplatex.ini +catalogue-contact-repository https://github.com/texjporg/uplatex +catalogue-ctan /language/japanese/uplatex +catalogue-date 2019-05-22 18:04:53 +0200 +catalogue-license bsd3 +catalogue-topics format class japanese + +name uplatex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of uplatex +containersize 320 +containerchecksum 9a553fb8ddffafe26d403efcaa0bb943e4fec375aa93e584635a4527d49fce48743b29c67610eddc051ce07fe5762d2ce67870b48c9f1fdfa4c2106fe02bf6b8 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/uplatex + +name uplatex.amd64-freebsd +category Package +revision 26326 +shortdesc amd64-freebsd files of uplatex +containersize 324 +containerchecksum 222637066684e0b725102b544c400b04f544d5d213df06b5696d95278e10fc7f5be8e908446f57483751aac554dfe179dedcaff17c281f00b3fcb0935b41c72e +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/uplatex + +name uplatex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of uplatex +containersize 320 +containerchecksum 0ddf330c8e35055d6fc37a01c8aff2c63c3965b4be2398eb4ab9dd6bf9ab29ba77b610fa7182db6eed39bce19f9bd4fc0185cea98dd34558bdd8554a2e471593 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/uplatex + +name uplatex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of uplatex +containersize 324 +containerchecksum c78a3023aeca9c4f2a8837eeb8bce55e44652f90d8194c7fcf88d853e7dfcd05bf43e55b790f7c64f6a775831fd78e5f9167e39e9c65ab69a73c8571aa039464 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/uplatex + +name uplatex.i386-cygwin +category Package +revision 26326 +shortdesc i386-cygwin files of uplatex +containersize 324 +containerchecksum 6d808cc219fc61ec2e614c1bc2eff2cd7249ef3550d74b99271f754b37b01439c7409189256c60e5f015d416354a34c6f391a1f6bb24478c2113d503a979d160 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/uplatex + +name uplatex.i386-freebsd +category Package +revision 26326 +shortdesc i386-freebsd files of uplatex +containersize 324 +containerchecksum b251067c3b2fcbd3e15082eb5d742e0bfada7fc46ef255d9979e349592323e72ab0c4d62daa8c3be34abc76afa337c9927e0ae23440ce935cc69561cb6d53916 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/uplatex + +name uplatex.i386-linux +category Package +revision 26326 +shortdesc i386-linux files of uplatex +containersize 320 +containerchecksum e34549bda8f7fb9f1fa0cca433ea7fdddf3e6d6a089efcf1c0823932129995df81370cb07e45a0dca0a4ba1542808d88f46e7c1f019f231edb63ccd8590a933f +binfiles arch=i386-linux size=1 + bin/i386-linux/uplatex + +name uplatex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of uplatex +containersize 324 +containerchecksum 0078611ae29d0fe21f971ddb3db9d0b6c15a06714ede6412be3be708c5d26f916f7c9459863f0376d677dc59ff98ac28e11d8aef4c694991094a3635613cb3ac +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/uplatex + +name uplatex.i386-solaris +category Package +revision 26676 +shortdesc i386-solaris files of uplatex +containersize 324 +containerchecksum 6e4dfa4a83833c9aaa2287e2b8ca64212cf6e547ff9cb7e83a2cf73455c3c40473fa1afd39f3e48bc413ec61be169a2c2832d0ce57ae0ed84c775ec0e3f7aa4e +binfiles arch=i386-solaris size=1 + bin/i386-solaris/uplatex + +name uplatex.win32 +category Package +revision 36810 +shortdesc win32 files of uplatex +containersize 872 +containerchecksum e660c699c869e06d9cee0592a4f4c63a05b006c5d5db6551c5566372c349ed3d3916d403d74ab88a34d74db570a82772f1d8d58d975f87ed3e92fc4b1f3c34d2 +binfiles arch=win32 size=1 + bin/win32/uplatex.exe + +name uplatex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of uplatex +containersize 328 +containerchecksum a45156db06233ef47a0b0f01567ce3974b2fa63f23921227637d67f2267429840e5f96cee20da0f643fa1971d12ca3a1ee0651e28bc9e2b60f2390d44f021150 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/uplatex + +name uplatex.x86_64-darwin +category Package +revision 26341 +shortdesc x86_64-darwin files of uplatex +containersize 324 +containerchecksum 985b91a412acfe0ffb0cbfc11e9b9d56e24dbb8506b73f936aadef824540a6eae62f99f236a5b2c3bea9305d78d9ae0c7b4aba471884f959621c8c32ca3e2d4b +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/uplatex + +name uplatex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of uplatex +containersize 332 +containerchecksum 95bdacac7dcbcb647c43ce0152cfc43880bbe6ea99307103370d1e69282c0ff06570a3faf9f7bab0980c4bae1078dc546d19f9413daee1d9a94107f9c28bef55 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/uplatex + +name uplatex.x86_64-linux +category Package +revision 26326 +shortdesc x86_64-linux files of uplatex +containersize 320 +containerchecksum a8816e979bec26f408e73f298ce7ea48d79f35d128732a672d4c77fd1bbe7475ec3728de991b7b22d1853d90040c1930ec7330d88d90a9b1ead6eb9bd5dee24f +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/uplatex + +name uplatex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of uplatex +containersize 324 +containerchecksum 1566bed52718acb0b0472b97606e672c5a6fe2b4c7b83d4b26e41796c22fb3a91543e1ce7b6ed0a0fe0792d8fed8f7c39aa95e0ca5c145f3562f90766b5787be +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/uplatex + +name uplatex.x86_64-solaris +category Package +revision 26676 +shortdesc x86_64-solaris files of uplatex +containersize 324 +containerchecksum 2e834f1f59aef3e2d811d16b062234bae0df3441c3c7bd92a13f00d6f509695a9f2cb0a66f67af708587fde756ff2321dd4412f6c8de7adb50cb99f164a7a8a6 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/uplatex name upmethodology category Package -revision 38094 +revision 46037 shortdesc Writing specifications such as for UP-based methodologies relocated 1 longdesc The bundle allows the user to create Unified Process @@ -172870,47 +292849,96 @@ longdesc methodology (UP or RUP) based documents. The style provides longdesc document versioning, document history, document authors, longdesc document validators, specification description, task longdesc management, and several helping macros. -runfiles size=47 - RELOC/bibtex/bst/upmethodology/upmplainnat.bst - RELOC/tex/latex/upmethodology/UPMVERSION.def - RELOC/tex/latex/upmethodology/upmethodology-backpage.sty - RELOC/tex/latex/upmethodology/upmethodology-code.sty - RELOC/tex/latex/upmethodology/upmethodology-document.cls - RELOC/tex/latex/upmethodology/upmethodology-document.sty - RELOC/tex/latex/upmethodology/upmethodology-extension.sty - RELOC/tex/latex/upmethodology/upmethodology-fmt.sty - RELOC/tex/latex/upmethodology/upmethodology-frontpage.sty - RELOC/tex/latex/upmethodology/upmethodology-p-common.sty - RELOC/tex/latex/upmethodology/upmethodology-spec.sty - RELOC/tex/latex/upmethodology/upmethodology-task.sty - RELOC/tex/latex/upmethodology/upmethodology-version.sty +containersize 28372 +containerchecksum dff2da078ce7e5f3883a12f0f76cd63e8877eb6002e131d7267660235661fa745ca66a3a4a83d91040ed68da24136ac9474f533183e37a59070e3a052187c883 +doccontainersize 527240 +doccontainerchecksum 015889cbbf68a985064250ff46ee392a54a92b7869684bde901369199f1274f105131d69bbb8100198f2c586fb2c38d26e0219f0f69aa701eb0a7ea7563c5982 docfiles size=183 RELOC/doc/latex/upmethodology/AUTHORS + RELOC/doc/latex/upmethodology/CONTRIBUTING.textile RELOC/doc/latex/upmethodology/COPYING RELOC/doc/latex/upmethodology/Changelog - RELOC/doc/latex/upmethodology/README + RELOC/doc/latex/upmethodology/README details="Readme" RELOC/doc/latex/upmethodology/README.textile RELOC/doc/latex/upmethodology/VERSION RELOC/doc/latex/upmethodology/arakhne_org_logo.jpg - RELOC/doc/latex/upmethodology/caution.png RELOC/doc/latex/upmethodology/figure_and_tex.pdf RELOC/doc/latex/upmethodology/figure_and_tex.pdftex_t RELOC/doc/latex/upmethodology/frontclassic.jpg RELOC/doc/latex/upmethodology/frontmodern.jpg RELOC/doc/latex/upmethodology/illustration.jpg - RELOC/doc/latex/upmethodology/info.png - RELOC/doc/latex/upmethodology/question.png - RELOC/doc/latex/upmethodology/upmethodology-doc.pdf + RELOC/doc/latex/upmethodology/upm_caution.png + RELOC/doc/latex/upmethodology/upm_info.png + RELOC/doc/latex/upmethodology/upm_question.png + RELOC/doc/latex/upmethodology/upmethodology-doc.pdf details="Package documentation" RELOC/doc/latex/upmethodology/upmethodology-doc.tex +runfiles size=46 + RELOC/bibtex/bst/upmethodology/upmplainnat.bst + RELOC/tex/latex/upmethodology/UPMVERSION.def + RELOC/tex/latex/upmethodology/upmethodology-backpage.sty + RELOC/tex/latex/upmethodology/upmethodology-code.sty + RELOC/tex/latex/upmethodology/upmethodology-document.cls + RELOC/tex/latex/upmethodology/upmethodology-document.sty + RELOC/tex/latex/upmethodology/upmethodology-extension.sty + RELOC/tex/latex/upmethodology/upmethodology-fmt.sty + RELOC/tex/latex/upmethodology/upmethodology-frontpage.sty + RELOC/tex/latex/upmethodology/upmethodology-p-common.sty + RELOC/tex/latex/upmethodology/upmethodology-spec.sty + RELOC/tex/latex/upmethodology/upmethodology-task.sty + RELOC/tex/latex/upmethodology/upmethodology-version.sty +catalogue-contact-bugs https://github.com/gallandarakhneorg/tex-upmethodology/issues +catalogue-contact-development https://github.com/gallandarakhneorg/tex-upmethodology +catalogue-contact-home http://www.arakhne.org/tex-upmethodology +catalogue-contact-repository https://github.com/gallandarakhneorg/tex-upmethodology +catalogue-contact-support https://github.com/gallandarakhneorg/tex-upmethodology catalogue-ctan /macros/latex/contrib/upmethodology -catalogue-date 2015-08-10 18:57:07 +0200 -catalogue-license lgpl +catalogue-date 2018-10-09 09:45:09 +0200 +catalogue-license lgpl3 catalogue-topics doc-mgmt +catalogue-version 20171210 + +name uppunctlm +category Package +revision 42334 +shortdesc Always keep upright shape for some punctuation marks and Arabic numerals +relocated 1 +longdesc The package provides a mechanism to keep punctuation always in +longdesc upright shape even if italic was specified. It is directed to +longdesc Latin Modern fonts, and provides .tfm, .vf, .fd, and .sty +longdesc files. Here a list of punctuation characters always presented +longdesc in upright shapes: comma, period, semicolon, colon, +longdesc parentheses, square brackets, and Arabic numerals. +containersize 13992 +containerchecksum 522b68bd32887ba14ecd927c49c5fd57a84a1c0f9b8a0bfad65a4d377b68a7bd449754dd411a72fd83e5736e32e2c47cb1f54155f72395c465e4e09ad1d09dea +doccontainersize 156432 +doccontainerchecksum d0f67dba683a40a6392121cd53b58df6d7ec6ffd8bf52df60f53537fc1b389de178dfceb1e772dfc9e292cc543448dac3a85cc6b712283b384ccfec4655c988e +docfiles size=40 + RELOC/doc/fonts/uppunctlm/README.md details="Readme" + RELOC/doc/fonts/uppunctlm/always_upright_punctuation_marks.pdf details="Package documentation" + RELOC/doc/fonts/uppunctlm/always_upright_punctuation_marks.tex +runfiles size=32 + RELOC/fonts/tfm/public/uppunctlm/ec-uplmri10.tfm + RELOC/fonts/tfm/public/uppunctlm/ec-uplmri12.tfm + RELOC/fonts/tfm/public/uppunctlm/ec-uplmri7.tfm + RELOC/fonts/tfm/public/uppunctlm/ec-uplmri8.tfm + RELOC/fonts/tfm/public/uppunctlm/ec-uplmri9.tfm + RELOC/fonts/vf/public/uppunctlm/ec-uplmri10.vf + RELOC/fonts/vf/public/uppunctlm/ec-uplmri12.vf + RELOC/fonts/vf/public/uppunctlm/ec-uplmri7.vf + RELOC/fonts/vf/public/uppunctlm/ec-uplmri8.vf + RELOC/fonts/vf/public/uppunctlm/ec-uplmri9.vf + RELOC/tex/latex/uppunctlm/t1uplmr.fd + RELOC/tex/latex/uppunctlm/uppunctlm.sty +catalogue-ctan /fonts/uppunctlm +catalogue-date 2017-04-03 17:41:54 +0200 +catalogue-license gfsl +catalogue-topics font font-virtual +catalogue-version 0.1 name upquote category Package revision 26059 -shortdesc Show "realistic" quotes in verbatim. +shortdesc Show "realistic" quotes in verbatim relocated 1 longdesc Typewriter-style fonts are best for program listings, but longdesc Computer Modern Typewriter prints ` and ' as bent opening and @@ -172923,23 +292951,30 @@ longdesc \verb, and \verb* to print in the "` and ' way". It does longdesc thisregardless of other fonts or encodings in use, so long as longdesc the package is loaded after the other fonts were. The package longdesc does not affect \tt, \texttt, etc. -runfiles size=1 - RELOC/tex/latex/upquote/upquote.sty +containersize 1272 +containerchecksum 06360c313124487f291a8daf7399a3139cec8c0a05be12724cedb3d60393ecb07aa31e34f9b74a83048f5752a8d826505f91f2c85d34348264975b48a1813fab +doccontainersize 163312 +doccontainerchecksum 4b92923e8af2dcd65e82269994c766b88c6f78f6e7b8d10b9f44889832150711acb0cbaf467d595d6745863f385569f7eeccb4ce69df8361e56910969532e314 docfiles size=44 - RELOC/doc/latex/upquote/README - RELOC/doc/latex/upquote/upquote.pdf + RELOC/doc/latex/upquote/README details="Readme" + RELOC/doc/latex/upquote/upquote.pdf details="Package documentation" +srccontainersize 2688 +srccontainerchecksum dcb227a6ebb481e9c4abb9f9ddacafda03ae4a445768a3a242c6dc3bc79f83e9e5f185db4d353916b4d50f5aefa9884bc52fbced79894e1c00cd7f40f0940884 srcfiles size=3 RELOC/source/latex/upquote/upquote.dtx RELOC/source/latex/upquote/upquote.ins +runfiles size=1 + RELOC/tex/latex/upquote/upquote.sty catalogue-ctan /macros/latex/contrib/upquote -catalogue-date 2012-04-19 20:55:14 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 -catalogue-version v1.3 +catalogue-topics verbatim +catalogue-version 1.3 name uptex category Package -revision 36796 -shortdesc Unicode version of pTeX. +revision 50664 +shortdesc Unicode version of pTeX longdesc upTeX is an extension of pTeX, using UTF-8 input and producing longdesc UTF-8 output. It was originally designed to improve support for longdesc Japanese, but is also useful for documents in Chinese and @@ -172947,248 +292982,654 @@ longdesc Korean. It can process Chinese simplified, Chinese traditional, longdesc Japanese, and Korean simultaneously, and can also process longdesc original LaTeX with \inputenc{utf8} and Babel longdesc (Latin/Cyrillic/Greek etc.) by switching its \kcatcode tables. -depend ptex -depend hyph-utf8 -depend adobemapping -depend convbkmk -depend ipaex -depend japanese -depend japanese-otf +depend uptex-base +depend uptex-fonts +depend cm +depend hyphen-base +depend knuth-lib +depend plain +depend etex +depend ptex-base depend uptex.ARCH -execute AddFormat name=uptex engine=uptex options="uptex.ini" -execute AddFormat name=euptex engine=euptex options="*euptex.ini" patterns=language.def -execute AddFormat name=uplatex engine=euptex options="*uplatex.ini" patterns=language.dat -execute addKanjiMap uptex-@kanjiEmbed@@kanjiVariant@.map -runfiles size=6295 - texmf-dist/fonts/cmap/uptex/UTF8-UTF16 - texmf-dist/fonts/tfm/uptex/jis/upgbm-h.tfm - texmf-dist/fonts/tfm/uptex/jis/upgbm-hq.tfm - texmf-dist/fonts/tfm/uptex/jis/upgbm-v.tfm - texmf-dist/fonts/tfm/uptex/jis/uphygt-h.tfm - texmf-dist/fonts/tfm/uptex/jis/uphygt-v.tfm - texmf-dist/fonts/tfm/uptex/jis/uphysmjm-h.tfm - texmf-dist/fonts/tfm/uptex/jis/uphysmjm-v.tfm - texmf-dist/fonts/tfm/uptex/jis/upjisg-h.tfm - texmf-dist/fonts/tfm/uptex/jis/upjisg-hq.tfm - texmf-dist/fonts/tfm/uptex/jis/upjisg-v.tfm - texmf-dist/fonts/tfm/uptex/jis/upjisr-h.tfm - texmf-dist/fonts/tfm/uptex/jis/upjisr-hq.tfm - texmf-dist/fonts/tfm/uptex/jis/upjisr-v.tfm - texmf-dist/fonts/tfm/uptex/jis/upjpngt-h.tfm - texmf-dist/fonts/tfm/uptex/jis/upjpngt-v.tfm - texmf-dist/fonts/tfm/uptex/jis/upjpnrm-h.tfm - texmf-dist/fonts/tfm/uptex/jis/upjpnrm-v.tfm - texmf-dist/fonts/tfm/uptex/jis/upkorgt-h.tfm - texmf-dist/fonts/tfm/uptex/jis/upkorgt-v.tfm - texmf-dist/fonts/tfm/uptex/jis/upkorrm-h.tfm - texmf-dist/fonts/tfm/uptex/jis/upkorrm-v.tfm - texmf-dist/fonts/tfm/uptex/jis/upmhm-h.tfm - texmf-dist/fonts/tfm/uptex/jis/upmhm-v.tfm - texmf-dist/fonts/tfm/uptex/jis/upmsl-h.tfm - texmf-dist/fonts/tfm/uptex/jis/upmsl-v.tfm - texmf-dist/fonts/tfm/uptex/jis/uprml-h.tfm - texmf-dist/fonts/tfm/uptex/jis/uprml-hq.tfm - texmf-dist/fonts/tfm/uptex/jis/uprml-v.tfm - texmf-dist/fonts/tfm/uptex/jis/upschgt-h.tfm - texmf-dist/fonts/tfm/uptex/jis/upschgt-v.tfm - texmf-dist/fonts/tfm/uptex/jis/upschrm-h.tfm - texmf-dist/fonts/tfm/uptex/jis/upschrm-v.tfm - texmf-dist/fonts/tfm/uptex/jis/upstht-h.tfm - texmf-dist/fonts/tfm/uptex/jis/upstht-v.tfm - texmf-dist/fonts/tfm/uptex/jis/upstsl-h.tfm - texmf-dist/fonts/tfm/uptex/jis/upstsl-v.tfm - texmf-dist/fonts/tfm/uptex/jis/uptchgt-h.tfm - texmf-dist/fonts/tfm/uptex/jis/uptchgt-v.tfm - texmf-dist/fonts/tfm/uptex/jis/uptchrm-h.tfm - texmf-dist/fonts/tfm/uptex/jis/uptchrm-v.tfm - texmf-dist/fonts/tfm/uptex/min/ugbm.tfm - texmf-dist/fonts/tfm/uptex/min/ugbmv.tfm - texmf-dist/fonts/tfm/uptex/min/ugoth10.tfm - texmf-dist/fonts/tfm/uptex/min/umin10.tfm - texmf-dist/fonts/tfm/uptex/min/urml.tfm - texmf-dist/fonts/tfm/uptex/min/urmlv.tfm - texmf-dist/fonts/tfm/uptex/min/utgoth10.tfm - texmf-dist/fonts/tfm/uptex/min/utmin10.tfm - texmf-dist/fonts/vf/uptex/jis/upjisg-h.vf - texmf-dist/fonts/vf/uptex/jis/upjisg-hq.vf - texmf-dist/fonts/vf/uptex/jis/upjisg-v.vf - texmf-dist/fonts/vf/uptex/jis/upjisr-h.vf - texmf-dist/fonts/vf/uptex/jis/upjisr-hq.vf - texmf-dist/fonts/vf/uptex/jis/upjisr-v.vf - texmf-dist/fonts/vf/uptex/jis/upjpngt-h.vf - texmf-dist/fonts/vf/uptex/jis/upjpngt-v.vf - texmf-dist/fonts/vf/uptex/jis/upjpnrm-h.vf - texmf-dist/fonts/vf/uptex/jis/upjpnrm-v.vf - texmf-dist/fonts/vf/uptex/jis/upkorgt-h.vf - texmf-dist/fonts/vf/uptex/jis/upkorgt-v.vf - texmf-dist/fonts/vf/uptex/jis/upkorrm-h.vf - texmf-dist/fonts/vf/uptex/jis/upkorrm-v.vf - texmf-dist/fonts/vf/uptex/jis/upschgt-h.vf - texmf-dist/fonts/vf/uptex/jis/upschgt-v.vf - texmf-dist/fonts/vf/uptex/jis/upschrm-h.vf - texmf-dist/fonts/vf/uptex/jis/upschrm-v.vf - texmf-dist/fonts/vf/uptex/jis/uptchgt-h.vf - texmf-dist/fonts/vf/uptex/jis/uptchgt-v.vf - texmf-dist/fonts/vf/uptex/jis/uptchrm-h.vf - texmf-dist/fonts/vf/uptex/jis/uptchrm-v.vf - texmf-dist/fonts/vf/uptex/min/ugoth10.vf - texmf-dist/fonts/vf/uptex/min/umin10.vf - texmf-dist/fonts/vf/uptex/min/utgoth10.vf - texmf-dist/fonts/vf/uptex/min/utmin10.vf - texmf-dist/tex/uplatex/base/jt2gt.fd - texmf-dist/tex/uplatex/base/jt2mc.fd - texmf-dist/tex/uplatex/base/jy2gt.fd - texmf-dist/tex/uplatex/base/jy2mc.fd - texmf-dist/tex/uplatex/base/ujarticle.cls - texmf-dist/tex/uplatex/base/ujbk10.clo - texmf-dist/tex/uplatex/base/ujbk11.clo - texmf-dist/tex/uplatex/base/ujbk12.clo - texmf-dist/tex/uplatex/base/ujbook.cls - texmf-dist/tex/uplatex/base/ujreport.cls - texmf-dist/tex/uplatex/base/ujsize10.clo - texmf-dist/tex/uplatex/base/ujsize11.clo - texmf-dist/tex/uplatex/base/ujsize12.clo - texmf-dist/tex/uplatex/base/uplatex.ltx - texmf-dist/tex/uplatex/base/uplcore.ltx - texmf-dist/tex/uplatex/base/upldefs.ltx - texmf-dist/tex/uplatex/base/uplpatch.ltx - texmf-dist/tex/uplatex/base/uptrace.sty - texmf-dist/tex/uplatex/base/utarticle.cls - texmf-dist/tex/uplatex/base/utbk10.clo - texmf-dist/tex/uplatex/base/utbk11.clo - texmf-dist/tex/uplatex/base/utbk12.clo - texmf-dist/tex/uplatex/base/utbook.cls - texmf-dist/tex/uplatex/base/utreport.cls - texmf-dist/tex/uplatex/base/utsize10.clo - texmf-dist/tex/uplatex/base/utsize11.clo - texmf-dist/tex/uplatex/base/utsize12.clo - texmf-dist/tex/uplatex/config/uplatex.ini - texmf-dist/tex/uptex/base/euptex.src - texmf-dist/tex/uptex/base/ukinsoku.tex - texmf-dist/tex/uptex/base/uptex.tex - texmf-dist/tex/uptex/config/euptex.ini - texmf-dist/tex/uptex/config/uptex.ini -docfiles size=182 - texmf-dist/doc/uplatex/base/README_uplatex.txt - texmf-dist/doc/uptex/base/00readme_uptex.txt - texmf-dist/doc/uptex/base/01uptex_doc_utf8.txt - texmf-dist/doc/uptex/base/02uptex_changelog_utf8.txt - texmf-dist/doc/uptex/base/README_uptex.txt - texmf-dist/doc/uptex/base/samples/00readme_uptex_samples.txt - texmf-dist/doc/uptex/base/samples/Makefile - texmf-dist/doc/uptex/base/samples/adobe-cid.tex - texmf-dist/doc/uptex/base/samples/adobe-cns-utf8.tex - texmf-dist/doc/uptex/base/samples/adobe-gb-utf8.tex - texmf-dist/doc/uptex/base/samples/adobe-jp-utf8.tex - texmf-dist/doc/uptex/base/samples/adobe-kr-utf8.tex - texmf-dist/doc/uptex/base/samples/aozora-ujarticle-utf8.tex - texmf-dist/doc/uptex/base/samples/aozora-ujbook-utf8.tex - texmf-dist/doc/uptex/base/samples/aozora-ujreport-utf8.tex - texmf-dist/doc/uptex/base/samples/aozora-utarticle-utf8.tex - texmf-dist/doc/uptex/base/samples/aozora-utbook-utf8.tex - texmf-dist/doc/uptex/base/samples/aozora-utf8.tex - texmf-dist/doc/uptex/base/samples/aozora-utreport-utf8.tex - texmf-dist/doc/uptex/base/samples/area-euc-incl.tex - texmf-dist/doc/uptex/base/samples/area-euc.mp - texmf-dist/doc/uptex/base/samples/area-jis-incl.tex - texmf-dist/doc/uptex/base/samples/area-jis.mp - texmf-dist/doc/uptex/base/samples/area-sjis-incl.tex - texmf-dist/doc/uptex/base/samples/area-sjis.mp - texmf-dist/doc/uptex/base/samples/area-uptex-incl.tex - texmf-dist/doc/uptex/base/samples/area-uptex.mp - texmf-dist/doc/uptex/base/samples/area-utf8-incl.tex - texmf-dist/doc/uptex/base/samples/area-utf8.mp - texmf-dist/doc/uptex/base/samples/bkmk-docinfo.txt - texmf-dist/doc/uptex/base/samples/bkmk-jis.tex - texmf-dist/doc/uptex/base/samples/bkmk-utf8.tex - texmf-dist/doc/uptex/base/samples/box-euc.eps - texmf-dist/doc/uptex/base/samples/box-jis.eps - texmf-dist/doc/uptex/base/samples/box-sjis.eps - texmf-dist/doc/uptex/base/samples/box-utf8.eps - texmf-dist/doc/uptex/base/samples/check_enc.pl - texmf-dist/doc/uptex/base/samples/cjk_babel.tex - texmf-dist/doc/uptex/base/samples/console_io.tex - texmf-dist/doc/uptex/base/samples/greek-uplatex.tex - texmf-dist/doc/uptex/base/samples/iotext.txt - texmf-dist/doc/uptex/base/samples/jbib1-jis.tex - texmf-dist/doc/uptex/base/samples/jbib2-utf8.tex - texmf-dist/doc/uptex/base/samples/jbtest.bib - texmf-dist/doc/uptex/base/samples/jis_uni_variation.tex - texmf-dist/doc/uptex/base/samples/jstr-euc-incl.tex - texmf-dist/doc/uptex/base/samples/jstr-euc.mp - texmf-dist/doc/uptex/base/samples/jstr-jis-incl.tex - texmf-dist/doc/uptex/base/samples/jstr-jis.mp - texmf-dist/doc/uptex/base/samples/jstr-sjis-incl.tex - texmf-dist/doc/uptex/base/samples/jstr-sjis.mp - texmf-dist/doc/uptex/base/samples/jstr-uptex-incl.tex - texmf-dist/doc/uptex/base/samples/jstr-uptex.mp - texmf-dist/doc/uptex/base/samples/jstr-utf8-incl.tex - texmf-dist/doc/uptex/base/samples/jstr-utf8.mp - texmf-dist/doc/uptex/base/samples/kinsoku-chk-utf8.tex - texmf-dist/doc/uptex/base/samples/linebreak.bib - texmf-dist/doc/uptex/base/samples/min10x.tfm - texmf-dist/doc/uptex/base/samples/misc-check-h-utf8.tex - texmf-dist/doc/uptex/base/samples/misc-check-v-utf8.tex - texmf-dist/doc/uptex/base/samples/otfsmpl-uplatex.tex - texmf-dist/doc/uptex/base/samples/sangoku-uplatex.tex - texmf-dist/doc/uptex/base/samples/sangoku-uptex.tex - texmf-dist/doc/uptex/base/samples/set3-check-h-utf8.tex - texmf-dist/doc/uptex/base/samples/simple-euc.tex - texmf-dist/doc/uptex/base/samples/simple-jis.tex - texmf-dist/doc/uptex/base/samples/simple-sjis.tex - texmf-dist/doc/uptex/base/samples/simple-u-jis.tex - texmf-dist/doc/uptex/base/samples/simple-u-utf8.tex - texmf-dist/doc/uptex/base/samples/simple-utf8.tex - texmf-dist/doc/uptex/base/samples/testrun.bat - texmf-dist/doc/uptex/base/samples/texxet-jis.tex - texmf-dist/doc/uptex/base/samples/umin10x.tfm - texmf-dist/doc/uptex/base/samples/uotftest-utf8.tex - texmf-dist/doc/uptex/base/samples/uotftest.tex - texmf-dist/doc/uptex/base/samples/utfsmpl-uplatex.tex - texmf-dist/doc/uptex/base/samples/widow.tex - texmf-dist/doc/uptex/base/samples/yaku-jsc-jis.tex - texmf-dist/doc/uptex/base/samples/yaku-jsc-utf8.tex -srcfiles size=83 - texmf-dist/source/fonts/uptex/Makefile - texmf-dist/source/fonts/uptex/README_ASCII_Corp.txt - texmf-dist/source/fonts/uptex/README_uptex_font.txt - texmf-dist/source/fonts/uptex/makepl.perl - texmf-dist/source/fonts/uptex/upjisr-h-hk.pl - texmf-dist/source/fonts/uptex/upjisr-h.pl - texmf-dist/source/fonts/uptex/upjisr-v.pl - texmf-dist/source/fonts/uptex/uprml-h-hk.pl - texmf-dist/source/fonts/uptex/uprml-h.pl - texmf-dist/source/uplatex/base/ujclasses.dtx - texmf-dist/source/uplatex/base/ukinsoku.dtx - texmf-dist/source/uplatex/base/uplatex.dtx - texmf-dist/source/uplatex/base/uplcls.ins - texmf-dist/source/uplatex/base/uplfmt.ins - texmf-dist/source/uplatex/base/uplfonts.dtx - texmf-dist/source/uplatex/base/uplvers.dtx -catalogue-date 2014-12-30 10:58:23 +0100 +execute AddFormat name=uptex engine=uptex options="uptex.ini" fmttriggers=cm,hyphen-base,knuth-lib,plain,uptex-base,uptex-fonts +execute AddFormat name=euptex engine=euptex options="*euptex.ini" patterns=language.def fmttriggers=cm,hyphen-base,knuth-lib,plain,uptex-base,uptex-fonts,etex,ptex-base +execute addKanjiMap uptex-@jaEmbed@@jaVariant@.map +execute addKanjiMap uptex-sc-@scEmbed@.map +execute addKanjiMap uptex-tc-@tcEmbed@.map +execute addKanjiMap uptex-ko-@koEmbed@.map +containersize 936 +containerchecksum 0e2f30249de81eb8040e74f0f99c781fdb8a93c9f507fb58329f226c8347cb8b9d3ca140eb1bce6ba8a82fef977e2a6a68c30bdb79ae44e2ffa6128899e669ad +doccontainersize 299384 +doccontainerchecksum 8d962e3bcda4d49fe6aadf89d0dcdaa9541fe01e50fc16cf9ebe3066b7df9f7bb2db85c3c6fef228125c8817a7ceaf2a2774313e75e98bd1b0aa429ed0f4558e +docfiles size=156 + texmf-dist/doc/man/man1/euptex.1 + texmf-dist/doc/man/man1/euptex.man1.pdf + texmf-dist/doc/man/man1/upmendex.1 + texmf-dist/doc/man/man1/upmendex.man1.pdf + texmf-dist/doc/man/man1/uppltotf.1 + texmf-dist/doc/man/man1/uppltotf.man1.pdf + texmf-dist/doc/man/man1/uptex.1 + texmf-dist/doc/man/man1/uptex.man1.pdf + texmf-dist/doc/man/man1/uptftopl.1 + texmf-dist/doc/man/man1/uptftopl.man1.pdf + texmf-dist/doc/upmendex/COPYRIGHT + texmf-dist/doc/upmendex/README.md + texmf-dist/doc/upmendex/samples/Makefile + texmf-dist/doc/upmendex/samples/alphabet/Makefile + texmf-dist/doc/upmendex/samples/alphabet/alpha_es.idx + texmf-dist/doc/upmendex/samples/alphabet/alpha_zh.idx + texmf-dist/doc/upmendex/samples/alphabet/alpha_zhp.idx + texmf-dist/doc/upmendex/samples/alphabet/alpha_zhr.idx + texmf-dist/doc/upmendex/samples/alphabet/alpha_zhs.idx + texmf-dist/doc/upmendex/samples/alphabet/alpha_zhz.idx + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_es1.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_es11.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_es12.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_es13.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_es2.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_es21.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_es22.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_es23.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh1.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh11.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh12.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh13.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh14.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh2.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh21.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh22.ist + texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh31.ist + texmf-dist/doc/upmendex/samples/french.idx + texmf-dist/doc/upmendex/samples/german.idx + texmf-dist/doc/upmendex/samples/greek.idx + texmf-dist/doc/upmendex/samples/korean.idx + texmf-dist/doc/upmendex/samples/mdxsty00.ist + texmf-dist/doc/upmendex/samples/mdxsty01.ist + texmf-dist/doc/upmendex/samples/mdxsty02.ist + texmf-dist/doc/upmendex/samples/multi.idx + texmf-dist/doc/upmendex/samples/option/Makefile + texmf-dist/doc/upmendex/samples/option/attri1.idx + texmf-dist/doc/upmendex/samples/option/japanese.idx + texmf-dist/doc/upmendex/samples/option/mdxsty_j00.ist + texmf-dist/doc/upmendex/samples/option/mdxsty_j01.ist + texmf-dist/doc/upmendex/samples/option/mdxsty_j02.ist + texmf-dist/doc/upmendex/samples/option/mdxsty_rule0.ist + texmf-dist/doc/upmendex/samples/russian.idx + texmf-dist/doc/upmendex/upmendex.ja.txt +catalogue-contact-bugs http://lists.tug.org/tex-k +catalogue-contact-home http://www.t-lab.opal.ne.jp/tex/uptex_en.html +catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/uptexdir +catalogue-contact-support http://lists.tug.org/tex-k +catalogue-date 2018-12-31 06:11:12 +0100 catalogue-license other-free +catalogue-topics engine japanese chinese korean multilingual catalogue-version 1.20 +name uptex-base +category Package +revision 51103 +shortdesc Plain TeX formats and documents for upTeX +relocated 1 +longdesc The bundle contains plain TeX format files and documents for +longdesc upTeX and and e-upTeX. +containersize 9960 +containerchecksum 8eac63abd7bfec931a2c71ae831b82d511b336e2d38709a4e4fbc3ee585e819b32ae2f51ac23ebc9e2ff07186e85c1c028aaf403211101b2a1c3ad731b333a92 +doccontainersize 158756 +doccontainerchecksum 2e028db42b4f7a32d47f02b0356f00f092e622eeee5a4e71ee317ab3d3a60b93419a1f8593e5f32c405bda97b4b84838e84030166cce8c577d7c974ad33ebfc1 +docfiles size=192 + RELOC/doc/uptex/uptex-base/00readme_uptex.txt + RELOC/doc/uptex/uptex-base/01uptex_doc_utf8.txt + RELOC/doc/uptex/uptex-base/02uptex_changelog_utf8.txt + RELOC/doc/uptex/uptex-base/LICENSE + RELOC/doc/uptex/uptex-base/README.md details="Readme" + RELOC/doc/uptex/uptex-base/README_uptex.txt + RELOC/doc/uptex/uptex-base/samples/00readme_uptex_samples.txt + RELOC/doc/uptex/uptex-base/samples/Makefile + RELOC/doc/uptex/uptex-base/samples/adobe-cid.tex + RELOC/doc/uptex/uptex-base/samples/adobe-cns-utf8.tex + RELOC/doc/uptex/uptex-base/samples/adobe-gb-utf8.tex + RELOC/doc/uptex/uptex-base/samples/adobe-jp-utf8.tex + RELOC/doc/uptex/uptex-base/samples/adobe-kr-utf8.tex + RELOC/doc/uptex/uptex-base/samples/aozora-ujarticle-utf8.tex + RELOC/doc/uptex/uptex-base/samples/aozora-ujbook-utf8.tex + RELOC/doc/uptex/uptex-base/samples/aozora-ujreport-utf8.tex + RELOC/doc/uptex/uptex-base/samples/aozora-utarticle-utf8.tex + RELOC/doc/uptex/uptex-base/samples/aozora-utbook-utf8.tex + RELOC/doc/uptex/uptex-base/samples/aozora-utf8.tex + RELOC/doc/uptex/uptex-base/samples/aozora-utreport-utf8.tex + RELOC/doc/uptex/uptex-base/samples/area-euc-incl.tex + RELOC/doc/uptex/uptex-base/samples/area-euc.mp + RELOC/doc/uptex/uptex-base/samples/area-jis-incl.tex + RELOC/doc/uptex/uptex-base/samples/area-jis.mp + RELOC/doc/uptex/uptex-base/samples/area-sjis-incl.tex + RELOC/doc/uptex/uptex-base/samples/area-sjis.mp + RELOC/doc/uptex/uptex-base/samples/area-uptex-incl.tex + RELOC/doc/uptex/uptex-base/samples/area-uptex.mp + RELOC/doc/uptex/uptex-base/samples/area-utf8-incl.tex + RELOC/doc/uptex/uptex-base/samples/area-utf8.mp + RELOC/doc/uptex/uptex-base/samples/bkmk-docinfo.txt + RELOC/doc/uptex/uptex-base/samples/bkmk-jis.tex + RELOC/doc/uptex/uptex-base/samples/bkmk-utf8.tex + RELOC/doc/uptex/uptex-base/samples/box-euc.eps + RELOC/doc/uptex/uptex-base/samples/box-jis.eps + RELOC/doc/uptex/uptex-base/samples/box-sjis.eps + RELOC/doc/uptex/uptex-base/samples/box-utf8.eps + RELOC/doc/uptex/uptex-base/samples/check_enc.pl + RELOC/doc/uptex/uptex-base/samples/cjk_babel.tex + RELOC/doc/uptex/uptex-base/samples/console_io.tex + RELOC/doc/uptex/uptex-base/samples/greek-uplatex.tex + RELOC/doc/uptex/uptex-base/samples/iotext.txt + RELOC/doc/uptex/uptex-base/samples/jbib1-jis.tex + RELOC/doc/uptex/uptex-base/samples/jbib2-utf8.tex + RELOC/doc/uptex/uptex-base/samples/jbtest.bib + RELOC/doc/uptex/uptex-base/samples/jis_uni_variation.tex + RELOC/doc/uptex/uptex-base/samples/jstr-euc-incl.tex + RELOC/doc/uptex/uptex-base/samples/jstr-euc.mp + RELOC/doc/uptex/uptex-base/samples/jstr-jis-incl.tex + RELOC/doc/uptex/uptex-base/samples/jstr-jis.mp + RELOC/doc/uptex/uptex-base/samples/jstr-sjis-incl.tex + RELOC/doc/uptex/uptex-base/samples/jstr-sjis.mp + RELOC/doc/uptex/uptex-base/samples/jstr-uptex-incl.tex + RELOC/doc/uptex/uptex-base/samples/jstr-uptex.mp + RELOC/doc/uptex/uptex-base/samples/jstr-utf8-incl.tex + RELOC/doc/uptex/uptex-base/samples/jstr-utf8.mp + RELOC/doc/uptex/uptex-base/samples/kinsoku-chk-utf8.tex + RELOC/doc/uptex/uptex-base/samples/linebreak.bib + RELOC/doc/uptex/uptex-base/samples/min10x.tfm + RELOC/doc/uptex/uptex-base/samples/misc-check-h-utf8.tex + RELOC/doc/uptex/uptex-base/samples/misc-check-v-utf8.tex + RELOC/doc/uptex/uptex-base/samples/otfsmpl-uplatex.tex + RELOC/doc/uptex/uptex-base/samples/punctuation.tex + RELOC/doc/uptex/uptex-base/samples/sangoku-uplatex.tex + RELOC/doc/uptex/uptex-base/samples/sangoku-uptex.tex + RELOC/doc/uptex/uptex-base/samples/set3-check-h-utf8.tex + RELOC/doc/uptex/uptex-base/samples/show_kcat.tex + RELOC/doc/uptex/uptex-base/samples/simple-euc.tex + RELOC/doc/uptex/uptex-base/samples/simple-jis.tex + RELOC/doc/uptex/uptex-base/samples/simple-sjis.tex + RELOC/doc/uptex/uptex-base/samples/simple-u-jis.tex + RELOC/doc/uptex/uptex-base/samples/simple-u-utf8.tex + RELOC/doc/uptex/uptex-base/samples/simple-utf8.tex + RELOC/doc/uptex/uptex-base/samples/testrun.bat + RELOC/doc/uptex/uptex-base/samples/texxet-jis.tex + RELOC/doc/uptex/uptex-base/samples/umin10x.tfm + RELOC/doc/uptex/uptex-base/samples/utfsmpl-uplatex.tex + RELOC/doc/uptex/uptex-base/samples/widow.tex + RELOC/doc/uptex/uptex-base/samples/yaku-jsc-jis.tex + RELOC/doc/uptex/uptex-base/samples/yaku-jsc-utf8.tex +srccontainersize 572 +srccontainerchecksum 8df893ac4425f5a7ce733bb0a7bd134acfebc8055a108accb3cd6b76a72413fbe96d36e3f4e704b763bae4deb844aed6c1cd5acafa8092d8ed38308b38627301 +srcfiles size=1 + RELOC/source/latex/uptex-base/Makefile +runfiles size=13 + RELOC/tex/uptex/uptex-base/euptex.ini + RELOC/tex/uptex/uptex-base/euptex.src + RELOC/tex/uptex/uptex-base/ukinsoku.tex + RELOC/tex/uptex/uptex-base/uptex.ini + RELOC/tex/uptex/uptex-base/uptex.tex +catalogue-contact-repository https://github.com/texjporg/uptex-base +catalogue-ctan /language/japanese/uptex-base +catalogue-date 2019-05-12 11:10:05 +0200 +catalogue-license bsd3 +catalogue-topics format japanese + +name uptex-fonts +category Package +revision 49985 +shortdesc Fonts for use with upTeX +relocated 1 +longdesc The bundle contains fonts (TFM and VF) for use with upTeX. This +longdesc is a redistribution derived from the upTeX distribution by +longdesc Takuji Tanaka. +containersize 182940 +containerchecksum 41fbb7b4a3e193744e36cdd1ab23145709b2ef94de30a18dda322f1e0539106f62be95b1a763750e72c81a7fe42053326c56efe0486254ba486c731b65bf47e2 +doccontainersize 5060 +doccontainerchecksum 9b8004ecb67cea126f0299d3eca749d5f011b0b3c50d23fba9a3adb4b9e5ab6d5e0a24494b9420e3a315639eecbe86a9c740b0772a694f2b36ee6f8b7e316c3a +docfiles size=6 + RELOC/doc/fonts/uptex-fonts/LICENSE + RELOC/doc/fonts/uptex-fonts/README.md details="Readme" + RELOC/doc/fonts/uptex-fonts/README_ASCII_Corp.txt + RELOC/doc/fonts/uptex-fonts/README_uptex_font.md +runfiles size=6663 + RELOC/fonts/cmap/uptex-fonts/UTF8-UTF16 + RELOC/fonts/cmap/uptex-fonts/UniJIS2004up-UTF16-H + RELOC/fonts/cmap/uptex-fonts/UniJIS2004up-UTF16-V + RELOC/fonts/cmap/uptex-fonts/UniJISup-UTF16-H + RELOC/fonts/cmap/uptex-fonts/UniJISup-UTF16-V + RELOC/fonts/cmap/uptex-fonts/cid_mapping.md + RELOC/fonts/source/uptex-fonts/Makefile + RELOC/fonts/source/uptex-fonts/makejvf-upjis.cnf + RELOC/fonts/source/uptex-fonts/makejvf-upjpn.cnf + RELOC/fonts/source/uptex-fonts/makepl.perl + RELOC/fonts/source/uptex-fonts/punctuation.md + RELOC/fonts/source/uptex-fonts/upjisr-h-hk.pl + RELOC/fonts/source/uptex-fonts/upjisr-h.pl + RELOC/fonts/source/uptex-fonts/upjisr-v.pl + RELOC/fonts/source/uptex-fonts/upkorr-h.pl + RELOC/fonts/source/uptex-fonts/upkorr-v.pl + RELOC/fonts/source/uptex-fonts/uprml-h-hk.pl + RELOC/fonts/source/uptex-fonts/uprml-h.pl + RELOC/fonts/source/uptex-fonts/upschr-h.pl + RELOC/fonts/source/uptex-fonts/upschr-v.pl + RELOC/fonts/source/uptex-fonts/uptchr-h.pl + RELOC/fonts/source/uptex-fonts/uptchr-v.pl + RELOC/fonts/tfm/uptex-fonts/jis/upgbm-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upgbm-hq.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upgbm-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/uphygt-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/uphygt-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/uphysmjm-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/uphysmjm-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upjisg-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upjisg-hq.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upjisg-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upjisr-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upjisr-hq.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upjisr-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upjpngt-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upjpngt-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upjpnrm-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upjpnrm-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upkorgt-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upkorgt-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upkorrm-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upkorrm-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upmhm-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upmhm-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upmsl-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upmsl-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/uprml-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/uprml-hq.tfm + RELOC/fonts/tfm/uptex-fonts/jis/uprml-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upschgt-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upschgt-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upschrm-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upschrm-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upstht-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upstht-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upstsl-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/upstsl-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/uptchgt-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/uptchgt-v.tfm + RELOC/fonts/tfm/uptex-fonts/jis/uptchrm-h.tfm + RELOC/fonts/tfm/uptex-fonts/jis/uptchrm-v.tfm + RELOC/fonts/tfm/uptex-fonts/min/ugbm.tfm + RELOC/fonts/tfm/uptex-fonts/min/ugbmv.tfm + RELOC/fonts/tfm/uptex-fonts/min/ugoth10.tfm + RELOC/fonts/tfm/uptex-fonts/min/umin10.tfm + RELOC/fonts/tfm/uptex-fonts/min/urml.tfm + RELOC/fonts/tfm/uptex-fonts/min/urmlv.tfm + RELOC/fonts/tfm/uptex-fonts/min/utgoth10.tfm + RELOC/fonts/tfm/uptex-fonts/min/utmin10.tfm + RELOC/fonts/vf/uptex-fonts/jis/upjisg-h.vf + RELOC/fonts/vf/uptex-fonts/jis/upjisg-hq.vf + RELOC/fonts/vf/uptex-fonts/jis/upjisg-v.vf + RELOC/fonts/vf/uptex-fonts/jis/upjisr-h.vf + RELOC/fonts/vf/uptex-fonts/jis/upjisr-hq.vf + RELOC/fonts/vf/uptex-fonts/jis/upjisr-v.vf + RELOC/fonts/vf/uptex-fonts/jis/upjpngt-h.vf + RELOC/fonts/vf/uptex-fonts/jis/upjpngt-v.vf + RELOC/fonts/vf/uptex-fonts/jis/upjpnrm-h.vf + RELOC/fonts/vf/uptex-fonts/jis/upjpnrm-v.vf + RELOC/fonts/vf/uptex-fonts/jis/upkorgt-h.vf + RELOC/fonts/vf/uptex-fonts/jis/upkorgt-v.vf + RELOC/fonts/vf/uptex-fonts/jis/upkorrm-h.vf + RELOC/fonts/vf/uptex-fonts/jis/upkorrm-v.vf + RELOC/fonts/vf/uptex-fonts/jis/upschgt-h.vf + RELOC/fonts/vf/uptex-fonts/jis/upschgt-v.vf + RELOC/fonts/vf/uptex-fonts/jis/upschrm-h.vf + RELOC/fonts/vf/uptex-fonts/jis/upschrm-v.vf + RELOC/fonts/vf/uptex-fonts/jis/uptchgt-h.vf + RELOC/fonts/vf/uptex-fonts/jis/uptchgt-v.vf + RELOC/fonts/vf/uptex-fonts/jis/uptchrm-h.vf + RELOC/fonts/vf/uptex-fonts/jis/uptchrm-v.vf + RELOC/fonts/vf/uptex-fonts/min/ugoth10.vf + RELOC/fonts/vf/uptex-fonts/min/umin10.vf + RELOC/fonts/vf/uptex-fonts/min/utgoth10.vf + RELOC/fonts/vf/uptex-fonts/min/utmin10.vf +catalogue-contact-repository https://github.com/texjporg/uptex-fonts +catalogue-ctan /fonts/uptex-fonts +catalogue-date 2019-02-09 15:26:10 +0100 +catalogue-license bsd3 +catalogue-topics font-cjk + +name uptex.aarch64-linux +category Package +revision 50794 +shortdesc aarch64-linux files of uptex +containersize 6695892 +containerchecksum 479580834515576037a691f213f78d0e557c0d956750132224885ec74fc402edcf07d0bfcb1ef1c5c00d127f2e528e778690ac39e9bb6df9590e5d9f83cf9fba +binfiles arch=aarch64-linux size=5950 + bin/aarch64-linux/euptex + bin/aarch64-linux/r-upmpost + bin/aarch64-linux/upbibtex + bin/aarch64-linux/updvitomp + bin/aarch64-linux/updvitype + bin/aarch64-linux/upmendex + bin/aarch64-linux/upmpost + bin/aarch64-linux/uppltotf + bin/aarch64-linux/uptex + bin/aarch64-linux/uptftopl + bin/aarch64-linux/wovp2ovf + +name uptex.amd64-freebsd +category Package +revision 50790 +shortdesc amd64-freebsd files of uptex +containersize 7135316 +containerchecksum 0e8a6dc1521aa75750f4f88badf8f89d4c14635ee0c5babf650912631b330350452b22c90d1191051176058307647799ad3379f9e2044b4f8d7c4d3ecd539097 +binfiles arch=amd64-freebsd size=6244 + bin/amd64-freebsd/euptex + bin/amd64-freebsd/r-upmpost + bin/amd64-freebsd/upbibtex + bin/amd64-freebsd/updvitomp + bin/amd64-freebsd/updvitype + bin/amd64-freebsd/upmendex + bin/amd64-freebsd/upmpost + bin/amd64-freebsd/uppltotf + bin/amd64-freebsd/uptex + bin/amd64-freebsd/uptftopl + bin/amd64-freebsd/wovp2ovf + +name uptex.amd64-netbsd +category Package +revision 50808 +shortdesc amd64-netbsd files of uptex +containersize 6662824 +containerchecksum 9ce99f791cb261abbc637d779fec42baa1d5a7bbc451c25043e00b02f3ba945d37b70378c6a90177624c0f33a26883b2879142e168df8fa80fa288a87613a744 +binfiles arch=amd64-netbsd size=6874 + bin/amd64-netbsd/euptex + bin/amd64-netbsd/r-upmpost + bin/amd64-netbsd/upbibtex + bin/amd64-netbsd/updvitomp + bin/amd64-netbsd/updvitype + bin/amd64-netbsd/upmendex + bin/amd64-netbsd/upmpost + bin/amd64-netbsd/uppltotf + bin/amd64-netbsd/uptex + bin/amd64-netbsd/uptftopl + bin/amd64-netbsd/wovp2ovf + +name uptex.armhf-linux +category Package +revision 50874 +shortdesc armhf-linux files of uptex +containersize 6521088 +containerchecksum 1ee23bee9607e2a4bb4baf6705bce14ab93a674d71aecddeb9fbce088f09b684940f6112399d1b21a5a16711357adfa4e336a1720349dd79f977dfad2033da3a +binfiles arch=armhf-linux size=5750 + bin/armhf-linux/euptex + bin/armhf-linux/r-upmpost + bin/armhf-linux/upbibtex + bin/armhf-linux/updvitomp + bin/armhf-linux/updvitype + bin/armhf-linux/upmendex + bin/armhf-linux/upmpost + bin/armhf-linux/uppltotf + bin/armhf-linux/uptex + bin/armhf-linux/uptftopl + bin/armhf-linux/wovp2ovf + +name uptex.i386-cygwin +category Package +revision 50855 +shortdesc i386-cygwin files of uptex +containersize 6667160 +containerchecksum 99980c88cde79e5f4b3fba2529b105cb03b7f937be83f8cdcca49cf0d15f3949c8e7dbeebe702c565fcac3df581d16e969c1fc3a86ca867aba9bea90ac38aa23 +binfiles arch=i386-cygwin size=5806 + bin/i386-cygwin/euptex.exe + bin/i386-cygwin/r-upmpost + bin/i386-cygwin/upbibtex.exe + bin/i386-cygwin/updvitomp + bin/i386-cygwin/updvitype.exe + bin/i386-cygwin/upmendex.exe + bin/i386-cygwin/upmpost.exe + bin/i386-cygwin/uppltotf.exe + bin/i386-cygwin/uptex.exe + bin/i386-cygwin/uptftopl.exe + bin/i386-cygwin/wovp2ovf.exe + +name uptex.i386-freebsd +category Package +revision 50790 +shortdesc i386-freebsd files of uptex +containersize 6745160 +containerchecksum 877dd99d5f8aca9342429c0e26e2e2377d8395c2ee2ab36323b6d74156f8b14d28eca3950791d7c4c442917792e6348d77271b7e8e26b2d6dca5747438369ad1 +binfiles arch=i386-freebsd size=5947 + bin/i386-freebsd/euptex + bin/i386-freebsd/r-upmpost + bin/i386-freebsd/upbibtex + bin/i386-freebsd/updvitomp + bin/i386-freebsd/updvitype + bin/i386-freebsd/upmendex + bin/i386-freebsd/upmpost + bin/i386-freebsd/uppltotf + bin/i386-freebsd/uptex + bin/i386-freebsd/uptftopl + bin/i386-freebsd/wovp2ovf + name uptex.i386-linux category Package -revision 37340 +revision 50790 shortdesc i386-linux files of uptex -binfiles arch=i386-linux size=1715 +containersize 6967612 +containerchecksum 32b42d130032d512bb465b5d8660a3d1c58fed724b5aec21b3f70c0e686f78c8510224240287235edbb12bb566ea6379ef2b1aa0167224a51fde8b4b14707c5a +binfiles arch=i386-linux size=6110 bin/i386-linux/euptex + bin/i386-linux/r-upmpost bin/i386-linux/upbibtex bin/i386-linux/updvitomp bin/i386-linux/updvitype - bin/i386-linux/uplatex + bin/i386-linux/upmendex bin/i386-linux/upmpost bin/i386-linux/uppltotf bin/i386-linux/uptex bin/i386-linux/uptftopl bin/i386-linux/wovp2ovf +name uptex.i386-netbsd +category Package +revision 50808 +shortdesc i386-netbsd files of uptex +containersize 6448228 +containerchecksum f40d519a0995ab1cd900755f85b15eadd97079020abc201c7b03a3baeb181b2efafa1640982e805f6a762ea15e0165dc289c149907f897eb8ad585ebb61f863d +binfiles arch=i386-netbsd size=6627 + bin/i386-netbsd/euptex + bin/i386-netbsd/r-upmpost + bin/i386-netbsd/upbibtex + bin/i386-netbsd/updvitomp + bin/i386-netbsd/updvitype + bin/i386-netbsd/upmendex + bin/i386-netbsd/upmpost + bin/i386-netbsd/uppltotf + bin/i386-netbsd/uptex + bin/i386-netbsd/uptftopl + bin/i386-netbsd/wovp2ovf + +name uptex.i386-solaris +category Package +revision 50790 +shortdesc i386-solaris files of uptex +containersize 6876520 +containerchecksum d852db21e80cfa8fae931e1fbc2fc8197a9712e61ee26987ff500244d9769cb3a0449b55df2b1b9c267966871e3135882fe43bd9ef8aaaafc6602e794e2af975 +binfiles arch=i386-solaris size=5973 + bin/i386-solaris/euptex + bin/i386-solaris/r-upmpost + bin/i386-solaris/upbibtex + bin/i386-solaris/updvitomp + bin/i386-solaris/updvitype + bin/i386-solaris/upmendex + bin/i386-solaris/upmpost + bin/i386-solaris/uppltotf + bin/i386-solaris/uptex + bin/i386-solaris/uptftopl + bin/i386-solaris/wovp2ovf + +name uptex.win32 +category Package +revision 50716 +shortdesc win32 files of uptex +containersize 1719928 +containerchecksum c0dc82a0df5d0135458bfeac2ea65d15e539e07c906ab9e1d1f494b4eb3c1f60891565ce73f98caaa310bbbc2329be39255759fa53464cf24ee4a6ce6cb25458 +binfiles arch=win32 size=1463 + bin/win32/euptex.dll + bin/win32/euptex.exe + bin/win32/r-upmpost.exe + bin/win32/upbibtex.exe + bin/win32/updvitomp.exe + bin/win32/updvitype.exe + bin/win32/upmendex.exe + bin/win32/upmpost.dll + bin/win32/upmpost.exe + bin/win32/uppltotf.exe + bin/win32/uptex.dll + bin/win32/uptex.exe + bin/win32/uptftopl.exe + bin/win32/wovp2ovf.exe + +name uptex.x86_64-cygwin +category Package +revision 50889 +shortdesc x86_64-cygwin files of uptex +containersize 6730212 +containerchecksum 90d4046226e13822adee6b55b682d03b450b45779a3139b12319151a6a330ad87afcf688237aba1cf39b1fb693826b8d7d6dc7fbce78f4f37c9cd6095e2f913f +binfiles arch=x86_64-cygwin size=5755 + bin/x86_64-cygwin/euptex.exe + bin/x86_64-cygwin/r-upmpost + bin/x86_64-cygwin/upbibtex.exe + bin/x86_64-cygwin/updvitomp + bin/x86_64-cygwin/updvitype.exe + bin/x86_64-cygwin/upmendex.exe + bin/x86_64-cygwin/upmpost.exe + bin/x86_64-cygwin/uppltotf.exe + bin/x86_64-cygwin/uptex.exe + bin/x86_64-cygwin/uptftopl.exe + bin/x86_64-cygwin/wovp2ovf.exe + +name uptex.x86_64-darwin +category Package +revision 50790 +shortdesc x86_64-darwin files of uptex +containersize 7117280 +containerchecksum e3ea07f00541eaeb26d44dd0a4c2fef7b8b756de09d9593c6afbbbf5aed0bba7deb5373596bcfdabdbf7dc39aeed32de59b6617cd3fc997861e510ef28526cc4 +binfiles arch=x86_64-darwin size=6132 + bin/x86_64-darwin/euptex + bin/x86_64-darwin/r-upmpost + bin/x86_64-darwin/upbibtex + bin/x86_64-darwin/updvitomp + bin/x86_64-darwin/updvitype + bin/x86_64-darwin/upmendex + bin/x86_64-darwin/upmpost + bin/x86_64-darwin/uppltotf + bin/x86_64-darwin/uptex + bin/x86_64-darwin/uptftopl + bin/x86_64-darwin/wovp2ovf + +name uptex.x86_64-darwinlegacy +category Package +revision 50790 +shortdesc x86_64-darwinlegacy files of uptex +containersize 6786988 +containerchecksum facd6c3c9f5f8fb93386fb9d7e6192487da0be89d043d7e61bf1b1c052077bb7929706a8ca9bd335c6445dd1677539ba404b65f78d0efe76d63956ce6cb96574 +binfiles arch=x86_64-darwinlegacy size=5880 + bin/x86_64-darwinlegacy/euptex + bin/x86_64-darwinlegacy/r-upmpost + bin/x86_64-darwinlegacy/upbibtex + bin/x86_64-darwinlegacy/updvitomp + bin/x86_64-darwinlegacy/updvitype + bin/x86_64-darwinlegacy/upmendex + bin/x86_64-darwinlegacy/upmpost + bin/x86_64-darwinlegacy/uppltotf + bin/x86_64-darwinlegacy/uptex + bin/x86_64-darwinlegacy/uptftopl + bin/x86_64-darwinlegacy/wovp2ovf + +name uptex.x86_64-linux +category Package +revision 50790 +shortdesc x86_64-linux files of uptex +containersize 6942408 +containerchecksum 1b0e5057b429f891301bd17458ce22362e260818bcc5d963da2be14a3e32483a212739bf4fbd1b9804b749398c69becab271a976de3312a7aba630d16e284ff8 +binfiles arch=x86_64-linux size=5976 + bin/x86_64-linux/euptex + bin/x86_64-linux/r-upmpost + bin/x86_64-linux/upbibtex + bin/x86_64-linux/updvitomp + bin/x86_64-linux/updvitype + bin/x86_64-linux/upmendex + bin/x86_64-linux/upmpost + bin/x86_64-linux/uppltotf + bin/x86_64-linux/uptex + bin/x86_64-linux/uptftopl + bin/x86_64-linux/wovp2ovf + +name uptex.x86_64-linuxmusl +category Package +revision 50790 +shortdesc x86_64-linuxmusl files of uptex +containersize 7070440 +containerchecksum c516f708ff394b0603c0bcc8d3632fac5c859c923ad6fbb1d61419c4acc6b75dcdbd07118fcd30a3e578541fcb3f8970c4399b1f99d543d182a0ae1552d78193 +binfiles arch=x86_64-linuxmusl size=6188 + bin/x86_64-linuxmusl/euptex + bin/x86_64-linuxmusl/r-upmpost + bin/x86_64-linuxmusl/upbibtex + bin/x86_64-linuxmusl/updvitomp + bin/x86_64-linuxmusl/updvitype + bin/x86_64-linuxmusl/upmendex + bin/x86_64-linuxmusl/upmpost + bin/x86_64-linuxmusl/uppltotf + bin/x86_64-linuxmusl/uptex + bin/x86_64-linuxmusl/uptftopl + bin/x86_64-linuxmusl/wovp2ovf + +name uptex.x86_64-solaris +category Package +revision 50790 +shortdesc x86_64-solaris files of uptex +containersize 7102328 +containerchecksum 2b1ccf91dbdeff5bfb887d38ab71daff9952e5f7d1fcc9bd7e8f3f8acc4b6bb185f6098b897f00357dbb818e69a3e715b0231786c5111ca33569d07a3b9c6a41 +binfiles arch=x86_64-solaris size=6165 + bin/x86_64-solaris/euptex + bin/x86_64-solaris/r-upmpost + bin/x86_64-solaris/upbibtex + bin/x86_64-solaris/updvitomp + bin/x86_64-solaris/updvitype + bin/x86_64-solaris/upmendex + bin/x86_64-solaris/upmpost + bin/x86_64-solaris/uppltotf + bin/x86_64-solaris/uptex + bin/x86_64-solaris/uptftopl + bin/x86_64-solaris/wovp2ovf + +name upzhkinsoku +category Package +revision 47354 +shortdesc Supplementary Chinese kinsoku for Unicode *pTeX +relocated 1 +longdesc This package provides supplementary Chinese kinsoku (line +longdesc breaking rules etc.) settings for Unicode (e-)upTeX (when using +longdesc Unicode as its internal encoding), and ApTeX. Both LaTeX and +longdesc plain TeX are supported. +containersize 1756 +containerchecksum 03dcf2b73ca644f8e9e2589082d49a4d502adb51944fcd9ee5cf737ae782611b35ef2eda4242b7eec2b8033014ddbbbea3abb52b1bfe90be9cc1634345223d53 +doccontainersize 206168 +doccontainerchecksum d4c038d864b40603281f3186e21110ec96530e84a9ff88be4241cad165d09cd091b28bd768ca8ca0a28575dd850bb68ff88ab553cf9caaee6edd8d311c6fc9e2 +docfiles size=52 + RELOC/doc/generic/upzhkinsoku/README details="Readme" + RELOC/doc/generic/upzhkinsoku/upzhkinsoku-doc.pdf details="Package documentation" + RELOC/doc/generic/upzhkinsoku/upzhkinsoku-doc.tex +runfiles size=2 + RELOC/tex/generic/upzhkinsoku/upzhkinsoku.sty +catalogue-contact-repository https://github.com/Man-Ting-Fang/upzhkinsoku +catalogue-ctan /macros/generic/upzhkinsoku +catalogue-date 2018-04-07 17:55:54 +0200 +catalogue-license knuth +catalogue-topics chinese +catalogue-version 0.5 + name urcls category Package -revision 37550 -shortdesc Beamer and scrlttr2 classes and styles for the University of Regensburg. +revision 49903 +shortdesc Beamer and scrlttr2 classes and styles for the University of Regensburg relocated 1 longdesc The bundle provides a beamer-derived class and a theme style longdesc file for the corporate design of the University of Regensburg. @@ -173197,126 +293638,293 @@ longdesc corporate design of the UR. Users may use the class itself longdesc (URbeamer) or use the theme in the usual way with longdesc \usetheme{UR}. Examples of using both letters and presentations longdesc are provided as .tex and .pdf-files. -runfiles size=13 +containersize 12640 +containerchecksum 5b8c80a756e45e5b847c3b970005b866f6c498eff7646155c73a9b86585dffd73e8dc66d91583dd691c910caccab60ee22a1e9dbe3aa450290fb17f019477172 +doccontainersize 901592 +doccontainerchecksum 40b8e4ea2abcc82acb843c692d90e964932f1ad7d0e818d54eeec77340f49686aafcf2fcf3f8f4d942f7cd967754ab24ee2075c6906862266f5af56251063fee +docfiles size=235 + RELOC/doc/latex/urcls/README.md details="Readme" + RELOC/doc/latex/urcls/URadressdaten-DEMO.lco + RELOC/doc/latex/urcls/URbeamer-DEMO.pdf details="Example of usage (presentation)" + RELOC/doc/latex/urcls/URbeamer-DEMO.tex + RELOC/doc/latex/urcls/URletter-DEMO.pdf details="Example of usage (letter)" + RELOC/doc/latex/urcls/URletter-DEMO.tex + RELOC/doc/latex/urcls/URpagestyles-DEMO.pdf + RELOC/doc/latex/urcls/URpagestyles-DEMO.tex +runfiles size=21 RELOC/tex/latex/urcls/URbeamer.cls RELOC/tex/latex/urcls/URcolors.sty RELOC/tex/latex/urcls/URletter.cls + RELOC/tex/latex/urcls/URoptions.sty + RELOC/tex/latex/urcls/URpagestyles.sty + RELOC/tex/latex/urcls/URrules.sty + RELOC/tex/latex/urcls/URspecialopts.sty RELOC/tex/latex/urcls/beamercolorthemeUR.sty RELOC/tex/latex/urcls/beamerfontthemeUR.sty RELOC/tex/latex/urcls/beamerouterthemeUR.sty RELOC/tex/latex/urcls/beamerthemeUR.sty -docfiles size=110 - RELOC/doc/latex/urcls/DEMO-Brief.pdf - RELOC/doc/latex/urcls/DEMO-Brief.tex - RELOC/doc/latex/urcls/DEMO-Praesentation.pdf - RELOC/doc/latex/urcls/DEMO-Praesentation.tex - RELOC/doc/latex/urcls/README - RELOC/doc/latex/urcls/UR-Adressdaten.lco catalogue-ctan /macros/latex/contrib/urcls -catalogue-date 2015-06-15 11:32:35 +0200 +catalogue-date 2019-02-01 07:00:41 +0100 catalogue-license lppl catalogue-topics letter presentation class -catalogue-version 1.1 +catalogue-version 2.1 name uri category Package -revision 21608 -shortdesc Hyperlinks for a wide range of URIs. +revision 48602 +shortdesc Hyperlinks for a wide range of URIs relocated 1 longdesc The package provides automatic hyperlinks for URIs of type -longdesc arXiv, ASIN, DOI, HDL, NBN, PubMed, OID, TINY, TINY with -longdesc preview, and XMPP and provides commands \citeurl, \mailto, -longdesc \ukoeln and \uref. -runfiles size=2 - RELOC/tex/latex/uri/uri.sty -docfiles size=99 - RELOC/doc/latex/uri/README - RELOC/doc/latex/uri/uri-example.pdf +longdesc arXiv, ASIN, DOI, HDL, NBN, OCLC, OID, PubMed, TINY, TINY with +longdesc preview, and WebCite and provides commands \citeurl, \mailto, +longdesc \ukoeln, and \uref. +containersize 3360 +containerchecksum 402974f30df5a00118d4bd2e978f342cdcdb22119059dbd0c1b2111fd1ce94ab8a29ceff88672c80d18a669d5440bd48dfcd23fa07844f492e5f7e0eda1671a6 +doccontainersize 444592 +doccontainerchecksum b2cc8cbcbc81f0c3db349952546e60c152044aae264d4b30aadb6b90b7aa5b304c89203b6219bb5161807bf1e4649235d2f98a60339a0cb93a588852a1755e00 +docfiles size=114 + RELOC/doc/latex/uri/README details="Readme" + RELOC/doc/latex/uri/uri-example.pdf details="Example of use" RELOC/doc/latex/uri/uri-example.tex - RELOC/doc/latex/uri/uri.pdf -srcfiles size=14 - RELOC/source/latex/uri/ltxdoc.cfg + RELOC/doc/latex/uri/uri.pdf details="Package documentation" +srccontainersize 13520 +srccontainerchecksum 0206e0d2907f3976fd605d78284a44c909ff23f16ce9b2490556136099e56a374bd410e1c9bd5687bb791334612af1cc5a62a8b53f8c7876bf02d921c9868a68 +srcfiles size=15 RELOC/source/latex/uri/uri.drv RELOC/source/latex/uri/uri.dtx RELOC/source/latex/uri/uri.ins +runfiles size=3 + RELOC/tex/latex/uri/uri.sty +catalogue-also url hyperref doipubmed catalogue-ctan /macros/latex/contrib/uri -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl1.3 -catalogue-version 1.0a +catalogue-date 2018-09-06 20:14:50 +0200 +catalogue-license lppl1.3c +catalogue-topics hyper +catalogue-version 2.0b + +name url +category Package +revision 32528 +shortdesc Verbatim with URL-sensitive line breaks +relocated 1 +longdesc The command \url is a form of verbatim command that allows +longdesc linebreaks at certain characters or combinations of characters, +longdesc accepts reconfiguration, and can usually be used in the +longdesc argument to another command. (The \urldef command provides +longdesc robust commands that serve in cases when \url doesn't work in +longdesc an argument.) The command is intended for email addresses, +longdesc hypertext links, directories/paths, etc., which normally have +longdesc no spaces, so by default the package ignores spaces in its +longdesc argument. However, a package option "allows spaces", which is +longdesc useful for operating systems where spaces are a common part of +longdesc file names. +containersize 5528 +containerchecksum 164fb94cb128e997031bfdf8c602892d78813694f39f4b95bfead8a5b7e3cd9a0d9596dbe697e012bdf84b89c2551c2f2f1c7f99d4543e357edfaf2076b9cfba +doccontainersize 266856 +doccontainerchecksum 65596e0ce813233491959ef161be8570450c6c71c787b3253d0bce503558e63902137a6d337ad1e7cd2499feacbba4a93b7b75559750d05d7898ff2527f1240c +docfiles size=69 + RELOC/doc/latex/url/miscdoc.sty + RELOC/doc/latex/url/url.pdf details="Package documentation" + RELOC/doc/latex/url/url.tex +runfiles size=4 + RELOC/tex/latex/url/url.sty +catalogue-also path +catalogue-ctan /macros/latex/contrib/url +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics verbatim +catalogue-version 3.4 name urlbst category Package revision 29803 -shortdesc Web support for BibTeX. +shortdesc Web support for BibTeX longdesc Supports a new BibTeX 'webpage' entry type and 'url', longdesc 'lastchecked', and 'eprint' and 'DOI' fields. The Perl script longdesc urlbst can be used to add this support to an arbitrary .bst longdesc file which has a reasonably conventional structure. The result longdesc is meant to be robust rather than pretty. depend urlbst.ARCH -runfiles size=39 - texmf-dist/bibtex/bst/urlbst/abbrvurl.bst - texmf-dist/bibtex/bst/urlbst/alphaurl.bst - texmf-dist/bibtex/bst/urlbst/plainurl.bst - texmf-dist/bibtex/bst/urlbst/unsrturl.bst - texmf-dist/scripts/urlbst/urlbst +containersize 13244 +containerchecksum 84a2ad97ff9be1cdf9ba3f31c2cb3147a4625b5a569325bf8d766b6f008b6488e9d798ccdc9259c82e0c762e1df55b58051a9feb09b2d5c7d734ab2ea5c2c560 +doccontainersize 216068 +doccontainerchecksum 75f3282c52d57f743c75dc8022c80a5c138ad9c0947ab23085459b360366fc28b27395a8ade1bab442620c4f0892f3cf99298b6fbccd33d96af713a48db0f360 docfiles size=86 texmf-dist/doc/bibtex/urlbst/Makefile.in - texmf-dist/doc/bibtex/urlbst/README + texmf-dist/doc/bibtex/urlbst/README details="Package Readme" texmf-dist/doc/bibtex/urlbst/VERSION texmf-dist/doc/bibtex/urlbst/urlbst.bib - texmf-dist/doc/bibtex/urlbst/urlbst.html + texmf-dist/doc/bibtex/urlbst/urlbst.html details="Package documentation (HTML format)" texmf-dist/doc/bibtex/urlbst/urlbst.html.in texmf-dist/doc/bibtex/urlbst/urlbst.in - texmf-dist/doc/bibtex/urlbst/urlbst.pdf + texmf-dist/doc/bibtex/urlbst/urlbst.pdf details="Package documentation (PDF format)" texmf-dist/doc/bibtex/urlbst/urlbst.tex texmf-dist/doc/bibtex/urlbst/urlbst.tex.in +srccontainersize 18292 +srccontainerchecksum fc530cb6dcffe3e726aa1b0f73b0bff384e9e5476200387b4877747e6271688de1bf3be657c4fcc4daab0c59955d7d5c8558a9a78951d0cea768ea9aceb96d4c srcfiles size=20 texmf-dist/source/bibtex/urlbst/configure texmf-dist/source/bibtex/urlbst/configure.ac +runfiles size=39 + texmf-dist/bibtex/bst/urlbst/abbrvurl.bst + texmf-dist/bibtex/bst/urlbst/alphaurl.bst + texmf-dist/bibtex/bst/urlbst/plainurl.bst + texmf-dist/bibtex/bst/urlbst/unsrturl.bst + texmf-dist/scripts/urlbst/urlbst catalogue-ctan /biblio/bibtex/contrib/urlbst -catalogue-date 2011-11-15 11:50:22 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics bibtex-sty catalogue-version 0.7 +name urlbst.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of urlbst +containersize 340 +containerchecksum 35aa80261ddac02ed1d627da38be6f47d171a0d1c1086c834d37376a6e811146695a17c84576e59666a9922e0a64e6a337e7e77929f394ea769bd14befc9b6ef +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/urlbst + +name urlbst.amd64-freebsd +category Package +revision 23262 +shortdesc amd64-freebsd files of urlbst +containersize 340 +containerchecksum 35740e50d733556c3cc59f736f7544218a22e44c907b1a288d55f442ef0396ec13f0a4edfb1ee45889533428607e389060cc786460cba67959b3712e1fdf6249 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/urlbst + +name urlbst.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of urlbst +containersize 340 +containerchecksum 2484011b94ccfe388c04f3b36d5df22be65228bb7ccbe7e48409d7541f3bb7f0e54a668d0ec2f0951452f8c43804a57632299ad6e6382b12c0dd09bbdf56222c +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/urlbst + +name urlbst.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of urlbst +containersize 336 +containerchecksum d914a20f8d4fd935bd217066da6364eda2ee4ca8494d6353ae888028caf7b8c5229d978c84ddb43c025c876e4157986b8d9c2f53f60799ea34de4c59dbbeee4d +binfiles arch=armhf-linux size=1 + bin/armhf-linux/urlbst + +name urlbst.i386-cygwin +category Package +revision 23262 +shortdesc i386-cygwin files of urlbst +containersize 336 +containerchecksum 06395831794851c816063dd724e38270e9cd6882c0d011b275019411f3330ac88c741ad807bcb8bf8542f6feea5269bb653897314699dc77357151464d767abd +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/urlbst + +name urlbst.i386-freebsd +category Package +revision 23262 +shortdesc i386-freebsd files of urlbst +containersize 340 +containerchecksum 116244743aaae75132213f870c4e5c88ef91eba19e106ed948c28a37ae821ba4244ffdc7146ab52b5a3bd369236fb346fbba75e6d2f1eae426ae65b6008bf072 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/urlbst + name urlbst.i386-linux category Package revision 23262 shortdesc i386-linux files of urlbst +containersize 336 +containerchecksum 224bad9625f4cfaba7737166112608932f7c2e31f734ebb7e29c3afc6e2e0c392da1165c6ebfcff4466dca5119ca8af45cd354ab5f9b282f8dae3a7b04d2e04f binfiles arch=i386-linux size=1 bin/i386-linux/urlbst -name url +name urlbst.i386-netbsd category Package -revision 32528 -shortdesc Verbatim with URL-sensitive line breaks. -relocated 1 -longdesc The command \url is a form of verbatim command that allows -longdesc linebreaks at certain characters or combinations of characters, -longdesc accepts reconfiguration, and can usually be used in the -longdesc argument to another command. (The \urldef command provides -longdesc robust commands that serve in cases when \url doesn't work in -longdesc an argument.) The command is intended for email addresses, -longdesc hypertext links, directories/paths, etc., which normally have -longdesc no spaces, so by default the package ignores spaces in its -longdesc argument. However, a package option "allows spaces", which is -longdesc useful for operating systems where spaces are a common part of -longdesc file names. -runfiles size=4 - RELOC/tex/latex/url/url.sty -docfiles size=69 - RELOC/doc/latex/url/miscdoc.sty - RELOC/doc/latex/url/url.pdf - RELOC/doc/latex/url/url.tex -catalogue-ctan /macros/latex/contrib/url -catalogue-date 2013-12-31 15:02:54 +0100 -catalogue-license lppl -catalogue-version 3.4 +revision 30191 +shortdesc i386-netbsd files of urlbst +containersize 336 +containerchecksum 671283e456ea659595752286187e137e70e82992ec93f569c280a858728207a6ff2346a8030c7673232a218f50256c02f6b3e9c652bdda2150f040f47cd399fc +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/urlbst + +name urlbst.i386-solaris +category Package +revision 23262 +shortdesc i386-solaris files of urlbst +containersize 336 +containerchecksum ecbc2e23ee31f34504c4e33d91ae46a7dbfce5fc16e3ffaad58025084395e743e0bea308371fcd0c21ea358b554e8aea89b62fdf1608e6ecf9220b34e00ef452 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/urlbst + +name urlbst.win32 +category Package +revision 23262 +shortdesc win32 files of urlbst +containersize 680 +containerchecksum 4b7723c10344eb58e971ca4f5a6526eeb7bb240d21f23f89adc7d8543a250d4e61250f4438e12256a645b9feab83c9ef8b25743a00f271958eec9da73380f0c7 +binfiles arch=win32 size=1 + bin/win32/urlbst.exe + +name urlbst.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of urlbst +containersize 340 +containerchecksum f2d88734048bf513909eaab1c5814dfe142bc143a1138359bad5e45c13cf55c9c3712fa8862d7bfc8776e24084dd3f3d845b98bae7d6db81bb81a4cf9cda1fd4 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/urlbst + +name urlbst.x86_64-darwin +category Package +revision 23262 +shortdesc x86_64-darwin files of urlbst +containersize 336 +containerchecksum b7f1f39a8849a93e8ec5ff4a50a90f7166fc2bdde80b058eafcf5968f2b09df77da4eae4198bd01dd39d43c7cd087ade8ce64770420b99b18bd20fb4a5eb01ab +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/urlbst + +name urlbst.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of urlbst +containersize 348 +containerchecksum 6da412e9731e306184c2fe4ddb7123605c6081ad8e5faa4d2cdf27c7f14bd29430b251dade60d8ac0ff131a9f17b38b90d2ad3b106fd7705bd12f358562f181f +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/urlbst + +name urlbst.x86_64-linux +category Package +revision 23262 +shortdesc x86_64-linux files of urlbst +containersize 336 +containerchecksum 40e4ca89e5a6fd3fdd89ae060f77a919dd53525c0d6820ccc9d88fa107819ed6fc856258e79b75f4feb029349072d7c96781b809b593b07feeb220f3c7007b59 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/urlbst + +name urlbst.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of urlbst +containersize 340 +containerchecksum 17591d9d99ddbf1e73cac07edfc075e99241c2f84ba66405d10e16eaa03121e6d6b8f93682a1fc537dfb9401d72fa6ab36fd960d8d75924904ad7c6f8433b5e0 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/urlbst + +name urlbst.x86_64-solaris +category Package +revision 23262 +shortdesc x86_64-solaris files of urlbst +containersize 336 +containerchecksum 6897efd618ba988138577e2e13e249fd99fa1916b8c4a8fd2c09223d3b3328a00d3721dc83ee1717d54f8000c8d7b290cc5c9ab7e3031ac41e6f8c1f1852f658 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/urlbst name urwchancal category Package revision 21701 -shortdesc Use URW's clone of Zapf Chancery as a maths alphabet. +shortdesc Use URW's clone of Zapf Chancery as a maths alphabet relocated 1 longdesc The package allows (the URW clone of) Zapf Chancery to function longdesc as a maths alphabet, the target of \mathcal or \mathscr, with @@ -173324,78 +293932,128 @@ longdesc accents appearing where they should, and other spacing longdesc parameters set to reasonable (not very tight) values. The font longdesc itself may be found in the URW basic fonts collection. This longdesc package supersedes the pzccal package. +containersize 1932 +containerchecksum beb82950bda88e7170c7ad753e93859f96190f30e89fbfbe1cdbe37930b07740f70da40124639c6ab14be93fe79c5e87b35296b68c702888d3e9e25100e86a9c +doccontainersize 23148 +doccontainerchecksum 8f218f76d45a2f3ea9be173ba1c6efcb8a7cff26a43149b7e0ef4fc535a4638cffe69358d8ccac44a3306044720958ea9189996e88a38d560d264f5fba6863ba +docfiles size=9 + RELOC/doc/fonts/urwchancal/README details="Readme" + RELOC/doc/fonts/urwchancal/urwchancal-doc.pdf details="Package documentation" + RELOC/doc/fonts/urwchancal/urwchancal-doc.tex runfiles size=4 RELOC/fonts/tfm/urw/urwchancal/urwchancal.tfm RELOC/fonts/vf/urw/urwchancal/urwchancal.vf RELOC/tex/latex/urwchancal/urwchancal.sty RELOC/tex/latex/urwchancal/uurwchancal.fd -docfiles size=9 - RELOC/doc/fonts/urwchancal/README - RELOC/doc/fonts/urwchancal/urwchancal-doc.pdf - RELOC/doc/fonts/urwchancal/urwchancal-doc.tex catalogue-ctan /fonts/urwchancal -catalogue-date 2015-02-23 05:52:12 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font-supp-maths catalogue-version 1 name usebib category Package revision 25969 -shortdesc A simple bibliography processor. +shortdesc A simple bibliography processor relocated 1 longdesc The package is described by its author as "a poor person's -longdesc replacement for the more powerful methods provided by biblatex +longdesc replacement for the more powerful methods provided by BibLaTeX longdesc to access data from a .bib file". Its principle commands are longdesc \bibinput (which specifies a database to use) and \usebibdata longdesc (which typesets a single field from a specified entry in that longdesc database. -runfiles size=1 - RELOC/tex/latex/usebib/usebib.sty +containersize 1836 +containerchecksum 94e0ded0c7e7ac10f2d8ff9324afcfdd2dad8247cf31cd6b404d9c2b12e223e6f435ec9d3dfad0ab510b943050444f5206788540a948e44f44c5d011596cd34d +doccontainersize 254984 +doccontainerchecksum 3b489185729ac7d93ebbfd632b77eeb865b39043b2b68d920a6ef561ac55701a44d362b84c1fb83a2f59770442a655b779c6e49287c9d2859c44140e61c543e6 docfiles size=64 - RELOC/doc/latex/usebib/README - RELOC/doc/latex/usebib/usebib.pdf + RELOC/doc/latex/usebib/README details="Readme" + RELOC/doc/latex/usebib/usebib.pdf details="Package documentation" +srccontainersize 5932 +srccontainerchecksum a0c64ad5a7479da4906b848a31ceb02b047a98e8e2c505ee748f2eed4ba27dc8b6d89d8ee3a171566417315cc2b83810f514f1a0c11f1bd4a28b57cca03676df srcfiles size=5 RELOC/source/latex/usebib/usebib.dtx RELOC/source/latex/usebib/usebib.ins +runfiles size=1 + RELOC/tex/latex/usebib/usebib.sty catalogue-ctan /macros/latex/contrib/usebib -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics biblio catalogue-version 1.0a name ushort category Package revision 32261 -shortdesc Shorter (and longer) underlines and underbars. +shortdesc Shorter (and longer) underlines and underbars relocated 1 longdesc Some engineers need underlined or twice underlined variables longdesc for which the usual \underline is too long. This package longdesc provides a generic command for creating underlines of various longdesc sizes and types. -runfiles size=1 - RELOC/tex/latex/ushort/ushort.sty +containersize 1656 +containerchecksum 2ece6efb162a13c37413e4fe2eed33ab7982d681fcd9435ce53248dc4c573cd90ac51293424385aac29b84159b34fb3f7fde2bc8d39eacc71f0ecc91c8db7af8 +doccontainersize 69108 +doccontainerchecksum d262bb270e41cb7d9378d42ec075a81158d401b737acc7788722ea7e99d896de1eb98c04a65e733d6e83f6229a9703f72bfd0a11e36e52d4799e82e19c102d5b docfiles size=25 - RELOC/doc/latex/ushort/README - RELOC/doc/latex/ushort/ushort.pdf + RELOC/doc/latex/ushort/README details="Readme" + RELOC/doc/latex/ushort/ushort.pdf details="Package documentation" RELOC/doc/latex/ushort/ushort.tex RELOC/doc/latex/ushort/ushort.txt +srccontainersize 9124 +srccontainerchecksum a26cdd79055b74cf30202c162fb38243571ce2bac990ea44a0eecaff407951aebd5ff4619cafa6190ef8ba6101d86a800262ad1b09972dbf7b207398b82da672 srcfiles size=10 RELOC/source/latex/ushort/ushort.dtx RELOC/source/latex/ushort/ushort.ins +runfiles size=1 + RELOC/tex/latex/ushort/ushort.sty catalogue-ctan /macros/latex/contrib/ushort -catalogue-date 2012-04-09 09:24:18 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics underline catalogue-version 2.2 +name uspace +category Package +revision 42456 +shortdesc Giving meaning to various Unicode space characters +relocated 1 +longdesc LaTeX package that gives meaning to various Unicode space +longdesc characters. +containersize 1112 +containerchecksum 57a271421c15eefd41517881e951c8a55096e6bc7b769beba123813e19682407b24dcde898bc8df75700f33316a5281fedf5c24a3ffd7a97eea2bcf5f658e7e9 +doccontainersize 268848 +doccontainerchecksum c4b3c401cdedde7e67a2b4fca44f53c67c578fec287e22f0c1b67252b6fa4c0ed4d3a8ab1328162e7bea015536f1a1e4539fb104c8c889bb4e1549f7bf748e13 +docfiles size=107 + RELOC/doc/latex/uspace/LICENSE + RELOC/doc/latex/uspace/README.md details="Readme" + RELOC/doc/latex/uspace/uspace-ctanify.sh + RELOC/doc/latex/uspace/uspace-test-lualatex.pdf + RELOC/doc/latex/uspace/uspace-test-pdflatex.pdf + RELOC/doc/latex/uspace/uspace-test-xelatex.pdf + RELOC/doc/latex/uspace/uspace-test.tex + RELOC/doc/latex/uspace/uspace.pdf details="Package documentation" + RELOC/doc/latex/uspace/uspace.tex +runfiles size=1 + RELOC/tex/latex/uspace/uspace.sty +catalogue-ctan /macros/latex/contrib/uspace +catalogue-date 2016-11-06 22:37:53 +0100 +catalogue-license other-free +catalogue-topics enc-juggle inputenc hyphenation unicode +catalogue-version 0.04 + name uspatent category Package revision 27744 -shortdesc U.S. Patent Application Tools for LaTeX and LyX. +shortdesc U.S. Patent Application Tools for LaTeX and LyX relocated 1 longdesc The package provides a class and other tools for developing a longdesc beautifully formatted, consistent U.S. Patent Application using longdesc LaTeX and/or LyX. -runfiles size=5 - RELOC/tex/latex/uspatent/uspatent.cls +containersize 4824 +containerchecksum fbcce7a06cc018dfba47aa7e9d572003136d5b179e957f10e2bb42b2635ef4cdd40bbef19e8f827963d048eadb23a1aeedcebc87cf128f5b28cb1ab281408b90 +doccontainersize 2022300 +doccontainerchecksum e0eafb5fadeab38da049d0d5cbadc8fa3dc3c335afe4fd5289fe30de38f0898cdd9dee091b703f6a853eba56b32b161abfe56b3185c71512c9374585e6d9784d docfiles size=776 RELOC/doc/latex/uspatent/DocumentSettings.png RELOC/doc/latex/uspatent/DrawingZoomBad.png @@ -173410,12 +294068,12 @@ docfiles size=776 RELOC/doc/latex/uspatent/LyXSettings.png RELOC/doc/latex/uspatent/LyXSettingsDocumentClass.png RELOC/doc/latex/uspatent/PatentApplication.lyx - RELOC/doc/latex/uspatent/PatentApplication.pdf + RELOC/doc/latex/uspatent/PatentApplication.pdf details="Package 'dummy' sample" RELOC/doc/latex/uspatent/PatentApplication.tex RELOC/doc/latex/uspatent/PatentApplicationGuide.lyx - RELOC/doc/latex/uspatent/PatentApplicationGuide.pdf + RELOC/doc/latex/uspatent/PatentApplicationGuide.pdf details="Package description" RELOC/doc/latex/uspatent/PatentApplicationGuide.tex - RELOC/doc/latex/uspatent/README + RELOC/doc/latex/uspatent/README details="Readme" RELOC/doc/latex/uspatent/TeXworks.png RELOC/doc/latex/uspatent/TpXDrawing.tpx RELOC/doc/latex/uspatent/TpXSettingsAccess.png @@ -173425,25 +294083,79 @@ docfiles size=776 RELOC/doc/latex/uspatent/VisioSave.png RELOC/doc/latex/uspatent/annotationAlignment.png RELOC/doc/latex/uspatent/uspatent.layout +runfiles size=5 + RELOC/tex/latex/uspatent/uspatent.cls catalogue-ctan /macros/latex/contrib/uspatent -catalogue-date 2014-09-14 18:18:23 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics patent legal class +catalogue-version 1.0 + +name ut-thesis +category Package +revision 38269 +shortdesc University of Toronto thesis style +relocated 1 +longdesc This not described as an 'official' class, just one distributed +longdesc "in the hope that it will be useful". A skeleton file, using +longdesc the class, is provided. +containersize 5472 +containerchecksum 06a8933b03e02bd092a09843686d518ab58a47a4821bcafbe9568eebbe6d4e72e7815752016200ba5d68ab193408847c9f0a784bae9a65af4d1ad06b501c03f1 +doccontainersize 5320 +doccontainerchecksum 13dcfbd7dfe45a4d1fa0e2ad8a06bda30cf5a76c993e6a6614d4fcf18964f5d44072c9c75acb6739b8df977590fd2c55aa193a2c88665e38a4e54e4411ca85b6 +docfiles size=5 + RELOC/doc/latex/ut-thesis/README details="Readme" + RELOC/doc/latex/ut-thesis/ut-thesis.tex +runfiles size=5 + RELOC/tex/latex/ut-thesis/ut-thesis.cls +catalogue-also utorontothesis +catalogue-ctan /macros/latex/contrib/ut-thesis +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics dissertation +catalogue-version 2.1 + +name utexasthesis +category Package +revision 48648 +shortdesc University of Texas at Austin graduate thesis style +relocated 1 +longdesc This class file complies with the Digital Submission +longdesc Requirement for Masters and Ph.D. thesis submissions of the +longdesc University of Texas at Austin. +containersize 3744 +containerchecksum 829826bbc06bbd9b8ffe585705856bbe4bc99973bad7bedd489ff23fad9cc19c4f33beb88756644d76945126983586fdf78eabb305e353cb8bde8341a3d20fc4 +doccontainersize 2840 +doccontainerchecksum 65e3100a6acd2a02df2e95834e5e99d718cd0b73e20ef6da839cbc9831918f63a2f5b38ad888a5068b1fd87ad71ac480754d5e6b459465cbb6238d4a3b3c09b1 +docfiles size=2 + RELOC/doc/latex/utexasthesis/README.md details="Readme" +runfiles size=3 + RELOC/tex/latex/utexasthesis/utexasthesis.cls +catalogue-also utthesis +catalogue-contact-bugs https://github.com/linguistics/utexas-latex/issues +catalogue-contact-development https://github.com/linguistics/utexas-latex/pulls +catalogue-contact-home https://github.com/linguistics/utexas-latex +catalogue-contact-repository https://github.com/linguistics/utexas-latex.git +catalogue-ctan /macros/latex/contrib/utexasthesis +catalogue-date 2018-09-14 05:26:10 +0200 +catalogue-license cc0 +catalogue-topics dissertation catalogue-version 1.0 name utf8mex category Package revision 15878 -shortdesc Tools to produce formats that read Polish language input. +shortdesc Tools to produce formats that read Polish language input relocated 1 longdesc The bundle provides files for building formats to read input in longdesc Polish encodings. -runfiles size=3 - RELOC/tex/mex/utf8mex/utf8-pl.tex - RELOC/tex/mex/utf8mex/utf8mex.ini - RELOC/tex/mex/utf8mex/utf8plsq.tex +containersize 2868 +containerchecksum 0cd4c549c7b00939dec5055705658f76f6ebbe5de70e082652b761673ba5a249924fb862a319512a9a124b9cdaae8906c74439bba97be8825d4d1ffc70642c8f +doccontainersize 7496 +doccontainerchecksum cd438089d90faa0e9144d23adb78ce91d85b80ce084cb92511cc23882c675cb654cb704aebeb623bb29c70b764c8a0ab19915607664895c457c583f376c1088e docfiles size=12 RELOC/doc/mex/utf8mex/Makefile - RELOC/doc/mex/utf8mex/README + RELOC/doc/mex/utf8mex/README details="Readme" RELOC/doc/mex/utf8mex/examples/Makefile RELOC/doc/mex/utf8mex/examples/catcode.tex RELOC/doc/mex/utf8mex/examples/list.tex @@ -173452,20 +294164,32 @@ docfiles size=12 RELOC/doc/mex/utf8mex/test-math.utf8.tex RELOC/doc/mex/utf8mex/test.utf8.tex RELOC/doc/mex/utf8mex/utf8math.el +runfiles size=3 + RELOC/tex/mex/utf8mex/utf8-pl.tex + RELOC/tex/mex/utf8mex/utf8mex.ini + RELOC/tex/mex/utf8mex/utf8plsq.tex catalogue-ctan /language/polish/utf8mex -catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics format name utopia category Package revision 15878 -shortdesc Adobe Utopia fonts. +shortdesc Adobe Utopia fonts relocated 1 longdesc The Adobe Standard Encoding set (upright and italic shapes, longdesc medium and bold weights) of the Utopia font family, which Adobe longdesc donated to the X Consortium. Macro support, and maths fonts longdesc that match the Utopia family, are provided by the Fourier and longdesc the Mathdesign font packages. +containersize 205556 +containerchecksum 5f58ac6dacaddf4110b2ac2f77fc0da90d5cfdff26d888b26af06cd6dd8f483c7a6a12e0aab3f50d4188aab9ab649d993ad89e74898d54c14b3de4948451279b +doccontainersize 2820 +doccontainerchecksum ba60eaf55cc08378560048ebc6f735e743449a18d2822e6027a86e595a9634461713ceb37d15b9f0c8239f1935f910bbdbd9a0d0d6fa1683174739f91c16a504 +docfiles size=3 + RELOC/doc/fonts/utopia/LICENSE-utopia.txt + RELOC/doc/fonts/utopia/README-utopia.txt runfiles size=168 RELOC/fonts/afm/adobe/utopia/putb8a.afm RELOC/fonts/afm/adobe/utopia/putbi8a.afm @@ -173525,37 +294249,15 @@ runfiles size=168 RELOC/fonts/vf/adobe/utopia/putro7t.vf RELOC/fonts/vf/adobe/utopia/putro8c.vf RELOC/fonts/vf/adobe/utopia/putro8t.vf -docfiles size=3 - RELOC/doc/fonts/utopia/LICENSE-utopia.txt - RELOC/doc/fonts/utopia/README-utopia.txt catalogue-ctan /fonts/utopia -catalogue-date 2014-05-21 17:41:13 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license other-free - -name ut-thesis -category Package -revision 38269 -shortdesc University of Toronto thesis style -relocated 1 -longdesc This not described as an 'official' class, just one distributed -longdesc "in the hope that it will be useful". A skeleton file, using -longdesc the class, is provided. -runfiles size=5 - RELOC/tex/latex/ut-thesis/ut-thesis.cls -docfiles size=5 - RELOC/doc/latex/ut-thesis/README - RELOC/doc/latex/ut-thesis/ut-thesis.tex -catalogue-also utorontothesis -catalogue-ctan /macros/latex/contrib/ut-thesis -catalogue-date 2015-09-01 20:49:19 +0200 -catalogue-license lppl1.3 -catalogue-topics dissertation -catalogue-version 2.1 +catalogue-topics font font-type1 name uwmslide category Package revision 27354 -shortdesc Slides with a simple Power Point like appearance. +shortdesc Slides with a simple Power Point like appearance relocated 1 longdesc A slide format which produces slides with a simple Power Point longdesc like appearance. Several useful features include: use of @@ -173567,39 +294269,49 @@ longdesc in the upper left corner of each slide if the logo file longdesc logo.eps is present. Preconfigured in landscape mode by default longdesc and uses Times Roman by default (originally, it was claimed, longdesc for simple conversion to PDF format). -runfiles size=4 - RELOC/tex/latex/uwmslide/uwmslide.cls +containersize 3916 +containerchecksum a4ee1019a36a66abb6614dcf6ffdd9706b705bd18a19d34fcedba441c355ce3a7573ea0ee53686b325c6d6b485fef99dd1254118d1cdd1603e1597b0fa17b751 +doccontainersize 11764 +doccontainerchecksum 7560c214913e9dc61d01ba8528e1bc147a4f261995294c8c938ffd853a9b6a174c1d1d47e49fa20351ea45d61dca03ef7f0ff085e8725820c24d2895a0d17530 docfiles size=12 - RELOC/doc/latex/uwmslide/README + RELOC/doc/latex/uwmslide/README details="Readme" RELOC/doc/latex/uwmslide/logo.eps RELOC/doc/latex/uwmslide/test.tex RELOC/doc/latex/uwmslide/vaux.eps +runfiles size=4 + RELOC/tex/latex/uwmslide/uwmslide.cls catalogue-ctan /macros/latex/contrib/uwmslide -catalogue-date 2012-08-13 12:34:19 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license artistic +catalogue-topics presentation name uwthesis category Package revision 15878 -shortdesc University of Washington thesis class. +shortdesc University of Washington thesis class relocated 1 -runfiles size=8 - RELOC/tex/latex/uwthesis/uwthesis.cls +containersize 8092 +containerchecksum 07bb8a3ab65110aef8de3b606ca53060dc8f29c76de55a5a84e87d43fe0e09dd16b48ec09b9a451f2285c06450ad059c4c3f9b8d48a21572a1bffbe2ee512a6c +doccontainersize 137544 +doccontainerchecksum 278a7ce5f0bab547de0c8dd4a26dc270500baf8abfca1ff1a8e76283fffff4a73835fbb1daea2f6864cb9dca3e0fff297887ab10305c6a87ea1d7384d964a9d5 docfiles size=51 RELOC/doc/latex/uwthesis/LICENSE - RELOC/doc/latex/uwthesis/README + RELOC/doc/latex/uwthesis/README details="Readme" RELOC/doc/latex/uwthesis/uwthesis.bib - RELOC/doc/latex/uwthesis/uwthesis.pdf + RELOC/doc/latex/uwthesis/uwthesis.pdf details="Package documentation/example of use" RELOC/doc/latex/uwthesis/uwthesis.tex +runfiles size=8 + RELOC/tex/latex/uwthesis/uwthesis.cls catalogue-ctan /macros/latex/contrib/uwthesis -catalogue-date 2011-11-23 23:58:18 +0100 +catalogue-date 2016-06-18 16:48:54 +0200 catalogue-license apache2 +catalogue-topics dissertation catalogue-version 6.13 name vak category Package revision 23431 -shortdesc BibTeX style for Russian Theses, books, etc. +shortdesc BibTeX style for Russian Theses, books, etc relocated 1 longdesc The file can be used to format the bibliographies of PhD longdesc theses, books etc., according to the latest Russian standards: @@ -173609,20 +294321,25 @@ longdesc situations. The style file provides an easy way to perform a longdesc semiautomatic, or a completely manual sort of the list of the longdesc references. Processing bibliographies produced by the style longdesc requires a 8-bit BibTeX system. -runfiles size=8 - RELOC/bibtex/bst/vak/vak.bst +containersize 5964 +containerchecksum b7606cf33b8e9d14f4ca4cced0620810eecc469faba959728d3b4d7f8d87023d600fb33f1739ce0e7d14d4a54936fbc682a54d8ad8c6b514a1f2baed2c79b2f1 +doccontainersize 91260 +doccontainerchecksum 1e6f148de79c2ecb5fcd03ff1509c3a509ee40795af0e7f7a95fdc64c403f2de7f9d9ca37716b6488cd496e2be0565749222ae95f8b97e5cf7e05b3877bb6d62 docfiles size=24 - RELOC/doc/bibtex/vak/README + RELOC/doc/bibtex/vak/README details="Readme" language="en" RELOC/doc/bibtex/vak/test-key.zip RELOC/doc/bibtex/vak/test.zip +runfiles size=8 + RELOC/bibtex/bst/vak/vak.bst catalogue-ctan /biblio/bibtex/contrib/vak -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics dissertation name vancouver category Package revision 34470 -shortdesc Bibliographic style file for Biomedical Journals. +shortdesc Bibliographic style file for Biomedical Journals relocated 1 longdesc This BibTeX style file is generated with the docstrip utility longdesc and modified manually to meet the Uniform Requirements for @@ -173630,73 +294347,136 @@ longdesc Manuscripts Submitted to Biomedical Journals as published in N longdesc Engl J Med 1997;336:309-315 (also known as the Vancouver longdesc style). The complete set of requirements may be viewed on the longdesc ICMJE web site. -runfiles size=10 - RELOC/bibtex/bst/vancouver/vancouver.bst +containersize 8384 +containerchecksum 8fc852e2137af0b1e0664ecdaf115a6c4c631faf840b5564b9dca2f8c457f8fe33bd7edd92ff4590c05ab13c23a9b1771b7e688ee6f6d700a9feb01f9a921170 +doccontainersize 88720 +doccontainerchecksum 50ec342e62a14f417b8a0d4085ca46aa701a9e2ae5630daa2159ddd6532a0c3d5769a0cd351c932bc54395f159d560a259e3996f4f157e42d0dfa41aeca6dc80 docfiles size=32 RELOC/doc/bibtex/vancouver/FAQ - RELOC/doc/bibtex/vancouver/README + RELOC/doc/bibtex/vancouver/README details="Readme" RELOC/doc/bibtex/vancouver/vancouver.bib - RELOC/doc/bibtex/vancouver/vancouver.pdf + RELOC/doc/bibtex/vancouver/vancouver.pdf details="Package documentation" RELOC/doc/bibtex/vancouver/vancouver.tex +runfiles size=10 + RELOC/bibtex/bst/vancouver/vancouver.bst catalogue-ctan /biblio/bibtex/contrib/vancouver -catalogue-date 2014-06-28 21:47:21 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics biomedical journalpub bibtex-sty + +name variablelm +category Package +revision 46611 +shortdesc Font definitions for the variable Latin Modern fonts +relocated 1 +longdesc This package provides a mechanism for scaling a typeface. It is +longdesc directed at the Latin Modern fonts and provides the font +longdesc definitions and the corresponding style file. This mechanism is +longdesc useful in mixed text compositions, for example Japanese-Latin. +containersize 3624 +containerchecksum e58a1c5a77861ed3a84f2fb372d6c3560129b656257e23a935fa9d7ce18c83b59f9863e29ff35c45c6ab800cd09aa2fe7bcb1fd01edbbe2e75112809c17faa9e +doccontainersize 133116 +doccontainerchecksum 58611f636d5aea5ee2935c75206e0d051345d7138d04668ec7875b3ee0493e39bba54b1941aaedf33abfeb7636602fa6ac7fe7e750837b425678eae97b7495fa +docfiles size=35 + RELOC/doc/fonts/variablelm/README.md details="Readme" + RELOC/doc/fonts/variablelm/control_scaling_lm_fonts.pdf details="Package documentation" + RELOC/doc/fonts/variablelm/control_scaling_lm_fonts.tex +runfiles size=14 + RELOC/tex/latex/variablelm/omlvlmm.fd + RELOC/tex/latex/variablelm/omlvlmr.fd + RELOC/tex/latex/variablelm/omsvlmr.fd + RELOC/tex/latex/variablelm/omsvlmsy.fd + RELOC/tex/latex/variablelm/omxvlmex.fd + RELOC/tex/latex/variablelm/ot1vlmr.fd + RELOC/tex/latex/variablelm/ot1vlmtt.fd + RELOC/tex/latex/variablelm/t1vlmr.fd + RELOC/tex/latex/variablelm/t1vlmss.fd + RELOC/tex/latex/variablelm/t1vlmssq.fd + RELOC/tex/latex/variablelm/t1vlmtt.fd + RELOC/tex/latex/variablelm/t1vlmvtt.fd + RELOC/tex/latex/variablelm/ts1vlmr.fd + RELOC/tex/latex/variablelm/variablelm.sty +catalogue-also lm +catalogue-contact-repository https://github.com/yuw/texmf-variablelm +catalogue-ctan /fonts/variablelm +catalogue-date 2018-02-13 21:32:25 +0100 +catalogue-license gfl +catalogue-topics font-cm font-virtual font-t1enc +catalogue-version 1.1.2 name variations category Package revision 15878 -shortdesc Typeset tables of variations of functions. +shortdesc Typeset tables of variations of functions relocated 1 longdesc The package provides macros for typesetting tables showing longdesc variations of functions according to French usage. These macros longdesc may be used by both LaTeX and plain TeX users. -runfiles size=2 - RELOC/tex/generic/variations/variations.sty - RELOC/tex/generic/variations/variations.tex +containersize 1320 +containerchecksum 71252475aec013adf9bf41460753a648420ea70fb093cadc667500a6884adcf0c6661a2d81053a733844a3f8595ccffb5ac5f7680689575d8485c47a1cc1e469 +doccontainersize 75756 +doccontainerchecksum 75d6d8afd13f6751bad23d0adc58355d75e355554dd95971dc16ac148150990e1362ec211a3f3e6fd832ce231dbd08e50ed9d44856c763e47ddb5374b1b182ff docfiles size=29 - RELOC/doc/generic/variations/ALIRE + RELOC/doc/generic/variations/ALIRE details="Package ALIRE" language="fr" RELOC/doc/generic/variations/COPYING - RELOC/doc/generic/variations/README - RELOC/doc/generic/variations/docvariations.pdf + RELOC/doc/generic/variations/README details="Package README" language="en" + RELOC/doc/generic/variations/docvariations.pdf details="Package documentation" language="fr" RELOC/doc/generic/variations/docvariations.tex +runfiles size=2 + RELOC/tex/generic/variations/variations.sty + RELOC/tex/generic/variations/variations.tex catalogue-ctan /macros/generic/variations -catalogue-date 2012-06-24 22:10:37 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics maths-tabvar catalogue-version 0.3 name varindex category Package revision 32262 -shortdesc Luxury frontend to the \index command. +shortdesc Luxury frontend to the \index command relocated 1 longdesc Provides a convenient front-end for the \index command. For longdesc example, with it you can generate multiple index entries in longdesc almost any form by a single command. The package is highly longdesc customizable, and works with all versions of LaTeX and probably longdesc most other TeX formats. -runfiles size=8 - RELOC/tex/latex/varindex/varindex.sty +containersize 6512 +containerchecksum fb7216b4cb06126970148788859d9c12a0626d25321cc591b2db5d7018ab2a76f5c6505d9cd47da6a3babc765dcedb6653a3ead2eea67f688cd883fe81d9f42a +doccontainersize 227344 +doccontainerchecksum 30b9f50b7357f12774f78f0792ee0321b5ba84d2c3dff96f5f98d87cf0bb811a2fee74b2bc691fef07a80eb65e13e42b657b74efb0ee334b4f04da7bfdd0b75e docfiles size=74 - RELOC/doc/latex/varindex/README - RELOC/doc/latex/varindex/varindex.pdf + RELOC/doc/latex/varindex/README details="Readme" + RELOC/doc/latex/varindex/varindex.pdf details="Package documentation" RELOC/doc/latex/varindex/varindex.tex RELOC/doc/latex/varindex/varindex.txt +srccontainersize 40500 +srccontainerchecksum 19571ec2000fb99ac8e1b188e2f6965748c78476bb3fb2d38c2f668b02d268817c6f2670b9bd51df48c2db8fca1e6f62ac738f378a6832368c74de297f19b679 srcfiles size=51 RELOC/source/latex/varindex/varindex.dtx RELOC/source/latex/varindex/varindex.ins +runfiles size=8 + RELOC/tex/latex/varindex/varindex.sty catalogue-ctan /macros/latex/contrib/varindex -catalogue-date 2013-11-27 07:34:41 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics index catalogue-version 2.3 name varisize category Package revision 15878 -shortdesc Change font size in Plain TeX. +shortdesc Change font size in Plain TeX relocated 1 longdesc A series of files, each of which defines a size-change macro. longdesc Note that 10point.tex is by convention called by one of the longdesc other files, so that there's always a "way back". +containersize 3204 +containerchecksum c1a900aa29601e9bcc5d1047ea5bca0bd3c079d05e8c42c8e3f85521cd8a1989425650d0e84ab0acf2a38e468bc4823e149cf1e799da8eea1d6af4554cbc0c94 +doccontainersize 440 +doccontainerchecksum f575e4faff4a80f72108ef5b97abb0bda08573669bb8b28592fa607538c632d3b59626282a0ff8d7805e6b66121b2c231618901a9dd71f0242e1a0875a3e2068 +docfiles size=1 + RELOC/doc/plain/varisize/README runfiles size=10 RELOC/tex/plain/varisize/10point.tex RELOC/tex/plain/varisize/10pointss.tex @@ -173708,49 +294488,62 @@ runfiles size=10 RELOC/tex/plain/varisize/7point.tex RELOC/tex/plain/varisize/8point.tex RELOC/tex/plain/varisize/9point.tex -docfiles size=1 - RELOC/doc/plain/varisize/README +catalogue-also plnfss ofs font-selection catalogue-ctan /macros/plain/contrib/varisize -catalogue-date 2012-06-24 22:10:37 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics font-sel name varsfromjobname category Package -revision 15878 -shortdesc Extract variables from the name of the LaTeX file. +revision 44154 +shortdesc Extract variables from the name of the LaTeX file relocated 1 longdesc The package allows the user to extract information from the job longdesc name, provided that the name has been structured appropriately: longdesc the package expects the file name to consist of a set of words longdesc separated by hyphens. -runfiles size=1 - RELOC/tex/latex/varsfromjobname/varsfromjobname.sty -docfiles size=12 - RELOC/doc/latex/varsfromjobname/README - RELOC/doc/latex/varsfromjobname/varsfromjobname.pdf +containersize 1448 +containerchecksum 0d5fb07c93fdd08570ef1dfa120870f4619b124cde769f48b4107c41827dd65c023840e1344aa283d0b21bfb0af2346135577510119579c531731f132bbfee1a +doccontainersize 185876 +doccontainerchecksum 57e3111b8426ace2a838a128dae49a6ffadc6892e4b85cfc83eae3b9422dc4188e505fcb2a281ff38cbeb18e385ba1da398111c5f00683568999004ffd5eaea7 +docfiles size=47 + RELOC/doc/latex/varsfromjobname/README.md details="Readme" + RELOC/doc/latex/varsfromjobname/varsfromjobname.pdf details="Package documentation" RELOC/doc/latex/varsfromjobname/varsfromjobname.tex +runfiles size=2 + RELOC/tex/latex/varsfromjobname/varsfromjobname.sty +catalogue-contact-home https://github.com/UweZiegenhagen/VarsFromJobname +catalogue-contact-repository https://github.com/UweZiegenhagen/VarsFromJobname catalogue-ctan /macros/latex/contrib/varsfromjobname -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-05-01 23:30:57 +0200 catalogue-license lppl -catalogue-version 0.5 +catalogue-topics doc-mgmt +catalogue-version 1.0 name varwidth category Package revision 24104 -shortdesc A variable-width minipage. +shortdesc A variable-width minipage relocated 1 longdesc The varwidth environment is superficially similar to minipage, longdesc but the specified width is just a maximum value -- the box may longdesc get a narrower "natural" width. -runfiles size=3 - RELOC/tex/latex/varwidth/varwidth.sty +containersize 4152 +containerchecksum d44fcd1912f1751ab18f5d7d00ed47f42bed3ad2863b35781a83df9c881943c3e1916d003361b6e64640326541f43a37abdb0a3cdfe07e4d0cf7980dfc5fe1bb +doccontainersize 25844 +doccontainerchecksum ba0c0d562a7c9db36637bb18fa6f0d01661b229c66b8f0d2bd7cbafe286b81485e84bcccd06c4d47561db8895cf8933ff11d08a8de0b01405d6c7dde443e86e6 docfiles size=10 RELOC/doc/latex/varwidth/miscdoc.sty - RELOC/doc/latex/varwidth/varwidth-doc.pdf + RELOC/doc/latex/varwidth/varwidth-doc.pdf details="Package documentation" RELOC/doc/latex/varwidth/varwidth-doc.tex +runfiles size=3 + RELOC/tex/latex/varwidth/varwidth.sty +catalogue-also pbox tabbingbox catalogue-ctan /macros/latex/contrib/varwidth -catalogue-date 2012-06-24 22:10:37 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics boxing fit-to-size catalogue-version 0.92 name vaucanson-g @@ -173760,7 +294553,17 @@ shortdesc PSTricks macros for drawing automata relocated 1 longdesc VauCanSon-G is a package that enables the user to draw automata longdesc within texts written using LaTeX. The package macros make use -longdesc of commands of PStricks +longdesc of commands of PStricks. +containersize 11360 +containerchecksum e4bf83ea01ff4162f95dd595b93635ed988ae081d0c65ada59ae64c6c64c730dbb92ae049d22dcc20d6204c5a7cbca5cd643be6c572e51a3aa17df88c6f1f700 +doccontainersize 288568 +doccontainerchecksum 520aabba38562e208b464fc0d4e9f9a138c238abb94b43e89864e4ac21acfd35e5d6e224e855ab4baf9feb1df736b7e937508f6245e5f873c5c8f8a75947e014 +docfiles size=108 + RELOC/doc/generic/vaucanson-g/CHANGES + RELOC/doc/generic/vaucanson-g/README details="Readme" + RELOC/doc/generic/vaucanson-g/VCManual-src/TwoStates.tex + RELOC/doc/generic/vaucanson-g/VCManual-src/VCManual.tex + RELOC/doc/generic/vaucanson-g/VCManual.pdf details="Package documentation" runfiles size=19 RELOC/tex/generic/vaucanson-g/VCColor-names.def RELOC/tex/generic/vaucanson-g/VCPref-beamer.tex @@ -173770,46 +294573,46 @@ runfiles size=19 RELOC/tex/generic/vaucanson-g/Vaucanson-G.tex RELOC/tex/generic/vaucanson-g/vaucanson-g.sty RELOC/tex/generic/vaucanson-g/vaucanson.sty -docfiles size=108 - RELOC/doc/generic/vaucanson-g/CHANGES - RELOC/doc/generic/vaucanson-g/README - RELOC/doc/generic/vaucanson-g/VCManual-src/TwoStates.tex - RELOC/doc/generic/vaucanson-g/VCManual-src/VCManual.tex - RELOC/doc/generic/vaucanson-g/VCManual.pdf catalogue-ctan /graphics/pstricks/contrib/vaucanson-g -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-09-15 14:20:37 +0200 catalogue-license lppl +catalogue-topics automata graphics-use catalogue-version 0.4 name vdmlisting category Package revision 29944 -shortdesc Typesetting VDM in ASCII syntax. +shortdesc Typesetting VDM in ASCII syntax relocated 1 longdesc The package is an extension for the listings package that longdesc provides a source code printer for LaTeX. This package defines longdesc new language definitions and listing environments for the three -longdesc language dialects of the Vienna Development Method: VDM-SL, VDM- -longdesc PP and VDM-RT. If one wants to typeset VDM with a mathematical -longdesc syntax instead of the ASCII syntax used here one should use the -longdesc vdm pacakge instead -runfiles size=2 - RELOC/tex/latex/vdmlisting/vdmlisting.sty +longdesc language dialects of the Vienna Development Method: VDM-SL, +longdesc VDM-PP and VDM-RT. If one wants to typeset VDM with a +longdesc mathematical syntax instead of the ASCII syntax used here one +longdesc should use the vdm pacakge instead +containersize 2476 +containerchecksum 58cab8cd7d23326b39e76a91db1bdb0b0cc9e1e6bf457d151af39a4c94886f623b8178de835e673118d5b797510d6f2fe5f97f6c0c8b5bcf679b9158ded3c941 +doccontainersize 67524 +doccontainerchecksum a71b798d364f429c4894db38863301c1601ba7f2bbb2cf8e4394b48c5b7e3541cefcf915ca52860c0c55744ac2aa8fad82ea66142ed2fbfa81c05da211f04f74 docfiles size=22 - RELOC/doc/latex/vdmlisting/README - RELOC/doc/latex/vdmlisting/vdmlisting.pdf + RELOC/doc/latex/vdmlisting/README details="Package Readme" + RELOC/doc/latex/vdmlisting/vdmlisting.pdf details="Package documentation" RELOC/doc/latex/vdmlisting/vdmlisting.tex +runfiles size=2 + RELOC/tex/latex/vdmlisting/vdmlisting.sty +catalogue-also listing vdm catalogue-ctan /macros/latex/contrib/vdmlisting -catalogue-date 2013-06-19 11:29:28 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics formal-spec listing catalogue-version 1.0 name velthuis category Package -revision 23224 +revision 50602 catalogue devanagari -shortdesc Typeset Devanagari. -relocated 1 +shortdesc Typeset Devanagari longdesc Frans Velthuis' preprocessor for Devanagari text, and fonts and longdesc macros to use when typesetting the processed text. The macros longdesc provide features that support Sanskrit, Hindi, Marathi, Nepali, @@ -173819,337 +294622,503 @@ longdesc formats. Users of modern TeX distributions may care to try the longdesc XeTeX based package, which is far preferable for users who can longdesc type Unicode text. depend xetex-devanagari +depend velthuis.ARCH execute addMixedMap dvng.map +containersize 4149444 +containerchecksum 9c4a81758b71d4ee815bfbb1d0336d50d6da4b71e5d7aab6d5797a259b165b2d9559afb30484f9c3582002d7d9c536f5479828490504e74ddd56719403757255 +doccontainersize 980000 +doccontainerchecksum d4d2f9692b173350419bff2f3e9ba2528ff21b467e93e63b991dda294bd562d4b0b25b5187d8348963d114bb4d28925ee74b20222e0946400cdd4a0b2b6194fe +docfiles size=289 + texmf-dist/doc/generic/velthuis/README details="Readme" + texmf-dist/doc/generic/velthuis/captions.dn + texmf-dist/doc/generic/velthuis/changes + texmf-dist/doc/generic/velthuis/copying + texmf-dist/doc/generic/velthuis/examples.dn + texmf-dist/doc/generic/velthuis/examples.pdf + texmf-dist/doc/generic/velthuis/hindi.dtx + texmf-dist/doc/generic/velthuis/hindi.ins + texmf-dist/doc/generic/velthuis/hindi.pdf + texmf-dist/doc/generic/velthuis/manual.pdf details="Package manual" + texmf-dist/doc/generic/velthuis/manual.tex + texmf-dist/doc/generic/velthuis/misspaal.dn + texmf-dist/doc/generic/velthuis/misspaal.pdf + texmf-dist/doc/generic/velthuis/vedasample.dn + texmf-dist/doc/generic/velthuis/vedasample.pdf + texmf-dist/doc/generic/velthuis/xetex-examples.pdf + texmf-dist/doc/generic/velthuis/xetex-examples.tex + texmf-dist/doc/generic/velthuis/xetex-misspaal.pdf + texmf-dist/doc/generic/velthuis/xetex-misspaal.tex + texmf-dist/doc/man/man1/devnag.1 + texmf-dist/doc/man/man1/devnag.man1.pdf runfiles size=1540 - RELOC/fonts/afm/public/velthuis/dvnb10.afm - RELOC/fonts/afm/public/velthuis/dvnb8.afm - RELOC/fonts/afm/public/velthuis/dvnb9.afm - RELOC/fonts/afm/public/velthuis/dvnbb10.afm - RELOC/fonts/afm/public/velthuis/dvnbb8.afm - RELOC/fonts/afm/public/velthuis/dvnbb9.afm - RELOC/fonts/afm/public/velthuis/dvnbbi10.afm - RELOC/fonts/afm/public/velthuis/dvnbbi8.afm - RELOC/fonts/afm/public/velthuis/dvnbbi9.afm - RELOC/fonts/afm/public/velthuis/dvnbi10.afm - RELOC/fonts/afm/public/velthuis/dvnbi8.afm - RELOC/fonts/afm/public/velthuis/dvnbi9.afm - RELOC/fonts/afm/public/velthuis/dvnc10.afm - RELOC/fonts/afm/public/velthuis/dvnc8.afm - RELOC/fonts/afm/public/velthuis/dvnc9.afm - RELOC/fonts/afm/public/velthuis/dvncb10.afm - RELOC/fonts/afm/public/velthuis/dvncb8.afm - RELOC/fonts/afm/public/velthuis/dvncb9.afm - RELOC/fonts/afm/public/velthuis/dvncbi10.afm - RELOC/fonts/afm/public/velthuis/dvncbi8.afm - RELOC/fonts/afm/public/velthuis/dvncbi9.afm - RELOC/fonts/afm/public/velthuis/dvnci10.afm - RELOC/fonts/afm/public/velthuis/dvnci8.afm - RELOC/fonts/afm/public/velthuis/dvnci9.afm - RELOC/fonts/afm/public/velthuis/dvng10.afm - RELOC/fonts/afm/public/velthuis/dvng8.afm - RELOC/fonts/afm/public/velthuis/dvng9.afm - RELOC/fonts/afm/public/velthuis/dvngb10.afm - RELOC/fonts/afm/public/velthuis/dvngb8.afm - RELOC/fonts/afm/public/velthuis/dvngb9.afm - RELOC/fonts/afm/public/velthuis/dvngbi10.afm - RELOC/fonts/afm/public/velthuis/dvngbi8.afm - RELOC/fonts/afm/public/velthuis/dvngbi9.afm - RELOC/fonts/afm/public/velthuis/dvngi10.afm - RELOC/fonts/afm/public/velthuis/dvngi8.afm - RELOC/fonts/afm/public/velthuis/dvngi9.afm - RELOC/fonts/afm/public/velthuis/dvnn10.afm - RELOC/fonts/afm/public/velthuis/dvnn8.afm - RELOC/fonts/afm/public/velthuis/dvnn9.afm - RELOC/fonts/afm/public/velthuis/dvnnb10.afm - RELOC/fonts/afm/public/velthuis/dvnnb8.afm - RELOC/fonts/afm/public/velthuis/dvnnb9.afm - RELOC/fonts/afm/public/velthuis/dvnnbi10.afm - RELOC/fonts/afm/public/velthuis/dvnnbi8.afm - RELOC/fonts/afm/public/velthuis/dvnnbi9.afm - RELOC/fonts/afm/public/velthuis/dvnni10.afm - RELOC/fonts/afm/public/velthuis/dvnni8.afm - RELOC/fonts/afm/public/velthuis/dvnni9.afm - RELOC/fonts/afm/public/velthuis/dvpb10.afm - RELOC/fonts/afm/public/velthuis/dvpb8.afm - RELOC/fonts/afm/public/velthuis/dvpb9.afm - RELOC/fonts/afm/public/velthuis/dvpc10.afm - RELOC/fonts/afm/public/velthuis/dvpc8.afm - RELOC/fonts/afm/public/velthuis/dvpc9.afm - RELOC/fonts/afm/public/velthuis/dvpn10.afm - RELOC/fonts/afm/public/velthuis/dvpn8.afm - RELOC/fonts/afm/public/velthuis/dvpn9.afm - RELOC/fonts/afm/public/velthuis/dvpnn10.afm - RELOC/fonts/afm/public/velthuis/dvpnn8.afm - RELOC/fonts/afm/public/velthuis/dvpnn9.afm - RELOC/fonts/map/dvips/velthuis/dvng.map - RELOC/fonts/source/public/velthuis/dnchars.mf - RELOC/fonts/source/public/velthuis/dndefs.mf - RELOC/fonts/source/public/velthuis/dngen.mf - RELOC/fonts/source/public/velthuis/dninit.mf - RELOC/fonts/source/public/velthuis/dvnb10.mf - RELOC/fonts/source/public/velthuis/dvnb8.mf - RELOC/fonts/source/public/velthuis/dvnb9.mf - RELOC/fonts/source/public/velthuis/dvnbb10.mf - RELOC/fonts/source/public/velthuis/dvnbb8.mf - RELOC/fonts/source/public/velthuis/dvnbb9.mf - RELOC/fonts/source/public/velthuis/dvnbbi10.mf - RELOC/fonts/source/public/velthuis/dvnbbi8.mf - RELOC/fonts/source/public/velthuis/dvnbbi9.mf - RELOC/fonts/source/public/velthuis/dvnbi10.mf - RELOC/fonts/source/public/velthuis/dvnbi8.mf - RELOC/fonts/source/public/velthuis/dvnbi9.mf - RELOC/fonts/source/public/velthuis/dvnc10.mf - RELOC/fonts/source/public/velthuis/dvnc8.mf - RELOC/fonts/source/public/velthuis/dvnc9.mf - RELOC/fonts/source/public/velthuis/dvncb10.mf - RELOC/fonts/source/public/velthuis/dvncb8.mf - RELOC/fonts/source/public/velthuis/dvncb9.mf - RELOC/fonts/source/public/velthuis/dvncbi10.mf - RELOC/fonts/source/public/velthuis/dvncbi8.mf - RELOC/fonts/source/public/velthuis/dvncbi9.mf - RELOC/fonts/source/public/velthuis/dvnci10.mf - RELOC/fonts/source/public/velthuis/dvnci8.mf - RELOC/fonts/source/public/velthuis/dvnci9.mf - RELOC/fonts/source/public/velthuis/dvng10.mf - RELOC/fonts/source/public/velthuis/dvng8.mf - RELOC/fonts/source/public/velthuis/dvng9.mf - RELOC/fonts/source/public/velthuis/dvngb10.mf - RELOC/fonts/source/public/velthuis/dvngb8.mf - RELOC/fonts/source/public/velthuis/dvngb9.mf - RELOC/fonts/source/public/velthuis/dvngbi10.mf - RELOC/fonts/source/public/velthuis/dvngbi8.mf - RELOC/fonts/source/public/velthuis/dvngbi9.mf - RELOC/fonts/source/public/velthuis/dvngi10.mf - RELOC/fonts/source/public/velthuis/dvngi8.mf - RELOC/fonts/source/public/velthuis/dvngi9.mf - RELOC/fonts/source/public/velthuis/dvnn10.mf - RELOC/fonts/source/public/velthuis/dvnn8.mf - RELOC/fonts/source/public/velthuis/dvnn9.mf - RELOC/fonts/source/public/velthuis/dvnnb10.mf - RELOC/fonts/source/public/velthuis/dvnnb8.mf - RELOC/fonts/source/public/velthuis/dvnnb9.mf - RELOC/fonts/source/public/velthuis/dvnnbi10.mf - RELOC/fonts/source/public/velthuis/dvnnbi8.mf - RELOC/fonts/source/public/velthuis/dvnnbi9.mf - RELOC/fonts/source/public/velthuis/dvnni10.mf - RELOC/fonts/source/public/velthuis/dvnni8.mf - RELOC/fonts/source/public/velthuis/dvnni9.mf - RELOC/fonts/source/public/velthuis/dvpb10.mf - RELOC/fonts/source/public/velthuis/dvpb8.mf - RELOC/fonts/source/public/velthuis/dvpb9.mf - RELOC/fonts/source/public/velthuis/dvpc10.mf - RELOC/fonts/source/public/velthuis/dvpc8.mf - RELOC/fonts/source/public/velthuis/dvpc9.mf - RELOC/fonts/source/public/velthuis/dvpn10.mf - RELOC/fonts/source/public/velthuis/dvpn8.mf - RELOC/fonts/source/public/velthuis/dvpn9.mf - RELOC/fonts/source/public/velthuis/dvpnn10.mf - RELOC/fonts/source/public/velthuis/dvpnn8.mf - RELOC/fonts/source/public/velthuis/dvpnn9.mf - RELOC/fonts/tfm/public/velthuis/dvnb10.tfm - RELOC/fonts/tfm/public/velthuis/dvnb8.tfm - RELOC/fonts/tfm/public/velthuis/dvnb9.tfm - RELOC/fonts/tfm/public/velthuis/dvnbb10.tfm - RELOC/fonts/tfm/public/velthuis/dvnbb8.tfm - RELOC/fonts/tfm/public/velthuis/dvnbb9.tfm - RELOC/fonts/tfm/public/velthuis/dvnbbi10.tfm - RELOC/fonts/tfm/public/velthuis/dvnbbi8.tfm - RELOC/fonts/tfm/public/velthuis/dvnbbi9.tfm - RELOC/fonts/tfm/public/velthuis/dvnbi10.tfm - RELOC/fonts/tfm/public/velthuis/dvnbi8.tfm - RELOC/fonts/tfm/public/velthuis/dvnbi9.tfm - RELOC/fonts/tfm/public/velthuis/dvnc10.tfm - RELOC/fonts/tfm/public/velthuis/dvnc8.tfm - RELOC/fonts/tfm/public/velthuis/dvnc9.tfm - RELOC/fonts/tfm/public/velthuis/dvncb10.tfm - RELOC/fonts/tfm/public/velthuis/dvncb8.tfm - RELOC/fonts/tfm/public/velthuis/dvncb9.tfm - RELOC/fonts/tfm/public/velthuis/dvncbi10.tfm - RELOC/fonts/tfm/public/velthuis/dvncbi8.tfm - RELOC/fonts/tfm/public/velthuis/dvncbi9.tfm - RELOC/fonts/tfm/public/velthuis/dvnci10.tfm - RELOC/fonts/tfm/public/velthuis/dvnci8.tfm - RELOC/fonts/tfm/public/velthuis/dvnci9.tfm - RELOC/fonts/tfm/public/velthuis/dvng10.tfm - RELOC/fonts/tfm/public/velthuis/dvng8.tfm - RELOC/fonts/tfm/public/velthuis/dvng9.tfm - RELOC/fonts/tfm/public/velthuis/dvngb10.tfm - RELOC/fonts/tfm/public/velthuis/dvngb8.tfm - RELOC/fonts/tfm/public/velthuis/dvngb9.tfm - RELOC/fonts/tfm/public/velthuis/dvngbi10.tfm - RELOC/fonts/tfm/public/velthuis/dvngbi8.tfm - RELOC/fonts/tfm/public/velthuis/dvngbi9.tfm - RELOC/fonts/tfm/public/velthuis/dvngi10.tfm - RELOC/fonts/tfm/public/velthuis/dvngi8.tfm - RELOC/fonts/tfm/public/velthuis/dvngi9.tfm - RELOC/fonts/tfm/public/velthuis/dvnn10.tfm - RELOC/fonts/tfm/public/velthuis/dvnn8.tfm - RELOC/fonts/tfm/public/velthuis/dvnn9.tfm - RELOC/fonts/tfm/public/velthuis/dvnnb10.tfm - RELOC/fonts/tfm/public/velthuis/dvnnb8.tfm - RELOC/fonts/tfm/public/velthuis/dvnnb9.tfm - RELOC/fonts/tfm/public/velthuis/dvnnbi10.tfm - RELOC/fonts/tfm/public/velthuis/dvnnbi8.tfm - RELOC/fonts/tfm/public/velthuis/dvnnbi9.tfm - RELOC/fonts/tfm/public/velthuis/dvnni10.tfm - RELOC/fonts/tfm/public/velthuis/dvnni8.tfm - RELOC/fonts/tfm/public/velthuis/dvnni9.tfm - RELOC/fonts/tfm/public/velthuis/dvpb10.tfm - RELOC/fonts/tfm/public/velthuis/dvpb8.tfm - RELOC/fonts/tfm/public/velthuis/dvpb9.tfm - RELOC/fonts/tfm/public/velthuis/dvpc10.tfm - RELOC/fonts/tfm/public/velthuis/dvpc8.tfm - RELOC/fonts/tfm/public/velthuis/dvpc9.tfm - RELOC/fonts/tfm/public/velthuis/dvpn10.tfm - RELOC/fonts/tfm/public/velthuis/dvpn8.tfm - RELOC/fonts/tfm/public/velthuis/dvpn9.tfm - RELOC/fonts/tfm/public/velthuis/dvpnn10.tfm - RELOC/fonts/tfm/public/velthuis/dvpnn8.tfm - RELOC/fonts/tfm/public/velthuis/dvpnn9.tfm - RELOC/fonts/type1/public/velthuis/dvnb10.pfb - RELOC/fonts/type1/public/velthuis/dvnb8.pfb - RELOC/fonts/type1/public/velthuis/dvnb9.pfb - RELOC/fonts/type1/public/velthuis/dvnbb10.pfb - RELOC/fonts/type1/public/velthuis/dvnbb8.pfb - RELOC/fonts/type1/public/velthuis/dvnbb9.pfb - RELOC/fonts/type1/public/velthuis/dvnbbi10.pfb - RELOC/fonts/type1/public/velthuis/dvnbbi8.pfb - RELOC/fonts/type1/public/velthuis/dvnbbi9.pfb - RELOC/fonts/type1/public/velthuis/dvnbi10.pfb - RELOC/fonts/type1/public/velthuis/dvnbi8.pfb - RELOC/fonts/type1/public/velthuis/dvnbi9.pfb - RELOC/fonts/type1/public/velthuis/dvnc10.pfb - RELOC/fonts/type1/public/velthuis/dvnc8.pfb - RELOC/fonts/type1/public/velthuis/dvnc9.pfb - RELOC/fonts/type1/public/velthuis/dvncb10.pfb - RELOC/fonts/type1/public/velthuis/dvncb8.pfb - RELOC/fonts/type1/public/velthuis/dvncb9.pfb - RELOC/fonts/type1/public/velthuis/dvncbi10.pfb - RELOC/fonts/type1/public/velthuis/dvncbi8.pfb - RELOC/fonts/type1/public/velthuis/dvncbi9.pfb - RELOC/fonts/type1/public/velthuis/dvnci10.pfb - RELOC/fonts/type1/public/velthuis/dvnci8.pfb - RELOC/fonts/type1/public/velthuis/dvnci9.pfb - RELOC/fonts/type1/public/velthuis/dvng10.pfb - RELOC/fonts/type1/public/velthuis/dvng8.pfb - RELOC/fonts/type1/public/velthuis/dvng9.pfb - RELOC/fonts/type1/public/velthuis/dvngb10.pfb - RELOC/fonts/type1/public/velthuis/dvngb8.pfb - RELOC/fonts/type1/public/velthuis/dvngb9.pfb - RELOC/fonts/type1/public/velthuis/dvngbi10.pfb - RELOC/fonts/type1/public/velthuis/dvngbi8.pfb - RELOC/fonts/type1/public/velthuis/dvngbi9.pfb - RELOC/fonts/type1/public/velthuis/dvngi10.pfb - RELOC/fonts/type1/public/velthuis/dvngi8.pfb - RELOC/fonts/type1/public/velthuis/dvngi9.pfb - RELOC/fonts/type1/public/velthuis/dvnn10.pfb - RELOC/fonts/type1/public/velthuis/dvnn8.pfb - RELOC/fonts/type1/public/velthuis/dvnn9.pfb - RELOC/fonts/type1/public/velthuis/dvnnb10.pfb - RELOC/fonts/type1/public/velthuis/dvnnb8.pfb - RELOC/fonts/type1/public/velthuis/dvnnb9.pfb - RELOC/fonts/type1/public/velthuis/dvnnbi10.pfb - RELOC/fonts/type1/public/velthuis/dvnnbi8.pfb - RELOC/fonts/type1/public/velthuis/dvnnbi9.pfb - RELOC/fonts/type1/public/velthuis/dvnni10.pfb - RELOC/fonts/type1/public/velthuis/dvnni8.pfb - RELOC/fonts/type1/public/velthuis/dvnni9.pfb - RELOC/fonts/type1/public/velthuis/dvpb10.pfb - RELOC/fonts/type1/public/velthuis/dvpb8.pfb - RELOC/fonts/type1/public/velthuis/dvpb9.pfb - RELOC/fonts/type1/public/velthuis/dvpc10.pfb - RELOC/fonts/type1/public/velthuis/dvpc8.pfb - RELOC/fonts/type1/public/velthuis/dvpc9.pfb - RELOC/fonts/type1/public/velthuis/dvpn10.pfb - RELOC/fonts/type1/public/velthuis/dvpn8.pfb - RELOC/fonts/type1/public/velthuis/dvpn9.pfb - RELOC/fonts/type1/public/velthuis/dvpnn10.pfb - RELOC/fonts/type1/public/velthuis/dvpnn8.pfb - RELOC/fonts/type1/public/velthuis/dvpnn9.pfb - RELOC/tex/generic/velthuis/hindi.ldf - RELOC/tex/generic/velthuis/hindi.sty - RELOC/tex/latex/velthuis/dev.sty - RELOC/tex/latex/velthuis/dev209.sty - RELOC/tex/latex/velthuis/devanagari.sty - RELOC/tex/latex/velthuis/dvngcite.sty - RELOC/tex/latex/velthuis/udn.fd - RELOC/tex/latex/velthuis/udnb.fd - RELOC/tex/latex/velthuis/udnc.fd - RELOC/tex/latex/velthuis/udnn.fd - RELOC/tex/latex/velthuis/udnp.fd - RELOC/tex/latex/velthuis/udnpb.fd - RELOC/tex/latex/velthuis/udnpc.fd - RELOC/tex/latex/velthuis/udnpn.fd - RELOC/tex/plain/velthuis/dnmacs.tex - RELOC/tex/xelatex/velthuis/hindicaptions.sty -docfiles size=283 - RELOC/doc/generic/velthuis/README - RELOC/doc/generic/velthuis/captions.dn - RELOC/doc/generic/velthuis/changes - RELOC/doc/generic/velthuis/copying - RELOC/doc/generic/velthuis/examples.dn - RELOC/doc/generic/velthuis/examples.pdf - RELOC/doc/generic/velthuis/hindi.dtx - RELOC/doc/generic/velthuis/hindi.ins - RELOC/doc/generic/velthuis/hindi.pdf - RELOC/doc/generic/velthuis/manual.pdf - RELOC/doc/generic/velthuis/manual.tex - RELOC/doc/generic/velthuis/misspaal.dn - RELOC/doc/generic/velthuis/misspaal.pdf - RELOC/doc/generic/velthuis/vedasample.dn - RELOC/doc/generic/velthuis/vedasample.pdf - RELOC/doc/generic/velthuis/xetex-examples.pdf - RELOC/doc/generic/velthuis/xetex-examples.tex - RELOC/doc/generic/velthuis/xetex-misspaal.pdf - RELOC/doc/generic/velthuis/xetex-misspaal.tex + texmf-dist/fonts/afm/public/velthuis/dvnb10.afm + texmf-dist/fonts/afm/public/velthuis/dvnb8.afm + texmf-dist/fonts/afm/public/velthuis/dvnb9.afm + texmf-dist/fonts/afm/public/velthuis/dvnbb10.afm + texmf-dist/fonts/afm/public/velthuis/dvnbb8.afm + texmf-dist/fonts/afm/public/velthuis/dvnbb9.afm + texmf-dist/fonts/afm/public/velthuis/dvnbbi10.afm + texmf-dist/fonts/afm/public/velthuis/dvnbbi8.afm + texmf-dist/fonts/afm/public/velthuis/dvnbbi9.afm + texmf-dist/fonts/afm/public/velthuis/dvnbi10.afm + texmf-dist/fonts/afm/public/velthuis/dvnbi8.afm + texmf-dist/fonts/afm/public/velthuis/dvnbi9.afm + texmf-dist/fonts/afm/public/velthuis/dvnc10.afm + texmf-dist/fonts/afm/public/velthuis/dvnc8.afm + texmf-dist/fonts/afm/public/velthuis/dvnc9.afm + texmf-dist/fonts/afm/public/velthuis/dvncb10.afm + texmf-dist/fonts/afm/public/velthuis/dvncb8.afm + texmf-dist/fonts/afm/public/velthuis/dvncb9.afm + texmf-dist/fonts/afm/public/velthuis/dvncbi10.afm + texmf-dist/fonts/afm/public/velthuis/dvncbi8.afm + texmf-dist/fonts/afm/public/velthuis/dvncbi9.afm + texmf-dist/fonts/afm/public/velthuis/dvnci10.afm + texmf-dist/fonts/afm/public/velthuis/dvnci8.afm + texmf-dist/fonts/afm/public/velthuis/dvnci9.afm + texmf-dist/fonts/afm/public/velthuis/dvng10.afm + texmf-dist/fonts/afm/public/velthuis/dvng8.afm + texmf-dist/fonts/afm/public/velthuis/dvng9.afm + texmf-dist/fonts/afm/public/velthuis/dvngb10.afm + texmf-dist/fonts/afm/public/velthuis/dvngb8.afm + texmf-dist/fonts/afm/public/velthuis/dvngb9.afm + texmf-dist/fonts/afm/public/velthuis/dvngbi10.afm + texmf-dist/fonts/afm/public/velthuis/dvngbi8.afm + texmf-dist/fonts/afm/public/velthuis/dvngbi9.afm + texmf-dist/fonts/afm/public/velthuis/dvngi10.afm + texmf-dist/fonts/afm/public/velthuis/dvngi8.afm + texmf-dist/fonts/afm/public/velthuis/dvngi9.afm + texmf-dist/fonts/afm/public/velthuis/dvnn10.afm + texmf-dist/fonts/afm/public/velthuis/dvnn8.afm + texmf-dist/fonts/afm/public/velthuis/dvnn9.afm + texmf-dist/fonts/afm/public/velthuis/dvnnb10.afm + texmf-dist/fonts/afm/public/velthuis/dvnnb8.afm + texmf-dist/fonts/afm/public/velthuis/dvnnb9.afm + texmf-dist/fonts/afm/public/velthuis/dvnnbi10.afm + texmf-dist/fonts/afm/public/velthuis/dvnnbi8.afm + texmf-dist/fonts/afm/public/velthuis/dvnnbi9.afm + texmf-dist/fonts/afm/public/velthuis/dvnni10.afm + texmf-dist/fonts/afm/public/velthuis/dvnni8.afm + texmf-dist/fonts/afm/public/velthuis/dvnni9.afm + texmf-dist/fonts/afm/public/velthuis/dvpb10.afm + texmf-dist/fonts/afm/public/velthuis/dvpb8.afm + texmf-dist/fonts/afm/public/velthuis/dvpb9.afm + texmf-dist/fonts/afm/public/velthuis/dvpc10.afm + texmf-dist/fonts/afm/public/velthuis/dvpc8.afm + texmf-dist/fonts/afm/public/velthuis/dvpc9.afm + texmf-dist/fonts/afm/public/velthuis/dvpn10.afm + texmf-dist/fonts/afm/public/velthuis/dvpn8.afm + texmf-dist/fonts/afm/public/velthuis/dvpn9.afm + texmf-dist/fonts/afm/public/velthuis/dvpnn10.afm + texmf-dist/fonts/afm/public/velthuis/dvpnn8.afm + texmf-dist/fonts/afm/public/velthuis/dvpnn9.afm + texmf-dist/fonts/map/dvips/velthuis/dvng.map + texmf-dist/fonts/source/public/velthuis/dnchars.mf + texmf-dist/fonts/source/public/velthuis/dndefs.mf + texmf-dist/fonts/source/public/velthuis/dngen.mf + texmf-dist/fonts/source/public/velthuis/dninit.mf + texmf-dist/fonts/source/public/velthuis/dvnb10.mf + texmf-dist/fonts/source/public/velthuis/dvnb8.mf + texmf-dist/fonts/source/public/velthuis/dvnb9.mf + texmf-dist/fonts/source/public/velthuis/dvnbb10.mf + texmf-dist/fonts/source/public/velthuis/dvnbb8.mf + texmf-dist/fonts/source/public/velthuis/dvnbb9.mf + texmf-dist/fonts/source/public/velthuis/dvnbbi10.mf + texmf-dist/fonts/source/public/velthuis/dvnbbi8.mf + texmf-dist/fonts/source/public/velthuis/dvnbbi9.mf + texmf-dist/fonts/source/public/velthuis/dvnbi10.mf + texmf-dist/fonts/source/public/velthuis/dvnbi8.mf + texmf-dist/fonts/source/public/velthuis/dvnbi9.mf + texmf-dist/fonts/source/public/velthuis/dvnc10.mf + texmf-dist/fonts/source/public/velthuis/dvnc8.mf + texmf-dist/fonts/source/public/velthuis/dvnc9.mf + texmf-dist/fonts/source/public/velthuis/dvncb10.mf + texmf-dist/fonts/source/public/velthuis/dvncb8.mf + texmf-dist/fonts/source/public/velthuis/dvncb9.mf + texmf-dist/fonts/source/public/velthuis/dvncbi10.mf + texmf-dist/fonts/source/public/velthuis/dvncbi8.mf + texmf-dist/fonts/source/public/velthuis/dvncbi9.mf + texmf-dist/fonts/source/public/velthuis/dvnci10.mf + texmf-dist/fonts/source/public/velthuis/dvnci8.mf + texmf-dist/fonts/source/public/velthuis/dvnci9.mf + texmf-dist/fonts/source/public/velthuis/dvng10.mf + texmf-dist/fonts/source/public/velthuis/dvng8.mf + texmf-dist/fonts/source/public/velthuis/dvng9.mf + texmf-dist/fonts/source/public/velthuis/dvngb10.mf + texmf-dist/fonts/source/public/velthuis/dvngb8.mf + texmf-dist/fonts/source/public/velthuis/dvngb9.mf + texmf-dist/fonts/source/public/velthuis/dvngbi10.mf + texmf-dist/fonts/source/public/velthuis/dvngbi8.mf + texmf-dist/fonts/source/public/velthuis/dvngbi9.mf + texmf-dist/fonts/source/public/velthuis/dvngi10.mf + texmf-dist/fonts/source/public/velthuis/dvngi8.mf + texmf-dist/fonts/source/public/velthuis/dvngi9.mf + texmf-dist/fonts/source/public/velthuis/dvnn10.mf + texmf-dist/fonts/source/public/velthuis/dvnn8.mf + texmf-dist/fonts/source/public/velthuis/dvnn9.mf + texmf-dist/fonts/source/public/velthuis/dvnnb10.mf + texmf-dist/fonts/source/public/velthuis/dvnnb8.mf + texmf-dist/fonts/source/public/velthuis/dvnnb9.mf + texmf-dist/fonts/source/public/velthuis/dvnnbi10.mf + texmf-dist/fonts/source/public/velthuis/dvnnbi8.mf + texmf-dist/fonts/source/public/velthuis/dvnnbi9.mf + texmf-dist/fonts/source/public/velthuis/dvnni10.mf + texmf-dist/fonts/source/public/velthuis/dvnni8.mf + texmf-dist/fonts/source/public/velthuis/dvnni9.mf + texmf-dist/fonts/source/public/velthuis/dvpb10.mf + texmf-dist/fonts/source/public/velthuis/dvpb8.mf + texmf-dist/fonts/source/public/velthuis/dvpb9.mf + texmf-dist/fonts/source/public/velthuis/dvpc10.mf + texmf-dist/fonts/source/public/velthuis/dvpc8.mf + texmf-dist/fonts/source/public/velthuis/dvpc9.mf + texmf-dist/fonts/source/public/velthuis/dvpn10.mf + texmf-dist/fonts/source/public/velthuis/dvpn8.mf + texmf-dist/fonts/source/public/velthuis/dvpn9.mf + texmf-dist/fonts/source/public/velthuis/dvpnn10.mf + texmf-dist/fonts/source/public/velthuis/dvpnn8.mf + texmf-dist/fonts/source/public/velthuis/dvpnn9.mf + texmf-dist/fonts/tfm/public/velthuis/dvnb10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnb8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnb9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnbb10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnbb8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnbb9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnbbi10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnbbi8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnbbi9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnbi10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnbi8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnbi9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnc10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnc8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnc9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvncb10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvncb8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvncb9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvncbi10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvncbi8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvncbi9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnci10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnci8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnci9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvng10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvng8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvng9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvngb10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvngb8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvngb9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvngbi10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvngbi8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvngbi9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvngi10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvngi8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvngi9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnn10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnn8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnn9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnnb10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnnb8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnnb9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnnbi10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnnbi8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnnbi9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnni10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnni8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvnni9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvpb10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvpb8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvpb9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvpc10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvpc8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvpc9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvpn10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvpn8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvpn9.tfm + texmf-dist/fonts/tfm/public/velthuis/dvpnn10.tfm + texmf-dist/fonts/tfm/public/velthuis/dvpnn8.tfm + texmf-dist/fonts/tfm/public/velthuis/dvpnn9.tfm + texmf-dist/fonts/type1/public/velthuis/dvnb10.pfb + texmf-dist/fonts/type1/public/velthuis/dvnb8.pfb + texmf-dist/fonts/type1/public/velthuis/dvnb9.pfb + texmf-dist/fonts/type1/public/velthuis/dvnbb10.pfb + texmf-dist/fonts/type1/public/velthuis/dvnbb8.pfb + texmf-dist/fonts/type1/public/velthuis/dvnbb9.pfb + texmf-dist/fonts/type1/public/velthuis/dvnbbi10.pfb + texmf-dist/fonts/type1/public/velthuis/dvnbbi8.pfb + texmf-dist/fonts/type1/public/velthuis/dvnbbi9.pfb + texmf-dist/fonts/type1/public/velthuis/dvnbi10.pfb + texmf-dist/fonts/type1/public/velthuis/dvnbi8.pfb + texmf-dist/fonts/type1/public/velthuis/dvnbi9.pfb + texmf-dist/fonts/type1/public/velthuis/dvnc10.pfb + texmf-dist/fonts/type1/public/velthuis/dvnc8.pfb + texmf-dist/fonts/type1/public/velthuis/dvnc9.pfb + texmf-dist/fonts/type1/public/velthuis/dvncb10.pfb + texmf-dist/fonts/type1/public/velthuis/dvncb8.pfb + texmf-dist/fonts/type1/public/velthuis/dvncb9.pfb + texmf-dist/fonts/type1/public/velthuis/dvncbi10.pfb + texmf-dist/fonts/type1/public/velthuis/dvncbi8.pfb + texmf-dist/fonts/type1/public/velthuis/dvncbi9.pfb + texmf-dist/fonts/type1/public/velthuis/dvnci10.pfb + texmf-dist/fonts/type1/public/velthuis/dvnci8.pfb + texmf-dist/fonts/type1/public/velthuis/dvnci9.pfb + texmf-dist/fonts/type1/public/velthuis/dvng10.pfb + texmf-dist/fonts/type1/public/velthuis/dvng8.pfb + texmf-dist/fonts/type1/public/velthuis/dvng9.pfb + texmf-dist/fonts/type1/public/velthuis/dvngb10.pfb + texmf-dist/fonts/type1/public/velthuis/dvngb8.pfb + texmf-dist/fonts/type1/public/velthuis/dvngb9.pfb + texmf-dist/fonts/type1/public/velthuis/dvngbi10.pfb + texmf-dist/fonts/type1/public/velthuis/dvngbi8.pfb + texmf-dist/fonts/type1/public/velthuis/dvngbi9.pfb + texmf-dist/fonts/type1/public/velthuis/dvngi10.pfb + texmf-dist/fonts/type1/public/velthuis/dvngi8.pfb + texmf-dist/fonts/type1/public/velthuis/dvngi9.pfb + texmf-dist/fonts/type1/public/velthuis/dvnn10.pfb + texmf-dist/fonts/type1/public/velthuis/dvnn8.pfb + texmf-dist/fonts/type1/public/velthuis/dvnn9.pfb + texmf-dist/fonts/type1/public/velthuis/dvnnb10.pfb + texmf-dist/fonts/type1/public/velthuis/dvnnb8.pfb + texmf-dist/fonts/type1/public/velthuis/dvnnb9.pfb + texmf-dist/fonts/type1/public/velthuis/dvnnbi10.pfb + texmf-dist/fonts/type1/public/velthuis/dvnnbi8.pfb + texmf-dist/fonts/type1/public/velthuis/dvnnbi9.pfb + texmf-dist/fonts/type1/public/velthuis/dvnni10.pfb + texmf-dist/fonts/type1/public/velthuis/dvnni8.pfb + texmf-dist/fonts/type1/public/velthuis/dvnni9.pfb + texmf-dist/fonts/type1/public/velthuis/dvpb10.pfb + texmf-dist/fonts/type1/public/velthuis/dvpb8.pfb + texmf-dist/fonts/type1/public/velthuis/dvpb9.pfb + texmf-dist/fonts/type1/public/velthuis/dvpc10.pfb + texmf-dist/fonts/type1/public/velthuis/dvpc8.pfb + texmf-dist/fonts/type1/public/velthuis/dvpc9.pfb + texmf-dist/fonts/type1/public/velthuis/dvpn10.pfb + texmf-dist/fonts/type1/public/velthuis/dvpn8.pfb + texmf-dist/fonts/type1/public/velthuis/dvpn9.pfb + texmf-dist/fonts/type1/public/velthuis/dvpnn10.pfb + texmf-dist/fonts/type1/public/velthuis/dvpnn8.pfb + texmf-dist/fonts/type1/public/velthuis/dvpnn9.pfb + texmf-dist/tex/generic/velthuis/hindi.ldf + texmf-dist/tex/generic/velthuis/hindi.sty + texmf-dist/tex/latex/velthuis/dev.sty + texmf-dist/tex/latex/velthuis/dev209.sty + texmf-dist/tex/latex/velthuis/devanagari.sty + texmf-dist/tex/latex/velthuis/dvngcite.sty + texmf-dist/tex/latex/velthuis/udn.fd + texmf-dist/tex/latex/velthuis/udnb.fd + texmf-dist/tex/latex/velthuis/udnc.fd + texmf-dist/tex/latex/velthuis/udnn.fd + texmf-dist/tex/latex/velthuis/udnp.fd + texmf-dist/tex/latex/velthuis/udnpb.fd + texmf-dist/tex/latex/velthuis/udnpc.fd + texmf-dist/tex/latex/velthuis/udnpn.fd + texmf-dist/tex/plain/velthuis/dnmacs.tex + texmf-dist/tex/xelatex/velthuis/hindicaptions.sty catalogue-ctan /language/devanagari/velthuis -catalogue-date 2013-12-13 11:15:58 +0100 +catalogue-date 2019-03-07 09:56:33 +0100 catalogue-license gpl -catalogue-version 2.15.1 +catalogue-topics indic font-indic font-mf font-type1 +catalogue-version 2.17.1 + +name velthuis.aarch64-linux +category Package +revision 48789 +shortdesc aarch64-linux files of velthuis +containersize 12764 +containerchecksum 2c70dd20aa4e98f0a3f167b747e1194660266e89db56c1ce0835a61161a6ade628104e21f5cdef536ac3b9d5920042bebf2c91a7dbc4cda5b18d3d4a12fea439 +binfiles arch=aarch64-linux size=12 + bin/aarch64-linux/devnag + +name velthuis.amd64-freebsd +category Package +revision 50445 +shortdesc amd64-freebsd files of velthuis +containersize 12972 +containerchecksum 21c83e46f903fba2ff31f068643359805bb140ce22759d1e0ccc0a4d1c2ece7e6ec524470a0713a4d8f8941dd9bf092b099a1e9d177075b2e0a5969192d767e4 +binfiles arch=amd64-freebsd size=9 + bin/amd64-freebsd/devnag + +name velthuis.amd64-netbsd +category Package +revision 48698 +shortdesc amd64-netbsd files of velthuis +containersize 11332 +containerchecksum dbadbe8f34ab5dd656f0a9011f97db2155e8949aaa354b1c9548e0ebe8d1c3898b5f8634c6bb576794301c95e6fb67ab11d9d1fecaac9171b4d57ad72f715e3a +binfiles arch=amd64-netbsd size=9 + bin/amd64-netbsd/devnag + +name velthuis.armhf-linux +category Package +revision 50150 +shortdesc armhf-linux files of velthuis +containersize 10888 +containerchecksum e9b0fcb279af0c64b5ea85093c7f06a9d906d56c89e5dcd60b449c7abd06aad7b3680d637a7f293a4c1513ecf37b15f310a92181b9601e39a1ae40fb5573b52e +binfiles arch=armhf-linux size=7 + bin/armhf-linux/devnag + +name velthuis.i386-cygwin +category Package +revision 50455 +shortdesc i386-cygwin files of velthuis +containersize 11608 +containerchecksum 89bef4062a3fe0e4a0a8760c95753c16f04e970f2d29e172eab1058d8c82f93f332e0b12abd25659e5c0e2d7db2567e169279c36a2cd93cc1aa818285b0f8d70 +binfiles arch=i386-cygwin size=8 + bin/i386-cygwin/devnag.exe + +name velthuis.i386-freebsd +category Package +revision 50473 +shortdesc i386-freebsd files of velthuis +containersize 10608 +containerchecksum 1cc1ee1735f9a00b6ed681b83a1e8bad2a702f80ad78cca695d2c6ff326e7abe3bfed87681a0f17936f83f8fe30f38acaee88bbbcf91b2eda8cef05f0fc84d41 +binfiles arch=i386-freebsd size=7 + bin/i386-freebsd/devnag + +name velthuis.i386-linux +category Package +revision 50281 +shortdesc i386-linux files of velthuis +containersize 11748 +containerchecksum e0d0a80e2280c998835b0ab9677d448c52d40a8dae8828d0f2b79c41060ef8404d70c452d77860a4b9f313d5ea42a63bf4d59ba972e4db465838da1224513f46 +binfiles arch=i386-linux size=7 + bin/i386-linux/devnag + +name velthuis.i386-netbsd +category Package +revision 50171 +shortdesc i386-netbsd files of velthuis +containersize 10216 +containerchecksum c9557a59cef07e06dab8e7591d48e17cee81f12558c11f1fc60fefbe6ce21150ce3f4615b719059da757712fbc23017122c51a1bafbecc106f0700f71a80406f +binfiles arch=i386-netbsd size=8 + bin/i386-netbsd/devnag + +name velthuis.i386-solaris +category Package +revision 46829 +shortdesc i386-solaris files of velthuis +containersize 12684 +containerchecksum 50ec3779de8eaa55ce4929d62481ca1c575721c744727e5a2f9b3c259e23f21514f854787d6733207f74435cf017308097e8e91a3d17e39ad461f9a6cf45b8af +binfiles arch=i386-solaris size=8 + bin/i386-solaris/devnag + +name velthuis.win32 +category Package +revision 50155 +shortdesc win32 files of velthuis +containersize 13560 +containerchecksum 4453493a24468bec13bd3c182fc57aa80f5d1048125174d4ceaadcfe35fac3305e21783890847f36977f74acd71265cf2696a1264e52d592a2362d645b143077 +binfiles arch=win32 size=8 + bin/win32/devnag.exe + +name velthuis.x86_64-cygwin +category Package +revision 50889 +shortdesc x86_64-cygwin files of velthuis +containersize 12668 +containerchecksum 23f5e72d138fbc70c644066f774db5040a262c10312f89eac4f1716b802875310391b839e21353f0dcdea5a205ae940014c1ab2967239ec39e9d5af45df6bb8b +binfiles arch=x86_64-cygwin size=8 + bin/x86_64-cygwin/devnag.exe + +name velthuis.x86_64-darwin +category Package +revision 50150 +shortdesc x86_64-darwin files of velthuis +containersize 14844 +containerchecksum de13cdd400f6d59ccee378de3707ab73acd7ea5c15144d9d32d585100e05561a99a478a1680493299057b28dd698f965cac5c16b12842b5ba4d803d1ad7f0852 +binfiles arch=x86_64-darwin size=10 + bin/x86_64-darwin/devnag + +name velthuis.x86_64-darwinlegacy +category Package +revision 50282 +shortdesc x86_64-darwinlegacy files of velthuis +containersize 11948 +containerchecksum 8e9f77a4e954e9c37c9b2f2b0750c0ff50edcdd265034b2249538bc76518b10a54a87c537ff3054d16f52872e973ee15e533f37d771b41c41b7851ab49adab39 +binfiles arch=x86_64-darwinlegacy size=8 + bin/x86_64-darwinlegacy/devnag + +name velthuis.x86_64-linux +category Package +revision 50281 +shortdesc x86_64-linux files of velthuis +containersize 12160 +containerchecksum 7466f544cc1e08574c66b592b39bb4cda0451a2a4b58f1b3c20c4617cfa7cf0df79c1dce10a11a5d36d1c531a1338a8f2448fe5e89791dcb98c6eb9c6e69aa11 +binfiles arch=x86_64-linux size=8 + bin/x86_64-linux/devnag + +name velthuis.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of velthuis +containersize 13648 +containerchecksum 4b2907f146976bbe74390fb78039f4f5e5055525384346275ba46a2d12b20e6428f76ea96d11d641e1ce018b98d9662899d548ea235812c5bb65f765fb15a0ae +binfiles arch=x86_64-linuxmusl size=10 + bin/x86_64-linuxmusl/devnag + +name velthuis.x86_64-solaris +category Package +revision 46829 +shortdesc x86_64-solaris files of velthuis +containersize 13800 +containerchecksum 5e9fc63ae03524198d5fd6289682b8bc177a157100614d8e29697e7903ba74fe8d17f36a1eae866f7c1e1cc2edb5d8f664c8a1b546a42e97db6012d8645661b9 +binfiles arch=x86_64-solaris size=10 + bin/x86_64-solaris/devnag + +name venn +category Package +revision 15878 +shortdesc Creating Venn diagrams with MetaPost +relocated 1 +longdesc MetaPost macros for venn diagrams. +containersize 2120 +containerchecksum 617ba85e996943d62a33acb2535e23700fffc63331741065faee558bebde608232a31bd73aa79ad707b107a9adda8b454f9b81dee184a64d94f32c44d76180c0 +doccontainersize 684 +doccontainerchecksum 0b1940cdc2bcbb7e2f103497622c4d5971abf4f6f4885f60b35a360cd655c34cd789ecbfbef9d35c61611ef22198200b11008f4f59588a5cd111870b77ba19d5 +docfiles size=1 + RELOC/doc/metapost/venn/README +runfiles size=2 + RELOC/metapost/venn/venn.mp +catalogue-also venndiagram +catalogue-ctan /graphics/metapost/contrib/macros/venn +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics diagram-maths name venndiagram category Package -revision 28069 -shortdesc Creating Venn diagrams with TikZ. +revision 47952 +shortdesc Creating Venn diagrams with TikZ relocated 1 longdesc The package assists generation of simple two- and three-set longdesc Venn diagrams for lectures or assignment sheets. The package longdesc requires the TikZ package. -runfiles size=6 - RELOC/tex/latex/venndiagram/venndiagram.sty -docfiles size=82 +containersize 4200 +containerchecksum cf57b84165067234f5be58b2300eebb77339c33b883895e47cffdbc7c4acb6d013db7ace1eb47ef491e21526cea8b3ab993fac836498bfa16a5cea700caedd5b +doccontainersize 338640 +doccontainerchecksum 966f7eea0d4c40004b9710c53fdd6838b757a2c8ed47b4098ca2d47834ba52575ac7c062497f1a6d26dadfcf0d7f95f2213d34bc638262520aade0e78beac827 +docfiles size=88 RELOC/doc/latex/venndiagram/CHANGES - RELOC/doc/latex/venndiagram/INSTALL - RELOC/doc/latex/venndiagram/README - RELOC/doc/latex/venndiagram/samples/venn-sample.pdf + RELOC/doc/latex/venndiagram/README details="Readme" + RELOC/doc/latex/venndiagram/samples/venn-sample.pdf details="Example of use" RELOC/doc/latex/venndiagram/samples/venn-sample.tex - RELOC/doc/latex/venndiagram/venndiagram.pdf -srcfiles size=14 + RELOC/doc/latex/venndiagram/venndiagram.pdf details="Package documentation" +srccontainersize 9832 +srccontainerchecksum 16bfa22856952e9c0595532432eb774a2ef44f52950002db670e5f3e22af02981305ed5eda1265b6d1a97f43d9a6292311bad5268a562aff6ab00f4a14a058f7 +srcfiles size=22 RELOC/source/latex/venndiagram/venndiagram.dtx RELOC/source/latex/venndiagram/venndiagram.ins +runfiles size=11 + RELOC/tex/latex/venndiagram/venndiagram.sty +catalogue-also venn +catalogue-contact-home http://www.dickimaw-books.com/ catalogue-ctan /macros/latex/contrib/venndiagram -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.0 - -name venn -category Package -revision 15878 -shortdesc Creating Venn diagrams with MetaPost. -relocated 1 -longdesc MetaPost macros for venn diagrams. -runfiles size=2 - RELOC/metapost/venn/venn.mp -docfiles size=1 - RELOC/doc/metapost/venn/README -catalogue-ctan /graphics/metapost/contrib/macros/venn/venn.mp -catalogue-date 2012-10-24 15:39:48 +0200 +catalogue-date 2018-06-07 18:52:53 +0200 catalogue-license lppl +catalogue-topics diagram-maths pgf-tikz +catalogue-version 1.2 name venturisadf category Package revision 19444 -shortdesc Venturis ADF fonts collection. +shortdesc Venturis ADF fonts collection relocated 1 longdesc Serif and sans serif complete text font families, in both Adobe longdesc Type 1 and OpenType formats for publication. The family is @@ -174162,6 +295131,48 @@ execute addMap yv2.map execute addMap yv3.map execute addMap yvo.map execute addMap yvt.map +containersize 3866864 +containerchecksum 0f6b7369c1d589f9725897182f854f008b73dbda47078285635e87d480011bea0610da81512416b0963aa55487d646cd2a957002552ef2b8609d4536c0dd96bf +doccontainersize 412772 +doccontainerchecksum b46066744794a8ae1443b18bf1f6ce3d586c8ee8fa5c3273db608751979089b2407a6feab421a3c3c738a682e83e2f44bc5ac86eef1d51fa914ed0f0df985bcb +docfiles size=122 + RELOC/doc/fonts/venturisadf/LICENSE-utopia.txt + RELOC/doc/fonts/venturisadf/LIST-Venturis.txt + RELOC/doc/fonts/venturisadf/README details="Readme" + RELOC/doc/fonts/venturisadf/manifest.txt + RELOC/doc/fonts/venturisadf/venturisadf.pdf details="Documentation: installation and use" + RELOC/doc/fonts/venturisadf/venturisadf.tex +srccontainersize 14752 +srccontainerchecksum 2deac2b1cd151e41ea604d99209174b28de33d9f9358353b7d8b120c8e3cf45552947497e6d54cdf4024f5a071c39246221fd25cbca09cee7984755036993a40 +srcfiles size=75 + RELOC/source/fonts/venturisadf/lining.etx + RELOC/source/fonts/venturisadf/oldstyle.etx + RELOC/source/fonts/venturisadf/rename.venturis + RELOC/source/fonts/venturisadf/rename.venturis2 + RELOC/source/fonts/venturisadf/rename.venturisold + RELOC/source/fonts/venturisadf/rename.venturissans + RELOC/source/fonts/venturisadf/rename.venturissans2 + RELOC/source/fonts/venturisadf/rename.venturistitling + RELOC/source/fonts/venturisadf/resetalt.mtx + RELOC/source/fonts/venturisadf/t1-dotalt-f_f.etx + RELOC/source/fonts/venturisadf/t1-f_f.etx + RELOC/source/fonts/venturisadf/t1-venturis.etx + RELOC/source/fonts/venturisadf/t1-venturisold-longs.etx + RELOC/source/fonts/venturisadf/t1-venturisold.etx + RELOC/source/fonts/venturisadf/t1j-f_f.etx + RELOC/source/fonts/venturisadf/t1j-venturis.etx + RELOC/source/fonts/venturisadf/ts1-euro.etx + RELOC/source/fonts/venturisadf/ucdotalt.etx + RELOC/source/fonts/venturisadf/yv1-drv.tex + RELOC/source/fonts/venturisadf/yv1-map.tex + RELOC/source/fonts/venturisadf/yv2-drv.tex + RELOC/source/fonts/venturisadf/yv2-map.tex + RELOC/source/fonts/venturisadf/yv3-drv.tex + RELOC/source/fonts/venturisadf/yv3-map.tex + RELOC/source/fonts/venturisadf/yvo-drv.tex + RELOC/source/fonts/venturisadf/yvo-map.tex + RELOC/source/fonts/venturisadf/yvt-drv.tex + RELOC/source/fonts/venturisadf/yvt-map.tex runfiles size=2660 RELOC/fonts/afm/arkandis/venturis/yvtb8a.afm RELOC/fonts/afm/arkandis/venturis/yvtb8ac.afm @@ -174944,51 +295955,17 @@ runfiles size=2660 RELOC/tex/latex/venturissans/ts1yv1d.fd RELOC/tex/latex/venturissans2/t1yv3.fd RELOC/tex/latex/venturissans2/ts1yv3.fd -docfiles size=122 - RELOC/doc/fonts/venturisadf/LICENSE-utopia.txt - RELOC/doc/fonts/venturisadf/LIST-Venturis.txt - RELOC/doc/fonts/venturisadf/README - RELOC/doc/fonts/venturisadf/manifest.txt - RELOC/doc/fonts/venturisadf/venturisadf.pdf - RELOC/doc/fonts/venturisadf/venturisadf.tex -srcfiles size=75 - RELOC/source/fonts/venturisadf/lining.etx - RELOC/source/fonts/venturisadf/oldstyle.etx - RELOC/source/fonts/venturisadf/rename.venturis - RELOC/source/fonts/venturisadf/rename.venturis2 - RELOC/source/fonts/venturisadf/rename.venturisold - RELOC/source/fonts/venturisadf/rename.venturissans - RELOC/source/fonts/venturisadf/rename.venturissans2 - RELOC/source/fonts/venturisadf/rename.venturistitling - RELOC/source/fonts/venturisadf/resetalt.mtx - RELOC/source/fonts/venturisadf/t1-dotalt-f_f.etx - RELOC/source/fonts/venturisadf/t1-f_f.etx - RELOC/source/fonts/venturisadf/t1-venturis.etx - RELOC/source/fonts/venturisadf/t1-venturisold-longs.etx - RELOC/source/fonts/venturisadf/t1-venturisold.etx - RELOC/source/fonts/venturisadf/t1j-f_f.etx - RELOC/source/fonts/venturisadf/t1j-venturis.etx - RELOC/source/fonts/venturisadf/ts1-euro.etx - RELOC/source/fonts/venturisadf/ucdotalt.etx - RELOC/source/fonts/venturisadf/yv1-drv.tex - RELOC/source/fonts/venturisadf/yv1-map.tex - RELOC/source/fonts/venturisadf/yv2-drv.tex - RELOC/source/fonts/venturisadf/yv2-map.tex - RELOC/source/fonts/venturisadf/yv3-drv.tex - RELOC/source/fonts/venturisadf/yv3-map.tex - RELOC/source/fonts/venturisadf/yvo-drv.tex - RELOC/source/fonts/venturisadf/yvo-map.tex - RELOC/source/fonts/venturisadf/yvt-drv.tex - RELOC/source/fonts/venturisadf/yvt-map.tex +catalogue-contact-home http://arkandis.tuxfamily.org/tugfonts.htm catalogue-ctan /fonts/venturisadf -catalogue-date 2014-05-21 17:41:13 +0200 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license other-free +catalogue-topics font font-type1 font-otf catalogue-version 1.005 name verbasef category Package revision 21922 -shortdesc VERBatim Automatic Splitting of External Files. +shortdesc VERBatim Automatic Splitting of External Files relocated 1 longdesc The package allows you to input (subsections of a) file, print longdesc them in verbatim mode, while automatically breaking up the @@ -174998,20 +295975,25 @@ longdesc which forces LaTeX to place the figure at the spot of longdesc invocation, rather than floating the figures to the top of the longdesc next page. The package requires the verbatim, here and vrbexin longdesc packages. -runfiles size=4 - RELOC/tex/latex/verbasef/verbasef.sty +containersize 4456 +containerchecksum 483a75883ea602f674abec796199c5206420079c6ad5e4c3ac22bd836e7ce02f686cc8b9b749f806fe8e44bce8bd35fc6b17865fc076c72f2223143ee0e8a123 +doccontainersize 336984 +doccontainerchecksum c88b1275eb4e3b87172e6cd157ad868b7b230d96d00ca0dc550757fdb89648a40b1090b771dcd0776b6f86a9194c553f265d990220348e5bbf9c7aa792f42914 docfiles size=84 - RELOC/doc/latex/verbasef/verbasef-doc.pdf + RELOC/doc/latex/verbasef/verbasef-doc.pdf details="Package documentation" RELOC/doc/latex/verbasef/verbasef-doc.tex +runfiles size=4 + RELOC/tex/latex/verbasef/verbasef.sty catalogue-ctan /macros/latex/contrib/verbasef -catalogue-date 2012-04-10 18:37:25 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics verbatim listing catalogue-version 1.1 name verbatimbox category Package revision 33197 -shortdesc Deposit verbatim text in a box. +shortdesc Deposit verbatim text in a box relocated 1 longdesc The package provides a verbbox environment (which uses longdesc techniques similar to those of the boxedverbatim environment of @@ -175023,36 +296005,47 @@ longdesc valuable use is in places where the standard verbatim longdesc environment (which is based on a trivlist) may not appear. The longdesc package makes use of the verbatim package (which is a required longdesc part of any LaTeX distribution). -runfiles size=3 - RELOC/tex/latex/verbatimbox/verbatimbox.sty +containersize 3472 +containerchecksum dc686ec1e86c877a6f1467f4935f2337aedfaec32bdf867985ef05405569572c72d3593e75580c72a7bb3ee698798813094eabf738b3157194517839fbe47de5 +doccontainersize 246384 +doccontainerchecksum 9f8fa05294b68fb0994f01e36b468d341b76aa97bde983c7eab781c92c8bfd898033235a328a1fa858dee457f515d6640f780b330600418f2a7eb0fb45f0ef3f docfiles size=69 - RELOC/doc/latex/verbatimbox/README - RELOC/doc/latex/verbatimbox/verbatimbox.pdf + RELOC/doc/latex/verbatimbox/README details="Readme" + RELOC/doc/latex/verbatimbox/verbatimbox.pdf details="package documentation" RELOC/doc/latex/verbatimbox/verbatimbox.tex +runfiles size=3 + RELOC/tex/latex/verbatimbox/verbatimbox.sty +catalogue-also fancyvrb catalogue-ctan /macros/latex/contrib/verbatimbox -catalogue-date 2014-03-12 19:18:01 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics verbatim boxing catalogue-version 3.13 name verbatimcopy category Package revision 15878 -shortdesc Make copies of text documents from within LaTeX. +shortdesc Make copies of text documents from within LaTeX relocated 1 longdesc This package provides \VerbatimCopy{in}{out} that will enable longdesc LaTeX to take a verbatim copy of one text file, and save it longdesc under another name. The package provides a means to specify the longdesc output directory to be used, but does no checking and may longdesc therefore overwrite an important file if used injudiciously. -runfiles size=2 - RELOC/tex/latex/verbatimcopy/verbatimcopy.sty +containersize 2676 +containerchecksum e415f9d74f35e28c73bec5442124b7c426aff8de013aa8a2af9c234ae3ea20c131d5ad21803c92eaaf6d0aef6584b7f9b83218f9665a959ec0d6ba3ef606b081 +doccontainersize 164540 +doccontainerchecksum 0281da688f11d2a2fefc053d8f7866878b337ee85114c551176d6c329009f8c1a8479ccb29f202106f745ba215728e7f08509898182521bcac433699e22843a0 docfiles size=46 - RELOC/doc/latex/verbatimcopy/README - RELOC/doc/latex/verbatimcopy/verbatimcopy.pdf + RELOC/doc/latex/verbatimcopy/README details="Readme" + RELOC/doc/latex/verbatimcopy/verbatimcopy.pdf details="Package documentation" RELOC/doc/latex/verbatimcopy/verbatimcopy.tex +runfiles size=2 + RELOC/tex/latex/verbatimcopy/verbatimcopy.sty catalogue-ctan /macros/latex/contrib/verbatimcopy -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics verbatim catalogue-version 0.06 name verbdef @@ -175060,87 +296053,89 @@ category Package revision 17177 shortdesc Define commands which expand to verbatim text relocated 1 -longdesc The package defines a single command \verbdef (which has a *- -longdesc form, like \verb). \verbdef will define a robust command whose -longdesc body expands to verbatim text. By using commands defined by -longdesc \verbdef, one can put verbatim text into the arguments of +longdesc The package defines a single command \verbdef (which has a +longdesc *-form, like \verb). \verbdef will define a robust command +longdesc whose body expands to verbatim text. By using commands defined +longdesc by \verbdef, one can put verbatim text into the arguments of longdesc commands; since the defined command is robust, it doesn't longdesc matter if the argument is moving. (Full details of syntax and longdesc caveats about use are in comments in the file itself.) -runfiles size=1 - RELOC/tex/latex/verbdef/verbdef.sty +containersize 1684 +containerchecksum f6bcac8b35bfe707d4e39cf625987ddee6197977894e9f8ded9e3a715e0968d2d1fab07c57edf1d38150ae0c9cfc937230c9fccec431e73ae235a4cd44ed8609 +doccontainersize 54124 +doccontainerchecksum e64d4bf3018de72a131e7688ebbfcbaa59914c0542d2c632a91097a77f404307f9bdfc613638badb3ccca3854313f17a7a5bfb6426f467bcc98ed235af6ba49c docfiles size=17 - RELOC/doc/latex/verbdef/verbdef.pdf + RELOC/doc/latex/verbdef/verbdef.pdf details="Package documentation" RELOC/doc/latex/verbdef/verbdef.tex +runfiles size=1 + RELOC/tex/latex/verbdef/verbdef.sty +catalogue-also newverbs +catalogue-contact-repository https://github.com/rf-latex/verbdef +catalogue-contact-support https://github.com/rf-latex/verbdef/issues catalogue-ctan /macros/latex/contrib/verbdef -catalogue-date 2012-08-16 22:32:31 +0200 +catalogue-date 2018-09-15 16:02:02 +0200 catalogue-license lppl +catalogue-topics verbatim catalogue-version 0.2 name verbments category Package revision 23670 -shortdesc Syntax highlighting of source code in LaTeX documents. +shortdesc Syntax highlighting of source code in LaTeX documents relocated 1 longdesc The package provides an environment for syntax highlighting longdesc source code in LaTeX documents. The highlighted source code longdesc output is formatted via powerful Pygments library of the Python longdesc language. -runfiles size=2 - RELOC/tex/latex/verbments/verbments.sty +containersize 2200 +containerchecksum 7b5780efe1b6e4cc62909df5d5cd4a03be3dc83717f20738a83f37f539103ad12e382c0a3891b8e81b44086f92b7277b17e88c4e7d81123c04941c38114f23c8 +doccontainersize 74784 +doccontainerchecksum 744471659373efbe040bd0698a9b33a0942d5df33312ad3cdd0f02c0e16fd2c67ea44c4ab13ce83ddca6a5e8ca68c8c8bc40c1a64470a9716511e2275683b004 docfiles size=28 - RELOC/doc/latex/verbments/README - RELOC/doc/latex/verbments/verbments.pdf + RELOC/doc/latex/verbments/README details="Readme" + RELOC/doc/latex/verbments/verbments.pdf details="Package documentation" RELOC/doc/latex/verbments/verbments.tex +runfiles size=2 + RELOC/tex/latex/verbments/verbments.sty +catalogue-also minted texments catalogue-ctan /macros/latex/contrib/verbments -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics listing catalogue-version 1.2 name verse category Package revision 34017 -shortdesc Aids for typesetting simple verse. +shortdesc Aids for typesetting simple verse relocated 1 longdesc The package documentation discusses approaches to the problem; longdesc the package is strong on layout, from simple alternate-line longdesc indentation to the Mouse's tale from Alice in Wonderland. -runfiles size=3 - RELOC/tex/latex/verse/verse.sty +containersize 3160 +containerchecksum 3f9878dea106ec87f2b64960c5824fda6eb9f700b753a530cec7e1b8519dc9a817cf7ea74c13eb806497740501122790fb29f6e3cc383a8a89ad10e756b7a00a +doccontainersize 422968 +doccontainerchecksum 6f255167db9ebb84cf86a14e6999410efb22d087d97b82837c3ebc5bf69f0990e77ae0325618ba3ea02c116741422a531f646929eab2b5810b9f3978be6651f2 docfiles size=105 - RELOC/doc/latex/verse/README - RELOC/doc/latex/verse/verse.pdf + RELOC/doc/latex/verse/README details="Readme" + RELOC/doc/latex/verse/verse.pdf details="Package documentation" +srccontainersize 15460 +srccontainerchecksum ce1f07f40bd329383d8a0fc97038ee975d61b58eb0ff60f8a1894a6028b2afb9db58b7db599d252cb88fbc040d9938b7b934b6e8ad683e7f4de2be9a15b37820 srcfiles size=16 RELOC/source/latex/verse/verse.dtx RELOC/source/latex/verse/verse.ins +runfiles size=3 + RELOC/tex/latex/verse/verse.sty catalogue-ctan /macros/latex/contrib/verse -catalogue-date 2014-05-10 11:58:31 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics verse catalogue-version 2.4b -name versions -category Package -revision 21921 -shortdesc Optionally omit pieces of text. -relocated 1 -longdesc Stephan Bellantoni's version has provided preamble commands for -longdesc selecting environments to be included/excluded. This package -longdesc does the same, but corrects, improves, and extends it in both -longdesc implementation and function. -runfiles size=4 - RELOC/tex/latex/versions/versions.sty -docfiles size=89 - RELOC/doc/latex/versions/versions-doc.pdf - RELOC/doc/latex/versions/versions-doc.tex -catalogue-ctan /macros/latex/contrib/versions -catalogue-date 2011-09-30 22:48:48 +0200 -catalogue-license lppl1.3 -catalogue-version 0.55 - name version category Package revision 21920 -shortdesc Conditionally include text. +shortdesc Conditionally include text relocated 1 longdesc Defines macros \includeversion{NAME} and \excludeversion{NAME}, longdesc each of which defines an environment NAME whose text is to be @@ -175148,88 +296143,140 @@ longdesc included or excluded from compilation. Although the command longdesc syntax is very similar to that of comment, comment.sty is to be longdesc preferred to version.sty for documents where significant chunks longdesc of text may be excluded. -runfiles size=2 - RELOC/tex/latex/version/version.sty +containersize 2468 +containerchecksum 9b57997e63fab25d916630bb086b7d4372e094e64175caa761c20c3c2d426a58fdc42ef661bbc1ec47f2a8d9c617b7e4dc405499c01b84eb53ca0d10f6c9108d +doccontainersize 304932 +doccontainerchecksum 9bada1489523eccc809d4b9654411addf31f2d63efc1f1f9d68b81e2bb3d9365e2709f55a77c53c3d2231b8da89114bd5a4217c8d18553234a980d379b1a0084 docfiles size=75 - RELOC/doc/latex/version/version-doc.pdf + RELOC/doc/latex/version/version-doc.pdf details="Package documentation" RELOC/doc/latex/version/version-doc.tex +runfiles size=2 + RELOC/tex/latex/version/version.sty +catalogue-also verbatim versions optional comment catalogue-ctan /macros/latex/contrib/version -catalogue-date 2011-09-30 22:48:48 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics cond-comp catalogue-version 2.0 +name versions +category Package +revision 21921 +shortdesc Optionally omit pieces of text +relocated 1 +longdesc Stephan Bellantoni's version has provided preamble commands for +longdesc selecting environments to be included/excluded. This package +longdesc does the same, but corrects, improves, and extends it in both +longdesc implementation and function. +containersize 5828 +containerchecksum 4a6474f6a014789daae358c5b73a85bcb0894eb67d09a530f3bdd8e4571552d0a3e1983b5ba40d33122caad8bd457f255b7f1bb34e9797c5137ccf461707dbbc +doccontainersize 353936 +doccontainerchecksum ffebda27a9000a0c8bd8462b750e34331968aa1abd5c7039e198950eac6dc02796da6a02a258bcfcd84ca12b3d5f6d0ab11587bb5d6fa9b3121297aec2179ccb +docfiles size=89 + RELOC/doc/latex/versions/versions-doc.pdf details="Package documentation" + RELOC/doc/latex/versions/versions-doc.tex +runfiles size=4 + RELOC/tex/latex/versions/versions.sty +catalogue-also version optional verbatim comment +catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html +catalogue-ctan /macros/latex/contrib/versions +catalogue-date 2017-05-06 09:36:54 +0200 +catalogue-license lppl1.3 +catalogue-topics cond-comp +catalogue-version 0.55 + name versonotes category Package -revision 36310 -shortdesc Display brief notes on verso pages. +revision 39084 +shortdesc Display brief notes on verso pages relocated 1 longdesc This package allows you to place notes on the verso pages of an longdesc otherwise single-sided document. If, in the run of text, you longdesc include a call to the macro \versonote{This is a remark}, then longdesc that text will be placed on the opposite (ie, 'verso') page, longdesc lined up with the macro call. -runfiles size=2 - RELOC/tex/latex/versonotes/versonotes.sty +containersize 2668 +containerchecksum 2d1078d56a2c1c475d2df0ac7717b65f78cf6f65b539f5cc1b824ceec8623c770c422ff41e358c0c6fa0c3f63398dede9a46069fd60f6cd06441432fc96524ca +doccontainersize 192212 +doccontainerchecksum e62ab2da93cbd6b130d8bd1d953669e24a7318689b5ab8bd2da7feb8ed6f2dc24774636d5d87a75cae2cf8e20d01f17520b2ded2c39de03e8aa800800174e0cd docfiles size=54 RELOC/doc/latex/versonotes/LICENCE.txt - RELOC/doc/latex/versonotes/README - RELOC/doc/latex/versonotes/sample.pdf + RELOC/doc/latex/versonotes/README details="Readme" + RELOC/doc/latex/versonotes/sample.pdf details="Example of usage" RELOC/doc/latex/versonotes/sample.tex - RELOC/doc/latex/versonotes/versonotes.pdf -srcfiles size=7 + RELOC/doc/latex/versonotes/versonotes.pdf details="Package documentation" +srccontainersize 7596 +srccontainerchecksum a7c21573a02148db266576a1bb16e19e178f9d8f790a9824ad8e5d8563e60282ff9a5f45e0fbe9afde893df9ce72f66b0346893d060d10310b3b463999802764 +srcfiles size=8 RELOC/source/latex/versonotes/versonotes.drv RELOC/source/latex/versonotes/versonotes.dtx RELOC/source/latex/versonotes/versonotes.ins +runfiles size=2 + RELOC/tex/latex/versonotes/versonotes.sty +catalogue-contact-repository https://bitbucket.org/nxg/versonotes catalogue-ctan /macros/latex/contrib/versonotes -catalogue-date 2015-03-01 06:19:26 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 -catalogue-version 0.2 +catalogue-topics notes +catalogue-version 0.3 name vertbars category Package -revision 20589 -shortdesc Mark vertical rules in margin of text. +revision 49429 +shortdesc Mark vertical rules in margin of text relocated 1 longdesc This package is an extension to lineno, replacing that longdesc package's line numbers with bars to the left or right of the longdesc text. +containersize 1220 +containerchecksum 3c3c905c6bcb013a36bc2eede14d84315f49075ab5f63376e9a440e4e7fb281ee5086b5bf1953782641284027dd8e7058e0accdafdc9295a19ebfc0088d8f7e1 +doccontainersize 163000 +doccontainerchecksum de6df3133c801e941cbb00c552cb2cdb1d556f099c402a0a66f460d5c7c1c6e28ec7d983563f20a609a5b5266420dcf8c204d1b6bc685031cc41fe2770a5ea13 +docfiles size=42 + RELOC/doc/latex/vertbars/README.md details="Readme" + RELOC/doc/latex/vertbars/vertbars.pdf details="Package documentation" + RELOC/doc/latex/vertbars/vertbars.tex runfiles size=1 RELOC/tex/latex/vertbars/vertbars.sty -docfiles size=10 - RELOC/doc/latex/vertbars/README - RELOC/doc/latex/vertbars/vertbars.pdf -srcfiles size=3 - RELOC/source/latex/vertbars/vertbars.ins - RELOC/source/latex/vertbars/vertbars.tex +catalogue-also changebar +catalogue-contact-repository https://github.com/wspr/herries-press/ catalogue-ctan /macros/latex/contrib/vertbars -catalogue-date 2012-08-17 13:10:56 +0200 -catalogue-license lppl1.3 -catalogue-version 1.0b +catalogue-date 2018-12-16 14:58:39 +0100 +catalogue-license lppl1.3c +catalogue-topics editorial +catalogue-version 1.0c name vgrid category Package revision 32457 -shortdesc Overlay a grid on the printed page. +shortdesc Overlay a grid on the printed page relocated 1 longdesc The package overlays a grid (whose spacing is \baselineskip, longdesc which offers guidlines for considering the "rhythm" of the longdesc document on the page. -runfiles size=1 - RELOC/tex/latex/vgrid/vgrid.sty +containersize 1216 +containerchecksum ee46d8ae234af6f0b3bc8689cceab7d5ce8e7229b132c396a000cca15cde0ee422f91b2d4fc485c743e3a896bbab5ec90b24ea5d398bf63342751bf75143330a +doccontainersize 24004 +doccontainerchecksum 92e5498cea29d5fc1b373619e97c6692fef3f63002757a954649c0c4f9ef7b6594d61cce017bee709f0f1898777f962c25053b64da8079c8c9c9893f821a9aa6 docfiles size=6 - RELOC/doc/latex/vgrid/vgrid.pdf + RELOC/doc/latex/vgrid/vgrid.pdf details="Package documentation" +srccontainersize 2264 +srccontainerchecksum 5589904860a74979a070224b252be9b302e0f7128946624fb671e8618a2afc55c526631217348eaf84d7c0f827dfef7aac7a13a953e1ff82a61211eb2e070e36 srcfiles size=3 RELOC/source/latex/vgrid/vgrid.dtx RELOC/source/latex/vgrid/vgrid.ins +runfiles size=1 + RELOC/tex/latex/vgrid/vgrid.sty catalogue-ctan /macros/latex/contrib/vgrid -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics layout-supp catalogue-version 0.1 name vhistory category Package revision 30080 -shortdesc Support for creating a change log. +shortdesc Support for creating a change log relocated 1 longdesc Vhistory simplifies the creation of a history of versions of a longdesc document. You can easily extract information like the current @@ -175238,12 +296285,13 @@ longdesc get consistent documents. The package sets, which is used by longdesc vhistory, allows you to use sets containing text. You can use longdesc the usual operations to create the union of sets or the longdesc intersection of sets etc. -runfiles size=9 - RELOC/tex/latex/vhistory/sets.sty - RELOC/tex/latex/vhistory/vhistory.sty +containersize 8276 +containerchecksum f1747b1c112c69cdc506234c571335647b365eb92a4054c70cb08752dc1da92ac4e84d533083cdee76f6398f5f1bf04b20b94cf38ddf13947d4086c5599529fc +doccontainersize 336696 +doccontainerchecksum 60a8100cc10df177b04eba8751208c515eee9601806324184f737491707e1e4d453a92b0d12a16d6cc1af319a55c79afc8922d1378f8714990c97b5779540763 docfiles size=122 RELOC/doc/latex/vhistory/CHANGES - RELOC/doc/latex/vhistory/README + RELOC/doc/latex/vhistory/README details="Readme" RELOC/doc/latex/vhistory/README.doc RELOC/doc/latex/vhistory/de_beispiel.tex RELOC/doc/latex/vhistory/de_einleitung.tex @@ -175254,21 +296302,25 @@ docfiles size=122 RELOC/doc/latex/vhistory/en_sets.tex RELOC/doc/latex/vhistory/en_vhistory.tex RELOC/doc/latex/vhistory/hyperref.cfg - RELOC/doc/latex/vhistory/vh_set_example.pdf + RELOC/doc/latex/vhistory/vh_set_example.pdf details="Short example" RELOC/doc/latex/vhistory/vh_set_example.tex - RELOC/doc/latex/vhistory/vh_sets_de.pdf + RELOC/doc/latex/vhistory/vh_sets_de.pdf details="Package documentation (both packages)" language="en" RELOC/doc/latex/vhistory/vh_sets_de.tex - RELOC/doc/latex/vhistory/vh_sets_en.pdf + RELOC/doc/latex/vhistory/vh_sets_en.pdf details="Package documentation (both packages)" language="en" RELOC/doc/latex/vhistory/vh_sets_en.tex +runfiles size=9 + RELOC/tex/latex/vhistory/sets.sty + RELOC/tex/latex/vhistory/vhistory.sty catalogue-ctan /macros/latex/contrib/vhistory -catalogue-date 2013-04-21 16:55:16 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics version-control catalogue-version 1.6.1 name visualfaq category Package -revision 19677 -shortdesc A Visual LaTeX FAQ. +revision 38647 +shortdesc A Visual LaTeX FAQ relocated 1 longdesc Having trouble finding the answer to a LaTeX question? The longdesc Visual LaTeX FAQ is an innovative new search interface that @@ -175276,47 +296328,388 @@ longdesc presents over a hundred typeset samples of frequently requested longdesc document formatting. Simply click on a hyperlinked piece of longdesc text and the Visual LaTeX FAQ will send your Web browser to the longdesc appropriate page in the UK TeX FAQ. -docfiles size=490 - RELOC/doc/latex/visualfaq/README - RELOC/doc/latex/visualfaq/source/README +containersize 560 +containerchecksum 6b88343feaf39cd314e9453452da245054d3192f02ba0b2eb6e55a9bbca434e9b74cb16ad0902a6f5352d9ef945a4176e2e1998a7f0bd1cd75d2a3da7f4a203a +doccontainersize 5246876 +doccontainerchecksum eea0f022741d52ebb3613e977948c0428ddbe5b7d41faa659e888b48b7bb4e655a0e693d1dfd92d40a52a67e6df9ad386ac64d2ffee7c2732feb2077d4b24f77 +docfiles size=1533 + RELOC/doc/latex/visualfaq/README details="Readme" + RELOC/doc/latex/visualfaq/source/README details="Readme" RELOC/doc/latex/visualfaq/source/anotherarticle.pdf RELOC/doc/latex/visualfaq/source/book-montage.png - RELOC/doc/latex/visualfaq/source/fuzzytext.png + RELOC/doc/latex/visualfaq/source/fuzzytext.pdf RELOC/doc/latex/visualfaq/source/labelgraph.pdf - RELOC/doc/latex/visualfaq/source/lorem-ipsum-logo.png + RELOC/doc/latex/visualfaq/source/lorem-ipsum-left.jpg + RELOC/doc/latex/visualfaq/source/lorem-ipsum-right.jpg + RELOC/doc/latex/visualfaq/source/lorem-ipsum.jpg RELOC/doc/latex/visualfaq/source/musixtex.png RELOC/doc/latex/visualfaq/source/visfaq-html.png RELOC/doc/latex/visualfaq/source/visualFAQ.ind RELOC/doc/latex/visualfaq/source/visualFAQ.ind2 - RELOC/doc/latex/visualfaq/source/visualFAQ.out RELOC/doc/latex/visualfaq/source/visualFAQ.tex RELOC/doc/latex/visualfaq/source/watermark.pdf - RELOC/doc/latex/visualfaq/troubleshoot-vlf.pdf - RELOC/doc/latex/visualfaq/visualFAQ.pdf + RELOC/doc/latex/visualfaq/troubleshoot-vlf.pdf details="Dealing with visual FAQ problems:" + RELOC/doc/latex/visualfaq/visualFAQ.pdf details="The visual FAQ itself" catalogue-ctan /info/visualFAQ -catalogue-date 2012-06-07 00:20:13 +0200 -catalogue-license lppl +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics faq + +name visualpstricks +category Package +revision 39799 +shortdesc Visual help for PSTricks based on images with minimum text +relocated 1 +longdesc Visual help for PSTricks based on images with minimum text. One +longdesc image per command or per parameter. +containersize 432 +containerchecksum fa501a3ed6506fe52d3d31515f453db5378c7d01415ed05c0870ea15051d34dc5a564ab8ef2ef4608f616b657ecf29f5b18a8920bdf1606f78928fc505cfb0d1 +doccontainersize 13043468 +doccontainerchecksum 3d2dfea937b2b99e148fb0220067b9a777126854d82cd1e591f84a1d13e1090755660509814e4690dad20d2568286ce05653d3b5c7c6653df61d27229c9cd5e2 +docfiles size=12585 + RELOC/doc/latex/visualpstricks/README.txt details="Readme" + RELOC/doc/latex/visualpstricks/Source/3dplot1.tex + RELOC/doc/latex/visualpstricks/Source/3dplot2.tex + RELOC/doc/latex/visualpstricks/Source/3dplot3.tex + RELOC/doc/latex/visualpstricks/Source/Cde.tex + RELOC/doc/latex/visualpstricks/Source/VPST.ps + RELOC/doc/latex/visualpstricks/Source/VPST.tex + RELOC/doc/latex/visualpstricks/Source/VPSTdebut.tex + RELOC/doc/latex/visualpstricks/Source/VPSTobj.tex + RELOC/doc/latex/visualpstricks/Source/VPSTtitre.tex + RELOC/doc/latex/visualpstricks/Source/XXX1.ps + RELOC/doc/latex/visualpstricks/Source/XXX2.ps + RELOC/doc/latex/visualpstricks/Source/alea.tex + RELOC/doc/latex/visualpstricks/Source/anim.tex + RELOC/doc/latex/visualpstricks/Source/ann.tex + RELOC/doc/latex/visualpstricks/Source/bezier.tex + RELOC/doc/latex/visualpstricks/Source/bib.tex + RELOC/doc/latex/visualpstricks/Source/boit1.tex + RELOC/doc/latex/visualpstricks/Source/boit2.tex + RELOC/doc/latex/visualpstricks/Source/brace.tex + RELOC/doc/latex/visualpstricks/Source/cadre.tex + RELOC/doc/latex/visualpstricks/Source/chart.tex + RELOC/doc/latex/visualpstricks/Source/com.tex + RELOC/doc/latex/visualpstricks/Source/coord.tex + RELOC/doc/latex/visualpstricks/Source/coul.tex + RELOC/doc/latex/visualpstricks/Source/coul1.tex + RELOC/doc/latex/visualpstricks/Source/coul2.tex + RELOC/doc/latex/visualpstricks/Source/coul3.tex + RELOC/doc/latex/visualpstricks/Source/data3d.txt + RELOC/doc/latex/visualpstricks/Source/divers.tex + RELOC/doc/latex/visualpstricks/Source/eff1.tex + RELOC/doc/latex/visualpstricks/Source/eff2.tex + RELOC/doc/latex/visualpstricks/Source/eff3.tex + RELOC/doc/latex/visualpstricks/Source/eff4.tex + RELOC/doc/latex/visualpstricks/Source/fig.tex + RELOC/doc/latex/visualpstricks/Source/fill.tex + RELOC/doc/latex/visualpstricks/Source/fun.tex + RELOC/doc/latex/visualpstricks/Source/func.tex + RELOC/doc/latex/visualpstricks/Source/geom1.tex + RELOC/doc/latex/visualpstricks/Source/geom2.tex + RELOC/doc/latex/visualpstricks/Source/geom3.tex + RELOC/doc/latex/visualpstricks/Source/geom4.tex + RELOC/doc/latex/visualpstricks/Source/graph1.tex + RELOC/doc/latex/visualpstricks/Source/graph2.tex + RELOC/doc/latex/visualpstricks/Source/graph3.tex + RELOC/doc/latex/visualpstricks/Source/graph4.tex + RELOC/doc/latex/visualpstricks/Source/grid.tex + RELOC/doc/latex/visualpstricks/Source/homo.tex + RELOC/doc/latex/visualpstricks/Source/logoiut-eps-converted-to.pdf + RELOC/doc/latex/visualpstricks/Source/logoiut.eps + RELOC/doc/latex/visualpstricks/Source/merci.tex + RELOC/doc/latex/visualpstricks/Source/mesdata.dat + RELOC/doc/latex/visualpstricks/Source/noeud1.tex + RELOC/doc/latex/visualpstricks/Source/noeud2.tex + RELOC/doc/latex/visualpstricks/Source/obj.tex + RELOC/doc/latex/visualpstricks/Source/plac.tex + RELOC/doc/latex/visualpstricks/Source/poscript.tex + RELOC/doc/latex/visualpstricks/Source/pst1.tex + RELOC/doc/latex/visualpstricks/Source/pst2a.tex + RELOC/doc/latex/visualpstricks/Source/pst3.tex + RELOC/doc/latex/visualpstricks/Source/pst4.tex + RELOC/doc/latex/visualpstricks/Source/pst5.tex + RELOC/doc/latex/visualpstricks/Source/pstleg.tex + RELOC/doc/latex/visualpstricks/Source/pstmodules.tex + RELOC/doc/latex/visualpstricks/Source/pstpoly.tex + RELOC/doc/latex/visualpstricks/Source/rep1.tex + RELOC/doc/latex/visualpstricks/Source/rep2.tex + RELOC/doc/latex/visualpstricks/Source/rep3.tex + RELOC/doc/latex/visualpstricks/Source/sol3d.tex + RELOC/doc/latex/visualpstricks/Source/styl.tex + RELOC/doc/latex/visualpstricks/Source/symb.tex + RELOC/doc/latex/visualpstricks/Source/table.dat + RELOC/doc/latex/visualpstricks/Source/text.tex + RELOC/doc/latex/visualpstricks/Source/tree.tex + RELOC/doc/latex/visualpstricks/Source/vect.tex + RELOC/doc/latex/visualpstricks/Source/versFR.tex + RELOC/doc/latex/visualpstricks/Source/versGB.tex + RELOC/doc/latex/visualpstricks/Source/xxx.txt + RELOC/doc/latex/visualpstricks/VisualPSTricks.pdf details="Package documentation" + RELOC/doc/latex/visualpstricks/VisuelPSTricks.pdf details="Package documentation (French)" language="fr" +catalogue-ctan /info/visualpstricks +catalogue-date 2016-10-27 20:26:18 +0200 +catalogue-license gpl +catalogue-topics pstricks graphics-in-tex graphics-doc french-doc +catalogue-version 2.3 + +name visualtikz +category Package +revision 47888 +shortdesc Visual help for TikZ based on images with minimum text +relocated 1 +longdesc Visual help for TikZ based on images with minimum text: an +longdesc image per command or parameter. The document is in French, but +longdesc will be translated into English later. +containersize 528 +containerchecksum fc5cb3e2d30bca419304b5f76bb75f9da0e22b6624c7ca658492e2758adf0dfcc24552648c983b0afd390bf7814ca30fd7d2a8b3037b6ea3fd95b2f608b36b19 +doccontainersize 3961060 +doccontainerchecksum 556f4b852058c46a7d2a34db4898bd82429835ed4c5fc1eaf1c8bac9deba407c8a11fdd3eab3753b0f53fd0ba43a316c3b292cebe40c086862c6d94f8be0cc85 +docfiles size=1737 + RELOC/doc/latex/visualtikz/README.txt details="Readme" + RELOC/doc/latex/visualtikz/Source/Classeur1.csv + RELOC/doc/latex/visualtikz/Source/Classeur2.csv + RELOC/doc/latex/visualtikz/Source/LogoIUT.jpg + RELOC/doc/latex/visualtikz/Source/MAJ.tex + RELOC/doc/latex/visualtikz/Source/VTKZ.tex + RELOC/doc/latex/visualtikz/Source/VisualTikZ-fr.tex + RELOC/doc/latex/visualtikz/Source/VisualTikZ.tex + RELOC/doc/latex/visualtikz/Source/XXX.csv + RELOC/doc/latex/visualtikz/Source/XXX.dat + RELOC/doc/latex/visualtikz/Source/XXX1.jpg + RELOC/doc/latex/visualtikz/Source/XXX2.jpg + RELOC/doc/latex/visualtikz/Source/bibtkz.tex + RELOC/doc/latex/visualtikz/Source/data3d.txt + RELOC/doc/latex/visualtikz/Source/matrix.tex + RELOC/doc/latex/visualtikz/Source/mesdata.dat + RELOC/doc/latex/visualtikz/Source/symbol.tex + RELOC/doc/latex/visualtikz/Source/table.dat + RELOC/doc/latex/visualtikz/Source/table2.dat + RELOC/doc/latex/visualtikz/Source/table3.dat + RELOC/doc/latex/visualtikz/Source/table3X.dat + RELOC/doc/latex/visualtikz/Source/test.tex + RELOC/doc/latex/visualtikz/Source/tiger.png + RELOC/doc/latex/visualtikz/Source/tikzdebut.tex + RELOC/doc/latex/visualtikz/Source/tkz1.tex + RELOC/doc/latex/visualtikz/Source/tkz2.tex + RELOC/doc/latex/visualtikz/Source/tkz3.tex + RELOC/doc/latex/visualtikz/Source/tkz3a.tex + RELOC/doc/latex/visualtikz/Source/tkz4.tex + RELOC/doc/latex/visualtikz/Source/tkzalea.tex + RELOC/doc/latex/visualtikz/Source/tkzangles.tex + RELOC/doc/latex/visualtikz/Source/tkzanim.tex + RELOC/doc/latex/visualtikz/Source/tkzbackground.tex + RELOC/doc/latex/visualtikz/Source/tkzboit1.tex + RELOC/doc/latex/visualtikz/Source/tkzcde.tex + RELOC/doc/latex/visualtikz/Source/tkzchains.tex + RELOC/doc/latex/visualtikz/Source/tkzcoord.tex + RELOC/doc/latex/visualtikz/Source/tkzcoul.tex + RELOC/doc/latex/visualtikz/Source/tkzdatavisual.tex + RELOC/doc/latex/visualtikz/Source/tkzdeco.tex + RELOC/doc/latex/visualtikz/Source/tkzdepend.tex + RELOC/doc/latex/visualtikz/Source/tkzducks.tex + RELOC/doc/latex/visualtikz/Source/tkzelect.tex + RELOC/doc/latex/visualtikz/Source/tkzfig.tex + RELOC/doc/latex/visualtikz/Source/tkzfit.tex + RELOC/doc/latex/visualtikz/Source/tkzgate.tex + RELOC/doc/latex/visualtikz/Source/tkzgraph1.tex + RELOC/doc/latex/visualtikz/Source/tkzgraph2.tex + RELOC/doc/latex/visualtikz/Source/tkzgraph3D.tex + RELOC/doc/latex/visualtikz/Source/tkzgrid.tex + RELOC/doc/latex/visualtikz/Source/tkzimage.tex + RELOC/doc/latex/visualtikz/Source/tkzmerci.tex + RELOC/doc/latex/visualtikz/Source/tkznoeud1.tex + RELOC/doc/latex/visualtikz/Source/tkzoptic.tex + RELOC/doc/latex/visualtikz/Source/tkzpage.tex + RELOC/doc/latex/visualtikz/Source/tkzpeople.tex + RELOC/doc/latex/visualtikz/Source/tkzpic.tex + RELOC/doc/latex/visualtikz/Source/tkzpos.tex + RELOC/doc/latex/visualtikz/Source/tkzrep1.tex + RELOC/doc/latex/visualtikz/Source/tkzscope.tex + RELOC/doc/latex/visualtikz/Source/tkzstyl.tex + RELOC/doc/latex/visualtikz/Source/tkzsymbol.tex + RELOC/doc/latex/visualtikz/Source/tkztab.tex + RELOC/doc/latex/visualtikz/Source/tkzthrough.tex + RELOC/doc/latex/visualtikz/Source/tkztitre.tex + RELOC/doc/latex/visualtikz/Source/tkztree.tex + RELOC/doc/latex/visualtikz/Source/tkzturtle.tex + RELOC/doc/latex/visualtikz/Source/versFR.tex + RELOC/doc/latex/visualtikz/Source/versGB.tex + RELOC/doc/latex/visualtikz/Source/xxx.txt + RELOC/doc/latex/visualtikz/VisualTikZ-fr.pdf details="The document itself (French)" language="fr" + RELOC/doc/latex/visualtikz/VisualTikZ.pdf details="The document itself" +catalogue-contact-home http://gte.univ-littoral.fr/sections/stage-latex/visual-tikz +catalogue-ctan /info/visualtikz +catalogue-date 2018-01-18 22:26:20 +0100 +catalogue-license lppl1.3 +catalogue-topics pgf-tikz graphics-in-tex graphics-doc french-doc +catalogue-version 0.65 name vlna category TLCore -revision 37078 +revision 50602 +shortdesc add ~ after non-syllabic preposition, for Czech/Slovak +longdesc Preprocessor for TeX source implementing the Czech/Slovak +longdesc typographical rule forbidding a non-syllabic preposition alone +longdesc at the end of a line. depend vlna.ARCH -docfiles size=38 +containersize 380 +containerchecksum 320aa1e734120d4434ff05b2560c8d131daeb3a04d8f2ecd4e47e89cbe05e72ad459698cee63c05fe1c7278335774a8e2e4ab6dcf07ce1ac7cc15dc119c6cba0 +doccontainersize 142812 +doccontainerchecksum e9b2676f12fba6415749cf72aa0d8c34c328941f722e2a11d2372220dc615acc0b5ffaaff57abb24a8dd0747894990bce912bf8f423519aaf8390b6f03061835 +docfiles size=43 texmf-dist/doc/man/man1/vlna.1 texmf-dist/doc/man/man1/vlna.man1.pdf texmf-dist/doc/vlna/vlna.pdf +name vlna.aarch64-linux +category TLCore +revision 48789 +shortdesc aarch64-linux files of vlna +containersize 6864 +containerchecksum 305a912cb94d8a06e97961cb401879bdc55ab328c850566dabe0d5465fafa5a1a47e6310a6c08279a78ff46bb501ad629aab1bdba2d278d13a846d068461817b +binfiles arch=aarch64-linux size=5 + bin/aarch64-linux/vlna + +name vlna.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of vlna +containersize 8968 +containerchecksum fd31f71e35755e104bad3e78b15e7f869424fdcddae2540a7535d56ebb8fdeb33d3aa68b9094baf3ffb0a936807e3532397c2c4526c6d578353986919d2b5bf7 +binfiles arch=amd64-freebsd size=7 + bin/amd64-freebsd/vlna + +name vlna.amd64-netbsd +category TLCore +revision 48698 +shortdesc amd64-netbsd files of vlna +containersize 6428 +containerchecksum 111c3c7807ea94d680ce7b9916fa544296ef5d63812c126a52f7ca480c2c9d136531dbf188597abf85ef2d231dbdcfac2a5f0ff1311116cbe7a36bac4402a8b0 +binfiles arch=amd64-netbsd size=4 + bin/amd64-netbsd/vlna + +name vlna.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of vlna +containersize 5660 +containerchecksum e82faa40d37f1d4e9ac9fef4da9f19b53d0439cedb16dbb33e4fe077d0481803642c76518f7af10196629f0f3cd3418d49b972cbcaab3ee3ea03d04af7b78649 +binfiles arch=armhf-linux size=4 + bin/armhf-linux/vlna + +name vlna.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of vlna +containersize 6672 +containerchecksum e8868bf540c0c6fa5648338af4957528913b1add9a0cf1dea56bd693ada7276fc5257f182abc83666e1d856f52b6c9782bccf2e41f243a02b86c91584d965dd9 +binfiles arch=i386-cygwin size=5 + bin/i386-cygwin/vlna.exe + +name vlna.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of vlna +containersize 6732 +containerchecksum e1bb670de9af57d12f7d628532327127b05709c74abb49e92883ee3114cca0654fcb3cec660fa2658d71c35390942d116240ede3897de83fab159e94e633a5ca +binfiles arch=i386-freebsd size=5 + bin/i386-freebsd/vlna + name vlna.i386-linux category TLCore -revision 36790 +revision 50281 shortdesc i386-linux files of vlna +containersize 5964 +containerchecksum 0682376371b632cd7253cdbce34b2a6927ff2c23563a49d5fbb3b16352092966f15deda22e2f83bffdf6cf3df0cc0133a43a307f6633d777f6af501fe7370eef binfiles arch=i386-linux size=4 bin/i386-linux/vlna +name vlna.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of vlna +containersize 5820 +containerchecksum 7c3f73278f335ebe39c9bbd54bb56a1061ce6465a87dc21a2ef922aabbf5ff6700bed3f24a1b71d164e7318410113a6492d91217ea030444fe279a392d7c60f1 +binfiles arch=i386-netbsd size=4 + bin/i386-netbsd/vlna + +name vlna.i386-solaris +category TLCore +revision 46829 +shortdesc i386-solaris files of vlna +containersize 6812 +containerchecksum ec7642cc4b6906d84d83d947cccaf976358c78a10c2b38ec82c1bcd94e6cf7355c725bc04be65cf8bdb80dd1d3244b8e32791010a0cbacd408eac5cf5e4951f8 +binfiles arch=i386-solaris size=4 + bin/i386-solaris/vlna + +name vlna.win32 +category TLCore +revision 50155 +shortdesc win32 files of vlna +containersize 7380 +containerchecksum ec6091896186bc515674ed14b135d696371916f2f18ff988209e04273722612b090c2fa6e8d4c0df0241af55e777de66d05d25c4fdc206bb3fd91b71f1bf30db +binfiles arch=win32 size=4 + bin/win32/vlna.exe + +name vlna.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of vlna +containersize 7000 +containerchecksum 404e7a6e06f79e2689cc7635e8d06ec1f61d00df3a9eb444fdef34d3095ebfc482e0d16ba85d8f05ec8ea949a8ad73cc7f3a7aa08c8ba1a29bc06c66357e4fba +binfiles arch=x86_64-cygwin size=5 + bin/x86_64-cygwin/vlna.exe + +name vlna.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of vlna +containersize 8556 +containerchecksum f8e62c0700edc2b1ce9e1adc6399aa3b2cb6bc4e053014a30bd2e289bbfb60a758842fe7e917820998fa0e21ccd256896887a659226f8fa58f075fbba9e93122 +binfiles arch=x86_64-darwin size=7 + bin/x86_64-darwin/vlna + +name vlna.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of vlna +containersize 7080 +containerchecksum 7c206396deed39c4e4c2ab2feec25a0c54fdbccfef4b5ea50cb3e81021a27269ec9b8358de281bdb45def86ad29c2c3889876a91bce3a384a01eab29e781c63f +binfiles arch=x86_64-darwinlegacy size=6 + bin/x86_64-darwinlegacy/vlna + +name vlna.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of vlna +containersize 6296 +containerchecksum a0328d0443227e457815e3c65222e5b2095a16a1fc9c521d41156a04f9657be5745e4f005234409f79c48d369a866fe4e4b5e616b191602a17daa864f3c05a4b +binfiles arch=x86_64-linux size=4 + bin/x86_64-linux/vlna + +name vlna.x86_64-linuxmusl +category TLCore +revision 46840 +shortdesc x86_64-linuxmusl files of vlna +containersize 6980 +containerchecksum 3fb001dd0f7f6c2582d244aec4e28cc52c6658a8c786daf655e2be03c025ee5a4c83b01aabd4e5eb0372b759f557de8770c89a3f9b0009b91129500a14ec801f +binfiles arch=x86_64-linuxmusl size=5 + bin/x86_64-linuxmusl/vlna + +name vlna.x86_64-solaris +category TLCore +revision 46829 +shortdesc x86_64-solaris files of vlna +containersize 7636 +containerchecksum 06415a3166b1c80adf49daa34264aca956259908f0d0a5806244d8b8e8eb88d440a2fa7de3b86ee71b292c7059d3446c643286fbd00c7a97454715c840e702e5 +binfiles arch=x86_64-solaris size=5 + bin/x86_64-solaris/vlna + name vmargin category Package revision 15878 -shortdesc Set various page dimensions. +shortdesc Set various page dimensions relocated 1 longdesc Provides a macro to set various margins as well as dimensions longdesc for header/footer and page dimensions. Most common paper sizes, @@ -175326,24 +296719,32 @@ longdesc on other packages and was designed with speed and size in mind. longdesc Its user interface might not be very fancy, but it's fast, longdesc small, and gets the job done. If you are looking for something longdesc more elaborate try the geometry package. -runfiles size=2 - RELOC/tex/latex/vmargin/vmargin.sty +containersize 2852 +containerchecksum dc0cdd4696a44bb6bd189dcf73c69f1b2c8790b9936b1c6f35013d9342a97d36a4bfd8eab82f3e2e97f1cc952459cd9a1909915348b25f01df446c5ffc452e71 +doccontainersize 155348 +doccontainerchecksum ca8ebc274efacbe192b73c9551294bfae60b0cf7ebaac8425cf1b88e10ecda7f3230c336883afc438349f1ea47d66d369b52bb415c482803fb742b16cb483348 docfiles size=44 - RELOC/doc/latex/vmargin/vmargin.pdf + RELOC/doc/latex/vmargin/vmargin.pdf details="Package documentation" +srccontainersize 10616 +srccontainerchecksum 0ad7482be9aef59f55b1a489327c03e9d9560f10c984a0f244aa836ef12086dca2d834c033a36bc95233d6de9b801ac483d2dbf472f33e9478c5182d06a86cb6 srcfiles size=11 RELOC/source/latex/vmargin/Makefile RELOC/source/latex/vmargin/vmargin.drv RELOC/source/latex/vmargin/vmargin.dtx RELOC/source/latex/vmargin/vmargin.ins +runfiles size=2 + RELOC/tex/latex/vmargin/vmargin.sty +catalogue-also geometry typearea catalogue-ctan /macros/latex/contrib/vmargin -catalogue-date 2011-10-04 11:41:19 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl +catalogue-topics geometry catalogue-version 2.5 name vntex category Package revision 30579 -shortdesc Support for Vietnamese. +shortdesc Support for Vietnamese relocated 1 longdesc The vntex bundle provides fonts, Plain TeX, texinfo and LaTeX longdesc macros for typesetting documents in Vietnamese. Users of the @@ -175360,6 +296761,111 @@ execute addMap urwvn.map execute addMixedMap vnrother.map execute addMixedMap vnrtext.map execute addMap vntopia.map +containersize 5301968 +containerchecksum f39c04998d0685125d494c1a314f4cddb9e2924af4eb4bd8488be237125d818199640041a9c23d6b8839b9da1861e0b621f71488b316b65903c5f3a0366adec0 +doccontainersize 673872 +doccontainerchecksum 506c719a29a64611cc7ba228f1e13da9abface3168aa0122ec64dffa423a7c38b6f3a4fed43b787eb60b82bb8fec71a96e4432a9b0c05702a804a31997ccd49c +docfiles size=284 + RELOC/doc/generic/vntex/INSTALL + RELOC/doc/generic/vntex/ReleaseNotes.pdf + RELOC/doc/generic/vntex/vn-fonts-print.pdf + RELOC/doc/generic/vntex/vn-fonts.pdf + RELOC/doc/generic/vntex/vn-min-print.pdf + RELOC/doc/generic/vntex/vn-min.pdf details="Minimal steps to typeset Vietnamese" language="en" + RELOC/doc/generic/vntex/vntex-man-print.pdf + RELOC/doc/generic/vntex/vntex-man.pdf details="Package manual (Vietnamese)" language="vi" + RELOC/doc/generic/vntex/vntex-print.pdf + RELOC/doc/generic/vntex/vntex-update-maps + RELOC/doc/generic/vntex/vntex.pdf details="Package manual (English)" language="en" +srccontainersize 64208 +srccontainerchecksum 93f6fb8e9d49e8a7219a584aacc5f957da0ec2f7e29cf0c5dc37dd5b063cedf4eb2c56662b28c588083b1c158504da5da9cff4250498fa6ab8bdbec9e3eac875 +srcfiles size=131 + RELOC/source/generic/vntex/GPL.txt + RELOC/source/generic/vntex/LGPL.txt + RELOC/source/generic/vntex/LICENSE-utopia.txt + RELOC/source/generic/vntex/LPPL.txt + RELOC/source/generic/vntex/Makefile + RELOC/source/generic/vntex/README.vntopia + RELOC/source/generic/vntex/doc/ReleaseNotes.tex + RELOC/source/generic/vntex/doc/abbr.tex + RELOC/source/generic/vntex/doc/test-accents.tex + RELOC/source/generic/vntex/doc/vn-fonts-print.tex + RELOC/source/generic/vntex/doc/vn-fonts.tex + RELOC/source/generic/vntex/doc/vn-min-print.tex + RELOC/source/generic/vntex/doc/vn-min.tex + RELOC/source/generic/vntex/doc/vntex-man-print.tex + RELOC/source/generic/vntex/doc/vntex-man.tex + RELOC/source/generic/vntex/doc/vntex-print.tex + RELOC/source/generic/vntex/doc/vntex.tex + RELOC/source/generic/vntex/tests/Makefile + RELOC/source/generic/vntex/tests/README + RELOC/source/generic/vntex/tests/adventor-sample.tex + RELOC/source/generic/vntex/tests/adventor-test.tex + RELOC/source/generic/vntex/tests/arevvn-sample.tex + RELOC/source/generic/vntex/tests/arevvn-test.tex + RELOC/source/generic/vntex/tests/bonum-sample.tex + RELOC/source/generic/vntex/tests/bonum-test.tex + RELOC/source/generic/vntex/tests/chartervn-sample.tex + RELOC/source/generic/vntex/tests/chartervn-test.tex + RELOC/source/generic/vntex/tests/chorus-sample.tex + RELOC/source/generic/vntex/tests/chorus-test.tex + RELOC/source/generic/vntex/tests/classicovn-sample.tex + RELOC/source/generic/vntex/tests/classicovn-test.tex + RELOC/source/generic/vntex/tests/cmbrightvn-sample.tex + RELOC/source/generic/vntex/tests/cmbrightvn-test.tex + RELOC/source/generic/vntex/tests/comicsansvn-sample.tex + RELOC/source/generic/vntex/tests/comicsansvn-test.tex + RELOC/source/generic/vntex/tests/concretevn-sample.tex + RELOC/source/generic/vntex/tests/concretevn-test.tex + RELOC/source/generic/vntex/tests/cursor-sample.tex + RELOC/source/generic/vntex/tests/cursor-test.tex + RELOC/source/generic/vntex/tests/garamondvn-sample.tex + RELOC/source/generic/vntex/tests/garamondvn-test.tex + RELOC/source/generic/vntex/tests/grotesqvn-sample.tex + RELOC/source/generic/vntex/tests/grotesqvn-test.tex + RELOC/source/generic/vntex/tests/heros-sample.tex + RELOC/source/generic/vntex/tests/heros-test.tex + RELOC/source/generic/vntex/tests/mscore-sample.tex + RELOC/source/generic/vntex/tests/mscore-test.tex + RELOC/source/generic/vntex/tests/pagella-sample.tex + RELOC/source/generic/vntex/tests/pagella-test.tex + RELOC/source/generic/vntex/tests/schola-sample.tex + RELOC/source/generic/vntex/tests/schola-test.tex + RELOC/source/generic/vntex/tests/t5antt-sample.tex + RELOC/source/generic/vntex/tests/t5antt-test.tex + RELOC/source/generic/vntex/tests/t5cyklop-sample.tex + RELOC/source/generic/vntex/tests/t5cyklop-test.tex + RELOC/source/generic/vntex/tests/t5gentium-sample.tex + RELOC/source/generic/vntex/tests/t5gentium-test.tex + RELOC/source/generic/vntex/tests/t5iwona-sample.tex + RELOC/source/generic/vntex/tests/t5iwona-test.tex + RELOC/source/generic/vntex/tests/t5kurier-sample.tex + RELOC/source/generic/vntex/tests/t5kurier-test.tex + RELOC/source/generic/vntex/tests/t5lm-sample.tex + RELOC/source/generic/vntex/tests/t5lm-test.tex + RELOC/source/generic/vntex/tests/termes-sample.tex + RELOC/source/generic/vntex/tests/termes-test.tex + RELOC/source/generic/vntex/tests/test-accents.tex + RELOC/source/generic/vntex/tests/test-babel.tex + RELOC/source/generic/vntex/tests/test-captions.tex + RELOC/source/generic/vntex/tests/test-plain-tcx.tex + RELOC/source/generic/vntex/tests/test-plain.tex + RELOC/source/generic/vntex/tests/test-tcvn.tex + RELOC/source/generic/vntex/tests/test-utf8.tex + RELOC/source/generic/vntex/tests/test-vietnam-tcx.tex + RELOC/source/generic/vntex/tests/test-vietnam.tex + RELOC/source/generic/vntex/tests/test-viscii.tex + RELOC/source/generic/vntex/tests/txttvn-sample.tex + RELOC/source/generic/vntex/tests/txttvn-test.tex + RELOC/source/generic/vntex/tests/urwvn-sample.tex + RELOC/source/generic/vntex/tests/urwvn-test.tex + RELOC/source/generic/vntex/tests/vnr-sample.tex + RELOC/source/generic/vntex/tests/vnr-test.tex + RELOC/source/generic/vntex/tests/vnsample.cls + RELOC/source/generic/vntex/tests/vntopia-sample.tex + RELOC/source/generic/vntex/tests/vntopia-test.tex + RELOC/source/generic/vntex/vntex.dtx + RELOC/source/generic/vntex/vntex.ins runfiles size=2501 RELOC/fonts/afm/vntex/chartervn/bchb8v.afm RELOC/fonts/afm/vntex/chartervn/bchbi8v.afm @@ -175853,114 +297359,17 @@ runfiles size=2501 RELOC/tex/plain/vntex/dblaccnt.tex RELOC/tex/plain/vntex/t5code.tex RELOC/tex/plain/vntex/vntexinfo.tex -docfiles size=284 - RELOC/doc/generic/vntex/INSTALL - RELOC/doc/generic/vntex/ReleaseNotes.pdf - RELOC/doc/generic/vntex/vn-fonts-print.pdf - RELOC/doc/generic/vntex/vn-fonts.pdf - RELOC/doc/generic/vntex/vn-min-print.pdf - RELOC/doc/generic/vntex/vn-min.pdf - RELOC/doc/generic/vntex/vntex-man-print.pdf - RELOC/doc/generic/vntex/vntex-man.pdf - RELOC/doc/generic/vntex/vntex-print.pdf - RELOC/doc/generic/vntex/vntex-update-maps - RELOC/doc/generic/vntex/vntex.pdf -srcfiles size=131 - RELOC/source/generic/vntex/GPL.txt - RELOC/source/generic/vntex/LGPL.txt - RELOC/source/generic/vntex/LICENSE-utopia.txt - RELOC/source/generic/vntex/LPPL.txt - RELOC/source/generic/vntex/Makefile - RELOC/source/generic/vntex/README.vntopia - RELOC/source/generic/vntex/doc/ReleaseNotes.tex - RELOC/source/generic/vntex/doc/abbr.tex - RELOC/source/generic/vntex/doc/test-accents.tex - RELOC/source/generic/vntex/doc/vn-fonts-print.tex - RELOC/source/generic/vntex/doc/vn-fonts.tex - RELOC/source/generic/vntex/doc/vn-min-print.tex - RELOC/source/generic/vntex/doc/vn-min.tex - RELOC/source/generic/vntex/doc/vntex-man-print.tex - RELOC/source/generic/vntex/doc/vntex-man.tex - RELOC/source/generic/vntex/doc/vntex-print.tex - RELOC/source/generic/vntex/doc/vntex.tex - RELOC/source/generic/vntex/tests/Makefile - RELOC/source/generic/vntex/tests/README - RELOC/source/generic/vntex/tests/adventor-sample.tex - RELOC/source/generic/vntex/tests/adventor-test.tex - RELOC/source/generic/vntex/tests/arevvn-sample.tex - RELOC/source/generic/vntex/tests/arevvn-test.tex - RELOC/source/generic/vntex/tests/bonum-sample.tex - RELOC/source/generic/vntex/tests/bonum-test.tex - RELOC/source/generic/vntex/tests/chartervn-sample.tex - RELOC/source/generic/vntex/tests/chartervn-test.tex - RELOC/source/generic/vntex/tests/chorus-sample.tex - RELOC/source/generic/vntex/tests/chorus-test.tex - RELOC/source/generic/vntex/tests/classicovn-sample.tex - RELOC/source/generic/vntex/tests/classicovn-test.tex - RELOC/source/generic/vntex/tests/cmbrightvn-sample.tex - RELOC/source/generic/vntex/tests/cmbrightvn-test.tex - RELOC/source/generic/vntex/tests/comicsansvn-sample.tex - RELOC/source/generic/vntex/tests/comicsansvn-test.tex - RELOC/source/generic/vntex/tests/concretevn-sample.tex - RELOC/source/generic/vntex/tests/concretevn-test.tex - RELOC/source/generic/vntex/tests/cursor-sample.tex - RELOC/source/generic/vntex/tests/cursor-test.tex - RELOC/source/generic/vntex/tests/garamondvn-sample.tex - RELOC/source/generic/vntex/tests/garamondvn-test.tex - RELOC/source/generic/vntex/tests/grotesqvn-sample.tex - RELOC/source/generic/vntex/tests/grotesqvn-test.tex - RELOC/source/generic/vntex/tests/heros-sample.tex - RELOC/source/generic/vntex/tests/heros-test.tex - RELOC/source/generic/vntex/tests/mscore-sample.tex - RELOC/source/generic/vntex/tests/mscore-test.tex - RELOC/source/generic/vntex/tests/pagella-sample.tex - RELOC/source/generic/vntex/tests/pagella-test.tex - RELOC/source/generic/vntex/tests/schola-sample.tex - RELOC/source/generic/vntex/tests/schola-test.tex - RELOC/source/generic/vntex/tests/t5antt-sample.tex - RELOC/source/generic/vntex/tests/t5antt-test.tex - RELOC/source/generic/vntex/tests/t5cyklop-sample.tex - RELOC/source/generic/vntex/tests/t5cyklop-test.tex - RELOC/source/generic/vntex/tests/t5gentium-sample.tex - RELOC/source/generic/vntex/tests/t5gentium-test.tex - RELOC/source/generic/vntex/tests/t5iwona-sample.tex - RELOC/source/generic/vntex/tests/t5iwona-test.tex - RELOC/source/generic/vntex/tests/t5kurier-sample.tex - RELOC/source/generic/vntex/tests/t5kurier-test.tex - RELOC/source/generic/vntex/tests/t5lm-sample.tex - RELOC/source/generic/vntex/tests/t5lm-test.tex - RELOC/source/generic/vntex/tests/termes-sample.tex - RELOC/source/generic/vntex/tests/termes-test.tex - RELOC/source/generic/vntex/tests/test-accents.tex - RELOC/source/generic/vntex/tests/test-babel.tex - RELOC/source/generic/vntex/tests/test-captions.tex - RELOC/source/generic/vntex/tests/test-plain-tcx.tex - RELOC/source/generic/vntex/tests/test-plain.tex - RELOC/source/generic/vntex/tests/test-tcvn.tex - RELOC/source/generic/vntex/tests/test-utf8.tex - RELOC/source/generic/vntex/tests/test-vietnam-tcx.tex - RELOC/source/generic/vntex/tests/test-vietnam.tex - RELOC/source/generic/vntex/tests/test-viscii.tex - RELOC/source/generic/vntex/tests/txttvn-sample.tex - RELOC/source/generic/vntex/tests/txttvn-test.tex - RELOC/source/generic/vntex/tests/urwvn-sample.tex - RELOC/source/generic/vntex/tests/urwvn-test.tex - RELOC/source/generic/vntex/tests/vnr-sample.tex - RELOC/source/generic/vntex/tests/vnr-test.tex - RELOC/source/generic/vntex/tests/vnsample.cls - RELOC/source/generic/vntex/tests/vntopia-sample.tex - RELOC/source/generic/vntex/tests/vntopia-test.tex - RELOC/source/generic/vntex/vntex.dtx - RELOC/source/generic/vntex/vntex.ins +catalogue-contact-home http://vntex.sf.net catalogue-ctan /language/vietnamese/vntex -catalogue-date 2013-05-19 14:33:40 +0200 +catalogue-date 2017-10-29 15:10:12 +0100 catalogue-license other-free +catalogue-topics vietnamese font font-mf font-type1 catalogue-version 3.2 name vocaltract category Package revision 25629 -shortdesc Visualise the vocal tract using LaTeX and PStricks. +shortdesc Visualise the vocal tract using LaTeX and PSTricks relocated 1 longdesc The package enables the user to visualise the vocal tract. The longdesc vocal tract (in the package) is manipulated by a vector of @@ -175970,27 +297379,32 @@ longdesc over time (e.g., from Matlab). A sequence of vectors for longdesc certain German phonemes is embedded in the package, which longdesc allows for animation when no other vector is available. The longdesc package's graphics are produced using pstricks. -runfiles size=11 - RELOC/tex/latex/vocaltract/VocalTract.sty +containersize 9208 +containerchecksum 7daa3923a6b9d84a1fae2c9bd63404c2fb4dfe3866f897895deb9ab85f33649427b38ce5e34552bbbbd8704da1fac55822a747747a0c522728e605638831df8c +doccontainersize 15924 +doccontainerchecksum 36aa01a5be9da9a23e3a4de63fb14a39beda4a42cd2615f75f942abff677e71f2a4f640773d27556ef246a99004c3a1aa68caac9435957152cfda96707d79787 docfiles size=13 - RELOC/doc/latex/vocaltract/README + RELOC/doc/latex/vocaltract/README details="Readme" RELOC/doc/latex/vocaltract/vtLatex_AnimationDemo.tex RELOC/doc/latex/vocaltract/vtLatex_AnimationLauncher.tex - RELOC/doc/latex/vocaltract/vtLatex_FigureDemo.pdf + RELOC/doc/latex/vocaltract/vtLatex_FigureDemo.pdf details="Example model" RELOC/doc/latex/vocaltract/vtLatex_FigureDemo.tex RELOC/doc/latex/vocaltract/vtLatex_FigureLauncher.tex RELOC/doc/latex/vocaltract/vtLatex_TimeParams.tex RELOC/doc/latex/vocaltract/vtMAINVisual.m RELOC/doc/latex/vocaltract/vtQueryVisual.m +runfiles size=11 + RELOC/tex/latex/vocaltract/VocalTract.sty catalogue-ctan /graphics/pstricks/contrib/vocaltract -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-09-15 14:22:21 +0200 catalogue-license lppl +catalogue-topics graphics-use pstricks catalogue-version 1 name volumes category Package revision 15878 -shortdesc Typeset only parts of a document, with complete indexes etc. +shortdesc Typeset only parts of a document, with complete indexes etc relocated 1 longdesc This package helps you if you want to produce separate printed longdesc volumes from one LaTeX document, as well as one comprehensive, @@ -175998,85 +297412,58 @@ longdesc "all-inclusive" version. It suppresses the part of the table of longdesc contents that are not typeset, while counters, definitions, longdesc index entries etc. are kept consistent throughout the input longdesc file. -runfiles size=3 - RELOC/tex/latex/volumes/nowtoaux.sty - RELOC/tex/latex/volumes/volumes.sty +containersize 2544 +containerchecksum e54add2c60c5446329fe6f944c99132e0f99e89dd8fc9ff459e0ee106a5241e4df4d864b43269fc14a08ddda92f4e41607eaa20ba50d4a566be7468d0dd66b2c +doccontainersize 146160 +doccontainerchecksum 4471a360d04cc1ed9c90ecb53bfc422fdae30571a25fc4811813f30ed5308f4d20309a1fdba808d1eb20e84b97318708f57d08722344afd755aa06588acbd024 docfiles size=43 RELOC/doc/latex/volumes/README - RELOC/doc/latex/volumes/volumes.pdf + RELOC/doc/latex/volumes/volumes.pdf details="Package documentation" +srccontainersize 10228 +srccontainerchecksum 0f47cc01b4631430cc4b73c7348bcb9d500d0c5c9960a15e9fb29e1c805ff0be4f0108c6bf795156ab7f939fb355f800da916f913a4a441e65bdcefdb05c0499 srcfiles size=9 RELOC/source/latex/volumes/volumes.dtx RELOC/source/latex/volumes/volumes.ins +runfiles size=3 + RELOC/tex/latex/volumes/nowtoaux.sty + RELOC/tex/latex/volumes/volumes.sty catalogue-ctan /macros/latex/contrib/volumes -catalogue-date 2012-06-07 00:20:13 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics book-pub catalogue-version 1.0 name voss-mathcol category Package revision 32954 -shortdesc Typesetting mathematics in colour, in (La)TeX. +shortdesc Typesetting mathematics in colour, in (La)TeX relocated 1 longdesc This is a short paper from the TeXnische Komodie, in German. longdesc Since the body of the paper is dominated by clear LaTeX coding longdesc examples, most LaTeX programmers will understand how to achieve longdesc the results shown in the diagrams, even if they don't longdesc understand German. +containersize 548 +containerchecksum cec0ea20b409192c618278001045352ca6c4c11c8eda59633a9bb65ebb7a89c8c1db4046936a7f0096f52efca8a251501fccf7890288ed830f13e0b24b1bb017 +doccontainersize 230644 +doccontainerchecksum 5d91b23d9eb45998282731620097f214b274ee744972b3d7fbeda1be2268799572f36b5f4c8b707f48e8ec2d825438bcdcee7f1376531f366af8949a862ff379 docfiles size=71 RELOC/doc/latex/voss-mathcol/Changes RELOC/doc/latex/voss-mathcol/mathCol.bib RELOC/doc/latex/voss-mathcol/mathCol.ltx - RELOC/doc/latex/voss-mathcol/mathCol.pdf + RELOC/doc/latex/voss-mathcol/mathCol.pdf details="The document itself" RELOC/doc/latex/voss-mathcol/mathCol.tex RELOC/doc/latex/voss-mathcol/run.doc catalogue-ctan /info/math/voss/mathCol -catalogue-date 2014-02-16 23:23:15 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics tutorial maths-doc catalogue-version 0.1 -name voss-mathmode -category Package -revision 36093 -shortdesc A comprehensive review of mathematics in (La)TeX. -relocated 1 -longdesc The review includes: Standard LaTeX mathematics mode; AMSmath; -longdesc TeX and mathematics; Other packages; Tuning math typesetting; -longdesc Mathematics fonts; Special symbols; Examples; and Lists, -longdesc bibliography and index. -docfiles size=913 - RELOC/doc/latex/voss-mathmode/Changes - RELOC/doc/latex/voss-mathmode/Mathmode.bib - RELOC/doc/latex/voss-mathmode/Mathmode.ist - RELOC/doc/latex/voss-mathmode/Mathmode.ltx - RELOC/doc/latex/voss-mathmode/Mathmode.pdf - RELOC/doc/latex/voss-mathmode/Mathmode.tex - RELOC/doc/latex/voss-mathmode/README - RELOC/doc/latex/voss-mathmode/images/EuScript.pdf - RELOC/doc/latex/voss-mathmode/images/amsalign.pdf - RELOC/doc/latex/voss-mathmode/images/cm-crop.pdf - RELOC/doc/latex/voss-mathmode/images/cmbright-crop.pdf - RELOC/doc/latex/voss-mathmode/images/colArray.pdf - RELOC/doc/latex/voss-mathmode/images/exscale.pdf - RELOC/doc/latex/voss-mathmode/images/family.pdf - RELOC/doc/latex/voss-mathmode/images/family0.pdf - RELOC/doc/latex/voss-mathmode/images/family1.pdf - RELOC/doc/latex/voss-mathmode/images/lm-crop.pdf - RELOC/doc/latex/voss-mathmode/images/minionpro-crop.pdf - RELOC/doc/latex/voss-mathmode/images/node.pdf - RELOC/doc/latex/voss-mathmode/images/pamath-crop.pdf - RELOC/doc/latex/voss-mathmode/images/pazo-crop.pdf - RELOC/doc/latex/voss-mathmode/images/styles.pdf - RELOC/doc/latex/voss-mathmode/images/test-crop.pdf - RELOC/doc/latex/voss-mathmode/showexpl.cfg -catalogue-ctan /info/math/voss/mathmode -catalogue-date 2015-01-19 18:44:41 +0100 -catalogue-license lppl -catalogue-version 2.47 - name vpe category Package revision 26039 -shortdesc Source specials for PDF output. +shortdesc Source specials for PDF output longdesc VPE is a system to make the equivalent of "source special" longdesc marks in a PDF file. Clicking on a mark will activate an longdesc editor, pointing at the source line that produced the text that @@ -176086,69 +297473,252 @@ longdesc via LaTeX/dvips, pdfTeX (version 0.14 or better), and longdesc LaTeX/VTeX. Using the LaTeX/dvips or pdfLaTeX routes, the longdesc (pdf)TeX processor should be run with shell escapes enabled. depend vpe.ARCH +containersize 8120 +containerchecksum 5fd5180edb830cc2f309652ad6a86e3ce1900dd0b150b72b3115f2e0f51aed4023b3f7af8c86befd1b1317829907b35ce583b50fe5cd1fa50f15863046e806d5 +doccontainersize 6692 +doccontainerchecksum 3c60c736fa03de82bfa5bb86f40420e7f7eb59f6943a94790361bd1d64076ec97843404d1cc508074a903f83392892c6dddd1dc912162928b286e65c24a46037 +docfiles size=5 + texmf-dist/doc/latex/vpe/README details="Readme" runfiles size=8 texmf-dist/scripts/vpe/vpe.pl texmf-dist/tex/latex/vpe/vpe.sty -docfiles size=5 - texmf-dist/doc/latex/vpe/README catalogue-ctan /macros/latex/contrib/vpe -catalogue-date 2012-04-18 16:26:37 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics doc-debug catalogue-version 0.2 +name vpe.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of vpe +containersize 336 +containerchecksum a32442551a28f1387a900a6e23b1a8a088924c5a1ddf00653388d03b5902e657c89a0cf467654194b53a01431aa2cc939a9cf7a7c54629b016089d1bc998c799 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/vpe + +name vpe.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of vpe +containersize 336 +containerchecksum 6096c5a718ee66d37b82d1abc89599a01e2f555f207bd5cad7a3ddac4ea4809358763e83cb9fdfa509c984bb44d85a24ad5cafd3f3083cd992a9c2fc4330e21f +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/vpe + +name vpe.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of vpe +containersize 340 +containerchecksum 8c003bda0d6ecad900712f8bae92f5b516efff9cfea50b7f6181216a872b46af062ac210c8676ed4570004054b58b4eb2b344e6dadf1513a1ab36453c96f1e6d +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/vpe + +name vpe.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of vpe +containersize 336 +containerchecksum fd981e8da08ba68c587b4f6686a038156fb33d0ea19eea16f54a66c7d3b51cac21168e9f073e8012ea80beb791fcb22d056c452d573d6a67550567e4b89eda1a +binfiles arch=armhf-linux size=1 + bin/armhf-linux/vpe + +name vpe.i386-cygwin +category Package +revision 25941 +shortdesc i386-cygwin files of vpe +containersize 336 +containerchecksum 369fe5803c7f2545d6ad6db9ac75b88146d90d2e7574c8b0f91cf5702963725519352fe63ab5deaa15bc6b5411f16b41573be60b53e248951fcaa058d2736692 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/vpe + +name vpe.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of vpe +containersize 340 +containerchecksum 6d29857fede00d2437ca2fff5a10f6883eef1597adf2fdd8477104b3188764e67a53e327cbce4a5df013bdec78b675eb13f5efda8993065e7c409d931409e85e +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/vpe + name vpe.i386-linux category Package revision 6897 shortdesc i386-linux files of vpe +containersize 336 +containerchecksum 917fe580026f9d9e0bd0655d1f86eb515d5a6c74a2e8a5b13533b502d027a0e25ef65ec6ce3a3981d76857b17d39d4ef91cd81cbd3fef1d200ec50cefe473149 binfiles arch=i386-linux size=1 bin/i386-linux/vpe +name vpe.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of vpe +containersize 336 +containerchecksum 603916060d1931d6c956c9ce6128406c33c8e29b52c83131206c20b5f5333ee24b10db7fa52c030e78a126383719ed8c30bfa9236a9c8b70ac42a35872d5b1a5 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/vpe + +name vpe.i386-solaris +category Package +revision 8102 +shortdesc i386-solaris files of vpe +containersize 336 +containerchecksum 8895267374a02c4db0977666968f68245a0718a7db282d37e3bd55af27e50773c07a4ecf110e00cfdca0eb6da8e6e4cd724a4914f525aeb97fcb8ad7d725dc53 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/vpe + +name vpe.win32 +category Package +revision 15404 +shortdesc win32 files of vpe +containersize 680 +containerchecksum d99676bfae281e47595db1527f12959896d551ee4a539b045a5ef71518c5c101e2741492c80dc66df6790c5dd8c7cd0dc00fc11e9328a8f8d33d4955f41cf12d +binfiles arch=win32 size=1 + bin/win32/vpe.exe + +name vpe.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of vpe +containersize 340 +containerchecksum 937237137e07415d75fe7f1b2db7379105bf009a04aa383064d29254487502657aa008815718f264e070894e4dad8327e5e5bcbc49c497135d6ea5c883d12bca +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/vpe + +name vpe.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of vpe +containersize 340 +containerchecksum 5e5220ab14fb2ec80fd67d201fe846628d0bdad4dd9b135f8c365380f117cf62cbdd792ba78ba988502a8653495d6201a3af4c3761259e69ba0ab5952a8f4a3d +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/vpe + +name vpe.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of vpe +containersize 348 +containerchecksum 00a966f49bf2fc68b87baa2c9fa3ddf145b4faeacbedd8340253dc1d2e49833ddb6f827fb26ce523050acc28397d06d2984687ceaeb5566b4de3c31248ac1e45 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/vpe + +name vpe.x86_64-linux +category Package +revision 8601 +shortdesc x86_64-linux files of vpe +containersize 336 +containerchecksum b94502124ec1649e80f2acb7ccc5c517a294558997938f1c1589cea13245eda9e412cf1cade5fded461f50c09e84d2844abf710ce0833e211edf71e6929f9c6f +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/vpe + +name vpe.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of vpe +containersize 344 +containerchecksum 212aa4c71a877c411ed2d4ff882ef28b2925dc238b518991a7210c9ec59ef8abad245a7c4f924fdbb6eb2065e7687a66d8f1805ff3dc32cea3f836a62485fc24 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/vpe + +name vpe.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of vpe +containersize 340 +containerchecksum 33105827e3d6872cfa72a41c5b9faec1e34360086af6c05cc954bbd047436f02f1def4316ecc1ec005884ac40db543b0be019ac36acc542b6b5b661ba3c2c971 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/vpe + name vruler category Package revision 21598 -shortdesc Numbering text. +shortdesc Numbering text relocated 1 longdesc The package offers facilities for adding a columns of numbering longdesc to the general text so that the text can be properly longdesc referenced. The vertical ruler can be scaled and moved freely. longdesc The package may be used either with LaTeX or with plain TeX. -runfiles size=5 - RELOC/tex/latex/vruler/vruler.sty +containersize 6004 +containerchecksum 39582bec5217d65179b4293a18697cae20b35a0ec5416497691d16dbb919d78d4463ae15f2f05d308f45c65481f611a3f699cce9f5a3c311b84bde08fdd5f234 +doccontainersize 220752 +doccontainerchecksum dad09087e028977501fe143ae050c57938500b8aa98bddc1afefb298444d17c37cdc5b9db2e9d01df5e9f6a47679e0659b21a2844d268f8b324a24bbf22d9492 docfiles size=59 RELOC/doc/latex/vruler/miscdoc.sty RELOC/doc/latex/vruler/vruler-example.tex - RELOC/doc/latex/vruler/vruler.pdf + RELOC/doc/latex/vruler/vruler.pdf details="Package documentation" RELOC/doc/latex/vruler/vruler.tex +runfiles size=5 + RELOC/tex/latex/vruler/vruler.sty +catalogue-also lineno numline catalogue-ctan /macros/latex/contrib/vruler -catalogue-date 2012-04-10 18:37:25 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1 +catalogue-topics layout catalogue-version 2.3 +name vtable +category Package +revision 51126 +shortdesc Vertical alignement of table cells +relocated 1 +longdesc The package allows vertical alignement of table cell by +longdesc providing: Z, L, C, R, J and I column types \nextRow and \lb +longdesc commands \setMultiColRow, \setMultiColumn, \setMultiRow and +longdesc \tableFormatedCell commands for tabular and similar +longdesc environment. +containersize 3708 +containerchecksum ed8dee287daa32719b6650f43b963fa66cc55572526162978fc5245d3c253f027548ef5f1cbb38423c30e6cbe93b3418c373615ab92532be40d947c979f14b47 +doccontainersize 59744 +doccontainerchecksum 12626485ed74fdaee2aff65e97f59d14fad8f856bc2a84dda96010985b039d48850a07ef08525d74b155a699d44b1e173923e0f67716f47e392fa7558760076a +docfiles size=19 + RELOC/doc/latex/vtable/README details="Readme" + RELOC/doc/latex/vtable/vtable.pdf details="Package documentation" + RELOC/doc/latex/vtable/vtable.tex +runfiles size=3 + RELOC/tex/latex/vtable/vtable.sty +catalogue-contact-bugs https://bitbucket.org/OpCode-eu-org/latex-libs/issues +catalogue-contact-repository https://bitbucket.org/OpCode-eu-org/LaTeX-libs/ +catalogue-ctan /macros/latex/contrib/vtable +catalogue-date 2019-05-14 07:02:18 +0200 +catalogue-license mit +catalogue-topics table +catalogue-version 1.0 + name vwcol category Package revision 36254 -shortdesc Variable-width multiple text columns. +shortdesc Variable-width multiple text columns relocated 1 longdesc The package provides a crude environment (vwcol) for longdesc typesetting multicolumn paragraph text of various column widths longdesc on a single page. -runfiles size=3 - RELOC/tex/latex/vwcol/vwcol.sty +containersize 3140 +containerchecksum 3963b738e1214f7a495daff6476102e6b25e86034c552b5f4e4314af55e4af073ed94a72e969dfd1fba16baa0264577234917f7dfd074dc85f9c56c5f2409903 +doccontainersize 272620 +doccontainerchecksum a4d55b62caf4968d3e8329fd06f8857f646c5a867fbab23ea9bd7fb57c5b88b5f3a918642bc608eb1ccd936dc2e36edc50a5662667b8bb35cc59ba1739b2e7bd docfiles size=68 - RELOC/doc/latex/vwcol/README - RELOC/doc/latex/vwcol/vwcol.pdf + RELOC/doc/latex/vwcol/README details="Readme" + RELOC/doc/latex/vwcol/vwcol.pdf details="Package documentation" +srccontainersize 11468 +srccontainerchecksum 8a605a7250f939789fd863abf6fa2b5da37b8f723460ef2e56ed93dc826363ec1bad03f5bd2af266ede11ccda04546e6174c0dd79282ba41ad6c3d9923ccd51c srcfiles size=12 RELOC/source/latex/vwcol/vwcol.dtx RELOC/source/latex/vwcol/vwcol.ins +runfiles size=3 + RELOC/tex/latex/vwcol/vwcol.sty catalogue-ctan /macros/latex/contrib/vwcol -catalogue-date 2015-02-10 13:01:05 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl1.3 +catalogue-topics multicol catalogue-version 0.2 name wadalab category Package -revision 22576 -shortdesc Wadalab (Japanese) font packages. +revision 42428 +shortdesc Wadalab (Japanese) font packages relocated 1 longdesc These are font bundles for the Japanese Wadalab fonts which longdesc work with the CJK package. All subfonts now have glyph names @@ -176162,6 +297732,20 @@ execute addMap mc2j.map execute addMap mcj.map execute addMap mr2j.map execute addMap mrj.map +containersize 17772744 +containerchecksum 2d603ccfa92e8ef9abe91f5afaf490c7c8476061679f7a54c22879bb90b4d874f9e0e533e25aafb94fee2ff512f689ec96d25ed7ed42d0ae90c5e05985daadeb +doccontainersize 93720 +doccontainerchecksum f9c35379b396dfb563c66a05d200c405f03de96e22ec94de3a9f0c99ada057db21d31b43d59391bc0175479b5f150435f8e704fa40f6b58f2c116bbda3ec4603 +docfiles size=43 + RELOC/doc/fonts/wadalab/README details="Readme" + RELOC/doc/fonts/wadalab/dgj/README details="Readme" + RELOC/doc/fonts/wadalab/dmj/README details="Readme" + RELOC/doc/fonts/wadalab/mc2j/README details="Readme" + RELOC/doc/fonts/wadalab/mcj/README details="Readme" + RELOC/doc/fonts/wadalab/mr2j/README details="Readme" + RELOC/doc/fonts/wadalab/mrj/README details="Readme" + RELOC/doc/fonts/wadalab/wadalab-sampler.pdf details="Font sampler" + RELOC/doc/fonts/wadalab/wadalab-sampler.tex runfiles size=6262 RELOC/fonts/afm/wadalab/dgj/dgjgreek.afm RELOC/fonts/afm/wadalab/dgj/dgjhira.afm @@ -177459,66 +299043,183 @@ runfiles size=6262 RELOC/fonts/vf/wadalab/umrj/umrj9e.vf RELOC/fonts/vf/wadalab/umrj/umrj9f.vf RELOC/fonts/vf/wadalab/umrj/umrjff.vf -docfiles size=43 - RELOC/doc/fonts/wadalab/README - RELOC/doc/fonts/wadalab/dgj/README - RELOC/doc/fonts/wadalab/dmj/README - RELOC/doc/fonts/wadalab/mc2j/README - RELOC/doc/fonts/wadalab/mcj/README - RELOC/doc/fonts/wadalab/mr2j/README - RELOC/doc/fonts/wadalab/mrj/README - RELOC/doc/fonts/wadalab/wadalab-sampler.pdf - RELOC/doc/fonts/wadalab/wadalab-sampler.tex +catalogue-also cjk-fonts catalogue-ctan /fonts/wadalab -catalogue-date 2014-05-20 15:07:59 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics font font-type1 font-cjk + +name wallcalendar +category Package +revision 45568 +shortdesc A wall calendar class with custom layouts +relocated 1 +longdesc This package provides a wall calendar class with custom layouts +longdesc and support for internationalization. It comes with the +longdesc following layouts: Full page photo, the calendar days overlaid +longdesc with opacity Full page photo, the photo above the calendar days +longdesc Small landscape photo, with a calendar grid Year planner +longdesc Thumbnails and captions Varnish mask There is also support for +longdesc loading event marks from a CSV file. +containersize 26448 +containerchecksum 43a682e78a3a80784180dfd84627e5584af9199bef965bb5551b203df7f939512d4307c450ed1ee55caab611154c1511fc339831da2907527c06ab738350e05a +doccontainersize 2708456 +doccontainerchecksum e4816b91f08a26e99b03892b3d70f4d81110e476461dec505225335d46955f9f3790d883faf19afa4d7a31ff05afac4fea870e37299f45827c5a8155d4bbaf4c +docfiles size=2414 + RELOC/doc/lualatex/wallcalendar/LICENSE.txt + RELOC/doc/lualatex/wallcalendar/README.md details="Readme" + RELOC/doc/lualatex/wallcalendar/doc/Makefile + RELOC/doc/lualatex/wallcalendar/doc/auto/wallcalendar-code.el + RELOC/doc/lualatex/wallcalendar/doc/auto/wallcalendar.el + RELOC/doc/lualatex/wallcalendar/doc/doc-setup.org + RELOC/doc/lualatex/wallcalendar/doc/examples/Makefile + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-plain-01.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-plain-02.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-plain-03.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-showframe-01.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-showframe-02.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-showframe-03.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-showtrims-01.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-showtrims-02.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-showtrims-03.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-varnishmask-01.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-varnishmask-02.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-varnishmask-03.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-marks.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-marks.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-plain.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-plain.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-showframe.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-showframe.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-showtrims.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-showtrims.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-thumbnails.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-thumbnails.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-translations-english.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-translations-english.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-translations-hungarian.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-translations-hungarian.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-translations-japanese.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-translations-japanese.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-varnishmask.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-varnishmask.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-year-planner.pdf + RELOC/doc/lualatex/wallcalendar/doc/examples/cal-year-planner.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/data/astro-2018.json + RELOC/doc/lualatex/wallcalendar/doc/examples/data/holidays.csv + RELOC/doc/lualatex/wallcalendar/doc/examples/data/mark_defaults.csv + RELOC/doc/lualatex/wallcalendar/doc/examples/data/moonphases.csv + RELOC/doc/lualatex/wallcalendar/doc/examples/diff-cal.sh + RELOC/doc/lualatex/wallcalendar/doc/examples/forest.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/frog-english.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/frog-hungarian.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/frog-japanese.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/frog.tex + RELOC/doc/lualatex/wallcalendar/doc/examples/local-english.sty + RELOC/doc/lualatex/wallcalendar/doc/examples/local-hungarian.sty + RELOC/doc/lualatex/wallcalendar/doc/examples/local-japanese.sty + RELOC/doc/lualatex/wallcalendar/doc/examples/photos/frog-crop-thumb.jpg + RELOC/doc/lualatex/wallcalendar/doc/examples/photos/frog-crop.jpg + RELOC/doc/lualatex/wallcalendar/doc/examples/photos/frog.jpg + RELOC/doc/lualatex/wallcalendar/doc/examples/photos/obscure-crop.jpg + RELOC/doc/lualatex/wallcalendar/doc/frontpage.tex + RELOC/doc/lualatex/wallcalendar/doc/latexmkrc + RELOC/doc/lualatex/wallcalendar/doc/local.sty + RELOC/doc/lualatex/wallcalendar/doc/memoir-article.cls + RELOC/doc/lualatex/wallcalendar/doc/wallcalendar-code.fdb_latexmk + RELOC/doc/lualatex/wallcalendar/doc/wallcalendar-code.fls + RELOC/doc/lualatex/wallcalendar/doc/wallcalendar-code.org + RELOC/doc/lualatex/wallcalendar/doc/wallcalendar-code.tex + RELOC/doc/lualatex/wallcalendar/doc/wallcalendar.org + RELOC/doc/lualatex/wallcalendar/doc/wallcalendar.tex + RELOC/doc/lualatex/wallcalendar/wallcalendar-code.pdf details="Code documentation" + RELOC/doc/lualatex/wallcalendar/wallcalendar-layouts.png + RELOC/doc/lualatex/wallcalendar/wallcalendar.pdf details="User Manual" +runfiles size=44 + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-czech.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-dutch.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-english.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-french.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-german.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-hungarian.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-italian.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-japanese.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-norwegian.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-portuguese.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-romanian.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-serbian.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-slovakian.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-slovenian.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-spanish.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-swedish.tex + RELOC/tex/lualatex/wallcalendar/i18n/wallcalendar-thai.tex + RELOC/tex/lualatex/wallcalendar/wallcalendar-csv.lua + RELOC/tex/lualatex/wallcalendar/wallcalendar-date.lua + RELOC/tex/lualatex/wallcalendar/wallcalendar-helpers.lua + RELOC/tex/lualatex/wallcalendar/wallcalendar.cls +catalogue-contact-repository https://github.com/profound-labs/wallcalendar +catalogue-ctan /macros/luatex/latex/wallcalendar +catalogue-date 2017-10-22 08:00:15 +0200 +catalogue-license lppl +catalogue-topics class calendar luatex use-lua +catalogue-version 1.3.1 name wallpaper category Package revision 15878 -shortdesc Easy addition of wallpapers (background images) to LaTeX documents, including tiling. +shortdesc Easy addition of wallpapers (background images) to LaTeX documents, including tiling relocated 1 longdesc This collection contains files to add wallpapers (background longdesc images) to LaTeX documents. It uses the eso-pic package, but longdesc provides simple commands to include effects such as tiling. An longdesc example is provided, which works under both LaTeX and pdfLaTeX. -runfiles size=2 - RELOC/tex/latex/wallpaper/wallpaper.sty +containersize 1576 +containerchecksum 45647b8f8ebab9706437be2ce63f3506638fcc794839ff366210db4c35a3e16b2a39127fcacd0d97df356180770b6808e80e63ea1a50e69fc591cc0992e1787b +doccontainersize 1277340 +doccontainerchecksum 46b890e0ea7bbfb3c3421f79338f5140a105bb90cbe712477e2dc956f834682f6d137e39492437d8f206fefaf07086cab7f3cdd6c27dc7136df54c5ba850b4a3 docfiles size=317 - RELOC/doc/latex/wallpaper/README + RELOC/doc/latex/wallpaper/README details="Readme" RELOC/doc/latex/wallpaper/example/TGTamber.png RELOC/doc/latex/wallpaper/example/auto/example.el RELOC/doc/latex/wallpaper/example/example.tex RELOC/doc/latex/wallpaper/example/hya.png - RELOC/doc/latex/wallpaper/wallpapermanual.pdf + RELOC/doc/latex/wallpaper/wallpapermanual.pdf details="Package documentation" +runfiles size=2 + RELOC/tex/latex/wallpaper/wallpaper.sty catalogue-ctan /macros/latex/contrib/wallpaper -catalogue-date 2012-05-04 12:49:06 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics layout-page catalogue-version 1.10 name warning category Package revision 22028 -shortdesc Global warnings at the end of the logfile. +shortdesc Global warnings at the end of the logfile relocated 1 longdesc This package provides a command that generates a list of longdesc warnings that are printed out at the very end of the logfile. longdesc This is useful for warnings such as 'Rerun for this or that longdesc reason' or 'This is a draft, change it before the final run'. -runfiles size=1 - RELOC/tex/latex/warning/warning.sty +containersize 1488 +containerchecksum de3d9ef9a6dda4022fa8f04a0be509d3e9e583a539a3590cd30527f108ff739e0c1dbf8c5945e0a72902b14c2616e26d41a05f23957e9466c788fd228ac6b082 +doccontainersize 256532 +doccontainerchecksum 04c8ecdd39f2e0b3aec8cf6d9235acc7e10c8e182bbb2a7b30a46cf9ce7c08fb0fea21956356b3dad500a5a58c7a2b63e9471b2e8fe626b17492f721f527ce72 docfiles size=64 - RELOC/doc/latex/warning/warning-doc.pdf + RELOC/doc/latex/warning/warning-doc.pdf details="Package documentation" RELOC/doc/latex/warning/warning-doc.tex +runfiles size=1 + RELOC/tex/latex/warning/warning.sty catalogue-ctan /macros/latex/contrib/warning -catalogue-date 2012-05-04 12:49:06 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics comp-supp catalogue-version 0.01 name warpcol category Package revision 15878 -shortdesc Relative alignment of rows in numeric columns in tabulars. +shortdesc Relative alignment of rows in numeric columns in tabulars relocated 1 longdesc Defines a tabular column type for formatting numerical columns longdesc in LaTeX. The column type enables numerical items to be right @@ -177528,40 +299229,48 @@ longdesc variations on this column type to be defined. Usage of the longdesc package is superficially similar to that of dcolumn; however, longdesc the alignment scheme is different, and the packages have longdesc different, though overlapping, applications. -runfiles size=1 - RELOC/tex/latex/warpcol/warpcol.sty +containersize 1336 +containerchecksum 66fd9e243339e0841576e1a1a3de05f2e69a24a7e1dd31eb38d848d06c9183f691229d8e89878b661c7f6524bd9ebd1380fcd4c9b175feb8490cd4476ac81303 +doccontainersize 85512 +doccontainerchecksum e88082379e90edf1517579009881204bcb70df888593d7535e2b1e5b673cf116a456967b0ca5ce372efef9dc0818b9d0dc252be79819f6b346ad8619d70551f3 docfiles size=25 - RELOC/doc/latex/warpcol/README - RELOC/doc/latex/warpcol/warpcol.pdf + RELOC/doc/latex/warpcol/README details="Package Readme" + RELOC/doc/latex/warpcol/warpcol.pdf details="Package documentation" +srccontainersize 3416 +srccontainerchecksum 843965fdddfffe6bec9567e140b9c6db66f60d1eb90ff5830b08b17499f21782ae1842989d479e50c293a8e1d7e2a9ab886622b8375384e1238871d6872e9e52 srcfiles size=4 RELOC/source/latex/warpcol/warpcol.dtx RELOC/source/latex/warpcol/warpcol.ins +runfiles size=1 + RELOC/tex/latex/warpcol/warpcol.sty catalogue-ctan /macros/latex/contrib/warpcol -catalogue-date 2012-05-04 12:49:06 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics table catalogue-version 1.0c name was category Package revision 21439 -shortdesc A collection of small packages by Walter Schmidt. +shortdesc A collection of small packages by Walter Schmidt relocated 1 longdesc A bundle of packages that arise in the author's area of longdesc interest: compliance of maths typesetting with ISO standards; longdesc symbols that work in both maths and text modes commas for both longdesc decimal separator and maths; and upright Greek letters in longdesc maths. -runfiles size=6 - RELOC/tex/latex/was/fixmath.sty - RELOC/tex/latex/was/gensymb.sty - RELOC/tex/latex/was/icomma.sty - RELOC/tex/latex/was/upgreek.sty +containersize 3092 +containerchecksum e3dec504da2dd28534872b4363695d797a874a0af5c2a77e6559a2765f6150cc50614b8905c90faa6fb9fd54d9634a9ddff148564904b1454f21d3fbd21918dd +doccontainersize 578872 +doccontainerchecksum 24cc3a8931fe48134810ffe626789139a821585f0d359a177c56ae5a442482fb9d36f344061128ac185469b97c4c3f440ad02ebc7135366253cd9bbcf99895bc docfiles size=180 RELOC/doc/latex/was/fixmath.pdf RELOC/doc/latex/was/gensymb.pdf RELOC/doc/latex/was/icomma.pdf RELOC/doc/latex/was/readme.1st RELOC/doc/latex/was/upgreek.pdf +srccontainersize 9388 +srccontainerchecksum 507ed77f8a5a119c16fcb9478a559f516a2e612893941f8854e4945968ef5b44ccab641f1737c745b33209828a4541e3615dd46f304b5e2f5b29c5282eeeccef srcfiles size=16 RELOC/source/latex/was/fixmath.dtx RELOC/source/latex/was/fixmath.ins @@ -177571,18 +299280,73 @@ srcfiles size=16 RELOC/source/latex/was/icomma.ins RELOC/source/latex/was/upgreek.dtx RELOC/source/latex/was/upgreek.ins +runfiles size=6 + RELOC/tex/latex/was/fixmath.sty + RELOC/tex/latex/was/gensymb.sty + RELOC/tex/latex/was/icomma.sty + RELOC/tex/latex/was/upgreek.sty catalogue-ctan /macros/latex/contrib/was -catalogue-date 2014-10-16 09:10:04 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license collection +catalogue-topics collection + +name wasy +category Package +revision 35831 +catalogue wasy2 +shortdesc The wasy fonts (Waldi symbol fonts) +relocated 1 +longdesc These are the wasy (Waldi symbol) fonts, second release. This +longdesc bundle presents the fonts in Metafont format, but they are also +longdesc available in Adobe Type 1 format. Support under LaTeX is +longdesc provided by the wasysym package. +containersize 22016 +containerchecksum ba62a952ec1beb086cfdad1701780669e253d66163c6dc62d247182920d5fddacd062f3c7f0cec97ff8c3d0572fddef09f0fa30e82db9f6d58ddfedb37a6b0d3 +doccontainersize 148956 +doccontainerchecksum 1b8f655b1c9a150e6f0d7fbc91dfb7c9158154709b226f04b4a456e1f3961bc65521b70844e736f68be9c66f2b852687f0d50352a6254343c5557177450d3e0c +docfiles size=53 + RELOC/doc/fonts/wasy/legal.txt + RELOC/doc/fonts/wasy/wasydoc.pdf details="Package documentation" + RELOC/doc/fonts/wasy/wasydoc.tex + RELOC/doc/fonts/wasy/wasyfont.2 +runfiles size=46 + RELOC/fonts/source/public/wasy/lasychr.mf + RELOC/fonts/source/public/wasy/rsym.mf + RELOC/fonts/source/public/wasy/wasy10.mf + RELOC/fonts/source/public/wasy/wasy5.mf + RELOC/fonts/source/public/wasy/wasy6.mf + RELOC/fonts/source/public/wasy/wasy7.mf + RELOC/fonts/source/public/wasy/wasy8.mf + RELOC/fonts/source/public/wasy/wasy9.mf + RELOC/fonts/source/public/wasy/wasyb10.mf + RELOC/fonts/source/public/wasy/wasychr.mf + RELOC/fonts/tfm/public/wasy/wasy10.tfm + RELOC/fonts/tfm/public/wasy/wasy5.tfm + RELOC/fonts/tfm/public/wasy/wasy6.tfm + RELOC/fonts/tfm/public/wasy/wasy7.tfm + RELOC/fonts/tfm/public/wasy/wasy8.tfm + RELOC/fonts/tfm/public/wasy/wasy9.tfm + RELOC/fonts/tfm/public/wasy/wasyb10.tfm + RELOC/tex/plain/wasy/wasyfont.tex +catalogue-ctan /fonts/wasy2 +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics font font-mf font-symbol name wasy2-ps category Package revision 35830 -shortdesc Type 1 versions of wasy2 fonts. +shortdesc Type 1 versions of wasy2 fonts relocated 1 longdesc Converted (Adobe Type 1) outlines of (some of) the wasy2 fonts. depend wasy execute addMixedMap wasy.map +containersize 214496 +containerchecksum 9ef8a52b1a92c162d567999ccaa2e77ca09f190dfb1a25c0073c5a66f97131b7b7ff4c562b473814f2359374e23b0191d1d1d5f45627e3896e75fa3aad19d3bc +doccontainersize 1000 +doccontainerchecksum 681f579b96bf6e5cf7f4e0fecf9e259aa60db57879820cc779f46f2065c0177ad0871bb8f0bf1f9409b0eb553611a54af9c9ce9b547ca9be1545022188bf74d5 +docfiles size=1 + RELOC/doc/fonts/wasy2-ps/README details="Readme" runfiles size=83 RELOC/fonts/afm/public/wasy2-ps/wasy10.afm RELOC/fonts/afm/public/wasy2-ps/wasy5.afm @@ -177606,11 +299370,10 @@ runfiles size=83 RELOC/fonts/type1/public/wasy2-ps/wasy9.pfm RELOC/fonts/type1/public/wasy2-ps/wasyb10.pfb RELOC/fonts/type1/public/wasy2-ps/wasyb10.pfm -docfiles size=1 - RELOC/doc/fonts/wasy2-ps/README catalogue-ctan /fonts/wasy2/ps-type1/hoekwater -catalogue-date 2014-12-19 15:21:31 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license pd +catalogue-topics font font-type1 font-symbol name wasysym category Package @@ -177622,202 +299385,838 @@ longdesc glyphs like male and female symbols and astronomical symbols, longdesc as well as the complete lasy font set and other odds and ends. longdesc The wasysym package implements an easy to use interface for longdesc these symbols. -runfiles size=5 - RELOC/tex/latex/wasysym/uwasy.fd - RELOC/tex/latex/wasysym/uwasyvar.fd - RELOC/tex/latex/wasysym/wasysym.sty +containersize 3564 +containerchecksum 9098cb0665f5ebd360a92f44aceb1b8c27c58b174c83a1b60ea837e605428ed2fda95a2b7836f69fbb06380fadc1a210a93ef519acb4bd4d393260472725240e +doccontainersize 90892 +doccontainerchecksum 7e7b46e8ff31a827c836d6bc6f8ac49474f23286470018276ebac18c386c4041f817fd9893a1a1f97d1fe1be3100c5f904987ece98b34c5816e347e4f9a1f300 docfiles size=27 - RELOC/doc/latex/wasysym/wasysym.pdf + RELOC/doc/latex/wasysym/wasysym.pdf details="Package documentation" RELOC/doc/latex/wasysym/wasysym.upl RELOC/doc/latex/wasysym/wasysym.xml +srccontainersize 8220 +srccontainerchecksum 4049e94ec5ae362178dbefae2f6a1e4718b5cee3fecf3d80b148682f64d2a830c47ca4a3b42c0f423f6f221d8f88fd9a8a2ff009e499a442207c0fdb7434a352 srcfiles size=8 RELOC/source/latex/wasysym/wasysym.dtx RELOC/source/latex/wasysym/wasysym.ins +runfiles size=5 + RELOC/tex/latex/wasysym/uwasy.fd + RELOC/tex/latex/wasysym/uwasyvar.fd + RELOC/tex/latex/wasysym/wasysym.sty catalogue-ctan /macros/latex/contrib/wasysym -catalogue-date 2012-06-08 12:16:32 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font-supp catalogue-version 2.0 -name wasy -category Package -revision 35831 -catalogue wasy2 -shortdesc The wasy fonts (Waldi symbol fonts). -relocated 1 -longdesc These are the wasy (Waldi symbol) fonts, second release. This -longdesc bundle presents the fonts in Metafont format, but they are also -longdesc available in Adobe Type 1 format. Support under LaTeX is -longdesc provided by the wasysym package. -runfiles size=46 - RELOC/fonts/source/public/wasy/lasychr.mf - RELOC/fonts/source/public/wasy/rsym.mf - RELOC/fonts/source/public/wasy/wasy10.mf - RELOC/fonts/source/public/wasy/wasy5.mf - RELOC/fonts/source/public/wasy/wasy6.mf - RELOC/fonts/source/public/wasy/wasy7.mf - RELOC/fonts/source/public/wasy/wasy8.mf - RELOC/fonts/source/public/wasy/wasy9.mf - RELOC/fonts/source/public/wasy/wasyb10.mf - RELOC/fonts/source/public/wasy/wasychr.mf - RELOC/fonts/tfm/public/wasy/wasy10.tfm - RELOC/fonts/tfm/public/wasy/wasy5.tfm - RELOC/fonts/tfm/public/wasy/wasy6.tfm - RELOC/fonts/tfm/public/wasy/wasy7.tfm - RELOC/fonts/tfm/public/wasy/wasy8.tfm - RELOC/fonts/tfm/public/wasy/wasy9.tfm - RELOC/fonts/tfm/public/wasy/wasyb10.tfm - RELOC/tex/plain/wasy/wasyfont.tex -docfiles size=53 - RELOC/doc/fonts/wasy/legal.txt - RELOC/doc/fonts/wasy/wasydoc.pdf - RELOC/doc/fonts/wasy/wasydoc.tex - RELOC/doc/fonts/wasy/wasyfont.2 -catalogue-ctan /fonts/wasy2 -catalogue-date 2015-02-11 00:12:23 +0100 -catalogue-license pd - -name webguide -category Package -revision 25813 -shortdesc Brief Guide to LaTeX Tools for Web publishing. -relocated 1 -longdesc The documentation constitutes an example of the package's own -longdesc recommendations (being presented both in PDF and HTML). -docfiles size=70 - RELOC/doc/latex/webguide/README - RELOC/doc/latex/webguide/expeg.6 - RELOC/doc/latex/webguide/expeg6.mps - RELOC/doc/latex/webguide/webguide.css - RELOC/doc/latex/webguide/webguide.html - RELOC/doc/latex/webguide/webguide.pdf - RELOC/doc/latex/webguide/webguide.tex - RELOC/doc/latex/webguide/webguide0x.gif -catalogue-ctan /info/webguide -catalogue-date 2012-08-15 21:05:41 +0200 -catalogue-license other-free - name web category TLCore -revision 37078 -shortdesc original web programs tangle and weave +revision 50602 +shortdesc The original literate programming system longdesc The system processes 'web' files in two ways: firstly to longdesc rearrange them to produce compilable code (using the program longdesc tangle), and secondly to produce a TeX source (using the longdesc program weave) that may be typeset for comfortable reading. depend kpathsea depend web.ARCH -docfiles size=7 +containersize 524 +containerchecksum 0d2d771e8452d67278adec061e1df8cfc06f3af729ea5ae7849acd5fe1b628167b18d86b1037484dbb6b20d5f703bba7ba9fb255788becc53ce22fd87f39ca7b +doccontainersize 41588 +doccontainerchecksum 5647beef7b99a3a552b8f55d12ef669481e8ba3e01beefb014fb8e3cae6e8f419862131379b506ab8197e1717d563c34fa81d69db3c6db8107e6167447d87322 +docfiles size=16 texmf-dist/doc/man/man1/tangle.1 texmf-dist/doc/man/man1/tangle.man1.pdf texmf-dist/doc/man/man1/weave.1 texmf-dist/doc/man/man1/weave.man1.pdf catalogue-ctan /systems/knuth/dist/web -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license knuth +catalogue-topics litprog catalogue-version 4.5 +name web.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of web +containersize 71960 +containerchecksum 95bd480c18d4464094ac91899efe550dcdf4106a4cd0ba011f283d9c1cae5c6d485db708d188d13df5372cb0e8a6c970f7dae6a7bfd453a8cec3720038f9d53e +binfiles arch=aarch64-linux size=60 + bin/aarch64-linux/tangle + bin/aarch64-linux/weave + +name web.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of web +containersize 87904 +containerchecksum 36eb31993740830e6a1e20924b964a452e7ef322621aca0a119edf599e9beb7eebcccddf931bdd000d3e21f8454bdc9d53bea8dc7a2bad26b500ac0cdf273466 +binfiles arch=amd64-freebsd size=72 + bin/amd64-freebsd/tangle + bin/amd64-freebsd/weave + +name web.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of web +containersize 72760 +containerchecksum a4987b570d3845804d4097b2012238d40e3df18ff4987b92a84cc38b525bafef6db49e63345960eeef28ad838f546e573ae2d2e3b154945c0d57043795165784 +binfiles arch=amd64-netbsd size=76 + bin/amd64-netbsd/tangle + bin/amd64-netbsd/weave + +name web.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of web +containersize 63468 +containerchecksum 83cc8492672522f27d8bc177bbfc8968cd5ae91a929ca5e2094ddb893cbec7a342d94af66a3f4368bee371ada69876d47d05b8e1fd86572e0e2de6f2f5366e5f +binfiles arch=armhf-linux size=53 + bin/armhf-linux/tangle + bin/armhf-linux/weave + +name web.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of web +containersize 37600 +containerchecksum 3ede932cc852827f6ac7ba68790ba74c7df721dd6cf3a97c21e9281c478b82266cdf3506034dfc18d1c32f67e2ef20b5917b2ce1ee3dd26967ebbe0517e8e4b4 +binfiles arch=i386-cygwin size=28 + bin/i386-cygwin/tangle.exe + bin/i386-cygwin/weave.exe + +name web.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of web +containersize 66644 +containerchecksum f378842c5d80870b36507646fc2a54b963e01072936be916992c1cf827e807e2347f675716343e1bf3d37bb44570d067356a6ed52c2d0dd926d55872cb63e44e +binfiles arch=i386-freebsd size=55 + bin/i386-freebsd/tangle + bin/i386-freebsd/weave + name web.i386-linux category TLCore -revision 36790 +revision 50281 shortdesc i386-linux files of web -binfiles arch=i386-linux size=77 +containersize 75344 +containerchecksum 6497039c833f88f7e8d4d3af1dc010327367539e015192da9d86932b92793180d6efcf37c012abd02aa7fdc59e4cb5e586f885722ce4de500de9da74b4ceca93 +binfiles arch=i386-linux size=65 bin/i386-linux/tangle bin/i386-linux/weave +name web.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of web +containersize 59764 +containerchecksum 6fc473f6996961b37acd57e6149f60b4faa17511648cfc79896bec37f3f40137d06cdef6814e18f50781d8b0d1bedc66ef17edc58dd250793fcfea3fbfcbc859 +binfiles arch=i386-netbsd size=71 + bin/i386-netbsd/tangle + bin/i386-netbsd/weave + +name web.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of web +containersize 75360 +containerchecksum 89a08ca0c9c05d33ad352b4623ce002c09d782addbd01b4793788e1678125fde44f54cdf74b8f849f2b2cd804737008b3ab6c907a9c838672e15c08b784ca0b2 +binfiles arch=i386-solaris size=60 + bin/i386-solaris/tangle + bin/i386-solaris/weave + +name web.win32 +category TLCore +revision 50155 +shortdesc win32 files of web +containersize 39100 +containerchecksum c9f28441ebdff34faaf9fbb18d7aec09c0f4a521d01385ba31dc859b80b966f640e4f54fef4e47dbf9fb4dbec9ccfb5cfa120bb1c7390740f4ca6e2fe3e9c418 +binfiles arch=win32 size=26 + bin/win32/tangle.exe + bin/win32/weave.exe + +name web.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of web +containersize 45368 +containerchecksum 48642623fcbfffd125a0b096b87eefdddfc96e13ba8f53c7cb28fe8a611c7aa415abc9ddd8dfd0ed639cb4ed953c24a5c2314ce66e39b5e99d0a24b1f2eaf1e1 +binfiles arch=x86_64-cygwin size=27 + bin/x86_64-cygwin/tangle.exe + bin/x86_64-cygwin/weave.exe + +name web.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of web +containersize 83480 +containerchecksum 1a377c10bb66fd606e9d9acbec441c334561ba165950bc8702a7c8585a408b6c9dcf8deffdfcca1f4b31dad39ac7dbf95556f7bb5014137c3997a052fd4b4e3a +binfiles arch=x86_64-darwin size=65 + bin/x86_64-darwin/tangle + bin/x86_64-darwin/weave + +name web.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of web +containersize 75596 +containerchecksum aaa27d1594dc94319f192b26c409f3403a395fb18d09bf83f881436a9d9a611c1157193c1ecea868bd227a55bad18c3033c09f5fcc9e66b386b78ae00e672097 +binfiles arch=x86_64-darwinlegacy size=60 + bin/x86_64-darwinlegacy/tangle + bin/x86_64-darwinlegacy/weave + +name web.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of web +containersize 78000 +containerchecksum 9fe94e612c34ff0329df43a39a4470a26a12f4607ca6c93d1a381ee5833f0bb8319b9d6f3d2b13b4a996f5130270b257acaeed8b3a267c98be86964218ed532e +binfiles arch=x86_64-linux size=60 + bin/x86_64-linux/tangle + bin/x86_64-linux/weave + +name web.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of web +containersize 85900 +containerchecksum 21fa234eceee93521310e8869d7ef304b9b6ee83c3bae40a81807126a195742f7ec1998cadbdc05d46163d5474846a9fe6e8352cd12acbd570550b7d9a5e3639 +binfiles arch=x86_64-linuxmusl size=70 + bin/x86_64-linuxmusl/tangle + bin/x86_64-linuxmusl/weave + +name web.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of web +containersize 86696 +containerchecksum 192fafae3a197e1438050ba50b493334be59dd90fc886776ace0a52d2b608b169147d9500c50ca65d1780d02c956064088eb7e507ae1da8d428cab2c0d6c5b18 +binfiles arch=x86_64-solaris size=68 + bin/x86_64-solaris/tangle + bin/x86_64-solaris/weave + +name webguide +category Package +revision 25813 +shortdesc Brief Guide to LaTeX Tools for Web publishing +relocated 1 +longdesc The documentation constitutes an example of the package's own +longdesc recommendations (being presented both in PDF and HTML). +containersize 452 +containerchecksum 0c99e86fcba92d067ddd658893b58463390764b215515068e025563b66f445b23ae11482345bf305106afc1284ffaf32b23a28c8e0f81319002dd6332c8a3848 +doccontainersize 145660 +doccontainerchecksum 933ceaf7bb2400fff1bfc5ec26f60d750e0995680579fe487536ddcf8eca670e2b6d3fb6150b4ad659c6fa594b9db540523a878c74e9aba9be7710b5380e55af +docfiles size=70 + RELOC/doc/latex/webguide/README details="README" + RELOC/doc/latex/webguide/expeg.6 + RELOC/doc/latex/webguide/expeg6.mps + RELOC/doc/latex/webguide/webguide.css + RELOC/doc/latex/webguide/webguide.html details="The document, as HTML" + RELOC/doc/latex/webguide/webguide.pdf details="The document, as PDF" + RELOC/doc/latex/webguide/webguide.tex + RELOC/doc/latex/webguide/webguide0x.gif +catalogue-ctan /info/webguide +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license other-free +catalogue-topics latex-doc + +name webquiz +category Package +revision 50694 +shortdesc Write interactive web based quizzes +longdesc WebQuiz makes it possible to use LaTeX to write interactive web +longdesc based quizzes. The quizzes are first written in LaTeX and then +longdesc converted into HTML files using WebQuiz, which is written in +longdesc Python3. The conversion from LaTeX to HTML is done behind the +longdesc scenes using TeX4ht. +depend webquiz.ARCH +containersize 48288 +containerchecksum 725ff4b81203704a5cbf066c48d25a959031f89eed094da4d6a9b07ad059d977b2026b5e6a1e704999cf3b1b8eeaefcb5713f099f016f9cf17206ec1c1183dac +doccontainersize 6857256 +doccontainerchecksum 6b25d04e4cff7db299c4f13ceb55525fa3a4ff2d094960fbe8171b3822ce2917d6d868e62ed3a1d2083d78b2ddb839ec211b5ba00a6fd894c29ab2d3a6ca7cb8 +docfiles size=2044 + texmf-dist/doc/latex/webquiz/README-doc + texmf-dist/doc/latex/webquiz/README.rst + texmf-dist/doc/latex/webquiz/examples/README-examples + texmf-dist/doc/latex/webquiz/examples/answer-complex.png + texmf-dist/doc/latex/webquiz/examples/answer-complex.tex + texmf-dist/doc/latex/webquiz/examples/answer-integer.png + texmf-dist/doc/latex/webquiz/examples/answer-integer.tex + texmf-dist/doc/latex/webquiz/examples/answer-lowercase.png + texmf-dist/doc/latex/webquiz/examples/answer-lowercase.tex + texmf-dist/doc/latex/webquiz/examples/answer-number.png + texmf-dist/doc/latex/webquiz/examples/answer-number.tex + texmf-dist/doc/latex/webquiz/examples/answer-star.png + texmf-dist/doc/latex/webquiz/examples/answer-star.tex + texmf-dist/doc/latex/webquiz/examples/answer-string.png + texmf-dist/doc/latex/webquiz/examples/answer-string.tex + texmf-dist/doc/latex/webquiz/examples/breadcrumbs.png + texmf-dist/doc/latex/webquiz/examples/breadcrumbs.tex + texmf-dist/doc/latex/webquiz/examples/choice-multiple.png + texmf-dist/doc/latex/webquiz/examples/choice-multiple.tex + texmf-dist/doc/latex/webquiz/examples/choice-single.png + texmf-dist/doc/latex/webquiz/examples/choice-single.tex + texmf-dist/doc/latex/webquiz/examples/ctanLion.jpg + texmf-dist/doc/latex/webquiz/examples/ctanLion.png + texmf-dist/doc/latex/webquiz/examples/ctanLion.tex + texmf-dist/doc/latex/webquiz/examples/discussion-Qref.png + texmf-dist/doc/latex/webquiz/examples/discussion-Qref.tex + texmf-dist/doc/latex/webquiz/examples/discussion-ref.png + texmf-dist/doc/latex/webquiz/examples/discussion-ref.tex + texmf-dist/doc/latex/webquiz/examples/discussion.png + texmf-dist/doc/latex/webquiz/examples/discussion.tex + texmf-dist/doc/latex/webquiz/examples/display-as-image.png + texmf-dist/doc/latex/webquiz/examples/display-as-image.tex + texmf-dist/doc/latex/webquiz/examples/french.png + texmf-dist/doc/latex/webquiz/examples/french.tex + texmf-dist/doc/latex/webquiz/examples/index-cz.png + texmf-dist/doc/latex/webquiz/examples/index-cz.tex + texmf-dist/doc/latex/webquiz/examples/index-en.png + texmf-dist/doc/latex/webquiz/examples/index-en.tex + texmf-dist/doc/latex/webquiz/examples/montypython.png + texmf-dist/doc/latex/webquiz/examples/montypython.tex + texmf-dist/doc/latex/webquiz/examples/nounits.png + texmf-dist/doc/latex/webquiz/examples/nounits.tex + texmf-dist/doc/latex/webquiz/examples/onepage.png + texmf-dist/doc/latex/webquiz/examples/onepage.tex + texmf-dist/doc/latex/webquiz/examples/pst2pdf.png + texmf-dist/doc/latex/webquiz/examples/pst2pdf.tex + texmf-dist/doc/latex/webquiz/examples/pstricks-ex.png + texmf-dist/doc/latex/webquiz/examples/pstricks-ex.tex + texmf-dist/doc/latex/webquiz/examples/quiz-page.png + texmf-dist/doc/latex/webquiz/examples/quiz-page.tex + texmf-dist/doc/latex/webquiz/examples/quizindex-dropdown.png + texmf-dist/doc/latex/webquiz/examples/random.png + texmf-dist/doc/latex/webquiz/examples/random.tex + texmf-dist/doc/latex/webquiz/examples/simple-html.png + texmf-dist/doc/latex/webquiz/examples/simple-pdf.png + texmf-dist/doc/latex/webquiz/examples/simple.tex + texmf-dist/doc/latex/webquiz/examples/theme-blue.png + texmf-dist/doc/latex/webquiz/examples/theme-blue.tex + texmf-dist/doc/latex/webquiz/examples/theme-darkblue.png + texmf-dist/doc/latex/webquiz/examples/theme-darkblue.tex + texmf-dist/doc/latex/webquiz/examples/theme-darkred.png + texmf-dist/doc/latex/webquiz/examples/theme-darkred.tex + texmf-dist/doc/latex/webquiz/examples/theme-default.png + texmf-dist/doc/latex/webquiz/examples/theme-default.tex + texmf-dist/doc/latex/webquiz/examples/theme-earthy.png + texmf-dist/doc/latex/webquiz/examples/theme-earthy.tex + texmf-dist/doc/latex/webquiz/examples/theme-fresh.png + texmf-dist/doc/latex/webquiz/examples/theme-fresh.tex + texmf-dist/doc/latex/webquiz/examples/theme-light.png + texmf-dist/doc/latex/webquiz/examples/theme-light.tex + texmf-dist/doc/latex/webquiz/examples/theme-lively.png + texmf-dist/doc/latex/webquiz/examples/theme-lively.tex + texmf-dist/doc/latex/webquiz/examples/theme-muted.png + texmf-dist/doc/latex/webquiz/examples/theme-muted.tex + texmf-dist/doc/latex/webquiz/examples/theme-sleek.png + texmf-dist/doc/latex/webquiz/examples/theme-sleek.tex + texmf-dist/doc/latex/webquiz/examples/theme-spring.png + texmf-dist/doc/latex/webquiz/examples/theme-spring.tex + texmf-dist/doc/latex/webquiz/examples/theme-vibrant.png + texmf-dist/doc/latex/webquiz/examples/theme-vibrant.tex + texmf-dist/doc/latex/webquiz/examples/tikz-ex.png + texmf-dist/doc/latex/webquiz/examples/tikz-ex.tex + texmf-dist/doc/latex/webquiz/webquiz-online-manual.pdf details="Online manual" + texmf-dist/doc/latex/webquiz/webquiz-online-manual.tex + texmf-dist/doc/latex/webquiz/webquiz.languages + texmf-dist/doc/latex/webquiz/webquiz.pdf details="Package documentation" + texmf-dist/doc/latex/webquiz/webquiz.settings + texmf-dist/doc/latex/webquiz/webquiz.tex + texmf-dist/doc/latex/webquiz/webquiz.themes + texmf-dist/doc/latex/webquiz/webquiz.usage + texmf-dist/doc/latex/webquiz/www/css/webquiz-blue.css + texmf-dist/doc/latex/webquiz/www/css/webquiz-darkblue.css + texmf-dist/doc/latex/webquiz/www/css/webquiz-darkred.css + texmf-dist/doc/latex/webquiz/www/css/webquiz-default.css + texmf-dist/doc/latex/webquiz/www/css/webquiz-earthy.css + texmf-dist/doc/latex/webquiz/www/css/webquiz-fresh.css + texmf-dist/doc/latex/webquiz/www/css/webquiz-light.css + texmf-dist/doc/latex/webquiz/www/css/webquiz-lively.css + texmf-dist/doc/latex/webquiz/www/css/webquiz-muted.css + texmf-dist/doc/latex/webquiz/www/css/webquiz-sleek.css + texmf-dist/doc/latex/webquiz/www/css/webquiz-spring.css + texmf-dist/doc/latex/webquiz/www/css/webquiz-vibrant.css + texmf-dist/doc/latex/webquiz/www/doc/webquiz-online-manual.tex + texmf-dist/doc/latex/webquiz/www/js/webquiz.js + texmf-dist/doc/man/man1/webquiz.1 + texmf-dist/doc/man/man1/webquiz.man1.pdf +runfiles size=77 + texmf-dist/scripts/webquiz/CHANGES.rst + texmf-dist/scripts/webquiz/LICENCE + texmf-dist/scripts/webquiz/README-scripts + texmf-dist/scripts/webquiz/webquiz + texmf-dist/scripts/webquiz/webquiz.bat + texmf-dist/scripts/webquiz/webquiz.py + texmf-dist/scripts/webquiz/webquiz_layout.py + texmf-dist/scripts/webquiz/webquiz_makequiz.py + texmf-dist/scripts/webquiz/webquiz_templates.py + texmf-dist/scripts/webquiz/webquiz_util.py + texmf-dist/scripts/webquiz/webquiz_xml.py + texmf-dist/tex/latex/webquiz/pgfsys-dvisvgm4ht.def + texmf-dist/tex/latex/webquiz/webquiz-czech.lang + texmf-dist/tex/latex/webquiz/webquiz-doc.code.tex + texmf-dist/tex/latex/webquiz/webquiz-english.lang + texmf-dist/tex/latex/webquiz/webquiz-french.lang + texmf-dist/tex/latex/webquiz/webquiz-german.lang + texmf-dist/tex/latex/webquiz/webquiz-greek.lang + texmf-dist/tex/latex/webquiz/webquiz-ini.code.tex + texmf-dist/tex/latex/webquiz/webquiz-italian.lang + texmf-dist/tex/latex/webquiz/webquiz-japanese.lang + texmf-dist/tex/latex/webquiz/webquiz-mandarin.lang + texmf-dist/tex/latex/webquiz/webquiz-russian.lang + texmf-dist/tex/latex/webquiz/webquiz-spanish.lang + texmf-dist/tex/latex/webquiz/webquiz-swedish.lang + texmf-dist/tex/latex/webquiz/webquiz.cfg + texmf-dist/tex/latex/webquiz/webquiz.cls + texmf-dist/tex/latex/webquiz/webquiz.ini +catalogue-also tex4ht +catalogue-contact-bugs https://github.com/AndrewAtLarge/WebQuiz/issues +catalogue-contact-repository https://github.com/AndrewAtLarge/WebQuiz +catalogue-ctan /macros/latex/contrib/webquiz +catalogue-date 2019-04-01 11:02:04 +0200 +catalogue-license gpl3+ +catalogue-topics exam cvt-html +catalogue-version 5.2 + +name webquiz.aarch64-linux +category Package +revision 50419 +shortdesc aarch64-linux files of webquiz +containersize 336 +containerchecksum 1cb60ecf1ba7d67cf92bc24f90449426d7a1c8c5c961fbc67ffec219d4b1dea4a236edf8310e57e6612f817bceca5ce3d322ec0cc220982812e035d6a2e4e534 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/webquiz + +name webquiz.amd64-freebsd +category Package +revision 50419 +shortdesc amd64-freebsd files of webquiz +containersize 340 +containerchecksum c6235ba63806943771abf2b7a6514ca109ee28c0ed9922bce24b542e00aee5971ff777c1eca1651c7989a26535ca149a47b7adc3b1a89df678e51aaeab297a56 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/webquiz + +name webquiz.amd64-netbsd +category Package +revision 50419 +shortdesc amd64-netbsd files of webquiz +containersize 340 +containerchecksum 87ef11ce8694246ea13cad35e9712cdb9fc21831d639fa279a2f54612e7b03211ccf266c5b377bf2e166fbd4ac65898e5f55d14095be7d305f2b8270b3639e2d +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/webquiz + +name webquiz.armhf-linux +category Package +revision 50419 +shortdesc armhf-linux files of webquiz +containersize 336 +containerchecksum b006642a05eeb01438e9d0ee0144c25963281d940aa69b0c5b88de29c1af6cdd9c3bf10414ea24692a18fdcc26b7bd460cb52bb04c65acedc37ee540b256d2ef +binfiles arch=armhf-linux size=1 + bin/armhf-linux/webquiz + +name webquiz.i386-cygwin +category Package +revision 50419 +shortdesc i386-cygwin files of webquiz +containersize 336 +containerchecksum a5519f391784f2bd95ab785bec3502ff9973ff8d685f68cf5cd10844eeabb292ffa73cfc325140bd80ea0449f06fad5e7a701c48b6c20581b773d21389fb00cc +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/webquiz + +name webquiz.i386-freebsd +category Package +revision 50419 +shortdesc i386-freebsd files of webquiz +containersize 340 +containerchecksum e1f1134df3ce96dc88f042c676d68a3c5f8885a3521199a0f8583f86978c9b8dc6ebf37787fa53654247aba691cc36ee0ac3b0a39583ba05dad55cfcaa60d680 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/webquiz + +name webquiz.i386-linux +category Package +revision 50419 +shortdesc i386-linux files of webquiz +containersize 336 +containerchecksum e089f71d2df0315d677da42d356a7daa18d24b7d3a9efe6d6e1e673403b4195a9d01de2b5db3742df877beb9bf5f93583e8076a48540c65bbca418284b262e39 +binfiles arch=i386-linux size=1 + bin/i386-linux/webquiz + +name webquiz.i386-netbsd +category Package +revision 50419 +shortdesc i386-netbsd files of webquiz +containersize 336 +containerchecksum 0348b35101113b3ff5cc2b8936b25a8b1a01c745118d4e0a1ad629b2baa597dd24e886af19f0843e41ff332d1832ee763bb0677c4f547d7f167ba21ba770c0a6 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/webquiz + +name webquiz.i386-solaris +category Package +revision 50419 +shortdesc i386-solaris files of webquiz +containersize 340 +containerchecksum c823bdc55029837e44bb28339008d4129400fde4d199e8ebd565675a9848bdb3c13706ae1466ccc7bb0edbdf3ab10a8c965498796abaab16660278fd4fb826d3 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/webquiz + +name webquiz.win32 +category Package +revision 50419 +shortdesc win32 files of webquiz +containersize 680 +containerchecksum e45e8cf643197660b7a973a6f9754e23412c8e0757f4b6cb9e85deb2c541a2d04f3cae613405c72d215d9f37f05f543dacf36c9575e26a39b94d2f931e750beb +binfiles arch=win32 size=1 + bin/win32/webquiz.exe + +name webquiz.x86_64-cygwin +category Package +revision 50419 +shortdesc x86_64-cygwin files of webquiz +containersize 340 +containerchecksum c2b76cb4b751070e1c8801e153bf35e0007cfe26beaf6360e02afcd0e01c529feb4af1cc3d43c187e076773987fd686f6b15b84cf72a3e69789e244dd67a689e +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/webquiz + +name webquiz.x86_64-darwin +category Package +revision 50419 +shortdesc x86_64-darwin files of webquiz +containersize 340 +containerchecksum afa6b437f525340d838cb236e471b90eea882bc5437471d5ca25034442e60623787f2fca4af8c430dd5eafe0e98f393fa7432a1c20349951e10b8a6efdb90477 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/webquiz + +name webquiz.x86_64-darwinlegacy +category Package +revision 50419 +shortdesc x86_64-darwinlegacy files of webquiz +containersize 348 +containerchecksum 3fc3723730168996e2585efad582a76e7bcfd603d4a7b68cfbd6f3049d01338874d43c3f0cc957ceb2b23c7922b048971540afacfab9f9ba2533f94547a5319e +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/webquiz + +name webquiz.x86_64-linux +category Package +revision 50419 +shortdesc x86_64-linux files of webquiz +containersize 340 +containerchecksum 64721cc42dca06adc878937d1e83e2f09cb270fb1e27736427f05064b5c29cb859f29b9446ea282dbed998ef4a0f217cf3f1023c905aeb1ac79d69c421a97531 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/webquiz + +name webquiz.x86_64-linuxmusl +category Package +revision 50419 +shortdesc x86_64-linuxmusl files of webquiz +containersize 344 +containerchecksum 5faf74a12dfc098dc5d350b3a31c8a36a2e868cbde7a9691c69ba846609c57a78bd1ea73644698476792dc643257cc55d0014a69008d4c5fefef4705f5f8b45e +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/webquiz + +name webquiz.x86_64-solaris +category Package +revision 50419 +shortdesc x86_64-solaris files of webquiz +containersize 336 +containerchecksum f45a215108765ed338ea6dfff1961000be03685b3fbcc218ee10624c3787b4cef987a27e97e2fa28d4f24545639c5eea14719bd61020753d2cd42d5d387e26cd +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/webquiz + name widetable category Package -revision 16082 +revision 49416 shortdesc An environment for typesetting tables of specified width relocated 1 longdesc The package defines a new environment that, unlike tabularX, -longdesc typesets a table of specified width by working on the inter- -longdesc column glue; the tabular cells will all be stretched (or +longdesc typesets a table of specified width by working on the +longdesc inter-column glue; the tabular cells will all be stretched (or longdesc shrunk) according to need. The package will use the e-TeX longdesc arithmetic extensions if they are available (they are, in most longdesc modern distributions). -runfiles size=2 - RELOC/tex/latex/widetable/widetable.sty -docfiles size=65 - RELOC/doc/latex/widetable/README +containersize 1980 +containerchecksum bba703845715cbcef2d8eb8b7ae944cf70930c03cf7807946f942b7b24dc2dac76522d61aad5ad926ff52cf30940ac56b3ddcf69a263163f945e15c57c0ef277 +doccontainersize 412876 +doccontainerchecksum 2b939f7e2b3ff5353f234782f3d2a73bf46dcb9b0631d5dfc354370bba77bdbb4f5ddba564b5dae15706131b817dbea309e26e6525f18a8db4140b1454fa7592 +docfiles size=103 + RELOC/doc/latex/widetable/README details="Readme" RELOC/doc/latex/widetable/manifest.txt - RELOC/doc/latex/widetable/widetable.pdf -srcfiles size=9 + RELOC/doc/latex/widetable/widetable.pdf details="Package documentation" +srccontainersize 10252 +srccontainerchecksum 312fc7e7d488fae3afb7ce6c8d419ea7c8d89bf2d131aa1a19db173a6dba9844c132511b123983de93481776f7d87818bb239ffca88526500c618983ab1eda5c +srcfiles size=8 RELOC/source/latex/widetable/widetable.dtx - RELOC/source/latex/widetable/widetable.ins +runfiles size=1 + RELOC/tex/latex/widetable/widetable.sty catalogue-ctan /macros/latex/contrib/widetable -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-12-14 16:36:59 +0100 catalogue-license lppl1.3 -catalogue-version 1.1 +catalogue-topics table-long +catalogue-version 1.5 + +name widows-and-orphans +category Package +revision 49194 +shortdesc Identify (typographic) widows and orphans +relocated 1 +longdesc This package identifies all widows and orphans in a document to +longdesc help a user to get rid of them. The act of resolving still +longdesc needs to be done manually: By rewriting text, running some +longdesc paragraph long or short or or explicitly breaking in some +longdesc strategic place. It will also identify and warn about words +longdesc broken across columns or pages and display formulas separated +longdesc from their introductory paragraph. +containersize 2936 +containerchecksum 45c17dcbf2db08ca84b870c375bbd4e6caf9bbdcb7285c67082a72fb32822164d75520cdfd325b7f285a2936e8c0caf54480695d807fa6005d265d05fb4a51ad +doccontainersize 750848 +doccontainerchecksum d798cfcede09337b299442babd4f77d1035a9e2d356db24bd9537c903b58e82cf191b273297658704847332e0198d8f64bf89aaced529df344a7483307b0bd55 +docfiles size=200 + RELOC/doc/latex/widows-and-orphans/README.md details="Readme" + RELOC/doc/latex/widows-and-orphans/changes.txt + RELOC/doc/latex/widows-and-orphans/widows-and-orphans-code.pdf + RELOC/doc/latex/widows-and-orphans/widows-and-orphans-code.tex + RELOC/doc/latex/widows-and-orphans/widows-and-orphans-doc.pdf details="Package documentation" + RELOC/doc/latex/widows-and-orphans/widows-and-orphans-doc.tex +srccontainersize 12092 +srccontainerchecksum 0583468d3e4712eb666364ce2d3ef487c5c39797ec13408193c3976cd003098931427e30d0458d11186a7e3d11b377b59f8de97983d7c358ab8f27397b409426 +srcfiles size=11 + RELOC/source/latex/widows-and-orphans/widows-and-orphans.dtx + RELOC/source/latex/widows-and-orphans/widows-and-orphans.ins +runfiles size=3 + RELOC/tex/latex/widows-and-orphans/widows-and-orphans.sty +catalogue-also nowidow +catalogue-contact-bugs https://github.com/FrankMittelbach/fmitex/issues +catalogue-contact-repository https://github.com/FrankMittelbach/fmitex +catalogue-ctan /macros/latex/contrib/widows-and-orphans +catalogue-date 2018-11-18 22:31:10 +0100 +catalogue-license lppl1.3c +catalogue-topics layout +catalogue-version 1.0b name williams category Package revision 15878 -shortdesc Miscellaneous macros by Peter Williams. +shortdesc Miscellaneous macros by Peter Williams relocated 1 -longdesc The bundle provides two packages: - antree, which provides -longdesc macros for annotated node trees, and - toklist, which is an +longdesc The bundle provides two packages: antree, which provides macros +longdesc for annotated node trees, and toklist, which is an longdesc implementation of Knuth's token list macros, to be found on longdesc pp.378-379 of the TeXbook. +containersize 2472 +containerchecksum 44ef966e5d8535aa7bb32109b20f47c774995e6368a92e20a68d25c1694ad86b7007bc90877d276c2f15b8aa3c3d11f7fe6aa117c35265b5988205df869af11b +doccontainersize 792 +doccontainerchecksum c559e587868698c1a635db13b6db265234b3b475937fa1759f9e7e3a8d0644a43543005e9607b5a965bbdc304863d6c7cae6e5cb8345b546dc34afd8c7e2de43 +docfiles size=1 + RELOC/doc/latex/williams/README runfiles size=3 RELOC/tex/latex/williams/antree.sty RELOC/tex/latex/williams/toklist.sty -docfiles size=1 - RELOC/doc/latex/williams/README catalogue-ctan /macros/latex/contrib/williams -catalogue-date 2012-08-15 21:05:41 +0200 +catalogue-date 2018-12-23 11:59:20 +0100 catalogue-license lppl +catalogue-topics tree macro-supp + +name windycity +category Package +revision 50952 +shortdesc A Chicago style for BibLaTeX +relocated 1 +longdesc Windy City is a style for BibLaTeX that formats notes, +longdesc bibliographies, parenthetical citations, and reference lists +longdesc according to the 17th edition of The Chicago Manual of Style. +containersize 16592 +containerchecksum fc2156b9e70dbf061dbcb11a10f530ced73334fd205a7ad155de136348ccc710c612469b8e269a5f491ce3f866b9329720ea9263a78ee668d46f6e18aa9fa3b3 +doccontainersize 444268 +doccontainerchecksum 6523801f17db75975c6d70cdd37e502454abc9136075d50da5e16c0a7870f74b61ad9cc200343936db7bca591104167f8197d086024e38f0392334afc52744fe +docfiles size=152 + RELOC/doc/latex/windycity/CHANGES.md + RELOC/doc/latex/windycity/LICENCE + RELOC/doc/latex/windycity/README.md details="Readme" + RELOC/doc/latex/windycity/windycity.bib + RELOC/doc/latex/windycity/windycity.pdf details="Package documentation" + RELOC/doc/latex/windycity/windycity.tex +runfiles size=27 + RELOC/tex/latex/windycity/american-windycity.lbx + RELOC/tex/latex/windycity/windycity.bbx + RELOC/tex/latex/windycity/windycity.cbx + RELOC/tex/latex/windycity/windycity.dbx + RELOC/tex/latex/windycity/windycity.sty +catalogue-also biblatex-chicago +catalogue-contact-bugs https://github.com/brianchase/windycity/issues +catalogue-contact-home https://github.com/brianchase/windycity +catalogue-contact-repository https://github.com/brianchase/windycity +catalogue-ctan /macros/latex/contrib/biblatex-contrib/windycity +catalogue-date 2019-04-03 11:01:15 +0200 +catalogue-license lppl1.3 +catalogue-topics biblatex + +name wintools.win32 +category TLCore +revision 50538 +shortdesc utilities provided only for Windows +longdesc Common utilities, mainly from the w32tex distribution. +postaction filetype name="TL.bitmap2eps.convert" cmd='"TEXDIR/bin/win32/bitmap2eps.exe" "%1"' +postaction progid extension=.bmp filetype="TL.bitmap2eps.convert" +postaction progid extension=.png filetype="TL.bitmap2eps.convert" +postaction progid extension=.gif filetype="TL.bitmap2eps.convert" +postaction progid extension=.jpg filetype="TL.bitmap2eps.convert" +postaction progid extension=.jpe filetype="TL.bitmap2eps.convert" +postaction progid extension=.jpeg filetype="TL.bitmap2eps.convert" +postaction progid extension=.tif filetype="TL.bitmap2eps.convert" +postaction progid extension=.tiff filetype="TL.bitmap2eps.convert" +containersize 4788244 +containerchecksum 4dd64ae9b0a1f7fe1ac4b32f4b66193a6455e4cf13a4fe4134d676021d9a3ef3506341426e6a8ba3c7c86438974cf842b00ebf91ad5e6817d6aaa13975eae1df +doccontainersize 973264 +doccontainerchecksum 5bf397f4c1e8a78c62ed16430c83aaed8d0c391db4dd40d9904ea570bce47c9e7264ee92a0d30d829e1c520e7ac3476ad10f07a82c70e3876b205504ec827fd5 +docfiles size=332 + texmf-dist/doc/support/tlaunch/COPYING + texmf-dist/doc/support/tlaunch/Changes + texmf-dist/doc/support/tlaunch/README + texmf-dist/doc/support/tlaunch/figures/custom_ed.png + texmf-dist/doc/support/tlaunch/figures/tlaunch_rug.png + texmf-dist/doc/support/tlaunch/figures/tlaunch_window.png + texmf-dist/doc/support/tlaunch/rug.zip + texmf-dist/doc/support/tlaunch/tlaunch.pdf + texmf-dist/doc/support/tlaunch/tlaunch.tex + texmf-dist/doc/support/wintools/fc-cache.pdf + texmf-dist/doc/support/wintools/fc-cat.pdf + texmf-dist/doc/support/wintools/fc-list.pdf + texmf-dist/doc/support/wintools/fc-match.pdf + texmf-dist/doc/support/wintools/fc-pattern.pdf + texmf-dist/doc/support/wintools/fc-query.pdf + texmf-dist/doc/support/wintools/fc-scan.pdf + texmf-dist/doc/support/wintools/fc-validate.pdf + texmf-dist/doc/support/wintools/gzip.pdf + texmf-dist/doc/support/wintools/pdfattach.pdf + texmf-dist/doc/support/wintools/pdfdetach.pdf + texmf-dist/doc/support/wintools/pdffonts.pdf + texmf-dist/doc/support/wintools/pdfimages.pdf + texmf-dist/doc/support/wintools/pdfinfo.pdf + texmf-dist/doc/support/wintools/pdfseparate.pdf + texmf-dist/doc/support/wintools/pdfsig.pdf + texmf-dist/doc/support/wintools/pdftocairo.pdf + texmf-dist/doc/support/wintools/pdftohtml.pdf + texmf-dist/doc/support/wintools/pdftoppm.pdf + texmf-dist/doc/support/wintools/pdftops.pdf + texmf-dist/doc/support/wintools/pdftotext.pdf + texmf-dist/doc/support/wintools/pdfunite.pdf + texmf-dist/doc/support/wintools/unzip.pdf + texmf-dist/doc/support/wintools/zip.pdf +runfiles size=3 + texmf-dist/scripts/bitmap2eps/bitmap2eps.vbs + texmf-dist/scripts/tlaunch/tlaunchmode.pl + texmf-dist/web2c/tlaunch.ini +binfiles arch=win32 size=7436 + bin/win32/aftopl.exe + bin/win32/bitmap2eps.exe + bin/win32/bmeps.exe + bin/win32/bmp2png.exe + bin/win32/cjpeg.exe + bin/win32/djpeg.exe + bin/win32/gunzip.exe + bin/win32/gzip.exe + bin/win32/jbig2.exe + bin/win32/luajitlatex.exe + bin/win32/pdfattach.exe + bin/win32/pdfdetach.exe + bin/win32/pdffonts.exe + bin/win32/pdfimages.exe + bin/win32/pdfinfo.exe + bin/win32/pdfseparate.exe + bin/win32/pdfsig.exe + bin/win32/pdftocairo.exe + bin/win32/pdftohtml.exe + bin/win32/pdftoppm.exe + bin/win32/pdftops.exe + bin/win32/pdftotext.exe + bin/win32/pdfunite.exe + bin/win32/png22pnm.exe + bin/win32/png2bmp.exe + bin/win32/sam2p.exe + bin/win32/texview.exe + bin/win32/tif22pnm.exe + bin/win32/tiff2png.exe + bin/win32/tlaunch.exe + bin/win32/tlaunchmode.exe + bin/win32/todos.exe + bin/win32/tomac.exe + bin/win32/tounix.exe + bin/win32/type1afm.exe + bin/win32/unzip.exe + bin/win32/zip.exe name withargs category Package -revision 38320 +revision 42756 shortdesc Ephemeral macro use relocated 1 +containersize 5924 +containerchecksum 6d30bb4adc63ebb1441c9547439757feb93a276fa53b7c203d688954e526602d5fd0916b37ee94cba8fb96db8935c02705ec12fdf2b22b48ce01dbd21f208d43 +doccontainersize 475376 +doccontainerchecksum d046bdb103f4fab24f41a730cbe585d9d8bcdf2c47f60bd545619c83a8c200ac82b4a7422423cbec8b0473a86a3f92fa6e91a7a769a580e127857cc647d864b6 +docfiles size=120 + RELOC/doc/latex/withargs/README details="Readme" + RELOC/doc/latex/withargs/withargs.pdf details="Package documentation" + RELOC/doc/latex/withargs/withargs.tex runfiles size=7 RELOC/tex/latex/withargs/withargs-dry.sty RELOC/tex/latex/withargs/withargs-packagedoc.cls RELOC/tex/latex/withargs/withargs.sty -docfiles size=120 - RELOC/doc/latex/withargs/README - RELOC/doc/latex/withargs/withargs.pdf - RELOC/doc/latex/withargs/withargs.tex +catalogue-contact-repository https://github.com/mhelvens/latex-withargs catalogue-ctan /macros/latex/contrib/withargs -catalogue-date 2015-09-07 15:13:20 +0200 +catalogue-date 2017-06-28 04:59:31 +0200 catalogue-license lppl1.3 catalogue-topics macro-supp -catalogue-version 0.1.0 +catalogue-version 0.2.0 -name wnri-latex -category Package -revision 22338 -shortdesc LaTeX support for wnri fonts. -relocated 1 -longdesc LaTeX support for the wnri fonts. -runfiles size=7 - RELOC/tex/latex/wnri-latex/ot1wnr.fd - RELOC/tex/latex/wnri-latex/ot1wnss.fd - RELOC/tex/latex/wnri-latex/ot1wntt.fd - RELOC/tex/latex/wnri-latex/wnri.def - RELOC/tex/latex/wnri-latex/wnri.sty -docfiles size=51 - RELOC/doc/latex/wnri-latex/README - RELOC/doc/latex/wnri-latex/wnri.pdf - RELOC/doc/latex/wnri-latex/wnritest.tex -srcfiles size=4 - RELOC/source/latex/wnri-latex/wnri.dtx - RELOC/source/latex/wnri-latex/wnri.ins -catalogue-ctan /macros/latex/contrib/wnri-latex -catalogue-date 2014-05-20 14:45:48 +0200 -catalogue-license gpl2 -catalogue-version 1.0b +name witharrows +category Package +revision 50356 +shortdesc "Aligned" math environments with arrows for comments +relocated 1 +longdesc This package provides an environment WithArrows which is +longdesc similar to the environment aligned of amsmath (and mathtools), +longdesc but gives the possibility to draw arrows on the right side of +longdesc the alignment. These arrows are usually used to give +longdesc explanations concerning the mathematical calculus presented. +longdesc The package requires the following other LaTeX packages: expl3, +longdesc footnote, l3keys2e, tikz, and xparse. +containersize 11068 +containerchecksum d5aa3725d7a82025b8064f4be067473b6469f4bd9721c33b84c3380ee038c8478e84ed4f15dfdefa39281799104cbe899b67e88f2e7d1b12df62c067b5f4895a +doccontainersize 368332 +doccontainerchecksum dec9798d741457d95d66c84ab48a46a62888e0aa60b9ea4c73258c5506f279eba82c7e8910e3d47a3ca6424f6e9b3633acd593c6161b70b3a66c5c62d6f30579 +docfiles size=93 + RELOC/doc/latex/witharrows/README.md details="Readme" + RELOC/doc/latex/witharrows/witharrows.pdf details="Package documentation" +srccontainersize 40360 +srccontainerchecksum 8fd64d67af8d09675051793df0b183cba8a05438c56cbb639f4d37b0b567c06929298e38f3755dd3aca7eae509d65e70906405bdd53eeaa1eee6d0d0724883a8 +srcfiles size=53 + RELOC/source/latex/witharrows/witharrows.dtx + RELOC/source/latex/witharrows/witharrows.ins +runfiles size=16 + RELOC/tex/latex/witharrows/witharrows.sty +catalogue-ctan /macros/latex/contrib/witharrows +catalogue-date 2019-03-11 23:14:22 +0100 +catalogue-license lppl1.3 +catalogue-topics maths maths-syseqn pgf-tikz expl3 +catalogue-version 1.16 name wnri category Package revision 22459 -shortdesc Ridgeway's fonts. +shortdesc Ridgeway's fonts relocated 1 longdesc Fonts (as Metafont source) for Old English, Indic languages in longdesc Roman transliteration and Puget Salish (Lushootseed) and other longdesc Native American languages. +containersize 46312 +containerchecksum 6ad06e6a867b323c382b85fa1effe16280566b1b61dd37be0bd7e9384d145fff2b1b4ff8117aa49749db1f15495e835e3367b0b7191cf9444e36fed662ffd0ed +doccontainersize 6784 +doccontainerchecksum c3d6ff664edd89fa711e9573b138b29b113b588ddef9ad4a258e1f28c4ca2aad1f05741a402c1c1972bbc317e0cb989ce7a51e52d59b42629343d9a5780b64d0 +docfiles size=9 + RELOC/doc/fonts/wnri/README details="Readme" + RELOC/doc/fonts/wnri/old/README details="Readme" + RELOC/doc/fonts/wnri/old/barnett.map + RELOC/doc/fonts/wnri/old/lushucid.map + RELOC/doc/fonts/wnri/old/newgb.map runfiles size=132 RELOC/fonts/source/public/wnri/acctmax.mf RELOC/fonts/source/public/wnri/acutacct.mf @@ -177898,20 +300297,208 @@ runfiles size=132 RELOC/fonts/tfm/public/wnri/wnris8.tfm RELOC/fonts/tfm/public/wnri/wnrit10.tfm RELOC/fonts/tfm/public/wnri/wnrit8.tfm -docfiles size=9 - RELOC/doc/fonts/wnri/README - RELOC/doc/fonts/wnri/old/README - RELOC/doc/fonts/wnri/old/barnett.map - RELOC/doc/fonts/wnri/old/lushucid.map - RELOC/doc/fonts/wnri/old/newgb.map catalogue-ctan /fonts/wnri -catalogue-date 2014-05-20 14:46:50 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics font font-mf font-specialist + +name wnri-latex +category Package +revision 22338 +shortdesc LaTeX support for wnri fonts +relocated 1 +longdesc LaTeX support for the wnri fonts. +containersize 2664 +containerchecksum 1dcecf9ac38a9099625ed6be3955af8b063ee5b5b8d0d3e3ab8c94a8215b72b86a0b5dbe930eb69680917bd3d6652b3f4f08bb377197ab6f3d2fccf2b96aa59e +doccontainersize 198684 +doccontainerchecksum 924266d547910d25ed5355ec2ef697d271dd992aeb6767d5bcb703d4d07cd34b6844e9a821ed93f5a04237aba1c185fb68926967e78043f390785b619c2389d2 +docfiles size=51 + RELOC/doc/latex/wnri-latex/README details="Readme" + RELOC/doc/latex/wnri-latex/wnri.pdf details="Package documentation" + RELOC/doc/latex/wnri-latex/wnritest.tex +srccontainersize 4364 +srccontainerchecksum e3c5cfaae7b14a28489344392d66a1e2570c900ffd571c54b4f2d13b16d6dabb5cf58cad9259f8b662a218567982d1ac51ef8b2a757902c36540200fd984a497 +srcfiles size=4 + RELOC/source/latex/wnri-latex/wnri.dtx + RELOC/source/latex/wnri-latex/wnri.ins +runfiles size=7 + RELOC/tex/latex/wnri-latex/ot1wnr.fd + RELOC/tex/latex/wnri-latex/ot1wnss.fd + RELOC/tex/latex/wnri-latex/ot1wntt.fd + RELOC/tex/latex/wnri-latex/wnri.def + RELOC/tex/latex/wnri-latex/wnri.sty +catalogue-ctan /macros/latex/contrib/wnri-latex +catalogue-date 2018-01-06 12:14:59 +0100 +catalogue-license gpl2 +catalogue-topics font-supp +catalogue-version 1.0b + +name wordcount +category Package +revision 46165 +shortdesc Estimate the number of words in a LaTeX document +longdesc The package provides a relatively easy way of estimating the +longdesc number of words in a LaTeX document that does not require +longdesc dvitty or other DVI converters. It does however require +longdesc something like Unix grep -c that can search a file for a +longdesc particular string and report the number of matching lines. An +longdesc accompanying shell script wordcount.sh contains more +longdesc information in its comments. +depend wordcount.ARCH +containersize 5036 +containerchecksum 3c26b3bcb4c3edce8cf9d6628cf6b89103aa1ae454b07c1e963ca90693c18fb851772a52082a23efbefb51235005e558fd553afc891a472eb39cd430c97f861a +doccontainersize 776 +doccontainerchecksum a86b034ebff42c89f07015b01f86756a83ff2c69ed911ecde185ff719b09e3db47f284fe778c9dfd16442d1513edc9ddbb4944cc242328c17bd3fc18a0aa098f +docfiles size=1 + texmf-dist/doc/latex/wordcount/README details="Readme" +runfiles size=3 + texmf-dist/scripts/wordcount/wordcount.sh + texmf-dist/tex/latex/wordcount/wordcount.tex +catalogue-ctan /macros/latex/contrib/wordcount +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics word-count +catalogue-version 1.7 + +name wordcount.aarch64-linux +category Package +revision 46228 +shortdesc aarch64-linux files of wordcount +containersize 344 +containerchecksum 739c3adff21c499899bb58b58527bf3270fb4e0be87f4c043abf5683b1370e7fd4ae795c832a8fd01a1cc206111981fcd9d7042ddb68b9b2ac8e3eeedd750c6f +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/wordcount + +name wordcount.amd64-freebsd +category Package +revision 46165 +shortdesc amd64-freebsd files of wordcount +containersize 344 +containerchecksum 33f0b1efdd0a95864fee5a58d842eb51f980632fb0c55f871b699a87858da123dff37183b5dc48682c21e7bfefd470c79c86d6dd2baacc652ab65b3e577a5a9c +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/wordcount + +name wordcount.amd64-netbsd +category Package +revision 46165 +shortdesc amd64-netbsd files of wordcount +containersize 340 +containerchecksum 195e6a7fff59b4e1a2b764256c68441bf85e942f1f1e6aceec2e1711fa15dd5ef06bd5bf7a22641b4511f7e77142545eac79ec2961964550577e7be041ed298a +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/wordcount + +name wordcount.armhf-linux +category Package +revision 46165 +shortdesc armhf-linux files of wordcount +containersize 340 +containerchecksum d7fb3d0a494f54fa2de0ef175d4a79cad4dce886350d4fedb6facbd627036d35484a5f0d83ce726289a9d3e4eec234f5c87adb01885e73ad3eaf18444d8f8edd +binfiles arch=armhf-linux size=1 + bin/armhf-linux/wordcount + +name wordcount.i386-cygwin +category Package +revision 46165 +shortdesc i386-cygwin files of wordcount +containersize 340 +containerchecksum 847c51fb980daec15df099fbf4eaea2b76caa4dbd17ea6934f02ce36a947a805df469c4516f61fd286ce1a75cbaec878ec46a7e51c66f09acfb9af0f688944e8 +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/wordcount + +name wordcount.i386-freebsd +category Package +revision 46165 +shortdesc i386-freebsd files of wordcount +containersize 344 +containerchecksum c7cbf36c312dd5fdbbc3ef40a9f60f8e88babe7e115830f5814a7322b600b92c43ecebcfe757ce3562605b9419eb4298ac604068b6ab42ac855d24a2cca17a2e +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/wordcount + +name wordcount.i386-linux +category Package +revision 46165 +shortdesc i386-linux files of wordcount +containersize 340 +containerchecksum 771c77750c069768777641029494260227eb9d337e7ee02c9640547cf77bfa34d59919ae0e5a7c860e2dab5b85e93a8e35d4b7d9be83f79d59ae4661b7f96bce +binfiles arch=i386-linux size=1 + bin/i386-linux/wordcount + +name wordcount.i386-netbsd +category Package +revision 46165 +shortdesc i386-netbsd files of wordcount +containersize 340 +containerchecksum ceee2b21ed420b25969900c7f275f9ae4d177351cd6c70142fe11bb8438d6475ec8cce6c342b37830f6271d4f4c39e5915f5e238a9355d601ddc7266149d37af +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/wordcount + +name wordcount.i386-solaris +category Package +revision 46165 +shortdesc i386-solaris files of wordcount +containersize 340 +containerchecksum ab92fa37f7166ee8807c1e08fd860abc0afd02bc85214c3295e64cdf1cc1f21aad54fd1c195c5985ae6771c812d9312f34fcb088f1de27509b431261db312514 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/wordcount + +name wordcount.x86_64-cygwin +category Package +revision 46165 +shortdesc x86_64-cygwin files of wordcount +containersize 344 +containerchecksum c1d07cdcc7a19aa97fec6aa9c23d18b4efad2e24af63b1a48d6c3630c84a9ebed4a6ea18c6dbb78443cee22d01bb7338ef1895d94916f8fd1cea4128a06b9bf4 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/wordcount + +name wordcount.x86_64-darwin +category Package +revision 46165 +shortdesc x86_64-darwin files of wordcount +containersize 344 +containerchecksum ea9a5616dc966ae484d10ec649ae3a2394b2bebc8938b16a00d580238eed318eaf2b14bc7cc287d42ce13790ebad56211b067fde8674581442e424f02dc80b2d +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/wordcount + +name wordcount.x86_64-darwinlegacy +category Package +revision 46165 +shortdesc x86_64-darwinlegacy files of wordcount +containersize 348 +containerchecksum 2a17dae1a49fce92c177214e816d2dfd2719736e61e0682d2f03b3d094c2eef898870d47d2a60632d7227f8251df0331f993ff9c87ec4a77c733d1f45a1f532f +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/wordcount + +name wordcount.x86_64-linux +category Package +revision 46165 +shortdesc x86_64-linux files of wordcount +containersize 340 +containerchecksum 040676cec77862755e98612699d52add93781f533e54b110f1b715015de1c32c923c68bf6b7ed66f7df5ce66e3d1fc0e4f78d706486608c0cd4b32e6fe600719 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/wordcount + +name wordcount.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of wordcount +containersize 348 +containerchecksum 7195831c2bbc51ad451557fd8ae9c30bdd87b455a5880d538abb4231af69511cbeb0b46a84a9ea896df6a9e11c66da442500391599fb0f43dbadbf0f36dd6dd3 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/wordcount + +name wordcount.x86_64-solaris +category Package +revision 46165 +shortdesc x86_64-solaris files of wordcount +containersize 340 +containerchecksum 12268cfbf06b97653cfc725fd6ae14f4e3b8708c6384a4749119d40084f23d9cdf9c4b12d9dbcb5d83fb0c62550f8e1c944e344aad86c0251e399a58dc5f0785 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/wordcount name wordlike category Package revision 15878 -shortdesc Simulating word processor layout. +shortdesc Simulating word processor layout relocated 1 longdesc The package simulates typical word processor layout: narrow longdesc page margins, Times, Helvetica and Courier fonts, \LARGE or @@ -177922,76 +300509,145 @@ longdesc resembles the usual "wordlike" output. The design of the longdesc package draws on several discussions in the de.comp.text.tex longdesc and comp.text.tex newsgroups that are referred to in the longdesc manual. -runfiles size=1 - RELOC/tex/latex/wordlike/wordlike.sty +containersize 1584 +containerchecksum d600073b2373119973ca47564938db5824181d6b74409ef7f4a2b19d53b83b97ccf8edf5d77dd831c0d52a4379f5928ad7a0391d90a2f19fe4d3ef681133078b +doccontainersize 110924 +doccontainerchecksum 10bbfa76beb0718dff8d4175712567e34e77aaefbce9fbc350d5bca43d8d5e87fe1cdcce5c558946c2b04beede8628b7535abc451f7d904ac283929ae39c6460 docfiles size=31 RELOC/doc/latex/wordlike/README - RELOC/doc/latex/wordlike/wordlike.pdf + RELOC/doc/latex/wordlike/wordlike.pdf details="Package documentation" +srccontainersize 6324 +srccontainerchecksum 23e7f66f064e7e8bbf94d58118c0c8891a316fc2e2fdf37156b078242fb33343a38d19f03dd605035ce874de1d05d9e405c612e32c407e061f54386cfef791ac srcfiles size=5 RELOC/source/latex/wordlike/wordlike.dtx RELOC/source/latex/wordlike/wordlike.ins +runfiles size=1 + RELOC/tex/latex/wordlike/wordlike.sty catalogue-ctan /macros/latex/contrib/wordlike -catalogue-date 2012-06-08 12:16:32 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics layout catalogue-version 1.2b +name worksheet +category Package +revision 48423 +shortdesc Easy creation of worksheets +relocated 1 +longdesc This package provides macros and an environment for easy +longdesc worksheet creation: Use the exercise environment for formating +longdesc exercises in a simple, efficient design; typeset customized and +longdesc automatically numbered worksheet titles in the same way as +longdesc standard LaTeX titles (using \maketitle); provide course and +longdesc author information with a scrlayer-scrpage based automated +longdesc header; conforming to different babel languages. (Currently +longdesc English, French, and German are supported.) +containersize 3812 +containerchecksum 439c430189e74e8c476a068fe449034fa1c8f4e8770ee454b92b8645ee865b103a02b0eecb45a925a8021fa7c64d98240e5f1f980913515df49d8415bbeb2c2d +doccontainersize 96080 +doccontainerchecksum 56d502e993eb77f7dd4b2a659a8646823cf033a3e246e90b0c6e4e9d2a7cb31922dee26c942404b13d18e7abaa79714b4394b589376d67e8fc1556a098ec7960 +docfiles size=30 + RELOC/doc/latex/worksheet/README.md details="Readme" + RELOC/doc/latex/worksheet/worksheet.pdf details="Package documentation" + RELOC/doc/latex/worksheet/worksheet.tex +runfiles size=4 + RELOC/tex/latex/worksheet/worksheet.sty +catalogue-ctan /macros/latex/contrib/worksheet +catalogue-date 2018-08-18 05:31:14 +0200 +catalogue-license lppl1.3c +catalogue-topics exercise exam +catalogue-version 1.1 + name wrapfig category Package revision 22048 -shortdesc Produces figures which text can flow around. +shortdesc Produces figures which text can flow around relocated 1 longdesc Allows figures or tables to have text wrapped around them. Does longdesc not work in combination with list environments, but can be used longdesc in a parbox or minipage, and in twocolumn format. Supports the longdesc float package. -runfiles size=7 - RELOC/tex/latex/wrapfig/wrapfig.sty +containersize 9360 +containerchecksum ea9d0693a43f985b9ab13a51e0af82b866adc8500dfb9f42e8b20ce8facd07d0534749bda61d13bc86b921300336c9f7e6099f252c4c65370a2e2cb4423589ae +doccontainersize 337900 +doccontainerchecksum 9ba4292d2641a31f3719ca66e3d80ca70638f9c943bfad9e9e08543f57a53eccc1292930e95d6a3677d0696e0deb1d1ca698b83eb7285baae275b70ac808be33 docfiles size=87 - RELOC/doc/latex/wrapfig/multiple-span.txt - RELOC/doc/latex/wrapfig/wrapfig-doc.pdf + RELOC/doc/latex/wrapfig/multiple-span.txt details="How to use wrapfig to span multiple columns" + RELOC/doc/latex/wrapfig/wrapfig-doc.pdf details="Package documentation" RELOC/doc/latex/wrapfig/wrapfig-doc.tex +runfiles size=7 + RELOC/tex/latex/wrapfig/wrapfig.sty +catalogue-also floatflt catalogue-ctan /macros/latex/contrib/wrapfig -catalogue-date 2012-05-30 14:33:40 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics text-flow catalogue-version 3.6 name wsemclassic category Package revision 31532 -shortdesc LaTeX class for Bavarian school w-seminar papers. +shortdesc LaTeX class for Bavarian school w-seminar papers relocated 1 longdesc The class is designed either to conform with the longdesc recommendations of the Bavarian Kultusministerium for longdesc typesetting w-seminar papers (strict mode), or to use another longdesc style which should look better. The class is based on the LaTeX longdesc standard report class. -runfiles size=3 - RELOC/tex/latex/wsemclassic/wsemclassic.cls +containersize 3772 +containerchecksum 064c1ec12a33dbb6c5a2c08c98c21d5684d8be6edb807987e69a47002d52bda4634a8e0d8016d01aaec6b0bcb9851de61d2a1723f70ea7da2dd4000d2340033d +doccontainersize 401712 +doccontainerchecksum d86741a35d1873a17839e880b2e1c0915cf7b64bd52e5836f9967159479611482c2b2c67388066b9f171574109a5fa0a5b9555ccf4e629d4b26434a31cd754da docfiles size=106 RELOC/doc/latex/wsemclassic/LICENSE RELOC/doc/latex/wsemclassic/Makefile - RELOC/doc/latex/wsemclassic/README + RELOC/doc/latex/wsemclassic/README details="Readme" RELOC/doc/latex/wsemclassic/test.bib RELOC/doc/latex/wsemclassic/user-doc.tex RELOC/doc/latex/wsemclassic/wsemclassic-test.pdf RELOC/doc/latex/wsemclassic/wsemclassic-test.tex - RELOC/doc/latex/wsemclassic/wsemclassic.pdf + RELOC/doc/latex/wsemclassic/wsemclassic.pdf details="Package documentation" +srccontainersize 6948 +srccontainerchecksum cbf8ef51ab7782a2b52d238ee2f517a541ef1a0196ff72f08cd722c3335a80a2520fbd359cf865302229cf146b16931d4b163571e908360adc8139c2ade5f2b3 srcfiles size=7 RELOC/source/latex/wsemclassic/wsemclassic.dtx RELOC/source/latex/wsemclassic/wsemclassic.ins +runfiles size=3 + RELOC/tex/latex/wsemclassic/wsemclassic.cls +catalogue-contact-repository https://github.com/jorsn/wsemclassic/ catalogue-ctan /macros/latex/contrib/wsemclassic -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license bsd +catalogue-topics dissertation catalogue-version 1.0.1 name wsuipa category Package revision 25469 -shortdesc International Phonetic Alphabet fonts. +shortdesc International Phonetic Alphabet fonts relocated 1 longdesc The package provides a 7-bit IPA font, as Metafont source, and longdesc macros for support under TeXt1 and LaTeX. The fonts (and longdesc macros) are now largely superseded by the tipa fonts. +containersize 36108 +containerchecksum 7488fab88bb273463ffa45819fb486aa3c95d7202d8ffe2a8aa8f2a1b00555e70bbc5a008a72cb60ddc1759dbca60bed05d2a21b4308e75490e965e71a84ee7f +doccontainersize 76996 +doccontainerchecksum b24aa32e2e7b466d7afc827aed570deb70b41163cbe6ce975d8df77e9dcc92b453e5f0d5f0edd5a2f05c006939003849b7b44c2e3f8a86ffd61a51ff307466e5 +docfiles size=110 + RELOC/doc/fonts/wsuipa/LICENCE-wsuipa.txt + RELOC/doc/fonts/wsuipa/README details="Package Readme" + RELOC/doc/fonts/wsuipa/changes.dec93 + RELOC/doc/fonts/wsuipa/changes.jun91 + RELOC/doc/fonts/wsuipa/changes.mar91 + RELOC/doc/fonts/wsuipa/changes.may92 + RELOC/doc/fonts/wsuipa/changes.nov90 + RELOC/doc/fonts/wsuipa/compilefonts + RELOC/doc/fonts/wsuipa/ipamacs.tex + RELOC/doc/fonts/wsuipa/ipaman.ps details="Package documentation and font details" + RELOC/doc/fonts/wsuipa/latex209/ipalman.tex + RELOC/doc/fonts/wsuipa/latex209/lipaman.tex + RELOC/doc/fonts/wsuipa/latex2e/ipaman.tex + RELOC/doc/fonts/wsuipa/text1/ipaman.tex runfiles size=102 RELOC/fonts/source/public/wsuipa/iaccent.mf RELOC/fonts/source/public/wsuipa/igreekl.mf @@ -178038,51 +300694,177 @@ runfiles size=102 RELOC/tex/latex/wsuipa/ipa.sty RELOC/tex/latex/wsuipa/ipalmacs.sty RELOC/tex/latex/wsuipa/uipa.fd -docfiles size=110 - RELOC/doc/fonts/wsuipa/LICENCE-wsuipa.txt - RELOC/doc/fonts/wsuipa/README - RELOC/doc/fonts/wsuipa/changes.dec93 - RELOC/doc/fonts/wsuipa/changes.jun91 - RELOC/doc/fonts/wsuipa/changes.mar91 - RELOC/doc/fonts/wsuipa/changes.may92 - RELOC/doc/fonts/wsuipa/changes.nov90 - RELOC/doc/fonts/wsuipa/compilefonts - RELOC/doc/fonts/wsuipa/ipamacs.tex - RELOC/doc/fonts/wsuipa/ipaman.ps - RELOC/doc/fonts/wsuipa/latex209/ipalman.tex - RELOC/doc/fonts/wsuipa/latex209/lipaman.tex - RELOC/doc/fonts/wsuipa/latex2e/ipaman.tex - RELOC/doc/fonts/wsuipa/text1/ipaman.tex +catalogue-also wsuipa2tipa catalogue-ctan /fonts/wsuipa -catalogue-date 2012-01-27 13:33:18 +0100 +catalogue-date 2017-10-29 15:25:02 +0100 catalogue-license other-free +catalogue-topics font font-mf phonetic + +name wtref +category Package +revision 42981 +shortdesc Extend LaTeX's cross-reference system +relocated 1 +longdesc This package extends the cross-reference system of LaTeX2e and +longdesc introduces concepts of namespace and scope. It also allows +longdesc users to customize reference formats. The package is part of +longdesc the WT Series. +containersize 1932 +containerchecksum bae4e9c07d17e94a661a7a168fb5777d95f7b65644308197633069ec23d0b9e10e93cd0c1e892db9d85ae54f50fa787c60d04266eee512f45c5ecb3ec68f039a +doccontainersize 345884 +doccontainerchecksum 5d7f2338beb7cf22ba62c2fcabec2b37900fb208726a59c25fe6b12c8605d15210a8cac8da454c8ad09090ddbeb01987aef53086cdb26628b72f32752cca1d87 +docfiles size=90 + RELOC/doc/latex/wtref/LICENSE + RELOC/doc/latex/wtref/README.md details="Readme" + RELOC/doc/latex/wtref/wtref-ja.pdf details="Package documentation (Japanese)" language="ja" + RELOC/doc/latex/wtref/wtref-ja.tex + RELOC/doc/latex/wtref/wtref.pdf details="Package documentation" + RELOC/doc/latex/wtref/wtref.tex +runfiles size=2 + RELOC/tex/latex/wtref/wtref.sty +catalogue-ctan /macros/latex/contrib/wtref +catalogue-date 2017-01-17 12:28:26 +0100 +catalogue-license mit +catalogue-topics label-ref +catalogue-version 0.3.2 name xargs category Package revision 15878 -shortdesc Define commands with many optional arguments. +shortdesc Define commands with many optional arguments relocated 1 longdesc The package provides extended versions of \newcommand and longdesc related LaTeX commands, which allow easy and robust definition longdesc of macros with many optional arguments, using a clear and longdesc simple xkeyval-style syntax. -runfiles size=4 - RELOC/tex/latex/xargs/xargs.sty +containersize 3372 +containerchecksum 43b9cc5246123ef3c424614415e04db9e7a578eef348c3d580626918a4c31ac99714cf501dd54d305ed6ab9ad7e0533bf5b39250c43ad682032dd676a12173d2 +doccontainersize 181868 +doccontainerchecksum 387a051eb8581b51d2042bcfae2ff9af99659d664c328c6b30b3789c75fb73687c32e2037df7a345335966671a3e3267ff4b9e0eead0e5b759bd305850ef22b6 docfiles size=58 - RELOC/doc/latex/xargs/README - RELOC/doc/latex/xargs/xargs-fr.pdf - RELOC/doc/latex/xargs/xargs.pdf + RELOC/doc/latex/xargs/README details="Readme" + RELOC/doc/latex/xargs/xargs-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/xargs/xargs.pdf details="Package documentation (English)" language="en" +srccontainersize 17444 +srccontainerchecksum e4717f476260648eb66fefeeb125606c16d302bbad32c55730a0102da355d0c828b106b25391f69bb34627f56cd7659dc185bbcd36ba7f5a8f0b77a0786a7957 srcfiles size=15 RELOC/source/latex/xargs/xargs.dtx +runfiles size=4 + RELOC/tex/latex/xargs/xargs.sty catalogue-ctan /macros/latex/contrib/xargs -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics latex3 macro-supp catalogue-version 1.1 +name xassoccnt +category Package +revision 49516 +shortdesc Associated counters stepping simultaneously +relocated 1 +longdesc This package provides a way of associating counters to an +longdesc existing driver counter so that incrementing the driver counter +longdesc will increase its associated counters as well. This package can +longdesc be regarded as a supplement to the totcount package by +longdesc Vasileios Koutavas, but it can be used without it, too. +longdesc xassoccnt is a successor and a complete rewrite of the assoccnt +longdesc package by the same author. However, as of 2017-03-05, some +longdesc features of assoccnt are not (yet) contained in xassoccnt so +longdesc that the older package cannot yet be regarded as obsolete. +containersize 19660 +containerchecksum ba903cce2a9438c51e40d529e6b6c6993f4a2422aef2688cb9d875cc408e4423ff135afe3758bef6605eb26e1f2bf4921b652131e65bf068fcce54be3f765455 +doccontainersize 1209736 +doccontainerchecksum 5a1805d9cd838aa7369fe4ca2d10c8f46b8bf913c14d8ce8dc546d80598f455696f83825c3a1691fb5a3ad36fd68c2bcb62b6a682ba374e54071aeb3f33c7a87 +docfiles size=354 + RELOC/doc/latex/xassoccnt/README details="Readme" + RELOC/doc/latex/xassoccnt/xassoccnt_counterformats_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_counterformats_example.tex + RELOC/doc/latex/xassoccnt/xassoccnt_counterhierarchy_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_counterhierarchy_example.tex + RELOC/doc/latex/xassoccnt/xassoccnt_counternames_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_counternames_example.tex + RELOC/doc/latex/xassoccnt/xassoccnt_coupledcounters_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_coupledcounters_example.tex + RELOC/doc/latex/xassoccnt/xassoccnt_doc.pdf details="Package documentation" + RELOC/doc/latex/xassoccnt/xassoccnt_doc.tex + RELOC/doc/latex/xassoccnt/xassoccnt_driver_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_driver_example.tex + RELOC/doc/latex/xassoccnt/xassoccnt_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_example.tex + RELOC/doc/latex/xassoccnt/xassoccnt_getparentcounter_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_getparentcounter_example.tex + RELOC/doc/latex/xassoccnt/xassoccnt_label_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_label_example.tex + RELOC/doc/latex/xassoccnt/xassoccnt_parentcounterchain_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_parentcounterchain_example.tex + RELOC/doc/latex/xassoccnt/xassoccnt_periodiccounters_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_periodiccounters_example.tex + RELOC/doc/latex/xassoccnt/xassoccnt_resetlist_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_resetlist_example.tex + RELOC/doc/latex/xassoccnt/xassoccnt_resetloop_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_resetloop_example.tex + RELOC/doc/latex/xassoccnt/xassoccnt_suspendedcounters_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_suspendedcounters_example.tex + RELOC/doc/latex/xassoccnt/xassoccnt_totalcounters_example.pdf + RELOC/doc/latex/xassoccnt/xassoccnt_totalcounters_example.tex +runfiles size=31 + RELOC/tex/latex/xassoccnt/xassoccnt.sty +catalogue-also assoccnt +catalogue-contact-home http://www.ich-rede-mich-um-kopf-und-kragen.de +catalogue-ctan /macros/latex/contrib/xassoccnt +catalogue-date 2018-12-28 09:34:58 +0100 +catalogue-license lppl1.3 +catalogue-topics counter-mgmt macro-supp +catalogue-version 1.7 + +name xbmks +category Package +revision 48138 +shortdesc Create a cross-document bookmark tree +relocated 1 +longdesc The package defines the concept of a document bundle, which is +longdesc a collection of documents that are to be built separately, but +longdesc have a common bookmark tree. The only options are driver +longdesc options, these are dvips (Acrobat Distiller or ps2pdf these can +longdesc be used as the PDF creator), pdfLaTeX (and LuaLaTeX, which is +longdesc treated the same as pdfLaTeX), and XeLaTeX. The package +longdesc auto-detects pdfLaTeX and XeLaTeX, and dvips is the default, so +longdesc there is actually no need to pass the driver option. +containersize 4116 +containerchecksum c54e66e79cfb39276ab85c2e431326e071cb920483c00bfaa4dec7a431ea5c563ecf2ca6c5bbe0581f90054b75cc6f0a94d4e401863bc27790e4238a8792e1af +doccontainersize 308152 +doccontainerchecksum 95df04009084b9e4cffbc76b3ab6066e57ce6fbe5fcd1bf7f72970d98c0d5337523cd9a361e213365bed5addc8eefc6c01093e75b6010384d870dbb63cd05441 +docfiles size=105 + RELOC/doc/latex/xbmks/README.md details="Readme" + RELOC/doc/latex/xbmks/docs/xbmks.pdf + RELOC/doc/latex/xbmks/docs/xbmksman.pdf details="Package documentation" + RELOC/doc/latex/xbmks/docs/xbmksman.tex + RELOC/doc/latex/xbmks/examples/doc1.pdf + RELOC/doc/latex/xbmks/examples/doc1.tex + RELOC/doc/latex/xbmks/examples/doc2.pdf + RELOC/doc/latex/xbmks/examples/doc2.tex + RELOC/doc/latex/xbmks/examples/master.pdf + RELOC/doc/latex/xbmks/examples/master.tex + RELOC/doc/latex/xbmks/examples/stand-alone.tex +srccontainersize 7968 +srccontainerchecksum 7d5ff7b0e4807fcb2544051caacdbb477fae6a46d2d9adb0af2843f8ca995f3b14d0890035d64b846c8895b1ff33702d8712a7b984ea911b93b5e4cfd5cf0823 +srcfiles size=9 + RELOC/source/latex/xbmks/xbmks.dtx + RELOC/source/latex/xbmks/xbmks.ins +runfiles size=5 + RELOC/tex/latex/xbmks/xbmks-pdfmark.def + RELOC/tex/latex/xbmks/xbmks-pdftex.def + RELOC/tex/latex/xbmks/xbmks-xetex.def + RELOC/tex/latex/xbmks/xbmks.sty +catalogue-ctan /macros/latex/contrib/xbmks +catalogue-date 2018-07-04 18:39:06 +0200 +catalogue-license lppl1.2 +catalogue-topics pdfprocess adobe-distiller + name xcharter category Package -revision 37962 -shortdesc Extension of Bitstream Charter fonts. +revision 48498 +shortdesc Extension of Bitstream Charter fonts relocated 1 longdesc The package presents an extension of Bitstream Charter, which longdesc provides small caps, oldstyle figures and superior figures in @@ -178090,74 +300872,170 @@ longdesc all four styles, accompanied by LaTeX font support files. The longdesc fonts themselves are provided in both Adobe Type 1 and OTF longdesc formats, with supporting files as necessary. execute addMap XCharter.map -runfiles size=943 +containersize 1399004 +containerchecksum 32aafa37cc179afc9f3e73a9d786225e0d87cf6ea45922338b7c243513c824d690c7290ddc10584b738861fc2c9305b782cbb5b0a98c977789ef0ac0d5814161 +doccontainersize 361572 +doccontainerchecksum edfea3de7f720961080aa006301979d19323624694738991e6795d3ee4908b8dccf1c134a0a636da601906822fa8d847f9d63c87269e7be9c079c282711368f6 +docfiles size=95 + RELOC/doc/fonts/xcharter/README details="Readme" + RELOC/doc/fonts/xcharter/altone.py + RELOC/doc/fonts/xcharter/xcharter-doc.pdf details="Package documentation" + RELOC/doc/fonts/xcharter/xcharter-doc.tex +runfiles size=2175 RELOC/fonts/afm/public/xcharter/XCharter-Bold.afm RELOC/fonts/afm/public/xcharter/XCharter-BoldItalic.afm + RELOC/fonts/afm/public/xcharter/XCharter-BoldSlanted.afm RELOC/fonts/afm/public/xcharter/XCharter-Italic.afm RELOC/fonts/afm/public/xcharter/XCharter-Roman.afm + RELOC/fonts/afm/public/xcharter/XCharter-Slanted.afm + RELOC/fonts/afm/public/xcharter/XCharterMathBMI.afm + RELOC/fonts/afm/public/xcharter/XCharterMathBRM.afm + RELOC/fonts/afm/public/xcharter/XCharterMathMI.afm + RELOC/fonts/afm/public/xcharter/XCharterMathRM.afm RELOC/fonts/enc/dvips/xcharter/chalph.enc RELOC/fonts/enc/dvips/xcharter/chtabosf.enc + RELOC/fonts/enc/dvips/xcharter/xch1_3v4tq3.enc + RELOC/fonts/enc/dvips/xcharter/xch1_62ztbr.enc + RELOC/fonts/enc/dvips/xcharter/xch1_7p4e2o.enc + RELOC/fonts/enc/dvips/xcharter/xch1_bcg6lk.enc + RELOC/fonts/enc/dvips/xcharter/xch1_bpv7ty.enc RELOC/fonts/enc/dvips/xcharter/xch1_bwwzc2.enc - RELOC/fonts/enc/dvips/xcharter/xch1_ch2jyx.enc - RELOC/fonts/enc/dvips/xcharter/xch1_d2abnl.enc - RELOC/fonts/enc/dvips/xcharter/xch1_gq3a6i.enc - RELOC/fonts/enc/dvips/xcharter/xch1_jfcsri.enc - RELOC/fonts/enc/dvips/xcharter/xch1_jltj6c.enc - RELOC/fonts/enc/dvips/xcharter/xch1_ks4pfu.enc - RELOC/fonts/enc/dvips/xcharter/xch1_lq6vvn.enc - RELOC/fonts/enc/dvips/xcharter/xch1_sq3mdu.enc - RELOC/fonts/enc/dvips/xcharter/xch1_w7s2xk.enc - RELOC/fonts/enc/dvips/xcharter/xch1_wy7dbt.enc - RELOC/fonts/enc/dvips/xcharter/xch1_zcck2t.enc - RELOC/fonts/enc/dvips/xcharter/xch_2663q7.enc - RELOC/fonts/enc/dvips/xcharter/xch_2b3ply.enc - RELOC/fonts/enc/dvips/xcharter/xch_aprite.enc - RELOC/fonts/enc/dvips/xcharter/xch_atk3my.enc + RELOC/fonts/enc/dvips/xcharter/xch1_e3nxtd.enc + RELOC/fonts/enc/dvips/xcharter/xch1_esnimw.enc + RELOC/fonts/enc/dvips/xcharter/xch1_evj3rb.enc + RELOC/fonts/enc/dvips/xcharter/xch1_gb4haz.enc + RELOC/fonts/enc/dvips/xcharter/xch1_l6an6k.enc + RELOC/fonts/enc/dvips/xcharter/xch1_lfljed.enc + RELOC/fonts/enc/dvips/xcharter/xch1_lve4jz.enc + RELOC/fonts/enc/dvips/xcharter/xch1_m7ekhw.enc + RELOC/fonts/enc/dvips/xcharter/xch1_mtaw4d.enc + RELOC/fonts/enc/dvips/xcharter/xch1_mz2wxn.enc + RELOC/fonts/enc/dvips/xcharter/xch1_nzcsoe.enc + RELOC/fonts/enc/dvips/xcharter/xch1_q7u3cc.enc + RELOC/fonts/enc/dvips/xcharter/xch1_uyv5tr.enc + RELOC/fonts/enc/dvips/xcharter/xch1_w7odti.enc + RELOC/fonts/enc/dvips/xcharter/xch1_wi6ykn.enc + RELOC/fonts/enc/dvips/xcharter/xch1_xj54uk.enc + RELOC/fonts/enc/dvips/xcharter/xch1_xmfb6b.enc + RELOC/fonts/enc/dvips/xcharter/xch_26pbhy.enc + RELOC/fonts/enc/dvips/xcharter/xch_2o3aaj.enc + RELOC/fonts/enc/dvips/xcharter/xch_3v4tq3.enc + RELOC/fonts/enc/dvips/xcharter/xch_4siibn.enc + RELOC/fonts/enc/dvips/xcharter/xch_5klbw4.enc + RELOC/fonts/enc/dvips/xcharter/xch_62z5ot.enc + RELOC/fonts/enc/dvips/xcharter/xch_62ztbr.enc + RELOC/fonts/enc/dvips/xcharter/xch_7cmdv6.enc + RELOC/fonts/enc/dvips/xcharter/xch_7p4e2o.enc + RELOC/fonts/enc/dvips/xcharter/xch_a3psji.enc + RELOC/fonts/enc/dvips/xcharter/xch_ao7ayk.enc + RELOC/fonts/enc/dvips/xcharter/xch_ba4bq2.enc + RELOC/fonts/enc/dvips/xcharter/xch_bcg6lk.enc + RELOC/fonts/enc/dvips/xcharter/xch_bk4eiy.enc + RELOC/fonts/enc/dvips/xcharter/xch_bpv7ty.enc RELOC/fonts/enc/dvips/xcharter/xch_bwwzc2.enc - RELOC/fonts/enc/dvips/xcharter/xch_ch2jyx.enc - RELOC/fonts/enc/dvips/xcharter/xch_d2abnl.enc - RELOC/fonts/enc/dvips/xcharter/xch_eofewb.enc - RELOC/fonts/enc/dvips/xcharter/xch_ft2zfi.enc - RELOC/fonts/enc/dvips/xcharter/xch_gq3a6i.enc - RELOC/fonts/enc/dvips/xcharter/xch_h3miu6.enc - RELOC/fonts/enc/dvips/xcharter/xch_hoftv6.enc - RELOC/fonts/enc/dvips/xcharter/xch_jfcsri.enc - RELOC/fonts/enc/dvips/xcharter/xch_jltj6c.enc - RELOC/fonts/enc/dvips/xcharter/xch_kdlizx.enc - RELOC/fonts/enc/dvips/xcharter/xch_ks4pfu.enc - RELOC/fonts/enc/dvips/xcharter/xch_lq6vvn.enc - RELOC/fonts/enc/dvips/xcharter/xch_sq3mdu.enc - RELOC/fonts/enc/dvips/xcharter/xch_tdq2l3.enc + RELOC/fonts/enc/dvips/xcharter/xch_ch4v2b.enc + RELOC/fonts/enc/dvips/xcharter/xch_ct4qni.enc + RELOC/fonts/enc/dvips/xcharter/xch_cwi5fu.enc + RELOC/fonts/enc/dvips/xcharter/xch_dwd75d.enc + RELOC/fonts/enc/dvips/xcharter/xch_e3nxtd.enc + RELOC/fonts/enc/dvips/xcharter/xch_esnimw.enc + RELOC/fonts/enc/dvips/xcharter/xch_evj3rb.enc + RELOC/fonts/enc/dvips/xcharter/xch_g4jsot.enc + RELOC/fonts/enc/dvips/xcharter/xch_gb4haz.enc + RELOC/fonts/enc/dvips/xcharter/xch_ggr2qz.enc + RELOC/fonts/enc/dvips/xcharter/xch_h2xo5a.enc + RELOC/fonts/enc/dvips/xcharter/xch_h4dyum.enc + RELOC/fonts/enc/dvips/xcharter/xch_hftfu7.enc + RELOC/fonts/enc/dvips/xcharter/xch_hk5uz5.enc + RELOC/fonts/enc/dvips/xcharter/xch_hnm3ex.enc + RELOC/fonts/enc/dvips/xcharter/xch_iasu4e.enc + RELOC/fonts/enc/dvips/xcharter/xch_jqdzb6.enc + RELOC/fonts/enc/dvips/xcharter/xch_kkifs2.enc + RELOC/fonts/enc/dvips/xcharter/xch_l6an6k.enc + RELOC/fonts/enc/dvips/xcharter/xch_l7jokp.enc + RELOC/fonts/enc/dvips/xcharter/xch_lfljed.enc + RELOC/fonts/enc/dvips/xcharter/xch_lmi455.enc + RELOC/fonts/enc/dvips/xcharter/xch_lve4jz.enc + RELOC/fonts/enc/dvips/xcharter/xch_m7ekhw.enc + RELOC/fonts/enc/dvips/xcharter/xch_mtaw4d.enc + RELOC/fonts/enc/dvips/xcharter/xch_mz2wxn.enc + RELOC/fonts/enc/dvips/xcharter/xch_nzcsoe.enc + RELOC/fonts/enc/dvips/xcharter/xch_otbpkf.enc + RELOC/fonts/enc/dvips/xcharter/xch_ouuvex.enc + RELOC/fonts/enc/dvips/xcharter/xch_pmmkri.enc + RELOC/fonts/enc/dvips/xcharter/xch_q7u3cc.enc + RELOC/fonts/enc/dvips/xcharter/xch_qlavc3.enc + RELOC/fonts/enc/dvips/xcharter/xch_rwgtvm.enc RELOC/fonts/enc/dvips/xcharter/xch_tuu2ww.enc - RELOC/fonts/enc/dvips/xcharter/xch_uoltgb.enc - RELOC/fonts/enc/dvips/xcharter/xch_w7s2xk.enc - RELOC/fonts/enc/dvips/xcharter/xch_wy7dbt.enc - RELOC/fonts/enc/dvips/xcharter/xch_y6sx2d.enc - RELOC/fonts/enc/dvips/xcharter/xch_zcck2t.enc + RELOC/fonts/enc/dvips/xcharter/xch_uxsipk.enc + RELOC/fonts/enc/dvips/xcharter/xch_uyv5tr.enc + RELOC/fonts/enc/dvips/xcharter/xch_v6llfb.enc + RELOC/fonts/enc/dvips/xcharter/xch_vtvjjk.enc + RELOC/fonts/enc/dvips/xcharter/xch_w7odti.enc + RELOC/fonts/enc/dvips/xcharter/xch_wi6ykn.enc + RELOC/fonts/enc/dvips/xcharter/xch_wredey.enc + RELOC/fonts/enc/dvips/xcharter/xch_xj54uk.enc + RELOC/fonts/enc/dvips/xcharter/xch_xmfb6b.enc + RELOC/fonts/enc/dvips/xcharter/xch_ykltyo.enc + RELOC/fonts/enc/dvips/xcharter/xch_yrgi2d.enc + RELOC/fonts/enc/dvips/xcharter/xch_zojt4g.enc + RELOC/fonts/enc/dvips/xcharter/xch_zufbxc.enc + RELOC/fonts/enc/dvips/xcharter/xch_zvionm.enc + RELOC/fonts/enc/dvips/xcharter/xcharter-ot2.enc RELOC/fonts/map/dvips/xcharter/XCharter.map RELOC/fonts/opentype/public/xcharter/XCharter-Bold.otf RELOC/fonts/opentype/public/xcharter/XCharter-BoldItalic.otf + RELOC/fonts/opentype/public/xcharter/XCharter-BoldSlanted.otf RELOC/fonts/opentype/public/xcharter/XCharter-Italic.otf RELOC/fonts/opentype/public/xcharter/XCharter-Roman.otf + RELOC/fonts/opentype/public/xcharter/XCharter-Slanted.otf RELOC/fonts/tfm/public/xcharter/XCharter-Bol-osf.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BolIta-alph.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-dnom-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-dnom-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-dnom-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-inf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-numr-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-numr-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-numr-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-numr-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-numr-t1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-sup-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-sup-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-sup-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-sup-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-sup-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-sup-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-sup-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-sup-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-ot1G.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-ot2.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-sc-ot1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-sc-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-sc-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-sc-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-ts1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-ts1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-ly1--base.tfm @@ -178169,27 +301047,63 @@ runfiles size=943 RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-ts1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-numr-t1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-sup-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-sup-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-sup-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-sup-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-sup-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-sup-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-sup-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-ot1G.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-ot2.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-sc-ot1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-sc-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-sc-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-ts1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-ly1--base.tfm @@ -178201,28 +301115,131 @@ runfiles size=943 RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-ts1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-dnom-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-dnom-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-dnom-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-dnom-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-inf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-inf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-inf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-inf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-inf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-numr-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-numr-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-numr-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-numr-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-numr-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-sup-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-sup-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-sup-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-sup-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-sup-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-sup-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-sup-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-sup-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-sup-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-ot2.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tlf-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-tosf-ts1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Ita-alph.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-dnom-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-dnom-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-dnom-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-inf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-numr-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-numr-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-numr-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-numr-t1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-sup-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-sup-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-sup-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-sup-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-sup-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-sup-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-sup-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-sup-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-ot1G.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-ot2.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-sc-ot1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-sc-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-sc-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-ts1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-ts1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-ly1--base.tfm @@ -178234,27 +301251,63 @@ runfiles size=943 RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-ts1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-dnom-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-dnom-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-dnom-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-dnom-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-inf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-inf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-inf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-inf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-inf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-numr-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-numr-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-numr-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-numr-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-numr-t1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-sup-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-sup-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-sup-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-sup-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-sup-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-sup-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-sup-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-sup-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-sup-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-ot1G.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-ot2.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-sc-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-sc-ot1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-sc-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-sc-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-sc-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-ts1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-ts1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-ly1--base.tfm @@ -178266,216 +301319,577 @@ runfiles size=943 RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-ts1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-dnom-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-dnom-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-dnom-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-dnom-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-inf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-inf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-inf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-inf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-inf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-numr-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-numr-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-numr-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-numr-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-numr-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-sup-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-sup-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-sup-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-sup-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-sup-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-sup-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-sup-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-sup-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-sup-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-ot2.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tlf-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-tosf-ts1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-osf.tfm - RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-to.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-sc-ot1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-sc-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-sc-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-sc-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-ts1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-ts1.tfm - RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-to.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-sc-ot1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-sc-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-sc-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-ts1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-ts1.tfm - RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-to.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-ts1.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-sc-ot1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-sc-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-sc-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-ts1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-ts1.tfm - RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-to.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-sc-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-sc-ot1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-sc-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-sc-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-sc-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-ts1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharterMathBMI.tfm + RELOC/fonts/tfm/public/xcharter/XCharterMathBRM.tfm + RELOC/fonts/tfm/public/xcharter/XCharterMathMI.tfm + RELOC/fonts/tfm/public/xcharter/XCharterMathRM.tfm RELOC/fonts/tfm/public/xcharter/zchbmi.tfm + RELOC/fonts/tfm/public/xcharter/zchbmi0.tfm + RELOC/fonts/tfm/public/xcharter/zchbmia.tfm RELOC/fonts/tfm/public/xcharter/zchmi.tfm + RELOC/fonts/tfm/public/xcharter/zchmi0.tfm + RELOC/fonts/tfm/public/xcharter/zchmia.tfm RELOC/fonts/type1/public/xcharter/XCharter-Bold.pfb RELOC/fonts/type1/public/xcharter/XCharter-BoldItalic.pfb + RELOC/fonts/type1/public/xcharter/XCharter-BoldSlanted.pfb RELOC/fonts/type1/public/xcharter/XCharter-Italic.pfb RELOC/fonts/type1/public/xcharter/XCharter-Roman.pfb + RELOC/fonts/type1/public/xcharter/XCharter-Slanted.pfb + RELOC/fonts/type1/public/xcharter/XCharterMathBMI.pfb + RELOC/fonts/type1/public/xcharter/XCharterMathBRM.pfb + RELOC/fonts/type1/public/xcharter/XCharterMathMI.pfb + RELOC/fonts/type1/public/xcharter/XCharterMathRM.pfb + RELOC/fonts/vf/public/xcharter/XCharter-Bold-dnom-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-dnom-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-inf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-inf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-numr-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-numr-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-Bold-sup-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Bold-sup-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-sup-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-sup-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-ot1G.vf RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-sc-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-sc-ot1.vf RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-sc-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-ts1.vf RELOC/fonts/vf/public/xcharter/XCharter-Bold-tosf-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Bold-tosf-sc-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Bold-tosf-sc-ot1.vf RELOC/fonts/vf/public/xcharter/XCharter-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tosf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tosf-sc-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter-Bold-tosf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tosf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tosf-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-numr-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-numr-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-sup-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-sup-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-sup-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-ot1G.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-sc-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-sc-ot1.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-sc-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-ts1.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tosf-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tosf-sc-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tosf-sc-ot1.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tosf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tosf-sc-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tosf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tosf-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-dnom-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-dnom-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-inf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-inf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-numr-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-numr-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-sup-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-sup-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-sup-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-sup-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tlf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tlf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tlf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tlf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tlf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tlf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tlf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tlf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tlf-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tlf-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tosf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tosf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tosf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tosf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tosf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tosf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tosf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tosf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tosf-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tosf-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-dnom-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-dnom-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-inf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-inf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-numr-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-numr-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-Italic-sup-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Italic-sup-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-sup-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-sup-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-ot1G.vf RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-sc-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-sc-ot1.vf RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-sc-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-ts1.vf RELOC/fonts/vf/public/xcharter/XCharter-Italic-tosf-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Italic-tosf-sc-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Italic-tosf-sc-ot1.vf RELOC/fonts/vf/public/xcharter/XCharter-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tosf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tosf-sc-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter-Italic-tosf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tosf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tosf-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-dnom-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-dnom-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-inf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-inf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-numr-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-numr-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-Roman-sup-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Roman-sup-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-sup-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-sup-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-ot1G.vf RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-sc-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-sc-ot1.vf RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-sc-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-ts1.vf RELOC/fonts/vf/public/xcharter/XCharter-Roman-tosf-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Roman-tosf-sc-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Roman-tosf-sc-ot1.vf RELOC/fonts/vf/public/xcharter/XCharter-Roman-tosf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tosf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tosf-sc-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter-Roman-tosf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tosf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tosf-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter-Roman-tosf-ts1.vf - RELOC/fonts/vf/public/xcharter/XCharter1-Bold-to.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-dnom-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-dnom-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-inf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-inf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-numr-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-numr-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-sup-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-sup-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-sup-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-sup-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tlf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tlf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tlf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tlf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tlf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tlf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tlf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tlf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tlf-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tlf-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tosf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tosf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tosf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tosf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tosf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tosf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tosf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tosf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tosf-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tosf-ts1.vf RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-ot1.vf RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-sc-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-sc-ot1.vf RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-sc-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-ts1.vf - RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-to.vf RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-ot1.vf RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-sc-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-sc-ot1.vf RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-sc-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-ts1.vf - RELOC/fonts/vf/public/xcharter/XCharter1-Italic-to.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-ts1.vf RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-ot1.vf RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-sc-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-sc-ot1.vf RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-sc-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-ts1.vf - RELOC/fonts/vf/public/xcharter/XCharter1-Roman-to.vf RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-ot1.vf RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-sc-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-sc-ot1.vf RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-sc-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-tosf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-tosf-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-tosf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-tosf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-tosf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-tosf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-tosf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-tosf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-tosf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-tosf-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-tosf-ts1.vf RELOC/fonts/vf/public/xcharter/zchbmi.vf + RELOC/fonts/vf/public/xcharter/zchbmi0.vf + RELOC/fonts/vf/public/xcharter/zchbmia.vf RELOC/fonts/vf/public/xcharter/zchmi.vf + RELOC/fonts/vf/public/xcharter/zchmi0.vf + RELOC/fonts/vf/public/xcharter/zchmia.vf + RELOC/tex/latex/xcharter/LY1XCharter-Dnom.fd + RELOC/tex/latex/xcharter/LY1XCharter-Inf.fd + RELOC/tex/latex/xcharter/LY1XCharter-Numr.fd RELOC/tex/latex/xcharter/LY1XCharter-Sup.fd RELOC/tex/latex/xcharter/LY1XCharter-TLF.fd RELOC/tex/latex/xcharter/LY1XCharter-TOsF.fd + RELOC/tex/latex/xcharter/OT1XCharter-Dnom.fd + RELOC/tex/latex/xcharter/OT1XCharter-Inf.fd + RELOC/tex/latex/xcharter/OT1XCharter-Numr.fd RELOC/tex/latex/xcharter/OT1XCharter-Sup.fd RELOC/tex/latex/xcharter/OT1XCharter-TLF.fd RELOC/tex/latex/xcharter/OT1XCharter-TOsF.fd + RELOC/tex/latex/xcharter/OT2XCharter-TLF.fd + RELOC/tex/latex/xcharter/T1XCharter-Dnom.fd + RELOC/tex/latex/xcharter/T1XCharter-Inf.fd + RELOC/tex/latex/xcharter/T1XCharter-Numr.fd RELOC/tex/latex/xcharter/T1XCharter-Sup.fd RELOC/tex/latex/xcharter/T1XCharter-TLF.fd RELOC/tex/latex/xcharter/T1XCharter-TOsF.fd + RELOC/tex/latex/xcharter/T2ASRBXCharter-Sup.fd + RELOC/tex/latex/xcharter/T2ASRBXCharter-TLF.fd + RELOC/tex/latex/xcharter/T2ASRBXCharter-TOsF.fd + RELOC/tex/latex/xcharter/T2AXCharter-Sup.fd + RELOC/tex/latex/xcharter/T2AXCharter-TLF.fd + RELOC/tex/latex/xcharter/T2AXCharter-TOsF.fd RELOC/tex/latex/xcharter/TS1XCharter-TLF.fd RELOC/tex/latex/xcharter/TS1XCharter-TOsF.fd RELOC/tex/latex/xcharter/XCharter.fontspec RELOC/tex/latex/xcharter/XCharter.sty RELOC/tex/latex/xcharter/omlzchmi.fd -docfiles size=38 - RELOC/doc/fonts/xcharter/README - RELOC/doc/fonts/xcharter/altone.py - RELOC/doc/fonts/xcharter/xcharter-doc.pdf - RELOC/doc/fonts/xcharter/xcharter-doc.tex + RELOC/tex/latex/xcharter/t2asrbcmr.fd + RELOC/tex/latex/xcharter/t2asrbenc.def catalogue-ctan /fonts/xcharter -catalogue-date 2015-07-26 10:47:55 +0200 -catalogue-license other-free -catalogue-topics font font-type1 font-otf -catalogue-version 1.075 +catalogue-date 2018-08-27 10:05:39 +0200 +catalogue-license other-freelppl1.3 +catalogue-topics font font-serif font-proportional font-type1 font-otf font-t1enc font-multilingual cyrillic +catalogue-version 1.116 name xcite category Package revision 23783 -shortdesc Use citation keys from a different document. +shortdesc Use citation keys from a different document relocated 1 longdesc The package lets you use citation keys from another document, longdesc just as the xr package allows cross-document use of labels. -runfiles size=1 - RELOC/tex/latex/xcite/xcite.sty +containersize 1344 +containerchecksum f49a3b76fac8d4631cca607c354eef956e77c3cbe4e95a9104118072c5e320983bec9412dcd2400c3034a7e4fa8e463cfa53ef1de1a7c39f0d857a242671c0b5 +doccontainersize 207608 +doccontainerchecksum f53c69274392c42c661efa04319999aa43ad7e81f515ac6184325672f4d00d5bf8113aa68f36d4d4c24d9dad393c91c8a6dfe94b95c8edc449642db8cc43f7eb docfiles size=52 - RELOC/doc/latex/xcite/README - RELOC/doc/latex/xcite/xcite.pdf + RELOC/doc/latex/xcite/README details="Readme" + RELOC/doc/latex/xcite/xcite.pdf details="Package documentation" +srccontainersize 3108 +srccontainerchecksum 6db0c3ab886a2f90dd12e75dc8ad00391e09e8815dbd291b34d1fe9144677ef7b8c4c6bdc964ade6c12bb0dfcc53e2c56fa722ef30c3aa2a303e391e26ce57db srcfiles size=3 RELOC/source/latex/xcite/xcite.dtx RELOC/source/latex/xcite/xcite.ins +runfiles size=1 + RELOC/tex/latex/xcite/xcite.sty catalogue-ctan /macros/latex/contrib/xcite -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics cite-supp catalogue-version 1.0 name xcjk2uni category Package -revision 34382 -shortdesc Convert CJK characters to Unicode, in pdfTeX. +revision 50848 +shortdesc Convert CJK characters to Unicode, in pdfTeX relocated 1 longdesc The package provides commands to convert CJK characters to longdesc Unicode in non-UTF-8 encoding; it provides hooks to support longdesc hyperref in producing correct bookmarks. The bundle also longdesc provides /ToUnicode mapping file(s) for a CJK subfont; these longdesc can be used with the cmap package, allowing searches of, and -longdesc cut-and-paste operations on a PDF file generated by pdfTeX.. -runfiles size=807 +longdesc cut-and-paste operations on a PDF file generated by pdfTeX. +containersize 211772 +containerchecksum c1174c6abe555eee84d753f76608fb3fc3234c43c5666def063983653908a03b8eab3787dc9e061c0f6bf3bfae7bcda9a31ded49b039580fccb254ed33571e72 +doccontainersize 127476 +doccontainerchecksum 30f81325aefa49fd44031ddda4e1ff30c40ccc08645671e1439df38cc4efb2a5cf4d9d50e98e970e96e3b18046e16834710d6be8fd9e5fa18cf5271bd5ae339e +docfiles size=33 + RELOC/doc/latex/xcjk2uni/README.md details="Readme" + RELOC/doc/latex/xcjk2uni/xCJK2uni.pdf details="Package documentation (Chinese)" language="zh" +srccontainersize 7196 +srccontainerchecksum fa719c1936e76ac3d0bb7f212a53c64962ea2c7e00546c603da218fabea566c11591af056276f6edcc68e2cb0b13ded72cf37535c4a8fc5ce53243743d6f8e0a +srcfiles size=10 + RELOC/source/latex/xcjk2uni/xCJK2uni.dtx + RELOC/source/latex/xcjk2uni/xCJK2uni.ins +runfiles size=602 RELOC/tex/latex/xcjk2uni/cmap/c0001.cmap RELOC/tex/latex/xcjk2uni/cmap/c0002.cmap RELOC/tex/latex/xcjk2uni/cmap/c0003.cmap @@ -178833,44 +302247,48 @@ runfiles size=807 RELOC/tex/latex/xcjk2uni/xCJK2uni-UGBK.def RELOC/tex/latex/xcjk2uni/xCJK2uni-UJIS.def RELOC/tex/latex/xcjk2uni/xCJK2uni-UKS.def - RELOC/tex/latex/xcjk2uni/xCJK2uni-make.tex - RELOC/tex/latex/xcjk2uni/xCJK2uni-sfd.def RELOC/tex/latex/xcjk2uni/xCJK2uni.sty -docfiles size=36 - RELOC/doc/latex/xcjk2uni/README - RELOC/doc/latex/xcjk2uni/xCJK2uni.pdf -srcfiles size=10 - RELOC/source/latex/xcjk2uni/xCJK2uni.dtx - RELOC/source/latex/xcjk2uni/xCJK2uni.ins catalogue-ctan /macros/latex/contrib/xcjk2uni -catalogue-date 2014-06-20 18:05:51 +0200 -catalogue-license lppl1.3 -catalogue-version 0.4 +catalogue-date 2019-04-07 18:00:27 +0200 +catalogue-license lppl1.3c +catalogue-topics pdf-feat unicode +catalogue-version 0.8 -name xcolor-solarized +name xcntperchap category Package -revision 36318 -shortdesc Defines the 16 colors from Ethan Schoonover's Solarized palette +revision 46236 +shortdesc Track the number of subsections etc. that occur in a specified tracklevel relocated 1 -longdesc Built on top of the package, this package defines the sixteen -longdesc colors of Ethan Schoonover's popular color palette, Solarized, -longdesc for use in documents typeset with LaTeX and Friends. -runfiles size=1 - RELOC/tex/latex/xcolor-solarized/xcolor-solarized.sty -docfiles size=115 - RELOC/doc/latex/xcolor-solarized/xcolor-solarized.pdf -srcfiles size=4 - RELOC/source/latex/xcolor-solarized/xcolor-solarized.dtx - RELOC/source/latex/xcolor-solarized/xcolor-solarized.ins -catalogue-ctan /macros/latex/contrib/xcolor-solarized -catalogue-date 2015-03-01 06:19:26 +0100 +longdesc This package is the successor of cntperchap and allows to +longdesc provide more tracklevels than just only one. +containersize 3356 +containerchecksum dd87c239759d04adc359a6f1dcaefd090b7cc0afaeeefd9ef71530e5933f8b174d53c8110163822150bbb722b5ed8f47eb279f2224b02aedec6137ef7edf97c5 +doccontainersize 344160 +doccontainerchecksum 5f7554ebf4ef3d878c8a31872e6d67b6716ea7d6e5e1b38915f4b4d7c2edbc4fb1aa31d557e74cbbe792134e77a6c9cb4dd24ab0daf765659e399cc84e70d7c9 +docfiles size=102 + RELOC/doc/latex/xcntperchap/README details="Readme" + RELOC/doc/latex/xcntperchap/xcntperchap_basicusage.pdf + RELOC/doc/latex/xcntperchap/xcntperchap_basicusage.tex + RELOC/doc/latex/xcntperchap/xcntperchap_doc.pdf details="Package documentation" + RELOC/doc/latex/xcntperchap/xcntperchap_doc.tex + RELOC/doc/latex/xcntperchap/xcntperchap_driver.pdf + RELOC/doc/latex/xcntperchap/xcntperchap_driver.tex + RELOC/doc/latex/xcntperchap/xcntperchap_labelusage.pdf + RELOC/doc/latex/xcntperchap/xcntperchap_labelusage.tex +runfiles size=3 + RELOC/tex/latex/xcntperchap/xcntperchap.sty +catalogue-also cntperchap +catalogue-contact-home http://www.ich-rede-mich-um-kopf-und-kragen.de +catalogue-ctan /macros/latex/contrib/xcntperchap +catalogue-date 2018-01-05 22:19:02 +0100 catalogue-license lppl1.3 -catalogue-version 0.3 +catalogue-topics counter-mgmt macro-supp +catalogue-version 0.5 name xcolor category Package -revision 15878 -shortdesc Driver-independent color extensions for LaTeX and pdfLaTeX. +revision 41044 +shortdesc Driver-independent color extensions for LaTeX and pdfLaTeX relocated 1 longdesc The package starts from the basic facilities of the color longdesc package, and provides easy driver-independent access to several @@ -178881,33 +302299,98 @@ longdesc color models. Additionally, there is a command for alternating longdesc row colors plus repeated non-aligned material (like horizontal longdesc lines) in tables. Colors can be mixed like longdesc \color{red!30!green!40!blue}. -runfiles size=20 - RELOC/dvips/xcolor/xcolor.pro - RELOC/tex/latex/xcolor/svgnam.def - RELOC/tex/latex/xcolor/x11nam.def - RELOC/tex/latex/xcolor/xcolor.sty +containersize 17300 +containerchecksum 9fba18460e4488cf2836082952ffff6e5e481b964570ee515f503aed3c8790778e054919e4e24070ff6cf608e21c1356859341eae5704558b1293b01ba8c0925 +doccontainersize 669996 +doccontainerchecksum 65f15207df8a112a4bccbac1c5259053364b52da3f0d2fdf566e1e734f61e0649ae6cc674c96f775d8c668cc6238dad2993f06b81153d38713ebf96e747e0353 docfiles size=211 RELOC/doc/latex/xcolor/ChangeLog - RELOC/doc/latex/xcolor/README + RELOC/doc/latex/xcolor/README details="Readme" RELOC/doc/latex/xcolor/xcolor.lox - RELOC/doc/latex/xcolor/xcolor.pdf + RELOC/doc/latex/xcolor/xcolor.pdf details="Package documentation" RELOC/doc/latex/xcolor/xcolor1.tex - RELOC/doc/latex/xcolor/xcolor2.pdf + RELOC/doc/latex/xcolor/xcolor2.pdf details="Examples of usage with pstricks" RELOC/doc/latex/xcolor/xcolor2.tex RELOC/doc/latex/xcolor/xcolor3.tex RELOC/doc/latex/xcolor/xcolor4.tex +srccontainersize 76980 +srccontainerchecksum 236eb7d2f94c297e743c2b0508e55910b00495915b7910dba7e0bc107f2ee37b24e3975242bb11c2c64a99f2abc5a55bd799277b9fbcd98058ee8add005d2be7 srcfiles size=85 RELOC/source/latex/xcolor/xcolor.dtx RELOC/source/latex/xcolor/xcolor.ins +runfiles size=20 + RELOC/dvips/xcolor/xcolor.pro + RELOC/tex/latex/xcolor/svgnam.def + RELOC/tex/latex/xcolor/x11nam.def + RELOC/tex/latex/xcolor/xcolor.sty +catalogue-contact-home http://www.ukern.de/tex/xcolor.html catalogue-ctan /macros/latex/contrib/xcolor -catalogue-date 2011-11-28 13:31:05 +0100 -catalogue-license lppl -catalogue-version 2.11 +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.2 +catalogue-topics colour +catalogue-version 2.12 + +name xcolor-material +category Package +revision 42289 +shortdesc Defines the 256 colors from Google Material Color Palette +relocated 1 +longdesc The package is built on top of the great xcolor package. It +longdesc provides a useful definition of the beautiful Google Material +longdesc Color Palette, available at Google Material design, for its use +longdesc in document writing with LaTeX and Friends. +containersize 4432 +containerchecksum 7f1484435458dafa2a04eeb4b5b1b89ffee9ec8c91f1d724449457b719f92db009efd6b6a580a2b0ccb8ebc66c0d1889f3ffa05104c0fba5cc9c7ee90985d2d3 +doccontainersize 576656 +doccontainerchecksum 388f9b604291436ded0510437be93c1fdf120a91fc3ddbabb870840f2caa9e81313035ff6c9d0c00de259fa024f83399a4004e7ba512a5c3bc7920a08ff58819 +docfiles size=156 + RELOC/doc/latex/xcolor-material/README.md details="Readme" + RELOC/doc/latex/xcolor-material/xcolor-material.pdf details="Package documentation" +srccontainersize 11256 +srccontainerchecksum 118b21c883848b5bd6d558b5c22146fad54df5e107d0525e48df42c0bbe90b210c7ea3340fcf30b5782d251ee1caefa2aedb8a130cd01a84f4e9022a40ca6a8f +srcfiles size=13 + RELOC/source/latex/xcolor-material/xcolor-material.dtx + RELOC/source/latex/xcolor-material/xcolor-material.ins +runfiles size=5 + RELOC/tex/latex/xcolor-material/xcolor-material.sty +catalogue-ctan /macros/latex/contrib/xcolor-material +catalogue-date 2016-11-16 08:03:52 +0100 +catalogue-license lppl1.3 +catalogue-topics colour +catalogue-version 0.1 + +name xcolor-solarized +category Package +revision 41809 +shortdesc Defines the 16 colors from Ethan Schoonover's Solarized palette +relocated 1 +longdesc Built on top of the package, this package defines the sixteen +longdesc colors of Ethan Schoonover's popular color palette, Solarized, +longdesc for use in documents typeset with LaTeX and Friends. +containersize 1644 +containerchecksum be443123bb994c40fde0c1783c9863a2ce8b75a8e3e3d311cc34596e72f2830dc92feee9fe87638adee2e942d540424bc389460e12aa0e33fe4014b28a1d46f7 +doccontainersize 469792 +doccontainerchecksum a448de4d83ff30c2112c90fdf80f530b8e1ee46d6b3f574ad0933cbd415debd1f94cb1c55d6de5679d5502cf8e0e28b71cdbca803f0569422e79bf0ced384f45 +docfiles size=116 + RELOC/doc/latex/xcolor-solarized/README details="Readme" + RELOC/doc/latex/xcolor-solarized/xcolor-solarized.pdf details="Package documentation" +srccontainersize 4752 +srccontainerchecksum c7f4bac922f84d2e6323f93cbbaa8ec61aa8f532383469edeb8712d4aa557a25509c4c85d160a30715af9a4077d17e6149b737c499dabb22af8a9cc398f4ec9b +srcfiles size=4 + RELOC/source/latex/xcolor-solarized/xcolor-solarized.dtx + RELOC/source/latex/xcolor-solarized/xcolor-solarized.ins +runfiles size=1 + RELOC/tex/latex/xcolor-solarized/xcolor-solarized.sty +catalogue-ctan /macros/latex/contrib/xcolor-solarized +catalogue-date 2016-11-16 08:10:30 +0100 +catalogue-license lppl1.3 +catalogue-topics colour +catalogue-version 0.4 name xcomment category Package revision 20031 -shortdesc Allows selected environments to be included/excluded. +shortdesc Allows selected environments to be included/excluded relocated 1 longdesc The package defines an environment that only typesets specified longdesc environments within its scope. So, for example, if you want @@ -178918,24 +302401,29 @@ longdesc excluding the chunks of text between the environments you want, longdesc or creating an entire document containing only those longdesc environments. The package was previously part of the seminar longdesc bundle for typesetting presentations. -runfiles size=3 - RELOC/tex/generic/xcomment/xcomment.sty - RELOC/tex/generic/xcomment/xcomment.tex +containersize 2352 +containerchecksum ad19a29caaaa4da90c740a18f3b3bf63666303f8047210197e17c270082d483e33085c9249d7143ba65f343f6bf3b52c6974021f954831c5196708824e21b843 +doccontainersize 81512 +doccontainerchecksum d3b4d70cd88923e25595acf726afa6eea2efff4550455ed2eff48411621f212059ffedc3a82e4ac15359420a00c69b55e3625d11f8e8d4111eeb87cc3a6e8cfe docfiles size=30 RELOC/doc/generic/xcomment/Changes RELOC/doc/generic/xcomment/Makefile - RELOC/doc/generic/xcomment/README - RELOC/doc/generic/xcomment/xcomment-doc.pdf + RELOC/doc/generic/xcomment/README details="Readme" + RELOC/doc/generic/xcomment/xcomment-doc.pdf details="Package documentation" RELOC/doc/generic/xcomment/xcomment-doc.tex +runfiles size=3 + RELOC/tex/generic/xcomment/xcomment.sty + RELOC/tex/generic/xcomment/xcomment.tex catalogue-ctan /macros/generic/xcomment -catalogue-date 2011-09-30 22:48:48 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics cond-comp catalogue-version 1.3 name xcookybooky category Package revision 36435 -shortdesc Typeset (potentially long) recipes. +shortdesc Typeset (potentially long) recipes relocated 1 longdesc The package enables the user to typeset recipes, which could be longdesc greater than one page. Above the recipe text two (optional) @@ -178944,11 +302432,12 @@ longdesc energy content, portions, preparation and baking time, baking longdesc temperatures, recipe source and of course preparation steps and longdesc required ingredients. At the bottom you may insert an optional longdesc hint. The package depends on the Emerald fonts. -runfiles size=8 - RELOC/tex/latex/xcookybooky/xcookybooky.cfg - RELOC/tex/latex/xcookybooky/xcookybooky.sty +containersize 6352 +containerchecksum 3f74d540c4da5ab4f6f1b6c78f3a35172fb4f2d94b7c720fe3fd1d31e1c53db6659371da6d48adf755675af831d252178b96ba57a1f0c0319459f4a564897b49 +doccontainersize 863388 +doccontainerchecksum 29d1620c7ea3d13e4fdf97454bf824fab8de6acd96661554a1f37717e4fa0dcf6df20cec580b6b25101b75d2d22080962713d05347eba4974c5cbdbca6129ec6 docfiles size=320 - RELOC/doc/latex/xcookybooky/README + RELOC/doc/latex/xcookybooky/README details="Readme" RELOC/doc/latex/xcookybooky/example/example.pdf RELOC/doc/latex/xcookybooky/example/example.tex RELOC/doc/latex/xcookybooky/example/pic/background.pdf @@ -178956,19 +302445,57 @@ docfiles size=320 RELOC/doc/latex/xcookybooky/example/pic/ingredients.jpg RELOC/doc/latex/xcookybooky/example/tex/Complete_Recipe.tex RELOC/doc/latex/xcookybooky/example/tex/Mousse_au_Chocolat.tex - RELOC/doc/latex/xcookybooky/xcookybooky.pdf + RELOC/doc/latex/xcookybooky/xcookybooky.pdf details="Package documentation" +srccontainersize 14844 +srccontainerchecksum 0a0d8eb171bc551831f65511f74b9db402587b6bdb47dfcd3d9e31403eaf530e954c5ce0510f9fa4e850b3036bc6807339aefca9567b9fff7152c72c8332d640 srcfiles size=17 RELOC/source/latex/xcookybooky/xcookybooky.dtx RELOC/source/latex/xcookybooky/xcookybooky.ins +runfiles size=8 + RELOC/tex/latex/xcookybooky/xcookybooky.cfg + RELOC/tex/latex/xcookybooky/xcookybooky.sty +catalogue-also cookybooky +catalogue-contact-repository http://svenharder.github.io/xcookybooky/ catalogue-ctan /macros/latex/contrib/xcookybooky -catalogue-date 2015-03-04 06:01:53 +0100 +catalogue-date 2018-04-05 06:13:24 +0200 catalogue-license lppl1.3 +catalogue-topics cooking catalogue-version 1.5 +name xcpdftips +category Package +revision 50449 +shortdesc Natbib citations with PDF tooltips +relocated 1 +longdesc This LaTeX package uses pdfcomment and bibentry to surround +longdesc natbib citations with PDF tooltips. +containersize 3168 +containerchecksum ccf564a59d658a4f6747a3df866d0b0a0d6dae489215b5784fbc0619a2f3f222ef348c5fb96faf192d9db7e5c63d44c5f94549cb809e89dabd06bb43d745df1d +doccontainersize 142360 +doccontainerchecksum 5d483b7bce276815fbb3602d4082ff9c939ae414cb2e2b03f75307c71b2b19a6adba23f609836c78859df5823f4aaad175e01b9f223326176b62a4ac9060cf02 +docfiles size=38 + RELOC/doc/latex/xcpdftips/README.md details="Readme" + RELOC/doc/latex/xcpdftips/xcpdftips.pdf details="Package documentation" +srccontainersize 7060 +srccontainerchecksum d386d33f5437cd31bb8dae0ea51a22fc90353f7866544694e3c41bd2f9cb70fd734a92bd50864a0b20443bfe40f6f54cc404e503da395e928ae69fead87db771 +srcfiles size=9 + RELOC/source/latex/xcpdftips/xcpdftips.drv + RELOC/source/latex/xcpdftips/xcpdftips.dtx + RELOC/source/latex/xcpdftips/xcpdftips.ins +runfiles size=2 + RELOC/tex/latex/xcpdftips/xcpdftips.sty +catalogue-contact-repository https://github.com/mekeetsa/xcpdftips +catalogue-contact-support https://github.com/mekeetsa/xcpdftips/issues +catalogue-ctan /macros/latex/contrib/xcpdftips +catalogue-date 2019-03-18 09:44:11 +0100 +catalogue-license gpl3+ +catalogue-topics bibtex-supp cite-supp pdf-feat +catalogue-version 1.1 + name xdoc category Package revision 15878 -shortdesc Extending the LaTeX doc system. +shortdesc Extending the LaTeX doc system relocated 1 longdesc Xdoc is a project to rewrite the implementation of the LaTeX longdesc doc package (in a broader sense) to make its features more @@ -178996,76 +302523,289 @@ longdesc of formatting via templates (nice interface, but requires longdesc several experimental packages), whereas the docidx2e package longdesc has traditional raw macro interfaces and works with standard longdesc LaTeX2e. -runfiles size=17 - RELOC/makeindex/xdoc/docindex.ist - RELOC/tex/latex/xdoc/docidx2e.sty - RELOC/tex/latex/xdoc/docindex.sty - RELOC/tex/latex/xdoc/xdoc2.sty +containersize 11976 +containerchecksum 8cee132082c70214560ca8377766f45e6f15da2af18e0e9d68205d094b2a6af4d50150bfa6d145f78d92bb95c8657ad9fab1cbb8e76b75859f44ac1039464cca +doccontainersize 836680 +doccontainerchecksum cb7fc71f84f88a1035e91500e9b7ccf0c425733227e4106c7bd87eb30b25c8fdae6bce046f22e5a07ec919ee0527f264dcd826b7e6468eaf21a791e7dc0e7ab8 docfiles size=267 - RELOC/doc/latex/xdoc/README - RELOC/doc/latex/xdoc/docindex.pdf - RELOC/doc/latex/xdoc/xdoc2.pdf - RELOC/doc/latex/xdoc/xdocdemo.pdf + RELOC/doc/latex/xdoc/README details="Package Readme" + RELOC/doc/latex/xdoc/docindex.pdf details="docindex documentation" + RELOC/doc/latex/xdoc/xdoc2.pdf details="xdoc2 documentation" + RELOC/doc/latex/xdoc/xdocdemo.pdf details="Demonstration of usage" RELOC/doc/latex/xdoc/xdocdemo.tex +srccontainersize 70084 +srccontainerchecksum d82f9fe7cf0a2faaf0cc6a5f1f1d5916bc3eecef63e6e983f62c4b17d36b17f31251af6e704811af2094cc43fada5597b0ceb432a4b38c4b066ab041d7a5c578 srcfiles size=77 RELOC/source/latex/xdoc/docindex.dtx RELOC/source/latex/xdoc/docindex.ins RELOC/source/latex/xdoc/xdoc2.dtx RELOC/source/latex/xdoc/xdoc2.ins +runfiles size=17 + RELOC/makeindex/xdoc/docindex.ist + RELOC/tex/latex/xdoc/docidx2e.sty + RELOC/tex/latex/xdoc/docindex.sty + RELOC/tex/latex/xdoc/xdoc2.sty catalogue-ctan /macros/latex/contrib/xdoc -catalogue-date 2014-10-02 11:45:28 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics doc-supp catalogue-version prot2.5 +name xduthesis +category Package +revision 39694 +shortdesc XeLaTeX template for writing Xidian University Thesis +relocated 1 +longdesc This is a XeLaTeX template for writing theses to apply academic +longdesc degrees in Xidian University. The template is designed +longdesc according to the official requirements on typesetting theses. +longdesc The template currently supports all levels of degrees from +longdesc bachelor to doctor, including both academic master and +longdesc professional master. But it is not guaranteed that you will +longdesc pass the typesetting check and obtain your degree by using this +longdesc template. +containersize 113404 +containerchecksum 4a92d52c7ca60232849b02bd7d688f12230f858bb7559287610a4d33699158fcb3d5270a22b3abc99d89a684b81e2124602486c16f22fb434e98b54f715f592a +doccontainersize 693300 +doccontainerchecksum 44ec843c2a6b7827c783c076e8f02dfb697f1bf021b54be238049068f466d9969d2e0bb9efdba37623b44a564985af4256eed2b82ef35d8f7ec9798ce84abc0d +docfiles size=195 + RELOC/doc/latex/xduthesis/README.md details="Readme" + RELOC/doc/latex/xduthesis/examples/abstract.tex + RELOC/doc/latex/xduthesis/examples/achievements.tex + RELOC/doc/latex/xduthesis/examples/acknowledgments.tex + RELOC/doc/latex/xduthesis/examples/appendix01.tex + RELOC/doc/latex/xduthesis/examples/biography.tex + RELOC/doc/latex/xduthesis/examples/ch01-intro.tex + RELOC/doc/latex/xduthesis/examples/ch02-options.tex + RELOC/doc/latex/xduthesis/examples/ch03-frontmatter.tex + RELOC/doc/latex/xduthesis/examples/ch04-mainmatter.tex + RELOC/doc/latex/xduthesis/examples/ch05-backmatter.tex + RELOC/doc/latex/xduthesis/examples/ch06-bibliography.tex + RELOC/doc/latex/xduthesis/examples/ch07-conclusions.tex + RELOC/doc/latex/xduthesis/examples/photo.png + RELOC/doc/latex/xduthesis/examples/refs.bib + RELOC/doc/latex/xduthesis/examples/thesis-bachelor.tex + RELOC/doc/latex/xduthesis/examples/thesis-doctor.pdf + RELOC/doc/latex/xduthesis/examples/thesis-doctor.tex + RELOC/doc/latex/xduthesis/examples/thesis-master.tex + RELOC/doc/latex/xduthesis/examples/thesis-masterpro.tex + RELOC/doc/latex/xduthesis/xduthesis.pdf details="Package documentation" +srccontainersize 15976 +srccontainerchecksum 12a273267d7e4e82256f4aa76db77673eea0d1816691a179b8ac2af8732ef958a7142a95cd7ba8ee83cdbe2166975dfa12d3fff14607cb1fd27f48c989a5a7ba +srcfiles size=15 + RELOC/source/latex/xduthesis/xduthesis.dtx + RELOC/source/latex/xduthesis/xduthesis.ins +runfiles size=257 + RELOC/tex/latex/xduthesis/xdubadge-gr.eps + RELOC/tex/latex/xduthesis/xdubadge.eps + RELOC/tex/latex/xduthesis/xdulogo.eps + RELOC/tex/latex/xduthesis/xduthesis.cfg + RELOC/tex/latex/xduthesis/xduthesis.cls +catalogue-ctan /macros/latex/contrib/xduthesis +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics proposal +catalogue-version 1.00 + name xdvi category TLCore -revision 37078 -shortdesc A DVI previewer for the X Window System. +revision 50602 +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". In practice, it is usually -longdesc distributed via Tex-live. +longdesc build with web2c "out of the box". It is included in TeX Live. depend xdvi.ARCH +containersize 6852 +containerchecksum 9e05dcd35557d4655b8e78c8d8f64db1bd5fd37cea1dfaf163fc8ec2076d09c18f03c9fbf4314effa53048f660f86deb7adcde35b13aa7412d92f941ece0b550 +doccontainersize 171928 +doccontainerchecksum 17ccc4f97a55f146d6aacd63e2ef3e2411aa221363f0490b484cdc88910ecd0d94bd016db18fdedc78eec4001658f25de736acbae20eaf8f95c9cd576861f015 +docfiles size=70 + texmf-dist/doc/man/man1/xdvi.1 + texmf-dist/doc/man/man1/xdvi.man1.pdf runfiles size=9 texmf-dist/dvips/xdvi/config.xdvi texmf-dist/xdvi/XDvi texmf-dist/xdvi/pixmap/toolbar.xpm texmf-dist/xdvi/pixmap/toolbar2.xpm -docfiles size=65 - texmf-dist/doc/man/man1/xdvi.1 - texmf-dist/doc/man/man1/xdvi.man1.pdf +catalogue-contact-repository http://xdvi.sourceforge.net/ catalogue-ctan /dviware/xdvi -catalogue-date 2014-04-22 11:35:25 +0200 +catalogue-date 2018-08-16 21:33:21 +0200 catalogue-license other-free +catalogue-topics previewer catalogue-version 22.87 +name xdvi.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of xdvi +containersize 467392 +containerchecksum 918e66848fb45e6ab92eef1c8e308b294aaa0b7c4c7d446f9103ce6edea2c11608bf6a1f86a6afed18dee0e78248115aa92b37406f3cf4042e3db4c111ccb7f1 +binfiles arch=aarch64-linux size=312 + bin/aarch64-linux/xdvi + bin/aarch64-linux/xdvi-xaw + +name xdvi.amd64-freebsd +category TLCore +revision 50445 +shortdesc amd64-freebsd files of xdvi +containersize 542364 +containerchecksum 5d5afa6cba0ec7fc87e1bb67abbd797a98be072f15c0adee5141cb34b4624f58a30fc8e16ec3ff174d7ffe0dcb2cb34c1729b276bd2eca28a45dee3295f04a76 +binfiles arch=amd64-freebsd size=331 + bin/amd64-freebsd/xdvi + bin/amd64-freebsd/xdvi-xaw + +name xdvi.amd64-netbsd +category TLCore +revision 50171 +shortdesc amd64-netbsd files of xdvi +containersize 474392 +containerchecksum d1c07e3ddd4f9529ab5fdf22ed344f3fd98b4df647252825071bb1e43a92fbdc9995306668a519860fe719ff7058e798654beaee12e087b240eb5ba3a2a757f7 +binfiles arch=amd64-netbsd size=403 + bin/amd64-netbsd/xdvi + bin/amd64-netbsd/xdvi-xaw + +name xdvi.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of xdvi +containersize 435412 +containerchecksum 01d41decfb2c519dae298b58afca8f837f3629c3bf83d9d93109e8a109c08feaa1ca0a8e53a7e11d5f3a7a5279d6f6c82bbb40f817cc2e9497b966e617752102 +binfiles arch=armhf-linux size=262 + bin/armhf-linux/xdvi + bin/armhf-linux/xdvi-xaw + +name xdvi.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of xdvi +containersize 471640 +containerchecksum 8d0fcdc0c4e97f2fa88310b8aba866024a481612c86d76417996cf9a69119038ca68caf3bad906610913f45cf47464b773a893f7462b7533b4f0af069c7eb688 +binfiles arch=i386-cygwin size=292 + bin/i386-cygwin/xdvi + bin/i386-cygwin/xdvi-xaw.exe + +name xdvi.i386-freebsd +category TLCore +revision 50473 +shortdesc i386-freebsd files of xdvi +containersize 467108 +containerchecksum 41f9fe6d85ad27f5f7beb35f4c7b4514df38816428e4020831963be7270ef0af39f6ca3c105c73be8befcd0067bfd0f1dafc9a4dc63ede3e16e1f3ea51a6cbe3 +binfiles arch=i386-freebsd size=271 + bin/i386-freebsd/xdvi + bin/i386-freebsd/xdvi-xaw + name xdvi.i386-linux category TLCore -revision 37100 +revision 50281 shortdesc i386-linux files of xdvi -binfiles arch=i386-linux size=366 +containersize 533780 +containerchecksum 4171a55e8a074738ea0bd4251a8fb7f66c50a53990111b7106d7a4e92c1f4dabb615d83f549f894a34c6941f71079f66c64fff81911724a7ddb5c1b38462cc2d +binfiles arch=i386-linux size=329 bin/i386-linux/xdvi bin/i386-linux/xdvi-xaw +name xdvi.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of xdvi +containersize 432576 +containerchecksum 3af2794b0ede1dc13402dd364484181979ba107fd22e859b2f7f2560b105668f33e4eb268611dddd014c564ee5fba6f52090918432b0b5cc3278007b6491e9b5 +binfiles arch=i386-netbsd size=358 + bin/i386-netbsd/xdvi + bin/i386-netbsd/xdvi-xaw + +name xdvi.i386-solaris +category TLCore +revision 50150 +shortdesc i386-solaris files of xdvi +containersize 480424 +containerchecksum 106ffab6527d320c52ca8746ab7ecf0f48d9a37009c3028b0a26d7de7d10999edb57fca07712833a6be4eaf520c1f2b2294bc8f25d6e40bb4a312d2a51264ccc +binfiles arch=i386-solaris size=272 + bin/i386-solaris/xdvi + bin/i386-solaris/xdvi-xaw + +name xdvi.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of xdvi +containersize 491264 +containerchecksum 5a88c163bb55ea78eb61d2c2e31178243cc73ae031964231d92484a251ae28a882078635cc5a109e94b29b6670a94799d53d12624b3ca96262bd8f855091bab7 +binfiles arch=x86_64-cygwin size=290 + bin/x86_64-cygwin/xdvi + bin/x86_64-cygwin/xdvi-xaw.exe + +name xdvi.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of xdvi +containersize 547328 +containerchecksum 3f60598bd90eaa650e5d7e79e595f8219273a73df796e20b4591969bb873fc45e95abc73e0cb2cab79a184bda45935d07e48bf2ec0fe2cd79eb30f3988427ba9 +binfiles arch=x86_64-darwin size=320 + bin/x86_64-darwin/xdvi + bin/x86_64-darwin/xdvi-xaw + +name xdvi.x86_64-darwinlegacy +category TLCore +revision 50282 +shortdesc x86_64-darwinlegacy files of xdvi +containersize 506940 +containerchecksum 81fd70b0a388cdf041113a48c8e74accee552d056d4563c8f2218d3b50d02ddc8786c8357ed4fd13874703068baa92dcf107a10b1d27d4c55291b76d6951827e +binfiles arch=x86_64-darwinlegacy size=297 + bin/x86_64-darwinlegacy/xdvi + bin/x86_64-darwinlegacy/xdvi-xaw + +name xdvi.x86_64-linux +category TLCore +revision 50281 +shortdesc x86_64-linux files of xdvi +containersize 529704 +containerchecksum b1b7649145be630a1447e65aee440286e9d75f980790ab0736d20d3420b44db083b4f74c74be5693ea3291a81ae2a070108d8628c7fb467f2ecc04a201e67326 +binfiles arch=x86_64-linux size=313 + bin/x86_64-linux/xdvi + bin/x86_64-linux/xdvi-xaw + +name xdvi.x86_64-linuxmusl +category TLCore +revision 50176 +shortdesc x86_64-linuxmusl files of xdvi +containersize 569040 +containerchecksum 1fe08b7f1d4bad1b98e45a844da3b46e59377679b9a55b2ab66a596e1f0d6daa5656bf22b097afb373add50858ab50f91d64636cc2e3fb01ff275db7a93078fa +binfiles arch=x86_64-linuxmusl size=372 + bin/x86_64-linuxmusl/xdvi + bin/x86_64-linuxmusl/xdvi-xaw + +name xdvi.x86_64-solaris +category TLCore +revision 50150 +shortdesc x86_64-solaris files of xdvi +containersize 536280 +containerchecksum 361fa7d93c30b561213d614e1924b9eede73b038e4aa7c0d8984ddb8a413638e59ffb031dbcd1d411fe968a474df0454f8acf03914dfc9d1f5b92aa3da203e06 +binfiles arch=x86_64-solaris size=321 + bin/x86_64-solaris/xdvi + bin/x86_64-solaris/xdvi-xaw + name xebaposter category Package -revision 38350 -shortdesc Creates beautiful scientific Persian/Latin posters using TikZ +revision 42046 +shortdesc Create beautiful scientific Persian/Latin posters using TikZ relocated 1 longdesc This package is designed for making beautiful scientific longdesc Persian/Latin posters. It is a fork of baposter by Brian Amberg -longdesc and Reinhold Kainhofer available at http://www.brian- -longdesc amberg.de/uni/poster/. baposter's users should be able to -longdesc compile their poster using xebaposter (instead of baposter) -longdesc without any problem. -runfiles size=14 - RELOC/tex/latex/xebaposter/xebaposter.cls -docfiles size=147 - RELOC/doc/latex/xebaposter/README +longdesc and Reinhold Kainhofer available at +longdesc http://www.brian-amberg.de/uni/poster/. baposter's users should +longdesc be able to compile their poster using xebaposter (instead of +longdesc baposter) without any problem. +containersize 12268 +containerchecksum cc264905da875732a3bad46daa31a1f5595e3676ff4d5570554caea40dfd383eac8e9a05121e2211294749770e50fb4d80ca6e735421eb7ca295a10bc666ec3e +doccontainersize 318872 +doccontainerchecksum 9bf0315e6fa502e0de606bb16c6575997314619f10a8aba312d8062be5f1edf4ba037eff7c23948ba7800bc2abf2fa300b8609287558a0ad6c59d63095b20045 +docfiles size=163 + RELOC/doc/latex/xebaposter/README details="Readme" RELOC/doc/latex/xebaposter/images/docs-boxshape.pdf RELOC/doc/latex/xebaposter/images/docs-headerborder.pdf RELOC/doc/latex/xebaposter/images/docs-headershape.pdf + RELOC/doc/latex/xebaposter/images/docs-shade.pdf RELOC/doc/latex/xebaposter/images/fig3.pdf RELOC/doc/latex/xebaposter/images/fig4.pdf RELOC/doc/latex/xebaposter/images/fig5.pdf @@ -179074,40 +302814,56 @@ docfiles size=147 RELOC/doc/latex/xebaposter/images/shariflogo.png RELOC/doc/latex/xebaposter/poster-fa.pdf RELOC/doc/latex/xebaposter/poster-fa.tex - RELOC/doc/latex/xebaposter/xebaposter-doc.pdf + RELOC/doc/latex/xebaposter/xebaposter-doc.pdf details="Package documentation" RELOC/doc/latex/xebaposter/xebaposter-doc.tex +runfiles size=14 + RELOC/tex/latex/xebaposter/xebaposter.cls catalogue-ctan /graphics/pgf/contrib/xebaposter -catalogue-date 2015-09-11 13:53:06 +0200 +catalogue-date 2016-09-12 19:55:23 +0200 catalogue-license lppl1.3 -catalogue-topics poster class -catalogue-version 2.21 +catalogue-topics poster class pgf-tikz +catalogue-version 2.51 + +name xechangebar +category Package +revision 44954 +shortdesc An extension of package changebar that can be used with XeLaTeX +relocated 1 +longdesc The package extends package changebar so it can be used with +longdesc XeLaTeX. It introduces the new option xetex for use with +longdesc XeLaTeX. Everything else remains the same and users should +longdesc consult the original documenation for usage information. +containersize 6892 +containerchecksum 0521eabe4444865747291d13a8664431b64e67969276191f1389bc0c7bd7198625a352ac391cc06e926cd90535b47b8edd8ffac6f3967ade0cbfe7022409519a +doccontainersize 2412 +doccontainerchecksum f2452e8d2281f4d92da80917d6883bd91318f8e4459189fdfd8e6a79269d4d2c1b16122bb42237598fec3b8d44b9cc313a4b7858895db8dc0fbc5157825f2046 +docfiles size=4 + RELOC/doc/xelatex/xechangebar/README details="Readme" + RELOC/doc/xelatex/xechangebar/cbtest1.tex +runfiles size=9 + RELOC/tex/xelatex/xechangebar/xechangebar.sty +catalogue-also changebar +catalogue-ctan /macros/xetex/latex/xechangebar +catalogue-date 2017-08-06 05:28:53 +0200 +catalogue-license lppl1.3 +catalogue-topics editorial +catalogue-version 1.0 name xecjk category Package -revision 37409 -shortdesc Support for CJK documents in XeLaTeX. +revision 50852 +shortdesc Support for CJK documents in XeLaTeX relocated 1 longdesc A LaTeX package for typesetting CJK documents in the way users longdesc have become used to, in the CJK package. The package requires a -longdesc current version of xtemplate (and hence of the current LaTeX 3 +longdesc current version of xtemplate (and hence of the current LaTeX3 longdesc development environment). -runfiles size=122 - RELOC/fonts/misc/xetex/fontmapping/xecjk/full-stop.map - RELOC/fonts/misc/xetex/fontmapping/xecjk/full-stop.tec - RELOC/fonts/misc/xetex/fontmapping/xecjk/fullwidth-stop.map - RELOC/fonts/misc/xetex/fontmapping/xecjk/fullwidth-stop.tec - RELOC/fonts/misc/xetex/fontmapping/xecjk/han-simp.map - RELOC/fonts/misc/xetex/fontmapping/xecjk/han-simp.tec - RELOC/fonts/misc/xetex/fontmapping/xecjk/han-trad.map - RELOC/fonts/misc/xetex/fontmapping/xecjk/han-trad.tec - RELOC/tex/xelatex/xecjk/xeCJK-listings.sty - RELOC/tex/xelatex/xecjk/xeCJK.cfg - RELOC/tex/xelatex/xecjk/xeCJK.sty - RELOC/tex/xelatex/xecjk/xeCJKfntef.sty - RELOC/tex/xelatex/xecjk/xunicode-addon.sty - RELOC/tex/xelatex/xecjk/xunicode-extra.def -docfiles size=472 - RELOC/doc/xelatex/xecjk/README +containersize 129308 +containerchecksum 47981c7c217dc90e23becd3e17807a744d79da4f2f58d4cff479debdcd9194c2c58ed4dba33f01115c10cb0ef212156b83b38edd3688b698e85148f915e18b8a +doccontainersize 1536396 +doccontainerchecksum bd9274e055c17334dae543893a1ec044e0a0bd08081889763b67b9ad8fc772a243f229acf2bebf624a78ce829bca4795088602c4d5edaccab17771027f994384 +docfiles size=446 + RELOC/doc/xelatex/xecjk/README.md details="Readme" RELOC/doc/xelatex/xecjk/example/xeCJK-example-CJKecglue.tex RELOC/doc/xelatex/xecjk/example/xeCJK-example-CJKfntef.tex RELOC/doc/xelatex/xecjk/example/xeCJK-example-CM.tex @@ -179115,54 +302871,85 @@ docfiles size=472 RELOC/doc/xelatex/xecjk/example/xeCJK-example-checksingle.tex RELOC/doc/xelatex/xecjk/example/xeCJK-example-fallback.tex RELOC/doc/xelatex/xecjk/example/xeCJK-example-listings.tex + RELOC/doc/xelatex/xecjk/example/xeCJK-example-mathblock.tex RELOC/doc/xelatex/xecjk/example/xeCJK-example-punctstyle.tex RELOC/doc/xelatex/xecjk/example/xeCJK-example-subCJKblock.tex RELOC/doc/xelatex/xecjk/example/xeCJK-example-verbatim.tex - RELOC/doc/xelatex/xecjk/xeCJK.pdf + RELOC/doc/xelatex/xecjk/xeCJK.pdf details="Package documentation (Chinese)" language="zh" RELOC/doc/xelatex/xecjk/xunicode-combine-marks.tex RELOC/doc/xelatex/xecjk/xunicode-commands.tex RELOC/doc/xelatex/xecjk/xunicode-symbols.pdf RELOC/doc/xelatex/xecjk/xunicode-symbols.tex -srcfiles size=118 +srccontainersize 88452 +srccontainerchecksum dd929eec2aecaeb47320a2085614920c8232e5ddf5125a31a8b7867c911fddecd4f5135e3dc557bd8cf160326f32abbffc22faa329d816114645235c94082a46 +srcfiles size=128 RELOC/source/xelatex/xecjk/xeCJK.dtx RELOC/source/xelatex/xecjk/xeCJK.ins +runfiles size=131 + RELOC/fonts/misc/xetex/fontmapping/xecjk/full-stop.map + RELOC/fonts/misc/xetex/fontmapping/xecjk/full-stop.tec + RELOC/fonts/misc/xetex/fontmapping/xecjk/fullwidth-stop.map + RELOC/fonts/misc/xetex/fontmapping/xecjk/fullwidth-stop.tec + RELOC/fonts/misc/xetex/fontmapping/xecjk/han-simp.map + RELOC/fonts/misc/xetex/fontmapping/xecjk/han-simp.tec + RELOC/fonts/misc/xetex/fontmapping/xecjk/han-trad.map + RELOC/fonts/misc/xetex/fontmapping/xecjk/han-trad.tec + RELOC/tex/xelatex/xecjk/xeCJK-listings.sty + RELOC/tex/xelatex/xecjk/xeCJK.cfg + RELOC/tex/xelatex/xecjk/xeCJK.sty + RELOC/tex/xelatex/xecjk/xeCJKfntef.sty + RELOC/tex/xelatex/xecjk/xunicode-addon.sty + RELOC/tex/xelatex/xecjk/xunicode-extra.def +catalogue-contact-bugs https://github.com/CTeX-org/ctex-kit/issues +catalogue-contact-home http://www.ctex.org/ +catalogue-contact-repository https://github.com/CTeX-org/ctex-kit +catalogue-contact-support https://github.com/CTeX-org/ctex-kit/issues catalogue-ctan /macros/xetex/latex/xecjk -catalogue-date 2015-05-15 18:47:04 +0200 -catalogue-license lppl1.3 -catalogue-version 3.3.2 +catalogue-date 2019-04-07 19:45:54 +0200 +catalogue-license lppl1.3c +catalogue-topics chinese japanese korean xetex expl3 +catalogue-version 3.7.2 name xecolor category Package revision 29660 -shortdesc Support for color in XeLaTeX. +shortdesc Support for color in XeLaTeX relocated 1 longdesc This is a simple package which defines about 140 different longdesc colours using XeTeX's colour feature. The colours can be used longdesc in bidirectional texts without any problem. +containersize 2300 +containerchecksum 0ab23e651b36f06256fab5acb14effc93296948aecf7c7f11c81f4db89a58bfd8e038dd857a1da3a86ab573cf0ffb1d1bc188789e0d493ab0d0c1c9d96d593f3 +doccontainersize 1092 +doccontainerchecksum 9441eff384f57e8714cc543ade380ecc321e6c0e7dd0ae69c71337458e2607a43f793b490bfa6752c1c70bdb17be92488b89ff848ab9a3a1700907c15ed857c2 +docfiles size=1 + RELOC/doc/xelatex/xecolor/README details="Readme" runfiles size=2 RELOC/tex/xelatex/xecolor/xecolor.sty -docfiles size=1 - RELOC/doc/xelatex/xecolor/README +catalogue-contact-bugs https://github.com/bidi-tex/xecolor/issues +catalogue-contact-repository https://github.com/bidi-tex/xecolor catalogue-ctan /macros/xetex/latex/xecolor -catalogue-date 2014-09-06 11:51:29 +0200 +catalogue-date 2018-11-28 21:16:05 +0100 catalogue-license lppl1.3 +catalogue-topics colour xetex catalogue-version 0.1 name xecyr category Package revision 20221 -shortdesc Using Cyrillic languages in XeTeX. +shortdesc Using Cyrillic languages in XeTeX longdesc Helper tools for using Cyrillic languages with XeLaTeX and longdesc babel. depend xecyr.ARCH -runfiles size=5 - texmf-dist/tex/generic/xecyr/xu-ruenhyph.tex - texmf-dist/tex/xelatex/xecyr/xecyr.sty +containersize 4068 +containerchecksum 6831533d8c2370844703c309885c807d0f95690d1be82a6cfe74bd1bb09fc320876f2230c5731c60344bfc23c7074e66deca6f5b152b5344b54509804c2c854a +doccontainersize 304680 +doccontainerchecksum 02f0f0427755fbf5213502f5e6e1fdfd0a85660e1867c7d18f3d1ba604ea4e432b0235c73b9f385661e626da793a70a5d06b3b8cf0c2841b7571988bd9bcc8a5 docfiles size=107 texmf-dist/doc/xelatex/xecyr/1251.tex texmf-dist/doc/xelatex/xecyr/866.tex texmf-dist/doc/xelatex/xecyr/NEWS - texmf-dist/doc/xelatex/xecyr/README + texmf-dist/doc/xelatex/xecyr/README details="Readme" texmf-dist/doc/xelatex/xecyr/iso.tex texmf-dist/doc/xelatex/xecyr/koi8-r.tex texmf-dist/doc/xelatex/xecyr/language.dat.add @@ -179175,7 +302962,7 @@ docfiles size=107 texmf-dist/doc/xelatex/xecyr/rubibtex-ex.bib texmf-dist/doc/xelatex/xecyr/rumakeindex-ex-x.pdf texmf-dist/doc/xelatex/xecyr/rumakeindex-ex-x.tex - texmf-dist/doc/xelatex/xecyr/xecyr-doc-ru.pdf + texmf-dist/doc/xelatex/xecyr/xecyr-doc-ru.pdf details="Package documentation (Russian)" language="ru" texmf-dist/doc/xelatex/xecyr/xecyr-doc-ru.tex texmf-dist/doc/xelatex/xecyr/xecyr-ex1-ru-x.pdf texmf-dist/doc/xelatex/xecyr/xecyr-ex1-ru-x.tex @@ -179191,40 +302978,136 @@ docfiles size=107 texmf-dist/doc/xelatex/xecyr/xecyr-ex6-ru-x.tex texmf-dist/doc/xelatex/xecyr/xecyr-ex7-ru-x.pdf texmf-dist/doc/xelatex/xecyr/xecyr-ex7-ru-x.tex +runfiles size=5 + texmf-dist/tex/generic/xecyr/xu-ruenhyph.tex + texmf-dist/tex/xelatex/xecyr/xecyr.sty catalogue-ctan /macros/xetex/latex/xecyr -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics cyrillic xetex catalogue-version 1.1 +name xecyr.win32 +category Package +revision 15404 +shortdesc win32 files of xecyr +containersize 944 +containerchecksum 787fed722b18053ca50f5473bef8c1ae7d8d5d88b77f2a843a986ac62e66d33ecd3f6ffdcaf2761aa8838e000318d8d923c4dc05cf42af1d453f3bb099b93f01 +binfiles arch=win32 size=6 + bin/win32/rubibtexx.bat + bin/win32/rubibtexx.exe + bin/win32/rumakeindexx.bat + bin/win32/rumakeindexx.exe + bin/win32/rumakeindexx2.bat + bin/win32/rumakeindexx2.exe + name xeindex category Package revision 35756 -shortdesc Automatic index generation for XeLaTeX. +shortdesc Automatic index generation for XeLaTeX relocated 1 longdesc The package is based on XeSearch, and will automatically index longdesc words or phrases in an XeLaTeX document. Words are declared in longdesc a list, and every occurrence then creates an index entry whose longdesc content can be fully specified beforehand. -runfiles size=2 - RELOC/tex/xelatex/xeindex/xeindex.sty +containersize 1660 +containerchecksum bc3f399973bd8be5b83ea6da2c39d80de8f39ac6cf2d82d689c81816cad334310081f44fb4e256e442fc47ed6640c2b8ebd185e431f0d0ddec5f75f7b535283f +doccontainersize 78928 +doccontainerchecksum c84682c8034c5e182bcbb2ac0411f4ba5d8065a5db1f008c6f9e7a01b94b3563c44c03fc4c1cf48b3b09d19ba93f22778d8840741737bf1a344cb0c8f66ceb49 docfiles size=24 - RELOC/doc/xelatex/xeindex/README - RELOC/doc/xelatex/xeindex/xeindex.pdf + RELOC/doc/xelatex/xeindex/README details="Readme" + RELOC/doc/xelatex/xeindex/xeindex.pdf details="Package documentation" RELOC/doc/xelatex/xeindex/xeindex.tex +runfiles size=2 + RELOC/tex/xelatex/xeindex/xeindex.sty catalogue-ctan /macros/xetex/latex/xeindex -catalogue-date 2014-12-05 12:42:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics index xetex catalogue-version 0.3 +name xellipsis +category Package +revision 47546 +shortdesc Extremely configurable ellipses with formats for various style manuals +relocated 1 +longdesc The xellipsis package provides a system for configuring +longdesc (almomst) every possible aspect of ellipses, including +longdesc preceding and proceeding characters; the character itself; +longdesc distances before and after each of these; and number of +longdesc characters. It comes with both a compatibility option for +longdesc standard LaTeX \ldots as well as preset package options for the +longdesc Chicago Manual of Style (Turabian); the Bluebook; and MLA +longdesc guidelines. +containersize 1716 +containerchecksum 3bff74473b4e7fdc7a349fd54e7703b77282381d9ff5eac233d5eb7cefe98f4abc5ea4fd309b8693bd7245471c565545e0ab437a5f8e5cc1b89368c914078d54 +doccontainersize 348152 +doccontainerchecksum 20d238f8281b93643af570c3dd09a9cdf9822af0da6a9d06b3b9d09196ac4c7fcff2efa3271f763caf42e54f9c72d2087c491cacc5ea4666cef1060c12ecab3a +docfiles size=91 + RELOC/doc/latex/xellipsis/CHANGES + RELOC/doc/latex/xellipsis/README details="Readme" + RELOC/doc/latex/xellipsis/lppl.txt + RELOC/doc/latex/xellipsis/xellipsis.pdf details="Package documentation" +srccontainersize 7092 +srccontainerchecksum ae58f20d0aaec99bb7e56a0a5b277210d5b9efb8e2677e9e22caa08ebe9576befe19e4b7409625aee00b30cdbe1d90ae61623e86d3fcd255df96dbb7c89291c3 +srcfiles size=6 + RELOC/source/latex/xellipsis/xellipsis.dtx + RELOC/source/latex/xellipsis/xellipsis.ins +runfiles size=1 + RELOC/tex/latex/xellipsis/xellipsis.sty +catalogue-ctan /macros/latex/contrib/xellipsis +catalogue-date 2018-04-16 09:00:25 +0200 +catalogue-license lppl1.3 +catalogue-topics typesetting +catalogue-version 2.0 + name xepersian category Package -revision 37134 -shortdesc Persian for LaTeX, using XeTeX. -relocated 1 -longdesc The package supports Persian typesetting. -runfiles size=97 - RELOC/fonts/misc/xetex/fontmapping/xepersian/parsidigits.map - RELOC/fonts/misc/xetex/fontmapping/xepersian/parsidigits.tec +revision 50911 +shortdesc Persian for LaTeX, using XeTeX +relocated 1 +longdesc This package provides a convenient interface for typesetting +longdesc Persian and English texts in LaTeX, using the XeTeX engine. +containersize 59212 +containerchecksum dbfc141ebfe828e6d2f331cb8841f712ac3577558c028df9af819a240791c35e157f9c03dfc3cf4a6b654411485ba14afee97a0d45d2393e5067b2fe3ae556f7 +doccontainersize 987508 +doccontainerchecksum ae6c252024b947c9d4cb1192ca61e55aac9bac10c0c737a29794cca2d291f90d6cc56c8e52bb338b2f6f0d27d2bb335adff38d0d792aab8a6d76e1ff11344611 +docfiles size=316 + RELOC/doc/xelatex/xepersian/README details="Readme" + RELOC/doc/xelatex/xepersian/dkun-0.3.py + RELOC/doc/xelatex/xepersian/dkun-0.4.py + RELOC/doc/xelatex/xepersian/ftxe-0.12.py + RELOC/doc/xelatex/xepersian/img/ireland.jpg + RELOC/doc/xelatex/xepersian/img/weather/clouds.jpg + RELOC/doc/xelatex/xepersian/img/weather/rain.jpg + RELOC/doc/xelatex/xepersian/img/weather/sun.jpg + RELOC/doc/xelatex/xepersian/magazine-sample.tex + RELOC/doc/xelatex/xepersian/test-correction.tex + RELOC/doc/xelatex/xepersian/test-empty-form.tex + RELOC/doc/xelatex/xepersian/test-question-only.tex + RELOC/doc/xelatex/xepersian/test-solution-form.tex + RELOC/doc/xelatex/xepersian/undk-0.6.py + RELOC/doc/xelatex/xepersian/unldk-0.2.py + RELOC/doc/xelatex/xepersian/xepersian-doc.pdf details="Package user documentation" + RELOC/doc/xelatex/xepersian/xepersian-logo.tex + RELOC/doc/xelatex/xepersian/xepersian.pdf details="Package source documentation" +srccontainersize 74228 +srccontainerchecksum 6f1fe402b7af2531d6a04ad291752058391c3f437dc3c6bf2256ebbf570bce64e6c341b369ac6d5fe024d7eb28fb31592bc2571699c651e0096b3d70a13ee6b3 +srcfiles size=119 + RELOC/source/xelatex/xepersian/xepersian-doc-basics.ltx + RELOC/source/xelatex/xepersian/xepersian-doc-boolean.ltx + RELOC/source/xelatex/xepersian/xepersian-doc-captions.ltx + RELOC/source/xelatex/xepersian/xepersian-doc-envcs.ltx + RELOC/source/xelatex/xepersian/xepersian-doc-intro.ltx + RELOC/source/xelatex/xepersian/xepersian-doc-pkgs.ltx + RELOC/source/xelatex/xepersian/xepersian-doc-preamble.ltx + RELOC/source/xelatex/xepersian/xepersian-doc-title.ltx + RELOC/source/xelatex/xepersian/xepersian-doc.ltx + RELOC/source/xelatex/xepersian/xepersian.dtx + RELOC/source/xelatex/xepersian/xepersian.ins +runfiles size=113 + RELOC/fonts/misc/xetex/fontmapping/xepersian/persian-tex-text.map + RELOC/fonts/misc/xetex/fontmapping/xepersian/persian-tex-text.tec RELOC/tex/xelatex/xepersian/algorithm-xepersian.def RELOC/tex/xelatex/xepersian/algorithmic-xepersian.def RELOC/tex/xelatex/xepersian/amsart-xepersian.def @@ -179244,11 +303127,13 @@ runfiles size=97 RELOC/tex/xelatex/xepersian/breqn-xepersian.def RELOC/tex/xelatex/xepersian/color-localise-xepersian.def RELOC/tex/xelatex/xepersian/enumerate-xepersian.def + RELOC/tex/xelatex/xepersian/enumitem-xepersian.def RELOC/tex/xelatex/xepersian/extarticle-xepersian.def RELOC/tex/xelatex/xepersian/extbook-xepersian.def RELOC/tex/xelatex/xepersian/extrafootnotefeatures-xepersian.def RELOC/tex/xelatex/xepersian/extreport-xepersian.def - RELOC/tex/xelatex/xepersian/flowfram-xepersian.def + RELOC/tex/xelatex/xepersian/fancyref-xepersian.def + RELOC/tex/xelatex/xepersian/fontspec-xepersian.def RELOC/tex/xelatex/xepersian/footnote-xepersian.def RELOC/tex/xelatex/xepersian/framed-xepersian.def RELOC/tex/xelatex/xepersian/glossaries-xepersian.def @@ -179273,46 +303158,31 @@ runfiles size=97 RELOC/tex/xelatex/xepersian/scrartcl-xepersian.def RELOC/tex/xelatex/xepersian/scrbook-xepersian.def RELOC/tex/xelatex/xepersian/scrreprt-xepersian.def + RELOC/tex/xelatex/xepersian/soul-xepersian.def + RELOC/tex/xelatex/xepersian/tikz.code-xepersian.def RELOC/tex/xelatex/xepersian/tkz-linknodes-xepersian.def RELOC/tex/xelatex/xepersian/tocloft-xepersian.def + RELOC/tex/xelatex/xepersian/varioref-xepersian.def RELOC/tex/xelatex/xepersian/xepersian-localise-commands-xepersian.def RELOC/tex/xelatex/xepersian/xepersian-localise-environments-xepersian.def + RELOC/tex/xelatex/xepersian/xepersian-logo.pdf RELOC/tex/xelatex/xepersian/xepersian-magazine.cls RELOC/tex/xelatex/xepersian/xepersian-mathsdigitspec.sty RELOC/tex/xelatex/xepersian/xepersian-multiplechoice.sty RELOC/tex/xelatex/xepersian/xepersian-persiancal.sty RELOC/tex/xelatex/xepersian/xepersian.sty -docfiles size=299 - RELOC/doc/xelatex/xepersian/README - RELOC/doc/xelatex/xepersian/dkun-0.3.py - RELOC/doc/xelatex/xepersian/dkun-0.4.py - RELOC/doc/xelatex/xepersian/ftxe-0.12.py - RELOC/doc/xelatex/xepersian/img/ireland.jpg - RELOC/doc/xelatex/xepersian/img/weather/clouds.jpg - RELOC/doc/xelatex/xepersian/img/weather/rain.jpg - RELOC/doc/xelatex/xepersian/img/weather/sun.jpg - RELOC/doc/xelatex/xepersian/magazine-sample.tex - RELOC/doc/xelatex/xepersian/test-correction.tex - RELOC/doc/xelatex/xepersian/test-empty-form.tex - RELOC/doc/xelatex/xepersian/test-question-only.tex - RELOC/doc/xelatex/xepersian/test-solution-form.tex - RELOC/doc/xelatex/xepersian/undk-0.6.py - RELOC/doc/xelatex/xepersian/unldk-0.2.py - RELOC/doc/xelatex/xepersian/xepersian-logo.pdf - RELOC/doc/xelatex/xepersian/xepersian-logo.tex - RELOC/doc/xelatex/xepersian/xepersian.pdf -srcfiles size=107 - RELOC/source/xelatex/xepersian/xepersian.dtx - RELOC/source/xelatex/xepersian/xepersian.ins +catalogue-contact-bugs https://github.com/bidi-tex/xepersian/issues +catalogue-contact-repository https://github.com/bidi-tex/xepersian catalogue-ctan /macros/xetex/latex/xepersian -catalogue-date 2015-04-30 19:05:58 +0200 -catalogue-license lppl1.3 -catalogue-version 16.1 +catalogue-date 2019-04-30 10:28:31 +0200 +catalogue-license lppl1.3c +catalogue-topics persian xetex class +catalogue-version 22.7 name xesearch category Package revision 16041 -shortdesc A string finder for XeTeX. +shortdesc A string finder for XeTeX relocated 1 longdesc The package finds strings (e.g. (parts of) words or phrases) longdesc and manipulates them (apply any macro), thus turning each word @@ -179322,76 +303192,130 @@ longdesc LaTeX and ConTeXt). The main application for the moment is longdesc XeIndex, an automatic index for XeLaTeX, but examples are given longdesc of simple use to check spelling, count words, and highlight longdesc syntax of programming languages. +containersize 5864 +containerchecksum a0b5c47d4fa82d8786d245c03bf6569af38ecb7bc505b979f39403deeca62735c90ac3649dc6c221a0b62c42f5665bcb274b7f9480fb2916fb4e46593f5b2d47 +doccontainersize 626444 +doccontainerchecksum b0cef29e29a18bcc11d50b1744844ff37c5d6097863a78b5ff4e87fd28b6bc5c7f641e9f2298be489b66f756ad13971025b2c68aaec1e3a5c3a2b8eade9d1aca +docfiles size=191 + RELOC/doc/xetex/xesearch/README details="Readme" + RELOC/doc/xetex/xesearch/xesearch.pdf details="Package documentation" + RELOC/doc/xetex/xesearch/xesearch.tex runfiles size=9 RELOC/tex/xetex/xesearch/t-xesearch.tex RELOC/tex/xetex/xesearch/xesearch.sty -docfiles size=191 - RELOC/doc/xetex/xesearch/README - RELOC/doc/xetex/xesearch/xesearch.pdf - RELOC/doc/xetex/xesearch/xesearch.tex +catalogue-also toolbox etoolbox etextools catalogue-ctan /macros/xetex/generic/xesearch -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics string xetex name xespotcolor category Package -revision 36597 +revision 40118 shortdesc Spot colours support for XeLaTeX relocated 1 longdesc The package provides macros for using spot colours in LaTeX longdesc documents. The package is a reimplementation of the spotcolor longdesc package for use with XeLaTeX. As such, it has the same user longdesc interface and the same capabilities. -runfiles size=1 - RELOC/tex/xelatex/xespotcolor/xespotcolor.sty -docfiles size=55 - RELOC/doc/xelatex/xespotcolor/README +containersize 2292 +containerchecksum 7f4a111897f53b003473a40db9e779ed22215eb61e7485a1596bc215e6057d065d158887e1c93dc4e81b04ef1f8815044ce61daf406b62bb77ed57df8f13a70e +doccontainersize 128220 +doccontainerchecksum e1d2f3c52b95ef065e0d2ce93871278b8038b1bfe86700609e1197715dad91be572cf00a4391cdc4535672897d0ec52a09bdce2f24496538e512f760a7a622e7 +docfiles size=41 + RELOC/doc/xelatex/xespotcolor/README details="Readme" RELOC/doc/xelatex/xespotcolor/jatestspot.pdf RELOC/doc/xelatex/xespotcolor/jatestspot.tex RELOC/doc/xelatex/xespotcolor/spotcolor-test.pdf RELOC/doc/xelatex/xespotcolor/spotcolor-test.tex - RELOC/doc/xelatex/xespotcolor/xespotcolor.pdf -srcfiles size=5 + RELOC/doc/xelatex/xespotcolor/xespotcolor.pdf details="Package documentation" +srccontainersize 7064 +srccontainerchecksum 5727e5cf3e31db12257498b2266d13a749965e0e177c011bc379a7ea29ec5951fd223befefbcf77ff1dadaf69e31f3f4543611be8f9ac90c7acaffb9070b0b2a +srcfiles size=6 RELOC/source/xelatex/xespotcolor/xespotcolor.dtx RELOC/source/xelatex/xespotcolor/xespotcolor.ins +runfiles size=2 + RELOC/tex/xelatex/xespotcolor/xespotcolor.sty catalogue-ctan /macros/xetex/latex/xespotcolor -catalogue-date 2015-03-18 20:29:51 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 -catalogue-version 1.2 - -name xetexconfig -category Package -revision 34727 -shortdesc Configuration files for XeTeX. -relocated 1 -longdesc unicode-letters, and special crop.cfg and hyperref.cfg for -longdesc XeTeX. -runfiles size=226 - RELOC/tex/generic/xetexconfig/unicode-letters.tex - RELOC/tex/xelatex/xetexconfig/crop.cfg +catalogue-topics colour +catalogue-version 2.0a -name xetex-def -category Package -revision 36646 -shortdesc Colour and graphics support for XeTeX. -relocated 1 -longdesc The file xetex.def provides device-specific definitions for -longdesc colour and graphics support when running Xe(La)TeX -runfiles size=5 - RELOC/tex/xelatex/xetex-def/xetex.def -catalogue-ctan /graphics/xetex/latex/xetex.def -catalogue-date 2015-03-27 07:52:28 +0100 -catalogue-license lppl -catalogue-version 4.04 +name xetex +category TLCore +revision 50602 +shortdesc An extended variant of TeX for use with Unicode sources +longdesc XeTeX is a TeX typesetting engine using Unicode and supporting +longdesc modern font technologies such as OpenType, TrueType or Apple +longdesc Advanced Typography (AAT), including OpenType mathematics +longdesc fonts. XeTeX supports many extensions that reflect its origins +longdesc in linguistic research; it also supports micro-typography (as +longdesc available in pdfTeX). XeTeX was developed by the SIL (the first +longdesc version was specifically developed for those studying +longdesc linguistics, and using Macintosh computers). XeTeX's immediate +longdesc output is an extended variant of DVI format, which is +longdesc ordinarily processed by a tightly bound processor (called +longdesc xdvipdfmx), that produces PDF. XeTeX is released as part of TeX +longdesc Live; documentation has arisen separately. Source code is +longdesc available from ctan:/systems/texlive/Source/. +depend xetexconfig +depend latex +depend dvipdfmx +depend cm +depend hyphen-base +depend tex-ini-files +depend unicode-data +depend etex +depend plain +depend babel +depend latex-fonts +depend xetex.ARCH +execute AddFormat name=xetex engine=xetex patterns=language.def options="-etex xetex.ini" fmttriggers=cm,hyphen-base,tex-ini-files,unicode-data,etex,plain +execute AddFormat name=xelatex engine=xetex patterns=language.dat options="-etex xelatex.ini" fmttriggers=cm,hyphen-base,tex-ini-files,unicode-data,babel,latex,latex-fonts +postaction script file=tlpkg/tlpostcode/xetex.pl +containersize 6940 +containerchecksum 657b122433e14d4489a7344b1ce8079e4439d67abb5cad25c7241685b5ad01110f75dba60d18752624172cd05b7acbbb5ad0cf82b850ab4f39056963b8081780 +doccontainersize 616888 +doccontainerchecksum 37cc86382c4ac1443db72ffabd4a3440b0e14cfc50f5ab632976cfc4a6aa4c14bfbadccc07dd8062f226a08c58cc41437590e6ceb10b0d201d8b14a21fa9a510 +docfiles size=170 + texmf-dist/doc/man/man1/xelatex.1 + texmf-dist/doc/man/man1/xelatex.man1.pdf + texmf-dist/doc/man/man1/xetex.1 + texmf-dist/doc/man/man1/xetex.man1.pdf + texmf-dist/doc/xetex/base/NEWS + texmf-dist/doc/xetex/base/README + texmf-dist/doc/xetex/base/XeTeX-notes.pdf details="About XeTeX" + texmf-dist/doc/xetex/base/XeTeX-notes.tex +runfiles size=6 + texmf-dist/fonts/misc/xetex/fontmapping/base/qx-unicode.map + texmf-dist/fonts/misc/xetex/fontmapping/base/qx-unicode.tec + texmf-dist/fonts/misc/xetex/fontmapping/base/tex-text.map + texmf-dist/fonts/misc/xetex/fontmapping/base/tex-text.tec + tlpkg/tlpostcode/xetex.pl +catalogue-also luatex +catalogue-contact-announce http://lists.tug.org/xetex-announce +catalogue-contact-home http://tug.org/xetex +catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/xetexdir +catalogue-contact-support http://lists.tug.org/xetex +catalogue-date 2018-12-26 09:45:23 +0100 +catalogue-license other-free +catalogue-topics engine name xetex-devanagari category Package revision 34296 -shortdesc XeTeX input map for Unicode Devanagari. +shortdesc XeTeX input map for Unicode Devanagari relocated 1 longdesc The package provides a map for use with Jonathan Kew's TECkit, longdesc to translate Devanagari (encoded according to the Harvard/Kyoto longdesc convention) to Unicode (range 0900-097F). +containersize 12452 +containerchecksum 96eeb5289b4b0ce252eba1daf15fbccaf2cbb2d251a85818b6dd761048532f36355619e37f1f857caf4592cbf85d112d6d48d5944c455ef36da9913529a783fc +doccontainersize 992 +doccontainerchecksum 0f360c3f43c6562520b8843269068fc46ecc405cd3a4d8faecddc4f606d69cedcab28950fc1d2e11699e297fe4d70c4c3d50765a2ec30541c237914accbc7129 +docfiles size=1 + RELOC/doc/xetex/xetex-devanagari/Changelog runfiles size=14 RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/README RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/devanagarinumerals.map @@ -179404,38 +303328,28 @@ runfiles size=14 RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/velthuis-sanskrit.tec RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/velthuis.map RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/velthuis.tec -docfiles size=1 - RELOC/doc/xetex/xetex-devanagari/Changelog catalogue-ctan /macros/xetex/generic/devanagari -catalogue-date 2014-06-13 23:21:02 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics inputenc xetex catalogue-version 0.5 -name xetexfontinfo -category Package -revision 15878 -shortdesc Report font features in XeTeX. -relocated 1 -longdesc A pair of documents to reveal the font features supported by -longdesc fonts usable in XeTeX. Use OpenType-info.tex for OpenType -longdesc fonts, and AAT-info.tex for AAT fonts (Mac OS X only). -runfiles size=2 - RELOC/tex/xetex/xetexfontinfo/aat-info.tex - RELOC/tex/xetex/xetexfontinfo/opentype-info.tex -docfiles size=1 - RELOC/doc/xetex/xetexfontinfo/README -catalogue-ctan /macros/xetex/plain/xetexfontinfo -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license apache2 - name xetex-itrans category Package revision 35088 -shortdesc Itrans input maps for use with XeLaTeX. +shortdesc Itrans input maps for use with XeLaTeX relocated 1 longdesc The package provides maps for use with XeLaTeX with coding done longdesc using itrans. Fontspec maps are provided for Devanagari longdesc (Sanskrit), for Sanskrit in Kannada and for Kannada itself. +containersize 24640 +containerchecksum 7d083e176a2786689a325c511d4e50afda5ea8c644c8288ea050db79fd248085be500ddf7a0b8ca3cef6191651669f9c48f894d16ac571096cd1658d6e6bac60 +doccontainersize 21092 +doccontainerchecksum 795a13fced2938c1679dcafd07e445ec62db6cb014259a15d1f8d1dd68ee4cdb98c20024b1601679da5f6e8d3a27b05a1285de967067abc1fd61ee6937540449 +docfiles size=8 + RELOC/doc/xelatex/xetex-itrans/README details="Readme" + RELOC/doc/xelatex/xetex-itrans/itrans-tamil-sample.pdf + RELOC/doc/xelatex/xetex-itrans/itrans-tamil-sample.tex runfiles size=29 RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/brh-kan.map RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/brh-kan.tec @@ -179455,142 +303369,347 @@ runfiles size=29 RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-tamil.tec RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-tel.map RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-tel.tec -docfiles size=8 - RELOC/doc/xelatex/xetex-itrans/README - RELOC/doc/xelatex/xetex-itrans/itrans-tamil-sample.pdf - RELOC/doc/xelatex/xetex-itrans/itrans-tamil-sample.tex catalogue-ctan /macros/xetex/generic/itrans -catalogue-date 2014-09-01 15:13:45 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl1.3 +catalogue-topics markup indic font-supp catalogue-version 4.2 -name xetexko -category Package -revision 37569 -shortdesc Typeset Korean with Xe(La)TeX. -relocated 1 -longdesc The package supports typesetting Korean documents (including -longdesc old Hangul texts), using XeTeX. It enhances the existing -longdesc support, in XeTeX, providing features that provide quality -longdesc typesetting. -runfiles size=79 - RELOC/tex/xetex/xetexko/hanja_hangul.tab - RELOC/tex/xetex/xetexko/hanjacom_hangul.tab - RELOC/tex/xetex/xetexko/hanjaexa_hangul.tab - RELOC/tex/xetex/xetexko/xetexko-font.sty - RELOC/tex/xetex/xetexko/xetexko-hanging.sty - RELOC/tex/xetex/xetexko/xetexko-josa.sty - RELOC/tex/xetex/xetexko/xetexko-space.sty - RELOC/tex/xetex/xetexko/xetexko-vertical.sty - RELOC/tex/xetex/xetexko/xetexko.sty -docfiles size=58 - RELOC/doc/xetex/xetexko/ChangeLog - RELOC/doc/xetex/xetexko/README - RELOC/doc/xetex/xetexko/xetexko-doc.pdf - RELOC/doc/xetex/xetexko/xetexko-doc.tex -catalogue-ctan /macros/xetex/generic/xetexko -catalogue-date 2015-06-16 14:10:03 +0200 -catalogue-license lppl1.3 -catalogue-topics korean xetex -catalogue-version 2.13 - name xetex-pstricks category Package revision 17055 -shortdesc Running PStricks under XeTeX. +shortdesc Running PSTricks under XeTeX relocated 1 longdesc The package provides an indirection scheme for XeTeX to use the longdesc pstricks xdvipdfmx.cfg configuration file, so that XeTeX longdesc documents will load it in preference to the standard longdesc pstricks.con configuration file. With this configuration, many -longdesc PSTricks features can be used in xelatex or plain xetex +longdesc PSTricks features can be used in XeLaTeX or plain XeTeX longdesc documents. +containersize 724 +containerchecksum 59186971a188f4541361df8fc492b3767069b3081f7052c88df5395539807970c709537b074790411dffbc871010cf4d3fbbdb6684c43007477c44be6259b64b +doccontainersize 932 +doccontainerchecksum cf71359ea6e56061848b085da9755fd3d96d2a9d30484b5d5028c7a3dfb52dfbe275c46f17016179a56f90db3b6df4453cbf3a990a709e59503fbf1a576eaf8d +docfiles size=1 + RELOC/doc/xetex/xetex-pstricks/README details="Readme" runfiles size=2 RELOC/tex/xelatex/xetex-pstricks/pstricks.con RELOC/tex/xetex/xetex-pstricks/pstricks.con -docfiles size=1 - RELOC/doc/xetex/xetex-pstricks/README catalogue-ctan /graphics/xetex/pstricks -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-09-15 14:24:32 +0200 catalogue-license pd - -name xetexref -category Package -revision 30636 -shortdesc Reference documentation of XeTeX. -relocated 1 -longdesc The package comprises reference documentation for XeTeX -longdesc detailing its extended features. -docfiles size=79 - RELOC/doc/xetex/xetexref/Makefile - RELOC/doc/xetex/xetexref/Makefile.ini - RELOC/doc/xetex/xetexref/README - RELOC/doc/xetex/xetexref/xetex-reference.pdf - RELOC/doc/xetex/xetexref/xetex-reference.tex -catalogue-ctan /info/xetexref -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl +catalogue-topics graphics-in-tex xetex name xetex-tibetan category Package revision 28847 -shortdesc XeTeX input maps for Unicode Tibetan. +shortdesc XeTeX input maps for Unicode Tibetan relocated 1 longdesc The package provides a map for use with Jonathan Kew's TECkit, longdesc to translate Tibetan to Unicode (range 0F00-0FFF). +containersize 7048 +containerchecksum de7d2f875416336f25e8a14f8c743aef87017cc0aeb30b5c6aa9e1bdf044d71d3c9e9a28d52ccbe7fbd2099ca9e47938310dc3311e46399027aa822b76ff90c9 +doccontainersize 1204 +doccontainerchecksum 0bba33024862284354416e55f2f718f3f3220e4a853c68bd6386c013702aa07a3142864168f6d136bb351044dd9ae8b59754cc2a0181a358fe1baad49106d504 +docfiles size=2 + RELOC/doc/xetex/xetex-tibetan/Changelog + RELOC/doc/xetex/xetex-tibetan/README details="Readme" runfiles size=6 RELOC/fonts/misc/xetex/fontmapping/xetex-tibetan/loctib.map RELOC/fonts/misc/xetex/fontmapping/xetex-tibetan/loctib.tec RELOC/fonts/misc/xetex/fontmapping/xetex-tibetan/wylie.map RELOC/fonts/misc/xetex/fontmapping/xetex-tibetan/wylie.tec -docfiles size=2 - RELOC/doc/xetex/xetex-tibetan/Changelog - RELOC/doc/xetex/xetex-tibetan/README catalogue-ctan /macros/xetex/generic/tibetan -catalogue-date 2013-01-26 20:44:01 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics inputenc xetex catalogue-version 0.1 -name xetex +name xetex.aarch64-linux category TLCore -revision 37058 -shortdesc Unicode and OpenType-enabled TeX engine. -longdesc See http://tug.org/xetex. -depend xetexconfig -depend xetex.ARCH -execute AddFormat name=xetex engine=xetex patterns=language.def options="-etex xetex.ini" -execute AddFormat name=xelatex engine=xetex patterns=language.dat options="-etex xelatex.ini" -postaction script file=tlpkg/tlpostcode/xetex.pl -runfiles size=57 - texmf-dist/fonts/misc/xetex/fontmapping/base/qx-unicode.map - texmf-dist/fonts/misc/xetex/fontmapping/base/qx-unicode.tec - texmf-dist/fonts/misc/xetex/fontmapping/base/tex-text.map - texmf-dist/fonts/misc/xetex/fontmapping/base/tex-text.tec - texmf-dist/scripts/xetex/perl/lib/PDF/Reuse.pm - texmf-dist/scripts/xetex/perl/lib/PDF/Reuse/Util.pm - texmf-dist/scripts/xetex/perl/xdv2pdf_mergemarks - tlpkg/tlpostcode/xetex.pl -docfiles size=157 - texmf-dist/doc/xetex/base/NEWS - texmf-dist/doc/xetex/base/README - texmf-dist/doc/xetex/base/XeTeX-notes.pdf - texmf-dist/doc/xetex/base/XeTeX-notes.tex -catalogue-date 2015-04-04 16:29:12 +0200 -catalogue-license other-free +revision 50700 +shortdesc aarch64-linux files of xetex +containersize 7154728 +containerchecksum f55dbeee71d25d8fa23de55a368335a8a4aa7574df3981f076f9c868ceea58b85f4fb9f7598c473ca24d662d6c72b55c02c070cd9ec52d96fcc27a9740b76994 +binfiles arch=aarch64-linux size=6969 + bin/aarch64-linux/teckit_compile + bin/aarch64-linux/xelatex + bin/aarch64-linux/xetex + +name xetex.amd64-freebsd +category TLCore +revision 50700 +shortdesc amd64-freebsd files of xetex +containersize 7022760 +containerchecksum a52f1899343c0f8b5378573a639b36ffd3b1001637cc5466cfd1a64ce67e0852b70f19a9abd70c91eb943f63cbd7d901894431fe70f6a2d15023979b33a6da32 +binfiles arch=amd64-freebsd size=6352 + bin/amd64-freebsd/teckit_compile + bin/amd64-freebsd/xelatex + bin/amd64-freebsd/xetex + +name xetex.amd64-netbsd +category TLCore +revision 50693 +shortdesc amd64-netbsd files of xetex +containersize 6955348 +containerchecksum cb4d4afed6cbf4b8db3f7198a9fcca5429dfcf4560076a41555db66a67ce46178e3927ef236e0ece777f9f498c4ae2781c54ceee2e865fc2d5f1be637aa4cb5e +binfiles arch=amd64-netbsd size=7017 + bin/amd64-netbsd/teckit_compile + bin/amd64-netbsd/xelatex + bin/amd64-netbsd/xetex + +name xetex.armhf-linux +category TLCore +revision 50790 +shortdesc armhf-linux files of xetex +containersize 6854940 +containerchecksum 6d172c4db8af665202ae5c9cdfa82dac5079bb7037c38c7b28872d7b596d9e439dd267142ca8bbba9249a9e88fcb8b768436c7158fa5739572e0b061f50658f7 +binfiles arch=armhf-linux size=6305 + bin/armhf-linux/teckit_compile + bin/armhf-linux/xelatex + bin/armhf-linux/xetex + +name xetex.i386-cygwin +category TLCore +revision 50855 +shortdesc i386-cygwin files of xetex +containersize 7131284 +containerchecksum 452bd7fdaf596370cc253bcf78f12901aa55c4618c588ac2371f87b20d1f2fb173f16d5eca6bb2508212c67f58187e4f98dd7e3a5ec2541b49861e8422207bfd +binfiles arch=i386-cygwin size=6554 + bin/i386-cygwin/teckit_compile.exe + bin/i386-cygwin/xelatex + bin/i386-cygwin/xetex.exe + +name xetex.i386-freebsd +category TLCore +revision 50700 +shortdesc i386-freebsd files of xetex +containersize 6808228 +containerchecksum f3a080a18716aeb92dd49e7ca172fef0ece19e4bd787bca6668a7dbe5fc81b2b0d283cd339bbf9dcb2b9a46ee9ce6c4d248b6a2d401e2ce6db8a80a512490eb5 +binfiles arch=i386-freebsd size=6089 + bin/i386-freebsd/teckit_compile + bin/i386-freebsd/xelatex + bin/i386-freebsd/xetex name xetex.i386-linux category TLCore -revision 37261 +revision 50700 shortdesc i386-linux files of xetex -binfiles arch=i386-linux size=6435 - bin/i386-linux/xdvipdfmx +containersize 7249744 +containerchecksum a0ee3936ea99da0e8c248aecf64f6e5239a51b9ada441a3c14e54da13c797c740b8859ceaffec33287e27c5852336e63295e4c757b20e917d74f29e1f7dac796 +binfiles arch=i386-linux size=6464 + bin/i386-linux/teckit_compile bin/i386-linux/xelatex bin/i386-linux/xetex +name xetex.i386-netbsd +category TLCore +revision 50693 +shortdesc i386-netbsd files of xetex +containersize 6864596 +containerchecksum 4ab104e5b978f67c68d8dead7b896592279c84052ecf19c42785d9df008782e3277614027729c32b2499da3bde6ffdaef67b35728dfdf1800d468961d99d852d +binfiles arch=i386-netbsd size=6757 + bin/i386-netbsd/teckit_compile + bin/i386-netbsd/xelatex + bin/i386-netbsd/xetex + +name xetex.i386-solaris +category TLCore +revision 50700 +shortdesc i386-solaris files of xetex +containersize 7443752 +containerchecksum eecdc9967cadfd18de26478ff93c56bc399afd0113b4f6dc9facff92f39a3a00789093cefbc66c4a4d5298ed796f83ecc960d850379e3bcfdd2d4764286b51a6 +binfiles arch=i386-solaris size=6835 + bin/i386-solaris/teckit_compile + bin/i386-solaris/xelatex + bin/i386-solaris/xetex + +name xetex.win32 +category TLCore +revision 50654 +shortdesc win32 files of xetex +containersize 9166656 +containerchecksum 7fdddaef5f026bd43f99bdf58e2c460d8ae61cc6c3264b5ba96216fcf6f0d8d693e3d512cdcb12e61c3656c5bb851a46b779191257f53d562db7ab58660acb85 +binfiles arch=win32 size=9839 + bin/win32/fc-cache.exe + bin/win32/fc-cat.exe + bin/win32/fc-list.exe + bin/win32/fc-match.exe + bin/win32/fc-pattern.exe + bin/win32/fc-query.exe + bin/win32/fc-scan.exe + bin/win32/fc-validate.exe + bin/win32/icudt63.dll + bin/win32/teckit_compile.exe + bin/win32/xelatex.exe + bin/win32/xetex.dll + bin/win32/xetex.exe + tlpkg/tlpostcode/xetex/cache/readme.txt + tlpkg/tlpostcode/xetex/conf/conf.d/51-local.conf + tlpkg/tlpostcode/xetex/conf/fonts.conf + tlpkg/tlpostcode/xetex/conf/fonts.dtd + +name xetex.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of xetex +containersize 7160404 +containerchecksum 513f2a3e7a50e67e4f08c6bc26e0a1f026ebc550e07020e41d71933f0d78f25886af6e539ebb1ed3b3582adfbcd0dd71ca82e6da1d7b93b295bc5e4ed617142a +binfiles arch=x86_64-cygwin size=6553 + bin/x86_64-cygwin/teckit_compile.exe + bin/x86_64-cygwin/xelatex + bin/x86_64-cygwin/xetex.exe + +name xetex.x86_64-darwin +category TLCore +revision 50700 +shortdesc x86_64-darwin files of xetex +containersize 7000956 +containerchecksum f7cee3ef2db9e9ad224e9fd3c0899f16cbdb0985196928f3b044a8e1583d6eb9c57dc841e87abf4e4c26dbe45331825cbf109f4ee88ac653206fcc277427d70b +binfiles arch=x86_64-darwin size=6248 + bin/x86_64-darwin/teckit_compile + bin/x86_64-darwin/xelatex + bin/x86_64-darwin/xetex + +name xetex.x86_64-darwinlegacy +category TLCore +revision 50700 +shortdesc x86_64-darwinlegacy files of xetex +containersize 6785860 +containerchecksum c5eb5b001d21e94c57ffd27c637890db93e018049f728b9c26292a31d7430161d0469aa8643399ab6d3ebe9ef9b915f9af92a44803a5e26eabe3bee1c87a6f7f +binfiles arch=x86_64-darwinlegacy size=6102 + bin/x86_64-darwinlegacy/teckit_compile + bin/x86_64-darwinlegacy/xelatex + bin/x86_64-darwinlegacy/xetex + +name xetex.x86_64-linux +category TLCore +revision 50700 +shortdesc x86_64-linux files of xetex +containersize 7180504 +containerchecksum 6bdbb10cca98b8aec8e7e1b9ad8d6486a6bdd2ca7c99b0c96acbbc683cf36ec5ac08954712b41e6e3e83d0c16e87d81f280bb6e97959cd545d0c1640b4f0ee32 +binfiles arch=x86_64-linux size=6482 + bin/x86_64-linux/teckit_compile + bin/x86_64-linux/xelatex + bin/x86_64-linux/xetex + +name xetex.x86_64-linuxmusl +category TLCore +revision 50700 +shortdesc x86_64-linuxmusl files of xetex +containersize 7367980 +containerchecksum 28df4e148817bb2250527393d62b1685cd3d377f594a6cf40988f989b7258dee3b04a16766f7db8759496bb193504051cf31f5716c49b23532ffc113284c4a42 +binfiles arch=x86_64-linuxmusl size=6894 + bin/x86_64-linuxmusl/teckit_compile + bin/x86_64-linuxmusl/xelatex + bin/x86_64-linuxmusl/xetex + +name xetex.x86_64-solaris +category TLCore +revision 50700 +shortdesc x86_64-solaris files of xetex +containersize 7560760 +containerchecksum babad5b85edb51b4bab279bed88c14e562569aa28ff79d4cb8c9dab1b65122ee2bb1137822f90a4fa387eaa9625dc97eecaa44138c541399bf3b8621e2d40730 +binfiles arch=x86_64-solaris size=7073 + bin/x86_64-solaris/teckit_compile + bin/x86_64-solaris/xelatex + bin/x86_64-solaris/xetex + +name xetexconfig +category Package +revision 45845 +shortdesc crop.cfg for XeLaTeX +relocated 1 +containersize 532 +containerchecksum 62b130d16ac01845df5acb1a10e487408208b0c4369d58892a83a42609b3dc92589195540154d1e07a9cb528e8e4ca65009dfef236efd53b9cfbce0a942c5b01 +runfiles size=1 + RELOC/tex/xelatex/xetexconfig/crop.cfg + +name xetexfontinfo +category Package +revision 15878 +shortdesc Report font features in XeTeX +relocated 1 +longdesc A pair of documents to reveal the font features supported by +longdesc fonts usable in XeTeX. Use OpenType-info.tex for OpenType +longdesc fonts, and AAT-info.tex for AAT fonts (Mac OS X only). +containersize 2340 +containerchecksum 8099f45c704ea74e5bbd90b1817c3ad06cffe3d6da0a997f8471e72cff364d346a3cc2e6f156b51bf7bc3ba149e5c755423418d58be89e1872f84db9c1eef039 +doccontainersize 628 +doccontainerchecksum a5a9b085e5dac02d75b83c7063fe653724367ce203c20832e2ef6b11db10e31bcb90745a7b7d65427a33cb018d68afdd4acf9f92c907f91904188ad60f2e1460 +docfiles size=1 + RELOC/doc/xetex/xetexfontinfo/README details="Readme" +runfiles size=2 + RELOC/tex/xetex/xetexfontinfo/aat-info.tex + RELOC/tex/xetex/xetexfontinfo/opentype-info.tex +catalogue-ctan /macros/xetex/plain/xetexfontinfo +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license apache2 +catalogue-topics font-supp xetex + +name xetexko +category Package +revision 48378 +shortdesc Typeset Korean with Xe(La)TeX +relocated 1 +longdesc The package supports typesetting Korean documents (including +longdesc old Hangul texts), using XeTeX. It enhances the existing +longdesc support, in XeTeX, providing features that provide quality +longdesc typesetting. This package requires cjk-ko package for its full +longdesc functionality. +containersize 57240 +containerchecksum 20c52e861ec9f38df4a7ca0402ca6817e80ee3788f40fdf9ac24c61aca3d38b02d6f6d3cca1c8c547088c1ba9a6b55b5b5a75be5dc98e707b33cb2ed900f968a +doccontainersize 231052 +doccontainerchecksum 820c0de971caf668a9fbe01613a0b82ae1620e3199593a29bf2e7992607a27052083b33c1359019c8f026b4295bebf01ddcf840ab8f4eb3ac5878bff97b8e578 +docfiles size=65 + RELOC/doc/xetex/xetexko/ChangeLog + RELOC/doc/xetex/xetexko/README details="Readme" + RELOC/doc/xetex/xetexko/xetexko-doc.pdf details="Package documentation" + RELOC/doc/xetex/xetexko/xetexko-doc.tex +runfiles size=78 + RELOC/tex/xetex/xetexko/hanja_hangul.tab + RELOC/tex/xetex/xetexko/hanjacom_hangul.tab + RELOC/tex/xetex/xetexko/hanjaexa_hangul.tab + RELOC/tex/xetex/xetexko/xetexko-font.sty + RELOC/tex/xetex/xetexko/xetexko-hanging.sty + RELOC/tex/xetex/xetexko/xetexko-josa.sty + RELOC/tex/xetex/xetexko/xetexko-space.sty + RELOC/tex/xetex/xetexko/xetexko-vertical.sty + RELOC/tex/xetex/xetexko/xetexko.sty +catalogue-contact-repository https://github.com/dohyunkim/xetexko +catalogue-ctan /macros/xetex/generic/xetexko +catalogue-date 2018-08-08 09:37:17 +0200 +catalogue-license lppl1.3 +catalogue-topics korean xetex +catalogue-version 2.21 + +name xetexref +category Package +revision 50244 +shortdesc Reference documentation of XeTeX +relocated 1 +longdesc The package comprises reference documentation for XeTeX +longdesc detailing its extended features. +containersize 472 +containerchecksum d7c7d2a404de1fd609f172dc0f8173cfb6a255a220700cb4d8659002e2793a01e43caa7bb483fa343a85a84ba545edd7e7c985b92045855285f1704eafb20df1 +doccontainersize 160552 +doccontainerchecksum 818383480f2e20d7e00a8ad77423e9326cdd130ec1d1dba0dcb536fd13e7e287b4e8a67460eb510ed786b3d1e7f65f92c1627cdec94860ba0622ee2b92c91974 +docfiles size=49 + RELOC/doc/xetex/xetexref/README.txt details="Readme" + RELOC/doc/xetex/xetexref/xetex-reference.pdf details="The document itself" + RELOC/doc/xetex/xetexref/xetex-reference.tex +catalogue-contact-bugs https://github.com/wspr/xetexref/issues +catalogue-contact-repository https://github.com/wspr/xetexref/ +catalogue-contact-support http://lists.tug.org/xetex +catalogue-ctan /info/xetexref +catalogue-date 2019-03-05 08:57:15 +0100 +catalogue-license lppl1.3c +catalogue-topics documentation xetex + name xevlna category Package -revision 30086 -shortdesc Insert non-breakable spaces using XeTeX. +revision 43864 +shortdesc Insert non-breakable spaces using XeTeX relocated 1 longdesc The package will directly insert nonbreakable spaces (in Czech, longdesc vlna or vlnka), after nonsyllabic prepositions and single @@ -179600,46 +303719,87 @@ longdesc nonbreakable spaces by a preprocessor will probably never be longdesc fully reliable, because user defined macros and environments longdesc cannot reliably be recognised.) The package works both with longdesc (Plain) XeTeX and with XeLaTeX. -runfiles size=1 - RELOC/tex/xelatex/xevlna/xevlna.sty +containersize 1344 +containerchecksum 69c80d5243a4af96f2dd8092926d2766bad5d6beaeff94d6aa2f184a68a45fa50bb3abb91a4652d8c5e5617073aee9caddeeb73fd5399965f477be7075b7ca01 +doccontainersize 55384 +doccontainerchecksum d0d033b646314eb250b245575ea2361b6c12f13eefab071c2b9f91524b08bfceb9fec197c3fa5f61e3ed19caaf4198e69ce1305bf1eb2daf1db6e30365eeac48 docfiles size=21 RELOC/doc/xelatex/xevlna/License.txt - RELOC/doc/xelatex/xevlna/README + RELOC/doc/xelatex/xevlna/README details="Readme" RELOC/doc/xelatex/xevlna/xevlna-inc.tex - RELOC/doc/xelatex/xevlna/xevlna.pdf + RELOC/doc/xelatex/xevlna/xevlna.pdf details="Package documentation" RELOC/doc/xelatex/xevlna/xevlna.tex +runfiles size=1 + RELOC/tex/xelatex/xevlna/xevlna.sty +catalogue-also encxvlna luavlna catalogue-ctan /macros/xetex/generic/xevlna -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-05-30 19:48:21 +0200 catalogue-license lppl1.3 -catalogue-version 1.0 +catalogue-topics typesetting czech +catalogue-version 1.1 + +name xfakebold +category Package +revision 48460 +shortdesc Fake a regular font for bold characters +relocated 1 +longdesc This package uses PDF's text rendering to modify the linewidth +longdesc of an outline font to get bold characters. It works only for +longdesc vectorfonts where the glyphs are defined by their outline. The +longdesc package works both in text and in math mode, for pdfLaTeX as +longdesc well as for LuaLaTeX. The package depends on ifluatex, ifxetex, +longdesc and xkeyval. +containersize 1280 +containerchecksum 78383691bf81bd885eddc5354022574d89de1d16b81037c8e94b5d068be2cefa45ef368336ed8d9186dce06a9c8359cc48010689d358ed35fcc83d3e00c7deb7 +doccontainersize 79456 +doccontainerchecksum e2d9b56234ff7a5bb0c63c9cf7fa59c186360419e97f2585be59e85ee9554cdd1bb6017f50fd542c79a25cf59946716cde049ec5025273211e65b3bdd5316c9f +docfiles size=24 + RELOC/doc/latex/xfakebold/Changes + RELOC/doc/latex/xfakebold/README details="Readme" + RELOC/doc/latex/xfakebold/xfakebold-doc.pdf details="Package documentation" + RELOC/doc/latex/xfakebold/xfakebold-doc.tex +runfiles size=1 + RELOC/tex/latex/xfakebold/xfakebold.sty +catalogue-ctan /macros/latex/contrib/xfakebold +catalogue-date 2018-08-22 15:59:18 +0200 +catalogue-license lppl1.3c +catalogue-topics font-supp-misc font-util pdf-feat +catalogue-version 0.04 name xfor category Package revision 15878 -shortdesc A reimplementation of the LaTeX for-loop macro. +shortdesc A reimplementation of the LaTeX for-loop macro relocated 1 longdesc The package redefines the LaTeX internal \@for macro so that longdesc the loop may be prematurely terminated. The action is akin to longdesc the C/Java break statement, except that the loop does not longdesc terminate until the end of the current iteration -runfiles size=1 - RELOC/tex/latex/xfor/xfor.sty +containersize 1716 +containerchecksum 6e3ebe83dc39a87aa86d5f173f56893ab1678253dc18dedf16c5d4a2df864e21b9b6e84c6bda56e2c624106efb2f73c110964948e4d553848bbebae87f05bff8 +doccontainersize 102224 +doccontainerchecksum e75b3d57c09e1580282f4002b684645aa21aeed4f90626b7e439f30dd79edec9c6f23492eef83b67e9ccb885c001caca6201d43b5182632a5b38ba5f67488b52 docfiles size=32 RELOC/doc/latex/xfor/CHANGES - RELOC/doc/latex/xfor/README + RELOC/doc/latex/xfor/README details="Readme" RELOC/doc/latex/xfor/sample.tex - RELOC/doc/latex/xfor/xfor.pdf + RELOC/doc/latex/xfor/xfor.pdf details="Package documentation" +srccontainersize 4904 +srccontainerchecksum 508dd3c696da5287cee35fbeca12aa60667908f1f456a9d1333197e76b707902d281e83146b81e0a095c168054ec96013074f5b0bc236e35cb17732f4158e2ae srcfiles size=5 RELOC/source/latex/xfor/xfor.dtx RELOC/source/latex/xfor/xfor.ins +runfiles size=1 + RELOC/tex/latex/xfor/xfor.sty catalogue-ctan /macros/latex/contrib/xfor -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics macro-supp catalogue-version 1.05 name xgreek category Package -revision 38043 +revision 46662 shortdesc XeLaTeX package for typesetting Greek language documents (beta release) relocated 1 longdesc This package has been designed so to allow people to typeset @@ -179654,44 +303814,55 @@ longdesc typesetting ancient texts). The default option is monotonic. longdesc The command \setlanguage{} to activate the hyphenation longdesc patterns of the language This, however, can be done only longdesc if the format file has not been built with the babel mechanism. -runfiles size=7 - RELOC/tex/xelatex/xgreek/xgreek.sty -docfiles size=17 - RELOC/doc/xelatex/xgreek/README - RELOC/doc/xelatex/xgreek/xgreek.pdf +containersize 4752 +containerchecksum 1f2dfaeb88040a1b58b60c0ccb84e7417d4211491d34c17c9302b7cf388775ed729f9135b76e43ea276a50a665efeaf19884535c187bc1c0cd931c2e79b8aa19 +doccontainersize 67772 +doccontainerchecksum 8258ef4bca146a2ea8f42a235f151924156f116d2d3feb4d1974da1b1afd395858dd5d53d2343d748f0d60afffc8967e9f316026e07bdc2215d145334ec90e66 +docfiles size=18 + RELOC/doc/xelatex/xgreek/README details="README file" + RELOC/doc/xelatex/xgreek/xgreek.pdf details="Package documentation" +srccontainersize 9864 +srccontainerchecksum a982e91c9fd68b583ed3d28c841e91e45ba83a9b961cf710cea2a025c69f3e4c98124eb3d5ef45062347ae8b48c6ad54ef5c7631fffa1be5cb9705842ca23987 srcfiles size=12 RELOC/source/xelatex/xgreek/xgreek.dtx RELOC/source/xelatex/xgreek/xgreek.ins +runfiles size=7 + RELOC/tex/xelatex/xgreek/xgreek.sty catalogue-ctan /macros/xetex/latex/xgreek -catalogue-date 2015-08-04 05:05:23 +0200 +catalogue-date 2018-02-16 22:27:20 +0100 catalogue-license lppl1.3 catalogue-topics greek xetex -catalogue-version 2.61 +catalogue-version 3.0.1 name xhfill category Package revision 22575 -shortdesc Extending \hrulefill. +shortdesc Extending \hrulefill relocated 1 longdesc The package provides extended macros for the default \hrulefill longdesc command. It allows modification of the width and the colour of longdesc the line. -runfiles size=1 - RELOC/tex/latex/xhfill/xhfill.sty +containersize 1200 +containerchecksum cc0ea9e9d40a590444801359c455716856c807eb429aa01b460fd7566797490932bd3566a5c6f95bd6723e0b05bde1aa632b83383c8bcdeba8a455cb84ea9f1b +doccontainersize 39088 +doccontainerchecksum 027287d941c4576d7f55a3d618e13cde5348ac072f3e546dac6f8a8814efb982f9cd0c4162866403f946d07ecba0ea8cc15543cafbdf9008d60b78d0ea3d26fd docfiles size=13 RELOC/doc/latex/xhfill/Changes RELOC/doc/latex/xhfill/Makefile - RELOC/doc/latex/xhfill/xhfill-doc.pdf + RELOC/doc/latex/xhfill/xhfill-doc.pdf details="Package documentation" RELOC/doc/latex/xhfill/xhfill-doc.tex +runfiles size=1 + RELOC/tex/latex/xhfill/xhfill.sty catalogue-ctan /macros/latex/contrib/xhfill -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics rule catalogue-version 1.01 name xifthen category Package -revision 15878 -shortdesc Extended conditional commands. +revision 38929 +shortdesc Extended conditional commands relocated 1 longdesc This package extends the ifthen package by implementing new longdesc commands to go within the first argument of \ifthenelse: to @@ -179699,56 +303870,1002 @@ longdesc test whether a string is void or not, if a command is defined longdesc or equivalent to another. The package also enables use of longdesc complex expressions as introduced by the package calc, together longdesc with the ability of defining new commands to handle complex -longdesc tests. The package requires e-TeX features. -runfiles size=2 - RELOC/tex/latex/xifthen/xifthen.sty -docfiles size=133 +longdesc tests. +containersize 2120 +containerchecksum 21c5882ffbde05c50a6536fbf19f812a3ce6381f565227f61c8062281a2472a105bf6223cdc03adebf275fa23dbc1ebbb967349c715f20d1b516f100f820af3e +doccontainersize 482656 +doccontainerchecksum 52ffddbfb4d0d579849b7a89d30bebe9f1d511751c89012712a8ef73ae3f4eb8799ef9b3755dc957c47fd874f1ce76b3ed54591d59f7e4d9e1851c50aff3dd4b +docfiles size=123 RELOC/doc/latex/xifthen/README - RELOC/doc/latex/xifthen/xifthen.pdf + RELOC/doc/latex/xifthen/xifthen.pdf details="Package documentation" RELOC/doc/latex/xifthen/xifthen.tex +runfiles size=2 + RELOC/tex/latex/xifthen/xifthen.sty +catalogue-also ifthen ifthenx catalogue-ctan /macros/latex/contrib/xifthen -catalogue-date 2012-06-08 17:44:30 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl -catalogue-version 1.3 +catalogue-topics macro-supp cond-comp +catalogue-version 1.4.0 name xii category Package -revision 31683 -shortdesc Christmas silliness. +revision 45804 +shortdesc Christmas silliness (English) relocated 1 +longdesc This is the plain TeX file xii.tex. Call "pdftex xii.tex" to +longdesc produce a (perhaps) surprising typeset document. +containersize 488 +containerchecksum a5355a456005e09eac4135735973a14a6add3a31639fcea441d8d6a7c06e7a7efbfc1470d485ab317fa193897abc2d9edeccadd19239944014b7fccecdda52a3 +doccontainersize 1228 +doccontainerchecksum c9b348da09c3a9c1522eb7713a17a58b3eabf4ff8ed52e8d14dc9eeff528ed93af505b5e3cb59c1af4c2ce999c6c1d98f66d026a6ab3d7a09778230286059d84 docfiles size=2 - RELOC/doc/plain/xii/README + RELOC/doc/plain/xii/README.txt details="Readme" RELOC/doc/plain/xii/xii.tex +catalogue-also xii-lat inscrutable +catalogue-contact-home https://github.com/davidcarlisle/dpctex catalogue-ctan /macros/plain/contrib/xii -catalogue-date 2013-09-30 10:58:18 +0200 +catalogue-date 2017-11-14 12:04:34 +0100 catalogue-license lppl +catalogue-topics frivolous + +name xii-lat +category Package +revision 45805 +shortdesc Christmas silliness (Latin) +relocated 1 +longdesc This is the plain TeX file xii-lat.tex. Call "pdftex +longdesc xii-lat.tex" to produce a (perhaps) surprising typeset +longdesc document. +containersize 492 +containerchecksum e4538ac31b6508371ee156168d4da71644a65297b91be7f070291f35563a45a1ee5a528d25585bc23a4690e8fc5c6ad04bfc829de4e95f49468a5852fac9e822 +doccontainersize 1392 +doccontainerchecksum 50322d89f494d07793d964fe515b8a0bacb74bd5706a6da80f6860771a8e3cad35c7d06bf398217a7e4364594d54f4dc490f39980194804a04460047ff5083f8 +docfiles size=2 + RELOC/doc/plain/xii-lat/README.txt details="Readme" + RELOC/doc/plain/xii-lat/xii-lat.tex +catalogue-also xii inscrutable +catalogue-contact-home https://github.com/davidcarlisle/dpctex +catalogue-ctan /macros/plain/contrib/xii-lat +catalogue-date 2017-11-20 05:46:57 +0100 +catalogue-license lppl +catalogue-topics frivolous + +name xindex +category Package +revision 50842 +shortdesc Unicode compatible index generation +longdesc This package provides a unicode compatible index programm for +longdesc LaTeX. It needs Lua 5.3, which will be included in at least +longdesc LuaTeX 1.09 (TeX Live 2019). +depend xindex.ARCH +containersize 27736 +containerchecksum f27035d661cff83820f8600bcac21d2e51b373de7e7007bbd7d4411b8b5974a68dd293adf8f75a5966eeda922584a912fe3b3fefbae23854430044bd7acdab07 +doccontainersize 437472 +doccontainerchecksum e6088d0f269fc025395ec711a54218ccaee15184b24f3eff0de773a5032d8da170d43b47b8d7768167e2f9fe1e6018114b65b9919f44cff629bd6d667e26f92d +docfiles size=181 + texmf-dist/doc/lualatex/xindex/CHANGELOG + texmf-dist/doc/lualatex/xindex/Makefile + texmf-dist/doc/lualatex/xindex/README.md details="Readme" + texmf-dist/doc/lualatex/xindex/tests/HADW.idx + texmf-dist/doc/lualatex/xindex/tests/HADW.ind + texmf-dist/doc/lualatex/xindex/tests/HADW.pdf + texmf-dist/doc/lualatex/xindex/tests/HADW.tex + texmf-dist/doc/lualatex/xindex/tests/HADW2.idx + texmf-dist/doc/lualatex/xindex/tests/HADW2.ind + texmf-dist/doc/lualatex/xindex/tests/Umlaute.idx + texmf-dist/doc/lualatex/xindex/tests/Umlaute.ind + texmf-dist/doc/lualatex/xindex/tests/Umlaute.pdf + texmf-dist/doc/lualatex/xindex/tests/Umlaute.tex + texmf-dist/doc/lualatex/xindex/tests/Umlaute2.idx + texmf-dist/doc/lualatex/xindex/tests/Umlaute2.ind + texmf-dist/doc/lualatex/xindex/tests/Umlaute2.pdf + texmf-dist/doc/lualatex/xindex/tests/Umlaute2.tex + texmf-dist/doc/lualatex/xindex/tests/buch.idx + texmf-dist/doc/lualatex/xindex/tests/buch.pdf + texmf-dist/doc/lualatex/xindex/tests/buch.tex + texmf-dist/doc/lualatex/xindex/tests/demo-hyperref.idx + texmf-dist/doc/lualatex/xindex/tests/demo-hyperref.ind + texmf-dist/doc/lualatex/xindex/tests/demo-hyperref.pdf + texmf-dist/doc/lualatex/xindex/tests/demo-hyperref.tex + texmf-dist/doc/lualatex/xindex/tests/demo.idx + texmf-dist/doc/lualatex/xindex/tests/demo.ind + texmf-dist/doc/lualatex/xindex/tests/demo.pdf + texmf-dist/doc/lualatex/xindex/tests/demo.tex + texmf-dist/doc/lualatex/xindex/tests/demo2.idx + texmf-dist/doc/lualatex/xindex/tests/demo2.ind + texmf-dist/doc/lualatex/xindex/tests/demo3.idx + texmf-dist/doc/lualatex/xindex/tests/demo3.ind + texmf-dist/doc/lualatex/xindex/tests/demo3.pdf + texmf-dist/doc/lualatex/xindex/tests/demo3.tex + texmf-dist/doc/lualatex/xindex/tests/runTests.sh + texmf-dist/doc/lualatex/xindex/xindex-doc.pdf details="Package documentation" + texmf-dist/doc/lualatex/xindex/xindex-doc.tex +runfiles size=47 + texmf-dist/scripts/xindex/xindex.lua + texmf-dist/tex/latex/xindex/xindex.sty + texmf-dist/tex/lualatex/xindex/xindex-DIN2.lua + texmf-dist/tex/lualatex/xindex/xindex-HAdW-eKO.lua + texmf-dist/tex/lualatex/xindex/xindex-base.lua + texmf-dist/tex/lualatex/xindex/xindex-cfg-common.lua + texmf-dist/tex/lualatex/xindex/xindex-cfg.lua + texmf-dist/tex/lualatex/xindex/xindex-dtk.lua + texmf-dist/tex/lualatex/xindex/xindex-lapp.lua + texmf-dist/tex/lualatex/xindex/xindex-lib.lua + texmf-dist/tex/lualatex/xindex/xindex-pretty.lua + texmf-dist/tex/lualatex/xindex/xindex-unicode.lua +catalogue-contact-bugs https://gitlab.com/hvoss49/xindex/issues +catalogue-contact-repository https://gitlab.com/hvoss49/xindex +catalogue-ctan /indexing/xindex +catalogue-date 2019-04-07 20:34:49 +0200 +catalogue-license lppl1.3 +catalogue-topics index use-lua +catalogue-version 0.10 + +name xindex.aarch64-linux +category Package +revision 49312 +shortdesc aarch64-linux files of xindex +containersize 340 +containerchecksum f458b5da81aba12dc1a7c913c67bd10a52bfe5c828047732365fa8cf0eb3b0bf112b4a8254cb27435e9eebc8455cff83f46e0cd9200d99e7da513d395f760e6c +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/xindex + +name xindex.amd64-freebsd +category Package +revision 49312 +shortdesc amd64-freebsd files of xindex +containersize 344 +containerchecksum d95dd0f0388b822581c90403b4978a5909ce567550c1d0f7170c932d14c729983f7a052278a737174409515e271a6404b42d8d81be9354f1cc4788999d1da947 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/xindex + +name xindex.amd64-netbsd +category Package +revision 49312 +shortdesc amd64-netbsd files of xindex +containersize 344 +containerchecksum 0e79bb684bf4fe44c1198a0b4327ecc2081ac902246e096447f9fa7c94c9c815d743f932c752cb996d65935f2f7ea2e1628c986e16ca71de460abca26015d1c1 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/xindex + +name xindex.armhf-linux +category Package +revision 49312 +shortdesc armhf-linux files of xindex +containersize 344 +containerchecksum 1c85abaa55f7c1e83932d6a06a49777db7c99b013b5a836ded054d0fef28e680acb49c50e72d75df19537e4b6d517d146d75b45fcf901aea3d0459078ff08d1d +binfiles arch=armhf-linux size=1 + bin/armhf-linux/xindex + +name xindex.i386-cygwin +category Package +revision 49312 +shortdesc i386-cygwin files of xindex +containersize 340 +containerchecksum f40aec88e1a8c45f42ff2e2e1f637f7bdd831c7f8573a928970b22b50bf3c3bebfa7b11b28e242b6aa1fd8054d89cedd5fdffbdde4ebe95fdfbcfd48d113a62e +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/xindex + +name xindex.i386-freebsd +category Package +revision 49312 +shortdesc i386-freebsd files of xindex +containersize 344 +containerchecksum ddca50809e86734476e9b1518a8064ad3889a2c50c0fc922df997fc9390678bb07a29c5ad26f108bd327c065fddfbb38f480d1997d1baa511cb48b300fecd6b1 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/xindex + +name xindex.i386-linux +category Package +revision 49312 +shortdesc i386-linux files of xindex +containersize 340 +containerchecksum 3d6c8b22749bd2a27c8ab4d5a9f8680f46181e90aa6befebfadc5d30bcc3691c46636bc8d283cd03abd6471ef710b7a854f85ae6d0cfc3f713cfcc79f9a89b47 +binfiles arch=i386-linux size=1 + bin/i386-linux/xindex + +name xindex.i386-netbsd +category Package +revision 49312 +shortdesc i386-netbsd files of xindex +containersize 340 +containerchecksum 87a3deb1e77589d14c99fd598e15168113342fd3a8078c12ff9feef21b2b39828c949f71b8b47de84c33188faaf916f1561cadc467652fee39cf0fccd37f5acc +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/xindex + +name xindex.i386-solaris +category Package +revision 49312 +shortdesc i386-solaris files of xindex +containersize 340 +containerchecksum f113f21258178db978b1fa7e3c806b9d9bf8509a08c4d0fae342c9ab66e0e1522c31b40a64a695537691255f22c026f041969f6d67ab4c597b846b2f297c8bfb +binfiles arch=i386-solaris size=1 + bin/i386-solaris/xindex + +name xindex.win32 +category Package +revision 49312 +shortdesc win32 files of xindex +containersize 680 +containerchecksum 38898dc97d7f7d57c31cda3a074065b87f4d68483ac1afee996caa24fb8d88650eb5ecf36bf432a73faabac665ed75bcbc8708bda4bcc36b688614d8459a230a +binfiles arch=win32 size=1 + bin/win32/xindex.exe + +name xindex.x86_64-cygwin +category Package +revision 49312 +shortdesc x86_64-cygwin files of xindex +containersize 340 +containerchecksum 7ff6be0b4ba73f08382099f6ae37152e2a077a6efcd9e6574f41b189701b10682ae76f0bd43f213ca9c29e17445a69077483326ece7c12445d10f3882d2044cf +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/xindex + +name xindex.x86_64-darwin +category Package +revision 49312 +shortdesc x86_64-darwin files of xindex +containersize 340 +containerchecksum 27b22b2e71279685272bad24d0666f80ee5836efe627188b6dedae637a9ad51361a27b3907871fba0aa7618ba6f0f33226550785f6c38f44f62032294fd3a2c4 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/xindex + +name xindex.x86_64-darwinlegacy +category Package +revision 49312 +shortdesc x86_64-darwinlegacy files of xindex +containersize 348 +containerchecksum 070f493dfdfb89f10a0a36d294a552cb05931a20a9b0fb64b9f99360f9aed144b53ccdddb0db78581d60e1e277ef0e9d999b26a3c55d222b58bbaf01901bb5f9 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/xindex + +name xindex.x86_64-linux +category Package +revision 49312 +shortdesc x86_64-linux files of xindex +containersize 344 +containerchecksum bac65355a8c650bb5c99215c21370e40825b34b8646bedd8f641670c728e766f69a1f871d1b9d6302bf6de6217b058b02424b153727d374ef07732324fbf8258 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/xindex + +name xindex.x86_64-linuxmusl +category Package +revision 49312 +shortdesc x86_64-linuxmusl files of xindex +containersize 348 +containerchecksum d0c7368b5a136d4e2cffac3ba45ba1bf3852066744c868dd39acd376b52b7cbb5eabd14a1b1f43bb806adf199f51fea29e770720e63a8f043e231672464013d0 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/xindex + +name xindex.x86_64-solaris +category Package +revision 49312 +shortdesc x86_64-solaris files of xindex +containersize 340 +containerchecksum d720afb37a8e48f58be2d88e6469b2464a102382ae64bf458d9bbf6f385daeab98ca708b9ab13daa23e3efc7c5b2ecfcc31cdf36818ab52b93e15137cd3cfbaa +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/xindex + +name xindy +category TLCore +revision 50203 +shortdesc A general-purpose index processor +longdesc Xindy was developed after an impasse had been encountered in +longdesc the attempt to complete internationalisation of makeindex. +longdesc Xindy can be used to process indexes for documents marked up +longdesc using (La)TeX, Nroff family and SGML-based languages. Xindy is +longdesc highly configurable, both in markup terms and in terms of the +longdesc collating order of the text being processed. +depend xindy.ARCH +containersize 141192 +containerchecksum b9127f03d8917543f0b1caaa24344aef0356818d7414e390ad45d5de3420271a81509ded3636c3475b577d6781be6e24c94f3d444f6190bed9039dd720274787 +doccontainersize 406620 +doccontainerchecksum 9e6c10388a7a707695e2965c3e3b851f939a68997cf880560a4a05ca3a167febeee9f1a7803cff1927bf7aecf0d6baac65bc4827c367f9c2d086d17d5947d64c +docfiles size=172 + texmf-dist/doc/man/man1/tex2xindy.1 + texmf-dist/doc/man/man1/tex2xindy.man1.pdf + texmf-dist/doc/man/man1/texindy.1 + texmf-dist/doc/man/man1/texindy.man1.pdf + texmf-dist/doc/man/man1/xindy.1 + texmf-dist/doc/man/man1/xindy.man1.pdf + texmf-dist/doc/xindy/README + texmf-dist/doc/xindy/alphabets-doc.pdf + texmf-dist/doc/xindy/dataflow.gif + texmf-dist/doc/xindy/faq-1.html + texmf-dist/doc/xindy/faq-2.html + texmf-dist/doc/xindy/faq-3.html + texmf-dist/doc/xindy/faq-4.html + texmf-dist/doc/xindy/faq.html details="Xindy FAQ, or xindy by topic" + texmf-dist/doc/xindy/index.gif + texmf-dist/doc/xindy/makeindex4.pdf + texmf-dist/doc/xindy/manual-1.html + texmf-dist/doc/xindy/manual-2.html + texmf-dist/doc/xindy/manual-3.html + texmf-dist/doc/xindy/manual-4.html + texmf-dist/doc/xindy/manual-5.html + texmf-dist/doc/xindy/manual-6.html + texmf-dist/doc/xindy/manual-7.html + texmf-dist/doc/xindy/manual.html details="Xindy reference manual" + texmf-dist/doc/xindy/mappings.gif + texmf-dist/doc/xindy/next.gif + texmf-dist/doc/xindy/prev.gif + texmf-dist/doc/xindy/style-tutorial-1.html + texmf-dist/doc/xindy/style-tutorial-2.html + texmf-dist/doc/xindy/style-tutorial-3.html + texmf-dist/doc/xindy/style-tutorial-4.html + texmf-dist/doc/xindy/style-tutorial.html + texmf-dist/doc/xindy/style-tutorial/ex1.raw + texmf-dist/doc/xindy/style-tutorial/ex1.tex + texmf-dist/doc/xindy/style-tutorial/ex2.raw + texmf-dist/doc/xindy/style-tutorial/ex2.tex + texmf-dist/doc/xindy/style-tutorial/index.tex + texmf-dist/doc/xindy/style-tutorial/style1.xdy + texmf-dist/doc/xindy/style-tutorial/style2.xdy + texmf-dist/doc/xindy/tex2xindy.pdf + texmf-dist/doc/xindy/texindy.pdf + texmf-dist/doc/xindy/toc.gif + texmf-dist/doc/xindy/xindy.pdf +runfiles size=914 + texmf-dist/scripts/xindy/texindy.pl + texmf-dist/scripts/xindy/xindy.pl + texmf-dist/xindy/VERSION + texmf-dist/xindy/modules/base/book-order.xdy + texmf-dist/xindy/modules/base/ff-ranges-only.xdy + texmf-dist/xindy/modules/base/ff-ranges.xdy + texmf-dist/xindy/modules/base/german-sty.xdy + texmf-dist/xindy/modules/base/ignore-hyphen.xdy + texmf-dist/xindy/modules/base/ignore-punctuation.xdy + texmf-dist/xindy/modules/base/keep-blanks.xdy + texmf-dist/xindy/modules/base/latex-loc-fmts.xdy + texmf-dist/xindy/modules/base/latex.xdy + texmf-dist/xindy/modules/base/latin-lettergroups.xdy + texmf-dist/xindy/modules/base/letter-order.xdy + texmf-dist/xindy/modules/base/makeindex.xdy + texmf-dist/xindy/modules/base/numeric-sort.xdy + texmf-dist/xindy/modules/base/page-ranges.xdy + texmf-dist/xindy/modules/base/tex.xdy + texmf-dist/xindy/modules/base/texindy.xdy + texmf-dist/xindy/modules/base/word-order.xdy + texmf-dist/xindy/modules/class/pagenums.xdy + texmf-dist/xindy/modules/lang/albanian/latin1-lang.xdy + texmf-dist/xindy/modules/lang/albanian/latin1-test.xdy + texmf-dist/xindy/modules/lang/albanian/latin1.xdy + texmf-dist/xindy/modules/lang/albanian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/albanian/utf8-test.xdy + texmf-dist/xindy/modules/lang/albanian/utf8.xdy + texmf-dist/xindy/modules/lang/belarusian/cp1251-lang.xdy + texmf-dist/xindy/modules/lang/belarusian/cp1251-test.xdy + texmf-dist/xindy/modules/lang/belarusian/cp1251.xdy + texmf-dist/xindy/modules/lang/belarusian/iso88595-lang.xdy + texmf-dist/xindy/modules/lang/belarusian/iso88595-test.xdy + texmf-dist/xindy/modules/lang/belarusian/iso88595.xdy + texmf-dist/xindy/modules/lang/belarusian/isoir111-lang.xdy + texmf-dist/xindy/modules/lang/belarusian/isoir111-test.xdy + texmf-dist/xindy/modules/lang/belarusian/isoir111.xdy + texmf-dist/xindy/modules/lang/belarusian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/belarusian/utf8-test.xdy + texmf-dist/xindy/modules/lang/belarusian/utf8.xdy + texmf-dist/xindy/modules/lang/bulgarian/cp1251-lang.xdy + texmf-dist/xindy/modules/lang/bulgarian/cp1251-test.xdy + texmf-dist/xindy/modules/lang/bulgarian/cp1251.xdy + texmf-dist/xindy/modules/lang/bulgarian/iso88595-lang.xdy + texmf-dist/xindy/modules/lang/bulgarian/iso88595-test.xdy + texmf-dist/xindy/modules/lang/bulgarian/iso88595.xdy + texmf-dist/xindy/modules/lang/bulgarian/koi8-r-lang.xdy + texmf-dist/xindy/modules/lang/bulgarian/koi8-r-test.xdy + texmf-dist/xindy/modules/lang/bulgarian/koi8-r.xdy + texmf-dist/xindy/modules/lang/bulgarian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/bulgarian/utf8-test.xdy + texmf-dist/xindy/modules/lang/bulgarian/utf8.xdy + texmf-dist/xindy/modules/lang/croatian/cp1250-lang.xdy + texmf-dist/xindy/modules/lang/croatian/cp1250-test.xdy + texmf-dist/xindy/modules/lang/croatian/cp1250.xdy + texmf-dist/xindy/modules/lang/croatian/latin2-lang.xdy + texmf-dist/xindy/modules/lang/croatian/latin2-test.xdy + texmf-dist/xindy/modules/lang/croatian/latin2.xdy + texmf-dist/xindy/modules/lang/croatian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/croatian/utf8-test.xdy + texmf-dist/xindy/modules/lang/croatian/utf8.xdy + texmf-dist/xindy/modules/lang/czech/cp1250-lang.xdy + texmf-dist/xindy/modules/lang/czech/cp1250-test.xdy + texmf-dist/xindy/modules/lang/czech/cp1250.xdy + texmf-dist/xindy/modules/lang/czech/latin2-lang.xdy + texmf-dist/xindy/modules/lang/czech/latin2-test.xdy + texmf-dist/xindy/modules/lang/czech/latin2.xdy + texmf-dist/xindy/modules/lang/czech/utf8-lang.xdy + texmf-dist/xindy/modules/lang/czech/utf8-test.xdy + texmf-dist/xindy/modules/lang/czech/utf8.xdy + texmf-dist/xindy/modules/lang/danish/cp1252-lang.xdy + texmf-dist/xindy/modules/lang/danish/cp1252-test.xdy + texmf-dist/xindy/modules/lang/danish/cp1252.xdy + texmf-dist/xindy/modules/lang/danish/latin9-lang.xdy + texmf-dist/xindy/modules/lang/danish/latin9-test.xdy + texmf-dist/xindy/modules/lang/danish/latin9.xdy + texmf-dist/xindy/modules/lang/danish/utf8-lang.xdy + texmf-dist/xindy/modules/lang/danish/utf8-test.xdy + texmf-dist/xindy/modules/lang/danish/utf8.xdy + texmf-dist/xindy/modules/lang/dutch/ij-as-ij-latin1-lang.xdy + texmf-dist/xindy/modules/lang/dutch/ij-as-ij-latin1-test.xdy + texmf-dist/xindy/modules/lang/dutch/ij-as-ij-latin1.xdy + texmf-dist/xindy/modules/lang/dutch/ij-as-ij-utf8-lang.xdy + texmf-dist/xindy/modules/lang/dutch/ij-as-ij-utf8-test.xdy + texmf-dist/xindy/modules/lang/dutch/ij-as-ij-utf8.xdy + texmf-dist/xindy/modules/lang/dutch/ij-as-y-utf8-lang.xdy + texmf-dist/xindy/modules/lang/dutch/ij-as-y-utf8-test.xdy + texmf-dist/xindy/modules/lang/dutch/ij-as-y-utf8.xdy + texmf-dist/xindy/modules/lang/english/cp1252-lang.xdy + texmf-dist/xindy/modules/lang/english/cp1252-test.xdy + texmf-dist/xindy/modules/lang/english/cp1252.xdy + texmf-dist/xindy/modules/lang/english/latin9-lang.xdy + texmf-dist/xindy/modules/lang/english/latin9-test.xdy + texmf-dist/xindy/modules/lang/english/latin9.xdy + texmf-dist/xindy/modules/lang/english/utf8-lang.xdy + texmf-dist/xindy/modules/lang/english/utf8-test.xdy + texmf-dist/xindy/modules/lang/english/utf8.xdy + texmf-dist/xindy/modules/lang/esperanto/latin3-lang.xdy + texmf-dist/xindy/modules/lang/esperanto/latin3-test.xdy + texmf-dist/xindy/modules/lang/esperanto/latin3.xdy + texmf-dist/xindy/modules/lang/esperanto/utf8-lang.xdy + texmf-dist/xindy/modules/lang/esperanto/utf8-test.xdy + texmf-dist/xindy/modules/lang/esperanto/utf8.xdy + texmf-dist/xindy/modules/lang/estonian/cp1252-lang.xdy + texmf-dist/xindy/modules/lang/estonian/cp1252-test.xdy + texmf-dist/xindy/modules/lang/estonian/cp1252.xdy + texmf-dist/xindy/modules/lang/estonian/latin9-lang.xdy + texmf-dist/xindy/modules/lang/estonian/latin9-test.xdy + texmf-dist/xindy/modules/lang/estonian/latin9.xdy + texmf-dist/xindy/modules/lang/estonian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/estonian/utf8-test.xdy + texmf-dist/xindy/modules/lang/estonian/utf8.xdy + texmf-dist/xindy/modules/lang/finnish/cp1252-lang.xdy + texmf-dist/xindy/modules/lang/finnish/cp1252-test.xdy + texmf-dist/xindy/modules/lang/finnish/cp1252.xdy + texmf-dist/xindy/modules/lang/finnish/latin9-lang.xdy + texmf-dist/xindy/modules/lang/finnish/latin9-test.xdy + texmf-dist/xindy/modules/lang/finnish/latin9.xdy + texmf-dist/xindy/modules/lang/finnish/utf8-lang.xdy + texmf-dist/xindy/modules/lang/finnish/utf8-test.xdy + texmf-dist/xindy/modules/lang/finnish/utf8.xdy + texmf-dist/xindy/modules/lang/french/cp1252-lang.xdy + texmf-dist/xindy/modules/lang/french/cp1252-test.xdy + texmf-dist/xindy/modules/lang/french/cp1252.xdy + texmf-dist/xindy/modules/lang/french/latin9-lang.xdy + texmf-dist/xindy/modules/lang/french/latin9-test.xdy + texmf-dist/xindy/modules/lang/french/latin9.xdy + texmf-dist/xindy/modules/lang/french/utf8-lang.xdy + texmf-dist/xindy/modules/lang/french/utf8-test.xdy + texmf-dist/xindy/modules/lang/french/utf8.xdy + texmf-dist/xindy/modules/lang/general/cp1252-lang.xdy + texmf-dist/xindy/modules/lang/general/cp1252-test.xdy + texmf-dist/xindy/modules/lang/general/cp1252.xdy + texmf-dist/xindy/modules/lang/general/cp850-lang.xdy + texmf-dist/xindy/modules/lang/general/cp850-test.xdy + texmf-dist/xindy/modules/lang/general/cp850.xdy + texmf-dist/xindy/modules/lang/general/latin9-lang.xdy + texmf-dist/xindy/modules/lang/general/latin9-test.xdy + texmf-dist/xindy/modules/lang/general/latin9.xdy + texmf-dist/xindy/modules/lang/general/utf8-lang.xdy + texmf-dist/xindy/modules/lang/general/utf8-test.xdy + texmf-dist/xindy/modules/lang/general/utf8.xdy + texmf-dist/xindy/modules/lang/georgian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/georgian/utf8-test.xdy + texmf-dist/xindy/modules/lang/georgian/utf8.xdy + texmf-dist/xindy/modules/lang/german/braille-utf8-lang.xdy + texmf-dist/xindy/modules/lang/german/braille-utf8-test.xdy + texmf-dist/xindy/modules/lang/german/braille-utf8.xdy + texmf-dist/xindy/modules/lang/german/din5007-latin1-lang.xdy + texmf-dist/xindy/modules/lang/german/din5007-latin1-test.xdy + texmf-dist/xindy/modules/lang/german/din5007-latin1.xdy + texmf-dist/xindy/modules/lang/german/din5007-utf8-lang.xdy + texmf-dist/xindy/modules/lang/german/din5007-utf8-test.xdy + texmf-dist/xindy/modules/lang/german/din5007-utf8.xdy + texmf-dist/xindy/modules/lang/german/din5007.xdy + texmf-dist/xindy/modules/lang/german/duden-latin1-lang.xdy + texmf-dist/xindy/modules/lang/german/duden-latin1-test.xdy + texmf-dist/xindy/modules/lang/german/duden-latin1.xdy + texmf-dist/xindy/modules/lang/german/duden-utf8-lang.xdy + texmf-dist/xindy/modules/lang/german/duden-utf8-test.xdy + texmf-dist/xindy/modules/lang/german/duden-utf8.xdy + texmf-dist/xindy/modules/lang/german/duden.xdy + texmf-dist/xindy/modules/lang/german/tex.xdy + texmf-dist/xindy/modules/lang/greek/iso88597-lang.xdy + texmf-dist/xindy/modules/lang/greek/iso88597-test.xdy + texmf-dist/xindy/modules/lang/greek/iso88597.xdy + texmf-dist/xindy/modules/lang/greek/polytonic-utf8-lang.xdy + texmf-dist/xindy/modules/lang/greek/polytonic-utf8-test.xdy + texmf-dist/xindy/modules/lang/greek/polytonic-utf8.xdy + texmf-dist/xindy/modules/lang/greek/translit-latin4-lang.xdy + texmf-dist/xindy/modules/lang/greek/translit-latin4-test.xdy + texmf-dist/xindy/modules/lang/greek/translit-latin4.xdy + texmf-dist/xindy/modules/lang/greek/translit-utf8-lang.xdy + texmf-dist/xindy/modules/lang/greek/translit-utf8-test.xdy + texmf-dist/xindy/modules/lang/greek/translit-utf8.xdy + texmf-dist/xindy/modules/lang/greek/utf8-lang.xdy + texmf-dist/xindy/modules/lang/greek/utf8-test.xdy + texmf-dist/xindy/modules/lang/greek/utf8.xdy + texmf-dist/xindy/modules/lang/gypsy/northrussian-utf8-lang.xdy + texmf-dist/xindy/modules/lang/gypsy/northrussian-utf8-test.xdy + texmf-dist/xindy/modules/lang/gypsy/northrussian-utf8.xdy + texmf-dist/xindy/modules/lang/hausa/utf8-lang.xdy + texmf-dist/xindy/modules/lang/hausa/utf8-test.xdy + texmf-dist/xindy/modules/lang/hausa/utf8.xdy + texmf-dist/xindy/modules/lang/hebrew/iso88598-lang.xdy + texmf-dist/xindy/modules/lang/hebrew/iso88598-test.xdy + texmf-dist/xindy/modules/lang/hebrew/iso88598.xdy + texmf-dist/xindy/modules/lang/hebrew/utf8-lang.xdy + texmf-dist/xindy/modules/lang/hebrew/utf8-test.xdy + texmf-dist/xindy/modules/lang/hebrew/utf8.xdy + texmf-dist/xindy/modules/lang/hungarian/cp1250-lang.xdy + texmf-dist/xindy/modules/lang/hungarian/cp1250-test.xdy + texmf-dist/xindy/modules/lang/hungarian/cp1250.xdy + texmf-dist/xindy/modules/lang/hungarian/latin2-lang.xdy + texmf-dist/xindy/modules/lang/hungarian/latin2-test.xdy + texmf-dist/xindy/modules/lang/hungarian/latin2.xdy + texmf-dist/xindy/modules/lang/hungarian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/hungarian/utf8-test.xdy + texmf-dist/xindy/modules/lang/hungarian/utf8.xdy + texmf-dist/xindy/modules/lang/icelandic/cp1252-lang.xdy + texmf-dist/xindy/modules/lang/icelandic/cp1252-test.xdy + texmf-dist/xindy/modules/lang/icelandic/cp1252.xdy + texmf-dist/xindy/modules/lang/icelandic/latin9-lang.xdy + texmf-dist/xindy/modules/lang/icelandic/latin9-test.xdy + texmf-dist/xindy/modules/lang/icelandic/latin9.xdy + texmf-dist/xindy/modules/lang/icelandic/utf8-lang.xdy + texmf-dist/xindy/modules/lang/icelandic/utf8-test.xdy + texmf-dist/xindy/modules/lang/icelandic/utf8.xdy + texmf-dist/xindy/modules/lang/italian/latin1-lang.xdy + texmf-dist/xindy/modules/lang/italian/latin1-test.xdy + texmf-dist/xindy/modules/lang/italian/latin1.xdy + texmf-dist/xindy/modules/lang/italian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/italian/utf8-test.xdy + texmf-dist/xindy/modules/lang/italian/utf8.xdy + texmf-dist/xindy/modules/lang/klingon/utf8-lang.xdy + texmf-dist/xindy/modules/lang/klingon/utf8-test.xdy + texmf-dist/xindy/modules/lang/klingon/utf8.xdy + texmf-dist/xindy/modules/lang/korean/utf8-lang.xdy + texmf-dist/xindy/modules/lang/korean/utf8.xdy + texmf-dist/xindy/modules/lang/kurdish/bedirxan-latin5-lang.xdy + texmf-dist/xindy/modules/lang/kurdish/bedirxan-latin5-test.xdy + texmf-dist/xindy/modules/lang/kurdish/bedirxan-latin5.xdy + texmf-dist/xindy/modules/lang/kurdish/bedirxan-utf8-lang.xdy + texmf-dist/xindy/modules/lang/kurdish/bedirxan-utf8-test.xdy + texmf-dist/xindy/modules/lang/kurdish/bedirxan-utf8.xdy + texmf-dist/xindy/modules/lang/kurdish/turkish-i-latin5-lang.xdy + texmf-dist/xindy/modules/lang/kurdish/turkish-i-latin5-test.xdy + texmf-dist/xindy/modules/lang/kurdish/turkish-i-latin5.xdy + texmf-dist/xindy/modules/lang/kurdish/turkish-i-utf8-lang.xdy + texmf-dist/xindy/modules/lang/kurdish/turkish-i-utf8-test.xdy + texmf-dist/xindy/modules/lang/kurdish/turkish-i-utf8.xdy + texmf-dist/xindy/modules/lang/latin/caseisrt.xdy + texmf-dist/xindy/modules/lang/latin/letgroup.xdy + texmf-dist/xindy/modules/lang/latin/utf8-lang.xdy + texmf-dist/xindy/modules/lang/latin/utf8-test.xdy + texmf-dist/xindy/modules/lang/latin/utf8.xdy + texmf-dist/xindy/modules/lang/latvian/latin4-lang.xdy + texmf-dist/xindy/modules/lang/latvian/latin4-test.xdy + texmf-dist/xindy/modules/lang/latvian/latin4.xdy + texmf-dist/xindy/modules/lang/latvian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/latvian/utf8-test.xdy + texmf-dist/xindy/modules/lang/latvian/utf8.xdy + texmf-dist/xindy/modules/lang/lithuanian/latin4-lang.xdy + texmf-dist/xindy/modules/lang/lithuanian/latin4-test.xdy + texmf-dist/xindy/modules/lang/lithuanian/latin4.xdy + texmf-dist/xindy/modules/lang/lithuanian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/lithuanian/utf8-test.xdy + texmf-dist/xindy/modules/lang/lithuanian/utf8.xdy + texmf-dist/xindy/modules/lang/lower-sorbian/cp1250-lang.xdy + texmf-dist/xindy/modules/lang/lower-sorbian/cp1250-test.xdy + texmf-dist/xindy/modules/lang/lower-sorbian/cp1250.xdy + texmf-dist/xindy/modules/lang/lower-sorbian/latin2-lang.xdy + texmf-dist/xindy/modules/lang/lower-sorbian/latin2-test.xdy + texmf-dist/xindy/modules/lang/lower-sorbian/latin2.xdy + texmf-dist/xindy/modules/lang/lower-sorbian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/lower-sorbian/utf8-test.xdy + texmf-dist/xindy/modules/lang/lower-sorbian/utf8.xdy + texmf-dist/xindy/modules/lang/macedonian/cp1251-lang.xdy + texmf-dist/xindy/modules/lang/macedonian/cp1251-test.xdy + texmf-dist/xindy/modules/lang/macedonian/cp1251.xdy + texmf-dist/xindy/modules/lang/macedonian/iso88595-lang.xdy + texmf-dist/xindy/modules/lang/macedonian/iso88595-test.xdy + texmf-dist/xindy/modules/lang/macedonian/iso88595.xdy + texmf-dist/xindy/modules/lang/macedonian/isoir111-lang.xdy + texmf-dist/xindy/modules/lang/macedonian/isoir111-test.xdy + texmf-dist/xindy/modules/lang/macedonian/isoir111.xdy + texmf-dist/xindy/modules/lang/macedonian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/macedonian/utf8-test.xdy + texmf-dist/xindy/modules/lang/macedonian/utf8.xdy + texmf-dist/xindy/modules/lang/mongolian/cyrillic-utf8-lang.xdy + texmf-dist/xindy/modules/lang/mongolian/cyrillic-utf8-test.xdy + texmf-dist/xindy/modules/lang/mongolian/cyrillic-utf8.xdy + texmf-dist/xindy/modules/lang/norwegian/latin1-lang.xdy + texmf-dist/xindy/modules/lang/norwegian/latin1-test.xdy + texmf-dist/xindy/modules/lang/norwegian/latin1.xdy + texmf-dist/xindy/modules/lang/norwegian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/norwegian/utf8-test.xdy + texmf-dist/xindy/modules/lang/norwegian/utf8.xdy + texmf-dist/xindy/modules/lang/persian/README + texmf-dist/xindy/modules/lang/persian/variant1-utf8-lang.xdy + texmf-dist/xindy/modules/lang/persian/variant1-utf8-test.xdy + texmf-dist/xindy/modules/lang/persian/variant1-utf8.pl.in + texmf-dist/xindy/modules/lang/persian/variant1-utf8.xdy + texmf-dist/xindy/modules/lang/persian/variant2-utf8-lang.xdy + texmf-dist/xindy/modules/lang/persian/variant2-utf8-test.xdy + texmf-dist/xindy/modules/lang/persian/variant2-utf8.pl.in + texmf-dist/xindy/modules/lang/persian/variant2-utf8.xdy + texmf-dist/xindy/modules/lang/persian/variant3-utf8-lang.xdy + texmf-dist/xindy/modules/lang/persian/variant3-utf8-test.xdy + texmf-dist/xindy/modules/lang/persian/variant3-utf8.pl.in + texmf-dist/xindy/modules/lang/persian/variant3-utf8.xdy + texmf-dist/xindy/modules/lang/polish/cp1250-lang.xdy + texmf-dist/xindy/modules/lang/polish/cp1250-test.xdy + texmf-dist/xindy/modules/lang/polish/cp1250.xdy + texmf-dist/xindy/modules/lang/polish/latin2-lang.xdy + texmf-dist/xindy/modules/lang/polish/latin2-test.xdy + texmf-dist/xindy/modules/lang/polish/latin2.xdy + texmf-dist/xindy/modules/lang/polish/utf8-lang.xdy + texmf-dist/xindy/modules/lang/polish/utf8-test.xdy + texmf-dist/xindy/modules/lang/polish/utf8.xdy + texmf-dist/xindy/modules/lang/portuguese/latin1-lang.xdy + texmf-dist/xindy/modules/lang/portuguese/latin1-test.xdy + texmf-dist/xindy/modules/lang/portuguese/latin1.xdy + texmf-dist/xindy/modules/lang/portuguese/utf8-lang.xdy + texmf-dist/xindy/modules/lang/portuguese/utf8-test.xdy + texmf-dist/xindy/modules/lang/portuguese/utf8.xdy + texmf-dist/xindy/modules/lang/romanian/latin2-lang.xdy + texmf-dist/xindy/modules/lang/romanian/latin2-test.xdy + texmf-dist/xindy/modules/lang/romanian/latin2.xdy + texmf-dist/xindy/modules/lang/romanian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/romanian/utf8-test.xdy + texmf-dist/xindy/modules/lang/romanian/utf8.xdy + texmf-dist/xindy/modules/lang/russian/cp1251-lang.xdy + texmf-dist/xindy/modules/lang/russian/cp1251-test.xdy + texmf-dist/xindy/modules/lang/russian/cp1251.xdy + texmf-dist/xindy/modules/lang/russian/iso88595-lang.xdy + texmf-dist/xindy/modules/lang/russian/iso88595-test.xdy + texmf-dist/xindy/modules/lang/russian/iso88595.xdy + texmf-dist/xindy/modules/lang/russian/koi8-r-lang.xdy + texmf-dist/xindy/modules/lang/russian/koi8-r-test.xdy + texmf-dist/xindy/modules/lang/russian/koi8-r.xdy + texmf-dist/xindy/modules/lang/russian/translit-iso-utf8-lang.xdy + texmf-dist/xindy/modules/lang/russian/translit-iso-utf8-test.xdy + texmf-dist/xindy/modules/lang/russian/translit-iso-utf8.xdy + texmf-dist/xindy/modules/lang/russian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/russian/utf8-test.xdy + texmf-dist/xindy/modules/lang/russian/utf8.xdy + texmf-dist/xindy/modules/lang/serbian/cp1251-lang.xdy + texmf-dist/xindy/modules/lang/serbian/cp1251-test.xdy + texmf-dist/xindy/modules/lang/serbian/cp1251.xdy + texmf-dist/xindy/modules/lang/serbian/iso88595-lang.xdy + texmf-dist/xindy/modules/lang/serbian/iso88595-test.xdy + texmf-dist/xindy/modules/lang/serbian/iso88595.xdy + texmf-dist/xindy/modules/lang/serbian/isoir111-lang.xdy + texmf-dist/xindy/modules/lang/serbian/isoir111-test.xdy + texmf-dist/xindy/modules/lang/serbian/isoir111.xdy + texmf-dist/xindy/modules/lang/serbian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/serbian/utf8-test.xdy + texmf-dist/xindy/modules/lang/serbian/utf8.xdy + texmf-dist/xindy/modules/lang/slovak/large-cp1250-lang.xdy + texmf-dist/xindy/modules/lang/slovak/large-cp1250-test.xdy + texmf-dist/xindy/modules/lang/slovak/large-cp1250.xdy + texmf-dist/xindy/modules/lang/slovak/large-latin2-lang.xdy + texmf-dist/xindy/modules/lang/slovak/large-latin2-test.xdy + texmf-dist/xindy/modules/lang/slovak/large-latin2.xdy + texmf-dist/xindy/modules/lang/slovak/large-utf8-lang.xdy + texmf-dist/xindy/modules/lang/slovak/large-utf8-test.xdy + texmf-dist/xindy/modules/lang/slovak/large-utf8.xdy + texmf-dist/xindy/modules/lang/slovak/small-cp1250-lang.xdy + texmf-dist/xindy/modules/lang/slovak/small-cp1250-test.xdy + texmf-dist/xindy/modules/lang/slovak/small-cp1250.xdy + texmf-dist/xindy/modules/lang/slovak/small-latin2-lang.xdy + texmf-dist/xindy/modules/lang/slovak/small-latin2-test.xdy + texmf-dist/xindy/modules/lang/slovak/small-latin2.xdy + texmf-dist/xindy/modules/lang/slovak/small-utf8-lang.xdy + texmf-dist/xindy/modules/lang/slovak/small-utf8-test.xdy + texmf-dist/xindy/modules/lang/slovak/small-utf8.xdy + texmf-dist/xindy/modules/lang/slovenian/cp1250-lang.xdy + texmf-dist/xindy/modules/lang/slovenian/cp1250-test.xdy + texmf-dist/xindy/modules/lang/slovenian/cp1250.xdy + texmf-dist/xindy/modules/lang/slovenian/latin2-lang.xdy + texmf-dist/xindy/modules/lang/slovenian/latin2-test.xdy + texmf-dist/xindy/modules/lang/slovenian/latin2.xdy + texmf-dist/xindy/modules/lang/slovenian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/slovenian/utf8-test.xdy + texmf-dist/xindy/modules/lang/slovenian/utf8.xdy + texmf-dist/xindy/modules/lang/spanish/modern-latin1-lang.xdy + texmf-dist/xindy/modules/lang/spanish/modern-latin1-test.xdy + texmf-dist/xindy/modules/lang/spanish/modern-latin1.xdy + texmf-dist/xindy/modules/lang/spanish/modern-utf8-lang.xdy + texmf-dist/xindy/modules/lang/spanish/modern-utf8-test.xdy + texmf-dist/xindy/modules/lang/spanish/modern-utf8.xdy + texmf-dist/xindy/modules/lang/spanish/traditional-latin1-lang.xdy + texmf-dist/xindy/modules/lang/spanish/traditional-latin1-test.xdy + texmf-dist/xindy/modules/lang/spanish/traditional-latin1.xdy + texmf-dist/xindy/modules/lang/spanish/traditional-utf8-lang.xdy + texmf-dist/xindy/modules/lang/spanish/traditional-utf8-test.xdy + texmf-dist/xindy/modules/lang/spanish/traditional-utf8.xdy + texmf-dist/xindy/modules/lang/swedish/cp1252-lang.xdy + texmf-dist/xindy/modules/lang/swedish/cp1252-test.xdy + texmf-dist/xindy/modules/lang/swedish/cp1252.xdy + texmf-dist/xindy/modules/lang/swedish/latin9-lang.xdy + texmf-dist/xindy/modules/lang/swedish/latin9-test.xdy + texmf-dist/xindy/modules/lang/swedish/latin9.xdy + texmf-dist/xindy/modules/lang/swedish/utf8-lang.xdy + texmf-dist/xindy/modules/lang/swedish/utf8-test.xdy + texmf-dist/xindy/modules/lang/swedish/utf8.xdy + texmf-dist/xindy/modules/lang/turkish/latin3-lang.xdy + texmf-dist/xindy/modules/lang/turkish/latin3-test.xdy + texmf-dist/xindy/modules/lang/turkish/latin3.xdy + texmf-dist/xindy/modules/lang/turkish/latin5-lang.xdy + texmf-dist/xindy/modules/lang/turkish/latin5-test.xdy + texmf-dist/xindy/modules/lang/turkish/latin5.xdy + texmf-dist/xindy/modules/lang/turkish/utf8-lang.xdy + texmf-dist/xindy/modules/lang/turkish/utf8-test.xdy + texmf-dist/xindy/modules/lang/turkish/utf8.xdy + texmf-dist/xindy/modules/lang/ukrainian/cp1251-lang.xdy + texmf-dist/xindy/modules/lang/ukrainian/cp1251-test.xdy + texmf-dist/xindy/modules/lang/ukrainian/cp1251.xdy + texmf-dist/xindy/modules/lang/ukrainian/koi8-u-lang.xdy + texmf-dist/xindy/modules/lang/ukrainian/koi8-u-test.xdy + texmf-dist/xindy/modules/lang/ukrainian/koi8-u.xdy + texmf-dist/xindy/modules/lang/ukrainian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/ukrainian/utf8-test.xdy + texmf-dist/xindy/modules/lang/ukrainian/utf8.xdy + texmf-dist/xindy/modules/lang/upper-sorbian/cp1250-lang.xdy + texmf-dist/xindy/modules/lang/upper-sorbian/cp1250-test.xdy + texmf-dist/xindy/modules/lang/upper-sorbian/cp1250.xdy + texmf-dist/xindy/modules/lang/upper-sorbian/latin2-lang.xdy + texmf-dist/xindy/modules/lang/upper-sorbian/latin2-test.xdy + texmf-dist/xindy/modules/lang/upper-sorbian/latin2.xdy + texmf-dist/xindy/modules/lang/upper-sorbian/utf8-lang.xdy + texmf-dist/xindy/modules/lang/upper-sorbian/utf8-test.xdy + texmf-dist/xindy/modules/lang/upper-sorbian/utf8.xdy + texmf-dist/xindy/modules/lang/vietnamese/utf8-lang.xdy + texmf-dist/xindy/modules/lang/vietnamese/utf8-test.xdy + texmf-dist/xindy/modules/lang/vietnamese/utf8.xdy + texmf-dist/xindy/modules/ord/letorder.xdy + texmf-dist/xindy/modules/rules/isolatin1-exchange.xdy + texmf-dist/xindy/modules/rules/isolatin1-tolower.xdy + texmf-dist/xindy/modules/rules/latin-exchange.xdy + texmf-dist/xindy/modules/rules/latin-tolower.xdy + texmf-dist/xindy/modules/styles/basic.xdy + texmf-dist/xindy/modules/styles/makeidx.xdy + texmf-dist/xindy/modules/tex/inputenc/cp1250.xdy + texmf-dist/xindy/modules/tex/inputenc/cp1251.xdy + texmf-dist/xindy/modules/tex/inputenc/cp1252.xdy + texmf-dist/xindy/modules/tex/inputenc/cp437.xdy + texmf-dist/xindy/modules/tex/inputenc/cp850.xdy + texmf-dist/xindy/modules/tex/inputenc/cp855.xdy + texmf-dist/xindy/modules/tex/inputenc/cp866.xdy + texmf-dist/xindy/modules/tex/inputenc/iso88595.xdy + texmf-dist/xindy/modules/tex/inputenc/isoir111.xdy + texmf-dist/xindy/modules/tex/inputenc/koi8-r.xdy + texmf-dist/xindy/modules/tex/inputenc/koi8-u.xdy + texmf-dist/xindy/modules/tex/inputenc/latin.xdy + texmf-dist/xindy/modules/tex/inputenc/latin1.xdy + texmf-dist/xindy/modules/tex/inputenc/latin2.xdy + texmf-dist/xindy/modules/tex/inputenc/latin3.xdy + texmf-dist/xindy/modules/tex/inputenc/utf8.xdy +catalogue-contact-home http://www.xindy.org +catalogue-ctan /indexing/xindy/base +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license gpl +catalogue-topics index +catalogue-version 2.5.1 + +name xindy.aarch64-linux +category TLCore +revision 50150 +shortdesc aarch64-linux files of xindy +containersize 2234708 +containerchecksum 9ea22a9eceda1a511185d9c8a22adf6da7d940991bd88b3da1e6c59172da144ee4c0abca4d3930e8c8b4c9a3ace3dcd1b59bf2fcf5903741dbdc3c6110ce0148 +binfiles arch=aarch64-linux size=1295 + bin/aarch64-linux/tex2xindy + bin/aarch64-linux/texindy + bin/aarch64-linux/xindy + bin/aarch64-linux/xindy.mem + bin/aarch64-linux/xindy.run + +name xindy.amd64-freebsd +category TLCore +revision 47009 +shortdesc amd64-freebsd files of xindy +containersize 1761312 +containerchecksum b0bd38098a9c2b6c33f4a9c664a7b63454b97cfb49fd0bc0b8ed2ea0c32b05d3475490b9e6cb24f73b8b726290adfcd94eedae74d0f35441c845ef4b9188cdab +binfiles arch=amd64-freebsd size=950 + bin/amd64-freebsd/tex2xindy + bin/amd64-freebsd/texindy + bin/amd64-freebsd/xindy + bin/amd64-freebsd/xindy.mem + bin/amd64-freebsd/xindy.run + +name xindy.amd64-netbsd +category TLCore +revision 48698 +shortdesc amd64-netbsd files of xindy +containersize 1676228 +containerchecksum e52c0d93b777c8f37e8a894ba997178cc6c80edc336d66e6e30ab4b6a76f80b24ea0e13454ce3c1867c72ed79e06c97bdfc9cd4cfca5e61548fc11f2ea4aecb5 +binfiles arch=amd64-netbsd size=879 + bin/amd64-netbsd/tex2xindy + bin/amd64-netbsd/texindy + bin/amd64-netbsd/xindy + bin/amd64-netbsd/xindy.mem + bin/amd64-netbsd/xindy.run + +name xindy.armhf-linux +category TLCore +revision 50150 +shortdesc armhf-linux files of xindy +containersize 2297596 +containerchecksum 4697bf4c5ed00a982bbfd9eaf9db5a138e5a1968dc149fb59ac478b91df997ae99e99d36e37155d8777b67673ae8b1cef836fc0f8899156fd7cca049d03c63ff +binfiles arch=armhf-linux size=1069 + bin/armhf-linux/tex2xindy + bin/armhf-linux/texindy + bin/armhf-linux/xindy + bin/armhf-linux/xindy.mem + bin/armhf-linux/xindy.run + +name xindy.i386-cygwin +category TLCore +revision 50455 +shortdesc i386-cygwin files of xindy +containersize 1935004 +containerchecksum 5de6663fc467150dde28cae82a621823e57a5c46640392afec4ee799ff03751cf1eb438508c72df0afbb562c5b7f56445d1dab537fbce0f1b78ddfa1276ee6c6 +binfiles arch=i386-cygwin size=941 + bin/i386-cygwin/tex2xindy.exe + bin/i386-cygwin/texindy + bin/i386-cygwin/xindy + bin/i386-cygwin/xindy-lisp.exe + bin/i386-cygwin/xindy.mem + +name xindy.i386-freebsd +category TLCore +revision 47009 +shortdesc i386-freebsd files of xindy +containersize 1624248 +containerchecksum 743d6cdde60ebd384f2d7126b9101fba0316f5add5f76883e164ae73dff1888b3f7245e954cd7214d40b22050856e943ff16ee4864b82fc7dab976138f37b3c2 +binfiles arch=i386-freebsd size=819 + bin/i386-freebsd/tex2xindy + bin/i386-freebsd/texindy + bin/i386-freebsd/xindy + bin/i386-freebsd/xindy.mem + bin/i386-freebsd/xindy.run + +name xindy.i386-linux +category TLCore +revision 47242 +shortdesc i386-linux files of xindy +containersize 2113600 +containerchecksum e2a4f231e6a19443efc714eae3ac181c3c89ead5e399417f7f2ef9f23f4c0347a8f93369008ae1567472cc170ccefe21ef4f4196009832d742416f612a998a75 +binfiles arch=i386-linux size=1008 + bin/i386-linux/tex2xindy + bin/i386-linux/texindy + bin/i386-linux/xindy + bin/i386-linux/xindy.mem + bin/i386-linux/xindy.run + +name xindy.i386-netbsd +category TLCore +revision 50171 +shortdesc i386-netbsd files of xindy +containersize 1678736 +containerchecksum 11cbde4e0cedc3517efa861373497811c4ca7546c24b3f2d1acb12959a8e693856166f8e886e6aec1782a6cb1dd75fdc632b3527cb0d29e06af4bb29b36e5201 +binfiles arch=i386-netbsd size=815 + bin/i386-netbsd/tex2xindy + bin/i386-netbsd/texindy + bin/i386-netbsd/xindy + bin/i386-netbsd/xindy.mem + bin/i386-netbsd/xindy.run + +name xindy.win32 +category TLCore +revision 50155 +shortdesc win32 files of xindy +containersize 2036104 +containerchecksum 5d70e696845f51734f80c3d49aa9f6aeb395e500329c99524e93e8c9fcda7d1c3fe6d594a3ceb3a6700bc57885e6ce797efa7b16a755f4ec93c5d6d5dda0d639 +binfiles arch=win32 size=2022 + bin/win32/tex2xindy.exe + bin/win32/texindy.exe + bin/win32/xindy-lisp.exe + bin/win32/xindy.exe + bin/win32/xindy.mem + +name xindy.x86_64-cygwin +category TLCore +revision 50889 +shortdesc x86_64-cygwin files of xindy +containersize 1971004 +containerchecksum 11c134c722297d11ff3f06b791749fa594c392971bb85e293524158c4a65f4eb9e5a9319ef997003cb0f773e643352d10fe43af3848c9c1f8e71a28330916340 +binfiles arch=x86_64-cygwin size=948 + bin/x86_64-cygwin/tex2xindy.exe + bin/x86_64-cygwin/texindy + bin/x86_64-cygwin/xindy + bin/x86_64-cygwin/xindy-lisp.exe + bin/x86_64-cygwin/xindy.mem + +name xindy.x86_64-darwin +category TLCore +revision 50150 +shortdesc x86_64-darwin files of xindy +containersize 1978380 +containerchecksum 075237425212d3556b3d542e7a73e98e9148386d1229473394615b5f697ae252f51ea39b08c7bfaa57e9b08f6544dbcfcdd3210920b9da02a31a7f844c45c5ff +binfiles arch=x86_64-darwin size=970 + bin/x86_64-darwin/tex2xindy + bin/x86_64-darwin/texindy + bin/x86_64-darwin/xindy + bin/x86_64-darwin/xindy.mem + bin/x86_64-darwin/xindy.run + +name xindy.x86_64-darwinlegacy +category TLCore +revision 43952 +shortdesc x86_64-darwinlegacy files of xindy +containersize 1845252 +containerchecksum 1f7e070d1c32a815a906e2e0f4c267d8ae49f0b1a2511a0c3b41b4ec881468c76c16bb275b490d01db20bf874d4735e5176be53cbcbb02a31f442f2a8da9d845 +binfiles arch=x86_64-darwinlegacy size=932 + bin/x86_64-darwinlegacy/tex2xindy + bin/x86_64-darwinlegacy/texindy + bin/x86_64-darwinlegacy/xindy + bin/x86_64-darwinlegacy/xindy.mem + bin/x86_64-darwinlegacy/xindy.run + +name xindy.x86_64-linux +category TLCore +revision 47145 +shortdesc x86_64-linux files of xindy +containersize 2227528 +containerchecksum 32489f8ceac21328f6785a307b8ee25d1a94b7dbc2e2e2285dfd9581f747e2f15cbfd39ebf004627caa1285003be4e63120e45a7dc353c91d43847a33ca36e38 +binfiles arch=x86_64-linux size=1087 + bin/x86_64-linux/tex2xindy + bin/x86_64-linux/texindy + bin/x86_64-linux/xindy + bin/x86_64-linux/xindy.mem + bin/x86_64-linux/xindy.run name xint category Package -revision 38368 +revision 50844 shortdesc Expandable operations on long numbers relocated 1 -longdesc The bundle provides nine packages: xintcore, which provides -longdesc expandable TeX macros that implement the basic arithmetic -longdesc operations of addition, subtraction, multiplication and -longdesc division, as applied to arbitrarily long numbers represented as -longdesc chains of digits with an optional minus sign; xint, which -longdesc extends xintcore with more big integer operations; xinttools, -longdesc which provides utilities of independent interest such as -longdesc expandable and non-expandable loops; xintfrac, which computes -longdesc fractions using xint; xintexpr, which extends xintfrac with an -longdesc expandable parser of comma separated expressions involving -longdesc integers, fractions, boolean, and algebraic operators, and -longdesc declared as well as dummy variables; xintbinhex provides -longdesc conversions to and from binary and hexadecimal bases; -longdesc xintseries, which provides basic functionality for computing -longdesc partial sums using xint; xintgcd, which provides -longdesc implementations of the Euclidean algorithm, and of its -longdesc typesetting; xintcfrac, which deals with the computation of -longdesc continued fractions. All of the packages' computations are done -longdesc in a way that they can operate in an expanding environment. The -longdesc packages may be used either with Plain TeX or LaTeX. -runfiles size=104 +longdesc The xint bundle main modules are: xinttools utilities of +longdesc independent interest such as expandable and non-expandable +longdesc loops, xintcore expandable macros implementing addition, +longdesc subtraction, multiplication, division, and powers for +longdesc arbitrarily long integers, xint extension of xintcore, xintfrac +longdesc extends the scope of xint to decimal numbers, to numbers using +longdesc scientific notation and also to (exact) fractions, xintexpr +longdesc provides expandable parsers of numeric expressions using the +longdesc standard infix notations, parentheses, built-in functions, user +longdesc definable functions and variables (and more ...) which do +longdesc either exact evaluations (also with fractions) or floating +longdesc point evaluations under a user chosen precision. Further +longdesc modules of the bundle are: xintkernel (support macros for all +longdesc the bundle constituents), xintbinhex (conversion to and from +longdesc hexadecimal and binary bases), xintgcd (provides gcd() and +longdesc lcm() functions to xintexpr), xintseries (evaluates numerically +longdesc partial sums of series and power series with fractional +longdesc coefficients), and xintcfrac (dedicated to the computation and +longdesc display of continued fractions). All computations are +longdesc compatible with expansion-only context. The packages may be +longdesc used with Plain TeX, LaTeX, or (a priori) any other macro +longdesc format built upon TeX. +containersize 66996 +containerchecksum 045fa928c40e4b8d6eec332eeb6bd160c398d258260daa5d8e0b289d124aa45156a47656885b4dee519ea5bbf7db1a951ceac72a4426f92ba96e0e13ac71fb91 +doccontainersize 1997984 +doccontainerchecksum d86f9ed46988f57dc9ebb926735004932ce1fba1dd46bd0b5e4f16ea90155e93559a0131099053c5a470c692a45176eb2eb3981dd07d851e8bd14c0dd4c7758d +docfiles size=530 + RELOC/doc/generic/xint/CHANGES.html details="Changes (HTML)" + RELOC/doc/generic/xint/CHANGES.pdf details="Changes (PDF)" + RELOC/doc/generic/xint/README details="Readme" + RELOC/doc/generic/xint/README.html details="Readme (HTML)" + RELOC/doc/generic/xint/README.pdf details="Readme (PDF)" + RELOC/doc/generic/xint/sourcexint.pdf details="Documented source code" + RELOC/doc/generic/xint/xint.pdf details="Package documentation" +srccontainersize 324944 +srccontainerchecksum 5668d47fd50925aedbc4df71c177fa465c130f9be395c7e289ecb822c518af74b878f7724aeac9b4b27669b5ae165fa9e9e5d3c5bb348baffd19a9b7508bc20b +srcfiles size=382 + RELOC/source/generic/xint/Makefile + RELOC/source/generic/xint/xint.dtx +runfiles size=136 RELOC/tex/generic/xint/xint.sty RELOC/tex/generic/xint/xintbinhex.sty RELOC/tex/generic/xint/xintcfrac.sty @@ -179757,74 +304874,53 @@ runfiles size=104 RELOC/tex/generic/xint/xintfrac.sty RELOC/tex/generic/xint/xintgcd.sty RELOC/tex/generic/xint/xintkernel.sty + RELOC/tex/generic/xint/xintlog.sty RELOC/tex/generic/xint/xintseries.sty RELOC/tex/generic/xint/xinttools.sty -docfiles size=330 - RELOC/doc/generic/xint/CHANGES.html - RELOC/doc/generic/xint/CHANGES.pdf - RELOC/doc/generic/xint/README - RELOC/doc/generic/xint/README.html - RELOC/doc/generic/xint/README.pdf - RELOC/doc/generic/xint/sourcexint.pdf - RELOC/doc/generic/xint/xint.pdf -srcfiles size=273 - RELOC/source/generic/xint/Makefile - RELOC/source/generic/xint/xint.dtx - RELOC/source/generic/xint/xint.ins + RELOC/tex/generic/xint/xinttrig.sty catalogue-ctan /macros/generic/xint -catalogue-date 2015-09-13 12:02:05 +0200 -catalogue-license lppl1.3 +catalogue-date 2019-04-06 22:13:46 +0200 +catalogue-license lppl1.3c catalogue-topics arithmetic calculation -catalogue-version 1.1c +catalogue-version 1.3e name xits category Package -revision 32763 -shortdesc A Scientific Times-like font with support for mathematical typesetting. +revision 48879 +shortdesc A Scientific Times-like font with support for mathematical typesetting relocated 1 longdesc XITS is a Times-like font for scientific typesetting with longdesc proper mathematical support for modern, Unicode and OpenType longdesc capable TeX engines, namely LuaTeX and XeTeX. For use with longdesc LuaLaTeX or XeLaTeX, support is available from the fontspec and longdesc unicode-math packages. -runfiles size=347 - RELOC/fonts/opentype/public/xits/xits-bold.otf - RELOC/fonts/opentype/public/xits/xits-bolditalic.otf - RELOC/fonts/opentype/public/xits/xits-italic.otf - RELOC/fonts/opentype/public/xits/xits-math.otf - RELOC/fonts/opentype/public/xits/xits-mathbold.otf - RELOC/fonts/opentype/public/xits/xits-regular.otf -docfiles size=43 +containersize 525620 +containerchecksum 5cc9aef6a53dfece22310e08406d13b50bdc81ddf6fde877e3274aed52bdcae3b156774edd03d0a8cb4e6addff1b1900e8226d10eda3e9c22ef55664725cb835 +doccontainersize 20328 +doccontainerchecksum 7cbc2ced8124165acdcf53093c20b762c1952d85548aacf5f9e937997c86a7859c77b59ace68143d08552296828e83f172f04ae878e3d64df1abc8ac937b7b5b +docfiles size=19 RELOC/doc/fonts/xits/FONTLOG.txt - RELOC/doc/fonts/xits/Makefile RELOC/doc/fonts/xits/OFL-FAQ.txt RELOC/doc/fonts/xits/OFL.txt - RELOC/doc/fonts/xits/README - RELOC/doc/fonts/xits/build.py - RELOC/doc/fonts/xits/fontcoverage.py - RELOC/doc/fonts/xits/postprocess.py - RELOC/doc/fonts/xits/user-guide.pdf - RELOC/doc/fonts/xits/user-guide.tex - RELOC/doc/fonts/xits/xits-math.lfg - RELOC/doc/fonts/xits/xits-specimen.pdf - RELOC/doc/fonts/xits/xits-specimen.tex -srcfiles size=2102 - RELOC/source/fonts/xits/xits-bold.sfd - RELOC/source/fonts/xits/xits-bolditalic.sfd - RELOC/source/fonts/xits/xits-italic.sfd - RELOC/source/fonts/xits/xits-math.sfd - RELOC/source/fonts/xits/xits-mathbold.sfd - RELOC/source/fonts/xits/xits-regular.sfd - RELOC/source/fonts/xits/xits.fea + RELOC/doc/fonts/xits/README.txt details="Readme" +runfiles size=350 + RELOC/fonts/opentype/public/xits/XITS-Bold.otf + RELOC/fonts/opentype/public/xits/XITS-BoldItalic.otf + RELOC/fonts/opentype/public/xits/XITS-Italic.otf + RELOC/fonts/opentype/public/xits/XITS-Regular.otf + RELOC/fonts/opentype/public/xits/XITSMath-Bold.otf + RELOC/fonts/opentype/public/xits/XITSMath-Regular.otf +catalogue-also stix asana-math catalogue-ctan /fonts/xits -catalogue-date 2014-05-20 14:45:48 +0200 +catalogue-date 2018-10-10 12:22:04 +0200 catalogue-license ofl -catalogue-version 1.108 +catalogue-topics font font-serif font-maths font-symbol-maths font-otf +catalogue-version 1.200.1 name xkeyval category Package revision 35741 -shortdesc Extension of the keyval package. +shortdesc Extension of the keyval package relocated 1 longdesc This package is an extension of the keyval package and offers longdesc additional macros for setting keys and declaring and setting @@ -179833,6 +304929,19 @@ longdesc specify a prefix to the name of the macros it defines for keys, longdesc and to define families of key definitions; these all help use longdesc in documents where several packages define their own sets of longdesc keys. +containersize 13124 +containerchecksum 5d49a32326057d18ebb2bf25d29e06362c23d9a2f9df5058457fd84c9faebb545316c502a7baa19073abdd661e9497255cbcb938684dd006b0c10ba7c957c627 +doccontainersize 388344 +doccontainerchecksum a2c51df068c738d598c472143af901392d181db37bb416a2e406ad1d65c6679e428efc1281256edcbd04bf6a64ffd23dd568bed007ea278362ae7378f5371a03 +docfiles size=125 + RELOC/doc/latex/xkeyval/README details="Package README" + RELOC/doc/latex/xkeyval/xkeyval.bib + RELOC/doc/latex/xkeyval/xkeyval.pdf details="Package documentation" + RELOC/doc/latex/xkeyval/xkvpream.ble +srccontainersize 47564 +srccontainerchecksum 6764eee7ff0c7649a4f6b809753134dd047ab6bfc3ba1bf16e5ae0fef2df0f3b40cd83b662cde002954ce705e8f8ee5950da36b38b2ee6533e6b089e3a32bf20 +srcfiles size=54 + RELOC/source/latex/xkeyval/xkeyval.dtx runfiles size=28 RELOC/tex/generic/xkeyval/keyval.tex RELOC/tex/generic/xkeyval/pst-xkey.tex @@ -179852,22 +304961,17 @@ runfiles size=28 RELOC/tex/latex/xkeyval/xkvesc.sty RELOC/tex/latex/xkeyval/xkvltxp.sty RELOC/tex/latex/xkeyval/xkvview.sty -docfiles size=125 - RELOC/doc/latex/xkeyval/README - RELOC/doc/latex/xkeyval/xkeyval.bib - RELOC/doc/latex/xkeyval/xkeyval.pdf - RELOC/doc/latex/xkeyval/xkvpream.ble -srcfiles size=54 - RELOC/source/latex/xkeyval/xkeyval.dtx +catalogue-also pst-xkey catalogue-ctan /macros/latex/contrib/xkeyval -catalogue-date 2014-12-03 21:39:01 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics keyval catalogue-version 2.7a name xlop category Package -revision 29236 -shortdesc Calculates and displays arithmetic operations. +revision 42899 +shortdesc Calculates and displays arithmetic operations relocated 1 longdesc Xlop (eXtra Large OPeration) will typeset arithmetic problems longdesc either in-line or "as in school" (using French school @@ -179877,65 +304981,103 @@ longdesc \hline 5\end{tabular}. Furthermore, numbers may be very large, longdesc e.g 200 figures (with a very long compilation time). Many other longdesc features allow to deal with numbers (tests, display, some high longdesc level operations, etc.) -runfiles size=30 - RELOC/tex/generic/xlop/xlop.sty - RELOC/tex/generic/xlop/xlop.tex -docfiles size=212 - RELOC/doc/generic/xlop/LISEZMOI - RELOC/doc/generic/xlop/README - RELOC/doc/generic/xlop/xlop-doc-fr.pdf +containersize 15712 +containerchecksum 74f6ec3dfe32715ebe0bc0cbd3181dbc4e8384be19f2f7849333c21398fbb3a43d4e3385c8eb1dc81688bdde44072796cb1210402cdfa7522fd5a9052173004b +doccontainersize 537796 +doccontainerchecksum 792a49ef02b67b0db85c827c52ea644235bb2d8c8d8c8c9c4e5c36d1003ab643906e7bad13ddc505e884abecbba97d495ae8d93d4a958c5ff9ce10888c29ae6a +docfiles size=216 + RELOC/doc/generic/xlop/LISEZMOI details="Readme" language="fr" + RELOC/doc/generic/xlop/README details="Readme" language="en" + RELOC/doc/generic/xlop/xlop-doc-fr.pdf details="Package documentation (French)" language="fr" RELOC/doc/generic/xlop/xlop-doc-fr.tex - RELOC/doc/generic/xlop/xlop-doc.pdf + RELOC/doc/generic/xlop/xlop-doc.pdf details="Package documentation (English)" language="en" RELOC/doc/generic/xlop/xlop-doc.tex +srccontainersize 916 +srccontainerchecksum e9ffcbc786fb8a5f697f23d6e229afbc39dbd9e72bf5d6ec81c396d6b8f62208004475c712301b203e4baef70d1b45cf1a5a41d86997cbfd794a68c8b2020d00 srcfiles size=1 RELOC/source/generic/xlop/manual.sty +runfiles size=32 + RELOC/tex/generic/xlop/xlop.sty + RELOC/tex/generic/xlop/xlop.tex +catalogue-also longdiv catalogue-ctan /macros/generic/xlop -catalogue-date 2013-02-26 20:28:25 +0100 +catalogue-date 2017-01-08 10:27:32 +0100 catalogue-license lppl -catalogue-version 0.25 +catalogue-topics arithmetic +catalogue-version 0.26 -name xltxtra +name xltabular category Package -revision 30466 -shortdesc "Extras" for LaTeX users of XeTeX. -relocated 1 -longdesc The package loads the fixltx2e package from the LaTeX -longdesc distribution, and etex.sty from the e-TeX distribution. The -longdesc package then patches the \- (discretionary hyphen command) to -longdesc use the current hyphen character (which may be different from -longdesc than the default, which is the character at the ASCII hyphen -longdesc slot), and loads the realscripts to patch the \textsuperscript -longdesc command (from the LaTeX kernel) and the \textsubscript command -longdesc (from the fixltx2e package). The package is loaded by the -longdesc fontspec package, so that it should not ordinarily be necessary -longdesc to load it explicitly. The package relies on the metalogo -longdesc package for typesetting the XeTeX and XeLaTeX logos. -depend metalogo +revision 49939 +shortdesc Longtable support with possible X-column specifier +relocated 1 +longdesc This package loads package ltablex, but keeps the current +longdesc tabularx environment as is. The new environment xltabular is a +longdesc combination of longtable and tabularx: Header/footer +longdesc definitions, X-column specifier, and with possible pagebreaks. +containersize 1696 +containerchecksum 57f734e3715107169b53c017e9524c1cd4f29a120e6f6aab7e50e380216ca2f841fb0aa5e3d5fe016a061b87d64eae4714f35dcda8ccb4b2c73ec4d5727a877e +doccontainersize 73392 +doccontainerchecksum fb9567b70272ea7f49d6923a19748a1cc53615f45b56b2b573304c6cfa334f0dcf6aa1fc89a3236d814693332fa3cc71798d548323ec2b1c2bf34071ebd7fd19 +docfiles size=27 + RELOC/doc/latex/xltabular/Changes + RELOC/doc/latex/xltabular/README.md details="Readme" + RELOC/doc/latex/xltabular/xltabular-doc.bib + RELOC/doc/latex/xltabular/xltabular-doc.pdf details="Package documentation" + RELOC/doc/latex/xltabular/xltabular-doc.tex + RELOC/doc/latex/xltabular/xltabular-example-hyp.tex + RELOC/doc/latex/xltabular/xltabular-example.inp + RELOC/doc/latex/xltabular/xltabular-example.tex runfiles size=1 - RELOC/tex/latex/xltxtra/xltxtra.sty -docfiles size=35 - RELOC/doc/latex/xltxtra/README - RELOC/doc/latex/xltxtra/xltxtra.pdf -srcfiles size=6 - RELOC/source/latex/xltxtra/xltxtra.dtx - RELOC/source/latex/xltxtra/xltxtra.ins -catalogue-ctan /macros/latex/contrib/xltxtra -catalogue-date 2012-03-06 14:36:12 +0100 -catalogue-license lppl -catalogue-version 0.5e + RELOC/tex/latex/xltabular/xltabular.sty +catalogue-also longtable tabularx ltablex +catalogue-contact-bugs https://github.com/rolfn/xltabular/issues +catalogue-contact-home https://github.com/rolfn/xltabular +catalogue-ctan /macros/latex/contrib/xltabular +catalogue-date 2019-02-04 10:22:01 +0100 +catalogue-license lppl1.3 +catalogue-topics table table-long +catalogue-version 0.2b -name xmltexconfig +name xltxtra category Package -revision 35743 -relocated 1 +revision 49555 +shortdesc "Extras" for LaTeX users of XeTeX +relocated 1 +longdesc This package was previously used to provide a number of +longdesc features that were useful for typesetting documents with +longdesc XeLaTeX. Many of those features have now been incorporated into +longdesc the fontspec package and other packages, but the package +longdesc persists for backwards compatibility. Nowadays, loading xltxtra +longdesc will: load the fontspec, metalogo, and realscripts packages; +longdesc redefine \showhyphens so it works correctly; and define two +longdesc extra commands: \vfrac and \namedglyph. +depend metalogo +containersize 2536 +containerchecksum decef1877478b8acd8a7a10abca00773bbae707dc47921adbf9e077c67fe186e8a90e5c9f35e8e8c173d93cbe799ba994f53d60e05eff4dde09525375d4e6bf3 +doccontainersize 100928 +doccontainerchecksum 2f2ded483dee14a97d0e5f673e38864bfef93c41e0c694cd5435d37417f145e472b13c5256a7bde48c8f4439077f4055676a295ab410a7d6ecd4598955c5ff50 +docfiles size=26 + RELOC/doc/xelatex/xltxtra/README.md details="Readme" + RELOC/doc/xelatex/xltxtra/xltxtra.pdf details="Package documentation" +srccontainersize 6096 +srccontainerchecksum 50790bef953636876456586b3908b15f914803fd87ff8c3cf4be576bf9930c2f450c99b60d390508d35d534e5d9bff0cd1b02fbe31bb29444207fff3868ccb1d +srcfiles size=6 + RELOC/source/xelatex/xltxtra/xltxtra.dtx + RELOC/source/xelatex/xltxtra/xltxtra.ins runfiles size=2 - RELOC/tex/xmltex/xmltexconfig/pdfxmltex.ini - RELOC/tex/xmltex/xmltexconfig/xmltex.ini + RELOC/tex/xelatex/xltxtra/xltxtra.sty +catalogue-contact-repository https://github.com/wspr/will2e/ +catalogue-ctan /macros/latex/contrib/xltxtra +catalogue-date 2018-12-31 10:09:56 +0100 +catalogue-license lppl1.3c +catalogue-topics xetex +catalogue-version 0.7 name xmltex category Package -revision 35755 -shortdesc Support for parsing XML documents. +revision 48634 +shortdesc Support for parsing XML documents longdesc The package provides an implementation of a parser for longdesc documents matching the XML 1.0 and XML Namespace longdesc Recommendations. In addition to parsing commands are provided @@ -179948,30 +305090,30 @@ depend latex depend pdftex depend tex depend xmltexconfig +depend babel +depend cm +depend dehyph +depend hyphen-base +depend latex-fonts +depend latexconfig +depend tex-ini-files depend xmltex.ARCH -execute AddFormat name=xmltex engine=pdftex patterns=language.dat options="*xmltex.ini" -execute AddFormat name=pdfxmltex engine=pdftex patterns=language.dat options="*pdfxmltex.ini" -runfiles size=24 - texmf-dist/tex/xmltex/base/iso-8859-1.xmt - texmf-dist/tex/xmltex/base/iso-8859-2.xmt - texmf-dist/tex/xmltex/base/koi8-r.xmt - texmf-dist/tex/xmltex/base/langtest.xmt - texmf-dist/tex/xmltex/base/mathml2.xmt - texmf-dist/tex/xmltex/base/sec.xmt - texmf-dist/tex/xmltex/base/utf-16.xmt - texmf-dist/tex/xmltex/base/windows-1250.xmt - texmf-dist/tex/xmltex/base/xmltex.cfg - texmf-dist/tex/xmltex/base/xmltex.tex +execute AddFormat name=xmltex engine=pdftex patterns=language.dat options="*xmltex.ini" fmttriggers=babel,cm,dehyph,hyphen-base,latex,latex-fonts,latexconfig,tex-ini-files,xmltexconfig +execute AddFormat name=pdfxmltex engine=pdftex patterns=language.dat options="*pdfxmltex.ini" fmttriggers=babel,cm,dehyph,hyphen-base,latex,latex-fonts,latexconfig,tex-ini-files,xmltexconfig +containersize 18212 +containerchecksum ff49080eda4d8f0133fd1f0b2a9be88d3017dea9faf6e2b4397b82c38424289e81b23fee7b3489b43a3741eb3218afba2c76749a2aacbc163f6891e04975ba02 +doccontainersize 17004 +doccontainerchecksum 7c80b6fed3eb28735f19071d7fe0a61672355f6a2d2111c9f8eb8766387762b6d2cb343a5e0b601b6adde1c362c7407c9d1206e4fcc4457d5f4ca66f52d4ba3f docfiles size=32 texmf-dist/doc/otherformats/xmltex/base/englishutf16.xml texmf-dist/doc/otherformats/xmltex/base/englishutf8.xml texmf-dist/doc/otherformats/xmltex/base/langtest.xml - texmf-dist/doc/otherformats/xmltex/base/manual.html + texmf-dist/doc/otherformats/xmltex/base/manual.html details="Package documentation" texmf-dist/doc/otherformats/xmltex/base/manual.tex texmf-dist/doc/otherformats/xmltex/base/manual.xml texmf-dist/doc/otherformats/xmltex/base/manual.xsl texmf-dist/doc/otherformats/xmltex/base/portugeselatin1.xml - texmf-dist/doc/otherformats/xmltex/base/readme.txt + texmf-dist/doc/otherformats/xmltex/base/readme.txt details="Readme" texmf-dist/doc/otherformats/xmltex/base/russiankoi8.xml texmf-dist/doc/otherformats/xmltex/base/russianutf8.xml texmf-dist/doc/otherformats/xmltex/base/testascii.cfg @@ -179979,23 +305121,199 @@ docfiles size=32 texmf-dist/doc/otherformats/xmltex/base/testascii.xml texmf-dist/doc/otherformats/xmltex/base/testsec.tex texmf-dist/doc/otherformats/xmltex/base/testsec.xml +runfiles size=24 + texmf-dist/tex/xmltex/base/iso-8859-1.xmt + texmf-dist/tex/xmltex/base/iso-8859-2.xmt + texmf-dist/tex/xmltex/base/koi8-r.xmt + texmf-dist/tex/xmltex/base/langtest.xmt + texmf-dist/tex/xmltex/base/mathml2.xmt + texmf-dist/tex/xmltex/base/sec.xmt + texmf-dist/tex/xmltex/base/utf-16.xmt + texmf-dist/tex/xmltex/base/windows-1250.xmt + texmf-dist/tex/xmltex/base/xmltex.cfg + texmf-dist/tex/xmltex/base/xmltex.tex +catalogue-contact-repository https://github.com/davidcarlisle/dpctex catalogue-ctan /macros/xmltex/base -catalogue-date 2012-11-26 19:04:19 +0100 +catalogue-date 2018-04-05 06:13:24 +0200 catalogue-license lppl +catalogue-topics foreign-import catalogue-version 0.8 +name xmltex.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of xmltex +containersize 340 +containerchecksum 0f6f6e51ab9e95cbaa2cb779f3a50b0ff5019f9dfbfcadfed363292433a9c79ce0f118308e8078de4fcd8d1727b6573597db7ab3d7ebf93833e857a3e4ec0073 +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/pdfxmltex + bin/aarch64-linux/xmltex + +name xmltex.amd64-freebsd +category Package +revision 16472 +shortdesc amd64-freebsd files of xmltex +containersize 340 +containerchecksum 37e8ac6110e044a26f99fe75d99daca62cc1eacfca71b1fc8277b6aa5363ddf55898a58eb1ab0d730a173356689110ab1c7cf18de77fdb8a93123062cc517b1b +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/pdfxmltex + bin/amd64-freebsd/xmltex + +name xmltex.amd64-netbsd +category Package +revision 30191 +shortdesc amd64-netbsd files of xmltex +containersize 340 +containerchecksum 91516605fabe52175faa4a9f732ef614570f76ba26ce3bc5f45abe8c546b3c337a95ef41b03d12e0c73c826ae722b5d53b69218f4ca932be82e095a0e857ae1d +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/pdfxmltex + bin/amd64-netbsd/xmltex + +name xmltex.armhf-linux +category Package +revision 30015 +shortdesc armhf-linux files of xmltex +containersize 340 +containerchecksum 72b841f5b856e0886b76c360249ad251b15b9ec2f399da5467cdbb5bf959d3a792532d8fa0c7eb4ebd08ad0c2c602460aaa5fe347914644fbbfbe4c8e515a19b +binfiles arch=armhf-linux size=2 + bin/armhf-linux/pdfxmltex + bin/armhf-linux/xmltex + +name xmltex.i386-cygwin +category Package +revision 13930 +shortdesc i386-cygwin files of xmltex +containersize 340 +containerchecksum 3b23a20e12b2b0f9bf3407d08e5fc17f139e6bb1f15710315d1ed16aabfd91b36dd86c4085cbd32fdbacbc6e19733bb7618e1f3f07eed13c59581c244739ce36 +binfiles arch=i386-cygwin size=2 + bin/i386-cygwin/pdfxmltex + bin/i386-cygwin/xmltex + +name xmltex.i386-freebsd +category Package +revision 16472 +shortdesc i386-freebsd files of xmltex +containersize 340 +containerchecksum 84cb48b611a953dbfc66ddb0106aaec628bba785dc1cfd1dec3c307b6296b548a4b56c492d26f3860fbb615a0e1ed8a5f5f264031fa77db4d4f240a9a05c7d51 +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/pdfxmltex + bin/i386-freebsd/xmltex + name xmltex.i386-linux category Package revision 3006 shortdesc i386-linux files of xmltex +containersize 336 +containerchecksum 2d49d4f6d2e5231e467608442a3d904789b89e1421f22ccb5862051fcca4b9a76af602e416742614903dae082857824229be8c3f43af2faee3c04473756cc51a binfiles arch=i386-linux size=2 bin/i386-linux/pdfxmltex bin/i386-linux/xmltex +name xmltex.i386-netbsd +category Package +revision 30191 +shortdesc i386-netbsd files of xmltex +containersize 340 +containerchecksum 4e43994f382c5cac3015ea5cc7b96da86d265e1fe01d3432c0748e32bb3a6b825217d7e9c62403dd1711fc26e6d6d166f1f655a2e51c2a5ed48c22c4ec2e32d9 +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/pdfxmltex + bin/i386-netbsd/xmltex + +name xmltex.i386-solaris +category Package +revision 8102 +shortdesc i386-solaris files of xmltex +containersize 340 +containerchecksum 4ee9a4d8077f329b1ca6507f8b93ca11c3d9f174572679ecdbc9bf15f4a668bfcec295254039d08a266fb96bc828c9df24ef7ce0aaa6df28c00c64205fde4fa8 +binfiles arch=i386-solaris size=2 + bin/i386-solaris/pdfxmltex + bin/i386-solaris/xmltex + +name xmltex.win32 +category Package +revision 36810 +shortdesc win32 files of xmltex +containersize 888 +containerchecksum 3f414980c66fda0f4f5d4be4506de52b2fe3ff09056a56d308744d2ce65496e7a6305dcd77771bb389cfcf80507613cbe84e0c042d50884ec58045952d0228e8 +binfiles arch=win32 size=2 + bin/win32/pdfxmltex.exe + bin/win32/xmltex.exe + +name xmltex.x86_64-cygwin +category Package +revision 33557 +shortdesc x86_64-cygwin files of xmltex +containersize 344 +containerchecksum b397e281de0b4dae29d9a580ea00d441eac2c0be7cfbbea78455701ae6eb2629d53209eb9a4f0390c5af6d1b293e7423d6636405fa9c68904c661cc916bb6c04 +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/pdfxmltex + bin/x86_64-cygwin/xmltex + +name xmltex.x86_64-darwin +category Package +revision 18441 +shortdesc x86_64-darwin files of xmltex +containersize 340 +containerchecksum 7633616b6f4f9ddf28e84abecfdced637e0e168e08a3ab39aa9be27c2de4fda4aeb0a25daf766c4394d3b122cf50a58d9a6eacaf073b567c4b15b26611fb253b +binfiles arch=x86_64-darwin size=2 + bin/x86_64-darwin/pdfxmltex + bin/x86_64-darwin/xmltex + +name xmltex.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of xmltex +containersize 348 +containerchecksum 456e0ef5d30a3db49cb5868496e49717dfab394cd88fc0715ab095f5ab2d2a239a400a61af0da144ee2aca2dbc72a7697b29a4c1ef0142f8e2d43cfa764919f3 +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/pdfxmltex + bin/x86_64-darwinlegacy/xmltex + +name xmltex.x86_64-linux +category Package +revision 3185 +shortdesc x86_64-linux files of xmltex +containersize 336 +containerchecksum 0d400dca8f0a2834d083ee2466b325d243ac5eecb91bef5f579aefaf590f6ef19c0d02fdce5febeb7cb64ac3b180bf39ba4096916a6d27aabda8c84755e4282f +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/pdfxmltex + bin/x86_64-linux/xmltex + +name xmltex.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of xmltex +containersize 344 +containerchecksum 43d32c4e21b3d85c04ee8be63d135c0abb090f00ff5421625538857e234b97d1cd2b73f9f9d3ff3218fc517362843ed39c8e9887fc00607558b354e7757d3f07 +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/pdfxmltex + bin/x86_64-linuxmusl/xmltex + +name xmltex.x86_64-solaris +category Package +revision 18442 +shortdesc x86_64-solaris files of xmltex +containersize 344 +containerchecksum 133fa3998d61a88534a2289484d8672ec375584d7f8d0daa966bfe7d978f4530c4f479a5578bf3178764e7f4baf3a9925657f798432f82e093cba5429585794c +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/pdfxmltex + bin/x86_64-solaris/xmltex + +name xmltexconfig +category Package +revision 45845 +shortdesc configuration files for xmltex and pdfxmltex +relocated 1 +containersize 488 +containerchecksum 2620dde42acffee6561f406527794cc62d87c1104135da846b7cd3c7f4109c4d1986d562ea612f2b5246e1863eff86795c4789075f8475d45de00763cfb539fc +runfiles size=2 + RELOC/tex/xmltex/xmltexconfig/pdfxmltex.ini + RELOC/tex/xmltex/xmltexconfig/xmltex.ini + name xmpincl category Package revision 15878 -shortdesc Include eXtensible Metadata Platform data in PDFLaTeX. +shortdesc Include eXtensible Metadata Platform data in pdfLaTeX relocated 1 longdesc The XMP (eXtensible Metadata platform) is a framework to add longdesc metadata to digital material to enhance the workflow in @@ -180007,102 +305325,135 @@ longdesc embed licensing information in the files he created. The longdesc license the author chose is one of the Creative Commons longdesc licenses, and their web-site offers this information in a valid longdesc XML-file, suitable for direct inclusion. -runfiles size=1 - RELOC/tex/latex/xmpincl/xmpincl.sty +containersize 1828 +containerchecksum 8d9a895a1efe8ce5eac190b8242c7f3e3bff7e433e1336aa7143894fbc5691c7b4fd791bae67fcefe97d16ff131b533f8b0c629580d7b5f9420e9216e932b860 +doccontainersize 98416 +doccontainerchecksum 2757de1bfcbfe9df02d5e667564b1a69205ab86c31f7bcc8ec3f37db0fb1a1f4bb21d7360dbfd771aeafaffa4599becc801df81e339b6f49adafeb38bc1ff5af docfiles size=31 - RELOC/doc/latex/xmpincl/README + RELOC/doc/latex/xmpincl/README details="Package Readme" RELOC/doc/latex/xmpincl/license.xmp - RELOC/doc/latex/xmpincl/xmpincl.pdf + RELOC/doc/latex/xmpincl/xmpincl.pdf details="Package documentation" +srccontainersize 6572 +srccontainerchecksum 92cdd556f60d8a4186f64800ef5c8a27e331e394ac0120d3e07065688d454ea821839eaaf167bb15980223552160e161cb3c559feffbc4d6657af1019f7c14a2 srcfiles size=5 RELOC/source/latex/xmpincl/xmpincl.dtx RELOC/source/latex/xmpincl/xmpincl.ins +runfiles size=1 + RELOC/tex/latex/xmpincl/xmpincl.sty catalogue-ctan /macros/latex/contrib/xmpincl -catalogue-date 2012-11-14 18:32:01 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics metadata pdf-feat catalogue-version 2.2 name xnewcommand category Package revision 15878 -shortdesc Define \global and \protected commands with \newcommand. +shortdesc Define \global and \protected commands with \newcommand relocated 1 longdesc The package provides the means of defining \global and (e-TeX) longdesc \protected commands, within the framework of LaTeX's standard longdesc \newcommand. -runfiles size=1 - RELOC/tex/latex/xnewcommand/xnewcommand.sty +containersize 768 +containerchecksum 3296d6f9b580699e86ee01da444ec9b3cf7b76775f05529cc9c4dd931da5f887c914665651214a8107be612b18cb286ec039ad9ab3de520bd17090b38265d5c9 +doccontainersize 266496 +doccontainerchecksum e03b7027a3956829823e92bd4d8a3000d8f79f26558875ea3837adc9ca4a17ce75d9d4e9136d7ebda7bdc8fbbf4a1b44fc6f71d1bfad710d2e22bba8fab24292 docfiles size=70 - RELOC/doc/latex/xnewcommand/README - RELOC/doc/latex/xnewcommand/xnewcommand.pdf + RELOC/doc/latex/xnewcommand/README details="Readme" + RELOC/doc/latex/xnewcommand/xnewcommand.pdf details="Package documentation" RELOC/doc/latex/xnewcommand/xnewcommand.tex +runfiles size=1 + RELOC/tex/latex/xnewcommand/xnewcommand.sty catalogue-ctan /macros/latex/contrib/xnewcommand -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics macro-def catalogue-version 1.2 name xoptarg category Package revision 15878 -shortdesc Expandable macros that take an optional argument. +shortdesc Expandable macros that take an optional argument relocated 1 longdesc Commands that take an optional argument are not ordinarily longdesc expandable; this package allows such commands to be expandable longdesc provided that they have at least one mandatory argument. -runfiles size=2 - RELOC/tex/latex/xoptarg/xoptarg.sty +containersize 1840 +containerchecksum 3ee6285ecac00a20781ad530a7ca1ef35a94efdcc31d29084e167cde75c51b4bdd644bfb5d25390c3deef44fa7b09e479b6c616169ab0bee1e83d4e37338e00d +doccontainersize 369900 +doccontainerchecksum 1692c6700b978cd05cde7c0d45e970a4cc8f783d53cb1e2fc57639483e728ef5dcf29bc7563c9ce42eeaba72da93b36e366876494f3680f0fd5e8eada08694bb docfiles size=97 - RELOC/doc/latex/xoptarg/README - RELOC/doc/latex/xoptarg/xoptarg.pdf + RELOC/doc/latex/xoptarg/README details="Readme" + RELOC/doc/latex/xoptarg/xoptarg.pdf details="Package documentation" RELOC/doc/latex/xoptarg/xoptarg.tex +runfiles size=2 + RELOC/tex/latex/xoptarg/xoptarg.sty catalogue-ctan /macros/latex/contrib/xoptarg -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics macro-def catalogue-version 1.0 name xpatch category Package revision 27897 -shortdesc Extending etoolbox patching commands. +shortdesc Extending etoolbox patching commands relocated 1 longdesc The package generalises the macro patching commands provided by longdesc Philipp Lehmann's etoolbox. -runfiles size=3 - RELOC/tex/latex/xpatch/xpatch.sty +containersize 1944 +containerchecksum 8f74955f059b7cc27b01772893cb28c565df3773fe308d7862f7a41bc1930ebe8712468d8e32027d82b3b4f6c1a800b007ae202d8fe672d389f40f582ccb4e70 +doccontainersize 450384 +doccontainerchecksum 49fb3a9aa844ffe4dfc2e2adcf3ef6135302678bc423c377e171cea4ac784d9e5045e4f080aeec622e2cb5db7f706b8b5592d65e1bab60af766aa7df586979f2 docfiles size=112 - RELOC/doc/latex/xpatch/README - RELOC/doc/latex/xpatch/xpatch.pdf + RELOC/doc/latex/xpatch/README details="Readme" + RELOC/doc/latex/xpatch/xpatch.pdf details="Package documentation" +srccontainersize 7496 +srccontainerchecksum 70bdfc42f330594ad9435acf846243880c3c34cceb57708b8e61fde89e07933f2b9bd131f0ab933d5c7b1076412e150e48357f88ff67441c1e0f4e1d294dca9d srcfiles size=9 RELOC/source/latex/xpatch/xpatch.dtx RELOC/source/latex/xpatch/xpatch.ins +runfiles size=3 + RELOC/tex/latex/xpatch/xpatch.sty catalogue-ctan /macros/latex/contrib/xpatch -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics macro-supp catalogue-version 0.2 name xpeek category Package revision 27442 -shortdesc Define commands that peek ahead in the input stream. +shortdesc Define commands that peek ahead in the input stream relocated 1 longdesc The package provides tools to help define commands that, like longdesc \xspace and the LaTeX command \textit, peek at what follows longdesc them in the command stream and choose appropriate behaviour. -runfiles size=1 - RELOC/tex/latex/xpeek/xpeek.sty +containersize 1396 +containerchecksum dc1dd0534645be0754551b2d3bc146c7e7663f7cc9f2daf40b13a383e13883d25ba46f320317d4e9f251594dccf3a880f5e123683f302638eb3b37018b369ce4 +doccontainersize 554532 +doccontainerchecksum 047080eda80f9134b98196bf8a06e446ef856028aaa0f936da16db7f63be144b404708045d2a49c5bdb70b7a6f0b6b505697e95a5ff8b98b5b4f1ee8b2949367 docfiles size=149 - RELOC/doc/latex/xpeek/README - RELOC/doc/latex/xpeek/xpeek.pdf + RELOC/doc/latex/xpeek/README details="Readme" + RELOC/doc/latex/xpeek/xpeek.pdf details="Package documentation" +srccontainersize 7044 +srccontainerchecksum a7e8c3f165314ab79f8702b8ccc82200398e5d5798815c02a7ae3ea0d70dd521d534c50e93b822e41042eb6a0faea07d5f129f05f427e47c2abcaff3adbba459 srcfiles size=6 RELOC/source/latex/xpeek/xpeek.dtx +runfiles size=1 + RELOC/tex/latex/xpeek/xpeek.sty +catalogue-also xspace xpunctuate +catalogue-contact-repository http://github.com/jcsalomon/xpeek catalogue-ctan /macros/latex/contrib/xpeek -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 +catalogue-topics macro-supp catalogue-version 0.2 name xpiano category Package revision 37604 -shortdesc An extension of the piano package. +shortdesc An extension of the piano package relocated 1 longdesc This package provides macros for typesetting virtual keyboards longdesc limited to two octaves for showing notes represented by a @@ -180115,17 +305466,23 @@ longdesc http://tex.stackexchange.com/questions/246276/. It features longdesc extended syntax and several options, like setting the color, longdesc adding numbers for pitch analysis, one or two octaves, and longdesc others. -runfiles size=3 - RELOC/tex/latex/xpiano/xpiano.sty +containersize 2812 +containerchecksum 3554bd514e1108649bc98d38dc84951edf17533758325d46726f55d9909d1a3747024aeff62842dc6eb1b5fc760c41a452e207b156bdee06468e9d7732e223b6 +doccontainersize 556172 +doccontainerchecksum 257c484983eed03adc77b1776c9207ff89b4152b817aa09fb57cb41d8f6494af0db191c61b954a7f2a605cb8695fdd0562cbab1e0c48f85329c3ad61fef0e62d docfiles size=138 RELOC/doc/latex/xpiano/README.txt - RELOC/doc/latex/xpiano/xpiano.pdf + RELOC/doc/latex/xpiano/xpiano.pdf details="Package documentation" +srccontainersize 6324 +srccontainerchecksum b52814268736b61fe3f417f410e4b29f778b6492f838d16894d33db85645799d52d3d744f10b429e68e315a142964b2f5ff57f15e9c4ee7e93a58dbd4b0fa2e2 srcfiles size=7 RELOC/source/latex/xpiano/xpiano.dtx RELOC/source/latex/xpiano/xpiano.ins +runfiles size=3 + RELOC/tex/latex/xpiano/xpiano.sty catalogue-also piano catalogue-ctan /macros/latex/contrib/xpiano -catalogue-date 2015-05-26 05:52:50 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 catalogue-topics music catalogue-version 1.0 @@ -180133,75 +305490,99 @@ catalogue-version 1.0 name xpicture category Package revision 28770 -shortdesc Extensions of LaTeX picture drawing. +shortdesc Extensions of LaTeX picture drawing relocated 1 longdesc The package extends the facilities of the pict2e and the longdesc curve2e packages, providing extra reference frames, conic longdesc section curves, graphs of elementary functions and other longdesc parametric curves. -runfiles size=12 - RELOC/tex/latex/xpicture/xpicture.sty +containersize 8960 +containerchecksum 1915b8b9acb3db8d4f8ac4fbc0baab55d6b8352288852f20d066a3f0ce4f7dd0cd4d2d70ae2d2e29aadae0bdb272fcb237146379313b2900accaab2bc10ceb79 +doccontainersize 1297960 +doccontainerchecksum dafacd0f38ca6a248f701cf48381ce0a3816a693150118ab6a7e18f818814a1b54435820dc8c11135146cfde3d40a08a0f2cd78bc54a9ddb450bb5c848b99e84 docfiles size=342 - RELOC/doc/latex/xpicture/README - RELOC/doc/latex/xpicture/xpicture-doc.pdf + RELOC/doc/latex/xpicture/README details="Readme" + RELOC/doc/latex/xpicture/xpicture-doc.pdf details="Package documentation" RELOC/doc/latex/xpicture/xpicture-doc.tex RELOC/doc/latex/xpicture/xpicture.cfgxmpl RELOC/doc/latex/xpicture/xpicture.pdf +srccontainersize 24428 +srccontainerchecksum e49b8512ef83ec38f20dafa1e5f191cfd4c2bbcc62016f209be06f969cccdf3cec9545a24756710c767946f8c532074d53de8a6bacd6c565fdf49c579b0cb6c7 srcfiles size=32 RELOC/source/latex/xpicture/xpicture.dtx +runfiles size=12 + RELOC/tex/latex/xpicture/xpicture.sty catalogue-ctan /macros/latex/contrib/xpicture -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl1.3 +catalogue-topics graphics-in-tex graphics-curve catalogue-version 1.2a name xpinyin category Package -revision 35921 -shortdesc Automatically add pinyin to Chinese characters. +revision 50849 +shortdesc Automatically add pinyin to Chinese characters relocated 1 longdesc The package is written to simplify the input of Hanyu Pinyin. longdesc Macros are provided that automatically add pinyin to Chinese longdesc characters. -runfiles size=301 - RELOC/tex/latex/xpinyin/xpinyin-database.def - RELOC/tex/latex/xpinyin/xpinyin.sty -docfiles size=62 - RELOC/doc/latex/xpinyin/README - RELOC/doc/latex/xpinyin/xpinyin.pdf -srcfiles size=13 +containersize 199772 +containerchecksum 7235eeaf6b0218d4ee87a07b8b16034cbd40ccdf77c96baba14d4ab8a6bd5de78c5f5ab68891a6a91fe4bd0a77de146c357f4e4af4ed443ca8a38526f4f53240 +doccontainersize 204276 +doccontainerchecksum b20233a1ff1f2f1f1474e5bcf81fab3747c26a3312d91297c73d1e57ebafd9459727c91da025b5cb4c1875ba5876873eb8099ad4012d85a972dc4fd1ea90e7e8 +docfiles size=52 + RELOC/doc/latex/xpinyin/README.md details="Readme" + RELOC/doc/latex/xpinyin/xpinyin.pdf details="Package documentation" language="zh" +srccontainersize 10856 +srccontainerchecksum 47dc1053cdbb87ed09e2bdd6c6fe447c011c1c2af4cfc8a1108431aefc3f5dca069a8bc60b0e97c0775a1ad1cfb54999a69ceee7f85fb493c2e8b0f6d634486e +srcfiles size=12 RELOC/source/latex/xpinyin/xpinyin.dtx RELOC/source/latex/xpinyin/xpinyin.ins +runfiles size=302 + RELOC/tex/latex/xpinyin/xpinyin-database.def + RELOC/tex/latex/xpinyin/xpinyin.sty +catalogue-contact-bugs https://github.com/CTeX-org/ctex-kit/issues +catalogue-contact-home http://www.ctex.org/HomePage +catalogue-contact-repository https://github.com/CTeX-org/ctex-kit +catalogue-contact-support https://github.com/CTeX-org/ctex-kit/issues catalogue-ctan /macros/latex/contrib/xpinyin -catalogue-date 2014-12-25 07:08:18 +0100 -catalogue-license lppl1.3 -catalogue-version 2.1 +catalogue-date 2019-04-07 18:07:42 +0200 +catalogue-license lppl1.3c +catalogue-topics chinese +catalogue-version 2.7 name xprintlen category Package revision 35928 -shortdesc Print TeX lengths in a variety of units. +shortdesc Print TeX lengths in a variety of units relocated 1 longdesc The package defines a command, \printlen, to print TeX lengths longdesc in a variety of units. It can handle all units supported by longdesc TeX. The package requires that a reasonably up to date version longdesc of the fp package be installed on you system. -runfiles size=1 - RELOC/tex/latex/xprintlen/xprintlen.sty +containersize 1120 +containerchecksum dc446adfe453430d5e2c9155acaad26e258a36319490a5158f0874292e9e68c1eb61ba57e361b5ff8bfff84c3b4a359709525f42599b95e9ba19ce9e28f88423 +doccontainersize 140412 +doccontainerchecksum 5905ee8d3589b7d75388e6e2355639435f3a72fa99abc17118068069715ba7220fa3d69f58e046d7972814bfa3834222858bc8933562ac91f83ea250f0952d82 docfiles size=38 RELOC/doc/latex/xprintlen/LICENSE - RELOC/doc/latex/xprintlen/README + RELOC/doc/latex/xprintlen/README details="Readme" RELOC/doc/latex/xprintlen/ex01.png - RELOC/doc/latex/xprintlen/xprintlen.pdf + RELOC/doc/latex/xprintlen/xprintlen.pdf details="Package documentation" RELOC/doc/latex/xprintlen/xprintlen.tex +runfiles size=1 + RELOC/tex/latex/xprintlen/xprintlen.sty +catalogue-contact-repository https://github.com/Liam0205/xprintlen catalogue-ctan /macros/latex/contrib/xprintlen -catalogue-date 2015-01-14 14:29:45 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 +catalogue-topics debug-supp doc-debug catalogue-version 1.0 name xpunctuate category Package revision 26641 -shortdesc Process trailing punctuation which may be redundant. +shortdesc Process trailing punctuation which may be redundant relocated 1 longdesc The package provides commands that enable the user (or package longdesc writer) to insert punctuation after the macro. The method is @@ -180209,27 +305590,46 @@ longdesc similar to that of xspace, but goes further. The package longdesc provides the commands \xperiod, \xcomma and \xperiodcomma, longdesc which follow a similar procedure to that of \xspace, and insert longdesc punctuation if and only if it is necessary. -runfiles size=1 - RELOC/tex/latex/xpunctuate/xpunctuate.sty +containersize 1324 +containerchecksum 4b69969632691a529ff0127f21a5974a509a29c047a33cdfc53d1bdef1aacee7d6ee8eeda5d185759b60b2e4dfcd0dc59948a8156767e2a7ced0256aac0697d4 +doccontainersize 199392 +doccontainerchecksum 04a839972105943ad72b848adb44584b647a3e52842c0956489ce82496d005ce35f4b8c8e6be1337b5f65616036b58e9543e7f4796075f9828aa9220015e441f docfiles size=53 - RELOC/doc/latex/xpunctuate/README - RELOC/doc/latex/xpunctuate/xpunctuate.pdf + RELOC/doc/latex/xpunctuate/README details="Readme" + RELOC/doc/latex/xpunctuate/xpunctuate.pdf details="Package documentation" +srccontainersize 4180 +srccontainerchecksum 02b04679b0d5ec75f2972f786293250e0115378fee96845249a221be1cbfdce9d03897f877b82950a5c80d117d4693aaa60c06d7effff9c50e63db8a6e1e49d6 srcfiles size=4 RELOC/source/latex/xpunctuate/xpunctuate.dtx RELOC/source/latex/xpunctuate/xpunctuate.ins +runfiles size=1 + RELOC/tex/latex/xpunctuate/xpunctuate.sty catalogue-ctan /macros/latex/contrib/xpunctuate -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics macro-supp catalogue-version 1.0 name xq category Package revision 35211 -shortdesc Support for writing about xiangqi. +shortdesc Support for writing about xiangqi relocated 1 longdesc The package is for writing about xiangqi or chinese chess. You longdesc can write games or parts of games and show diagrams with longdesc special positions. +containersize 44060 +containerchecksum f1fc2f43099e022aaac631d4ccd1e5f5b9a9f23db6f1c6c3adf59d47dca57c25728f81ead0ab62d07b9bea6219e3121874c55973b54e826b1a70c5e4fd47c853 +doccontainersize 210248 +doccontainerchecksum cbef1b95b4db328cc29d5f4fef544459b893cea82838e9e1f2faba00dd8fc78bd12d36931dba4ebe76cbe985879c30b8606df1f2091fc8d2108311350b2ea339 +docfiles size=68 + RELOC/doc/fonts/xq/ChangeLog + RELOC/doc/fonts/xq/Makefile + RELOC/doc/fonts/xq/README details="Package README" + RELOC/doc/fonts/xq/bugs-0-3.pdf + RELOC/doc/fonts/xq/bugs-0-3.tex + RELOC/doc/fonts/xq/xqexample.pdf details="Example of use" + RELOC/doc/fonts/xq/xqexample.tex runfiles size=311 RELOC/fonts/source/public/xq/xqaddsignsbase.mf RELOC/fonts/source/public/xq/xqaddsignslarge.mf @@ -180244,48 +305644,203 @@ runfiles size=311 RELOC/fonts/tfm/public/xq/xqlarge.tfm RELOC/fonts/tfm/public/xq/xqnormal.tfm RELOC/tex/latex/xq/xq.sty -docfiles size=68 - RELOC/doc/fonts/xq/ChangeLog - RELOC/doc/fonts/xq/Makefile - RELOC/doc/fonts/xq/README - RELOC/doc/fonts/xq/bugs-0-3.pdf - RELOC/doc/fonts/xq/bugs-0-3.tex - RELOC/doc/fonts/xq/xqexample.pdf - RELOC/doc/fonts/xq/xqexample.tex catalogue-ctan /fonts/xq -catalogue-date 2014-09-19 08:05:32 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics games catalogue-version 0.4 +name xsavebox +category Package +revision 48171 +shortdesc Saveboxes for repeating content without code replication, based on PDF Form XObjects +relocated 1 +longdesc The package defines commands for saving content that can be +longdesc repeatedly placed into the document without replicating DVI/PDF +longdesc code in the output file, allowing for smaller file size of the +longdesc final PDF and improved content caching for faster display in +longdesc certain PDF viewers. The method makes use of 'Form XObjects' +longdesc defined in the PDF specification. The user commands are +longdesc modelled after the standard LaTeX commands \savebox, \sbox, +longdesc \usebox and the lrbox environment. All common TeX engines and +longdesc back-ends are supported: pdfLaTeX, LuaLaTeX LaTeX - dvips - +longdesc ps2pdf/Distiller (Xe)LaTeX - (x)dvipdfmx +containersize 3952 +containerchecksum ffd0c576832f4c589ee9aeae4c035d59270b72aba1202af807ee37dd1fa3f2a5ac0d6b772eac4dc051dbfd3b76c30715f7fe6647a9fe84461b9306eb235fa419 +doccontainersize 369348 +doccontainerchecksum 86fcf60dfcc1d94ae3ecf463b304e42a8b6771bb7dc313308de45a2cf3fe657e8a1b6c503d8fdc9720ace105424d113988d7ea438b2030563c6bed1fea607dc8 +docfiles size=93 + RELOC/doc/latex/xsavebox/ChangeLog + RELOC/doc/latex/xsavebox/README + RELOC/doc/latex/xsavebox/xsavebox.pdf details="Package documentation" +srccontainersize 4148 +srccontainerchecksum 3a7ba89397ba9c4ba6b484ee0bbb849e5b71aface877ef68b6df510d1c3b976dd571715662fe63d1c73922748292767936774778bb6a096c9f9bc9720aeff153 +srcfiles size=3 + RELOC/source/latex/xsavebox/xsavebox.tex +runfiles size=3 + RELOC/tex/latex/xsavebox/xsavebox.sty +catalogue-contact-repository https://gitlab.com/agrahn/xsavebox +catalogue-ctan /macros/latex/contrib/xsavebox +catalogue-date 2018-07-09 17:37:27 +0200 +catalogue-license lppl1.3 +catalogue-topics boxing pdf-feat adobe-distiller +catalogue-version 0.12 + +name xsim +category Package +revision 46634 +shortdesc eXercise Sheets IMproved +relocated 1 +longdesc This package helps in creating exercises and the corresponding +longdesc solutions. It is the official successor of the exsheets package +longdesc and fixes/improves various long-standing issues. +containersize 29244 +containerchecksum ef198c64ae58b3a5c0062bb18de07c595c6f260bd6684d75aa5af8e22dcb5b83d305a8d2e1db666fbae321b91a36c62cc6ef6c971cc576d9fb58c88bff01d57d +doccontainersize 2470624 +doccontainerchecksum 6ebf584d3b21c2afd414e7a6dc77211764b558687c9e453a3856961b2a753f684025fa40f45f1dbfd82cb73bdab2ff0e7ee8a4a94776c808fe6afd551f67644a +docfiles size=748 + RELOC/doc/latex/xsim/README details="Readme" + RELOC/doc/latex/xsim/examples/xsim.blanks.pdf + RELOC/doc/latex/xsim/examples/xsim.blanks.tex + RELOC/doc/latex/xsim/examples/xsim.boxed-headings.pdf + RELOC/doc/latex/xsim/examples/xsim.boxed-headings.tex + RELOC/doc/latex/xsim/examples/xsim.code-and-output.pdf + RELOC/doc/latex/xsim/examples/xsim.code-and-output.tex + RELOC/doc/latex/xsim/examples/xsim.collections.pdf + RELOC/doc/latex/xsim/examples/xsim.collections.tex + RELOC/doc/latex/xsim/examples/xsim.crossref.pdf + RELOC/doc/latex/xsim/examples/xsim.crossref.tex + RELOC/doc/latex/xsim/examples/xsim.description-list.pdf + RELOC/doc/latex/xsim/examples/xsim.description-list.tex + RELOC/doc/latex/xsim/examples/xsim.different-point-types.pdf + RELOC/doc/latex/xsim/examples/xsim.different-point-types.tex + RELOC/doc/latex/xsim/examples/xsim.difficulties.pdf + RELOC/doc/latex/xsim/examples/xsim.difficulties.tex + RELOC/doc/latex/xsim/examples/xsim.floating.pdf + RELOC/doc/latex/xsim/examples/xsim.floating.tex + RELOC/doc/latex/xsim/examples/xsim.golatex-80640.pdf + RELOC/doc/latex/xsim/examples/xsim.golatex-80640.tex + RELOC/doc/latex/xsim/examples/xsim.golatex-91339.pdf + RELOC/doc/latex/xsim/examples/xsim.golatex-91339.tex + RELOC/doc/latex/xsim/examples/xsim.grade-distribution.pdf + RELOC/doc/latex/xsim/examples/xsim.grade-distribution.tex + RELOC/doc/latex/xsim/examples/xsim.hints.pdf + RELOC/doc/latex/xsim/examples/xsim.hints.tex + RELOC/doc/latex/xsim/examples/xsim.listings.pdf + RELOC/doc/latex/xsim/examples/xsim.listings.tex + RELOC/doc/latex/xsim/examples/xsim.listofexercises.pdf + RELOC/doc/latex/xsim/examples/xsim.listofexercises.tex + RELOC/doc/latex/xsim/examples/xsim.multiplechoice.pdf + RELOC/doc/latex/xsim/examples/xsim.multiplechoice.tex + RELOC/doc/latex/xsim/examples/xsim.pointsums.pdf + RELOC/doc/latex/xsim/examples/xsim.pointsums.tex + RELOC/doc/latex/xsim/examples/xsim.randomexercises.pdf + RELOC/doc/latex/xsim/examples/xsim.randomexercises.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-13635.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-13635.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-155630.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-155630.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-199360.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-199360.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-299534.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-299534.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-305110.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-305110.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-308883.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-308883.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-338165.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-338165.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-350028.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-350028.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-369065.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-369065.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-369636.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-369636.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-369803.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-369803.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-370642.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-370642.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-391530.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-391530.tex + RELOC/doc/latex/xsim/examples/xsim.texsx-395273.pdf + RELOC/doc/latex/xsim/examples/xsim.texsx-395273.tex + RELOC/doc/latex/xsim/examples/xsim.texwelt-15093.pdf + RELOC/doc/latex/xsim/examples/xsim.texwelt-15093.tex + RELOC/doc/latex/xsim/examples/xsim.texwelt-6698.pdf + RELOC/doc/latex/xsim/examples/xsim.texwelt-6698.tex + RELOC/doc/latex/xsim/examples/xsim.various.pdf + RELOC/doc/latex/xsim/examples/xsim.various.tex + RELOC/doc/latex/xsim/xsim.history + RELOC/doc/latex/xsim/xsim.ideas + RELOC/doc/latex/xsim/xsim_manual.pdf details="Package documentation" + RELOC/doc/latex/xsim/xsim_manual.tex +runfiles size=63 + RELOC/tex/latex/xsim/xsim-manual.cls + RELOC/tex/latex/xsim/xsim.auxfile.code.tex + RELOC/tex/latex/xsim/xsim.base.code.tex + RELOC/tex/latex/xsim/xsim.blanks.code.tex + RELOC/tex/latex/xsim/xsim.collections.code.tex + RELOC/tex/latex/xsim/xsim.definitions.code.tex + RELOC/tex/latex/xsim/xsim.environments.code.tex + RELOC/tex/latex/xsim/xsim.exercises.code.tex + RELOC/tex/latex/xsim/xsim.goals.code.tex + RELOC/tex/latex/xsim/xsim.grades.code.tex + RELOC/tex/latex/xsim/xsim.interface.code.tex + RELOC/tex/latex/xsim/xsim.modules.code.tex + RELOC/tex/latex/xsim/xsim.properties.code.tex + RELOC/tex/latex/xsim/xsim.random.code.tex + RELOC/tex/latex/xsim/xsim.solutions.code.tex + RELOC/tex/latex/xsim/xsim.sty + RELOC/tex/latex/xsim/xsim.style.layouts.code.tex + RELOC/tex/latex/xsim/xsim.tags.code.tex + RELOC/tex/latex/xsim/xsim.templates.code.tex + RELOC/tex/latex/xsim/xsim.translations.code.tex + RELOC/tex/latex/xsim/xsim.verbwrite.code.tex + RELOC/tex/latex/xsim/xsimverb.sty +catalogue-contact-bugs https://github.com/cgnieder/xsim/issues +catalogue-contact-repository https://github.com/cgnieder/xsim/ +catalogue-ctan /macros/latex/contrib/xsim +catalogue-date 2018-02-14 13:24:04 +0100 +catalogue-license lppl1.3 +catalogue-topics exercise exam expl3 +catalogue-version 0.11 + name xskak category Package revision 35945 -shortdesc An extension to the skak package for chess typesetting. +shortdesc An extension to the skak package for chess typesetting relocated 1 longdesc Xskak, as its prime function, saves information about a chess longdesc game for later use (e.g., to loop through a game to make an longdesc animated board). The package also extends the input that the longdesc parsing commands can handle and offers an interface to define longdesc and switch between indefinite levels of styles. -runfiles size=23 - RELOC/tex/latex/xskak/xskak-keys.sty - RELOC/tex/latex/xskak/xskak-nagdef.sty - RELOC/tex/latex/xskak/xskak.sty +containersize 14060 +containerchecksum 767827898507c08dac310801c0db2b460cb3f595f9c0e926864ef9f079b37840c80507ae07f8528c025d69a657bc82751c04c5bc80dafef8e8b3d9a3cfceeb97 +doccontainersize 1168 +doccontainerchecksum 3b2c8d57c6da0c973ab3a538dfc5ea11d3115c8cb42cdd5bb80292706aabf136d0e123829a80f49cc3f1080866565c6294d75123a3e58eff3674f18b2664cde7 docfiles size=2 - RELOC/doc/latex/xskak/README + RELOC/doc/latex/xskak/README details="Readme" RELOC/doc/latex/xskak/README.TEXLIVE +srccontainersize 14252 +srccontainerchecksum 89254caef71f65472c280207ef15ce9f520e1bfc789cc3ccb234c4256a29fad8a136ef77adb510e3f7ff36a9ce43ac8a1a4df4779c9cb305152dc0bbb71ee230 srcfiles size=23 RELOC/source/latex/xskak/xskak-src.dtx RELOC/source/latex/xskak/xskak.ins +runfiles size=23 + RELOC/tex/latex/xskak/xskak-keys.sty + RELOC/tex/latex/xskak/xskak-nagdef.sty + RELOC/tex/latex/xskak/xskak.sty catalogue-ctan /macros/latex/contrib/xskak -catalogue-date 2015-01-02 17:09:53 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics games catalogue-version 1.4 name xstring category Package -revision 31900 -shortdesc String manipulation for (La)TeX. +revision 49946 +shortdesc String manipulation for (La)TeX relocated 1 longdesc The package provides macros for manipulating strings -- testing longdesc a string's contents, extracting substrings, substitution of @@ -180294,87 +305849,188 @@ longdesc position of, or number of recurrences of, a substring. The longdesc package works equally in Plain TeX and LaTeX (though e-TeX is longdesc always required). The strings to be processed may contain longdesc (expandable) macros. -runfiles size=15 +containersize 11216 +containerchecksum 82254f103053d91eeea4c6230142de06138c392542cac63731c7b34fec5130984bbdebc29ac3b56998717dca11ad444c44f410215b6b89e6748029721a9daac6 +doccontainersize 656876 +doccontainerchecksum c0c17b82ad0d5aad95d312935e0214a7e5404a23b9a284a56ac92ec9ea936a9bfd3a68a5b01e29c131b7850a3fd3922ac87020166eaf0a7ed9d695dc80d0a931 +docfiles size=229 + RELOC/doc/generic/xstring/README details="Readme" + RELOC/doc/generic/xstring/test_etex.pdf + RELOC/doc/generic/xstring/test_etex.tex + RELOC/doc/generic/xstring/test_latex.pdf + RELOC/doc/generic/xstring/test_latex.tex + RELOC/doc/generic/xstring/xstring-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/xstring/xstring-en.tex + RELOC/doc/generic/xstring/xstring-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/generic/xstring/xstring-fr.tex +runfiles size=13 RELOC/tex/generic/xstring/xstring.sty RELOC/tex/generic/xstring/xstring.tex -docfiles size=172 - RELOC/doc/generic/xstring/README - RELOC/doc/generic/xstring/xstring_doc_en.pdf - RELOC/doc/generic/xstring/xstring_doc_en.tex - RELOC/doc/generic/xstring/xstring_doc_fr.pdf - RELOC/doc/generic/xstring/xstring_doc_fr.tex +catalogue-contact-bugs https://framagit.org/unbonpetit/xstring/issues +catalogue-contact-repository https://framagit.org/unbonpetit/xstring/tree/master catalogue-ctan /macros/generic/xstring -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license lppl -catalogue-version 1.7c +catalogue-date 2019-02-05 20:56:57 +0100 +catalogue-license lppl1.3c +catalogue-topics string +catalogue-version 1.83 name xtab category Package revision 23347 -shortdesc Break tables across pages. +shortdesc Break tables across pages relocated 1 longdesc Xtab is an extended and somewhat improved version of longdesc supertabular; its xtabular environment provides tables that longdesc break across pages. -runfiles size=5 - RELOC/tex/latex/xtab/xtab.sty +containersize 4668 +containerchecksum e308d3ae3ae32b945450b319834dfac19b6006cb0ede7f21a91999b840528927aaca7cdc330a02ebad874602d6d268fd1fe609dcb52bef2757b2e0417310e012 +doccontainersize 362720 +doccontainerchecksum 10a158bf2d50fa89355654da36a179bbbc5d30ef3efa8a79537de66c50a892f540938cb364e45896dc079266d5e47bfc2c74b8cfe01ec1691cde34bc221e4ca2 docfiles size=90 - RELOC/doc/latex/xtab/README - RELOC/doc/latex/xtab/xtab.pdf + RELOC/doc/latex/xtab/README details="Readme" + RELOC/doc/latex/xtab/xtab.pdf details="Package documentation" +srccontainersize 19556 +srccontainerchecksum 0ae0bc4d96f8b7c4dd5bc62d56538ef5e8f5d8d8ecdb114759209dedc722a2aee1b646a27cff611bfd2ec9ac96f0633393cef9d3a13a6d54978740b28fcc09c6 srcfiles size=22 RELOC/source/latex/xtab/xtab.dtx RELOC/source/latex/xtab/xtab.ins +runfiles size=5 + RELOC/tex/latex/xtab/xtab.sty +catalogue-also longtable catalogue-ctan /macros/latex/contrib/xtab -catalogue-date 2013-09-03 17:01:13 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics table table-long catalogue-version 2.3f +name xtuthesis +category Package +revision 47049 +shortdesc XTU thesis template +relocated 1 +longdesc The package provides a thesis template for the Xiangtan +longdesc University. +containersize 3564 +containerchecksum 5d9081b8d197952aa5ff58b1cbd490bb529cbbc1b72956cca8dd28b1b6bc12c6248d3d04fd457349b30df7594aa1872ce9c8438feb67af1b93ff0fd33eefcb7d +doccontainersize 833404 +doccontainerchecksum 96e94598e3e397a9657a83496d940aa2525fdbe1ec2cf820b05e5493b1f3e1c45568e16b62c22d4ee25afe2bd0657848a433477e82cc8038895c2195139ca065 +docfiles size=437 + RELOC/doc/latex/xtuthesis/README.md details="Readme" language="zh" + RELOC/doc/latex/xtuthesis/body/aboutme.tex + RELOC/doc/latex/xtuthesis/body/bibliography.tex + RELOC/doc/latex/xtuthesis/body/elements.tex + RELOC/doc/latex/xtuthesis/body/expression.tex + RELOC/doc/latex/xtuthesis/body/introduction.tex + RELOC/doc/latex/xtuthesis/body/thank.tex + RELOC/doc/latex/xtuthesis/body/thesisformat.tex + RELOC/doc/latex/xtuthesis/clear.sh + RELOC/doc/latex/xtuthesis/figures/Correct_Ratio.pdf + RELOC/doc/latex/xtuthesis/figures/Lenna.pdf + RELOC/doc/latex/xtuthesis/figures/Lenna_e.pdf + RELOC/doc/latex/xtuthesis/preface/abstract.tex + RELOC/doc/latex/xtuthesis/preface/cover.tex + RELOC/doc/latex/xtuthesis/reference/GBTbibsty.bst + RELOC/doc/latex/xtuthesis/reference/IEEEtran.cls + RELOC/doc/latex/xtuthesis/reference/ref.bib + RELOC/doc/latex/xtuthesis/reference/references.tex + RELOC/doc/latex/xtuthesis/xtu.pdf + RELOC/doc/latex/xtuthesis/xtuthesis.pdf details="Package documentation" language="zh" + RELOC/doc/latex/xtuthesis/xtuthesis.tex +runfiles size=3 + RELOC/tex/latex/xtuthesis/xtuformat.sty +catalogue-contact-bugs https://github.com/MrDongdongLin/xtuthesis/pulls +catalogue-contact-home https://github.com/MrDongdongLin/xtuthesis +catalogue-contact-repository https://github.com/MrDongdongLin/xtuthesis +catalogue-ctan /macros/latex/contrib/xtuthesis +catalogue-date 2018-04-29 07:15:59 +0200 +catalogue-license lppl1.3 +catalogue-topics chinese dissertation +catalogue-version 1.0 + name xunicode category Package revision 30466 -shortdesc Generate Unicode characters from accented glyphs. +shortdesc Generate Unicode characters from accented glyphs relocated 1 longdesc The package supports XeTeX's (and other putative future similar longdesc engines') need for Unicode characters, in a similar way to what -longdesc the fontenc does for 8-bit (and the like) fonts: convert accent- -longdesc glyph sequence to a single Unicode character for output. The -longdesc package also covers glyphs specified by packages (such as tipa) -longdesc which define many commands for single text glyphs. +longdesc the fontenc does for 8-bit (and the like) fonts: convert +longdesc accent-glyph sequence to a single Unicode character for output. +longdesc The package also covers glyphs specified by packages (such as +longdesc tipa) which define many commands for single text glyphs. depend tipa +containersize 25768 +containerchecksum f49628013bc54e82bc38a2c749ddde9426c65716f04c5c8d8264398b9595e571d380e07c045db9e7ed5d6df7d0b7b1f8e81eaa28d6b67a6756d2c5023b731176 +doccontainersize 584 +doccontainerchecksum fbd368180c97649944aa23fae4f50f8a8d1aaa776f643ba520f121b9aae196dca94c11906f9d5b2f961b6d494256329670af1f4563502b44a8fc9633e29373e0 +docfiles size=1 + RELOC/doc/xelatex/xunicode/README details="Readme" runfiles size=51 RELOC/tex/xelatex/xunicode/xunicode.sty -docfiles size=1 - RELOC/doc/xelatex/xunicode/README +catalogue-also euenc catalogue-ctan /macros/xetex/latex/xunicode -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-10-08 12:19:27 +0200 catalogue-license lppl1.3 +catalogue-topics preprocessor unicode catalogue-version 0.981 +name xurl +category Package +revision 49488 +shortdesc Allow URL breaks at any alphanumerical character +relocated 1 +longdesc This package loads url by default and defines possible URL +longdesc breaks for all alphanumerical characters, as well as = / . : * +longdesc - ~ ' " All arguments which are valid for url can be used and +longdesc will be passed on to this package. For more information read +longdesc the documentation of url itself. +containersize 1532 +containerchecksum aa1a45825336ed3d62aec9671c53269c3e7e506092fc62e79075ef5bfe483003c513e402e09595ecc9a2f77f637665bbeff89948b1b6c30bcde2022bb110b1f7 +doccontainersize 44104 +doccontainerchecksum e69e6008e98bd6de089745223e9ad9690ab29069ff5e6a7ada1bdadba24fac2e16d703ce7534c8403ba4c1a9f84fb53477a1eded5e9522f8f15f17dde463726a +docfiles size=14 + RELOC/doc/latex/xurl/Changes + RELOC/doc/latex/xurl/README.md details="Readme" + RELOC/doc/latex/xurl/xurl.pdf details="Package documentation" + RELOC/doc/latex/xurl/xurl.tex +runfiles size=2 + RELOC/tex/latex/xurl/xurl.sty +catalogue-ctan /macros/latex/contrib/xurl +catalogue-date 2018-12-23 12:25:27 +0100 +catalogue-license lppl1.3 +catalogue-topics verbatim +catalogue-version 0.07 + name xwatermark category Package revision 28090 -shortdesc Graphics and text watermarks on selected pages. +shortdesc Graphics and text watermarks on selected pages relocated 1 longdesc The package extends the author's draftmark and the watermark longdesc packages. -runfiles size=19 - RELOC/tex/latex/xwatermark/xwatermark.sty +containersize 16524 +containerchecksum 705c9eeccda8b2475cee782f6bb167691e985324361e6dbf147ef9843489f572f2e0b9e47a9f2beb7fdce68ef12ba2bbcb2ccf23c39db489d7d4486f09ff5787 +doccontainersize 582912 +doccontainerchecksum 70436c9927ed6c3c7604e1e70fa877b9be80287a18d9257abc85526fd756be5b0712b28b47b3271787f6ab062743964ca6eb5204005fec33c3a63d2dcab960ed docfiles size=187 - RELOC/doc/latex/xwatermark/README + RELOC/doc/latex/xwatermark/README details="Readme" RELOC/doc/latex/xwatermark/xwatermark-examples1.tex RELOC/doc/latex/xwatermark/xwatermark-examples2.pdf RELOC/doc/latex/xwatermark/xwatermark-examples2.tex - RELOC/doc/latex/xwatermark/xwatermark-guide.pdf + RELOC/doc/latex/xwatermark/xwatermark-guide.pdf details="Package documentation" RELOC/doc/latex/xwatermark/xwatermark-guide.tex +runfiles size=19 + RELOC/tex/latex/xwatermark/xwatermark.sty catalogue-ctan /macros/latex/contrib/xwatermark -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics background catalogue-version 1.5.2d name xyling category Package revision 15878 -shortdesc Draw syntactic trees, etc., for linguistics literature, using xy-pic. +shortdesc Draw syntactic trees, etc., for linguistics literature, using xy-pic relocated 1 longdesc The macros in this package model the construction of linguistic longdesc tree structures as a genuinely graphical problem: they contain @@ -180383,21 +306039,26 @@ longdesc positioned relative to a GRID. It is essential that each of longdesc these three elements is constructed independent of the other longdesc two, and hence they can be modified without unwanted side longdesc effects. The macros are based on the xy-pic package. -runfiles size=9 - RELOC/tex/latex/xyling/xyling.sty +containersize 10540 +containerchecksum 5f78d2d61050d9ed84d56136fe59b4674f4e03a536015e3ebc3b9500dd8a08878164ce9fb1aa9ca9a1262a000149061f3fe22f10cfd68941316aa186b81fe923 +doccontainersize 148332 +doccontainerchecksum 7b4ca312ea917329260eb0a19bd504ac2f3ddfb5f066806296b164fc541bfe26e6ed1c03ffac5b52af6b19fb4ba1e77b5228ac4b4db0c2ee8f2394fc0f888d09 docfiles size=52 - RELOC/doc/latex/xyling/README - RELOC/doc/latex/xyling/xyli-doc.pdf + RELOC/doc/latex/xyling/README details="README file" + RELOC/doc/latex/xyling/xyli-doc.pdf details="Package documentation" language="en" RELOC/doc/latex/xyling/xyli-doc.tex +runfiles size=9 + RELOC/tex/latex/xyling/xyling.sty catalogue-ctan /macros/latex/contrib/xyling -catalogue-date 2012-06-08 10:58:36 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics linguistic tree catalogue-version 1.1 name xymtex category Package revision 32182 -shortdesc Typesetting chemical structures. +shortdesc Typesetting chemical structures relocated 1 longdesc XyMTeX is a set of packages for drawing a wide variety of longdesc chemical structural formulas in a way that reflects their @@ -180407,36 +306068,12 @@ longdesc of arguments for specifying substituents and their positions, longdesc endocyclic double bonds, and bond patterns. In some cases there longdesc are additional arguments for specifying hetero-atoms on the longdesc vertices of heterocycles. It is believed that this systematic -longdesc design allows XyMTeX to operate as a practical (device- -longdesc independent) tool for use with LaTeX. -runfiles size=290 - RELOC/tex/latex/xymtex/base/aliphat.sty - RELOC/tex/latex/xymtex/base/assurelatexmode.sty - RELOC/tex/latex/xymtex/base/bondcolor.sty - RELOC/tex/latex/xymtex/base/carom.sty - RELOC/tex/latex/xymtex/base/ccycle.sty - RELOC/tex/latex/xymtex/base/chemstr.sty - RELOC/tex/latex/xymtex/base/fusering.sty - RELOC/tex/latex/xymtex/base/hcycle.sty - RELOC/tex/latex/xymtex/base/hetarom.sty - RELOC/tex/latex/xymtex/base/hetaromh.sty - RELOC/tex/latex/xymtex/base/lewisstruc.sty - RELOC/tex/latex/xymtex/base/locant.sty - RELOC/tex/latex/xymtex/base/lowcycle.sty - RELOC/tex/latex/xymtex/base/methylen.sty - RELOC/tex/latex/xymtex/base/polymers.sty - RELOC/tex/latex/xymtex/base/sizeredc.sty - RELOC/tex/latex/xymtex/base/steroid.sty - RELOC/tex/latex/xymtex/base/xymtex.sty - RELOC/tex/latex/xymtex/base/xymtexpdf.sty - RELOC/tex/latex/xymtex/base/xymtexps.sty - RELOC/tex/latex/xymtex/chemist/assurechemist.sty - RELOC/tex/latex/xymtex/chemist/chemist.sty - RELOC/tex/latex/xymtex/chemist/chemtimes.sty - RELOC/tex/latex/xymtex/xymtxpdf/chmst-pdf.sty - RELOC/tex/latex/xymtex/xymtxpdf/xymtx-pdf.sty - RELOC/tex/latex/xymtex/xymtxps/chmst-ps.sty - RELOC/tex/latex/xymtex/xymtxps/xymtx-ps.sty +longdesc design allows XyMTeX to operate as a practical +longdesc (device-independent) tool for use with LaTeX. +containersize 88744 +containerchecksum 9f0f14d1a862622ad0ef695a58f7dab554daac8d5151193a70c94ea872d16fe8eb1a763d03b226b08583db484bf576f5a41d2070d5396ac323ed00ccb0daf5e1 +doccontainersize 11504 +doccontainerchecksum 0e2eb5439f2e629da902e4c7d7ddd2d03bc4d654c4ee49e6b005450174acbd70760b52c9deb446ca60efe7c0389403584b86a6f9c9964cf24858b13cfccf7ed3 docfiles size=71 RELOC/doc/latex/xymtex/doc/README.TEXLIVE RELOC/doc/latex/xymtex/readme/oldreadme/readme402.doc @@ -180468,9 +306105,11 @@ docfiles size=71 RELOC/doc/latex/xymtex/readme/oldreadme/xymtx500a.doc RELOC/doc/latex/xymtex/readme/oldreadme/xymtx500a.jpn RELOC/doc/latex/xymtex/readme/readme501.doc - RELOC/doc/latex/xymtex/readme/readme501.jpn + RELOC/doc/latex/xymtex/readme/readme501.jpn details="Readme" language="ja" RELOC/doc/latex/xymtex/readme/xymtx501.doc RELOC/doc/latex/xymtex/readme/xymtx501.jpn +srccontainersize 164296 +srccontainerchecksum d805d6fcb72fb801001ad80fe43ee36126c0764f8baa96dff9fffcf7452bba8e5cf42cbca6a50b89f5925607c277b3fb7408f8f7e6ab087edbade0dac294252a srcfiles size=592 RELOC/source/latex/xymtex/base/aliphat.dtx RELOC/source/latex/xymtex/base/aliphat.ins @@ -180526,22 +306165,75 @@ srcfiles size=592 RELOC/source/latex/xymtex/xymtxps/xymtx-ps.drv RELOC/source/latex/xymtex/xymtxps/xymtx-ps.dtx RELOC/source/latex/xymtex/xymtxps/xymtx-ps.ins +runfiles size=290 + RELOC/tex/latex/xymtex/base/aliphat.sty + RELOC/tex/latex/xymtex/base/assurelatexmode.sty + RELOC/tex/latex/xymtex/base/bondcolor.sty + RELOC/tex/latex/xymtex/base/carom.sty + RELOC/tex/latex/xymtex/base/ccycle.sty + RELOC/tex/latex/xymtex/base/chemstr.sty + RELOC/tex/latex/xymtex/base/fusering.sty + RELOC/tex/latex/xymtex/base/hcycle.sty + RELOC/tex/latex/xymtex/base/hetarom.sty + RELOC/tex/latex/xymtex/base/hetaromh.sty + RELOC/tex/latex/xymtex/base/lewisstruc.sty + RELOC/tex/latex/xymtex/base/locant.sty + RELOC/tex/latex/xymtex/base/lowcycle.sty + RELOC/tex/latex/xymtex/base/methylen.sty + RELOC/tex/latex/xymtex/base/polymers.sty + RELOC/tex/latex/xymtex/base/sizeredc.sty + RELOC/tex/latex/xymtex/base/steroid.sty + RELOC/tex/latex/xymtex/base/xymtex.sty + RELOC/tex/latex/xymtex/base/xymtexpdf.sty + RELOC/tex/latex/xymtex/base/xymtexps.sty + RELOC/tex/latex/xymtex/chemist/assurechemist.sty + RELOC/tex/latex/xymtex/chemist/chemist.sty + RELOC/tex/latex/xymtex/chemist/chemtimes.sty + RELOC/tex/latex/xymtex/xymtxpdf/chmst-pdf.sty + RELOC/tex/latex/xymtex/xymtxpdf/xymtx-pdf.sty + RELOC/tex/latex/xymtex/xymtxps/chmst-ps.sty + RELOC/tex/latex/xymtex/xymtxps/xymtx-ps.sty catalogue-ctan /macros/latex/contrib/xymtex -catalogue-date 2013-11-19 14:03:04 +0100 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl1.3 +catalogue-topics chemistry diagram catalogue-version 5.06 name xypic category Package revision 31859 -shortdesc Flexible diagramming macros. +shortdesc Flexible diagramming macros relocated 1 longdesc A package for typesetting a variety of graphs and diagrams with -longdesc TeX. Xy-pic works with most formats (including LaTeX, AMS- -longdesc LaTeX, AMS-TeX, and plain TeX). The distribution includes +longdesc TeX. Xy-pic works with most formats (including LaTeX, +longdesc AMS-LaTeX, AMS-TeX, and plain TeX). The distribution includes longdesc Michael Barr's diag package, which was previously distributed longdesc stand-alone. execute addMixedMap xypic.map +containersize 709808 +containerchecksum 5bf1323499bd801e2d5e9ca2eaaf3d7726ed6b8063dee18180eec775ea4d2f86cca8bcae262375455af64ae00951a41b34386fd90666a2a89114a2fcf23ccb7f +doccontainersize 3923196 +doccontainerchecksum cee264a3a8ee8f599b2310b4c9b722835a61fe8455c3f873ba91ad22ac7890cff8a1ef25f3d0b80aedd6420f31742f4e533fe20fc81dc83e4cc018684180c7ff +docfiles size=1062 + RELOC/doc/generic/xypic/CATALOG + RELOC/doc/generic/xypic/COPYING + RELOC/doc/generic/xypic/FONTCOPYING + RELOC/doc/generic/xypic/INSTALL + RELOC/doc/generic/xypic/MANIFEST + RELOC/doc/generic/xypic/README + RELOC/doc/generic/xypic/TRAILER + RELOC/doc/generic/xypic/VERSIONS + RELOC/doc/generic/xypic/Xy-logo.png + RELOC/doc/generic/xypic/Xy-pic.html + RELOC/doc/generic/xypic/barrdoc.pdf + RELOC/doc/generic/xypic/support/dvitogif89a + RELOC/doc/generic/xypic/support/install-tds + RELOC/doc/generic/xypic/support/pnmrawtopcropwhite.c + RELOC/doc/generic/xypic/xy389src.tar.gz + RELOC/doc/generic/xypic/xyguide.pdf details="User guide" language="en" + RELOC/doc/generic/xypic/xypdf.pdf details="PDF output using xypdf" language="en" + RELOC/doc/generic/xypic/xyrefer.pdf details="Reference manual" language="en" + RELOC/doc/generic/xypic/xysource.pdf details="Documented source" language="en" runfiles size=575 RELOC/dvips/xypic/xy389dict.pro RELOC/fonts/afm/public/xypic/xyatip10.afm @@ -180743,127 +306435,187 @@ runfiles size=575 RELOC/tex/generic/xypic/xyv2.tex RELOC/tex/generic/xypic/xyweb.tex RELOC/tex/generic/xypic/xyxdvi.tex -docfiles size=1062 - RELOC/doc/generic/xypic/CATALOG - RELOC/doc/generic/xypic/COPYING - RELOC/doc/generic/xypic/FONTCOPYING - RELOC/doc/generic/xypic/INSTALL - RELOC/doc/generic/xypic/MANIFEST - RELOC/doc/generic/xypic/README - RELOC/doc/generic/xypic/TRAILER - RELOC/doc/generic/xypic/VERSIONS - RELOC/doc/generic/xypic/Xy-logo.png - RELOC/doc/generic/xypic/Xy-pic.html - RELOC/doc/generic/xypic/barrdoc.pdf - RELOC/doc/generic/xypic/support/dvitogif89a - RELOC/doc/generic/xypic/support/install-tds - RELOC/doc/generic/xypic/support/pnmrawtopcropwhite.c - RELOC/doc/generic/xypic/xy389src.tar.gz - RELOC/doc/generic/xypic/xyguide.pdf - RELOC/doc/generic/xypic/xypdf.pdf - RELOC/doc/generic/xypic/xyrefer.pdf - RELOC/doc/generic/xypic/xysource.pdf +catalogue-also xypic-tut-pt +catalogue-contact-home http://tug.org/applications/Xy-pic/Xy-pic.html catalogue-ctan /macros/generic/diagrams/xypic -catalogue-date 2015-03-07 10:28:05 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license gpl +catalogue-topics diagram catalogue-version 3.8.9 name xypic-tut-pt category Package revision 15878 -shortdesc A tutorial for XY-pic, in Portuguese. +shortdesc A tutorial for XY-pic, in Portuguese relocated 1 +containersize 360 +containerchecksum 291825c3461b397deb825266c7ee4316c5d04b8db1a29759378409de55c20d81552e31260468f4fa6a9a04f04705422714a8ec70a866c87fca2f4f1e189e0e4e +doccontainersize 225208 +doccontainerchecksum e27dfa0b36341bcd02ba63a8b543f1a6c55c674745cc790543ea2cfded80e536e5901f184a3af62b92b4534c738a06bf4fd5cbd4dfb4da865d13991279309aac docfiles size=77 RELOC/doc/generic/xypic-tut-pt/README RELOC/doc/generic/xypic-tut-pt/grafico.eps - RELOC/doc/generic/xypic-tut-pt/xypic-tutorial.pdf + RELOC/doc/generic/xypic-tut-pt/xypic-tutorial.pdf details="The document itself" language="pt" RELOC/doc/generic/xypic-tut-pt/xypictutorial.tex catalogue-ctan /info/portuguese/xypic-tutorial -catalogue-date 2012-06-08 10:58:36 +0200 +catalogue-date 2016-06-18 16:48:54 +0200 catalogue-license gpl +catalogue-topics portuguese-doc name xytree category Package revision 15878 -shortdesc Tree macros using XY-Pic. +shortdesc Tree macros using XY-Pic relocated 1 longdesc The package provides means to draw linguistic syntactic trees longdesc with ease and to support hopefully sufficient functionalities, longdesc that the linguist may need. The package (of course) depends on longdesc the XY-Pic package. -runfiles size=3 - RELOC/tex/latex/xytree/xytree.sty +containersize 3584 +containerchecksum fdabfc451679f7ef3752db2537a7dd51e9c0fd34337e429f24e44728ec1ee0a9b97fc2f176948440a5c1cda609182f60d4c564ddcd76c70e84410cc6a0b1f371 +doccontainersize 230760 +doccontainerchecksum 0e2b08c8db25a5bd992c8aa843d8f6fb2e0efb3c11ea9dd0ac69106cd71f58996f73786513e0ff13bfb54932f468297edbb981e3efccfec2652f80bb02fc6ba7 docfiles size=80 - RELOC/doc/latex/xytree/README - RELOC/doc/latex/xytree/xytree-doc-en.pdf + RELOC/doc/latex/xytree/README details="Package README" + RELOC/doc/latex/xytree/xytree-doc-en.pdf details="Package documentation" language="en" RELOC/doc/latex/xytree/xytree-doc-en.tex +runfiles size=3 + RELOC/tex/latex/xytree/xytree.sty catalogue-ctan /macros/latex/contrib/xytree -catalogue-date 2012-02-10 18:28:55 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics tree linguistic catalogue-version 1.5 name yafoot category Package -revision 19086 -shortdesc A bundle of miscellaneous footnote packages. +revision 48568 +shortdesc A bundle of miscellaneous footnote packages relocated 1 longdesc Contains three packages: - pfnote to number footnotes per page; longdesc - fnpos to control the position of footnotes; and - dblfnote to longdesc make footnotes double-columned. -runfiles size=5 - RELOC/tex/latex/yafoot/dblfnote.sty - RELOC/tex/latex/yafoot/fnpos.sty - RELOC/tex/latex/yafoot/pfnote.sty -docfiles size=68 - RELOC/doc/latex/yafoot/README - RELOC/doc/latex/yafoot/yafoot-man.pdf +containersize 3864 +containerchecksum 75ab34d40fb051000783abf573f4507e3791ea5aa1cf4b8571ad16bc020f10d17a49220a2878e5a2791fb7f073613ed20d72cd5618feadf38e290ee4f047e615 +doccontainersize 265880 +doccontainerchecksum 322e9cd25fd7686c4325d04bc7dfa00aee45fe993bdb730ca3669cf860b7cbae1dc76483fe3dec11e09ad848f166a01f43ad0885e0e9fe324ef28d28a7d2b4ad +docfiles size=67 + RELOC/doc/latex/yafoot/README details="Bundle Readme" + RELOC/doc/latex/yafoot/yafoot-man.pdf details="Bundle documentation" RELOC/doc/latex/yafoot/yafoot-man.tex +srccontainersize 16792 +srccontainerchecksum 5159db9c0f8e1f1ba4fd265c1188c47271b6da4290c33f65e8284b0c95d8144a3219951e13c1fb8e7fc172f2cd0094cc73d63fcd0cab67908f6542881930d772 srcfiles size=16 RELOC/source/latex/yafoot/yafoot.dtx RELOC/source/latex/yafoot/yafoot.ins +runfiles size=5 + RELOC/tex/latex/yafoot/dblfnote.sty + RELOC/tex/latex/yafoot/fnpos.sty + RELOC/tex/latex/yafoot/pfnote.sty catalogue-ctan /macros/latex/contrib/yafoot -catalogue-date 2011-11-05 20:23:42 +0100 +catalogue-date 2018-09-03 08:40:26 +0200 catalogue-license lppl +catalogue-topics footnote +catalogue-version 1.1 name yagusylo category Package revision 29803 -shortdesc A symbol loader. +shortdesc A symbol loader relocated 1 longdesc The name is by way of being an acronym for "Yet Another Grand longdesc Unified Symbols Loader"... The package allows the user to longdesc access a symbol without loading the package that usually longdesc provides it; this has the advantage of avoiding the name -longdesc clashes that so commonly trouble those who load symbol- -longdesc packages. -runfiles size=7 - RELOC/tex/latex/yagusylo/yagusylo.cfg - RELOC/tex/latex/yagusylo/yagusylo.sty +longdesc clashes that so commonly trouble those who load +longdesc symbol-packages. +containersize 5812 +containerchecksum f6f367155aa16ab0133957fea3c099d4e839f248a87ccca430e43c08257b2aed3a11c77ceaf8484097910bcee2dfadf260ab5047fa7f0244b43bcf332f367bf0 +doccontainersize 1661528 +doccontainerchecksum 0ba73f1c7c7d7d646312f8a3d35c0d063e792ebae45c3e869565f01ef65e14f31bee463a1ebb8ad60166d54cdc23a9d21684675a6ccb09b8da233badb0d0ad96 docfiles size=653 - RELOC/doc/latex/yagusylo/LISEZMOI - RELOC/doc/latex/yagusylo/README - RELOC/doc/latex/yagusylo/yagusylo-en.pdf - RELOC/doc/latex/yagusylo/yagusylo-fr.pdf - RELOC/doc/latex/yagusylo/yagusylo.pdf + RELOC/doc/latex/yagusylo/LISEZMOI details="Lisez moi" language="fr" + RELOC/doc/latex/yagusylo/README details="Readme" language="en" + RELOC/doc/latex/yagusylo/yagusylo-en.pdf details="User documentation (English)" language="en" + RELOC/doc/latex/yagusylo/yagusylo-fr.pdf details="User documentation (French)" language="fr" + RELOC/doc/latex/yagusylo/yagusylo.pdf details="Source documentation" +srccontainersize 36632 +srccontainerchecksum 0bf71cf46e2cd66f9066dda7e7982f91e06803ad2c89358da94fc0ecd593ecfbed8b36ea9668f3e713987265fcdf03fdaae08ee9dcbf36ec1d22a91e3bfe84c1 srcfiles size=36 RELOC/source/latex/yagusylo/Makefile RELOC/source/latex/yagusylo/yagusylo.dtx RELOC/source/latex/yagusylo/yagusylo.ins +runfiles size=7 + RELOC/tex/latex/yagusylo/yagusylo.cfg + RELOC/tex/latex/yagusylo/yagusylo.sty catalogue-ctan /macros/latex/contrib/yagusylo -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font-supp-symbol catalogue-version 1.2 +name yaletter +category Package +revision 42830 +shortdesc Extremely flexible macros for letters, envelopes, and label sheets +relocated 1 +longdesc The yaletter class provides extremely configurable macros for +longdesc typesetting letters in any conceivable style. It provides +longdesc facilities for maintaining easily-accessible databases of +longdesc letterheads and addresses for repeat use. It further provides +longdesc easy macros for envelopes and for label sheets. Finally, it +longdesc provides some nice defaults for a few of the more common styles +longdesc and sizes. +containersize 4032 +containerchecksum 28765f3b6296ea3b9daf671543b7b2cf371bf2aefb4f3eefe6e95d50ee9a11516a7ec14fec5d15305e8f52d0089072cf10ce9dd4cba30c8fb60fa75365ff0d22 +doccontainersize 493204 +doccontainerchecksum ed81b08b0306ceb519c9a652ef0d271bfa486897b05bc3a91a3840e36d348ea86bdd645ae236d3f34de78d038de988a023e542075f871aa6d8752d9606910dc6 +docfiles size=142 + RELOC/doc/latex/yaletter/CHANGES + RELOC/doc/latex/yaletter/README details="Readme" + RELOC/doc/latex/yaletter/lppl.txt + RELOC/doc/latex/yaletter/yaletter.pdf details="Package documentation" +srccontainersize 18512 +srccontainerchecksum a2e64356234f9bf9bed1a73d5ea362ee487fb3eab43dc89241bf21c7033119e030cf3db81321b1eba245b3330103bff6a7b9f345e6df27f47de35ab9df4a6ace +srcfiles size=18 + RELOC/source/latex/yaletter/yaletter.dtx + RELOC/source/latex/yaletter/yaletter.ins +runfiles size=5 + RELOC/tex/latex/yaletter/yaletter.cls +catalogue-ctan /macros/latex/contrib/yaletter +catalogue-date 2017-01-03 05:00:21 +0100 +catalogue-license lppl1.3 +catalogue-topics letter +catalogue-version 1.1 + name yannisgr category Package revision 22613 -shortdesc Greek fonts by Yannis Haralambous. +shortdesc Greek fonts by Yannis Haralambous relocated 1 longdesc A family of 7-bit fonts with a code table designed for setting longdesc modern polytonic Greek. The fonts are provided as Metafont longdesc source; macros to produce a Greek variant of Plain TeX longdesc (including a hyphenation table adapted to the fonts' code longdesc table) are provided. +containersize 37576 +containerchecksum 509e69acdef68eadc65fef6980e9166c6327e8927fb9cdf6a7a33786a8668ac9b900954a4bb661f223967b26dd240d5ebd91683658b324be284e46876c39061d +doccontainersize 28912 +doccontainerchecksum 40ecdfe71670357e8ec84fd262015b5b5d0b8e486ab80c05d0863a335649501e9548d785cc2b2374f989b820dadd9a074cc229674dd1ae9a6252d4a0ebeb4191 +docfiles size=29 + RELOC/doc/fonts/yannisgr/00changes.txt + RELOC/doc/fonts/yannisgr/README details="Readme" + RELOC/doc/fonts/yannisgr/README.TEXLIVE + RELOC/doc/fonts/yannisgr/monsyl.txt + RELOC/doc/fonts/yannisgr/rgreekmacros.tex + RELOC/doc/fonts/yannisgr/rgrhyph.tex + RELOC/doc/fonts/yannisgr/rgrpaper.lis + RELOC/doc/fonts/yannisgr/rgrpaper.tex + RELOC/doc/fonts/yannisgr/rgrsc10.300gf + RELOC/doc/fonts/yannisgr/rgrsc10.lis + RELOC/doc/fonts/yannisgr/rgrsc10.pl + RELOC/doc/fonts/yannisgr/rgrtestfont.tex + RELOC/doc/fonts/yannisgr/tomakeformat.txt runfiles size=75 RELOC/fonts/source/public/yannisgr/csc_misce.mf RELOC/fonts/source/public/yannisgr/gen_m_acc.mf @@ -180901,147 +306653,124 @@ runfiles size=75 RELOC/fonts/tfm/public/yannisgr/rgrsc10.tfm RELOC/fonts/tfm/public/yannisgr/rgrsl10.tfm RELOC/fonts/tfm/public/yannisgr/rgrti10.tfm -docfiles size=29 - RELOC/doc/fonts/yannisgr/00changes.txt - RELOC/doc/fonts/yannisgr/README - RELOC/doc/fonts/yannisgr/README.TEXLIVE - RELOC/doc/fonts/yannisgr/monsyl.txt - RELOC/doc/fonts/yannisgr/rgreekmacros.tex - RELOC/doc/fonts/yannisgr/rgrhyph.tex - RELOC/doc/fonts/yannisgr/rgrpaper.lis - RELOC/doc/fonts/yannisgr/rgrpaper.tex - RELOC/doc/fonts/yannisgr/rgrsc10.300gf - RELOC/doc/fonts/yannisgr/rgrsc10.lis - RELOC/doc/fonts/yannisgr/rgrsc10.pl - RELOC/doc/fonts/yannisgr/rgrtestfont.tex - RELOC/doc/fonts/yannisgr/tomakeformat.txt catalogue-ctan /fonts/greek/yannis -catalogue-date 2014-04-28 17:48:37 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl2 +catalogue-topics font font-mf font-greek greek name yathesis category Package -revision 35306 -shortdesc yathesis provides a LaTeX class that aims to help to write a thesis following French rules -relocated 1 -longdesc The bundle provides a LaTeX class that formats a thesis -longdesc following French rules. -runfiles size=29 - RELOC/tex/latex/yathesis/yathesis-demo.sty - RELOC/tex/latex/yathesis/yathesis.cls -docfiles size=1172 - RELOC/doc/latex/yathesis/README +revision 50630 +shortdesc A LaTeX class for writing a thesis following French rules +relocated 1 +longdesc The purpose of yathesis is to facilitate dissertations' +longdesc typesetting of theses prepared in France, whatever disciplines +longdesc and institutes. It implements most notably recommendations from +longdesc the Ministry of Higher Education and Research and this, +longdesc transparently to the user. It has also been designed to +longdesc (optionally) take advantage of powerful tools available in +longdesc LaTeX, including packages: BibLaTeX for the bibliography; +longdesc glossaries for the glossary, list of acronyms and symbols list. +longdesc The yathesis class, based on the book class, aims to be both +longdesc simple to use and, to some extent, (easily) customizable. +longdesc yathesis comes with templates and samples in the +longdesc doc/latex/yathesis/french/exemples/ directory in the +longdesc distribution. They can also be tested on ShareLaTeX (template +longdesc and specimen) and on Overleaf (template and specimen). +containersize 22364 +containerchecksum f1ce86e173825007f87c2e4c3020ac761e7689cc079993dc7fbcb89985cc8e2684eb5bee4dc7e0a7bf44df0a37fe1d8fb8193e7006b511c256dad2b1b1e1ca4b +doccontainersize 4945180 +doccontainerchecksum 55f640414d27a1786edb8c1e4542bdabef94fe89e40c5eb06b56db97c6cd06f72f9386a4d27e674e956e7230015406a8f9df54f90e898ea8b7f174f5eeae6dd6 +docfiles size=3269 + RELOC/doc/latex/yathesis/README.md details="Readme" RELOC/doc/latex/yathesis/addons/completion/yathesis.cwl - RELOC/doc/latex/yathesis/master-slaves-files-sample.zip - RELOC/doc/latex/yathesis/master-slaves-files-sample/annexes/juridique.tex - RELOC/doc/latex/yathesis/master-slaves-files-sample/annexes/listings.tex - RELOC/doc/latex/yathesis/master-slaves-files-sample/annexes/programmes/factorielle.c - RELOC/doc/latex/yathesis/master-slaves-files-sample/annexes/programmes/heure.c - RELOC/doc/latex/yathesis/master-slaves-files-sample/auxiliaires/acronymes.tex - RELOC/doc/latex/yathesis/master-slaves-files-sample/auxiliaires/bibliographie.bib - RELOC/doc/latex/yathesis/master-slaves-files-sample/auxiliaires/glossaire.tex - RELOC/doc/latex/yathesis/master-slaves-files-sample/auxiliaires/symboles.tex - RELOC/doc/latex/yathesis/master-slaves-files-sample/configuration/characteristics.tex - RELOC/doc/latex/yathesis/master-slaves-files-sample/configuration/macros.tex - RELOC/doc/latex/yathesis/master-slaves-files-sample/configuration/thesis.cfg - RELOC/doc/latex/yathesis/master-slaves-files-sample/corps/conclusion.tex - RELOC/doc/latex/yathesis/master-slaves-files-sample/corps/conclusionI.tex - RELOC/doc/latex/yathesis/master-slaves-files-sample/corps/conclusionII.tex - RELOC/doc/latex/yathesis/master-slaves-files-sample/corps/developpementI.tex - RELOC/doc/latex/yathesis/master-slaves-files-sample/corps/developpementII.tex - RELOC/doc/latex/yathesis/master-slaves-files-sample/corps/introduction.tex - RELOC/doc/latex/yathesis/master-slaves-files-sample/corps/position-problemeI.tex - RELOC/doc/latex/yathesis/master-slaves-files-sample/corps/position-problemeII.tex - RELOC/doc/latex/yathesis/master-slaves-files-sample/images/labo.pdf - RELOC/doc/latex/yathesis/master-slaves-files-sample/images/paris13.pdf - RELOC/doc/latex/yathesis/master-slaves-files-sample/images/pres.pdf - RELOC/doc/latex/yathesis/master-slaves-files-sample/images/tiger.pdf - RELOC/doc/latex/yathesis/master-slaves-files-sample/images/ulco.pdf - RELOC/doc/latex/yathesis/master-slaves-files-sample/latexmkrc - RELOC/doc/latex/yathesis/master-slaves-files-sample/liminaires/avant-propos.tex - RELOC/doc/latex/yathesis/master-slaves-files-sample/liminaires/avertissement.tex - RELOC/doc/latex/yathesis/master-slaves-files-sample/liminaires/dedicaces.tex - RELOC/doc/latex/yathesis/master-slaves-files-sample/liminaires/epigraphes.tex - RELOC/doc/latex/yathesis/master-slaves-files-sample/liminaires/remerciements.tex - RELOC/doc/latex/yathesis/master-slaves-files-sample/liminaires/resumes.tex - RELOC/doc/latex/yathesis/master-slaves-files-sample/these.pdf - RELOC/doc/latex/yathesis/master-slaves-files-sample/these.tex - RELOC/doc/latex/yathesis/master-slaves-files-template.zip - RELOC/doc/latex/yathesis/master-slaves-files-template/annexes/annexeI.tex - RELOC/doc/latex/yathesis/master-slaves-files-template/annexes/annexeII.tex - RELOC/doc/latex/yathesis/master-slaves-files-template/auxiliaires/bibliographie.bib - RELOC/doc/latex/yathesis/master-slaves-files-template/configuration/characteristics.tex - RELOC/doc/latex/yathesis/master-slaves-files-template/configuration/macros.tex - RELOC/doc/latex/yathesis/master-slaves-files-template/configuration/thesis.cfg - RELOC/doc/latex/yathesis/master-slaves-files-template/corps/conclusion.tex - RELOC/doc/latex/yathesis/master-slaves-files-template/corps/introduction.tex - RELOC/doc/latex/yathesis/master-slaves-files-template/latexmkrc - RELOC/doc/latex/yathesis/master-slaves-files-template/liminaires/dedicaces.tex - RELOC/doc/latex/yathesis/master-slaves-files-template/liminaires/epigraphes.tex - RELOC/doc/latex/yathesis/master-slaves-files-template/liminaires/remerciements.tex - RELOC/doc/latex/yathesis/master-slaves-files-template/liminaires/resumes.tex - RELOC/doc/latex/yathesis/master-slaves-files-template/these.pdf - RELOC/doc/latex/yathesis/master-slaves-files-template/these.tex - RELOC/doc/latex/yathesis/single-file-sample.zip - RELOC/doc/latex/yathesis/single-file-sample/bibliographie.bib - RELOC/doc/latex/yathesis/single-file-sample/labo.pdf - RELOC/doc/latex/yathesis/single-file-sample/latexmkrc - RELOC/doc/latex/yathesis/single-file-sample/paris13.pdf - RELOC/doc/latex/yathesis/single-file-sample/pres.pdf - RELOC/doc/latex/yathesis/single-file-sample/these.pdf - RELOC/doc/latex/yathesis/single-file-sample/these.tex - RELOC/doc/latex/yathesis/single-file-sample/tiger.pdf - RELOC/doc/latex/yathesis/single-file-sample/ulco.pdf - RELOC/doc/latex/yathesis/single-file-template.zip - RELOC/doc/latex/yathesis/single-file-template/latexmkrc - RELOC/doc/latex/yathesis/single-file-template/these.pdf - RELOC/doc/latex/yathesis/single-file-template/these.tex - RELOC/doc/latex/yathesis/yathesis.pdf -srcfiles size=137 - RELOC/source/latex/yathesis/docstrip.cfg - RELOC/source/latex/yathesis/glossaries/acronyms.tex - RELOC/source/latex/yathesis/glossaries/glossary.tex - RELOC/source/latex/yathesis/latexmkrc - RELOC/source/latex/yathesis/ltxdoc.cfg - RELOC/source/latex/yathesis/sections/abstract.tex - RELOC/source/latex/yathesis/sections/add-ons.tex - RELOC/source/latex/yathesis/sections/aspects.tex - RELOC/source/latex/yathesis/sections/developpements.tex - RELOC/source/latex/yathesis/sections/faq.tex - RELOC/source/latex/yathesis/sections/fichiers-charges.tex - RELOC/source/latex/yathesis/sections/fixed-footnotes.tex - RELOC/source/latex/yathesis/sections/incompatibilites-connues.tex - RELOC/source/latex/yathesis/sections/installation.tex - RELOC/source/latex/yathesis/sections/introduction.tex - RELOC/source/latex/yathesis/sections/notations.tex - RELOC/source/latex/yathesis/sections/packages-charges.tex - RELOC/source/latex/yathesis/sections/pages-annexes.tex - RELOC/source/latex/yathesis/sections/pages-corps.tex - RELOC/source/latex/yathesis/sections/pages-finales.tex - RELOC/source/latex/yathesis/sections/pages-liminaires.tex - RELOC/source/latex/yathesis/sections/pages-titre.tex - RELOC/source/latex/yathesis/sections/personnalisation.tex - RELOC/source/latex/yathesis/sections/proprietes-document.tex - RELOC/source/latex/yathesis/sections/recommandations.tex - RELOC/source/latex/yathesis/sections/specimens-canevas.tex - RELOC/source/latex/yathesis/sections/titre.tex - RELOC/source/latex/yathesis/sections/usage-avance.tex - RELOC/source/latex/yathesis/tableaux/expressions-standard.tex - RELOC/source/latex/yathesis/tableaux/expressions.tex - RELOC/source/latex/yathesis/tableaux/no-warnings.tex - RELOC/source/latex/yathesis/tableaux/specimens-canevas.tex + RELOC/doc/latex/yathesis/english/README-TRANSLATION.md + RELOC/doc/latex/yathesis/french/canevas-specimen.zip + RELOC/doc/latex/yathesis/french/documentation/annexes/add-ons.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/aspects.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/compilation.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/developpements.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/faq.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/fichiers-charges.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/incompatibilites-connues.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/installation.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/notations.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/packages-charges.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/recommandations.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/specimens-canevas.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/traduction.tex + RELOC/doc/latex/yathesis/french/documentation/annexes/usage-avance.tex + RELOC/doc/latex/yathesis/french/documentation/configuration/thesis.cfg + RELOC/doc/latex/yathesis/french/documentation/corps/introduction.tex + RELOC/doc/latex/yathesis/french/documentation/corps/pages-annexes.tex + RELOC/doc/latex/yathesis/french/documentation/corps/pages-corps.tex + RELOC/doc/latex/yathesis/french/documentation/corps/pages-finales.tex + RELOC/doc/latex/yathesis/french/documentation/corps/pages-liminaires.tex + RELOC/doc/latex/yathesis/french/documentation/corps/pages-titre.tex + RELOC/doc/latex/yathesis/french/documentation/corps/personnalisation.tex + RELOC/doc/latex/yathesis/french/documentation/corps/proprietes-document.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/introduction.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/preparation-dedicaces.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/preparation-epigraphes.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/preparation-laboratoire.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/preparation-mots-cles.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/preparation-resumes.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/preparation-symboles.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/preparation-titre.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/production-clause.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/production-dedicaces.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/production-epigraphes.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/production-laboratoire.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/production-mots-cles.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/production-resumes.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/production-symboles.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/production-titre.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/sommaire.tex + RELOC/doc/latex/yathesis/french/documentation/extraits-these/table-des-matieres.tex + RELOC/doc/latex/yathesis/french/documentation/glossaries/acronyms.tex + RELOC/doc/latex/yathesis/french/documentation/glossaries/glossary.tex + RELOC/doc/latex/yathesis/french/documentation/latexmkrc + RELOC/doc/latex/yathesis/french/documentation/liminaires/abstract.tex + RELOC/doc/latex/yathesis/french/documentation/liminaires/fixed-footnotes.tex + RELOC/doc/latex/yathesis/french/documentation/liminaires/titre.tex + RELOC/doc/latex/yathesis/french/documentation/tableaux/commande-chapter-section.tex + RELOC/doc/latex/yathesis/french/documentation/tableaux/expressions-standard.tex + RELOC/doc/latex/yathesis/french/documentation/tableaux/expressions.tex + RELOC/doc/latex/yathesis/french/documentation/tableaux/no-warnings.tex + RELOC/doc/latex/yathesis/french/documentation/tableaux/specimens-canevas-tab.tex + RELOC/doc/latex/yathesis/french/documentation/translations.tex + RELOC/doc/latex/yathesis/french/documentation/yathesis-fr.bib + RELOC/doc/latex/yathesis/french/documentation/yathesis-fr.pdf details="Package documentation" language="fr" + RELOC/doc/latex/yathesis/french/documentation/yathesis-fr.tex + RELOC/doc/latex/yathesis/french/exemples/specimen/a-plat/bibliographie.bib + RELOC/doc/latex/yathesis/french/exemples/specimen/a-plat/comue.pdf + RELOC/doc/latex/yathesis/french/exemples/specimen/a-plat/labo.pdf + RELOC/doc/latex/yathesis/french/exemples/specimen/a-plat/latexmkrc + RELOC/doc/latex/yathesis/french/exemples/specimen/a-plat/paris13.pdf + RELOC/doc/latex/yathesis/french/exemples/specimen/a-plat/these.pdf + RELOC/doc/latex/yathesis/french/exemples/specimen/a-plat/these.tex + RELOC/doc/latex/yathesis/french/exemples/specimen/a-plat/tiger.pdf + RELOC/doc/latex/yathesis/french/exemples/specimen/a-plat/ulco.pdf +srccontainersize 49136 +srccontainerchecksum f3014c4a15010794a30c14a51f9fba4ef39a128e4dd566991b57bd66be3f877745e14c8b1f8e50942870dd3867c892a99d352a9c2d8b275fb299d8c58c511de6 +srcfiles size=66 RELOC/source/latex/yathesis/yathesis-samples-templates.dtx - RELOC/source/latex/yathesis/yathesis.bib RELOC/source/latex/yathesis/yathesis.dtx +runfiles size=34 + RELOC/tex/latex/yathesis/yathesis-demo.sty + RELOC/tex/latex/yathesis/yathesis-translations.tex + RELOC/tex/latex/yathesis/yathesis.cls +catalogue-contact-repository https://github.com/dbitouze/yathesis catalogue-ctan /macros/latex/contrib/yathesis -catalogue-date 2014-10-31 14:21:26 +0100 +catalogue-date 2019-03-28 19:39:05 +0100 catalogue-license lppl1.3 -catalogue-version 0.99l +catalogue-topics class dissertation french +catalogue-version 0.99u name yax category Package revision 21183 -shortdesc Yet Another Key System. +shortdesc Yet Another Key System relocated 1 longdesc YaX is advertised as a key system, but it rather organizes longdesc attributes in parameters, which parameters can be executed, so @@ -181052,23 +306781,56 @@ longdesc ways, with full expandability ensured as much as possible. longdesc Finally, YaX's syntax is a quite peculiar (as few braces as longdesc possible), but may be customized. YaX is based on texapi and longdesc thus requires e-TeX. +containersize 5956 +containerchecksum 2fad927b46209e0705f96bcc5aafa9774d5a7cd7e4f984e48950525c282cc5e2273a21f5645bcdecff0a102a236f9f8470fffde829b44a886fe40f47699f94b2 +doccontainersize 123696 +doccontainerchecksum f648b61eebdeb9a1d0497cc22205361c5495139fbf835173e067773956793c28220a6a6b8d3f7ac7f275cbcbb77b06a1774e0f4519587fca390d0aabe34ccf80 +docfiles size=38 + RELOC/doc/generic/yax/README details="Readme" + RELOC/doc/generic/yax/yax-doc.pdf details="Package documentation" + RELOC/doc/generic/yax/yax-doc.tex runfiles size=8 RELOC/tex/generic/yax/t-yax.tex RELOC/tex/generic/yax/yax.sty RELOC/tex/generic/yax/yax.tex -docfiles size=38 - RELOC/doc/generic/yax/README - RELOC/doc/generic/yax/yax-doc.pdf - RELOC/doc/generic/yax/yax-doc.tex catalogue-ctan /macros/generic/yax -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics keyval catalogue-version 1.03 +name ycbook +category Package +revision 46201 +shortdesc A versatile book class +relocated 1 +longdesc This class is intended to be an interpretation of the mwbk +longdesc class which is a part of the mwcls package. The mwcls classes +longdesc are simple, yet powerful and customizable classes that allow +longdesc the end-user to customize the layout of headers, headings etc. +longdesc They also have the benefit of being more economic in space than +longdesc the most common LaTeX classes, while keeping a clear appearance +longdesc and a smooth flow. +containersize 4708 +containerchecksum 8b98cd81e5f1252063da8dc297eb5580d06020a343638f7c8a1090a7f056a788eb4322e286f12d821be79fc7de94262a4ff15c14a1c787be0de89ddc87541452 +doccontainersize 124828 +doccontainerchecksum 45ee725849230549b4b2f200e0b140c1fc99a60d91730a42d2e3df63e828eb6053845a2eb84ff25bf916341df46a3f3c01166848afb291d322dfb21426903644 +docfiles size=36 + RELOC/doc/latex/ycbook/README.md details="Readme" + RELOC/doc/latex/ycbook/ycbook-doc.pdf details="Package documentation" + RELOC/doc/latex/ycbook/ycbook-doc.tex +runfiles size=5 + RELOC/tex/latex/ycbook/ycbook.cls +catalogue-also mwcls +catalogue-ctan /macros/latex/contrib/ycbook +catalogue-date 2018-01-02 23:40:15 +0100 +catalogue-license lppl1.3c +catalogue-topics book-pub class + name ydoc category Package revision 26202 -shortdesc Macros for documentation of LaTeX classes and packages. +shortdesc Macros for documentation of LaTeX classes and packages relocated 1 longdesc The package provides macros and environments to document LaTeX longdesc packages and classes. It is an (as yet unfinished) alternative @@ -181078,6 +306840,17 @@ longdesc xcolor, hyperref packages, etc.) This is an alpha release, and longdesc should probably not (yet) be used with other packages, since longdesc the implementation might change. Nevertheless, the author uses longdesc it to document his own packages. +containersize 9152 +containerchecksum 4e4292e4e6e6b4f5db8ff0721eacb582960932f48a221835c3e07841168b1f81227fcaaa41ed619430c5455edaef38dc073a8cf6c584ac759e88b9f40710caa3 +doccontainersize 321388 +doccontainerchecksum c5257e669d802563c6ecec45a53645a69bc4c7980c95dc0a98164c950c1e5b12b5b4d012bd8a97164fa9b055eb84184c4df520b08949f68283d2ef2e33658838 +docfiles size=81 + RELOC/doc/latex/ydoc/README details="Readme" + RELOC/doc/latex/ydoc/ydoc.pdf details="Package documentation" +srccontainersize 17476 +srccontainerchecksum a7bfd7160ce16a03505347e158b629c98519f2114f057529a52caf24f818d1553e76714936a9f92b0020b9d16826b5fd259a12d68fe63037cb04f89ef11657a4 +srcfiles size=20 + RELOC/source/latex/ydoc/ydoc.dtx runfiles size=14 RELOC/tex/generic/ydoc/ydocincl.tex RELOC/tex/generic/ydoc/ydocstrip.tex @@ -181088,25 +306861,62 @@ runfiles size=14 RELOC/tex/latex/ydoc/ydoc.cfg RELOC/tex/latex/ydoc/ydoc.cls RELOC/tex/latex/ydoc/ydoc.sty -docfiles size=81 - RELOC/doc/latex/ydoc/README - RELOC/doc/latex/ydoc/ydoc.pdf -srcfiles size=20 - RELOC/source/latex/ydoc/ydoc.dtx +catalogue-also ltxdoc doc xdoc gmdoc codedoc nicetext showexpl catalogue-ctan /macros/latex/contrib/ydoc -catalogue-date 2014-09-14 17:44:27 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics doc-supp class catalogue-version 0.6alpha +name yfonts +category Package +revision 50755 +shortdesc Support for old German fonts +relocated 1 +longdesc A LaTeX interface to the old-german fonts designed by Yannis +longdesc Haralambous: Gothic, Schwabacher, Fraktur and the baroque +longdesc initials. +containersize 1820 +containerchecksum 1caa22023c93ae1e6a2fd94676da61fd576890f991a79d6a9724a4e5f7e653a752c6af792a1b15d44aa956f5788aa995614a33c2d97e95865d6a364f833e539f +doccontainersize 192824 +doccontainerchecksum 54857e6693242080c5f410ded0bb16d3df65fee2834b2b5d1232dd063a70796905771059da07e7d92358fce9da992c3e605be345ae7c5d4012d37dc37a17dc82 +docfiles size=50 + RELOC/doc/latex/yfonts/README details="Readme" + RELOC/doc/latex/yfonts/frktest.tex + RELOC/doc/latex/yfonts/liesmich + RELOC/doc/latex/yfonts/yfonts.pdf +srccontainersize 7968 +srccontainerchecksum c716a8ecca03f0dbaf07146021977fd802e2089c5b99fc7adaac1e581ecbfd4f4b1a15562a54eea7c783f5b8b6165b935e484e36a456ef81729751c777266815 +srcfiles size=7 + RELOC/source/latex/yfonts/yfonts.dtx + RELOC/source/latex/yfonts/yfonts.ins +runfiles size=2 + RELOC/tex/latex/yfonts/yfonts.sty +catalogue-also mfnfss +catalogue-contact-bugs https://github.com/TeX-Live/yfonts/issues +catalogue-contact-repository https://github.com/TeX-Live/yfonts.git +catalogue-contact-support https://github.com/TeX-Live/yfonts/issues +catalogue-ctan /macros/latex/contrib/yfonts +catalogue-date 2019-04-04 10:11:42 +0200 +catalogue-license lppl +catalogue-topics font-supp +catalogue-version 1.4 + name yfonts-t1 category Package revision 36013 -shortdesc Old German-style fonts, in Adobe type 1 format. +shortdesc Old German-style fonts, in Adobe type 1 format relocated 1 longdesc This package comprises type 1 versions of the Gothic, longdesc Schwabacher and Fraktur fonts of Yannis Haralambous' set of old longdesc German fonts. execute addMap yfrak.map +containersize 145940 +containerchecksum ec4cfa0d4f08f506b3bf7a3acc8e303ba51c7761f32498f040e062264e595bebe64a4f5adc7d6ab5aa2180c55b817d0124d5b07b276cb39c775539113a08f490 +doccontainersize 952 +doccontainerchecksum dd37c5163de0bdcce937a1866a48d9f924faff81da11e566e9525a6d5a81ae82419ee7eaebdff1cd8512957a878f849f43e9cd71dd39625e6dc0e2ba18f4ac9b +docfiles size=1 + RELOC/doc/fonts/yfonts-t1/README details="Package README" runfiles size=50 RELOC/dvips/yfonts-t1/config.yfrak RELOC/fonts/afm/public/yfonts-t1/yfrak.afm @@ -181116,44 +306926,38 @@ runfiles size=50 RELOC/fonts/type1/public/yfonts-t1/yfrak.pfb RELOC/fonts/type1/public/yfonts-t1/ygoth.pfb RELOC/fonts/type1/public/yfonts-t1/yswab.pfb -docfiles size=1 - RELOC/doc/fonts/yfonts-t1/README +catalogue-also mfnfss yfonts catalogue-ctan /fonts/ps-type1/yfonts -catalogue-date 2015-01-16 08:39:42 +0100 +catalogue-date 2017-11-24 06:13:30 +0100 catalogue-license other-free +catalogue-topics font font-type1 font-gothic catalogue-version 1.0 -name yfonts -category Package -revision 15878 -shortdesc Support for old German fonts. -relocated 1 -longdesc A LaTeX interface to the old-german fonts designed by Yannis -longdesc Haralambous: Gothic, Schwabacher, Fraktur and the baroque -longdesc initials. -runfiles size=2 - RELOC/tex/latex/yfonts/yfonts.sty -docfiles size=4 - RELOC/doc/latex/yfonts/frktest.tex - RELOC/doc/latex/yfonts/liesmich - RELOC/doc/latex/yfonts/readme -srcfiles size=7 - RELOC/source/latex/yfonts/yfonts.dtx - RELOC/source/latex/yfonts/yfonts.ins -catalogue-ctan /macros/latex/contrib/yfonts -catalogue-date 2014-05-20 14:46:50 +0200 -catalogue-license lppl -catalogue-version 1.3 - name yhmath category Package -revision 31155 -shortdesc Extended maths fonts for LaTeX. +revision 50127 +shortdesc Extended maths fonts for LaTeX relocated 1 -longdesc The yhmath bundle contains fonts (in type 1 format) and a LaTeX -longdesc package for using them. +longdesc The yhmath bundle contains fonts (in Metafont and type 1 +longdesc format) and a LaTeX package for using them. execute addMixedMap yhmath.map -runfiles size=30 +containersize 37000 +containerchecksum 10b98d5af7f179643bc0cd0fbf63e4a088c07e64ca6ac5f20ef05f3a00226159354f212de85ade3c7d96b9fb67e46207fbf7bed9f47a542df8427ac5fe248653 +doccontainersize 281604 +doccontainerchecksum cae6f92dd19363251fddd7e6a2934e10e3b22840b5be4c9cc94c399637cfee241fcb34dfa22e93fbde3a599e14c82fb32a72c329c5de3af395ef2848ae7841ff +docfiles size=84 + RELOC/doc/fonts/yhmath/LICENSE + RELOC/doc/fonts/yhmath/README details="Readme" + RELOC/doc/fonts/yhmath/yhcmex10.vpl + RELOC/doc/fonts/yhmath/yhmath.pdf details="Sample and documentation" +srccontainersize 16452 +srccontainerchecksum 61154cd7ae0f43ccc31fdf1c2f2c7e5307bc886990c6a137089cf0d40e7634952026458e92b9c2ec5c7ccf8b6a2969f018c1653b9909d6e0ee848177accb4124 +srcfiles size=33 + RELOC/source/fonts/yhmath/Makefile + RELOC/source/fonts/yhmath/yhmath.drv + RELOC/source/fonts/yhmath/yhmath.dtx + RELOC/source/fonts/yhmath/yhmath.ins +runfiles size=33 RELOC/fonts/map/dvips/yhmath/yhmath.map RELOC/fonts/source/public/yhmath/yhbigacc.mf RELOC/fonts/source/public/yhmath/yhbigdel.mf @@ -181164,73 +306968,106 @@ runfiles size=30 RELOC/fonts/type1/public/yhmath/yhcmex.pfb RELOC/fonts/vf/public/yhmath/yhcmex10.vf RELOC/tex/latex/yhmath/OMXyhex.fd + RELOC/tex/latex/yhmath/yhcmex10.cmap RELOC/tex/latex/yhmath/yhmath.sty -docfiles size=79 - RELOC/doc/fonts/yhmath/Makefile - RELOC/doc/fonts/yhmath/README - RELOC/doc/fonts/yhmath/yhcmex10.vpl - RELOC/doc/fonts/yhmath/yhmath.pdf -srcfiles size=30 - RELOC/source/fonts/yhmath/yhmath.drv - RELOC/source/fonts/yhmath/yhmath.dtx - RELOC/source/fonts/yhmath/yhmath.ins +catalogue-contact-bugs https://github.com/TeX-Live/yhmath/issues +catalogue-contact-home https://github.com/TeX-Live/yhmath +catalogue-contact-repository https://github.com/TeX-Live/yhmath.git catalogue-ctan /fonts/yhmath -catalogue-date 2014-04-28 17:48:37 +0200 -catalogue-license lppl -catalogue-version 1.1 +catalogue-date 2019-02-24 08:57:29 +0100 +catalogue-license lppl1.3c +catalogue-topics font font-mf font-type1 font-symbol-maths +catalogue-version 1.5 + +name yinit-otf +category Package +revision 40207 +shortdesc OTF conversion of Yannis Haralambous' Old German decorative initials +relocated 1 +longdesc This package is a conversion of the yinit font into OTF. +longdesc Original Metafont files for yinit are in the yinit package. +containersize 253664 +containerchecksum 5ec9f9408c3188b2bf985e9c3f1f9f6a345557d08a167a9d02c07fe41bbb981a8889f580d6e38a97798bb5e891d978eb4ee70b77a344c684051b5644654d1cd1 +doccontainersize 604 +doccontainerchecksum 6c73466c1e4ce1f7aec1b30980e5c44ca4917e161236fad7a0816bc93e921525b90f62abd8d41d3b767d8a6eda62a34534d7129d1fc490fda430345f8a2b3ce7 +docfiles size=1 + RELOC/doc/fonts/yinit-otf/README.md details="Readme" +runfiles size=171 + RELOC/fonts/opentype/public/yinit-otf/Yinit.otf +catalogue-also yfonts +catalogue-ctan /fonts/gothic/yinit-otf +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license pd +catalogue-topics font-otf font-decor font-gothic +catalogue-version 1.0 name york-thesis category Package revision 23348 -shortdesc A thesis class file for York University, Toronto. +shortdesc A thesis class file for York University, Toronto relocated 1 longdesc York Graduate Studies has again changed the requirements for longdesc theses and dissertations. The established york-thesis class longdesc file now implements the changes made in Spring 2005. -runfiles size=4 - RELOC/tex/latex/york-thesis/york-thesis.cls +containersize 4292 +containerchecksum 5b5152cc315dc05164ba3502d6e7aff355d853e43a3836bda0a15a4af7a90ef9fef02c852125c7e1e4842c05d51f2be6441b5131400eb46bb6704b281711e18d +doccontainersize 111744 +doccontainerchecksum e1ee454ad9996b61f1cac9bbeec30210359ecd8939bd9e0696e7cca7106733b13b8831946c47652186d4b80060f96c479b642274f5c90f8757953b1c3861f0bc docfiles size=32 - RELOC/doc/latex/york-thesis/README + RELOC/doc/latex/york-thesis/README details="Package Readme" RELOC/doc/latex/york-thesis/york-thesis-Template.tex RELOC/doc/latex/york-thesis/york-thesis.el - RELOC/doc/latex/york-thesis/york-thesis.pdf + RELOC/doc/latex/york-thesis/york-thesis.pdf details="Package documentation" +srccontainersize 12580 +srccontainerchecksum 3096ee9334bab690b38ff943559a0a7b0c54f8b831e7d1320ae4581740c48dd05e09813e220ce1d28d4523fb456d7fd01920e89e7e0d66da00e9dce88bfadea7 srcfiles size=12 RELOC/source/latex/york-thesis/york-thesis.dtx RELOC/source/latex/york-thesis/york-thesis.ins +runfiles size=4 + RELOC/tex/latex/york-thesis/york-thesis.cls catalogue-ctan /macros/latex/contrib/york-thesis -catalogue-date 2014-09-13 11:37:30 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics dissertation class catalogue-version 3.6 name youngtab category Package revision 17635 -shortdesc Typeset Young-Tableaux. +shortdesc Typeset Young-Tableaux relocated 1 longdesc A package for typesetting Young-Tableaux, mathematical symbols longdesc for the representations of groups, providing two macros, longdesc \yng(1) and \young(1) to generate the whole Young-Tableaux. -runfiles size=2 - RELOC/tex/latex/youngtab/youngtab.sty +containersize 2024 +containerchecksum d394f53ea68d2874036faa0d00323a0c15e3144a2433e27db0a630f05a637bad37d297132a92c00bc5ba3fb8a8bc643bc8778787b8897ab03296eb62d33683b6 +doccontainersize 144620 +doccontainerchecksum 38d42380d67372f2b84984cf41b0cd775c6b707405baffc5852cb147bba914899bcc09230e645e7779deb142358a4bf46f1efa0b47f159eeadc09d3e99f2728d docfiles size=47 - RELOC/doc/latex/youngtab/README + RELOC/doc/latex/youngtab/README details="Readme" RELOC/doc/latex/youngtab/makeydoc RELOC/doc/latex/youngtab/makeydoc.bat RELOC/doc/latex/youngtab/youngtab.el - RELOC/doc/latex/youngtab/youngtab.pdf + RELOC/doc/latex/youngtab/youngtab.pdf details="Package documentation" RELOC/doc/latex/youngtab/youngtab.tex +srccontainersize 11612 +srccontainerchecksum 88d214c9cd6d87f6cd2c075ebb5554c55038f0eacbe047d7d90ab1a3fe695a9329c34149c2026fafed045e02449688e2fc3b0b5ecc24d0960640a3557a284739 srcfiles size=10 RELOC/source/latex/youngtab/youngtab.dtx RELOC/source/latex/youngtab/youngtab.ins +runfiles size=2 + RELOC/tex/latex/youngtab/youngtab.sty +catalogue-also young ytableau catalogue-ctan /macros/latex/contrib/youngtab -catalogue-date 2012-04-16 12:07:42 +0200 +catalogue-date 2018-01-06 12:14:59 +0100 catalogue-license lppl1 +catalogue-topics maths catalogue-version 1.1 name yplan category Package revision 34398 -shortdesc Daily planner type calendar. +shortdesc Daily planner type calendar longdesc Prints two six-monthly vertical-type daily planner (i.e., longdesc months along the top, days downwards), with each 6-month period longdesc fitting onto a single A4 (or US letter) sheet. The package @@ -181240,53 +307077,203 @@ longdesc abandoned, in favour of a Perl script yplan that generates a longdesc year's planner automatically. (The last manually-generated longdesc LaTeX file remains on the archive.) depend yplan.ARCH -runfiles size=5 - texmf-dist/scripts/yplan/yplan - texmf-dist/tex/latex/yplan/yplan.sty +containersize 6236 +containerchecksum 4884ac99b0b56927fb86c6e06ae9d4accb7d8b441bb17df79753d8af9ee84b9440d66ad4fcf2107aa036eb2af89d5ad49d0a4c4cb91236c6475cf81bab85566a +doccontainersize 4588 +doccontainerchecksum 7d3cddf3f2d54283b777c7ab7867df68fdb484c67d2f88589e29fc087db721e7ba9e0fcea2ffde9328e89075884d668b7de8fc61f462b735d9f1cfadb9662463 docfiles size=6 texmf-dist/doc/latex/yplan/yplan.doc texmf-dist/doc/latex/yplan/yplan00.doc texmf-dist/doc/latex/yplan/yplan00a.tex texmf-dist/doc/latex/yplan/yplan00b.tex +runfiles size=5 + texmf-dist/scripts/yplan/yplan + texmf-dist/tex/latex/yplan/yplan.sty catalogue-ctan /macros/latex/contrib/yplan -catalogue-date 2012-04-16 12:15:05 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics calendar + +name yplan.aarch64-linux +category Package +revision 46208 +shortdesc aarch64-linux files of yplan +containersize 336 +containerchecksum 2186a2d5cd90be2379685adb117809746df9c35c951488d08c0b6b552d13035ff8a04bc9ce87bc987529a936365ca17fc2a74357c0d755be2671987f50fe5188 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/yplan + +name yplan.amd64-freebsd +category Package +revision 34398 +shortdesc amd64-freebsd files of yplan +containersize 340 +containerchecksum ccef21172dd9e3b54ea7cc88730f0df39f4778a29622b1606e46cc63dd9d90733e0824b1b9bbd61b8bcf89b1446bcdc8f3231094ccc3beceba5f50ec9e4f38ea +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/yplan + +name yplan.amd64-netbsd +category Package +revision 34398 +shortdesc amd64-netbsd files of yplan +containersize 336 +containerchecksum bd22f97a943cdd44ca15a7ed83119e0e4164ab39ea0e2531552bdb435383b37307b20d6bd53c8297c28df561da54d8f113b35f83a427dad0248af55ec20b319e +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/yplan + +name yplan.armhf-linux +category Package +revision 34398 +shortdesc armhf-linux files of yplan +containersize 336 +containerchecksum 414e71a5179232a6bd76c62267468f39d62ed99ddab384df3bbb9d2afdacb739a351e8b301bd0d4446919e79d8b87fd187692cb56d83e787b2e68e425fde1a5e +binfiles arch=armhf-linux size=1 + bin/armhf-linux/yplan + +name yplan.i386-cygwin +category Package +revision 34398 +shortdesc i386-cygwin files of yplan +containersize 332 +containerchecksum 5be7a05812eddd23541b9cd2a1997332a2d2c24a3c42533fe89f923b87047e78f680e62d015254427fef440ce4944da1b9864517b83779dedf2b2717ee26446a +binfiles arch=i386-cygwin size=1 + bin/i386-cygwin/yplan + +name yplan.i386-freebsd +category Package +revision 34398 +shortdesc i386-freebsd files of yplan +containersize 336 +containerchecksum 8cb3e4013bee0f0c2041f1e710cbe005d1d4f8f58cc323df42ab84d028aee387bb793ae63f4f98e49cdc6445f53f24286a7cdb18bcd378aedbfe0618a0a25352 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/yplan name yplan.i386-linux category Package revision 34398 shortdesc i386-linux files of yplan +containersize 336 +containerchecksum 9610bd99d25371c29e05ab9e5fc97d2ff9956495fbbd51fb2e3a28680bc97bf2b3b889fc44e9b0bf859be0f30212743a239b7e738d7ce27ad1f9cc7ea98ccecb binfiles arch=i386-linux size=1 bin/i386-linux/yplan +name yplan.i386-netbsd +category Package +revision 34398 +shortdesc i386-netbsd files of yplan +containersize 336 +containerchecksum 91a7dea079eaf3386ace2ad5f2cb615106e0d445434f905f86c946b5b15eb75243aa9e919be1a702f520d16efe86a915e2d0890e046304f3f44418471f8395d9 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/yplan + +name yplan.i386-solaris +category Package +revision 34398 +shortdesc i386-solaris files of yplan +containersize 336 +containerchecksum 150dbbfe1dcbf57c8e342c5f104f12af2bac2506a795de82c13a6091f2288520d7f23dc1cac477b1d7b81f7a47609e90eb802dbd62e6c6162225e3a2808e4665 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/yplan + +name yplan.win32 +category Package +revision 34398 +shortdesc win32 files of yplan +containersize 680 +containerchecksum abfda78d396aab73b4d172d7846f05d95c38a300efb96b960325f8ac88926ec14e96b09ddc0c19288c7e606c9502d315e2b7a14ca473c3a2517237170723b08a +binfiles arch=win32 size=1 + bin/win32/yplan.exe + +name yplan.x86_64-cygwin +category Package +revision 34398 +shortdesc x86_64-cygwin files of yplan +containersize 340 +containerchecksum 21e21fca56a1ed9b8b1c73376ea54a30bcd9c3d44516c934008842ac1831c5d3850ca4d75f04ba385378a695988309585ef327a05428aac6672b214ca70eb11f +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/yplan + +name yplan.x86_64-darwin +category Package +revision 34398 +shortdesc x86_64-darwin files of yplan +containersize 340 +containerchecksum 6c0546ea62a7b88081f8385878a8319cacd6b9a0834b43963d79d444dba8e4ac6b311d8c27bc23b34808b34a27f381345d1ea10b1f34cc4978ac8746e88dcec9 +binfiles arch=x86_64-darwin size=1 + bin/x86_64-darwin/yplan + +name yplan.x86_64-darwinlegacy +category Package +revision 43871 +shortdesc x86_64-darwinlegacy files of yplan +containersize 344 +containerchecksum 7d0f7d3ff73fd33e0cf81035ebca1124a4bb232b0090af51e394b968a70e84ebc01039acc1b231cda1da7c9c4824f60e6485527eeefc7442e96fec0c9876edc7 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/yplan + +name yplan.x86_64-linux +category Package +revision 34398 +shortdesc x86_64-linux files of yplan +containersize 336 +containerchecksum 95735da8a462ac781b4a28ef057a7bbc803211e6259735b1eac61bffad175e6c9667f23764ed91ed668d8756d352547df0045dc778489281034a5a91310d4a32 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/yplan + +name yplan.x86_64-linuxmusl +category Package +revision 46840 +shortdesc x86_64-linuxmusl files of yplan +containersize 340 +containerchecksum fa25e15de50f6007c19ab3c325978d328ec65773263d9ce7b1b70902d46412632c0cab6c4e99083905de2b867c7bb656cea7ed8d98d19ff2f3286f5214523e6d +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/yplan + +name yplan.x86_64-solaris +category Package +revision 34398 +shortdesc x86_64-solaris files of yplan +containersize 336 +containerchecksum 37e66d345fa8b2c758699c6c5957ac5cbb221ddb05b6f647650d74e9a4098047150634fb4c44098d35e17207201e97d4ff0e564c8e2dd6137354cf571d633379 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/yplan + name ytableau category Package revision 27430 -shortdesc Many-featured Young tableaux and Young diagrams. +shortdesc Many-featured Young tableaux and Young diagrams relocated 1 longdesc The package provides several functions for drawing Young longdesc tableaux and Young diagrams, extending the young and youngtab longdesc packages but providing lots more features. Skew and coloured longdesc tableaux are easy, and pgfkeys-enabled options are provided longdesc both at package load and configurably. -runfiles size=3 - RELOC/tex/latex/ytableau/ytableau.sty +containersize 3060 +containerchecksum 2d9528c47b516213d0d8ea6341edc1772aa4a88a7db60d4506cbef107be034bcb9036b18f61a12e042e95bd9d0aea51b0ee696565841d2efb12b442756c48a30 +doccontainersize 360820 +doccontainerchecksum 47db377bfecce43d97e573360cfc65936664b5ea886b5bc0042b39e3a879becef0e9894c364a31cb4cda7420ba672c8f55e7936ae5b1d291259d8deb7a6d9f9d docfiles size=90 - RELOC/doc/latex/ytableau/README - RELOC/doc/latex/ytableau/ytableau.pdf + RELOC/doc/latex/ytableau/README details="Readme" + RELOC/doc/latex/ytableau/ytableau.pdf details="Package documentation" +srccontainersize 15896 +srccontainerchecksum 02c2aff53daaec5161a9715de2e633d03dedc85664868d73c49dc0edc5c8b0bc696e3e8ab6d25f3420663fcff830581a7b2fdd0718a3c4928aa808ca3b1cbde3 srcfiles size=15 RELOC/source/latex/ytableau/ytableau.dtx RELOC/source/latex/ytableau/ytableau.ins +runfiles size=3 + RELOC/tex/latex/ytableau/ytableau.sty +catalogue-also youngtab young catalogue-ctan /macros/latex/contrib/ytableau -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.2 +catalogue-topics maths catalogue-version 1.3 name zapfchan category Package revision 31835 catalogue urw-base35 -shortdesc URW "Base 35" font pack for LaTeX. +shortdesc URW "Base 35" font pack for LaTeX relocated 1 longdesc A set of fonts for use as "drop-in" replacements for Adobe's longdesc basic set, comprising: Century Schoolbook (substituting for @@ -181299,6 +307286,8 @@ longdesc Chancery L Medium Italic (substituting for Adobe's Zapf longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). execute addMap uzc.map +containersize 79924 +containerchecksum 46a104a6e4d1cf681bf10bf22fa32510982939cf52dd255a7ec50e5a9f95acf72457195cee13499c6f517a7f2b03be8a285eb6730f659d59ee5aa42522ba34bb runfiles size=59 RELOC/dvips/zapfchan/config.uzc RELOC/fonts/afm/adobe/zapfchan/pzcmi8a.afm @@ -181328,15 +307317,17 @@ runfiles size=59 RELOC/tex/latex/zapfchan/ot1uzc.fd RELOC/tex/latex/zapfchan/t1uzc.fd RELOC/tex/latex/zapfchan/ts1uzc.fd +catalogue-also tex-gyre catalogue-ctan /fonts/urw/base35 -catalogue-date 2014-06-07 20:47:53 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics font font-type1 font-collection name zapfding category Package revision 31835 catalogue urw-base35 -shortdesc URW "Base 35" font pack for LaTeX. +shortdesc URW "Base 35" font pack for LaTeX relocated 1 longdesc A set of fonts for use as "drop-in" replacements for Adobe's longdesc basic set, comprising: Century Schoolbook (substituting for @@ -181349,6 +307340,8 @@ longdesc Chancery L Medium Italic (substituting for Adobe's Zapf longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). execute addMap uzd.map +containersize 46964 +containerchecksum e3e6e69b82858d8bd653bcb112ed81b8b5aacc0b915b5e4ed4288f5aef896211e75b85b1b647989e0ffa431ec204a9d8ad27b2e60bc2b28eea83eb3518945bf1 runfiles size=24 RELOC/dvips/zapfding/config.uzd RELOC/fonts/afm/adobe/zapfding/pzdr.afm @@ -181359,39 +307352,167 @@ runfiles size=24 RELOC/fonts/type1/urw/zapfding/uzdr.pfb RELOC/fonts/type1/urw/zapfding/uzdr.pfm RELOC/tex/latex/zapfding/uuzd.fd +catalogue-also tex-gyre catalogue-ctan /fonts/urw/base35 -catalogue-date 2014-06-07 20:47:53 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license gpl +catalogue-topics font font-type1 font-collection + +name zebra-goodies +category Package +revision 46004 +shortdesc A collection of handy macros for paper writing +relocated 1 +longdesc This package offers a collection of macros to help in the +longdesc process of writing a paper. You may add comments, todo notes, +longdesc etc. during revision, in a colourful way. The package also +longdesc summarizes the inserted notes at the end of the document. There +longdesc are some predefined note commands as well as a way of defining +longdesc new ones to suit the user's needs. You may safely remove this +longdesc package once the paper is finished. This package depends on the +longdesc following other LaTeX packages: kvoptions, manfnt, marginnote, +longdesc tikzpagenodes, xcolor, and, optionally, microtype. Note: +longdesc "zebra" is the name of the package author's lab. +containersize 2360 +containerchecksum fa8ded449653eb43baf1a8b27acce710ed64dedd574d1de8eace201dd6555948ce794543d9b21cef8ff2bc4fe788cfe826dbaf31a1c2ecef84dd949c14dbab93 +doccontainersize 1004 +doccontainerchecksum bf4441df24408617b926a7d7e618190aa82c1a8d33d42b989a8b53d1c69fff3fbbb3db9638fa9eb03df6b3f4cfad1c839a27c21307c809b0322846d44ba74006 +docfiles size=1 + RELOC/doc/latex/zebra-goodies/README.md details="Readme" +runfiles size=1 + RELOC/tex/latex/zebra-goodies/zebra-goodies.sty +catalogue-contact-bugs https://github.com/xueruini/zebra-goodies/issues +catalogue-contact-development https://github.com/xueruini +catalogue-contact-home https://github.com/xueruini/zebra-goodies +catalogue-contact-repository https://github.com/xueruini/zebra-goodies +catalogue-contact-support https://github.com/xueruini/zebra-goodies/issues +catalogue-ctan /macros/latex/contrib/zebra-goodies +catalogue-date 2017-12-06 09:55:03 +0100 +catalogue-license lppl1.3c +catalogue-topics notes editorial marginal +catalogue-version 0.3.0 name zed-csp category Package revision 17258 -shortdesc Typesetting Z and CSP format specifications. +shortdesc Typesetting Z and CSP format specifications relocated 1 longdesc The package supports real-time CSP and incorporates the longdesc functionality of Spivey's original Z package, written for LaTeX longdesc 2.09. -runfiles size=8 - RELOC/tex/latex/zed-csp/zed-csp.sty +containersize 8040 +containerchecksum 2f41c5b28e602aa88146cbbc172eb2d6c6f21491e45622c4c1688b9a8acb5be304a8acde842bef84f7a238109ac9ebefa31844826387b266f14faa6a6943903a +doccontainersize 234644 +doccontainerchecksum e5e657656e46023e32366ba415f46322f4c9b4fe0e69f03c88d4e5fcdd577e3436be6436424f502c3807278efe3a31ab7cba3020ef3c9e44874de3660dcccd2b docfiles size=75 - RELOC/doc/latex/zed-csp/csp2e.pdf + RELOC/doc/latex/zed-csp/csp2e.pdf details="CSP usage documentation" RELOC/doc/latex/zed-csp/csp2e.tex - RELOC/doc/latex/zed-csp/zed2e.pdf + RELOC/doc/latex/zed-csp/zed2e.pdf details="Z usage documentation" RELOC/doc/latex/zed-csp/zed2e.tex +runfiles size=8 + RELOC/tex/latex/zed-csp/zed-csp.sty +catalogue-also objectz catalogue-ctan /macros/latex/contrib/zed-csp -catalogue-date 2012-03-30 15:19:52 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license other-free +catalogue-topics formal-spec + +name zhlineskip +category Package +revision 51142 +shortdesc Line spacing for CJK documents +relocated 1 +longdesc This package supports typesetting CJK documents. It allows +longdesc users to specify the two ratios between the leading and the +longdesc font size of the body text and the footnote text. For CJK +longdesc typesetting, these ratios usually range from 1.5 to 1.67. This +longdesc package is also capable of restoring the math leading to that +longdesc of the Latin text (usually 1.2 times the font size). Finally, +longdesc it is possible to achieve the Microsoft Word multiple line +longdesc spacing style using zhlineskip. +containersize 2380 +containerchecksum c1e92d164d0b46ca1165775e5c17f72687cd83b6efbba95dd58fe55008877ab3f08bbaf90d36d491ec861705e9d15f74511c8a0f9cf66ef8bf5127d7aa2cf203 +doccontainersize 284028 +doccontainerchecksum 794822b3b89aec655af2663f3dfbe848ccac9fea8369f446596562178e73c01ddadcf1ce46fd1811e4b72a25917c310bd42e45f9b16a3adb897304ae345d5415 +docfiles size=80 + RELOC/doc/latex/zhlineskip/CJKmetrics.pdf + RELOC/doc/latex/zhlineskip/Latinmetrics.pdf + RELOC/doc/latex/zhlineskip/README.md details="Readme" + RELOC/doc/latex/zhlineskip/zhlineskip-test.tex + RELOC/doc/latex/zhlineskip/zhlineskip.pdf details="Package documentation" language="zh" + RELOC/doc/latex/zhlineskip/zhlineskip.tex +runfiles size=2 + RELOC/tex/latex/zhlineskip/zhlineskip.sty +catalogue-contact-bugs https://github.com/CTeX-org/ctex-kit/issues +catalogue-contact-home http://www.ctex.org/ +catalogue-contact-repository https://github.com/CTeX-org/ctex-kit +catalogue-contact-support https://github.com/CTeX-org/ctex-kit/issues +catalogue-ctan /language/chinese/zhlineskip +catalogue-date 2019-05-16 09:07:56 +0200 +catalogue-license lppl1.3c +catalogue-topics chinese +catalogue-version 1.0e + +name zhlipsum +category Package +revision 48629 +shortdesc Chinese dummy text +relocated 1 +longdesc This package provides an interface to dummy text in Chinese +longdesc language, which will be useful for testing Chinese documents. +longdesc UTF-8, GBK and Big5 encodings are supported. +containersize 200720 +containerchecksum 64ccc1f0baf30980162ce259d897a9fc97c6771768fadc3958e398e38f96ac6ea115b126a1b106270a7a509358108ffe8b93cf52af87503c66b8a365585391f6 +doccontainersize 330092 +doccontainerchecksum 06692d711ee3009bf11bc641569a9e3b0d6e339e0b7dca6e5e5d3a689b3fd24a5d4eaa45de7cd4ac2c0e3feea5c2612881dcc4bca88b12f554bc78fe96cb8220 +docfiles size=87 + RELOC/doc/latex/zhlipsum/README.md details="Readme" + RELOC/doc/latex/zhlipsum/zhlipsum-en.pdf details="Package documentation" language="en" + RELOC/doc/latex/zhlipsum/zhlipsum-en.tex + RELOC/doc/latex/zhlipsum/zhlipsum.pdf details="Package documentation" language="zh" +srccontainersize 96844 +srccontainerchecksum 32d12c4f3699275119f5dacbd7b6bbb559555ddceeccfcd908e0bb6f2db50b76cbe0323b7ce6e0474d369a1e343718cb0024cd0f87487e629dfc9f104c3e6950 +srcfiles size=70 + RELOC/source/latex/zhlipsum/zhlipsum-text.dtx + RELOC/source/latex/zhlipsum/zhlipsum.dtx + RELOC/source/latex/zhlipsum/zhlipsum.ins +runfiles size=111 + RELOC/tex/latex/zhlipsum/zhlipsum-big5.def + RELOC/tex/latex/zhlipsum/zhlipsum-gbk.def + RELOC/tex/latex/zhlipsum/zhlipsum-utf8.def + RELOC/tex/latex/zhlipsum/zhlipsum.sty +catalogue-also lipsum +catalogue-contact-bugs https://github.com/Stone-Zeng/zhlipsum/issues +catalogue-contact-repository https://github.com/Stone-Zeng/zhlipsum +catalogue-ctan /macros/latex/contrib/zhlipsum +catalogue-date 2018-09-08 18:58:53 +0200 +catalogue-license lppl1.3c +catalogue-topics dummy-gen chinese latex3 macro-supp +catalogue-version 1.1.1 name zhmetrics category Package revision 22207 -shortdesc TFM subfont files for using Chinese fonts in 8-bit TeX. +shortdesc TFM subfont files for using Chinese fonts in 8-bit TeX relocated 1 longdesc These are metrics to use existing Chinese TrueType fonts in longdesc workflows that use LaTeX & dvipdfmx, or pdfLaTeX. The fonts longdesc themselves are not included in the package. Six font families longdesc are supported: kai, song, lishu, fangsong, youyuan and hei. Two longdesc encodings (GBK and UTF-8) are supported. +containersize 59808 +containerchecksum abc0b873b5abb0b053fb59d8bb831a835f90cd8bfc2cde87d1031dba2e31db8721e3ea1037e7322b33ae5216dd65bd01008fb769eade0c9b4815e8ea7c55615c +doccontainersize 1396 +doccontainerchecksum e77fd912d10d8ab535c366f8e5b99e996607788b9ede295a3d7739fc4c14e0679c66c36bdefe2ce5433967b28b2ab228c332d9b0a23a841d42d3fa56cd204040 +docfiles size=1 + RELOC/doc/fonts/zhmetrics/README details="Readme" +srccontainersize 6380 +srccontainerchecksum d505658c340bc3824332ed473927bf971612204e69c56839d4e0bd0b6ad4b84a975fe32e863d12d2e0ecae580edd06c3ea0854b90cf762aa9ad6106d2f2afc1a +srcfiles size=9 + RELOC/source/fonts/zhmetrics/CTeXFonts.lua + RELOC/source/fonts/zhmetrics/ttfonts.map + RELOC/source/fonts/zhmetrics/zhfd.lua + RELOC/source/fonts/zhmetrics/zhtfm.lua runfiles size=4937 RELOC/fonts/tfm/zhmetrics/cyberb/cyberb00.tfm RELOC/fonts/tfm/zhmetrics/cyberb/cyberb01.tfm @@ -186330,75 +312451,149 @@ runfiles size=4937 RELOC/tex/latex/zhmetrics/c70zhli.fd RELOC/tex/latex/zhmetrics/c70zhsong.fd RELOC/tex/latex/zhmetrics/c70zhyou.fd -docfiles size=1 - RELOC/doc/fonts/zhmetrics/README -srcfiles size=9 - RELOC/source/fonts/zhmetrics/CTeXFonts.lua - RELOC/source/fonts/zhmetrics/ttfonts.map - RELOC/source/fonts/zhmetrics/zhfd.lua - RELOC/source/fonts/zhmetrics/zhtfm.lua catalogue-ctan /fonts/psfonts/zhmetrics -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics font-use font-cjk chinese catalogue-version r206 +name zhmetrics-uptex +category Package +revision 40728 +shortdesc Chinese font metrics for upTeX +relocated 1 +longdesc The package contains some Chinese font metrics (JFM, VF, etc) +longdesc for upTeX engine, together with a simple DVIPDFMx font mapping +longdesc of Fandol fonts for DVIPDFMx. +containersize 31628 +containerchecksum 1e068a0b402a5c69b44a86d797cb24266b2883c698decd8b8464c99b131d292cc5ac44249ba8e89dc0a414d6f12d73d4c069ffc3081cfa4b9926ca412bfc3dd6 +doccontainersize 89156 +doccontainerchecksum f9ac2953877cd830e1cf3402f3f2bac1f8159d05a4a74e89047c494ae04dc8930f1c09701f83871b4361976572ae7d1c5fbdaf3af3d9e6db12347a207f1b82cb +docfiles size=29 + RELOC/doc/fonts/zhmetrics-uptex/README.md details="Readme" + RELOC/doc/fonts/zhmetrics-uptex/doc/README.md details="Readme" + RELOC/doc/fonts/zhmetrics-uptex/makemetrics.lua + RELOC/doc/fonts/zhmetrics-uptex/upzhfandolfonts-test.pdf + RELOC/doc/fonts/zhmetrics-uptex/upzhfandolfonts-test.tex + RELOC/doc/fonts/zhmetrics-uptex/upzhfandolfonts.tex + RELOC/doc/fonts/zhmetrics-uptex/upzhm-h.pl + RELOC/doc/fonts/zhmetrics-uptex/upzhm-v.pl +runfiles size=1920 + RELOC/fonts/tfm/public/zhmetrics-uptex/upmono-h.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upmono-v.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upsans-h.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upsans-v.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upsansb-h.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upsansb-v.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upserif-h.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upserif-v.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upserifb-h.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upserifb-v.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upserifit-h.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upserifit-v.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upzhmono-h.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upzhmono-v.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upzhsans-h.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upzhsans-v.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upzhsansb-h.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upzhsansb-v.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upzhserif-h.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upzhserif-v.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upzhserifb-h.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upzhserifb-v.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upzhserifit-h.tfm + RELOC/fonts/tfm/public/zhmetrics-uptex/upzhserifit-v.tfm + RELOC/fonts/vf/public/zhmetrics-uptex/upzhmono-h.vf + RELOC/fonts/vf/public/zhmetrics-uptex/upzhmono-v.vf + RELOC/fonts/vf/public/zhmetrics-uptex/upzhsans-h.vf + RELOC/fonts/vf/public/zhmetrics-uptex/upzhsans-v.vf + RELOC/fonts/vf/public/zhmetrics-uptex/upzhsansb-h.vf + RELOC/fonts/vf/public/zhmetrics-uptex/upzhsansb-v.vf + RELOC/fonts/vf/public/zhmetrics-uptex/upzhserif-h.vf + RELOC/fonts/vf/public/zhmetrics-uptex/upzhserif-v.vf + RELOC/fonts/vf/public/zhmetrics-uptex/upzhserifb-h.vf + RELOC/fonts/vf/public/zhmetrics-uptex/upzhserifb-v.vf + RELOC/fonts/vf/public/zhmetrics-uptex/upzhserifit-h.vf + RELOC/fonts/vf/public/zhmetrics-uptex/upzhserifit-v.vf +catalogue-ctan /fonts/zhmetrics-uptex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics font-supp-misc font-cjk chinese +catalogue-version 1.0 + name zhnumber category Package -revision 37614 -shortdesc Typeset Chinese representations of numbers. +revision 50850 +shortdesc Typeset Chinese representations of numbers relocated 1 longdesc The package provides commands to typeset Chinese longdesc representations of numbers. The main difference between this longdesc package and CJKnumb is that the commands provided are longdesc expandable in the 'proper' way. +containersize 7888 +containerchecksum f5e0783636ca643463811293816c95f2e20345fc6b08f2bd22143ead830b102b7d5acb6dd587975ecae205ce8b79d75cff62bab153a6ada689958835c77298c5 +doccontainersize 266236 +doccontainerchecksum d58579fcb6b5464db3d1ec20942b61516eb481df88fa23ef24f890a937fa72b62c6fef7fd2772172c4faf1a616805bfe32bdf39e17d854b907dc61ec9f6b6f4e +docfiles size=68 + RELOC/doc/latex/zhnumber/README.md details="Readme" + RELOC/doc/latex/zhnumber/zhnumber.pdf details="Package documentation" language="zh" +srccontainersize 13348 +srccontainerchecksum c3ac546227494e59e44324c1f637e280982ba1a27644add9d1c8248b2cee0299154adef6d673eba91ef39124db16dafe0d30dc0ec09bfe9b2dc9f28b6b10bf61 +srcfiles size=17 + RELOC/source/latex/zhnumber/zhnumber.dtx + RELOC/source/latex/zhnumber/zhnumber.ins runfiles size=14 RELOC/tex/latex/zhnumber/zhnumber-big5.cfg RELOC/tex/latex/zhnumber/zhnumber-gbk.cfg RELOC/tex/latex/zhnumber/zhnumber-utf8.cfg RELOC/tex/latex/zhnumber/zhnumber.sty -docfiles size=82 - RELOC/doc/latex/zhnumber/README - RELOC/doc/latex/zhnumber/zhnumber.pdf -srcfiles size=18 - RELOC/source/latex/zhnumber/zhnumber.dtx - RELOC/source/latex/zhnumber/zhnumber.ins +catalogue-contact-bugs https://github.com/CTeX-org/ctex-kit/issues +catalogue-contact-home http://www.ctex.org/HomePage +catalogue-contact-repository https://github.com/CTeX-org/ctex-kit +catalogue-contact-support https://github.com/CTeX-org/ctex-kit/issues catalogue-ctan /macros/latex/contrib/zhnumber -catalogue-date 2015-06-19 14:01:03 +0200 -catalogue-license lppl1.3 +catalogue-date 2019-04-07 19:35:03 +0200 +catalogue-license lppl1.3c catalogue-topics chinese numbers -catalogue-version 2.2 +catalogue-version 2.7 name zhspacing category Package -revision 25644 -shortdesc Spacing for mixed CJK-English documents in XeTeX. +revision 41145 +shortdesc Spacing for mixed CJK-English documents in XeTeX relocated 1 longdesc The package manages spacing in a CJK document; between longdesc consecutive Chinese letters, spaces are ignored, but a longdesc consistent space is inserted between Chinese text and English longdesc (or mathematics). The package may be used by any document longdesc format under XeTeX. +containersize 12276 +containerchecksum 52d1d3523ae4c0d2dba5258b06cf9920f8a9005df7e03fd1407dd8ae2e4dc90768aab10127319ef9025765820b3ebb8a946ea0373114c9148a303517b563bfe0 +doccontainersize 169376 +doccontainerchecksum 7fd15e4f29671081670e881e9366ba627f5bed6d981fa0ef1c670d0744e1286c04e785e28b92279d66af851803d84949c2f463370f23c64987fea78531172128 +docfiles size=50 + RELOC/doc/generic/zhspacing/README.md details="Readme" + RELOC/doc/generic/zhspacing/zhs-man.pdf details="Package documentation" + RELOC/doc/generic/zhspacing/zhs-man.tex + RELOC/doc/generic/zhspacing/zhspacing-context-test.tex runfiles size=18 - RELOC/tex/xetex/zhspacing/context/t-zhspacing.tex - RELOC/tex/xetex/zhspacing/generic/zhmath.sty - RELOC/tex/xetex/zhspacing/generic/zhsmyclass.sty - RELOC/tex/xetex/zhspacing/generic/zhspacing.sty - RELOC/tex/xetex/zhspacing/generic/zhsusefulmacros.sty - RELOC/tex/xetex/zhspacing/latex/zhfont.sty - RELOC/tex/xetex/zhspacing/latex/zhulem.sty -docfiles size=45 - RELOC/doc/xetex/zhspacing/README - RELOC/doc/xetex/zhspacing/test/zhspacing-context-test.tex - RELOC/doc/xetex/zhspacing/zhs-man.pdf - RELOC/doc/xetex/zhspacing/zhs-man.tex + RELOC/tex/context/third/zhspacing/t-zhspacing.tex + RELOC/tex/generic/zhspacing/zhmath.sty + RELOC/tex/generic/zhspacing/zhsmyclass.sty + RELOC/tex/generic/zhspacing/zhspacing.sty + RELOC/tex/generic/zhspacing/zhsusefulmacros.sty + RELOC/tex/xelatex/zhspacing/zhfont.sty + RELOC/tex/xelatex/zhspacing/zhulem.sty +catalogue-contact-repository https://github.com/ctex-org/ctex-kit catalogue-ctan /macros/xetex/generic/zhspacing -catalogue-date 2015-02-23 19:58:21 +0100 -catalogue-license lppl +catalogue-date 2017-04-18 05:31:40 +0200 +catalogue-license lppl1.3 +catalogue-topics multilingual-addon chinese name ziffer category Package revision 32279 -shortdesc Conversion of punctuation in maths mode. +shortdesc Conversion of punctuation in maths mode relocated 1 longdesc The package modifies the behaviour of characters in maths mode longdesc so that: '.' is used as a one-thousand separator (as is common @@ -186406,23 +312601,37 @@ longdesc in Germany) ',' is used as a decimal separator (as is common in longdesc Germany) '--' is represented with spacing as appropriate to longdesc such constructs as '1.000,--'. These conversions may be longdesc switched on and off. +containersize 1924 +containerchecksum 3d29074642d8a4c63046347a36f47548557de92a64ab4d6b7d1cad87f97a9e25a09fe84cf699a3bf2129c4de00dd3ef3593f85056e8f38a9a2d1ca27c549cf96 +doccontainersize 652 +doccontainerchecksum 8eb75b54a6711ba0d0ad30343f253eabf88b3752de3112b13b96e4182119ef5f789916c413a5ca35ba7bf6619eb25bf64e7717844e4b9a49d33781d91f5b14af +docfiles size=1 + RELOC/doc/latex/ziffer/README details="Readme" runfiles size=1 RELOC/tex/latex/ziffer/ziffer.sty -docfiles size=1 - RELOC/doc/latex/ziffer/README +catalogue-also icomma catalogue-ctan /macros/latex/contrib/ziffer -catalogue-date 2012-05-09 18:20:59 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl +catalogue-topics numbers catalogue-version 2.1 name zlmtt category Package revision 34485 -shortdesc Use Latin Modern Typewriter fonts. +shortdesc Use Latin Modern Typewriter fonts relocated 1 longdesc The package allows selection of Latin Modern Typewriter fonts longdesc with scaling and access to all its features. The package longdesc requires the mweights package. +containersize 3036 +containerchecksum d015f09cf1d82550664780fa4bee7f901245365af5a1adb0820f7f844796f142faefea8899caa2a555cab5714205651f0978e7bb4dc3101c6cc8eba796e36728 +doccontainersize 53492 +doccontainerchecksum 34c82d428dd65651dffa4b23db4b9fb7b70cbb97f21e7b0ac960fb09326248912d48f41405aa6f682e59c45402da6810f97181782602456fddf75cfed5c1b5e4 +docfiles size=18 + RELOC/doc/fonts/zlmtt/README details="Readme" + RELOC/doc/fonts/zlmtt/zlmtt-doc.pdf details="Package documentation" + RELOC/doc/fonts/zlmtt/zlmtt-doc.tex runfiles size=19 RELOC/tex/latex/zlmtt/il2zlmtt.fd RELOC/tex/latex/zlmtt/il2zlmvtt.fd @@ -186443,40 +312652,75 @@ runfiles size=19 RELOC/tex/latex/zlmtt/ts1zlmtt.fd RELOC/tex/latex/zlmtt/ts1zlmvtt.fd RELOC/tex/latex/zlmtt/zlmtt.sty -docfiles size=18 - RELOC/doc/fonts/zlmtt/README - RELOC/doc/fonts/zlmtt/zlmtt-doc.pdf - RELOC/doc/fonts/zlmtt/zlmtt-doc.tex catalogue-ctan /fonts/zlmtt -catalogue-date 2014-06-29 13:20:21 +0200 +catalogue-date 2016-06-24 19:18:15 +0200 catalogue-license lppl1.3 +catalogue-topics font-supp catalogue-version 1.01 +name zootaxa-bst +category Package +revision 50619 +shortdesc A BibTeX style for the journal Zootaxa +relocated 1 +longdesc This package provides a .bst reference style file for the +longdesc journal Zootaxa that publishes contributions in zoology and +longdesc classification. This is a fork of apa.bst as provided by TeX +longdesc Live since this style file resembled the most Zootaxa's own +longdesc style. Further modifications were made to the code in order to +longdesc generate in-text citations and bibliography sections +longdesc appropriately. +containersize 6228 +containerchecksum 80816556a2e23cfd8345b7d22224142a5448105ccc5c1143f33c4560a4e4ab432115c2fc47c5d4c6ba599031f4c36b481465a5fa7b32afde888beac69a6e6c62 +doccontainersize 135268 +doccontainerchecksum f843aa27ab0c2139e1051aefaa9b667f2de489cc13578200ce7db2bdfc2397888856c6cbe68b6fa201e0cb269bb95818cb31f1b03622c49ebdced23fa5960d65 +docfiles size=47 + RELOC/doc/bibtex/zootaxa-bst/CHANGES.md + RELOC/doc/bibtex/zootaxa-bst/LICENSE + RELOC/doc/bibtex/zootaxa-bst/README.md details="Readme" + RELOC/doc/bibtex/zootaxa-bst/example-refs.bib + RELOC/doc/bibtex/zootaxa-bst/example.pdf details="Example of use" + RELOC/doc/bibtex/zootaxa-bst/example.tex +runfiles size=6 + RELOC/bibtex/bst/zootaxa-bst/zootaxa.bst +catalogue-contact-repository https://github.com/gaballench/zootaxa-bst +catalogue-ctan /biblio/bibtex/contrib/zootaxa-bst +catalogue-date 2019-03-27 19:05:22 +0100 +catalogue-license lppl1.3c +catalogue-topics bibtex-sty journalpub biology +catalogue-version 1.0 + name zwgetfdate category Package revision 15878 -shortdesc Get package or file date. +shortdesc Get package or file date relocated 1 longdesc The package can fetch the date declaration of packages and longdesc files used by a document, and then provide the information in longdesc macros. The facilities provide a means of obtaining the date of longdesc a package being documented; this is mainly of use when longdesc doc/docstrip. -runfiles size=1 - RELOC/tex/latex/zwgetfdate/zwgetfdate.sty +containersize 1384 +containerchecksum fe52555cc46a9e8340d8c9c37f88b372bf72efbd48a097b2d319592dc49a8cf55c87e80ea7d94ba6730742e9883215703749895008ba38838750efb9fb2334e9 +doccontainersize 246032 +doccontainerchecksum 7ab61dc4252ef7f60d1d5be8d4415bcaeaed194384a1da14a3400617b36c6efae3679dbbd6c8d64b8cc9f9947babe88c064d637379f663408cbe63ca42334bfb docfiles size=68 RELOC/doc/latex/zwgetfdate/License.txt RELOC/doc/latex/zwgetfdate/README - RELOC/doc/latex/zwgetfdate/zwgetfdate.pdf + RELOC/doc/latex/zwgetfdate/zwgetfdate.pdf details="Package documentation" RELOC/doc/latex/zwgetfdate/zwgetfdate.tex +runfiles size=1 + RELOC/tex/latex/zwgetfdate/zwgetfdate.sty +catalogue-contact-home http://icebearsoft.euweb.cz/tex/ catalogue-ctan /macros/latex/contrib/zwgetfdate -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl1.3 +catalogue-topics file-mgmt name zwpagelayout category Package revision 28846 -shortdesc Page layout and crop-marks. +shortdesc Page layout and crop-marks relocated 1 longdesc This package was developed as a typographers' toolbox offering longdesc important basic features for everyday work. It allows setting @@ -186484,73 +312728,96 @@ longdesc the paper size and the page layout; it can print crop marks; longdesc and it can reflect pages both horizontally and vertically. The longdesc package facilities work with TeX (output via dvips or longdesc (x)dvipdfm(x)), and with pdfTeX. -runfiles size=9 - RELOC/tex/latex/zwpagelayout/zwpagelayout.sty +containersize 8900 +containerchecksum f050edb743cb045547080925153ac16317f7f78205eedbc37b9db39704b84db376c9362cefcd6711d8c98d46af4d2baa82fe4c3be581d1e9c33689b702679d14 +doccontainersize 591556 +doccontainerchecksum 6f2a0c3e646f442e570ce576cf638a6a290b0bf0f120b19a27c1f190fb3d20d0d3dcd2a2e3490e9671846338b9d6890884f54296a31593993be9bfd06a7241fb docfiles size=204 RELOC/doc/latex/zwpagelayout/License.txt RELOC/doc/latex/zwpagelayout/LoremIpsumDolor.tex - RELOC/doc/latex/zwpagelayout/README + RELOC/doc/latex/zwpagelayout/README details="Readme" RELOC/doc/latex/zwpagelayout/adjustfoot.pdf RELOC/doc/latex/zwpagelayout/adjustfoot.tex RELOC/doc/latex/zwpagelayout/adjusthead.pdf RELOC/doc/latex/zwpagelayout/adjusthead.tex RELOC/doc/latex/zwpagelayout/coversample.pdf RELOC/doc/latex/zwpagelayout/coversample.tex - RELOC/doc/latex/zwpagelayout/zwpagelayout.pdf + RELOC/doc/latex/zwpagelayout/zwpagelayout.pdf details="Package documentation" RELOC/doc/latex/zwpagelayout/zwpagelayout.tex +runfiles size=9 + RELOC/tex/latex/zwpagelayout/zwpagelayout.sty +catalogue-also geometry crop +catalogue-contact-home http://icebearsoft.euweb.cz/tex/ catalogue-ctan /macros/latex/contrib/zwpagelayout -catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-date 2017-04-18 05:31:40 +0200 catalogue-license lppl +catalogue-topics geometry production catalogue-version 1.4d name zxjafbfont category Package revision 28539 -shortdesc Fallback CJK font support for xeCJK. +shortdesc Fallback CJK font support for xeCJK relocated 1 -runfiles size=1 - RELOC/tex/latex/zxjafbfont/zxjafbfont.sty +containersize 1052 +containerchecksum 357b100dac7061a5e6fe91e3a708f32e99a134158393581bc717ae3e90afa5dbbff7aa1bae8c092638bca2d5c3ab65d8a8cbc39c20c3ec1ff85c967fb3849513 +doccontainersize 1708 +doccontainerchecksum 215079eeb772dc4ea55d5e00945a757c877acf9ea56aebe5a8969564a3836f54ca406d502d73e93d92b131600fc77bd2342d36fa78300adc0b4d1dd7f5d0f423 docfiles size=2 RELOC/doc/latex/zxjafbfont/LICENSE - RELOC/doc/latex/zxjafbfont/README + RELOC/doc/latex/zxjafbfont/README details="Readme" +runfiles size=1 + RELOC/tex/latex/zxjafbfont/zxjafbfont.sty catalogue-ctan /language/japanese/zxjafbfont -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license other-free +catalogue-date 2016-12-18 08:34:28 +0100 +catalogue-license mit +catalogue-topics font-supp chinese japanese korean xetex catalogue-version 0.2 name zxjafont category Package -revision 37281 -shortdesc Set up Japanese font families for XeLaTeX. +revision 47613 +shortdesc Set up Japanese font families for XeLaTeX relocated 1 -runfiles size=4 - RELOC/tex/latex/zxjafont/zxjafont.sty -docfiles size=39 +containersize 3812 +containerchecksum 8e31d69c2c8be2b2357ca6f94b642af048c0b56b44fbf5db907de35bdda18d331dc516b713a6bd7648d4bc224f90928006a3f3461e427b4597dace8aba77cf04 +doccontainersize 145024 +doccontainerchecksum ac537d96fd0bb9d46013744cbba78b8c521f219135bff5b85a5d0f3544df9071e27ba3adede7e0118aba6a6b0cc2fe4ec71ba3fa4735fc7304d8e281e72242da +docfiles size=41 RELOC/doc/latex/zxjafont/LICENSE - RELOC/doc/latex/zxjafont/README - RELOC/doc/latex/zxjafont/README-ja - RELOC/doc/latex/zxjafont/zxjafont.pdf + RELOC/doc/latex/zxjafont/README-ja.md details="Readme" language="ja" + RELOC/doc/latex/zxjafont/README.md details="Readme" language="en" + RELOC/doc/latex/zxjafont/zxjafont.pdf details="Package documentation" RELOC/doc/latex/zxjafont/zxjafont.tex +runfiles size=5 + RELOC/tex/latex/zxjafont/zxjafont.sty catalogue-ctan /language/japanese/zxjafont -catalogue-date 2015-05-08 19:12:12 +0200 -catalogue-license other-free -catalogue-version 0.3 +catalogue-date 2018-05-04 16:10:09 +0200 +catalogue-license mit +catalogue-topics japanese font-supp xetex +catalogue-version 0.4 name zxjatype category Package -revision 28541 -shortdesc Standard conforming typesetting of Japanese, for XeLaTeX. +revision 47597 +shortdesc Standard conforming typesetting of Japanese, for XeLaTeX relocated 1 -runfiles size=8 - RELOC/tex/latex/zxjatype/zxjatype.sty -docfiles size=47 +containersize 8412 +containerchecksum fcc4c18b6a9ed31d4d32280aa088be06f6109deab53ce9e1820bc743151c1209e24d8c26bddaabd76f774be95de7599b087ef92415191fbf79a938169b9181fb +doccontainersize 136844 +doccontainerchecksum e971a21c677f93e1caad2951fe05296f5ae253d6d31d32e160f8606492b7c21f9995e9a1ec3ac5581cf1fb52c4174acec35cdf871644bb74d5b50cef421d78cd +docfiles size=48 RELOC/doc/latex/zxjatype/LICENSE - RELOC/doc/latex/zxjatype/README + RELOC/doc/latex/zxjatype/README-ja.md details="Readme" language="ja" + RELOC/doc/latex/zxjatype/README.md details="Readme" RELOC/doc/latex/zxjatype/example/example.pdf RELOC/doc/latex/zxjatype/example/example.tex RELOC/doc/latex/zxjatype/example/xetexsamp01.pdf +runfiles size=8 + RELOC/tex/latex/zxjatype/zxjatype.sty catalogue-ctan /language/japanese/zxjatype -catalogue-date 2014-02-26 23:03:13 +0100 -catalogue-license other-free -catalogue-version 0.6 +catalogue-date 2018-05-03 14:56:59 +0200 +catalogue-license mit +catalogue-topics std-conform japanese xetex +catalogue-version 0.6c diff --git a/SOURCES/tl-format.patch b/SOURCES/tl-format.patch index bc63b8c..6d89572 100644 --- a/SOURCES/tl-format.patch +++ b/SOURCES/tl-format.patch @@ -1,8 +1,8 @@ -diff -up source/texk/dvi2tty/dvi2tty-5.3.4/DVI.format source/texk/dvi2tty/dvi2tty-5.3.4/DVI -diff -up source/texk/dvidvi/dvidvi.c.format source/texk/dvidvi/dvidvi.c ---- source/texk/dvidvi/dvidvi.c.format 2015-07-28 21:21:51.170212574 -0400 -+++ source/texk/dvidvi/dvidvi.c 2015-07-28 21:22:27.842988620 -0400 -@@ -327,7 +327,7 @@ static void stringdvibuf(integer p, inte +diff -up texlive-base-20180414/source/texk/dvi2tty/dvi2tty-src/DVI.format texlive-base-20180414/source/texk/dvi2tty/dvi2tty-src/DVI +diff -up texlive-base-20180414/source/texk/dvidvi/dvidvi.c.format texlive-base-20180414/source/texk/dvidvi/dvidvi.c +--- texlive-base-20180414/source/texk/dvidvi/dvidvi.c.format 2017-06-23 10:55:46.000000000 -0400 ++++ texlive-base-20180414/source/texk/dvidvi/dvidvi.c 2018-04-30 13:07:17.910020544 -0400 +@@ -349,7 +349,7 @@ static void stringdvibuf(integer p, inte * Print a usage error messsage, and quit. */ static void usage(void) { @@ -11,7 +11,7 @@ diff -up source/texk/dvidvi/dvidvi.c.format source/texk/dvidvi/dvidvi.c (void)fprintf(stderr,"Usage: dvidvi [options] input[.dvi] [output]\n"); (void)fprintf(stderr,"where options are:\n"); (void)fprintf(stderr," [-f n] first page printed [-l n] last page printed\n"); -@@ -806,7 +806,7 @@ default: +@@ -828,7 +828,7 @@ default: } /* else argument with '-' */ } /* for */ if (*iname == 0) { @@ -20,7 +20,7 @@ diff -up source/texk/dvidvi/dvidvi.c.format source/texk/dvidvi/dvidvi.c error("! no input file specified"); } /* Inserted by djc@dsmail.hmi.de 3.8.1994 */ -@@ -817,7 +817,7 @@ default: +@@ -839,7 +839,7 @@ default: } if (*oname != 0 && !quiet) { @@ -29,118 +29,9 @@ diff -up source/texk/dvidvi/dvidvi.c.format source/texk/dvidvi/dvidvi.c (void)fprintf(stderr, "%s -> %s\n",iname,oname); temp = nextstring ; } -diff -up source/texk/ps2pk/objects.h.format source/texk/ps2pk/objects.h ---- source/texk/ps2pk/objects.h.format 2015-07-28 21:24:03.356405337 -0400 -+++ source/texk/ps2pk/objects.h 2015-07-28 21:24:21.397295166 -0400 -@@ -231,7 +231,7 @@ struct xobject { - /*SHARED*/ - /* NDW: personally, I want to see status and error messages! */ - #define IfTrace0(condition,model) \ -- {if (condition) printf(model);} -+ {if (condition) printf("%s",model);} - #define IfTrace1(condition,model,arg0) \ - {if (condition) printf(model,arg0);} - #define IfTrace2(condition,model,arg0,arg1) \ -diff -up source/texk/web2c/cwebboot.cin.format source/texk/web2c/cwebboot.cin ---- source/texk/web2c/cwebboot.cin.format 2015-07-28 21:24:28.351252699 -0400 -+++ source/texk/web2c/cwebboot.cin 2015-07-28 21:24:48.779127949 -0400 -@@ -1098,7 +1098,7 @@ void - fatal(const char*s,const char*t) - #line 1182 "cwebdir/common.w" - { --if(*s)printf(s); -+if(*s)printf("%s",s); - err_print(t); - history= fatal_message;exit(wrap_up()); - } -diff -up source/texk/web2c/cwebdir/common.c.format source/texk/web2c/cwebdir/common.c ---- source/texk/web2c/cwebdir/common.c.format 2015-07-28 21:24:56.764079186 -0400 -+++ source/texk/web2c/cwebdir/common.c 2015-07-28 21:25:24.830907788 -0400 -@@ -1063,7 +1063,7 @@ void - fatal(s,t) - char*s,*t; - { --if(*s)printf(s); -+if(*s)printf("%s",s); - err_print(t); - history= fatal_message;exit(wrap_up()); - } -diff -up source/texk/web2c/cwebdir/common.w.format source/texk/web2c/cwebdir/common.w ---- source/texk/web2c/cwebdir/common.w.format 2015-07-28 21:25:32.886858591 -0400 -+++ source/texk/web2c/cwebdir/common.w 2015-07-28 21:25:46.117777793 -0400 -@@ -1180,7 +1180,7 @@ concatenated to print the final error me - fatal(s,t) - char *s,*t; - { -- if (*s) printf(s); -+ if (*s) printf("%s",s); - err_print(t); - history=fatal_message; exit(wrap_up()); - } -diff -up source/texk/web2c/cwebdir/cweave.w.format source/texk/web2c/cwebdir/cweave.w ---- source/texk/web2c/cwebdir/cweave.w.format 2015-07-28 21:25:55.096722960 -0400 -+++ source/texk/web2c/cwebdir/cweave.w 2015-07-28 21:26:13.680609471 -0400 -@@ -1784,7 +1784,7 @@ void - print_cat(c) /* symbolic printout of a category */ - eight_bits c; - { -- printf(cat_name[c]); -+ printf("%s",cat_name[c]); - } - - @ The token lists for translated \TEX/ output contain some special control -diff -up source/texk/web2c/omegafonts/error_routines.c.format source/texk/web2c/omegafonts/error_routines.c ---- source/texk/web2c/omegafonts/error_routines.c.format 2015-07-28 21:26:21.654560776 -0400 -+++ source/texk/web2c/omegafonts/error_routines.c 2015-07-28 21:27:54.356994659 -0400 -@@ -62,7 +62,7 @@ void - yyerror(const_string fmt) - { - fprintf(stderr, "line %d (parsing): ", line_number); -- fprintf(stderr, fmt); -+ fprintf(stderr, "%s", fmt); - fprintf(stderr, "\n"); - num_errors++; - } -@@ -72,7 +72,7 @@ void - warning_0(const_string fmt) - { - fprintf(stderr, "line %d (warning): ", line_number); -- fprintf(stderr, fmt); -+ fprintf(stderr, "%s", fmt); - fprintf(stderr, "\n"); - } - -@@ -120,7 +120,7 @@ void - fatal_error_0(const_string fmt) - { - fprintf(stderr, "line %d (fatal): ", line_number); -- fprintf(stderr, fmt); -+ fprintf(stderr, "%s", fmt); - fprintf(stderr, "\n"); - exit(1); - } -@@ -156,7 +156,7 @@ void - internal_error_0(const_string fmt) - { - fprintf(stderr, "line %d (internal): ", line_number); -- fprintf(stderr, fmt); -+ fprintf(stderr, "%s", fmt); - fprintf(stderr, "\n"); - exit(2); - } -diff -up source/texk/web2c/omegafonts/out_routines.c.format source/texk/web2c/omegafonts/out_routines.c ---- source/texk/web2c/omegafonts/out_routines.c.format 2015-07-28 21:28:09.547901891 -0400 -+++ source/texk/web2c/omegafonts/out_routines.c 2015-07-28 21:28:22.209824567 -0400 -@@ -368,5 +368,5 @@ out_digits(unsigned counter) - void - out(const_string sval) - { -- fprintf(file_output, sval); -+ fprintf(file_output, "%s", sval); - } -diff -up source/texk/web2c/tiedir/tie.c.format source/texk/web2c/tiedir/tie.c ---- source/texk/web2c/tiedir/tie.c.format 2015-07-28 21:28:30.242775511 -0400 -+++ source/texk/web2c/tiedir/tie.c 2015-07-28 21:29:04.979563380 -0400 +diff -up texlive-base-20180414/source/texk/web2c/tiedir/tie.c.format texlive-base-20180414/source/texk/web2c/tiedir/tie.c +--- texlive-base-20180414/source/texk/web2c/tiedir/tie.c.format 2016-11-25 13:24:38.000000000 -0500 ++++ texlive-base-20180414/source/texk/web2c/tiedir/tie.c 2018-04-30 13:07:27.792787747 -0400 @@ -27,14 +27,14 @@ \ @@ -158,35 +49,3 @@ diff -up source/texk/web2c/tiedir/tie.c.format source/texk/web2c/tiedir/tie.c #define print2_ln(a,b){print2(a,b);term_new_line;} #define print3_ln(a,b,c){print3(a,b,c);term_new_line;} \ -diff -up source/texk/web2c/tiedir/tie.w.format source/texk/web2c/tiedir/tie.w ---- source/texk/web2c/tiedir/tie.w.format 2015-07-28 21:29:13.361512193 -0400 -+++ source/texk/web2c/tiedir/tie.w 2015-07-28 21:30:18.135116633 -0400 -@@ -458,14 +458,14 @@ for terminating an output line and writi - - @^system dependencies@> - @d term_out stdout --@d print(a) fprintf(term_out,a) /* `|print|' means write on the terminal */ -+@d print(a) fprintf(term_out,"%s",a) /* `|print|' means write on the terminal */ - @d print2(a,b) fprintf(term_out,a,b) /* same with two arguments */ - @d print3(a,b,c) fprintf(term_out,a,b,c) /* same with three arguments */ - @d print_c(v) fputc(v,term_out); /* print a single character */ - @d new_line(v) fputc('\n',v) /* start new line */ - @d term_new_line new_line(term_out) - /* start new line of the terminal */ --@d print_ln(v) {fprintf(term_out,v);term_new_line;} -+@d print_ln(v) {fprintf(term_out,"%s",v);term_new_line;} - /* `|print|' and then start new line */ - @d print2_ln(a,b) {print2(a,b);term_new_line;} /* same with two arguments */ - @d print3_ln(a,b,c) {print3(a,b,c);term_new_line;} -diff -up source/utils/devnag/src/devnag.c.format source/utils/devnag/src/devnag.c ---- source/utils/devnag/src/devnag.c.format 2015-07-28 21:23:26.446630739 -0400 -+++ source/utils/devnag/src/devnag.c 2015-07-28 21:23:34.215583295 -0400 -@@ -2400,7 +2400,7 @@ void put_macro(short macro) { - void err_ill(const char *str) { - fprintf(stderr, "Error: illegal character(s) \"%s\" detected at line %d:\n", - str, linenumber); -- fprintf(stderr, inbuf); -+ fprintf(stderr, "%s", inbuf); - exit(1); - } - diff --git a/SPECS/texlive-base.spec b/SPECS/texlive-base.spec new file mode 100644 index 0000000..a86f9ff --- /dev/null +++ b/SPECS/texlive-base.spec @@ -0,0 +1,9193 @@ +%define _rpmmacrodir /usr/lib/rpm/macros.d/ +%global shortname texlive +%global source_date 20190410 +%global source_name texlive-%{source_date}-source +%{!?_texdir: %global _texdir %{_datadir}/%{shortname}} +%{!?_texmf_var: %global _texmf_var %{_var}/lib/texmf} + +%global etc_fmtutil_cnf %{_sysconfdir}/texlive/web2c/fmtutil.cnf +%global usr_fmtutil_cnf %{_texdir}/texmf-dist/web2c/fmtutil.cnf +%global fmtutil_cnf_d %{_texdir}/fmtutil.cnf.d + +# don't export private perl modules +%global __provides_exclude %{?__provides_exclude:%__provides_exclude|}^perl\\( +%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\((LatexIndent.*|PDF::Reuse.*|Pedigree.*|TeXLive.*|Tk::path_tre)\\) + +# We do not want exec perms changing. +%global __brp_mangle_shebangs_exclude ^$ + +Name: %{shortname}-base +Version: %{source_date} +Release: 1%{?dist} +Epoch: 7 +Summary: TeX formatting system +# The only files in the base package are directories, cache, and license texts +# So we'll just list the license texts. This is also a bit of a lie, since most of these license texts do not apply to themselves. +License: ASL 2.0 and Artistic 2.0 and BSD and GFDL and GPL+ and GPLv2 and GPLv3 and Knuth and LGPLv2+ and LGPLv3+ and LPPL and OFL and Public Domain +URL: http://tug.org/texlive/ +Source0: http://ctan.math.illinois.edu/systems/texlive/Source/%{source_name}.tar.xz +Source1: macros.texlive +Source2: http://tug.ctan.org/systems/texlive/tlnet/tlpkg/texlive.tlpdb +Source3: texlive-licenses.tar.xz +Source4: generate-fmtutilcnf +# These noarch components are packed wrong upstream (do not unpack into texmf-dist) +Source5: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cyrillic.tar.xz +Source6: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cyrillic.doc.tar.xz +Source7: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glyphlist.tar.xz +Source8: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex.tar.xz +Source9: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex.doc.tar.xz +Source10: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lyluatex.tar.xz +Source11: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lyluatex.doc.tar.xz +Source12: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/oberdiek.tar.xz +Source13: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/oberdiek.doc.tar.xz +Source14: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive-en.doc.tar.xz +# These are the noarch components for the built binaries. +Source15: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/a2ping.doc.tar.xz +Source16: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/a2ping.tar.xz +Source17: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/accfonts.doc.tar.xz +Source18: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/accfonts.tar.xz +Source19: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/adhocfilelist.doc.tar.xz +Source20: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/adhocfilelist.tar.xz +Source21: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/afm2pl.tar.xz +Source22: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aleph.doc.tar.xz +Source23: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aleph.tar.xz +Source24: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amstex.doc.tar.xz +Source25: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amstex.tar.xz +Source26: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arara.doc.tar.xz +Source27: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arara.tar.xz +Source28: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/authorindex.doc.tar.xz +Source29: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/authorindex.tar.xz +Source30: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/autosp.doc.tar.xz +Source31: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/axodraw2.doc.tar.xz +Source32: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/axodraw2.tar.xz +Source33: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bib2gls.doc.tar.xz +Source34: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bib2gls.tar.xz +Source35: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibexport.doc.tar.xz +Source36: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibexport.tar.xz +Source37: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibtex8.doc.tar.xz +Source38: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibtex8.tar.xz +Source39: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibtex.doc.tar.xz +Source40: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibtex.tar.xz +Source41: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibtexu.doc.tar.xz +Source42: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bundledoc.doc.tar.xz +Source43: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bundledoc.tar.xz +Source44: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cachepic.doc.tar.xz +Source45: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cachepic.tar.xz +Source46: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/checkcites.doc.tar.xz +Source47: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/checkcites.tar.xz +Source48: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/checklistings.doc.tar.xz +Source49: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/checklistings.tar.xz +Source50: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chktex.doc.tar.xz +Source51: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chktex.tar.xz +Source52: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cjk-gs-integrate.doc.tar.xz +Source53: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cjk-gs-integrate.tar.xz +Source54: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cjkutils.tar.xz +Source55: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cluttex.doc.tar.xz +Source56: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cluttex.tar.xz +Source57: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context.doc.tar.xz +Source58: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context.tar.xz +Source59: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/convbkmk.doc.tar.xz +Source60: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/convbkmk.tar.xz +Source61: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/crossrefware.doc.tar.xz +Source62: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/crossrefware.tar.xz +Source63: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cslatex.tar.xz +Source64: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/csplain.tar.xz +Source65: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctanbib.doc.tar.xz +Source66: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctanbib.tar.xz +Source67: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctanify.doc.tar.xz +Source68: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctanify.tar.xz +Source69: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctan-o-mat.doc.tar.xz +Source70: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctan-o-mat.tar.xz +Source71: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctanupload.doc.tar.xz +Source72: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctanupload.tar.xz +Source73: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctie.doc.tar.xz +Source74: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cweb.doc.tar.xz +Source75: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cweb.tar.xz +Source76: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cyrillic-bin.doc.tar.xz +Source77: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cyrillic-bin.tar.xz +Source78: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/de-macro.doc.tar.xz +Source79: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/de-macro.tar.xz +Source80: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/detex.doc.tar.xz +Source81: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/detex.tar.xz +Source82: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/diadia.doc.tar.xz +Source83: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/diadia.tar.xz +Source84: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dosepsbin.doc.tar.xz +Source85: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dosepsbin.tar.xz +Source86: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dtl.doc.tar.xz +Source87: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dtl.tar.xz +Source88: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dtxgen.doc.tar.xz +Source89: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dtxgen.tar.xz +Source90: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvi2tty.doc.tar.xz +Source91: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvi2tty.tar.xz +Source92: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dviasm.doc.tar.xz +Source93: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dviasm.tar.xz +Source94: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvicopy.doc.tar.xz +Source95: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvicopy.tar.xz +Source96: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvidvi.doc.tar.xz +Source97: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvidvi.tar.xz +Source98: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dviinfox.doc.tar.xz +Source99: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dviinfox.tar.xz +Source100: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dviljk.doc.tar.xz +Source101: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dviljk.tar.xz +Source102: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dviout-util.doc.tar.xz +Source103: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvipdfmx.doc.tar.xz +Source104: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvipdfmx.tar.xz +Source105: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvipng.doc.tar.xz +Source106: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvipng.tar.xz +Source107: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvipos.doc.tar.xz +Source108: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvipos.tar.xz +Source109: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvips.doc.tar.xz +Source110: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvips.tar.xz +Source111: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvisvgm.doc.tar.xz +Source112: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvisvgm.tar.xz +Source113: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ebong.doc.tar.xz +Source114: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ebong.tar.xz +Source115: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eplain.doc.tar.xz +Source116: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eplain.tar.xz +Source117: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epspdf.doc.tar.xz +Source118: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epspdf.tar.xz +Source119: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epstopdf.doc.tar.xz +Source120: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epstopdf.tar.xz +Source121: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exceltex.doc.tar.xz +Source122: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exceltex.tar.xz +Source123: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fig4latex.doc.tar.xz +Source124: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fig4latex.tar.xz +Source125: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/findhyph.doc.tar.xz +Source126: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/findhyph.tar.xz +Source127: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontinst.doc.tar.xz +Source128: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontinst.tar.xz +Source129: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontools.doc.tar.xz +Source130: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontools.tar.xz +Source131: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontware.doc.tar.xz +Source132: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fragmaster.doc.tar.xz +Source133: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fragmaster.tar.xz +Source134: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/getmap.doc.tar.xz +Source135: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/getmap.tar.xz +Source136: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries.doc.tar.xz +Source137: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries.tar.xz +Source138: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gregoriotex.doc.tar.xz +Source139: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gregoriotex.tar.xz +Source140: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gsftopk.doc.tar.xz +Source141: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gsftopk.tar.xz +Source142: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/installfont.doc.tar.xz +Source143: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/installfont.tar.xz +Source144: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jadetex.doc.tar.xz +Source145: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jadetex.tar.xz +Source146: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jfmutil.doc.tar.xz +Source147: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jfmutil.tar.xz +Source148: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kotex-utils.doc.tar.xz +Source149: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kotex-utils.tar.xz +Source150: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kpathsea.doc.tar.xz +Source151: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kpathsea.tar.xz +Source152: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/l3build.tar.xz +Source153: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/l3build.doc.tar.xz +Source154: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lacheck.doc.tar.xz +Source155: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex2man.doc.tar.xz +Source156: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex2man.tar.xz +Source157: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex2nemeth.doc.tar.xz +Source158: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex2nemeth.tar.xz +Source159: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexdiff.doc.tar.xz +Source160: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexdiff.tar.xz +Source161: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexfileversion.doc.tar.xz +Source162: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexfileversion.tar.xz +Source163: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-git-log.doc.tar.xz +Source164: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-git-log.tar.xz +Source165: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexindent.doc.tar.xz +Source166: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexindent.tar.xz +Source167: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexpand.doc.tar.xz +Source168: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexpand.tar.xz +Source169: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-papersize.doc.tar.xz +Source170: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-papersize.tar.xz +Source171: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lcdftypetools.doc.tar.xz +Source172: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lilyglyphs.doc.tar.xz +Source173: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lilyglyphs.tar.xz +Source174: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/listbib.doc.tar.xz +Source175: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/listbib.tar.xz +Source176: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/listings-ext.doc.tar.xz +Source177: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/listings-ext.tar.xz +Source178: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lollipop.doc.tar.xz +Source179: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lollipop.tar.xz +Source180: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltxfileinfo.doc.tar.xz +Source181: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltxfileinfo.tar.xz +Source182: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltximg.doc.tar.xz +Source183: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltximg.tar.xz +Source184: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lua2dox.doc.tar.xz +Source185: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lua2dox.tar.xz +Source186: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luaotfload.doc.tar.xz +Source187: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luaotfload.tar.xz +Source188: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luatex.doc.tar.xz +Source189: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luatex.tar.xz +Source190: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lwarp.doc.tar.xz +Source191: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lwarp.tar.xz +Source192: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/make4ht.doc.tar.xz +Source193: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/make4ht.tar.xz +Source194: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makedtx.doc.tar.xz +Source195: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makedtx.tar.xz +Source196: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makeindex.doc.tar.xz +Source197: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makeindex.tar.xz +Source198: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/match_parens.doc.tar.xz +Source199: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/match_parens.tar.xz +Source200: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathspic.doc.tar.xz +Source201: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathspic.tar.xz +Source202: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metafont.doc.tar.xz +Source203: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metafont.tar.xz +Source204: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metapost.doc.tar.xz +Source205: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metapost.tar.xz +Source206: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mex.doc.tar.xz +Source207: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mex.tar.xz +Source208: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mf2pt1.doc.tar.xz +Source209: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mf2pt1.tar.xz +Source210: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mflua.tar.xz +Source211: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mfware.doc.tar.xz +Source212: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mfware.tar.xz +Source213: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mkgrkindex.doc.tar.xz +Source214: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mkgrkindex.tar.xz +Source215: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mkjobtexmf.doc.tar.xz +Source216: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mkjobtexmf.tar.xz +Source217: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mkpic.doc.tar.xz +Source218: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mkpic.tar.xz +Source219: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mltex.doc.tar.xz +Source220: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mltex.tar.xz +Source221: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mptopdf.doc.tar.xz +Source222: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mptopdf.tar.xz +Source223: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/m-tx.doc.tar.xz +Source224: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/m-tx.tar.xz +Source225: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multibibliography.doc.tar.xz +Source226: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multibibliography.tar.xz +Source227: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/musixtex.doc.tar.xz +Source228: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/musixtex.tar.xz +Source229: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/musixtnt.doc.tar.xz +Source230: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/musixtnt.tar.xz +Source231: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/omegaware.doc.tar.xz +Source232: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/patgen.doc.tar.xz +Source233: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/patgen.tar.xz +Source234: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pax.doc.tar.xz +Source235: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pax.tar.xz +Source236: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfbook2.doc.tar.xz +Source237: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfbook2.tar.xz +Source238: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfcrop.doc.tar.xz +Source239: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfcrop.tar.xz +Source240: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfjam.doc.tar.xz +Source241: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfjam.tar.xz +Source242: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdflatexpicscale.doc.tar.xz +Source243: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdflatexpicscale.tar.xz +Source244: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdftex.doc.tar.xz +Source245: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdftex.tar.xz +Source246: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdftex-quiet.doc.tar.xz +Source247: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdftex-quiet.tar.xz +Source248: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdftools.doc.tar.xz +Source249: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdftools.tar.xz +Source250: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfxup.doc.tar.xz +Source251: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfxup.tar.xz +Source252: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pedigree-perl.doc.tar.xz +Source253: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pedigree-perl.tar.xz +Source254: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/perltex.doc.tar.xz +Source255: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/perltex.tar.xz +Source256: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/petri-nets.doc.tar.xz +Source257: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/petri-nets.tar.xz +Source258: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pfarrei.doc.tar.xz +Source259: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pfarrei.tar.xz +Source260: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pkfix.doc.tar.xz +Source261: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pkfix-helper.doc.tar.xz +Source262: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pkfix-helper.tar.xz +Source263: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pkfix.tar.xz +Source264: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pmxchords.doc.tar.xz +Source265: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pmxchords.tar.xz +Source266: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pmx.doc.tar.xz +Source267: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pmx.tar.xz +Source268: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ps2pk.doc.tar.xz +Source269: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ps2pk.tar.xz +Source270: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst2pdf.doc.tar.xz +Source271: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst2pdf.tar.xz +Source272: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pstools.tar.xz +Source273: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-pdf.doc.tar.xz +Source274: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-pdf.tar.xz +Source275: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ptex2pdf.doc.tar.xz +Source276: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ptex2pdf.tar.xz +Source277: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ptex.doc.tar.xz +Source278: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ptex-fontmaps.doc.tar.xz +Source279: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ptex-fontmaps.tar.xz +Source280: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ptex.tar.xz +Source281: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/purifyeps.doc.tar.xz +Source282: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/purifyeps.tar.xz +Source283: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pygmentex.doc.tar.xz +Source284: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pygmentex.tar.xz +Source285: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pythontex.doc.tar.xz +Source286: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pythontex.tar.xz +Source287: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rubik.doc.tar.xz +Source288: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rubik.tar.xz +Source289: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/seetexk.doc.tar.xz +Source290: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/seetexk.tar.xz +Source291: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/splitindex.doc.tar.xz +Source292: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/splitindex.tar.xz +Source293: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/srcredact.doc.tar.xz +Source294: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/srcredact.tar.xz +Source295: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sty2dtx.doc.tar.xz +Source296: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sty2dtx.tar.xz +Source297: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/svn-multi.doc.tar.xz +Source298: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/svn-multi.tar.xz +Source299: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/synctex.doc.tar.xz +Source300: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/synctex.tar.xz +Source301: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tetex.doc.tar.xz +Source302: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tetex.tar.xz +Source303: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex4ebook.doc.tar.xz +Source304: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex4ebook.tar.xz +Source305: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex4ht.doc.tar.xz +Source306: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex4ht.tar.xz +Source307: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texcount.doc.tar.xz +Source308: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texcount.tar.xz +Source309: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texdef.doc.tar.xz +Source310: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texdef.tar.xz +Source311: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texdiff.doc.tar.xz +Source312: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texdiff.tar.xz +Source313: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texdirflatten.doc.tar.xz +Source314: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texdirflatten.tar.xz +Source315: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texdoc.doc.tar.xz +Source316: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex.doc.tar.xz +Source317: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texdoc.tar.xz +Source318: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texdoctk.tar.xz +Source319: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texdoctk.doc.tar.xz +Source320: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texfot.doc.tar.xz +Source321: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texfot.tar.xz +Source322: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive.infra.doc.tar.xz +Source323: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive.infra.tar.xz +Source324: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texliveonfly.doc.tar.xz +Source325: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texliveonfly.tar.xz +Source326: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive-scripts.doc.tar.xz +Source327: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive-scripts.tar.xz +Source328: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texloganalyser.doc.tar.xz +Source329: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texloganalyser.tar.xz +Source330: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texosquery.doc.tar.xz +Source331: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texosquery.tar.xz +Source332: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texsis.doc.tar.xz +Source333: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texsis.tar.xz +Source334: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex.tar.xz +Source335: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texware.doc.tar.xz +Source336: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texware.tar.xz +Source337: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thumbpdf.doc.tar.xz +Source338: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thumbpdf.tar.xz +Source339: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tie.doc.tar.xz +Source340: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tie.tar.xz +Source341: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tpic2pdftex.doc.tar.xz +Source342: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tpic2pdftex.tar.xz +Source343: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ttfutils.doc.tar.xz +Source344: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ttfutils.tar.xz +Source345: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/typeoutfileinfo.doc.tar.xz +Source346: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/typeoutfileinfo.tar.xz +Source347: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ulqda.doc.tar.xz +Source348: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ulqda.tar.xz +Source349: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uplatex.doc.tar.xz +Source350: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uptex.doc.tar.xz +Source351: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/urlbst.doc.tar.xz +Source352: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/urlbst.tar.xz +Source353: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/velthuis.doc.tar.xz +Source354: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/velthuis.tar.xz +Source355: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vlna.doc.tar.xz +Source356: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vpe.doc.tar.xz +Source357: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vpe.tar.xz +Source358: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/web.doc.tar.xz +Source359: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/web.tar.xz +Source360: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/webquiz.doc.tar.xz +Source361: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/webquiz.tar.xz +Source362: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wordcount.doc.tar.xz +Source363: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wordcount.tar.xz +Source364: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xdvi.doc.tar.xz +Source365: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xdvi.tar.xz +Source366: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xetex.doc.tar.xz +Source367: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xetex.tar.xz +Source368: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xindex.doc.tar.xz +Source369: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xindex.tar.xz +Source370: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xindy.doc.tar.xz +Source371: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xindy.tar.xz +Source372: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xmltex.doc.tar.xz +Source373: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xmltex.tar.xz +Source374: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/yplan.doc.tar.xz +Source375: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/yplan.tar.xz +Patch1: tl-kpfix.patch +Patch2: tl-format.patch +Patch3: texlive-20190410-selinux-context.patch +Patch5: texlive-2016-kpathsea-texlive-path.patch +# fixes from arch and upstream texlive +Patch7: texlive-20180414-new-poppler.patch +# fix texmf.cnf so that it finds texinfo bits in Fedora +Patch8: texlive-20190410-texinfo-path-fix.patch +# These tests only fail on 32 bit arches with gcc8 +Patch11: texlive-20190410-disable-more-failing-tests.patch +# Another test which fails on 32 bit arches (in F30+) +# probably because of stricter malloc checks in glibc. +# https://bugzilla.redhat.com/show_bug.cgi?id=1631847 +# Filed issue upstream, no resolution yet. +Patch15: texlive-base-20180414-disable-omegafonts-check-test.patch +# Use python3 on pdfbook2 +Patch16: texlive-base-pdfbook2-py3.patch +# fix annocheck issue detected by rpmdiff +Patch17: texlive-20180414-annocheck.patch +Patch18: texlive-20190410-poppler-0.73.patch +# Do not throw no file error in synctex +Patch19: texlive-base-20180414-synctex-do-not-throw-no-file-error.patch +# Fix libgs detection in configure/configure.ac in dvisvgm +Patch20: texlive-20190410-dvisvgm-fix-libgs-detection.patch +# Since we need to include tlmgr.pl for texconfig +# lets try to keep people from shooting themselves with it +Patch21: texlive-20190410-tlmgr-ignore-warning.patch + + +# Can't do this because it causes everything else to be noarch +# BuildArch: noarch +BuildRequires: gcc gcc-c++ +BuildRequires: xz libXaw-devel libXi-devel ncurses-devel bison flex file perl(Digest::MD5) texinfo gcc-c++ +BuildRequires: gd-devel +BuildRequires: teckit-devel >= 2.5.7 +BuildRequires: freetype-devel libpng-devel t1lib-devel zlib-devel poppler-devel t1utils +BuildRequires: zziplib-devel libicu-devel cairo-devel harfbuzz-devel pixman-devel graphite2-devel +%if 0%{?fedora} >= 28 || 0%{?rhel} >= 8 +BuildRequires: libgs-devel +%else +BuildRequires: ghostscript-devel +%endif +BuildRequires: libpaper-devel potrace-devel autoconf automake libtool +BuildRequires: gmp-devel mpfr-devel +# This is really for macros. +BuildRequires: python3-devel +# This is for xindy +BuildRequires: clisp-devel +BuildRequires: texlive-cyrillic, texlive-latex, texlive-metafont, texlive-cm-super, texlive-ec +# Cleanup Provides/Obsoletes +# texlive-cjk-gs-integrate (depackaged 2018-03-09) +Provides: texlive-cjk-gs-integrate = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cjk-gs-integrate <= 7:20170520 +Provides: tex-cjk-gs-integrate = %{epoch}:%{source_date}-%{release} +Obsoletes: tex-cjk-gs-integrate <= 7:20170520 +Provides: texlive-cjk-gs-integrate-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cjk-gs-integrate-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cjk-gs-integrate-bin <= 7:20170520 +Obsoletes: tex-cjk-gs-integrate-bin <= 7:20170520 +Provides: texlive-cjk-gs-integrate-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cjk-gs-integrate-doc <= 7:20170520 + +%description +The TeX Live software distribution offers a complete TeX system for a +variety of Unix, Macintosh, Windows and other platforms. It +encompasses programs for editing, typesetting, previewing and printing +of TeX documents in many different languages, and a large collection +of TeX macros and font libraries. + +The distribution includes extensive general documentation about TeX, +as well as the documentation for the included software packages. + +%package -n %{shortname}-a2ping +Provides: tex-a2ping = %{epoch}:%{source_date}-%{release} +Provides: texlive-a2ping-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-a2ping-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-a2ping-bin < 7:20170520 +License: GPL+ +Summary: Advanced PS, PDF, EPS converter +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-a2ping +a2ping is a Perl script command line utility written for Unix +that converts many raster image and vector graphics formats to +EPS or PDF and other page description formats. Accepted input +file formats are: PS (PostScript), EPS, PDF, PNG, JPEG, TIFF, +PNM, BMP, GIF, LBM, XPM, PCX, TGA. Accepted output formats are: +EPS, PCL5, PDF, PDF1, PBM, PGM, PPM, PS, markedEPS, markedPS, +PNG, XWD, BMP, TIFF, JPEG, GIF, XPM. a2ping delegates the low- +level work to Ghostscript (GS), pdftops and sam2p. a2ping fixes +many glitches during the EPS to EPS conversion, so its output +is often more compatible and better embeddable than its input. + +%package -n %{shortname}-accfonts +Provides: tex-accfonts = %{epoch}:%{source_date}-%{release} +Provides: texlive-accfonts-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-accfonts-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-accfonts-bin < 7:20170520 +Provides: tex-accfonts-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-accfonts-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-accfonts-doc < 7:20170520 +License: GPL+ +Summary: Utilities to derive new fonts from existing ones +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(CSX.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ISO-Latin1.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ISO-Latin2.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(IndUni_Omega.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(Norman.def) = %{epoch}:%{source_date}-%{release} +BuildArch: noarch + +%description -n %{shortname}-accfonts +The accfonts package contains three utilities to permit easy +manipulation of fonts, in particular the creation of unusual +accented characters. Mkt1font works on Adobe Type 1 fonts, +vpl2vpl works on TeX virtual fonts and vpl2ovp transforms a TeX +font to an Omega one. All three programs read in a font (either +the font itself or a property list), together with a simple +definition file containing lines such as '128 z acute'; they +then write out a new version of the font with the requested new +characters in the numerical slots specified. Great care is +taken over the positioning of accents, and over the provision +of kerning information for new characters; mkt1font also +generates suitable "hints" to enhance quality at small sizes or +poor resolutions. The programs are written in Perl. + +%package -n %{shortname}-adhocfilelist +Provides: tex-adhocfilelist = %{epoch}:%{source_date}-%{release} +Provides: texlive-adhocfilelist-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-adhocfilelist-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-adhocfilelist-bin < 7:20170520 +Provides: tex-adhocfilelist-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-adhocfilelist-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-adhocfilelist-doc < 7:20170520 +License: LPPL +Summary: '\listfiles' entries from the command line +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-adhocfilelist +The package provides a Unix shell script to display a list of +LaTeX \Provides...-command contexts on screen. Provision is +made for controlling the searches that the package does. The +package was developed on a Unix-like system, using (among other +things) the gnu variant of the find command. + +%package -n %{shortname}-afm2pl +Provides: tex-afm2pl = %{epoch}:%{source_date}-%{release} +Provides: texlive-afm2pl-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-afm2pl-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-afm2pl-bin < 7:20170520 +License: LPPL +Summary: afm2pl package +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(afm2pl-ot1.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(afm2pl-ot1ital.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(afm2pl-ot1tt.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(afm2pl-texnanlc.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(afm2pl-texnanuc.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(makesc8y.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-afm2pl +afm2pl package. + +%package -n %{shortname}-aleph +Provides: tex-aleph = %{epoch}:%{source_date}-%{release} +Provides: texlive-aleph-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-aleph-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-aleph-bin < 7:20170520 +Provides: tex-aleph-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-aleph-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-aleph-doc < 7:20170520 +Summary: Extended TeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-tetex +Requires(post,postun): coreutils +Requires: texlive-latex +Requires: texlive-plain +Requires: texlive-lambda +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-antomega +Requires: texlive-latex-fonts +Requires: texlive-omega + +%description -n %{shortname}-aleph +An development of omega, using most of the extensions of TeX +itself developed for e-TeX. + +%package -n %{shortname}-amstex +Provides: tex-amstex = %{epoch}:%{source_date}-%{release} +Provides: texlive-amstex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-amstex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-amstex-bin < 7:20170520 +Provides: tex-amstex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-amstex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-amstex-doc < 7:20170520 +License: LPPL +Summary: American Mathematical Society plain TeX macros +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-tetex +Requires(post,postun): coreutils +Requires: texlive-tex +Requires: texlive-amsfonts +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-pdftex +Requires: texlive-plain +Provides: tex(amsppt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(amsppt1.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(amstex.bug) = %{epoch}:%{source_date}-%{release} +Provides: tex(amstex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(amstex.ini) = %{epoch}:%{source_date}-%{release} +# symlinks only +BuildArch: noarch + +%description -n %{shortname}-amstex +AMSTeX is a TeX macro package, originally written by Michael +Spivak for the American Mathematical Society (AMS) during 1983- +1985 and is described in the book 'The Joy of TeX'. It is based +on Plain TeX, and provides many features for producing more +professional-looking maths formulas with less burden on +authors. More recently, the focus of attention has switched to +amslatex, but AMSTeX remains as a working system. + +%package -n %{shortname}-arara +Provides: tex-arara = %{epoch}:%{source_date}-%{release} +Provides: texlive-arara-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-arara-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-arara-bin < 7:20170520 +Provides: tex-arara-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-arara-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-arara-doc < 7:20170520 +License: BSD +Summary: Automation of LaTeX compilation +Requires: texlive-base +Requires: texlive-kpathsea +Provides: bundled(slf4j) = 1.6.4 +Provides: bundled(apache-commons-collections) = 3.2.1 +Provides: bundled(apache-commons-exec) = 1.1 +Provides: bundled(apache-commons-lang3) = 3.1 +Provides: bundled(apache-commons-cli) = 1.2 +Provides: bundled(mvel2) = 2.0.19 +Provides: bundled(snakeyaml) = 1.11 +Provides: bunbled(logback) = 1.0.1 +# shell +BuildArch: noarch + +%description -n %{shortname}-arara +Arara is comparable with other well-known compilation tools +like latexmk and rubber. The key difference is that that arara +determines its actions from metadata in the source code, rather +than relying on indirect resources, such as log file analysis. + +%package -n %{shortname}-authorindex +Provides: tex-authorindex = %{epoch}:%{source_date}-%{release} +Provides: texlive-authorindex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-authorindex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-authorindex-bin < 7:20170520 +Provides: tex-authorindex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-authorindex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-authorindex-doc < 7:20170520 +License: LPPL +Summary: Index citations by author names +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(authorindex.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-authorindex +This package allows the user to create an index of all authors +cited in a LaTeX document. Each author entry in the index +contains the pages where these citations occur. Alternatively, +the package can list the labels of the citations that appear in +the references rather than the text pages. The package relies +on BibTeX being used to handle citations. Additionally, it +requires Perl (version 5 or higher). + +%package -n %{shortname}-autosp +Provides: tex-autosp = %{epoch}:%{source_date}-%{release} +Provides: texlive-autosp-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-autosp-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-autosp-bin < 7:20170520 +Provides: tex-autosp-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-autosp-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-autosp-doc < 7:20170520 +License: GPLv2 +Summary: A Preprocessor that generates note-spacing commands for MusiXTeX scores +Requires: texlive-base + +%description -n %{shortname}-autosp +This program simplifies the creation of MusiXTeX scores by +converting (non-standard) commands of the form \anotes ... \en +into one or more conventional note-spacing commands, as +determined by the note values themselves, with \sk spacing +commands inserted as necessary. The coding for an entire +measure can be entered one part at a time, without concern for +note-spacing changes within the part or spacing requirements of +other parts. For example, \anotes\qa J\qa K&\ca l\qa m\ca n\en +generates \Notes\qa J\sk\qa K\sk&\ca l\qa m\sk\ca n\en . + +%package -n %{shortname}-axodraw2 +Provides: tex-axodraw2 = %{epoch}:%{source_date}-%{release} +Provides: texlive-axodraw2-bin = %{epoch}:%{source_date}-%{release} +License: GPLv3 +Summary: Feynman diagrams in a LaTeX document +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(axodraw2.sty) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-axodraw2 +This package defines macros for drawing Feynman graphs in LaTeX +documents. It is an important update of the axodraw package, +but since it is not completely backwards compatible, we have +given the style file a changed name. Many new features have +been added, with new types of line, and much more flexibility +in their properties. In addition, it is now possible to use +axodraw2 with pdfLaTeX, as well as with the LaTeX-dvips method. +However with pdfLaTeX (and also LuaLaTeX and XeLaTeX), an +external program, axohelp, is used to perform the geometrical +calculations needed for the pdf code inserted in the output +file. The processing involves a run of pdfLaTeX, a run of +axohelp, and then another run of pdfLaTeX. + +%package -n %{shortname}-bib2gls +Provides: tex-bib2gls = %{epoch}:%{source_date}-%{release} +Provides: texlive-bib2gls-bin = %{epoch}:%{source_date}-%{release} +License: GPLv3+ +Summary: Convert .bib files to glossaries-extra.sty resource files +Requires: texlive-base +# Java and shell +BuildArch: noarch + +%description -n %{shortname}-bib2gls +This Java command line application may be used to extract +glossary information stored in a .bib file and convert it into +glossary entry definition commands. This application should be +used with glossaries-extra.sty's 'record' package option. It +performs two functions in one: selects entries according to +records found in the .aux file (similar to bibtex), +hierarchically sorts entries and collates location lists +(similar to makeindex or xindy). The glossary entries can then +be managed in a system such as JabRef, and only the entries +that are actually required will be defined, reducing the +resources required by TeX. The supplementary application +convertgls2bib can be used to convert existing .tex files +containing definitions (\newglossaryentry etc.) to the .bib +format required by bib2gls. + +%package -n %{shortname}-bibexport +Provides: tex-bibexport = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibexport-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-bibexport-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibexport-bin < 7:20170520 +Provides: tex-bibexport-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibexport-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibexport-doc < 7:20170520 +License: LPPL 1.3 +Summary: Extract a BibTeX file based on a .aux file +Requires: texlive-base +Requires: texlive-kpathsea +BuildArch: noarch + +%description -n %{shortname}-bibexport +A Bourne shell script that uses BibTeX to extract bibliography +entries that are \cite'd in a document. It can also expand a +BibTeX file, expanding the abbreviations (other than the built- +in ones like month names) and followig the cross-references. + +%package -n %{shortname}-bibtex +Provides: tex-bibtex = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibtex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-bibtex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibtex-bin < 7:20170520 +Provides: tex-bibtex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibtex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibtex-doc < 7:20170520 +License: Knuth +Summary: Process bibliographies for LaTeX, etc +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(apalike.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(apalike.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-bibtex +BibTeX allows the user to store his citation data in generic +form, while printing citations in a document in the form +specified by a BibTeX style, to be specified in the document +itself (one often needs a LaTeX citation-style package, such as +natbib as well). BibTeX itself is an ASCII-only program; there +is, however, a version that copes with 8-bit character sets. +However, BibTeX's facilities rapidly run out as one moves away +from simple ASCII (for example, in the various national sorting +rules for languages expressed in different parts of ISO-8859 -- +the "ISO Latin" series). For more flexibility, the user is +urged to consider using biber with biblatex to typeset its +output. In fact, it is best to avoid BibTeX in favour of biber +and biblatex, if at all possible. + +%package -n %{shortname}-bibtexu +Provides: tex-bibtexu = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibtexu-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-bibtexu-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibtexu-bin < 7:20170520 +Provides: tex-bibtexu-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibtexu-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibtexu-doc < 7:20170520 +License: LPPL +Summary: bibtexu package +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-bibtexu +bibtexu package. + +%package -n %{shortname}-bibtex8 +Provides: tex-bibtex8 = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibtex8-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-bibtex8-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibtex8-bin < 7:20170520 +Provides: tex-bibtex8-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibtex8-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibtex8-doc < 7:20170520 +License: GPL+ +Summary: A fully 8-bit adaptation of BibTeX 0.99 +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-bibtex8 +An enhanced, portable C version of BibTeX. Enhanced by +conversion to "big" (32-bit) capacity, addition of run-time +selectable capacity and 8-bit support extensions. National +character set and sorting order are controlled by an external +configuration file. Various examples are included. + +%package -n %{shortname}-bundledoc +Provides: tex-bundledoc = %{epoch}:%{source_date}-%{release} +Provides: texlive-bundledoc-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-bundledoc-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bundledoc-bin < 7:20170520 +Provides: tex-bundledoc-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-bundledoc-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bundledoc-doc < 7:20170520 +License: LPPL +Summary: Bundle together all the files needed to build a LaTeX document +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(miktex.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(texlive-unix-arlatex.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(texlive-unix.cfg) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-bundledoc +The bundledoc package is a post-processor for the snapshot +package that bundles together all the classes, packages and +files needed to build a given LaTeX document. It reads the .dep +file that snapshot produces, finds each of the files mentioned +therein, and archives them into a single .tar.gz (or .zip, or +whatever) file, suitable for moving across systems, +transmitting to a colleague, etc. A script, arlatex, provides +an alternative "archiving" mechanism, creating a single LaTeX +file that contains all of the ancillary files of a LaTeX +document, together with the document itself, using the +filecontents* environment. + +%package -n %{shortname}-cachepic +Provides: tex-cachepic = %{epoch}:%{source_date}-%{release} +Provides: texlive-cachepic-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cachepic-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cachepic-bin < 7:20170520 +Provides: tex-cachepic-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-cachepic-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cachepic-doc < 7:20170520 +License: LPPL 1.3 +Summary: Convert document fragments into graphics +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(graphicx.sty) +Requires: tex(verbatim.sty) +Provides: tex(cachepic.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(prcachepic.def) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-cachepic +The bundle simplifies and automates conversion of document +fragments into external EPS or PDF files. The bundle consists +of two parts: a LaTeX package that implements a document level +interface, and a command line tool (written in lua) that +generates the external graphics. + +%package -n %{shortname}-checkcites +Provides: tex-checkcites = %{epoch}:%{source_date}-%{release} +Provides: texlive-checkcites-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-checkcites-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-checkcites-bin < 7:20170520 +Provides: tex-checkcites-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-checkcites-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-checkcites-doc < 7:20170520 +License: LPPL 1.3 +Summary: Check citation commands in a document +Requires: texlive-base +Requires: texlive-kpathsea +# lua script +BuildArch: noarch + +%description -n %{shortname}-checkcites +The package provides a lua script written for the sole purpose +of detecting undefined and unused references from LaTeX +auxiliary or bibliography files. + +%package -n %{shortname}-checklistings +Provides: tex-checklistings = %{epoch}:%{source_date}-%{release} +Provides: texlive-checklistings-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-checklistings-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-checklistings-bin < 7:20170520 +Provides: tex-checklistings-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-checklistings-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-checklistings-doc < 7:20170520 +License: LPPL 1.2 +Summary: Pass verbatim contents through a compiler and reincorporate the resulting output +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(keyval.sty) +Requires: tex(kvoptions.sty) +Requires: tex(fancyvrb.sty) +Requires: tex(color.sty) +Requires: tex(listings.sty) +Provides: tex(checklistings.sty) = %{epoch}:%{source_date}-%{release} +# shell script +BuildArch: noarch + +%description -n %{shortname}-checklistings +This package augments the fancyvrb and listings packages to +allow the source code they contain to be checked by an external +tool (like a compiler). The external tool's messages can be +automatically reincorporated into the original document. The +package does not focus on a specific programming language, but +it is designed to work well with languages and compilers in the +ML family. + +%package -n %{shortname}-chktex +Provides: tex-chktex = %{epoch}:%{source_date}-%{release} +Provides: texlive-chktex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-chktex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-chktex-bin < 7:20170520 +Provides: tex-chktex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-chktex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-chktex-doc < 7:20170520 +License: GPL+ +Summary: Check for errors in LaTeX documents +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-chktex +The program reports typographic and other errors in LaTeX +documents. Filters are also provided for checking the LaTeX +parts of CWEB documents. + +%if 0 +%package -n %{shortname}-cjk-gs-integrate +Provides: tex-cjk-gs-integrate = %{epoch}:%{source_date}-%{release} +Provides: texlive-cjk-gs-integrate-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cjk-gs-integrate-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cjk-gs-integrate-bin < 7:20170520 +Provides: tex-cjk-gs-integrate-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-cjk-gs-integrate-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cjk-gs-integrate-doc < 7:20170520 +License: GPLv3+ +Summary: Tools to integrate CJK fonts into Ghostscript +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-cjk-gs-integrate +This script searches a list of directories for CJK fonts, and +makes them available to an installed GhostScript. In the +simplest case with sufficient privileges, a run without +arguments should effect in a complete setup of GhostScript. +%endif + +%package -n %{shortname}-cjkutils +Provides: tex-cjkutils = %{epoch}:%{source_date}-%{release} +Provides: texlive-cjkutils-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cjkutils-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cjkutils-bin < 7:20170520 +License: LPPL +Summary: cjkutils package +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(b5ka12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(b5kr12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(b5so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c1so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c2so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c3so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c4so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c5so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c6so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c7so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(csso12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(gsfs14.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(j2so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(jsso12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(ksso17.cfg) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-cjkutils +cjkutils package. + +%package -n %{shortname}-cluttex +Provides: tex-cluttex = %{epoch}:%{source_date}-%{release} +Provides: texlive-cluttex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cluttex-bin = %{epoch}:%{source_date}-%{release} +License: GPLv3 +Summary: An automation tool for running LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +# lua +BuildArch: noarch + +%description -n %{shortname}-cluttex +This is another tool for the automation of LaTeX document +processing, like latexmk or arara. The main feature of this +tool is that it does not clutter your working directory with +.aux or .log or other auxiliary files. It has of course the +usual features of automation tools: It automatically re-runs +(La)TeX for cross-references. MakeIndex, BibTeX, Biber, or +makeglossaries will be executed if a corresponding option is +set. Furthermore, cluttex can watch input files for changes +(using an external program). + +%package -n %{shortname}-context +Provides: tex-context = %{epoch}:%{source_date}-%{release} +Provides: texlive-context-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-context-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-context-bin < 7:20170520 +Provides: tex-context-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-context-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-context-doc < 7:20170520 +License: GPL+ or LPPL +Summary: The ConTeXt macro package +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-tetex +Requires(post,postun): coreutils +Requires: texlive-metapost +Requires: texlive-pdftex +Requires: texlive-xetex +Requires: texlive-luatex +Requires: texlive-lm +Requires: texlive-lm-math +Requires: texlive-amsfonts +Requires: texlive-manfnt-font +Requires: texlive-mflogo-font +Requires: texlive-stmaryrd +Requires: texlive-mptopdf +Requires: ruby +Requires: tex(pstricks.sty) +Requires: tex(pst-plot.sty) +Provides: tex(notepad++.ini) = %{epoch}:%{source_date}-%{release} +Provides: tex(texworks-setup.ini) = %{epoch}:%{source_date}-%{release} +Provides: tex(tools.ini) = %{epoch}:%{source_date}-%{release} +Provides: tex(TeXworks.ini) = %{epoch}:%{source_date}-%{release} +Provides: tex(scite-context-readme.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(type-buy.dat) = %{epoch}:%{source_date}-%{release} +Provides: tex(type-fsf.dat) = %{epoch}:%{source_date}-%{release} +Provides: tex(type-ghz.dat) = %{epoch}:%{source_date}-%{release} +Provides: tex(type-tmf.dat) = %{epoch}:%{source_date}-%{release} +Provides: tex(contnav.afm) = %{epoch}:%{source_date}-%{release} +Provides: tex(cmin.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(cmit.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(cmitt.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(cmrm.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(cmsc.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(cmtt.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(ec-2004.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-8r.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(teff-trinite.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(contnav.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(8r-base.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ec-base.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ec-os-public-lm.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(mkiv-base.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(mkiv-px.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(mkiv-tx.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-adobe-euro.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-ams-base.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-ams-cmr.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-ams-euler.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-base.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-context-symbol.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-dummy.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-empty.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-micropress-informal.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-public-csr.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-public-lm.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-public-plr.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-public-vnr.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-vogel-symbol.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-wasy.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-youngryu-px.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-youngryu-tx.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(qx-base.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(qx-os-public-lm.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(t5-base.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(t5-os-public-lm.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(texnansi-base.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(texnansi-os-public-lm.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(tlig.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(contnav.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(contnav.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(bidi-symbols.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(demo-symbols.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(export-example.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-cweb.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-datastrc.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-educat.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-format.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-layout.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-narrowtt.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-newmat.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-pictex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-streams.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-subsub.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(metatex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-arrange.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-combine.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-common.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-copy.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-ideas.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-listing.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-markdown.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-precache.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-select.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-sql.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-timing.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-xml.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-abr-01.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-abr-02.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-abr-03.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-abr-04.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-cdr-01.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-faq-00.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-faq-01.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-faq-02.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-faq-03.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-mag-01.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-00.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-01.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-02.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-03.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-04.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-05.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-06.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-07.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-08.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-09.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-10.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-11.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-12.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-13.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-14.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-15.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-16.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-18.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-19.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-22.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-23.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-26.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-27.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-50.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-61.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-62.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-63.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-64.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-66.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-67.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-68.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-93.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-96.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-ptj-01.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(status-mkiv.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(supp-mis.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(supp-mpe.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(supp-pdf.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-dir-01.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bibl-ams.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bibl-apa-de.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bibl-apa-fr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bibl-apa-it.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bibl-apa.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bibl-aps.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bibl-num-fr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bibl-num.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bibl-ssa.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mag-0000.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(setup-qr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(aesop-de.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bryson.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cervantes-es.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(darwin.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(davis.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dawkins.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(demo-mps.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(demo-tex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(demo-xml.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(douglas.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(hawking.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(khatt-ar.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(khatt-en.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(knuth.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(linden.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lorem.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(materie.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(montgomery.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(quevedo-es.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(reich.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(sample.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(samples.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(thuan.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(tufte.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ward.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(weisman.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(zapf.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(context-test.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-basics.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-fonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-languages.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-math.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-mplib.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-plain.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-preprocessor-test.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-preprocessor.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-swiglib-test.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-swiglib.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-test.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-ch-de.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-ch-en.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-ch-nl.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-ch-de.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-ch-en.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-ch-nl.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-pictex.sty) = %{epoch}:%{source_date}-%{release} +# shell and lua +BuildArch: noarch + +%description -n %{shortname}-context +A full featured, parameter driven macro package, which fully +supports advanced interactive documents. See the ConTeXt garden +for a wealth of support information. + +%package -n %{shortname}-convbkmk +Provides: tex-convbkmk = %{epoch}:%{source_date}-%{release} +Provides: texlive-convbkmk-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-convbkmk-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-convbkmk-bin < 7:20170520 +Provides: tex-convbkmk-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-convbkmk-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-convbkmk-doc < 7:20170520 +License: MIT +Summary: Correct platex/uplatex bookmarks in PDF created with hyperref +Requires: texlive-base +Requires: texlive-kpathsea +Requires: ruby +# ruby script +BuildArch: noarch + +%description -n %{shortname}-convbkmk +The package provides a small Ruby script that corrects +bookmarks in PDF files created by platex/uplatex, using +hyperref. + +%package -n %{shortname}-crossrefware +Provides: tex-crossrefware = %{epoch}:%{source_date}-%{release} +Provides: texlive-crossrefware-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-crossrefware-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-crossrefware-bin < 7:20170520 +Provides: tex-crossrefware-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-crossrefware-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-crossrefware-doc < 7:20170520 +License: GPL+ +Summary: Scripts for working with crossref.org +# Just perl. +BuildArch: noarch + +%description -n %{shortname}-crossrefware +This bundle contains the following scripts: bibdoiadd.pl: add +DOI numbers to papers in a given bib file, bibzbladd.pl: add +Zbl numbers to papers in a given bib file, ltx2crossrefxml.pl: +a tool for the creation of XML files for submitting to the +parent site + +%package -n %{shortname}-cslatex +Provides: tex-cslatex = %{epoch}:%{source_date}-%{release} +Provides: texlive-cslatex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cslatex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cslatex-bin < 7:20170520 +License: GPL+ +Summary: LaTeX support for Czech/Slovak typesetting +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-latex +Requires: texlive-pdftex +Requires: texlive-tetex +Requires(post,postun): coreutils +Requires: tex(czech.ldf) +Requires: tex(slovak.ldf) +Provides: tex(czech.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fonttext.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(hyphen.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2lcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2lcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(slovak.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(cspsfont.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2pag.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2pbk.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2pcr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2phv.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2phvn.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2pnc.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2ppl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2ptm.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2pzc.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(nhelvet.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ntimes.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2pag.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2pbk.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2pcr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2phv.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2phvn.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2pnc.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2ppl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2ptm.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2pzc.fd) = %{epoch}:%{source_date}-%{release} +# symlinks +BuildArch: noarch + +%description -n %{shortname}-cslatex +LaTeX support for Czech/Slovak typesetting + +%package -n %{shortname}-csplain +Provides: tex-csplain = %{epoch}:%{source_date}-%{release} +Provides: texlive-csplain-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-csplain-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-csplain-bin < 7:20170520 +License: GPLv2+ +Summary: Plain TeX multilanguage support +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-pdftex +Requires: texlive-tetex +Requires(post,postun): coreutils +Requires: texlive-tex +Provides: tex(csenc-k.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(csenc-p.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(csenc-u.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(csenc-w.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(csfonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(csfontsm.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(czhyphen.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(extcode.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(fonttabs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2code.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(plaina4.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(skhyphen.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1code.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1enc-u.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ucode.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(uni-lcuc.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ams-math.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cavantga.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cbookman.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(chars-8z.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(chelvet.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cncent.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cpalatin.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-adventor.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-all.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-antt.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-arev.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-bera.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-bonum.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-charter.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-cursor.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-heros.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-pagella.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-polta.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-schola.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-termes.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ctimes.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cyrchars.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dcfonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ecfonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(exchars.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lmfonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luafonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ntx-math.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(tx-math.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(unifam.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(opmac-bib-iso690.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(opmac-bib-simple.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(opmac-bib.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(opmac-xetex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(opmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfuni.tex) = %{epoch}:%{source_date}-%{release} +# symlinks +BuildArch: noarch + +%description -n %{shortname}-csplain +CSplain is a small extension of basic Plain TeX macros, the +formats csplain and pdfcsplain can be generated. It supports: +hyphenation of words for 50+ languages, simple and powerfull +font loading system (various sizes of fonts), tex, pdftex, +xetex and luatex engines, math fonts simply loaded with full +amstex-like features, three internal encodings (IL2 for +Czech/Slovak languages, T1 for many languages with latin +alphabet and Unicode in new TeX engines), natural UTF-8 input +in pdfTeX using encTeX without any active characters, Czech and +Slovak special typesetting features. An important part of the +package is OPmac, which implements most of LaTeX's features +(sectioning, font selection, color, hyper reference and urls, +bibliography, index, toc, tables,etc.) by Plain TeX macros. The +OPmac macros can generate and bibliography without any external +program. + +%package -n %{shortname}-ctan-o-mat +Provides: tex-ctan-o-mat = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctan-o-mat-bin = %{epoch}:%{source_date}-%{release} +License: BSD +Summary: Upload or validate a package for CTAN +Requires: texlive-base +Requires: texlive-kpathsea +Requires: perl-interpreter +#perl +BuildArch: noarch + +%description -n %{shortname}-ctan-o-mat +This program can be used to automate the upload of a package to +CTAN. The description of the package is contained in a +configuration file. The provided information is validated in +any case. If the validation succeeds and not only the +validation is requested, then the provided archive file will be +placed in the incoming area of the CTAN for further processing +by the CTAN team. In any case any finding during the validation +is reported at the end of the processing. Note that the +validation is the default and an official submission has to be +requested by an appropriate command line option. ctan-o-mat +requires an Internet connection to the CTAN server. Even the +validation retrieves the known attributes and the basic +constraints from the server. + +%package -n %{shortname}-ctanbib +Provides: tex-ctanbib = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctanbib-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ctanbib-bin = %{epoch}:%{source_date}-%{release} +License: LPPL +Summary: Export ctan entries to bib format +Requires: texlive-base +Requires: texlive-kpathsea +#lua +BuildArch: noarch + +%description -n %{shortname}-ctanbib +This script can generate BibTeX records for LaTeX packages hosted on CTAN. + +%package -n %{shortname}-ctanify +Provides: tex-ctanify = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctanify-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ctanify-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ctanify-bin < 7:20170520 +Provides: tex-ctanify-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctanify-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ctanify-doc < 7:20170520 +License: LPPL 1.3 +Summary: Prepare a package for upload to CTAN +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-ctanify +Given a list of filenames, ctanify creates a tarball (a .tar.gz +file) with the files laid out in CTAN's preferred structure. +The tarball additionally contains a ZIP (.zip) file with copies +of all files laid out in the standard TeX Directory Structure +(TDS), which may be used by those intending to install the +package, or by those who need to incorporate it in a +distribution. (The TDS ZIP file will be installed in the CTAN +install/ tree.) + +%package -n %{shortname}-ctanupload +Provides: tex-ctanupload = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctanupload-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ctanupload-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ctanupload-bin < 7:20170520 +Provides: tex-ctanupload-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctanupload-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ctanupload-doc < 7:20170520 +License: GPLv3+ +Summary: Support for users uploading to CTAN +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-ctanupload +The package provides a Perl script that allows the uploads of a +contribution to CTAN from the command line. The aim is to +simplify the release process for LaTeX package authors. + +%package -n %{shortname}-ctie +Provides: tex-ctie = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctie-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ctie-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ctie-bin < 7:20170520 +License: GPL+ +Summary: C version of tie (merging Web change files) +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-ctie +This is a version of tie converted for use with cweb. + +%package -n %{shortname}-cweb +Provides: tex-cweb = %{epoch}:%{source_date}-%{release} +Provides: texlive-cweb-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cweb-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cweb-bin < 7:20170520 +Provides: tex-cweb-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-cweb-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cweb-doc < 7:20170520 +License: Knuth +Summary: A Web system in C +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(cwebmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfXcwebmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfcwebmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfdcwebmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdffcwebmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdficwebmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfwebmac.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-cweb +The Cweb system is a system for Structured Software +Documentation (also known as Literate Programming) in the +programming language C. + +%package -n %{shortname}-cyrillic +Provides: tex-cyrillic = %{epoch}:%{source_date}-%{release} +Provides: texlive-cyrillic-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cyrillic-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cyrillic-bin < 7:20170520 +Provides: tex-cyrillic-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-cyrillic-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cyrillic-doc < 7:20170520 +Provides: texlive-cyrillic-bin-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cyrillic-bin-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cyrillic-bin-bin < 7:20170520 +License: LPPL 1.3 +Summary: Support for Cyrillic fonts in LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(fontenc.sty) +Provides: tex(cp1251.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp855.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp866.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp866av.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp866mav.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp866nav.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp866tat.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ctt.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(dbk.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(iso88595.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(isoir111.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(koi8-r.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(koi8-ru.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(koi8-u.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcy.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcyccr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmbr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmtl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcydefs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcyenc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcylcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcylcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(maccyr.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(macukr.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(mik.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(mls.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(mnk.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(mos.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ncc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2ccr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmbr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmtl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2lcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2lcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2wlcyr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2wlcyss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2wncyr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2wncyss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(pt154.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(pt254.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2accr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmbr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmtl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2aenc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2alcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2alcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bccr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmbr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmtl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2benc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2blcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2blcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2cccr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmbr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmtl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2cenc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2clcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2clcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2ccr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmbr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmtl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2lcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2lcmtt.fd) = %{epoch}:%{source_date}-%{release} +# shell +BuildArch: noarch + +%description -n %{shortname}-cyrillic +This bundle of macros files provides macro support (including +font encoding macros) for the use of Cyrillic characters in +fonts encoded under the T2* and X2 encodings. These encodings +cover (between them) pretty much every language that is written +in a Cyrillic alphabet. + +%package -n %{shortname}-de-macro +Provides: tex-de-macro = %{epoch}:%{source_date}-%{release} +Provides: texlive-de-macro-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-de-macro-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-de-macro-bin < 7:20170520 +Provides: tex-de-macro-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-de-macro-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-de-macro-doc < 7:20170520 +License: AFL +Summary: Expand private macros in a document +Requires: texlive-base +Requires: texlive-kpathsea +# python +BuildArch: noarch + +%description -n %{shortname}-de-macro +De-macro is a Python script that helps authors who like to use +private LaTeX macros (for example, as abbreviations). A +technical editor or a cooperating author may balk at such a +manuscript; you can avoid manuscript rejection misery by +running de-macro on it. De-macro will expand macros defined in +\(re)newcommand or \(re)newenvironment commands, within the +document, or in the document's "private" package file. + +%package -n %{shortname}-detex +Provides: tex-detex = %{epoch}:%{source_date}-%{release} +Provides: texlive-detex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-detex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-detex-bin < 7:20170520 +License: NCSA +Summary: Strip TeX from a source file +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-detex +Detex is a program to remove TeX constructs from a text file. +It recognizes the \input command. The program assumes it is +dealing with LaTeX input if it sees the string \begin{document} +in the text. In this case, it also recognizes the \include and +\includeonly commands. + +%package -n %{shortname}-diadia +Provides: tex-diadia = %{epoch}:%{source_date}-%{release} +Provides: texlive-diadia-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-diadia-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-diadia-bin < 7:20170520 +Provides: tex-diadia-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-diadia-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-diadia-doc < 7:20170520 +License: LPPL +Summary: Package to keep a diabetes diary +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(xkeyval.sty) +Requires: tex(pgfplots.sty) +Requires: tex(pgfplotstable.sty) +Requires: tex(pgfcalendar.sty) +Requires: tex(tabularx.sty) +Requires: tex(booktabs.sty) +Requires: tex(colortbl.sty) +Requires: tex(ifthen.sty) +Requires: tex(calc.sty) +Requires: tex(translations.sty) +Requires: tex(amsmath.sty) +Requires: tex(tcolorbox.sty) +Requires: tex(environ.sty) +Requires: tex(multicol.sty) +Requires: tex(amssymb.sty) +Provides: tex(diadia.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(diadia.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-diadia +The diadia package allows you to keep a diabetes diary. +Usually, this means keeping record of certain medical values +like blood sugar, blood pressure, pulse or weight. It might +also include other medical, pharmaceutical or nutritional data +(HbA1c, insulin doses, carbohydrate units). The diadia package +supports all of this plus more - simply by adding more columns +to the data file! It is able to evaluate the data file and +typesets formatted tables and derived plots. Furthermore, it +supports medication charts and info boxes. Supported languages: +English, German. Feel free to provide other translation files! + +%package -n %{shortname}-dosepsbin +Provides: tex-dosepsbin = %{epoch}:%{source_date}-%{release} +Provides: texlive-dosepsbin-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dosepsbin-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dosepsbin-bin < 7:20170520 +Provides: tex-dosepsbin-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-dosepsbin-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dosepsbin-doc < 7:20170520 +License: GPLv2 or Artistic +Summary: Deal with DOS binary EPS files +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-dosepsbin +A Encapsulated PostScript (EPS) file may given in a special +binary format to support the inclusion of a thumbnail. This +file format, commonly known as DOS EPS format starts with a +binary header that contains the positions of the possible +sections: Postscript (PS); Windows Metafile Format (WMF); and +Tag Image File Format (TIFF). The PS section must be present +and either the WMF file or the TIFF file should be given. The +package provides a Perl program that will extract any of the +sections of such a file, in particular providing a 'text'-form +EPS file for use with (La)TeX. + +%package -n %{shortname}-dtl +Provides: tex-dtl = %{epoch}:%{source_date}-%{release} +Provides: texlive-dtl-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dtl-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dtl-bin < 7:20170520 +License: Public Domain +Summary: Tools to dis-assemble and re-assemble DVI files +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dtl +DTL (DVI Text Language) is a means of expressing the content of +a DVI file, which is readily readable by humans. The DTL bundle +contains an assembler dt2dv (which produces DVI files from DTL +files) and a disassembler dv2dt (which produces DTL files from +DVI files). The DTL bundle was developed so as to avoid some +infelicities of dvitype (among other pressing reasons). + +%package -n %{shortname}-dtxgen +Provides: tex-dtxgen = %{epoch}:%{source_date}-%{release} +Provides: texlive-dtxgen-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dtxgen-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dtxgen-bin < 7:20170520 +Provides: tex-dtxgen-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-dtxgen-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dtxgen-doc < 7:20170520 +License: GPL+ +Summary: Creates a template for a self-extracting .dtx file +Requires: texlive-base +Requires: texlive-kpathsea +# bash +BuildArch: noarch + +%description -n %{shortname}-dtxgen +The bash script dtxgen creates a template for a self-extracting +.dtx file. It is useful for those who plan to create a new +Documented LaTeX Source (.dtx) file. + +%package -n %{shortname}-dvi2tty +Provides: tex-dvi2tty = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvi2tty-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvi2tty-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvi2tty-bin < 7:20170520 +License: GPL+ +Summary: Produce ASCII from DVI +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dvi2tty +A DVI driver to produce an ASCII representation of the +document. The original version was written in Pascal, and the +present author translated the program to C. + +%package -n %{shortname}-dviasm +Provides: tex-dviasm = %{epoch}:%{source_date}-%{release} +Provides: texlive-dviasm-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dviasm-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dviasm-bin < 7:20170520 +Provides: tex-dviasm-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-dviasm-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dviasm-doc < 7:20170520 +License: GPLv3+ +Summary: A utility for editing DVI files +Requires: texlive-base +Requires: texlive-kpathsea +# python +BuildArch: noarch + +%description -n %{shortname}-dviasm +A Python script to support changing or creating DVI files via +disassembling into text, editing, and then reassembling into +binary format. It supports advanced features such as adding a +preprint number or watermarks. + +%package -n %{shortname}-dvicopy +Provides: tex-dvicopy = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvicopy-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvicopy-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvicopy-bin < 7:20170520 +License: GPL+ +Summary: Copy DVI files, flattening VFs +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dvicopy +DVICOPY is a utility program that allows one to take a DVI file +that references composite fonts (VF) and convert it into a DVI +file that does not contain such references. It also serves as a +basis for writing DVI drivers (much like DVItype). + +%package -n %{shortname}-dvidvi +Provides: tex-dvidvi = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvidvi-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvidvi-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvidvi-bin < 7:20170520 +License: Copyright only +Summary: Convert one DVI file into another +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dvidvi +The output DVI file's contents are specified by page selection +commands; series of pages and page number ranges may be +specified, as well as inclusions and exclusions. + +%package -n %{shortname}-dviinfox +Provides: tex-dviinfox = %{epoch}:%{source_date}-%{release} +Provides: texlive-dviinfox-bin = %{epoch}:%{source_date}-%{release} +License: MIT +Summary: Perl script to print DVI meta information +# perl +BuildArch: noarch +Requires: texlive-base +Requires: texlive-kpathsea +Requires: perl-interpreter + +%description -n %{shortname}-dviinfox +The package provides a perl script which prints information +about a DVI file. It also supports XeTeX XDV format. + +%package -n %{shortname}-dviljk +Provides: tex-dviljk = %{epoch}:%{source_date}-%{release} +Provides: texlive-dviljk-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dviljk-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dviljk-bin < 7:20170520 +License: GPL+ +Summary: DVI to Laserjet output +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dviljk +A dvi driver for the LaserJet printers, using kpathsea +recursive file searching. + +%package -n %{shortname}-dviout-util +Provides: tex-dviout-util = %{epoch}:%{source_date}-%{release} +Provides: texlive-dviout-util-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dviout-util-bin = %{epoch}:%{source_date}-%{release} +License: MIT +Summary: DVI output utilities +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dviout-util +This is a partial repackaging of elements of the DVIOUT package +by Toshio OSHIMA, Yoshiki OTOBE, and Kazunori ASAYAMA. +Here we don't include the main DVI previewer, but just want small utility +programs. + +%package -n %{shortname}-dvipdfmx +Provides: tex-dvipdfmx = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvipdfmx-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvipdfmx-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvipdfmx-bin < 7:20170520 +Provides: tex-dvipdfmx-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvipdfmx-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvipdfmx-doc < 7:20170520 +Provides: dvipdfmx = %{epoch}:%{source_date}-%{release} +Provides: dvipdfm = %{epoch}:%{source_date}-%{release} +License: GPL+ +Summary: An extended version of dvipdfm +Requires: texlive-base +Requires: texlive-glyphlist +Requires: texlive-kpathsea +Requires: texlive-xetex +Provides: tex(dvipdfmx.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(cid-x.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ckx.map) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-dvipdfmx +Dvipdfmx (formerly dvipdfm-cjk) is a development of dvipdfm +created to support multi-byte character encodings and large +character sets for East Asian languages. Dvipdfmx, if "called" +with the name dvipdfm, operates in a "dvipdfm compatibility" +mode, so that users of the both packages need only keep one +executable. A secondary design goal is to support as many "PDF" +features as does pdfTeX. There being no documentation as such, +users are advised to consult the documentation of dvipdfm (as +well, of course, as the package Readme. + +%package -n %{shortname}-dvipng +Provides: tex-dvipng = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvipng-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvipng-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvipng-bin < 7:20170520 +Provides: tex-dvipng-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvipng-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvipng-doc < 7:20170520 +Provides: dvipng = %{epoch}:%{source_date}-%{release} +License: LGPLv2+ +Summary: A fast DVI to PNG/GIF converter +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dvipng +This program makes PNG and/or GIF graphics from DVI files as +obtained from TeX and its relatives. Its benefits include: +Speed. It offers very fast rendering of DVI as bitmap files, +which makes it suitable for generating large amounts of images +on-the-fly, as needed in preview-latex, WeBWorK and others; It +does not read the postamble, so it can be started before TeX +finishes. There is a --follow switch that makes dvipng wait at +end-of-file for further output, unless it finds the POST marker +that indicates the end of the DVI; Interactive query of +options. dvipng can read options interactively through stdin, +and all options are usable. It is even possible to change the +input file through this interface. Support for PK, VF, +PostScript Type1, and TrueType fonts, colour specials, and +inclusion of PostScript, PNG, JPEG or GIF images. + +%package -n %{shortname}-dvipos +Provides: tex-dvipos = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvipos-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvipos-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvipos-bin < 7:20170520 +License: LPPL +Summary: dvipos package +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dvipos +dvipos package. + +%package -n %{shortname}-dvips +Provides: tetex-dvips = %{epoch}:%{source_date}-%{release} +Provides: tex-dvips = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvips-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvips-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvips-bin < 7:20170520 +Provides: tex-dvips-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvips-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvips-doc < 7:20170520 +License: GPL+ +Summary: A DVI to PostScript driver +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(canonex.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(cx.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(deskjet.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(dfaxhigh.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvired.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(epson.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(ibmvga.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(ljfour.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(qms.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(toshiba.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(6w.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(7t.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(8a.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(8r.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(ad.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(ansinew.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(asex.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(asexp.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(dc.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvips.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(ec.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(extex.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(funky.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(odvips.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-cs-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-ec-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-l7x-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-qx-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-rm-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-t2a-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-t2b-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-t2c-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-t5-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-texnansi-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-ts1-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(qx.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(stormex.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(tex256.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(texmext.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(texmital.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(texmsym.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(texnansx.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(blackdvi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(blackdvi.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(colordvi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(colordvi.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(rotate.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(rotate.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvips) = %{epoch}:%{source_date}-%{release} +Requires: texlive-latex-fonts + +%description -n %{shortname}-dvips +This package has been withdrawn from CTAN, and bundled into the +distributions' package sets. The current sources of dvips may +be found in the distribution of dvipsk which forms part of the +TeX Live sources. + +%package -n %{shortname}-dvisvgm +Provides: tex-dvisvgm = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvisvgm-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvisvgm-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvisvgm-bin < 7:20170520 +License: GPL+ +Summary: Convert DVI files to Scalable Vector Graphics format (SVG) +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dvisvgm +Dvisvgm is a command line utility that converts TeX DVI files +to the XML-based Scalable Vector Graphics (SVG) format. It +provides full font support including virtual fonts, font maps, +and sub-fonts. If necessary, dvisvgm vectorizes Metafont's +bitmap output in order to always create lossless scalable +output. The embedded SVG fonts can optionally be replaced with +graphics paths so that applications that don't support SVG +fonts are enabled to render the graphics properly. Besides many +other features, dvisvgm also supports color, emTeX, tpic, PDF +mapfile and PostScript specials. + +%package -n %{shortname}-ebong +Provides: tex-ebong = %{epoch}:%{source_date}-%{release} +Provides: texlive-ebong-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ebong-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ebong-bin < 7:20170520 +Provides: tex-ebong-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ebong-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ebong-doc < 7:20170520 +License: Public Domain +Summary: Utility for writing Bengali in Rapid Roman Format +Requires: texlive-base +Requires: texlive-kpathsea +# python +BuildArch: noarch + +%description -n %{shortname}-ebong +A tool (preprocessor) for writing your pRaa-ne-r ka-thaa in the +bengali langauage. It allows one to write the text in Rapid +Roman Bangla and convert it to the bangtex format by a python +program. All LaTeX markups are preserved in the target file. + +%package -n %{shortname}-eplain +Provides: tex-eplain = %{epoch}:%{source_date}-%{release} +Provides: texlive-eplain-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-eplain-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-eplain-bin < 7:20170520 +Provides: tex-eplain-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-eplain-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-eplain-doc < 7:20170520 +License: GPLv2+ +Summary: Extended plain TeX macros +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-pdftex +Requires: texlive-tetex +Requires(post,postun): coreutils +Provides: tex(arrow.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(btxmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(eplain.tex) = %{epoch}:%{source_date}-%{release} +# No actual binaries in here +BuildArch: noarch + +%description -n %{shortname}-eplain +An extended version of the plain TeX format, adding support for +bibliographies, tables of contents, enumerated lists, verbatim +input of files, numbered equations, tables, two-column output, +footnotes, hyperlinks in PDF output and commutative diagrams. +Eplain can also load some of the more useful LaTeX packages, +notably graphics, graphicx (an extended of version of +graphics), color, autopict (a package instance of the LaTeX +picture code), psfrag, and url. + +%package -n %{shortname}-epspdf +Provides: tex-epspdf = %{epoch}:%{source_date}-%{release} +Provides: texlive-epspdf-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-epspdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-epspdf-bin < 7:20170520 +Provides: tex-epspdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-epspdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-epspdf-doc < 7:20170520 +License: GPL+ +Summary: Converter for PostScript, EPS and PDF +Requires: texlive-base +Requires: texlive-kpathsea +# tcl and lua +BuildArch: noarch + +%description -n %{shortname}-epspdf +Epspdftk.tcl is a GUI ps/eps/pdf converter. Epspdf.tlu, its +command-line backend, can be used by itself. Options include +grayscaling, cropping margins and single-page selection. Some +conversion options are made possible by converting in multiple +steps. + +%package -n %{shortname}-epstopdf +Provides: tex-epstopdf = %{epoch}:%{source_date}-%{release} +Provides: texlive-epstopdf-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-epstopdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-epstopdf-bin < 7:20170520 +Provides: tex-epstopdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-epstopdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-epstopdf-doc < 7:20170520 +License: BSD +Summary: Convert EPS to 'encapsulated' PDF using Ghostscript +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-epstopdf +Epstopdf is a Perl script that converts an EPS file to an +'encapsulated' PDF file (a single page file whose media box is +the same as the original EPS's bounding box). The resulting +file suitable for inclusion by PDFTeX as an image. The script +is adapted to run both on Windows and on Unix-alike systems. +The script makes use of Ghostscript for the actual conversion +to PDF. It assumes Ghostscript version 6.51 or later, and (by +default) suppresses its automatic rotation of pages where most +of the text is not horizontal. LaTeX users may make use of the +epstopdf package, which will run the epstopdf script "on the +fly", thus giving the illusion that PDFLaTeX is accepting EPS +graphic files. + +%package -n %{shortname}-exceltex +Provides: tex-exceltex = %{epoch}:%{source_date}-%{release} +Provides: texlive-exceltex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-exceltex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-exceltex-bin < 7:20170520 +Provides: tex-exceltex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-exceltex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-exceltex-doc < 7:20170520 +License: GPL+ +Summary: Get data from Excel files into LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(ulem.sty) +Requires: tex(color.sty) +Provides: tex(exceltex.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-exceltex +Exceltex is a LaTeX package combined with a helper program +written in Perl. It provides an easy to use yet powerfull and +flexible way to get data from Spreadsheets into LaTeX. In +contrast to other solutions, exceltex does not seek to make the +creation of tables in LaTeX easier, but to get data from +Spreadsheets into LaTeX as easily as possible. The Excel (TM) +file format only acts as an interface between the spreadsheet +application and exceltex beacause it is easily accessible (via +the Spreadsheet::ParseExcel Perl module) and because most +spreadsheet applications are able to read and write Excel +files. + +%package -n %{shortname}-fig4latex +Provides: tex-fig4latex = %{epoch}:%{source_date}-%{release} +Provides: texlive-fig4latex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-fig4latex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fig4latex-bin < 7:20170520 +Provides: tex-fig4latex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-fig4latex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fig4latex-doc < 7:20170520 +License: GPLv3+ +Summary: Management of figures for large LaTeX documents +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-fig4latex +Fig4LaTeX simplifies management of the figures in a large LaTeX +document. Fig4LaTeX is appropriate for projects that include +figures with graphics created by XFig -- in particular, +graphics which use the combined PS/LaTeX (or PDF/LaTeX) export +method. An example document (with its output) is provided. + +%package -n %{shortname}-findhyph +Provides: tex-findhyph = %{epoch}:%{source_date}-%{release} +Provides: texlive-findhyph-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-findhyph-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-findhyph-bin < 7:20170520 +Provides: tex-findhyph-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-findhyph-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-findhyph-doc < 7:20170520 +License: GPL+ +Summary: Find hyphenated words in a document +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-findhyph +Findhyph is a Perl script that will analyse the log file from +running your document with \tracingparagraphs=1 set. The output +contains enough context to enable you to find the hyphenated +word that's being referenced. + +%package -n %{shortname}-fontinst +Provides: tex-fontinst = %{epoch}:%{source_date}-%{release} +Provides: texlive-fontinst-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-fontinst-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fontinst-bin < 7:20170520 +Provides: tex-fontinst-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-fontinst-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fontinst-doc < 7:20170520 +License: LPPL +Summary: Help with installing fonts for TeX and LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(color.sty) +Requires: tex(amstext.sty) +Provides: tex(bbox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(cfntinst.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontinst.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(finstmsc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontinst.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(multislot.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(xfntinst.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(csc2x.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(csckrn2x.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(osf2x.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontdoc.sty) = %{epoch}:%{source_date}-%{release} +# shell +BuildArch: noarch + +%description -n %{shortname}-fontinst +TeX macros for converting Adobe Font Metric files to TeX metric +and virtual font format. Fontinst helps mainly with the number +crunching and shovelling parts of font installation. This means +in practice that it creates a number of files which give the +TeX metrics (and related information) for a font family that +(La)TeX needs to do any typesetting in these fonts. Fontinst +furthermore makes it easy to create fonts containing glyphs +from more than one base font, taking advantage of (e.g.) +"expert" font sets. Fontinst cannot examine files to see if +they contain any useful information, nor automatically search +for files or work with binary file formats; those tasks must +normally be done manually or with the help of some other tool, +such as the pltotf and vptovf programs. + +%package -n %{shortname}-fontools +Provides: tex-fontools = %{epoch}:%{source_date}-%{release} +Provides: texlive-fontools-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-fontools-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fontools-bin < 7:20170520 +Provides: tex-fontools-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-fontools-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fontools-doc < 7:20170520 +License: GPLv2+ +Summary: Tools to simplify using fonts (especially TT/OTF ones) +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(fontools_ly1.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_ot1.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_t1.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_ts1.enc) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-fontools +This package provides a few tools to ease using fonts +(especially Truetype/Opentype ones) with Latex and fontinst: +afm2afm - reencode .afm files; designed to replace fontinst's +\reencodefont for big .afm files; autoinst - simplify the use +of the LCDF TypeTools by creating a command file for otftotfm, +plus .fd and .sty files; and ot2kpx - extract all kerning pairs +from an OpenType font. + +%package -n %{shortname}-fontware +Provides: tex-fontware = %{epoch}:%{source_date}-%{release} +Provides: texlive-fontware-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-fontware-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fontware-bin < 7:20170520 +License: LPPL +Summary: fontware package +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-fontware +fontware package. + +%package -n %{shortname}-fragmaster +Provides: tex-fragmaster = %{epoch}:%{source_date}-%{release} +Provides: texlive-fragmaster-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-fragmaster-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fragmaster-bin < 7:20170520 +Provides: tex-fragmaster-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-fragmaster-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fragmaster-doc < 7:20170520 +License: GPL+ +Summary: Using psfrag with PDFLaTeX +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-fragmaster +Fragmaster enables you to use psfrag with PDFLaTeX. It takes +EPS files and psfrag substitution definition files, and +produces PDF and EPS files with the substitutions included. + +%package -n %{shortname}-getmap +Provides: tex-getmap = %{epoch}:%{source_date}-%{release} +Provides: texlive-getmap-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-getmap-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-getmap-bin < 7:20170520 +Provides: tex-getmap-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-getmap-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-getmap-doc < 7:20170520 +License: LPPL +Summary: Download OpenStreetMap maps for use in documents +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(xkeyval.sty) +Requires: tex(stringenc.sty) +Requires: tex(ifthen.sty) +Provides: tex(getmap.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(getmap.sty) = %{epoch}:%{source_date}-%{release} +# lua and shell +BuildArch: noarch + +%description -n %{shortname}-getmap +The package provides a simple interface to OpenStreetMap, and +to Google Maps "map images". In the simplest case, it is +sufficient to specify the address you need (if you don't, the +package will use its own default). The package loads the map +image using an external lua script (invoked via \write 18: +LaTeX must be running with \write 18 enabled). The ("external") +lua script may be used from the command line; a bash version is +provided. + +%package -n %{shortname}-glossaries +Provides: tex-glossaries = %{epoch}:%{source_date}-%{release} +Provides: texlive-glossaries-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-glossaries-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-glossaries-bin < 7:20170520 +Provides: tex-glossaries-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-glossaries-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-glossaries-doc < 7:20170520 +License: LPPL 1.3 +Summary: Create glossaries and lists of acronyms +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(tracklang.sty) +Requires: tex(ifthen.sty) +Requires: tex(xkeyval.sty) +Requires: tex(mfirstuc.sty) +Requires: tex(textcase.sty) +Requires: tex(xfor.sty) +Requires: tex(datatool-base.sty) +Requires: tex(amsgen.sty) +Requires: tex(etoolbox.sty) +Requires: tex(glossary-super.sty) +Requires: tex(glossary-tree.sty) +Requires: tex(translator.sty) +Requires: tex(accsupp.sty) +Requires: tex(longtable.sty) +Requires: tex(array.sty) +Requires: tex(multicol.sty) +Requires: tex(supertabular.sty) +Provides: tex(glossaries-babel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-compatible-207.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-compatible-307.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-polyglossia.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-prefix.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-accsupp.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-hypernav.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-inline.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-list.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-long.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-longragged.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-mcols.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-super.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-superragged.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-tree.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-acronym-desc.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-acronym.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-acronyms-lang.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-brief.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-childnoname.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-cite.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-images.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-long.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-multipar.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-parent.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-symbols.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-url.tex) = %{epoch}:%{source_date}-%{release} +# perl and lua +BuildArch: noarch + +%description -n %{shortname}-glossaries +The glossaries package supports acronyms and multiple +glossaries, and has provision for operation in several +languages (using the facilities of either babel or +polyglossia). New entries are defined to have a name and +description (and optionally an associated symbol). Support for +multiple languages is offered, and plural forms of terms may be +specified. An additional package, glossaries-accsupp, can make +use of the accsupp package mechanisms for accessibility support +for PDF files containing glossaries. The user may define new +glossary styles, and preambles and postambles can be specified. +There is provision for loading a database of terms, but only +terms used in the text will be added to the relevant glossary. +The package uses an indexing program to provide the actual +glossary; either makeindex or xindy may serve this purpose, and +a Perl script is provided to serve as interface. The package +distribution also provides the mfirstuc package, for changing +the first letter of a word to upper case. The package +supersedes the author's glossary package (which is now +obsolete), and a conversion tool is provided. + +%package -n %{shortname}-glyphlist +Provides: tex-glyphlist = %{epoch}:%{source_date}-%{release} +License: LPPL +Summary: glyphlist package +BuildArch: noarch +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-glyphlist +glyphlist package. + +%package -n %{shortname}-gregoriotex +Provides: tex-gregoriotex = %{epoch}:%{source_date}-%{release} +Provides: texlive-gregoriotex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-gregoriotex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-gregoriotex-bin < 7:20170520 +Provides: tex-gregoriotex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-gregoriotex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-gregoriotex-doc < 7:20170520 +License: GPLv3 +Summary: Engraving Gregorian Chant scores +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(gregoriosyms.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-signs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-syllable.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-main.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gsp-default.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-nabc.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-symbols.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-chars.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-spaces.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-gregoriotex +Gregorio is a software application for engraving Gregorian +Chant scores on a computer. Gregorio's main job is to convert a +gabc file (simple text representation of a score) into a +GregorioTeX file, which makes TeX able to create a PDF of your +score. + +%package -n %{shortname}-gsftopk +Provides: tex-gsftopk = %{epoch}:%{source_date}-%{release} +Provides: texlive-gsftopk-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-gsftopk-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-gsftopk-bin < 7:20170520 +License: GPL+ +Summary: Convert "ghostscript fonts" to PK files +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-gsftopk +Designed for use with xdvi and dvips this utility converts +Adobe Type 1 fonts to PK bitmap format. It should not +ordinarily be much used nowadays, since both its target +applications are now capable of dealing with Type 1 fonts, +direct. + +%package -n %{shortname}-installfont +Provides: tex-installfont = %{epoch}:%{source_date}-%{release} +Provides: texlive-installfont-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-installfont-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-installfont-bin < 7:20170520 +Provides: tex-installfont-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-installfont-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-installfont-doc < 7:20170520 +License: LPPL +Summary: A bash script for installing a LaTeX font family +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-installfont +With this script you can install a LaTeX font family +(PostScript Type 1, TrueType and OpenType formats are +supported). Font series from light to ultra bold, and (faked) +small caps and (faked) slanted shapes are supported, but not +expert fonts. The script will rename the fonts automatically +(optional) or will otherwise expect the *.afm files and the +font files (in PostScript Type1 format) named in the Karl Berry +scheme (e.g. 5bbr8a.pfb). After running the script, you should +have a working font installation in your local TeX tree. + +%package -n %{shortname}-jadetex +Provides: tex-jadetex = %{epoch}:%{source_date}-%{release} +Provides: texlive-jadetex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-jadetex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-jadetex-bin < 7:20170520 +Provides: tex-jadetex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-jadetex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-jadetex-doc < 7:20170520 +Provides: jadetex = %{epoch}:%{source_date}-%{release} +License: MIT +Summary: Macros supporting Jade DSSSL output +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-latex +Requires: texlive-passivetex +Requires: texlive-pdftex +Requires: texlive-tetex +Requires: texlive-tex +Requires(post,postun): coreutils +Provides: tex(dsssl.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(uentities.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ut1omlgc.fd) = %{epoch}:%{source_date}-%{release} +# no binaries +BuildArch: noarch + +%description -n %{shortname}-jadetex +Macro package on top of LaTeX to typeset TeX output of the Jade +DSSSL implementation. + +%package -n %{shortname}-jfmutil +Provides: tex-jfmutil = %{epoch}:%{source_date}-%{release} +Provides: texlive-jfmutil-bin = %{epoch}:%{source_date}-%{release} +License: MIT +Summary: Utility to process pTeX-extended TFM and VF +# perl +BuildArch: noarch +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-jfmutil +This program provides functionality to process data files (JFM +and VF) that form logical fonts used in (u)pTeX. The functions +currently available include: The mutual conversion between +Japanese virtual fonts (pairs of VF and JFM) and files in the +"ZVP format", which is an original text format representing +data in virtual fonts. This function can be seen as a +counterpart to the vftovp/vptovf programs. The mutual +conversion between VF files alone and files in the "ZVP0 +format", which is a subset of the ZVP format. + +%package -n %{shortname}-kotex-utils +Provides: tex-kotex-utils = %{epoch}:%{source_date}-%{release} +Provides: texlive-kotex-utils-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-kotex-utils-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-kotex-utils-bin < 7:20170520 +Provides: tex-kotex-utils-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-kotex-utils-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-kotex-utils-doc < 7:20170520 +License: LPPL +Summary: Utility scripts and support files for typesetting Korean +Requires: texlive-base +Requires: texlive-kotex-utf +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-kotex-utils +The bundle provides scripts and support files for index +generation in Korean language typesetting. The files belong to +the ko.TeX bundle. + +%package -n %{shortname}-kpathsea +License: LGPLv2+ +Summary: Path searching library for TeX-related files +Provides: kpathsea = %{epoch}:%{source_date}-%{release} +Obsoletes: kpathsea < %{source_date} +Provides: tex-kpathsea = %{epoch}:%{source_date}-%{release} +Provides: texlive-kpathsea-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-kpathsea-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-kpathsea-bin < 7:20170520 +Provides: tex-kpathsea-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-kpathsea-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-kpathsea-doc < 7:20170520 +Requires: coreutils, grep +Requires: texlive-base, texlive-tetex +Provides: tex(fmtutil.cnf) = %{epoch}:%{source_date}-%{release} +Provides: tex(mktex.cnf) = %{epoch}:%{source_date}-%{release} +Provides: tex(texmf.cnf) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-kpathsea +Kpathsea is a library and utility programs which provide path +searching facilities for TeX file types, including the self- +locating feature required for movable installations, layered on +top of a general search mechanism. + +%package -n %{shortname}-l3build +Provides: tex-l3build = %{epoch}:%{source_date}-%{release} +Provides: texlive-l3build-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-l3build-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-l3build-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-l3build-doc < 7:20180414 +License: LPPL +Summary: A testing and building system for (La)TeX +Provides: tex(regression-test.tex) = %{epoch}:%{source_date}-%{release} +Requires: texlive-base +Requires: texlive-kpathsea +# lua +BuildArch: noarch + +%description -n %{shortname}-l3build +The build system supports testing and building LaTeX3 code, on +Linux, Mac OS X and Windows systems. The package offers: A unit +testing system for (La)TeX code (whether kernel code or +contributed packages); A system for typesetting package +documentation; and An automated process for creating CTAN +releases. + +%package -n %{shortname}-lacheck +Provides: tex-lacheck = %{epoch}:%{source_date}-%{release} +Provides: texlive-lacheck-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-lacheck-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lacheck-bin < 7:20170520 +License: GPL+ +Summary: LaTeX checker +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-lacheck +Lacheck is a tool for finding common mistakes in LaTeX +documents. The distribution includes sources, and executables +for OS/2 and Win32 environments. + +%package -n %{shortname}-latex +Provides: tex-latex = %{epoch}:%{source_date}-%{release} +Provides: tetex-latex = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-bin < 7:20170520 +Provides: texlive-latex-bin-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latex-bin-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-bin-bin < 7:20170520 +Provides: tex-latex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-doc < 7:20170520 +License: LPPL 1.3 +Summary: A TeX macro package that defines LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-luatex +Requires: texlive-pdftex +Requires: texlive-latexconfig +Requires: texlive-latex-fonts +Requires: texlive-tetex +Requires(post,postun): coreutils +Requires: tex(multicol.sty) +Requires: tex(url.sty) +Requires: tex(hyperref.sty) +Provides: tex(alltt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ansinew.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(applemac.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(article.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(article.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ascii.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(bezier.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(bk10.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(bk11.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(bk12.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(book.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(book.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp1250.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp1252.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp1257.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp437.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp437de.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp850.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp852.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp858.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp865.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(decmulti.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(doc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(docstrip.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(exscale.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fix-cm.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fixltx2e.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(flafter.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fleqn.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(fleqn.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fltrace.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontenc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontmath.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(fonttext.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(graphpap.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(idx.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ifthen.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(inputenc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lablst.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(latex209.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latexbug.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(latexrelease.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(latexsym.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin1.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin10.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin2.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin3.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin4.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin5.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin9.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(leqno.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(leqno.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(letter.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(letter.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lppl.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ltnews.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(ltxcheck.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ltxdoc.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(ltxguide.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(macce.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(makeidx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(minimal.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(newlfont.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(next.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(nfssfont.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(oldlfont.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(omlcmm.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omlcmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omlenc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(omllcmm.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omscmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omscmsy.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omsenc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(omslcmsy.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omxcmex.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omxlcmex.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(openbib.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1lcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1lcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot4enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(preload.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(proc.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(proc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(report.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(report.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(sample2e.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(sfonts.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(shortvrb.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(showidx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(size10.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(size11.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(size12.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(slides.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(slides.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(slides.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(small2e.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(source2e.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(syntonly.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1enc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1lcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1lcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(testpage.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(texsys.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(textcomp.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(tracefnt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ts1cmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ts1cmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ts1cmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ts1cmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ts1enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(tuenc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmssq.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmssq.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ucmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ucmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ucmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ulasy.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ullasy.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(utf8-test.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(utf8.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(utf8test.tex) = %{epoch}:%{source_date}-%{release} +Provides: texlive-texmf-latex = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texmf-latex < %{source_date} +# symlinks +BuildArch: noarch + +%description -n %{shortname}-latex +LaTeX is a widely-used macro package for TeX, providing many +basic document formating commands extended by a wide range of +packages. It is a development of Leslie Lamport's LaTeX 2.09, +and superseded the older system in June 1994. The basic +distribution is catalogued separately, at latex-base; apart +from a large set of contributed packages and third-party +documentation (elsewhere on the archive), the distribution +includes: - a bunch of required packages, which LaTeX authors +are "entitled to assume" will be present on any system running +LaTeX; and - a minimal set of documentation detailing +differences from the 'old' version of LaTeX in the areas of +user commands, font selection and control, class and package +writing, font encodings, configuration options and modification +of LaTeX. + +%package -n %{shortname}-latex-git-log +Provides: tex-latex-git-log = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex-git-log-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latex-git-log-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-git-log-bin < 7:20170520 +Provides: tex-latex-git-log-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex-git-log-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-git-log-doc < 7:20170520 +License: GPLv3+ +Summary: Typeset git log information +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-latex-git-log +The program is run within a git repository, and outputs the +entire version history, as a LaTeX table. That output will +typically be redirected to a file; the author recommends +typesetting in landscape orientation. + +%package -n %{shortname}-latex-papersize +Provides: tex-latex-papersize = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex-papersize-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latex-papersize-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-papersize-bin < 7:20170520 +Provides: tex-latex-papersize-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex-papersize-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-papersize-doc < 7:20170520 +License: ASL 2.0 +Summary: Calculate LaTeX settings for any font and paper size +Requires: texlive-base +Requires: texlive-kpathsea +# python +BuildArch: noarch + +%description -n %{shortname}-latex-papersize +The package is a Python script, whose typical use is when +preparing printed material for users with low vision. The most +effective way of doing this is to print on (notional) small +paper, and then to magnify the result; the script calculates +the settings for various font and paper sizes. More details are +to be read in the script itself. + +%package -n %{shortname}-latex2man +Provides: tex-latex2man = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex2man-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latex2man-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex2man-bin < 7:20170520 +Provides: tex-latex2man-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex2man-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex2man-doc < 7:20170520 +License: LPPL +Summary: Translate LaTeX-based manual pages into Unix man format +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(fancyheadings.sty) +Requires: tex(fancyhdr.sty) +Provides: tex(latex2man.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(latex2man.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-latex2man +A tool to translate UNIX manual pages written with LaTeX into a +man-page format understood by the Unix man(1) command. +Alternatively HTML or TexInfo code can be produced. Output of +parts of the text may be supressed using the conditional text +feature. + +%package -n %{shortname}-latex2nemeth +Provides: tex-latex2nemeth = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex2nemeth-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latex2nemeth-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex2nemeth-bin < 7:20170520 +Provides: tex-latex2nemeth-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex2nemeth-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex2nemeth-doc < 7:20170520 +License: GPLv3 +Summary: Convert LaTeX source to Braille with math in Nemeth +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-latex2nemeth +After many failed attempts to transcribe real math notes and +books to Braille/Nemeth in order to deal with a real situation +(blind student in Math Dept.), we decided to develop a new +program that follows a direct, from LaTeX to Braille/Nemeth, +approach. Other attempts (such as tex4ht) failed because they +all needed an extra step to go from xml to Braille, and this +step (say, with liblouis) produced incomprehensible output +(liblouis focuses in Office apps). Our main target was the +Greek language which is only Braille level 1, but English at +level 1 is supported as well. Simple pictures in PSTricks are +also supported in order to produce tactile graphics with +specialized equipment. Note that embossing will need +LibreOffice and odt2braille as this project does not deal with +embossers' drivers. + +%package -n %{shortname}-latexdiff +Provides: tex-latexdiff = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexdiff-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latexdiff-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexdiff-bin < 7:20170520 +Provides: tex-latexdiff-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexdiff-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexdiff-doc < 7:20170520 +License: GPLv3+ +Summary: Determine and mark up significant differences between LaTeX files +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-latexdiff +Latexdiff is a Perl script for visual mark up and revision of +significant differences between two LaTeX files. Various +options are available for visual markup using standard LaTeX +packages such as color. Changes not directly affecting visible +text, for example in formatting commands, are still marked in +the LaTeX source. A rudimentary revision facilility is provided +by another Perl script, latexrevise, which accepts or rejects +all changes. Manual editing of the difference file can be used +to override this default behaviour and accept or reject +selected changes only. + +%package -n %{shortname}-latexfileversion +Provides: tex-latexfileversion = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexfileversion-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latexfileversion-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexfileversion-bin < 7:20170520 +Provides: tex-latexfileversion-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexfileversion-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexfileversion-doc < 7:20170520 +License: LPPL +Summary: Prints the version and date of a LaTeX class or style file +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-latexfileversion +This simple shell script prints the version and date of a LaTeX +class or style file. Syntax: latexfileversion This +programme handles style files (extension .sty), class files +(extension .cls), and other TeX input files. The file extension +must be given. + +%package -n %{shortname}-latexindent +Provides: tex-latexindent = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexindent-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latexindent-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexindent-bin < 7:20170520 +Provides: tex-latexindent-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexindent-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexindent-doc < 7:20170520 +License: GPLv3+ +Summary: Indent a LaTeX document, highlighting the programming structure +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-latexindent +The Perl script processes a LaTeX file, indenting parts so as to +highlight the structure for the reader. + +%package -n %{shortname}-latexpand +Provides: tex-latexpand = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexpand-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latexpand-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexpand-bin < 7:20170520 +Provides: tex-latexpand-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexpand-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexpand-doc < 7:20170520 +License: BSD +Summary: Expand \input and \include in a LaTeX document +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-latexpand +Latexpand is a Perl script that simply replaces \input and +\include commands with the content of the file input/included. +The script does not deal with \includeonly commands. + +%package -n %{shortname}-lcdftypetools +Provides: tex-lcdftypetools = %{epoch}:%{source_date}-%{release} +# This is a mistake in the texlive package. Will be fixed in next major TL update. +Provides: lcdf-typetools = %{epoch}:%{source_date}-%{release} +Provides: texlive-lcdftypetools-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-lcdftypetools-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lcdftypetools-bin < 7:20170520 +License: GPL+ +Summary: A bundle of outline font manipulation tools +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-glyphlist + +%description -n %{shortname}-lcdftypetools +This bundle of tools comprises: Cfftot1, which translates a +Compact Font Format (CFF) font, or a PostScript-flavored +OpenType font, into PostScript Type 1 format. It correctly +handles subroutines and hints; Mmafm and mmpfb, which create +instances of multiple-master fonts (mmafm and mmpfb were +previously distributed in their own package, mminstance); +Otfinfo, which reports information about OpenType fonts, such +as the features they support and the contents of their 'size' +optical size features; Otftotfm, which creates TeX font metrics +and encodings that correspond to a PostScript-flavored OpenType +font. It will interpret glyph positionings, substitutions, and +ligatures as far as it is able. You can say which OpenType +features should be activated; T1dotlessj, creates a Type 1 font +whose only character is a dotless j matching the input font's +design; T1lint, which checks a Type 1 font for correctness; +T1reencode, which replaces a font's internal encoding with one +you specify; and T1testpage, which creates a PostScript proof +for a Type 1 font. + +%package -n %{shortname}-lib +Summary: Shared libraries for TeX-related files +Provides: texlive-kpathsea-lib = %{epoch}:%{source_date}-%{release} +# We have to straight up lie about this to ensure the upgrade. +Provides: texlive-kpathsea-lib(%{__isa}) = 6:2016 +Obsoletes: texlive-kpathsea-lib < 2015 +Provides: bundled(lua) = 5.2.4 + +%description -n %{shortname}-lib +TeX specific shared libraries. + +%package -n %{shortname}-lib-devel +Summary: Development files for TeX specific shared libraries +Requires: %{shortname}-lib%{?_isa} +Provides: texlive-kpathsea-lib-devel = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-kpathsea-lib-devel < 2015 + +%description -n %{shortname}-lib-devel +Development files for TeX specific shared libraries. + +%package -n %{shortname}-lilyglyphs +Provides: tex-lilyglyphs = %{epoch}:%{source_date}-%{release} +Provides: texlive-lilyglyphs-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-lilyglyphs-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lilyglyphs-bin < 7:20170520 +Provides: tex-lilyglyphs-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-lilyglyphs-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lilyglyphs-doc < 7:20170520 +License: LPPL 1.3 +Summary: Access lilypond fragments and glyphs, in LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(keyval.sty) +Requires: tex(pgf.sty) +Requires: tex(adjustbox.sty) +Provides: tex(emmentaler-11.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-13.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-14.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-16.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-18.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-20.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-23.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-26.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-brace.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(lilyglyphs.sty) = %{epoch}:%{source_date}-%{release} +# python +BuildArch: noarch + +%description -n %{shortname}-lilyglyphs +The package provides the means to include arbitrary elements of +Lilypond notation, including symbols from Lilypond's Emmentaler +font, in a LaTeX document. The package uses OpenType fonts, and +as a result must be compiled with LuaLaTeX or XeLaTeX. + +%package -n %{shortname}-listbib +Provides: tex-listbib = %{epoch}:%{source_date}-%{release} +Provides: texlive-listbib-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-listbib-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-listbib-bin < 7:20170520 +Provides: tex-listbib-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-listbib-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-listbib-doc < 7:20170520 +License: GPL+ +Summary: Lists contents of BibTeX files +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(listbib.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(listbib.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(listbib.tex) = %{epoch}:%{source_date}-%{release} +# shell +BuildArch: noarch + +%description -n %{shortname}-listbib +Generates listings of bibliographic data bases in BibTeX format +-- for example for archival purposes. Included is a listbib.bst +which is better suited for this purpose than the standard +styles. + +%package -n %{shortname}-listings-ext +Provides: tex-listings-ext = %{epoch}:%{source_date}-%{release} +Provides: texlive-listings-ext-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-listings-ext-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-listings-ext-bin < 7:20170520 +Provides: tex-listings-ext-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-listings-ext-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-listings-ext-doc < 7:20170520 +License: LPPL 1.2 +Summary: Automated input of source +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(listings.sty) +Requires: tex(xkeyval.sty) +Provides: tex(listings-ext.sty) = %{epoch}:%{source_date}-%{release} +# shell +BuildArch: noarch + +%description -n %{shortname}-listings-ext +The package provides a means of marking a source, so that +samples of it may be included in a document (by means of the +listings package) in a stable fashion, regardless of any change +to the source. The markup in the source text defines tags for +blocks of source. These tags are processed by a shell script to +make a steering file that is used by the package when LaTeX is +being run. + +%package -n %{shortname}-lollipop +Provides: tex-lollipop = %{epoch}:%{source_date}-%{release} +Provides: texlive-lollipop-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-lollipop-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lollipop-bin < 7:20170520 +Provides: tex-lollipop-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-lollipop-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lollipop-doc < 7:20170520 +License: GPLv3+ +Summary: TeX made easy +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-tetex +Requires: texlive-tex +Requires(post,postun): coreutils +Provides: tex(lollipop-define.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-document.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-float.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-fontdefs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-fonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-heading.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-lists.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-output.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-plain.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-text.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-tools.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop.tex) = %{epoch}:%{source_date}-%{release} +# no actual binaries here +BuildArch: noarch + +%description -n %{shortname}-lollipop +Lollipop is "TeX made easy" -- it is a macro package that +functions as a toolbox for writing TeX macros. Its main aim is +to make macro writing so easy that implementing a fully new +layout in TeX would become a matter of less than an hour for an +average document. The aim is that such a task could be +accomplished by someone with only a very basic training in TeX +programming. Thus, Lollipop aims to make structured text +formatting available in environments where typical users would +switch to WYSIWYG packages for the freedom that such a +mechanism offers. In addition, development of support for +Lollipop documents written in RTL languages (such as Persian) +is underway. + +%package -n %{shortname}-ltxfileinfo +Provides: tex-ltxfileinfo = %{epoch}:%{source_date}-%{release} +Provides: texlive-ltxfileinfo-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ltxfileinfo-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ltxfileinfo-bin < 7:20170520 +Provides: tex-ltxfileinfo-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ltxfileinfo-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ltxfileinfo-doc < 7:20170520 +License: GPL+ +Summary: Print version information for a LaTeX file +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-ltxfileinfo +ltxfileinfo displays version information for LaTeX files. If no +path information is given, the file is searched using +kpsewhich. As an extra, for developers, the script will (use +the --star or --color options) check the valididity of the +\Provides... statements in the files. The script uses code from +Uwe Luck's readprov.sty. + +%package -n %{shortname}-ltximg +Provides: tex-ltximg = %{epoch}:%{source_date}-%{release} +Provides: texlive-ltximg-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ltximg-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ltximg-bin < 7:20170520 +Provides: tex-ltximg-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ltximg-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ltximg-doc < 7:20170520 +License: GPLv2+ +Summary: Split LaTeX files to sanitise a conversion process +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-ltximg +The package provides a Perl script that extracts all TikZ and +PStricks environments for separate processing to produce images +(in eps, pdf, png or jpg format) for use by a converter or the +preview bundle. + +%package -n %{shortname}-lua2dox +Provides: tex-lua2dox = %{epoch}:%{source_date}-%{release} +Provides: texlive-lua2dox-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-lua2dox-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lua2dox-bin < 7:20170520 +Provides: tex-lua2dox-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-lua2dox-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lua2dox-doc < 7:20170520 +License: LPPL 1.3 +Summary: Auto-documentation of lua code +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(lua.def) = %{epoch}:%{source_date}-%{release} +# shell +BuildArch: noarch + +%description -n %{shortname}-lua2dox +The package extends the well-known C-like language autodoc +tool, doxygen, to read and document lua code. In use, you edit +and test your code and periodically run the autodoc tool to +update the documentation, which may be viewed via an html +browser. Autodoc tools can read the code well enough to find +function/... declarations and document them. If the code also +contains appropriatly formatted "magic comments", the tool can +use them to supplement the documentation. The package is a +first prototype of a planned TeX2DoX tool (in development), +which will process joint (La)TeX/lua documents. + +%package -n %{shortname}-luaotfload +Provides: tex-luaotfload = %{epoch}:%{source_date}-%{release} +Provides: texlive-luaotfload-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-luaotfload-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-luaotfload-bin < 7:20170520 +Provides: tex-luaotfload-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-luaotfload-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-luaotfload-doc < 7:20170520 +License: GPLv2+ +Summary: OpenType 'loader' for Plain TeX and LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-lualibs +Requires: texlive-lua-alt-getopt +Requires: tex(luatexbase.sty) +Provides: tex(luaotfload-blacklist.cnf) = %{epoch}:%{source_date}-%{release} +Provides: tex(luaotfload.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-luaotfload +The package adopts the TrueType/OpenType Font loader code +provided in ConTeXt, and adapts it to use in Plain TeX and +LaTeX. It works under LuaLaTeX only. + +%package -n %{shortname}-luatex +Provides: tex-luatex = %{epoch}:%{source_date}-%{release} +Provides: texlive-luatex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-luatex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-luatex-bin < 7:20170520 +Provides: tex-luatex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-luatex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-luatex-doc < 7:20170520 +License: GPLv2+ +Summary: The LuaTeX engine +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-tetex +Requires(post,postun): coreutils +Requires: texlive-cm +Requires: texlive-etex +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-plain +Requires: texlive-tex-ini-files +Requires: texlive-unicode-data +Requires: tex(luatex.def) +Provides: tex(luatex-unicode-letters.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatexiniconfig.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-luatex +LuaTeX is an extended version of pdfTeX using Lua as an +embedded scripting language. The LuaTeX project's main +objective is to provide an open and configurable variant of TeX +while at the same time offering downward compatibility. LuaTeX +uses Unicode (as UTF-8) as its default input encoding, and is +able to use modern (OpenType) fonts (for both text and +mathematics). It should be noted that LuaTeX is still under +development; its specification has been declared stable, but +absolute stability may not in practice be assumed. + +%package -n %{shortname}-lwarp +Provides: tex-lwarp = %{epoch}:%{source_date}-%{release} +Provides: texlive-lwarp-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-lwarp-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lwarp-bin < 7:20170520 +Provides: tex-lwarp-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-lwarp-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lwarp-doc < 7:20170520 +License: LPPL +Summary: Converts LaTeX to HTML +Requires: texlive-base +Requires: texlive-kpathsea +# lua +BuildArch: noarch + +%description -n %{shortname}-lwarp +The package causes LaTeX to directly produce HTML5 output, +using external utility programs only for the final conversion +of text and images. Math may be represented by SVG files or +MathJax. Documents may be produced by LaTeX, LuaLaTeX, or +XeLaTeX. A texlua script removes the need for system utilities +such as make and gawk, and also supports xindy and latexmk. +Configuration is automatic at the first manual compile. Print +and HTML versions of each document may coexist, each with its +own set of auxiliary files. Support files are self-generated on +request. Assistance is provided for HTML import into EPUB +conversion software and word processors. + +%package -n %{shortname}-lyluatex +Summary: Commands to include lilypond scores within a (Lua)LaTeX document +Version: svn47584 +License: MIT +Requires: texlive-base texlive-kpathsea +Provides: tex(lyluatex.lua) = %{epoch}:%{source_date}-%{release} +Provides: tex(lyluatex.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-lyluatex +This package provides macros for the inclusion of LilyPond +scores within LuaLaTeX. It calls LilyPond to compile scores, +then includes the produced files. + +%package -n %{shortname}-make4ht +Provides: tex-make4ht = %{epoch}:%{source_date}-%{release} +Provides: texlive-make4ht-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-make4ht-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-make4ht-bin < 7:20170520 +Provides: tex-make4ht-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-make4ht-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-make4ht-doc < 7:20170520 +License: LPPL 1.3 +Summary: A build system for tex4ht +Requires: texlive-base +Requires: texlive-kpathsea +# lua +BuildArch: noarch + +%description -n %{shortname}-make4ht +make4ht is a simple build system for tex4ht. It is both +executable, which simplifies tex4ht execution, and a library +which can be used to create customized conversion programs. + +%package -n %{shortname}-makedtx +Provides: tex-makedtx = %{epoch}:%{source_date}-%{release} +Provides: texlive-makedtx-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-makedtx-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-makedtx-bin < 7:20170520 +Provides: tex-makedtx-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-makedtx-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-makedtx-doc < 7:20170520 +License: LPPL +Summary: Perl script to help generate dtx and ins files +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(creatdtx.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-makedtx +The makedtx bundle is provided to help LaTeX2e developers to +write the code and documentation in separate files, and then +combine them into a single .dtx file for distribution. It +automatically generates the character table, and also writes +the associated installation (.ins) script. + +%package -n %{shortname}-makeindex +Provides: tex-makeindex = %{epoch}:%{source_date}-%{release} +Provides: texlive-makeindex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-makeindex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-makeindex-bin < 7:20170520 +Provides: tex-makeindex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-makeindex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-makeindex-doc < 7:20170520 +License: MakeIndex +Summary: Provides sorted index from unsorted raw data +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-makeindex +Provides: tex(idxmac.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-makeindex +MakeIndex is a computer program which provides a sorted index +from unsorted raw data. MakeIndex can process raw data output +by various programs, however, it is generally used with LaTeX +and troff. + +%package -n %{shortname}-match_parens +Provides: tex-match_parens = %{epoch}:%{source_date}-%{release} +Provides: texlive-match_parens-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-match_parens-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-match_parens-bin < 7:20170520 +Provides: tex-match_parens-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-match_parens-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-match_parens-doc < 7:20170520 +License: GPL+ +Summary: Find mismatches of parentheses, braces, (angle) brackets, in texts +Requires: texlive-base +Requires: texlive-kpathsea +Requires: ruby +# ruby +BuildArch: noarch + +%description -n %{shortname}-match_parens +Mismatches of parentheses, braces, (angle) brackets, especially +in TeX sources which may be rich in those, may be difficult to +trace. This little script helps you by writing your text to +standard output, after adding a left margin to your text, which +will normally be almost empty, but will clearly show any +mismatches. + +%package -n %{shortname}-mathspic +Provides: tex-mathspic = %{epoch}:%{source_date}-%{release} +Provides: texlive-mathspic-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mathspic-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mathspic-bin < 7:20170520 +Provides: tex-mathspic-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mathspic-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mathspic-doc < 7:20170520 +License: LPPL +Summary: A Perl filter program for use with PiCTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(prepictex.tex) +Requires: tex(pictexwd.tex) +Requires: tex(postpictex.tex) +Provides: tex(mathspic.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-mathspic +MathsPIC(Perl) is a development of the earlier MathsPIC(DOS) +program, now implemented as a Perl script, being much more +portable than the earlier program. MathsPIC parses a plain text +input file and generates a plain text output-file containing +commands for drawing a diagram. Version 1.0 produces output +containing PiCTeX and (La)TeX commands, which may then be +processed by plain TeX or LaTeX in the usual way. MathsPIC also +outputs a comprehensive log-file. MathsPIC facilitates creating +figures using PiCTeX by providing an environment for +manipulating named points and also allows the use of variables +and maths (advance, multiply, and divide)--in short--it takes +the pain out of PiCTeX. + +%package -n %{shortname}-metafont +Provides: tex-metafont = %{epoch}:%{source_date}-%{release} +Provides: texlive-metafont-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-metafont-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-metafont-bin < 7:20170520 +License: Knuth +Summary: A system for specifying fonts +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-tetex +Requires(post,postun): coreutils +Provides: tex(mf.mf) = %{epoch}:%{source_date}-%{release} +Provides: tex(plain.mf) = %{epoch}:%{source_date}-%{release} +Provides: tex(cmmf.ini) = %{epoch}:%{source_date}-%{release} +Provides: tex(mf.ini) = %{epoch}:%{source_date}-%{release} +Provides: tex(mode2dpi.mf) = %{epoch}:%{source_date}-%{release} +Provides: tex(mode2dpixy.mf) = %{epoch}:%{source_date}-%{release} +Provides: tex(modename.mf) = %{epoch}:%{source_date}-%{release} +Provides: tex(modes.mf) = %{epoch}:%{source_date}-%{release} +Provides: tex(ps2mfbas.mf) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-metafont +The program takes a semi-algorithmic specification of a font, +and produces a bitmap font (whose properties are defined by a +set of parameters of the target device), and a set metrics for +use by TeX. The bitmap output may be converted into a format +directly usable by a device driver, etc., by the tools provided +in the parallel mfware distribution. + +%package -n %{shortname}-metapost +Provides: tex-metapost = %{epoch}:%{source_date}-%{release} +Provides: texlive-metapost-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-metapost-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-metapost-bin < 7:20170520 +Provides: tex-metapost-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-metapost-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-metapost-doc < 7:20170520 +License: LGPLv2+ +Summary: A development of Metafont for creating graphics +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-tetex +Provides: tex(freeeuro.afm) = %{epoch}:%{source_date}-%{release} +Provides: tex(psyrgo.afm) = %{epoch}:%{source_date}-%{release} +Provides: tex(zpzdr-reversed.afm) = %{epoch}:%{source_date}-%{release} +Provides: tex(groff.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(troff-updmap.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(troff.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(freeeuro.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pagd8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pagdo8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pagk8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pagko8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pbkd8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pbkdi8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pbkl8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pbkli8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pcrb8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pcrbo8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pcrr8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pcrro8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(phvb8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(phvb8gn.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(phvbo8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(phvbo8gn.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(phvr8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(phvr8gn.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(phvro8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(phvro8gn.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pncb8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pncbi8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pncr8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pncri8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pplb8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pplbi8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pplr8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pplri8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(psyrgo.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptmb8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptmbi8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptmr8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptmri8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(pzcmi8g.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(zpzdr-reversed.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(freeeuro.pfa) = %{epoch}:%{source_date}-%{release} +Provides: tex(mfplain.ini) = %{epoch}:%{source_date}-%{release} +Provides: tex(trfonts.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(mproof.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mpsproof.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-metapost +MetaPost uses a language based on that of Metafont to produce +precise technical illustrations. Its output is scalable +PostScript or SVG, rather than the bitmaps Metafont creates. + +%package -n %{shortname}-mex +Provides: tex-mex = %{epoch}:%{source_date}-%{release} +Provides: texlive-mex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mex-bin < 7:20170520 +Provides: tex-mex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mex-doc < 7:20170520 +License: Public Domain +Summary: Polish formats for TeX +Requires: texlive-base +Requires: texlive-hyphen-polish +Requires: texlive-kpathsea +Requires: texlive-pdftex +Requires: texlive-pl +Requires: texlive-tetex +Requires: texlive-tex +Requires(post,postun): coreutils +Provides: tex(lamex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mex1.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mex2.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mexconf.tex) = %{epoch}:%{source_date}-%{release} +# just symlinks +BuildArch: noarch + +%description -n %{shortname}-mex +MeX is an adaptation of Plain TeX (MeX) and LaTeX209 (LaMeX) +formats to the Polish language and to Polish printing customs. +It contains a complete set of Metafont sources of Polish fonts, +hyphenation rules for the Polish language and sources of +formats. + +%package -n %{shortname}-mflua +Provides: tex-mflua = %{epoch}:%{source_date}-%{release} +Provides: texlive-mflua-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mflua-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mflua-bin < 7:20170520 +License: GPL+ +Summary: A METAFONT compliant program with a Lua interpreter embedded +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-mflua +A METAFONT compliant program with a Lua interpreter embedded. + +%package -n %{shortname}-mfware +Provides: tex-mfware = %{epoch}:%{source_date}-%{release} +Provides: texlive-mfware-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mfware-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mfware-bin < 7:20170520 +License: Knuth +Summary: Supporting tools for use with Metafont +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-mfware +A collection of programs (as web source) for processing the +output of Metafont. + +%package -n %{shortname}-mf2pt1 +Provides: tex-mf2pt1 = %{epoch}:%{source_date}-%{release} +Provides: texlive-mf2pt1-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mf2pt1-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mf2pt1-bin < 7:20170520 +Provides: tex-mf2pt1-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mf2pt1-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mf2pt1-doc < 7:20170520 +License: LPPL +Summary: Produce PostScript Type 1 fonts from Metafont source +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-mf2pt1 +mf2pt1 facilitates producing PostScript Type 1 fonts from a +Metafont source file. It is not, as the name may imply, an +automatic converter of arbitrary Metafont fonts to Type 1 +format. mf2pt1 imposes a number of restrictions on the Metafont +input. If these restrictions are met, mf2pt1 will produce valid +Type 1 output with more accurate control points than can be +reverse-engineered by TeXtrace, mftrace, and other programs +which convert bitmaps to outline fonts. + +%package -n %{shortname}-mkgrkindex +Provides: tex-mkgrkindex = %{epoch}:%{source_date}-%{release} +Provides: texlive-mkgrkindex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mkgrkindex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mkgrkindex-bin < 7:20170520 +Provides: tex-mkgrkindex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mkgrkindex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mkgrkindex-doc < 7:20170520 +License: LPPL +Summary: Makeindex working with Greek +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-mkgrkindex +Makeindex is resolutely stuck with Latin-based alphabets, so +will not deal with Greek indexes, unaided. This package +provides a Perl script that will transmute the index of a Greek +document in such a way that makeindex will sort the entries +according to the rules of the Greek alphabet. + +%package -n %{shortname}-mkjobtexmf +Provides: tex-mkjobtexmf = %{epoch}:%{source_date}-%{release} +Provides: texlive-mkjobtexmf-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mkjobtexmf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mkjobtexmf-bin < 7:20170520 +Provides: tex-mkjobtexmf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mkjobtexmf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mkjobtexmf-doc < 7:20170520 +License: GPLv2 or Artistic +Summary: Generate a texmf tree for a particular job +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-mkjobtexmf +The package provides a Perl script, which runs a program and +tries to find the names of file used. Two methods are +available, option -recorder of (Web2C) TeX and the program +strace. Then it generates a directory with a texmf tree. It +checks the found files and tries sort them in this texmf tree. +The script may be used for archiving purposes or to speed up +later TeX runs. + +%package -n %{shortname}-mkpic +Provides: tex-mkpic = %{epoch}:%{source_date}-%{release} +Provides: texlive-mkpic-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mkpic-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mkpic-bin < 7:20170520 +Provides: tex-mkpic-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mkpic-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mkpic-doc < 7:20170520 +License: GPL+ +Summary: Perl interface to mfpic +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-mkpic +mkpic provides an easy interface for making small pictures with +mfpic. To this end you create an input file consisting of +commands, one per line, with space separated parameters (or you +modify the DATA section of the mkpic script, which is used if +you run it without an input file). For an extensive description +see the file mkpicdoc.pdf, which is part of the distribution. + +%package -n %{shortname}-mltex +Provides: tex-mltex = %{epoch}:%{source_date}-%{release} +Provides: texlive-mltex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mltex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mltex-bin < 7:20170520 +Provides: tex-mltex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mltex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mltex-doc < 7:20170520 +License: Knuth +Summary: The MLTeX system +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-latex +Requires: texlive-pdftex +Requires: texlive-tetex +Requires(post,postun): coreutils +Provides: tex(lo1enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(mlltxchg.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(mltex.sty) = %{epoch}:%{source_date}-%{release} +# symlinks +BuildArch: noarch + +%description -n %{shortname}-mltex +MLTeX is a modification of TeX version >=3.0 that allows the +hyphenation of words with accented letters using ordinary +Computer Modern (CM) fonts. The system is distributed as a TeX +change file. + +%package -n %{shortname}-mptopdf +Provides: tex-mptopdf = %{epoch}:%{source_date}-%{release} +Provides: texlive-mptopdf-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mptopdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mptopdf-bin < 7:20170520 +Provides: tex-mptopdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mptopdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mptopdf-doc < 7:20170520 +License: LPPL +Summary: mpost to PDF, native MetaPost graphics inclusion +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-tetex +Requires(post,postun): coreutils +Provides: tex(mptopdf.tex) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-mptopdf +The mptopdf script does standalone conversion from mpost to +PDF, using the supp-* and syst-* files. They also allow native +MetaPost graphics inclusion in LaTeX (via pdftex.def) and +ConTeXt. They can be used independently of the rest of +ConTeXt, yet are maintained as part of it. So in TeX Live we +pull them out to this separate package for the benefit of LaTeX +users who do not install the rest of ConTeXt. This can be +found on CTAN in macros/pdftex/graphics. + +%package -n %{shortname}-multibibliography +Provides: tex-multibibliography = %{epoch}:%{source_date}-%{release} +Provides: texlive-multibibliography-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-multibibliography-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-multibibliography-bin < 7:20170520 +Provides: tex-multibibliography-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-multibibliography-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-multibibliography-doc < 7:20170520 +License: LPPL 1.3 +Summary: Multiple versions of a bibliography, with different sort orders +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(multibibliography.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-multibibliography +Conventional standards for bibliography styles impose a forced +choice between index and name/year citations, and corresponding +references. The package avoids this choice, by providing +alphabetic, sequenced, and even chronological orderings of +references. Inline citations, that integrate these +heterogeneous styles, are also supported (and work with other +bibliography packages). + +%package -n %{shortname}-musixtex +Provides: tex-musixtex = %{epoch}:%{source_date}-%{release} +Provides: texlive-musixtex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-musixtex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-musixtex-bin < 7:20170520 +Provides: tex-musixtex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-musixtex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-musixtex-doc < 7:20170520 +License: GPLv2+ +Summary: Sophisticated music typesetting +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(musixadd.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixadf.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixbar.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixbbm.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixblx.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixbm.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixcho.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixcpt.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixcrd.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixdat.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixdbr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixdia.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixec.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixeng.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixesf.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixevo.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixext.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixfll.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixgre.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixgui.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixhor.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixhou.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixhv.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixinv.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixlit.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixlyr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixmad.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixper.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixplt.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixpoi.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixppff.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixps.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixref.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixslu.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixsqr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixste.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixstf.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixstr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixsty.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixtex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixtmr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixtri.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixcpt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixcrd.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixfll.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixltx.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixtex.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-musixtex +MusiXTeX provides a set of macros, based on the earlier +MusicTeX, for typesetting music with TeX. To produce optimal +spacing, MusixTeX is a three-pass system: etex, musixflx, and +etex again. (Musixflx is a lua script that is provided in the +bundle.) The three-pass process, optionally followed by +processing for printed output, is automated by the musixtex +wrapper script. The package uses its own specialised fonts, +which must be available on the system for musixtex to run. This +version of MusixTeX builds upon work by Andreas Egler, whose +own version is no longer being developed. The MusiXTeX macros +are universally acknowledged to be challenging to use directly: +the pmx preprocessor compiles a simpler input language to +MusixTeX macros. + +%package -n %{shortname}-musixtnt +Provides: tex-musixtnt = %{epoch}:%{source_date}-%{release} +Provides: texlive-musixtnt-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-musixtnt-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-musixtnt-bin < 7:20170520 +Provides: tex-musixtnt-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-musixtnt-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-musixtnt-doc < 7:20170520 +License: GPLv2+ +Summary: A MusiXTeX extension library that enables transformations of the effect of notes commands +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-musixtex +Provides: tex(musixtnt.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-musixtnt +The package includes an archive containing a MusiXTeX extension +library musixtnt, and documentation for a program: +msxlint. musixtnt.tex provides a macro \TransformNotes that +enables transformations of the effect of notes commands such +as \notes. In general, the effect of +\TransformNotes{input}{output} is that notes commands in the +source will expect their arguments to match the input pattern, +but the notes will be typeset according to the output pattern. +An example is extracting single-instrument parts from a multi- +instrument score. msxlint detects incorrectly formatted notes +lines in a MusiXTeX source file. This should be used before +using \TransformNotes. + +%package -n %{shortname}-m-tx +Provides: tex-m-tx = %{epoch}:%{source_date}-%{release} +Provides: texlive-m-tx-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-m-tx-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-m-tx-bin < 7:20170520 +Provides: tex-m-tx-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-m-tx-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-m-tx-doc < 7:20170520 +License: GPL+ +Summary: A preprocessor for pmx +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(mtx.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtxlatex.sty) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-m-tx +M-Tx is a preprocessor to pmx, which is itself a preprocessor +to musixtex, a music typesetting system. The prime motivation +to the development of M-Tx was to provide lyrics for music to +be typeset. In fact, pmx now provides a lyrics interface, but M- +Tx continues in use by those who prefer its language. + +%package -n %{shortname}-oberdiek +Provides: tex-oberdiek = %{epoch}:%{source_date}-%{release} +Provides: tex-oberdiek-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-oberdiek-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-oberdiek-doc < 7:20170520 +License: LPPL +Summary: A bundle of packages submitted by Heiko Oberdiek +Requires: texlive-base +Requires: texlive-kpathsea +# To complete the bundle +Requires: tex(ifluatex.sty) +Requires: tex(intcalc.sty) +Requires: tex(ifpdf.sty) +Requires: tex(etexcmds.sty) +Requires: tex(kvoptions.sty) +Requires: tex(ifxetex.sty) +Requires: tex(etex.sty) +Requires: tex(color.sty) +Requires: tex(keyval.sty) +Requires: tex(soul.sty) +Requires: tex(remreset.sty) +Requires: tex(makematch.sty) +Requires: tex(zref-lastpage.sty) +Requires: tex(hyperref.sty) +Requires: tex(fp-basic.sty) +Requires: tex(fp-snap.sty) +Requires: tex(graphics.sty) +Requires: tex(amsmath.sty) +Requires: tex(grfext.sty) +Requires: tex(hypdoc.sty) +Requires: tex(array.sty) +Requires: tex(fontspec.sty) +Requires: tex(unicode-math.sty) +Requires: tex(doc.sty) +Requires: tex(calc.sty) +Requires: tex(thumbpdf.sty) +Requires: tex(inputenc.sty) +Requires: tex(listings.sty) +Requires: tex(tikz.sty) +Requires: tex(everyshi.sty) +Requires: tex(parallel.sty) +Requires: tex(parcolumns.sty) +Requires: tex(lscape.sty) +Requires: tex(index.sty) +Requires: tex(zref-pagelayout.sty) +Provides: tex(alphalph.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(atbegshi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(bigintcalc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(bitset.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(catchfile.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(embedfile.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(engord.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(eolgrab.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(etexcmds.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fibnum.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(gettitlestring.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hobsub-generic.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hobsub-hyperref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hobsub.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hologo.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hyphsubst.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(iflang.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ifpdf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ifvtex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(infwarerr.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(intcalc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(kvdefinekeys.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(kvsetkeys.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ltxcmds.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-loader.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdftexcmds.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfescape.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(uniquecounter.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hobsub-hyperref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(letltxmacro.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hopatch.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(xcolor-patch.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(atveryend.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(refcount.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hycolor.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hobsub.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hologo.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hyphsubst.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(iflang.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ifpdf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ifvtex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(infwarerr.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(intcalc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(kvdefinekeys.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(kvsetkeys.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ltxcmds.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-loader.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(magicnum.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(mleftright.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfcol.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfcrypt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfescape.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfrender.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdftexcmds.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(protecteddef.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(rotchiffre.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-ascii-print.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-ascii.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-clean7bit.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-cp1250.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-cp1251.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-cp1252.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-cp1257.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-cp437.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-cp850.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-cp852.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-cp855.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-cp858.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-cp865.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-cp866.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-dec-mcs.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-iso-8859-1.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-iso-8859-10.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-iso-8859-11.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-iso-8859-13.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-iso-8859-14.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-iso-8859-15.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-iso-8859-16.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-iso-8859-2.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-iso-8859-3.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-iso-8859-4.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-iso-8859-5.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-iso-8859-6.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-iso-8859-7.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-iso-8859-8.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-iso-8859-9.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-koi8-r.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-mac-centeuro.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-mac-cyrillic.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-mac-roman.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-nextstep.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-pdfdoc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-utf16le.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-utf32be.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-utf32le.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(se-utf8.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(setouterhbox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(soulutf8.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(stringenc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(telprint.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(thepdfnumber.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(uniquecounter.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(accsupp-dvipdfm.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(accsupp-dvips.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(accsupp-pdftex.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(accsupp.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(aliascnt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(askinclude.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(atenddvi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(atfi-dvipdfmx.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(atfi-dvips.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(atfi-pdftex.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(attachfile2.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(atveryend.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(auxhook.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(bkm-dvipdfm.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(bkm-dvips.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(bkm-dvipsone.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(bkm-pdftex.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(bkm-textures.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(bkm-vtex.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(bmpsize-base.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(bmpsize-dvipdfm.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(bmpsize-dvipdfmx.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(bmpsize-dvips.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(bmpsize-test.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bmpsize.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(bookmark.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(centernot.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(chemarr.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(classlist.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(colonequals.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(dtx-attach.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvipscol.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(enparen.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(epstopdf-base.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(epstopdf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(flags.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(grfext.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(grffile.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(holtxdoc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hopatch.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hycolor.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hypbmsec.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hypcap.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hypdestopt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hypdoc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hypgotoe.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ifdraft.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(inputenx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ix-alias.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ix-math.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ix-name.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ix-slot.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ix-uc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(kvoptions-patch.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(kvoptions.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(letltxmacro.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(listingsutf8.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(luacolor.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(makerobust.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pagegrid.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pagesel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfcolfoot.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfcolmk.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfcolparallel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfcolparcolumns.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdflscape.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(picture.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pmboxdraw.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(refcount.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(rerunfilecheck.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(resizegather.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(scrindex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(selinput.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(settobox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(stackrel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(stampinclude.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(tabularht.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(tabularkv.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(transparent.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(twoopt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-ascii.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-atarist.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-cp1250.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-cp1251.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-cp1252.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-cp1255.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-cp1257.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-cp437.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-cp850.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-cp852.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-cp855.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-cp858.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-cp865.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-cp866.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-dec-mcs.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-iso-8859-1.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-iso-8859-10.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-iso-8859-13.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-iso-8859-14.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-iso-8859-15.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-iso-8859-16.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-iso-8859-2.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-iso-8859-3.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-iso-8859-4.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-iso-8859-5.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-iso-8859-8.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-iso-8859-9.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-koi8-r.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-mac-centeuro.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-mac-cyrillic.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-mac-roman.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-nextstep.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x-verbatim.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(xcolor-patch.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(zref-abspage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(zref-abspos.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(zref-base.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(zref-counter.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(zref-dotfill.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(zref-env.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(zref-hyperref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(zref-lastpage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(zref-marks.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(zref-nextpage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(zref-pageattr.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(zref-pagelayout.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(zref-perpage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(zref-runs.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(zref-savepos.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(zref-thepage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(zref-titleref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(zref-totpages.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(zref-user.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(zref-xr.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(zref.sty) = %{epoch}:%{source_date}-%{release} +BuildArch: noarch + +%description -n %{shortname}-oberdiek +The bundle comprises packages to provide: accsupp: better +accessibility support for PDF files; aliascnt: 'alias +counters'; alphalph: multiple-alphabetic counting +(a...z,aa...zz,... -- up to the full extent of a TeX counter); +askinclude: replaces \includeonly by an interactive user +interface; atbegshi: a modern reimplementation of package +everyshi; atenddvi: provides \AtEndDvi command; attachfile2: +attach files to PDF files; atveryend: hooks the very end of a +document; auxhook: stick stuff at the start of the .aux file; +bigintcalc: expandable arithmetic operations with big integers +that can exceed TeX's number limits; bitset: defines and +implements the data type bit set, a vector of bits; bmpsize: +get bitmap size and resolution data; bookmark: alternative +bookmark (outline) organization for package hyperref; +catchfile: collects the contents of a file and puts it in a +macro; centernot: a horizontally-centred \not symbol; chemarr: +extensible chemists' reaction arrows; classlist: record +information about document class(es) used; colonequals: poor +man's mathematical relation symbols; dvipscol: dvips colour +stack management; embedfile: embed files in PDF documents; +engord: define counter-printing operations producing English +ordinals; eolgrab: collect arguments delimited by end of line; +epstopdf: conversion to epstopdf on the fly; etexcmds: adds a +prefix to eTeX's commands, to avoid conflicts with existing +macros; flags: setting and clearing flags in bit fields and +converting the bit field into a decimal number; gettitlestring: +clean up the string containing the title of a section, etc.; +grfext: macros for adding and reordering the list of graphics +file extensions recognised by the graphics package; grffile: +extend file name processing in the graphics bundle; hosub: +build collections of packages; holtxdoc: extra documentation +macros; hologo: bookmark-enabled logos; hopatch: safely apply +package patches; hycolor: implements the color option stuff +that is used by packages hyperref and bookmark; hypbmsec: +bookmarks in sectioning commands; hypcap: anjusting anchors of +captions; hypdestopt: optimising hyperref's pdftex driver +destinations; hypdoc: hyper-references in the LaTeX standard +doc package; hypgotoe: experimental package for links to +embedded files; hyphsubst: substitute hyphenation patterns; +ifdraft: switch for option draft; iflang: provides expandable +checks for the current language; ifluatex: looks for LuaTeX +regardless of its mode and provides the switch \ifluatex; +ifpdf: provides the \ifpdf switch; ifvtex: provides the \ifvtex +switch; infwarerr: provides a complete set of macros for +informations, warnings and error messages with support for +plain TeX; inputenx: enhanced handling of input encoding; +intcalc: provides expandable arithmetic operations with +integers; kvdefinekeys: define key-value keys in the same +manner as keyval; kvoptions: use package options in key value +format ; kvsetkeys: a variant of the \setkeys command; +letltxmacro: Let assignment for LaTeX macros; listingsutf8: +(partially) extends the listings package to UTF-8 encoding; +ltxcmds: exports some utility macros from the LaTeX kernel into +a separate namespace and also provides them for other formats +such as plain-TeX; luacolor: implements colour support based on +LuaTeX's node attributes; luatex: utilises new and extended +features and resources that LuaTeX provides; magicnum: allows +to access magic numbers by a hierarchical name system; +makerobust: make a command robust; pagegrid: prints a page grid +in the background; pagesel: select pages of a document for +output; pdfcolfoot: using pdftex's color stack for footnotes; +pdfcol: macros for setting and maintaining new color stacks; +pdfcolmk: PDFTeX COLour MarK -- fake a PDFTeX colour stack +using marks (not needed for PDFTeX 1.40.0 and later); +pdfcolparallel: fixes colour problems in package parallel; +pdfcolparcolumns: fixes colour problems in package parcolumns; +pdfcrypt: setting PDF encryption; pdfescape: pdfTeX's escape +features using TeX or e-TeX; pdflscape: landscape pages in PDF; +pdfrender: control PDF rendering modes; pdftexcmds: provide +PDFTeX primitives missing in LuaTeX; picture: dimens for +picture macros; pmboxdraw: poor man's box drawing characters; +protecteddef: define a command that protected against +expansion; refcount: using the numeric values of references; +rerunfilecheck: checksum based rerun checks on auxiliary files; +resizegather: automatically resize overly large equations; +rotchiffre: performs simple rotation cyphers; scrindex: +redefines environment 'theindex' of package 'index', if a class +from KOMA-Script is loaded; selinput: select the input encoding +by specifying pairs of input characters and their glyph names; +setouterhbox: set \hbox in outer horizontal mode; settobox: +getting box sizes; soulutf8: extends package soul and adds some +support for UTF-8; stackrel: extensions of the \stackrel +command; stampinclude: selects the files for \include by +inspecting the timestamp of the .aux file(s); stringenc: +provides \StringEncodingConvert for converting a string between +different encodings; tabularht: tabulars with height +specification; tabularkv: key value interface for tabular +parameters; telprint: print German telephone numbers; +thepdfnumber: canonical numbers for use in PDF files and +elsewhere; transparent: using a color stack for transparency +with pdftex; twoopt: commands with two optional arguments; +uniquecounter: provides unlimited unique counter; zref: a +proposed new reference system. Each of the packages is +represented by two files, a .dtx (documented source) and a PDF +file; the .ins file necessary for installation is extracted by +running the .dtx file with Plain TeX. + +%package -n %{shortname}-omegaware +Provides: tex-omegaware = %{epoch}:%{source_date}-%{release} +Provides: texlive-omegaware-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-omegaware-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-omegaware-bin < 7:20170520 +Provides: tex-omegaware-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-omegaware-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-omegaware-doc < 7:20170520 +License: LPPL +Summary: Omegaware package +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-omegaware +Omegaware package. + +%package -n %{shortname}-patgen +Provides: tex-patgen = %{epoch}:%{source_date}-%{release} +Provides: texlive-patgen-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-patgen-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-patgen-bin < 7:20170520 +License: Knuth +Summary: Generate hyphenation patterns +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-patgen +This is the last version of the program distributed by Knuth; +it advertises itself as a pattern generator for "the algorithm +used in TeX", but, of course, the patterns used in modern +distributions are Unicode-based. + +%package -n %{shortname}-pax +Provides: tex-pax = %{epoch}:%{source_date}-%{release} +Provides: texlive-pax-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pax-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pax-bin < 7:20170520 +Provides: tex-pax-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pax-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pax-doc < 7:20170520 +License: GPLv2+ +Summary: Extract and reinsert PDF annotations with pdfTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(ifpdf.sty) +Requires: tex(graphicx.sty) +Requires: tex(ltxcmds.sty) +Requires: tex(kvsetkeys.sty) +Requires: tex(kvoptions.sty) +Requires: tex(auxhook.sty) +Requires: tex(etexcmds.sty) +Provides: tex(pax.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-pax +If PDF files are included using pdfTeX, PDF annotations are +stripped. The pax project offers a solution without altering +pdfTeX. A Java program (pax.jar) parses the PDF file that will +later be included. The program then writes the data of the +annotations into a file that can be read by TeX. The LaTeX +package pax extends the graphics package to support the scheme: +if a PDF file is included, the package looks for the file with +the annotation data, reads them and puts the annotations in the +right place. + +%package -n %{shortname}-pdfbook2 +Provides: tex-pdfbook2 = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfbook2-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdfbook2-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfbook2-bin < 7:20170520 +Provides: tex-pdfbook2-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfbook2-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfbook2-doc < 7:20170520 +License: GPLv3+ +Summary: Create booklets from PDF files +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-pdfcrop +Requires: texlive-pdfjam +# python +BuildArch: noarch + +%description -n %{shortname}-pdfbook2 +This python program creates print-ready PDF files from some +input PDF files for booklet printing. The resulting files need +to be printed in landscape/long edge double sided printing. The +default paper format depends on the locale and is chosen by +pdfjam. It can be chosen using the --paper option. Before the +pdf is composed, the input file is cropped to the relevant area +in order to discard unnecessary white spaces. In this process, +all pages are cropped to the same dimensions. Extra margins can +be defined at the edges of the booklet and in the middle where +the binding occurs. The output is written to INPUT-book.pdf. +Existing files will be overwritten. All input files are +processed seperately. + +%package -n %{shortname}-pdfcrop +Provides: tex-pdfcrop = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfcrop-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdfcrop-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfcrop-bin < 7:20170520 +Provides: tex-pdfcrop-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfcrop-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfcrop-doc < 7:20170520 +License: LPPL +Summary: Crop PDF graphics +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-pdfcrop +A Perl script that can either trim pages of any whitespace +border, or trim them of a fixed border. + +%package -n %{shortname}-pdfjam +Provides: tex-pdfjam = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfjam-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdfjam-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfjam-bin < 7:20170520 +Provides: tex-pdfjam-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfjam-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfjam-doc < 7:20170520 +License: GPLv2+ +Summary: Shell scripts interfacing to pdfpages +Requires: texlive-base +Requires: texlive-collection-latex +Requires: texlive-kpathsea +Requires: texlive-latex +Requires: tex(pdfpages.sty) +# shell +BuildArch: noarch + +%description -n %{shortname}-pdfjam +This is a collection of shell scripts which provide an +interface to the pdfpages LaTeX package. They do such jobs as +selecting pages, concatenating files, doing n-up formatting, +and so on. + +%package -n %{shortname}-pdflatexpicscale +Provides: tex-pdflatexpicscale = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdflatexpicscale-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdflatexpicscale-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdflatexpicscale-bin < 7:20170520 +Provides: tex-pdflatexpicscale-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdflatexpicscale-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdflatexpicscale-doc < 7:20170520 +License: LPPL +Summary: Support software for downscaling graphics to be included by pdfLaTeX +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-pdflatexpicscale +The package provides a script to scale pictures down to a +target resolution before creating a PDF document with pdfLaTeX. + +%package -n %{shortname}-pdftex +Provides: tex-pdftex = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdftex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdftex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdftex-bin < 7:20170520 +Provides: tex-pdftex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdftex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdftex-doc < 7:20170520 +License: GPL+ +Summary: A TeX extension for direct creation of PDF +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-tetex +Requires(post,postun): coreutils +Requires: tex-graphics-def +Requires: texlive-cm +Requires: texlive-etex +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-plain +Requires: tex-tex-ini-files +Provides: tex(dummy-space.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(dummy-space.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dummy-space.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdftex-dvi.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(glyphtounicode.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfcolor.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-pdftex +An extension of TeX which can be configured to directly +generate PDF documents instead of DVI. All current free TeX +distributions including TeX live, MacTeX and MiKTeX include +pdfTeX (Plain TeX) and pdfLaTeX (LaTeX). ConTeXt was designed +around use of pdfTeX (though it is now migrating towards +LuaTeX). + +%package -n %{shortname}-pdftex-quiet +Provides: tex-pdftex-quiet = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdftex-quiet-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdftex-quiet-bin = %{epoch}:%{source_date}-%{release} +License: GPLv3 +Summary: Bash utility to reduce the output of the pdftex command +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-pdftex +#bash +BuildArch: noarch + +%description -n %{shortname}-pdftex-quiet +This is a tool in BASH serving to reduce the output of `pdftex` command and see +only relevant errors in red bold font to fight them ASAP. + +%package -n %{shortname}-pdftools +Provides: tex-pdftools = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdftools = %{epoch}:%{source_date}-%{release} +Provides: tex-pdftools-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdftools-bin < 7:20170520 +License: Public Domain +Summary: PDF-related utilities, including PostScript-to-PDF conversion +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-pdftools +The command-line programs pdfopen and pdfclose allow you to +control the X Window System version of Adobe's Acrobat Reader +from the command line or from within a (shell) script. The +programs work with Acrobat Reader 5, 7, 8 and 9 for Linux, xpdf +and evince. This version derives from one written by Fabrice +Popineau for Microsoft operating systems. + +%package -n %{shortname}-pdfxup +Provides: tex-pdfxup = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfxup-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdfxup-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfxup-bin < 7:20170520 +Provides: tex-pdfxup-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfxup-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfxup-doc < 7:20170520 +License: LPPL +Summary: Create n-up PDF pages with minimal margins +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-pdfxup +pdfxup is a unix/linux shell script that creates a PDF document +where each page is obtained by combining several pages of a PDF +file given as output. + +%package -n %{shortname}-pedigree-perl +Provides: tex-pedigree-perl = %{epoch}:%{source_date}-%{release} +Provides: texlive-pedigree-perl-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pedigree-perl-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pedigree-perl-bin < 7:20170520 +Provides: tex-pedigree-perl-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pedigree-perl-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pedigree-perl-doc < 7:20170520 +License: GPLv2+ +Summary: Generate TeX pedigree files from CSV files +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-pedigree-perl +This program generates TeX commands to typeset pedigrees -- +either TeX fragments or full LaTeX files, to be processed by +the authors' pst-pdgr package. The program has support for +multilanguage pedigrees (at the present moment the English and +Russian languages are supported). + +%package -n %{shortname}-perltex +Provides: tex-perltex = %{epoch}:%{source_date}-%{release} +Provides: texlive-perltex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-perltex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-perltex-bin < 7:20170520 +Provides: tex-perltex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-perltex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-perltex-doc < 7:20170520 +License: LPPL +Summary: Define LaTeX macros in terms of Perl code +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(perltex.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-perltex +PerlTeX is a combination Perl script (perltex.pl) and LaTeX2e +package (perltex.sty) that, together, give the user the ability +to define LaTeX macros in terms of Perl code. Once defined, a +Perl macro becomes indistinguishable from any other LaTeX +macro. PerlTeX thereby combines LaTeX's typesetting power with +Perl's programmability. PerlTeX will make use of persistent +named pipes, and thereby run more efficiently, on operating +systems that offer them (mostly Unix-like systems). Also +provided is a switch to generate a PerlTeX-free, document- +specific, noperltex.sty that is useful when distributing a +document to places where PerlTeX is not available. + +%package -n %{shortname}-petri-nets +Provides: tex-petri-nets = %{epoch}:%{source_date}-%{release} +Provides: texlive-petri-nets-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-petri-nets-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-petri-nets-bin < 7:20170520 +Provides: tex-petri-nets-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-petri-nets-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-petri-nets-doc < 7:20170520 +License: GPL+ +Summary: A set of TeX/LaTeX packages for drawing Petri nets +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(pndraw.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pndraw.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pnets.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pnets.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pntext.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pntext.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pnversion.tex) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-petri-nets +Petri-nets offers a set of TeX/LaTeX packages about Petri nets +and related models. Three packages are available: the first +allows the user to draw Petri-nets in PostScript documents; the +second defines macros related to PBC, M-nets and B(PN) models; +and a third that combines the other two. + +%package -n %{shortname}-pfarrei +Provides: tex-pfarrei = %{epoch}:%{source_date}-%{release} +Provides: texlive-pfarrei-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pfarrei-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pfarrei-bin < 7:20170520 +Provides: tex-pfarrei-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pfarrei-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pfarrei-doc < 7:20170520 +License: LPPL 1.3 +Summary: LaTeX support of pastors' and priests' work +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(ifpdf.sty) +Requires: tex(pdfpages.sty) +Requires: tex(keyval.sty) +Provides: tex(a5toa4.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pfarrei.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-pfarrei +In "Die TeXnische Komodie" (issue 1/2013) Christian Justen +described his use of LaTeX in his work as priest (similar +requirements may be encountered in the work of pastors and +other ministers of religion). One point was to arrange A5 pages +onto A4 landscape paper, either side-by-side or as a booklet. +Justen made two bash scripts for this job; the package provides +one texlua script for both requirements. + +%package -n %{shortname}-pkfix +Provides: tex-pkfix = %{epoch}:%{source_date}-%{release} +Provides: tex-pkfix-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pkfix-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pkfix-bin < 7:20170520 +Provides: tex-pkfix-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pkfix-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pkfix-doc < 7:20170520 +License: LPPL 1.3 +Summary: Replace pk fonts in PostScript with Type 1 fonts +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-pkfix +The perl script pkfix looks for DVIPSBitmapFont comments in +PostScript files, generated by 'not too old' dvips, and +replaces them by type 1 versions of the fonts, if possible. + +%package -n %{shortname}-pkfix-helper +Provides: tex-pkfix-helper = %{epoch}:%{source_date}-%{release} +Provides: tex-pkfix-helper-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pkfix-helper-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pkfix-helper-bin < 7:20170520 +Provides: tex-pkfix-helper-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pkfix-helper-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pkfix-helper-doc < 7:20170520 +License: LPPL +Summary: Make PostScript files accessible to pkfix +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-pkfix-helper +Pkfix is a useful utility for replacing resolution-dependent +bitmapped fonts in a dvips-produced PostScript file with the +corresponding resolution-independent vector fonts. +Unfortunately, pkfix needs to parse certain PostScript comments +that appear only in files produced by dvips versions later than +5.58 (ca. 1996); it fails to work on PostScript files produced +by older versions of dvips. Pkfix-helper is a program that +attempts to insert newer-dvips comments into an older-dvips +PostScript file, thereby making the file suitable for +processing by pkfix. pkfix-helper can sometimes process +documents fully autonomously but does require the user to +verify and, if needed, correct its decisions. + +%package -n %{shortname}-pmx +Provides: tex-pmx = %{epoch}:%{source_date}-%{release} +Provides: tex-pmx-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pmx-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pmx-bin < 7:20170520 +Provides: tex-pmx-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pmx-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pmx-doc < 7:20170520 +License: GPLv2+ +Summary: Preprocessor for MusiXTeX +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(pmx.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-pmx +PMX is a preprocessor for MusiXTeX. It builds the TeX input +file from a file in a much simpler language, making most of the +layout decisions by itself. An auxiliary program makes single- +player parts from a multi-player score. For proof-listening, +PMX can make a MIDI file of your score. The present version +requires at least version 1.15 of MusiXTeX, running on an e-tex- +enhanced TeX system. + +%package -n %{shortname}-pmxchords +Provides: tex-pmxchords = %{epoch}:%{source_date}-%{release} +Provides: tex-pmxchords-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pmxchords-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pmxchords-bin < 7:20170520 +Provides: tex-pmxchords-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pmxchords-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pmxchords-doc < 7:20170520 +License: GPLv2+ +Summary: Produce chord information to go with pmx output +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(chords.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(chordsCZ.tex) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-pmxchords +The bundle supplements pmx, providing the means of typesetting +chords above the notes of a score. The bundle contains: macros +for typing the chords; a Lua script to transpose chord macros +to the required key signature; and support scripts for common +requirements. + +%package -n %{shortname}-pstools +Provides: tex-pstools = %{epoch}:%{source_date}-%{release} +Provides: tex-pstools-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pstools-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pstools-bin < 7:20170520 +Provides: tex-pstools-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pstools-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pstools-doc < 7:20170520 +License: GPL+ +Summary: Produce Encapsulated PostScript from PostScript +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-pstools +Produce Encapsulated PostScript Files (EPS/EPSF) from a one- +page PostScript document, or any PostScript document. A correct +Bounding Box is calculated for the EPS files and some +PostScript command sequences that can produce errorneous +results on printers are filtered. The input is cropped to +include just the image contained in the PostScript file. The +EPS files can then be included into TeX documents. Other +programs like ps2epsi (a script distributed with ghostscript) +don't always calculate the correct bounding box (because the +values are put on the PostScript stack which may get corrupted +by bad PostScript code) or they round it off, resulting in +clipping the image. Therefore ps2eps uses a resolution of 144 +dpi to get the correct bounding box. Included in the +distribution is the bbox program, an application to produce +Bounding Box values for rawppm or rawpbm format files. + +%package -n %{shortname}-pst2pdf +Provides: tex-pst2pdf = %{epoch}:%{source_date}-%{release} +Provides: tex-pst2pdf-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pst2pdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pst2pdf-bin < 7:20170520 +Provides: tex-pst2pdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pst2pdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pst2pdf-doc < 7:20170520 +License: GPLv2+ +Summary: A script to compile pstricks documents via pdftex +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-pst2pdf +The script extracts the preamble of the document and runs all +\begin{postscript}...\end{postscript} +\begin{pspicture}...\end{pspicture} and +\pspicture...\endpspicture separately through LaTeX with the +same preamble as the original document; thus it creates EPS, +PNG and PDF files of these snippets. In a final PDFLaTeX run +the script replaces the environments with \includegraphics to +include the processed snippets. + +%package -n %{shortname}-pst-pdf +Provides: tex-pst-pdf = %{epoch}:%{source_date}-%{release} +Provides: tex-pst-pdf-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pst-pdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pst-pdf-bin < 7:20170520 +Provides: tex-pst-pdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pst-pdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pst-pdf-doc < 7:20170520 +License: LPPL +Summary: Make PDF versions of graphics by processing between runs +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(graphicx.sty) +Requires: tex(pstricks.sty) +Requires: tex(environ.sty) +Provides: tex(pst-pdf.sty) = %{epoch}:%{source_date}-%{release} +# shell +BuildArch: noarch + +%description -n %{shortname}-pst-pdf +The package pst-pdf simplifies the use of graphics from +PSTricks and other PostScript code in PDF documents. As in +building a bibliography with BibTEX, additional external +programmes are invoked. In this case they are used to create a +PDF file (\PDFcontainer) that will contain all the graphics +material. In the final document these contents will be inserted +instead of the original PostScript code. The package works with +pstricks and requires a recent version of the preview package. + +%package -n %{shortname}-ps2pk +Provides: tex-ps2pk = %{epoch}:%{source_date}-%{release} +Provides: tex-ps2pk-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-ps2pk-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ps2pk-bin < 7:20170520 +Provides: texlive-ps2pkm = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ps2pkm < 7:20170520 +Provides: texlive-ps2pkm-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ps2pkm-bin < 7:20170520 +License: MIT +Summary: Generate a PK font from an Adobe Type 1 font +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-ps2pk +Generates a PK file from an Adobe Type 1 font. PK fonts are (or +used to be) valuable in enabling previewers to view documents +generated that use Type 1 fonts. The program makes use of code +donated to the X consortium by IBM. + +%package -n %{shortname}-ptex +Provides: tex-ptex = %{epoch}:%{source_date}-%{release} +Provides: tex-ptex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-ptex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ptex-bin < 7:20170520 +Provides: tex-ptex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ptex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ptex-doc < 7:20170520 +Provides: texlive-platex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-platex-bin < 7:20170520 +License: BSD +Summary: A TeX system for publishing in Japanese +Requires: texlive-adobemapping +Requires: texlive-base +Requires: texlive-hyph-utf8 +Requires: texlive-ipaex +Requires: texlive-japanese +Requires: texlive-japanese-otf +Requires: texlive-kpathsea +Requires: texlive-latex +Requires: texlive-ptex-base +Requires: texlive-ptex-fonts +Requires: texlive-tetex +Requires: texlive-tex +Requires: tex(oldlfont.sty) +Requires: tex(shortvrb.sty) +Requires(post,postun): coreutils +Provides: tex(morisawa.map) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-ptex +PTeX adds features related to vertical writing, and deals with +other problems in typesetting Japanese. A set of additions to a +TEXMF tree, for use with PTeX, may be found in package PTeX- +texmf. PTeX is distributed as WEB change files. + +%package -n %{shortname}-ptex-fontmaps +Provides: tex-ptex-fontmaps = %{epoch}:%{source_date}-%{release} +Provides: tex-ptex-fontmaps = %{epoch}:%{source_date}-%{release} +Provides: texlive-ptex-fontmaps-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ptex-fontmaps-bin < 7:20170520 +Provides: tex-ptex-fontmaps-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ptex-fontmaps-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ptex-fontmaps-doc < 7:20170520 +Provides: tex-jfontmaps = %{epoch}:%{source_date}-%{release} +Provides: texlive-jfontmaps = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-jfontmaps <= 6:svn40613 +Provides: tex-jfontmaps-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-jfontmaps-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-jfontmaps-bin <= 6:svn29848.0 +Provides: tex-jfontmaps-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-jfontmaps-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-jfontmaps-doc <= 6:svn40613 +License: GPLv3 +Summary: Font maps and configuration tools for Japanese/Chinese/Korean fonts with (u)ptex +Requires: texlive-arphic-ttf +Requires: texlive-baekmuk +Requires: texlive-base +Requires: texlive-ipaex +Requires: texlive-kpathsea +# shell and perl +BuildArch: noarch + +%description -n %{shortname}-ptex-fontmaps +This package provides font maps and setup tools for Japanese, +Korean, Traditional Chinese, and Simplified Chinese. It is the +successor of the jfontmaps package. The files in this package +contain font maps for dvipdfmx to make various +Japanese/Chinese/Korean fonts available for (u)ptex and related +programs and formats. + +%package -n %{shortname}-ptex2pdf +Provides: tex-ptex2pdf = %{epoch}:%{source_date}-%{release} +Provides: tex-ptex2pdf-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-ptex2pdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ptex2pdf-bin < 7:20170520 +Provides: tex-ptex2pdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ptex2pdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ptex2pdf-doc < 7:20170520 +License: GPLv2+ +Summary: Convert Japanese TeX documents to PDF +Requires: texlive-base +Requires: texlive-kpathsea +# lua +BuildArch: noarch + +%description -n %{shortname}-ptex2pdf +The Lua script provides system-independent support of Japanese +typesetting engines in TeXworks. As TeXworks typesetting setup +does not allow for multistep processing, this script runs one +of the ptex-based programs (ptex, uptex, eptex, platex, +uplatex) followed by dvipdfmx. + +%package -n %{shortname}-purifyeps +Provides: tex-purifyeps = %{epoch}:%{source_date}-%{release} +Provides: tex-purifyeps-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-purifyeps-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-purifyeps-bin < 7:20170520 +Provides: tex-purifyeps-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-purifyeps-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-purifyeps-doc < 7:20170520 +License: LPPL +Summary: Make EPS work with both LaTeX/dvips and pdfLaTeX +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-purifyeps +While pdfLaTeX has a number of nice features, its primary +shortcoming relative to standard LaTeX+dvips is that it is +unable to read ordinary Encapsulated PostScript (EPS) files, +the most common graphics format in the LaTeX world. Purifyeps +converts EPS files into a 'purified' form that can be read by +both LaTeX+dvips and pdfLaTeX. The trick is that the standard +LaTeX2e graphics packages can parse MetaPost-produced EPS +directly. Hence, purifyeps need only convert an arbitrary EPS +file into the same stylized format that MetaPost outputs. + +%package -n %{shortname}-pygmentex +Provides: tex-pygmentex = %{epoch}:%{source_date}-%{release} +Provides: tex-pygmentex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pygmentex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pygmentex-bin < 7:20170520 +Provides: tex-pygmentex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pygmentex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pythontex-doc < 7:20170520 +License: LPPL 1.3 +Summary: Use Pygments to format code listings in documents +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(fancyvrb.sty) +Requires: tex(color.sty) +Requires: tex(ifthen.sty) +Requires: tex(caption.sty) +Requires: tex(pgfkeys.sty) +Requires: tex(efbox.sty) +Requires: tex(mdframed.sty) +Requires: tex(fvextra.sty) +Provides: tex(pygmentex.sty) = %{epoch}:%{source_date}-%{release} +# python +BuildArch: noarch + +%description -n %{shortname}-pygmentex +PygmenTeX is a Python-based LaTeX package that can be used for +typesetting code listings in a LaTeX document using Pygments. +Pygments is a generic syntax highlighter for general use in all +kinds of software such as forum systems, wikis or other +applications that need to prettify source code. + +%package -n %{shortname}-pythontex +Provides: tex-pythontex = %{epoch}:%{source_date}-%{release} +Provides: tex-pythontex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pythontex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pythontex-bin < 7:20170520 +Provides: tex-pythontex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pythontex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pythontex-doc < 7:20170520 +License: LPPL 1.3 +Summary: Run Python from within a document, typesetting the results +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(fancyvrb.sty) +Requires: tex(etex.sty) +Requires: tex(etoolbox.sty) +Requires: tex(xstring.sty) +Requires: tex(pgfopts.sty) +Requires: tex(newfloat.sty) +Requires: tex(currfile.sty) +Requires: tex(xcolor.sty) +Requires: tex(upquote.sty) +Provides: tex(pythontex.sty) = %{epoch}:%{source_date}-%{release} +# python +BuildArch: noarch + +%description -n %{shortname}-pythontex +The package allows you to enter Python code within a LaTeX +document, execute the code, and access its output in the +original document. Python code is only executed when it has +been modified, or when it meets user-specified criteria. Code +may be divided into user-defined sessions, which automatically +run in parallel. Errors and warnings are synchronized with the +LaTeX document, so that they refer to the document's line +numbers. External dependencies can be tracked, so that code is +re-executed when the data it depends on is modified. PythonTeX +also provides syntax highlighting for code in LaTeX documents +via the Pygments syntax highlighter. The package provides a +depythontex utility, that creates a copy of the document in +which all Python code has been replaced by its output. This is +useful for journal submissions, sharing documents, and +conversion to other formats. + +%package -n %{shortname}-rubik +Provides: tex-rubik = %{epoch}:%{source_date}-%{release} +Provides: tex-rubik-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-rubik-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-rubik-bin < 7:20170520 +Provides: tex-rubik-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-rubik-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-rubik-doc < 7:20170520 +License: LPPL 1.3 +Summary: Document Rubik cube configurations and rotation sequences +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(tikz.sty) +Requires: tex(fancyvrb.sty) +Provides: tex(rubikcube.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(rubikrotation.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-rubik +The bundle provides two packages: rubikcube provides commands +for typesetting Rubik cubes and their transformations; and +rubikrotation which can process a sequence of Rubik rotation +moves, with the help of a Perl package executed via \write18 +(shell escape) commands. + +%package -n %{shortname}-seetexk +Provides: tex-seetexk = %{epoch}:%{source_date}-%{release} +Provides: tex-seetexk-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-seetexk-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-seetexk-bin < 7:20170520 +License: MIT +Summary: Utilities for manipulating DVI files +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-seetexk +The collection comprises: dvibook, which will rearrange the +pages of a DVI file into 'signatures' as used when printing a +book; dviconcat, for concatenating pages of DVI file(s); +dviselect, which will select pages from one DVI file to create +a new DVI file; dvitodvi, which will rearrange the pages of a +DVI file to create a new file; and libtex, a library for +manipulating the files, from the old SeeTeX project. The +utilities are provided as C source with Imakefiles, and an MS- +DOS version of dvibook is also provided. + +%package -n %{shortname}-splitindex +Provides: tex-splitindex = %{epoch}:%{source_date}-%{release} +Provides: tex-splitindex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-splitindex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-splitindex-bin < 7:20170520 +Provides: tex-splitindex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-splitindex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-splitindex-doc < 7:20170520 +License: LPPL +Summary: Unlimited number of indexes +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(splitindex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(splitidx.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-splitindex +SplitIndex consists of a LaTeX package, splitidx, and a small +program, splitindex. The package may be used to produce one +index or several indexes. Without splitindex (for example, +using the index package), the number of indexes is limited by +the number of TeX's output streams. But using the program you +may use even more than 16 indexes: splitidx outputs only a +single file \jobname.idx and the program splits that file into +several raw index files and calls your favorite index processor +for each of the files. + +%package -n %{shortname}-srcredact +Provides: tex-srcredact = %{epoch}:%{source_date}-%{release} +Provides: tex-srcredact-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-srcredact-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-srcredact-bin < 7:20170520 +Provides: tex-srcredact-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-srcredact-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-srcredact-doc < 7:20170520 +License: GPLv2+ +Summary: A tool for redacting sources +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-srcredact +This package provides a tool to keep a master source, +consisting of different "chunks" intended for different +audiences. The tool allows to extract the versions intended for +different audiences and to incorporate the changes made in any +of these versions into the master document. This work was +commissioned by the Consumer Financial Protection Bureau, +United States Treasury. + +%package -n %{shortname}-sty2dtx +Provides: tex-sty2dtx = %{epoch}:%{source_date}-%{release} +Provides: tex-sty2dtx-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-sty2dtx-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-sty2dtx-bin < 7:20170520 +Provides: tex-sty2dtx-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-sty2dtx-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-sty2dtx-doc < 7:20170520 +License: GPLv3+ +Summary: Create a .dtx file from a .sty file +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-sty2dtx +The package provides a Perl script that converts a .sty file +(LaTeX package) to .dtx format (documented LaTeX source), by +surrounding macro definitions with macro and macrocode +environments. The macro name is automatically inserted as an +argument to the macro environemnt. Code lines outside macro +definitions are wrapped only in macrocode environments. Empty +lines are removed. The script should not be thought to be fool +proof and 100% accurate but rather as a good start to the +business of making a .dtx file from an undocumented style file. +Full .dtx files are generated. A template based on the skeleton +file from 'dtxtut' is used. User level macros are added +automatically to the 'Usage' section of the .dtx file. A +corresponding .ins file can be generated as well. + +%package -n %{shortname}-svn-multi +Provides: tex-svn-multi = %{epoch}:%{source_date}-%{release} +Provides: tex-svn-multi-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-svn-multi-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-svn-multi-bin < 7:20170520 +Provides: tex-svn-multi-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-svn-multi-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-svn-multi-doc < 7:20170520 +License: LPPL +Summary: Subversion keywords in multi-file LaTeX documents +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(kvoptions.sty) +Requires: tex(filehook.sty) +Requires: tex(currfile.sty) +Requires: tex(graphics.sty) +Requires: tex(pgf.sty) +Provides: tex(svn-multi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(svnkw.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-svn-multi +This package lets you typeset keywords of the version control +system Subversion inside your LaTeX files anywhere you like. +Unlike the otherwise similar package svn the use of multiple +files for one LaTeX document is well supported. The package +uses the author's filehook and currfile packages. The package +interacts with an external Perl script, to retrieve information +necessary for the required output. + +%package -n %{shortname}-synctex +Provides: tex-synctex = %{epoch}:%{source_date}-%{release} +Provides: tex-synctex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-synctex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-synctex-bin < 7:20170520 +License: LPPL +Summary: synctex package +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-synctex +synctex package. + +%package -n %{shortname}-tetex +License: GPL+ and GPLv2+ and LPPL +Summary: scripts and files originally written for or included in teTeX +Provides: tex-tetex = %{epoch}:%{source_date}-%{release} +Provides: tex-tetex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-tetex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tetex-bin < 7:20170520 +Provides: tex-tetex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-tetex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tetex-doc < 7:20170520 +Requires: texlive-base +Requires: texlive-kpathsea-bin +Requires: texlive-texlive.infra +# This package contains /usr/bin/texconfig-sys, which needs /usr/bin/texconfig +Requires: texlive-texconfig +Provides: tex(09fbbfac.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(0ef0afca.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(10037936.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(1b6d048e.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(71414f53.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(74afc74c.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(aae443f0.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(b6a4d7c7.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(bbad153f.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(d9b29452.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(f7b6d320.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtex.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(base14flags.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvipdfm35.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvips35.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(mathpple.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdftex35.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ps2pk35.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(updmap.cfg) = %{epoch}:%{source_date}-%{release} +# shell and perl +BuildArch: noarch + +%description -n %{shortname}-tetex +teTeX was a comprehensive distribution of TeX, LaTeX and +family, designed for ease of compilation, installation and +customisation. In 2006, Thomas Esser announced he would no +longer be able to support, or to produce new versions of, +teTeX. With the appearance of TeX live 2007 (whose Unix-system +TeX support originally derived from teTeX), no-one should be +using teTeX at all, in new applications. One of the "schemes" +available when installing TeX live provides a configuration +very close to that of the old teTeX, but using modern versions +of programs and packages. + +%package -n %{shortname}-tex +Provides: tex-tex = %{epoch}:%{source_date}-%{release} +Provides: tex-tex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-tex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tex-bin < 7:20170520 +License: Knuth +Summary: A sophisticated typesetting engine +Requires: texlive-base +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-kpathsea +Requires: texlive-plain +Requires: texlive-tetex +Requires(post,postun): coreutils + +%description -n %{shortname}-tex +TeX is a typesetting system that incorporates a macro +processor. A TeX source document specifies or incorporates a +number of macro definitions that instruct the TeX engine how to +typeset the document. The TeX engine also uses font metrics +generated by Metafont, or by any of several other mechanisms +that incorporate fonts from other sources into an environment +suitable for TeX. TeX has been, and continues, a basis and an +inspiration for several other programs, including e-TeX and +PDFTeX. + +%package -n %{shortname}-tex4ebook +Provides: tex-tex4ebook = %{epoch}:%{source_date}-%{release} +Provides: tex-tex4ebook-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-tex4ebook-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tex4ebook-bin < 7:20170520 +Provides: tex-tex4ebook-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-tex4ebook-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tex4ebook-doc < 7:20170520 +License: LPPL 1.3 +Summary: Convertor from LaTeX to ebook formats +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(etoolbox.sty) +Requires: tex(kvoptions.sty) +Requires: tex(graphicx.sty) +Provides: tex(tex4ebook.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-tex4ebook +This is a bundle of lua scripts and LaTeX packages for +conversion of LaTeX files to ebook formats such as epub, mobi +and epub3. tex4ht is used as conversion engine. + +%package -n %{shortname}-tex4ht +Provides: tex-tex4ht = %{epoch}:%{source_date}-%{release} +Provides: tex-tex4ht-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-tex4ht-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tex4ht-bin < 7:20170520 +Provides: tex-tex4ht-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-tex4ht-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tex4ht-doc < 7:20170520 +License: LPPL +Summary: Convert (La)TeX to HTML/XML +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(m-tex4ht.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(tex4ht.sty) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-tex4ht +A converter from TeX and LaTeX to SGML-based formats such as +(X)HTML, MathML, OpenDocument, and DocBook, providing a +configurable (La)TeX-based authoring system for hypertext. +Tex4ht does not parse (La)TeX source (so that it avoids the +difficulties encountered by many other converters, arising from +the irregularity of (La)TeX syntax). Instead, Tex4ht uses +(La)TeX itself (with an extra macro package) to produce a non- +standard DVI file that it can then process. This technique +allows TeX4ht to approach the robustness characteristic of +restricted-syntax systems such as hyperlatex and gellmu. + +%package -n %{shortname}-texconfig +Provides: tex-texconfig = %{epoch}:%{source_date}-%{release} +Provides: tex-texconfig-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texconfig-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texconfig-bin < 7:20170520 +License: LPPL +Summary: Tool to configure teTeX or TeX Live +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-texlive.infra +Provides: tex(tcfmgr.map) = %{epoch}:%{source_date}-%{release} +# shell and perl +BuildArch: noarch + +%description -n %{shortname}-texconfig +texconfig allows one to configure and maintain TeX in an easy +and convenient manner, offering a series of dialog boxes to +the user. The directory in which texconfig is found is also +preferentially used to find subprograms. + +%package -n %{shortname}-texcount +Provides: tex-texcount = %{epoch}:%{source_date}-%{release} +Provides: tex-texcount-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texcount-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texcount-bin < 7:20170520 +Provides: tex-texcount-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texcount-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texcount-doc < 7:20170520 +License: LPPL +Summary: Count words in a LaTeX document +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texcount +TeXcount is a Perl script that counts words in the text of +LaTeX files. It has rules for handling most of the common +macros, and can provide colour-coded output showing which parts +of the text have been counted. The package script is available +as a Web service via its home page. + +%package -n %{shortname}-texdef +Provides: tex-texdef = %{epoch}:%{source_date}-%{release} +Provides: tex-texdef-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdef-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdef-bin < 7:20170520 +Provides: tex-texdef-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdef-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdef-doc < 7:20170520 +License: GPLv3+ +Summary: Display the definitions of TeX commands +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texdef +The (Perl) script displays the definition of (La)TeX command +sequences/macros. Various options allow the selection of the +used class and package files and other things which can have +influence on the definition (before/after the preamble, inside +an environment, ...). The script creates a temporary TeX file +which is then compiled using (La)TeX to find the '\meaning' of +the command sequence. The result is formatted and presented to +the user. Length or number command sequences (dimensions, +\char..., count registers, ...) are recognized and the +contained value is also shown (using \the). Special definitions +like protected macros are also recognized and the underlying +macros are shown as well. The script will show plain TeX +definitions by default. LaTeX and ConTeXt are supported, +including flavours (pdf(la)tex, lua(la)tex, xe(la)tex, ...). +The flavour can be selected using an command line option or +over the script name: latexdef will use LaTeX as default, etc. + +%package -n %{shortname}-texdiff +Provides: tex-texdiff = %{epoch}:%{source_date}-%{release} +Provides: tex-texdiff-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdiff-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdiff-bin < 7:20170520 +Provides: tex-texdiff-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdiff-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdiff-doc < 7:20170520 +License: GPL+ or Artistic +Summary: Compares two (La)TeX documents to create a merged version showing changes +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texdiff +Texdiff compares two (La)TeX documents to create a merged version showing +changes, similar to that of 'Change Tracking' in some word processors. + +%package -n %{shortname}-texdirflatten +Provides: tex-texdirflatten = %{epoch}:%{source_date}-%{release} +Provides: tex-texdirflatten-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdirflatten-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdirflatten-bin < 7:20170520 +License: GPL+ or Artistic +Summary: Collect files related to a LaTeX job in a single directory +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texdirflatten +The Perl script parses a LaTeX file recursively, scanning all +child files, and collects details of any included and other +data files. These component files, are then all put into a +single directory (thus "flattening" the document's directory +tree). + +%package -n %{shortname}-texdoc +Provides: tex-texdoc = %{epoch}:%{source_date}-%{release} +Provides: tex-texdoc-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdoc-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdoc-bin < 7:20170520 +Provides: tex-texdoc-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdoc-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdoc-doc < 7:20170520 +License: GPL+ +Summary: Documentation access for TeX distributions +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(texdoc.cnf) = %{epoch}:%{source_date}-%{release} +# lua and perl +BuildArch: noarch + +%description -n %{shortname}-texdoc +TeXdoc is an application for easy access to the package +documentation of a TeX distributions (i.e., .dvi, .pdf or .ps +files on the $TEXDOCS tree). It is distributed with TeX-Live +and a derivative is distributed with miktex. + +%package -n %{shortname}-texdoctk +Provides: tex-texdoctk = %{epoch}:%{source_date}-%{release} +Provides: tex-texdoctk-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-texdoctk-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdoctk-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdoctk-doc = %{epoch}:%{source_date}-%{release} +License: GPL+ +Summary: Easy access to package documentation +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(texdoctk.dat) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-texdoctk +A Perl/Tk-based GUI for easy access to package documentation +for TeX on Unix platforms; the databases it uses are based on +the texmf/doc subtrees of teTeX, but database files for local +configurations with modified/extended directories can be +derived from them. Note that texdoctk is not a viewer itself, +but an interface for finding documentation files and opening +them with the appropriate viewer; so it relies on appropriate +programs to be installed on the system. However, the choice of +these programs can be configured by the sysadmin or user. Now +only distributed as part of TeX Live, which includes a Windows +executable. + +%package -n %{shortname}-texfot +Provides: tex-texfot = %{epoch}:%{source_date}-%{release} +Provides: tex-texfot-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texfot-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texfot-bin < 7:20170520 +Provides: tex-texfot-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texfot-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texfot-doc < 7:20170520 +License: Public Domain +Summary: Filter clutter from the output of a TeX run +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texfot +The package provides a small Perl script to filter the online +output from a TeX run, attempting to show only those messages +which probably deserve some change in the source. The TeX +invocation itself need not change. + +%package -n %{shortname}-texliveonfly +Provides: tex-texliveonfly = %{epoch}:%{source_date}-%{release} +Provides: tex-texliveonfly-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texliveonfly-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texliveonfly-bin < 7:20170520 +Provides: tex-texliveonfly-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texliveonfly-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texliveonfly-doc < 7:20170520 +License: GPLv3+ +Summary: On-the-fly download of missing TeX live packages +Requires: texlive-base +Requires: texlive-kpathsea +# python +BuildArch: noarch + +%description -n %{shortname}-texliveonfly +The package provides a script that performs 'on the fly' +downloads of missing packages, while a document is being +compiled. (This feature is already available in the MikTeX +distribution for Windows machines.) To use the script, replace +your (LaTeX) compilation command with texliveonfly.py file.tex +(default options are --engine=lualatex and --arguments="- +synctex=1 -interaction=nonstopmode", which may all be changed). +The script is designed to work on Linux distributions. + +%package -n %{shortname}-texlive-en +Provides: tex-texlive-en = %{epoch}:%{source_date}-%{release} +Provides: tex-texlive-en-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texlive-en-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texlive-en-doc < 7:20170520 +License: LPPL +Summary: TeX Live manual (English) +Requires: texlive-base +Requires: texlive-kpathsea +BuildArch: noarch + +%description -n %{shortname}-texlive-en +TeX Live manual (English). + +%package -n %{shortname}-texlive-scripts +Provides: tex-texlive-scripts = %{epoch}:%{source_date}-%{release} +Provides: texlive-texlive-scripts-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texlive-scripts-bin < 7:20170520 +License: LPPL +Summary: TeX Live infrastructure programs +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-texlive.infra +# perl +BuildArch: noarch + +%description -n %{shortname}-texlive-scripts +Includes install-tl, tl-portable, rungs, etc.; not needed for +tlmgr to run but still ours. Not included in tlcritical. + +%package -n %{shortname}-texlive.infra +Provides: tex-texlive.infra = %{epoch}:%{source_date}-%{release} +Provides: tex-texlive.infra-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texlive.infra-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texlive.infra-bin < 7:20170520 +Provides: tex-texlive.infra-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texlive.infra-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texlive.infra-doc < 7:20170520 +License: LPPL +Summary: Basic TeX Live infrastructure +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(fmtutil-hdr.cnf) = %{epoch}:%{source_date}-%{release} +Provides: tex(updmap-hdr.cfg) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-texlive.infra +This package contains the files needed to get the TeX Live +tools (notably tlmgr) running: perl modules, xz binaries, plus +(sometimes) tar and wget. These files end up in the standalone +install packages, and in the tlcritical repository. + +%package -n %{shortname}-texloganalyser +Provides: tex-texloganalyser = %{epoch}:%{source_date}-%{release} +Provides: tex-texloganalyser-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texloganalyser-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texloganalyser-bin < 7:20170520 +Provides: tex-texloganalyser-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texloganalyser-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texloganalyser-doc < 7:20170520 +License: BSD +Summary: Analyse TeX logs +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texloganalyser +The perl script allows the user to extract (and display) +elements of the log file. + +%package -n %{shortname}-texosquery +Provides: tex-texosquery = %{epoch}:%{source_date}-%{release} +Provides: tex-texosquery-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texosquery-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texosquery-bin < 7:20170520 +Provides: tex-texosquery-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texosquery-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texosquery-doc < 7:20170520 +License: LPPL +Summary: Cross-platform Java application to query OS information +Requires: texlive-base +Requires: texlive-kpathsea +Requires: java-headless +# shell +BuildArch: noarch + +%description -n %{shortname}-texosquery +This package provides a cross-platform Java application to +query OS information designed for use in TeX's shell escape +mechanism. The application can query the following: locale and +codeset current working directory user home directory temporary +directory OS name, arch and version Current date and time in +PDF format (for TeX formats that don't provide +\pdfcreationdate) Date-time stamp of a file in PDF format (for +TeX formats that don't provide \pdffilemoddate) Size of a file +in bytes (for TeX formats that don't provide \pdffilesize) +Contents of a directory (captured as a list) Directory contents +filtered by regular expression (captured as a list) URI of a +file Canonical path of a file All paths use a forward slash as +directory divider so results can be used, for example, in +commands like \includegraphics. There are files provided for +easy access in TeX documents: texosquery.tex: generic TeX code +texosquery.sty: LaTeX package This provides commands to run +texosquery using TeX's shell escape mechanism and capture the +result in a control sequence. The category code of most of +TeX's default special characters (and some other potentially +problematic characters) is temporarily changed to 12 while +reading the result. + +%package -n %{shortname}-texsis +Provides: tex-texsis = %{epoch}:%{source_date}-%{release} +Provides: tex-texsis-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texsis-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texsis-bin < 7:20170520 +Provides: tex-texsis-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texsis-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texsis-doc < 7:20170520 +License: LPPL +Summary: Plain TeX macros for PhysicistsRequires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-pdftex +Requires: texlive-tetex +Requires: texlive-tex +Requires(post,postun): coreutils +Provides: tex(TXSconts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSdcol.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSenvmt.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSeqns.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSfigs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSfmts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSfonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXShead.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSinit.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSletr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSmacs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSmemo.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSprns.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSrefs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSruled.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSsects.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSsite.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSsymb.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXStags.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXStitle.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(texsis.tex) = %{epoch}:%{source_date}-%{release} +# symlinks only +BuildArch: noarch + +%description -n %{shortname}-texsis +TeXsis is a TeX macro package which provides useful features +for typesetting research papers and related documents. For +example, it includes support specifically for: Automatic +numbering of equations, figures, tables and references; +Simplified control of type sizes, line spacing, footnotes, +running headlines and footlines, and tables of contents, +figures and tables; Specialized document formats for research +papers, preprints and ``e-prints,'' conference proceedings, +theses, books, referee reports, letters, and memoranda; +Simplified means of constructing an index for a book or thesis; +Easy to use double column formatting; Specialized environments +for lists, theorems and proofs, centered or non-justified text, +and listing computer code; Specialized macros for easily +constructing ruled tables. TeXsis was originally developed for +physicists, but others may also find it useful. It is +completely compatible with Plain TeX. + +%package -n %{shortname}-texware +Provides: tex-texware = %{epoch}:%{source_date}-%{release} +Provides: tex-texware-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texware-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texware-bin < 7:20170520 +License: Knuth +Summary: Utility programs for use with TeX +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-texware +Basic utitility programs, comprising: - dvitype, which converts +a TeX output (DVI) file to a plain text file (see also the DVI +Text Language suite); - pooltype, which converts a TeX-suite +program's "pool" (string) file into human-readable form; and - +tftopl and pltotf, which convert TeX Font Metric (TFM) file to +human readable Property List (PL) files and vice versa. + +%package -n %{shortname}-thumbpdf +Provides: tex-thumbpdf = %{epoch}:%{source_date}-%{release} +Provides: tex-thumbpdf-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-thumbpdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-thumbpdf-bin < 7:20170520 +Provides: tex-thumbpdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-thumbpdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-thumbpdf-doc < 7:20170520 +License: LPPL +Summary: Thumbnails for pdfTeX and dvips/ps2pdf +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(ifluatex.sty) +Requires: ghostscript +Provides: tex(thumbpdf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(thumbpdf.tex) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-thumbpdf +A Perl script that provides support for thumbnails in pdfTeX +and dvips/ps2pdf. The script uses ghostscript to generate the +thumbnails which get represented in a TeX readable file that is +read by the package thumbpdf.sty to automatically include the +thumbnails. This arrangement works with both plain TeX and +LaTeX. + +%package -n %{shortname}-tie +Provides: tex-tie = %{epoch}:%{source_date}-%{release} +Provides: tex-tie-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-tie-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tie-bin < 7:20170520 +License: Latex2e +Summary: Allow multiple web change files +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-tie +Tie was originally developed to allow web programmers to apply +more than one change file to their source. The program may also +be used to create a new version of a .web file that +incorporates existing changes. + +%package -n %{shortname}-tpic2pdftex +Provides: tex-tpic2pdftex = %{epoch}:%{source_date}-%{release} +Provides: tex-tpic2pdftex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-tpic2pdftex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tpic2pdftex-bin < 7:20170520 +Provides: tex-tpic2pdftex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-tpic2pdftex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tpic2pdftex-doc < 7:20170520 +License: GPL+ +Summary: Use tpic commands in PDFTeX +Requires: texlive-base +Requires: texlive-kpathsea +# awk +BuildArch: noarch + +%description -n %{shortname}-tpic2pdftex +The AWK script converts pic language, embedded inline +(delimited by .PS and .PE markers), to \pdfliteral commands. + +%package -n %{shortname}-ttfutils +Provides: tex-ttfutils = %{epoch}:%{source_date}-%{release} +Provides: tex-ttfutils-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-ttfutils-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ttfutils-bin < 7:20170520 +Provides: tex-ttfutils-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ttfutils-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ttfutils-doc < 7:20170520 +License: LPPL +Summary: Linux TrueType utilities +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(T1-WGL4.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(ttf2pk.cfg) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-ttfutils +Linux TrueType utilities. + +%package -n %{shortname}-typeoutfileinfo +Provides: tex-typeoutfileinfo = %{epoch}:%{source_date}-%{release} +Provides: tex-typeoutfileinfo-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-typeoutfileinfo-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-typeoutfileinfo-bin < 7:20170520 +Provides: tex-typeoutfileinfo-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-typeoutfileinfo-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-typeoutfileinfo-doc < 7:20170520 +License: LPPL 1.3 +Summary: Display class/package/file information +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(readprov.sty) +# shell +BuildArch: noarch + +%description -n %{shortname}-typeoutfileinfo +The package provides a minimalist shell script, for Unix +systems, that displays the information content in a +\ProvidesFile, \ProvidesPackage or \ProvidesClass command in a +LaTeX source file. The package requires that the readprov +package is available. + +%package -n %{shortname}-ulqda +Provides: tex-ulqda = %{epoch}:%{source_date}-%{release} +Provides: tex-ulqda-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-ulqda-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ulqda-bin < 7:20170520 +Provides: tex-ulqda-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ulqda-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ulqda-doc < 7:20170520 +License: LPPL +Summary: Support of Qualitative Data Analysis +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(multicol.sty) +Requires: tex(tikz.sty) +Requires: tex(dot2texi.sty) +Requires: tex(soul.sty) +Provides: tex(ulqda.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-ulqda +The package is for use in Qualitative Data Analysis research. +It supports the integration of Qualitative Data Analysis (QDA) +research tasks, specifically for Grounded Theory, into the +LaTeX work flow. It assists in the analysis of textual data +such as interview transcripts and field notes by providing the +LaTeX user with macros which are used to markup textual +information -- for example, in-depth interviews. + +%package -n %{shortname}-uptex +Provides: tex-uptex = %{epoch}:%{source_date}-%{release} +Provides: tex-uptex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-uptex-doc = %{epoch}:%{source_date}-%{release} +Provides: tex-uplatex = %{epoch}:%{source_date}-%{release} +Provides: tex-uplatex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-uplatex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-uptex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-uptex-bin < 7:20170520 +Provides: texlive-uplatex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-uplatex-bin < 7:20170520 +Provides: texlive-uplatex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-uplatex-doc < 7:20170520 +Provides: texlive-uptex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-uptex-doc < 7:20170520 +License: BSD +Summary: Binaries for uptex +Requires: texlive-base +Requires: texlive-convbkmk +Requires: texlive-hyph-utf8 +Requires: texlive-ipaex +Requires: texlive-japanese +Requires: texlive-japanese-otf +Requires: texlive-kpathsea +Requires: texlive-ptex + +%description -n %{shortname}-uptex +upTeX is an extension of pTeX, using UTF-8 input and producing UTF-8 +output. It was originally designed to improve support for Japanese, +but is also useful for documents in Chinese and Korean. It can +process Chinese simplified, Chinese traditional, Japanese, and Korean +simultaneously, and can also produce original LaTeX with \inputenc{utf8} +and Babel (Latin/Cyrillic/Greek etc.) by switching its \kcatcode +tables. + +%package -n %{shortname}-urlbst +Provides: tex-urlbst = %{epoch}:%{source_date}-%{release} +Provides: tex-urlbst-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-urlbst-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-urlbst-bin < 7:20170520 +Provides: tex-urlbst-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-urlbst-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-urlbst-doc < 7:20170520 +License: GPL+ +Summary: Web support for BibTeX +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-urlbst +Supports a new BibTeX 'webpage' entry type and 'url', +'lastchecked', and 'eprint' and 'DOI' fields. The Perl script +urlbst can be used to add this support to an arbitrary .bst +file which has a reasonably conventional structure. The result +is meant to be robust rather than pretty. + +%package -n %{shortname}-velthuis +Provides: tex-velthuis = %{epoch}:%{source_date}-%{release} +Provides: tex-velthuis-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-velthuis-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-velthuis-bin < 7:20170520 +Provides: tex-velthuis-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-velthuis-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-velthuis-doc < 7:20170520 +Provides: texlive-devnag = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-devnag < 7:20170520 +Provides: texlive-devnag-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-devnag-bin < 7:20170520 +License: GPL+ +Summary: Typeset Devanagari +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-tetex +Requires: tex-xetex-devanagari +Requires: tex(hindicaptions.sty) +Requires: tex(cite.sty) +Requires: tex(ifxetex.sty) +Provides: tex(dvng.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnb10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnb8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnb9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbb10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbb8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbb9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbbi10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbbi8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbbi9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbi10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbi8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbi9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnc10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnc8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnc9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvncb10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvncb8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvncb9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvncbi10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvncbi8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvncbi9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnci10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnci8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnci9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvng10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvng8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvng9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngb10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngb8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngb9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngbi10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngbi8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngbi9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngi10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngi8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngi9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnn10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnn8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnn9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnnb10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnnb8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnnb9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnnbi10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnnbi8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnnbi9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnni10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnni8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnni9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpb10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpb8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpb9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpc10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpc8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpc9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpn10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpn8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpn9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpnn10.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpnn8.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpnn9.tfm) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnb10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnb8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnb9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbb10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbb8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbb9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbbi10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbbi8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbbi9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbi10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbi8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnbi9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnc10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnc8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnc9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvncb10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvncb8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvncb9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvncbi10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvncbi8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvncbi9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnci10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnci8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnci9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvng10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvng8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvng9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngb10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngb8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngb9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngbi10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngbi8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngbi9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngi10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngi8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngi9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnn10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnn8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnn9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnnb10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnnb8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnnb9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnnbi10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnnbi8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnnbi9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnni10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnni8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvnni9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpb10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpb8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpb9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpc10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpc8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpc9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpn10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpn8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpn9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpnn10.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpnn8.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvpnn9.pfb) = %{epoch}:%{source_date}-%{release} +Provides: tex(hindi.ldf) = %{epoch}:%{source_date}-%{release} +Provides: tex(hindi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(dev.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(dev209.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(devanagari.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngcite.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(udn.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnb.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnc.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnn.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnp.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnpb.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnpc.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnpn.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(dnmacs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(hindicaptions.sty) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-velthuis +Frans Velthuis' preprocessor for Devanagari text, and fonts and +macros to use when typesetting the processed text. The macros +provide features that support Sanskrit, Hindi, Marathi, Nepali, +and other languages typically printed in the Devanagari script. +The package provides fonts, in both Metafont and Type 1 +formats. Users of modern TeX distributions may care to try the +XeTeX based package, which is far preferable for users who can +type Unicode text. + +%package -n %{shortname}-vlna +Provides: tex-vlna = %{epoch}:%{source_date}-%{release} +Provides: tex-vlna-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-vlna-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-vlna-bin < 7:20170520 +Provides: tex-vlna-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-vlna-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-vlna-doc < 7:20170520 +License: LPPL +Summary: Adds tilde after each non-syllabic preposition +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-vlna +There exists a special Czech and Slovak typographical rule: +you cannot leave the non-syllabic preposition on the end of one +line and continue writting text on next line. For example, you +cannot write down the text "v lese" (in a forest) like +"vlese". The program vlna adds the asciitilde between +such preposition and the next word and removes the space(s) in +this place. It means, the program converts "v lese" to +"v~lese". You can use this program as a preporcessor before +TeXing. Moreower, you can set another sequence to store instead +asciitilte (see the -x option). + +%package -n %{shortname}-vpe +Provides: tex-vpe = %{epoch}:%{source_date}-%{release} +Provides: tex-vpe-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-vpe-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-vpe-bin < 7:20170520 +Provides: tex-vpe-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-vpe-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-vpe-doc < 7:20170520 +License: LPPL +Summary: Source specials for PDF output +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(keyval.sty) +Requires: tex(color.sty) +Requires: tex(pifont.sty) +Provides: tex(vpe.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-vpe +VPE is a system to make the equivalent of "source special" +marks in a PDF file. Clicking on a mark will activate an +editor, pointing at the source line that produced the text that +was marked. The system comprises a perl file (vpe.pl) and a +LaTeX package (vpe.sty); it will work with PDF files generated +via LaTeX/dvips, pdfTeX (version 0.14 or better), and +LaTeX/VTeX. Using the LaTeX/dvips or pdfLaTeX routes, the +(pdf)TeX processor should be run with shell escapes enabled. + +%package -n %{shortname}-web +Provides: tex-web = %{epoch}:%{source_date}-%{release} +Provides: tex-web-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-web-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-web-bin < 7:20170520 +License: Knuth +Summary: Original web programs tangle and weave +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-web +The system processes 'web' files in two ways: firstly to +rearrange them to produce compilable code (using the program +tangle), and secondly to produce a TeX source (using the +program weave) that may be typeset for comfortable reading. + +%package -n %{shortname}-webquiz +Provides: tex-webquiz = %{epoch}:%{source_date}-%{release} +Provides: tex-webquiz-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-webquiz-bin = %{epoch}:%{source_date}-%{release} +License: GPLv3+ +Summary: A LaTeX package for writing online quizzes +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-tex4ht +Requires: texlive-make4ht +Requires: tex(tikz.sty) +Requires: tex(pstricks.sty) +Requires: texlive-dvisvgm +Requires: ghostscript +Requires: python3 +# python3 +BuildArch: noarch + +%description -n %{shortname}-webquiz +WebQuiz makes it possible to use LaTeX to write interactive online quizzes. +The quizzes are first written in LaTeX and then converted into HTML using +WebQuiz, which is written in python. The conversion from LaTeX to HTML is +done behind the scenes using TeX4ht. The idea is that you should be able to +produce nice online quizzes using WebQuiz and basic knowledge of LaTeX. + +%package -n %{shortname}-wordcount +Provides: tex-wordcount = %{epoch}:%{source_date}-%{release} +Provides: texlive-wordcount-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-wordcount-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-wordcount-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-wordcount-doc < 7:20180414 +Provides: tex(wordcount.tex) = %{epoch}:%{source_date}-%{release} +License: LPPL +Summary: Estimate the number of words in a LaTeX document +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-wordcount +The package provides a relatively easy way of estimating the +number of words in a LaTeX document that does not require +dvitty or other DVI converters. It does however require +something like Unix grep -c that can search a file for a +particular string and report the number of matching lines. An +accompanying shell script wordcount.sh contains more +information in its comments. + +%package -n %{shortname}-xdvi +License: MIT +Summary: A DVI previewer for the X Window System +Provides: tex-xdvi = %{epoch}:%{source_date}-%{release} +Provides: tex-xdvi-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-xdvi-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xdvi-bin < 7:20170520 +Provides: xdvi = %{epoch}:%{source_date}-%{release} +Provides: xdvik = %{epoch}:%{source_date}-%{release} +Requires: texlive-kpathsea +Requires: texlive-base + +%description -n %{shortname}-xdvi +The canonical previewer for use on Unix and other X-windows +based systems. + +%package -n %{shortname}-xetex +Provides: tex-xetex = %{epoch}:%{source_date}-%{release} +Provides: tex-xetex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-xetex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xetex-bin < 7:20170520 +Provides: tex-xetex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-xetex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xetex-doc < 7:20170520 +License: MIT +Summary: Unicode and OpenType-enabled TeX engine +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-tetex +Requires: texlive-xetexconfig +Requires: teckit +Requires(post,postun): coreutils +Requires: tex(xetex.def) +Provides: tex(qx-unicode.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(tex-text.map) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-xetex +XeTeX is an extension of TeX that integrates TeX's typesetting capabilities +with (a) the Unicode text encoding standard (supporting most of the world’s +scripts) and (b) modern font technologies (TrueType and OpenType) and text +layout services (AAT, OpenType layout, SIL Graphite) provided by the host +operating system and available libraries. + +With XeTeX, the advanced typographic features provided by OpenType fonts become +available for all TeX users, as well as support for complex non-roman scripts. +XeTeX also eliminates the complex task of managing a TeX font installation. +XeTeX is now part of the standard TeX distribution TeXLive and works well with +TeX macro packages like LaTeX and ConTeXt. + +%package -n %{shortname}-xindex +Provides: tex-xindex = %{epoch}:%{source_date}-%{release} +Provides: tex-xindex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-xindex-bin = %{epoch}:%{source_date}-%{release} +License: LPPL 1.3 +Summary: Unicode compatible index program for LaTeX +Requires: lua >= 5.3 +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-luatex +Provides: tex(xindex.lua) = %{epoch}:%{source_date}-%{release} +Provides: tex(xindex.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-xindex +Unicode compatible index program for LaTeX. + +%package -n %{shortname}-xindy +Provides: tex-xindy = %{epoch}:%{source_date}-%{release} +Provides: tex-xindy-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-xindy-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-xindy-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xindy-bin <= 6:svn41316 +Provides: tex-xindy-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-xindy-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xindy-doc <= 6:svn41316 +License: GPLv2+ +Summary: A general-purpose index processor +# There are some arch specific binaries in here. +# BuildArch: noarch +Requires: texlive-base +Requires: texlive-kpathsea +Requires: clisp + +%description -n %{shortname}-xindy +Xindy was deceloped after an impasse had been encountered in +the attempt to complete internationalisation of makeindex. +Xindy can be used to process indexes for documents marked up +using (La)TeX, Nroff family and SGML-based languages. Xindy is +highly configurable, both in markup terms and in terms of the +collating order of the text being processed. + +%package -n %{shortname}-xmltex +Provides: tex-xmltex = %{epoch}:%{source_date}-%{release} +Provides: tex-xmltex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-xmltex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xmltex-bin < 7:20170520 +Provides: tex-xmltex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-xmltex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xmltex-doc < 7:20170520 +Provides: xmltex = %{epoch}:%{source_date}-%{release} +License: LPPL +Summary: Support for parsing XML documents +Requires: texlive-base +Requires: texlive-kpathsea-bin, tex-kpathsea +Requires: texlive-latex +Requires: texlive-pdftex +Requires: texlive-tetex +Requires: texlive-tex +Requires: texlive-xmltexconfig +Provides: tex(xmltex.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(xmltex.tex) = %{epoch}:%{source_date}-%{release} +# symlinks +BuildArch: noarch + +%description -n %{shortname}-xmltex +The package provides an implementation of a parser for +documents matching the XML 1.0 and XML Namespace +Recommendations. In addition to parsing commands are provided +to attatch TeX typesetting instructions to the various markup +elemenets as they are encounted. Sample files for typesetting a +subset of TEI, MathML, are included. Element and Attribute +names, as well as character data, may use any characters +allowed in XML, using UTF-8 or a suitable 8-bit encoding. + +%package -n %{shortname}-yplan +Provides: tex-yplan = %{epoch}:%{source_date}-%{release} +Provides: tex-yplan-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-yplan-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-yplan-bin < 7:20170520 +Provides: tex-yplan-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-yplan-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-yplan-doc < 7:20170520 +License: LPPL +Summary: Daily planner type calendar +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(ifthen.sty) +Provides: tex(yplan.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-yplan +Prints two six-monthly vertical-type daily planner (i.e., +months along the top, days downwards), with each 6-month period +fitting onto a single A4 (or US letter) sheet. The package +offers support for English, French, German, Spanish and +Portuguese. The previous scheme of annual updates has now been +abandoned, in favour of a Perl script yplan that generates a +year's planner automatically. (The last manually-generated +LaTeX file remains on the archive.) + +%prep +%setup -q -c -T +xz -dc %{SOURCE0} | tar x +[ -e %{source_name} ] && mv %{source_name} source +%patch1 -p0 +%patch2 -p1 -b .format +%patch3 -p1 -b .selinux +%patch5 -p0 +%if 0%{?fedora} >= 28 +%patch7 -p1 -b .newpoppler +%endif +%patch8 -p1 -b .texinfo-fix +%patch11 -p1 -b .dt +%patch15 -p1 -b .disabletest +%patch17 -p1 -b .annocheck +%if 0%{?fedora} >= 30 +%patch18 -p1 -b .poppler-0.73 +%endif +%patch19 -p1 -b .shh +%patch20 -p1 -b .fix-libgs-detection + +# Setup copies of the licenses +for l in `unxz -c %{SOURCE3} | tar t`; do +ln -s %{_texdir}/licenses/$l $l +done + +# Value here is "16" not "15" because we have a source0 at index 1. +# Source15 at index 16 is our first "normal" noarch source file. +# Also, this macro has to be here, not at the top, or it will not evaluate properly. :P +%global mysources %{lua: for index,value in ipairs(sources) do if index >= 16 then print(value.." ") end end} + +%build +# Make texlive generate latex.fmt, so that multiple threads do not race to +# make it during the xindy build. +cat > dummy.tex << EOF +\documentclass{article} +\begin{document} +This is a document. +\end{document} +EOF +latex dummy.tex +rm -f dummy.* + +# When redhat-rpm-config is updated in all stable targets, this conditional can go away +%if 0%{?fedora} >= 28 +export LDFLAGS="%{build_ldflags}" +%endif +cd source +PREF=`pwd`/inst +mkdir -p work +%global _configure ../configure +cd work +%configure \ +--prefix=$PREF --datadir=$PREF --libdir=$PREF/lib --includedir=$PREF/include --datarootdir=$PREF/share --mandir=$PREF/share/man \ +--infodir=$PREF/share/info --exec_prefix=$PREF --bindir=$PREF/bin --with-system-zlib --with-system-libpng --with-system-xpdf \ +--with-system-gd --with-system-t1lib --with-system-teckit --with-system-freetype2 --with-system-poppler --with-system-zziplib \ +--with-system-cairo --with-system-icu --with-system-harfbuzz --with-system-graphite2 --with-system-libgs --with-system-pixman \ +--with-system-libpaper --with-system-potrace --with-pic --with-xdvi-x-toolkit=xaw --with-system-mpfr --with-system-gmp \ +--enable-shared --enable-compiler-warnings=max --without-cxx-runtime-hack \ +--disable-native-texlive-build --disable-t1utils --disable-psutils --disable-biber --disable-ptexenc --disable-largefile \ +%ifarch aarch64 %{mips} %{power64} s390 s390x x86_64 +--disable-luajittex --disable-mfluajit \ +%endif +--disable-xindy --disable-xindy-docs --disable-xindy-make-rules \ +--disable-rpath + +# disable rpath +for i in `find . -name libtool`; do +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' $i +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' $i +done + +make world %{?_smp_mflags} STRIPPROG=/bin/true STRIP=/bin/true + +%install +# make directories +mkdir -p %{buildroot}%{_texdir}/texmf-config/web2c +mkdir -p %{buildroot}%{_texmf_var} + +# make symlinks +pushd %{buildroot}%{_texdir}/texmf-config/web2c +ln -s ../../texmf-dist/web2c/updmap.cfg updmap.cfg +popd + +# make compatibility symlink +pushd %{buildroot}%{_datadir} +mkdir -p texlive/texmf-local/texmf-compat +ln -s texlive/texmf-local/texmf-compat texmf +popd + +# make opentype fontdir symlinks +# NOTE: fontawesome, stix, oldstandard are a conflict, so we just add Requires for the +# corresponding system font packages for them. +# NOTE: We might have to handle this differently if there are lots of conflicts later. +# DO NOT MAKE A SYMLINK FOR public/ebgaramond +# The EB Garamond upstream font decided to map some historical flags (i.e., flags +# obsolete for centuries) to the Unicode flag emoji code points. +# Since most other fonts do not include the relevant code points, Fontconfig decides to +# pick up the EB Garamond flags through the fallback font mechanism for almost all +# fonts on the system, including DejaVu Sans, Liberation Sans, etc. +mkdir -p %{buildroot}%{_datadir}/fonts +pushd %{buildroot}%{_datadir}/fonts +for i in public/lilyglyphs ; do + j=`echo $i | cut -d / -f 2` + ln -s %{_texdir}/texmf-dist/fonts/opentype/$i $j +done +popd + +# install binaries +mkdir -p %{buildroot}%{_bindir} +rm -f source/inst/bin/man +cp -a source/inst/bin/* %{buildroot}%{_bindir} + +# install libs +mkdir -p %{buildroot}%{_libdir} +cp -d source/inst/lib/*.so* %{buildroot}%{_libdir} +cp -a source/inst/lib/pkgconfig %{buildroot}%{_libdir} + +# install includes +mkdir -p %{buildroot}%{_includedir} +cp -r source/inst/include/* %{buildroot}%{_includedir} + +# install shared files +mkdir -p %{buildroot}%{_datadir} +mkdir -p %{buildroot}%{_texdir} +pushd source/inst/share +cp -a info %{buildroot}%{_datadir}/ +cp -a man %{buildroot}%{_datadir}/ +cp -a texmf-dist %{buildroot}%{_texdir}/ +popd + +# relocate binaries to %%{_bindir} and fix relative symlinks +pushd %{buildroot}%{_bindir} +for i in `find . -type l`; do +if [ "`readlink $i | grep '..' | wc -l`" == "1" ]; then +l=`readlink $i | sed s,.*texmf,/usr/share/texlive/texmf,` +rm -f $i +ln -s $l $i +fi +done +popd + +# install noarch bits +pushd %{buildroot}%{_texdir} +echo %{mysources} +for noarchsrc in %{mysources}; do + xz -dc $noarchsrc | tar x +done +popd +# Do the weird noarch bits +pushd %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5} | tar x +xz -dc %{SOURCE6} | tar x +xz -dc %{SOURCE7} | tar x +xz -dc %{SOURCE8} | tar x +xz -dc %{SOURCE9} | tar x +xz -dc %{SOURCE10} | tar x +xz -dc %{SOURCE11} | tar x +xz -dc %{SOURCE12} | tar x +xz -dc %{SOURCE13} | tar x +xz -dc %{SOURCE14} | tar x +popd + +# We want the texmf.cnf we patched, not the vanilla one from the kpathsea.tar.xz +cp -a source/texk/kpathsea/texmf.cnf %{buildroot}%{_texdir}/texmf-dist/web2c/texmf.cnf + +# Apply fixes +# We do it here because this is the first time we have the complete tree. +# bz1384067 +sed -i 's|\\sc |\\scshape |g' %{buildroot}%{_texdir}/texmf-dist/bibtex/bst/base/acm.bst +sed -i 's|\\sc |\\scshape |g' %{buildroot}%{_texdir}/texmf-dist/bibtex/bst/base/siam.bst + +# Patches to component tarballs +pushd %{buildroot}%{_texdir}/texmf-dist +# fix pdfbook2 for py3 +patch -p1 < %{_sourcedir}/texlive-base-pdfbook2-py3.patch +# neuter tlmgr a bit +patch -p1 < %{_sourcedir}/texlive-20190410-tlmgr-ignore-warning.patch +popd + +# config files in /etc symlinked +mkdir -p %{buildroot}%{_sysconfdir}/texlive/web2c +mkdir -p %{buildroot}%{_sysconfdir}/texlive/dvips/config +mkdir -p %{buildroot}%{_sysconfdir}/texlive/tex/generic/config + +for i in mktex.cnf texmf.cnf updmap.cfg; do + mv %{buildroot}%{_texdir}/texmf-dist/web2c/$i %{buildroot}%{_sysconfdir}/texlive/web2c/ + ln -s %{_sysconfdir}/texlive/web2c/$i %{buildroot}%{_texdir}/texmf-dist/web2c/$i +done + +# configure texmf-local - make it visible to kpathsea +sed -i -e 's|^TEXMFLOCAL.*|TEXMFLOCAL = $TEXMFROOT/texmf-local//|' %{buildroot}%{_sysconfdir}/texlive/web2c/texmf.cnf + +mv %{buildroot}%{_texdir}/texmf-dist/dvips/config/config.ps %{buildroot}%{_sysconfdir}/texlive/dvips/config/ +ln -s %{_sysconfdir}/texlive/dvips/config/config.ps %{buildroot}%{_texdir}/texmf-dist/dvips/config/config.ps + +# Move the stock fmtutil.cnf under /etc and make sure everything is commented out +mv %{buildroot}%{usr_fmtutil_cnf} %{buildroot}%{etc_fmtutil_cnf} +sed -i '/^[a-z].*$/s/^/\#\!\ /' %{buildroot}%{_sysconfdir}/texlive/web2c/fmtutil.cnf + +# Split the stock texmf.cnf file: +# * Look for lines like "# from foo:" and use those as the names of the files +# we generate. +# * Take the text starting at "# from foo:" and ending just before the next +# line containing just '#' (or EOF). +# * remove '#!' +# * Add a single line containing '#' to the beginning +# * Stuff that into a file named "foo" in %%_texdir/fmtutil.cnf.d +# +# This is a bit fragile as the precise format of the stock fmtutil.cnf file +# could change. +# The leading '#' and the "# from foo:" line are added to the output only to +# match the existing format of the file, just in case some tool cares. +mkdir %{buildroot}%{_texdir}/fmtutil.cnf.d +for i in $(grep '^# from .*:$' %{buildroot}%{etc_fmtutil_cnf}|sed 's/^# from //; s/:$//'); do + echo "#" > %{buildroot}%{fmtutil_cnf_d}/$i + sed -n "s/^#! //; /^# from $i:\$/,/^#\$/{/^#\$/!p}" %{buildroot}%{etc_fmtutil_cnf} >> %{buildroot}%{fmtutil_cnf_d}/$i +done + +# Install the fmtutil.cnf generation script +mkdir -p %{buildroot}%{_sbindir} +install -D -p -m 755 -t %{buildroot}%{_sbindir} %{SOURCE4} + +# create macro file for building texlive +mkdir -p %{buildroot}%{_rpmmacrodir} +cp -a %{SOURCE1} %{buildroot}%{_rpmmacrodir}/macros.texlive + +# install texlive.tlpdb +cp %{SOURCE2} %{buildroot}%{_texdir} +# make a symlink so texdoc is happy +pushd %{buildroot}%{_texdir}/tlpkg +ln -s ../texlive.tlpdb . +popd + +# install licenses +mkdir -p %{buildroot}%{_texdir}/licenses +pushd %{buildroot}%{_texdir}/licenses +xz -dc %{SOURCE3} | tar x +popd + +# nuke useless tlmgr packaging stuff and doc droppings +rm -f %{buildroot}/%{_texdir}/install-tl +rm -rf %{buildroot}%{_texdir}/tlpkg/gpg/ +rm -rf %{buildroot}%{_texdir}/tlpkg/tltcl/ +rm -rf %{buildroot}%{_texdir}/tlpkg/tlpobj/ +rm -rf %{buildroot}%{_texdir}/texmf-dist/tlpkg/tlpobj/ +# texconfig needs tlmgr.pl +# We're only including what it needs, no more. +# rm -f %{buildroot}%{_texdir}/texmf-dist/doc/man/man1/tlmgr.1 +# rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/tlmgr.pl +# rm -f %{buildroot}%{_bindir}/tlmgr +# rm -f %{buildroot}%{_texdir}/tlpkg/installer/config.guess +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/tlmgrgui.pl +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/uninstall-win32.pl +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/uninstq.vbs +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/tlcockpit/tlcockpit.sh +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/tlshell/tlshell.tcl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/COPYING.MinGW-runtime.txt +rm -f %{buildroot}%{_texdir}/tlpkg/installer/ctan-mirrors.pl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/install-menu-extl.pl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/install-menu-perltk.pl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/install-menu-text.pl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/install-menu-wizard.pl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/install-tl-gui.tcl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/texlive.png +rm -f %{buildroot}%{_bindir}/tlcockpit +rm -f %{buildroot}%{_bindir}/tlshell +rm -rf %{buildroot}%{_datadir}/info/dir +rm -rf %{buildroot}%{_texdir}/readme-txt.dir/README.* +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/man/man*/*.pdf +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/man/man*/*.pdf +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/man/Makefile +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/man/man*/Makefile +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/info/dir +# nuke unwanted ptexenc devel files +rm -rf %{buildroot}%{_includedir}/ptexenc +# nuke context windows files +rm -f %{buildroot}/%{_texdir}/texmf-dist/scripts/context/stubs/mswin/* +rm -f %{buildroot}/%{_texdir}/texmf-dist/scripts/context/stubs/win64/* +rm -f %{buildroot}/%{_texdir}/texmf-dist/scripts/context/stubs/source/* + +# Make this perl module show up in @INC +mkdir -p %{buildroot}%{_datadir}/perl5 +ln -s %{_texdir}/tlpkg/TeXLive %{buildroot}%{_datadir}/perl5/TeXLive + +# not sure why this is here +rm -rf %{buildroot}%{_texdir}/texmf-dist/source/fonts/zhmetrics/ttfonts.map + +pushd %{buildroot}%{_texdir} +# ALWAYS NUKE THIS IF IT IS HERE. +rm -rf texmf-var +# AND NOW WE MAKE THE SYMLINK. +ln -s %{_texmf_var} texmf-var +popd + +# sync built/distro binaries +pushd %{buildroot}%{_bindir} +[ ! -e mfplain ] && ln -s mpost mfplain +[ ! -e texlua ] && ln -s luatex texlua +[ ! -e texluac ] && ln -s luatex texluac + +# remove latexmk +# This lives in the "latexmk" package in Fedora. +rm -f latexmk +rm -rf %{buildroot}%{_texdir}/texmf-dist/scripts/latexmk +rm -f %{buildroot}%{_datadir}/texlive/texmf-dist/doc/man/man1/latexmk.* + +# Fix symlinks for helper scripts +rm -f bibexport.sh +ln -s /usr/share/texlive/texmf-dist/scripts/bibexport/bibexport.sh bibexport.sh +rm -f texmfstart +ln -s /usr/share/texlive/texmf-dist/scripts/context/ruby/texmfstart.rb texmfstart +# fix context +rm -f context +cat > context << EOF +#!/bin/sh +export TEXMF=/usr/share/texlive/texmf-dist; +export TEXMFCNF=/usr/share/texlive/texmf-dist/web2c; +export TEXMFCACHE=\$HOME/.cache/texlive; +%{_bindir}/mtxrun --script context "\$@" +EOF +chmod 0755 context +popd + +# Move docs +mkdir -p %{buildroot}%{_datadir}/ +mkdir -p %{buildroot}%{_infodir}/ +cp -R %{buildroot}%{_texdir}/texmf-dist/doc/man %{buildroot}%{_datadir}/ +find %{buildroot}%{_texdir}/texmf-dist/doc/man -type f | xargs rm -f +mv %{buildroot}%{_texdir}/texmf-dist/doc/info/* %{buildroot}%{_infodir}/ + +# Remove cjk-gs-integrate files +# Yes, we probably should remove the source, but there is a possibility that we will +# re-add this subpackage at some point. +rm -rf %{buildroot}%{_bindir}/cjk-gs-integrate +rm -rf %{buildroot}%{_texdir}/texmf-dist/scripts/cjk-gs-integrate +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/fonts/cjk-gs-integrate +rm -rf %{buildroot}%{_texdir}/texmf-dist/fonts/misc/cjk-gs-integrate + +# Fix pkgconfig files +for file in $(find %{buildroot}%{_libdir}/pkgconfig/ -type f -name '*.pc') +do sed -i 's|%{_builddir}/%{name}-%{source_date}/source/inst|/usr|g' $file + sed -i 's|/usr/lib|%{_libdir}|g' $file +done + +# Python fixup +# Change shebang in all relevant files in this directory and all subdirectories +# See `man find` for how the `-exec command {} +` syntax works +pushd %{buildroot} +find -type f -exec sed -i '1s|^#!/usr/bin/python$|#!%{__python3}|' {} + +find -type f -exec sed -i '1s|^#!/usr/bin/env python$|#!%{__python3}|' {} + +sed -i '1s|^#!/usr/bin/python |#!%{__python3} |' ./%{_texdir}/texmf-dist/scripts/de-macro/de-macro +popd + +# SCRIPTLETS + +%pretrans -p +path = "/usr/share/texmf" +st = posix.stat(path) +if st and st.type == "directory" then + status = os.rename(path, path .. ".rpmmoved") + if not status then + suffix = 0 + while not status do + suffix = suffix + 1 + status = os.rename(path .. ".rpmmoved", path .. ".rpmmoved." .. suffix) + end + os.rename(path, path .. ".rpmmoved") + end +end + +%pre +rm -rf %{_texdir}/texmf-var +rm -rf %{_texmf_var}/* +: + +%posttrans +if [ -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled; then +[ -x /sbin/restorecon ] && /sbin/restorecon -R %{_texmf_var}/ +fi +: + +%transfiletriggerin -n %{shortname}-kpathsea -- %{_texdir} +%{_bindir}/texhash 2> /dev/null || : +export TEXMF=/usr/share/texlive/texmf-dist +export TEXMFCNF=/usr/share/texlive/texmf-dist/web2c +export TEXMFCACHE=/var/lib/texmf +%{_bindir}/mtxrun --generate &> /dev/null || : +%{_bindir}/fmtutil-sys --all &> /dev/null || : + +%transfiletriggerpostun -n %{shortname}-kpathsea -- %{_texdir} +%{_bindir}/texhash 2> /dev/null || : + +%transfiletriggerin -n %{shortname}-kpathsea -- %{_texdir}/texmf-dist/fonts/map/dvips/ +list=`grep "\.map" | sort -n | uniq` +while read -r line; do + [ -z "$line" ] && continue + shortfile=`basename "$line"` + if `echo $shortfile | grep -Eq 'allrunes.map|arabtex.map|arss.map|artm.map|bbold.map|cbgreek-full.map|ccpl.map|cmextra.map|cmll.map|cm.map|cm-super-t1.map|cm-super-t2a.map|cm-super-t2b.map|cm-super-t2c.map|cm-super-ts1.map|cm-super-x2.map|cmtext-bsr-interpolated.map|cyrillic.map|dvng.map|esint.map|ethiop.map|eurosym.map|hfbright.map|iby.map|latxfont.map|lxfonts.map|manfnt.map|mflogo.map|mongolian.map|musix.map|pigpen.map|plother.map|pltext.map|rsfs.map|semaf.map|stmaryrd.map|symbols.map|tipa.map|trajan.map|vnrother.map|vnrtext.map|wasy.map|xypic.map|yhmath.map'`; then + %{_bindir}/updmap-sys --nomkmap --enable MixedMap=$shortfile >/dev/null 2>&1 || : + else + %{_bindir}/updmap-sys --nomkmap --enable Map=$shortfile >/dev/null 2>&1 || : + fi +done <<< "$list" +%{_bindir}/updmap-sys --quiet --nomkmap >/dev/null || : + +%transfiletriggerpostun -n %{shortname}-kpathsea -- %{_texdir}/texmf-dist/fonts/map/dvips/ +list=`grep "\.map" | sort -n | uniq` +while read -r line; do + [ -z "$line" ] && continue + shortfile=`basename "$line"` + if `echo $shortfile | grep -Eq 'allrunes.map|arabtex.map|arss.map|artm.map|bbold.map|cbgreek-full.map|ccpl.map|cmextra.map|cmll.map|cm.map|cm-super-t1.map|cm-super-t2a.map|cm-super-t2b.map|cm-super-t2c.map|cm-super-ts1.map|cm-super-x2.map|cmtext-bsr-interpolated.map|cyrillic.map|dvng.map|esint.map|ethiop.map|eurosym.map|hfbright.map|iby.map|latxfont.map|lxfonts.map|manfnt.map|mflogo.map|mongolian.map|musix.map|pigpen.map|plother.map|pltext.map|rsfs.map|semaf.map|stmaryrd.map|symbols.map|tipa.map|trajan.map|vnrother.map|vnrtext.map|wasy.map|xypic.map|yhmath.map'`; then + %{_bindir}/updmap-sys --nomkmap --disable MixedMap=$shortfile >/dev/null 2>&1 || : + else + %{_bindir}/updmap-sys --nomkmap --disable Map=$shortfile >/dev/null 2>&1 || : + fi +done <<< "$list" +%{_bindir}/updmap-sys --quiet --nomkmap >/dev/null || : + +%transfiletriggerin -n %{shortname}-kpathsea -P 2000000 -- %{_texdir}/fmtutil.cnf.d/ +%{_sbindir}/generate-fmtutilcnf %{_texdir} + +%transfiletriggerpostun -n %{shortname}-kpathsea -P 2000000 -- %{_texdir}/fmtutil.cnf.d/ +%{_sbindir}/generate-fmtutilcnf %{_texdir} + +%files +%{_texdir}/licenses/ +%{_texdir}/texlive.tlpdb +%{_texdir}/tlpkg/texlive.tlpdb +%{_rpmmacrodir}/macros.texlive +# Mostly we own directories. +%dir %{_sysconfdir}/%{shortname} +%dir %{_sysconfdir}/%{shortname}/dvips +%dir %{_sysconfdir}/%{shortname}/dvips/config +%dir %{_sysconfdir}/%{shortname}/tex +%dir %{_sysconfdir}/%{shortname}/tex/generic +%dir %{_sysconfdir}/%{shortname}/tex/generic/config +%dir %{_sysconfdir}/%{shortname}/web2c +%dir %{_texdir} +%dir %{_texdir}/texmf-dist +%dir %{_texdir}/texmf-dist/bibtex/ +%dir %{_texdir}/texmf-dist/bibtex/csf +%dir %{_texdir}/texmf-dist/bibtex/csf/base +%dir %{_texdir}/texmf-dist/doc +%dir %{_texdir}/texmf-dist/doc/info +%dir %{_texdir}/texmf-dist/doc/man +%dir %{_texdir}/texmf-dist/doc/man/man1 +%dir %{_texdir}/texmf-dist/doc/man/man5 +%dir %{_texdir}/texmf-dist/dvips +%dir %{_texdir}/texmf-dist/dvips/config +%dir %{_texdir}/texmf-dist/fonts +%dir %{_texdir}/texmf-dist/fonts/cmap +%dir %{_texdir}/texmf-dist/fonts/enc +%dir %{_texdir}/texmf-dist/fonts/enc/dvips +%dir %{_texdir}/texmf-dist/fonts/map +%dir %{_texdir}/texmf-dist/fonts/map/dvips +%dir %{_texdir}/texmf-dist/fonts/map/glyphlist +%dir %{_texdir}/texmf-dist/fonts/sfd +%dir %{_texdir}/texmf-dist/scripts +%dir %{_texdir}/texmf-dist/scripts/texlive +%dir %{_texdir}/texmf-dist/source +%dir %{_texdir}/texmf-dist/source/fonts +%dir %{_texdir}/texmf-dist/source/fonts/zhmetrics +%dir %{_texdir}/texmf-dist/texconfig +%dir %{_texdir}/texmf-dist/web2c +%dir %{_texmf_var} +%{_texdir}/texmf-var +%{_texdir}/texmf-local/ +%{_datadir}/texmf +%ghost %{_datadir}/texmf.rpmmoved + +%files -n %{shortname}-a2ping +%license gpl.txt +%{_bindir}/a2ping +%{_texdir}/texmf-dist/scripts/a2ping/ +%{_mandir}/man1/a2ping.1* +%doc %{_texdir}/texmf-dist/doc/support/a2ping/ + +%files -n %{shortname}-accfonts +%license gpl.txt +%{_bindir}/mkt1font +%{_bindir}/vpl2ovp +%{_bindir}/vpl2vpl +%{_texdir}/texmf-dist/scripts/accfonts/ +%{_texdir}/texmf-dist/tex/latex/accfonts/ +%doc %{_texdir}/texmf-dist/doc/fonts/accfonts/ + +%files -n %{shortname}-adhocfilelist +%license lppl1.txt +%{_bindir}/adhocfilelist +%{_texdir}/texmf-dist/scripts/adhocfilelist/ +%{_texdir}/texmf-dist/tex/support/adhocfilelist/ +%doc %{_texdir}/texmf-dist/doc/support/adhocfilelist/ + +%files -n %{shortname}-afm2pl +%license lppl1.txt +%{_bindir}/afm2pl +%{_mandir}/man1/afm2pl.1* +%{_texdir}/texmf-dist/fonts/enc/dvips/afm2pl/ +%{_texdir}/texmf-dist/fonts/lig/afm2pl/ +%{_texdir}/texmf-dist/tex/fontinst/afm2pl/ + +%files -n %{shortname}-aleph +%license gpl.txt +%{_bindir}/aleph +%{_bindir}/lamed +%{_mandir}/man1/aleph.1* +%{_mandir}/man1/lamed.1* +%{fmtutil_cnf_d}/aleph +%doc %{_texdir}/texmf-dist/doc/aleph/ + +%files -n %{shortname}-amstex +%license lppl1.txt +%{_bindir}/amstex +%{_mandir}/man1/amstex.1* +%{_texdir}/texmf-dist/tex/amstex/base/ +%{_texdir}/texmf-dist/tex/amstex/config/ +%{fmtutil_cnf_d}/amstex +%doc %{_texdir}/texmf-dist/doc/amstex/base/ + +%files -n %{shortname}-arara +%license bsd.txt +%{_bindir}/arara +%{_texdir}/texmf-dist/scripts/arara/ +%doc %{_texdir}/texmf-dist/doc/support/arara/ + +%files -n %{shortname}-authorindex +%license lppl1.txt +%{_bindir}/authorindex +%{_texdir}/texmf-dist/scripts/authorindex/ +%{_texdir}/texmf-dist/tex/latex/authorindex/ +%doc %{_texdir}/texmf-dist/doc/latex/authorindex/ + +%files -n %{shortname}-autosp +%license gpl2.txt +%{_bindir}/autosp +%{_bindir}/tex2aspc +%{_mandir}/man1/autosp.1* +%{_mandir}/man1/tex2aspc.1* +%doc %{_texdir}/texmf-dist/doc/generic/autosp/ + +%files -n %{shortname}-axodraw2 +%license gpl3.txt +%{_bindir}/axohelp +%{_mandir}/man1/axohelp.1* +%{_texdir}/texmf-dist/tex/latex/axodraw2/ +%doc %{_texdir}/texmf-dist/doc/latex/axodraw2/ + +%files -n %{shortname}-bib2gls +%license gpl3.txt +%{_bindir}/bib2gls +%{_bindir}/convertgls2bib +%{_texdir}/texmf-dist/scripts/bib2gls/ +%doc %{_texdir}/texmf-dist/doc/support/bib2gls/ + +%files -n %{shortname}-bibexport +%license lppl1.3.txt +%{_bindir}/bibexport +%{_bindir}/bibexport.sh +%{_texdir}/texmf-dist/bibtex/bst/bibexport/ +%{_texdir}/texmf-dist/scripts/bibexport/ +%doc %{_texdir}/texmf-dist/doc/bibtex/bibexport/ + +%files -n %{shortname}-bibtex +%license knuth.txt +%{_bindir}/bibtex +%{_mandir}/man1/bibtex.1* +%{_texdir}/texmf-dist/bibtex/bib/base/xampl.bib +%{_texdir}/texmf-dist/bibtex/bst/base/abbrv.bst +%{_texdir}/texmf-dist/bibtex/bst/base/acm.bst +%{_texdir}/texmf-dist/bibtex/bst/base/alpha.bst +%{_texdir}/texmf-dist/bibtex/bst/base/apalike.bst +%{_texdir}/texmf-dist/bibtex/bst/base/ieeetr.bst +%{_texdir}/texmf-dist/bibtex/bst/base/plain.bst +%{_texdir}/texmf-dist/bibtex/bst/base/siam.bst +%{_texdir}/texmf-dist/bibtex/bst/base/unsrt.bst +%doc %{_texdir}/texmf-dist/doc/bibtex/base/README +%doc %{_texdir}/texmf-dist/doc/bibtex/base/btxbst.doc +%doc %{_texdir}/texmf-dist/doc/bibtex/base/btxdoc.bib +%doc %{_texdir}/texmf-dist/doc/bibtex/base/btxdoc.pdf +%doc %{_texdir}/texmf-dist/doc/bibtex/base/btxdoc.tex +%doc %{_texdir}/texmf-dist/doc/bibtex/base/btxhak.pdf +%doc %{_texdir}/texmf-dist/doc/bibtex/base/btxhak.tex +%{_texdir}/texmf-dist/tex/generic/bibtex/apalike.sty +%{_texdir}/texmf-dist/tex/generic/bibtex/apalike.tex + +%files -n %{shortname}-bibtexu +%license lppl1.txt +%{_bindir}/bibtexu +%doc %{_texdir}/texmf-dist/doc/bibtexu/ +%{_mandir}/man1/bibtexu.1* + +%files -n %{shortname}-bibtex8 +%license gpl.txt +%{_bindir}/bibtex8 +%{_texdir}/texmf-dist/bibtex/csf/base/88591lat.csf +%{_texdir}/texmf-dist/bibtex/csf/base/88591sca.csf +%{_texdir}/texmf-dist/bibtex/csf/base/README.TEXLIVE +%{_texdir}/texmf-dist/bibtex/csf/base/ascii.csf +%{_texdir}/texmf-dist/bibtex/csf/base/cp437lat.csf +%{_texdir}/texmf-dist/bibtex/csf/base/cp850lat.csf +%{_texdir}/texmf-dist/bibtex/csf/base/cp850sca.csf +%{_texdir}/texmf-dist/bibtex/csf/base/cp866rus.csf +%{_texdir}/texmf-dist/bibtex/csf/base/csfile.txt +%{_texdir}/texmf-dist/bibtex/csf/polish-csf/88592pl.csf +%{_texdir}/texmf-dist/bibtex/csf/polish-csf/cp1250pl.csf +%{_texdir}/texmf-dist/bibtex/csf/polish-csf/cp852pl.csf +%{_texdir}/texmf-dist/bibtex/csf/polish-csf/iso8859-7.csf +%doc %{_texdir}/texmf-dist/doc/bibtex8/ +%{_mandir}/man1/bibtex8.1* + +%files -n %{shortname}-bundledoc +%license lppl1.txt +%{_bindir}/arlatex +%{_bindir}/bundledoc +%{_mandir}/man1/arlatex.1* +%{_mandir}/man1/bundledoc.1* +%{_texdir}/texmf-dist/scripts/bundledoc/ +%{_texdir}/texmf-dist/tex/latex/bundledoc/ +%doc %{_texdir}/texmf-dist/doc/support/bundledoc/ + +%files -n %{shortname}-cachepic +%license lppl1.3.txt +%{_bindir}/cachepic +%{_texdir}/texmf-dist/scripts/cachepic/ +%{_texdir}/texmf-dist/tex/latex/cachepic/ +%doc %{_texdir}/texmf-dist/doc/latex/cachepic/ + +%files -n %{shortname}-checkcites +%license lppl1.3.txt +%{_bindir}/checkcites +%{_texdir}/texmf-dist/scripts/checkcites/ +%doc %{_texdir}/texmf-dist/doc/support/checkcites/ + +%files -n %{shortname}-checklistings +%license lppl1.2.txt +%{_bindir}/checklistings +%{_texdir}/texmf-dist/scripts/checklistings/ +%{_texdir}/texmf-dist/tex/latex/checklistings/ +%doc %{_texdir}/texmf-dist/doc/latex/checklistings/ + +%files -n %{shortname}-chktex +%license gpl.txt +%{_bindir}/chktex +%{_bindir}/chkweb +%{_bindir}/deweb +%{_mandir}/man1/chktex.1* +%{_mandir}/man1/chkweb.1* +%{_mandir}/man1/deweb.1* +%{_texdir}/texmf-dist/chktex/ +%{_texdir}/texmf-dist/scripts/chktex/ +%doc %{_texdir}/texmf-dist/doc/chktex/ + +%if 0 +%files -n %{shortname}-cjk-gs-integrate +%license gpl3.txt +%{_bindir}/cjk-gs-integrate +%{_texdir}/texmf-dist/scripts/cjk-gs-integrate/ +%{_texdir}/texmf-dist/fonts/misc/cjk-gs-integrate/ +%doc %{_texdir}/texmf-dist/doc/fonts/cjk-gs-integrate/ +%endif + +%files -n %{shortname}-cjkutils +%license lppl1.txt +%{_bindir}/bg5+latex +%{_bindir}/bg5+pdflatex +%{_bindir}/bg5conv +%{_bindir}/bg5latex +%{_bindir}/bg5pdflatex +%{_bindir}/cef5conv +%{_bindir}/cef5latex +%{_bindir}/cef5pdflatex +%{_bindir}/cefconv +%{_bindir}/ceflatex +%{_bindir}/cefpdflatex +%{_bindir}/cefsconv +%{_bindir}/cefslatex +%{_bindir}/cefspdflatex +%{_bindir}/extconv +%{_bindir}/gbklatex +%{_bindir}/gbkpdflatex +%{_bindir}/hbf2gf +%{_bindir}/sjisconv +%{_bindir}/sjislatex +%{_bindir}/sjispdflatex +%{_mandir}/man1/bg5conv.1* +%{_mandir}/man1/cef5conv.1* +%{_mandir}/man1/cefconv.1* +%{_mandir}/man1/cefsconv.1* +%{_mandir}/man1/extconv.1* +%{_mandir}/man1/hbf2gf.1* +%{_mandir}/man1/sjisconv.1* +%{_texdir}/texmf-dist/hbf2gf/ + +%files -n %{shortname}-cluttex +%license gpl3.txt +%{_bindir}/cllualatex +%{_bindir}/cluttex +%{_bindir}/clxelatex +%{_texdir}/texmf-dist/scripts/cluttex/ +%doc %{_texdir}/texmf-dist/doc/support/cluttex/ + +%files -n %{shortname}-context +%{_bindir}/context +%{_bindir}/contextjit +%{_bindir}/luatools +%{_bindir}/mtxrun +%{_bindir}/mtxrunjit +%{_bindir}/texexec +%{_bindir}/texmfstart +%{_mandir}/man1/context.1* +%{_mandir}/man1/luatools.1* +%{_mandir}/man1/mtx-babel.1* +%{_mandir}/man1/mtx-base.1* +%{_mandir}/man1/mtx-bibtex.1* +%{_mandir}/man1/mtx-cache.1* +%{_mandir}/man1/mtx-chars.1* +%{_mandir}/man1/mtx-check.1* +%{_mandir}/man1/mtx-colors.1* +%{_mandir}/man1/mtx-context.1* +%{_mandir}/man1/mtx-dvi.1* +%{_mandir}/man1/mtx-epub.1* +%{_mandir}/man1/mtx-evohome.1* +%{_mandir}/man1/mtx-fcd.1* +%{_mandir}/man1/mtx-flac.1* +%{_mandir}/man1/mtx-fonts.1* +%{_mandir}/man1/mtx-grep.1* +%{_mandir}/man1/mtx-interface.1* +%{_mandir}/man1/mtx-metapost.1* +# %%{_mandir}/man1/mtx-metatex.1* +%{_mandir}/man1/mtx-modules.1* +%{_mandir}/man1/mtx-package.1* +# %%{_mandir}/man1/mtx-patterns.1* +%{_mandir}/man1/mtx-pdf.1* +%{_mandir}/man1/mtx-plain.1* +%{_mandir}/man1/mtx-profile.1* +%{_mandir}/man1/mtx-rsync.1* +%{_mandir}/man1/mtx-scite.1* +%{_mandir}/man1/mtx-server.1* +%{_mandir}/man1/mtx-texworks.1* +%{_mandir}/man1/mtx-timing.1* +%{_mandir}/man1/mtx-tools.1* +%{_mandir}/man1/mtx-unicode.1* +%{_mandir}/man1/mtx-unzip.1* +%{_mandir}/man1/mtx-update.1* +%{_mandir}/man1/mtx-watch.1* +%{_mandir}/man1/mtx-youless.1* +%{_mandir}/man1/mtxrun.1* +%{_mandir}/man1/texexec.1* +%{_mandir}/man1/texmfstart.1* +%{_texdir}/texmf-dist/bibtex/bst/context/ +%{_texdir}/texmf-dist/context/ +%{_texdir}/texmf-dist/fonts/afm/hoekwater/context/contnav.afm +%{_texdir}/texmf-dist/fonts/cid/fontforge/Adobe-CNS1-4.cidmap +%{_texdir}/texmf-dist/fonts/cid/fontforge/Adobe-GB1-4.cidmap +%{_texdir}/texmf-dist/fonts/cid/fontforge/Adobe-Identity-0.cidmap +%{_texdir}/texmf-dist/fonts/cid/fontforge/Adobe-Japan1-5.cidmap +%{_texdir}/texmf-dist/fonts/cid/fontforge/Adobe-Japan1-6.cidmap +%{_texdir}/texmf-dist/fonts/cid/fontforge/Adobe-Japan2-0.cidmap +%{_texdir}/texmf-dist/fonts/cid/fontforge/Adobe-Korea1-2.cidmap +%{_texdir}/texmf-dist/fonts/enc/dvips/context/ +# %%{_texdir}/texmf-dist/fonts/fea/context/ +%{_texdir}/texmf-dist/fonts/map/dvips/context/ +%{_texdir}/texmf-dist/fonts/map/luatex/context/ +%{_texdir}/texmf-dist/fonts/map/pdftex/context/ +%{_texdir}/texmf-dist/fonts/misc/xetex/fontmapping/context/ +%{_texdir}/texmf-dist/fonts/tfm/hoekwater/context/ +%{_texdir}/texmf-dist/fonts/type1/hoekwater/context/ +%{_texdir}/texmf-dist/metapost/context/ +%{_texdir}/texmf-dist/scripts/context/ +%{_texdir}/texmf-dist/tex/context/ +%{_texdir}/texmf-dist/tex/generic/context/ +%{_texdir}/texmf-dist/tex/latex/context/ +%{fmtutil_cnf_d}/context +%doc %{_texdir}/texmf-dist/doc/context/ + +%files -n %{shortname}-convbkmk +%{_bindir}/convbkmk +%{_texdir}/texmf-dist/scripts/convbkmk/ +%doc %{_texdir}/texmf-dist/doc/support/convbkmk/ + +%files -n %{shortname}-crossrefware +%license gpl.txt +%{_bindir}/bbl2bib +%{_bindir}/bibdoiadd +%{_bindir}/bibmradd +%{_bindir}/biburl2doi +%{_bindir}/bibzbladd +%{_bindir}/ltx2crossrefxml +%{_mandir}/man1/bbl2bib.1* +%{_mandir}/man1/bibdoiadd.1* +%{_mandir}/man1/bibmradd.1* +%{_mandir}/man1/biburl2doi.1* +%{_mandir}/man1/bibzbladd.1* +%{_mandir}/man1/ltx2crossrefxml.1* +%{_texdir}/texmf-dist/scripts/crossrefware/ +%{_texdir}/texmf-dist/tex/latex/crossrefware/ +%doc %{_texdir}/texmf-dist/doc/support/crossrefware/ + +%files -n %{shortname}-cslatex +%license gpl.txt +%{_bindir}/cslatex +%{_bindir}/pdfcslatex +%{_texdir}/texmf-dist/tex/cslatex/ +%{fmtutil_cnf_d}/cslatex + +%files -n %{shortname}-csplain +%{_bindir}/csplain +%{_bindir}/pdfcsplain +%{_texdir}/texmf-dist/tex/csplain/ +%{fmtutil_cnf_d}/csplain + +%files -n %{shortname}-ctan-o-mat +%license bsd.txt +%{_bindir}/ctan-o-mat +%{_mandir}/man1/ctan-o-mat.1* +%{_texdir}/texmf-dist/scripts/ctan-o-mat/ +%doc %{_texdir}/texmf-dist/doc/support/ctan-o-mat/ + +%files -n %{shortname}-ctanbib +%license lppl1.3.txt +%{_bindir}/ctanbib +%{_mandir}/man1/ctanbib.1* +%{_texdir}/texmf-dist/scripts/ctanbib/ +%doc %{_texdir}/texmf-dist/doc/support/ctanbib/ + +%files -n %{shortname}-ctanify +%license lppl1.3.txt +%{_bindir}/ctanify +%{_mandir}/man1/ctanify.1* +%{_texdir}/texmf-dist/scripts/ctanify/ +%doc %{_texdir}/texmf-dist/doc/latex/ctanify/ + +%files -n %{shortname}-ctanupload +%license gpl3.txt +%{_bindir}/ctanupload +%{_texdir}/texmf-dist/scripts/ctanupload/ +%doc %{_texdir}/texmf-dist/doc/support/ctanupload/ + +%files -n %{shortname}-ctie +%license gpl.txt +%{_bindir}/ctie +%{_mandir}/man1/ctie.1* + +%files -n %{shortname}-cweb +%license knuth.txt +%{_bindir}/ctangle +%{_bindir}/ctwill +%{_bindir}/ctwill-refsort +%{_bindir}/ctwill-twinx +%{_bindir}/cweave +%{_mandir}/man1/ctangle.1* +%{_mandir}/man1/ctwill.1* +%{_mandir}/man1/ctwill-refsort.1* +%{_mandir}/man1/ctwill-twinx.1* +%{_mandir}/man1/cweave.1* +%{_mandir}/man1/cweb.1* +%{_texdir}/texmf-dist/tex/plain/cweb/ +%doc %{_texdir}/texmf-dist/doc/plain/cweb/ + +%files -n %{shortname}-cyrillic +%license lppl1.3.txt +%{_bindir}/rubibtex +%{_bindir}/rumakeindex +%{_mandir}/man1/rubibtex.1* +%{_mandir}/man1/rumakeindex.1* +%{_texdir}/texmf-dist/tex/latex/cyrillic/ +%{_texdir}/texmf-dist/scripts/texlive/rubibtex.sh +%{_texdir}/texmf-dist/scripts/texlive/rumakeindex.sh +%doc %{_texdir}/texmf-dist/doc/latex/cyrillic/ + +%files -n %{shortname}-de-macro +%{_bindir}/de-macro +%{_texdir}/texmf-dist/scripts/de-macro/ +%doc %{_texdir}/texmf-dist/doc/support/de-macro/ + +%files -n %{shortname}-detex +%{_bindir}/detex +%{_mandir}/man1/detex.1* + +%files -n %{shortname}-diadia +%license lppl1.txt +%{_bindir}/diadia +%{_texdir}/texmf-dist/scripts/diadia/ +%{_texdir}/texmf-dist/tex/latex/diadia/ +%doc %{_texdir}/texmf-dist/doc/latex/diadia/ + +%files -n %{shortname}-dosepsbin +%{_bindir}/dosepsbin +%{_mandir}/man1/dosepsbin.1* +%{_texdir}/texmf-dist/scripts/dosepsbin/ +%doc %{_texdir}/texmf-dist/doc/support/dosepsbin/ + +%files -n %{shortname}-dtl +%license pd.txt +%{_bindir}/dt2dv +%{_bindir}/dv2dt +%{_mandir}/man1/dt2dv.1* +%{_mandir}/man1/dv2dt.1* + +%files -n %{shortname}-dtxgen +%license gpl.txt +%{_bindir}/dtxgen +%{_texdir}/texmf-dist/scripts/dtxgen/ +%doc %{_texdir}/texmf-dist/doc/support/dtxgen/ + +%files -n %{shortname}-dvi2tty +%license gpl.txt +%{_bindir}/disdvi +%{_bindir}/dvi2tty +%{_mandir}/man1/disdvi.1* +%{_mandir}/man1/dvi2tty.1* + +%files -n %{shortname}-dviasm +%license gpl3.txt +%{_bindir}/dviasm +%{_texdir}/texmf-dist/scripts/dviasm/ +%doc %{_texdir}/texmf-dist/doc/latex/dviasm/ + +%files -n %{shortname}-dvicopy +%license gpl.txt +%{_bindir}/dvicopy +%{_mandir}/man1/dvicopy.1* + +%files -n %{shortname}-dvidvi +%{_bindir}/dvidvi +%{_mandir}/man1/dvidvi.1* + +%files -n %{shortname}-dviinfox +%{_bindir}/dviinfox +%{_texdir}/texmf-dist/scripts/dviinfox/ +%doc %{_texdir}/texmf-dist/doc/latex/dviinfox/ + +%files -n %{shortname}-dviljk +%license gpl.txt +%{_bindir}/dvihp +%{_bindir}/dvilj +%{_bindir}/dvilj2p +%{_bindir}/dvilj4 +%{_bindir}/dvilj4l +%{_bindir}/dvilj6 +%{_mandir}/man1/dvihp.1* +%{_mandir}/man1/dvilj.1* +%{_mandir}/man1/dvilj2p.1* +%{_mandir}/man1/dvilj4.1* +%{_mandir}/man1/dvilj4l.1* +%{_mandir}/man1/dvilj6.1* + +%files -n %{shortname}-dviout-util +%{_bindir}/chkdvifont +%{_bindir}/dvispc +%{_mandir}/man1/chkdvifont.1* +%{_mandir}/man1/dvispc.1* + +%files -n %{shortname}-dvipdfmx +%license gpl.txt +%{_bindir}/dvipdfm +%{_bindir}/dvipdfmx +%{_bindir}/dvipdft +%{_bindir}/ebb +%{_bindir}/extractbb +%{_mandir}/man1/dvipdfm.1* +%{_mandir}/man1/dvipdfmx.1* +%{_mandir}/man1/dvipdft.1* +%{_mandir}/man1/ebb.1* +%{_mandir}/man1/extractbb.1* +%{_mandir}/man1/xdvipdfmx.1* +%{_texdir}/texmf-dist/dvipdfmx/ +%{_texdir}/texmf-dist/fonts/cmap/dvipdfmx/ +%{_texdir}/texmf-dist/fonts/map/dvipdfmx/ +%exclude %{_texdir}/texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ +%{_texdir}/tlpkg/tlpostcode/dvipdfmx.pl +%doc %{_texdir}/texmf-dist/doc/dvipdfm/ +%doc %{_texdir}/texmf-dist/doc/dvipdfmx/ + +%files -n %{shortname}-dvipng +%license lgpl2.1.txt +%{_bindir}/dvigif +%{_bindir}/dvipng +%{_mandir}/man1/dvigif.1* +%{_mandir}/man1/dvipng.1* +%{_infodir}/dvipng.info* +%doc %{_texdir}/texmf-dist/doc/dvipng/ + +%files -n %{shortname}-dvipos +%license lppl1.txt +%{_bindir}/dvipos +%{_mandir}/man1/dvipos.1* + +%files -n %{shortname}-dvips +%license gpl.txt +%{_bindir}/afm2tfm +%{_bindir}/dvips +%{_mandir}/man1/afm2tfm.1* +%{_mandir}/man1/dvips.1* +%{_infodir}/dvips.info* +%{_texdir}/texmf-dist/dvips/base/ +%{_texdir}/texmf-dist/dvips/config/alt-rule.pro +%{_texdir}/texmf-dist/dvips/config/canonex.cfg +%{_texdir}/texmf-dist/dvips/config/config.bakoma +%{_texdir}/texmf-dist/dvips/config/config.canonex +%{_texdir}/texmf-dist/dvips/config/config.cx +%{_texdir}/texmf-dist/dvips/config/config.deskjet +%{_texdir}/texmf-dist/dvips/config/config.dvired +%{_texdir}/texmf-dist/dvips/config/config.epson +%{_texdir}/texmf-dist/dvips/config/config.ibmvga +%{_texdir}/texmf-dist/dvips/config/config.ljfour +%{_texdir}/texmf-dist/dvips/config/config.luc +%{_texdir}/texmf-dist/dvips/config/config.mbn +%{_texdir}/texmf-dist/dvips/config/config.mga +%{_texdir}/texmf-dist/dvips/config/config.mirrorprint +%{_texdir}/texmf-dist/dvips/config/config.ot2 +%config(noreplace) %{_sysconfdir}/texlive/dvips/config/config.ps +%{_texdir}/texmf-dist/dvips/config/config.ps +%{_texdir}/texmf-dist/dvips/config/config.qms +%{_texdir}/texmf-dist/dvips/config/config.toshiba +%{_texdir}/texmf-dist/dvips/config/config.unms +%{_texdir}/texmf-dist/dvips/config/config.xyp +%{_texdir}/texmf-dist/dvips/config/cx.cfg +%{_texdir}/texmf-dist/dvips/config/deskjet.cfg +%{_texdir}/texmf-dist/dvips/config/dfaxhigh.cfg +%{_texdir}/texmf-dist/dvips/config/dvired.cfg +%{_texdir}/texmf-dist/dvips/config/epson.cfg +%{_texdir}/texmf-dist/dvips/config/ibmvga.cfg +%{_texdir}/texmf-dist/dvips/config/ljfour.cfg +%{_texdir}/texmf-dist/dvips/config/qms.cfg +%{_texdir}/texmf-dist/dvips/config/toshiba.cfg +%{_texdir}/texmf-dist/fonts/enc/dvips/base/ +%{_texdir}/texmf-dist/fonts/map/dvips/ +%{_texdir}/texmf-dist/tex/generic/dvips/ +%doc %{_texdir}/texmf-dist/doc/dvips/ + +%files -n %{shortname}-dvisvgm +%license gpl.txt +%{_bindir}/dvisvgm +%{_mandir}/man1/dvisvgm.1* + +%files -n %{shortname}-ebong +%license pd.txt +%{_bindir}/ebong +%{_texdir}/texmf-dist/scripts/ebong/ +%doc %{_texdir}/texmf-dist/doc/latex/ebong/ + +%files -n %{shortname}-eplain +%license gpl2.txt +%{_bindir}/eplain +%{_mandir}/man1/eplain.1* +%{_infodir}/eplain.info* +%{_texdir}/texmf-dist/tex/eplain/ +%{fmtutil_cnf_d}/eplain +%doc %{_texdir}/texmf-dist/doc/eplain/ + +%files -n %{shortname}-epspdf +%license gpl.txt +%{_bindir}/epspdf +%{_bindir}/epspdftk +%{_infodir}/epspdf.info* +%{_texdir}/texmf-dist/scripts/epspdf/ +%doc %{_texdir}/texmf-dist/doc/support/epspdf/ + +%files -n %{shortname}-epstopdf +%{_bindir}/epstopdf +%{_bindir}/repstopdf +%{_mandir}/man1/epstopdf.1* +%{_mandir}/man1/repstopdf.1* +%{_texdir}/texmf-dist/scripts/epstopdf/ +%doc %{_texdir}/texmf-dist/doc/support/epstopdf/ + +%files -n %{shortname}-exceltex +%license gpl.txt +%{_bindir}/exceltex +%{_texdir}/texmf-dist/scripts/exceltex/ +%{_texdir}/texmf-dist/tex/latex/exceltex/ +%doc %{_texdir}/texmf-dist/doc/latex/exceltex/ + +%files -n %{shortname}-fig4latex +%license gpl3.txt +%{_bindir}/fig4latex +%{_texdir}/texmf-dist/scripts/fig4latex/ +%doc %{_texdir}/texmf-dist/doc/support/fig4latex/ + +%files -n %{shortname}-findhyph +%license gpl.txt +%{_bindir}/findhyph +%{_mandir}/man1/findhyph.1* +%{_texdir}/texmf-dist/scripts/findhyph/ +%doc %{_texdir}/texmf-dist/doc/support/findhyph/ + +%files -n %{shortname}-fontinst +%license lppl1.txt +%{_bindir}/fontinst +%{_mandir}/man1/fontinst.1* +%{_texdir}/texmf-dist/scripts/texlive/fontinst.sh +%{_texdir}/texmf-dist/tex/fontinst/ +%{_texdir}/texmf-dist/tex/latex/fontinst/ +%doc %{_texdir}/texmf-dist/doc/fonts/fontinst/ + +%files -n %{shortname}-fontools +%license gpl2.txt +%{_bindir}/afm2afm +%{_bindir}/autoinst +%{_bindir}/ot2kpx +%{_mandir}/man1/afm2afm.1* +%{_mandir}/man1/autoinst.1* +%{_mandir}/man1/ot2kpx.1* +%{_texdir}/texmf-dist/fonts/enc/dvips/fontools/ +%{_texdir}/texmf-dist/scripts/fontools/ +%doc %{_texdir}/texmf-dist/doc/support/fontools/ + +%files -n %{shortname}-fontware +%license lppl1.txt +%{_bindir}/pltotf +%{_bindir}/tftopl +%{_bindir}/vftovp +%{_bindir}/vptovf +%{_mandir}/man1/pltotf.1* +%{_mandir}/man1/tftopl.1* +%{_mandir}/man1/vftovp.1* +%{_mandir}/man1/vptovf.1* + +%files -n %{shortname}-fragmaster +%license gpl.txt +%{_bindir}/fragmaster +%{_texdir}/texmf-dist/scripts/fragmaster/ +%doc %{_texdir}/texmf-dist/doc/support/fragmaster/ + +%files -n %{shortname}-getmap +%license lppl1.txt +%{_bindir}/getmapdl +%{_texdir}/texmf-dist/scripts/getmap/ +%{_texdir}/texmf-dist/tex/latex/getmap/ +%doc %{_texdir}/texmf-dist/doc/latex/getmap/ + +%files -n %{shortname}-glossaries +%license lppl1.3.txt +%{_bindir}/makeglossaries +%{_bindir}/makeglossaries-lite +%{_mandir}/man1/makeglossaries.1* +%{_mandir}/man1/makeglossaries-lite.1* +%{_texdir}/texmf-dist/scripts/glossaries/ +%{_texdir}/texmf-dist/tex/latex/glossaries/ +%doc %{_texdir}/texmf-dist/doc/latex/glossaries/ + +%files -n %{shortname}-glyphlist +%{_texdir}/texmf-dist/fonts/map/glyphlist/ + +%files -n %{shortname}-gregoriotex +%license gpl3.txt +%{_bindir}/gregorio +%{_texdir}/texmf-dist/scripts/gregoriotex/ +%{_texdir}/texmf-dist/tex/lualatex/gregoriotex/ +%{_texdir}/texmf-dist/tex/luatex/gregoriotex/ +%{_texdir}/texmf-dist/fonts/source/gregoriotex/ +%{_texdir}/texmf-dist/fonts/truetype/public/gregoriotex/ +%doc %{_texdir}/texmf-dist/doc/luatex/gregoriotex/ + +%files -n %{shortname}-gsftopk +%license gpl.txt +%{_bindir}/gsftopk +%{_mandir}/man1/gsftopk.1* +%{_texdir}/texmf-dist/dvips/gsftopk/ + +%files -n %{shortname}-installfont +%license lppl1.txt +%{_bindir}/installfont-tl +%{_texdir}/texmf-dist/scripts/installfont/ +%doc %{_texdir}/texmf-dist/doc/support/installfont/ + +%files -n %{shortname}-jadetex +%{_bindir}/jadetex +%{_bindir}/pdfjadetex +%{_mandir}/man1/jadetex.1* +%{_mandir}/man1/pdfjadetex.1* +%{_texdir}/texmf-dist/tex/jadetex/ +%{fmtutil_cnf_d}/jadetex +%doc %{_texdir}/texmf-dist/doc/otherformats/jadetex/ + +%files -n %{shortname}-jfmutil +%{_bindir}/jfmutil +%{_texdir}/texmf-dist/scripts/jfmutil/ +%doc %{_texdir}/texmf-dist/doc/fonts/jfmutil/ + +%files -n %{shortname}-kotex-utils +%license lppl1.txt +%{_bindir}/jamo-normalize +%{_bindir}/komkindex +%{_bindir}/ttf2kotexfont +%{_texdir}/texmf-dist/makeindex/kotex-utils/ +%{_texdir}/texmf-dist/scripts/kotex-utils/ +%doc %{_texdir}/texmf-dist/doc/latex/kotex-utils/ + +%files -n %{shortname}-kpathsea +%license lgpl2.1.txt +%{_bindir}/kpseaccess +%{_bindir}/kpsereadlink +%{_bindir}/kpsestat +%{_bindir}/kpsewhich +%{_bindir}/mkocp +%{_bindir}/mkofm +%{_bindir}/mktexfmt +%{_bindir}/mktexlsr +%{_bindir}/mktexmf +%{_bindir}/mktexpk +%{_bindir}/mktextfm +%{_bindir}/texhash +%{_sbindir}/generate-fmtutilcnf +%{_mandir}/man1/kpseaccess.1* +%{_mandir}/man1/kpsereadlink.1* +%{_mandir}/man1/kpsestat.1* +%{_mandir}/man1/kpsewhich.1* +%{_mandir}/man1/mkocp.1* +%{_mandir}/man1/mkofm.1* +%{_mandir}/man1/mktexfmt.1* +%{_mandir}/man1/mktexlsr.1* +%{_mandir}/man1/mktexmf.1* +%{_mandir}/man1/mktexpk.1* +%{_mandir}/man1/mktextfm.1* +%{_mandir}/man1/texhash.1* +%{_infodir}/kpathsea.info* +%{_infodir}/tds.info* +%{_infodir}/web2c.info* +%{_texdir}/texmf-dist/web2c/amiga-pl.tcx +%{_texdir}/texmf-dist/web2c/cp1250cs.tcx +%{_texdir}/texmf-dist/web2c/cp1250pl.tcx +%{_texdir}/texmf-dist/web2c/cp1250t1.tcx +%{_texdir}/texmf-dist/web2c/cp227.tcx +%{_texdir}/texmf-dist/web2c/cp852-cs.tcx +%{_texdir}/texmf-dist/web2c/cp852-pl.tcx +%{_texdir}/texmf-dist/web2c/cp8bit.tcx +%{_texdir}/texmf-dist/web2c/empty.tcx +%config(noreplace) %{_sysconfdir}/texlive/web2c/fmtutil.cnf +%ghost %{_texdir}/texmf-dist/web2c/fmtutil.cnf +%{_texdir}/texmf-dist/web2c/il1-t1.tcx +%{_texdir}/texmf-dist/web2c/il2-cs.tcx +%{_texdir}/texmf-dist/web2c/il2-pl.tcx +%{_texdir}/texmf-dist/web2c/il2-t1.tcx +%{_texdir}/texmf-dist/web2c/kam-cs.tcx +%{_texdir}/texmf-dist/web2c/kam-t1.tcx +%{_texdir}/texmf-dist/web2c/macce-pl.tcx +%{_texdir}/texmf-dist/web2c/macce-t1.tcx +%{_texdir}/texmf-dist/web2c/maz-pl.tcx +%config(noreplace) %{_sysconfdir}/texlive/web2c/mktex.cnf +%{_texdir}/texmf-dist/web2c/mktex.cnf +%{_texdir}/texmf-dist/web2c/mktex.opt +%{_texdir}/texmf-dist/web2c/mktexdir +%{_texdir}/texmf-dist/web2c/mktexdir.opt +%{_texdir}/texmf-dist/web2c/mktexnam +%{_texdir}/texmf-dist/web2c/mktexnam.opt +%{_texdir}/texmf-dist/web2c/mktexupd +%{_texdir}/texmf-dist/web2c/natural.tcx +%{_texdir}/texmf-dist/web2c/tcvn-t5.tcx +%config(noreplace) %{_sysconfdir}/texlive/web2c/texmf.cnf +%{_texdir}/texmf-dist/web2c/texmf.cnf +%{_texdir}/texmf-dist/web2c/viscii-t5.tcx +%dir %{fmtutil_cnf_d} +%doc %{_texdir}/texmf-dist/doc/kpathsea/ +%doc %{_texdir}/texmf-dist/doc/web2c/ + +%files -n %{shortname}-l3build +%license lppl1.3.txt +%{_bindir}/l3build +%{_mandir}/man1/l3build.1* +%{_texdir}/texmf-dist/scripts/l3build/ +%{_texdir}/texmf-dist/tex/latex/l3build/ +%doc %{_texdir}/texmf-dist/doc/latex/l3build/ + +%files -n %{shortname}-lacheck +%license gpl.txt +%{_bindir}/lacheck +%{_mandir}/man1/lacheck.1* + +%files -n %{shortname}-latex +%license lppl1.3.txt +%{_bindir}/dvilualatex +%{_bindir}/latex +%{_bindir}/lualatex +%{_bindir}/pdflatex +%{_mandir}/man1/latex.1* +%{_mandir}/man1/pdflatex.1* +%{_texdir}/texmf-dist/makeindex/latex/ +%{_texdir}/texmf-dist/tex/latex/base/ +%{fmtutil_cnf_d}/latex-bin +%doc %{_texdir}/texmf-dist/doc/latex/base/ + +%files -n %{shortname}-latex-git-log +%license gpl3.txt +%{_bindir}/latex-git-log +%{_mandir}/man1/latex-git-log.1* +%{_texdir}/texmf-dist/scripts/latex-git-log/ +%doc %{_texdir}/texmf-dist/doc/support/latex-git-log/ + +%files -n %{shortname}-latex-papersize +%license apache2.txt +%{_bindir}/latex-papersize +%{_texdir}/texmf-dist/scripts/latex-papersize +%doc %{_texdir}/texmf-dist/doc/support/latex-papersize/ + +%files -n %{shortname}-latex2man +%license lppl1.txt +%{_bindir}/latex2man +%{_mandir}/man1/latex2man.1* +%{_infodir}/latex2man.info* +%{_texdir}/texmf-dist/scripts/latex2man/ +%{_texdir}/texmf-dist/tex/latex/latex2man/ +%doc %{_texdir}/texmf-dist/doc/support/latex2man/ + +%files -n %{shortname}-latex2nemeth +%license gpl3.txt +%{_bindir}/latex2nemeth +%{_texdir}/texmf-dist/scripts/latex2nemeth +%doc %{_texdir}/texmf-dist/doc/support/latex2nemeth + +%files -n %{shortname}-latexdiff +%license gpl3.txt +%{_bindir}/latexdiff +%{_bindir}/latexdiff-vc +%{_bindir}/latexrevise +%{_mandir}/man1/latexdiff-vc.1* +%{_mandir}/man1/latexdiff.1* +%{_mandir}/man1/latexrevise.1* +%{_texdir}/texmf-dist/scripts/latexdiff/ +%doc %{_texdir}/texmf-dist/doc/support/latexdiff/ + +%files -n %{shortname}-latexfileversion +%license lppl1.txt +%{_bindir}/latexfileversion +%{_texdir}/texmf-dist/scripts/latexfileversion/ +%doc %{_texdir}/texmf-dist/doc/support/latexfileversion/ + +%files -n %{shortname}-latexpand +%license bsd.txt +%{_bindir}/latexpand +%{_texdir}/texmf-dist/scripts/latexpand/ +%doc %{_texdir}/texmf-dist/doc/support/latexpand/ + +%files -n %{shortname}-latexindent +%license gpl3.txt +%{_bindir}/latexindent +%{_texdir}/texmf-dist/scripts/latexindent/ +%doc %{_texdir}/texmf-dist/doc/support/latexindent/ + +%files -n %{shortname}-lcdftypetools +%license gpl.txt +%{_bindir}/cfftot1 +%{_bindir}/mmafm +%{_bindir}/mmpfb +%{_bindir}/otfinfo +%{_bindir}/otftotfm +%{_bindir}/t1dotlessj +%{_bindir}/t1lint +%{_bindir}/t1rawafm +%{_bindir}/t1reencode +%{_bindir}/t1testpage +%{_bindir}/ttftotype42 +%{_mandir}/man1/cfftot1.1* +%{_mandir}/man1/mmafm.1* +%{_mandir}/man1/mmpfb.1* +%{_mandir}/man1/otfinfo.1* +%{_mandir}/man1/otftotfm.1* +%{_mandir}/man1/t1dotlessj.1* +%{_mandir}/man1/t1lint.1* +%{_mandir}/man1/t1rawafm.1* +%{_mandir}/man1/t1reencode.1* +%{_mandir}/man1/t1testpage.1* +%{_mandir}/man1/ttftotype42.1* + +%files -n %{shortname}-lib +%{_libdir}/*.so.* +%dir %{_texdir}/texmf-config +%dir %{_texdir}/texmf-config/web2c +%{_texdir}/texmf-config/web2c/updmap.cfg +%attr(0644, root, root) %verify(not md5 size mtime) %ghost %{_texdir}/texmf-config/ls-R + +%files -n %{shortname}-lib-devel +%dir %{_includedir}/kpathsea +%{_includedir}/kpathsea/* +%{_includedir}/synctex/ +%{_includedir}/texlua53/ +%ifnarch aarch64 %{mips} %{power64} s390 s390x x86_64 +%{_includedir}/texluajit/ +%endif +%{_libdir}/*.so +%{_libdir}/pkgconfig/*.pc + +%files -n %{shortname}-lilyglyphs +%license lppl1.3.txt +%{_bindir}/lily-glyph-commands +%{_bindir}/lily-image-commands +%{_bindir}/lily-rebuild-pdfs +%{_datadir}/fonts/lilyglyphs +%{_texdir}/texmf-dist/fonts/opentype/public/lilyglyphs/ +%{_texdir}/texmf-dist/scripts/lilyglyphs/ +%{_texdir}/texmf-dist/tex/lualatex/lilyglyphs/ +%doc %{_texdir}/texmf-dist/doc/lualatex/lilyglyphs/ + +%files -n %{shortname}-listbib +%license gpl.txt +%{_bindir}/listbib +%{_texdir}/texmf-dist/bibtex/bst/listbib/ +%{_texdir}/texmf-dist/scripts/listbib/ +%{_texdir}/texmf-dist/tex/latex/listbib/ +%doc %{_texdir}/texmf-dist/doc/latex/listbib/ + +%files -n %{shortname}-listings-ext +%license lppl1.2.txt +%{_bindir}/listings-ext.sh +%{_texdir}/texmf-dist/scripts/listings-ext/ +%{_texdir}/texmf-dist/tex/latex/listings-ext/ +%doc %{_texdir}/texmf-dist/doc/latex/listings-ext/ + +%files -n %{shortname}-lollipop +%license gpl3.txt +%{_bindir}/lollipop +%{_texdir}/texmf-dist/tex/lollipop/ +%{fmtutil_cnf_d}/lollipop +%doc %{_texdir}/texmf-dist/doc/otherformats/lollipop/ + +%files -n %{shortname}-ltxfileinfo +%license gpl.txt +%{_bindir}/ltxfileinfo +%{_texdir}/texmf-dist/scripts/ltxfileinfo/ +%doc %{_texdir}/texmf-dist/doc/support/ltxfileinfo/ + +%files -n %{shortname}-ltximg +%license gpl2.txt +%{_bindir}/ltximg +%{_texdir}/texmf-dist/scripts/ltximg/ +%doc %{_texdir}/texmf-dist/doc/support/ltximg/ + +%files -n %{shortname}-lua2dox +%license lppl1.3.txt +%{_bindir}/lua2dox_filter +%{_texdir}/texmf-dist/scripts/lua2dox/ +%doc %{_texdir}/texmf-dist/doc/support/lua2dox/ + +%files -n %{shortname}-luaotfload +%license gpl2.txt +%{_bindir}/luaotfload-tool +%{_mandir}/man1/luaotfload-tool.1* +%{_mandir}/man5/luaotfload.conf.5* +%{_texdir}/texmf-dist/scripts/luaotfload/ +%{_texdir}/texmf-dist/tex/luatex/luaotfload/ +%doc %{_texdir}/texmf-dist/doc/luatex/luaotfload/ + +%files -n %{shortname}-luatex +%license gpl2.txt +%{_bindir}/dviluatex +%{_bindir}/luacsplain +%ifnarch aarch64 %{mips} %{power64} s390 s390x x86_64 +%{_bindir}/luajittex +%{_bindir}/texluajit +%{_bindir}/texluajitc +%endif +%{_bindir}/luatex +%{_bindir}/texlua +%{_bindir}/texluac +%{_mandir}/man1/luatex.1* +%{_mandir}/man1/texlua.1* +%{_mandir}/man1/texluac.1* +%{_texdir}/texmf-dist/tex/generic/config/luatex-unicode-letters.tex +%{_texdir}/texmf-dist/tex/generic/config/luatexiniconfig.tex +%{_texdir}/texmf-dist/web2c/texmfcnf.lua +%{fmtutil_cnf_d}/luatex +%doc %{_texdir}/texmf-dist/doc/luatex/base/ + +%files -n %{shortname}-lwarp +%license lppl1.3.txt +%{_bindir}/lwarpmk +%{_texdir}/texmf-dist/scripts/lwarp +%{_texdir}/texmf-dist/tex/latex/lwarp +%doc %{_texdir}/texmf-dist/doc/latex/lwarp + +%files -n %{shortname}-lyluatex +%{_texdir}/texmf-dist/scripts/lyluatex/ +%{_texdir}/texmf-dist/tex/luatex/lyluatex/ +%doc %{_texdir}/texmf-dist/doc/support/lyluatex/ + +%files -n %{shortname}-make4ht +%license lppl1.3.txt +%{_bindir}/make4ht +%{_texdir}/texmf-dist/scripts/make4ht/ +%doc %{_texdir}/texmf-dist/doc/support/make4ht/ + +%files -n %{shortname}-makedtx +%license lppl1.txt +%{_bindir}/makedtx +%{_texdir}/texmf-dist/scripts/makedtx/ +%{_texdir}/texmf-dist/tex/latex/makedtx/ +%doc %{_texdir}/texmf-dist/doc/support/makedtx/ + +%files -n %{shortname}-makeindex +%{_bindir}/makeindex +%{_bindir}/mkindex +%{_mandir}/man1/makeindex.1* +%{_mandir}/man1/mkindex.1* +%{_texdir}/texmf-dist/makeindex/ +%{_texdir}/texmf-dist/tex/plain/makeindex/ +%doc %{_texdir}/texmf-dist/doc/support/makeindex/ + +%files -n %{shortname}-match_parens +%license gpl.txt +%{_bindir}/match_parens +%{_texdir}/texmf-dist/scripts/match_parens/ +%doc %{_texdir}/texmf-dist/doc/support/match_parens/ + +%files -n %{shortname}-mathspic +%license lppl1.txt +%{_bindir}/mathspic +%{_mandir}/man1/mathspic.1* +%{_texdir}/texmf-dist/scripts/mathspic/ +%{_texdir}/texmf-dist/tex/latex/mathspic/ +%doc %{_texdir}/texmf-dist/doc/latex/mathspic/ + +%files -n %{shortname}-metafont +%license knuth.txt +%{_bindir}/inimf +%{_bindir}/mf +%{_bindir}/mf-nowin +%{_mandir}/man1/inimf.1.* +%{_mandir}/man1/mf-nowin.1* +%{_mandir}/man1/mf.1* +%{_texdir}/texmf-dist/metafont/ +%{fmtutil_cnf_d}/metafont + +%files -n %{shortname}-metapost +%license lgpl2.1.txt +%{_bindir}/dvitomp +%{_bindir}/mfplain +%{_bindir}/mpost +%{_bindir}/r-mpost +%{_mandir}/man1/dvitomp.1* +%{_mandir}/man1/mpost.1* +%{_texdir}/texmf-dist/fonts/afm/metapost/ +%{_texdir}/texmf-dist/fonts/enc/dvips/metapost/ +%{_texdir}/texmf-dist/fonts/map/dvips/metapost/ +%{_texdir}/texmf-dist/fonts/tfm/metapost/ +%{_texdir}/texmf-dist/fonts/type1/metapost/ +%{_texdir}/texmf-dist/metapost/ +%{_texdir}/texmf-dist/tex/generic/metapost/ +%doc %{_texdir}/texmf-dist/doc/metapost/ + +%files -n %{shortname}-mex +%license pd.txt +%{_bindir}/mex +%{_bindir}/pdfmex +%{_bindir}/utf8mex +%{_texdir}/texmf-dist/tex/mex/ +%{fmtutil_cnf_d}/mex +%doc %{_texdir}/texmf-dist/doc/mex/ + +%files -n %{shortname}-mflua +%license gpl2.txt +%{_bindir}/mflua +%{_bindir}/mflua-nowin +%ifnarch aarch64 %{mips} %{power64} s390 s390x x86_64 +%{_bindir}/mfluajit +%{_bindir}/mfluajit-nowin +%endif +%{fmtutil_cnf_d}/mflua +%{_texdir}/texmf-dist/scripts/mflua/ + +%files -n %{shortname}-mfware +%license knuth.txt +%{_bindir}/gftodvi +%{_bindir}/gftopk +%{_bindir}/gftype +%{_bindir}/mft +%{_bindir}/pktogf +%{_bindir}/pktype +%{_mandir}/man1/gftodvi.1* +%{_mandir}/man1/gftopk.1* +%{_mandir}/man1/gftype.1* +%{_mandir}/man1/mft.1* +%{_mandir}/man1/pktogf.1* +%{_mandir}/man1/pktype.1* +%{_texdir}/texmf-dist/mft/ + +%files -n %{shortname}-mf2pt1 +%license lppl1.txt +%{_bindir}/mf2pt1 +%{_infodir}/mf2pt1.info* +%{_texdir}/texmf-dist/metapost/mf2pt1/ +%{_texdir}/texmf-dist/scripts/mf2pt1/ +%doc %{_texdir}/texmf-dist/doc/support/mf2pt1/ + +%files -n %{shortname}-mkgrkindex +%{_bindir}/mkgrkindex +%{_texdir}/texmf-dist/makeindex/mkgrkindex/ +%{_texdir}/texmf-dist/scripts/mkgrkindex/ +%doc %{_texdir}/texmf-dist/doc/support/mkgrkindex/ + +%files -n %{shortname}-mkjobtexmf +%{_bindir}/mkjobtexmf +%{_mandir}/man1/mkjobtexmf.1* +%{_texdir}/texmf-dist/scripts/mkjobtexmf/ +%doc %{_texdir}/texmf-dist/doc/generic/mkjobtexmf/ + +%files -n %{shortname}-mkpic +%license gpl.txt +%{_bindir}/mkpic +%{_texdir}/texmf-dist/scripts/mkpic/ +%doc %{_texdir}/texmf-dist/doc/support/mkpic/ + +%files -n %{shortname}-mltex +%license knuth.txt +%{_bindir}/mllatex +%{_bindir}/mltex +%{_texdir}/texmf-dist/tex/latex/mltex/ +%{_texdir}/texmf-dist/tex/mltex/ +%{fmtutil_cnf_d}/mltex +%doc %{_texdir}/texmf-dist/doc/latex/mltex/ + +%files -n %{shortname}-mptopdf +%license lppl1.txt +%{_bindir}/mptopdf +%{_mandir}/man1/mptopdf.1* +%{_texdir}/texmf-dist/scripts/context/perl/mptopdf.pl +%{_texdir}/texmf-dist/tex/context/base/mkii/supp-mis.mkii +%{_texdir}/texmf-dist/tex/context/base/mkii/supp-mpe.mkii +%{_texdir}/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +%{_texdir}/texmf-dist/tex/context/base/mkii/syst-tex.mkii +%{_texdir}/texmf-dist/tex/generic/context/mptopdf/ +%{fmtutil_cnf_d}/mptopdf +%doc %{_texdir}/texmf-dist/doc/context/scripts/mkii/mptopdf.man + +%files -n %{shortname}-multibibliography +%license lppl1.3.txt +%{_bindir}/multibibliography +%{_texdir}/texmf-dist/bibtex/bst/multibibliography/ +%{_texdir}/texmf-dist/scripts/multibibliography/ +%{_texdir}/texmf-dist/tex/latex/multibibliography/ +%doc %{_texdir}/texmf-dist/doc/latex/multibibliography/ + +%files -n %{shortname}-musixtex +%license gpl2.txt +%{_bindir}/musixflx +%{_bindir}/musixtex +%{_mandir}/man1/musixflx.1* +%{_mandir}/man1/musixtex.1* +%{_texdir}/texmf-dist/dvips/musixtex/ +%{_texdir}/texmf-dist/scripts/musixtex/ +%{_texdir}/texmf-dist/tex/generic/musixtex/ +%{_texdir}/texmf-dist/tex/latex/musixtex/ +%doc %{_texdir}/texmf-dist/doc/generic/musixtex/ + +%files -n %{shortname}-musixtnt +%license gpl2.txt +%{_bindir}/msxlint +%{_mandir}/man1/msxlint.1* +%{_texdir}/texmf-dist/tex/generic/musixtnt/ +%doc %{_texdir}/texmf-dist/doc/generic/musixtnt/ + +%files -n %{shortname}-m-tx +%license gpl.txt +%{_bindir}/m-tx +%{_bindir}/prepmx +%{_mandir}/man1/prepmx.1* +%{_texdir}/texmf-dist/scripts/m-tx/ +%{_texdir}/texmf-dist/tex/generic/m-tx/ +%{_texdir}/texmf-dist/tex/latex/m-tx/ +%doc %{_texdir}/texmf-dist/doc/generic/m-tx/ + +%files -n %{shortname}-oberdiek +%license lppl1.txt +%{_texdir}/texmf-dist/bibtex/bib/oberdiek/ +%{_texdir}/texmf-dist/scripts/oberdiek/ +%{_texdir}/texmf-dist/tex/generic/oberdiek/ +%{_texdir}/texmf-dist/tex/latex/oberdiek/ +%doc %{_texdir}/texmf-dist/doc/latex/oberdiek/ + +%files -n %{shortname}-omegaware +%license lppl1.txt +%{_bindir}/odvicopy +%{_bindir}/odvitype +%{_bindir}/ofm2opl +%{_bindir}/omfonts +%{_bindir}/opl2ofm +%{_bindir}/otangle +%{_bindir}/otp2ocp +%{_bindir}/outocp +%{_bindir}/ovf2ovp +%{_bindir}/ovp2ovf +%{_bindir}/wofm2opl +%{_bindir}/wopl2ofm +%{_bindir}/wovf2ovp +%{_mandir}/man1/odvicopy.1* +%{_mandir}/man1/odvitype.1* +%{_mandir}/man1/ofm2opl.1* +%{_mandir}/man1/opl2ofm.1* +%{_mandir}/man1/otangle.1* +%{_mandir}/man1/otp2ocp.1* +%{_mandir}/man1/outocp.1* +%{_mandir}/man1/ovf2ovp.1* +%{_mandir}/man1/ovp2ovf.1* + +%files -n %{shortname}-patgen +%license knuth.txt +%{_bindir}/patgen +%{_mandir}/man1/patgen.1* + +%files -n %{shortname}-pax +%{_bindir}/pdfannotextractor +%{_texdir}/texmf-dist/scripts/pax/ +%{_texdir}/texmf-dist/tex/latex/pax/ +%doc %{_texdir}/texmf-dist/doc/latex/pax/ + +%files -n %{shortname}-pdfbook2 +%license gpl3.txt +%{_bindir}/pdfbook2 +%{_mandir}/man1/pdfbook2.1* +%{_texdir}/texmf-dist/scripts/pdfbook2/ +%doc %{_texdir}/texmf-dist/doc/support/pdfbook2/ + +%files -n %{shortname}-pdfcrop +%license lppl1.txt +%{_bindir}/pdfcrop +%{_bindir}/rpdfcrop +%{_texdir}/texmf-dist/scripts/pdfcrop/ +%doc %{_texdir}/texmf-dist/doc/support/pdfcrop/ + +%files -n %{shortname}-pdfjam +%license gpl2.txt +%{_bindir}/pdf180 +%{_bindir}/pdf270 +%{_bindir}/pdf90 +%{_bindir}/pdfbook +%{_bindir}/pdfflip +%{_bindir}/pdfjam +%{_bindir}/pdfjam-pocketmod +%{_bindir}/pdfjam-slides3up +%{_bindir}/pdfjam-slides6up +%{_bindir}/pdfjoin +%{_bindir}/pdfnup +%{_bindir}/pdfpun +%{_mandir}/man1/pdf180.1* +%{_mandir}/man1/pdf270.1* +%{_mandir}/man1/pdf90.1* +%{_mandir}/man1/pdfbook.1* +%{_mandir}/man1/pdfflip.1* +%{_mandir}/man1/pdfjam-pocketmod.1* +%{_mandir}/man1/pdfjam-slides3up.1* +%{_mandir}/man1/pdfjam-slides6up.1* +%{_mandir}/man1/pdfjam.1* +%{_mandir}/man1/pdfjoin.1* +%{_mandir}/man1/pdfnup.1* +%{_mandir}/man1/pdfpun.1* +%{_texdir}/texmf-dist/scripts/pdfjam/ +%doc %{_texdir}/texmf-dist/doc/support/pdfjam/ + +%files -n %{shortname}-pdflatexpicscale +%license lppl.txt +%{_bindir}/pdflatexpicscale +%{_texdir}/texmf-dist/scripts/pdflatexpicscale +%doc %{_texdir}/texmf-dist/doc/support/pdflatexpicscale + +%files -n %{shortname}-pdftex +%license gpl.txt +%{_bindir}/etex +%{_bindir}/pdfetex +%{_bindir}/pdftex +%{_bindir}/simpdftex +%{_mandir}/man1/pdfetex.1* +%{_mandir}/man1/pdftex.1* +%{_texdir}/texmf-dist/fonts/map/dvips/dummy-space/dummy-space.map +%{_texdir}/texmf-dist/fonts/tfm/public/pdftex/ +%{_texdir}/texmf-dist/fonts/type1/public/pdftex/ +%{_texdir}/texmf-dist/scripts/simpdftex/simpdftex +%{_texdir}/texmf-dist/tex/generic/config/pdftex-dvi.tex +%{_texdir}/texmf-dist/tex/generic/pdftex/ +%{fmtutil_cnf_d}/pdftex +%doc %{_texdir}/texmf-dist/doc/pdftex/ + +%files -n %{shortname}-pdftex-quiet +%license gpl3.txt +%{_bindir}/pdftex-quiet +%{_texdir}/texmf-dist/scripts/pdftex-quiet/ +%doc %{_texdir}/texmf-dist/doc/support/pdftex-quiet/ + +%files -n %{shortname}-pdftools +%license pd.txt +%{_bindir}/e2pall +%{_bindir}/pdfatfi +%{_bindir}/pdfclose +%{_bindir}/pdfopen +%{_bindir}/pdftosrc +%{_mandir}/man1/e2pall.1* +%{_mandir}/man1/pdfclose.1* +%{_mandir}/man1/pdfopen.1* +%{_mandir}/man1/pdftosrc.1* +%{_texdir}/texmf-dist/scripts/texlive/e2pall.pl + +%files -n %{shortname}-pdfxup +%license lppl1.3.txt +%{_bindir}/pdfxup +%{_mandir}/man1/pdfxup.1* +%{_texdir}/texmf-dist/scripts/pdfxup/ +%doc %{_texdir}/texmf-dist/doc/support/pdfxup/ + +%files -n %{shortname}-pedigree-perl +%license gpl2.txt +%{_bindir}/pedigree +%{_mandir}/man1/pedigree.1* +%{_texdir}/texmf-dist/scripts/pedigree-perl/ +%doc %{_texdir}/texmf-dist/doc/support/pedigree-perl/ + +%files -n %{shortname}-perltex +%license lppl1.txt +%{_bindir}/perltex +%{_mandir}/man1/perltex.1* +%{_texdir}/texmf-dist/scripts/perltex/ +%{_texdir}/texmf-dist/tex/latex/perltex/ +%doc %{_texdir}/texmf-dist/doc/latex/perltex/ + +%files -n %{shortname}-petri-nets +%license gpl.txt +%{_bindir}/pn2pdf +%{_texdir}/texmf-dist/scripts/petri-nets/ +%{_texdir}/texmf-dist/tex/generic/petri-nets/ +%doc %{_texdir}/texmf-dist/doc/generic/petri-nets/ + +%files -n %{shortname}-pfarrei +%license lppl1.3.txt +%{_bindir}/a5toa4 +%{_bindir}/pfarrei +%{_texdir}/texmf-dist/scripts/pfarrei/ +%{_texdir}/texmf-dist/tex/latex/pfarrei/ +%doc %{_texdir}/texmf-dist/doc/latex/pfarrei/ + +%files -n %{shortname}-pkfix +%license lppl1.3.txt +%{_bindir}/pkfix +%{_texdir}/texmf-dist/scripts/pkfix/ +%doc %{_texdir}/texmf-dist/doc/support/pkfix/ + +%files -n %{shortname}-pkfix-helper +%license lppl1.txt +%{_bindir}/pkfix-helper +%{_mandir}/man1/pkfix-helper.1* +%{_texdir}/texmf-dist/scripts/pkfix-helper/ +%doc %{_texdir}/texmf-dist/doc/support/pkfix-helper/ + +%files -n %{shortname}-pmx +%license gpl2.txt +%{_bindir}/pmxab +%{_bindir}/scor2prt +%{_mandir}/man1/pmxab.1* +%{_mandir}/man1/scor2prt.1* +%{_texdir}/texmf-dist/tex/generic/pmx/ +%{_texdir}/texmf-dist/scripts/pmx/ +%doc %{_texdir}/texmf-dist/doc/generic/pmx/ + +%files -n %{shortname}-pmxchords +%license gpl2.txt +%{_bindir}/pmxchords +%{_mandir}/man1/pmxchords.1* +%{_texdir}/texmf-dist/scripts/pmxchords/ +%{_texdir}/texmf-dist/tex/generic/pmxchords/ +%doc %{_texdir}/texmf-dist/doc/pmxchords/ + +%files -n %{shortname}-pstools +%license gpl.txt +%{_bindir}/bbox +%{_bindir}/ps2eps +%{_bindir}/ps2frag +%{_bindir}/pslatex +%{_mandir}/man1/bbox.1* +%{_mandir}/man1/ps2eps.1* +%{_mandir}/man1/ps2frag.1* +%{_mandir}/man1/pslatex.1* +%{_texdir}/texmf-dist/scripts/texlive/ps2frag.sh +%{_texdir}/texmf-dist/scripts/texlive/pslatex.sh +%{_texdir}/texmf-dist/scripts/ps2eps/ + +%files -n %{shortname}-pst2pdf +%license gpl2.txt +%{_bindir}/pst2pdf +%{_texdir}/texmf-dist/scripts/pst2pdf/ +%doc %{_texdir}/texmf-dist/doc/latex/pst2pdf/ + +%files -n %{shortname}-pst-pdf +%license lppl1.txt +%{_bindir}/ps4pdf +%{_texdir}/texmf-dist/scripts/pst-pdf/ +%{_texdir}/texmf-dist/tex/latex/pst-pdf/ +%doc %{_texdir}/texmf-dist/doc/latex/pst-pdf/ + +%files -n %{shortname}-ps2pk +%license other-free.txt +%{_bindir}/mag +%{_bindir}/pfb2pfa +%{_bindir}/pk2bm +%{_bindir}/ps2pk +%{_mandir}/man1/mag.1* +%{_mandir}/man1/pfb2pfa.1* +%{_mandir}/man1/pk2bm.1* +%{_mandir}/man1/ps2pk.1* + +%files -n %{shortname}-ptex +%{_bindir}/eptex +%{_bindir}/makejvf +%{_bindir}/mendex +%{_bindir}/pbibtex +%{_bindir}/pdvitomp +%{_bindir}/pdvitype +%{_bindir}/platex +%{_bindir}/pmpost +%{_bindir}/ppltotf +%{_bindir}/ptex +%{_bindir}/ptftopl +%{_bindir}/r-pmpost +%{_mandir}/man1/eptex.1* +%{_mandir}/man1/makejvf.1* +%{_mandir}/man1/mendex.1* +%{_mandir}/man1/ppltotf.1* +%{_mandir}/man1/ptex.1* +%{_mandir}/man1/ptftopl.1* +%{fmtutil_cnf_d}/platex +%{fmtutil_cnf_d}/ptex + +%files -n %{shortname}-ptex-fontmaps +%license gpl3.txt +%license pd.txt +%{_bindir}/kanji-config-updmap +%{_bindir}/kanji-config-updmap-sys +%{_bindir}/kanji-config-updmap-user +%{_bindir}/kanji-fontmap-creator +%{_texdir}/texmf-dist/fonts/cmap/ptex-fontmaps +%{_texdir}/texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps +%{_texdir}/texmf-dist/fonts/misc/ptex-fontmaps/ +%{_texdir}/texmf-dist/scripts/ptex-fontmaps +%doc %{_texdir}/texmf-dist/doc/fonts/ptex-fontmaps + +%files -n %{shortname}-ptex2pdf +%license gpl2.txt +%{_bindir}/ptex2pdf +%{_texdir}/texmf-dist/scripts/ptex2pdf/ +%{_texdir}/tlpkg/tlpostcode/ptex2pdf-tlpost.pl +%doc %{_texdir}/texmf-dist/doc/latex/ptex2pdf/ + +%files -n %{shortname}-purifyeps +%license lppl1.txt +%{_bindir}/purifyeps +%{_mandir}/man1/purifyeps.1* +%{_texdir}/texmf-dist/scripts/purifyeps/ +%doc %{_texdir}/texmf-dist/doc/support/purifyeps/ + +%files -n %{shortname}-pygmentex +%license lppl1.3.txt +%{_bindir}/pygmentex +%{_texdir}/texmf-dist/scripts/pygmentex/ +%{_texdir}/texmf-dist/tex/latex/pygmentex/ +%doc %{_texdir}/texmf-dist/doc/latex/pygmentex/ + +%files -n %{shortname}-pythontex +%license lppl1.3.txt +%{_bindir}/depythontex +%{_bindir}/pythontex +%{_texdir}/texmf-dist/scripts/pythontex/ +%{_texdir}/texmf-dist/tex/latex/pythontex/ +%doc %{_texdir}/texmf-dist/doc/latex/pythontex/ + +%files -n %{shortname}-rubik +%license lppl1.3.txt +%{_bindir}/rubikrotation +%{_mandir}/man1/rubikrotation.1* +%{_texdir}/texmf-dist/scripts/rubik/ +%{_texdir}/texmf-dist/tex/latex/rubik/ +%doc %{_texdir}/texmf-dist/doc/latex/rubik/ + +%files -n %{shortname}-seetexk +%{_bindir}/dvibook +%{_bindir}/dviconcat +%{_bindir}/dviselect +%{_bindir}/dvitodvi +%{_mandir}/man1/dvibook.1* +%{_mandir}/man1/dviconcat.1* +%{_mandir}/man1/dviselect.1* +%{_mandir}/man1/dvitodvi.1* + +%files -n %{shortname}-splitindex +%license lppl1.txt +%{_bindir}/splitindex +%{_mandir}/man1/splitindex.1* +%{_texdir}/texmf-dist/scripts/splitindex/ +%{_texdir}/texmf-dist/tex/generic/splitindex/ +%{_texdir}/texmf-dist/tex/latex/splitindex/ +%doc %{_texdir}/texmf-dist/doc/latex/splitindex/ + +%files -n %{shortname}-srcredact +%license gpl2.txt +%{_bindir}/srcredact +%{_mandir}/man1/srcredact.1* +%{_texdir}/texmf-dist/scripts/srcredact/ +%doc %{_texdir}/texmf-dist/doc/support/srcredact/ + +%files -n %{shortname}-sty2dtx +%license gpl3.txt +%{_bindir}/sty2dtx +%{_mandir}/man1/sty2dtx.1* +%{_texdir}/texmf-dist/scripts/sty2dtx/ +%doc %{_texdir}/texmf-dist/doc/support/sty2dtx/ + +%files -n %{shortname}-svn-multi +%license lppl1.txt +%{_bindir}/svn-multi +%{_texdir}/texmf-dist/scripts/svn-multi/ +%{_texdir}/texmf-dist/tex/latex/svn-multi/ +%doc %{_texdir}/texmf-dist/doc/latex/svn-multi/ +%doc %{_texdir}/texmf-dist/doc/support/svn-multi/ + +%files -n %{shortname}-synctex +%license lppl1.txt +%{_bindir}/synctex +%{_mandir}/man1/synctex.1* +%{_mandir}/man5/synctex.5* + +%files -n %{shortname}-tetex +%{_bindir}/allcm +%{_bindir}/allec +%{_bindir}/allneeded +%{_bindir}/dvi2fax +%{_bindir}/dvired +%{_bindir}/fmtutil +%{_bindir}/fmtutil-sys +%{_bindir}/fmtutil-user +%{_bindir}/kpsepath +%{_bindir}/kpsetool +%{_bindir}/kpsewhere +%{_bindir}/kpsexpand +%{_bindir}/texconfig-dialog +%{_bindir}/texconfig-sys +%{_bindir}/texlinks +%{_bindir}/updmap +%{_bindir}/updmap-sys +%{_bindir}/updmap-user +%{_mandir}/man1/allcm.1* +%{_mandir}/man1/allec.1* +%{_mandir}/man1/allneeded.1* +%{_mandir}/man1/dvi2fax.1* +%{_mandir}/man1/dvired.1* +%{_mandir}/man1/fmtutil-sys.1* +%{_mandir}/man1/fmtutil-user.1* +%{_mandir}/man1/fmtutil.1* +%{_mandir}/man1/kpsepath.1* +%{_mandir}/man1/kpsetool.1* +%{_mandir}/man1/kpsewhere.1* +%{_mandir}/man1/kpsexpand.1* +%{_mandir}/man1/texlinks.1* +%{_mandir}/man1/updmap-sys.1* +%{_mandir}/man1/updmap-user.1* +%{_mandir}/man1/updmap.1* +%{_texdir}/texmf-dist/scripts/texlive/allcm.sh +%{_texdir}/texmf-dist/scripts/texlive/allneeded.sh +%{_texdir}/texmf-dist/scripts/texlive/dvi2fax.sh +%{_texdir}/texmf-dist/scripts/texlive/dvired.sh +%{_texdir}/texmf-dist/scripts/texlive/fmtutil-sys.sh +%{_texdir}/texmf-dist/scripts/texlive/fmtutil-user.sh +%{_texdir}/texmf-dist/scripts/texlive/fmtutil.pl +%{_texdir}/texmf-dist/scripts/texlive/kpsetool.sh +%{_texdir}/texmf-dist/scripts/texlive/kpsewhere.sh +%{_texdir}/texmf-dist/scripts/texlive/mktexlsr.pl +%{_texdir}/texmf-dist/scripts/texlive/texconfig-dialog.sh +%{_texdir}/texmf-dist/scripts/texlive/texconfig-sys.sh +%{_texdir}/texmf-dist/scripts/texlive/texlinks.sh +%{_texdir}/texmf-dist/scripts/texlive/updmap-sys.sh +%{_texdir}/texmf-dist/scripts/texlive/updmap-user.sh +%{_texdir}/texmf-dist/scripts/texlive/updmap.pl +%config(noreplace) %{_sysconfdir}/texlive/web2c/updmap.cfg +%{_texdir}/texmf-dist/web2c/updmap.cfg +%{_mandir}/man5/fmtutil.cnf.5* +%{_mandir}/man5/updmap.cfg.5* +%{_texdir}/texmf-dist/dvips/tetex/ +%{_texdir}/texmf-dist/fonts/enc/dvips/tetex/ +%{_texdir}/texmf-dist/fonts/map/dvips/tetex/ +%doc %{_texdir}/texmf-dist/doc/tetex/ + +%files -n %{shortname}-tex +%license knuth.txt +%{_bindir}/initex +%{_bindir}/tex +%{_mandir}/man1/initex.1* +%{_mandir}/man1/tex.1* +%{fmtutil_cnf_d}/tex + +%files -n %{shortname}-tex4ebook +%license lppl1.3.txt +%{_bindir}/tex4ebook +%{_texdir}/texmf-dist/scripts/tex4ebook/ +%{_texdir}/texmf-dist/tex/latex/tex4ebook/ +%doc %{_texdir}/texmf-dist/doc/support/tex4ebook/ + +%files -n %{shortname}-tex4ht +%license lppl1.txt +%{_bindir}/ht +%{_bindir}/htcontext +%{_bindir}/htlatex +%{_bindir}/htmex +%{_bindir}/httex +%{_bindir}/httexi +%{_bindir}/htxelatex +%{_bindir}/htxetex +%{_bindir}/mk4ht +%{_bindir}/t4ht +%{_bindir}/tex4ht +%{_bindir}/xhlatex +%{_texdir}/texmf-dist/scripts/tex4ht/ +%{_texdir}/texmf-dist/tex/generic/tex4ht/ +%{_texdir}/texmf-dist/tex4ht/ +%doc %{_texdir}/texmf-dist/doc/generic/tex4ht/ + +%files -n %{shortname}-texconfig +%license lppl1.txt +%{_bindir}/texconfig +%{_mandir}/man1/texconfig-sys.1* +%{_mandir}/man1/texconfig.1* +%{_texdir}/texmf-dist/scripts/texlive/texconfig.sh +%{_texdir}/texmf-dist/texconfig/ + +%files -n %{shortname}-texcount +%license lppl1.txt +%{_bindir}/texcount +%{_texdir}/texmf-dist/scripts/texcount/ +%doc %{_texdir}/texmf-dist/doc/support/texcount/ + +%files -n %{shortname}-texdef +%license gpl3.txt +%{_bindir}/latexdef +%{_bindir}/texdef +%{_texdir}/texmf-dist/scripts/texdef/ +%doc %{_texdir}/texmf-dist/doc/support/texdef/ + +%files -n %{shortname}-texdiff +%license gpl.txt +%{_bindir}/texdiff +%{_texdir}/texmf-dist/scripts/texdiff +%{_mandir}/man1/texdiff.1* +%doc %{_texdir}/texmf-dist/doc/support/texdiff/ + +%files -n %{shortname}-texdirflatten +%{_bindir}/texdirflatten +%{_mandir}/man1/texdirflatten.1* +%{_texdir}/texmf-dist/scripts/texdirflatten/ +%doc %{_texdir}/texmf-dist/doc/support/texdirflatten/ + +%files -n %{shortname}-texdoc +%license gpl.txt +%{_bindir}/texdoc +%{_mandir}/man1/texdoc.1* +%{_texdir}/texmf-dist/scripts/texdoc/ +%{_texdir}/texmf-dist/texdoc/ +%doc %{_texdir}/texmf-dist/doc/support/texdoc/ + +%files -n %{shortname}-texdoctk +%license gpl.txt +%{_bindir}/texdoctk +%{_mandir}/man1/texdoctk.1* +%{_texdir}/texmf-dist/scripts/texdoctk/ +%{_texdir}/texmf-dist/texdoctk/ + +%files -n %{shortname}-texfot +%license pd.txt +%{_bindir}/texfot +%{_mandir}/man1/texfot.1* +%{_texdir}/texmf-dist/scripts/texfot/ +%doc %{_texdir}/texmf-dist/doc/support/texfot/ + +%files -n %{shortname}-texliveonfly +%license gpl3.txt +%{_bindir}/texliveonfly +%{_texdir}/texmf-dist/scripts/texliveonfly/ +%doc %{_texdir}/texmf-dist/doc/support/texliveonfly/ + +%files -n %{shortname}-texlive-en +%{_infodir}/tlbuild.info* +%doc %{_texdir}/texmf-dist/doc/texlive/texlive-en/ +%doc %{_texdir}/texmf-dist/doc/texlive/tlbuild/tlbuild.html +%doc %{_texdir}/texmf-dist/doc/texlive/tlbuild/tlbuild.pdf + +%files -n %{shortname}-texlive-scripts +%license lppl1.txt +%{_bindir}/rungs +%{_mandir}/man1/install-tl.1* +%{_texdir}/texmf-dist/scripts/texlive/rungs.tlu +%{_texdir}/texmf-dist/scripts/texlive/test-tlpdb.tlu +%{_texdir}/texmf-dist/scripts/texlive/texconf.tlu +%{_texdir}/texmf-dist/scripts/texlive/lua/texlive/getopt.tlu +%{_texdir}/texmf-dist/scripts/texlive/lua/texlive/tlpdb.tlu +%{_texdir}/texmf-dist/scripts/texlive/lua/texlive/utils.tlu + +%files -n %{shortname}-texlive.infra +%license lppl1.txt +%{_bindir}/tlmgr +%{_texdir}/texmf-dist/web2c/fmtutil-hdr.cnf +%{_texdir}/texmf-dist/web2c/updmap-hdr.cfg +%{_texdir}/LICENSE.CTAN +%{_texdir}/LICENSE.TL +%{_texdir}/README +%{_texdir}/README.usergroups +%{_texdir}/index.html +%{_texdir}/readme-html.dir/readme.cs.html +%{_texdir}/readme-html.dir/readme.de.html +%{_texdir}/readme-html.dir/readme.en.html +%{_texdir}/readme-html.dir/readme.es.html +%{_texdir}/readme-html.dir/readme.fr.html +%{_texdir}/readme-html.dir/readme.it.html +%{_texdir}/readme-html.dir/readme.ja.html +%{_texdir}/readme-html.dir/readme.pl.html +%{_texdir}/readme-html.dir/readme.pt-br.html +%{_texdir}/readme-html.dir/readme.ru.html +%{_texdir}/readme-html.dir/readme.sr.html +%{_texdir}/readme-html.dir/readme.vi.html +%{_texdir}/readme-html.dir/readme.zh-cn.html +%{_texdir}/release-texlive.txt +%{_texdir}/texmf-dist/scripts/texlive/tlmgr.pl +%{_texdir}/tlpkg/installer/config.guess +%{_texdir}/tlpkg/TeXLive/TLConfFile.pm +%{_texdir}/tlpkg/TeXLive/TLConfig.pm +%{_texdir}/tlpkg/TeXLive/TLCrypto.pm +%{_texdir}/tlpkg/TeXLive/TLDownload.pm +%{_texdir}/tlpkg/TeXLive/TLPDB.pm +%{_texdir}/tlpkg/TeXLive/TLPOBJ.pm +%{_texdir}/tlpkg/TeXLive/TLPSRC.pm +%{_texdir}/tlpkg/TeXLive/TLPaper.pm +%{_texdir}/tlpkg/TeXLive/TLTREE.pm +%{_texdir}/tlpkg/TeXLive/TLUtils.pm +%{_texdir}/tlpkg/TeXLive/TLWinGoo.pm +%{_texdir}/tlpkg/TeXLive/TeXCatalogue.pm +%{_texdir}/tlpkg/TeXLive/trans.pl +%{_datadir}/perl5/TeXLive +%{_mandir}/man1/tlmgr.1* +%doc %{_texdir}/texmf-dist/scripts/texlive/NEWS +%doc %{_texdir}/tlpkg/README + +%files -n %{shortname}-texloganalyser +%{_bindir}/texloganalyser +%{_texdir}/texmf-dist/scripts/texloganalyser/ +%doc %{_texdir}/texmf-dist/doc/support/texloganalyser/ + +%files -n %{shortname}-texosquery +%license lppl1.3.txt +%{_bindir}/texosquery* +%{_texdir}/texmf-dist/scripts/texosquery +%{_texdir}/texmf-dist/tex/latex/texosquery +%doc %{_texdir}/texmf-dist/doc/support/texosquery + +%files -n %{shortname}-texsis +%license lppl1.txt +%{_bindir}/texsis +%{_mandir}/man1/texsis.1* +%{_texdir}/texmf-dist/bibtex/bst/texsis/ +%{_texdir}/texmf-dist/tex/texsis/ +%{fmtutil_cnf_d}/texsis +%doc %{_texdir}/texmf-dist/doc/otherformats/texsis/ + +%files -n %{shortname}-texware +%license knuth.txt +%{_bindir}/dvitype +%{_bindir}/pooltype +%{_mandir}/man1/dvitype.1* +%{_mandir}/man1/pooltype.1* + +%files -n %{shortname}-thumbpdf +%license lppl1.txt +%{_bindir}/thumbpdf +%{_mandir}/man1/thumbpdf.1* +%{_texdir}/texmf-dist/scripts/thumbpdf/ +%{_texdir}/texmf-dist/tex/generic/thumbpdf/ +%doc %{_texdir}/texmf-dist/doc/generic/thumbpdf/ + +%files -n %{shortname}-tie +%{_bindir}/tie +%{_mandir}/man1/tie.1* + +%files -n %{shortname}-tpic2pdftex +%license gpl.txt +%{_bindir}/tpic2pdftex +%{_mandir}/man1/tpic2pdftex.1* +%doc %{_texdir}/texmf-dist/doc/tpic2pdftex/ + +%files -n %{shortname}-ttfutils +%license lppl1.txt +%{_bindir}/ttf2afm +%{_bindir}/ttf2pk +%{_bindir}/ttf2tfm +%{_bindir}/ttfdump +%{_mandir}/man1/ttf2afm.1* +%{_mandir}/man1/ttf2pk.1* +%{_mandir}/man1/ttf2tfm.1* +%{_mandir}/man1/ttfdump.1* +%{_texdir}/texmf-dist/fonts/enc/ttf2pk/ +%{_texdir}/texmf-dist/fonts/sfd/ttf2pk/ +%{_texdir}/texmf-dist/ttf2pk/ +%doc %{_texdir}/texmf-dist/doc/ttf2pk/ + +%files -n %{shortname}-typeoutfileinfo +%license lppl1.3.txt +%{_bindir}/typeoutfileinfo +%{_texdir}/texmf-dist/scripts/typeoutfileinfo/ +%doc %{_texdir}/texmf-dist/doc/support/typeoutfileinfo/ + +%files -n %{shortname}-ulqda +%license lppl1.txt +%{_bindir}/ulqda +%{_texdir}/texmf-dist/scripts/ulqda/ +%{_texdir}/texmf-dist/tex/latex/ulqda/ +%doc %{_texdir}/texmf-dist/doc/latex/ulqda/ + +%files -n %{shortname}-uptex +%{_bindir}/euptex +%{_bindir}/r-upmpost +%{_bindir}/upbibtex +%{_bindir}/updvitomp +%{_bindir}/updvitype +%{_bindir}/uplatex +%{_bindir}/upmendex +%{_bindir}/upmpost +%{_bindir}/uppltotf +%{_bindir}/uptex +%{_bindir}/uptftopl +%{_bindir}/wovp2ovf +%{_mandir}/man1/euptex.1* +%{_mandir}/man1/uplatex.1* +%{_mandir}/man1/upmendex.1* +%{_mandir}/man1/uppltotf.1* +%{_mandir}/man1/uptex.1* +%{_mandir}/man1/uptftopl.1* +%{fmtutil_cnf_d}/uplatex +%{fmtutil_cnf_d}/uptex +%doc %{_texdir}/texmf-dist/doc/upmendex/ +%doc %{_texdir}/texmf-dist/doc/uplatex/ + +%files -n %{shortname}-urlbst +%license gpl.txt +%{_bindir}/urlbst +%{_texdir}/texmf-dist/bibtex/bst/urlbst/ +%{_texdir}/texmf-dist/scripts/urlbst/ +%doc %{_texdir}/texmf-dist/doc/bibtex/urlbst/ + +%files -n %{shortname}-velthuis +%license gpl.txt +%{_bindir}/devnag +%{_mandir}/man1/devnag.1* +%{_texdir}/texmf-dist/fonts/afm/public/velthuis/ +%{_texdir}/texmf-dist/fonts/map/dvips/velthuis/ +%{_texdir}/texmf-dist/fonts/source/public/velthuis/ +%{_texdir}/texmf-dist/fonts/tfm/public/velthuis/ +%{_texdir}/texmf-dist/fonts/type1/public/velthuis/ +%{_texdir}/texmf-dist/tex/generic/velthuis/ +%{_texdir}/texmf-dist/tex/latex/velthuis/ +%{_texdir}/texmf-dist/tex/plain/velthuis/ +%{_texdir}/texmf-dist/tex/xelatex/velthuis/ +%doc %{_texdir}/texmf-dist/doc/generic/velthuis/ + +%files -n %{shortname}-vlna +%license lppl1.txt +%{_bindir}/vlna +%{_mandir}/man1/vlna.1* +%doc %{_texdir}/texmf-dist/doc/vlna/ + +%files -n %{shortname}-vpe +%license lppl1.txt +%{_bindir}/vpe +%{_texdir}/texmf-dist/scripts/vpe/ +%{_texdir}/texmf-dist/tex/latex/vpe/ +%doc %{_texdir}/texmf-dist/doc/latex/vpe/ + +%files -n %{shortname}-web +%license knuth.txt +%{_bindir}/tangle +%{_bindir}/weave +%{_mandir}/man1/tangle.1* +%{_mandir}/man1/weave.1* + +%files -n %{shortname}-webquiz +%license gpl.txt +%{_bindir}/webquiz +%{_mandir}/man1/webquiz.1* +%{_texdir}/texmf-dist/scripts/webquiz/ +%{_texdir}/texmf-dist/tex/latex/webquiz/ +%doc %{_texdir}/texmf-dist/doc/latex/webquiz/ + +%files -n %{shortname}-wordcount +%license lppl1.txt +%{_bindir}/wordcount +%{_texdir}/texmf-dist/scripts/wordcount/ +%{_texdir}/texmf-dist/tex/latex/wordcount/ +%doc %{_texdir}/texmf-dist/doc/latex/wordcount/ + +%files -n %{shortname}-xdvi +%{_bindir}/xdvi +%{_bindir}/xdvi-xaw +%{_mandir}/man1/xdvi.1* +%{_texdir}/texmf-dist/dvips/xdvi/ +%{_texdir}/texmf-dist/xdvi/ + +%files -n %{shortname}-xetex +%license other-free.txt +%{_bindir}/xdvipdfmx +%{_bindir}/xelatex +%{_bindir}/xetex +%{_mandir}/man1/xelatex.1* +%{_mandir}/man1/xetex.1* +%{_texdir}/tlpkg/tlpostcode/xetex.pl +%{_texdir}/texmf-dist/fonts/misc/xetex/ +%{fmtutil_cnf_d}/xetex +%doc %{_texdir}/texmf-dist/doc/xetex/ + +%files -n %{shortname}-xindex +%license lppl1.3.txt +%{_bindir}/xindex +%{_texdir}/texmf-dist/scripts/xindex/ +%{_texdir}/texmf-dist/tex/latex/xindex/ +%{_texdir}/texmf-dist/tex/lualatex/xindex/ +%doc %{_texdir}/texmf-dist/doc/lualatex/xindex/ + +%files -n %{shortname}-xindy +%license gpl.txt +#%{_bindir}/tex2xindy +#%{_bindir}/texindy +#%{_bindir}/xindy +#%{_bindir}/xindy.mem +%{_mandir}/man1/xindy.1* +%{_mandir}/man1/texindy.1* +%{_mandir}/man1/tex2xindy.1* +%{_texdir}/texmf-dist/scripts/xindy/ +%{_texdir}/texmf-dist/xindy/ +%doc %{_texdir}/texmf-dist/doc/xindy/ + +%files -n %{shortname}-xmltex +%license lppl1.txt +%{_bindir}/pdfxmltex +%{_bindir}/xmltex +%{_texdir}/texmf-dist/tex/xmltex/ +%{fmtutil_cnf_d}/xmltex +%doc %{_texdir}/texmf-dist/doc/otherformats/xmltex/ + +%files -n %{shortname}-yplan +%license lppl1.txt +%{_bindir}/yplan +%{_texdir}/texmf-dist/scripts/yplan/ +%{_texdir}/texmf-dist/tex/latex/yplan/ +%doc %{_texdir}/texmf-dist/doc/latex/yplan/ + +%changelog +* Thu May 23 2019 Tom Callaway - 7:20190410-1 +- update to 20190410 +- update all component tarballs to latest available +- new subpackages: cluttex, ctanbib, dviout-util, pdftex-quiet, webquiz, xindex +- add a slightly neutered tlmgr back into texlive.infra because texconfig paper needs it + IF YOU ARE READING THIS PLEASE DO NOT USE tlmgr install/update. IF YOU IGNORE ME + PLEASE DO NOT FILE BUGS. PLEASE DO NOT REQUEST THE tlmgrgui BITS. + +* Wed May 15 2019 Jerry James - 7:20180414-36 +- Fix xindy build by eliminating race to create latex.fmt +- Build xindy on all supported arches + +* Tue Mar 19 2019 Tom Callaway - 7:20180414-35 +- do not throw no file error in synctex + +* Sun Feb 03 2019 Fedora Release Engineering - 7:20180414-34 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Fri Jan 25 2019 Marek Kasik - 7:20180414-33 +- Rebuild for poppler-0.73.0 + +* Wed Jan 23 2019 Pete Walter - 7:20180414-32 +- Rebuild for ICU 63 + +* Wed Jan 16 2019 Than Ngo - 7:20180414-31 +- fixed annocheck distro flag failure detected by rpmdiff + +* Wed Dec 12 2018 Tom Callaway - 7:20180414-30 +- add explicit Requires: texlive-xetex to texlive-dvipdfmx (bz1657755) + +* Fri Dec 7 2018 Tom Callaway - 7:20180414-29 +- use python3 properly in pdfbook2 + +* Mon Nov 26 2018 Tom Callaway - 7:20180414-28 +- do not try to ls /usr/share/texlive/fmtutil.cnf.d, it can be empty, + and that makes for noisy errors in scripts (bz1650935) + Thanks to Villy Kruse. +- fix pkgconfig cleanup sed to use %%{source_date} instead of %%{version} + which is overridden with subpackage specific data at that point. (bz1426622) + +* Mon Nov 12 2018 Tom Callaway - 7:20180414-27 +- make texlive-kpathsea Requires: texlive-tetex so scriptlets don't fail noisily + +* Thu Nov 8 2018 Tom Callaway - 7:20180414-26 +- make a symlink so texdoc can find texlive.tlpdb + +* Thu Nov 1 2018 Adam Williamson - 7:20180414-25 +- Add missing dep from -tetex to -texconfig (bz1555931) + +* Thu Oct 4 2018 Tom Callaway - 7:20180414-24 +- disable test that fails on 32 bit arches in rawhide + +* Mon Oct 1 2018 Tom Callaway - 7:20180414-23 +- apply upstream fix for CVE-2018-17407 + +* Wed Sep 19 2018 Tom Callaway - 7:20180414-22 +- fix lyluatex provides + +* Tue Sep 18 2018 Tom Callaway - 7:20180414-21 +- add lyluatex + +* Fri Aug 24 2018 Marek Kasik - 7:20180414-20 +- Install synctex_version.h to be able to build evince + +* Tue Aug 14 2018 Marek Kasik - 7:20180414-19 +- Rebuild for poppler-0.67.0 +- Disable xindy temporarily (there is a cyclic dependency which +- prevents me from building texlive-base with new poppler) + +* Mon Aug 6 2018 Marek Kasik - 7:20180414-18 +- Fix paths in pkgconfig files +- Resolves: #1426622 + +* Wed Jul 11 2018 Tom Callaway - 7:20180414-17 +- update latex2man to resolve perl issues +- use different ctan mirror, old one was out of date +- update pretty much everything since we're updating latex2man and we know the old mirror was outdated +- l3build and axodraw2 are now packaged properly in the tarball +- texdoctk is now its own package (reflecting upstream split) + +* Tue Jul 10 2018 Pete Walter - 7:20180414-16 +- Rebuild for ICU 62 + +* Sat Jul 7 2018 Tom Callaway - 7:20180414-15 +- revert trigger changes from -14 + +* Mon Jul 2 2018 Tom Callaway - 7:20180414-14 +- fix triggers to force enable of new maps and run syncwithtrees before doing map operations +- add old "tex-foo-doc" provides for every package with doc provides (bz1593860, 1593863) + +* Tue Jun 26 2018 Tom Callaway - 7:20180414-13 +- apply tibbs's fix (PR#4) for fmtutil cnf handling without tons of ugly scriptlets +- explicitly run updmap-sys in the kpathsea triggers, bug reports imply this is needed + +* Tue Jun 19 2018 Tom Callaway - 7:20180414-12 +- add Requires: tex(fvextra.sty) to pythontex (bz1590621) + +* Mon Jun 11 2018 Tom Callaway - 7:20180414-11 +- add tex-jfontmaps(bin/doc) provides + +* Fri Jun 8 2018 Tom Callaway - 7:20180414-10 +- add tex-uplatex(bin/doc) provides + +* Thu Jun 7 2018 Tom Callaway - 7:20180414-9 +- add pretrans to handle /usr/share/texmf + +* Mon Jun 4 2018 Tom Callaway - 7:20180414-8 +- add Provides: tetex-dvips +- add symlink to /usr/share/texmf for legacy packages + +* Fri Jun 1 2018 Tom Callaway - 7:20180414-7 +- add Provides: xmltex + +* Tue May 29 2018 Tom Callaway - 7:20180414-6 +- add BR: texlive-metafont, texlive-cm-super, texlive-ec for xindy +- disable xindy for arm + +* Tue May 29 2018 Tom Callaway - 7:20180414-5 +- fix xindy and jfontmaps obsoletes +- fix typo preventing xindy subpackage + +* Tue May 29 2018 Tom Callaway - 7:20180414-4 +- add Provides: jadetex and Provides: tex-uptex-doc + +* Mon May 21 2018 Tom Callaway - 7:20180414-3 +- add posttrans to force latex scriptlets to work right + +* Mon May 14 2018 Tom Callaway - 7:20180414-2 +- fix arara-doc obsoletes (bz1576693) + +* Tue May 1 2018 Tom Callaway - 7:20180414-1 +- update to 20180414 +- fix synctex.pc (bz1426622) +- new subpackages: axodraw2, bib2gls, ctan-o-mat, dviinfox, jfmutil, l3build, wordcount + +* Mon Apr 30 2018 Pete Walter - 7:20170520-28 +- Rebuild for ICU 61.1 + +* Fri Mar 30 2018 Tom Callaway - 7:20170520-27 +- actually use the texmf.cnf we patch (not the vanilla one from the kpathsea.tar.xz) + +* Tue Mar 27 2018 Tom Callaway - 7:20170520-26 +- add lcdf-typetools provide to fix broken collection-fontutils (fixing that in texlive later) (bz1560379) +- add LatexIndent* to filtered Requires to prevent dep issues there (bz1560381) + +* Sun Mar 25 2018 Tom Callaway - 7:20170520-25 +- fix aleph obsoletes (bz1560355) + +* Fri Mar 23 2018 Kevin Fenzi - 7:20170520-24 +- Rebuild for poppler soname bump. + +* Thu Mar 15 2018 Tom Callaway - 7:20170520-23 +- add Requires: tex(pdfpages.sty) to texlive-pdfjam (bz1164237) + +* Sun Mar 11 2018 Tom Callaway - 7:20170520-22 +- fix a2ping to work with gs 9.22 + +* Sat Mar 10 2018 Kevin Fenzi - 7:20170520-21 +- Make kpathsea scriptlets not fail in the installer env. + +* Fri Mar 9 2018 Tom Callaway - 7:20170520-20 +- disable cjk-gs-integrate + +* Fri Mar 9 2018 Tom Callaway - 7:20170520-19 +- configure TEXMFLOCAL to point to /usr/share/texlive/texmf-local/ (bz1553462) + +* Wed Mar 7 2018 Tom Callaway - 7:20170520-18 +- switch to shebang mangling that does not change exec perms + most/all of the mangling is correct, but we do not want to risk breaking + ancient texlive scripts that are suddently -x +- add versions for arara bundled provides +- use spaces instead of tabs + +* Mon Mar 5 2018 Tom Callaway - 7:20170520-17 +- add Provides: tetex-latex to the latex subpackage +- fix obviously incorrect license tag on -base package +- use %%_rpmmacrodir instead of our local %%macrosdir +- add BuildRequires: gcc gcc-c++ + +* Mon Feb 26 2018 Tom Callaway - 7:20170520-16 +- include uplatex docs in uptex +- conditionalize xindy because clisp doesn't have ppc64/aarch64 packages + +* Sat Feb 24 2018 Tom Callaway - 7:20170520-15 +- turn on xindy +- disable shebang mangling +- disable tests that fail on 32bit arches with gcc8 + +* Fri Feb 23 2018 Tom Callaway - 7:20170520-14 +- pass LDFLAGS +- update lcdf-typetools to git current to fix test failures +- turn on xindy + +* Thu Feb 22 2018 Tom Callaway - 7:20170520-13 +- rebuild again for new poppler in rawhide/f28 + +* Sun Feb 4 2018 Tom Callaway - 7:20170520-12 +- fix pathing so that texinfo files are found + +* Thu Jan 18 2018 Tom Callaway - 7:20170520-11 +- add missing deps for texlive-pdfbook2 +- fix ghostscript BR + +* Wed Nov 29 2017 Tom Callaway - 7:20170520-10 +- kpathsea trigger uses mtxrun, which is in the context subpackage ... + ... but the kpathsea subpackage did not have a Requires on it. + It does now. How long was this broken?!? +- force texdir/texmf-var to be a symlink to /var/lib/texmf + +* Tue Nov 14 2017 Tom Callaway - 7:20170520-9 +- var handling & perl cleanups & extra scriptlets + +* Fri Nov 10 2017 Tom Callaway - 7:20170520-8 +- add additional provides for texlive-dvipng, texlive-dvipdfmx, and texlive-xdvi + +* Fri Nov 10 2017 Tom Callaway - 7:20170520-7 +- add epoch to Obsolete versioning + +* Thu Nov 9 2017 Tom Callaway - 7:20170520-6 +- try removing a version from the kpathsea-bin/kpathsea-doc Obsoletes + to see if that will work with DNF. I miss yum. + +* Thu Nov 9 2017 Tom Callaway - 7:20170520-5 +- lie about what texlive-kpathsea-lib(__isa) version we provide + because rpm needs this to get over the dependency hurdle + +* Thu Nov 9 2017 Tom Callaway - 7:20170520-4 +- add explicit provide for texlive-kpathsea-lib(__isa) to facilitate update + +* Thu Nov 9 2017 Tom Callaway - 7:20170520-3 +- use more accurate provides + +* Sun Oct 29 2017 Tom Callaway - 7:20170520-2 +- use new files from upstream that work with current poppler in rawhide + +* Tue Sep 12 2017 Tom Callaway - 7:20170520-1 +- new package diff --git a/SPECS/texlive-extension.spec b/SPECS/texlive-extension.spec new file mode 100644 index 0000000..d78496c --- /dev/null +++ b/SPECS/texlive-extension.spec @@ -0,0 +1,412 @@ +%global _use_internal_dependency_generator 0 + +%global tl_version 20180414 +%global tl_epoch 7 +%global shortname texlive +%global source_name %{shortname}-%{tl_version}-source + +%{!?_texdir: %global _texdir %{_datadir}/texlive} +%{!?_texmf_var: %global _texmf_var %{_var}/lib/texmf} + +# don't export private perl modules +%global __provides_exclude %{?__provides_exclude:%__provides_exclude|}^perl\\( +%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\((PDF::Reuse.*|Pedigree.*|TeXLive.*|Tk::path_tre)\\) + +%global _configure ../configure + +%global macrosdir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d) + +# don't figure any perl requires +%global __perl_requires %{nil} +%global __find_provides %{nil} +%global __os_install_post /usr/lib/rpm/brp-compress %{nil} +%global __arch_install_post %{nil} + +Name: texlive-extension +Version: %{tl_version} +Release: 2%{?dist} +Epoch: %{tl_epoch} +Summary: TeX formatting system +Group: Applications/Publishing +License: Artistic 2.0 and GPLv2 and GPLv2+ and LGPLv2+ and LPPL and MIT and Public Domain and UCD and Utopia +URL: http://tug.org/texlive/ + +BuildRequires: xz +BuildRequires: libXaw-devel +BuildRequires: libXi-devel +BuildRequires: ncurses-devel +BuildRequires: bison +BuildRequires: flex +BuildRequires: file +BuildRequires: perl(Digest::MD5) +BuildRequires: texinfo +BuildRequires: gcc-c++ +BuildRequires: gd-devel +%if 0%{?system_teckit} +BuildRequires: teckit-devel >= 2.5.7 +%endif +BuildRequires: freetype-devel +BuildRequires: libpng-devel +BuildRequires: zlib-devel +BuildRequires: poppler-devel +BuildRequires: zziplib-devel +BuildRequires: libicu-devel +BuildRequires: cairo-devel +BuildRequires: harfbuzz-devel +#BuildRequires: perl-generators +BuildRequires: pixman-devel +BuildRequires: graphite2-devel +BuildRequires: ghostscript-devel +BuildRequires: libpaper-devel +%if 0%{?system_potrace} +BuildRequires: potrace-devel +%endif +BuildRequires: autoconf +BuildRequires: automake +BuildRequires: libtool +BuildRequires: gmp-devel +BuildRequires: mpfr-devel +BuildRequires: chrpath + +Source0: ftp://tug.org/historic/systems/texlive/2018/%{source_name}.tar.xz +Source1: texlive-licenses.tar.xz +# chktex +Source50: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chktex.doc.tar.xz +Source51: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chktex.tar.xz +# German language support +Source0489: ftp://tug.org/historic/systems/texlive/2018/tlnet-final/archive/babel-german.tar.xz +Source0490: ftp://tug.org/historic/systems/texlive/2018/tlnet-final/archive/babel-german.doc.tar.xz +Source2753: ftp://tug.org/historic/systems/texlive/2018/tlnet-final/archive/german.tar.xz +Source2754: ftp://tug.org/historic/systems/texlive/2018/tlnet-final/archive/german.doc.tar.xz +Source2756: ftp://tug.org/historic/systems/texlive/2018/tlnet-final/archive/germbib.tar.xz +Source2757: ftp://tug.org/historic/systems/texlive/2018/tlnet-final/archive/germbib.doc.tar.xz +Source4788: ftp://tug.org/historic/systems/texlive/2018/tlnet-final/archive/nomencl.tar.xz +Source4789: ftp://tug.org/historic/systems/texlive/2018/tlnet-final/archive/nomencl.doc.tar.xz +# add missing translator.sty +Source8032: ftp://tug.org/historic/systems/texlive/2018/tlnet-final/archive/translator.tar.xz +Source8033: ftp://tug.org/historic/systems/texlive/2018/tlnet-final/archive/translator.doc.tar.xz + +Patch1: tl-kpfix.patch +Patch2: tl-format.patch +Patch3: texlive-20180414-selinux-context.patch +Patch5: texlive-2016-kpathsea-texlive-path.patch +# fixes from arch and upstream texlive for poppler 0.6x +Patch7: texlive-20180414-new-poppler.patch +# XML validity +Patch8: texlive-20180414-xml.patch +# python3 support and mangling shebang +Patch9: texlive-2017-python3.patch +# fix for poppler-0.63 +Patch10: texlive-20180414-poppler-0.63.patch +# annocheck distro flag failures +Patch11: texlive-20180414-annocheck.patch +# CVE-2018-17407 +Patch12: texlive-20180414-CVE-2018-17407.patch +# covscan +Patch13: texlive-20180414-covscan.patch + +%description +%name includes many texlive extension which are dropped in RHEL + +%package -n %{shortname}-chktex +Provides: tex-chktex = %{epoch}:%{tl_version}-%{release} +Provides: texlive-chktex-bin = %{epoch}:%{tl_version}-%{release} +Provides: tex-chktex-bin = %{epoch}:%{tl_version}-%{release} +Obsoletes: texlive-chktex-bin < 7:20170520 +Provides: tex-chktex-doc = %{epoch}:%{tl_version}-%{release} +Provides: texlive-chktex-doc = %{epoch}:%{tl_version}-%{release} +Obsoletes: texlive-chktex-doc < 7:20170520 +License: GPL+ +Summary: Check for errors in LaTeX documents +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-chktex +The program reports typographic and other errors in LaTeX +documents. Filters are also provided for checking the LaTeX +parts of CWEB documents. + +%package -n %{shortname}-lacheck +Provides: tex-lacheck = %{epoch}:%{tl_version}-%{release} +Provides: texlive-lacheck-bin = %{epoch}:%{tl_version}-%{release} +Provides: tex-lacheck-bin = %{epoch}:%{tl_version}-%{release} +Obsoletes: texlive-lacheck-bin < 7:20170520 +License: GPL+ +Summary: LaTeX checker +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-lacheck +Lacheck is a tool for finding common mistakes in LaTeX +documents. The distribution includes sources, and executables +for OS/2 and Win32 environments. + +%package -n %{shortname}-babel-german +Provides: tex-babel-german = %{tl_version} +License: LPPL 1.3 +Summary: Babel support for documents written in German +BuildArch: noarch +Requires: texlive-base +Requires: texlive-kpathsea-bin, tex-kpathsea +Provides: tex(austrian.ldf) = %{tl_version} +Provides: tex(german.ldf) = %{tl_version} +Provides: tex(germanb.ldf) = %{tl_version} +Provides: tex(naustrian.ldf) = %{tl_version} +Provides: tex(ngerman.ldf) = %{tl_version} +Provides: tex(ngermanb.ldf) = %{tl_version} +Provides: tex(nswissgerman.ldf) = %{tl_version} +Provides: tex(swissgerman.ldf) = %{tl_version} + +%description -n %{shortname}-babel-german +The package defines LaTeX support, within the Babel package, of +German (including its Austrian dialect), in both 'old' and +'new' orthographies. + +%package -n %{shortname}-german +Provides: tex-german = %{tl_version} +License: LPPL +Summary: Support for German typography +BuildArch: noarch +Requires: texlive-base +Requires: texlive-kpathsea-bin, tex-kpathsea +Provides: tex(german.sty) = %{tl_version} +Provides: tex(ngerman.sty) = %{tl_version} + +%description -n %{shortname}-german +Supports the new German orthography (neue deutsche +Rechtschreibung). + +%package -n %{shortname}-germbib +Provides: tex-germbib = %{tl_version} +License: Bibtex +Summary: German variants of standard BibTeX styles +BuildArch: noarch +Requires: texlive-base +Requires: texlive-kpathsea-bin, tex-kpathsea +Requires: tex(german.sty) +Provides: tex(bibgerm.sty) = %{tl_version} +Provides: tex(mynormal.sty) = %{tl_version} + +%description -n %{shortname}-germbib +A development of the (old) german.sty, this bundle provides +German packages, BibTeX styles and documentary examples, for +writing documents with bibliographies. The author has since +developed the babelbib bundle, which (he asserts) supersedes +germbib. + + +%package -n %{shortname}-nomencl +Provides: tex-nomencl = %{tl_version} +License: LPPL +Summary: Produce lists of symbols as in nomenclature +BuildArch: noarch +Requires: texlive-base +Requires: texlive-kpathsea-bin, tex-kpathsea +Provides: tex(nomencl.sty) = %{tl_version} +Provides: tex(sample01.cfg) = %{tl_version} +Provides: tex(sample02.cfg) = %{tl_version} +Provides: tex(sample04.cfg) = %{tl_version} +Provides: tex(sample05.cfg) = %{tl_version} + +%description -n %{shortname}-nomencl +Produces lists of symbols using the capabilities of the +MakeIndex program. + +%package -n %{shortname}-translator +Summary: Easy translation of strings in LaTeX +BuildArch: noarch +License: LPPL or GPL+ +Requires: texlive-base texlive-kpathsea +Requires: tex(keyval.sty) +Provides: tex(translator.sty) = %{tl_version} + +%description -n %{shortname}-translator +This LaTeX package provides a flexible mechanism for +translating individual words into different languages. For +example, it can be used to translate a word like "figure" into, +say, the German word "Abbildung". Such a translation mechanism +is useful when the author of some package would like to +localize the package such that texts are correctly translated +into the language preferred by the user. This package is not +intended to be used to automatically translate more than a few +words. + +%prep +%setup -q -c -T -a 0 -a 1 +[ -e %{source_name} ] && mv %{source_name} source +%patch1 -p0 +%patch2 -p1 +%patch3 -p1 +%patch5 -p0 +%if 0%{?fedora} >= 28 || 0%{?rhel} >= 8 +%patch7 -p1 -b .newpoppler +%patch10 -p1 -b .poppler-0.63.0 +%endif +%patch11 -p1 -b .annocheck +%patch12 -p1 +%patch13 -p1 + +%build +cd source +PREF=`pwd`/inst +rm -rf texk/ +mkdir -p work +cd work +%configure \ + --prefix=$PREF --datadir=$PREF \ + --libdir=$PREF/lib \ + --includedir=$PREF/include \ + --datarootdir=$PREF/share \ + --mandir=$PREF/share/man \ + --infodir=$PREF/share/info \ + --exec_prefix=$PREF \ + --bindir=$PREF/bin \ + --with-system-zlib \ + --with-system-libpng \ + --with-system-xpdf \ + --with-system-gd \ +%if 0%{?system_teckit} + --with-system-teckit \ +%endif + --with-system-freetype2 \ + --with-system-poppler \ + --with-system-zziplib \ + --with-system-cairo \ + --with-system-icu \ + --with-system-harfbuzz \ + --with-system-graphite2 \ + --with-system-libgs \ + --with-system-pixman \ + --with-system-libpaper \ +%if 0%{?system_potrace} + --with-system-potrace \ +%endif + --with-pic \ + --with-xdvi-x-toolkit=xaw \ + --with-system-mpfr \ + --with-system-gmp \ + --disable-xindy \ + --disable-xindy-docs \ + --disable-xindy-make-rules \ + --enable-shared \ + --enable-compiler-warnings=max \ + --without-cxx-runtime-hack \ + --disable-native-texlive-build \ + --disable-t1utils \ + --disable-t1lib \ + --disable-psutils \ + --disable-biber \ + --disable-ptexenc \ + --disable-largefile \ + %ifarch aarch64 %{mips} %{power64} s390 s390x x86_64 + --disable-luajittex \ + --disable-mfluajit \ + %endif + --disable-texk \ + --disable-rpath + +# disable rpath +for i in `find . -name libtool`; do +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' $i +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' $i +done + +make world %{?_smp_mflags} STRIPPROG=/bin/true STRIP=/bin/true + +%install +# create directory tree +mkdir -p %{buildroot}%{_texdir}/../texmf +mkdir -p %{buildroot}%{_texdir}/texmf-config/web2c +mkdir -p %{buildroot}%{_texmf_var} +mkdir -p %{buildroot}%{_texdir}/texmf-dist +mkdir -p %{buildroot}%{_texdir}/texmf-local + +# install lacheck and chktex +mkdir -p %{buildroot}%{_bindir} %{buildroot}%{_mandir}/man1 +for f in lacheck chktex chkweb deweb ; do +cp -a source/inst/bin/$f %{buildroot}%{_bindir} +cp -a source/inst/share/man/man1/$f* %{buildroot}%{_mandir}/man1/ +done + +# extract sources +# chktex +xz -dc %{SOURCE50} | tar x -C %{buildroot}%{_texdir}/ +xz -dc %{SOURCE51} | tar x -C %{buildroot}%{_texdir}/ +# babel-german +xz -dc %{SOURCE489} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE490} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# german +xz -dc %{SOURCE2753} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2754} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# germbib +xz -dc %{SOURCE2756} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2757} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# nomencl +xz -dc %{SOURCE4788} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4789} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# translator +xz -dc %{SOURCE8032} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8033} | tar x -C %{buildroot}%{_texdir}/texmf-dist + +# nuke useless tlmgr packaging stuff and doc droppings +rm -rf %{buildroot}%{_texdir}/tlpkg +rm -rf %{buildroot}%{_texdir}/texmf-dist/tlpkg +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/man +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/info +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/texlive/texlive-common/tlmgr* +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/texlive/texlive-common/tlcockpit-packages.png +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/texlive/texlive-common/tlshell-macos.png + +# Also nuke any sources that come out +rm -rf %{buildroot}%{_texdir}/texmf-dist/source + +%files -n %{shortname}-chktex +%license gpl.txt +%{_bindir}/chktex +%{_bindir}/chkweb +%{_bindir}/deweb +%{_mandir}/man1/chktex.1* +%{_mandir}/man1/chkweb.1* +%{_mandir}/man1/deweb.1* +%{_texdir}/texmf-dist/chktex/ +%{_texdir}/texmf-dist/scripts/chktex/ +%doc %{_texdir}/texmf-dist/doc/chktex/ + +%files -n %{shortname}-lacheck +%license gpl.txt +%{_bindir}/lacheck +%{_mandir}/man1/lacheck.1* + +%files -n %{shortname}-babel-german +%license lppl1.3.txt +%{_texdir}/texmf-dist/tex/generic/babel-german/ +%doc %{_texdir}/texmf-dist/doc/generic/babel-german/ + +%files -n %{shortname}-german +%license lppl1.txt +%{_texdir}/texmf-dist/tex/generic/german/ +%doc %{_texdir}/texmf-dist/doc/generic/german/ + +%files -n %{shortname}-germbib +%{_texdir}/texmf-dist/bibtex/bst/germbib/ +%{_texdir}/texmf-dist/tex/latex/germbib/ +%doc %{_texdir}/texmf-dist/doc/bibtex/germbib/ + +%files -n %{shortname}-nomencl +%license lppl1.txt +%{_texdir}/texmf-dist/makeindex/nomencl/ +%{_texdir}/texmf-dist/tex/latex/nomencl/ +%doc %{_texdir}/texmf-dist/doc/latex/nomencl/ + +%files -n %{shortname}-translator +%license lppl1.3.txt +%license gpl.txt +%{_texdir}/texmf-dist/tex/latex/translator/ +%doc %{_texdir}/texmf-dist/doc/latex/translator/ + +%changelog +* Fri Feb 28 2020 Than Ngo - 20180414-2 +- added lacheck and chktex + +* Mon Jan 13 2020 Than Ngo - 20180414-1 +- initial rpm for rhel8